halo-fe 1.0.34 → 1.0.36
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/main.js +5513 -5855
- package/dist/vendor/{liquidjs-DEqYMvhe.js → liquidjs-CyjuyKnF.js} +858 -812
- package/dist/vendor/{underscore-DYMmD6H5.js → underscore-CK1gjYcm.js} +2 -2
- package/esm/comp/Timer.vue.d.ts +8 -12
- package/esm/comp/alert/Index.vue.d.ts +2 -1
- package/esm/comp/business/Debugger.vue.d.ts +2 -327
- package/esm/comp/business/Tips.vue.d.ts +2 -1
- package/esm/comp/business/cruds/Index.vue.d.ts +13 -567
- package/esm/comp/business/drivers/Index.vue.d.ts +11 -113
- package/esm/comp/business/drivers/Picker.vue.d.ts +16 -18
- package/esm/comp/button/Button.vue.d.ts +10 -17
- package/esm/comp/button/Index.vue.d.ts +7 -11
- package/esm/comp/calender/Index.vue.d.ts +6 -4
- package/esm/comp/card/Index.vue.d.ts +7 -11
- package/esm/comp/checkbox/Checkbox.vue.d.ts +11 -18
- package/esm/comp/checkbox/Index.vue.d.ts +11 -14
- package/esm/comp/condition/Condition.vue.d.ts +2 -1
- package/esm/comp/condition/Index.vue.d.ts +2 -1
- package/esm/comp/datetime/Date.vue.d.ts +6 -228
- package/esm/comp/datetime/DateRange.vue.d.ts +7 -11
- package/esm/comp/datetime/Index.vue.d.ts +11 -14
- package/esm/comp/datetime/Time.vue.d.ts +2 -1
- package/esm/comp/datetime/TimeRange.vue.d.ts +2 -1
- package/esm/comp/dialog/Index.vue.d.ts +17 -6
- package/esm/comp/drawer/Index.vue.d.ts +10 -17
- package/esm/comp/dropdown/Index.vue.d.ts +11 -422
- package/esm/comp/empty/Index.vue.d.ts +7 -11
- package/esm/comp/form/Field.vue.d.ts +9 -12
- package/esm/comp/form/Index.vue.d.ts +7 -11
- package/esm/comp/icon/Arrow.vue.d.ts +3 -2
- package/esm/comp/icon/Index.vue.d.ts +3 -4
- package/esm/comp/input/Code.vue.d.ts +3 -4
- package/esm/comp/input/Compare.vue.d.ts +3 -4
- package/esm/comp/input/Index.vue.d.ts +12 -23
- package/esm/comp/input/RichText.vue.d.ts +6 -71
- package/esm/comp/layout/Col.vue.d.ts +7 -11
- package/esm/comp/layout/Container.vue.d.ts +8 -16
- package/esm/comp/layout/Desc.vue.d.ts +2 -1
- package/esm/comp/layout/Fill.vue.d.ts +8 -16
- package/esm/comp/layout/Row.vue.d.ts +8 -16
- package/esm/comp/link/Index.vue.d.ts +8 -12
- package/esm/comp/loading/Loading.vue.d.ts +2 -1
- package/esm/comp/menu/Index.vue.d.ts +7 -11
- package/esm/comp/menu/Menu.vue.d.ts +8 -12
- package/esm/comp/number/Index.vue.d.ts +10 -14
- package/esm/comp/overlay/Index.vue.d.ts +7 -11
- package/esm/comp/pager/Index.vue.d.ts +12 -6
- package/esm/comp/popover/Index.vue.d.ts +9 -150
- package/esm/comp/progress/Circle.vue.d.ts +2 -1
- package/esm/comp/progress/Index.vue.d.ts +4 -3
- package/esm/comp/progress/Socket.vue.d.ts +7 -11
- package/esm/comp/progress/Spinner.vue.d.ts +2 -1
- package/esm/comp/radio/Index.vue.d.ts +11 -14
- package/esm/comp/radio/Radio.vue.d.ts +8 -12
- package/esm/comp/resizer/Index.vue.d.ts +3 -4
- package/esm/comp/resizer/Resizers.vue.d.ts +3 -2
- package/esm/comp/scroller/Index.vue.d.ts +9 -23
- package/esm/comp/select/Index.vue.d.ts +11 -464
- package/esm/comp/select/Option.vue.d.ts +7 -15
- package/esm/comp/tab/Index.vue.d.ts +13 -15
- package/esm/comp/tab/Tab.vue.d.ts +9 -12
- package/esm/comp/table/Column.vue.d.ts +11 -155
- package/esm/comp/table/Filter.vue.d.ts +2 -1
- package/esm/comp/table/Index.vue.d.ts +24 -773
- package/esm/comp/table/Row.vue.d.ts +9 -18
- package/esm/comp/table/Sort.vue.d.ts +8 -4
- package/esm/comp/tag/Index.vue.d.ts +7 -11
- package/esm/comp/taskbar/Index.vue.d.ts +13 -15
- package/esm/comp/taskbar/Taskbar.vue.d.ts +7 -11
- package/esm/comp/text/Dance.vue.d.ts +3 -2
- package/esm/comp/tooltip/Index.vue.d.ts +9 -295
- package/esm/comp/tree/Index.vue.d.ts +10 -14
- package/esm/comp/upload/Index.vue.d.ts +7 -11
- package/esm/comp/window/Index.vue.d.ts +21 -6
- package/esm/vite.config.d.ts +1 -5
- package/package.json +51 -54
|
@@ -1,28 +1,19 @@
|
|
|
1
|
-
import { ColumnProps, TableRowProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLTableRowElement;
|
|
1
|
+
import { ColumnProps, RowExpose, TableRowProps } from "./@types";
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
declare const __VLS_component: import("vue").DefineComponent<TableRowProps, {
|
|
12
|
-
row: any;
|
|
13
|
-
checked: any;
|
|
14
|
-
click: (value: boolean) => void;
|
|
15
|
-
check: (value: boolean) => void;
|
|
16
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<TableRowProps, RowExpose, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
17
7
|
click: (row: any, event: MouseEvent) => any;
|
|
18
8
|
check: (value: boolean, row: any, column: ColumnProps) => any;
|
|
19
9
|
}, string, import("vue").PublicProps, Readonly<TableRowProps> & Readonly<{
|
|
20
10
|
onClick?: (row: any, event: MouseEvent) => any;
|
|
21
11
|
onCheck?: (value: boolean, row: any, column: ColumnProps) => any;
|
|
22
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
23
|
-
declare const
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
24
15
|
export default _default;
|
|
25
|
-
type
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
17
|
new (): {
|
|
27
18
|
$slots: S;
|
|
28
19
|
};
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
type
|
|
1
|
+
type __VLS_ModelProps = {
|
|
2
|
+
/**
|
|
3
|
+
* 是否升序模型
|
|
4
|
+
*/
|
|
2
5
|
modelValue?: 'asc' | 'desc' | boolean;
|
|
3
6
|
};
|
|
4
|
-
declare const
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
8
|
"update:modelValue": (value: boolean | "desc" | "asc") => any;
|
|
6
9
|
} & {
|
|
7
10
|
change: (value: boolean | "desc" | "asc") => any;
|
|
8
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
9
12
|
onChange?: (value: boolean | "desc" | "asc") => any;
|
|
10
13
|
"onUpdate:modelValue"?: (value: boolean | "desc" | "asc") => any;
|
|
11
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {},
|
|
14
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
12
16
|
export default _default;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import { TagProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLDivElement;
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
declare const
|
|
12
|
-
declare const _default:
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<TagProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TagProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
13
9
|
export default _default;
|
|
14
|
-
type
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
11
|
new (): {
|
|
16
12
|
$slots: S;
|
|
17
13
|
};
|
|
@@ -1,26 +1,24 @@
|
|
|
1
1
|
import { TaskbarsProps } from "./@types";
|
|
2
2
|
type __VLS_Props = TaskbarsProps;
|
|
3
|
-
type
|
|
3
|
+
type __VLS_ModelProps = {
|
|
4
4
|
modelValue?: string;
|
|
5
|
-
} & __VLS_Props;
|
|
6
|
-
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
slots: {
|
|
9
|
-
logo?(_: {}): any;
|
|
10
|
-
default?(_: {}): any;
|
|
11
|
-
};
|
|
12
|
-
refs: {};
|
|
13
|
-
rootEl: HTMLDivElement;
|
|
14
5
|
};
|
|
15
|
-
type
|
|
16
|
-
declare
|
|
6
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
7
|
+
declare var __VLS_1: {}, __VLS_3: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
logo?: (props: typeof __VLS_1) => any;
|
|
10
|
+
} & {
|
|
11
|
+
default?: (props: typeof __VLS_3) => any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
14
|
"update:modelValue": (value: string) => any;
|
|
18
15
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
16
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
20
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {},
|
|
21
|
-
declare const
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
22
20
|
export default _default;
|
|
23
|
-
type
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
22
|
new (): {
|
|
25
23
|
$slots: S;
|
|
26
24
|
};
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import { TaskbarProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLDivElement;
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
declare const
|
|
12
|
-
declare const _default:
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<TaskbarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TaskbarProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
13
9
|
export default _default;
|
|
14
|
-
type
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
11
|
new (): {
|
|
16
12
|
$slots: S;
|
|
17
13
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DanceProps } from "./@types";
|
|
2
|
-
declare const
|
|
2
|
+
declare const __VLS_export: import("vue").DefineComponent<DanceProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DanceProps> & Readonly<{}>, {
|
|
3
3
|
delay: number;
|
|
4
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
4
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
5
6
|
export default _default;
|
|
@@ -1,303 +1,17 @@
|
|
|
1
|
-
import { TooltipProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
popoverRef: {
|
|
9
|
-
$: import("vue").ComponentInternalInstance;
|
|
10
|
-
$data: {};
|
|
11
|
-
$props: {
|
|
12
|
-
readonly target: HTMLElement;
|
|
13
|
-
readonly trigger?: "hover" | "click";
|
|
14
|
-
readonly direction?: import("../popover").PopoverDirection;
|
|
15
|
-
readonly class?: string;
|
|
16
|
-
readonly delay?: number;
|
|
17
|
-
readonly onClose?: () => any;
|
|
18
|
-
readonly onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
19
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
20
|
-
$attrs: {
|
|
21
|
-
[x: string]: unknown;
|
|
22
|
-
};
|
|
23
|
-
$refs: {
|
|
24
|
-
[x: string]: unknown;
|
|
25
|
-
} & {
|
|
26
|
-
popoverRef: HTMLDivElement;
|
|
27
|
-
scrollerRef: {
|
|
28
|
-
$: import("vue").ComponentInternalInstance;
|
|
29
|
-
$data: {};
|
|
30
|
-
$props: Partial<{}> & Omit<{
|
|
31
|
-
readonly scrollLeft?: number;
|
|
32
|
-
readonly scrollTop?: number;
|
|
33
|
-
readonly onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
34
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
35
|
-
$attrs: {
|
|
36
|
-
[x: string]: unknown;
|
|
37
|
-
};
|
|
38
|
-
$refs: {
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
} & {
|
|
41
|
-
viewRef: HTMLDivElement;
|
|
42
|
-
verticalRef: HTMLDivElement;
|
|
43
|
-
horizontalRef: HTMLDivElement;
|
|
44
|
-
};
|
|
45
|
-
$slots: Readonly<{
|
|
46
|
-
[name: string]: import("vue").Slot<any>;
|
|
47
|
-
}>;
|
|
48
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
49
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
50
|
-
$host: Element | null;
|
|
51
|
-
$emit: (event: "scroll", event: import("..").ScrollerEvent) => void;
|
|
52
|
-
$el: HTMLDivElement;
|
|
53
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("..").ScrollerProps> & Readonly<{
|
|
54
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
55
|
-
}>, {
|
|
56
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
57
|
-
update: () => void;
|
|
58
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
59
|
-
scroll: (event: import("..").ScrollerEvent) => any;
|
|
60
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
61
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
62
|
-
created?: (() => void) | (() => void)[];
|
|
63
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
64
|
-
mounted?: (() => void) | (() => void)[];
|
|
65
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
66
|
-
updated?: (() => void) | (() => void)[];
|
|
67
|
-
activated?: (() => void) | (() => void)[];
|
|
68
|
-
deactivated?: (() => void) | (() => void)[];
|
|
69
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
70
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
71
|
-
destroyed?: (() => void) | (() => void)[];
|
|
72
|
-
unmounted?: (() => void) | (() => void)[];
|
|
73
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
74
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
75
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
76
|
-
};
|
|
77
|
-
$forceUpdate: () => void;
|
|
78
|
-
$nextTick: typeof import("vue").nextTick;
|
|
79
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
80
|
-
} & Readonly<{}> & Omit<Readonly<import("..").ScrollerProps> & Readonly<{
|
|
81
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
82
|
-
}>, "scrollTo" | "update"> & import("vue").ShallowUnwrapRef<{
|
|
83
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
84
|
-
update: () => void;
|
|
85
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
86
|
-
$slots: {
|
|
87
|
-
default?(_: {}): any;
|
|
88
|
-
};
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
|
-
$slots: Readonly<{
|
|
92
|
-
[name: string]: import("vue").Slot<any>;
|
|
93
|
-
}>;
|
|
94
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
95
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
96
|
-
$host: Element | null;
|
|
97
|
-
$emit: ((event: "close") => void) & ((event: "scroll", event: import("..").ScrollerEvent) => void);
|
|
98
|
-
$el: any;
|
|
99
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("../popover").PopoverProps> & Readonly<{
|
|
100
|
-
onClose?: () => any;
|
|
101
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
102
|
-
}>, {
|
|
103
|
-
update(): void;
|
|
104
|
-
toggle(event: MouseEvent): void;
|
|
105
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
106
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
107
|
-
close(immediate?: boolean): void;
|
|
108
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
109
|
-
close: () => any;
|
|
110
|
-
scroll: (event: import("..").ScrollerEvent) => any;
|
|
111
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
112
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
113
|
-
created?: (() => void) | (() => void)[];
|
|
114
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
115
|
-
mounted?: (() => void) | (() => void)[];
|
|
116
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
117
|
-
updated?: (() => void) | (() => void)[];
|
|
118
|
-
activated?: (() => void) | (() => void)[];
|
|
119
|
-
deactivated?: (() => void) | (() => void)[];
|
|
120
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
121
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
122
|
-
destroyed?: (() => void) | (() => void)[];
|
|
123
|
-
unmounted?: (() => void) | (() => void)[];
|
|
124
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
125
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
126
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
127
|
-
};
|
|
128
|
-
$forceUpdate: () => void;
|
|
129
|
-
$nextTick: typeof import("vue").nextTick;
|
|
130
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
131
|
-
} & Readonly<{}> & Omit<Readonly<import("../popover").PopoverProps> & Readonly<{
|
|
132
|
-
onClose?: () => any;
|
|
133
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
134
|
-
}>, "close" | "toggle" | "scrollTo" | "update" | "showAsync"> & import("vue").ShallowUnwrapRef<{
|
|
135
|
-
update(): void;
|
|
136
|
-
toggle(event: MouseEvent): void;
|
|
137
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
138
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
139
|
-
close(immediate?: boolean): void;
|
|
140
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
141
|
-
$slots: {
|
|
142
|
-
default?(_: {}): any;
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
};
|
|
146
|
-
rootEl: any;
|
|
1
|
+
import { TooltipExpose, TooltipProps } from "./@types";
|
|
2
|
+
declare var __VLS_11: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_11) => any;
|
|
147
5
|
};
|
|
148
|
-
|
|
149
|
-
declare const __VLS_component: import("vue").DefineComponent<TooltipProps, {
|
|
150
|
-
update(): void;
|
|
151
|
-
toggle(event: MouseEvent): void;
|
|
152
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
153
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
154
|
-
close(immediate?: boolean): void;
|
|
155
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<TooltipProps, TooltipExpose, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
156
7
|
close: () => any;
|
|
157
8
|
}, string, import("vue").PublicProps, Readonly<TooltipProps> & Readonly<{
|
|
158
9
|
onClose?: () => any;
|
|
159
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
$data: {};
|
|
163
|
-
$props: {
|
|
164
|
-
readonly target: HTMLElement;
|
|
165
|
-
readonly trigger?: "hover" | "click";
|
|
166
|
-
readonly direction?: import("../popover").PopoverDirection;
|
|
167
|
-
readonly class?: string;
|
|
168
|
-
readonly delay?: number;
|
|
169
|
-
readonly onClose?: () => any;
|
|
170
|
-
readonly onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
171
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
172
|
-
$attrs: {
|
|
173
|
-
[x: string]: unknown;
|
|
174
|
-
};
|
|
175
|
-
$refs: {
|
|
176
|
-
[x: string]: unknown;
|
|
177
|
-
} & {
|
|
178
|
-
popoverRef: HTMLDivElement;
|
|
179
|
-
scrollerRef: {
|
|
180
|
-
$: import("vue").ComponentInternalInstance;
|
|
181
|
-
$data: {};
|
|
182
|
-
$props: Partial<{}> & Omit<{
|
|
183
|
-
readonly scrollLeft?: number;
|
|
184
|
-
readonly scrollTop?: number;
|
|
185
|
-
readonly onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
186
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
187
|
-
$attrs: {
|
|
188
|
-
[x: string]: unknown;
|
|
189
|
-
};
|
|
190
|
-
$refs: {
|
|
191
|
-
[x: string]: unknown;
|
|
192
|
-
} & {
|
|
193
|
-
viewRef: HTMLDivElement;
|
|
194
|
-
verticalRef: HTMLDivElement;
|
|
195
|
-
horizontalRef: HTMLDivElement;
|
|
196
|
-
};
|
|
197
|
-
$slots: Readonly<{
|
|
198
|
-
[name: string]: import("vue").Slot<any>;
|
|
199
|
-
}>;
|
|
200
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
201
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
202
|
-
$host: Element | null;
|
|
203
|
-
$emit: (event: "scroll", event: import("..").ScrollerEvent) => void;
|
|
204
|
-
$el: HTMLDivElement;
|
|
205
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("..").ScrollerProps> & Readonly<{
|
|
206
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
207
|
-
}>, {
|
|
208
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
209
|
-
update: () => void;
|
|
210
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
211
|
-
scroll: (event: import("..").ScrollerEvent) => any;
|
|
212
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
213
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
214
|
-
created?: (() => void) | (() => void)[];
|
|
215
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
216
|
-
mounted?: (() => void) | (() => void)[];
|
|
217
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
218
|
-
updated?: (() => void) | (() => void)[];
|
|
219
|
-
activated?: (() => void) | (() => void)[];
|
|
220
|
-
deactivated?: (() => void) | (() => void)[];
|
|
221
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
222
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
223
|
-
destroyed?: (() => void) | (() => void)[];
|
|
224
|
-
unmounted?: (() => void) | (() => void)[];
|
|
225
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
226
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
227
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
228
|
-
};
|
|
229
|
-
$forceUpdate: () => void;
|
|
230
|
-
$nextTick: typeof import("vue").nextTick;
|
|
231
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
232
|
-
} & Readonly<{}> & Omit<Readonly<import("..").ScrollerProps> & Readonly<{
|
|
233
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
234
|
-
}>, "scrollTo" | "update"> & import("vue").ShallowUnwrapRef<{
|
|
235
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
236
|
-
update: () => void;
|
|
237
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
238
|
-
$slots: {
|
|
239
|
-
default?(_: {}): any;
|
|
240
|
-
};
|
|
241
|
-
};
|
|
242
|
-
};
|
|
243
|
-
$slots: Readonly<{
|
|
244
|
-
[name: string]: import("vue").Slot<any>;
|
|
245
|
-
}>;
|
|
246
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
247
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
248
|
-
$host: Element | null;
|
|
249
|
-
$emit: ((event: "close") => void) & ((event: "scroll", event: import("..").ScrollerEvent) => void);
|
|
250
|
-
$el: any;
|
|
251
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("../popover").PopoverProps> & Readonly<{
|
|
252
|
-
onClose?: () => any;
|
|
253
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
254
|
-
}>, {
|
|
255
|
-
update(): void;
|
|
256
|
-
toggle(event: MouseEvent): void;
|
|
257
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
258
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
259
|
-
close(immediate?: boolean): void;
|
|
260
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
261
|
-
close: () => any;
|
|
262
|
-
scroll: (event: import("..").ScrollerEvent) => any;
|
|
263
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
264
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
265
|
-
created?: (() => void) | (() => void)[];
|
|
266
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
267
|
-
mounted?: (() => void) | (() => void)[];
|
|
268
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
269
|
-
updated?: (() => void) | (() => void)[];
|
|
270
|
-
activated?: (() => void) | (() => void)[];
|
|
271
|
-
deactivated?: (() => void) | (() => void)[];
|
|
272
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
273
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
274
|
-
destroyed?: (() => void) | (() => void)[];
|
|
275
|
-
unmounted?: (() => void) | (() => void)[];
|
|
276
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
277
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
278
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
279
|
-
};
|
|
280
|
-
$forceUpdate: () => void;
|
|
281
|
-
$nextTick: typeof import("vue").nextTick;
|
|
282
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
283
|
-
} & Readonly<{}> & Omit<Readonly<import("../popover").PopoverProps> & Readonly<{
|
|
284
|
-
onClose?: () => any;
|
|
285
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
286
|
-
}>, "close" | "toggle" | "scrollTo" | "update" | "showAsync"> & import("vue").ShallowUnwrapRef<{
|
|
287
|
-
update(): void;
|
|
288
|
-
toggle(event: MouseEvent): void;
|
|
289
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
290
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
291
|
-
close(immediate?: boolean): void;
|
|
292
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
293
|
-
$slots: {
|
|
294
|
-
default?(_: {}): any;
|
|
295
|
-
};
|
|
296
|
-
};
|
|
297
|
-
}, any>;
|
|
298
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
299
13
|
export default _default;
|
|
300
|
-
type
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
301
15
|
new (): {
|
|
302
16
|
$slots: S;
|
|
303
17
|
};
|
|
@@ -1,23 +1,19 @@
|
|
|
1
1
|
import { TreeProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}): any;
|
|
8
|
-
};
|
|
9
|
-
refs: {};
|
|
10
|
-
rootEl: HTMLDivElement;
|
|
2
|
+
declare var __VLS_6: {
|
|
3
|
+
row: any;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_6) => any;
|
|
11
7
|
};
|
|
12
|
-
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<TreeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<TreeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
9
|
click: (value: any, event: MouseEvent) => any;
|
|
15
10
|
}, string, import("vue").PublicProps, Readonly<TreeProps> & Readonly<{
|
|
16
11
|
onClick?: (value: any, event: MouseEvent) => any;
|
|
17
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
18
|
-
declare const
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
19
15
|
export default _default;
|
|
20
|
-
type
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
17
|
new (): {
|
|
22
18
|
$slots: S;
|
|
23
19
|
};
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {};
|
|
7
|
-
rootEl: HTMLDivElement;
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
4
|
};
|
|
9
|
-
|
|
10
|
-
declare const
|
|
11
|
-
declare const _default:
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
12
8
|
export default _default;
|
|
13
|
-
type
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
10
|
new (): {
|
|
15
11
|
$slots: S;
|
|
16
12
|
};
|
|
@@ -1,8 +1,22 @@
|
|
|
1
1
|
import { DialogOptions, DialogState } from "../dialog";
|
|
2
2
|
import { WindowProps } from "./@types";
|
|
3
|
-
declare
|
|
4
|
-
type
|
|
5
|
-
|
|
3
|
+
declare var __VLS_18: {}, __VLS_21: {}, __VLS_24: {}, __VLS_26: {}, __VLS_28: {}, __VLS_35: {}, __VLS_38: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
shortcut?: (props: typeof __VLS_18) => any;
|
|
6
|
+
} & {
|
|
7
|
+
title?: (props: typeof __VLS_21) => any;
|
|
8
|
+
} & {
|
|
9
|
+
toolbar?: (props: typeof __VLS_24) => any;
|
|
10
|
+
} & {
|
|
11
|
+
side?: (props: typeof __VLS_26) => any;
|
|
12
|
+
} & {
|
|
13
|
+
top?: (props: typeof __VLS_28) => any;
|
|
14
|
+
} & {
|
|
15
|
+
default?: (props: typeof __VLS_35) => any;
|
|
16
|
+
} & {
|
|
17
|
+
footer?: (props: typeof __VLS_38) => any;
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_base: import("vue").DefineComponent<WindowProps, {
|
|
6
20
|
toggle: (value?: boolean) => void;
|
|
7
21
|
update: () => void;
|
|
8
22
|
state: import("vue").Ref<DialogState, DialogState>;
|
|
@@ -23,10 +37,11 @@ declare const __VLS_component: import("vue").DefineComponent<WindowProps, {
|
|
|
23
37
|
onMax?: (options: DialogOptions) => any;
|
|
24
38
|
onMin?: (options: DialogOptions) => any;
|
|
25
39
|
onVisible?: (value: boolean) => any;
|
|
26
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true,
|
|
27
|
-
declare const
|
|
40
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
41
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
42
|
+
declare const _default: typeof __VLS_export;
|
|
28
43
|
export default _default;
|
|
29
|
-
type
|
|
44
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
45
|
new (): {
|
|
31
46
|
$slots: S;
|
|
32
47
|
};
|