@vtj/ui 0.8.91 → 0.8.93
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/index.mjs +3 -3
- package/dist/index.umd.js +3 -3
- package/package.json +4 -4
- package/types/components/action/Action.d.ts +52 -124
- package/types/components/action/Trigger.d.ts +7 -81
- package/types/components/action/hooks.d.ts +6 -6
- package/types/components/action/types.d.ts +3 -41
- package/types/components/action-bar/ActionBar.d.ts +37 -285
- package/types/components/action-bar/types.d.ts +5 -43
- package/types/components/attachment/Attachment.d.ts +10 -8
- package/types/components/container/Container.d.ts +10 -8
- package/types/components/container/types.d.ts +2 -2
- package/types/components/data-item/DataItem.d.ts +38 -36
- package/types/components/dialog/Dialog.d.ts +14 -16
- package/types/components/dialog/types.d.ts +2 -4
- package/types/components/dialog-form/DialogForm.d.ts +12 -11
- package/types/components/dialog-form/types.d.ts +2 -3
- package/types/components/dialog-grid/DialogGrid.d.ts +8 -6
- package/types/components/field/Field.d.ts +23 -25
- package/types/components/field/editors/SelectEditor.d.ts +8 -6
- package/types/components/field/types.d.ts +3 -5
- package/types/components/form/Form.d.ts +10 -8
- package/types/components/grid/Grid.d.ts +281 -295
- package/types/components/grid/hooks/useEditRender.d.ts +2 -2
- package/types/components/grid/hooks/useLoader.d.ts +251 -267
- package/types/components/grid/hooks/useProps.d.ts +44 -44
- package/types/components/grid/hooks/useState.d.ts +251 -267
- package/types/components/grid/props.d.ts +3 -4
- package/types/components/header/Header.d.ts +8 -6
- package/types/components/icon/Icon.d.ts +9 -11
- package/types/components/icon/types.d.ts +2 -4
- package/types/components/import-button/ImportButton.d.ts +6 -4
- package/types/components/input-unit/InputUnit.d.ts +4 -4
- package/types/components/input-unit/types.d.ts +1 -1
- package/types/components/list/List.d.ts +12 -10
- package/types/components/mask/Mask.d.ts +41 -39
- package/types/components/mask/components/Avatar.d.ts +4 -2
- package/types/components/mask/components/Brand.d.ts +7 -5
- package/types/components/mask/components/Content.d.ts +4 -2
- package/types/components/mask/components/Sidebar.d.ts +4 -2
- package/types/components/mask/components/Toolbar.d.ts +6 -4
- package/types/components/panel/Panel.d.ts +20 -328
- package/types/components/panel/types.d.ts +6 -170
- package/types/components/picker/Picker.d.ts +14 -341
- package/types/components/picker/props.d.ts +7 -176
- package/types/components/qr-code/QrCode.d.ts +6 -4
- package/types/components/query-form/QueryForm.d.ts +29 -27
- package/types/components/tabs/Tabs.d.ts +48 -222
- package/types/components/tabs/types.d.ts +1 -1
- package/types/components/test/Test.d.ts +36 -34
- package/types/install.d.ts +1 -1
- package/types/utils/util.d.ts +1 -1
- package/types/version.d.ts +2 -2
|
@@ -3,7 +3,11 @@ import { UploadUserFile } from 'element-plus';
|
|
|
3
3
|
import { AttachmentFile, AttachmentUploader, AttachmentThumbnail, AttachmentFileType } from './types';
|
|
4
4
|
import { BaseSize, MaybePromise } from '..';
|
|
5
5
|
|
|
6
|
-
declare
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
upload?(_: {}): any;
|
|
8
|
+
tip?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: DefineComponent<{
|
|
7
11
|
modelValue: {
|
|
8
12
|
type: PropType<AttachmentFile[]>;
|
|
9
13
|
default: () => never[];
|
|
@@ -88,15 +92,15 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
88
92
|
selections: Ref<{
|
|
89
93
|
[x: string]: any;
|
|
90
94
|
url: string;
|
|
91
|
-
name?: string
|
|
92
|
-
type?: AttachmentFileType
|
|
95
|
+
name?: string;
|
|
96
|
+
type?: AttachmentFileType;
|
|
93
97
|
}[]>;
|
|
94
98
|
fileList: Ref<UploadUserFile[]>;
|
|
95
99
|
upload: () => void;
|
|
96
100
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
97
101
|
select: (files: AttachmentFile[]) => void;
|
|
98
|
-
click: (file: AttachmentFile) => void;
|
|
99
102
|
change: (files: AttachmentFile[]) => void;
|
|
103
|
+
click: (file: AttachmentFile) => void;
|
|
100
104
|
"update:modelValue": (files: AttachmentFile[]) => void;
|
|
101
105
|
remove: (file: AttachmentFile) => void;
|
|
102
106
|
preview: (file: AttachmentFile) => void;
|
|
@@ -203,10 +207,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
203
207
|
clickable: boolean;
|
|
204
208
|
listType: "card" | "list";
|
|
205
209
|
limitSize: string;
|
|
206
|
-
}, {}
|
|
207
|
-
|
|
208
|
-
tip?(_: {}): any;
|
|
209
|
-
}>;
|
|
210
|
+
}, {}>;
|
|
211
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
210
212
|
export default _default;
|
|
211
213
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
212
214
|
new (): {
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { DefineComponent, PropType, ComputedRef, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
2
|
import { ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent } from './types';
|
|
3
|
-
declare
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: DefineComponent<{
|
|
4
7
|
tag: {
|
|
5
8
|
type: StringConstructor;
|
|
6
9
|
default: string;
|
|
@@ -51,11 +54,11 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
51
54
|
default: boolean;
|
|
52
55
|
};
|
|
53
56
|
alignSelf: {
|
|
54
|
-
type: PropType<
|
|
57
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
|
55
58
|
default: string;
|
|
56
59
|
};
|
|
57
60
|
overflow: {
|
|
58
|
-
type: PropType<"
|
|
61
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
|
59
62
|
};
|
|
60
63
|
padding: {
|
|
61
64
|
type: BooleanConstructor;
|
|
@@ -120,11 +123,11 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
120
123
|
default: boolean;
|
|
121
124
|
};
|
|
122
125
|
alignSelf: {
|
|
123
|
-
type: PropType<
|
|
126
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
|
124
127
|
default: string;
|
|
125
128
|
};
|
|
126
129
|
overflow: {
|
|
127
|
-
type: PropType<"
|
|
130
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
|
128
131
|
};
|
|
129
132
|
padding: {
|
|
130
133
|
type: BooleanConstructor;
|
|
@@ -152,9 +155,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
152
155
|
alignSelf: ContainerAlignItems | "auto";
|
|
153
156
|
gap: boolean;
|
|
154
157
|
autoPointer: boolean;
|
|
155
|
-
}, {}
|
|
156
|
-
|
|
157
|
-
}>;
|
|
158
|
+
}, {}>;
|
|
159
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
158
160
|
export default _default;
|
|
159
161
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
160
162
|
new (): {
|
|
@@ -100,14 +100,14 @@ export declare const containerProps: {
|
|
|
100
100
|
* 单个项目有与其他项目不一样的对齐方式。可覆盖容器的align-items属性
|
|
101
101
|
*/
|
|
102
102
|
alignSelf: {
|
|
103
|
-
type: PropType<
|
|
103
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
|
104
104
|
default: string;
|
|
105
105
|
};
|
|
106
106
|
/**
|
|
107
107
|
* css overflow
|
|
108
108
|
*/
|
|
109
109
|
overflow: {
|
|
110
|
-
type: PropType<"
|
|
110
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
113
|
* 内边距
|
|
@@ -5,7 +5,14 @@ import { EpPropFinalized, EpPropMergeType } from 'element-plus/es/utils/index.mj
|
|
|
5
5
|
import { Arrayable } from 'element-plus/es/utils/typescript.mjs';
|
|
6
6
|
import { BaseSize, BaseType } from '../shared';
|
|
7
7
|
|
|
8
|
-
declare
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
image?(_: {}): any;
|
|
10
|
+
title?(_: {}): any;
|
|
11
|
+
description?(_: {}): any;
|
|
12
|
+
default?(_: {}): any;
|
|
13
|
+
actions?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: DefineComponent<{
|
|
9
16
|
direction: {
|
|
10
17
|
type: PropType<"row" | "column">;
|
|
11
18
|
default: string;
|
|
@@ -72,7 +79,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
72
79
|
};
|
|
73
80
|
dropdown: {
|
|
74
81
|
type: PropType<Partial< ExtractPropTypes<{
|
|
75
|
-
readonly trigger: EpPropFinalized<(new (...args: any[]) =>
|
|
82
|
+
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
76
83
|
readonly effect: {
|
|
77
84
|
readonly default: "light";
|
|
78
85
|
readonly type: PropType<string>;
|
|
@@ -81,13 +88,13 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
81
88
|
readonly __epPropKey: true;
|
|
82
89
|
};
|
|
83
90
|
readonly type: {
|
|
84
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "success" | "warning" | "info" | "
|
|
91
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>) | ((new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>))[], unknown, unknown>>;
|
|
85
92
|
readonly required: false;
|
|
86
93
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
87
94
|
__epPropKey: true;
|
|
88
95
|
};
|
|
89
|
-
readonly placement: EpPropFinalized<(new (...args: any[]) =>
|
|
90
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Options) | (() => Options) | ((new (...args: any[]) => Options) | (() => Options))[], unknown, unknown, () => {}, boolean>;
|
|
96
|
+
readonly placement: EpPropFinalized<(new (...args: any[]) => Placement & {}) | (() => Placement) | ((new (...args: any[]) => Placement & {}) | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
97
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
91
98
|
readonly id: StringConstructor;
|
|
92
99
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
93
100
|
readonly splitButton: BooleanConstructor;
|
|
@@ -95,8 +102,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
95
102
|
readonly loop: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
96
103
|
readonly showTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
97
104
|
readonly hideTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
98
|
-
readonly tabindex: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
99
|
-
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
105
|
+
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
106
|
+
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
100
107
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
101
108
|
readonly disabled: EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
102
109
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
@@ -123,7 +130,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
123
130
|
type: PropType<BaseType>;
|
|
124
131
|
};
|
|
125
132
|
background: {
|
|
126
|
-
type: PropType<"
|
|
133
|
+
type: PropType<"always" | "hover" | "none">;
|
|
127
134
|
default: string;
|
|
128
135
|
};
|
|
129
136
|
circle: {
|
|
@@ -161,7 +168,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
161
168
|
};
|
|
162
169
|
dropdown: {
|
|
163
170
|
type: PropType<Partial< ExtractPropTypes<{
|
|
164
|
-
readonly trigger: EpPropFinalized<(new (...args: any[]) =>
|
|
171
|
+
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
165
172
|
readonly effect: {
|
|
166
173
|
readonly default: "light";
|
|
167
174
|
readonly type: PropType<string>;
|
|
@@ -170,13 +177,13 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
170
177
|
readonly __epPropKey: true;
|
|
171
178
|
};
|
|
172
179
|
readonly type: {
|
|
173
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "success" | "warning" | "info" | "
|
|
180
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>) | ((new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>))[], unknown, unknown>>;
|
|
174
181
|
readonly required: false;
|
|
175
182
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
176
183
|
__epPropKey: true;
|
|
177
184
|
};
|
|
178
|
-
readonly placement: EpPropFinalized<(new (...args: any[]) =>
|
|
179
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Options) | (() => Options) | ((new (...args: any[]) => Options) | (() => Options))[], unknown, unknown, () => {}, boolean>;
|
|
185
|
+
readonly placement: EpPropFinalized<(new (...args: any[]) => Placement & {}) | (() => Placement) | ((new (...args: any[]) => Placement & {}) | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
186
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
180
187
|
readonly id: StringConstructor;
|
|
181
188
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
182
189
|
readonly splitButton: BooleanConstructor;
|
|
@@ -184,8 +191,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
184
191
|
readonly loop: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
185
192
|
readonly showTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
186
193
|
readonly hideTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
187
|
-
readonly tabindex: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
188
|
-
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
194
|
+
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
195
|
+
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
189
196
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
190
197
|
readonly disabled: EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
191
198
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
@@ -212,7 +219,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
212
219
|
type: PropType<BaseType>;
|
|
213
220
|
};
|
|
214
221
|
background: {
|
|
215
|
-
type: PropType<"
|
|
222
|
+
type: PropType<"always" | "hover" | "none">;
|
|
216
223
|
default: string;
|
|
217
224
|
};
|
|
218
225
|
circle: {
|
|
@@ -291,7 +298,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
291
298
|
};
|
|
292
299
|
dropdown: {
|
|
293
300
|
type: PropType<Partial< ExtractPropTypes<{
|
|
294
|
-
readonly trigger: EpPropFinalized<(new (...args: any[]) =>
|
|
301
|
+
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
295
302
|
readonly effect: {
|
|
296
303
|
readonly default: "light";
|
|
297
304
|
readonly type: PropType<string>;
|
|
@@ -300,13 +307,13 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
300
307
|
readonly __epPropKey: true;
|
|
301
308
|
};
|
|
302
309
|
readonly type: {
|
|
303
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "success" | "warning" | "info" | "
|
|
310
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>) | ((new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>))[], unknown, unknown>>;
|
|
304
311
|
readonly required: false;
|
|
305
312
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
306
313
|
__epPropKey: true;
|
|
307
314
|
};
|
|
308
|
-
readonly placement: EpPropFinalized<(new (...args: any[]) =>
|
|
309
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Options) | (() => Options) | ((new (...args: any[]) => Options) | (() => Options))[], unknown, unknown, () => {}, boolean>;
|
|
315
|
+
readonly placement: EpPropFinalized<(new (...args: any[]) => Placement & {}) | (() => Placement) | ((new (...args: any[]) => Placement & {}) | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
316
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
310
317
|
readonly id: StringConstructor;
|
|
311
318
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
312
319
|
readonly splitButton: BooleanConstructor;
|
|
@@ -314,8 +321,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
314
321
|
readonly loop: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
315
322
|
readonly showTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
316
323
|
readonly hideTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
317
|
-
readonly tabindex: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
318
|
-
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
324
|
+
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
325
|
+
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
319
326
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
320
327
|
readonly disabled: EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
321
328
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
@@ -342,7 +349,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
342
349
|
type: PropType<BaseType>;
|
|
343
350
|
};
|
|
344
351
|
background: {
|
|
345
|
-
type: PropType<"
|
|
352
|
+
type: PropType<"always" | "hover" | "none">;
|
|
346
353
|
default: string;
|
|
347
354
|
};
|
|
348
355
|
circle: {
|
|
@@ -380,7 +387,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
380
387
|
};
|
|
381
388
|
dropdown: {
|
|
382
389
|
type: PropType<Partial< ExtractPropTypes<{
|
|
383
|
-
readonly trigger: EpPropFinalized<(new (...args: any[]) =>
|
|
390
|
+
readonly trigger: EpPropFinalized<(new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>) | ((new (...args: any[]) => Arrayable<TooltipTriggerType> & {}) | (() => Arrayable<TooltipTriggerType>))[], unknown, unknown, "hover", boolean>;
|
|
384
391
|
readonly effect: {
|
|
385
392
|
readonly default: "light";
|
|
386
393
|
readonly type: PropType<string>;
|
|
@@ -389,13 +396,13 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
389
396
|
readonly __epPropKey: true;
|
|
390
397
|
};
|
|
391
398
|
readonly type: {
|
|
392
|
-
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => "" | "success" | "warning" | "info" | "
|
|
399
|
+
readonly type: PropType<EpPropMergeType<(new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>) | ((new (...args: any[]) => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown> & {}) | (() => EpPropMergeType<StringConstructor, "" | "default" | "success" | "warning" | "info" | "text" | "primary" | "danger", unknown>))[], unknown, unknown>>;
|
|
393
400
|
readonly required: false;
|
|
394
401
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
395
402
|
__epPropKey: true;
|
|
396
403
|
};
|
|
397
|
-
readonly placement: EpPropFinalized<(new (...args: any[]) =>
|
|
398
|
-
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Options) | (() => Options) | ((new (...args: any[]) => Options) | (() => Options))[], unknown, unknown, () => {}, boolean>;
|
|
404
|
+
readonly placement: EpPropFinalized<(new (...args: any[]) => Placement & {}) | (() => Placement) | ((new (...args: any[]) => Placement & {}) | (() => Placement))[], unknown, unknown, "bottom", boolean>;
|
|
405
|
+
readonly popperOptions: EpPropFinalized<(new (...args: any[]) => Partial<Options>) | (() => Partial<Options>) | ((new (...args: any[]) => Partial<Options>) | (() => Partial<Options>))[], unknown, unknown, () => {}, boolean>;
|
|
399
406
|
readonly id: StringConstructor;
|
|
400
407
|
readonly size: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
401
408
|
readonly splitButton: BooleanConstructor;
|
|
@@ -403,8 +410,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
403
410
|
readonly loop: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
404
411
|
readonly showTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
405
412
|
readonly hideTimeout: EpPropFinalized<NumberConstructor, unknown, unknown, 150, boolean>;
|
|
406
|
-
readonly tabindex: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
407
|
-
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
413
|
+
readonly tabindex: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
414
|
+
readonly maxHeight: EpPropFinalized<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown, "", boolean>;
|
|
408
415
|
readonly popperClass: EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
409
416
|
readonly disabled: EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
|
|
410
417
|
readonly role: EpPropFinalized<StringConstructor, unknown, unknown, "menu", boolean>;
|
|
@@ -431,7 +438,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
431
438
|
type: PropType<BaseType>;
|
|
432
439
|
};
|
|
433
440
|
background: {
|
|
434
|
-
type: PropType<"
|
|
441
|
+
type: PropType<"always" | "hover" | "none">;
|
|
435
442
|
default: string;
|
|
436
443
|
};
|
|
437
444
|
circle: {
|
|
@@ -446,13 +453,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
446
453
|
}, {
|
|
447
454
|
split: boolean;
|
|
448
455
|
direction: "row" | "column";
|
|
449
|
-
}, {}
|
|
450
|
-
|
|
451
|
-
title?(_: {}): any;
|
|
452
|
-
description?(_: {}): any;
|
|
453
|
-
default?(_: {}): any;
|
|
454
|
-
actions?(_: {}): any;
|
|
455
|
-
}>;
|
|
456
|
+
}, {}>;
|
|
457
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
456
458
|
export default _default;
|
|
457
459
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
458
460
|
new (): {
|
|
@@ -1,10 +1,17 @@
|
|
|
1
|
-
import { DefineComponent, PropType, VNode,
|
|
1
|
+
import { DefineComponent, PropType, VNode, ComputedRef, Ref, ComponentOptionsMixin, ComponentInternalInstance, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
2
|
import { IconParam } from '../';
|
|
3
3
|
import { BaseSize } from '../shared';
|
|
4
4
|
import { DraggableOptions, ResizableOptions } from '../../directives';
|
|
5
5
|
import { DialogMode } from './types';
|
|
6
6
|
import { UseMouseSourceType, Position } from '@vueuse/core';
|
|
7
|
-
declare
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
actions?(_: {}): any;
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
footer?(_: {}): any;
|
|
11
|
+
extra?(_: {}): any;
|
|
12
|
+
handle?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_component: DefineComponent<{
|
|
8
15
|
modelValue: {
|
|
9
16
|
type: BooleanConstructor;
|
|
10
17
|
default: boolean;
|
|
@@ -64,9 +71,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
64
71
|
default: string;
|
|
65
72
|
};
|
|
66
73
|
content: {
|
|
67
|
-
type: PropType<
|
|
68
|
-
[key: string]: any;
|
|
69
|
-
}> | DefineComponent<any, any, any, any>>;
|
|
74
|
+
type: PropType< VNode | DefineComponent<any, any, any, any> | Record<string, any>>;
|
|
70
75
|
};
|
|
71
76
|
src: {
|
|
72
77
|
type: StringConstructor;
|
|
@@ -119,8 +124,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
119
124
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
120
125
|
close: () => void;
|
|
121
126
|
cancel: () => void;
|
|
122
|
-
open: (instance: ComponentInternalInstance) => void;
|
|
123
127
|
submit: () => void;
|
|
128
|
+
open: (instance: ComponentInternalInstance) => void;
|
|
124
129
|
resizing: (dir: string, mie: {
|
|
125
130
|
x: Ref<number>;
|
|
126
131
|
y: Ref<number>;
|
|
@@ -229,9 +234,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
229
234
|
default: string;
|
|
230
235
|
};
|
|
231
236
|
content: {
|
|
232
|
-
type: PropType<
|
|
233
|
-
[key: string]: any;
|
|
234
|
-
}> | DefineComponent<any, any, any, any>>;
|
|
237
|
+
type: PropType< VNode | DefineComponent<any, any, any, any> | Record<string, any>>;
|
|
235
238
|
};
|
|
236
239
|
src: {
|
|
237
240
|
type: StringConstructor;
|
|
@@ -321,13 +324,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
321
324
|
maximizable: boolean;
|
|
322
325
|
minimizable: boolean;
|
|
323
326
|
bodyPadding: boolean;
|
|
324
|
-
}, {}
|
|
325
|
-
|
|
326
|
-
default?(_: {}): any;
|
|
327
|
-
footer?(_: {}): any;
|
|
328
|
-
extra?(_: {}): any;
|
|
329
|
-
handle?(_: {}): any;
|
|
330
|
-
}>;
|
|
327
|
+
}, {}>;
|
|
328
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
331
329
|
export default _default;
|
|
332
330
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
333
331
|
new (): {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropType, VNode, DefineComponent, ComponentInternalInstance
|
|
1
|
+
import { PropType, VNode, DefineComponent, ComponentInternalInstance } from 'vue';
|
|
2
2
|
import { Position } from '@vueuse/core';
|
|
3
3
|
import { ComponentPropsType, BaseSize } from '../shared';
|
|
4
4
|
import { IconParam } from '../';
|
|
@@ -65,9 +65,7 @@ export declare const dialogProps: {
|
|
|
65
65
|
default: string;
|
|
66
66
|
};
|
|
67
67
|
content: {
|
|
68
|
-
type: PropType<
|
|
69
|
-
[key: string]: any;
|
|
70
|
-
}> | DefineComponent<any, any, any, any>>;
|
|
68
|
+
type: PropType<VNode | DefineComponent<any, any, any, any> | Record<string, any>>;
|
|
71
69
|
};
|
|
72
70
|
src: {
|
|
73
71
|
type: StringConstructor;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
2
|
import { BaseSize } from '../shared';
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
import { FormRules } from 'element-plus';
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
extra?(_: {}): any;
|
|
7
|
+
handle?(_: {}): any;
|
|
8
|
+
footer?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: DefineComponent<{
|
|
6
11
|
modelValue: {
|
|
7
12
|
type: BooleanConstructor;
|
|
8
13
|
default: boolean;
|
|
@@ -26,7 +31,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
26
31
|
default(): any;
|
|
27
32
|
};
|
|
28
33
|
rules: {
|
|
29
|
-
type: PropType<
|
|
34
|
+
type: PropType<FormRules>;
|
|
30
35
|
};
|
|
31
36
|
submitMethod: {
|
|
32
37
|
type: PropType<(model: Record<string, any>) => Promise<boolean>>;
|
|
@@ -63,7 +68,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
63
68
|
default(): any;
|
|
64
69
|
};
|
|
65
70
|
rules: {
|
|
66
|
-
type: PropType<
|
|
71
|
+
type: PropType<FormRules>;
|
|
67
72
|
};
|
|
68
73
|
submitMethod: {
|
|
69
74
|
type: PropType<(model: Record<string, any>) => Promise<boolean>>;
|
|
@@ -77,12 +82,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
77
82
|
submit: string | boolean;
|
|
78
83
|
modelValue: boolean;
|
|
79
84
|
model: Record<string, any>;
|
|
80
|
-
}, {}
|
|
81
|
-
|
|
82
|
-
extra?(_: {}): any;
|
|
83
|
-
handle?(_: {}): any;
|
|
84
|
-
footer?(_: {}): any;
|
|
85
|
-
}>;
|
|
85
|
+
}, {}>;
|
|
86
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
86
87
|
export default _default;
|
|
87
88
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
88
89
|
new (): {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { ComponentPropsType, BaseSize } from '../shared';
|
|
3
|
-
import {
|
|
4
|
-
import { FormItemRule } from 'element-plus';
|
|
3
|
+
import { FormRules } from 'element-plus';
|
|
5
4
|
|
|
6
5
|
export declare const dialogFormProps: {
|
|
7
6
|
modelValue: {
|
|
@@ -30,7 +29,7 @@ export declare const dialogFormProps: {
|
|
|
30
29
|
default(): any;
|
|
31
30
|
};
|
|
32
31
|
rules: {
|
|
33
|
-
type: PropType<
|
|
32
|
+
type: PropType<FormRules>;
|
|
34
33
|
};
|
|
35
34
|
/**
|
|
36
35
|
* 表单提交处理方法, return true 关闭弹窗
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { DefineComponent, PropType, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
|
|
2
2
|
import { GridColumns } from '../grid';
|
|
3
3
|
import { VxeTableDataRow } from 'vxe-table';
|
|
4
|
-
declare
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
buttons?(_: {}): any;
|
|
6
|
+
top?(_: {}): any;
|
|
7
|
+
extra?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: DefineComponent<{
|
|
5
10
|
modelValue: PropType<boolean>;
|
|
6
11
|
formatter: {
|
|
7
12
|
type: PropType<(model: any) => any[]>;
|
|
@@ -77,11 +82,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
77
82
|
}, {
|
|
78
83
|
plus: boolean;
|
|
79
84
|
minus: boolean;
|
|
80
|
-
}, {}
|
|
81
|
-
|
|
82
|
-
top?(_: {}): any;
|
|
83
|
-
extra?(_: {}): any;
|
|
84
|
-
}>;
|
|
85
|
+
}, {}>;
|
|
86
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
85
87
|
export default _default;
|
|
86
88
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
87
89
|
new (): {
|
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
import { FieldEditorProps, FieldOption, FieldOptionsLoader } from './types';
|
|
2
|
-
import { DefineComponent, PropType, VNode,
|
|
2
|
+
import { DefineComponent, PropType, VNode, Ref, ComponentOptionsMixin, PublicProps, ExtractPropTypes, RendererNode, RendererElement } from 'vue';
|
|
3
3
|
import { BuiltinFieldEditorType } from './builtin';
|
|
4
4
|
import { BaseSize } from '../shared';
|
|
5
5
|
import { ElTooltipProps } from 'element-plus';
|
|
6
6
|
|
|
7
|
-
declare
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
label?(_: {}): any;
|
|
9
|
+
error?(_: {
|
|
10
|
+
error: any;
|
|
11
|
+
}): any;
|
|
12
|
+
editor?(_: {
|
|
13
|
+
editor: FieldEditorProps;
|
|
14
|
+
}): any;
|
|
15
|
+
option?(_: {
|
|
16
|
+
option: any;
|
|
17
|
+
}): any;
|
|
18
|
+
tip?(_: {}): any;
|
|
19
|
+
default?(_: {}): any;
|
|
20
|
+
};
|
|
21
|
+
declare const __VLS_component: DefineComponent<{
|
|
8
22
|
name: {
|
|
9
23
|
type: StringConstructor;
|
|
10
24
|
};
|
|
@@ -12,9 +26,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
12
26
|
type: StringConstructor;
|
|
13
27
|
};
|
|
14
28
|
editor: {
|
|
15
|
-
type: PropType<
|
|
16
|
-
[key: string]: any;
|
|
17
|
-
}> | BuiltinFieldEditorType>;
|
|
29
|
+
type: PropType< BuiltinFieldEditorType | VNode | Record<string, any>>;
|
|
18
30
|
default: string;
|
|
19
31
|
};
|
|
20
32
|
props: {
|
|
@@ -35,7 +47,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
35
47
|
default: boolean;
|
|
36
48
|
};
|
|
37
49
|
tooltipPosition: {
|
|
38
|
-
type: PropType<
|
|
50
|
+
type: PropType<"inner" | "outer" | number>;
|
|
39
51
|
default: string;
|
|
40
52
|
};
|
|
41
53
|
placeholder: {
|
|
@@ -73,9 +85,9 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
73
85
|
focus: () => void;
|
|
74
86
|
blur: () => void;
|
|
75
87
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
76
|
-
focus: () => void;
|
|
77
88
|
blur: () => void;
|
|
78
89
|
change: (value: any) => void;
|
|
90
|
+
focus: () => void;
|
|
79
91
|
"update:modelValue": (value: any) => void;
|
|
80
92
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
81
93
|
name: {
|
|
@@ -85,9 +97,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
85
97
|
type: StringConstructor;
|
|
86
98
|
};
|
|
87
99
|
editor: {
|
|
88
|
-
type: PropType<
|
|
89
|
-
[key: string]: any;
|
|
90
|
-
}> | BuiltinFieldEditorType>;
|
|
100
|
+
type: PropType< BuiltinFieldEditorType | VNode | Record<string, any>>;
|
|
91
101
|
default: string;
|
|
92
102
|
};
|
|
93
103
|
props: {
|
|
@@ -108,7 +118,7 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
108
118
|
default: boolean;
|
|
109
119
|
};
|
|
110
120
|
tooltipPosition: {
|
|
111
|
-
type: PropType<
|
|
121
|
+
type: PropType<"inner" | "outer" | number>;
|
|
112
122
|
default: string;
|
|
113
123
|
};
|
|
114
124
|
placeholder: {
|
|
@@ -153,20 +163,8 @@ declare const _default: __VLS_WithTemplateSlots< DefineComponent<{
|
|
|
153
163
|
}> | BuiltinFieldEditorType;
|
|
154
164
|
tooltipMessage: boolean | Partial< ElTooltipProps>;
|
|
155
165
|
tooltipPosition: number | "outer" | "inner";
|
|
156
|
-
}, {}
|
|
157
|
-
|
|
158
|
-
error?(_: {
|
|
159
|
-
error: any;
|
|
160
|
-
}): any;
|
|
161
|
-
editor?(_: {
|
|
162
|
-
editor: FieldEditorProps;
|
|
163
|
-
}): any;
|
|
164
|
-
option?(_: {
|
|
165
|
-
option: any;
|
|
166
|
-
}): any;
|
|
167
|
-
tip?(_: {}): any;
|
|
168
|
-
default?(_: {}): any;
|
|
169
|
-
}>;
|
|
166
|
+
}, {}>;
|
|
167
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
170
168
|
export default _default;
|
|
171
169
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
172
170
|
new (): {
|