@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,73 +0,0 @@
|
|
|
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
|
-
to: {
|
|
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
|
-
deferShow: import("vue").Ref<boolean>;
|
|
27
|
-
backdropRef: import("vue").Ref<HTMLElement | null>;
|
|
28
|
-
drawerRef: import("vue").Ref<HTMLElement | null>;
|
|
29
|
-
visible: import("vue").Ref<boolean>;
|
|
30
|
-
classes: import("vue").ComputedRef<string[]>;
|
|
31
|
-
styles: import("vue").ComputedRef<Record<string, string>>;
|
|
32
|
-
detached: import("vue").Ref<boolean>;
|
|
33
|
-
value: import("vue").Ref<boolean>;
|
|
34
|
-
open: () => void;
|
|
35
|
-
close: (e?: PointerEvent | undefined) => void;
|
|
36
|
-
onBeforeEnter: (el: HTMLElement) => void;
|
|
37
|
-
onEnter: (el: HTMLElement, done: () => void) => void;
|
|
38
|
-
onBeforeLeave: (el: HTMLElement) => void;
|
|
39
|
-
onLeave: (el: HTMLElement, done: () => void) => void;
|
|
40
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
41
|
-
modelValue: BooleanConstructor;
|
|
42
|
-
position: {
|
|
43
|
-
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
to: {
|
|
47
|
-
type: PropType<string | HTMLElement>;
|
|
48
|
-
default: string;
|
|
49
|
-
};
|
|
50
|
-
width: {
|
|
51
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
52
|
-
default: number;
|
|
53
|
-
};
|
|
54
|
-
height: {
|
|
55
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
56
|
-
default: number;
|
|
57
|
-
};
|
|
58
|
-
breakpoint: (NumberConstructor | StringConstructor)[];
|
|
59
|
-
backdrop: {
|
|
60
|
-
type: BooleanConstructor;
|
|
61
|
-
default: boolean;
|
|
62
|
-
};
|
|
63
|
-
}>> & {
|
|
64
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
65
|
-
}, {
|
|
66
|
-
height: string | number;
|
|
67
|
-
width: string | number;
|
|
68
|
-
position: "top" | "bottom" | "left" | "right";
|
|
69
|
-
to: string | HTMLElement;
|
|
70
|
-
modelValue: boolean;
|
|
71
|
-
backdrop: boolean;
|
|
72
|
-
}>;
|
|
73
|
-
export default _default;
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
export declare type Form = {
|
|
2
|
-
name: string;
|
|
3
|
-
focus: () => void;
|
|
4
|
-
validate: () => boolean;
|
|
5
|
-
setError: (val: string) => void;
|
|
6
|
-
};
|
|
7
|
-
declare const _default: import("vue").DefineComponent<{
|
|
8
|
-
autoValidate: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
autoFocus: {
|
|
13
|
-
type: BooleanConstructor;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
|
-
disabled: BooleanConstructor;
|
|
17
|
-
errors: {
|
|
18
|
-
type: ArrayConstructor;
|
|
19
|
-
default: () => never[];
|
|
20
|
-
};
|
|
21
|
-
}, {
|
|
22
|
-
validate: () => boolean;
|
|
23
|
-
submit: (e: Event) => void;
|
|
24
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "submit"[], "submit", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
-
autoValidate: {
|
|
26
|
-
type: BooleanConstructor;
|
|
27
|
-
default: boolean;
|
|
28
|
-
};
|
|
29
|
-
autoFocus: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
disabled: BooleanConstructor;
|
|
34
|
-
errors: {
|
|
35
|
-
type: ArrayConstructor;
|
|
36
|
-
default: () => never[];
|
|
37
|
-
};
|
|
38
|
-
}>> & {
|
|
39
|
-
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
}, {
|
|
41
|
-
disabled: boolean;
|
|
42
|
-
autoValidate: boolean;
|
|
43
|
-
autoFocus: boolean;
|
|
44
|
-
errors: unknown[];
|
|
45
|
-
}>;
|
|
46
|
-
export default _default;
|
|
@@ -1,40 +0,0 @@
|
|
|
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 validator: (value: string) => boolean;
|
|
14
|
-
};
|
|
15
|
-
}, {
|
|
16
|
-
attrs: import("vue").Ref<{}>;
|
|
17
|
-
isWrapSVG: import("vue").Ref<boolean>;
|
|
18
|
-
computedIcon: import("vue").Ref<string>;
|
|
19
|
-
computedFilled: import("vue").Ref<boolean>;
|
|
20
|
-
computedViewBox: import("vue").Ref<string>;
|
|
21
|
-
sizeClasses: import("vue").ComputedRef<"h-3 w-3" | "h-4 w-4" | "h-6 w-6" | "h-9 w-9" | "h-5 w-5">;
|
|
22
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
-
icon: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
required: true;
|
|
26
|
-
};
|
|
27
|
-
filled: BooleanConstructor;
|
|
28
|
-
viewBox: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
default: string;
|
|
31
|
-
};
|
|
32
|
-
size: {
|
|
33
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
34
|
-
readonly validator: (value: string) => boolean;
|
|
35
|
-
};
|
|
36
|
-
}>>, {
|
|
37
|
-
filled: boolean;
|
|
38
|
-
viewBox: string;
|
|
39
|
-
}>;
|
|
40
|
-
export default _default;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
src: StringConstructor;
|
|
3
|
-
}, {
|
|
4
|
-
source: import("vue").Ref<string | undefined>;
|
|
5
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
-
src: StringConstructor;
|
|
7
|
-
}>>, {}>;
|
|
8
|
-
export default _default;
|
|
@@ -1,45 +0,0 @@
|
|
|
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.vue';
|
|
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.vue';
|
|
36
|
-
export { default as XTableCell } from './table/TableCell.vue';
|
|
37
|
-
export { default as XTableHead } from './table/TableHead.vue';
|
|
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';
|
|
@@ -1,117 +0,0 @@
|
|
|
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
|
-
iconRight: StringConstructor;
|
|
14
|
-
max: NumberConstructor;
|
|
15
|
-
maxlength: NumberConstructor;
|
|
16
|
-
min: NumberConstructor;
|
|
17
|
-
minlength: NumberConstructor;
|
|
18
|
-
placeholder: StringConstructor;
|
|
19
|
-
type: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
inputClass: StringConstructor;
|
|
24
|
-
block: BooleanConstructor;
|
|
25
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
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
|
-
size: {
|
|
41
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
42
|
-
readonly validator: (value: string) => boolean;
|
|
43
|
-
};
|
|
44
|
-
}, {
|
|
45
|
-
currentType: import("vue").Ref<string>;
|
|
46
|
-
labelClasses: import("vue").ComputedRef<"" | "text-xs" | "text-sm" | "text-lg" | "text-xl">;
|
|
47
|
-
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">;
|
|
48
|
-
style: string;
|
|
49
|
-
elRef: import("vue").Ref<HTMLInputElement | undefined>;
|
|
50
|
-
onChange: (e: Event) => void;
|
|
51
|
-
togglePasswordVisibility: () => void;
|
|
52
|
-
isFirstValidation: import("vue").Ref<boolean>;
|
|
53
|
-
errorInternal: any;
|
|
54
|
-
isInsideForm: any;
|
|
55
|
-
inputListeners: {};
|
|
56
|
-
reset: () => void;
|
|
57
|
-
validate: (val: any) => boolean;
|
|
58
|
-
setError: (val: string) => void;
|
|
59
|
-
focus: () => void;
|
|
60
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
61
|
-
showPasswordToggle: {
|
|
62
|
-
type: BooleanConstructor;
|
|
63
|
-
default: boolean;
|
|
64
|
-
};
|
|
65
|
-
helper: StringConstructor;
|
|
66
|
-
label: StringConstructor;
|
|
67
|
-
dir: {
|
|
68
|
-
type: StringConstructor;
|
|
69
|
-
default: string;
|
|
70
|
-
};
|
|
71
|
-
icon: StringConstructor;
|
|
72
|
-
iconRight: StringConstructor;
|
|
73
|
-
max: NumberConstructor;
|
|
74
|
-
maxlength: NumberConstructor;
|
|
75
|
-
min: NumberConstructor;
|
|
76
|
-
minlength: NumberConstructor;
|
|
77
|
-
placeholder: StringConstructor;
|
|
78
|
-
type: {
|
|
79
|
-
type: StringConstructor;
|
|
80
|
-
default: string;
|
|
81
|
-
};
|
|
82
|
-
inputClass: StringConstructor;
|
|
83
|
-
block: BooleanConstructor;
|
|
84
|
-
modelValue: import("vue").PropType<[string, number, boolean, object, []]>;
|
|
85
|
-
name: StringConstructor;
|
|
86
|
-
readonly: BooleanConstructor;
|
|
87
|
-
required: BooleanConstructor;
|
|
88
|
-
validateOnInput: {
|
|
89
|
-
readonly type: BooleanConstructor;
|
|
90
|
-
readonly default: true;
|
|
91
|
-
};
|
|
92
|
-
error: StringConstructor;
|
|
93
|
-
rules: {
|
|
94
|
-
readonly type: ArrayConstructor;
|
|
95
|
-
readonly default: () => never[];
|
|
96
|
-
};
|
|
97
|
-
disabled: BooleanConstructor;
|
|
98
|
-
loading: BooleanConstructor;
|
|
99
|
-
size: {
|
|
100
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
101
|
-
readonly validator: (value: string) => boolean;
|
|
102
|
-
};
|
|
103
|
-
}>> & {
|
|
104
|
-
[x: string & `on${string}`]: ((...args: any[]) => any) | undefined;
|
|
105
|
-
}, {
|
|
106
|
-
readonly: boolean;
|
|
107
|
-
dir: string;
|
|
108
|
-
required: boolean;
|
|
109
|
-
type: string;
|
|
110
|
-
block: boolean;
|
|
111
|
-
disabled: boolean;
|
|
112
|
-
loading: boolean;
|
|
113
|
-
validateOnInput: boolean;
|
|
114
|
-
rules: unknown[];
|
|
115
|
-
showPasswordToggle: boolean;
|
|
116
|
-
}>;
|
|
117
|
-
export default _default;
|
|
@@ -1,36 +0,0 @@
|
|
|
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
|
-
}, {
|
|
15
|
-
styles: import("vue").ComputedRef<Record<string, string>>;
|
|
16
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
-
tag: {
|
|
18
|
-
type: StringConstructor;
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
|
-
to: (ObjectConstructor | StringConstructor)[];
|
|
22
|
-
shadow: BooleanConstructor;
|
|
23
|
-
external: BooleanConstructor;
|
|
24
|
-
underline: BooleanConstructor;
|
|
25
|
-
color: {
|
|
26
|
-
readonly type: StringConstructor;
|
|
27
|
-
readonly default: string | undefined;
|
|
28
|
-
};
|
|
29
|
-
}>>, {
|
|
30
|
-
tag: string;
|
|
31
|
-
color: string;
|
|
32
|
-
shadow: boolean;
|
|
33
|
-
underline: boolean;
|
|
34
|
-
external: boolean;
|
|
35
|
-
}>;
|
|
36
|
-
export default _default;
|
|
@@ -1,62 +0,0 @@
|
|
|
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 validator: (value: string) => boolean;
|
|
26
|
-
};
|
|
27
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "expand"[], "expand", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
-
items: PropType<any[]>;
|
|
29
|
-
collapsible: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
collapseIcon: StringConstructor;
|
|
34
|
-
expanded: BooleanConstructor;
|
|
35
|
-
disabled: BooleanConstructor;
|
|
36
|
-
rounded: {
|
|
37
|
-
type: BooleanConstructor;
|
|
38
|
-
default: boolean;
|
|
39
|
-
};
|
|
40
|
-
filled: {
|
|
41
|
-
type: BooleanConstructor;
|
|
42
|
-
default: boolean;
|
|
43
|
-
};
|
|
44
|
-
color: {
|
|
45
|
-
readonly type: StringConstructor;
|
|
46
|
-
readonly default: string | undefined;
|
|
47
|
-
};
|
|
48
|
-
size: {
|
|
49
|
-
readonly type: PropType<import("../../composables/common").Size>;
|
|
50
|
-
readonly validator: (value: string) => boolean;
|
|
51
|
-
};
|
|
52
|
-
}>> & {
|
|
53
|
-
onExpand?: ((...args: any[]) => any) | undefined;
|
|
54
|
-
}, {
|
|
55
|
-
color: string;
|
|
56
|
-
filled: boolean;
|
|
57
|
-
rounded: boolean;
|
|
58
|
-
disabled: boolean;
|
|
59
|
-
expanded: boolean;
|
|
60
|
-
collapsible: boolean;
|
|
61
|
-
}>;
|
|
62
|
-
export default _default;
|
|
@@ -1,114 +0,0 @@
|
|
|
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 validator: (value: string) => boolean;
|
|
35
|
-
};
|
|
36
|
-
}, {
|
|
37
|
-
elRef: import("vue").Ref<any>;
|
|
38
|
-
cItem: import("vue").ComputedRef<{
|
|
39
|
-
label: string | undefined;
|
|
40
|
-
active: boolean;
|
|
41
|
-
color: string;
|
|
42
|
-
onClick: (Function & ((...args: any[]) => any)) | undefined;
|
|
43
|
-
icon: string | undefined;
|
|
44
|
-
size: import("../../composables/common").Size;
|
|
45
|
-
filled: boolean;
|
|
46
|
-
value: string | number | undefined;
|
|
47
|
-
rounded: boolean;
|
|
48
|
-
item: Record<string, any>;
|
|
49
|
-
to: string | undefined;
|
|
50
|
-
href: string | undefined;
|
|
51
|
-
iconRight: string | undefined;
|
|
52
|
-
disabled: boolean;
|
|
53
|
-
loading: boolean;
|
|
54
|
-
exact: boolean;
|
|
55
|
-
inactive: boolean;
|
|
56
|
-
onActive: ((...args: any[]) => any) | undefined;
|
|
57
|
-
target: string | undefined;
|
|
58
|
-
selected: boolean;
|
|
59
|
-
}>;
|
|
60
|
-
htmlTag: string;
|
|
61
|
-
isActive: import("vue").Ref<boolean>;
|
|
62
|
-
cssVariables: import("vue").ComputedRef<Record<string, string>>;
|
|
63
|
-
onItemClick: (e: Event) => void;
|
|
64
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("active" | "click")[], "active" | "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
|
-
item: {
|
|
66
|
-
type: ObjectConstructor;
|
|
67
|
-
default: () => void;
|
|
68
|
-
};
|
|
69
|
-
active: BooleanConstructor;
|
|
70
|
-
onClick: FunctionConstructor;
|
|
71
|
-
inactive: BooleanConstructor;
|
|
72
|
-
value: (NumberConstructor | StringConstructor)[];
|
|
73
|
-
to: StringConstructor;
|
|
74
|
-
exact: BooleanConstructor;
|
|
75
|
-
href: StringConstructor;
|
|
76
|
-
target: StringConstructor;
|
|
77
|
-
label: StringConstructor;
|
|
78
|
-
icon: StringConstructor;
|
|
79
|
-
iconRight: StringConstructor;
|
|
80
|
-
loading: BooleanConstructor;
|
|
81
|
-
rounded: {
|
|
82
|
-
type: BooleanConstructor;
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
|
-
filled: {
|
|
86
|
-
type: BooleanConstructor;
|
|
87
|
-
default: boolean;
|
|
88
|
-
};
|
|
89
|
-
selected: BooleanConstructor;
|
|
90
|
-
disabled: BooleanConstructor;
|
|
91
|
-
color: {
|
|
92
|
-
readonly type: StringConstructor;
|
|
93
|
-
readonly default: string | undefined;
|
|
94
|
-
};
|
|
95
|
-
size: {
|
|
96
|
-
readonly type: import("vue").PropType<import("../../composables/common").Size>;
|
|
97
|
-
readonly validator: (value: string) => boolean;
|
|
98
|
-
};
|
|
99
|
-
}>> & {
|
|
100
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
101
|
-
onActive?: ((...args: any[]) => any) | undefined;
|
|
102
|
-
}, {
|
|
103
|
-
active: boolean;
|
|
104
|
-
color: string;
|
|
105
|
-
filled: boolean;
|
|
106
|
-
rounded: boolean;
|
|
107
|
-
item: Record<string, any>;
|
|
108
|
-
disabled: boolean;
|
|
109
|
-
loading: boolean;
|
|
110
|
-
exact: boolean;
|
|
111
|
-
inactive: boolean;
|
|
112
|
-
selected: boolean;
|
|
113
|
-
}>;
|
|
114
|
-
export default _default;
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
size: {
|
|
4
|
-
type: PropType<"xs" | "sm" | "md" | "lg" | "xl" | "full">;
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
|
-
modelValue: BooleanConstructor;
|
|
8
|
-
showClose: BooleanConstructor;
|
|
9
|
-
backdrop: BooleanConstructor;
|
|
10
|
-
}, {
|
|
11
|
-
closeIcon: string;
|
|
12
|
-
modalRef: import("vue").Ref<HTMLElement | null>;
|
|
13
|
-
classes: import("vue").ComputedRef<"w-full" | "sm:max-w-xs w-full" | "sm:max-w-sm w-full" | "sm:max-w-xl w-full" | "sm:max-w-3xl w-full" | "sm:max-w-lg w-full">;
|
|
14
|
-
visible: import("vue").Ref<boolean>;
|
|
15
|
-
value: import("vue").Ref<boolean>;
|
|
16
|
-
close: () => void;
|
|
17
|
-
open: () => void;
|
|
18
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
-
size: {
|
|
20
|
-
type: PropType<"xs" | "sm" | "md" | "lg" | "xl" | "full">;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
modelValue: BooleanConstructor;
|
|
24
|
-
showClose: BooleanConstructor;
|
|
25
|
-
backdrop: BooleanConstructor;
|
|
26
|
-
}>> & {
|
|
27
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
28
|
-
}, {
|
|
29
|
-
size: "xs" | "sm" | "md" | "lg" | "xl" | "full";
|
|
30
|
-
modelValue: boolean;
|
|
31
|
-
backdrop: boolean;
|
|
32
|
-
showClose: boolean;
|
|
33
|
-
}>;
|
|
34
|
-
export default _default;
|
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
import { type PropType } from 'vue';
|
|
2
|
-
export declare type NotificationAlign = 'left' | 'right';
|
|
3
|
-
export declare type NotificationPosition = 'bottom' | 'top';
|
|
4
|
-
export declare type NotificationAction = {
|
|
5
|
-
onClick: () => void;
|
|
6
|
-
label: string;
|
|
7
|
-
color?: string;
|
|
8
|
-
};
|
|
9
|
-
export declare type NotificationEvent = {
|
|
10
|
-
id?: number;
|
|
11
|
-
icon?: string;
|
|
12
|
-
action?: NotificationAction;
|
|
13
|
-
iconColor?: string;
|
|
14
|
-
title?: string;
|
|
15
|
-
style?: string;
|
|
16
|
-
message?: string;
|
|
17
|
-
timeout?: number;
|
|
18
|
-
removable?: boolean;
|
|
19
|
-
align?: NotificationAlign;
|
|
20
|
-
position?: NotificationPosition;
|
|
21
|
-
};
|
|
22
|
-
declare const _default: import("vue").DefineComponent<{
|
|
23
|
-
align: {
|
|
24
|
-
type: PropType<NotificationAlign>;
|
|
25
|
-
default: string;
|
|
26
|
-
validator: (value: string) => boolean;
|
|
27
|
-
};
|
|
28
|
-
position: {
|
|
29
|
-
type: PropType<NotificationPosition>;
|
|
30
|
-
default: string;
|
|
31
|
-
validator: (value: string) => boolean;
|
|
32
|
-
};
|
|
33
|
-
timeout: {
|
|
34
|
-
type: NumberConstructor;
|
|
35
|
-
default: number;
|
|
36
|
-
};
|
|
37
|
-
removable: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
|
-
color: {
|
|
42
|
-
readonly type: StringConstructor;
|
|
43
|
-
readonly default: string | undefined;
|
|
44
|
-
};
|
|
45
|
-
}, {
|
|
46
|
-
notifications: import("vue").Ref<{
|
|
47
|
-
id?: number | undefined;
|
|
48
|
-
icon?: string | undefined;
|
|
49
|
-
action?: {
|
|
50
|
-
onClick: () => void;
|
|
51
|
-
label: string;
|
|
52
|
-
color?: string | undefined;
|
|
53
|
-
} | undefined;
|
|
54
|
-
iconColor?: string | undefined;
|
|
55
|
-
title?: string | undefined;
|
|
56
|
-
style?: string | undefined;
|
|
57
|
-
message?: string | undefined;
|
|
58
|
-
timeout?: number | undefined;
|
|
59
|
-
removable?: boolean | undefined;
|
|
60
|
-
align?: NotificationAlign | undefined;
|
|
61
|
-
position?: NotificationPosition | undefined;
|
|
62
|
-
}[]>;
|
|
63
|
-
listRef: import("vue").Ref<HTMLElement | null>;
|
|
64
|
-
remove: (event: NotificationEvent) => void;
|
|
65
|
-
log: (notification: NotificationEvent | string) => void;
|
|
66
|
-
info: (notification: NotificationEvent | string) => void;
|
|
67
|
-
warn: (notification: NotificationEvent | string) => void;
|
|
68
|
-
error: (notification: NotificationEvent | string) => void;
|
|
69
|
-
warning: (notification: NotificationEvent | string) => void;
|
|
70
|
-
success: (notification: NotificationEvent | string) => void;
|
|
71
|
-
removeIcon: string;
|
|
72
|
-
internalAlign: import("vue").Ref<NotificationAlign>;
|
|
73
|
-
internalPosition: import("vue").Ref<NotificationPosition>;
|
|
74
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
75
|
-
align: {
|
|
76
|
-
type: PropType<NotificationAlign>;
|
|
77
|
-
default: string;
|
|
78
|
-
validator: (value: string) => boolean;
|
|
79
|
-
};
|
|
80
|
-
position: {
|
|
81
|
-
type: PropType<NotificationPosition>;
|
|
82
|
-
default: string;
|
|
83
|
-
validator: (value: string) => boolean;
|
|
84
|
-
};
|
|
85
|
-
timeout: {
|
|
86
|
-
type: NumberConstructor;
|
|
87
|
-
default: number;
|
|
88
|
-
};
|
|
89
|
-
removable: {
|
|
90
|
-
type: BooleanConstructor;
|
|
91
|
-
default: boolean;
|
|
92
|
-
};
|
|
93
|
-
color: {
|
|
94
|
-
readonly type: StringConstructor;
|
|
95
|
-
readonly default: string | undefined;
|
|
96
|
-
};
|
|
97
|
-
}>>, {
|
|
98
|
-
removable: boolean;
|
|
99
|
-
color: string;
|
|
100
|
-
position: NotificationPosition;
|
|
101
|
-
align: NotificationAlign;
|
|
102
|
-
timeout: number;
|
|
103
|
-
}>;
|
|
104
|
-
export default _default;
|