@roku-ui/vue 0.1.0 → 0.1.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/dist/components/Avatar.vue.d.ts +1 -1
- package/dist/components/Btn.vue.d.ts +1 -1
- package/dist/components/Chip.vue.d.ts +47 -46
- package/dist/components/Indicator.vue.d.ts +1 -1
- package/dist/components/Modal.vue.d.ts +19 -37
- package/dist/components/Notification.vue.d.ts +1 -1
- package/dist/components/NotificationSystem.vue.d.ts +1 -1
- package/dist/components/PinInput.vue.d.ts +1 -1
- package/dist/components/Progress.vue.d.ts +3 -3
- package/dist/components/RokuProvider.vue.d.ts +1 -1
- package/dist/components/Select.vue.d.ts +39 -42
- package/dist/components/Slider.vue.d.ts +77 -42
- package/dist/components/Switch.vue.d.ts +73 -52
- package/dist/components/TextField.vue.d.ts +7 -2
- package/dist/components/ThemeProvider.vue.d.ts +23 -0
- package/dist/components/ThemeSwitch.vue.d.ts +2 -0
- package/dist/components/index.d.ts +3 -1
- package/dist/composables/index.d.ts +61 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1169 -883
- package/dist/index.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/utils/index.d.ts +20 -0
- package/dist/utils/theme.d.ts +3 -1
- package/package.json +23 -17
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roku-ui/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"author": "Jianqi Pan <jannchie@gmail.com>",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/roku-ui/roku-ui-vue"
|
|
9
9
|
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public",
|
|
12
|
+
"registry": "https://registry.npmjs.org/"
|
|
13
|
+
},
|
|
10
14
|
"exports": {
|
|
11
15
|
".": {
|
|
12
16
|
"import": "./dist/index.js",
|
|
@@ -25,29 +29,31 @@
|
|
|
25
29
|
],
|
|
26
30
|
"dependencies": {
|
|
27
31
|
"@formkit/auto-animate": "^0.8.1",
|
|
28
|
-
"@unocss/reset": "^0.58.
|
|
29
|
-
"@vueuse/core": "^10.
|
|
32
|
+
"@unocss/reset": "^0.58.2",
|
|
33
|
+
"@vueuse/core": "^10.7.1",
|
|
30
34
|
"tinycolor2": "^1.6.0",
|
|
31
|
-
"vue": "^3.3
|
|
35
|
+
"vue": "^3.4.3"
|
|
32
36
|
},
|
|
33
37
|
"devDependencies": {
|
|
34
|
-
"@antfu/eslint-config": "^2.
|
|
38
|
+
"@antfu/eslint-config": "^2.6.1",
|
|
35
39
|
"@iconify-json/tabler": "^1.1.102",
|
|
40
|
+
"@jannchie/eslint-config": "^3.0.0",
|
|
36
41
|
"@types/tinycolor2": "^1.4.6",
|
|
37
|
-
"@unocss/eslint-config": "^0.58.
|
|
38
|
-
"@unocss/eslint-plugin": "^0.58.
|
|
39
|
-
"@unocss/preset-icons": "^0.58.
|
|
40
|
-
"@vitejs/plugin-vue": "^
|
|
42
|
+
"@unocss/eslint-config": "^0.58.2",
|
|
43
|
+
"@unocss/eslint-plugin": "^0.58.2",
|
|
44
|
+
"@unocss/preset-icons": "^0.58.2",
|
|
45
|
+
"@vitejs/plugin-vue": "^5.0.2",
|
|
41
46
|
"eslint": "^8.56.0",
|
|
42
47
|
"eslint-plugin-format": "^0.1.0",
|
|
43
|
-
"typescript": "^5.
|
|
44
|
-
"unocss": "^0.
|
|
45
|
-
"unplugin-auto-import": "^0.
|
|
46
|
-
"unplugin-vue-components": "^0.
|
|
47
|
-
"vite": "^
|
|
48
|
-
"vite-plugin-dts": "^3.
|
|
49
|
-
"vitest": "^
|
|
50
|
-
"vue-tsc": "^1.8.
|
|
48
|
+
"typescript": "^5.3.3",
|
|
49
|
+
"unocss": "^0.58.2",
|
|
50
|
+
"unplugin-auto-import": "^0.17.3",
|
|
51
|
+
"unplugin-vue-components": "^0.26.0",
|
|
52
|
+
"vite": "^5.0.10",
|
|
53
|
+
"vite-plugin-dts": "^3.7.0",
|
|
54
|
+
"vitest": "^1.1.1",
|
|
55
|
+
"vue-tsc": "^1.8.27",
|
|
56
|
+
"@roku-ui/preset": "^0.1.0"
|
|
51
57
|
},
|
|
52
58
|
"scripts": {
|
|
53
59
|
"dev": "vite",
|