@byyuurin/ui 0.0.10 → 0.0.11
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 +2 -2
- package/dist/module.json +3 -3
- package/dist/module.mjs +1 -1
- package/dist/module.mjs.map +1 -1
- package/dist/runtime/app/injections.d.ts +388 -364
- package/dist/runtime/components/Accordion.vue +38 -67
- package/dist/runtime/components/Accordion.vue.d.ts +52 -0
- package/dist/runtime/components/Alert.vue +37 -75
- package/dist/runtime/components/Alert.vue.d.ts +59 -0
- package/dist/runtime/components/App.vue +25 -40
- package/dist/runtime/components/App.vue.d.ts +24 -0
- package/dist/runtime/components/Avatar.vue +31 -51
- package/dist/runtime/components/Avatar.vue.d.ts +25 -0
- package/dist/runtime/components/AvatarGroup.vue +38 -69
- package/dist/runtime/components/AvatarGroup.vue.d.ts +27 -0
- package/dist/runtime/components/Badge.vue +25 -51
- package/dist/runtime/components/Badge.vue.d.ts +44 -0
- package/dist/runtime/components/Breadcrumb.vue +36 -74
- package/dist/runtime/components/Breadcrumb.vue.d.ts +52 -0
- package/dist/runtime/components/Button.vue +62 -51
- package/dist/runtime/components/Button.vue.d.ts +29 -0
- package/dist/runtime/components/ButtonGroup.vue +17 -37
- package/dist/runtime/components/ButtonGroup.vue.d.ts +26 -0
- package/dist/runtime/components/Calendar.vue +75 -110
- package/dist/runtime/components/Calendar.vue.d.ts +75 -0
- package/dist/runtime/components/Card.vue +25 -42
- package/dist/runtime/components/Card.vue.d.ts +30 -0
- package/dist/runtime/components/Carousel.vue +118 -225
- package/dist/runtime/components/Carousel.vue.d.ts +104 -0
- package/dist/runtime/components/Checkbox.vue +46 -73
- package/dist/runtime/components/Checkbox.vue.d.ts +56 -0
- package/dist/runtime/components/Chip.vue +31 -48
- package/dist/runtime/components/Chip.vue.d.ts +30 -0
- package/dist/runtime/components/Collapsible.vue +22 -30
- package/dist/runtime/components/Collapsible.vue.d.ts +26 -0
- package/dist/runtime/components/Drawer.vue +51 -101
- package/dist/runtime/components/Drawer.vue.d.ts +80 -0
- package/dist/runtime/components/DropdownMenu.vue +37 -115
- package/dist/runtime/components/DropdownMenu.vue.d.ts +99 -0
- package/dist/runtime/components/DropdownMenuContent.vue +81 -77
- package/dist/runtime/components/DropdownMenuContent.vue.d.ts +39 -0
- package/dist/runtime/components/Form.vue +140 -254
- package/dist/runtime/components/Form.vue.d.ts +78 -0
- package/dist/runtime/components/FormItem.vue +50 -89
- package/dist/runtime/components/FormItem.vue.d.ts +60 -0
- package/dist/runtime/components/Input.vue +79 -115
- package/dist/runtime/components/Input.vue.d.ts +64 -0
- package/dist/runtime/components/InputNumber.vue +74 -117
- package/dist/runtime/components/InputNumber.vue.d.ts +245 -0
- package/dist/runtime/components/Kbd.vue +18 -39
- package/dist/runtime/components/Kbd.vue.d.ts +28 -0
- package/dist/runtime/components/Link.vue +168 -257
- package/dist/runtime/components/Link.vue.d.ts +95 -0
- package/dist/runtime/components/LinkBase.vue +36 -54
- package/dist/runtime/components/LinkBase.vue.d.ts +28 -0
- package/dist/runtime/components/Modal.vue +49 -84
- package/dist/runtime/components/Modal.vue.d.ts +66 -0
- package/dist/runtime/components/OverlayProvider.vue +10 -14
- package/dist/runtime/components/OverlayProvider.vue.d.ts +2 -0
- package/dist/runtime/components/Pagination.vue +55 -121
- package/dist/runtime/components/Pagination.vue.d.ts +93 -0
- package/dist/runtime/components/PinInput.vue +49 -58
- package/dist/runtime/components/PinInput.vue.d.ts +35 -0
- package/dist/runtime/components/Popover.vue +39 -68
- package/dist/runtime/components/Popover.vue.d.ts +45 -0
- package/dist/runtime/components/Progress.vue +68 -120
- package/dist/runtime/components/Progress.vue.d.ts +54 -0
- package/dist/runtime/components/RadioGroup.vue +67 -125
- package/dist/runtime/components/RadioGroup.vue.d.ts +74 -0
- package/dist/runtime/components/ScrollArea.vue +31 -31
- package/dist/runtime/components/ScrollArea.vue.d.ts +17 -0
- package/dist/runtime/components/Select.vue +114 -204
- package/dist/runtime/components/Select.vue.d.ts +119 -0
- package/dist/runtime/components/Separator.vue +26 -44
- package/dist/runtime/components/Separator.vue.d.ts +27 -0
- package/dist/runtime/components/Skeleton.vue +12 -21
- package/dist/runtime/components/Skeleton.vue.d.ts +19 -0
- package/dist/runtime/components/Slider.vue +52 -74
- package/dist/runtime/components/Slider.vue.d.ts +36 -0
- package/dist/runtime/components/Switch.vue +51 -71
- package/dist/runtime/components/Switch.vue.d.ts +49 -0
- package/dist/runtime/components/Table.vue +108 -194
- package/dist/runtime/components/Table.vue.d.ts +148 -0
- package/dist/runtime/components/Tabs.vue +36 -81
- package/dist/runtime/components/Tabs.vue.d.ts +65 -0
- package/dist/runtime/components/Textarea.vue +77 -124
- package/dist/runtime/components/Textarea.vue.d.ts +60 -0
- package/dist/runtime/components/Toast.vue +47 -75
- package/dist/runtime/components/Toast.vue.d.ts +131 -0
- package/dist/runtime/components/ToastProvider.vue +65 -101
- package/dist/runtime/components/ToastProvider.vue.d.ts +38 -0
- package/dist/runtime/components/Tooltip.vue +36 -47
- package/dist/runtime/components/Tooltip.vue.d.ts +31 -0
- package/dist/runtime/composables/useAvatarGroup.d.ts +1 -1
- package/dist/runtime/composables/useButtonGroup.d.ts +2 -2
- package/dist/runtime/composables/useFormItem.d.ts +2 -2
- package/dist/runtime/composables/useKbd.d.ts +1 -1
- package/dist/runtime/composables/useLocale.d.ts +3 -3
- package/dist/runtime/composables/useTheme.d.ts +1 -1
- package/dist/runtime/composables/useToast.d.ts +1 -1
- package/dist/runtime/locale/en.d.ts +1 -1
- package/dist/runtime/locale/zh-tw.d.ts +1 -1
- package/dist/runtime/theme/accordion.d.ts +45 -51
- package/dist/runtime/theme/accordion.js +1 -1
- package/dist/runtime/theme/alert.d.ts +115 -121
- package/dist/runtime/theme/alert.js +1 -1
- package/dist/runtime/theme/avatar-group.d.ts +42 -48
- package/dist/runtime/theme/avatar-group.js +1 -1
- package/dist/runtime/theme/avatar.d.ts +46 -52
- package/dist/runtime/theme/avatar.js +1 -1
- package/dist/runtime/theme/badge.d.ts +60 -66
- package/dist/runtime/theme/badge.js +1 -1
- package/dist/runtime/theme/breadcrumb.d.ts +52 -58
- package/dist/runtime/theme/breadcrumb.js +1 -1
- package/dist/runtime/theme/button-group.d.ts +36 -42
- package/dist/runtime/theme/button.d.ts +162 -168
- package/dist/runtime/theme/button.js +1 -1
- package/dist/runtime/theme/calendar.d.ts +52 -50
- package/dist/runtime/theme/calendar.js +20 -3
- package/dist/runtime/theme/card.d.ts +52 -58
- package/dist/runtime/theme/card.js +1 -1
- package/dist/runtime/theme/carousel.d.ts +98 -104
- package/dist/runtime/theme/carousel.js +1 -1
- package/dist/runtime/theme/checkbox.d.ts +77 -83
- package/dist/runtime/theme/checkbox.js +1 -1
- package/dist/runtime/theme/chip.d.ts +50 -56
- package/dist/runtime/theme/chip.js +1 -1
- package/dist/runtime/theme/collapsible.d.ts +29 -35
- package/dist/runtime/theme/collapsible.js +1 -1
- package/dist/runtime/theme/drawer.d.ts +120 -126
- package/dist/runtime/theme/drawer.js +1 -1
- package/dist/runtime/theme/dropdown-menu.d.ts +55 -61
- package/dist/runtime/theme/dropdown-menu.js +1 -1
- package/dist/runtime/theme/form-item.d.ts +63 -69
- package/dist/runtime/theme/form-item.js +1 -1
- package/dist/runtime/theme/form.d.ts +1 -7
- package/dist/runtime/theme/input-number.d.ts +98 -104
- package/dist/runtime/theme/input-number.js +1 -1
- package/dist/runtime/theme/input.d.ts +153 -159
- package/dist/runtime/theme/input.js +1 -1
- package/dist/runtime/theme/kbd.d.ts +30 -36
- package/dist/runtime/theme/link.d.ts +37 -43
- package/dist/runtime/theme/modal.d.ts +36 -42
- package/dist/runtime/theme/modal.js +1 -1
- package/dist/runtime/theme/pagination.d.ts +71 -77
- package/dist/runtime/theme/pagination.js +1 -1
- package/dist/runtime/theme/pinInput.d.ts +80 -86
- package/dist/runtime/theme/pinInput.js +1 -1
- package/dist/runtime/theme/popover.d.ts +29 -35
- package/dist/runtime/theme/popover.js +1 -1
- package/dist/runtime/theme/progress.d.ts +163 -169
- package/dist/runtime/theme/progress.js +1 -1
- package/dist/runtime/theme/radio-group.d.ts +99 -105
- package/dist/runtime/theme/radio-group.js +1 -1
- package/dist/runtime/theme/scroll-area.d.ts +62 -68
- package/dist/runtime/theme/scroll-area.js +1 -1
- package/dist/runtime/theme/select.d.ts +165 -171
- package/dist/runtime/theme/select.js +1 -1
- package/dist/runtime/theme/separator.d.ts +62 -68
- package/dist/runtime/theme/separator.js +1 -1
- package/dist/runtime/theme/skeleton.d.ts +1 -7
- package/dist/runtime/theme/slider.d.ts +62 -68
- package/dist/runtime/theme/slider.js +1 -1
- package/dist/runtime/theme/switch.d.ts +111 -117
- package/dist/runtime/theme/switch.js +1 -1
- package/dist/runtime/theme/table.d.ts +75 -81
- package/dist/runtime/theme/table.js +1 -1
- package/dist/runtime/theme/tabs.d.ts +114 -120
- package/dist/runtime/theme/tabs.js +1 -1
- package/dist/runtime/theme/textarea.d.ts +76 -82
- package/dist/runtime/theme/textarea.js +1 -1
- package/dist/runtime/theme/toast-provider.d.ts +106 -112
- package/dist/runtime/theme/toast-provider.js +1 -1
- package/dist/runtime/theme/toast.d.ts +74 -80
- package/dist/runtime/theme/toast.js +1 -1
- package/dist/runtime/theme/tooltip.d.ts +35 -41
- package/dist/runtime/theme/tooltip.js +1 -1
- package/dist/runtime/types/utils.d.ts +5 -5
- package/dist/runtime/utils/link.d.ts +3 -5
- package/dist/runtime/utils/styler.d.ts +2 -2
- package/dist/runtime/utils/styler.js +2 -2
- package/dist/shared/ui.D1BTWZFB.mjs +5 -0
- package/dist/shared/ui.D1BTWZFB.mjs.map +1 -0
- package/dist/types.d.mts +1 -1
- package/dist/unocss.mjs +5 -4
- package/dist/unocss.mjs.map +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/unplugin.mjs.map +1 -1
- package/dist/vite.mjs +1 -1
- package/package.json +77 -75
- package/dist/module.cjs +0 -5
- package/dist/shared/ui.3e7fad19.mjs +0 -5
- package/dist/shared/ui.3e7fad19.mjs.map +0 -1
- package/dist/types.d.ts +0 -1
|
@@ -1,148 +1,142 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
overlay: string;
|
|
5
|
-
content: string;
|
|
6
|
-
container: string;
|
|
7
|
-
header: string;
|
|
8
|
-
body: string;
|
|
9
|
-
footer: string;
|
|
10
|
-
title: string;
|
|
11
|
-
description: string;
|
|
12
|
-
close: string;
|
|
13
|
-
};
|
|
14
|
-
variants: {
|
|
15
|
-
direction: {
|
|
16
|
-
top: {
|
|
17
|
-
content: string;
|
|
18
|
-
};
|
|
19
|
-
bottom: {
|
|
20
|
-
content: string;
|
|
21
|
-
};
|
|
22
|
-
left: {
|
|
23
|
-
content: string;
|
|
24
|
-
};
|
|
25
|
-
right: {
|
|
26
|
-
content: string;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
transition: {
|
|
30
|
-
true: {
|
|
31
|
-
overlay: string;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
inset: {
|
|
35
|
-
true: {
|
|
36
|
-
content: string;
|
|
37
|
-
};
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
compoundVariants: ({
|
|
41
|
-
direction: ("top" | "bottom")[];
|
|
42
|
-
class: {
|
|
1
|
+
declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
|
|
2
|
+
direction: {
|
|
3
|
+
top: {
|
|
43
4
|
content: string;
|
|
44
5
|
};
|
|
45
|
-
|
|
46
|
-
transition?: undefined;
|
|
47
|
-
} | {
|
|
48
|
-
direction: ("left" | "right")[];
|
|
49
|
-
class: {
|
|
6
|
+
bottom: {
|
|
50
7
|
content: string;
|
|
51
8
|
};
|
|
52
|
-
|
|
53
|
-
transition?: undefined;
|
|
54
|
-
} | {
|
|
55
|
-
direction: "top"[];
|
|
56
|
-
inset: true;
|
|
57
|
-
class: {
|
|
9
|
+
left: {
|
|
58
10
|
content: string;
|
|
59
11
|
};
|
|
60
|
-
|
|
61
|
-
} | {
|
|
62
|
-
direction: "top"[];
|
|
63
|
-
transition: true;
|
|
64
|
-
class: {
|
|
12
|
+
right: {
|
|
65
13
|
content: string;
|
|
66
14
|
};
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
class: {
|
|
72
|
-
content: string;
|
|
15
|
+
};
|
|
16
|
+
transition: {
|
|
17
|
+
true: {
|
|
18
|
+
overlay: string;
|
|
73
19
|
};
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
transition: true;
|
|
78
|
-
class: {
|
|
20
|
+
};
|
|
21
|
+
inset: {
|
|
22
|
+
true: {
|
|
79
23
|
content: string;
|
|
80
24
|
};
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
25
|
+
};
|
|
26
|
+
}, ({
|
|
27
|
+
direction: ("top" | "bottom")[];
|
|
28
|
+
class: {
|
|
29
|
+
content: string;
|
|
30
|
+
};
|
|
31
|
+
inset?: undefined;
|
|
32
|
+
transition?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
direction: ("left" | "right")[];
|
|
35
|
+
class: {
|
|
36
|
+
content: string;
|
|
37
|
+
};
|
|
38
|
+
inset?: undefined;
|
|
39
|
+
transition?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
direction: "top"[];
|
|
42
|
+
inset: true;
|
|
43
|
+
class: {
|
|
44
|
+
content: string;
|
|
45
|
+
};
|
|
46
|
+
transition?: undefined;
|
|
47
|
+
} | {
|
|
48
|
+
direction: "top"[];
|
|
49
|
+
transition: true;
|
|
50
|
+
class: {
|
|
51
|
+
content: string;
|
|
52
|
+
};
|
|
53
|
+
inset?: undefined;
|
|
54
|
+
} | {
|
|
55
|
+
direction: "bottom"[];
|
|
56
|
+
inset: true;
|
|
57
|
+
class: {
|
|
58
|
+
content: string;
|
|
59
|
+
};
|
|
60
|
+
transition?: undefined;
|
|
61
|
+
} | {
|
|
62
|
+
direction: "bottom"[];
|
|
63
|
+
transition: true;
|
|
64
|
+
class: {
|
|
65
|
+
content: string;
|
|
66
|
+
};
|
|
67
|
+
inset?: undefined;
|
|
68
|
+
} | {
|
|
69
|
+
direction: "left"[];
|
|
70
|
+
inset: true;
|
|
71
|
+
class: {
|
|
72
|
+
content: string;
|
|
73
|
+
};
|
|
74
|
+
transition?: undefined;
|
|
75
|
+
} | {
|
|
76
|
+
direction: "left"[];
|
|
77
|
+
transition: true;
|
|
78
|
+
class: {
|
|
79
|
+
content: string;
|
|
80
|
+
};
|
|
81
|
+
inset?: undefined;
|
|
82
|
+
} | {
|
|
83
|
+
direction: "right"[];
|
|
84
|
+
inset: true;
|
|
85
|
+
class: {
|
|
86
|
+
content: string;
|
|
87
|
+
};
|
|
88
|
+
transition?: undefined;
|
|
89
|
+
} | {
|
|
90
|
+
direction: "right"[];
|
|
91
|
+
transition: true;
|
|
92
|
+
class: {
|
|
93
|
+
content: string;
|
|
94
|
+
};
|
|
95
|
+
inset?: undefined;
|
|
96
|
+
})[], import("@byyuurin/ui-kit").CVDefaultVariants<{
|
|
97
|
+
direction: {
|
|
98
|
+
top: {
|
|
86
99
|
content: string;
|
|
87
100
|
};
|
|
88
|
-
|
|
89
|
-
} | {
|
|
90
|
-
direction: "left"[];
|
|
91
|
-
transition: true;
|
|
92
|
-
class: {
|
|
101
|
+
bottom: {
|
|
93
102
|
content: string;
|
|
94
103
|
};
|
|
95
|
-
|
|
96
|
-
} | {
|
|
97
|
-
direction: "right"[];
|
|
98
|
-
inset: true;
|
|
99
|
-
class: {
|
|
104
|
+
left: {
|
|
100
105
|
content: string;
|
|
101
106
|
};
|
|
102
|
-
|
|
103
|
-
} | {
|
|
104
|
-
direction: "right"[];
|
|
105
|
-
transition: true;
|
|
106
|
-
class: {
|
|
107
|
+
right: {
|
|
107
108
|
content: string;
|
|
108
109
|
};
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
top: {
|
|
114
|
-
content: string;
|
|
115
|
-
};
|
|
116
|
-
bottom: {
|
|
117
|
-
content: string;
|
|
118
|
-
};
|
|
119
|
-
left: {
|
|
120
|
-
content: string;
|
|
121
|
-
};
|
|
122
|
-
right: {
|
|
123
|
-
content: string;
|
|
124
|
-
};
|
|
125
|
-
};
|
|
126
|
-
transition: {
|
|
127
|
-
true: {
|
|
128
|
-
overlay: string;
|
|
129
|
-
};
|
|
110
|
+
};
|
|
111
|
+
transition: {
|
|
112
|
+
true: {
|
|
113
|
+
overlay: string;
|
|
130
114
|
};
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
115
|
+
};
|
|
116
|
+
inset: {
|
|
117
|
+
true: {
|
|
118
|
+
content: string;
|
|
135
119
|
};
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
}
|
|
120
|
+
};
|
|
121
|
+
}, {
|
|
122
|
+
overlay: string;
|
|
123
|
+
content: string;
|
|
124
|
+
container: string;
|
|
125
|
+
header: string;
|
|
126
|
+
body: string;
|
|
127
|
+
footer: string;
|
|
128
|
+
title: string;
|
|
129
|
+
description: string;
|
|
130
|
+
close: string;
|
|
131
|
+
}>, undefined, {
|
|
132
|
+
overlay: string;
|
|
133
|
+
content: string;
|
|
134
|
+
container: string;
|
|
135
|
+
header: string;
|
|
136
|
+
body: string;
|
|
137
|
+
footer: string;
|
|
138
|
+
title: string;
|
|
139
|
+
description: string;
|
|
140
|
+
close: string;
|
|
141
|
+
}>;
|
|
148
142
|
export default _default;
|
|
@@ -2,7 +2,7 @@ import { ct } from "@byyuurin/ui-kit";
|
|
|
2
2
|
export default ct(
|
|
3
3
|
/* @unocss-include */
|
|
4
4
|
{
|
|
5
|
-
|
|
5
|
+
parts: {
|
|
6
6
|
overlay: "fixed z-1 inset-0 bg-black/40",
|
|
7
7
|
content: "fixed z-1 bg-ui-base ring ring-ui-base/5 flex focus:outline-none",
|
|
8
8
|
container: "w-full flex flex-col overflow-hidden overflow-y-auto",
|
|
@@ -1,71 +1,65 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
separator: string;
|
|
9
|
-
item: string[];
|
|
10
|
-
itemLeadingIcon: string;
|
|
11
|
-
itemLeadingAvatar: string;
|
|
12
|
-
itemTrailing: string;
|
|
13
|
-
itemTrailingIcon: string;
|
|
14
|
-
itemTrailingKbds: string;
|
|
15
|
-
itemLabel: string;
|
|
16
|
-
itemLabelExternalIcon: string;
|
|
17
|
-
};
|
|
18
|
-
variants: {
|
|
19
|
-
size: {
|
|
20
|
-
xs: {
|
|
21
|
-
content: string;
|
|
22
|
-
};
|
|
23
|
-
sm: {
|
|
24
|
-
content: string;
|
|
25
|
-
};
|
|
26
|
-
md: {
|
|
27
|
-
content: string;
|
|
28
|
-
};
|
|
29
|
-
lg: {
|
|
30
|
-
content: string;
|
|
31
|
-
};
|
|
32
|
-
xl: {
|
|
33
|
-
content: string;
|
|
34
|
-
};
|
|
1
|
+
declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
|
|
2
|
+
size: {
|
|
3
|
+
xs: {
|
|
4
|
+
content: string;
|
|
5
|
+
};
|
|
6
|
+
sm: {
|
|
7
|
+
content: string;
|
|
35
8
|
};
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
item: string;
|
|
39
|
-
itemLeadingIcon: string;
|
|
40
|
-
};
|
|
41
|
-
false: {
|
|
42
|
-
item: string;
|
|
43
|
-
itemLeadingIcon: string;
|
|
44
|
-
};
|
|
9
|
+
md: {
|
|
10
|
+
content: string;
|
|
45
11
|
};
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
12
|
+
lg: {
|
|
13
|
+
content: string;
|
|
14
|
+
};
|
|
15
|
+
xl: {
|
|
16
|
+
content: string;
|
|
50
17
|
};
|
|
51
18
|
};
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
class: {
|
|
55
|
-
label: string;
|
|
19
|
+
active: {
|
|
20
|
+
true: {
|
|
56
21
|
item: string;
|
|
57
|
-
|
|
22
|
+
itemLeadingIcon: string;
|
|
58
23
|
};
|
|
59
|
-
|
|
60
|
-
size: ("lg" | "xl")[];
|
|
61
|
-
class: {
|
|
62
|
-
label: string;
|
|
24
|
+
false: {
|
|
63
25
|
item: string;
|
|
64
|
-
|
|
26
|
+
itemLeadingIcon: string;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
loading: {
|
|
30
|
+
true: {
|
|
31
|
+
itemLeadingIcon: string;
|
|
65
32
|
};
|
|
66
|
-
})[];
|
|
67
|
-
defaultVariants: {
|
|
68
|
-
size: "md";
|
|
69
33
|
};
|
|
70
|
-
}
|
|
34
|
+
}, ({
|
|
35
|
+
size: ("xs" | "sm" | "md")[];
|
|
36
|
+
class: {
|
|
37
|
+
label: string;
|
|
38
|
+
item: string;
|
|
39
|
+
itemTrailingKbds: string;
|
|
40
|
+
};
|
|
41
|
+
} | {
|
|
42
|
+
size: ("lg" | "xl")[];
|
|
43
|
+
class: {
|
|
44
|
+
label: string;
|
|
45
|
+
item: string;
|
|
46
|
+
itemTrailingKbds: string;
|
|
47
|
+
};
|
|
48
|
+
})[], {
|
|
49
|
+
size: "md";
|
|
50
|
+
}, undefined, {
|
|
51
|
+
content: string[];
|
|
52
|
+
arrow: string;
|
|
53
|
+
group: string;
|
|
54
|
+
label: string;
|
|
55
|
+
separator: string;
|
|
56
|
+
item: string[];
|
|
57
|
+
itemLeadingIcon: string;
|
|
58
|
+
itemLeadingAvatar: string;
|
|
59
|
+
itemTrailing: string;
|
|
60
|
+
itemTrailingIcon: string;
|
|
61
|
+
itemTrailingKbds: string;
|
|
62
|
+
itemLabel: string;
|
|
63
|
+
itemLabelExternalIcon: string;
|
|
64
|
+
}>;
|
|
71
65
|
export default _default;
|
|
@@ -2,7 +2,7 @@ import { ct } from "@byyuurin/ui-kit";
|
|
|
2
2
|
export default ct(
|
|
3
3
|
/* @unocss-include */
|
|
4
4
|
{
|
|
5
|
-
|
|
5
|
+
parts: {
|
|
6
6
|
content: [
|
|
7
7
|
"bg-ui-base shadow-lg rounded-ui-base ring ring-ui-base/10 divide-y divide-ui-base/10 overflow-y-auto scroll-py-1",
|
|
8
8
|
"data-[state=open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in]"
|
|
@@ -1,76 +1,70 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
hint: string;
|
|
12
|
-
help: string;
|
|
13
|
-
};
|
|
14
|
-
variants: {
|
|
15
|
-
size: {
|
|
16
|
-
xs: {
|
|
17
|
-
root: string;
|
|
18
|
-
};
|
|
19
|
-
sm: {
|
|
20
|
-
root: string;
|
|
21
|
-
};
|
|
22
|
-
md: {
|
|
23
|
-
root: string;
|
|
24
|
-
};
|
|
25
|
-
lg: {
|
|
26
|
-
root: string;
|
|
27
|
-
};
|
|
28
|
-
xl: {
|
|
29
|
-
root: string;
|
|
30
|
-
};
|
|
1
|
+
declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
|
|
2
|
+
size: {
|
|
3
|
+
xs: {
|
|
4
|
+
root: string;
|
|
5
|
+
};
|
|
6
|
+
sm: {
|
|
7
|
+
root: string;
|
|
8
|
+
};
|
|
9
|
+
md: {
|
|
10
|
+
root: string;
|
|
31
11
|
};
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
12
|
+
lg: {
|
|
13
|
+
root: string;
|
|
14
|
+
};
|
|
15
|
+
xl: {
|
|
16
|
+
root: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
required: {
|
|
20
|
+
true: {
|
|
21
|
+
label: string;
|
|
36
22
|
};
|
|
37
23
|
};
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
};
|
|
43
|
-
sm: {
|
|
44
|
-
root: string;
|
|
45
|
-
};
|
|
46
|
-
md: {
|
|
47
|
-
root: string;
|
|
48
|
-
};
|
|
49
|
-
lg: {
|
|
50
|
-
root: string;
|
|
51
|
-
};
|
|
52
|
-
xl: {
|
|
53
|
-
root: string;
|
|
54
|
-
};
|
|
24
|
+
}, import("@byyuurin/ui-kit").CVCompoundVariants<{
|
|
25
|
+
size: {
|
|
26
|
+
xs: {
|
|
27
|
+
root: string;
|
|
55
28
|
};
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
29
|
+
sm: {
|
|
30
|
+
root: string;
|
|
31
|
+
};
|
|
32
|
+
md: {
|
|
33
|
+
root: string;
|
|
34
|
+
};
|
|
35
|
+
lg: {
|
|
36
|
+
root: string;
|
|
37
|
+
};
|
|
38
|
+
xl: {
|
|
39
|
+
root: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
required: {
|
|
43
|
+
true: {
|
|
44
|
+
label: string;
|
|
60
45
|
};
|
|
61
|
-
}, {
|
|
62
|
-
root: string;
|
|
63
|
-
wrapper: string;
|
|
64
|
-
labelWrapper: string;
|
|
65
|
-
label: string;
|
|
66
|
-
container: string;
|
|
67
|
-
description: string;
|
|
68
|
-
error: string;
|
|
69
|
-
hint: string;
|
|
70
|
-
help: string;
|
|
71
|
-
}, undefined>;
|
|
72
|
-
defaultVariants: {
|
|
73
|
-
size: "md";
|
|
74
46
|
};
|
|
75
|
-
}
|
|
47
|
+
}, {
|
|
48
|
+
root: string;
|
|
49
|
+
wrapper: string;
|
|
50
|
+
labelWrapper: string;
|
|
51
|
+
label: string;
|
|
52
|
+
container: string;
|
|
53
|
+
description: string;
|
|
54
|
+
error: string;
|
|
55
|
+
hint: string;
|
|
56
|
+
help: string;
|
|
57
|
+
}, undefined>, {
|
|
58
|
+
size: "md";
|
|
59
|
+
}, undefined, {
|
|
60
|
+
root: string;
|
|
61
|
+
wrapper: string;
|
|
62
|
+
labelWrapper: string;
|
|
63
|
+
label: string;
|
|
64
|
+
container: string;
|
|
65
|
+
description: string;
|
|
66
|
+
error: string;
|
|
67
|
+
hint: string;
|
|
68
|
+
help: string;
|
|
69
|
+
}>;
|
|
76
70
|
export default _default;
|
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
base: string;
|
|
3
|
-
slots: undefined;
|
|
4
|
-
variants: {};
|
|
5
|
-
compoundVariants: import("@byyuurin/ui-kit").CVCompoundVariants<{}, undefined, "">;
|
|
6
|
-
defaultVariants: import("@byyuurin/ui-kit").CVDefaultVariants<{}, undefined>;
|
|
7
|
-
};
|
|
1
|
+
declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{}, import("@byyuurin/ui-kit").CVCompoundVariants<{}, undefined, "">, import("@byyuurin/ui-kit").CVDefaultVariants<{}, undefined>, "", undefined>;
|
|
8
2
|
export default _default;
|