vueless 0.0.443 → 0.0.444

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "0.0.443",
3
+ "version": "0.0.444",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -27,17 +27,17 @@
27
27
  "access": "public"
28
28
  },
29
29
  "scripts": {
30
- "lint": "eslint --ext .vue,.js,.ts --no-fix --ignore-path .eslintignore src/ .storybook/",
31
- "lint:fix": "eslint --ext .vue,.js,.ts --fix --ignore-path .eslintignore src/ .storybook/",
32
- "lint:ci": "eslint --ext .vue,.js,.ts --no-fix --ignore-path .eslintignore --max-warnings=0",
30
+ "dev:docs": "npx @vueless/web-types && node prepare.icons && storybook dev -p 6006 --docs --no-open",
31
+ "dev": "npx @vueless/web-types && node prepare.icons && STORYBOOK_FULL=1 storybook dev -p 6006 --no-open",
32
+ "build": "npx @vueless/web-types && node prepare.icons && storybook build --docs",
33
+ "preview": "vite preview --host --outDir=storybook-static",
34
+ "release:prepare": "npx @vueless/web-types && node prepare.icons && rm -rf dist && mkdir -p dist && cp -r src/. package.json LICENSE web-types.json README.md dist/ && node prepare.package",
33
35
  "release:patch": "release-it patch --ci --npm.publish",
34
36
  "release:minor": "release-it minor --ci --npm.publish --git.tag --github.release",
35
37
  "release:major": "release-it major --ci --npm.publish --git.tag --github.release",
36
- "sb:dev-full": "npx @vueless/web-types && node prepare.icons && STORYBOOK_FULL=1 storybook dev -p 6006 --no-open",
37
- "sb:dev": "npx @vueless/web-types && node prepare.icons && storybook dev -p 6006 --docs --no-open",
38
- "sb:build": "npx @vueless/web-types && node prepare.icons && storybook build --docs",
39
- "sb:preview": "vite preview --host --outDir=storybook-static",
40
- "package:prepare": "npx @vueless/web-types && node prepare.icons && rm -rf dist && mkdir -p dist && cp -r src/. package.json LICENSE web-types.json README.md dist/ && node prepare.package"
38
+ "lint": "eslint --ext .vue,.js,.ts --no-fix --ignore-path .eslintignore src/ .storybook/",
39
+ "lint:fix": "eslint --ext .vue,.js,.ts --fix --ignore-path .eslintignore src/ .storybook/",
40
+ "lint:ci": "eslint --ext .vue,.js,.ts --no-fix --ignore-path .eslintignore --max-warnings=0"
41
41
  },
42
42
  "dependencies": {
43
43
  "@tailwindcss/forms": "^0.5.7",
@@ -16,7 +16,7 @@
16
16
  <template #left>
17
17
  <!--
18
18
  @slot Use it to add something before the label.
19
- @binding {boolean} isOpened
19
+ @binding {string} label
20
20
  -->
21
21
  <slot name="left" :opened="isShownOptions" />
22
22
  </template>
@@ -25,7 +25,7 @@
25
25
  <!--
26
26
  @slot Use it to add something instead of the default label.
27
27
  @binding {string} label
28
- @binding {boolean} isOpened
28
+ @binding {boolean} opened
29
29
  -->
30
30
  <slot :label="label" :opened="isShownOptions" />
31
31
  </template>
@@ -33,9 +33,9 @@
33
33
  <template #right="{ iconColor, iconSize }">
34
34
  <!--
35
35
  @slot Use it to add something after the label.
36
- @binding {boolean} isOpened
36
+ @binding {boolean} opened
37
37
  -->
38
- <slot name="right" :label="label" :opened="isShownOptions">
38
+ <slot name="right" :opened="isShownOptions">
39
39
  <UIcon
40
40
  v-if="!noIcon"
41
41
  internal
@@ -17,7 +17,7 @@
17
17
  <template #left>
18
18
  <!--
19
19
  @slot Use it to add something before the label.
20
- @binding {boolean} isOpened
20
+ @binding {boolean} opened
21
21
  -->
22
22
  <slot name="left" :opened="isShownOptions" />
23
23
  </template>
@@ -26,7 +26,7 @@
26
26
  <!--
27
27
  @slot Use it to add something instead of the default label.
28
28
  @binding {string} label
29
- @binding {boolean} isOpened
29
+ @binding {boolean} opened
30
30
  -->
31
31
  <slot :label="label" :opened="isShownOptions" />
32
32
  </template>
@@ -34,7 +34,7 @@
34
34
  <template #right>
35
35
  <!--
36
36
  @slot Use it to add something after the label.
37
- @binding {boolean} isOpened
37
+ @binding {boolean} opened
38
38
  -->
39
39
  <slot name="right" :opened="isShownOptions">
40
40
  <UIcon
@@ -18,7 +18,7 @@
18
18
  <template #left>
19
19
  <!--
20
20
  @slot Use it to add something before the label.
21
- @binding {boolean} isOpened
21
+ @binding {boolean} opened
22
22
  -->
23
23
  <slot name="left" :opened="isShownOptions" />
24
24
  </template>
@@ -27,15 +27,15 @@
27
27
  <!--
28
28
  @slot Use it to add something instead of the default label.
29
29
  @binding {string} label
30
- @binding {boolean} isOpened
30
+ @binding {boolean} opened
31
31
  -->
32
- <slot :label="label" />
32
+ <slot :label="label" :opened="isShownOptions" />
33
33
  </template>
34
34
 
35
35
  <template #right>
36
36
  <!--
37
37
  @slot Use it to add something after the label.
38
- @binding {boolean} isOpened
38
+ @binding {boolean} opened
39
39
  -->
40
40
  <slot name="right" :opened="isShownOptions">
41
41
  <UIcon
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.443",
4
+ "version": "0.0.444",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -3277,6 +3277,7 @@
3277
3277
  "name": "label"
3278
3278
  },
3279
3279
  {
3280
+ "type": "boolean",
3280
3281
  "name": "opened"
3281
3282
  }
3282
3283
  ]
@@ -3287,9 +3288,7 @@
3287
3288
  "description": "Use it to add something after the label.",
3288
3289
  "bindings": [
3289
3290
  {
3290
- "name": "label"
3291
- },
3292
- {
3291
+ "type": "boolean",
3293
3292
  "name": "opened"
3294
3293
  }
3295
3294
  ]
@@ -3470,6 +3469,7 @@
3470
3469
  "description": "Use it to add something before the label.",
3471
3470
  "bindings": [
3472
3471
  {
3472
+ "type": "boolean",
3473
3473
  "name": "opened"
3474
3474
  }
3475
3475
  ]
@@ -3484,6 +3484,7 @@
3484
3484
  "name": "label"
3485
3485
  },
3486
3486
  {
3487
+ "type": "boolean",
3487
3488
  "name": "opened"
3488
3489
  }
3489
3490
  ]
@@ -3494,6 +3495,7 @@
3494
3495
  "description": "Use it to add something after the label.",
3495
3496
  "bindings": [
3496
3497
  {
3498
+ "type": "boolean",
3497
3499
  "name": "opened"
3498
3500
  }
3499
3501
  ]
@@ -3664,6 +3666,7 @@
3664
3666
  "description": "Use it to add something before the label.",
3665
3667
  "bindings": [
3666
3668
  {
3669
+ "type": "boolean",
3667
3670
  "name": "opened"
3668
3671
  }
3669
3672
  ]
@@ -3676,6 +3679,10 @@
3676
3679
  {
3677
3680
  "type": "string",
3678
3681
  "name": "label"
3682
+ },
3683
+ {
3684
+ "type": "boolean",
3685
+ "name": "opened"
3679
3686
  }
3680
3687
  ]
3681
3688
  },
@@ -3685,6 +3692,7 @@
3685
3692
  "description": "Use it to add something after the label.",
3686
3693
  "bindings": [
3687
3694
  {
3695
+ "type": "boolean",
3688
3696
  "name": "opened"
3689
3697
  }
3690
3698
  ]