halo-fe 1.0.34 → 1.0.35
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 +12 -12
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { nextTick } from "vue";
|
|
2
1
|
import type { ScrollerEvent } from "../scroller";
|
|
3
2
|
import type { RichTextProps } from "./@types";
|
|
4
3
|
type __VLS_Props = RichTextProps;
|
|
5
|
-
type
|
|
4
|
+
type __VLS_ModelProps = {
|
|
6
5
|
modelValue?: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
6
|
+
};
|
|
7
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
9
|
"update:modelValue": (value: string) => any;
|
|
10
10
|
} & {
|
|
11
11
|
change: (value: string) => any;
|
|
@@ -14,71 +14,6 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
14
14
|
onChange?: (value: string) => any;
|
|
15
15
|
onScroll?: (event: ScrollerEvent) => any;
|
|
16
16
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
17
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
18
|
-
|
|
19
|
-
scrollerRef: {
|
|
20
|
-
$: import("vue").ComponentInternalInstance;
|
|
21
|
-
$data: {};
|
|
22
|
-
$props: Partial<{}> & Omit<{
|
|
23
|
-
readonly scrollLeft?: number;
|
|
24
|
-
readonly scrollTop?: number;
|
|
25
|
-
readonly onScroll?: (event: ScrollerEvent) => any;
|
|
26
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
27
|
-
$attrs: {
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
30
|
-
$refs: {
|
|
31
|
-
[x: string]: unknown;
|
|
32
|
-
} & {
|
|
33
|
-
viewRef: HTMLDivElement;
|
|
34
|
-
verticalRef: HTMLDivElement;
|
|
35
|
-
horizontalRef: HTMLDivElement;
|
|
36
|
-
};
|
|
37
|
-
$slots: Readonly<{
|
|
38
|
-
[name: string]: import("vue").Slot<any>;
|
|
39
|
-
}>;
|
|
40
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
41
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
42
|
-
$host: Element | null;
|
|
43
|
-
$emit: (event: "scroll", event: ScrollerEvent) => void;
|
|
44
|
-
$el: HTMLDivElement;
|
|
45
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("../scroller").ScrollerProps> & Readonly<{
|
|
46
|
-
onScroll?: (event: ScrollerEvent) => any;
|
|
47
|
-
}>, {
|
|
48
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
49
|
-
update: () => void;
|
|
50
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
51
|
-
scroll: (event: ScrollerEvent) => any;
|
|
52
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
53
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
54
|
-
created?: (() => void) | (() => void)[];
|
|
55
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
56
|
-
mounted?: (() => void) | (() => void)[];
|
|
57
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
58
|
-
updated?: (() => void) | (() => void)[];
|
|
59
|
-
activated?: (() => void) | (() => void)[];
|
|
60
|
-
deactivated?: (() => void) | (() => void)[];
|
|
61
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
62
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
63
|
-
destroyed?: (() => void) | (() => void)[];
|
|
64
|
-
unmounted?: (() => void) | (() => void)[];
|
|
65
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
66
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
67
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
68
|
-
};
|
|
69
|
-
$forceUpdate: () => void;
|
|
70
|
-
$nextTick: typeof nextTick;
|
|
71
|
-
$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;
|
|
72
|
-
} & Readonly<{}> & Omit<Readonly<import("../scroller").ScrollerProps> & Readonly<{
|
|
73
|
-
onScroll?: (event: ScrollerEvent) => any;
|
|
74
|
-
}>, "scrollTo" | "update"> & import("vue").ShallowUnwrapRef<{
|
|
75
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
76
|
-
update: () => void;
|
|
77
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
78
|
-
$slots: {
|
|
79
|
-
default?(_: {}): any;
|
|
80
|
-
};
|
|
81
|
-
};
|
|
82
|
-
editorRef: HTMLDivElement;
|
|
83
|
-
}, any>;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
84
19
|
export default _default;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import { ColProps } 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<ColProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ColProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, 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,15 +1,8 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {
|
|
7
|
-
containerRef: HTMLDivElement;
|
|
8
|
-
};
|
|
9
|
-
rootEl: HTMLDivElement;
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
10
4
|
};
|
|
11
|
-
|
|
12
|
-
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
13
6
|
container: {
|
|
14
7
|
type: BooleanConstructor;
|
|
15
8
|
default: boolean;
|
|
@@ -23,12 +16,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
23
16
|
};
|
|
24
17
|
}>> & Readonly<{}>, {
|
|
25
18
|
container: boolean;
|
|
26
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
|
+
declare const _default: typeof __VLS_export;
|
|
30
22
|
export default _default;
|
|
31
|
-
type
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
24
|
new (): {
|
|
33
25
|
$slots: S;
|
|
34
26
|
};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
default?(_: {}): any;
|
|
5
|
-
};
|
|
6
|
-
refs: {
|
|
7
|
-
fillRef: HTMLDivElement;
|
|
8
|
-
};
|
|
9
|
-
rootEl: HTMLDivElement;
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
10
4
|
};
|
|
11
|
-
|
|
12
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
6
|
resize: (...args: any[]) => void;
|
|
14
7
|
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
15
8
|
onResize?: (...args: any[]) => any;
|
|
16
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
9
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
20
12
|
export default _default;
|
|
21
|
-
type
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
14
|
new (): {
|
|
23
15
|
$slots: S;
|
|
24
16
|
};
|
|
@@ -1,23 +1,15 @@
|
|
|
1
1
|
import { RowProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {
|
|
8
|
-
rowRef: HTMLDivElement;
|
|
9
|
-
};
|
|
10
|
-
rootEl: HTMLDivElement;
|
|
2
|
+
declare var __VLS_1: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
11
5
|
};
|
|
12
|
-
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<RowProps, {
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<RowProps, {
|
|
14
7
|
ref: import("vue").Ref<any, any>;
|
|
15
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<RowProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
8
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<RowProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
19
11
|
export default _default;
|
|
20
|
-
type
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
13
|
new (): {
|
|
22
14
|
$slots: S;
|
|
23
15
|
};
|
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
import { LinkProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLAnchorElement;
|
|
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<LinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<LinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
12
7
|
click: (url: string, event: MouseEvent) => any;
|
|
13
8
|
}, string, import("vue").PublicProps, Readonly<LinkProps> & Readonly<{
|
|
14
9
|
onClick?: (url: string, event: MouseEvent) => any;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {},
|
|
16
|
-
declare const
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
17
13
|
export default _default;
|
|
18
|
-
type
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
15
|
new (): {
|
|
20
16
|
$slots: S;
|
|
21
17
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { LoadingProps } from "./@types";
|
|
2
|
-
declare const
|
|
2
|
+
declare const __VLS_export: import("vue").DefineComponent<LoadingProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<LoadingProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
3
4
|
export default _default;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
import { MenusProps } 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<MenusProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<MenusProps> & 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,21 +1,17 @@
|
|
|
1
1
|
import { MenuProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: HTMLAnchorElement;
|
|
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<MenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<MenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
12
7
|
click: (event: MouseEvent) => any;
|
|
13
8
|
}, string, import("vue").PublicProps, Readonly<MenuProps> & Readonly<{
|
|
14
9
|
onClick?: (event: MouseEvent) => any;
|
|
15
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {},
|
|
16
|
-
declare const
|
|
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;
|
|
17
13
|
export default _default;
|
|
18
|
-
type
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
15
|
new (): {
|
|
20
16
|
$slots: S;
|
|
21
17
|
};
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
type
|
|
1
|
+
type __VLS_ModelProps = {
|
|
2
2
|
modelValue?: number;
|
|
3
3
|
};
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
default?(_: {}): any;
|
|
8
|
-
};
|
|
9
|
-
refs: {};
|
|
10
|
-
rootEl: HTMLDivElement;
|
|
4
|
+
declare var __VLS_1: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_1) => any;
|
|
11
7
|
};
|
|
12
|
-
|
|
13
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
9
|
"update:modelValue": (value: number) => any;
|
|
15
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
16
11
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
17
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {},
|
|
18
|
-
declare const
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, 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,23 +1,19 @@
|
|
|
1
1
|
import { OverlayProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
default?(_: {}): any;
|
|
6
|
-
};
|
|
7
|
-
refs: {};
|
|
8
|
-
rootEl: any;
|
|
2
|
+
declare var __VLS_6: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_6) => any;
|
|
9
5
|
};
|
|
10
|
-
|
|
11
|
-
declare const __VLS_component: import("vue").DefineComponent<OverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<OverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
12
7
|
click: (event: MouseEvent) => any;
|
|
13
8
|
close: (event: MouseEvent) => any;
|
|
14
9
|
}, string, import("vue").PublicProps, Readonly<OverlayProps> & Readonly<{
|
|
15
10
|
onClick?: (event: MouseEvent) => any;
|
|
16
11
|
onClose?: (event: MouseEvent) => any;
|
|
17
12
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
18
|
-
declare const
|
|
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,10 +1,17 @@
|
|
|
1
1
|
import { PagerProps } from "./@types";
|
|
2
2
|
type __VLS_Props = PagerProps;
|
|
3
|
-
type
|
|
3
|
+
type __VLS_ModelProps = {
|
|
4
|
+
/**
|
|
5
|
+
* 当前页码,并支持覆盖传递的null值为默认值
|
|
6
|
+
*/
|
|
4
7
|
'page'?: number;
|
|
8
|
+
/**
|
|
9
|
+
* 分页大小,并支持覆盖传递的null值为默认值
|
|
10
|
+
*/
|
|
5
11
|
'size'?: number;
|
|
6
|
-
}
|
|
7
|
-
|
|
12
|
+
};
|
|
13
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
14
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
8
15
|
ref: import("vue").Ref<any, any>;
|
|
9
16
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
17
|
"update:page": (value: number) => any;
|
|
@@ -17,7 +24,6 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
17
24
|
"onSize-change"?: (value: number) => any;
|
|
18
25
|
"onUpdate:page"?: (value: number) => any;
|
|
19
26
|
"onUpdate:size"?: (value: number) => any;
|
|
20
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
21
|
-
|
|
22
|
-
}, HTMLDivElement>;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: typeof __VLS_export;
|
|
23
29
|
export default _default;
|
|
@@ -1,161 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { PopoverProps } from "./@types";
|
|
1
|
+
import { PopoverExpose, PopoverProps } from "./@types";
|
|
3
2
|
import { type ScrollerEvent } from "../scroller";
|
|
4
|
-
declare
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
default?(_: {}): any;
|
|
8
|
-
};
|
|
9
|
-
refs: {
|
|
10
|
-
popoverRef: HTMLDivElement;
|
|
11
|
-
scrollerRef: {
|
|
12
|
-
$: import("vue").ComponentInternalInstance;
|
|
13
|
-
$data: {};
|
|
14
|
-
$props: Partial<{}> & Omit<{
|
|
15
|
-
readonly scrollLeft?: number;
|
|
16
|
-
readonly scrollTop?: number;
|
|
17
|
-
readonly onScroll?: (event: ScrollerEvent) => any;
|
|
18
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
19
|
-
$attrs: {
|
|
20
|
-
[x: string]: unknown;
|
|
21
|
-
};
|
|
22
|
-
$refs: {
|
|
23
|
-
[x: string]: unknown;
|
|
24
|
-
} & {
|
|
25
|
-
viewRef: HTMLDivElement;
|
|
26
|
-
verticalRef: HTMLDivElement;
|
|
27
|
-
horizontalRef: HTMLDivElement;
|
|
28
|
-
};
|
|
29
|
-
$slots: Readonly<{
|
|
30
|
-
[name: string]: import("vue").Slot<any>;
|
|
31
|
-
}>;
|
|
32
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
33
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
34
|
-
$host: Element | null;
|
|
35
|
-
$emit: (event: "scroll", event: ScrollerEvent) => void;
|
|
36
|
-
$el: HTMLDivElement;
|
|
37
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("../scroller").ScrollerProps> & Readonly<{
|
|
38
|
-
onScroll?: (event: ScrollerEvent) => any;
|
|
39
|
-
}>, {
|
|
40
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
41
|
-
update: () => void;
|
|
42
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
43
|
-
scroll: (event: ScrollerEvent) => any;
|
|
44
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
45
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
46
|
-
created?: (() => void) | (() => void)[];
|
|
47
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
48
|
-
mounted?: (() => void) | (() => void)[];
|
|
49
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
50
|
-
updated?: (() => void) | (() => void)[];
|
|
51
|
-
activated?: (() => void) | (() => void)[];
|
|
52
|
-
deactivated?: (() => void) | (() => void)[];
|
|
53
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
54
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
55
|
-
destroyed?: (() => void) | (() => void)[];
|
|
56
|
-
unmounted?: (() => void) | (() => void)[];
|
|
57
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
58
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
59
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
60
|
-
};
|
|
61
|
-
$forceUpdate: () => void;
|
|
62
|
-
$nextTick: typeof nextTick;
|
|
63
|
-
$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;
|
|
64
|
-
} & Readonly<{}> & Omit<Readonly<import("../scroller").ScrollerProps> & Readonly<{
|
|
65
|
-
onScroll?: (event: ScrollerEvent) => any;
|
|
66
|
-
}>, "scrollTo" | "update"> & import("vue").ShallowUnwrapRef<{
|
|
67
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
68
|
-
update: () => void;
|
|
69
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
70
|
-
$slots: {
|
|
71
|
-
default?(_: {}): any;
|
|
72
|
-
};
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
|
-
rootEl: any;
|
|
3
|
+
declare var __VLS_21: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
default?: (props: typeof __VLS_21) => any;
|
|
76
6
|
};
|
|
77
|
-
|
|
78
|
-
declare const __VLS_component: import("vue").DefineComponent<PopoverProps, {
|
|
79
|
-
update(): void;
|
|
80
|
-
toggle(event: MouseEvent): void;
|
|
81
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
82
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
83
|
-
close(immediate?: boolean): void;
|
|
84
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
|
+
declare const __VLS_base: import("vue").DefineComponent<PopoverProps, PopoverExpose, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
85
8
|
close: () => any;
|
|
86
9
|
scroll: (event: ScrollerEvent) => any;
|
|
87
10
|
}, string, import("vue").PublicProps, Readonly<PopoverProps> & Readonly<{
|
|
88
11
|
onClose?: () => any;
|
|
89
12
|
onScroll?: (event: ScrollerEvent) => any;
|
|
90
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
$: import("vue").ComponentInternalInstance;
|
|
94
|
-
$data: {};
|
|
95
|
-
$props: Partial<{}> & Omit<{
|
|
96
|
-
readonly scrollLeft?: number;
|
|
97
|
-
readonly scrollTop?: number;
|
|
98
|
-
readonly onScroll?: (event: ScrollerEvent) => any;
|
|
99
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
100
|
-
$attrs: {
|
|
101
|
-
[x: string]: unknown;
|
|
102
|
-
};
|
|
103
|
-
$refs: {
|
|
104
|
-
[x: string]: unknown;
|
|
105
|
-
} & {
|
|
106
|
-
viewRef: HTMLDivElement;
|
|
107
|
-
verticalRef: HTMLDivElement;
|
|
108
|
-
horizontalRef: HTMLDivElement;
|
|
109
|
-
};
|
|
110
|
-
$slots: Readonly<{
|
|
111
|
-
[name: string]: import("vue").Slot<any>;
|
|
112
|
-
}>;
|
|
113
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
114
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
115
|
-
$host: Element | null;
|
|
116
|
-
$emit: (event: "scroll", event: ScrollerEvent) => void;
|
|
117
|
-
$el: HTMLDivElement;
|
|
118
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("../scroller").ScrollerProps> & Readonly<{
|
|
119
|
-
onScroll?: (event: ScrollerEvent) => any;
|
|
120
|
-
}>, {
|
|
121
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
122
|
-
update: () => void;
|
|
123
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
124
|
-
scroll: (event: ScrollerEvent) => any;
|
|
125
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
126
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
127
|
-
created?: (() => void) | (() => void)[];
|
|
128
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
129
|
-
mounted?: (() => void) | (() => void)[];
|
|
130
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
131
|
-
updated?: (() => void) | (() => void)[];
|
|
132
|
-
activated?: (() => void) | (() => void)[];
|
|
133
|
-
deactivated?: (() => void) | (() => void)[];
|
|
134
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
135
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
136
|
-
destroyed?: (() => void) | (() => void)[];
|
|
137
|
-
unmounted?: (() => void) | (() => void)[];
|
|
138
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
139
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
140
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
141
|
-
};
|
|
142
|
-
$forceUpdate: () => void;
|
|
143
|
-
$nextTick: typeof nextTick;
|
|
144
|
-
$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;
|
|
145
|
-
} & Readonly<{}> & Omit<Readonly<import("../scroller").ScrollerProps> & Readonly<{
|
|
146
|
-
onScroll?: (event: ScrollerEvent) => any;
|
|
147
|
-
}>, "scrollTo" | "update"> & import("vue").ShallowUnwrapRef<{
|
|
148
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
149
|
-
update: () => void;
|
|
150
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
151
|
-
$slots: {
|
|
152
|
-
default?(_: {}): any;
|
|
153
|
-
};
|
|
154
|
-
};
|
|
155
|
-
}, any>;
|
|
156
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
157
16
|
export default _default;
|
|
158
|
-
type
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
159
18
|
new (): {
|
|
160
19
|
$slots: S;
|
|
161
20
|
};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
type
|
|
1
|
+
type __VLS_ModelProps = {
|
|
2
2
|
modelValue?: boolean;
|
|
3
3
|
};
|
|
4
|
-
declare const
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
5
|
"update:modelValue": (value: boolean) => any;
|
|
6
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
6
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
7
7
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
8
8
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
9
10
|
export default _default;
|