@halo-dev/components 2.21.0 → 2.22.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/dist/components/alert/Alert.vue.d.ts +13 -16
- package/dist/components/alert/index.d.ts +1 -0
- package/dist/components/alert/types.d.ts +1 -0
- package/dist/components/avatar/Avatar.vue.d.ts +3 -3
- package/dist/components/avatar/AvatarGroup.vue.d.ts +5 -4
- package/dist/components/avatar/index.d.ts +1 -0
- package/dist/components/avatar/{interface.d.ts → types.d.ts} +2 -2
- package/dist/components/button/Button.vue.d.ts +18 -25
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/button/types.d.ts +2 -0
- package/dist/components/card/Card.vue.d.ts +7 -8
- package/dist/components/description/Description.vue.d.ts +3 -2
- package/dist/components/description/DescriptionItem.vue.d.ts +9 -11
- package/dist/components/dialog/Dialog.vue.d.ts +3 -3
- package/dist/components/dialog/dialog-manager.d.ts +1 -1
- package/dist/components/dialog/index.d.ts +2 -1
- package/dist/components/dialog/{interface.d.ts → types.d.ts} +3 -3
- package/dist/components/dropdown/DropdownDivider.vue.d.ts +1 -1
- package/dist/components/dropdown/DropdownItem.vue.d.ts +12 -14
- package/dist/components/dropdown/index.d.ts +1 -3
- package/dist/components/empty/Empty.vue.d.ts +8 -10
- package/dist/components/entity/Entity.vue.d.ts +6 -6
- package/dist/components/entity/EntityContainer.vue.d.ts +3 -2
- package/dist/components/entity/EntityField.vue.d.ts +13 -14
- package/dist/components/header/PageHeader.vue.d.ts +6 -6
- package/dist/components/loading/Loading.vue.d.ts +1 -1
- package/dist/components/menu/Menu.vue.d.ts +6 -6
- package/dist/components/menu/MenuItem.vue.d.ts +10 -12
- package/dist/components/menu/MenuLabel.vue.d.ts +3 -2
- package/dist/components/modal/Modal.vue.d.ts +19 -24
- package/dist/components/pagination/Pagination.vue.d.ts +5 -13
- package/dist/components/space/Space.vue.d.ts +13 -15
- package/dist/components/space/index.d.ts +1 -0
- package/dist/components/space/types.d.ts +4 -0
- package/dist/components/status/StatusDot.vue.d.ts +11 -13
- package/dist/components/status/index.d.ts +1 -0
- package/dist/components/status/types.d.ts +1 -0
- package/dist/components/switch/Switch.vue.d.ts +10 -12
- package/dist/components/tabs/TabItem.vue.d.ts +7 -8
- package/dist/components/tabs/Tabbar.vue.d.ts +14 -16
- package/dist/components/tabs/Tabs.vue.d.ts +15 -19
- package/dist/components/tabs/index.d.ts +2 -1
- package/dist/components/tabs/types.d.ts +6 -0
- package/dist/components/tag/Tag.vue.d.ts +11 -13
- package/dist/components/tag/index.d.ts +1 -0
- package/dist/components/tag/types.d.ts +1 -0
- package/dist/components/toast/Toast.vue.d.ts +15 -21
- package/dist/components/toast/index.d.ts +1 -0
- package/dist/components/toast/toast-manager.d.ts +1 -1
- package/dist/components/toast/{interface.d.ts → types.d.ts} +2 -2
- package/dist/components/tooltip/index.d.ts +1 -1
- package/dist/index.es.js +5777 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.iife.js +2 -0
- package/dist/index.iife.js.map +1 -0
- package/dist/style.css +3 -1
- package/package.json +38 -46
- package/dist/components/alert/Alert.stories.d.ts +0 -10
- package/dist/components/alert/interface.d.ts +0 -1
- package/dist/components/avatar/Avatar.stories.d.ts +0 -8
- package/dist/components/avatar/AvatarGroup.stories.d.ts +0 -7
- package/dist/components/button/Button.stories.d.ts +0 -9
- package/dist/components/button/interface.d.ts +0 -2
- package/dist/components/card/Card.stories.d.ts +0 -6
- package/dist/components/dialog/Dialog.stories.d.ts +0 -8
- package/dist/components/dropdown/Draopdown.stories.d.ts +0 -6
- package/dist/components/dropdown/Dropdown.vue.d.ts +0 -22
- package/dist/components/dropdown/symbols.d.ts +0 -4
- package/dist/components/empty/Empty.stories.d.ts +0 -6
- package/dist/components/loading/Loading.stories.d.ts +0 -6
- package/dist/components/menu/Menu.stories.d.ts +0 -6
- package/dist/components/modal/Modal.stories.d.ts +0 -6
- package/dist/components/pagination/Pagination.stories.d.ts +0 -6
- package/dist/components/space/Space.stories.d.ts +0 -6
- package/dist/components/space/interface.d.ts +0 -4
- package/dist/components/status/StatusDot.stories.d.ts +0 -9
- package/dist/components/status/interface.d.ts +0 -1
- package/dist/components/switch/Switch.stories.d.ts +0 -6
- package/dist/components/tabs/Tabbar.stories.d.ts +0 -8
- package/dist/components/tabs/Tabs.stories.d.ts +0 -8
- package/dist/components/tabs/interface.d.ts +0 -6
- package/dist/components/tag/Tag.stories.d.ts +0 -10
- package/dist/components/tag/interface.d.ts +0 -1
- package/dist/halo-components.es.js +0 -6434
- package/dist/halo-components.es.js.map +0 -1
- package/dist/halo-components.iife.js +0 -10
- package/dist/halo-components.iife.js.map +0 -1
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AlertType } from './types';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
type?: AlertType;
|
|
4
|
+
title?: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
closable?: boolean;
|
|
7
|
+
};
|
|
2
8
|
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
3
10
|
slots: {
|
|
4
11
|
icon?(_: {}): any;
|
|
5
12
|
title?(_: {}): any;
|
|
@@ -7,29 +14,19 @@ declare function __VLS_template(): {
|
|
|
7
14
|
actions?(_: {}): any;
|
|
8
15
|
};
|
|
9
16
|
refs: {};
|
|
10
|
-
|
|
17
|
+
rootEl: HTMLDivElement;
|
|
11
18
|
};
|
|
12
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
13
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
14
|
-
type?: Type;
|
|
15
|
-
title?: string;
|
|
16
|
-
description?: string;
|
|
17
|
-
closable?: boolean;
|
|
18
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
19
21
|
close: () => any;
|
|
20
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
21
|
-
type?: Type;
|
|
22
|
-
title?: string;
|
|
23
|
-
description?: string;
|
|
24
|
-
closable?: boolean;
|
|
25
|
-
}> & Readonly<{
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
26
23
|
onClose?: (() => any) | undefined;
|
|
27
24
|
}>, {
|
|
28
|
-
type:
|
|
25
|
+
type: AlertType;
|
|
29
26
|
title: string;
|
|
30
27
|
description: string;
|
|
31
28
|
closable: boolean;
|
|
32
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
33
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
34
31
|
export default _default;
|
|
35
32
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type AlertType = "default" | "success" | "info" | "warning" | "error";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { AvatarProps } from './
|
|
1
|
+
import { AvatarProps } from './types';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<AvatarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AvatarProps> & Readonly<{}>, {
|
|
3
3
|
circle: boolean;
|
|
4
|
-
size: import('./
|
|
5
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
4
|
+
size: import('./types').AvatarSize;
|
|
5
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
6
6
|
export default _default;
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { AvatarGroupProps } from './
|
|
1
|
+
import { AvatarGroupProps } from './types';
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
3
4
|
slots: {
|
|
4
5
|
default?(_: {}): any;
|
|
5
6
|
};
|
|
6
7
|
refs: {};
|
|
7
|
-
|
|
8
|
+
rootEl: HTMLDivElement;
|
|
8
9
|
};
|
|
9
10
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
11
|
declare const __VLS_component: import('vue').DefineComponent<AvatarGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AvatarGroupProps> & Readonly<{}>, {
|
|
11
12
|
circle: boolean;
|
|
12
|
-
size: import('./
|
|
13
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
13
|
+
size: import('./types').AvatarSize;
|
|
14
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, 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 & {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { InjectionKey } from 'vue';
|
|
2
|
-
export type
|
|
2
|
+
export type AvatarSize = "lg" | "md" | "sm" | "xs";
|
|
3
3
|
export interface AvatarProps {
|
|
4
4
|
src?: string;
|
|
5
5
|
alt?: string;
|
|
6
|
-
size?:
|
|
6
|
+
size?: AvatarSize;
|
|
7
7
|
width?: string;
|
|
8
8
|
height?: string;
|
|
9
9
|
circle?: boolean;
|
|
@@ -1,46 +1,39 @@
|
|
|
1
1
|
import { RouteLocationRaw } from 'vue-router';
|
|
2
|
-
import {
|
|
2
|
+
import { ButtonSize, ButtonType } from './types';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
type?: ButtonType;
|
|
5
|
+
size?: ButtonSize;
|
|
6
|
+
circle?: boolean;
|
|
7
|
+
block?: boolean;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
loading?: boolean;
|
|
10
|
+
route?: RouteLocationRaw | undefined;
|
|
11
|
+
ghost?: boolean;
|
|
12
|
+
};
|
|
3
13
|
declare function __VLS_template(): {
|
|
14
|
+
attrs: Partial<{}>;
|
|
4
15
|
slots: {
|
|
5
16
|
icon?(_: {}): any;
|
|
6
17
|
default?(_: {}): any;
|
|
7
18
|
};
|
|
8
19
|
refs: {};
|
|
9
|
-
|
|
20
|
+
rootEl: HTMLButtonElement;
|
|
10
21
|
};
|
|
11
22
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
13
|
-
type?: Type;
|
|
14
|
-
size?: Size;
|
|
15
|
-
circle?: boolean;
|
|
16
|
-
block?: boolean;
|
|
17
|
-
disabled?: boolean;
|
|
18
|
-
loading?: boolean;
|
|
19
|
-
route?: RouteLocationRaw | undefined;
|
|
20
|
-
ghost?: boolean;
|
|
21
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
23
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
22
24
|
click: () => any;
|
|
23
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
24
|
-
type?: Type;
|
|
25
|
-
size?: Size;
|
|
26
|
-
circle?: boolean;
|
|
27
|
-
block?: boolean;
|
|
28
|
-
disabled?: boolean;
|
|
29
|
-
loading?: boolean;
|
|
30
|
-
route?: RouteLocationRaw | undefined;
|
|
31
|
-
ghost?: boolean;
|
|
32
|
-
}> & Readonly<{
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
33
26
|
onClick?: (() => any) | undefined;
|
|
34
27
|
}>, {
|
|
35
|
-
type:
|
|
28
|
+
type: ButtonType;
|
|
36
29
|
circle: boolean;
|
|
37
|
-
size:
|
|
30
|
+
size: ButtonSize;
|
|
38
31
|
block: boolean;
|
|
39
32
|
disabled: boolean;
|
|
40
33
|
loading: boolean;
|
|
41
34
|
route: string | import('vue-router').RouteLocationAsRelativeGeneric | import('vue-router').RouteLocationAsPathGeneric;
|
|
42
35
|
ghost: boolean;
|
|
43
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
36
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
44
37
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
45
38
|
export default _default;
|
|
46
39
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
bodyClass?: string[];
|
|
4
|
+
};
|
|
1
5
|
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
2
7
|
slots: {
|
|
3
8
|
header?(_: {}): any;
|
|
4
9
|
actions?(_: {}): any;
|
|
@@ -6,16 +11,10 @@ declare function __VLS_template(): {
|
|
|
6
11
|
footer?(_: {}): any;
|
|
7
12
|
};
|
|
8
13
|
refs: {};
|
|
9
|
-
|
|
14
|
+
rootEl: HTMLDivElement;
|
|
10
15
|
};
|
|
11
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
13
|
-
title?: string;
|
|
14
|
-
bodyClass?: string[];
|
|
15
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
16
|
-
title?: string;
|
|
17
|
-
bodyClass?: string[];
|
|
18
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
19
|
export default _default;
|
|
21
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
};
|
|
5
6
|
refs: {};
|
|
6
|
-
|
|
7
|
+
rootEl: HTMLDListElement;
|
|
7
8
|
};
|
|
8
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDListElement>;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
12
|
export default _default;
|
|
12
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,23 +1,21 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
label: string;
|
|
3
|
+
content?: string;
|
|
4
|
+
verticalCenter?: boolean;
|
|
5
|
+
};
|
|
1
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
2
8
|
slots: {
|
|
3
9
|
default?(_: {}): any;
|
|
4
10
|
};
|
|
5
11
|
refs: {};
|
|
6
|
-
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
7
13
|
};
|
|
8
14
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
10
|
-
label: string;
|
|
11
|
-
content?: string;
|
|
12
|
-
verticalCenter?: boolean;
|
|
13
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
14
|
-
label: string;
|
|
15
|
-
content?: string;
|
|
16
|
-
verticalCenter?: boolean;
|
|
17
|
-
}> & Readonly<{}>, {
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
16
|
content: string;
|
|
19
17
|
verticalCenter: boolean;
|
|
20
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
18
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
20
|
export default _default;
|
|
23
21
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DialogProps,
|
|
1
|
+
import { DialogProps, DialogType } from './types';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<DialogProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
3
|
close: () => any;
|
|
4
4
|
"update:visible": (visible: boolean) => any;
|
|
@@ -6,11 +6,11 @@ declare const _default: import('vue').DefineComponent<DialogProps, {}, {}, {}, {
|
|
|
6
6
|
onClose?: (() => any) | undefined;
|
|
7
7
|
"onUpdate:visible"?: ((visible: boolean) => any) | undefined;
|
|
8
8
|
}>, {
|
|
9
|
-
type:
|
|
9
|
+
type: DialogType;
|
|
10
10
|
title: string;
|
|
11
11
|
description: string;
|
|
12
12
|
visible: boolean;
|
|
13
|
-
confirmType: import('../button
|
|
13
|
+
confirmType: import('../button').ButtonType;
|
|
14
14
|
showCancel: boolean;
|
|
15
15
|
confirmText: string;
|
|
16
16
|
cancelText: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export type
|
|
1
|
+
import { ButtonType } from '../button/types';
|
|
2
|
+
export type DialogType = "success" | "info" | "warning" | "error";
|
|
3
3
|
export declare const DialogProviderProvideKey = "DIALOG_PROVIDER_PROVIDE_KEY";
|
|
4
4
|
export interface DialogProps {
|
|
5
|
-
type?:
|
|
5
|
+
type?: DialogType;
|
|
6
6
|
visible?: boolean;
|
|
7
7
|
title?: string;
|
|
8
8
|
description?: string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -1,30 +1,28 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
selected?: boolean;
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
type?: "default" | "danger";
|
|
5
|
+
};
|
|
1
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
2
8
|
slots: {
|
|
3
|
-
|
|
9
|
+
'prefix-icon'?(_: {}): any;
|
|
4
10
|
default?(_: {}): any;
|
|
5
|
-
|
|
11
|
+
'suffix-icon'?(_: {}): any;
|
|
6
12
|
};
|
|
7
13
|
refs: {};
|
|
8
|
-
|
|
14
|
+
rootEl: HTMLDivElement;
|
|
9
15
|
};
|
|
10
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
12
|
-
selected?: boolean;
|
|
13
|
-
disabled?: boolean;
|
|
14
|
-
type?: "default" | "danger";
|
|
15
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
16
18
|
click: (e: MouseEvent) => any;
|
|
17
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
18
|
-
selected?: boolean;
|
|
19
|
-
disabled?: boolean;
|
|
20
|
-
type?: "default" | "danger";
|
|
21
|
-
}> & Readonly<{
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
22
20
|
onClick?: ((e: MouseEvent) => any) | undefined;
|
|
23
21
|
}>, {
|
|
24
22
|
type: "default" | "danger";
|
|
25
23
|
disabled: boolean;
|
|
26
24
|
selected: boolean;
|
|
27
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
28
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
29
27
|
export default _default;
|
|
30
28
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { Dropdown as VDropdown, vClosePopper, type Placement as VDropdownPlacement, } from 'floating-vue';
|
|
2
2
|
export { default as VDropdownDivider } from './DropdownDivider.vue';
|
|
3
3
|
export { default as VDropdownItem } from './DropdownItem.vue';
|
|
4
|
-
export { vClosePopper as VClosePopper, vClosePopper } from 'floating-vue';
|
|
5
|
-
export * from './symbols';
|
|
@@ -1,22 +1,20 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
message?: string;
|
|
4
|
+
image?: string;
|
|
5
|
+
};
|
|
1
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
2
8
|
slots: {
|
|
3
9
|
image?(_: {}): any;
|
|
4
10
|
message?(_: {}): any;
|
|
5
11
|
actions?(_: {}): any;
|
|
6
12
|
};
|
|
7
13
|
refs: {};
|
|
8
|
-
|
|
14
|
+
rootEl: HTMLDivElement;
|
|
9
15
|
};
|
|
10
16
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
12
|
-
title?: string;
|
|
13
|
-
message?: string;
|
|
14
|
-
image?: string;
|
|
15
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
16
|
-
title?: string;
|
|
17
|
-
message?: string;
|
|
18
|
-
image?: string;
|
|
19
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
20
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
19
|
export default _default;
|
|
22
20
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
isSelected?: boolean;
|
|
3
|
+
};
|
|
1
4
|
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
2
6
|
slots: {
|
|
3
7
|
prepend?(_: {}): any;
|
|
4
8
|
checkbox?(_: {}): any;
|
|
@@ -8,14 +12,10 @@ declare function __VLS_template(): {
|
|
|
8
12
|
footer?(_: {}): any;
|
|
9
13
|
};
|
|
10
14
|
refs: {};
|
|
11
|
-
|
|
15
|
+
rootEl: any;
|
|
12
16
|
};
|
|
13
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
15
|
-
isSelected?: boolean;
|
|
16
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
17
|
-
isSelected?: boolean;
|
|
18
|
-
}> & Readonly<{}>, {
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
19
19
|
isSelected: boolean;
|
|
20
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21
21
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,12 +1,13 @@
|
|
|
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
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
12
|
export default _default;
|
|
12
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,34 +1,33 @@
|
|
|
1
1
|
import { RouteLocationRaw } from 'vue-router';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
title?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
route?: RouteLocationRaw;
|
|
6
|
+
width?: string | number;
|
|
7
|
+
maxWidth?: string | number;
|
|
8
|
+
};
|
|
2
9
|
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
3
11
|
slots: {
|
|
4
12
|
title?(_: {}): any;
|
|
5
13
|
extra?(_: {}): any;
|
|
6
14
|
description?(_: {}): any;
|
|
7
15
|
};
|
|
8
16
|
refs: {};
|
|
9
|
-
|
|
17
|
+
rootEl: HTMLDivElement;
|
|
10
18
|
};
|
|
11
19
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
12
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
13
|
-
title?: string;
|
|
14
|
-
description?: string;
|
|
15
|
-
route?: RouteLocationRaw;
|
|
16
|
-
width?: string | number;
|
|
17
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
18
21
|
click: () => any;
|
|
19
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
20
|
-
title?: string;
|
|
21
|
-
description?: string;
|
|
22
|
-
route?: RouteLocationRaw;
|
|
23
|
-
width?: string | number;
|
|
24
|
-
}> & Readonly<{
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
25
23
|
onClick?: (() => any) | undefined;
|
|
26
24
|
}>, {
|
|
27
25
|
title: string;
|
|
28
26
|
description: string;
|
|
29
27
|
width: string | number;
|
|
30
28
|
route: RouteLocationRaw;
|
|
31
|
-
|
|
29
|
+
maxWidth: string | number;
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
32
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
32
|
export default _default;
|
|
34
33
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
};
|
|
1
4
|
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
2
6
|
slots: {
|
|
3
7
|
icon?(_: {}): any;
|
|
4
8
|
actions?(_: {}): any;
|
|
5
9
|
};
|
|
6
10
|
refs: {};
|
|
7
|
-
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
8
12
|
};
|
|
9
13
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
11
|
-
title?: string;
|
|
12
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
13
|
-
title?: string;
|
|
14
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
15
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
2
|
export default _default;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
openIds?: string[];
|
|
3
|
+
};
|
|
1
4
|
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
2
6
|
slots: {
|
|
3
7
|
default?(_: {}): any;
|
|
4
8
|
};
|
|
5
9
|
refs: {};
|
|
6
|
-
|
|
10
|
+
rootEl: HTMLDivElement;
|
|
7
11
|
};
|
|
8
12
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
10
|
-
openIds?: string[];
|
|
11
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
12
|
-
openIds?: string[];
|
|
13
|
-
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
14
14
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
15
15
|
export default _default;
|
|
16
16
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,29 +1,27 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
id?: string;
|
|
3
|
+
title?: string;
|
|
4
|
+
active?: boolean;
|
|
5
|
+
};
|
|
1
6
|
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
2
8
|
slots: {
|
|
3
9
|
icon?(_: {}): any;
|
|
4
10
|
default?(_: {}): any;
|
|
5
11
|
};
|
|
6
12
|
refs: {};
|
|
7
|
-
|
|
13
|
+
rootEl: HTMLLIElement;
|
|
8
14
|
};
|
|
9
15
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
11
|
-
id?: string;
|
|
12
|
-
title?: string;
|
|
13
|
-
active?: boolean;
|
|
14
|
-
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
15
17
|
select: (id: string) => any;
|
|
16
|
-
}, string, import('vue').PublicProps, Readonly<{
|
|
17
|
-
id?: string;
|
|
18
|
-
title?: string;
|
|
19
|
-
active?: boolean;
|
|
20
|
-
}> & Readonly<{
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
19
|
onSelect?: ((id: string) => any) | undefined;
|
|
22
20
|
}>, {
|
|
23
21
|
title: string;
|
|
24
22
|
id: string;
|
|
25
23
|
active: boolean;
|
|
26
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
27
25
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
28
26
|
export default _default;
|
|
29
27
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
2
3
|
slots: {
|
|
3
4
|
default?(_: {}): any;
|
|
4
5
|
};
|
|
5
6
|
refs: {};
|
|
6
|
-
|
|
7
|
+
rootEl: HTMLLIElement;
|
|
7
8
|
};
|
|
8
9
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLLIElement>;
|
|
10
11
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
12
|
export default _default;
|
|
12
13
|
type __VLS_WithTemplateSlots<T, S> = T & {
|