Skip to content

Commit 2aa524a

Browse files
Merge pull request #3356 from vuestorefront/v2-release/3.1.1
chore: vue release 3.1.1
2 parents 80be045 + 6d6183c commit 2aa524a

File tree

8 files changed

+28
-6
lines changed

8 files changed

+28
-6
lines changed

apps/docs/components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@nuxtjs/seo": "^2.0.0-rc.10",
2929
"@nuxtjs/tailwindcss": "7.0.0-beta.1",
3030
"@storefront-ui/typography": "^3.1.0",
31-
"@storefront-ui/vue": "^3.1.0",
31+
"@storefront-ui/vue": "^3.1.1",
3232
"@tailwindcss/typography": "^0.5.19",
3333
"@vueuse/integrations": "^12.8.0",
3434
"@vueuse/nuxt": "^12.8.0",

packages/sfui/frameworks/nuxt/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @storefront-ui/nuxt
22

3+
## 3.1.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`6cf0998`](https://github.com/vuestorefront/storefront-ui/commit/6cf09981bca7d51b4e1db8be2f2a8f127bd28229)]:
8+
- @storefront-ui/vue@3.1.1
9+
310
## 3.1.0
411

512
### Minor Changes

packages/sfui/frameworks/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storefront-ui/nuxt",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"homepage": "https://docs.storefrontui.io/v2/",
55
"installConfig": {
66
"hoistingLimits": "workspaces"

packages/sfui/frameworks/react/components/SfCheckbox/SfCheckbox.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,15 @@ const defaultWrapperTag = 'label';
1313

1414
const SfCheckbox = polymorphicForwardRef<'input', SfCheckboxProps>(
1515
(
16-
{ wrapperAs, invalid, className, indeterminate: indeterminateProp, wrapperClassName, 'data-testid': dataTestId, ...attributes },
16+
{
17+
wrapperAs,
18+
invalid,
19+
className,
20+
indeterminate: indeterminateProp,
21+
wrapperClassName,
22+
'data-testid': dataTestId,
23+
...attributes
24+
},
1725
ref,
1826
): React.JSX.Element => {
1927
const inputRef = useRef<HTMLInputElement>(null);
@@ -47,7 +55,7 @@ const SfCheckbox = polymorphicForwardRef<'input', SfCheckboxProps>(
4755
},
4856
wrapperClassName,
4957
)}
50-
data-testid={dataTestId ?? "checkbox"}
58+
data-testid={dataTestId ?? 'checkbox'}
5159
>
5260
<input
5361
className={twMerge('sr-only', className)}

packages/sfui/frameworks/vue/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @storefront-ui/vue
22

3+
## 3.1.1
4+
5+
### Patch Changes
6+
7+
- [#3354](https://github.com/vuestorefront/storefront-ui/pull/3354) [`6cf0998`](https://github.com/vuestorefront/storefront-ui/commit/6cf09981bca7d51b4e1db8be2f2a8f127bd28229) Thanks [@Szymon-dziewonski](https://github.com/Szymon-dziewonski)! - [CHANGED] bump vue version and release vue dataTestId checkbox inheritance change
8+
39
## 3.1.0
410

511
### Minor Changes

packages/sfui/frameworks/vue/components/SfCheckbox/SfCheckbox.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const { indeterminate = false } = defineProps({
3232
defineOptions({
3333
inheritAttrs: false,
3434
});
35+
3536
const { attrsWithoutClass } = useTwMergeRoot();
3637
const model = defineModel<InputHTMLAttributes['checked']>({ default: false });
3738
const checkboxRef = useTemplateRef<HTMLInputElement>('checkboxRef');

packages/sfui/frameworks/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storefront-ui/vue",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"license": "MIT",
55
"sideEffects": false,
66
"exports": {

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4053,7 +4053,7 @@ __metadata:
40534053
"@nuxtjs/seo": ^2.0.0-rc.10
40544054
"@nuxtjs/tailwindcss": 7.0.0-beta.1
40554055
"@storefront-ui/typography": ^3.1.0
4056-
"@storefront-ui/vue": ^3.1.0
4056+
"@storefront-ui/vue": ^3.1.1
40574057
"@tailwindcss/typography": ^0.5.19
40584058
"@types/node": ^20.12.7
40594059
"@vueuse/integrations": ^12.8.0

0 commit comments

Comments
 (0)