@vtj/ui 0.10.6 → 0.10.8
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 +9 -8
- package/dist/index.umd.js +3 -3
- package/package.json +5 -5
- package/types/components/action/Action.d.ts +10 -3
- package/types/components/attachment/Attachment.d.ts +805 -274
- package/types/components/container/Container.d.ts +15 -178
- package/types/components/data-item/DataItem.d.ts +18 -517
- package/types/components/dialog/Dialog.d.ts +1203 -432
- package/types/components/dialog-form/DialogForm.d.ts +3049 -104
- package/types/components/dialog-grid/DialogGrid.d.ts +4907 -69
- package/types/components/field/Field.d.ts +353 -222
- package/types/components/field/editors/SelectEditor.d.ts +12 -21
- package/types/components/form/Form.d.ts +389 -116
- package/types/components/grid/Grid.d.ts +57 -787
- package/types/components/grid/renderers/components/DateEdit.d.ts +255 -2
- package/types/components/grid/renderers/components/DateFilter.d.ts +1 -1
- package/types/components/grid/renderers/components/GridEdit.d.ts +410 -2
- package/types/components/grid/renderers/components/InputFilter.d.ts +1 -1
- package/types/components/grid/renderers/components/NumberFilter.d.ts +1 -1
- package/types/components/grid/renderers/components/PickerEdit.d.ts +1926 -2
- package/types/components/grid/renderers/components/SelectFilter.d.ts +1 -1
- package/types/components/grid-editor/GridEditor.d.ts +375 -2
- package/types/components/header/Header.d.ts +14 -76
- package/types/components/icon/Icon.d.ts +74 -0
- package/types/components/import-button/ImportButton.d.ts +10 -47
- package/types/components/list/List.d.ts +30 -155
- package/types/components/mask/Mask.d.ts +562 -546
- package/types/components/mask/components/Avatar.d.ts +11 -16
- package/types/components/mask/components/Brand.d.ts +12 -17
- package/types/components/mask/components/Content.d.ts +12 -13
- package/types/components/mask/components/Sidebar.d.ts +12 -15
- package/types/components/mask/components/Tabs.d.ts +255 -2
- package/types/components/mask/components/ThemeSwitch.d.ts +1 -1
- package/types/components/mask/components/Toolbar.d.ts +13 -55
- package/types/components/panel/Panel.d.ts +521 -124
- package/types/components/picker/Dialog.d.ts +1291 -2
- package/types/components/picker/Picker.d.ts +1730 -2
- package/types/components/qr-code/QrCode.d.ts +13 -35
- package/types/components/query-form/QueryForm.d.ts +1105 -418
- package/types/components/startup/Startup.d.ts +1 -1
- package/types/components/tabs/Tabs.d.ts +53 -297
- package/types/components/test/Test.d.ts +41 -268
- package/types/utils/auto-update.d.ts +1 -1
- package/types/version.d.ts +2 -2
@@ -1,374 +1,585 @@
|
|
1
|
-
import {
|
2
|
-
import { ElButton } from 'element-plus';
|
3
|
-
import { XPanel, XAction, XContainer } from '../';
|
4
|
-
import { vDraggable, vResizable } from '../../directives';
|
5
|
-
import { Ref, ComputedRef, DefineComponent, ExtractPropTypes, PropType, VNode, ComponentOptionsMixin, ComponentInternalInstance, PublicProps, ComponentProvideOptions } from 'vue';
|
6
|
-
import { DialogMode } from './types';
|
7
|
-
import { DraggableOptions, ResizableOptions } from '../..';
|
8
|
-
import { IconParam } from '../icon';
|
1
|
+
import { nextTick, ComponentInternalInstance, ExtractPropTypes, PropType, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ComputedRef, ComponentOptionsMixin, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, Ref, DefineComponent, VNode, ShallowRef, PublicProps } from 'vue';
|
9
2
|
import { BaseSize } from '../shared';
|
3
|
+
import { ContainerDirection, ContainerWrap, ContainerJustifyContent, ContainerAlignItems, ContainerAlignContent, ContainerProps } from '../container';
|
4
|
+
import { IconParam } from '../icon';
|
5
|
+
import { OnCleanup } from '@vue/reactivity';
|
6
|
+
import { HeaderProps } from '../header';
|
7
|
+
import { DraggableOptions, ResizableOptions } from '../..';
|
8
|
+
import { DialogMode } from './types';
|
10
9
|
import { UseMouseSourceType, Position } from '@vueuse/core';
|
11
|
-
declare
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
}
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
}
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
}
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
}
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
}
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
10
|
+
declare function __VLS_template(): {
|
11
|
+
attrs: Partial<{}>;
|
12
|
+
slots: {
|
13
|
+
actions?(_: {}): any;
|
14
|
+
default?(_: {}): any;
|
15
|
+
footer?(_: {}): any;
|
16
|
+
extra?(_: {}): any;
|
17
|
+
handle?(_: {}): any;
|
18
|
+
};
|
19
|
+
refs: {
|
20
|
+
wrapper: HTMLDivElement;
|
21
|
+
panelRef: ({
|
22
|
+
$: ComponentInternalInstance;
|
23
|
+
$data: {};
|
24
|
+
$props: Partial<{
|
25
|
+
radius: boolean;
|
26
|
+
fit: boolean;
|
27
|
+
border: boolean;
|
28
|
+
card: boolean;
|
29
|
+
}> & Omit<{
|
30
|
+
readonly radius: boolean;
|
31
|
+
readonly fit: boolean;
|
32
|
+
readonly border: boolean;
|
33
|
+
readonly card: boolean;
|
34
|
+
readonly size?: BaseSize | undefined;
|
35
|
+
readonly body?: Readonly<Partial< ExtractPropTypes<{
|
36
|
+
tag: {
|
37
|
+
type: StringConstructor;
|
38
|
+
default: string;
|
39
|
+
};
|
40
|
+
fit: {
|
41
|
+
type: BooleanConstructor;
|
42
|
+
default: boolean;
|
43
|
+
};
|
44
|
+
width: {
|
45
|
+
type: (StringConstructor | NumberConstructor)[];
|
46
|
+
};
|
47
|
+
height: {
|
48
|
+
type: (StringConstructor | NumberConstructor)[];
|
49
|
+
};
|
50
|
+
flex: {
|
51
|
+
type: BooleanConstructor;
|
52
|
+
default: boolean;
|
53
|
+
};
|
54
|
+
inline: {
|
55
|
+
type: BooleanConstructor;
|
56
|
+
};
|
57
|
+
direction: {
|
58
|
+
type: PropType<ContainerDirection>;
|
59
|
+
default: string;
|
60
|
+
};
|
61
|
+
wrap: {
|
62
|
+
type: PropType<ContainerWrap>;
|
63
|
+
default: string;
|
64
|
+
};
|
65
|
+
justify: {
|
66
|
+
type: PropType<ContainerJustifyContent>;
|
67
|
+
default: string;
|
68
|
+
};
|
69
|
+
align: {
|
70
|
+
type: PropType<ContainerAlignItems>;
|
71
|
+
default: string;
|
72
|
+
};
|
73
|
+
alignContent: {
|
74
|
+
type: PropType<ContainerAlignContent>;
|
75
|
+
default: string;
|
76
|
+
};
|
77
|
+
grow: {
|
78
|
+
type: BooleanConstructor;
|
79
|
+
default: boolean;
|
80
|
+
};
|
81
|
+
shrink: {
|
82
|
+
type: BooleanConstructor;
|
83
|
+
default: boolean;
|
84
|
+
};
|
85
|
+
alignSelf: {
|
86
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
87
|
+
default: string;
|
88
|
+
};
|
89
|
+
overflow: {
|
90
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
91
|
+
};
|
92
|
+
padding: {
|
93
|
+
type: BooleanConstructor;
|
94
|
+
default: boolean;
|
95
|
+
};
|
96
|
+
gap: {
|
97
|
+
type: BooleanConstructor;
|
98
|
+
};
|
99
|
+
autoPointer: {
|
100
|
+
type: BooleanConstructor;
|
101
|
+
};
|
102
|
+
}>>> | undefined;
|
103
|
+
readonly footer?: Readonly<Partial< ExtractPropTypes<{
|
104
|
+
tag: {
|
105
|
+
type: StringConstructor;
|
106
|
+
default: string;
|
107
|
+
};
|
108
|
+
fit: {
|
109
|
+
type: BooleanConstructor;
|
110
|
+
default: boolean;
|
111
|
+
};
|
112
|
+
width: {
|
113
|
+
type: (StringConstructor | NumberConstructor)[];
|
114
|
+
};
|
115
|
+
height: {
|
116
|
+
type: (StringConstructor | NumberConstructor)[];
|
117
|
+
};
|
118
|
+
flex: {
|
119
|
+
type: BooleanConstructor;
|
120
|
+
default: boolean;
|
121
|
+
};
|
122
|
+
inline: {
|
123
|
+
type: BooleanConstructor;
|
124
|
+
};
|
125
|
+
direction: {
|
126
|
+
type: PropType<ContainerDirection>;
|
127
|
+
default: string;
|
128
|
+
};
|
129
|
+
wrap: {
|
130
|
+
type: PropType<ContainerWrap>;
|
131
|
+
default: string;
|
132
|
+
};
|
133
|
+
justify: {
|
134
|
+
type: PropType<ContainerJustifyContent>;
|
135
|
+
default: string;
|
136
|
+
};
|
137
|
+
align: {
|
138
|
+
type: PropType<ContainerAlignItems>;
|
139
|
+
default: string;
|
140
|
+
};
|
141
|
+
alignContent: {
|
142
|
+
type: PropType<ContainerAlignContent>;
|
143
|
+
default: string;
|
144
|
+
};
|
145
|
+
grow: {
|
146
|
+
type: BooleanConstructor;
|
147
|
+
default: boolean;
|
148
|
+
};
|
149
|
+
shrink: {
|
150
|
+
type: BooleanConstructor;
|
151
|
+
default: boolean;
|
152
|
+
};
|
153
|
+
alignSelf: {
|
154
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
155
|
+
default: string;
|
156
|
+
};
|
157
|
+
overflow: {
|
158
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
159
|
+
};
|
160
|
+
padding: {
|
161
|
+
type: BooleanConstructor;
|
162
|
+
default: boolean;
|
163
|
+
};
|
164
|
+
gap: {
|
165
|
+
type: BooleanConstructor;
|
166
|
+
};
|
167
|
+
autoPointer: {
|
168
|
+
type: BooleanConstructor;
|
169
|
+
};
|
170
|
+
}>>> | undefined;
|
171
|
+
readonly header?: string | Readonly<Partial< ExtractPropTypes<{
|
172
|
+
size: {
|
173
|
+
type: PropType<BaseSize>;
|
174
|
+
default: string;
|
175
|
+
};
|
176
|
+
content: {
|
177
|
+
type: StringConstructor;
|
178
|
+
default: string;
|
179
|
+
};
|
180
|
+
subtitle: {
|
181
|
+
type: StringConstructor;
|
182
|
+
};
|
183
|
+
icon: {
|
184
|
+
type: PropType<IconParam>;
|
185
|
+
};
|
186
|
+
border: {
|
187
|
+
type: BooleanConstructor;
|
188
|
+
};
|
189
|
+
more: {
|
190
|
+
type: BooleanConstructor;
|
191
|
+
};
|
192
|
+
}>>> | null | undefined;
|
193
|
+
readonly width?: string | number | undefined;
|
194
|
+
readonly height?: string | number | undefined;
|
195
|
+
readonly shadow?: "none" | "hover" | "always" | undefined;
|
196
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
|
197
|
+
$attrs: {
|
198
|
+
[x: string]: unknown;
|
199
|
+
};
|
200
|
+
$refs: {
|
201
|
+
[x: string]: unknown;
|
202
|
+
} & {
|
203
|
+
bodyRef: ({
|
204
|
+
$: ComponentInternalInstance;
|
205
|
+
$data: {};
|
206
|
+
$props: Partial<{
|
207
|
+
padding: boolean;
|
208
|
+
tag: string;
|
209
|
+
wrap: ContainerWrap;
|
210
|
+
fit: boolean;
|
211
|
+
flex: boolean;
|
212
|
+
inline: boolean;
|
213
|
+
direction: ContainerDirection;
|
214
|
+
justify: ContainerJustifyContent;
|
215
|
+
align: ContainerAlignItems;
|
216
|
+
alignContent: ContainerAlignContent;
|
217
|
+
grow: boolean;
|
218
|
+
shrink: boolean;
|
219
|
+
alignSelf: "auto" | ContainerAlignItems;
|
220
|
+
gap: boolean;
|
221
|
+
autoPointer: boolean;
|
222
|
+
}> & Omit<{
|
223
|
+
readonly padding: boolean;
|
224
|
+
readonly tag: string;
|
225
|
+
readonly wrap: ContainerWrap;
|
226
|
+
readonly fit: boolean;
|
227
|
+
readonly flex: boolean;
|
228
|
+
readonly inline: boolean;
|
229
|
+
readonly direction: ContainerDirection;
|
230
|
+
readonly justify: ContainerJustifyContent;
|
231
|
+
readonly align: ContainerAlignItems;
|
232
|
+
readonly alignContent: ContainerAlignContent;
|
233
|
+
readonly grow: boolean;
|
234
|
+
readonly shrink: boolean;
|
235
|
+
readonly alignSelf: "auto" | ContainerAlignItems;
|
236
|
+
readonly gap: boolean;
|
237
|
+
readonly autoPointer: boolean;
|
238
|
+
readonly width?: string | number | undefined;
|
239
|
+
readonly height?: string | number | undefined;
|
240
|
+
readonly overflow?: "hidden" | "auto" | "visible" | undefined;
|
241
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
|
242
|
+
$attrs: {
|
243
|
+
[x: string]: unknown;
|
244
|
+
};
|
245
|
+
$refs: {
|
246
|
+
[x: string]: unknown;
|
247
|
+
} & {
|
248
|
+
elRef: unknown;
|
249
|
+
};
|
250
|
+
$slots: Readonly<{
|
251
|
+
[name: string]: Slot<any> | undefined;
|
252
|
+
}>;
|
253
|
+
$root: ComponentPublicInstance | null;
|
254
|
+
$parent: ComponentPublicInstance | null;
|
255
|
+
$host: Element | null;
|
256
|
+
$emit: (event: string, ...args: any[]) => void;
|
257
|
+
$el: any;
|
258
|
+
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
259
|
+
tag: {
|
260
|
+
type: StringConstructor;
|
261
|
+
default: string;
|
262
|
+
};
|
263
|
+
fit: {
|
264
|
+
type: BooleanConstructor;
|
265
|
+
default: boolean;
|
266
|
+
};
|
267
|
+
width: {
|
268
|
+
type: (StringConstructor | NumberConstructor)[];
|
269
|
+
};
|
270
|
+
height: {
|
271
|
+
type: (StringConstructor | NumberConstructor)[];
|
272
|
+
};
|
273
|
+
flex: {
|
274
|
+
type: BooleanConstructor;
|
275
|
+
default: boolean;
|
276
|
+
};
|
277
|
+
inline: {
|
278
|
+
type: BooleanConstructor;
|
279
|
+
};
|
280
|
+
direction: {
|
281
|
+
type: PropType<ContainerDirection>;
|
282
|
+
default: string;
|
283
|
+
};
|
284
|
+
wrap: {
|
285
|
+
type: PropType<ContainerWrap>;
|
286
|
+
default: string;
|
287
|
+
};
|
288
|
+
justify: {
|
289
|
+
type: PropType<ContainerJustifyContent>;
|
290
|
+
default: string;
|
291
|
+
};
|
292
|
+
align: {
|
293
|
+
type: PropType<ContainerAlignItems>;
|
294
|
+
default: string;
|
295
|
+
};
|
296
|
+
alignContent: {
|
297
|
+
type: PropType<ContainerAlignContent>;
|
298
|
+
default: string;
|
299
|
+
};
|
300
|
+
grow: {
|
301
|
+
type: BooleanConstructor;
|
302
|
+
default: boolean;
|
303
|
+
};
|
304
|
+
shrink: {
|
305
|
+
type: BooleanConstructor;
|
306
|
+
default: boolean;
|
307
|
+
};
|
308
|
+
alignSelf: {
|
309
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
310
|
+
default: string;
|
311
|
+
};
|
312
|
+
overflow: {
|
313
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
314
|
+
};
|
315
|
+
padding: {
|
316
|
+
type: BooleanConstructor;
|
317
|
+
default: boolean;
|
318
|
+
};
|
319
|
+
gap: {
|
320
|
+
type: BooleanConstructor;
|
321
|
+
};
|
322
|
+
autoPointer: {
|
323
|
+
type: BooleanConstructor;
|
324
|
+
};
|
325
|
+
}>> & Readonly<{}>, {
|
326
|
+
$vtjEl: ComputedRef<any>;
|
327
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
328
|
+
padding: boolean;
|
329
|
+
tag: string;
|
330
|
+
wrap: ContainerWrap;
|
331
|
+
fit: boolean;
|
332
|
+
flex: boolean;
|
333
|
+
inline: boolean;
|
334
|
+
direction: ContainerDirection;
|
335
|
+
justify: ContainerJustifyContent;
|
336
|
+
align: ContainerAlignItems;
|
337
|
+
alignContent: ContainerAlignContent;
|
338
|
+
grow: boolean;
|
339
|
+
shrink: boolean;
|
340
|
+
alignSelf: "auto" | ContainerAlignItems;
|
341
|
+
gap: boolean;
|
342
|
+
autoPointer: boolean;
|
343
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
344
|
+
beforeCreate?: (() => void) | (() => void)[];
|
345
|
+
created?: (() => void) | (() => void)[];
|
346
|
+
beforeMount?: (() => void) | (() => void)[];
|
347
|
+
mounted?: (() => void) | (() => void)[];
|
348
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
349
|
+
updated?: (() => void) | (() => void)[];
|
350
|
+
activated?: (() => void) | (() => void)[];
|
351
|
+
deactivated?: (() => void) | (() => void)[];
|
352
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
353
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
354
|
+
destroyed?: (() => void) | (() => void)[];
|
355
|
+
unmounted?: (() => void) | (() => void)[];
|
356
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
357
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
358
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
359
|
+
};
|
360
|
+
$forceUpdate: () => void;
|
361
|
+
$nextTick: typeof nextTick;
|
362
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
363
|
+
} & Readonly<{
|
364
|
+
padding: boolean;
|
365
|
+
tag: string;
|
366
|
+
wrap: ContainerWrap;
|
367
|
+
fit: boolean;
|
368
|
+
flex: boolean;
|
369
|
+
inline: boolean;
|
370
|
+
direction: ContainerDirection;
|
371
|
+
justify: ContainerJustifyContent;
|
372
|
+
align: ContainerAlignItems;
|
373
|
+
alignContent: ContainerAlignContent;
|
374
|
+
grow: boolean;
|
375
|
+
shrink: boolean;
|
376
|
+
alignSelf: "auto" | ContainerAlignItems;
|
377
|
+
gap: boolean;
|
378
|
+
autoPointer: boolean;
|
379
|
+
}> & Omit<Readonly< ExtractPropTypes<{
|
380
|
+
tag: {
|
381
|
+
type: StringConstructor;
|
382
|
+
default: string;
|
383
|
+
};
|
384
|
+
fit: {
|
385
|
+
type: BooleanConstructor;
|
386
|
+
default: boolean;
|
387
|
+
};
|
388
|
+
width: {
|
389
|
+
type: (StringConstructor | NumberConstructor)[];
|
390
|
+
};
|
391
|
+
height: {
|
392
|
+
type: (StringConstructor | NumberConstructor)[];
|
393
|
+
};
|
394
|
+
flex: {
|
395
|
+
type: BooleanConstructor;
|
396
|
+
default: boolean;
|
397
|
+
};
|
398
|
+
inline: {
|
399
|
+
type: BooleanConstructor;
|
400
|
+
};
|
401
|
+
direction: {
|
402
|
+
type: PropType<ContainerDirection>;
|
403
|
+
default: string;
|
404
|
+
};
|
405
|
+
wrap: {
|
406
|
+
type: PropType<ContainerWrap>;
|
407
|
+
default: string;
|
408
|
+
};
|
409
|
+
justify: {
|
410
|
+
type: PropType<ContainerJustifyContent>;
|
411
|
+
default: string;
|
412
|
+
};
|
413
|
+
align: {
|
414
|
+
type: PropType<ContainerAlignItems>;
|
415
|
+
default: string;
|
416
|
+
};
|
417
|
+
alignContent: {
|
418
|
+
type: PropType<ContainerAlignContent>;
|
419
|
+
default: string;
|
420
|
+
};
|
421
|
+
grow: {
|
422
|
+
type: BooleanConstructor;
|
423
|
+
default: boolean;
|
424
|
+
};
|
425
|
+
shrink: {
|
426
|
+
type: BooleanConstructor;
|
427
|
+
default: boolean;
|
428
|
+
};
|
429
|
+
alignSelf: {
|
430
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
431
|
+
default: string;
|
432
|
+
};
|
433
|
+
overflow: {
|
434
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
435
|
+
};
|
436
|
+
padding: {
|
437
|
+
type: BooleanConstructor;
|
438
|
+
default: boolean;
|
439
|
+
};
|
440
|
+
gap: {
|
441
|
+
type: BooleanConstructor;
|
442
|
+
};
|
443
|
+
autoPointer: {
|
444
|
+
type: BooleanConstructor;
|
445
|
+
};
|
446
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & ShallowUnwrapRef<{
|
447
|
+
$vtjEl: ComputedRef<any>;
|
448
|
+
}> & {} & ComponentCustomProperties & {} & {
|
449
|
+
$slots: {
|
450
|
+
default?(_: {}): any;
|
451
|
+
};
|
452
|
+
}) | null;
|
453
|
+
};
|
454
|
+
$slots: Readonly<{
|
455
|
+
[name: string]: Slot<any> | undefined;
|
456
|
+
}>;
|
457
|
+
$root: ComponentPublicInstance | null;
|
458
|
+
$parent: ComponentPublicInstance | null;
|
459
|
+
$host: Element | null;
|
460
|
+
$emit: (event: string, ...args: any[]) => void;
|
461
|
+
$el: any;
|
462
|
+
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
463
|
+
fit: {
|
464
|
+
type: BooleanConstructor;
|
465
|
+
default: boolean;
|
466
|
+
};
|
467
|
+
width: {
|
468
|
+
type: (StringConstructor | NumberConstructor)[];
|
469
|
+
};
|
470
|
+
height: {
|
471
|
+
type: (StringConstructor | NumberConstructor)[];
|
472
|
+
};
|
473
|
+
border: {
|
474
|
+
type: BooleanConstructor;
|
475
|
+
default: boolean;
|
476
|
+
};
|
477
|
+
radius: {
|
478
|
+
type: BooleanConstructor;
|
479
|
+
default: boolean;
|
480
|
+
};
|
481
|
+
card: {
|
482
|
+
type: BooleanConstructor;
|
483
|
+
};
|
484
|
+
size: {
|
485
|
+
type: PropType<BaseSize>;
|
486
|
+
};
|
487
|
+
shadow: {
|
488
|
+
type: PropType<"none" | "always" | "hover">;
|
489
|
+
};
|
490
|
+
header: {
|
491
|
+
type: PropType<string | HeaderProps | null>;
|
492
|
+
};
|
493
|
+
body: {
|
494
|
+
type: PropType<ContainerProps>;
|
495
|
+
};
|
496
|
+
footer: {
|
497
|
+
type: PropType<ContainerProps>;
|
498
|
+
};
|
499
|
+
}>> & Readonly<{}>, {
|
500
|
+
bodyRef: Ref<any, any>;
|
501
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
502
|
+
radius: boolean;
|
503
|
+
fit: boolean;
|
504
|
+
border: boolean;
|
505
|
+
card: boolean;
|
506
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
507
|
+
beforeCreate?: (() => void) | (() => void)[];
|
508
|
+
created?: (() => void) | (() => void)[];
|
509
|
+
beforeMount?: (() => void) | (() => void)[];
|
510
|
+
mounted?: (() => void) | (() => void)[];
|
511
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
512
|
+
updated?: (() => void) | (() => void)[];
|
513
|
+
activated?: (() => void) | (() => void)[];
|
514
|
+
deactivated?: (() => void) | (() => void)[];
|
515
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
516
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
517
|
+
destroyed?: (() => void) | (() => void)[];
|
518
|
+
unmounted?: (() => void) | (() => void)[];
|
519
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
520
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
521
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
522
|
+
};
|
523
|
+
$forceUpdate: () => void;
|
524
|
+
$nextTick: typeof nextTick;
|
525
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
526
|
+
} & Readonly<{
|
527
|
+
radius: boolean;
|
528
|
+
fit: boolean;
|
529
|
+
border: boolean;
|
530
|
+
card: boolean;
|
531
|
+
}> & Omit<Readonly< ExtractPropTypes<{
|
532
|
+
fit: {
|
533
|
+
type: BooleanConstructor;
|
534
|
+
default: boolean;
|
535
|
+
};
|
536
|
+
width: {
|
537
|
+
type: (StringConstructor | NumberConstructor)[];
|
538
|
+
};
|
539
|
+
height: {
|
540
|
+
type: (StringConstructor | NumberConstructor)[];
|
541
|
+
};
|
542
|
+
border: {
|
543
|
+
type: BooleanConstructor;
|
544
|
+
default: boolean;
|
545
|
+
};
|
546
|
+
radius: {
|
547
|
+
type: BooleanConstructor;
|
548
|
+
default: boolean;
|
549
|
+
};
|
550
|
+
card: {
|
551
|
+
type: BooleanConstructor;
|
552
|
+
};
|
553
|
+
size: {
|
554
|
+
type: PropType<BaseSize>;
|
555
|
+
};
|
556
|
+
shadow: {
|
557
|
+
type: PropType<"none" | "always" | "hover">;
|
558
|
+
};
|
559
|
+
header: {
|
560
|
+
type: PropType<string | HeaderProps | null>;
|
561
|
+
};
|
562
|
+
body: {
|
563
|
+
type: PropType<ContainerProps>;
|
564
|
+
};
|
565
|
+
footer: {
|
566
|
+
type: PropType<ContainerProps>;
|
567
|
+
};
|
568
|
+
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> & ShallowUnwrapRef<{
|
569
|
+
bodyRef: Ref<any, any>;
|
570
|
+
}> & {} & ComponentCustomProperties & {} & {
|
571
|
+
$slots: {
|
572
|
+
header?(_: {}): any;
|
573
|
+
title?(_: {}): any;
|
574
|
+
actions?(_: {}): any;
|
575
|
+
default?(_: {}): any;
|
576
|
+
footer?(_: {}): any;
|
577
|
+
};
|
578
|
+
}) | null;
|
579
|
+
};
|
580
|
+
rootEl: any;
|
581
|
+
};
|
582
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
372
583
|
declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
373
584
|
modelValue: {
|
374
585
|
type: BooleanConstructor;
|
@@ -488,16 +699,16 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
488
699
|
cancel: () => any;
|
489
700
|
submit: () => any;
|
490
701
|
resizing: (dir: string, mie: {
|
491
|
-
x:
|
492
|
-
y:
|
493
|
-
sourceType:
|
494
|
-
elementX:
|
495
|
-
elementY:
|
496
|
-
elementPositionX:
|
497
|
-
elementPositionY:
|
498
|
-
elementHeight:
|
499
|
-
elementWidth:
|
500
|
-
isOutside:
|
702
|
+
x: ShallowRef<number, number>;
|
703
|
+
y: ShallowRef<number, number>;
|
704
|
+
sourceType: ShallowRef<UseMouseSourceType, UseMouseSourceType>;
|
705
|
+
elementX: ShallowRef<number, number>;
|
706
|
+
elementY: ShallowRef<number, number>;
|
707
|
+
elementPositionX: ShallowRef<number, number>;
|
708
|
+
elementPositionY: ShallowRef<number, number>;
|
709
|
+
elementHeight: ShallowRef<number, number>;
|
710
|
+
elementWidth: ShallowRef<number, number>;
|
711
|
+
isOutside: ShallowRef<boolean, boolean>;
|
501
712
|
stop: () => void;
|
502
713
|
}) => any;
|
503
714
|
normal: () => any;
|
@@ -510,29 +721,29 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
510
721
|
dragStart: (position: Position) => any;
|
511
722
|
dragEnd: (position: Position) => any;
|
512
723
|
resizeStart: (dir: string, mie: {
|
513
|
-
x:
|
514
|
-
y:
|
515
|
-
sourceType:
|
516
|
-
elementX:
|
517
|
-
elementY:
|
518
|
-
elementPositionX:
|
519
|
-
elementPositionY:
|
520
|
-
elementHeight:
|
521
|
-
elementWidth:
|
522
|
-
isOutside:
|
724
|
+
x: ShallowRef<number, number>;
|
725
|
+
y: ShallowRef<number, number>;
|
726
|
+
sourceType: ShallowRef<UseMouseSourceType, UseMouseSourceType>;
|
727
|
+
elementX: ShallowRef<number, number>;
|
728
|
+
elementY: ShallowRef<number, number>;
|
729
|
+
elementPositionX: ShallowRef<number, number>;
|
730
|
+
elementPositionY: ShallowRef<number, number>;
|
731
|
+
elementHeight: ShallowRef<number, number>;
|
732
|
+
elementWidth: ShallowRef<number, number>;
|
733
|
+
isOutside: ShallowRef<boolean, boolean>;
|
523
734
|
stop: () => void;
|
524
735
|
}) => any;
|
525
736
|
resizeEnd: (dir: string, mie: {
|
526
|
-
x:
|
527
|
-
y:
|
528
|
-
sourceType:
|
529
|
-
elementX:
|
530
|
-
elementY:
|
531
|
-
elementPositionX:
|
532
|
-
elementPositionY:
|
533
|
-
elementHeight:
|
534
|
-
elementWidth:
|
535
|
-
isOutside:
|
737
|
+
x: ShallowRef<number, number>;
|
738
|
+
y: ShallowRef<number, number>;
|
739
|
+
sourceType: ShallowRef<UseMouseSourceType, UseMouseSourceType>;
|
740
|
+
elementX: ShallowRef<number, number>;
|
741
|
+
elementY: ShallowRef<number, number>;
|
742
|
+
elementPositionX: ShallowRef<number, number>;
|
743
|
+
elementPositionY: ShallowRef<number, number>;
|
744
|
+
elementHeight: ShallowRef<number, number>;
|
745
|
+
elementWidth: ShallowRef<number, number>;
|
746
|
+
isOutside: ShallowRef<boolean, boolean>;
|
536
747
|
stop: () => void;
|
537
748
|
}) => any;
|
538
749
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
@@ -628,16 +839,16 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
628
839
|
onCancel?: (() => any) | undefined;
|
629
840
|
onSubmit?: (() => any) | undefined;
|
630
841
|
onResizing?: ((dir: string, mie: {
|
631
|
-
x:
|
632
|
-
y:
|
633
|
-
sourceType:
|
634
|
-
elementX:
|
635
|
-
elementY:
|
636
|
-
elementPositionX:
|
637
|
-
elementPositionY:
|
638
|
-
elementHeight:
|
639
|
-
elementWidth:
|
640
|
-
isOutside:
|
842
|
+
x: ShallowRef<number, number>;
|
843
|
+
y: ShallowRef<number, number>;
|
844
|
+
sourceType: ShallowRef<UseMouseSourceType, UseMouseSourceType>;
|
845
|
+
elementX: ShallowRef<number, number>;
|
846
|
+
elementY: ShallowRef<number, number>;
|
847
|
+
elementPositionX: ShallowRef<number, number>;
|
848
|
+
elementPositionY: ShallowRef<number, number>;
|
849
|
+
elementHeight: ShallowRef<number, number>;
|
850
|
+
elementWidth: ShallowRef<number, number>;
|
851
|
+
isOutside: ShallowRef<boolean, boolean>;
|
641
852
|
stop: () => void;
|
642
853
|
}) => any) | undefined;
|
643
854
|
onNormal?: (() => any) | undefined;
|
@@ -650,29 +861,29 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
650
861
|
onDragStart?: ((position: Position) => any) | undefined;
|
651
862
|
onDragEnd?: ((position: Position) => any) | undefined;
|
652
863
|
onResizeStart?: ((dir: string, mie: {
|
653
|
-
x:
|
654
|
-
y:
|
655
|
-
sourceType:
|
656
|
-
elementX:
|
657
|
-
elementY:
|
658
|
-
elementPositionX:
|
659
|
-
elementPositionY:
|
660
|
-
elementHeight:
|
661
|
-
elementWidth:
|
662
|
-
isOutside:
|
864
|
+
x: ShallowRef<number, number>;
|
865
|
+
y: ShallowRef<number, number>;
|
866
|
+
sourceType: ShallowRef<UseMouseSourceType, UseMouseSourceType>;
|
867
|
+
elementX: ShallowRef<number, number>;
|
868
|
+
elementY: ShallowRef<number, number>;
|
869
|
+
elementPositionX: ShallowRef<number, number>;
|
870
|
+
elementPositionY: ShallowRef<number, number>;
|
871
|
+
elementHeight: ShallowRef<number, number>;
|
872
|
+
elementWidth: ShallowRef<number, number>;
|
873
|
+
isOutside: ShallowRef<boolean, boolean>;
|
663
874
|
stop: () => void;
|
664
875
|
}) => any) | undefined;
|
665
876
|
onResizeEnd?: ((dir: string, mie: {
|
666
|
-
x:
|
667
|
-
y:
|
668
|
-
sourceType:
|
669
|
-
elementX:
|
670
|
-
elementY:
|
671
|
-
elementPositionX:
|
672
|
-
elementPositionY:
|
673
|
-
elementHeight:
|
674
|
-
elementWidth:
|
675
|
-
isOutside:
|
877
|
+
x: ShallowRef<number, number>;
|
878
|
+
y: ShallowRef<number, number>;
|
879
|
+
sourceType: ShallowRef<UseMouseSourceType, UseMouseSourceType>;
|
880
|
+
elementX: ShallowRef<number, number>;
|
881
|
+
elementY: ShallowRef<number, number>;
|
882
|
+
elementPositionX: ShallowRef<number, number>;
|
883
|
+
elementPositionY: ShallowRef<number, number>;
|
884
|
+
elementHeight: ShallowRef<number, number>;
|
885
|
+
elementWidth: ShallowRef<number, number>;
|
886
|
+
isOutside: ShallowRef<boolean, boolean>;
|
676
887
|
stop: () => void;
|
677
888
|
}) => any) | undefined;
|
678
889
|
}>, {
|
@@ -689,10 +900,570 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
689
900
|
maximizable: boolean;
|
690
901
|
minimizable: boolean;
|
691
902
|
bodyPadding: boolean;
|
692
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
693
|
-
|
903
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
904
|
+
wrapper: HTMLDivElement;
|
905
|
+
panelRef: ({
|
906
|
+
$: ComponentInternalInstance;
|
907
|
+
$data: {};
|
908
|
+
$props: Partial<{
|
909
|
+
radius: boolean;
|
910
|
+
fit: boolean;
|
911
|
+
border: boolean;
|
912
|
+
card: boolean;
|
913
|
+
}> & Omit<{
|
914
|
+
readonly radius: boolean;
|
915
|
+
readonly fit: boolean;
|
916
|
+
readonly border: boolean;
|
917
|
+
readonly card: boolean;
|
918
|
+
readonly size?: BaseSize | undefined;
|
919
|
+
readonly body?: Readonly<Partial< ExtractPropTypes<{
|
920
|
+
tag: {
|
921
|
+
type: StringConstructor;
|
922
|
+
default: string;
|
923
|
+
};
|
924
|
+
fit: {
|
925
|
+
type: BooleanConstructor;
|
926
|
+
default: boolean;
|
927
|
+
};
|
928
|
+
width: {
|
929
|
+
type: (StringConstructor | NumberConstructor)[];
|
930
|
+
};
|
931
|
+
height: {
|
932
|
+
type: (StringConstructor | NumberConstructor)[];
|
933
|
+
};
|
934
|
+
flex: {
|
935
|
+
type: BooleanConstructor;
|
936
|
+
default: boolean;
|
937
|
+
};
|
938
|
+
inline: {
|
939
|
+
type: BooleanConstructor;
|
940
|
+
};
|
941
|
+
direction: {
|
942
|
+
type: PropType<ContainerDirection>;
|
943
|
+
default: string;
|
944
|
+
};
|
945
|
+
wrap: {
|
946
|
+
type: PropType<ContainerWrap>;
|
947
|
+
default: string;
|
948
|
+
};
|
949
|
+
justify: {
|
950
|
+
type: PropType<ContainerJustifyContent>;
|
951
|
+
default: string;
|
952
|
+
};
|
953
|
+
align: {
|
954
|
+
type: PropType<ContainerAlignItems>;
|
955
|
+
default: string;
|
956
|
+
};
|
957
|
+
alignContent: {
|
958
|
+
type: PropType<ContainerAlignContent>;
|
959
|
+
default: string;
|
960
|
+
};
|
961
|
+
grow: {
|
962
|
+
type: BooleanConstructor;
|
963
|
+
default: boolean;
|
964
|
+
};
|
965
|
+
shrink: {
|
966
|
+
type: BooleanConstructor;
|
967
|
+
default: boolean;
|
968
|
+
};
|
969
|
+
alignSelf: {
|
970
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
971
|
+
default: string;
|
972
|
+
};
|
973
|
+
overflow: {
|
974
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
975
|
+
};
|
976
|
+
padding: {
|
977
|
+
type: BooleanConstructor;
|
978
|
+
default: boolean;
|
979
|
+
};
|
980
|
+
gap: {
|
981
|
+
type: BooleanConstructor;
|
982
|
+
};
|
983
|
+
autoPointer: {
|
984
|
+
type: BooleanConstructor;
|
985
|
+
};
|
986
|
+
}>>> | undefined;
|
987
|
+
readonly footer?: Readonly<Partial< ExtractPropTypes<{
|
988
|
+
tag: {
|
989
|
+
type: StringConstructor;
|
990
|
+
default: string;
|
991
|
+
};
|
992
|
+
fit: {
|
993
|
+
type: BooleanConstructor;
|
994
|
+
default: boolean;
|
995
|
+
};
|
996
|
+
width: {
|
997
|
+
type: (StringConstructor | NumberConstructor)[];
|
998
|
+
};
|
999
|
+
height: {
|
1000
|
+
type: (StringConstructor | NumberConstructor)[];
|
1001
|
+
};
|
1002
|
+
flex: {
|
1003
|
+
type: BooleanConstructor;
|
1004
|
+
default: boolean;
|
1005
|
+
};
|
1006
|
+
inline: {
|
1007
|
+
type: BooleanConstructor;
|
1008
|
+
};
|
1009
|
+
direction: {
|
1010
|
+
type: PropType<ContainerDirection>;
|
1011
|
+
default: string;
|
1012
|
+
};
|
1013
|
+
wrap: {
|
1014
|
+
type: PropType<ContainerWrap>;
|
1015
|
+
default: string;
|
1016
|
+
};
|
1017
|
+
justify: {
|
1018
|
+
type: PropType<ContainerJustifyContent>;
|
1019
|
+
default: string;
|
1020
|
+
};
|
1021
|
+
align: {
|
1022
|
+
type: PropType<ContainerAlignItems>;
|
1023
|
+
default: string;
|
1024
|
+
};
|
1025
|
+
alignContent: {
|
1026
|
+
type: PropType<ContainerAlignContent>;
|
1027
|
+
default: string;
|
1028
|
+
};
|
1029
|
+
grow: {
|
1030
|
+
type: BooleanConstructor;
|
1031
|
+
default: boolean;
|
1032
|
+
};
|
1033
|
+
shrink: {
|
1034
|
+
type: BooleanConstructor;
|
1035
|
+
default: boolean;
|
1036
|
+
};
|
1037
|
+
alignSelf: {
|
1038
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
1039
|
+
default: string;
|
1040
|
+
};
|
1041
|
+
overflow: {
|
1042
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
1043
|
+
};
|
1044
|
+
padding: {
|
1045
|
+
type: BooleanConstructor;
|
1046
|
+
default: boolean;
|
1047
|
+
};
|
1048
|
+
gap: {
|
1049
|
+
type: BooleanConstructor;
|
1050
|
+
};
|
1051
|
+
autoPointer: {
|
1052
|
+
type: BooleanConstructor;
|
1053
|
+
};
|
1054
|
+
}>>> | undefined;
|
1055
|
+
readonly header?: string | Readonly<Partial< ExtractPropTypes<{
|
1056
|
+
size: {
|
1057
|
+
type: PropType<BaseSize>;
|
1058
|
+
default: string;
|
1059
|
+
};
|
1060
|
+
content: {
|
1061
|
+
type: StringConstructor;
|
1062
|
+
default: string;
|
1063
|
+
};
|
1064
|
+
subtitle: {
|
1065
|
+
type: StringConstructor;
|
1066
|
+
};
|
1067
|
+
icon: {
|
1068
|
+
type: PropType<IconParam>;
|
1069
|
+
};
|
1070
|
+
border: {
|
1071
|
+
type: BooleanConstructor;
|
1072
|
+
};
|
1073
|
+
more: {
|
1074
|
+
type: BooleanConstructor;
|
1075
|
+
};
|
1076
|
+
}>>> | null | undefined;
|
1077
|
+
readonly width?: string | number | undefined;
|
1078
|
+
readonly height?: string | number | undefined;
|
1079
|
+
readonly shadow?: "none" | "hover" | "always" | undefined;
|
1080
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "radius" | "fit" | "border" | "card">;
|
1081
|
+
$attrs: {
|
1082
|
+
[x: string]: unknown;
|
1083
|
+
};
|
1084
|
+
$refs: {
|
1085
|
+
[x: string]: unknown;
|
1086
|
+
} & {
|
1087
|
+
bodyRef: ({
|
1088
|
+
$: ComponentInternalInstance;
|
1089
|
+
$data: {};
|
1090
|
+
$props: Partial<{
|
1091
|
+
padding: boolean;
|
1092
|
+
tag: string;
|
1093
|
+
wrap: ContainerWrap;
|
1094
|
+
fit: boolean;
|
1095
|
+
flex: boolean;
|
1096
|
+
inline: boolean;
|
1097
|
+
direction: ContainerDirection;
|
1098
|
+
justify: ContainerJustifyContent;
|
1099
|
+
align: ContainerAlignItems;
|
1100
|
+
alignContent: ContainerAlignContent;
|
1101
|
+
grow: boolean;
|
1102
|
+
shrink: boolean;
|
1103
|
+
alignSelf: "auto" | ContainerAlignItems;
|
1104
|
+
gap: boolean;
|
1105
|
+
autoPointer: boolean;
|
1106
|
+
}> & Omit<{
|
1107
|
+
readonly padding: boolean;
|
1108
|
+
readonly tag: string;
|
1109
|
+
readonly wrap: ContainerWrap;
|
1110
|
+
readonly fit: boolean;
|
1111
|
+
readonly flex: boolean;
|
1112
|
+
readonly inline: boolean;
|
1113
|
+
readonly direction: ContainerDirection;
|
1114
|
+
readonly justify: ContainerJustifyContent;
|
1115
|
+
readonly align: ContainerAlignItems;
|
1116
|
+
readonly alignContent: ContainerAlignContent;
|
1117
|
+
readonly grow: boolean;
|
1118
|
+
readonly shrink: boolean;
|
1119
|
+
readonly alignSelf: "auto" | ContainerAlignItems;
|
1120
|
+
readonly gap: boolean;
|
1121
|
+
readonly autoPointer: boolean;
|
1122
|
+
readonly width?: string | number | undefined;
|
1123
|
+
readonly height?: string | number | undefined;
|
1124
|
+
readonly overflow?: "hidden" | "auto" | "visible" | undefined;
|
1125
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer">;
|
1126
|
+
$attrs: {
|
1127
|
+
[x: string]: unknown;
|
1128
|
+
};
|
1129
|
+
$refs: {
|
1130
|
+
[x: string]: unknown;
|
1131
|
+
} & {
|
1132
|
+
elRef: unknown;
|
1133
|
+
};
|
1134
|
+
$slots: Readonly<{
|
1135
|
+
[name: string]: Slot<any> | undefined;
|
1136
|
+
}>;
|
1137
|
+
$root: ComponentPublicInstance | null;
|
1138
|
+
$parent: ComponentPublicInstance | null;
|
1139
|
+
$host: Element | null;
|
1140
|
+
$emit: (event: string, ...args: any[]) => void;
|
1141
|
+
$el: any;
|
1142
|
+
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
1143
|
+
tag: {
|
1144
|
+
type: StringConstructor;
|
1145
|
+
default: string;
|
1146
|
+
};
|
1147
|
+
fit: {
|
1148
|
+
type: BooleanConstructor;
|
1149
|
+
default: boolean;
|
1150
|
+
};
|
1151
|
+
width: {
|
1152
|
+
type: (StringConstructor | NumberConstructor)[];
|
1153
|
+
};
|
1154
|
+
height: {
|
1155
|
+
type: (StringConstructor | NumberConstructor)[];
|
1156
|
+
};
|
1157
|
+
flex: {
|
1158
|
+
type: BooleanConstructor;
|
1159
|
+
default: boolean;
|
1160
|
+
};
|
1161
|
+
inline: {
|
1162
|
+
type: BooleanConstructor;
|
1163
|
+
};
|
1164
|
+
direction: {
|
1165
|
+
type: PropType<ContainerDirection>;
|
1166
|
+
default: string;
|
1167
|
+
};
|
1168
|
+
wrap: {
|
1169
|
+
type: PropType<ContainerWrap>;
|
1170
|
+
default: string;
|
1171
|
+
};
|
1172
|
+
justify: {
|
1173
|
+
type: PropType<ContainerJustifyContent>;
|
1174
|
+
default: string;
|
1175
|
+
};
|
1176
|
+
align: {
|
1177
|
+
type: PropType<ContainerAlignItems>;
|
1178
|
+
default: string;
|
1179
|
+
};
|
1180
|
+
alignContent: {
|
1181
|
+
type: PropType<ContainerAlignContent>;
|
1182
|
+
default: string;
|
1183
|
+
};
|
1184
|
+
grow: {
|
1185
|
+
type: BooleanConstructor;
|
1186
|
+
default: boolean;
|
1187
|
+
};
|
1188
|
+
shrink: {
|
1189
|
+
type: BooleanConstructor;
|
1190
|
+
default: boolean;
|
1191
|
+
};
|
1192
|
+
alignSelf: {
|
1193
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
1194
|
+
default: string;
|
1195
|
+
};
|
1196
|
+
overflow: {
|
1197
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
1198
|
+
};
|
1199
|
+
padding: {
|
1200
|
+
type: BooleanConstructor;
|
1201
|
+
default: boolean;
|
1202
|
+
};
|
1203
|
+
gap: {
|
1204
|
+
type: BooleanConstructor;
|
1205
|
+
};
|
1206
|
+
autoPointer: {
|
1207
|
+
type: BooleanConstructor;
|
1208
|
+
};
|
1209
|
+
}>> & Readonly<{}>, {
|
1210
|
+
$vtjEl: ComputedRef<any>;
|
1211
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
1212
|
+
padding: boolean;
|
1213
|
+
tag: string;
|
1214
|
+
wrap: ContainerWrap;
|
1215
|
+
fit: boolean;
|
1216
|
+
flex: boolean;
|
1217
|
+
inline: boolean;
|
1218
|
+
direction: ContainerDirection;
|
1219
|
+
justify: ContainerJustifyContent;
|
1220
|
+
align: ContainerAlignItems;
|
1221
|
+
alignContent: ContainerAlignContent;
|
1222
|
+
grow: boolean;
|
1223
|
+
shrink: boolean;
|
1224
|
+
alignSelf: "auto" | ContainerAlignItems;
|
1225
|
+
gap: boolean;
|
1226
|
+
autoPointer: boolean;
|
1227
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
1228
|
+
beforeCreate?: (() => void) | (() => void)[];
|
1229
|
+
created?: (() => void) | (() => void)[];
|
1230
|
+
beforeMount?: (() => void) | (() => void)[];
|
1231
|
+
mounted?: (() => void) | (() => void)[];
|
1232
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
1233
|
+
updated?: (() => void) | (() => void)[];
|
1234
|
+
activated?: (() => void) | (() => void)[];
|
1235
|
+
deactivated?: (() => void) | (() => void)[];
|
1236
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
1237
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
1238
|
+
destroyed?: (() => void) | (() => void)[];
|
1239
|
+
unmounted?: (() => void) | (() => void)[];
|
1240
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
1241
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
1242
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
1243
|
+
};
|
1244
|
+
$forceUpdate: () => void;
|
1245
|
+
$nextTick: typeof nextTick;
|
1246
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
1247
|
+
} & Readonly<{
|
1248
|
+
padding: boolean;
|
1249
|
+
tag: string;
|
1250
|
+
wrap: ContainerWrap;
|
1251
|
+
fit: boolean;
|
1252
|
+
flex: boolean;
|
1253
|
+
inline: boolean;
|
1254
|
+
direction: ContainerDirection;
|
1255
|
+
justify: ContainerJustifyContent;
|
1256
|
+
align: ContainerAlignItems;
|
1257
|
+
alignContent: ContainerAlignContent;
|
1258
|
+
grow: boolean;
|
1259
|
+
shrink: boolean;
|
1260
|
+
alignSelf: "auto" | ContainerAlignItems;
|
1261
|
+
gap: boolean;
|
1262
|
+
autoPointer: boolean;
|
1263
|
+
}> & Omit<Readonly< ExtractPropTypes<{
|
1264
|
+
tag: {
|
1265
|
+
type: StringConstructor;
|
1266
|
+
default: string;
|
1267
|
+
};
|
1268
|
+
fit: {
|
1269
|
+
type: BooleanConstructor;
|
1270
|
+
default: boolean;
|
1271
|
+
};
|
1272
|
+
width: {
|
1273
|
+
type: (StringConstructor | NumberConstructor)[];
|
1274
|
+
};
|
1275
|
+
height: {
|
1276
|
+
type: (StringConstructor | NumberConstructor)[];
|
1277
|
+
};
|
1278
|
+
flex: {
|
1279
|
+
type: BooleanConstructor;
|
1280
|
+
default: boolean;
|
1281
|
+
};
|
1282
|
+
inline: {
|
1283
|
+
type: BooleanConstructor;
|
1284
|
+
};
|
1285
|
+
direction: {
|
1286
|
+
type: PropType<ContainerDirection>;
|
1287
|
+
default: string;
|
1288
|
+
};
|
1289
|
+
wrap: {
|
1290
|
+
type: PropType<ContainerWrap>;
|
1291
|
+
default: string;
|
1292
|
+
};
|
1293
|
+
justify: {
|
1294
|
+
type: PropType<ContainerJustifyContent>;
|
1295
|
+
default: string;
|
1296
|
+
};
|
1297
|
+
align: {
|
1298
|
+
type: PropType<ContainerAlignItems>;
|
1299
|
+
default: string;
|
1300
|
+
};
|
1301
|
+
alignContent: {
|
1302
|
+
type: PropType<ContainerAlignContent>;
|
1303
|
+
default: string;
|
1304
|
+
};
|
1305
|
+
grow: {
|
1306
|
+
type: BooleanConstructor;
|
1307
|
+
default: boolean;
|
1308
|
+
};
|
1309
|
+
shrink: {
|
1310
|
+
type: BooleanConstructor;
|
1311
|
+
default: boolean;
|
1312
|
+
};
|
1313
|
+
alignSelf: {
|
1314
|
+
type: PropType<"auto" | ContainerAlignItems>;
|
1315
|
+
default: string;
|
1316
|
+
};
|
1317
|
+
overflow: {
|
1318
|
+
type: PropType<"auto" | "hidden" | "visible">;
|
1319
|
+
};
|
1320
|
+
padding: {
|
1321
|
+
type: BooleanConstructor;
|
1322
|
+
default: boolean;
|
1323
|
+
};
|
1324
|
+
gap: {
|
1325
|
+
type: BooleanConstructor;
|
1326
|
+
};
|
1327
|
+
autoPointer: {
|
1328
|
+
type: BooleanConstructor;
|
1329
|
+
};
|
1330
|
+
}>> & Readonly<{}>, ("padding" | "tag" | "wrap" | "fit" | "flex" | "inline" | "direction" | "justify" | "align" | "alignContent" | "grow" | "shrink" | "alignSelf" | "gap" | "autoPointer") | "$vtjEl"> & ShallowUnwrapRef<{
|
1331
|
+
$vtjEl: ComputedRef<any>;
|
1332
|
+
}> & {} & ComponentCustomProperties & {} & {
|
1333
|
+
$slots: {
|
1334
|
+
default?(_: {}): any;
|
1335
|
+
};
|
1336
|
+
}) | null;
|
1337
|
+
};
|
1338
|
+
$slots: Readonly<{
|
1339
|
+
[name: string]: Slot<any> | undefined;
|
1340
|
+
}>;
|
1341
|
+
$root: ComponentPublicInstance | null;
|
1342
|
+
$parent: ComponentPublicInstance | null;
|
1343
|
+
$host: Element | null;
|
1344
|
+
$emit: (event: string, ...args: any[]) => void;
|
1345
|
+
$el: any;
|
1346
|
+
$options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
1347
|
+
fit: {
|
1348
|
+
type: BooleanConstructor;
|
1349
|
+
default: boolean;
|
1350
|
+
};
|
1351
|
+
width: {
|
1352
|
+
type: (StringConstructor | NumberConstructor)[];
|
1353
|
+
};
|
1354
|
+
height: {
|
1355
|
+
type: (StringConstructor | NumberConstructor)[];
|
1356
|
+
};
|
1357
|
+
border: {
|
1358
|
+
type: BooleanConstructor;
|
1359
|
+
default: boolean;
|
1360
|
+
};
|
1361
|
+
radius: {
|
1362
|
+
type: BooleanConstructor;
|
1363
|
+
default: boolean;
|
1364
|
+
};
|
1365
|
+
card: {
|
1366
|
+
type: BooleanConstructor;
|
1367
|
+
};
|
1368
|
+
size: {
|
1369
|
+
type: PropType<BaseSize>;
|
1370
|
+
};
|
1371
|
+
shadow: {
|
1372
|
+
type: PropType<"none" | "always" | "hover">;
|
1373
|
+
};
|
1374
|
+
header: {
|
1375
|
+
type: PropType<string | HeaderProps | null>;
|
1376
|
+
};
|
1377
|
+
body: {
|
1378
|
+
type: PropType<ContainerProps>;
|
1379
|
+
};
|
1380
|
+
footer: {
|
1381
|
+
type: PropType<ContainerProps>;
|
1382
|
+
};
|
1383
|
+
}>> & Readonly<{}>, {
|
1384
|
+
bodyRef: Ref<any, any>;
|
1385
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
1386
|
+
radius: boolean;
|
1387
|
+
fit: boolean;
|
1388
|
+
border: boolean;
|
1389
|
+
card: boolean;
|
1390
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
1391
|
+
beforeCreate?: (() => void) | (() => void)[];
|
1392
|
+
created?: (() => void) | (() => void)[];
|
1393
|
+
beforeMount?: (() => void) | (() => void)[];
|
1394
|
+
mounted?: (() => void) | (() => void)[];
|
1395
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
1396
|
+
updated?: (() => void) | (() => void)[];
|
1397
|
+
activated?: (() => void) | (() => void)[];
|
1398
|
+
deactivated?: (() => void) | (() => void)[];
|
1399
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
1400
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
1401
|
+
destroyed?: (() => void) | (() => void)[];
|
1402
|
+
unmounted?: (() => void) | (() => void)[];
|
1403
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
1404
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
1405
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
1406
|
+
};
|
1407
|
+
$forceUpdate: () => void;
|
1408
|
+
$nextTick: typeof nextTick;
|
1409
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
1410
|
+
} & Readonly<{
|
1411
|
+
radius: boolean;
|
1412
|
+
fit: boolean;
|
1413
|
+
border: boolean;
|
1414
|
+
card: boolean;
|
1415
|
+
}> & Omit<Readonly< ExtractPropTypes<{
|
1416
|
+
fit: {
|
1417
|
+
type: BooleanConstructor;
|
1418
|
+
default: boolean;
|
1419
|
+
};
|
1420
|
+
width: {
|
1421
|
+
type: (StringConstructor | NumberConstructor)[];
|
1422
|
+
};
|
1423
|
+
height: {
|
1424
|
+
type: (StringConstructor | NumberConstructor)[];
|
1425
|
+
};
|
1426
|
+
border: {
|
1427
|
+
type: BooleanConstructor;
|
1428
|
+
default: boolean;
|
1429
|
+
};
|
1430
|
+
radius: {
|
1431
|
+
type: BooleanConstructor;
|
1432
|
+
default: boolean;
|
1433
|
+
};
|
1434
|
+
card: {
|
1435
|
+
type: BooleanConstructor;
|
1436
|
+
};
|
1437
|
+
size: {
|
1438
|
+
type: PropType<BaseSize>;
|
1439
|
+
};
|
1440
|
+
shadow: {
|
1441
|
+
type: PropType<"none" | "always" | "hover">;
|
1442
|
+
};
|
1443
|
+
header: {
|
1444
|
+
type: PropType<string | HeaderProps | null>;
|
1445
|
+
};
|
1446
|
+
body: {
|
1447
|
+
type: PropType<ContainerProps>;
|
1448
|
+
};
|
1449
|
+
footer: {
|
1450
|
+
type: PropType<ContainerProps>;
|
1451
|
+
};
|
1452
|
+
}>> & Readonly<{}>, "bodyRef" | ("radius" | "fit" | "border" | "card")> & ShallowUnwrapRef<{
|
1453
|
+
bodyRef: Ref<any, any>;
|
1454
|
+
}> & {} & ComponentCustomProperties & {} & {
|
1455
|
+
$slots: {
|
1456
|
+
header?(_: {}): any;
|
1457
|
+
title?(_: {}): any;
|
1458
|
+
actions?(_: {}): any;
|
1459
|
+
default?(_: {}): any;
|
1460
|
+
footer?(_: {}): any;
|
1461
|
+
};
|
1462
|
+
}) | null;
|
1463
|
+
}, any>;
|
1464
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
694
1465
|
export default _default;
|
695
|
-
type
|
1466
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
696
1467
|
new (): {
|
697
1468
|
$slots: S;
|
698
1469
|
};
|