Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/sharp-scissors-heal.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/sfui/frameworks/nuxt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @storefront-ui/nuxt

## 2.4.2

### Patch Changes

- Updated dependencies [[`33935c6f7`](https://github.com/vuestorefront/storefront-ui/commit/33935c6f7d65892b6375a61ea0157367c6b12cd2), [`a2bb3a20d`](https://github.com/vuestorefront/storefront-ui/commit/a2bb3a20d7e902211e0dbb9c39fed3043597721e), [`93107ab26`](https://github.com/vuestorefront/storefront-ui/commit/93107ab2664bd513e8074c2ee3069cf601fb8a17)]:
- @storefront-ui/vue@3.0.0

## 2.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sfui/frameworks/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storefront-ui/nuxt",
"version": "2.4.1",
"version": "2.4.2",
"homepage": "https://docs.storefrontui.io/v2/",
"installConfig": {
"hoistingLimits": "workspaces"
Expand Down
12 changes: 12 additions & 0 deletions packages/sfui/frameworks/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @storefront-ui/react

## 3.0.0

### Major Changes

- [#2826](https://github.com/vuestorefront/storefront-ui/pull/2826) [`33935c6f7`](https://github.com/vuestorefront/storefront-ui/commit/33935c6f7d65892b6375a61ea0157367c6b12cd2) Thanks [@github-actions](https://github.com/apps/github-actions)! - Breaking Change - Padding size for square variant of SfButton changed

- [#2864](https://github.com/vuestorefront/storefront-ui/pull/2864) [`a2bb3a20d`](https://github.com/vuestorefront/storefront-ui/commit/a2bb3a20d7e902211e0dbb9c39fed3043597721e) Thanks [@aniamusial](https://github.com/aniamusial)! - Breaking Change - Padding left and right in SfSelect changed from 14px and 16px to 12px

### Minor Changes

- [#2848](https://github.com/vuestorefront/storefront-ui/pull/2848) [`93107ab26`](https://github.com/vuestorefront/storefront-ui/commit/93107ab2664bd513e8074c2ee3069cf601fb8a17) Thanks [@AdamPawlinski](https://github.com/AdamPawlinski)! - Added props changing aria label for nav buttons in SfScrollable

## 2.4.1

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const getSizeClasses = (size: SfButtonProps['size'], square: SfButtonProps['squa
case SfButtonSize.sm:
return [square ? 'p-1.5' : 'leading-5 text-sm py-1.5 px-3', 'gap-1.5'];
case SfButtonSize.lg:
return [square ? 'p-4' : 'py-3 leading-6 px-6', 'gap-3'];
return [square ? 'p-3' : 'py-3 leading-6 px-6', 'gap-3'];
default:
return [square ? 'p-2' : 'py-2 leading-6 px-4', 'gap-2'];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function SfSelect(props: SfSelectProps) {
required={required}
disabled={disabled}
className={classNames(
'appearance-none disabled:cursor-not-allowed cursor-pointer pl-4 pr-3.5 text-neutral-900 focus:ring-primary-700 focus:ring-2 outline-none bg-transparent rounded-md ring-1 ring-inset ring-neutral-300 hover:ring-primary-700 active:ring-2 active:ring-primary-700 disabled:bg-disabled-100 disabled:text-disabled-900 disabled:ring-disabled-200',
'appearance-none disabled:cursor-not-allowed cursor-pointer px-3 text-neutral-900 focus:ring-primary-700 focus:ring-2 outline-none bg-transparent rounded-md ring-1 ring-inset ring-neutral-300 hover:ring-primary-700 active:ring-2 active:ring-primary-700 disabled:bg-disabled-100 disabled:text-disabled-900 disabled:ring-disabled-200',
{
'py-1.5': size === SfSelectSize.sm,
'py-2': size === SfSelectSize.base,
Expand Down
2 changes: 1 addition & 1 deletion packages/sfui/frameworks/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storefront-ui/react",
"version": "2.4.1",
"version": "3.0.0",
"license": "MIT",
"sideEffects": false,
"exports": {
Expand Down
12 changes: 12 additions & 0 deletions packages/sfui/frameworks/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @storefront-ui/vue

## 3.0.0

### Major Changes

- [#2826](https://github.com/vuestorefront/storefront-ui/pull/2826) [`33935c6f7`](https://github.com/vuestorefront/storefront-ui/commit/33935c6f7d65892b6375a61ea0157367c6b12cd2) Thanks [@github-actions](https://github.com/apps/github-actions)! - Breaking Change - Padding size for square variant of SfButton changed

- [#2864](https://github.com/vuestorefront/storefront-ui/pull/2864) [`a2bb3a20d`](https://github.com/vuestorefront/storefront-ui/commit/a2bb3a20d7e902211e0dbb9c39fed3043597721e) Thanks [@aniamusial](https://github.com/aniamusial)! - Breaking Change - Padding left and right in SfSelect changed from 14px and 16px to 12px

### Minor Changes

- [#2848](https://github.com/vuestorefront/storefront-ui/pull/2848) [`93107ab26`](https://github.com/vuestorefront/storefront-ui/commit/93107ab2664bd513e8074c2ee3069cf601fb8a17) Thanks [@AdamPawlinski](https://github.com/AdamPawlinski)! - Added props changing aria label for nav buttons in SfScrollable

## 2.4.1

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const sizeClasses = computed(() => {
case SfButtonSize.sm:
return [square.value ? 'p-1.5' : 'leading-5 text-sm py-1.5 px-3', 'gap-1.5'];
case SfButtonSize.lg:
return [square.value ? 'p-4' : 'py-3 leading-6 px-6', 'gap-3'];
return [square.value ? 'p-3' : 'py-3 leading-6 px-6', 'gap-3'];
default:
return [square.value ? 'p-2' : 'py-2 leading-6 px-4', 'gap-2'];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const changedValue = (event: Event) => {
:required="required"
:disabled="disabled"
:class="[
'appearance-none disabled:cursor-not-allowed cursor-pointer pl-4 pr-3.5 text-neutral-900 ring-inset focus:ring-primary-700 focus:ring-2 outline-none bg-transparent rounded-md ring-1 ring-neutral-300 hover:ring-primary-700 active:ring-2 active:ring-primary-700 disabled:bg-disabled-100 disabled:text-disabled-900 disabled:ring-disabled-200',
'appearance-none disabled:cursor-not-allowed cursor-pointer px-3 text-neutral-900 ring-inset focus:ring-primary-700 focus:ring-2 outline-none bg-transparent rounded-md ring-1 ring-neutral-300 hover:ring-primary-700 active:ring-2 active:ring-primary-700 disabled:bg-disabled-100 disabled:text-disabled-900 disabled:ring-disabled-200',
{
'py-1.5': size === SfSelectSize.sm,
'py-2': size === SfSelectSize.base,
Expand Down
2 changes: 1 addition & 1 deletion packages/sfui/frameworks/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@storefront-ui/vue",
"version": "2.4.1",
"version": "3.0.0",
"license": "MIT",
"sideEffects": false,
"exports": {
Expand Down