vueless 1.1.0 → 1.1.1-beta.1
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 +21 -21
- package/utils/storybook.ts +1 -1
package/package.json
CHANGED
|
@@ -1,29 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"license": "MIT",
|
|
3
|
+
"version": "1.1.1-beta.1",
|
|
5
4
|
"description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"vueless",
|
|
8
|
-
"vue",
|
|
9
|
-
"vue.js",
|
|
10
|
-
"vue3",
|
|
11
|
-
"ui library",
|
|
12
|
-
"component library",
|
|
13
|
-
"vue framework",
|
|
14
|
-
"design system",
|
|
15
|
-
"tailwind",
|
|
16
|
-
"tailwindcss",
|
|
17
|
-
"unstyled",
|
|
18
|
-
"styleless",
|
|
19
|
-
"headlessui",
|
|
20
|
-
"ui"
|
|
21
|
-
],
|
|
22
|
-
"homepage": "https://vueless.com",
|
|
23
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
|
+
"homepage": "https://vueless.com",
|
|
24
7
|
"style": "tailwind.css",
|
|
25
8
|
"main": "index.ts",
|
|
26
9
|
"type": "module",
|
|
10
|
+
"license": "MIT",
|
|
27
11
|
"publishConfig": {
|
|
28
12
|
"access": "public"
|
|
29
13
|
},
|
|
@@ -74,7 +58,7 @@
|
|
|
74
58
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
75
59
|
"@vue/test-utils": "^2.4.6",
|
|
76
60
|
"@vue/tsconfig": "^0.7.0",
|
|
77
|
-
"@vueless/storybook": "^1.1.
|
|
61
|
+
"@vueless/storybook": "^1.1.2",
|
|
78
62
|
"eslint": "^9.32.0",
|
|
79
63
|
"eslint-plugin-storybook": "^9.0.18",
|
|
80
64
|
"eslint-plugin-vue": "^10.3.0",
|
|
@@ -102,5 +86,21 @@
|
|
|
102
86
|
},
|
|
103
87
|
"bugs": {
|
|
104
88
|
"url": "https://github.com/vuelessjs/vueless/issues"
|
|
105
|
-
}
|
|
89
|
+
},
|
|
90
|
+
"keywords": [
|
|
91
|
+
"vueless",
|
|
92
|
+
"vue",
|
|
93
|
+
"vue.js",
|
|
94
|
+
"vue3",
|
|
95
|
+
"ui library",
|
|
96
|
+
"component library",
|
|
97
|
+
"vue framework",
|
|
98
|
+
"design system",
|
|
99
|
+
"tailwind",
|
|
100
|
+
"tailwindcss",
|
|
101
|
+
"unstyled",
|
|
102
|
+
"styleless",
|
|
103
|
+
"headlessui",
|
|
104
|
+
"ui"
|
|
105
|
+
]
|
|
106
106
|
}
|
package/utils/storybook.ts
CHANGED
|
@@ -33,7 +33,7 @@ interface TableConfig {
|
|
|
33
33
|
|
|
34
34
|
type ComponentNames = keyof typeof COMPONENTS;
|
|
35
35
|
|
|
36
|
-
/* Load Web-Types from
|
|
36
|
+
/* Load Web-Types from cache. */
|
|
37
37
|
const [webTypes]: WebTypes[] = Object.values(
|
|
38
38
|
import.meta.glob("/node_modules/.cache/vueless/web-types.json", {
|
|
39
39
|
eager: true,
|