@dolanske/vui 1.1.1 → 1.1.2
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 +1 -1
- package/package.json +1 -1
- package/src/components/Card/card.scss +2 -0
- package/src/components/Divider/Divider.vue +1 -7
- package/src/components/Divider/divider.scss +9 -7
- package/src/components/Grid/Grid.vue +5 -0
- package/src/components/Select/Select.vue +0 -1
- package/src/components/Select/select.scss +4 -0
- package/src/components/Spinner/spinner.scss +1 -1
- package/src/examples/ExampleTabs.vue +17 -0
- package/src/style/layout.scss +3 -0
- package/src/vite-env.d.ts +1 -1
- package/dist/components/Accordion/Accordion.vue.d.ts +0 -47
- package/dist/components/Accordion/AccordionGroup.vue.d.ts +0 -35
- package/dist/components/Alert/Alert.vue.d.ts +0 -36
- package/dist/components/Avatar/Avatar.vue.d.ts +0 -25
- package/dist/components/Badge/Badge.vue.d.ts +0 -22
- package/dist/components/Breadcrumbs/BreadcrumbItem.vue.d.ts +0 -22
- package/dist/components/Breadcrumbs/Breadcrumbs.vue.d.ts +0 -28
- package/dist/components/Button/Button.vue.d.ts +0 -32
- package/dist/components/ButtonGroup/ButtonGroup.vue.d.ts +0 -22
- package/dist/components/Calendar/Calendar.vue.d.ts +0 -27
- package/dist/components/Card/Card.vue.d.ts +0 -26
- package/dist/components/Checkbox/Checkbox.vue.d.ts +0 -33
- package/dist/components/CopyClipboard/CopyClipboard.vue.d.ts +0 -41
- package/dist/components/Divider/Divider.vue.d.ts +0 -23
- package/dist/components/Drawer/Drawer.vue.d.ts +0 -53
- package/dist/components/Dropdown/Dropdown.vue.d.ts +0 -183
- package/dist/components/Dropdown/DropdownItem.vue.d.ts +0 -23
- package/dist/components/Dropdown/DropdownTitle.vue.d.ts +0 -21
- package/dist/components/Flex/Flex.vue.d.ts +0 -41
- package/dist/components/Grid/Grid.vue.d.ts +0 -33
- package/dist/components/Input/Color.vue.d.ts +0 -11
- package/dist/components/Input/Counter.vue.d.ts +0 -19
- package/dist/components/Input/Dropzone.vue.d.ts +0 -193
- package/dist/components/Input/File.vue.d.ts +0 -8
- package/dist/components/Input/Input.vue.d.ts +0 -56
- package/dist/components/Input/Password.vue.d.ts +0 -6
- package/dist/components/Input/Textarea.vue.d.ts +0 -31
- package/dist/components/Kbd/Kbd.vue.d.ts +0 -23
- package/dist/components/Kbd/KbdGroup.vue.d.ts +0 -24
- package/dist/components/Modal/Confirm.vue.d.ts +0 -43
- package/dist/components/Modal/Modal.vue.d.ts +0 -58
- package/dist/components/OTP/OTP.vue.d.ts +0 -44
- package/dist/components/OTP/OTPItem.vue.d.ts +0 -5
- package/dist/components/Pagination/Pagination.vue.d.ts +0 -46
- package/dist/components/Pagination/pagination.d.ts +0 -12
- package/dist/components/Popout/Popout.vue.d.ts +0 -42
- package/dist/components/Progress/Progress.vue.d.ts +0 -33
- package/dist/components/Radio/Radio.vue.d.ts +0 -29
- package/dist/components/Radio/RadioGroup.vue.d.ts +0 -32
- package/dist/components/Select/Select.vue.d.ts +0 -35
- package/dist/components/Sheet/Sheet.vue.d.ts +0 -47
- package/dist/components/Sidebar/Sidebar.vue.d.ts +0 -70
- package/dist/components/Skeleton/Skeleton.vue.d.ts +0 -8
- package/dist/components/Spinner/Spinner.vue.d.ts +0 -6
- package/dist/components/Switch/Switch.vue.d.ts +0 -28
- package/dist/components/Table/Cell.vue.d.ts +0 -22
- package/dist/components/Table/Head.vue.d.ts +0 -30
- package/dist/components/Table/Root.vue.d.ts +0 -41
- package/dist/components/Table/SelectAll.vue.d.ts +0 -2
- package/dist/components/Table/SelectRow.vue.d.ts +0 -6
- package/dist/components/Table/index.d.ts +0 -6
- package/dist/components/Table/table.d.ts +0 -68
- package/dist/components/Tabs/Tab.vue.d.ts +0 -22
- package/dist/components/Tabs/Tabs.vue.d.ts +0 -48
- package/dist/components/Toast/Toasts.vue.d.ts +0 -2
- package/dist/components/Toast/toast.d.ts +0 -287
- package/dist/components/Tooltip/Tooltip.vue.d.ts +0 -33
- package/dist/index.d.ts +0 -56
- package/dist/internal/Backdrop/Backdrop.vue.d.ts +0 -21
- package/dist/shared/helpers.d.ts +0 -32
- package/dist/shared/theme.d.ts +0 -3
- package/dist/shared/types.d.ts +0 -24
- package/dist/vui.css +0 -1
- package/dist/vui.js +0 -16130
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { Header } from './table';
|
|
2
|
-
interface Props {
|
|
3
|
-
/**
|
|
4
|
-
* Main header data. This can be empty in case we are just adding an empty
|
|
5
|
-
* padder. It is recommended to just use <th> instead, but this shouldn't fail
|
|
6
|
-
* anyway
|
|
7
|
-
*/
|
|
8
|
-
header?: Header;
|
|
9
|
-
/**
|
|
10
|
-
* Enable sorting on this column
|
|
11
|
-
*/
|
|
12
|
-
sort?: boolean;
|
|
13
|
-
}
|
|
14
|
-
declare function __VLS_template(): {
|
|
15
|
-
attrs: Partial<{}>;
|
|
16
|
-
slots: {
|
|
17
|
-
default?(_: {}): any;
|
|
18
|
-
};
|
|
19
|
-
refs: {};
|
|
20
|
-
rootEl: HTMLTableCellElement;
|
|
21
|
-
};
|
|
22
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
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>;
|
|
24
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
-
export default _default;
|
|
26
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
-
new (): {
|
|
28
|
-
$slots: S;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
interface Props {
|
|
2
|
-
/**
|
|
3
|
-
* Sets the `table-layout` property
|
|
4
|
-
*/
|
|
5
|
-
fixed?: boolean;
|
|
6
|
-
/**
|
|
7
|
-
* Table cells with content overflowing on new line will be cropped
|
|
8
|
-
*/
|
|
9
|
-
nowrap?: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Add a visual separator between each row
|
|
12
|
-
*/
|
|
13
|
-
separateRows?: boolean;
|
|
14
|
-
/**
|
|
15
|
-
* Add a visual separator between each cell
|
|
16
|
-
*/
|
|
17
|
-
separateCells?: boolean;
|
|
18
|
-
/**
|
|
19
|
-
* Wrap table with a border
|
|
20
|
-
*/
|
|
21
|
-
outerBorder?: boolean;
|
|
22
|
-
}
|
|
23
|
-
declare function __VLS_template(): {
|
|
24
|
-
attrs: Partial<{}>;
|
|
25
|
-
slots: {
|
|
26
|
-
header?(_: {}): any;
|
|
27
|
-
body?(_: {}): any;
|
|
28
|
-
pagination?(_: {}): any;
|
|
29
|
-
};
|
|
30
|
-
refs: {};
|
|
31
|
-
rootEl: HTMLDivElement;
|
|
32
|
-
};
|
|
33
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
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>;
|
|
35
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
36
|
-
export default _default;
|
|
37
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
-
new (): {
|
|
39
|
-
$slots: S;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { BaseRow } from './table';
|
|
2
|
-
interface Props {
|
|
3
|
-
row: BaseRow;
|
|
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, {}, any>;
|
|
6
|
-
export default _default;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { default as Cell } from './Cell.vue';
|
|
2
|
-
import { default as Head } from './Head.vue';
|
|
3
|
-
import { default as Root } from './Root.vue';
|
|
4
|
-
import { default as SelectAll } from './SelectAll.vue';
|
|
5
|
-
import { default as SelectRow } from './SelectRow.vue';
|
|
6
|
-
export { Cell, Head, Root, SelectAll, SelectRow };
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { ComputedRef, InjectionKey, MaybeRefOrGetter, Ref } from 'vue';
|
|
2
|
-
import { DeepRequired } from '../../shared/types';
|
|
3
|
-
export type BaseRow = Record<string, string | number>;
|
|
4
|
-
export interface TableSelectionProvide {
|
|
5
|
-
selectedRows: Ref<Set<BaseRow>>;
|
|
6
|
-
selectRow: (row: BaseRow) => void;
|
|
7
|
-
selectAllRows: () => void;
|
|
8
|
-
enabled: ComputedRef<boolean>;
|
|
9
|
-
isSelectedAll: ComputedRef<boolean>;
|
|
10
|
-
}
|
|
11
|
-
export declare const TableSelectionProvideSymbol: InjectionKey<TableSelectionProvide>;
|
|
12
|
-
export interface Header {
|
|
13
|
-
label: string;
|
|
14
|
-
sortToggle: () => void;
|
|
15
|
-
sortKey?: 'asc' | 'desc';
|
|
16
|
-
}
|
|
17
|
-
interface TableOptionsInput {
|
|
18
|
-
pagination?: {
|
|
19
|
-
enabled?: boolean;
|
|
20
|
-
perPage?: number;
|
|
21
|
-
maxPages?: number;
|
|
22
|
-
};
|
|
23
|
-
select?: boolean;
|
|
24
|
-
}
|
|
25
|
-
export declare function defineTable<const Dataset extends any[]>(computedDataset: MaybeRefOrGetter<Dataset>, tableOptions?: TableOptionsInput): {
|
|
26
|
-
setSort: (key: keyof Dataset[number], type?: "asc" | "desc" | "toggle") => void;
|
|
27
|
-
clearSort: () => void;
|
|
28
|
-
search: Ref<string | undefined, string | undefined>;
|
|
29
|
-
rows: Readonly<Ref<import('vue').DeepReadonly<Dataset>, import('vue').DeepReadonly<Dataset>>>;
|
|
30
|
-
allRows: Readonly<Ref<import('vue').DeepReadonly<Dataset>, import('vue').DeepReadonly<Dataset>>>;
|
|
31
|
-
selectedRows: Readonly<Ref<ReadonlySet<{
|
|
32
|
-
readonly [x: string]: string | number;
|
|
33
|
-
}>, ReadonlySet<{
|
|
34
|
-
readonly [x: string]: string | number;
|
|
35
|
-
}>>>;
|
|
36
|
-
headers: Readonly<Ref<readonly {
|
|
37
|
-
readonly label: string;
|
|
38
|
-
readonly sortToggle: () => void;
|
|
39
|
-
readonly sortKey?: "asc" | "desc" | undefined;
|
|
40
|
-
}[], readonly {
|
|
41
|
-
readonly label: string;
|
|
42
|
-
readonly sortToggle: () => void;
|
|
43
|
-
readonly sortKey?: "asc" | "desc" | undefined;
|
|
44
|
-
}[]>>;
|
|
45
|
-
pagination: ComputedRef<import('../Pagination/pagination').Pagination>;
|
|
46
|
-
canPrevPage: ComputedRef<boolean>;
|
|
47
|
-
canNextPage: ComputedRef<boolean>;
|
|
48
|
-
setPage: (page: number) => void;
|
|
49
|
-
options: Ref<{
|
|
50
|
-
pagination: {
|
|
51
|
-
enabled: boolean;
|
|
52
|
-
perPage: number;
|
|
53
|
-
maxPages: number;
|
|
54
|
-
};
|
|
55
|
-
select: boolean;
|
|
56
|
-
}, DeepRequired<TableOptionsInput> | {
|
|
57
|
-
pagination: {
|
|
58
|
-
enabled: boolean;
|
|
59
|
-
perPage: number;
|
|
60
|
-
maxPages: number;
|
|
61
|
-
};
|
|
62
|
-
select: boolean;
|
|
63
|
-
}>;
|
|
64
|
-
selectRow: (row: Dataset[number]) => void;
|
|
65
|
-
selectAllRows: () => void;
|
|
66
|
-
isSelectedAll: ComputedRef<boolean>;
|
|
67
|
-
};
|
|
68
|
-
export {};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
export interface TabProps {
|
|
2
|
-
disabled?: boolean;
|
|
3
|
-
label?: string;
|
|
4
|
-
icon?: string;
|
|
5
|
-
}
|
|
6
|
-
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
slots: {
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: HTMLButtonElement;
|
|
13
|
-
};
|
|
14
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
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>;
|
|
16
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
-
export default _default;
|
|
18
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
-
new (): {
|
|
20
|
-
$slots: S;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { VNode } from 'vue';
|
|
2
|
-
import { TabProps } from './Tab.vue';
|
|
3
|
-
interface Props {
|
|
4
|
-
variant?: 'default' | 'filled';
|
|
5
|
-
expand?: boolean;
|
|
6
|
-
disabled?: boolean;
|
|
7
|
-
}
|
|
8
|
-
type __VLS_Props = Props;
|
|
9
|
-
type __VLS_PublicProps = {
|
|
10
|
-
modelValue?: any;
|
|
11
|
-
} & __VLS_Props;
|
|
12
|
-
declare function __VLS_template(): {
|
|
13
|
-
attrs: Partial<{}>;
|
|
14
|
-
slots: Readonly<{
|
|
15
|
-
default: () => Array<VNode & {
|
|
16
|
-
props: TabProps;
|
|
17
|
-
}>;
|
|
18
|
-
start: unknown;
|
|
19
|
-
end: unknown;
|
|
20
|
-
}> & {
|
|
21
|
-
default: () => Array<VNode & {
|
|
22
|
-
props: TabProps;
|
|
23
|
-
}>;
|
|
24
|
-
start: unknown;
|
|
25
|
-
end: unknown;
|
|
26
|
-
};
|
|
27
|
-
refs: {
|
|
28
|
-
tabs: HTMLDivElement;
|
|
29
|
-
underline: HTMLDivElement;
|
|
30
|
-
};
|
|
31
|
-
rootEl: HTMLDivElement;
|
|
32
|
-
};
|
|
33
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
34
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
|
-
"update:modelValue": (value: any) => any;
|
|
36
|
-
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
37
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
38
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
39
|
-
tabs: HTMLDivElement;
|
|
40
|
-
underline: HTMLDivElement;
|
|
41
|
-
}, HTMLDivElement>;
|
|
42
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
43
|
-
export default _default;
|
|
44
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
45
|
-
new (): {
|
|
46
|
-
$slots: S;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|
|
@@ -1,287 +0,0 @@
|
|
|
1
|
-
import { Component } from 'vue';
|
|
2
|
-
interface ToastAction {
|
|
3
|
-
label: string;
|
|
4
|
-
handler: (toastId: number) => void;
|
|
5
|
-
}
|
|
6
|
-
interface ToastOptions {
|
|
7
|
-
persist?: boolean;
|
|
8
|
-
timeout?: number;
|
|
9
|
-
action?: ToastAction;
|
|
10
|
-
description?: string;
|
|
11
|
-
body?: Component;
|
|
12
|
-
bodyProps?: object;
|
|
13
|
-
}
|
|
14
|
-
interface Toast {
|
|
15
|
-
id: number;
|
|
16
|
-
title: string;
|
|
17
|
-
action?: ToastAction;
|
|
18
|
-
createdAt: number;
|
|
19
|
-
expiresAt: number;
|
|
20
|
-
description?: string;
|
|
21
|
-
body?: Component;
|
|
22
|
-
bodyProps?: object;
|
|
23
|
-
}
|
|
24
|
-
export declare const toasts: import('vue').Ref<Map<number, {
|
|
25
|
-
id: number;
|
|
26
|
-
title: string;
|
|
27
|
-
action?: {
|
|
28
|
-
label: string;
|
|
29
|
-
handler: (toastId: number) => void;
|
|
30
|
-
} | undefined;
|
|
31
|
-
createdAt: number;
|
|
32
|
-
expiresAt: number;
|
|
33
|
-
description?: string | undefined;
|
|
34
|
-
body?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
35
|
-
new (...args: any[]): any;
|
|
36
|
-
__isFragment?: never;
|
|
37
|
-
__isTeleport?: never;
|
|
38
|
-
__isSuspense?: never;
|
|
39
|
-
} | {
|
|
40
|
-
[x: string]: any;
|
|
41
|
-
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
42
|
-
attrs: {
|
|
43
|
-
[x: string]: unknown;
|
|
44
|
-
};
|
|
45
|
-
slots: Readonly<{
|
|
46
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
47
|
-
}>;
|
|
48
|
-
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
49
|
-
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
50
|
-
}) => any) | undefined;
|
|
51
|
-
name?: string | undefined;
|
|
52
|
-
template?: string | object | undefined;
|
|
53
|
-
render?: Function | undefined;
|
|
54
|
-
components?: Record<string, Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
55
|
-
directives?: Record<string, import('vue').Directive<any, any, string, string>> | undefined;
|
|
56
|
-
inheritAttrs?: boolean | undefined;
|
|
57
|
-
emits?: any;
|
|
58
|
-
slots?: {} | undefined;
|
|
59
|
-
expose?: string[] | undefined;
|
|
60
|
-
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
61
|
-
compilerOptions?: {
|
|
62
|
-
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
63
|
-
whitespace?: "preserve" | "condense" | undefined;
|
|
64
|
-
comments?: boolean | undefined;
|
|
65
|
-
delimiters?: [string, string] | undefined;
|
|
66
|
-
} | undefined;
|
|
67
|
-
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
68
|
-
__isFragment?: never | undefined;
|
|
69
|
-
__isTeleport?: never | undefined;
|
|
70
|
-
__isSuspense?: never | undefined;
|
|
71
|
-
__defaults?: {} | undefined;
|
|
72
|
-
compatConfig?: {
|
|
73
|
-
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
74
|
-
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
75
|
-
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
76
|
-
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
77
|
-
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
78
|
-
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
79
|
-
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
80
|
-
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
81
|
-
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
82
|
-
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
83
|
-
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
84
|
-
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
85
|
-
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
86
|
-
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
87
|
-
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
88
|
-
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
89
|
-
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
90
|
-
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
91
|
-
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
92
|
-
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
93
|
-
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
94
|
-
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
95
|
-
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
96
|
-
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
97
|
-
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
98
|
-
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
99
|
-
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
100
|
-
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
101
|
-
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
102
|
-
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
103
|
-
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
104
|
-
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
105
|
-
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
106
|
-
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
107
|
-
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
108
|
-
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
109
|
-
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
110
|
-
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
111
|
-
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
112
|
-
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
113
|
-
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
114
|
-
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
115
|
-
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
116
|
-
} | undefined;
|
|
117
|
-
data?: ((this: any, vm: any) => any) | undefined;
|
|
118
|
-
computed?: import('vue').ComputedOptions | undefined;
|
|
119
|
-
methods?: import('vue').MethodOptions | undefined;
|
|
120
|
-
watch?: {
|
|
121
|
-
[x: string]: (string | import('vue').WatchCallback | ({
|
|
122
|
-
handler: import('vue').WatchCallback | string;
|
|
123
|
-
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
124
|
-
handler: import('vue').WatchCallback | string;
|
|
125
|
-
} & import('vue').WatchOptions<boolean>))[];
|
|
126
|
-
} | undefined;
|
|
127
|
-
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
128
|
-
inject?: {} | string[] | undefined;
|
|
129
|
-
filters?: Record<string, Function> | undefined;
|
|
130
|
-
mixins?: any[] | undefined;
|
|
131
|
-
extends?: any;
|
|
132
|
-
beforeCreate?: (() => void) | undefined;
|
|
133
|
-
created?: (() => void) | undefined;
|
|
134
|
-
beforeMount?: (() => void) | undefined;
|
|
135
|
-
mounted?: (() => void) | undefined;
|
|
136
|
-
beforeUpdate?: (() => void) | undefined;
|
|
137
|
-
updated?: (() => void) | undefined;
|
|
138
|
-
activated?: (() => void) | undefined;
|
|
139
|
-
deactivated?: (() => void) | undefined;
|
|
140
|
-
beforeDestroy?: (() => void) | undefined;
|
|
141
|
-
beforeUnmount?: (() => void) | undefined;
|
|
142
|
-
destroyed?: (() => void) | undefined;
|
|
143
|
-
unmounted?: (() => void) | undefined;
|
|
144
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
145
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
146
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
147
|
-
delimiters?: [string, string] | undefined;
|
|
148
|
-
__differentiator?: string | number | symbol | undefined;
|
|
149
|
-
__isBuiltIn?: boolean | undefined;
|
|
150
|
-
__file?: string | undefined;
|
|
151
|
-
__name?: string | undefined;
|
|
152
|
-
} | undefined;
|
|
153
|
-
bodyProps?: object | undefined;
|
|
154
|
-
}> & Omit<Map<number, Toast>, keyof Map<any, any>>, Map<number, Toast> | (Map<number, {
|
|
155
|
-
id: number;
|
|
156
|
-
title: string;
|
|
157
|
-
action?: {
|
|
158
|
-
label: string;
|
|
159
|
-
handler: (toastId: number) => void;
|
|
160
|
-
} | undefined;
|
|
161
|
-
createdAt: number;
|
|
162
|
-
expiresAt: number;
|
|
163
|
-
description?: string | undefined;
|
|
164
|
-
body?: import('vue').FunctionalComponent<any, {}, any, {}> | {
|
|
165
|
-
new (...args: any[]): any;
|
|
166
|
-
__isFragment?: never;
|
|
167
|
-
__isTeleport?: never;
|
|
168
|
-
__isSuspense?: never;
|
|
169
|
-
} | {
|
|
170
|
-
[x: string]: any;
|
|
171
|
-
setup?: ((this: void, props: import('@vue/shared').LooseRequired<any>, ctx: {
|
|
172
|
-
attrs: {
|
|
173
|
-
[x: string]: unknown;
|
|
174
|
-
};
|
|
175
|
-
slots: Readonly<{
|
|
176
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
177
|
-
}>;
|
|
178
|
-
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
179
|
-
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
180
|
-
}) => any) | undefined;
|
|
181
|
-
name?: string | undefined;
|
|
182
|
-
template?: string | object | undefined;
|
|
183
|
-
render?: Function | undefined;
|
|
184
|
-
components?: Record<string, Component<any, any, any, import('vue').ComputedOptions, import('vue').MethodOptions, {}, any>> | undefined;
|
|
185
|
-
directives?: Record<string, import('vue').Directive<any, any, string, string>> | undefined;
|
|
186
|
-
inheritAttrs?: boolean | undefined;
|
|
187
|
-
emits?: any;
|
|
188
|
-
slots?: {} | undefined;
|
|
189
|
-
expose?: string[] | undefined;
|
|
190
|
-
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
191
|
-
compilerOptions?: {
|
|
192
|
-
isCustomElement?: ((tag: string) => boolean) | undefined;
|
|
193
|
-
whitespace?: "preserve" | "condense" | undefined;
|
|
194
|
-
comments?: boolean | undefined;
|
|
195
|
-
delimiters?: [string, string] | undefined;
|
|
196
|
-
} | undefined;
|
|
197
|
-
call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
|
|
198
|
-
__isFragment?: never | undefined;
|
|
199
|
-
__isTeleport?: never | undefined;
|
|
200
|
-
__isSuspense?: never | undefined;
|
|
201
|
-
__defaults?: {} | undefined;
|
|
202
|
-
compatConfig?: {
|
|
203
|
-
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
204
|
-
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
205
|
-
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
206
|
-
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
207
|
-
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
208
|
-
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
209
|
-
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
210
|
-
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
211
|
-
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
212
|
-
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
213
|
-
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
214
|
-
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
215
|
-
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
216
|
-
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
217
|
-
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
218
|
-
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
219
|
-
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
220
|
-
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
221
|
-
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
222
|
-
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
223
|
-
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
224
|
-
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
225
|
-
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
226
|
-
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
227
|
-
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
228
|
-
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
229
|
-
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
230
|
-
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
231
|
-
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
232
|
-
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
233
|
-
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
234
|
-
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
235
|
-
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
236
|
-
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
237
|
-
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
238
|
-
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
239
|
-
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
240
|
-
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
241
|
-
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
242
|
-
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
243
|
-
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
244
|
-
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
245
|
-
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3) | undefined;
|
|
246
|
-
} | undefined;
|
|
247
|
-
data?: ((this: any, vm: any) => any) | undefined;
|
|
248
|
-
computed?: import('vue').ComputedOptions | undefined;
|
|
249
|
-
methods?: import('vue').MethodOptions | undefined;
|
|
250
|
-
watch?: {
|
|
251
|
-
[x: string]: (string | import('vue').WatchCallback | ({
|
|
252
|
-
handler: import('vue').WatchCallback | string;
|
|
253
|
-
} & import('vue').WatchOptions<boolean>)) | (string | import('vue').WatchCallback | ({
|
|
254
|
-
handler: import('vue').WatchCallback | string;
|
|
255
|
-
} & import('vue').WatchOptions<boolean>))[];
|
|
256
|
-
} | undefined;
|
|
257
|
-
provide?: import('vue').ComponentProvideOptions | undefined;
|
|
258
|
-
inject?: {} | string[] | undefined;
|
|
259
|
-
filters?: Record<string, Function> | undefined;
|
|
260
|
-
mixins?: any[] | undefined;
|
|
261
|
-
extends?: any;
|
|
262
|
-
beforeCreate?: (() => void) | undefined;
|
|
263
|
-
created?: (() => void) | undefined;
|
|
264
|
-
beforeMount?: (() => void) | undefined;
|
|
265
|
-
mounted?: (() => void) | undefined;
|
|
266
|
-
beforeUpdate?: (() => void) | undefined;
|
|
267
|
-
updated?: (() => void) | undefined;
|
|
268
|
-
activated?: (() => void) | undefined;
|
|
269
|
-
deactivated?: (() => void) | undefined;
|
|
270
|
-
beforeDestroy?: (() => void) | undefined;
|
|
271
|
-
beforeUnmount?: (() => void) | undefined;
|
|
272
|
-
destroyed?: (() => void) | undefined;
|
|
273
|
-
unmounted?: (() => void) | undefined;
|
|
274
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
275
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | undefined;
|
|
276
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
|
|
277
|
-
delimiters?: [string, string] | undefined;
|
|
278
|
-
__differentiator?: string | number | symbol | undefined;
|
|
279
|
-
__isBuiltIn?: boolean | undefined;
|
|
280
|
-
__file?: string | undefined;
|
|
281
|
-
__name?: string | undefined;
|
|
282
|
-
} | undefined;
|
|
283
|
-
bodyProps?: object | undefined;
|
|
284
|
-
}> & Omit<Map<number, Toast>, keyof Map<any, any>>)>;
|
|
285
|
-
export declare function pushToast(title: string, options?: ToastOptions): Toast;
|
|
286
|
-
export declare function removeToast(id: number): void;
|
|
287
|
-
export {};
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { Placement } from '../../shared/types';
|
|
2
|
-
interface Props {
|
|
3
|
-
/**
|
|
4
|
-
* Tooltip placement related to the anchor
|
|
5
|
-
*/
|
|
6
|
-
placement?: Placement;
|
|
7
|
-
/**
|
|
8
|
-
* Amount of time user should hover the anchor until the tooltip shows up
|
|
9
|
-
*/
|
|
10
|
-
delay?: number;
|
|
11
|
-
}
|
|
12
|
-
declare function __VLS_template(): {
|
|
13
|
-
attrs: Partial<{}>;
|
|
14
|
-
slots: {
|
|
15
|
-
default?(_: {}): any;
|
|
16
|
-
tooltip?(_: {}): any;
|
|
17
|
-
};
|
|
18
|
-
refs: {
|
|
19
|
-
popoutAnchor: HTMLDivElement;
|
|
20
|
-
};
|
|
21
|
-
rootEl: any;
|
|
22
|
-
};
|
|
23
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
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, {
|
|
25
|
-
popoutAnchor: HTMLDivElement;
|
|
26
|
-
}, any>;
|
|
27
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
|
-
export default _default;
|
|
29
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
30
|
-
new (): {
|
|
31
|
-
$slots: S;
|
|
32
|
-
};
|
|
33
|
-
};
|
package/dist/index.d.ts
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { default as Accordion } from './components/Accordion/Accordion.vue';
|
|
2
|
-
import { default as AccordionGroup } from './components/Accordion/AccordionGroup.vue';
|
|
3
|
-
import { default as Alert } from './components/Alert/Alert.vue';
|
|
4
|
-
import { default as Avatar } from './components/Avatar/Avatar.vue';
|
|
5
|
-
import { default as Badge } from './components/Badge/Badge.vue';
|
|
6
|
-
import { default as BreadcrumbItem } from './components/Breadcrumbs/BreadcrumbItem.vue';
|
|
7
|
-
import { default as Breadcrumbs } from './components/Breadcrumbs/Breadcrumbs.vue';
|
|
8
|
-
import { default as Button } from './components/Button/Button.vue';
|
|
9
|
-
import { default as ButtonGroup } from './components/ButtonGroup/ButtonGroup.vue';
|
|
10
|
-
import { default as Calendar } from './components/Calendar/Calendar.vue';
|
|
11
|
-
import { default as Card } from './components/Card/Card.vue';
|
|
12
|
-
import { default as Checkbox } from './components/Checkbox/Checkbox.vue';
|
|
13
|
-
import { default as CopyClipboard } from './components/CopyClipboard/CopyClipboard.vue';
|
|
14
|
-
import { default as Divider } from './components/Divider/Divider.vue';
|
|
15
|
-
import { default as Drawer } from './components/Drawer/Drawer.vue';
|
|
16
|
-
import { default as Dropdown } from './components/Dropdown/Dropdown.vue';
|
|
17
|
-
import { default as DropdownItem } from './components/Dropdown/DropdownItem.vue';
|
|
18
|
-
import { default as DropdownTitle } from './components/Dropdown/DropdownTitle.vue';
|
|
19
|
-
import { default as Flex } from './components/Flex/Flex.vue';
|
|
20
|
-
import { default as Grid } from './components/Grid/Grid.vue';
|
|
21
|
-
import { default as Color } from './components/Input/Color.vue';
|
|
22
|
-
import { default as Counter } from './components/Input/Counter.vue';
|
|
23
|
-
import { default as Dropzone } from './components/Input/Dropzone.vue';
|
|
24
|
-
import { default as File } from './components/Input/File.vue';
|
|
25
|
-
import { default as Input } from './components/Input/Input.vue';
|
|
26
|
-
import { default as Password } from './components/Input/Password.vue';
|
|
27
|
-
import { default as Textarea } from './components/Input/Textarea.vue';
|
|
28
|
-
import { default as Kbd } from './components/Kbd/Kbd.vue';
|
|
29
|
-
import { default as KbdGroup } from './components/Kbd/KbdGroup.vue';
|
|
30
|
-
import { default as Confirm } from './components/Modal/Confirm.vue';
|
|
31
|
-
import { default as Modal } from './components/Modal/Modal.vue';
|
|
32
|
-
import { default as OTP } from './components/OTP/OTP.vue';
|
|
33
|
-
import { default as OTPItem } from './components/OTP/OTPItem.vue';
|
|
34
|
-
import { paginate } from './components/Pagination/pagination';
|
|
35
|
-
import { default as Pagination } from './components/Pagination/Pagination.vue';
|
|
36
|
-
import { default as Popout } from './components/Popout/Popout.vue';
|
|
37
|
-
import { default as Progress } from './components/Progress/Progress.vue';
|
|
38
|
-
import { default as Radio } from './components/Radio/Radio.vue';
|
|
39
|
-
import { default as RadioGroup } from './components/Radio/RadioGroup.vue';
|
|
40
|
-
import { default as Select } from './components/Select/Select.vue';
|
|
41
|
-
import { default as Sheet } from './components/Sheet/Sheet.vue';
|
|
42
|
-
import { default as Sidebar } from './components/Sidebar/Sidebar.vue';
|
|
43
|
-
import { default as Skeleton } from './components/Skeleton/Skeleton.vue';
|
|
44
|
-
import { default as Spinner } from './components/Spinner/Spinner.vue';
|
|
45
|
-
import { default as Switch } from './components/Switch/Switch.vue';
|
|
46
|
-
import { defineTable } from './components/Table/table';
|
|
47
|
-
import { default as Tab } from './components/Tabs/Tab.vue';
|
|
48
|
-
import { default as Tabs } from './components/Tabs/Tabs.vue';
|
|
49
|
-
import { pushToast, removeToast } from './components/Toast/toast';
|
|
50
|
-
import { default as Toasts } from './components/Toast/Toasts.vue';
|
|
51
|
-
import { default as Tooltip } from './components/Tooltip/Tooltip.vue';
|
|
52
|
-
import { default as Backdrop } from './internal/Backdrop/Backdrop.vue';
|
|
53
|
-
import { searchString } from './shared/helpers';
|
|
54
|
-
import { setColorTheme, theme } from './shared/theme';
|
|
55
|
-
import * as Table from './components/Table';
|
|
56
|
-
export { Accordion, AccordionGroup, Alert, Avatar, Backdrop, Badge, BreadcrumbItem, Breadcrumbs, Button, ButtonGroup, Calendar, Card, Checkbox, Color, Confirm, CopyClipboard, Counter, defineTable, Divider, Drawer, Dropdown, DropdownItem, DropdownTitle, Dropzone, File, Flex, Grid, Input, Kbd, KbdGroup, Modal, OTP, OTPItem, paginate, Pagination, Password, Popout, Progress, pushToast, Radio, RadioGroup, removeToast, searchString, Select, setColorTheme, Sheet, Sidebar, Skeleton, Spinner, Switch, Tab, Table, Tabs, Textarea, theme, Toasts, Tooltip, };
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
declare function __VLS_template(): {
|
|
2
|
-
attrs: Partial<{}>;
|
|
3
|
-
slots: {
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {};
|
|
7
|
-
rootEl: HTMLDivElement;
|
|
8
|
-
};
|
|
9
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
11
|
-
close: () => any;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
13
|
-
onClose?: (() => any) | undefined;
|
|
14
|
-
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
15
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
|
-
export default _default;
|
|
17
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
-
new (): {
|
|
19
|
-
$slots: S;
|
|
20
|
-
};
|
|
21
|
-
};
|