@indielayer/ui 1.0.3 → 1.0.5
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/lib/common/icons.d.ts +15 -0
- package/lib/common/utils.d.ts +32 -0
- package/lib/components/alert/Alert.theme.d.ts +8 -0
- package/lib/components/alert/Alert.vue.d.ts +31 -0
- package/lib/components/alert/__tests__/Alert.spec.d.ts +1 -0
- package/lib/components/avatar/Avatar.theme.d.ts +8 -0
- package/lib/components/avatar/Avatar.vue.d.ts +46 -0
- package/lib/components/avatar/__tests__/Avatar.spec.d.ts +1 -0
- package/lib/components/badge/Badge.theme.d.ts +8 -0
- package/lib/components/badge/Badge.vue.d.ts +74 -0
- package/lib/components/badge/__tests__/Badge.spec.d.ts +1 -0
- package/lib/components/breadcrumbs/Breadcrumbs.theme.d.ts +8 -0
- package/lib/components/breadcrumbs/Breadcrumbs.vue.d.ts +41 -0
- package/lib/components/breadcrumbs/__tests__/Breadcrumbs.spec.d.ts +1 -0
- package/lib/components/button/Button.theme.d.ts +10 -0
- package/lib/components/button/Button.vue.d.ts +81 -0
- package/lib/components/button/ButtonGroup.theme.d.ts +6 -0
- package/lib/components/button/ButtonGroup.vue.d.ts +52 -0
- package/lib/components/button/__tests__/ Button.spec.d.ts +1 -0
- package/lib/components/button/__tests__/ ButtonGroup.spec.d.ts +1 -0
- package/lib/components/card/Card.theme.d.ts +7 -0
- package/lib/components/card/Card.vue.d.ts +17 -0
- package/lib/components/card/__tests__/Card.spec.d.ts +1 -0
- package/lib/components/checkbox/Checkbox.theme.d.ts +11 -0
- package/lib/components/checkbox/Checkbox.vue.d.ts +77 -0
- package/lib/components/checkbox/__tests__/Checkbox.spec.d.ts +1 -0
- package/lib/components/collapse/Collapse.theme.d.ts +9 -0
- package/lib/components/collapse/Collapse.vue.d.ts +40 -0
- package/lib/components/collapse/__tests__/Collapse.spec.d.ts +1 -0
- package/lib/components/container/Container.theme.d.ts +6 -0
- package/lib/components/container/Container.vue.d.ts +14 -0
- package/lib/components/container/__tests__/Container.spec.d.ts +1 -0
- package/lib/components/divider/Divider.theme.d.ts +9 -0
- package/lib/components/divider/Divider.vue.d.ts +10 -0
- package/lib/components/divider/__tests__/Divider.spec.d.ts +1 -0
- package/lib/components/drawer/Drawer.theme.d.ts +7 -0
- package/lib/components/drawer/Drawer.vue.d.ts +61 -0
- package/lib/components/drawer/__tests__/Drawer.spec.d.ts +1 -0
- package/lib/components/form/Form.theme.d.ts +6 -0
- package/lib/components/form/Form.vue.d.ts +48 -0
- package/lib/components/form/__tests__/Form.spec.d.ts +1 -0
- package/lib/components/helpers/InputError.d.ts +8 -0
- package/lib/components/icon/Icon.theme.d.ts +7 -0
- package/lib/components/icon/Icon.vue.d.ts +36 -0
- package/lib/components/icon/__tests__/Icon.spec.d.ts +1 -0
- package/lib/components/image/Image.theme.d.ts +6 -0
- package/lib/components/image/Image.vue.d.ts +6 -0
- package/lib/components/image/__tests__/Image.spec.d.ts +1 -0
- package/lib/components/index.d.ts +45 -0
- package/lib/components/input/Input.theme.d.ts +11 -0
- package/lib/components/input/Input.vue.d.ts +119 -0
- package/lib/components/input/__tests__/Input.spec.d.ts +1 -0
- package/lib/components/link/Link.theme.d.ts +8 -0
- package/lib/components/link/Link.vue.d.ts +34 -0
- package/lib/components/link/__tests__/Link.spec.d.ts +1 -0
- package/lib/components/menu/Menu.theme.d.ts +6 -0
- package/lib/components/menu/Menu.vue.d.ts +65 -0
- package/lib/components/menu/MenuItem.theme.d.ts +8 -0
- package/lib/components/menu/MenuItem.vue.d.ts +89 -0
- package/lib/components/menu/__tests__/Menu.spec.d.ts +1 -0
- package/lib/components/menu/__tests__/MenuItem.spec.d.ts +1 -0
- package/lib/components/modal/Modal.theme.d.ts +13 -0
- package/lib/components/modal/Modal.vue.d.ts +29 -0
- package/lib/components/modal/__tests__/Modal.spec.d.ts +1 -0
- package/lib/components/notifications/Notifications.theme.d.ts +8 -0
- package/lib/components/notifications/Notifications.vue.d.ts +91 -0
- package/lib/components/notifications/__tests__/Notifications.spec.d.ts +1 -0
- package/lib/components/pagination/Pagination.theme.d.ts +9 -0
- package/lib/components/pagination/Pagination.vue.d.ts +49 -0
- package/lib/components/pagination/PaginationItem.theme.d.ts +7 -0
- package/lib/components/pagination/PaginationItem.vue.d.ts +33 -0
- package/lib/components/pagination/__tests__/Pagination.spec.d.ts +1 -0
- package/lib/components/pagination/__tests__/PaginationItem.spec.d.ts +1 -0
- package/lib/components/popover/Popover.theme.d.ts +7 -0
- package/lib/components/popover/Popover.vue.d.ts +64 -0
- package/lib/components/popover/PopoverContainer.theme.d.ts +6 -0
- package/lib/components/popover/PopoverContainer.vue.d.ts +14 -0
- package/lib/components/popover/__tests__/Popover.spec.d.ts +1 -0
- package/lib/components/popover/__tests__/PopoverContainer.spec.d.ts +1 -0
- package/lib/components/progress/Progress.theme.d.ts +10 -0
- package/lib/components/progress/Progress.vue.d.ts +40 -0
- package/lib/components/progress/__tests__/Progress.spec.d.ts +1 -0
- package/lib/components/radio/Radio.theme.d.ts +12 -0
- package/lib/components/radio/Radio.vue.d.ts +78 -0
- package/lib/components/radio/__tests__/Radio.spec.d.ts +1 -0
- package/lib/components/scroll/Scroll.theme.d.ts +6 -0
- package/lib/components/scroll/Scroll.vue.d.ts +23 -0
- package/lib/components/scroll/__tests__/Scroll.spec.d.ts +1 -0
- package/lib/components/select/Select.theme.d.ts +13 -0
- package/lib/components/select/Select.vue.d.ts +80 -0
- package/lib/components/select/__tests__/Select.spec.d.ts +1 -0
- package/lib/components/skeleton/Skeleton.theme.d.ts +6 -0
- package/lib/components/skeleton/Skeleton.vue.d.ts +14 -0
- package/lib/components/skeleton/__tests__/Skeleton.spec.d.ts +1 -0
- package/lib/components/slider/Slider.theme.d.ts +10 -0
- package/lib/components/slider/Slider.vue.d.ts +87 -0
- package/lib/components/slider/__tests__/Slider.spec.d.ts +1 -0
- package/lib/components/spacer/Spacer.d.ts +2 -0
- package/lib/components/spacer/__tests__/Spacer.spec.d.ts +1 -0
- package/lib/components/spinner/Spinner.vue.d.ts +25 -0
- package/lib/components/spinner/__tests__/Spinner.spec.d.ts +1 -0
- package/lib/components/tab/Tab.theme.d.ts +9 -0
- package/lib/components/tab/Tab.vue.d.ts +43 -0
- package/lib/components/tab/TabGroup.theme.d.ts +10 -0
- package/lib/components/tab/TabGroup.vue.d.ts +57 -0
- package/lib/components/tab/__tests__/Tab.spec.d.ts +1 -0
- package/lib/components/tab/__tests__/TabGroup.spec.d.ts +1 -0
- package/lib/components/table/Table.theme.d.ts +8 -0
- package/lib/components/table/Table.vue.d.ts +78 -0
- package/lib/components/table/TableBody.d.ts +2 -0
- package/lib/components/table/TableCell.theme.d.ts +7 -0
- package/lib/components/table/TableCell.vue.d.ts +33 -0
- package/lib/components/table/TableHead.d.ts +2 -0
- package/lib/components/table/TableHeader.vue.d.ts +33 -0
- package/lib/components/table/TableRow.vue.d.ts +23 -0
- package/lib/components/table/__tests__/Table.spec.d.ts +1 -0
- package/lib/components/tag/Tag.theme.d.ts +9 -0
- package/lib/components/tag/Tag.vue.d.ts +45 -0
- package/lib/components/tag/__tests__/Tag.spec.d.ts +1 -0
- package/lib/components/textarea/Textarea.theme.d.ts +10 -0
- package/lib/components/textarea/Textarea.vue.d.ts +100 -0
- package/lib/components/textarea/__tests__/Textarea.spec.d.ts +1 -0
- package/lib/components/toggle/Toggle.theme.d.ts +11 -0
- package/lib/components/toggle/Toggle.vue.d.ts +78 -0
- package/lib/components/toggle/__tests__/Toggle.spec.d.ts +1 -0
- package/lib/components/tooltip/Tooltip.theme.d.ts +11 -0
- package/lib/components/tooltip/Tooltip.vue.d.ts +2 -0
- package/lib/components/tooltip/__tests__/Tooltip.spec.d.ts +1 -0
- package/lib/composables/colors-utils.d.ts +7 -0
- package/lib/composables/colors.d.ts +30 -0
- package/lib/composables/common.d.ts +15 -0
- package/lib/composables/css.d.ts +6 -0
- package/lib/composables/index.d.ts +7 -0
- package/lib/composables/inputtable.d.ts +37 -0
- package/lib/composables/interactive.d.ts +15 -0
- package/lib/composables/keys.d.ts +8 -0
- package/lib/composables/notifications.d.ts +1 -0
- package/lib/composables/theme.d.ts +20 -0
- package/lib/create.d.ts +13 -0
- package/lib/index.cjs.js +1 -1
- package/lib/index.d.ts +6 -0
- package/lib/index.es.js +2 -2
- package/lib/install.d.ts +4 -0
- package/lib/version.d.ts +2 -0
- package/package.json +4 -3
- package/src/components/alert/Alert.vue +1 -1
- package/src/components/select/Select.vue +1 -1
- package/src/components/tag/Tag.vue +1 -1
- package/src/version.ts +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const infoIcon = "<path d=\"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\" />";
|
|
2
|
+
export declare const successIcon = "<path d=\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\" />";
|
|
3
|
+
export declare const errorIcon = "<path d=\"M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z\" />";
|
|
4
|
+
export declare const warningIcon = "<path d=\"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z\" />";
|
|
5
|
+
export declare const closeIcon = "<path d=\"M6 18L18 6M6 6l12 12\" />";
|
|
6
|
+
export declare const avatarIcon = "<path d=\"M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z\" />";
|
|
7
|
+
export declare const arrowRightIcon = "<path d=\"M13 7l5 5m0 0l-5 5m5-5H6\" />";
|
|
8
|
+
export declare const eyeIcon = "<path d=\"M15 12a3 3 0 11-6 0 3 3 0 016 0z\" /><path d=\"M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z\" />";
|
|
9
|
+
export declare const eyeVisibleIcon = "<path d=\"M13.875 18.825A10.05 10.05 0 0112 19c-4.478 0-8.268-2.943-9.543-7a9.97 9.97 0 011.563-3.029m5.858.908a3 3 0 114.243 4.243M9.878 9.878l4.242 4.242M9.88 9.88l-3.29-3.29m7.532 7.532l3.29 3.29M3 3l3.59 3.59m0 0A9.953 9.953 0 0112 5c4.478 0 8.268 2.943 9.543 7a10.025 10.025 0 01-4.132 5.411m0 0L21 21\" />";
|
|
10
|
+
export declare const dotsIcon = "<path d=\"M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0z\" />";
|
|
11
|
+
export declare const prevIcon = "<path d=\"M15 19l-7-7 7-7\" />";
|
|
12
|
+
export declare const nextIcon = "<path d=\"M9 5l7 7-7 7\" />";
|
|
13
|
+
export declare const checkIcon = "<path d=\"M5 13l4 4L19 7\" />";
|
|
14
|
+
export declare const chevronDownIcon = "<path d=\"M8 9l4-4 4 4m0 6l-4 4-4-4\" />";
|
|
15
|
+
export declare const externalIcon = "<line x1=\"7\" y1=\"17\" x2=\"17\" y2=\"7\" /><polyline points=\"7 7 17 7 17 17\" />";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Deeply unref a value, recursing into objects and arrays.
|
|
3
|
+
*
|
|
4
|
+
* @param {Mixed} val - The value to deeply unref.
|
|
5
|
+
*
|
|
6
|
+
* @return {Mixed}
|
|
7
|
+
*/
|
|
8
|
+
export declare const deepUnref: (val: any) => any;
|
|
9
|
+
/**
|
|
10
|
+
* Unref a value, recursing into it if it's an object.
|
|
11
|
+
*
|
|
12
|
+
* @param {Mixed} val - The value to unref.
|
|
13
|
+
*
|
|
14
|
+
* @return {Mixed}
|
|
15
|
+
*/
|
|
16
|
+
export declare const smartUnref: (val: any) => any;
|
|
17
|
+
/**
|
|
18
|
+
* Unref an array, recursively.
|
|
19
|
+
*
|
|
20
|
+
* @param {Array} arr - The array to unref.
|
|
21
|
+
*
|
|
22
|
+
* @return {Array}
|
|
23
|
+
*/
|
|
24
|
+
export declare const unrefArray: any;
|
|
25
|
+
/**
|
|
26
|
+
* Unref an object, recursively.
|
|
27
|
+
*
|
|
28
|
+
* @param {Object} obj - The object to unref.
|
|
29
|
+
*
|
|
30
|
+
* @return {Object}
|
|
31
|
+
*/
|
|
32
|
+
export declare const unrefObject: (obj: any) => any;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
type: PropType<"success" | "warning" | "error" | "info" | undefined>;
|
|
4
|
+
glow: BooleanConstructor;
|
|
5
|
+
light: BooleanConstructor;
|
|
6
|
+
outlined: BooleanConstructor;
|
|
7
|
+
removable: BooleanConstructor;
|
|
8
|
+
color: {
|
|
9
|
+
readonly type: StringConstructor;
|
|
10
|
+
readonly default: string | undefined;
|
|
11
|
+
};
|
|
12
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "remove"[], "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
type: PropType<"success" | "warning" | "error" | "info" | undefined>;
|
|
14
|
+
glow: BooleanConstructor;
|
|
15
|
+
light: BooleanConstructor;
|
|
16
|
+
outlined: BooleanConstructor;
|
|
17
|
+
removable: BooleanConstructor;
|
|
18
|
+
color: {
|
|
19
|
+
readonly type: StringConstructor;
|
|
20
|
+
readonly default: string | undefined;
|
|
21
|
+
};
|
|
22
|
+
}>> & {
|
|
23
|
+
onRemove?: ((...args: any[]) => any) | undefined;
|
|
24
|
+
}, {
|
|
25
|
+
glow: boolean;
|
|
26
|
+
light: boolean;
|
|
27
|
+
outlined: boolean;
|
|
28
|
+
removable: boolean;
|
|
29
|
+
color: string;
|
|
30
|
+
}>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
tag: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
name: StringConstructor;
|
|
7
|
+
alt: StringConstructor;
|
|
8
|
+
image: StringConstructor;
|
|
9
|
+
outlined: BooleanConstructor;
|
|
10
|
+
rounded: BooleanConstructor;
|
|
11
|
+
color: {
|
|
12
|
+
readonly type: StringConstructor;
|
|
13
|
+
readonly default: string | undefined;
|
|
14
|
+
};
|
|
15
|
+
size: {
|
|
16
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
17
|
+
readonly default: "md";
|
|
18
|
+
readonly validator: (value: string) => boolean;
|
|
19
|
+
};
|
|
20
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
tag: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
name: StringConstructor;
|
|
26
|
+
alt: StringConstructor;
|
|
27
|
+
image: StringConstructor;
|
|
28
|
+
outlined: BooleanConstructor;
|
|
29
|
+
rounded: BooleanConstructor;
|
|
30
|
+
color: {
|
|
31
|
+
readonly type: StringConstructor;
|
|
32
|
+
readonly default: string | undefined;
|
|
33
|
+
};
|
|
34
|
+
size: {
|
|
35
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
36
|
+
readonly default: "md";
|
|
37
|
+
readonly validator: (value: string) => boolean;
|
|
38
|
+
};
|
|
39
|
+
}>>, {
|
|
40
|
+
size: import("../../composables/common").Size;
|
|
41
|
+
outlined: boolean;
|
|
42
|
+
color: string;
|
|
43
|
+
tag: string;
|
|
44
|
+
rounded: boolean;
|
|
45
|
+
}>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
tag: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
position: {
|
|
8
|
+
type: PropType<"top" | "bottom">;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
align: {
|
|
12
|
+
type: PropType<"left" | "right">;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
offsetX: (NumberConstructor | StringConstructor)[];
|
|
16
|
+
offsetY: (NumberConstructor | StringConstructor)[];
|
|
17
|
+
animated: BooleanConstructor;
|
|
18
|
+
outlined: BooleanConstructor;
|
|
19
|
+
icon: StringConstructor;
|
|
20
|
+
show: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
color: {
|
|
25
|
+
readonly type: StringConstructor;
|
|
26
|
+
readonly default: string | undefined;
|
|
27
|
+
};
|
|
28
|
+
size: {
|
|
29
|
+
readonly type: PropType<import("../../composables/common").Size>;
|
|
30
|
+
readonly default: "md";
|
|
31
|
+
readonly validator: (value: string) => boolean;
|
|
32
|
+
};
|
|
33
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
34
|
+
tag: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
position: {
|
|
39
|
+
type: PropType<"top" | "bottom">;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
align: {
|
|
43
|
+
type: PropType<"left" | "right">;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
offsetX: (NumberConstructor | StringConstructor)[];
|
|
47
|
+
offsetY: (NumberConstructor | StringConstructor)[];
|
|
48
|
+
animated: BooleanConstructor;
|
|
49
|
+
outlined: BooleanConstructor;
|
|
50
|
+
icon: StringConstructor;
|
|
51
|
+
show: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
color: {
|
|
56
|
+
readonly type: StringConstructor;
|
|
57
|
+
readonly default: string | undefined;
|
|
58
|
+
};
|
|
59
|
+
size: {
|
|
60
|
+
readonly type: PropType<import("../../composables/common").Size>;
|
|
61
|
+
readonly default: "md";
|
|
62
|
+
readonly validator: (value: string) => boolean;
|
|
63
|
+
};
|
|
64
|
+
}>>, {
|
|
65
|
+
size: import("../../composables/common").Size;
|
|
66
|
+
outlined: boolean;
|
|
67
|
+
color: string;
|
|
68
|
+
tag: string;
|
|
69
|
+
position: "top" | "bottom";
|
|
70
|
+
align: "left" | "right";
|
|
71
|
+
animated: boolean;
|
|
72
|
+
show: boolean;
|
|
73
|
+
}>;
|
|
74
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare type BreadcrumbItem = {
|
|
3
|
+
label: string;
|
|
4
|
+
to?: string | object;
|
|
5
|
+
href?: string;
|
|
6
|
+
color?: string;
|
|
7
|
+
icon?: string;
|
|
8
|
+
shadow?: boolean;
|
|
9
|
+
underline?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import("vue").DefineComponent<{
|
|
12
|
+
items: PropType<BreadcrumbItem[]>;
|
|
13
|
+
icon: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
shadow: BooleanConstructor;
|
|
18
|
+
underline: BooleanConstructor;
|
|
19
|
+
color: {
|
|
20
|
+
readonly type: StringConstructor;
|
|
21
|
+
readonly default: string | undefined;
|
|
22
|
+
};
|
|
23
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
items: PropType<BreadcrumbItem[]>;
|
|
25
|
+
icon: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
shadow: BooleanConstructor;
|
|
30
|
+
underline: BooleanConstructor;
|
|
31
|
+
color: {
|
|
32
|
+
readonly type: StringConstructor;
|
|
33
|
+
readonly default: string | undefined;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
36
|
+
icon: string;
|
|
37
|
+
color: string;
|
|
38
|
+
shadow: boolean;
|
|
39
|
+
underline: boolean;
|
|
40
|
+
}>;
|
|
41
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ThemeParams } from '../../composables/theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
classes: {
|
|
4
|
+
wrapper({ props, slots, data }: ThemeParams): string[];
|
|
5
|
+
iconLeft: ({ slots }: ThemeParams) => "mr-2" | "m-0.5";
|
|
6
|
+
iconRight: ({ slots }: ThemeParams) => "m-0.5" | "ml-2";
|
|
7
|
+
};
|
|
8
|
+
styles({ props, colors, css, data }: ThemeParams): (string | object)[];
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
tag: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
type: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
icon: StringConstructor;
|
|
11
|
+
iconLeft: StringConstructor;
|
|
12
|
+
iconRight: StringConstructor;
|
|
13
|
+
to: StringConstructor;
|
|
14
|
+
outlined: BooleanConstructor;
|
|
15
|
+
rounded: BooleanConstructor;
|
|
16
|
+
glow: BooleanConstructor;
|
|
17
|
+
ghost: BooleanConstructor;
|
|
18
|
+
light: BooleanConstructor;
|
|
19
|
+
block: BooleanConstructor;
|
|
20
|
+
flat: BooleanConstructor;
|
|
21
|
+
disabled: BooleanConstructor;
|
|
22
|
+
loading: BooleanConstructor;
|
|
23
|
+
color: {
|
|
24
|
+
readonly type: StringConstructor;
|
|
25
|
+
readonly default: string | undefined;
|
|
26
|
+
};
|
|
27
|
+
size: {
|
|
28
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
29
|
+
readonly default: "md";
|
|
30
|
+
readonly validator: (value: string) => boolean;
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
focus: () => void | undefined;
|
|
34
|
+
blur: () => void | undefined;
|
|
35
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
|
+
tag: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
type: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
default: string;
|
|
43
|
+
};
|
|
44
|
+
icon: StringConstructor;
|
|
45
|
+
iconLeft: StringConstructor;
|
|
46
|
+
iconRight: StringConstructor;
|
|
47
|
+
to: StringConstructor;
|
|
48
|
+
outlined: BooleanConstructor;
|
|
49
|
+
rounded: BooleanConstructor;
|
|
50
|
+
glow: BooleanConstructor;
|
|
51
|
+
ghost: BooleanConstructor;
|
|
52
|
+
light: BooleanConstructor;
|
|
53
|
+
block: BooleanConstructor;
|
|
54
|
+
flat: BooleanConstructor;
|
|
55
|
+
disabled: BooleanConstructor;
|
|
56
|
+
loading: BooleanConstructor;
|
|
57
|
+
color: {
|
|
58
|
+
readonly type: StringConstructor;
|
|
59
|
+
readonly default: string | undefined;
|
|
60
|
+
};
|
|
61
|
+
size: {
|
|
62
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
63
|
+
readonly default: "md";
|
|
64
|
+
readonly validator: (value: string) => boolean;
|
|
65
|
+
};
|
|
66
|
+
}>>, {
|
|
67
|
+
flat: boolean;
|
|
68
|
+
size: import("../../composables/common").Size;
|
|
69
|
+
type: string;
|
|
70
|
+
glow: boolean;
|
|
71
|
+
light: boolean;
|
|
72
|
+
outlined: boolean;
|
|
73
|
+
color: string;
|
|
74
|
+
tag: string;
|
|
75
|
+
rounded: boolean;
|
|
76
|
+
ghost: boolean;
|
|
77
|
+
block: boolean;
|
|
78
|
+
disabled: boolean;
|
|
79
|
+
loading: boolean;
|
|
80
|
+
}>;
|
|
81
|
+
export default _default;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
tag: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
outlined: BooleanConstructor;
|
|
7
|
+
rounded: BooleanConstructor;
|
|
8
|
+
ghost: BooleanConstructor;
|
|
9
|
+
light: BooleanConstructor;
|
|
10
|
+
disabled: BooleanConstructor;
|
|
11
|
+
loading: BooleanConstructor;
|
|
12
|
+
color: {
|
|
13
|
+
readonly type: StringConstructor;
|
|
14
|
+
readonly default: string | undefined;
|
|
15
|
+
};
|
|
16
|
+
size: {
|
|
17
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
18
|
+
readonly default: "md";
|
|
19
|
+
readonly validator: (value: string) => boolean;
|
|
20
|
+
};
|
|
21
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
|
+
tag: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
outlined: BooleanConstructor;
|
|
27
|
+
rounded: BooleanConstructor;
|
|
28
|
+
ghost: BooleanConstructor;
|
|
29
|
+
light: BooleanConstructor;
|
|
30
|
+
disabled: BooleanConstructor;
|
|
31
|
+
loading: BooleanConstructor;
|
|
32
|
+
color: {
|
|
33
|
+
readonly type: StringConstructor;
|
|
34
|
+
readonly default: string | undefined;
|
|
35
|
+
};
|
|
36
|
+
size: {
|
|
37
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
38
|
+
readonly default: "md";
|
|
39
|
+
readonly validator: (value: string) => boolean;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
size: import("../../composables/common").Size;
|
|
43
|
+
light: boolean;
|
|
44
|
+
outlined: boolean;
|
|
45
|
+
color: string;
|
|
46
|
+
tag: string;
|
|
47
|
+
rounded: boolean;
|
|
48
|
+
ghost: boolean;
|
|
49
|
+
disabled: boolean;
|
|
50
|
+
loading: boolean;
|
|
51
|
+
}>;
|
|
52
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
tag: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
flat: BooleanConstructor;
|
|
7
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
+
tag: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
flat: BooleanConstructor;
|
|
13
|
+
}>>, {
|
|
14
|
+
flat: boolean;
|
|
15
|
+
tag: string;
|
|
16
|
+
}>;
|
|
17
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ThemeParams } from '../../composables/theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
classes: {
|
|
4
|
+
wrapper: string;
|
|
5
|
+
box: ({ props }: ThemeParams) => string[];
|
|
6
|
+
icon: ({ props }: ThemeParams) => string[];
|
|
7
|
+
label: ({ props }: ThemeParams) => string[];
|
|
8
|
+
};
|
|
9
|
+
styles({ props, colors, css, data }: ThemeParams): Record<string, string> | (string | object)[];
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
label: StringConstructor;
|
|
3
|
+
helper: StringConstructor;
|
|
4
|
+
glow: BooleanConstructor;
|
|
5
|
+
modelValue: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
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 default: "md";
|
|
27
|
+
readonly validator: (value: string) => boolean;
|
|
28
|
+
};
|
|
29
|
+
}, {
|
|
30
|
+
focus: () => void | undefined;
|
|
31
|
+
blur: () => void | undefined;
|
|
32
|
+
toggle: () => void;
|
|
33
|
+
reset: () => void;
|
|
34
|
+
validate: (val: any) => boolean;
|
|
35
|
+
setError: (val: string) => void;
|
|
36
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
label: StringConstructor;
|
|
38
|
+
helper: StringConstructor;
|
|
39
|
+
glow: BooleanConstructor;
|
|
40
|
+
modelValue: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
41
|
+
name: StringConstructor;
|
|
42
|
+
readonly: BooleanConstructor;
|
|
43
|
+
required: BooleanConstructor;
|
|
44
|
+
validateOnInput: {
|
|
45
|
+
readonly type: BooleanConstructor;
|
|
46
|
+
readonly default: true;
|
|
47
|
+
};
|
|
48
|
+
error: StringConstructor;
|
|
49
|
+
rules: {
|
|
50
|
+
readonly type: ArrayConstructor;
|
|
51
|
+
readonly default: () => never[];
|
|
52
|
+
};
|
|
53
|
+
disabled: BooleanConstructor;
|
|
54
|
+
loading: BooleanConstructor;
|
|
55
|
+
color: {
|
|
56
|
+
readonly type: StringConstructor;
|
|
57
|
+
readonly default: string | undefined;
|
|
58
|
+
};
|
|
59
|
+
size: {
|
|
60
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
61
|
+
readonly default: "md";
|
|
62
|
+
readonly validator: (value: string) => boolean;
|
|
63
|
+
};
|
|
64
|
+
}>> & {
|
|
65
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
66
|
+
}, {
|
|
67
|
+
readonly: boolean;
|
|
68
|
+
size: import("../../composables/common").Size;
|
|
69
|
+
required: boolean;
|
|
70
|
+
glow: boolean;
|
|
71
|
+
color: string;
|
|
72
|
+
disabled: boolean;
|
|
73
|
+
loading: boolean;
|
|
74
|
+
validateOnInput: boolean;
|
|
75
|
+
rules: unknown[];
|
|
76
|
+
}>;
|
|
77
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
tag: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
disabled: BooleanConstructor;
|
|
7
|
+
expanded: BooleanConstructor;
|
|
8
|
+
showIcon: BooleanConstructor;
|
|
9
|
+
icon: StringConstructor;
|
|
10
|
+
color: {
|
|
11
|
+
readonly type: StringConstructor;
|
|
12
|
+
readonly default: string | undefined;
|
|
13
|
+
};
|
|
14
|
+
}, {
|
|
15
|
+
toggle: () => void;
|
|
16
|
+
open: (anim?: boolean) => void;
|
|
17
|
+
close: (anim?: boolean) => void;
|
|
18
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "expand"[], "expand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
tag: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
disabled: BooleanConstructor;
|
|
24
|
+
expanded: BooleanConstructor;
|
|
25
|
+
showIcon: BooleanConstructor;
|
|
26
|
+
icon: StringConstructor;
|
|
27
|
+
color: {
|
|
28
|
+
readonly type: StringConstructor;
|
|
29
|
+
readonly default: string | undefined;
|
|
30
|
+
};
|
|
31
|
+
}>> & {
|
|
32
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
color: string;
|
|
35
|
+
tag: string;
|
|
36
|
+
disabled: boolean;
|
|
37
|
+
expanded: boolean;
|
|
38
|
+
showIcon: boolean;
|
|
39
|
+
}>;
|
|
40
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
tag: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, 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;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|