@byyuurin/ui 0.0.5 → 0.0.7
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/README.md +15 -11
- package/dist/module.cjs +5 -0
- package/dist/module.json +12 -0
- package/dist/{nuxt.mjs → module.mjs} +7 -6
- package/dist/module.mjs.map +1 -0
- package/dist/runtime/components/Accordion.vue +20 -31
- package/dist/runtime/components/Alert.vue +1 -1
- package/dist/runtime/components/App.vue +1 -1
- package/dist/runtime/components/Badge.vue +0 -1
- package/dist/runtime/components/Button.vue +14 -12
- package/dist/runtime/components/ButtonGroup.vue +47 -0
- package/dist/runtime/components/Card.vue +9 -6
- package/dist/runtime/components/Carousel.vue +310 -0
- package/dist/runtime/components/Checkbox.vue +3 -4
- package/dist/runtime/components/Chip.vue +9 -4
- package/dist/runtime/components/Collapsible.vue +56 -0
- package/dist/runtime/components/Drawer.vue +4 -2
- package/dist/runtime/components/Input.vue +12 -8
- package/dist/runtime/components/InputNumber.vue +167 -0
- package/dist/runtime/components/Link.vue +301 -72
- package/dist/runtime/components/LinkBase.vue +88 -0
- package/dist/runtime/components/Modal.vue +2 -4
- package/dist/runtime/components/Pagination.vue +167 -0
- package/dist/runtime/components/PinInput.vue +0 -1
- package/dist/runtime/components/RadioGroup.vue +0 -1
- package/dist/runtime/components/ScrollArea.vue +1 -1
- package/dist/runtime/components/Select.vue +9 -5
- package/dist/runtime/components/Separator.vue +63 -0
- package/dist/runtime/components/Slider.vue +0 -1
- package/dist/runtime/components/Switch.vue +4 -6
- package/dist/runtime/components/Table.vue +292 -0
- package/dist/runtime/components/Tabs.vue +17 -18
- package/dist/runtime/components/Textarea.vue +0 -1
- package/dist/runtime/components/Toast.vue +21 -10
- package/dist/runtime/components/Toaster.vue +4 -39
- package/dist/runtime/composables/useButtonGroup.d.ts +13 -0
- package/dist/runtime/composables/useButtonGroup.js +14 -0
- package/dist/runtime/composables/{useComponentIcons.mjs → useComponentIcons.js} +1 -1
- package/dist/runtime/composables/useModal.d.ts +1 -1
- package/dist/runtime/composables/{useModal.mjs → useModal.js} +1 -1
- package/dist/runtime/composables/useTheme.d.ts +4 -4
- package/dist/runtime/composables/{useTheme.mjs → useTheme.js} +4 -4
- package/dist/runtime/composables/useToast.d.ts +4 -4
- package/dist/runtime/composables/{useToast.mjs → useToast.js} +19 -6
- package/dist/runtime/index.d.ts +34 -0
- package/dist/runtime/index.js +34 -0
- package/dist/runtime/theme/accordion.d.ts +22 -5
- package/dist/runtime/theme/{accordion.mjs → accordion.js} +2 -2
- package/dist/runtime/theme/alert.d.ts +41 -1
- package/dist/runtime/theme/{alert.mjs → alert.js} +4 -4
- package/dist/runtime/theme/app.d.ts +8 -0
- package/dist/runtime/theme/app.js +18 -0
- package/dist/runtime/theme/badge.d.ts +48 -21
- package/dist/runtime/theme/{badge.mjs → badge.js} +5 -2
- package/dist/runtime/theme/button-group.d.ts +66 -0
- package/dist/runtime/theme/button-group.js +42 -0
- package/dist/runtime/theme/button.d.ts +68 -111
- package/dist/runtime/theme/button.js +164 -0
- package/dist/runtime/theme/card.d.ts +38 -19
- package/dist/runtime/theme/card.js +37 -0
- package/dist/runtime/theme/carousel.d.ts +113 -0
- package/dist/runtime/theme/carousel.js +43 -0
- package/dist/runtime/theme/checkbox.d.ts +4 -1
- package/dist/runtime/theme/{checkbox.mjs → checkbox.js} +7 -4
- package/dist/runtime/theme/chip.d.ts +56 -12
- package/dist/runtime/theme/{chip.mjs → chip.js} +10 -7
- package/dist/runtime/theme/collapsible.d.ts +38 -0
- package/dist/runtime/theme/collapsible.js +10 -0
- package/dist/runtime/theme/drawer.d.ts +71 -33
- package/dist/runtime/theme/{drawer.mjs → drawer.js} +33 -22
- package/dist/runtime/theme/index.d.ts +31 -24
- package/dist/runtime/theme/index.js +31 -0
- package/dist/runtime/theme/input-number.d.ts +135 -0
- package/dist/runtime/theme/input-number.js +92 -0
- package/dist/runtime/theme/input.d.ts +94 -111
- package/dist/runtime/theme/input.js +151 -0
- package/dist/runtime/theme/link.d.ts +14 -1
- package/dist/runtime/theme/{link.mjs → link.js} +1 -1
- package/dist/runtime/theme/modal.d.ts +33 -7
- package/dist/runtime/theme/{modal.mjs → modal.js} +8 -10
- package/dist/runtime/theme/pagination.d.ts +56 -0
- package/dist/runtime/theme/pagination.js +13 -0
- package/dist/runtime/theme/pinInput.d.ts +45 -42
- package/dist/runtime/theme/{pinInput.mjs → pinInput.js} +14 -11
- package/dist/runtime/theme/popover.d.ts +16 -5
- package/dist/runtime/theme/{radioGroup.d.ts → radio-group.d.ts} +4 -1
- package/dist/runtime/theme/{radioGroup.mjs → radio-group.js} +3 -0
- package/dist/runtime/theme/scroll-area.d.ts +73 -0
- package/dist/runtime/theme/{scrollArea.mjs → scroll-area.js} +2 -2
- package/dist/runtime/theme/select.d.ts +95 -99
- package/dist/runtime/theme/{select.mjs → select.js} +22 -17
- package/dist/runtime/theme/separator.d.ts +95 -0
- package/dist/runtime/theme/separator.js +53 -0
- package/dist/runtime/theme/slider.d.ts +4 -1
- package/dist/runtime/theme/{slider.mjs → slider.js} +6 -3
- package/dist/runtime/theme/switch.d.ts +4 -1
- package/dist/runtime/theme/{switch.mjs → switch.js} +5 -2
- package/dist/runtime/theme/table.d.ts +89 -0
- package/dist/runtime/theme/table.js +35 -0
- package/dist/runtime/theme/tabs.d.ts +72 -52
- package/dist/runtime/theme/{tabs.mjs → tabs.js} +15 -12
- package/dist/runtime/theme/textarea.d.ts +46 -37
- package/dist/runtime/theme/{textarea.mjs → textarea.js} +14 -11
- package/dist/runtime/theme/toast.d.ts +45 -7
- package/dist/runtime/theme/{toast.mjs → toast.js} +12 -7
- package/dist/runtime/theme/toaster.d.ts +89 -25
- package/dist/runtime/theme/{toaster.mjs → toaster.js} +5 -0
- package/dist/runtime/theme/tooltip.d.ts +20 -7
- package/dist/runtime/theme/{tooltip.mjs → tooltip.js} +2 -2
- package/dist/runtime/types/components.d.ts +7 -1
- package/dist/runtime/types/index.d.ts +4 -4
- package/dist/runtime/types/index.js +2 -0
- package/dist/runtime/types/utils.d.ts +1 -1
- package/dist/runtime/utils/index.d.ts +3 -3
- package/dist/runtime/utils/{index.mjs → index.js} +3 -3
- package/dist/runtime/utils/link.d.ts +22 -7
- package/dist/runtime/utils/link.js +30 -0
- package/dist/runtime/utils/styler.d.ts +2 -2
- package/dist/runtime/vue/stubs.d.ts +9 -0
- package/dist/runtime/vue/stubs.js +16 -0
- package/dist/shared/ui.d1728164.mjs +4 -0
- package/dist/shared/ui.d1728164.mjs.map +1 -0
- package/dist/types.d.mts +1 -0
- package/dist/types.d.ts +1 -0
- package/dist/{unocss-preset.d.ts → unocss.d.mts} +10 -15
- package/dist/{unocss-preset.d.mts → unocss.d.ts} +10 -15
- package/dist/{unocss-preset.mjs → unocss.mjs} +53 -21
- package/dist/unocss.mjs.map +1 -0
- package/dist/unplugin.d.mts +4 -3
- package/dist/unplugin.d.ts +4 -3
- package/dist/unplugin.mjs +49 -5
- package/dist/unplugin.mjs.map +1 -1
- package/dist/vite.d.mts +1 -1
- package/dist/vite.d.ts +1 -1
- package/dist/vite.mjs +7 -5
- package/dist/vite.mjs.map +1 -1
- package/package.json +59 -45
- package/dist/index.d.ts +0 -26
- package/dist/index.mjs +0 -26
- package/dist/nuxt.mjs.map +0 -1
- package/dist/runtime/theme/app.mjs +0 -10
- package/dist/runtime/theme/button.mjs +0 -143
- package/dist/runtime/theme/card.mjs +0 -14
- package/dist/runtime/theme/index.mjs +0 -24
- package/dist/runtime/theme/input.mjs +0 -146
- package/dist/runtime/theme/scrollArea.d.ts +0 -51
- package/dist/runtime/types/index.mjs +0 -2
- package/dist/runtime/utils/link.mjs +0 -4
- package/dist/shared/ui.CzDyI29e.mjs +0 -8
- package/dist/shared/ui.CzDyI29e.mjs.map +0 -1
- package/dist/unocss-preset.mjs.map +0 -1
- /package/{LICENSE.md → LICENSE} +0 -0
- /package/dist/{nuxt.d.mts → module.d.mts} +0 -0
- /package/dist/{nuxt.d.ts → module.d.ts} +0 -0
- /package/dist/runtime/composables/{defineInjection.mjs → defineInjection.js} +0 -0
- /package/dist/runtime/theme/{popover.mjs → popover.js} +0 -0
- /package/dist/runtime/types/{components.mjs → components.js} +0 -0
- /package/dist/runtime/types/{utils.mjs → utils.js} +0 -0
- /package/dist/runtime/utils/{extend-theme.mjs → extend-theme.js} +0 -0
- /package/dist/runtime/utils/{styler.mjs → styler.js} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byyuurin/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.7",
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "Yuurin <byyuurin@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"sideEffects": false,
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"types": "./dist/index.d.ts",
|
|
19
|
-
"default": "./dist/index.
|
|
18
|
+
"types": "./dist/runtime/index.d.ts",
|
|
19
|
+
"default": "./dist/runtime/index.js"
|
|
20
20
|
},
|
|
21
21
|
"./unplugin": {
|
|
22
22
|
"types": "./dist/unplugin.d.ts",
|
|
@@ -27,26 +27,22 @@
|
|
|
27
27
|
"default": "./dist/vite.mjs"
|
|
28
28
|
},
|
|
29
29
|
"./nuxt": {
|
|
30
|
-
"types": "./dist/
|
|
31
|
-
"default": "./dist/
|
|
30
|
+
"types": "./dist/module.d.ts",
|
|
31
|
+
"default": "./dist/module.mjs"
|
|
32
32
|
},
|
|
33
|
-
"./unocss
|
|
34
|
-
"types": "./dist/unocss
|
|
35
|
-
"default": "./dist/unocss
|
|
33
|
+
"./unocss": {
|
|
34
|
+
"types": "./dist/unocss.d.ts",
|
|
35
|
+
"default": "./dist/unocss.mjs"
|
|
36
|
+
},
|
|
37
|
+
"./runtime/index": {
|
|
38
|
+
"types": "./dist/runtime/index.d.ts",
|
|
39
|
+
"default": "./dist/runtime/index.js"
|
|
36
40
|
},
|
|
37
41
|
"./runtime/*": "./dist/runtime/*"
|
|
38
42
|
},
|
|
39
|
-
"main": "dist/index.
|
|
40
|
-
"module": "dist/index.
|
|
41
|
-
"types": "dist/index.d.ts",
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"*": {
|
|
44
|
-
"*": [
|
|
45
|
-
"./dist/*",
|
|
46
|
-
"./dist/index.d.ts"
|
|
47
|
-
]
|
|
48
|
-
}
|
|
49
|
-
},
|
|
43
|
+
"main": "dist/runtime/index.js",
|
|
44
|
+
"module": "dist/runtime/index.js",
|
|
45
|
+
"types": "dist/runtime/index.d.ts",
|
|
50
46
|
"files": [
|
|
51
47
|
"*.d.ts",
|
|
52
48
|
"dist"
|
|
@@ -62,42 +58,60 @@
|
|
|
62
58
|
}
|
|
63
59
|
},
|
|
64
60
|
"dependencies": {
|
|
65
|
-
"@byyuurin/ui-kit": "^0.
|
|
61
|
+
"@byyuurin/ui-kit": "^0.4.2",
|
|
66
62
|
"@nuxt/kit": "^3.15.4",
|
|
67
|
-
"@
|
|
68
|
-
"@unocss/
|
|
69
|
-
"@unocss/preset-
|
|
70
|
-
"@
|
|
63
|
+
"@tanstack/vue-table": "^8.21.2",
|
|
64
|
+
"@unocss/core": "^65.5.0",
|
|
65
|
+
"@unocss/preset-mini": "^65.5.0",
|
|
66
|
+
"@unocss/preset-uno": "^65.5.0",
|
|
67
|
+
"@vueuse/core": "^12.8.2",
|
|
71
68
|
"defu": "^6.1.4",
|
|
69
|
+
"embla-carousel": "^8.5.2",
|
|
70
|
+
"embla-carousel-auto-height": "^8.5.2",
|
|
71
|
+
"embla-carousel-auto-scroll": "^8.5.2",
|
|
72
|
+
"embla-carousel-autoplay": "^8.5.2",
|
|
73
|
+
"embla-carousel-class-names": "^8.5.2",
|
|
74
|
+
"embla-carousel-fade": "^8.5.2",
|
|
75
|
+
"embla-carousel-vue": "^8.5.2",
|
|
76
|
+
"embla-carousel-wheel-gestures": "^8.0.1",
|
|
72
77
|
"magic-string": "^0.30.17",
|
|
73
78
|
"mlly": "^1.7.4",
|
|
74
|
-
"ohash": "^1.1.
|
|
75
|
-
"pathe": "^2.0.
|
|
76
|
-
"reka-ui": "
|
|
79
|
+
"ohash": "^1.1.6",
|
|
80
|
+
"pathe": "^2.0.3",
|
|
81
|
+
"reka-ui": "^2.0.2",
|
|
77
82
|
"scule": "^1.3.0",
|
|
78
|
-
"tinyglobby": "^0.2.
|
|
79
|
-
"
|
|
80
|
-
"unplugin
|
|
81
|
-
"unplugin-
|
|
82
|
-
"
|
|
83
|
-
"vue
|
|
83
|
+
"tinyglobby": "^0.2.12",
|
|
84
|
+
"ufo": "^1.5.4",
|
|
85
|
+
"unplugin": "^2.2.0",
|
|
86
|
+
"unplugin-auto-import": "^19.1.1",
|
|
87
|
+
"unplugin-vue-components": "^28.4.1",
|
|
88
|
+
"vaul-vue": "^0.3.0",
|
|
89
|
+
"vue-component-type-helpers": "^2.2.8"
|
|
84
90
|
},
|
|
85
91
|
"devDependencies": {
|
|
86
92
|
"@antfu/ni": "^23.3.1",
|
|
87
|
-
"@byyuurin/eslint-config": "^1.7.
|
|
93
|
+
"@byyuurin/eslint-config": "^1.7.2",
|
|
94
|
+
"@nuxt/eslint-config": "^1.1.0",
|
|
95
|
+
"@nuxt/module-builder": "^0.8.4",
|
|
88
96
|
"@nuxt/schema": "^3.15.4",
|
|
89
|
-
"@
|
|
90
|
-
"
|
|
91
|
-
"
|
|
97
|
+
"@nuxt/test-utils": "^3.17.1",
|
|
98
|
+
"@types/node": "^22.13.9",
|
|
99
|
+
"@unocss/reset": "^65.5.0",
|
|
100
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
101
|
+
"bumpp": "^10.0.3",
|
|
102
|
+
"eslint": "^9.21.0",
|
|
92
103
|
"eslint-plugin-format": "1.0.1",
|
|
93
104
|
"esno": "^4.8.0",
|
|
94
105
|
"lint-staged": "^15.4.3",
|
|
106
|
+
"nuxt": "^3.15.4",
|
|
95
107
|
"simple-git-hooks": "^2.11.1",
|
|
96
|
-
"typescript": "
|
|
97
|
-
"
|
|
98
|
-
"
|
|
108
|
+
"typescript": "~5.6.3",
|
|
109
|
+
"unocss": "^65.5.0",
|
|
110
|
+
"vite": "^6.2.1",
|
|
111
|
+
"vite-plugin-inspect": "^10.3.0",
|
|
112
|
+
"vitest": "^3.0.8",
|
|
99
113
|
"vue": "^3.5.13",
|
|
100
|
-
"vue-tsc": "^2.2.
|
|
114
|
+
"vue-tsc": "^2.2.8"
|
|
101
115
|
},
|
|
102
116
|
"resolutions": {
|
|
103
117
|
"@byyuurin/ui": "workspace:*"
|
|
@@ -109,14 +123,14 @@
|
|
|
109
123
|
"*": "eslint --fix"
|
|
110
124
|
},
|
|
111
125
|
"scripts": {
|
|
112
|
-
"
|
|
113
|
-
"
|
|
126
|
+
"dev": "nuxi dev playground/nuxt",
|
|
127
|
+
"dev:build": "nuxi build playground/nuxt",
|
|
128
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground/nuxt",
|
|
114
129
|
"dev:vue": "pnpm --filter \"./playground/vue\" run dev",
|
|
115
|
-
"dev:nuxt": "pnpm --filter \"./playground/nuxt\" run dev",
|
|
116
130
|
"lint": "eslint .",
|
|
117
131
|
"release": "bumpp && pnpm publish",
|
|
118
132
|
"start": "esno src/index.ts",
|
|
119
133
|
"test": "vitest",
|
|
120
|
-
"
|
|
134
|
+
"test:types": "vue-tsc --noEmit && cd playground/nuxt && vue-tsc --noEmit"
|
|
121
135
|
}
|
|
122
136
|
}
|
package/dist/index.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export { default as Accordion } from './runtime/components/Accordion.vue';
|
|
2
|
-
export { default as Alert } from './runtime/components/Alert.vue';
|
|
3
|
-
export { default as App } from './runtime/components/App.vue';
|
|
4
|
-
export { default as Badge } from './runtime/components/Badge.vue';
|
|
5
|
-
export { default as Button } from './runtime/components/Button.vue';
|
|
6
|
-
export { default as Card } from './runtime/components/Card.vue';
|
|
7
|
-
export { default as Checkbox } from './runtime/components/Checkbox.vue';
|
|
8
|
-
export { default as Chip } from './runtime/components/Chip.vue';
|
|
9
|
-
export { default as Drawer } from './runtime/components/Drawer.vue';
|
|
10
|
-
export { default as Input } from './runtime/components/Input.vue';
|
|
11
|
-
export { default as Link } from './runtime/components/Link.vue';
|
|
12
|
-
export { default as Modal } from './runtime/components/Modal.vue';
|
|
13
|
-
export { default as ModalProvider } from './runtime/components/ModalProvider.vue';
|
|
14
|
-
export { default as PinInput } from './runtime/components/PinInput.vue';
|
|
15
|
-
export { default as Popover } from './runtime/components/Popover.vue';
|
|
16
|
-
export { default as RadioGroup } from './runtime/components/RadioGroup.vue';
|
|
17
|
-
export { default as ScrollArea } from './runtime/components/ScrollArea.vue';
|
|
18
|
-
export { default as Select } from './runtime/components/Select.vue';
|
|
19
|
-
export { default as Slider } from './runtime/components/Slider.vue';
|
|
20
|
-
export { default as Switch } from './runtime/components/Switch.vue';
|
|
21
|
-
export { default as Tabs } from './runtime/components/Tabs.vue';
|
|
22
|
-
export { default as Textarea } from './runtime/components/Textarea.vue';
|
|
23
|
-
export { default as Toast } from './runtime/components/Toast.vue';
|
|
24
|
-
export { default as Toaster } from './runtime/components/Toaster.vue';
|
|
25
|
-
export { default as Tooltip } from './runtime/components/Tooltip.vue';
|
|
26
|
-
export * from './runtime/types';
|
package/dist/index.mjs
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export { default as Accordion } from "./runtime/components/Accordion.vue";
|
|
2
|
-
export { default as Alert } from "./runtime/components/Alert.vue";
|
|
3
|
-
export { default as App } from "./runtime/components/App.vue";
|
|
4
|
-
export { default as Badge } from "./runtime/components/Badge.vue";
|
|
5
|
-
export { default as Button } from "./runtime/components/Button.vue";
|
|
6
|
-
export { default as Card } from "./runtime/components/Card.vue";
|
|
7
|
-
export { default as Checkbox } from "./runtime/components/Checkbox.vue";
|
|
8
|
-
export { default as Chip } from "./runtime/components/Chip.vue";
|
|
9
|
-
export { default as Drawer } from "./runtime/components/Drawer.vue";
|
|
10
|
-
export { default as Input } from "./runtime/components/Input.vue";
|
|
11
|
-
export { default as Link } from "./runtime/components/Link.vue";
|
|
12
|
-
export { default as Modal } from "./runtime/components/Modal.vue";
|
|
13
|
-
export { default as ModalProvider } from "./runtime/components/ModalProvider.vue";
|
|
14
|
-
export { default as PinInput } from "./runtime/components/PinInput.vue";
|
|
15
|
-
export { default as Popover } from "./runtime/components/Popover.vue";
|
|
16
|
-
export { default as RadioGroup } from "./runtime/components/RadioGroup.vue";
|
|
17
|
-
export { default as ScrollArea } from "./runtime/components/ScrollArea.vue";
|
|
18
|
-
export { default as Select } from "./runtime/components/Select.vue";
|
|
19
|
-
export { default as Slider } from "./runtime/components/Slider.vue";
|
|
20
|
-
export { default as Switch } from "./runtime/components/Switch.vue";
|
|
21
|
-
export { default as Tabs } from "./runtime/components/Tabs.vue";
|
|
22
|
-
export { default as Textarea } from "./runtime/components/Textarea.vue";
|
|
23
|
-
export { default as Toast } from "./runtime/components/Toast.vue";
|
|
24
|
-
export { default as Toaster } from "./runtime/components/Toaster.vue";
|
|
25
|
-
export { default as Tooltip } from "./runtime/components/Tooltip.vue";
|
|
26
|
-
export * from "./runtime/types/index.mjs";
|
package/dist/nuxt.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"nuxt.mjs","sources":["../src/nuxt.ts"],"sourcesContent":["import { addComponentsDir, addImportsDir, createResolver, defineNuxtModule, useLogger } from '@nuxt/kit'\r\nimport type {} from '@nuxt/schema' // Mandatory to avoid a bug when building\r\nimport { packageName } from './internal/shared'\r\n\r\nexport interface ModuleOptions {\r\n /**\r\n * prefix for components used in templates\r\n *\r\n * @default \"U\"\r\n */\r\n prefix?: string\r\n}\r\n\r\nexport default defineNuxtModule<ModuleOptions>({\r\n meta: {\r\n name: packageName,\r\n configKey: 'ui',\r\n compatibility: {\r\n nuxt: '>=3.13.1',\r\n },\r\n },\r\n defaults: {\r\n prefix: 'U',\r\n },\r\n setup(options, nuxt) {\r\n const logger = useLogger(packageName)\r\n const { resolve } = createResolver(import.meta.url)\r\n\r\n // Make sure the UnoCSS Nuxt module is installed\r\n if (!nuxt.options.modules.includes('@unocss/nuxt')) {\r\n logger.error(`\\`${packageName}\\` requires the \\`@unocss/nuxt\\` module to be installed.`)\r\n return\r\n }\r\n\r\n nuxt.options.alias['#ui'] = resolve('./runtime')\r\n\r\n addComponentsDir({\r\n path: resolve('./runtime/components'),\r\n prefix: options.prefix,\r\n pathPrefix: false,\r\n })\r\n\r\n addImportsDir(resolve('./runtime/composables'))\r\n },\r\n})\r\n"],"names":[],"mappings":";;;;;AAaA,aAAe,gBAAgC,CAAA;AAAA,EAC7C,IAAM,EAAA;AAAA,IACJ,IAAM,EAAA,WAAA;AAAA,IACN,SAAW,EAAA,IAAA;AAAA,IACX,aAAe,EAAA;AAAA,MACb,IAAM,EAAA;AAAA;AACR,GACF;AAAA,EACA,QAAU,EAAA;AAAA,IACR,MAAQ,EAAA;AAAA,GACV;AAAA,EACA,KAAA,CAAM,SAAS,IAAM,EAAA;AACnB,IAAM,MAAA,MAAA,GAAS,UAAU,WAAW,CAAA;AACpC,IAAA,MAAM,EAAE,OAAA,EAAY,GAAA,cAAA,CAAe,YAAY,GAAG,CAAA;AAGlD,IAAA,IAAI,CAAC,IAAK,CAAA,OAAA,CAAQ,OAAQ,CAAA,QAAA,CAAS,cAAc,CAAG,EAAA;AAClD,MAAO,MAAA,CAAA,KAAA,CAAM,CAAK,EAAA,EAAA,WAAW,CAA0D,wDAAA,CAAA,CAAA;AACvF,MAAA;AAAA;AAGF,IAAA,IAAA,CAAK,OAAQ,CAAA,KAAA,CAAM,KAAK,CAAA,GAAI,QAAQ,WAAW,CAAA;AAE/C,IAAiB,gBAAA,CAAA;AAAA,MACf,IAAA,EAAM,QAAQ,sBAAsB,CAAA;AAAA,MACpC,QAAQ,OAAQ,CAAA,MAAA;AAAA,MAChB,UAAY,EAAA;AAAA,KACb,CAAA;AAED,IAAc,aAAA,CAAA,OAAA,CAAQ,uBAAuB,CAAC,CAAA;AAAA;AAElD,CAAC,CAAA;;;;"}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
import { ct } from "@byyuurin/ui-kit";
|
|
2
|
-
export default ct(
|
|
3
|
-
/* @unocss-include */
|
|
4
|
-
{
|
|
5
|
-
slots: {
|
|
6
|
-
base: [
|
|
7
|
-
"inline-flex items-center rounded-ui-button leading-normal transition-colors",
|
|
8
|
-
"outline-none focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ui-cb/80",
|
|
9
|
-
"disabled:cursor-not-allowed aria-disabled:cursor-not-allowed disabled:opacity-50 aria-disabled:opacity-50"
|
|
10
|
-
],
|
|
11
|
-
label: "color-inherit",
|
|
12
|
-
prefixIcon: "shrink-0 size-1.5em not-only-child:ml-0.5",
|
|
13
|
-
suffixIcon: "shrink-0 size-1.5em not-only-child:mr-0.5"
|
|
14
|
-
},
|
|
15
|
-
variants: {
|
|
16
|
-
variant: {
|
|
17
|
-
"solid": {
|
|
18
|
-
base: [
|
|
19
|
-
"color-ui-c1 bg-ui-fill/90",
|
|
20
|
-
"hover:bg-ui-fill/80 active:bg-ui-fill",
|
|
21
|
-
"disabled:bg-ui-fill/90 aria-disabled:bg-ui-fill/90"
|
|
22
|
-
]
|
|
23
|
-
},
|
|
24
|
-
"outline": {
|
|
25
|
-
base: [
|
|
26
|
-
"color-ui-fill bg-ui-c1 ring ring-inset ring-ui-fill",
|
|
27
|
-
"hover:bg-ui-fill/5 active:bg-ui-fill/10",
|
|
28
|
-
"disabled:bg-ui-c1 aria-disabled:bg-ui-c1"
|
|
29
|
-
]
|
|
30
|
-
},
|
|
31
|
-
"soft": {
|
|
32
|
-
base: [
|
|
33
|
-
"color-ui-content/80 bg-ui-fill/10",
|
|
34
|
-
"hover:bg-ui-fill/15 hover:color-ui-content/80 active:bg-ui-fill/20 active:color-ui-content/90",
|
|
35
|
-
"disabled:bg-ui-fill/10 aria-disabled:bg-ui-fill/10 disabled:color-ui-content/80 aria-disabled:color-ui-content/80"
|
|
36
|
-
]
|
|
37
|
-
},
|
|
38
|
-
"soft-outline": {
|
|
39
|
-
base: [
|
|
40
|
-
"color-ui-content/80 bg-ui-fill/10 ring ring-inset ring-ui-fill/40",
|
|
41
|
-
"hover:bg-ui-fill/15 hover:color-ui-content/80 active:bg-ui-fill/20 active:color-ui-content/90",
|
|
42
|
-
"disabled:bg-ui-fill/10 aria-disabled:bg-ui-fill/10 disabled:color-ui-content/80 aria-disabled:color-ui-content/80"
|
|
43
|
-
]
|
|
44
|
-
},
|
|
45
|
-
"ghost": {
|
|
46
|
-
base: [
|
|
47
|
-
"color-ui-fill/80 bg-transparent",
|
|
48
|
-
"hover:bg-ui-fill/10 hover:color-ui-fill/80 active:bg-ui-fill/20 active:color-ui-fill/90",
|
|
49
|
-
"disabled:bg-transparent aria-disabled:bg-transparent disabled:color-ui-fill/80 aria-disabled:color-ui-fill/80"
|
|
50
|
-
]
|
|
51
|
-
},
|
|
52
|
-
"link": {
|
|
53
|
-
base: [
|
|
54
|
-
"color-ui-fill/80 bg-transparent",
|
|
55
|
-
"hover:color-ui-fill/60 active:color-ui-fill",
|
|
56
|
-
"disabled:color-ui-fill aria-disabled:color-ui-fill"
|
|
57
|
-
]
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
size: {
|
|
61
|
-
xs: {
|
|
62
|
-
base: "text-xs"
|
|
63
|
-
},
|
|
64
|
-
sm: {
|
|
65
|
-
base: "text-sm"
|
|
66
|
-
},
|
|
67
|
-
md: {
|
|
68
|
-
base: "text-base"
|
|
69
|
-
},
|
|
70
|
-
lg: {
|
|
71
|
-
base: "text-lg"
|
|
72
|
-
},
|
|
73
|
-
xl: {
|
|
74
|
-
base: "text-xl"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
active: {
|
|
78
|
-
true: ""
|
|
79
|
-
},
|
|
80
|
-
prefix: {
|
|
81
|
-
true: ""
|
|
82
|
-
},
|
|
83
|
-
suffix: {
|
|
84
|
-
true: ""
|
|
85
|
-
},
|
|
86
|
-
loading: {
|
|
87
|
-
true: ""
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
compoundVariants: [
|
|
91
|
-
{
|
|
92
|
-
size: ["xs", "sm", "md"],
|
|
93
|
-
class: {
|
|
94
|
-
base: "p-1.5",
|
|
95
|
-
label: "px-1"
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
size: ["lg", "xl"],
|
|
100
|
-
class: {
|
|
101
|
-
base: "p-2.5",
|
|
102
|
-
label: "px-2"
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
active: true,
|
|
107
|
-
variant: "solid",
|
|
108
|
-
class: { base: "bg-ui-fill hover:bg-ui-fill" }
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
active: true,
|
|
112
|
-
variant: "outline",
|
|
113
|
-
class: { base: "bg-ui-fill/10 hover:bg-ui-fill/10" }
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
active: true,
|
|
117
|
-
variant: ["soft", "soft-outline"],
|
|
118
|
-
class: { base: "color-ui-content/90 bg-ui-fill/20 hover:color-ui-content/90 hover:bg-ui-fill/20" }
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
active: true,
|
|
122
|
-
variant: "ghost",
|
|
123
|
-
class: { base: "color-ui-fill/90 bg-ui-fill/20 hover:color-ui-fill/90 hover:bg-ui-fill/20" }
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
active: true,
|
|
127
|
-
variant: "link",
|
|
128
|
-
class: { base: "color-ui-fill/90 hover:color-ui-fill/90" }
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
loading: true,
|
|
132
|
-
prefix: true,
|
|
133
|
-
class: { prefixIcon: "animate-spin" }
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
loading: true,
|
|
137
|
-
prefix: false,
|
|
138
|
-
suffix: true,
|
|
139
|
-
class: { suffixIcon: "animate-spin" }
|
|
140
|
-
}
|
|
141
|
-
]
|
|
142
|
-
}
|
|
143
|
-
);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ct } from "@byyuurin/ui-kit";
|
|
2
|
-
export default ct(
|
|
3
|
-
/* @unocss-include */
|
|
4
|
-
{
|
|
5
|
-
slots: {
|
|
6
|
-
root: "color-ui-cb bg-ui-c1 ring ring-ui-cb/10 divide-y divide-ui-cb/10 rounded-ui-box shadow-sm shadow-ui-cb/10",
|
|
7
|
-
header: "flex flex-wrap items-center gap-1 px-4 py-5 sm:px-6",
|
|
8
|
-
body: "flex-1 overflow-y-auto p-4 sm:p-6 empty:hidden",
|
|
9
|
-
footer: "flex items-center gap-1.5 p-4 sm:px-6",
|
|
10
|
-
title: "flex-grow color-ui-cb text-xl font-semibold",
|
|
11
|
-
description: "w-full color-ui-cb/80"
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
);
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export { default as accordion } from "./accordion.mjs";
|
|
2
|
-
export { default as alert } from "./alert.mjs";
|
|
3
|
-
export { default as app } from "./app.mjs";
|
|
4
|
-
export { default as badge } from "./badge.mjs";
|
|
5
|
-
export { default as button } from "./button.mjs";
|
|
6
|
-
export { default as card } from "./card.mjs";
|
|
7
|
-
export { default as checkbox } from "./checkbox.mjs";
|
|
8
|
-
export { default as chip } from "./chip.mjs";
|
|
9
|
-
export { default as drawer } from "./drawer.mjs";
|
|
10
|
-
export { default as input } from "./input.mjs";
|
|
11
|
-
export { default as link } from "./link.mjs";
|
|
12
|
-
export { default as modal } from "./modal.mjs";
|
|
13
|
-
export { default as pinInput } from "./pinInput.mjs";
|
|
14
|
-
export { default as popover } from "./popover.mjs";
|
|
15
|
-
export { default as radioGroup } from "./radioGroup.mjs";
|
|
16
|
-
export { default as scrollArea } from "./scrollArea.mjs";
|
|
17
|
-
export { default as select } from "./select.mjs";
|
|
18
|
-
export { default as slider } from "./slider.mjs";
|
|
19
|
-
export { default as switch } from "./switch.mjs";
|
|
20
|
-
export { default as tabs } from "./tabs.mjs";
|
|
21
|
-
export { default as textarea } from "./textarea.mjs";
|
|
22
|
-
export { default as toast } from "./toast.mjs";
|
|
23
|
-
export { default as toaster } from "./toaster.mjs";
|
|
24
|
-
export { default as tooltip } from "./tooltip.mjs";
|
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
import { ct } from "@byyuurin/ui-kit";
|
|
2
|
-
export default ct(
|
|
3
|
-
/* @unocss-include */
|
|
4
|
-
{
|
|
5
|
-
slots: {
|
|
6
|
-
root: "inline-flex items-center rounded-ui-base transition-colors aria-disabled:opacity-50",
|
|
7
|
-
base: [
|
|
8
|
-
"w-full color-inherit bg-transparent border-0 placeholder:color-ui-cb/50",
|
|
9
|
-
"focus:outline-none",
|
|
10
|
-
"disabled:cursor-not-allowed"
|
|
11
|
-
],
|
|
12
|
-
prefix: "flex items-center",
|
|
13
|
-
prefixIcon: "shrink-0 size-1.25em",
|
|
14
|
-
suffix: "flex items-center",
|
|
15
|
-
suffixIcon: "shrink-0 size-1.25em"
|
|
16
|
-
},
|
|
17
|
-
variants: {
|
|
18
|
-
size: {
|
|
19
|
-
xs: {
|
|
20
|
-
root: "text-xs"
|
|
21
|
-
},
|
|
22
|
-
sm: {
|
|
23
|
-
root: "text-sm"
|
|
24
|
-
},
|
|
25
|
-
md: {
|
|
26
|
-
root: "text-base"
|
|
27
|
-
},
|
|
28
|
-
lg: {
|
|
29
|
-
root: "text-lg"
|
|
30
|
-
},
|
|
31
|
-
xl: {
|
|
32
|
-
root: "text-xl"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
variant: {
|
|
36
|
-
"outline": {
|
|
37
|
-
root: [
|
|
38
|
-
"color-ui-cb/80 bg-ui-c1 ring ring-inset ring-ui-cb/50",
|
|
39
|
-
"focus-within:ring-2 focus-within:ring-ui-cb/50",
|
|
40
|
-
"aria-disabled:ring-ui-cb/80 hover:aria-disabled:ring-ui-cb/80"
|
|
41
|
-
]
|
|
42
|
-
},
|
|
43
|
-
"soft": {
|
|
44
|
-
root: [
|
|
45
|
-
"color-ui-cb/80 bg-ui-cb/4",
|
|
46
|
-
"hover:bg-ui-cb/6 hover:color-ui-cb/80 focus-within:bg-ui-cb/8 focus-within:color-ui-cb/85",
|
|
47
|
-
"aria-disabled:color-ui-cb/80 aria-disabled:bg-ui-cb/5 hover:aria-disabled:color-ui-cb/80 hover:aria-disabled:bg-ui-cb/5"
|
|
48
|
-
]
|
|
49
|
-
},
|
|
50
|
-
"soft-outline": {
|
|
51
|
-
root: [
|
|
52
|
-
"color-ui-cb/80 bg-ui-cb/4 ring ring-inset ring-ui-cb/10",
|
|
53
|
-
"hover:bg-ui-cb/6 hover:color-ui-cb/80 focus-within:bg-ui-cb/8 focus-within:color-ui-cb/85",
|
|
54
|
-
"aria-disabled:color-ui-cb/80 aria-disabled:bg-ui-cb/5 hover:aria-disabled:color-ui-cb/80 hover:aria-disabled:bg-ui-cb/5"
|
|
55
|
-
]
|
|
56
|
-
},
|
|
57
|
-
"ghost": {
|
|
58
|
-
root: [
|
|
59
|
-
"color-ui-cb/80 bg-transparent",
|
|
60
|
-
"hover:bg-ui-cb/6 hover:color-ui-cb/80 focus-within:bg-ui-cb/8 focus-within:color-ui-cb/85",
|
|
61
|
-
"aria-disabled:color-ui-fill/80 aria-disabled:bg-transparent hover:aria-disabled:color-ui-fill/80 hover:aria-disabled:bg-transparent"
|
|
62
|
-
]
|
|
63
|
-
},
|
|
64
|
-
"none": {
|
|
65
|
-
root: "color-ui-cb bg-transparent"
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
prefix: {
|
|
69
|
-
true: ""
|
|
70
|
-
},
|
|
71
|
-
suffix: {
|
|
72
|
-
true: ""
|
|
73
|
-
},
|
|
74
|
-
loading: {
|
|
75
|
-
true: ""
|
|
76
|
-
},
|
|
77
|
-
underline: {
|
|
78
|
-
true: ""
|
|
79
|
-
},
|
|
80
|
-
highlight: {
|
|
81
|
-
true: ""
|
|
82
|
-
},
|
|
83
|
-
type: {
|
|
84
|
-
file: {
|
|
85
|
-
base: "prefix-normal not-disabled:cursor-pointer file:pointer-events-none file:py-0 file:font-size-0.875em file:rounded-ui-button file:border-none file:color-ui-c1 file:bg-ui-cb/80"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
compoundVariants: [
|
|
90
|
-
{
|
|
91
|
-
variant: ["soft", "ghost", "none"],
|
|
92
|
-
highlight: false,
|
|
93
|
-
underline: true,
|
|
94
|
-
class: {
|
|
95
|
-
root: [
|
|
96
|
-
"relative after:content-empty after:absolute after:inset-x-0 after:bottom-0 after:h-1px after:bg-ui-cb/40",
|
|
97
|
-
"focus-within:after:h-2px focus-within:after:bg-ui-fill/60"
|
|
98
|
-
]
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
size: ["xs", "sm", "md"],
|
|
103
|
-
class: {
|
|
104
|
-
root: "p-1.5",
|
|
105
|
-
base: "px-1"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
size: ["lg", "xl"],
|
|
110
|
-
class: {
|
|
111
|
-
root: "p-2.5",
|
|
112
|
-
base: "px-1.5"
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
variant: ["soft", "soft-outline", "ghost", "none"],
|
|
117
|
-
highlight: true,
|
|
118
|
-
class: {
|
|
119
|
-
root: "ring ring-inset ring-ui-fill/80"
|
|
120
|
-
}
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
variant: ["outline"],
|
|
124
|
-
highlight: true,
|
|
125
|
-
class: {
|
|
126
|
-
root: "ring-2 ring-ui-fill/80 focus-within:ring-ui-fill/80"
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
loading: true,
|
|
131
|
-
prefix: true,
|
|
132
|
-
class: {
|
|
133
|
-
prefixIcon: "animate-spin"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
loading: true,
|
|
138
|
-
prefix: false,
|
|
139
|
-
suffix: true,
|
|
140
|
-
class: {
|
|
141
|
-
suffixIcon: "animate-spin"
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
]
|
|
145
|
-
}
|
|
146
|
-
);
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import type { TransitionGroupProps } from 'vue';
|
|
2
|
-
export declare const transitionProps: TransitionGroupProps;
|
|
3
|
-
declare const _default: {
|
|
4
|
-
base: undefined;
|
|
5
|
-
slots: {
|
|
6
|
-
/** Contains all the parts of a scroll area. */
|
|
7
|
-
root: string;
|
|
8
|
-
/** The viewport area of the scroll area. */
|
|
9
|
-
viewport: string;
|
|
10
|
-
/** The vertical and horizontal scrollbar. */
|
|
11
|
-
scrollbar: string[];
|
|
12
|
-
/** The thumb to be used in `ScrollAreaScrollbar`. */
|
|
13
|
-
thumb: string[];
|
|
14
|
-
/** The corner where both vertical and horizontal scrollbars meet. */
|
|
15
|
-
corner: string;
|
|
16
|
-
};
|
|
17
|
-
variants: {
|
|
18
|
-
[key: string]: {
|
|
19
|
-
[key: string]: "" | {
|
|
20
|
-
root?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
21
|
-
viewport?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
22
|
-
corner?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
23
|
-
scrollbar?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
24
|
-
thumb?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
25
|
-
} | null;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
compoundVariants: import("@byyuurin/ui-kit/index").CVCompoundVariants<{
|
|
29
|
-
[key: string]: {
|
|
30
|
-
[key: string]: "" | {
|
|
31
|
-
root?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
32
|
-
viewport?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
33
|
-
corner?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
34
|
-
scrollbar?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
35
|
-
thumb?: import("@byyuurin/ui-kit/index").ClassValue;
|
|
36
|
-
} | null;
|
|
37
|
-
};
|
|
38
|
-
}, {
|
|
39
|
-
/** Contains all the parts of a scroll area. */
|
|
40
|
-
root: string;
|
|
41
|
-
/** The viewport area of the scroll area. */
|
|
42
|
-
viewport: string;
|
|
43
|
-
/** The vertical and horizontal scrollbar. */
|
|
44
|
-
scrollbar: string[];
|
|
45
|
-
/** The thumb to be used in `ScrollAreaScrollbar`. */
|
|
46
|
-
thumb: string[];
|
|
47
|
-
/** The corner where both vertical and horizontal scrollbars meet. */
|
|
48
|
-
corner: string;
|
|
49
|
-
}, undefined>;
|
|
50
|
-
};
|
|
51
|
-
export default _default;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { fileURLToPath } from 'node:url';
|
|
2
|
-
import { normalize } from 'pathe';
|
|
3
|
-
|
|
4
|
-
const packageName = "@byyuurin/ui";
|
|
5
|
-
const runtimeDir = normalize(fileURLToPath(new URL("../runtime", import.meta.url)));
|
|
6
|
-
|
|
7
|
-
export { packageName as p, runtimeDir as r };
|
|
8
|
-
//# sourceMappingURL=ui.CzDyI29e.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ui.CzDyI29e.mjs","sources":["../../src/internal/shared.ts"],"sourcesContent":["import { fileURLToPath } from 'node:url'\r\nimport { normalize } from 'pathe'\r\n\r\nexport const packageName = '@byyuurin/ui'\r\n\r\nexport const runtimeDir = normalize(fileURLToPath(new URL('../runtime', import.meta.url)))\r\n"],"names":[],"mappings":";;;AAGO,MAAM,WAAc,GAAA;AAEd,MAAA,UAAA,GAAa,UAAU,aAAc,CAAA,IAAI,IAAI,YAAc,EAAA,MAAA,CAAA,IAAA,CAAY,GAAG,CAAC,CAAC;;;;"}
|