@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,56 +1,50 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
md: {
|
|
18
|
-
root: string;
|
|
19
|
-
};
|
|
20
|
-
lg: {
|
|
21
|
-
root: string;
|
|
22
|
-
};
|
|
23
|
-
xl: {
|
|
24
|
-
root: string;
|
|
25
|
-
};
|
|
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;
|
|
11
|
+
};
|
|
12
|
+
lg: {
|
|
13
|
+
root: string;
|
|
14
|
+
};
|
|
15
|
+
xl: {
|
|
16
|
+
root: string;
|
|
26
17
|
};
|
|
27
18
|
};
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
};
|
|
46
|
-
}, {
|
|
47
|
-
root: string;
|
|
48
|
-
image: string;
|
|
49
|
-
fallback: string;
|
|
50
|
-
icon: string;
|
|
51
|
-
}, undefined>;
|
|
52
|
-
defaultVariants: {
|
|
53
|
-
size: "md";
|
|
19
|
+
}, import("@byyuurin/ui-kit").CVCompoundVariants<{
|
|
20
|
+
size: {
|
|
21
|
+
xs: {
|
|
22
|
+
root: string;
|
|
23
|
+
};
|
|
24
|
+
sm: {
|
|
25
|
+
root: string;
|
|
26
|
+
};
|
|
27
|
+
md: {
|
|
28
|
+
root: string;
|
|
29
|
+
};
|
|
30
|
+
lg: {
|
|
31
|
+
root: string;
|
|
32
|
+
};
|
|
33
|
+
xl: {
|
|
34
|
+
root: string;
|
|
35
|
+
};
|
|
54
36
|
};
|
|
55
|
-
}
|
|
37
|
+
}, {
|
|
38
|
+
root: string;
|
|
39
|
+
image: string;
|
|
40
|
+
fallback: string;
|
|
41
|
+
icon: string;
|
|
42
|
+
}, undefined>, {
|
|
43
|
+
size: "md";
|
|
44
|
+
}, undefined, {
|
|
45
|
+
root: string;
|
|
46
|
+
image: string;
|
|
47
|
+
fallback: string;
|
|
48
|
+
icon: string;
|
|
49
|
+
}>;
|
|
56
50
|
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
|
root: "inline-flex items-center justify-center shrink-0 select-none overflow-hidden rounded-full align-middle bg-soft-ui-cb/10",
|
|
7
7
|
image: "size-full rounded-inherit object-cover",
|
|
8
8
|
fallback: "leading-none color-ui-base/60 truncate",
|
|
@@ -1,82 +1,76 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
base: string[];
|
|
6
|
-
};
|
|
7
|
-
variants: {
|
|
8
|
-
size: {
|
|
9
|
-
xs: {
|
|
10
|
-
root: string;
|
|
11
|
-
};
|
|
12
|
-
sm: {
|
|
13
|
-
root: string;
|
|
14
|
-
};
|
|
15
|
-
md: {
|
|
16
|
-
root: string;
|
|
17
|
-
};
|
|
18
|
-
lg: {
|
|
19
|
-
root: string;
|
|
20
|
-
};
|
|
21
|
-
xl: {
|
|
22
|
-
root: string;
|
|
23
|
-
};
|
|
1
|
+
declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
|
|
2
|
+
size: {
|
|
3
|
+
xs: {
|
|
4
|
+
root: string;
|
|
24
5
|
};
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
base: string;
|
|
28
|
-
};
|
|
29
|
-
'bottom-right': {
|
|
30
|
-
base: string;
|
|
31
|
-
};
|
|
32
|
-
'top-left': {
|
|
33
|
-
base: string;
|
|
34
|
-
};
|
|
35
|
-
'bottom-left': {
|
|
36
|
-
base: string;
|
|
37
|
-
};
|
|
6
|
+
sm: {
|
|
7
|
+
root: string;
|
|
38
8
|
};
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
base: string;
|
|
42
|
-
};
|
|
9
|
+
md: {
|
|
10
|
+
root: string;
|
|
43
11
|
};
|
|
44
|
-
|
|
45
|
-
|
|
12
|
+
lg: {
|
|
13
|
+
root: string;
|
|
46
14
|
};
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
base: string;
|
|
50
|
-
};
|
|
15
|
+
xl: {
|
|
16
|
+
root: string;
|
|
51
17
|
};
|
|
52
18
|
};
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
19
|
+
position: {
|
|
20
|
+
'top-right': {
|
|
21
|
+
base: string;
|
|
22
|
+
};
|
|
23
|
+
'bottom-right': {
|
|
57
24
|
base: string;
|
|
58
25
|
};
|
|
59
|
-
|
|
60
|
-
position: "bottom-right";
|
|
61
|
-
inset: false;
|
|
62
|
-
class: {
|
|
26
|
+
'top-left': {
|
|
63
27
|
base: string;
|
|
64
28
|
};
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
29
|
+
'bottom-left': {
|
|
30
|
+
base: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
show: {
|
|
34
|
+
true: {
|
|
69
35
|
base: string;
|
|
70
36
|
};
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
37
|
+
};
|
|
38
|
+
inset: {
|
|
39
|
+
true: "";
|
|
40
|
+
};
|
|
41
|
+
standalone: {
|
|
42
|
+
false: {
|
|
75
43
|
base: string;
|
|
76
44
|
};
|
|
77
|
-
})[];
|
|
78
|
-
defaultVariants: {
|
|
79
|
-
size: "md";
|
|
80
45
|
};
|
|
81
|
-
}
|
|
46
|
+
}, ({
|
|
47
|
+
position: "top-right";
|
|
48
|
+
inset: false;
|
|
49
|
+
class: {
|
|
50
|
+
base: string;
|
|
51
|
+
};
|
|
52
|
+
} | {
|
|
53
|
+
position: "bottom-right";
|
|
54
|
+
inset: false;
|
|
55
|
+
class: {
|
|
56
|
+
base: string;
|
|
57
|
+
};
|
|
58
|
+
} | {
|
|
59
|
+
position: "top-left";
|
|
60
|
+
inset: false;
|
|
61
|
+
class: {
|
|
62
|
+
base: string;
|
|
63
|
+
};
|
|
64
|
+
} | {
|
|
65
|
+
position: "bottom-left";
|
|
66
|
+
inset: false;
|
|
67
|
+
class: {
|
|
68
|
+
base: string;
|
|
69
|
+
};
|
|
70
|
+
})[], {
|
|
71
|
+
size: "md";
|
|
72
|
+
}, undefined, {
|
|
73
|
+
root: string;
|
|
74
|
+
base: string[];
|
|
75
|
+
}>;
|
|
82
76
|
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
|
root: "relative inline-flex items-center justify-center shrink-0",
|
|
7
7
|
base: [
|
|
8
8
|
"inline-block rounded-full ring ring-ui-cx flex items-center justify-center color-ui-cx font-medium whitespace-nowrap",
|
|
@@ -1,67 +1,61 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
list: string;
|
|
6
|
-
item: string;
|
|
7
|
-
link: string;
|
|
8
|
-
linkLeadingIcon: string;
|
|
9
|
-
linkLabel: string;
|
|
10
|
-
separator: string;
|
|
11
|
-
separatorIcon: string;
|
|
12
|
-
};
|
|
13
|
-
variants: {
|
|
14
|
-
active: {
|
|
15
|
-
true: {
|
|
16
|
-
link: string;
|
|
17
|
-
};
|
|
18
|
-
false: {
|
|
19
|
-
link: string;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
disabled: {
|
|
23
|
-
true: {
|
|
24
|
-
link: string;
|
|
25
|
-
};
|
|
1
|
+
declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
|
|
2
|
+
active: {
|
|
3
|
+
true: {
|
|
4
|
+
link: string;
|
|
26
5
|
};
|
|
27
|
-
|
|
28
|
-
|
|
6
|
+
false: {
|
|
7
|
+
link: string;
|
|
29
8
|
};
|
|
30
9
|
};
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
active: false;
|
|
34
|
-
to: true;
|
|
35
|
-
class: {
|
|
10
|
+
disabled: {
|
|
11
|
+
true: {
|
|
36
12
|
link: string;
|
|
37
13
|
};
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
14
|
+
};
|
|
15
|
+
to: {
|
|
16
|
+
true: "";
|
|
17
|
+
};
|
|
18
|
+
}, {
|
|
19
|
+
disabled: false;
|
|
20
|
+
active: false;
|
|
21
|
+
to: true;
|
|
22
|
+
class: {
|
|
23
|
+
link: string;
|
|
24
|
+
};
|
|
25
|
+
}[], import("@byyuurin/ui-kit").CVDefaultVariants<{
|
|
26
|
+
active: {
|
|
27
|
+
true: {
|
|
28
|
+
link: string;
|
|
47
29
|
};
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
link: string;
|
|
51
|
-
};
|
|
30
|
+
false: {
|
|
31
|
+
link: string;
|
|
52
32
|
};
|
|
53
|
-
|
|
54
|
-
|
|
33
|
+
};
|
|
34
|
+
disabled: {
|
|
35
|
+
true: {
|
|
36
|
+
link: string;
|
|
55
37
|
};
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
38
|
+
};
|
|
39
|
+
to: {
|
|
40
|
+
true: "";
|
|
41
|
+
};
|
|
42
|
+
}, {
|
|
43
|
+
root: string;
|
|
44
|
+
list: string;
|
|
45
|
+
item: string;
|
|
46
|
+
link: string;
|
|
47
|
+
linkLeadingIcon: string;
|
|
48
|
+
linkLabel: string;
|
|
49
|
+
separator: string;
|
|
50
|
+
separatorIcon: string;
|
|
51
|
+
}>, undefined, {
|
|
52
|
+
root: string;
|
|
53
|
+
list: string;
|
|
54
|
+
item: string;
|
|
55
|
+
link: string;
|
|
56
|
+
linkLeadingIcon: string;
|
|
57
|
+
linkLabel: string;
|
|
58
|
+
separator: string;
|
|
59
|
+
separatorIcon: string;
|
|
60
|
+
}>;
|
|
67
61
|
export default _default;
|
|
@@ -1,46 +1,40 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
md: "";
|
|
9
|
-
lg: "";
|
|
10
|
-
xl: "";
|
|
11
|
-
};
|
|
12
|
-
orientation: {
|
|
13
|
-
horizontal: "inline-flex -space-x-px";
|
|
14
|
-
vertical: "flex flex-col -space-y-px";
|
|
15
|
-
};
|
|
1
|
+
declare const _default: import("@byyuurin/ui-kit").CVScopeMeta<{
|
|
2
|
+
size: {
|
|
3
|
+
xs: "";
|
|
4
|
+
sm: "";
|
|
5
|
+
md: "";
|
|
6
|
+
lg: "";
|
|
7
|
+
xl: "";
|
|
16
8
|
};
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
9
|
+
orientation: {
|
|
10
|
+
horizontal: "inline-flex -space-x-px";
|
|
11
|
+
vertical: "flex flex-col -space-y-px";
|
|
12
|
+
};
|
|
13
|
+
}, import("@byyuurin/ui-kit").CVCompoundVariants<{
|
|
14
|
+
size: {
|
|
15
|
+
xs: "";
|
|
16
|
+
sm: "";
|
|
17
|
+
md: "";
|
|
18
|
+
lg: "";
|
|
19
|
+
xl: "";
|
|
20
|
+
};
|
|
21
|
+
orientation: {
|
|
22
|
+
horizontal: "inline-flex -space-x-px";
|
|
23
|
+
vertical: "flex flex-col -space-y-px";
|
|
24
|
+
};
|
|
25
|
+
}, undefined, "relative">, import("@byyuurin/ui-kit").CVDefaultVariants<{
|
|
26
|
+
size: {
|
|
27
|
+
xs: "";
|
|
28
|
+
sm: "";
|
|
29
|
+
md: "";
|
|
30
|
+
lg: "";
|
|
31
|
+
xl: "";
|
|
32
|
+
};
|
|
33
|
+
orientation: {
|
|
34
|
+
horizontal: "inline-flex -space-x-px";
|
|
35
|
+
vertical: "flex flex-col -space-y-px";
|
|
36
|
+
};
|
|
37
|
+
}, undefined>, "relative", undefined>;
|
|
44
38
|
export default _default;
|
|
45
39
|
export declare const buttonGroupVariant: {
|
|
46
40
|
groupOrientation: {
|