@indielayer/ui 1.0.0-alpha.9 → 1.0.0
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 +6 -3
- package/lib/index.cjs.js +1 -15
- package/lib/index.es.js +4451 -3650
- package/lib/nuxt.js +2 -1
- package/package.json +16 -6
- package/src/common/icons.ts +15 -0
- package/src/common/utils.ts +68 -0
- package/src/components/alert/Alert.theme.ts +57 -0
- package/src/components/alert/Alert.vue +51 -127
- package/src/components/alert/__tests__/Alert.spec.ts +14 -0
- package/src/components/avatar/Avatar.theme.ts +39 -0
- package/src/components/avatar/Avatar.vue +58 -96
- package/src/components/avatar/__tests__/Avatar.spec.ts +11 -0
- package/src/components/badge/Badge.theme.ts +13 -0
- package/src/components/badge/Badge.vue +58 -65
- package/src/components/badge/__tests__/Badge.spec.ts +11 -0
- package/src/components/breadcrumbs/Breadcrumbs.theme.ts +9 -0
- package/src/components/breadcrumbs/Breadcrumbs.vue +34 -24
- package/src/components/breadcrumbs/__tests__/Breadcrumbs.spec.ts +11 -0
- package/src/components/button/Button.theme.ts +234 -0
- package/src/components/button/Button.vue +94 -356
- package/src/components/button/ButtonGroup.theme.ts +5 -0
- package/src/components/button/ButtonGroup.vue +30 -29
- package/src/components/button/__tests__/ Button.spec.ts +11 -0
- package/src/components/button/__tests__/ ButtonGroup.spec.ts +11 -0
- package/src/components/card/Card.theme.ts +7 -0
- package/src/components/card/Card.vue +18 -11
- package/src/components/card/__tests__/Card.spec.ts +11 -0
- package/src/components/checkbox/Checkbox.theme.ts +92 -0
- package/src/components/checkbox/Checkbox.vue +69 -156
- package/src/components/checkbox/__tests__/Checkbox.spec.ts +11 -0
- package/src/components/collapse/Collapse.theme.ts +11 -0
- package/src/components/collapse/Collapse.vue +99 -118
- package/src/components/collapse/__tests__/Collapse.spec.ts +11 -0
- package/src/components/container/Container.theme.ts +7 -0
- package/src/components/container/Container.vue +17 -9
- package/src/components/container/__tests__/Container.spec.ts +11 -0
- package/src/components/divider/Divider.theme.ts +11 -0
- package/src/components/divider/Divider.vue +22 -18
- package/src/components/divider/__tests__/Divider.spec.ts +11 -0
- package/src/components/drawer/Drawer.theme.ts +9 -0
- package/src/components/drawer/Drawer.vue +160 -177
- package/src/components/drawer/__tests__/Drawer.spec.ts +11 -0
- package/src/components/form/Form.theme.ts +7 -0
- package/src/components/form/Form.vue +90 -73
- package/src/components/form/__tests__/Form.spec.ts +11 -0
- package/src/components/helpers/InputError.tsx +14 -0
- package/src/components/icon/Icon.theme.ts +16 -0
- package/src/components/icon/Icon.vue +72 -88
- package/src/components/icon/__tests__/Icon.spec.ts +11 -0
- package/src/components/image/Image.theme.ts +7 -0
- package/src/components/image/Image.vue +22 -23
- package/src/components/image/__tests__/Image.spec.ts +11 -0
- package/src/components/index.ts +3 -3
- package/src/components/input/Input.theme.ts +44 -0
- package/src/components/input/Input.vue +97 -130
- package/src/components/input/__tests__/Input.spec.ts +11 -0
- package/src/components/link/Link.theme.ts +26 -0
- package/src/components/link/Link.vue +41 -66
- package/src/components/link/__tests__/Link.spec.ts +11 -0
- package/src/components/menu/Menu.theme.ts +7 -0
- package/src/components/menu/Menu.vue +54 -45
- package/src/components/menu/MenuItem.theme.ts +107 -0
- package/src/components/menu/MenuItem.vue +97 -199
- package/src/components/menu/__tests__/Menu.spec.ts +11 -0
- package/src/components/menu/__tests__/MenuItem.spec.ts +11 -0
- package/src/components/modal/Modal.theme.ts +29 -0
- package/src/components/modal/Modal.vue +78 -101
- package/src/components/modal/__tests__/Modal.spec.ts +11 -0
- package/src/components/notifications/Notifications.theme.ts +11 -0
- package/src/components/notifications/Notifications.vue +233 -249
- package/src/components/notifications/__tests__/Notifications.spec.ts +11 -0
- package/src/components/pagination/Pagination.theme.ts +27 -0
- package/src/components/pagination/Pagination.vue +142 -164
- package/src/components/pagination/PaginationItem.theme.ts +14 -0
- package/src/components/pagination/PaginationItem.vue +26 -33
- package/src/components/pagination/__tests__/Pagination.spec.ts +11 -0
- package/src/components/pagination/__tests__/PaginationItem.spec.ts +11 -0
- package/src/components/popover/Popover.theme.ts +9 -0
- package/src/components/popover/Popover.vue +153 -101
- package/src/components/popover/PopoverContainer.theme.ts +7 -0
- package/src/components/popover/PopoverContainer.vue +17 -9
- package/src/components/popover/__tests__/Popover.spec.ts +11 -0
- package/src/components/popover/__tests__/PopoverContainer.spec.ts +11 -0
- package/src/components/progress/Progress.theme.ts +26 -0
- package/src/components/progress/Progress.vue +29 -53
- package/src/components/progress/__tests__/Progress.spec.ts +11 -0
- package/src/components/radio/Radio.theme.ts +121 -0
- package/src/components/radio/Radio.vue +81 -158
- package/src/components/radio/__tests__/Radio.spec.ts +11 -0
- package/src/components/scroll/Scroll.theme.ts +7 -0
- package/src/components/scroll/Scroll.vue +34 -36
- package/src/components/scroll/__tests__/Scroll.spec.ts +11 -0
- package/src/components/select/Select.theme.ts +54 -0
- package/src/components/select/Select.vue +219 -273
- package/src/components/select/__tests__/Select.spec.ts +11 -0
- package/src/components/skeleton/Skeleton.theme.ts +7 -0
- package/src/components/skeleton/Skeleton.vue +17 -9
- package/src/components/skeleton/__tests__/Skeleton.spec.ts +11 -0
- package/src/components/slider/Slider.theme.ts +30 -0
- package/src/components/slider/Slider.vue +135 -168
- package/src/components/slider/__tests__/Slider.spec.ts +11 -0
- package/src/components/spacer/{Spacer.vue → Spacer.tsx} +3 -6
- package/src/components/spacer/__tests__/Spacer.spec.ts +11 -0
- package/src/components/spinner/Spinner.vue +10 -34
- package/src/components/spinner/__tests__/Spinner.spec.ts +11 -0
- package/src/components/tab/Tab.theme.ts +22 -0
- package/src/components/tab/Tab.vue +89 -93
- package/src/components/tab/TabGroup.theme.ts +43 -0
- package/src/components/tab/TabGroup.vue +94 -127
- package/src/components/tab/__tests__/Tab.spec.ts +11 -0
- package/src/components/tab/__tests__/TabGroup.spec.ts +11 -0
- package/src/components/table/Table.theme.ts +19 -0
- package/src/components/table/Table.vue +136 -147
- package/src/components/table/{TableBody.vue → TableBody.tsx} +3 -8
- package/src/components/table/TableCell.theme.ts +27 -0
- package/src/components/table/TableCell.vue +30 -58
- package/src/components/table/TableHead.tsx +14 -0
- package/src/components/table/TableHeader.vue +18 -20
- package/src/components/table/TableRow.vue +23 -20
- package/src/components/table/__tests__/Table.spec.ts +11 -0
- package/src/components/tag/Tag.theme.ts +32 -0
- package/src/components/tag/Tag.vue +40 -68
- package/src/components/tag/__tests__/Tag.spec.ts +11 -0
- package/src/components/textarea/Textarea.theme.ts +62 -0
- package/src/components/textarea/Textarea.vue +100 -115
- package/src/components/textarea/__tests__/Textarea.spec.ts +11 -0
- package/src/components/toggle/Toggle.theme.ts +51 -0
- package/src/components/toggle/Toggle.vue +51 -81
- package/src/components/toggle/__tests__/Toggle.spec.ts +11 -0
- package/src/components/tooltip/Tooltip.theme.ts +51 -0
- package/src/components/tooltip/Tooltip.vue +9 -14
- package/src/components/tooltip/__tests__/Tooltip.spec.ts +11 -0
- package/src/composables/colors-utils.ts +68 -68
- package/src/composables/colors.ts +18 -6
- package/src/composables/common.ts +1 -0
- package/src/composables/css.ts +7 -2
- package/src/composables/index.ts +1 -1
- package/src/composables/inputtable.ts +1 -1
- package/src/composables/interactive.ts +8 -4
- package/src/composables/keys.ts +1 -0
- package/src/composables/notifications.ts +10 -0
- package/src/composables/theme.ts +88 -0
- package/src/create.ts +8 -3
- package/src/exports/nuxt.js +2 -1
- package/src/version.ts +1 -1
- package/volar.d.ts +1 -0
- package/lib/components/alert/Alert.vue.d.ts +0 -42
- package/lib/components/avatar/Avatar.vue.d.ts +0 -49
- package/lib/components/badge/Badge.vue.d.ts +0 -75
- package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +0 -30
- package/lib/components/button/Button.vue.d.ts +0 -87
- package/lib/components/button/ButtonGroup.vue.d.ts +0 -49
- package/lib/components/card/Card.vue.d.ts +0 -17
- package/lib/components/checkbox/Checkbox.vue.d.ts +0 -81
- package/lib/components/collapse/Collapse.vue.d.ts +0 -47
- package/lib/components/container/Container.vue.d.ts +0 -14
- package/lib/components/divider/Divider.vue.d.ts +0 -10
- package/lib/components/drawer/Drawer.vue.d.ts +0 -73
- package/lib/components/form/Form.vue.d.ts +0 -46
- package/lib/components/icon/Icon.vue.d.ts +0 -40
- package/lib/components/image/Image.vue.d.ts +0 -8
- package/lib/components/index.d.ts +0 -45
- package/lib/components/input/Input.vue.d.ts +0 -117
- package/lib/components/link/Link.vue.d.ts +0 -36
- package/lib/components/menu/Menu.vue.d.ts +0 -62
- package/lib/components/menu/MenuItem.vue.d.ts +0 -114
- package/lib/components/modal/Modal.vue.d.ts +0 -34
- package/lib/components/notifications/Notifications.vue.d.ts +0 -104
- package/lib/components/pagination/Pagination.vue.d.ts +0 -58
- package/lib/components/pagination/PaginationItem.vue.d.ts +0 -32
- package/lib/components/popover/Popover.vue.d.ts +0 -64
- package/lib/components/popover/PopoverContainer.vue.d.ts +0 -14
- package/lib/components/progress/Progress.vue.d.ts +0 -42
- package/lib/components/radio/Radio.vue.d.ts +0 -79
- package/lib/components/scroll/Scroll.vue.d.ts +0 -29
- package/lib/components/select/Select.vue.d.ts +0 -100
- package/lib/components/skeleton/Skeleton.vue.d.ts +0 -14
- package/lib/components/slider/Slider.vue.d.ts +0 -96
- package/lib/components/spacer/Spacer.vue.d.ts +0 -2
- package/lib/components/spinner/Spinner.vue.d.ts +0 -16
- package/lib/components/tab/Tab.vue.d.ts +0 -52
- package/lib/components/tab/TabGroup.vue.d.ts +0 -61
- package/lib/components/table/Table.vue.d.ts +0 -82
- package/lib/components/table/TableBody.vue.d.ts +0 -2
- package/lib/components/table/TableCell.vue.d.ts +0 -33
- package/lib/components/table/TableHead.vue.d.ts +0 -2
- package/lib/components/table/TableHeader.vue.d.ts +0 -33
- package/lib/components/table/TableRow.vue.d.ts +0 -23
- package/lib/components/tag/Tag.vue.d.ts +0 -45
- package/lib/components/textarea/Textarea.vue.d.ts +0 -106
- package/lib/components/toggle/Toggle.vue.d.ts +0 -79
- package/lib/components/tooltip/Tooltip.vue.d.ts +0 -2
- package/lib/composables/colors-utils.d.ts +0 -8
- package/lib/composables/colors.d.ts +0 -26
- package/lib/composables/common.d.ts +0 -14
- package/lib/composables/css.d.ts +0 -5
- package/lib/composables/index.d.ts +0 -7
- package/lib/composables/inputtable.d.ts +0 -37
- package/lib/composables/interactive.d.ts +0 -10
- package/lib/composables/keys.d.ts +0 -7
- package/lib/composables/notification.d.ts +0 -1
- package/lib/create.d.ts +0 -12
- package/lib/index.d.ts +0 -6
- package/lib/install.d.ts +0 -4
- package/lib/style.css +0 -1
- package/lib/version.d.ts +0 -2
- package/src/components/table/TableHead.vue +0 -15
- package/src/composables/notification.ts +0 -10
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
links: BooleanConstructor;
|
|
4
|
-
totalPages: {
|
|
5
|
-
type: NumberConstructor;
|
|
6
|
-
default: number;
|
|
7
|
-
};
|
|
8
|
-
modelValue: {
|
|
9
|
-
type: NumberConstructor;
|
|
10
|
-
default: number;
|
|
11
|
-
};
|
|
12
|
-
variant: {
|
|
13
|
-
type: PropType<"simple" | "quick" | "dots">;
|
|
14
|
-
default: string;
|
|
15
|
-
};
|
|
16
|
-
size: {
|
|
17
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
18
|
-
readonly validator: (value: string) => boolean;
|
|
19
|
-
};
|
|
20
|
-
}, {
|
|
21
|
-
pages: import("vue").ComputedRef<number[]>;
|
|
22
|
-
dotsIcon: string;
|
|
23
|
-
dotsClass: import("vue").ComputedRef<"h-3 w-3" | "h-4 w-4" | "h-5 w-5" | "h-2 w-2">;
|
|
24
|
-
prevIcon: string;
|
|
25
|
-
nextIcon: string;
|
|
26
|
-
quickInput: import("vue").Ref<string>;
|
|
27
|
-
quickButtonSize: import("vue").ComputedRef<"xs" | "sm" | "md" | "lg">;
|
|
28
|
-
style: string;
|
|
29
|
-
onQuickInput: () => void;
|
|
30
|
-
prevPage: () => void;
|
|
31
|
-
nextPage: () => void;
|
|
32
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
-
links: BooleanConstructor;
|
|
34
|
-
totalPages: {
|
|
35
|
-
type: NumberConstructor;
|
|
36
|
-
default: number;
|
|
37
|
-
};
|
|
38
|
-
modelValue: {
|
|
39
|
-
type: NumberConstructor;
|
|
40
|
-
default: number;
|
|
41
|
-
};
|
|
42
|
-
variant: {
|
|
43
|
-
type: PropType<"simple" | "quick" | "dots">;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
size: {
|
|
47
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
48
|
-
readonly validator: (value: string) => boolean;
|
|
49
|
-
};
|
|
50
|
-
}>> & {
|
|
51
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
52
|
-
}, {
|
|
53
|
-
modelValue: number;
|
|
54
|
-
links: boolean;
|
|
55
|
-
totalPages: number;
|
|
56
|
-
variant: "simple" | "quick" | "dots";
|
|
57
|
-
}>;
|
|
58
|
-
export default _default;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
value: {
|
|
3
|
-
type: NumberConstructor;
|
|
4
|
-
default: number;
|
|
5
|
-
};
|
|
6
|
-
selected: BooleanConstructor;
|
|
7
|
-
links: BooleanConstructor;
|
|
8
|
-
size: {
|
|
9
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
10
|
-
readonly validator: (value: string) => boolean;
|
|
11
|
-
};
|
|
12
|
-
}, {
|
|
13
|
-
classes: import("vue").ComputedRef<"!leading-none !p-1 min-w-[1.375rem]" | "!leading-none !p-2 min-w-[2rem]" | "!leading-none !p-3 min-w-[2.75rem]" | "!leading-none !p-4 min-w-[3.375rem]" | "!leading-none !p-2 min-w-[2.125rem]">;
|
|
14
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "input"[], "input", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
-
value: {
|
|
16
|
-
type: NumberConstructor;
|
|
17
|
-
default: number;
|
|
18
|
-
};
|
|
19
|
-
selected: BooleanConstructor;
|
|
20
|
-
links: BooleanConstructor;
|
|
21
|
-
size: {
|
|
22
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
23
|
-
readonly validator: (value: string) => boolean;
|
|
24
|
-
};
|
|
25
|
-
}>> & {
|
|
26
|
-
onInput?: ((...args: any[]) => any) | undefined;
|
|
27
|
-
}, {
|
|
28
|
-
value: number;
|
|
29
|
-
selected: boolean;
|
|
30
|
-
links: boolean;
|
|
31
|
-
}>;
|
|
32
|
-
export default _default;
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
align: {
|
|
4
|
-
type: PropType<"top" | "bottom" | "left" | "right" | "center">;
|
|
5
|
-
default: string;
|
|
6
|
-
validator: (value: string) => boolean;
|
|
7
|
-
};
|
|
8
|
-
position: {
|
|
9
|
-
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
10
|
-
default: string;
|
|
11
|
-
validator: (value: string) => boolean;
|
|
12
|
-
};
|
|
13
|
-
dismissOnClick: {
|
|
14
|
-
type: BooleanConstructor;
|
|
15
|
-
default: boolean;
|
|
16
|
-
};
|
|
17
|
-
disabled: BooleanConstructor;
|
|
18
|
-
hover: BooleanConstructor;
|
|
19
|
-
block: BooleanConstructor;
|
|
20
|
-
}, {
|
|
21
|
-
elRef: import("vue").Ref<HTMLElement | undefined>;
|
|
22
|
-
isOpen: import("vue").Ref<boolean>;
|
|
23
|
-
classes: import("vue").ComputedRef<(string | {
|
|
24
|
-
'left-0 right-auto': boolean;
|
|
25
|
-
'left-1/2 right-auto -translate-x-1/2': boolean;
|
|
26
|
-
'right-0 left-auto': boolean;
|
|
27
|
-
'top-0 bottom-auto': boolean;
|
|
28
|
-
'-translate-y-1/2 top-1/2 bottom-auto': boolean;
|
|
29
|
-
'bottom-0': boolean;
|
|
30
|
-
})[]>;
|
|
31
|
-
close: () => void;
|
|
32
|
-
open: () => void;
|
|
33
|
-
toggle: () => void;
|
|
34
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("toggle" | "open" | "close")[], "toggle" | "open" | "close", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
align: {
|
|
36
|
-
type: PropType<"top" | "bottom" | "left" | "right" | "center">;
|
|
37
|
-
default: string;
|
|
38
|
-
validator: (value: string) => boolean;
|
|
39
|
-
};
|
|
40
|
-
position: {
|
|
41
|
-
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
42
|
-
default: string;
|
|
43
|
-
validator: (value: string) => boolean;
|
|
44
|
-
};
|
|
45
|
-
dismissOnClick: {
|
|
46
|
-
type: BooleanConstructor;
|
|
47
|
-
default: boolean;
|
|
48
|
-
};
|
|
49
|
-
disabled: BooleanConstructor;
|
|
50
|
-
hover: BooleanConstructor;
|
|
51
|
-
block: BooleanConstructor;
|
|
52
|
-
}>> & {
|
|
53
|
-
onToggle?: ((...args: any[]) => any) | undefined;
|
|
54
|
-
onOpen?: ((...args: any[]) => any) | undefined;
|
|
55
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
56
|
-
}, {
|
|
57
|
-
hover: boolean;
|
|
58
|
-
position: "top" | "bottom" | "left" | "right";
|
|
59
|
-
align: "top" | "bottom" | "left" | "right" | "center";
|
|
60
|
-
block: boolean;
|
|
61
|
-
disabled: boolean;
|
|
62
|
-
dismissOnClick: boolean;
|
|
63
|
-
}>;
|
|
64
|
-
export default _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
tag: {
|
|
3
|
-
default: string;
|
|
4
|
-
type: StringConstructor;
|
|
5
|
-
};
|
|
6
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
-
tag: {
|
|
8
|
-
default: string;
|
|
9
|
-
type: StringConstructor;
|
|
10
|
-
};
|
|
11
|
-
}>>, {
|
|
12
|
-
tag: string;
|
|
13
|
-
}>;
|
|
14
|
-
export default _default;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
percentage: {
|
|
3
|
-
type: NumberConstructor;
|
|
4
|
-
default: number;
|
|
5
|
-
validator: (value: number) => boolean;
|
|
6
|
-
};
|
|
7
|
-
gradient: BooleanConstructor;
|
|
8
|
-
animate: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
thick: BooleanConstructor;
|
|
13
|
-
color: {
|
|
14
|
-
readonly type: StringConstructor;
|
|
15
|
-
readonly default: string | undefined;
|
|
16
|
-
};
|
|
17
|
-
}, {
|
|
18
|
-
style: import("vue").ComputedRef<Record<string, string>[]>;
|
|
19
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
-
percentage: {
|
|
21
|
-
type: NumberConstructor;
|
|
22
|
-
default: number;
|
|
23
|
-
validator: (value: number) => boolean;
|
|
24
|
-
};
|
|
25
|
-
gradient: BooleanConstructor;
|
|
26
|
-
animate: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
thick: BooleanConstructor;
|
|
31
|
-
color: {
|
|
32
|
-
readonly type: StringConstructor;
|
|
33
|
-
readonly default: string | undefined;
|
|
34
|
-
};
|
|
35
|
-
}>>, {
|
|
36
|
-
color: string;
|
|
37
|
-
animate: boolean;
|
|
38
|
-
thick: boolean;
|
|
39
|
-
percentage: number;
|
|
40
|
-
gradient: boolean;
|
|
41
|
-
}>;
|
|
42
|
-
export default _default;
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
value: (ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor | ArrayConstructor | FunctionConstructor)[];
|
|
3
|
-
label: StringConstructor;
|
|
4
|
-
glow: BooleanConstructor;
|
|
5
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
6
|
-
name: StringConstructor;
|
|
7
|
-
readonly: BooleanConstructor;
|
|
8
|
-
required: BooleanConstructor;
|
|
9
|
-
validateOnInput: {
|
|
10
|
-
readonly type: BooleanConstructor;
|
|
11
|
-
readonly default: true;
|
|
12
|
-
};
|
|
13
|
-
error: StringConstructor;
|
|
14
|
-
rules: {
|
|
15
|
-
readonly type: ArrayConstructor;
|
|
16
|
-
readonly default: () => never[];
|
|
17
|
-
};
|
|
18
|
-
disabled: BooleanConstructor;
|
|
19
|
-
loading: BooleanConstructor;
|
|
20
|
-
color: {
|
|
21
|
-
readonly type: StringConstructor;
|
|
22
|
-
readonly default: string | undefined;
|
|
23
|
-
};
|
|
24
|
-
size: {
|
|
25
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
26
|
-
readonly validator: (value: string) => boolean;
|
|
27
|
-
};
|
|
28
|
-
}, {
|
|
29
|
-
selected: import("vue").WritableComputedRef<boolean>;
|
|
30
|
-
styles: import("vue").ComputedRef<Record<string, string> | (string | Record<string, string>)[]>;
|
|
31
|
-
elRef: import("vue").Ref<HTMLElement | undefined>;
|
|
32
|
-
isFirstValidation: import("vue").Ref<boolean>;
|
|
33
|
-
errorInternal: any;
|
|
34
|
-
isInsideForm: any;
|
|
35
|
-
inputListeners: {};
|
|
36
|
-
reset: () => void;
|
|
37
|
-
validate: (val: any) => boolean;
|
|
38
|
-
setError: (val: string) => void;
|
|
39
|
-
focus: () => void;
|
|
40
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
-
value: (ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor | ArrayConstructor | FunctionConstructor)[];
|
|
42
|
-
label: StringConstructor;
|
|
43
|
-
glow: BooleanConstructor;
|
|
44
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
45
|
-
name: StringConstructor;
|
|
46
|
-
readonly: BooleanConstructor;
|
|
47
|
-
required: BooleanConstructor;
|
|
48
|
-
validateOnInput: {
|
|
49
|
-
readonly type: BooleanConstructor;
|
|
50
|
-
readonly default: true;
|
|
51
|
-
};
|
|
52
|
-
error: StringConstructor;
|
|
53
|
-
rules: {
|
|
54
|
-
readonly type: ArrayConstructor;
|
|
55
|
-
readonly default: () => never[];
|
|
56
|
-
};
|
|
57
|
-
disabled: BooleanConstructor;
|
|
58
|
-
loading: BooleanConstructor;
|
|
59
|
-
color: {
|
|
60
|
-
readonly type: StringConstructor;
|
|
61
|
-
readonly default: string | undefined;
|
|
62
|
-
};
|
|
63
|
-
size: {
|
|
64
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
65
|
-
readonly validator: (value: string) => boolean;
|
|
66
|
-
};
|
|
67
|
-
}>> & {
|
|
68
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
69
|
-
}, {
|
|
70
|
-
readonly: boolean;
|
|
71
|
-
glow: boolean;
|
|
72
|
-
required: boolean;
|
|
73
|
-
color: string;
|
|
74
|
-
disabled: boolean;
|
|
75
|
-
loading: boolean;
|
|
76
|
-
validateOnInput: boolean;
|
|
77
|
-
rules: unknown[];
|
|
78
|
-
}>;
|
|
79
|
-
export default _default;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
shadow: BooleanConstructor;
|
|
3
|
-
horizontal: BooleanConstructor;
|
|
4
|
-
mousewheel: BooleanConstructor;
|
|
5
|
-
scrollbar: {
|
|
6
|
-
type: BooleanConstructor;
|
|
7
|
-
default: boolean;
|
|
8
|
-
};
|
|
9
|
-
}, {
|
|
10
|
-
scrollEl: import("vue").Ref<HTMLElement | null>;
|
|
11
|
-
left: import("vue").Ref<boolean>;
|
|
12
|
-
right: import("vue").Ref<boolean>;
|
|
13
|
-
top: import("vue").Ref<boolean>;
|
|
14
|
-
bottom: import("vue").Ref<boolean>;
|
|
15
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
-
shadow: BooleanConstructor;
|
|
17
|
-
horizontal: BooleanConstructor;
|
|
18
|
-
mousewheel: BooleanConstructor;
|
|
19
|
-
scrollbar: {
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
}>>, {
|
|
24
|
-
shadow: boolean;
|
|
25
|
-
horizontal: boolean;
|
|
26
|
-
scrollbar: boolean;
|
|
27
|
-
mousewheel: boolean;
|
|
28
|
-
}>;
|
|
29
|
-
export default _default;
|
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
export declare type SelectOption = {
|
|
3
|
-
value: number | string;
|
|
4
|
-
disabled: boolean;
|
|
5
|
-
label: string;
|
|
6
|
-
};
|
|
7
|
-
declare const _default: import("vue").DefineComponent<{
|
|
8
|
-
placeholder: StringConstructor;
|
|
9
|
-
options: PropType<SelectOption[]>;
|
|
10
|
-
multiple: BooleanConstructor;
|
|
11
|
-
label: StringConstructor;
|
|
12
|
-
helper: StringConstructor;
|
|
13
|
-
flat: BooleanConstructor;
|
|
14
|
-
modelValue: PropType<[string, number, boolean, object, []]>;
|
|
15
|
-
name: StringConstructor;
|
|
16
|
-
readonly: BooleanConstructor;
|
|
17
|
-
required: BooleanConstructor;
|
|
18
|
-
validateOnInput: {
|
|
19
|
-
readonly type: BooleanConstructor;
|
|
20
|
-
readonly default: true;
|
|
21
|
-
};
|
|
22
|
-
error: StringConstructor;
|
|
23
|
-
rules: {
|
|
24
|
-
readonly type: ArrayConstructor;
|
|
25
|
-
readonly default: () => never[];
|
|
26
|
-
};
|
|
27
|
-
disabled: BooleanConstructor;
|
|
28
|
-
loading: BooleanConstructor;
|
|
29
|
-
size: {
|
|
30
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
31
|
-
readonly validator: (value: string) => boolean;
|
|
32
|
-
};
|
|
33
|
-
}, {
|
|
34
|
-
elRef: import("vue").Ref<HTMLElement | undefined>;
|
|
35
|
-
labelRef: import("vue").Ref<any>;
|
|
36
|
-
itemsRef: import("vue").Ref<any>;
|
|
37
|
-
popoverRef: import("vue").Ref<any>;
|
|
38
|
-
selected: import("vue").WritableComputedRef<string | number | []>;
|
|
39
|
-
selectedIndex: import("vue").Ref<number | undefined>;
|
|
40
|
-
internalOptions: import("vue").ComputedRef<{
|
|
41
|
-
value: string | number;
|
|
42
|
-
label: string;
|
|
43
|
-
active: boolean;
|
|
44
|
-
disabled: boolean;
|
|
45
|
-
iconRight: string | undefined;
|
|
46
|
-
onClick: () => void;
|
|
47
|
-
}[]>;
|
|
48
|
-
labelClasses: import("vue").ComputedRef<"" | "text-xs" | "text-sm" | "text-lg" | "text-xl">;
|
|
49
|
-
sizeClasses: import("vue").ComputedRef<"px-2 py-1 text-xs" | "px-2 py-2 text-sm" | "px-4 py-3 text-lg" | "px-5 py-4 text-xl" | "px-3 py-2">;
|
|
50
|
-
style: string;
|
|
51
|
-
isEmpty: (value: string | number | []) => boolean;
|
|
52
|
-
getLabel: (value: string | number | []) => string;
|
|
53
|
-
handleRemove: (e: Event, value: string) => void;
|
|
54
|
-
isFirstValidation: import("vue").Ref<boolean>;
|
|
55
|
-
errorInternal: any;
|
|
56
|
-
isInsideForm: any;
|
|
57
|
-
inputListeners: {};
|
|
58
|
-
reset: () => void;
|
|
59
|
-
validate: (val: any) => boolean;
|
|
60
|
-
setError: (val: string) => void;
|
|
61
|
-
focus: () => void;
|
|
62
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
|
-
placeholder: StringConstructor;
|
|
64
|
-
options: PropType<SelectOption[]>;
|
|
65
|
-
multiple: BooleanConstructor;
|
|
66
|
-
label: StringConstructor;
|
|
67
|
-
helper: StringConstructor;
|
|
68
|
-
flat: BooleanConstructor;
|
|
69
|
-
modelValue: PropType<[string, number, boolean, object, []]>;
|
|
70
|
-
name: StringConstructor;
|
|
71
|
-
readonly: BooleanConstructor;
|
|
72
|
-
required: BooleanConstructor;
|
|
73
|
-
validateOnInput: {
|
|
74
|
-
readonly type: BooleanConstructor;
|
|
75
|
-
readonly default: true;
|
|
76
|
-
};
|
|
77
|
-
error: StringConstructor;
|
|
78
|
-
rules: {
|
|
79
|
-
readonly type: ArrayConstructor;
|
|
80
|
-
readonly default: () => never[];
|
|
81
|
-
};
|
|
82
|
-
disabled: BooleanConstructor;
|
|
83
|
-
loading: BooleanConstructor;
|
|
84
|
-
size: {
|
|
85
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
86
|
-
readonly validator: (value: string) => boolean;
|
|
87
|
-
};
|
|
88
|
-
}>> & {
|
|
89
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
90
|
-
}, {
|
|
91
|
-
readonly: boolean;
|
|
92
|
-
required: boolean;
|
|
93
|
-
flat: boolean;
|
|
94
|
-
disabled: boolean;
|
|
95
|
-
loading: boolean;
|
|
96
|
-
validateOnInput: boolean;
|
|
97
|
-
rules: unknown[];
|
|
98
|
-
multiple: boolean;
|
|
99
|
-
}>;
|
|
100
|
-
export default _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
tag: {
|
|
3
|
-
type: StringConstructor;
|
|
4
|
-
default: string;
|
|
5
|
-
};
|
|
6
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
-
tag: {
|
|
8
|
-
type: StringConstructor;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
}>>, {
|
|
12
|
-
tag: string;
|
|
13
|
-
}>;
|
|
14
|
-
export default _default;
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
label: StringConstructor;
|
|
3
|
-
min: NumberConstructor;
|
|
4
|
-
max: NumberConstructor;
|
|
5
|
-
step: {
|
|
6
|
-
type: NumberConstructor;
|
|
7
|
-
default: number;
|
|
8
|
-
};
|
|
9
|
-
gradient: BooleanConstructor;
|
|
10
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
11
|
-
name: StringConstructor;
|
|
12
|
-
readonly: BooleanConstructor;
|
|
13
|
-
required: BooleanConstructor;
|
|
14
|
-
validateOnInput: {
|
|
15
|
-
readonly type: BooleanConstructor;
|
|
16
|
-
readonly default: true;
|
|
17
|
-
};
|
|
18
|
-
error: StringConstructor;
|
|
19
|
-
rules: {
|
|
20
|
-
readonly type: ArrayConstructor;
|
|
21
|
-
readonly default: () => never[];
|
|
22
|
-
};
|
|
23
|
-
disabled: BooleanConstructor;
|
|
24
|
-
loading: BooleanConstructor;
|
|
25
|
-
color: {
|
|
26
|
-
readonly type: StringConstructor;
|
|
27
|
-
readonly default: string | undefined;
|
|
28
|
-
};
|
|
29
|
-
size: {
|
|
30
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
31
|
-
readonly validator: (value: string) => boolean;
|
|
32
|
-
};
|
|
33
|
-
}, {
|
|
34
|
-
labelClasses: import("vue").ComputedRef<"" | "text-xs" | "text-sm" | "text-lg" | "text-xl">;
|
|
35
|
-
draggingElement: import("vue").Ref<HTMLElement | undefined>;
|
|
36
|
-
value: import("vue").Ref<number>;
|
|
37
|
-
elRef: import("vue").Ref<HTMLElement | undefined>;
|
|
38
|
-
dragRef: import("vue").Ref<HTMLElement | undefined>;
|
|
39
|
-
progressRef: import("vue").Ref<HTMLElement | undefined>;
|
|
40
|
-
style: import("vue").ComputedRef<Record<string, string>>;
|
|
41
|
-
isDragging: import("vue").ComputedRef<boolean>;
|
|
42
|
-
position: import("vue").Ref<any>;
|
|
43
|
-
isFirstValidation: import("vue").Ref<boolean>;
|
|
44
|
-
errorInternal: any;
|
|
45
|
-
isInsideForm: any;
|
|
46
|
-
inputListeners: {};
|
|
47
|
-
reset: () => void;
|
|
48
|
-
validate: (val: any) => boolean;
|
|
49
|
-
setError: (val: string) => void;
|
|
50
|
-
focus: () => void;
|
|
51
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
52
|
-
label: StringConstructor;
|
|
53
|
-
min: NumberConstructor;
|
|
54
|
-
max: NumberConstructor;
|
|
55
|
-
step: {
|
|
56
|
-
type: NumberConstructor;
|
|
57
|
-
default: number;
|
|
58
|
-
};
|
|
59
|
-
gradient: BooleanConstructor;
|
|
60
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
61
|
-
name: StringConstructor;
|
|
62
|
-
readonly: BooleanConstructor;
|
|
63
|
-
required: BooleanConstructor;
|
|
64
|
-
validateOnInput: {
|
|
65
|
-
readonly type: BooleanConstructor;
|
|
66
|
-
readonly default: true;
|
|
67
|
-
};
|
|
68
|
-
error: StringConstructor;
|
|
69
|
-
rules: {
|
|
70
|
-
readonly type: ArrayConstructor;
|
|
71
|
-
readonly default: () => never[];
|
|
72
|
-
};
|
|
73
|
-
disabled: BooleanConstructor;
|
|
74
|
-
loading: BooleanConstructor;
|
|
75
|
-
color: {
|
|
76
|
-
readonly type: StringConstructor;
|
|
77
|
-
readonly default: string | undefined;
|
|
78
|
-
};
|
|
79
|
-
size: {
|
|
80
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
81
|
-
readonly validator: (value: string) => boolean;
|
|
82
|
-
};
|
|
83
|
-
}>> & {
|
|
84
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
85
|
-
}, {
|
|
86
|
-
readonly: boolean;
|
|
87
|
-
required: boolean;
|
|
88
|
-
color: string;
|
|
89
|
-
disabled: boolean;
|
|
90
|
-
loading: boolean;
|
|
91
|
-
validateOnInput: boolean;
|
|
92
|
-
rules: unknown[];
|
|
93
|
-
gradient: boolean;
|
|
94
|
-
step: number;
|
|
95
|
-
}>;
|
|
96
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
icon: StringConstructor;
|
|
3
|
-
size: {
|
|
4
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
5
|
-
readonly validator: (value: string) => boolean;
|
|
6
|
-
};
|
|
7
|
-
}, {
|
|
8
|
-
defaultIcon: string;
|
|
9
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
-
icon: StringConstructor;
|
|
11
|
-
size: {
|
|
12
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
13
|
-
readonly validator: (value: string) => boolean;
|
|
14
|
-
};
|
|
15
|
-
}>>, {}>;
|
|
16
|
-
export default _default;
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
value: {
|
|
3
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
4
|
-
};
|
|
5
|
-
tag: {
|
|
6
|
-
type: StringConstructor;
|
|
7
|
-
default: string;
|
|
8
|
-
};
|
|
9
|
-
to: StringConstructor;
|
|
10
|
-
label: StringConstructor;
|
|
11
|
-
icon: StringConstructor;
|
|
12
|
-
disabled: BooleanConstructor;
|
|
13
|
-
exact: BooleanConstructor;
|
|
14
|
-
size: {
|
|
15
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
16
|
-
readonly validator: (value: string) => boolean;
|
|
17
|
-
};
|
|
18
|
-
}, {
|
|
19
|
-
variant: any;
|
|
20
|
-
grow: any;
|
|
21
|
-
elRef: import("vue").Ref<any>;
|
|
22
|
-
cLabel: import("vue").ComputedRef<string | number | undefined>;
|
|
23
|
-
cValue: import("vue").ComputedRef<string | number | undefined>;
|
|
24
|
-
cSize: import("vue").ComputedRef<any>;
|
|
25
|
-
tabs: any;
|
|
26
|
-
sizeClasses: import("vue").ComputedRef<"" | "text-xs" | "text-sm" | "text-lg" | "text-xl">;
|
|
27
|
-
teleportTo: import("vue").Ref<null>;
|
|
28
|
-
onClickTab: () => void;
|
|
29
|
-
selected: import("vue").Ref<boolean>;
|
|
30
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
-
value: {
|
|
32
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
33
|
-
};
|
|
34
|
-
tag: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: string;
|
|
37
|
-
};
|
|
38
|
-
to: StringConstructor;
|
|
39
|
-
label: StringConstructor;
|
|
40
|
-
icon: StringConstructor;
|
|
41
|
-
disabled: BooleanConstructor;
|
|
42
|
-
exact: BooleanConstructor;
|
|
43
|
-
size: {
|
|
44
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
45
|
-
readonly validator: (value: string) => boolean;
|
|
46
|
-
};
|
|
47
|
-
}>>, {
|
|
48
|
-
tag: string;
|
|
49
|
-
disabled: boolean;
|
|
50
|
-
exact: boolean;
|
|
51
|
-
}>;
|
|
52
|
-
export default _default;
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
modelValue: (NumberConstructor | StringConstructor)[];
|
|
4
|
-
variant: {
|
|
5
|
-
type: PropType<"line" | "block">;
|
|
6
|
-
default: string;
|
|
7
|
-
};
|
|
8
|
-
align: {
|
|
9
|
-
type: PropType<"left" | "right" | "center">;
|
|
10
|
-
default: string;
|
|
11
|
-
};
|
|
12
|
-
ghost: BooleanConstructor;
|
|
13
|
-
grow: BooleanConstructor;
|
|
14
|
-
exact: BooleanConstructor;
|
|
15
|
-
color: {
|
|
16
|
-
readonly type: StringConstructor;
|
|
17
|
-
readonly default: string | undefined;
|
|
18
|
-
};
|
|
19
|
-
size: {
|
|
20
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
21
|
-
readonly validator: (value: string) => boolean;
|
|
22
|
-
};
|
|
23
|
-
}, {
|
|
24
|
-
scrollRef: import("vue").Ref<any>;
|
|
25
|
-
wrapperRef: import("vue").Ref<HTMLElement | undefined>;
|
|
26
|
-
trackerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
27
|
-
tabsRef: import("vue").Ref<HTMLElement | undefined>;
|
|
28
|
-
tabsContentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
29
|
-
style: import("vue").ComputedRef<Record<string, string>>;
|
|
30
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
-
modelValue: (NumberConstructor | StringConstructor)[];
|
|
32
|
-
variant: {
|
|
33
|
-
type: PropType<"line" | "block">;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
align: {
|
|
37
|
-
type: PropType<"left" | "right" | "center">;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
ghost: BooleanConstructor;
|
|
41
|
-
grow: BooleanConstructor;
|
|
42
|
-
exact: BooleanConstructor;
|
|
43
|
-
color: {
|
|
44
|
-
readonly type: StringConstructor;
|
|
45
|
-
readonly default: string | undefined;
|
|
46
|
-
};
|
|
47
|
-
size: {
|
|
48
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
49
|
-
readonly validator: (value: string) => boolean;
|
|
50
|
-
};
|
|
51
|
-
}>> & {
|
|
52
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
53
|
-
}, {
|
|
54
|
-
color: string;
|
|
55
|
-
align: "left" | "right" | "center";
|
|
56
|
-
ghost: boolean;
|
|
57
|
-
exact: boolean;
|
|
58
|
-
variant: "line" | "block";
|
|
59
|
-
grow: boolean;
|
|
60
|
-
}>;
|
|
61
|
-
export default _default;
|