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,235 +1,13 @@
|
|
|
1
1
|
import { DateProps } from "./@types";
|
|
2
2
|
type __VLS_Props = DateProps;
|
|
3
|
-
type
|
|
3
|
+
type __VLS_ModelProps = {
|
|
4
4
|
modelValue?: string;
|
|
5
|
-
}
|
|
6
|
-
|
|
5
|
+
};
|
|
6
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
8
|
"update:modelValue": (value: string) => any;
|
|
8
9
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
10
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
10
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
11
|
-
|
|
12
|
-
$: import("vue").ComponentInternalInstance;
|
|
13
|
-
$data: {};
|
|
14
|
-
$props: {
|
|
15
|
-
readonly target: HTMLElement;
|
|
16
|
-
readonly trigger?: "hover" | "click";
|
|
17
|
-
readonly direction?: import("../popover").PopoverDirection;
|
|
18
|
-
readonly class?: string;
|
|
19
|
-
readonly delay?: number;
|
|
20
|
-
readonly onClose?: () => any;
|
|
21
|
-
readonly onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
22
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
23
|
-
$attrs: {
|
|
24
|
-
[x: string]: unknown;
|
|
25
|
-
};
|
|
26
|
-
$refs: {
|
|
27
|
-
[x: string]: unknown;
|
|
28
|
-
} & {
|
|
29
|
-
popoverRef: HTMLDivElement;
|
|
30
|
-
scrollerRef: {
|
|
31
|
-
$: import("vue").ComponentInternalInstance;
|
|
32
|
-
$data: {};
|
|
33
|
-
$props: Partial<{}> & Omit<{
|
|
34
|
-
readonly scrollLeft?: number;
|
|
35
|
-
readonly scrollTop?: number;
|
|
36
|
-
readonly onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
37
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
38
|
-
$attrs: {
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
41
|
-
$refs: {
|
|
42
|
-
[x: string]: unknown;
|
|
43
|
-
} & {
|
|
44
|
-
viewRef: HTMLDivElement;
|
|
45
|
-
verticalRef: HTMLDivElement;
|
|
46
|
-
horizontalRef: HTMLDivElement;
|
|
47
|
-
};
|
|
48
|
-
$slots: Readonly<{
|
|
49
|
-
[name: string]: import("vue").Slot<any>;
|
|
50
|
-
}>;
|
|
51
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
52
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
53
|
-
$host: Element | null;
|
|
54
|
-
$emit: (event: "scroll", event: import("..").ScrollerEvent) => void;
|
|
55
|
-
$el: HTMLDivElement;
|
|
56
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("..").ScrollerProps> & Readonly<{
|
|
57
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
58
|
-
}>, {
|
|
59
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
60
|
-
update: () => void;
|
|
61
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
62
|
-
scroll: (event: import("..").ScrollerEvent) => any;
|
|
63
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
64
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
65
|
-
created?: (() => void) | (() => void)[];
|
|
66
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
67
|
-
mounted?: (() => void) | (() => void)[];
|
|
68
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
69
|
-
updated?: (() => void) | (() => void)[];
|
|
70
|
-
activated?: (() => void) | (() => void)[];
|
|
71
|
-
deactivated?: (() => void) | (() => void)[];
|
|
72
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
73
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
74
|
-
destroyed?: (() => void) | (() => void)[];
|
|
75
|
-
unmounted?: (() => void) | (() => void)[];
|
|
76
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
77
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
78
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
79
|
-
};
|
|
80
|
-
$forceUpdate: () => void;
|
|
81
|
-
$nextTick: typeof import("vue").nextTick;
|
|
82
|
-
$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;
|
|
83
|
-
} & Readonly<{}> & Omit<Readonly<import("..").ScrollerProps> & Readonly<{
|
|
84
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
85
|
-
}>, "scrollTo" | "update"> & import("vue").ShallowUnwrapRef<{
|
|
86
|
-
scrollTo: (scrollLeft: number, scrollTop?: number) => void;
|
|
87
|
-
update: () => void;
|
|
88
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
89
|
-
$slots: {
|
|
90
|
-
default?(_: {}): any;
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
$slots: Readonly<{
|
|
95
|
-
[name: string]: import("vue").Slot<any>;
|
|
96
|
-
}>;
|
|
97
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
98
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
99
|
-
$host: Element | null;
|
|
100
|
-
$emit: ((event: "close") => void) & ((event: "scroll", event: import("..").ScrollerEvent) => void);
|
|
101
|
-
$el: any;
|
|
102
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("../popover").PopoverProps> & Readonly<{
|
|
103
|
-
onClose?: () => any;
|
|
104
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
105
|
-
}>, {
|
|
106
|
-
update(): void;
|
|
107
|
-
toggle(event: MouseEvent): void;
|
|
108
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
109
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
110
|
-
close(immediate?: boolean): void;
|
|
111
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
112
|
-
close: () => any;
|
|
113
|
-
scroll: (event: import("..").ScrollerEvent) => any;
|
|
114
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
115
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
116
|
-
created?: (() => void) | (() => void)[];
|
|
117
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
118
|
-
mounted?: (() => void) | (() => void)[];
|
|
119
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
120
|
-
updated?: (() => void) | (() => void)[];
|
|
121
|
-
activated?: (() => void) | (() => void)[];
|
|
122
|
-
deactivated?: (() => void) | (() => void)[];
|
|
123
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
124
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
125
|
-
destroyed?: (() => void) | (() => void)[];
|
|
126
|
-
unmounted?: (() => void) | (() => void)[];
|
|
127
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
128
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
129
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
130
|
-
};
|
|
131
|
-
$forceUpdate: () => void;
|
|
132
|
-
$nextTick: typeof import("vue").nextTick;
|
|
133
|
-
$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;
|
|
134
|
-
} & Readonly<{}> & Omit<Readonly<import("../popover").PopoverProps> & Readonly<{
|
|
135
|
-
onClose?: () => any;
|
|
136
|
-
onScroll?: (event: import("..").ScrollerEvent) => any;
|
|
137
|
-
}>, "close" | "toggle" | "scrollTo" | "update" | "showAsync"> & import("vue").ShallowUnwrapRef<{
|
|
138
|
-
update(): void;
|
|
139
|
-
toggle(event: MouseEvent): void;
|
|
140
|
-
showAsync(event: MouseEvent): Promise<void>;
|
|
141
|
-
scrollTo(scrollLeft: number, scrollTop?: number): void;
|
|
142
|
-
close(immediate?: boolean): void;
|
|
143
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
144
|
-
$slots: {
|
|
145
|
-
default?(_: {}): any;
|
|
146
|
-
};
|
|
147
|
-
};
|
|
148
|
-
inputRef: {
|
|
149
|
-
$: import("vue").ComponentInternalInstance;
|
|
150
|
-
$data: {};
|
|
151
|
-
$props: Partial<{}> & Omit<{
|
|
152
|
-
readonly modelValue?: any;
|
|
153
|
-
readonly type?: "text" | "textarea";
|
|
154
|
-
readonly placeholder?: string;
|
|
155
|
-
readonly onInput?: (event: InputEvent) => any;
|
|
156
|
-
readonly onClear?: (event: MouseEvent) => any;
|
|
157
|
-
readonly onBlur?: (event: MouseEvent) => any;
|
|
158
|
-
readonly onClick?: (event: MouseEvent) => any;
|
|
159
|
-
readonly onFocus?: (event: MouseEvent) => any;
|
|
160
|
-
readonly "onUpdate:modelValue"?: (value: any) => any;
|
|
161
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
162
|
-
$attrs: {
|
|
163
|
-
[x: string]: unknown;
|
|
164
|
-
};
|
|
165
|
-
$refs: {
|
|
166
|
-
[x: string]: unknown;
|
|
167
|
-
} & {
|
|
168
|
-
inputRef: HTMLDivElement;
|
|
169
|
-
innerRef: HTMLTextAreaElement;
|
|
170
|
-
};
|
|
171
|
-
$slots: Readonly<{
|
|
172
|
-
[name: string]: import("vue").Slot<any>;
|
|
173
|
-
}>;
|
|
174
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
175
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
176
|
-
$host: Element | null;
|
|
177
|
-
$emit: ((event: "input", event: InputEvent) => void) & ((event: "clear", event: MouseEvent) => void) & ((event: "blur", event: MouseEvent) => void) & ((event: "click", event: MouseEvent) => void) & ((event: "focus", event: MouseEvent) => void) & ((event: "update:modelValue", value: any) => void);
|
|
178
|
-
$el: HTMLDivElement;
|
|
179
|
-
$options: import("vue").ComponentOptionsBase<Readonly<{
|
|
180
|
-
modelValue?: any;
|
|
181
|
-
} & import("../input").InputProps> & Readonly<{
|
|
182
|
-
onInput?: (event: InputEvent) => any;
|
|
183
|
-
onClear?: (event: MouseEvent) => any;
|
|
184
|
-
onBlur?: (event: MouseEvent) => any;
|
|
185
|
-
onClick?: (event: MouseEvent) => any;
|
|
186
|
-
onFocus?: (event: MouseEvent) => any;
|
|
187
|
-
"onUpdate:modelValue"?: (value: any) => any;
|
|
188
|
-
}>, {
|
|
189
|
-
ref: import("vue").Ref<HTMLElement>;
|
|
190
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
191
|
-
"update:modelValue": (value: any) => any;
|
|
192
|
-
} & {
|
|
193
|
-
input: (event: InputEvent) => any;
|
|
194
|
-
clear: (event: MouseEvent) => any;
|
|
195
|
-
blur: (event: MouseEvent) => any;
|
|
196
|
-
click: (event: MouseEvent) => any;
|
|
197
|
-
focus: (event: MouseEvent) => any;
|
|
198
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
199
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
200
|
-
created?: (() => void) | (() => void)[];
|
|
201
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
202
|
-
mounted?: (() => void) | (() => void)[];
|
|
203
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
204
|
-
updated?: (() => void) | (() => void)[];
|
|
205
|
-
activated?: (() => void) | (() => void)[];
|
|
206
|
-
deactivated?: (() => void) | (() => void)[];
|
|
207
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
208
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
209
|
-
destroyed?: (() => void) | (() => void)[];
|
|
210
|
-
unmounted?: (() => void) | (() => void)[];
|
|
211
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
212
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
213
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
214
|
-
};
|
|
215
|
-
$forceUpdate: () => void;
|
|
216
|
-
$nextTick: typeof import("vue").nextTick;
|
|
217
|
-
$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;
|
|
218
|
-
} & Readonly<{}> & Omit<Readonly<{
|
|
219
|
-
modelValue?: any;
|
|
220
|
-
} & import("../input").InputProps> & Readonly<{
|
|
221
|
-
onInput?: (event: InputEvent) => any;
|
|
222
|
-
onClear?: (event: MouseEvent) => any;
|
|
223
|
-
onBlur?: (event: MouseEvent) => any;
|
|
224
|
-
onClick?: (event: MouseEvent) => any;
|
|
225
|
-
onFocus?: (event: MouseEvent) => any;
|
|
226
|
-
"onUpdate:modelValue"?: (value: any) => any;
|
|
227
|
-
}>, "ref"> & import("vue").ShallowUnwrapRef<{
|
|
228
|
-
ref: import("vue").Ref<HTMLElement>;
|
|
229
|
-
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
230
|
-
$slots: {
|
|
231
|
-
default?(_: {}): any;
|
|
232
|
-
};
|
|
233
|
-
};
|
|
234
|
-
}, HTMLDivElement>;
|
|
11
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
235
13
|
export default _default;
|
|
@@ -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,25 +1,22 @@
|
|
|
1
1
|
import { DateTimeProps } from "./@types";
|
|
2
2
|
type __VLS_Props = DateTimeProps;
|
|
3
|
-
type
|
|
3
|
+
type __VLS_ModelProps = {
|
|
4
4
|
modelValue?: string;
|
|
5
|
-
} & __VLS_Props;
|
|
6
|
-
declare function __VLS_template(): {
|
|
7
|
-
attrs: Partial<{}>;
|
|
8
|
-
slots: {
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: HTMLDivElement;
|
|
13
5
|
};
|
|
14
|
-
type
|
|
15
|
-
declare
|
|
6
|
+
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
7
|
+
declare var __VLS_6: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
default?: (props: typeof __VLS_6) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
12
|
"update:modelValue": (value: string) => any;
|
|
17
13
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
18
14
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
19
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {},
|
|
20
|
-
declare const
|
|
15
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
17
|
+
declare const _default: typeof __VLS_export;
|
|
21
18
|
export default _default;
|
|
22
|
-
type
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
20
|
new (): {
|
|
24
21
|
$slots: S;
|
|
25
22
|
};
|
|
@@ -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,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,7 +1,17 @@
|
|
|
1
1
|
import { DialogOptions, type DialogProps, DialogStatus, DialogState } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
type
|
|
4
|
-
|
|
2
|
+
declare var __VLS_15: {}, __VLS_17: {}, __VLS_19: {}, __VLS_62: {}, __VLS_64: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
shortcut?: (props: typeof __VLS_15) => any;
|
|
5
|
+
} & {
|
|
6
|
+
title?: (props: typeof __VLS_17) => any;
|
|
7
|
+
} & {
|
|
8
|
+
toolbar?: (props: typeof __VLS_19) => any;
|
|
9
|
+
} & {
|
|
10
|
+
default?: (props: typeof __VLS_62) => any;
|
|
11
|
+
} & {
|
|
12
|
+
footer?: (props: typeof __VLS_64) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_base: import("vue").DefineComponent<DialogProps, {
|
|
5
15
|
toggle: (value?: boolean) => void;
|
|
6
16
|
max: () => void;
|
|
7
17
|
update: () => void;
|
|
@@ -72,10 +82,11 @@ declare const __VLS_component: import("vue").DefineComponent<DialogProps, {
|
|
|
72
82
|
onMax?: (options: DialogOptions) => any;
|
|
73
83
|
onMin?: (options: DialogOptions) => any;
|
|
74
84
|
onVisible?: (value: boolean) => any;
|
|
75
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true,
|
|
76
|
-
declare const
|
|
85
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
86
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
87
|
+
declare const _default: typeof __VLS_export;
|
|
77
88
|
export default _default;
|
|
78
|
-
type
|
|
89
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
79
90
|
new (): {
|
|
80
91
|
$slots: S;
|
|
81
92
|
};
|
|
@@ -1,26 +1,19 @@
|
|
|
1
1
|
import { DrawerProps } from "./@types";
|
|
2
|
-
declare
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
};
|
|
8
|
-
refs: {
|
|
9
|
-
drawerRef: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
rootEl: any;
|
|
2
|
+
declare var __VLS_11: {}, __VLS_21: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
title?: (props: typeof __VLS_11) => any;
|
|
5
|
+
} & {
|
|
6
|
+
default?: (props: typeof __VLS_21) => any;
|
|
12
7
|
};
|
|
13
|
-
|
|
14
|
-
declare const __VLS_component: import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
8
|
+
declare const __VLS_base: import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
15
9
|
close: () => any;
|
|
16
10
|
}, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
|
|
17
11
|
onClose?: () => any;
|
|
18
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
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;
|
|
22
15
|
export default _default;
|
|
23
|
-
type
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
17
|
new (): {
|
|
25
18
|
$slots: S;
|
|
26
19
|
};
|