@byyuurin/ui 0.0.4 → 0.0.6
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 +23 -29
- package/dist/index.d.ts +28 -2
- package/dist/index.mjs +28 -2
- package/dist/nuxt.d.mts +1 -1
- package/dist/nuxt.d.ts +1 -1
- package/dist/nuxt.mjs +15 -10
- package/dist/nuxt.mjs.map +1 -0
- package/dist/runtime/components/Accordion.vue +1 -1
- package/dist/runtime/components/Alert.vue +120 -0
- package/dist/runtime/components/App.vue +1 -1
- package/dist/runtime/components/Badge.vue +70 -0
- package/dist/runtime/components/Button.vue +7 -3
- package/dist/runtime/components/ButtonGroup.vue +47 -0
- package/dist/runtime/components/Card.vue +4 -4
- package/dist/runtime/components/Carousel.vue +310 -0
- package/dist/runtime/components/Checkbox.vue +1 -2
- package/dist/runtime/components/Chip.vue +64 -0
- package/dist/runtime/components/Drawer.vue +2 -2
- package/dist/runtime/components/Input.vue +10 -5
- package/dist/runtime/components/Link.vue +1 -1
- package/dist/runtime/components/Modal.vue +4 -5
- package/dist/runtime/components/Pagination.vue +167 -0
- package/dist/runtime/components/PinInput.vue +85 -0
- package/dist/runtime/components/Popover.vue +1 -1
- package/dist/runtime/components/RadioGroup.vue +1 -2
- package/dist/runtime/components/ScrollArea.vue +2 -2
- package/dist/runtime/components/Select.vue +7 -2
- package/dist/runtime/components/Slider.vue +96 -0
- package/dist/runtime/components/Switch.vue +2 -4
- package/dist/runtime/components/Tabs.vue +1 -2
- package/dist/runtime/components/Textarea.vue +2 -4
- package/dist/runtime/components/Toast.vue +21 -10
- package/dist/runtime/components/Toaster.vue +5 -5
- package/dist/runtime/components/Tooltip.vue +1 -1
- package/dist/runtime/composables/useButtonGroup.d.ts +13 -0
- package/dist/runtime/composables/useButtonGroup.mjs +14 -0
- package/dist/runtime/composables/useTheme.d.ts +2 -2
- package/dist/runtime/composables/useTheme.mjs +1 -1
- package/dist/runtime/composables/useToast.d.ts +4 -4
- package/dist/runtime/composables/useToast.mjs +19 -6
- package/dist/runtime/theme/accordion.d.ts +17 -0
- package/dist/runtime/theme/accordion.mjs +24 -21
- package/dist/runtime/theme/alert.d.ts +125 -0
- package/dist/runtime/theme/alert.mjs +47 -0
- package/dist/runtime/theme/app.d.ts +5 -0
- package/dist/runtime/theme/app.mjs +7 -1
- package/dist/runtime/theme/badge.d.ts +82 -0
- package/dist/runtime/theme/badge.mjs +92 -0
- package/dist/runtime/theme/button-group.d.ts +66 -0
- package/dist/runtime/theme/button-group.mjs +42 -0
- package/dist/runtime/theme/button.d.ts +15 -1
- package/dist/runtime/theme/button.mjs +135 -119
- package/dist/runtime/theme/card.d.ts +21 -2
- package/dist/runtime/theme/card.mjs +12 -9
- package/dist/runtime/theme/carousel.d.ts +113 -0
- package/dist/runtime/theme/carousel.mjs +43 -0
- package/dist/runtime/theme/checkbox.d.ts +3 -0
- package/dist/runtime/theme/checkbox.mjs +47 -41
- package/dist/runtime/theme/chip.d.ts +67 -0
- package/dist/runtime/theme/chip.mjs +68 -0
- package/dist/runtime/theme/drawer.d.ts +38 -0
- package/dist/runtime/theme/drawer.mjs +69 -66
- package/dist/runtime/theme/index.d.ts +10 -2
- package/dist/runtime/theme/index.mjs +10 -2
- package/dist/runtime/theme/input.d.ts +41 -22
- package/dist/runtime/theme/input.mjs +139 -121
- package/dist/runtime/theme/link.d.ts +14 -1
- package/dist/runtime/theme/link.mjs +23 -20
- package/dist/runtime/theme/modal.d.ts +3 -0
- package/dist/runtime/theme/modal.mjs +53 -47
- package/dist/runtime/theme/pagination.d.ts +56 -0
- package/dist/runtime/theme/pagination.mjs +13 -0
- package/dist/runtime/theme/pinInput.d.ts +100 -0
- package/dist/runtime/theme/pinInput.mjs +111 -0
- package/dist/runtime/theme/popover.d.ts +11 -0
- package/dist/runtime/theme/popover.mjs +11 -8
- package/dist/runtime/theme/{radioGroup.d.ts → radio-group.d.ts} +3 -0
- package/dist/runtime/theme/radio-group.mjs +61 -0
- package/dist/runtime/theme/{scrollArea.d.ts → scroll-area.d.ts} +22 -0
- package/dist/runtime/theme/scroll-area.mjs +33 -0
- package/dist/runtime/theme/select.d.ts +16 -2
- package/dist/runtime/theme/select.mjs +160 -142
- package/dist/runtime/theme/slider.d.ts +76 -0
- package/dist/runtime/theme/slider.mjs +52 -0
- package/dist/runtime/theme/switch.d.ts +3 -0
- package/dist/runtime/theme/switch.mjs +69 -63
- package/dist/runtime/theme/tabs.d.ts +15 -2
- package/dist/runtime/theme/tabs.mjs +134 -112
- package/dist/runtime/theme/textarea.d.ts +8 -2
- package/dist/runtime/theme/textarea.mjs +105 -89
- package/dist/runtime/theme/toast.d.ts +44 -6
- package/dist/runtime/theme/toast.mjs +30 -22
- package/dist/runtime/theme/toaster.d.ts +51 -2
- package/dist/runtime/theme/toaster.mjs +88 -80
- package/dist/runtime/theme/tooltip.d.ts +13 -0
- package/dist/runtime/theme/tooltip.mjs +9 -6
- package/dist/runtime/types/components.d.ts +27 -20
- package/dist/runtime/types/components.mjs +27 -0
- package/dist/runtime/types/index.d.ts +1 -3
- package/dist/runtime/types/utils.d.ts +1 -1
- package/dist/runtime/utils/extend-theme.mjs +1 -1
- package/dist/runtime/utils/link.d.ts +1 -1
- package/dist/runtime/utils/styler.d.ts +2 -2
- package/dist/shared/ui.D4zm1r0C.mjs +4 -0
- package/dist/shared/ui.D4zm1r0C.mjs.map +1 -0
- package/dist/{unocss-preset.d.mts → unocss.d.mts} +4 -4
- package/dist/{unocss-preset.d.ts → unocss.d.ts} +4 -4
- package/dist/{unocss-preset.mjs → unocss.mjs} +58 -36
- package/dist/unocss.mjs.map +1 -0
- package/dist/unplugin.d.mts +26 -0
- package/dist/unplugin.d.ts +26 -0
- package/dist/unplugin.mjs +72 -0
- package/dist/unplugin.mjs.map +1 -0
- package/dist/vite.d.mts +10 -0
- package/dist/vite.d.ts +10 -0
- package/dist/vite.mjs +14 -0
- package/dist/vite.mjs.map +1 -0
- package/package.json +46 -26
- package/dist/resolver.d.mts +0 -13
- package/dist/resolver.d.ts +0 -13
- package/dist/resolver.mjs +0 -21
- package/dist/runtime/components/index.d.ts +0 -20
- package/dist/runtime/components/index.mjs +0 -20
- package/dist/runtime/composables/index.d.ts +0 -5
- package/dist/runtime/composables/index.mjs +0 -5
- package/dist/runtime/theme/radioGroup.mjs +0 -55
- package/dist/runtime/theme/scrollArea.mjs +0 -30
- package/dist/shared/ui.Cmq14xN9.mjs +0 -25
- /package/{LICENSE.md → LICENSE} +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.6",
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "Yuurin <byyuurin@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -18,23 +18,23 @@
|
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
19
|
"default": "./dist/index.mjs"
|
|
20
20
|
},
|
|
21
|
-
"./
|
|
22
|
-
"types": "./dist/
|
|
23
|
-
"default": "./dist/
|
|
21
|
+
"./unplugin": {
|
|
22
|
+
"types": "./dist/unplugin.d.ts",
|
|
23
|
+
"default": "./dist/unplugin.mjs"
|
|
24
24
|
},
|
|
25
|
-
"./
|
|
26
|
-
"types": "./dist/
|
|
27
|
-
"default": "./dist/
|
|
25
|
+
"./vite": {
|
|
26
|
+
"types": "./dist/vite.d.ts",
|
|
27
|
+
"default": "./dist/vite.mjs"
|
|
28
28
|
},
|
|
29
29
|
"./nuxt": {
|
|
30
30
|
"types": "./dist/nuxt.d.ts",
|
|
31
31
|
"default": "./dist/nuxt.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
36
|
},
|
|
37
|
-
"
|
|
37
|
+
"./runtime/*": "./dist/runtime/*"
|
|
38
38
|
},
|
|
39
39
|
"main": "dist/index.mjs",
|
|
40
40
|
"module": "dist/index.mjs",
|
|
@@ -62,38 +62,58 @@
|
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@byyuurin/ui-kit": "^0.
|
|
65
|
+
"@byyuurin/ui-kit": "^0.4.1",
|
|
66
66
|
"@nuxt/kit": "^3.15.4",
|
|
67
|
-
"@unocss/core": "^65.
|
|
68
|
-
"@unocss/preset-mini": "^65.
|
|
69
|
-
"@unocss/preset-uno": "^65.
|
|
70
|
-
"@vueuse/core": "^12.
|
|
67
|
+
"@unocss/core": "^65.5.0",
|
|
68
|
+
"@unocss/preset-mini": "^65.5.0",
|
|
69
|
+
"@unocss/preset-uno": "^65.5.0",
|
|
70
|
+
"@vueuse/core": "^12.7.0",
|
|
71
71
|
"defu": "^6.1.4",
|
|
72
|
+
"embla-carousel": "^8.5.2",
|
|
73
|
+
"embla-carousel-auto-height": "^8.5.2",
|
|
74
|
+
"embla-carousel-auto-scroll": "^8.5.2",
|
|
75
|
+
"embla-carousel-autoplay": "^8.5.2",
|
|
76
|
+
"embla-carousel-class-names": "^8.5.2",
|
|
77
|
+
"embla-carousel-fade": "^8.5.2",
|
|
78
|
+
"embla-carousel-vue": "^8.5.2",
|
|
79
|
+
"embla-carousel-wheel-gestures": "^8.0.1",
|
|
80
|
+
"magic-string": "^0.30.17",
|
|
81
|
+
"mlly": "^1.7.4",
|
|
72
82
|
"ohash": "^1.1.4",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
83
|
+
"pathe": "^2.0.3",
|
|
84
|
+
"reka-ui": "^2.0.0",
|
|
85
|
+
"scule": "^1.3.0",
|
|
86
|
+
"tinyglobby": "^0.2.12",
|
|
87
|
+
"unplugin": "^2.2.0",
|
|
88
|
+
"unplugin-auto-import": "^19.1.0",
|
|
89
|
+
"unplugin-vue-components": "^28.4.0",
|
|
90
|
+
"vaul-vue": "^0.3.0",
|
|
91
|
+
"vue-component-type-helpers": "^2.2.2"
|
|
76
92
|
},
|
|
77
93
|
"devDependencies": {
|
|
78
94
|
"@antfu/ni": "^23.3.1",
|
|
79
|
-
"@byyuurin/eslint-config": "^1.7.
|
|
95
|
+
"@byyuurin/eslint-config": "^1.7.1",
|
|
80
96
|
"@nuxt/schema": "^3.15.4",
|
|
81
97
|
"@types/node": "^22.13.1",
|
|
82
|
-
"
|
|
83
|
-
"
|
|
98
|
+
"@unocss/reset": "^65.5.0",
|
|
99
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
100
|
+
"bumpp": "^10.0.3",
|
|
101
|
+
"eslint": "^9.20.1",
|
|
84
102
|
"eslint-plugin-format": "1.0.1",
|
|
85
103
|
"esno": "^4.8.0",
|
|
86
104
|
"lint-staged": "^15.4.3",
|
|
87
105
|
"simple-git-hooks": "^2.11.1",
|
|
88
106
|
"typescript": "^5.7.3",
|
|
89
107
|
"unbuild": "^3.3.1",
|
|
90
|
-
"
|
|
91
|
-
"
|
|
108
|
+
"unocss": "^65.5.0",
|
|
109
|
+
"vite": "^6.0.11",
|
|
110
|
+
"vite-plugin-inspect": "^10.2.1",
|
|
111
|
+
"vitest": "^3.0.6",
|
|
92
112
|
"vue": "^3.5.13",
|
|
93
|
-
"vue-tsc": "^2.2.
|
|
113
|
+
"vue-tsc": "^2.2.2"
|
|
94
114
|
},
|
|
95
115
|
"resolutions": {
|
|
96
|
-
"
|
|
116
|
+
"@byyuurin/ui": "workspace:*"
|
|
97
117
|
},
|
|
98
118
|
"simple-git-hooks": {
|
|
99
119
|
"pre-commit": "pnpm lint-staged"
|
package/dist/resolver.d.mts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ComponentResolver } from 'unplugin-vue-components';
|
|
2
|
-
|
|
3
|
-
interface ResolverOptions {
|
|
4
|
-
/**
|
|
5
|
-
* prefix for components used in templates
|
|
6
|
-
*
|
|
7
|
-
* @default ""
|
|
8
|
-
*/
|
|
9
|
-
prefix?: string;
|
|
10
|
-
}
|
|
11
|
-
declare function export_default(options?: ResolverOptions): ComponentResolver;
|
|
12
|
-
|
|
13
|
-
export { type ResolverOptions, export_default as default };
|
package/dist/resolver.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ComponentResolver } from 'unplugin-vue-components';
|
|
2
|
-
|
|
3
|
-
interface ResolverOptions {
|
|
4
|
-
/**
|
|
5
|
-
* prefix for components used in templates
|
|
6
|
-
*
|
|
7
|
-
* @default ""
|
|
8
|
-
*/
|
|
9
|
-
prefix?: string;
|
|
10
|
-
}
|
|
11
|
-
declare function export_default(options?: ResolverOptions): ComponentResolver;
|
|
12
|
-
|
|
13
|
-
export { type ResolverOptions, export_default as default };
|
package/dist/resolver.mjs
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { c as componentNames, p as packageName } from './shared/ui.Cmq14xN9.mjs';
|
|
2
|
-
|
|
3
|
-
function resolver(options = {}) {
|
|
4
|
-
const { prefix = "" } = options;
|
|
5
|
-
return {
|
|
6
|
-
type: "component",
|
|
7
|
-
resolve(name) {
|
|
8
|
-
if (name.toLowerCase().startsWith(prefix.toLowerCase())) {
|
|
9
|
-
const componentName = name.slice(prefix.length);
|
|
10
|
-
if (componentNames.includes(componentName)) {
|
|
11
|
-
return {
|
|
12
|
-
name: componentName,
|
|
13
|
-
from: packageName
|
|
14
|
-
};
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export { resolver as default };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export { default as Accordion } from './Accordion.vue';
|
|
2
|
-
export { default as App } from './App.vue';
|
|
3
|
-
export { default as Button } from './Button.vue';
|
|
4
|
-
export { default as Card } from './Card.vue';
|
|
5
|
-
export { default as Checkbox } from './Checkbox.vue';
|
|
6
|
-
export { default as Drawer } from './Drawer.vue';
|
|
7
|
-
export { default as Input } from './Input.vue';
|
|
8
|
-
export { default as Link } from './Link.vue';
|
|
9
|
-
export { default as Modal } from './Modal.vue';
|
|
10
|
-
export { default as ModalProvider } from './ModalProvider.vue';
|
|
11
|
-
export { default as Popover } from './Popover.vue';
|
|
12
|
-
export { default as RadioGroup } from './RadioGroup.vue';
|
|
13
|
-
export { default as ScrollArea } from './ScrollArea.vue';
|
|
14
|
-
export { default as Select } from './Select.vue';
|
|
15
|
-
export { default as Switch } from './Switch.vue';
|
|
16
|
-
export { default as Tabs } from './Tabs.vue';
|
|
17
|
-
export { default as Textarea } from './Textarea.vue';
|
|
18
|
-
export { default as Toast } from './Toast.vue';
|
|
19
|
-
export { default as Toaster } from './Toaster.vue';
|
|
20
|
-
export { default as Tooltip } from './Tooltip.vue';
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
export { default as Accordion } from "./Accordion.vue";
|
|
2
|
-
export { default as App } from "./App.vue";
|
|
3
|
-
export { default as Button } from "./Button.vue";
|
|
4
|
-
export { default as Card } from "./Card.vue";
|
|
5
|
-
export { default as Checkbox } from "./Checkbox.vue";
|
|
6
|
-
export { default as Drawer } from "./Drawer.vue";
|
|
7
|
-
export { default as Input } from "./Input.vue";
|
|
8
|
-
export { default as Link } from "./Link.vue";
|
|
9
|
-
export { default as Modal } from "./Modal.vue";
|
|
10
|
-
export { default as ModalProvider } from "./ModalProvider.vue";
|
|
11
|
-
export { default as Popover } from "./Popover.vue";
|
|
12
|
-
export { default as RadioGroup } from "./RadioGroup.vue";
|
|
13
|
-
export { default as ScrollArea } from "./ScrollArea.vue";
|
|
14
|
-
export { default as Select } from "./Select.vue";
|
|
15
|
-
export { default as Switch } from "./Switch.vue";
|
|
16
|
-
export { default as Tabs } from "./Tabs.vue";
|
|
17
|
-
export { default as Textarea } from "./Textarea.vue";
|
|
18
|
-
export { default as Toast } from "./Toast.vue";
|
|
19
|
-
export { default as Toaster } from "./Toaster.vue";
|
|
20
|
-
export { default as Tooltip } from "./Tooltip.vue";
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { ct } from "@byyuurin/ui-kit";
|
|
2
|
-
export default ct({
|
|
3
|
-
slots: {
|
|
4
|
-
root: "relative",
|
|
5
|
-
fieldset: "flex flex-wrap gap-2 gap-x-4",
|
|
6
|
-
legend: "mb-2 color-ui-cb",
|
|
7
|
-
item: "flex items-start",
|
|
8
|
-
base: "relative size-1.25em rounded-ui-radio ring ring-inset ring-ui-cb focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ui-cb transition data-[state=checked]:ring-ui-base",
|
|
9
|
-
indicator: "absolute inset-0 scale-0 rounded-ui-radio bg-ui-fill transition data-[state=checked]:scale-66",
|
|
10
|
-
container: "h-1.5em flex items-center",
|
|
11
|
-
wrapper: "",
|
|
12
|
-
label: "block ps-2 color-ui-cb",
|
|
13
|
-
description: "ps-2 color-ui-cb/60"
|
|
14
|
-
},
|
|
15
|
-
variants: {
|
|
16
|
-
orientation: {
|
|
17
|
-
horizontal: {
|
|
18
|
-
fieldset: "flex-row"
|
|
19
|
-
},
|
|
20
|
-
vertical: {
|
|
21
|
-
fieldset: "flex-col"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
size: {
|
|
25
|
-
xs: {
|
|
26
|
-
root: "text-xs"
|
|
27
|
-
},
|
|
28
|
-
sm: {
|
|
29
|
-
root: "text-sm"
|
|
30
|
-
},
|
|
31
|
-
md: {
|
|
32
|
-
root: "text-base"
|
|
33
|
-
},
|
|
34
|
-
lg: {
|
|
35
|
-
root: "text-lg"
|
|
36
|
-
},
|
|
37
|
-
xl: {
|
|
38
|
-
root: "text-xl"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
disabled: {
|
|
42
|
-
true: {
|
|
43
|
-
root: "opacity-50 after:content-empty after:absolute after:inset-0 after:cursor-not-allowed"
|
|
44
|
-
},
|
|
45
|
-
false: {
|
|
46
|
-
label: "cursor-pointer"
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
required: {
|
|
50
|
-
true: {
|
|
51
|
-
legend: "after:content-['*'] after:ms-0.5"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
});
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { ct } from "@byyuurin/ui-kit";
|
|
2
|
-
export const transitionProps = {
|
|
3
|
-
enterFromClass: "opacity-0",
|
|
4
|
-
enterActiveClass: "transition",
|
|
5
|
-
leaveToClass: "opacity-0",
|
|
6
|
-
leaveActiveClass: "transition",
|
|
7
|
-
moveClass: "transition"
|
|
8
|
-
};
|
|
9
|
-
export default ct({
|
|
10
|
-
slots: {
|
|
11
|
-
/** Contains all the parts of a scroll area. */
|
|
12
|
-
root: "relative overflow-hidden shadow-sm shadow-ui-cb/10 bg-ui-c1 border border-ui-cb/10 rounded-ui-base",
|
|
13
|
-
/** The viewport area of the scroll area. */
|
|
14
|
-
viewport: "size-full rounded-ui-base",
|
|
15
|
-
/** The vertical and horizontal scrollbar. */
|
|
16
|
-
scrollbar: [
|
|
17
|
-
"flex select-none touch-none p-0.5 duration-160 ease-out",
|
|
18
|
-
"data-[orientation=vertical]:w-2.5 data-[orientation=vertical]:my-[calc(var(--ui-radius-box)+0.25rem)]",
|
|
19
|
-
"data-[orientation=horizontal]:flex-col data-[orientation=horizontal]:h-2.5 data-[orientation=horizontal]:mx-[calc(var(--ui-radius-box)+0.25rem)]"
|
|
20
|
-
],
|
|
21
|
-
/** The thumb to be used in `ScrollAreaScrollbar`. */
|
|
22
|
-
thumb: [
|
|
23
|
-
"relative flex-1 bg-ui-cb/20 rounded-ui-base cursor-pointer transition-colors",
|
|
24
|
-
"hover:bg-ui-cb/30 active:bg-ui-cb/40",
|
|
25
|
-
"before:content-empty before:absolute before:top-1/2 before:left-1/2 before:-translate-x-1/2 before:-translate-y-1/2 before:w-full before:h-full before:min-w-10 before:min-h-10 "
|
|
26
|
-
],
|
|
27
|
-
/** The corner where both vertical and horizontal scrollbars meet. */
|
|
28
|
-
corner: ""
|
|
29
|
-
}
|
|
30
|
-
});
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
const packageName = "@byyuurin/ui";
|
|
2
|
-
const componentNames = [
|
|
3
|
-
"Accordion",
|
|
4
|
-
"App",
|
|
5
|
-
"Button",
|
|
6
|
-
"Card",
|
|
7
|
-
"Checkbox",
|
|
8
|
-
"Drawer",
|
|
9
|
-
"Input",
|
|
10
|
-
"Link",
|
|
11
|
-
"Modal",
|
|
12
|
-
"ModalProvider",
|
|
13
|
-
"Popover",
|
|
14
|
-
"RadioGroup",
|
|
15
|
-
"ScrollArea",
|
|
16
|
-
"Select",
|
|
17
|
-
"Switch",
|
|
18
|
-
"Tabs",
|
|
19
|
-
"Textarea",
|
|
20
|
-
"Toast",
|
|
21
|
-
"Toaster",
|
|
22
|
-
"Tooltip"
|
|
23
|
-
];
|
|
24
|
-
|
|
25
|
-
export { componentNames as c, packageName as p };
|
/package/{LICENSE.md → LICENSE}
RENAMED
|
File without changes
|