@indielayer/ui 1.0.3 → 1.0.4
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,10 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
label: StringConstructor;
|
|
3
|
+
vertical: BooleanConstructor;
|
|
4
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
label: StringConstructor;
|
|
6
|
+
vertical: BooleanConstructor;
|
|
7
|
+
}>>, {
|
|
8
|
+
vertical: boolean;
|
|
9
|
+
}>;
|
|
10
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: BooleanConstructor;
|
|
4
|
+
position: {
|
|
5
|
+
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
teleportTo: {
|
|
9
|
+
type: PropType<string | HTMLElement>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
width: {
|
|
13
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
height: {
|
|
17
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
18
|
+
default: number;
|
|
19
|
+
};
|
|
20
|
+
breakpoint: (NumberConstructor | StringConstructor)[];
|
|
21
|
+
backdrop: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
}, {
|
|
26
|
+
open: () => void;
|
|
27
|
+
close: (e?: PointerEvent | undefined) => void;
|
|
28
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
modelValue: BooleanConstructor;
|
|
30
|
+
position: {
|
|
31
|
+
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
teleportTo: {
|
|
35
|
+
type: PropType<string | HTMLElement>;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
width: {
|
|
39
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
42
|
+
height: {
|
|
43
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
44
|
+
default: number;
|
|
45
|
+
};
|
|
46
|
+
breakpoint: (NumberConstructor | StringConstructor)[];
|
|
47
|
+
backdrop: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
}>> & {
|
|
52
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
}, {
|
|
54
|
+
height: string | number;
|
|
55
|
+
width: string | number;
|
|
56
|
+
position: "top" | "bottom" | "left" | "right";
|
|
57
|
+
modelValue: boolean;
|
|
58
|
+
teleportTo: string | HTMLElement;
|
|
59
|
+
backdrop: boolean;
|
|
60
|
+
}>;
|
|
61
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare type FormError = {
|
|
3
|
+
field: string;
|
|
4
|
+
msg: string;
|
|
5
|
+
};
|
|
6
|
+
export declare type Form = {
|
|
7
|
+
name: string;
|
|
8
|
+
focus: () => void;
|
|
9
|
+
validate: () => boolean;
|
|
10
|
+
setError: (val: string) => void;
|
|
11
|
+
};
|
|
12
|
+
declare const _default: import("vue").DefineComponent<{
|
|
13
|
+
autoValidate: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
autoFocus: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
disabled: BooleanConstructor;
|
|
22
|
+
errors: {
|
|
23
|
+
type: PropType<[FormError[], FormError]>;
|
|
24
|
+
default: () => never[];
|
|
25
|
+
};
|
|
26
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "submit"[], "submit", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
autoValidate: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
autoFocus: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
disabled: BooleanConstructor;
|
|
36
|
+
errors: {
|
|
37
|
+
type: PropType<[FormError[], FormError]>;
|
|
38
|
+
default: () => never[];
|
|
39
|
+
};
|
|
40
|
+
}>> & {
|
|
41
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
42
|
+
}, {
|
|
43
|
+
disabled: boolean;
|
|
44
|
+
autoValidate: boolean;
|
|
45
|
+
autoFocus: boolean;
|
|
46
|
+
errors: [FormError[], FormError];
|
|
47
|
+
}>;
|
|
48
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
error: StringConstructor;
|
|
3
|
+
helper: StringConstructor;
|
|
4
|
+
}, () => JSX.Element | "", unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
error: StringConstructor;
|
|
6
|
+
helper: StringConstructor;
|
|
7
|
+
}>>, {}>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
icon: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
filled: BooleanConstructor;
|
|
7
|
+
viewBox: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
size: {
|
|
12
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
13
|
+
readonly default: "md";
|
|
14
|
+
readonly validator: (value: string) => boolean;
|
|
15
|
+
};
|
|
16
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
icon: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
filled: BooleanConstructor;
|
|
22
|
+
viewBox: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
size: {
|
|
27
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
28
|
+
readonly default: "md";
|
|
29
|
+
readonly validator: (value: string) => boolean;
|
|
30
|
+
};
|
|
31
|
+
}>>, {
|
|
32
|
+
size: import("../../composables/common").Size;
|
|
33
|
+
filled: boolean;
|
|
34
|
+
viewBox: string;
|
|
35
|
+
}>;
|
|
36
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
src: StringConstructor;
|
|
3
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
src: StringConstructor;
|
|
5
|
+
}>>, {}>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export { default as XAlert } from './alert/Alert.vue';
|
|
2
|
+
export { default as XAvatar } from './avatar/Avatar.vue';
|
|
3
|
+
export { default as XBadge } from './badge/Badge.vue';
|
|
4
|
+
export { default as XBreadcrumbs } from './breadcrumbs/Breadcrumbs.vue';
|
|
5
|
+
export { default as XButton } from './button/Button.vue';
|
|
6
|
+
export { default as XButtonGroup } from './button/ButtonGroup.vue';
|
|
7
|
+
export { default as XCard } from './card/Card.vue';
|
|
8
|
+
export { default as XCheckbox } from './checkbox/Checkbox.vue';
|
|
9
|
+
export { default as XCollapse } from './collapse/Collapse.vue';
|
|
10
|
+
export { default as XContainer } from './container/Container.vue';
|
|
11
|
+
export { default as XDivider } from './divider/Divider.vue';
|
|
12
|
+
export { default as XDrawer } from './drawer/Drawer.vue';
|
|
13
|
+
export { default as XForm } from './form/Form.vue';
|
|
14
|
+
export { default as XIcon } from './icon/Icon.vue';
|
|
15
|
+
export { default as XImage } from './image/Image.vue';
|
|
16
|
+
export { default as XInput } from './input/Input.vue';
|
|
17
|
+
export { default as XLink } from './link/Link.vue';
|
|
18
|
+
export { default as XMenu } from './menu/Menu.vue';
|
|
19
|
+
export { default as XMenuItem } from './menu/MenuItem.vue';
|
|
20
|
+
export { default as XModal } from './modal/Modal.vue';
|
|
21
|
+
export { default as XNotifications } from './notifications/Notifications.vue';
|
|
22
|
+
export { default as XPagination } from './pagination/Pagination.vue';
|
|
23
|
+
export { default as XPaginationItem } from './pagination/PaginationItem.vue';
|
|
24
|
+
export { default as XPopover } from './popover/Popover.vue';
|
|
25
|
+
export { default as XPopoverContainer } from './popover/PopoverContainer.vue';
|
|
26
|
+
export { default as XProgress } from './progress/Progress.vue';
|
|
27
|
+
export { default as XRadio } from './radio/Radio.vue';
|
|
28
|
+
export { default as XScroll } from './scroll/Scroll.vue';
|
|
29
|
+
export { default as XSelect } from './select/Select.vue';
|
|
30
|
+
export { default as XSkeleton } from './skeleton/Skeleton.vue';
|
|
31
|
+
export { default as XSlider } from './slider/Slider.vue';
|
|
32
|
+
export { default as XSpacer } from './spacer/Spacer';
|
|
33
|
+
export { default as XSpinner } from './spinner/Spinner.vue';
|
|
34
|
+
export { default as XTable } from './table/Table.vue';
|
|
35
|
+
export { default as XTableBody } from './table/TableBody';
|
|
36
|
+
export { default as XTableCell } from './table/TableCell.vue';
|
|
37
|
+
export { default as XTableHead } from './table/TableHead';
|
|
38
|
+
export { default as XTableHeader } from './table/TableHeader.vue';
|
|
39
|
+
export { default as XTableRow } from './table/TableRow.vue';
|
|
40
|
+
export { default as XTab } from './tab/Tab.vue';
|
|
41
|
+
export { default as XTabGroup } from './tab/TabGroup.vue';
|
|
42
|
+
export { default as XTag } from './tag/Tag.vue';
|
|
43
|
+
export { default as XTextarea } from './textarea/Textarea.vue';
|
|
44
|
+
export { default as XToggle } from './toggle/Toggle.vue';
|
|
45
|
+
export { default as XTooltip } from './tooltip/Tooltip.vue';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { ThemeParams } from '../../composables/theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
classes: {
|
|
4
|
+
wrapper: string;
|
|
5
|
+
label: ({ props }: ThemeParams) => string;
|
|
6
|
+
input: ({ props, data }: ThemeParams) => string[];
|
|
7
|
+
icon: string;
|
|
8
|
+
};
|
|
9
|
+
styles: ({ colors, props, css }: ThemeParams) => string;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
showPasswordToggle: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
helper: StringConstructor;
|
|
7
|
+
label: StringConstructor;
|
|
8
|
+
dir: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
icon: StringConstructor;
|
|
13
|
+
iconLeft: StringConstructor;
|
|
14
|
+
iconRight: StringConstructor;
|
|
15
|
+
max: (NumberConstructor | StringConstructor)[];
|
|
16
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
17
|
+
min: (NumberConstructor | StringConstructor)[];
|
|
18
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
19
|
+
placeholder: StringConstructor;
|
|
20
|
+
type: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
block: BooleanConstructor;
|
|
25
|
+
modelValue: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
26
|
+
name: StringConstructor;
|
|
27
|
+
readonly: BooleanConstructor;
|
|
28
|
+
required: BooleanConstructor;
|
|
29
|
+
validateOnInput: {
|
|
30
|
+
readonly type: BooleanConstructor;
|
|
31
|
+
readonly default: true;
|
|
32
|
+
};
|
|
33
|
+
error: StringConstructor;
|
|
34
|
+
rules: {
|
|
35
|
+
readonly type: ArrayConstructor;
|
|
36
|
+
readonly default: () => never[];
|
|
37
|
+
};
|
|
38
|
+
disabled: BooleanConstructor;
|
|
39
|
+
loading: BooleanConstructor;
|
|
40
|
+
color: {
|
|
41
|
+
readonly type: StringConstructor;
|
|
42
|
+
readonly default: string | undefined;
|
|
43
|
+
};
|
|
44
|
+
size: {
|
|
45
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
46
|
+
readonly default: "md";
|
|
47
|
+
readonly validator: (value: string) => boolean;
|
|
48
|
+
};
|
|
49
|
+
}, {
|
|
50
|
+
focus: () => void | undefined;
|
|
51
|
+
blur: () => void | undefined;
|
|
52
|
+
reset: () => void;
|
|
53
|
+
validate: (val: any) => boolean;
|
|
54
|
+
setError: (val: string) => void;
|
|
55
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
56
|
+
showPasswordToggle: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
helper: StringConstructor;
|
|
61
|
+
label: StringConstructor;
|
|
62
|
+
dir: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
icon: StringConstructor;
|
|
67
|
+
iconLeft: StringConstructor;
|
|
68
|
+
iconRight: StringConstructor;
|
|
69
|
+
max: (NumberConstructor | StringConstructor)[];
|
|
70
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
71
|
+
min: (NumberConstructor | StringConstructor)[];
|
|
72
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
73
|
+
placeholder: StringConstructor;
|
|
74
|
+
type: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
block: BooleanConstructor;
|
|
79
|
+
modelValue: import("vue").PropType<string | number | boolean | object | any[] | undefined>;
|
|
80
|
+
name: StringConstructor;
|
|
81
|
+
readonly: BooleanConstructor;
|
|
82
|
+
required: BooleanConstructor;
|
|
83
|
+
validateOnInput: {
|
|
84
|
+
readonly type: BooleanConstructor;
|
|
85
|
+
readonly default: true;
|
|
86
|
+
};
|
|
87
|
+
error: StringConstructor;
|
|
88
|
+
rules: {
|
|
89
|
+
readonly type: ArrayConstructor;
|
|
90
|
+
readonly default: () => never[];
|
|
91
|
+
};
|
|
92
|
+
disabled: BooleanConstructor;
|
|
93
|
+
loading: BooleanConstructor;
|
|
94
|
+
color: {
|
|
95
|
+
readonly type: StringConstructor;
|
|
96
|
+
readonly default: string | undefined;
|
|
97
|
+
};
|
|
98
|
+
size: {
|
|
99
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
100
|
+
readonly default: "md";
|
|
101
|
+
readonly validator: (value: string) => boolean;
|
|
102
|
+
};
|
|
103
|
+
}>> & {
|
|
104
|
+
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
105
|
+
}, {
|
|
106
|
+
readonly: boolean;
|
|
107
|
+
size: import("../../composables/common").Size;
|
|
108
|
+
required: boolean;
|
|
109
|
+
type: string;
|
|
110
|
+
color: string;
|
|
111
|
+
dir: string;
|
|
112
|
+
block: boolean;
|
|
113
|
+
disabled: boolean;
|
|
114
|
+
loading: boolean;
|
|
115
|
+
validateOnInput: boolean;
|
|
116
|
+
rules: unknown[];
|
|
117
|
+
showPasswordToggle: boolean;
|
|
118
|
+
}>;
|
|
119
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
tag: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
to: (ObjectConstructor | StringConstructor)[];
|
|
7
|
+
shadow: BooleanConstructor;
|
|
8
|
+
external: BooleanConstructor;
|
|
9
|
+
underline: BooleanConstructor;
|
|
10
|
+
color: {
|
|
11
|
+
readonly type: StringConstructor;
|
|
12
|
+
readonly default: string | undefined;
|
|
13
|
+
};
|
|
14
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
tag: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
to: (ObjectConstructor | StringConstructor)[];
|
|
20
|
+
shadow: BooleanConstructor;
|
|
21
|
+
external: BooleanConstructor;
|
|
22
|
+
underline: BooleanConstructor;
|
|
23
|
+
color: {
|
|
24
|
+
readonly type: StringConstructor;
|
|
25
|
+
readonly default: string | undefined;
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
color: string;
|
|
29
|
+
tag: string;
|
|
30
|
+
shadow: boolean;
|
|
31
|
+
external: boolean;
|
|
32
|
+
underline: boolean;
|
|
33
|
+
}>;
|
|
34
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
items: PropType<any[]>;
|
|
4
|
+
collapsible: {
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
default: boolean;
|
|
7
|
+
};
|
|
8
|
+
collapseIcon: StringConstructor;
|
|
9
|
+
expanded: BooleanConstructor;
|
|
10
|
+
disabled: BooleanConstructor;
|
|
11
|
+
rounded: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
filled: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
color: {
|
|
20
|
+
readonly type: StringConstructor;
|
|
21
|
+
readonly default: string | undefined;
|
|
22
|
+
};
|
|
23
|
+
size: {
|
|
24
|
+
readonly type: PropType<import("../../composables/common").Size>;
|
|
25
|
+
readonly default: "md";
|
|
26
|
+
readonly validator: (value: string) => boolean;
|
|
27
|
+
};
|
|
28
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "expand"[], "expand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
+
items: PropType<any[]>;
|
|
30
|
+
collapsible: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
collapseIcon: StringConstructor;
|
|
35
|
+
expanded: BooleanConstructor;
|
|
36
|
+
disabled: BooleanConstructor;
|
|
37
|
+
rounded: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
default: boolean;
|
|
40
|
+
};
|
|
41
|
+
filled: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
color: {
|
|
46
|
+
readonly type: StringConstructor;
|
|
47
|
+
readonly default: string | undefined;
|
|
48
|
+
};
|
|
49
|
+
size: {
|
|
50
|
+
readonly type: PropType<import("../../composables/common").Size>;
|
|
51
|
+
readonly default: "md";
|
|
52
|
+
readonly validator: (value: string) => boolean;
|
|
53
|
+
};
|
|
54
|
+
}>> & {
|
|
55
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
}, {
|
|
57
|
+
size: import("../../composables/common").Size;
|
|
58
|
+
filled: boolean;
|
|
59
|
+
color: string;
|
|
60
|
+
rounded: boolean;
|
|
61
|
+
disabled: boolean;
|
|
62
|
+
expanded: boolean;
|
|
63
|
+
collapsible: boolean;
|
|
64
|
+
}>;
|
|
65
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ThemeParams } from '../../composables/theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
classes: {
|
|
4
|
+
wrapper: ({ props, data }: ThemeParams) => any[];
|
|
5
|
+
};
|
|
6
|
+
styles: ({ colors, props, css, data }: ThemeParams) => Record<string, string>;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
item: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => void;
|
|
5
|
+
};
|
|
6
|
+
active: BooleanConstructor;
|
|
7
|
+
onClick: FunctionConstructor;
|
|
8
|
+
inactive: BooleanConstructor;
|
|
9
|
+
value: (NumberConstructor | StringConstructor)[];
|
|
10
|
+
to: StringConstructor;
|
|
11
|
+
exact: BooleanConstructor;
|
|
12
|
+
href: StringConstructor;
|
|
13
|
+
target: StringConstructor;
|
|
14
|
+
label: StringConstructor;
|
|
15
|
+
icon: StringConstructor;
|
|
16
|
+
iconRight: StringConstructor;
|
|
17
|
+
loading: BooleanConstructor;
|
|
18
|
+
rounded: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
filled: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
selected: BooleanConstructor;
|
|
27
|
+
disabled: BooleanConstructor;
|
|
28
|
+
color: {
|
|
29
|
+
readonly type: StringConstructor;
|
|
30
|
+
readonly default: string | undefined;
|
|
31
|
+
};
|
|
32
|
+
size: {
|
|
33
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
34
|
+
readonly default: "md";
|
|
35
|
+
readonly validator: (value: string) => boolean;
|
|
36
|
+
};
|
|
37
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("active" | "click")[], "active" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
+
item: {
|
|
39
|
+
type: ObjectConstructor;
|
|
40
|
+
default: () => void;
|
|
41
|
+
};
|
|
42
|
+
active: BooleanConstructor;
|
|
43
|
+
onClick: FunctionConstructor;
|
|
44
|
+
inactive: BooleanConstructor;
|
|
45
|
+
value: (NumberConstructor | StringConstructor)[];
|
|
46
|
+
to: StringConstructor;
|
|
47
|
+
exact: BooleanConstructor;
|
|
48
|
+
href: StringConstructor;
|
|
49
|
+
target: StringConstructor;
|
|
50
|
+
label: StringConstructor;
|
|
51
|
+
icon: StringConstructor;
|
|
52
|
+
iconRight: StringConstructor;
|
|
53
|
+
loading: BooleanConstructor;
|
|
54
|
+
rounded: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
filled: {
|
|
59
|
+
type: BooleanConstructor;
|
|
60
|
+
default: boolean;
|
|
61
|
+
};
|
|
62
|
+
selected: BooleanConstructor;
|
|
63
|
+
disabled: BooleanConstructor;
|
|
64
|
+
color: {
|
|
65
|
+
readonly type: StringConstructor;
|
|
66
|
+
readonly default: string | undefined;
|
|
67
|
+
};
|
|
68
|
+
size: {
|
|
69
|
+
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
70
|
+
readonly default: "md";
|
|
71
|
+
readonly validator: (value: string) => boolean;
|
|
72
|
+
};
|
|
73
|
+
}>> & {
|
|
74
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
75
|
+
onActive?: ((...args: any[]) => any) | undefined;
|
|
76
|
+
}, {
|
|
77
|
+
active: boolean;
|
|
78
|
+
size: import("../../composables/common").Size;
|
|
79
|
+
filled: boolean;
|
|
80
|
+
color: string;
|
|
81
|
+
rounded: boolean;
|
|
82
|
+
item: Record<string, any>;
|
|
83
|
+
disabled: boolean;
|
|
84
|
+
loading: boolean;
|
|
85
|
+
exact: boolean;
|
|
86
|
+
inactive: boolean;
|
|
87
|
+
selected: boolean;
|
|
88
|
+
}>;
|
|
89
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ThemeParams } from '../../composables/theme';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
classes: {
|
|
4
|
+
wrapper: string;
|
|
5
|
+
backdrop: string;
|
|
6
|
+
modal: ({ props }: ThemeParams) => string;
|
|
7
|
+
closeIcon: string;
|
|
8
|
+
header: string;
|
|
9
|
+
content: string;
|
|
10
|
+
actions: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export default _default;
|