@dolanske/vui 1.0.3 → 1.1.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/LICENSE +673 -673
- package/README.md +42 -42
- package/dist/components/Accordion/Accordion.vue.d.ts +3 -2
- package/dist/components/Accordion/AccordionGroup.vue.d.ts +5 -2
- package/dist/components/Alert/Alert.vue.d.ts +3 -2
- package/dist/components/Avatar/Avatar.vue.d.ts +3 -2
- package/dist/components/Badge/Badge.vue.d.ts +3 -2
- package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +3 -2
- package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +3 -2
- package/dist/components/Button/Button.vue.d.ts +3 -2
- package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +3 -2
- package/dist/components/Calendar/Calendar.vue.d.ts +6 -6
- package/dist/components/Card/Card.vue.d.ts +4 -3
- package/dist/components/Checkbox/Checkbox.vue.d.ts +7 -6
- package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +2 -1
- package/dist/components/Divider/Divider.vue.d.ts +3 -2
- package/dist/components/Drawer/Drawer.vue.d.ts +10 -9
- package/dist/components/Dropdown/Dropdown.vue.d.ts +66 -3
- package/dist/components/Dropdown/DropdownItem.vue.d.ts +3 -2
- package/dist/components/Dropdown/DropdownTitle.vue.d.ts +6 -6
- package/dist/components/Flex/Flex.vue.d.ts +13 -12
- package/dist/components/Grid/Grid.vue.d.ts +7 -6
- package/dist/components/Input/Color.vue.d.ts +5 -5
- package/dist/components/Input/Counter.vue.d.ts +5 -5
- package/dist/components/Input/Dropzone.vue.d.ts +95 -10
- package/dist/components/Input/File.vue.d.ts +4 -3
- package/dist/components/Input/Input.vue.d.ts +7 -6
- package/dist/components/Input/Password.vue.d.ts +1 -1
- package/dist/components/Input/Textarea.vue.d.ts +7 -6
- package/dist/components/Kbd/Kbd.vue.d.ts +1 -1
- package/dist/components/Kbd/KbdGroup.vue.d.ts +2 -1
- package/dist/components/Modal/Confirm.vue.d.ts +7 -9
- package/dist/components/Modal/Modal.vue.d.ts +16 -13
- package/dist/components/OTP/OTP.vue.d.ts +7 -6
- package/dist/components/OTP/OTPItem.vue.d.ts +1 -1
- package/dist/components/Pagination/Pagination.vue.d.ts +3 -2
- package/dist/components/Popout/Popout.vue.d.ts +3 -2
- package/dist/components/Progress/Progress.vue.d.ts +5 -5
- package/dist/components/Radio/Radio.vue.d.ts +7 -6
- package/dist/components/Radio/RadioGroup.vue.d.ts +7 -6
- package/dist/components/Select/Select.vue.d.ts +4 -8
- package/dist/components/Sheet/Sheet.vue.d.ts +22 -13
- package/dist/components/Sidebar/Sidebar.vue.d.ts +7 -6
- package/dist/components/Skeleton/Skeleton.vue.d.ts +1 -1
- package/dist/components/Spinner/Spinner.vue.d.ts +1 -1
- package/dist/components/Switch/Switch.vue.d.ts +7 -6
- package/dist/components/Table/Cell.vue.d.ts +5 -2
- package/dist/components/Table/Head.vue.d.ts +3 -2
- package/dist/components/Table/Root.vue.d.ts +3 -2
- package/dist/components/Table/table.d.ts +2 -2
- package/dist/components/Tabs/Tab.vue.d.ts +3 -2
- package/dist/components/Tabs/Tabs.vue.d.ts +7 -6
- package/dist/components/Toast/toast.d.ts +6 -6
- package/dist/components/Tooltip/Tooltip.vue.d.ts +2 -1
- package/dist/internal/Backdrop/Backdrop.vue.d.ts +3 -2
- package/dist/vui.css +1 -0
- package/dist/vui.js +8090 -7884
- package/package.json +73 -72
- package/src/App.vue +95 -95
- package/src/components/Accordion/Accordion.vue +91 -91
- package/src/components/Accordion/AccordionGroup.vue +43 -43
- package/src/components/Accordion/accordion.scss +82 -82
- package/src/components/Alert/Alert.vue +59 -59
- package/src/components/Alert/alert.scss +161 -161
- package/src/components/Avatar/Avatar.vue +53 -53
- package/src/components/Avatar/avatar.scss +52 -52
- package/src/components/Badge/Badge.vue +21 -21
- package/src/components/Badge/badge.scss +210 -206
- package/src/components/Breadcrumbs/BreadcrumbItem.vue +26 -26
- package/src/components/Breadcrumbs/Breadcrumbs.vue +30 -30
- package/src/components/Breadcrumbs/breadcrumbs.scss +31 -31
- package/src/components/Button/Button.vue +85 -85
- package/src/components/Button/button.scss +279 -279
- package/src/components/ButtonGroup/ButtonGroup.vue +28 -28
- package/src/components/ButtonGroup/button-group.scss +51 -51
- package/src/components/Calendar/Calendar.vue +66 -66
- package/src/components/Calendar/calendar.scss +83 -83
- package/src/components/Card/Card.vue +48 -48
- package/src/components/Card/card.scss +53 -53
- package/src/components/Checkbox/Checkbox.vue +54 -54
- package/src/components/Checkbox/checkbox.scss +80 -80
- package/src/components/CopyClipboard/CopyClipboard.vue +91 -91
- package/src/components/CopyClipboard/copy-clipboard.scss +25 -25
- package/src/components/Divider/Divider.vue +44 -44
- package/src/components/Divider/divider.scss +35 -35
- package/src/components/Drawer/Drawer.vue +102 -97
- package/src/components/Drawer/drawer.scss +37 -37
- package/src/components/Dropdown/Dropdown.vue +135 -135
- package/src/components/Dropdown/DropdownItem.vue +33 -33
- package/src/components/Dropdown/DropdownTitle.vue +14 -14
- package/src/components/Dropdown/dropdown-item.scss +84 -84
- package/src/components/Dropdown/dropdown.scss +53 -53
- package/src/components/Flex/Flex.vue +113 -113
- package/src/components/Grid/Grid.vue +79 -80
- package/src/components/Input/Color.vue +26 -26
- package/src/components/Input/Counter.vue +66 -66
- package/src/components/Input/Dropzone.vue +65 -65
- package/src/components/Input/File.vue +15 -15
- package/src/components/Input/Input.vue +123 -123
- package/src/components/Input/Password.vue +35 -35
- package/src/components/Input/Textarea.vue +78 -78
- package/src/components/Input/input.scss +302 -302
- package/src/components/Kbd/Kbd.vue +48 -48
- package/src/components/Kbd/KbdGroup.vue +27 -27
- package/src/components/Kbd/kbd.scss +19 -19
- package/src/components/Modal/Confirm.vue +56 -56
- package/src/components/Modal/Modal.vue +103 -99
- package/src/components/Modal/modal.scss +54 -54
- package/src/components/OTP/OTP.vue +133 -133
- package/src/components/OTP/OTPItem.vue +37 -37
- package/src/components/OTP/otp.scss +84 -84
- package/src/components/Pagination/Pagination.vue +77 -77
- package/src/components/Pagination/pagination.ts +78 -78
- package/src/components/Popout/Popout.vue +52 -52
- package/src/components/Popout/popout.scss +15 -15
- package/src/components/Progress/Progress.vue +103 -103
- package/src/components/Progress/progress.scss +47 -47
- package/src/components/Radio/Radio.vue +38 -38
- package/src/components/Radio/RadioGroup.vue +40 -40
- package/src/components/Radio/radio.scss +78 -78
- package/src/components/Select/Select.vue +211 -211
- package/src/components/Select/select.scss +77 -77
- package/src/components/Sheet/Sheet.vue +108 -98
- package/src/components/Sheet/sheet.scss +69 -69
- package/src/components/Sidebar/Sidebar.vue +115 -115
- package/src/components/Sidebar/sidebar.scss +124 -124
- package/src/components/Skeleton/Skeleton.vue +43 -43
- package/src/components/Skeleton/skeleton.scss +14 -14
- package/src/components/Spinner/Spinner.vue +42 -42
- package/src/components/Spinner/spinner.scss +47 -47
- package/src/components/Switch/Switch.vue +31 -31
- package/src/components/Switch/switch.scss +93 -93
- package/src/components/Table/Cell.vue +23 -23
- package/src/components/Table/Head.vue +59 -59
- package/src/components/Table/Root.vue +66 -66
- package/src/components/Table/SelectAll.vue +23 -23
- package/src/components/Table/SelectRow.vue +30 -30
- package/src/components/Table/index.ts +7 -7
- package/src/components/Table/table.scss +154 -154
- package/src/components/Table/table.ts +248 -248
- package/src/components/Tabs/Tab.vue +25 -25
- package/src/components/Tabs/Tabs.vue +90 -90
- package/src/components/Tabs/tabs.scss +87 -87
- package/src/components/Toast/Toasts.vue +52 -52
- package/src/components/Toast/toast.scss +45 -45
- package/src/components/Toast/toast.ts +75 -75
- package/src/components/Tooltip/Tooltip.vue +86 -86
- package/src/components/Tooltip/tooltip.scss +8 -8
- package/src/examples/ExampleAccordions.vue +58 -58
- package/src/examples/ExampleAlerts.vue +78 -78
- package/src/examples/ExampleAvatars.vue +44 -44
- package/src/examples/ExampleBadges.vue +48 -48
- package/src/examples/ExampleBreadcrumbs.vue +46 -46
- package/src/examples/ExampleButtons.vue +140 -140
- package/src/examples/ExampleCalendars.vue +40 -40
- package/src/examples/ExampleCards.vue +94 -94
- package/src/examples/ExampleCheckboxes.vue +123 -123
- package/src/examples/ExampleCopyClipboard.vue +47 -47
- package/src/examples/ExampleDividers.vue +39 -39
- package/src/examples/ExampleDrawers.vue +67 -67
- package/src/examples/ExampleDropdowns.vue +114 -114
- package/src/examples/ExampleFlexGrid.vue +124 -122
- package/src/examples/ExampleInputs.vue +234 -234
- package/src/examples/ExampleKBD.vue +65 -65
- package/src/examples/ExampleModals.vue +143 -143
- package/src/examples/ExamplePalette.vue +159 -159
- package/src/examples/ExamplePopouts.vue +41 -41
- package/src/examples/ExampleSheets.vue +77 -77
- package/src/examples/ExampleSidebars.vue +270 -270
- package/src/examples/ExampleSkeletons.vue +26 -26
- package/src/examples/ExampleSpinners.vue +80 -78
- package/src/examples/ExampleTables.vue +195 -195
- package/src/examples/ExampleTabs.vue +119 -119
- package/src/examples/ExampleToasts.vue +96 -96
- package/src/examples/ExampleTooltips.vue +70 -70
- package/src/examples/shared/ExampleColor.vue +28 -28
- package/src/index.ts +116 -116
- package/src/internal/Backdrop/Backdrop.vue +22 -22
- package/src/internal/Backdrop/backdrop.scss +34 -34
- package/src/main.ts +5 -5
- package/src/shared/helpers.ts +117 -117
- package/src/shared/theme.ts +22 -22
- package/src/shared/types.ts +29 -29
- package/src/style/animation.scss +22 -22
- package/src/style/core.scss +119 -125
- package/src/style/layout.scss +207 -233
- package/src/style/media-query.scss +29 -29
- package/src/style/reset.scss +135 -135
- package/src/style/text.scss +137 -124
- package/src/style/theme.scss +195 -195
- package/src/style/tooltip.scss +146 -146
- package/src/style/typography.scss +415 -415
- package/src/style/utils.scss +36 -36
- package/src/{index.scss → style.scss} +1 -1
- package/dist/style.css +0 -1
|
@@ -4,7 +4,7 @@ export type SelectOption = {
|
|
|
4
4
|
};
|
|
5
5
|
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
6
6
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
7
|
-
readonly "onUpdate:modelValue"?: ((
|
|
7
|
+
readonly "onUpdate:modelValue"?: ((value: SelectOption[] | undefined) => any) | undefined;
|
|
8
8
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
9
9
|
modelValue?: SelectOption[] | undefined;
|
|
10
10
|
} & {
|
|
@@ -21,16 +21,12 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
21
21
|
showClear?: boolean;
|
|
22
22
|
disabled?: boolean;
|
|
23
23
|
errors?: string[];
|
|
24
|
-
})
|
|
24
|
+
}) & Partial<{}>> & import('vue').PublicProps;
|
|
25
25
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
26
26
|
attrs: any;
|
|
27
27
|
slots: {};
|
|
28
|
-
emit:
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
32
|
-
[key: string]: any;
|
|
33
|
-
}> & {
|
|
28
|
+
emit: (evt: "update:modelValue", value: SelectOption[] | undefined) => void;
|
|
29
|
+
}>) => import('vue').VNode & {
|
|
34
30
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
35
31
|
};
|
|
36
32
|
export default _default;
|
|
@@ -1,33 +1,42 @@
|
|
|
1
1
|
interface Props {
|
|
2
|
+
/**
|
|
3
|
+
* Controls the visibility of the sheet
|
|
4
|
+
*/
|
|
5
|
+
open?: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* Controls the position of the sheet
|
|
8
|
+
*/
|
|
2
9
|
position?: 'left' | 'right' | 'top' | 'bottom';
|
|
10
|
+
/**
|
|
11
|
+
* Sets the width of the sheet
|
|
12
|
+
*/
|
|
3
13
|
size?: number | string;
|
|
14
|
+
/**
|
|
15
|
+
* Wether to show a divider between header and content
|
|
16
|
+
*/
|
|
4
17
|
separator?: boolean;
|
|
5
18
|
}
|
|
6
|
-
declare let __VLS_typeProps: Props;
|
|
7
|
-
declare function close(): void;
|
|
8
|
-
type __VLS_PublicProps = {
|
|
9
|
-
modelValue?: boolean;
|
|
10
|
-
} & typeof __VLS_typeProps;
|
|
11
19
|
declare function __VLS_template(): {
|
|
20
|
+
attrs: Partial<{}>;
|
|
12
21
|
slots: {
|
|
13
22
|
header?(_: {
|
|
14
|
-
close:
|
|
23
|
+
close: () => void;
|
|
15
24
|
}): any;
|
|
16
25
|
default?(_: {
|
|
17
|
-
close:
|
|
26
|
+
close: () => void;
|
|
18
27
|
}): any;
|
|
19
28
|
footer?(_: {
|
|
20
|
-
close:
|
|
29
|
+
close: () => void;
|
|
21
30
|
}): any;
|
|
22
31
|
};
|
|
23
32
|
refs: {};
|
|
24
|
-
|
|
33
|
+
rootEl: any;
|
|
25
34
|
};
|
|
26
35
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
27
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
28
|
-
|
|
29
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
30
|
-
|
|
36
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
|
+
close: () => any;
|
|
38
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
39
|
+
onClose?: (() => any) | undefined;
|
|
31
40
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
32
41
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
42
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = Props;
|
|
2
2
|
interface Props {
|
|
3
3
|
width?: number;
|
|
4
4
|
/**
|
|
@@ -17,8 +17,9 @@ interface Props {
|
|
|
17
17
|
}
|
|
18
18
|
type __VLS_PublicProps = {
|
|
19
19
|
modelValue?: boolean;
|
|
20
|
-
} &
|
|
20
|
+
} & __VLS_Props;
|
|
21
21
|
declare function __VLS_template(): {
|
|
22
|
+
attrs: Partial<{}>;
|
|
22
23
|
slots: {
|
|
23
24
|
header?(_: {
|
|
24
25
|
mini: boolean;
|
|
@@ -46,20 +47,20 @@ declare function __VLS_template(): {
|
|
|
46
47
|
wrap: HTMLDivElement;
|
|
47
48
|
sidebar: HTMLElement;
|
|
48
49
|
};
|
|
49
|
-
|
|
50
|
+
rootEl: HTMLDivElement;
|
|
50
51
|
};
|
|
51
52
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
52
53
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
53
|
-
"update:modelValue": (
|
|
54
|
+
"update:modelValue": (value: boolean) => any;
|
|
54
55
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
55
|
-
"onUpdate:modelValue"?: ((
|
|
56
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
56
57
|
}>, {
|
|
57
58
|
width: number;
|
|
58
59
|
mini: boolean;
|
|
59
60
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
60
61
|
wrap: HTMLDivElement;
|
|
61
62
|
sidebar: HTMLElement;
|
|
62
|
-
},
|
|
63
|
+
}, HTMLDivElement>;
|
|
63
64
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
64
65
|
export default _default;
|
|
65
66
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,5 +4,5 @@ interface Props {
|
|
|
4
4
|
height?: string | number;
|
|
5
5
|
circle?: boolean;
|
|
6
6
|
}
|
|
7
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
7
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
8
8
|
export default _default;
|
|
@@ -2,5 +2,5 @@ import { Sizes } from '../../shared/types';
|
|
|
2
2
|
interface Props {
|
|
3
3
|
size?: Sizes;
|
|
4
4
|
}
|
|
5
|
-
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
5
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6
6
|
export default _default;
|
|
@@ -3,21 +3,22 @@ interface Props {
|
|
|
3
3
|
disabled?: boolean;
|
|
4
4
|
accent?: boolean;
|
|
5
5
|
}
|
|
6
|
-
|
|
6
|
+
type __VLS_Props = Props;
|
|
7
7
|
type __VLS_PublicProps = {
|
|
8
8
|
modelValue?: boolean;
|
|
9
|
-
} &
|
|
9
|
+
} & __VLS_Props;
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
|
+
attrs: Partial<{}>;
|
|
11
12
|
slots: Readonly<Record<string, any>> & Record<string, any>;
|
|
12
13
|
refs: {};
|
|
13
|
-
|
|
14
|
+
rootEl: HTMLDivElement;
|
|
14
15
|
};
|
|
15
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
17
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
-
"update:modelValue": (
|
|
18
|
+
"update:modelValue": (value: boolean) => any;
|
|
18
19
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
-
"onUpdate:modelValue"?: ((
|
|
20
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
20
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
21
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
22
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
23
|
export default _default;
|
|
23
24
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
context?(_: {}): any;
|
|
@@ -6,10 +7,12 @@ declare function __VLS_template(): {
|
|
|
6
7
|
refs: {
|
|
7
8
|
context: HTMLDivElement;
|
|
8
9
|
};
|
|
9
|
-
|
|
10
|
+
rootEl: HTMLTableCellElement;
|
|
10
11
|
};
|
|
11
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
14
|
+
context: HTMLDivElement;
|
|
15
|
+
}, HTMLTableCellElement>;
|
|
13
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
14
17
|
export default _default;
|
|
15
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -12,14 +12,15 @@ interface Props {
|
|
|
12
12
|
sort?: boolean;
|
|
13
13
|
}
|
|
14
14
|
declare function __VLS_template(): {
|
|
15
|
+
attrs: Partial<{}>;
|
|
15
16
|
slots: {
|
|
16
17
|
default?(_: {}): any;
|
|
17
18
|
};
|
|
18
19
|
refs: {};
|
|
19
|
-
|
|
20
|
+
rootEl: HTMLTableCellElement;
|
|
20
21
|
};
|
|
21
22
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
22
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
23
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
23
24
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
25
|
export default _default;
|
|
25
26
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -21,16 +21,17 @@ interface Props {
|
|
|
21
21
|
outerBorder?: boolean;
|
|
22
22
|
}
|
|
23
23
|
declare function __VLS_template(): {
|
|
24
|
+
attrs: Partial<{}>;
|
|
24
25
|
slots: {
|
|
25
26
|
header?(_: {}): any;
|
|
26
27
|
body?(_: {}): any;
|
|
27
28
|
pagination?(_: {}): any;
|
|
28
29
|
};
|
|
29
30
|
refs: {};
|
|
30
|
-
|
|
31
|
+
rootEl: HTMLDivElement;
|
|
31
32
|
};
|
|
32
33
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
33
|
-
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
34
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
34
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
35
36
|
export default _default;
|
|
36
37
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -36,11 +36,11 @@ export declare function defineTable<const Dataset extends any[]>(computedDataset
|
|
|
36
36
|
headers: Readonly<Ref<readonly {
|
|
37
37
|
readonly label: string;
|
|
38
38
|
readonly sortToggle: () => void;
|
|
39
|
-
readonly sortKey?:
|
|
39
|
+
readonly sortKey?: "asc" | "desc" | undefined;
|
|
40
40
|
}[], readonly {
|
|
41
41
|
readonly label: string;
|
|
42
42
|
readonly sortToggle: () => void;
|
|
43
|
-
readonly sortKey?:
|
|
43
|
+
readonly sortKey?: "asc" | "desc" | undefined;
|
|
44
44
|
}[]>>;
|
|
45
45
|
pagination: ComputedRef<import('../Pagination/pagination').Pagination>;
|
|
46
46
|
canPrevPage: ComputedRef<boolean>;
|
|
@@ -4,14 +4,15 @@ export interface TabProps {
|
|
|
4
4
|
icon?: string;
|
|
5
5
|
}
|
|
6
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
7
8
|
slots: {
|
|
8
9
|
default?(_: {}): any;
|
|
9
10
|
};
|
|
10
11
|
refs: {};
|
|
11
|
-
|
|
12
|
+
rootEl: HTMLButtonElement;
|
|
12
13
|
};
|
|
13
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: import('vue').DefineComponent<TabProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TabProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<TabProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TabProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
15
16
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
17
|
export default _default;
|
|
17
18
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -5,11 +5,12 @@ interface Props {
|
|
|
5
5
|
expand?: boolean;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
}
|
|
8
|
-
|
|
8
|
+
type __VLS_Props = Props;
|
|
9
9
|
type __VLS_PublicProps = {
|
|
10
10
|
modelValue?: any;
|
|
11
|
-
} &
|
|
11
|
+
} & __VLS_Props;
|
|
12
12
|
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
13
14
|
slots: Readonly<{
|
|
14
15
|
default: () => Array<VNode & {
|
|
15
16
|
props: TabProps;
|
|
@@ -27,17 +28,17 @@ declare function __VLS_template(): {
|
|
|
27
28
|
tabs: HTMLDivElement;
|
|
28
29
|
underline: HTMLDivElement;
|
|
29
30
|
};
|
|
30
|
-
|
|
31
|
+
rootEl: HTMLDivElement;
|
|
31
32
|
};
|
|
32
33
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
33
34
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
|
-
"update:modelValue": (
|
|
35
|
+
"update:modelValue": (value: any) => any;
|
|
35
36
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
36
|
-
"onUpdate:modelValue"?: ((
|
|
37
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
37
38
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
38
39
|
tabs: HTMLDivElement;
|
|
39
40
|
underline: HTMLDivElement;
|
|
40
|
-
},
|
|
41
|
+
}, HTMLDivElement>;
|
|
41
42
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
42
43
|
export default _default;
|
|
43
44
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -49,7 +49,7 @@ export declare const toasts: import('vue').Ref<Map<number, {
|
|
|
49
49
|
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
50
50
|
}) => any) | undefined;
|
|
51
51
|
name?: string | undefined;
|
|
52
|
-
template?:
|
|
52
|
+
template?: string | object | undefined;
|
|
53
53
|
render?: Function | undefined;
|
|
54
54
|
components?: Record<string, Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
55
55
|
directives?: Record<string, import('vue').Directive<any, any, string, string>> | undefined;
|
|
@@ -60,7 +60,7 @@ export declare const toasts: import('vue').Ref<Map<number, {
|
|
|
60
60
|
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
61
61
|
compilerOptions?: {
|
|
62
62
|
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
63
|
-
whitespace?:
|
|
63
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
64
64
|
comments?: boolean | undefined;
|
|
65
65
|
delimiters?: [string, string] | undefined;
|
|
66
66
|
} | undefined;
|
|
@@ -112,7 +112,7 @@ export declare const toasts: import('vue').Ref<Map<number, {
|
|
|
112
112
|
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
113
113
|
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
114
114
|
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
115
|
-
MODE?:
|
|
115
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
116
116
|
} | undefined;
|
|
117
117
|
data?: ((this: any, vm: any) => any) | undefined;
|
|
118
118
|
computed?: import('vue').ComputedOptions | undefined;
|
|
@@ -179,7 +179,7 @@ export declare const toasts: import('vue').Ref<Map<number, {
|
|
|
179
179
|
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
180
180
|
}) => any) | undefined;
|
|
181
181
|
name?: string | undefined;
|
|
182
|
-
template?:
|
|
182
|
+
template?: string | object | undefined;
|
|
183
183
|
render?: Function | undefined;
|
|
184
184
|
components?: Record<string, Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
185
185
|
directives?: Record<string, import('vue').Directive<any, any, string, string>> | undefined;
|
|
@@ -190,7 +190,7 @@ export declare const toasts: import('vue').Ref<Map<number, {
|
|
|
190
190
|
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
191
191
|
compilerOptions?: {
|
|
192
192
|
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
193
|
-
whitespace?:
|
|
193
|
+
whitespace?: "preserve" | "condense" | undefined;
|
|
194
194
|
comments?: boolean | undefined;
|
|
195
195
|
delimiters?: [string, string] | undefined;
|
|
196
196
|
} | undefined;
|
|
@@ -242,7 +242,7 @@ export declare const toasts: import('vue').Ref<Map<number, {
|
|
|
242
242
|
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
243
243
|
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
244
244
|
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
245
|
-
MODE?:
|
|
245
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
246
246
|
} | undefined;
|
|
247
247
|
data?: ((this: any, vm: any) => any) | undefined;
|
|
248
248
|
computed?: import('vue').ComputedOptions | undefined;
|
|
@@ -10,6 +10,7 @@ interface Props {
|
|
|
10
10
|
delay?: number;
|
|
11
11
|
}
|
|
12
12
|
declare function __VLS_template(): {
|
|
13
|
+
attrs: Partial<{}>;
|
|
13
14
|
slots: {
|
|
14
15
|
default?(_: {}): any;
|
|
15
16
|
tooltip?(_: {}): any;
|
|
@@ -17,7 +18,7 @@ declare function __VLS_template(): {
|
|
|
17
18
|
refs: {
|
|
18
19
|
popoutAnchor: HTMLDivElement;
|
|
19
20
|
};
|
|
20
|
-
|
|
21
|
+
rootEl: any;
|
|
21
22
|
};
|
|
22
23
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
24
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
};
|
|
5
6
|
refs: {};
|
|
6
|
-
|
|
7
|
+
rootEl: HTMLDivElement;
|
|
7
8
|
};
|
|
8
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
10
|
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
10
11
|
close: () => any;
|
|
11
12
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
12
13
|
onClose?: (() => any) | undefined;
|
|
13
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
14
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
14
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
16
|
export default _default;
|
|
16
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|