@unizhen/ui 0.0.26 → 0.0.28
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/lib/components/back/index.vue.d.ts +1 -1
- package/lib/components/camera/index.vue.d.ts +23 -11
- package/lib/components/circle/index.vue.d.ts +91 -13
- package/lib/components/components.d.ts +0 -1
- package/lib/components/fetch.d.ts +1 -1
- package/lib/components/form/draggable.vue.d.ts +1153 -152
- package/lib/components/form/image.vue.d.ts +311 -46
- package/lib/components/form/index.vue.d.ts +1153 -152
- package/lib/components/form/interface.d.ts +1 -0
- package/lib/components/form/item.vue.d.ts +1145 -152
- package/lib/components/form/upload.vue.d.ts +304 -46
- package/lib/components/searchBar/components/timePickRange.vue.d.ts +114 -12
- package/lib/components/searchBar/index.vue.d.ts +1459 -213
- package/lib/components/searchBar/mobile.vue.d.ts +1241 -177
- package/lib/components/spin/index.vue.d.ts +113 -9
- package/lib/components/table/child.vue.d.ts +677 -56
- package/lib/components/table/child_quest.vue.d.ts +675 -54
- package/lib/components/table/drawer.vue.d.ts +7 -6
- package/lib/components/table/index.vue.d.ts +892 -88
- package/lib/components/table/mobile.vue.d.ts +334 -24
- package/lib/components/table/ocr.vue.d.ts +2 -1
- package/lib/components/thumbnail/index.vue.d.ts +126 -25
- package/lib/components/wrap/index.vue.d.ts +7 -1
- package/lib/ui.css +1 -1
- package/lib/ui.js +2526 -2581
- package/package.json +14 -13
- package/volar.d.ts +0 -1
- package/lib/components/numberRoll/index.d.ts +0 -1
- package/lib/components/numberRoll/index.vue.d.ts +0 -47
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import { PropType, DefineComponent, ExtractPropTypes, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ImgHTMLAttributes, SlotsType, Component,
|
|
2
|
-
import {
|
|
1
|
+
import { PropType, DefineComponent, ExtractPropTypes, Ref, ComponentOptionsMixin, PublicProps, ComputedRef, ComponentProvideOptions, ImgHTMLAttributes, SlotsType, Component, CSSProperties } from 'vue';
|
|
2
|
+
import { MaybeArray } from 'naive-ui/es/_utils';
|
|
3
|
+
import { ImageRenderToolbar, ImagePreviewInst, ImageSlots, PopoverTrigger, PopoverPlacement, PopoverSlots } from 'naive-ui';
|
|
3
4
|
import { Theme } from 'naive-ui/es/_mixins';
|
|
4
5
|
import { ExtractThemeOverrides } from 'naive-ui/es/_mixins/use-theme';
|
|
5
|
-
import { ImagePreviewInst } from 'naive-ui/es/image/src/ImagePreview';
|
|
6
6
|
import { IntersectionObserverOptions } from 'naive-ui/es/image/src/utils';
|
|
7
7
|
import { Depth } from 'naive-ui/es/icon/src/Icon';
|
|
8
8
|
import { InternalRenderBody } from 'naive-ui/es/popover/src/interface';
|
|
9
|
-
import { MaybeArray } from 'naive-ui/es/_utils';
|
|
10
9
|
import { TriggerEventHandlers } from 'naive-ui/es/popover/src/Popover';
|
|
11
10
|
import { BinderInst } from 'vueuc';
|
|
12
11
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
@@ -30,6 +29,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
30
29
|
value: string | null;
|
|
31
30
|
}, {}, {
|
|
32
31
|
NImageGroup: DefineComponent<ExtractPropTypes<{
|
|
32
|
+
srcList: PropType<string[]>;
|
|
33
|
+
current: NumberConstructor;
|
|
34
|
+
defaultCurrent: {
|
|
35
|
+
type: NumberConstructor;
|
|
36
|
+
default: number;
|
|
37
|
+
};
|
|
38
|
+
show: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
default: undefined;
|
|
41
|
+
};
|
|
42
|
+
defaultShow: BooleanConstructor;
|
|
43
|
+
onUpdateShow: PropType< MaybeArray<(show: boolean) => void>>;
|
|
44
|
+
'onUpdate:show': PropType< MaybeArray<(show: boolean) => void>>;
|
|
45
|
+
onUpdateCurrent: PropType< MaybeArray<(current: number) => void>>;
|
|
46
|
+
'onUpdate:current': PropType< MaybeArray<(current: number) => void>>;
|
|
33
47
|
onPreviewPrev: PropType<() => void>;
|
|
34
48
|
onPreviewNext: PropType<() => void>;
|
|
35
49
|
showToolbar: {
|
|
@@ -37,8 +51,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
37
51
|
default: boolean;
|
|
38
52
|
};
|
|
39
53
|
showToolbarTooltip: BooleanConstructor;
|
|
40
|
-
renderToolbar: PropType<ImageRenderToolbar>;
|
|
41
|
-
theme: PropType<Theme<"Image", {
|
|
54
|
+
renderToolbar: PropType< ImageRenderToolbar>;
|
|
55
|
+
theme: PropType< Theme<"Image", {
|
|
42
56
|
toolbarIconColor: string;
|
|
43
57
|
toolbarColor: string;
|
|
44
58
|
toolbarBoxShadow: string;
|
|
@@ -64,10 +78,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
64
78
|
arrowOffsetVertical: string;
|
|
65
79
|
arrowHeight: string;
|
|
66
80
|
padding: string;
|
|
67
|
-
},
|
|
81
|
+
}, {
|
|
82
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
83
|
+
height: string;
|
|
84
|
+
width: string;
|
|
85
|
+
borderRadius: string;
|
|
86
|
+
color: string;
|
|
87
|
+
colorHover: string;
|
|
88
|
+
railInsetHorizontalBottom: string;
|
|
89
|
+
railInsetHorizontalTop: string;
|
|
90
|
+
railInsetVerticalRight: string;
|
|
91
|
+
railInsetVerticalLeft: string;
|
|
92
|
+
railColor: string;
|
|
93
|
+
}, any>;
|
|
94
|
+
}>;
|
|
68
95
|
}>;
|
|
69
96
|
}>>;
|
|
70
|
-
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Image", {
|
|
97
|
+
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
71
98
|
toolbarIconColor: string;
|
|
72
99
|
toolbarColor: string;
|
|
73
100
|
toolbarBoxShadow: string;
|
|
@@ -93,10 +120,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
93
120
|
arrowOffsetVertical: string;
|
|
94
121
|
arrowHeight: string;
|
|
95
122
|
padding: string;
|
|
96
|
-
},
|
|
123
|
+
}, {
|
|
124
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
125
|
+
height: string;
|
|
126
|
+
width: string;
|
|
127
|
+
borderRadius: string;
|
|
128
|
+
color: string;
|
|
129
|
+
colorHover: string;
|
|
130
|
+
railInsetHorizontalBottom: string;
|
|
131
|
+
railInsetHorizontalTop: string;
|
|
132
|
+
railInsetVerticalRight: string;
|
|
133
|
+
railInsetVerticalLeft: string;
|
|
134
|
+
railColor: string;
|
|
135
|
+
}, any>;
|
|
136
|
+
}>;
|
|
97
137
|
}>;
|
|
98
138
|
}>>>;
|
|
99
|
-
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Image", {
|
|
139
|
+
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
100
140
|
toolbarIconColor: string;
|
|
101
141
|
toolbarColor: string;
|
|
102
142
|
toolbarBoxShadow: string;
|
|
@@ -122,23 +162,50 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
122
162
|
arrowOffsetVertical: string;
|
|
123
163
|
arrowHeight: string;
|
|
124
164
|
padding: string;
|
|
125
|
-
},
|
|
165
|
+
}, {
|
|
166
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
167
|
+
height: string;
|
|
168
|
+
width: string;
|
|
169
|
+
borderRadius: string;
|
|
170
|
+
color: string;
|
|
171
|
+
colorHover: string;
|
|
172
|
+
railInsetHorizontalBottom: string;
|
|
173
|
+
railInsetHorizontalTop: string;
|
|
174
|
+
railInsetVerticalRight: string;
|
|
175
|
+
railInsetVerticalLeft: string;
|
|
176
|
+
railColor: string;
|
|
177
|
+
}, any>;
|
|
178
|
+
}>;
|
|
126
179
|
}>;
|
|
127
180
|
}>>>;
|
|
128
181
|
}>, {
|
|
129
182
|
mergedClsPrefix: Ref<string, string>;
|
|
130
183
|
previewInstRef: Ref<{
|
|
131
184
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
132
|
-
setPreviewSrc: (src?: string) => void;
|
|
133
|
-
toggleShow: () => void;
|
|
134
185
|
} | null, ImagePreviewInst | {
|
|
135
186
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
136
|
-
setPreviewSrc: (src?: string) => void;
|
|
137
|
-
toggleShow: () => void;
|
|
138
187
|
} | null>;
|
|
188
|
+
mergedShow: ComputedRef<boolean>;
|
|
189
|
+
src: ComputedRef<string | undefined>;
|
|
190
|
+
onClose: () => void;
|
|
139
191
|
next: () => void;
|
|
140
192
|
prev: () => void;
|
|
141
193
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
194
|
+
srcList: PropType<string[]>;
|
|
195
|
+
current: NumberConstructor;
|
|
196
|
+
defaultCurrent: {
|
|
197
|
+
type: NumberConstructor;
|
|
198
|
+
default: number;
|
|
199
|
+
};
|
|
200
|
+
show: {
|
|
201
|
+
type: BooleanConstructor;
|
|
202
|
+
default: undefined;
|
|
203
|
+
};
|
|
204
|
+
defaultShow: BooleanConstructor;
|
|
205
|
+
onUpdateShow: PropType< MaybeArray<(show: boolean) => void>>;
|
|
206
|
+
'onUpdate:show': PropType< MaybeArray<(show: boolean) => void>>;
|
|
207
|
+
onUpdateCurrent: PropType< MaybeArray<(current: number) => void>>;
|
|
208
|
+
'onUpdate:current': PropType< MaybeArray<(current: number) => void>>;
|
|
142
209
|
onPreviewPrev: PropType<() => void>;
|
|
143
210
|
onPreviewNext: PropType<() => void>;
|
|
144
211
|
showToolbar: {
|
|
@@ -146,8 +213,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
146
213
|
default: boolean;
|
|
147
214
|
};
|
|
148
215
|
showToolbarTooltip: BooleanConstructor;
|
|
149
|
-
renderToolbar: PropType<ImageRenderToolbar>;
|
|
150
|
-
theme: PropType<Theme<"Image", {
|
|
216
|
+
renderToolbar: PropType< ImageRenderToolbar>;
|
|
217
|
+
theme: PropType< Theme<"Image", {
|
|
151
218
|
toolbarIconColor: string;
|
|
152
219
|
toolbarColor: string;
|
|
153
220
|
toolbarBoxShadow: string;
|
|
@@ -173,10 +240,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
173
240
|
arrowOffsetVertical: string;
|
|
174
241
|
arrowHeight: string;
|
|
175
242
|
padding: string;
|
|
176
|
-
},
|
|
243
|
+
}, {
|
|
244
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
245
|
+
height: string;
|
|
246
|
+
width: string;
|
|
247
|
+
borderRadius: string;
|
|
248
|
+
color: string;
|
|
249
|
+
colorHover: string;
|
|
250
|
+
railInsetHorizontalBottom: string;
|
|
251
|
+
railInsetHorizontalTop: string;
|
|
252
|
+
railInsetVerticalRight: string;
|
|
253
|
+
railInsetVerticalLeft: string;
|
|
254
|
+
railColor: string;
|
|
255
|
+
}, any>;
|
|
256
|
+
}>;
|
|
177
257
|
}>;
|
|
178
258
|
}>>;
|
|
179
|
-
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Image", {
|
|
259
|
+
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
180
260
|
toolbarIconColor: string;
|
|
181
261
|
toolbarColor: string;
|
|
182
262
|
toolbarBoxShadow: string;
|
|
@@ -202,10 +282,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
202
282
|
arrowOffsetVertical: string;
|
|
203
283
|
arrowHeight: string;
|
|
204
284
|
padding: string;
|
|
205
|
-
},
|
|
285
|
+
}, {
|
|
286
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
287
|
+
height: string;
|
|
288
|
+
width: string;
|
|
289
|
+
borderRadius: string;
|
|
290
|
+
color: string;
|
|
291
|
+
colorHover: string;
|
|
292
|
+
railInsetHorizontalBottom: string;
|
|
293
|
+
railInsetHorizontalTop: string;
|
|
294
|
+
railInsetVerticalRight: string;
|
|
295
|
+
railInsetVerticalLeft: string;
|
|
296
|
+
railColor: string;
|
|
297
|
+
}, any>;
|
|
298
|
+
}>;
|
|
206
299
|
}>;
|
|
207
300
|
}>>>;
|
|
208
|
-
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Image", {
|
|
301
|
+
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
209
302
|
toolbarIconColor: string;
|
|
210
303
|
toolbarColor: string;
|
|
211
304
|
toolbarBoxShadow: string;
|
|
@@ -231,12 +324,28 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
231
324
|
arrowOffsetVertical: string;
|
|
232
325
|
arrowHeight: string;
|
|
233
326
|
padding: string;
|
|
234
|
-
},
|
|
327
|
+
}, {
|
|
328
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
329
|
+
height: string;
|
|
330
|
+
width: string;
|
|
331
|
+
borderRadius: string;
|
|
332
|
+
color: string;
|
|
333
|
+
colorHover: string;
|
|
334
|
+
railInsetHorizontalBottom: string;
|
|
335
|
+
railInsetHorizontalTop: string;
|
|
336
|
+
railInsetVerticalRight: string;
|
|
337
|
+
railInsetVerticalLeft: string;
|
|
338
|
+
railColor: string;
|
|
339
|
+
}, any>;
|
|
340
|
+
}>;
|
|
235
341
|
}>;
|
|
236
342
|
}>>>;
|
|
237
343
|
}>> & Readonly<{}>, {
|
|
344
|
+
show: boolean;
|
|
345
|
+
defaultShow: boolean;
|
|
238
346
|
showToolbar: boolean;
|
|
239
347
|
showToolbarTooltip: boolean;
|
|
348
|
+
defaultCurrent: number;
|
|
240
349
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
241
350
|
NImage: DefineComponent<ExtractPropTypes<{
|
|
242
351
|
onPreviewPrev: PropType<() => void>;
|
|
@@ -273,7 +382,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
273
382
|
arrowOffsetVertical: string;
|
|
274
383
|
arrowHeight: string;
|
|
275
384
|
padding: string;
|
|
276
|
-
},
|
|
385
|
+
}, {
|
|
386
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
387
|
+
height: string;
|
|
388
|
+
width: string;
|
|
389
|
+
borderRadius: string;
|
|
390
|
+
color: string;
|
|
391
|
+
colorHover: string;
|
|
392
|
+
railInsetHorizontalBottom: string;
|
|
393
|
+
railInsetHorizontalTop: string;
|
|
394
|
+
railInsetVerticalRight: string;
|
|
395
|
+
railInsetVerticalLeft: string;
|
|
396
|
+
railColor: string;
|
|
397
|
+
}, any>;
|
|
398
|
+
}>;
|
|
277
399
|
}>;
|
|
278
400
|
}>>;
|
|
279
401
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -302,7 +424,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
302
424
|
arrowOffsetVertical: string;
|
|
303
425
|
arrowHeight: string;
|
|
304
426
|
padding: string;
|
|
305
|
-
},
|
|
427
|
+
}, {
|
|
428
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
429
|
+
height: string;
|
|
430
|
+
width: string;
|
|
431
|
+
borderRadius: string;
|
|
432
|
+
color: string;
|
|
433
|
+
colorHover: string;
|
|
434
|
+
railInsetHorizontalBottom: string;
|
|
435
|
+
railInsetHorizontalTop: string;
|
|
436
|
+
railInsetVerticalRight: string;
|
|
437
|
+
railInsetVerticalLeft: string;
|
|
438
|
+
railColor: string;
|
|
439
|
+
}, any>;
|
|
440
|
+
}>;
|
|
306
441
|
}>;
|
|
307
442
|
}>>>;
|
|
308
443
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -331,7 +466,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
331
466
|
arrowOffsetVertical: string;
|
|
332
467
|
arrowHeight: string;
|
|
333
468
|
padding: string;
|
|
334
|
-
},
|
|
469
|
+
}, {
|
|
470
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
471
|
+
height: string;
|
|
472
|
+
width: string;
|
|
473
|
+
borderRadius: string;
|
|
474
|
+
color: string;
|
|
475
|
+
colorHover: string;
|
|
476
|
+
railInsetHorizontalBottom: string;
|
|
477
|
+
railInsetHorizontalTop: string;
|
|
478
|
+
railInsetVerticalRight: string;
|
|
479
|
+
railInsetVerticalLeft: string;
|
|
480
|
+
railColor: string;
|
|
481
|
+
}, any>;
|
|
482
|
+
}>;
|
|
335
483
|
}>;
|
|
336
484
|
}>>>;
|
|
337
485
|
alt: StringConstructor;
|
|
@@ -354,24 +502,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
354
502
|
onLoad: PropType<(e: Event) => void>;
|
|
355
503
|
}>, {
|
|
356
504
|
click: () => void;
|
|
505
|
+
showPreview: () => void;
|
|
357
506
|
mergedClsPrefix: Ref<string, string>;
|
|
358
507
|
groupId: string | undefined;
|
|
359
508
|
previewInstRef: Ref<{
|
|
360
509
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
361
|
-
setPreviewSrc: (src?: string) => void;
|
|
362
|
-
toggleShow: () => void;
|
|
363
510
|
} | null, ImagePreviewInst | {
|
|
364
511
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
365
|
-
setPreviewSrc: (src?: string) => void;
|
|
366
|
-
toggleShow: () => void;
|
|
367
512
|
} | null>;
|
|
368
513
|
imageRef: Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
514
|
+
mergedPreviewSrc: ComputedRef<string | undefined>;
|
|
369
515
|
showError: Ref<boolean, boolean>;
|
|
370
516
|
shouldStartLoading: Ref<boolean, boolean>;
|
|
371
517
|
loaded: Ref<boolean, boolean>;
|
|
372
|
-
mergedOnClick: (e:
|
|
518
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
519
|
+
onPreviewClose: () => void;
|
|
373
520
|
mergedOnError: (e: Event) => void;
|
|
374
521
|
mergedOnLoad: (e: Event) => void;
|
|
522
|
+
previewShow: Ref<boolean, boolean>;
|
|
375
523
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
376
524
|
onPreviewPrev: PropType<() => void>;
|
|
377
525
|
onPreviewNext: PropType<() => void>;
|
|
@@ -407,7 +555,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
407
555
|
arrowOffsetVertical: string;
|
|
408
556
|
arrowHeight: string;
|
|
409
557
|
padding: string;
|
|
410
|
-
},
|
|
558
|
+
}, {
|
|
559
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
560
|
+
height: string;
|
|
561
|
+
width: string;
|
|
562
|
+
borderRadius: string;
|
|
563
|
+
color: string;
|
|
564
|
+
colorHover: string;
|
|
565
|
+
railInsetHorizontalBottom: string;
|
|
566
|
+
railInsetHorizontalTop: string;
|
|
567
|
+
railInsetVerticalRight: string;
|
|
568
|
+
railInsetVerticalLeft: string;
|
|
569
|
+
railColor: string;
|
|
570
|
+
}, any>;
|
|
571
|
+
}>;
|
|
411
572
|
}>;
|
|
412
573
|
}>>;
|
|
413
574
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -436,7 +597,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
436
597
|
arrowOffsetVertical: string;
|
|
437
598
|
arrowHeight: string;
|
|
438
599
|
padding: string;
|
|
439
|
-
},
|
|
600
|
+
}, {
|
|
601
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
602
|
+
height: string;
|
|
603
|
+
width: string;
|
|
604
|
+
borderRadius: string;
|
|
605
|
+
color: string;
|
|
606
|
+
colorHover: string;
|
|
607
|
+
railInsetHorizontalBottom: string;
|
|
608
|
+
railInsetHorizontalTop: string;
|
|
609
|
+
railInsetVerticalRight: string;
|
|
610
|
+
railInsetVerticalLeft: string;
|
|
611
|
+
railColor: string;
|
|
612
|
+
}, any>;
|
|
613
|
+
}>;
|
|
440
614
|
}>;
|
|
441
615
|
}>>>;
|
|
442
616
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -465,7 +639,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
465
639
|
arrowOffsetVertical: string;
|
|
466
640
|
arrowHeight: string;
|
|
467
641
|
padding: string;
|
|
468
|
-
},
|
|
642
|
+
}, {
|
|
643
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
644
|
+
height: string;
|
|
645
|
+
width: string;
|
|
646
|
+
borderRadius: string;
|
|
647
|
+
color: string;
|
|
648
|
+
colorHover: string;
|
|
649
|
+
railInsetHorizontalBottom: string;
|
|
650
|
+
railInsetHorizontalTop: string;
|
|
651
|
+
railInsetVerticalRight: string;
|
|
652
|
+
railInsetVerticalLeft: string;
|
|
653
|
+
railColor: string;
|
|
654
|
+
}, any>;
|
|
655
|
+
}>;
|
|
469
656
|
}>;
|
|
470
657
|
}>>>;
|
|
471
658
|
alt: StringConstructor;
|
|
@@ -671,7 +858,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
671
858
|
arrowOffsetVertical: string;
|
|
672
859
|
arrowHeight: string;
|
|
673
860
|
padding: string;
|
|
674
|
-
},
|
|
861
|
+
}, {
|
|
862
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
863
|
+
height: string;
|
|
864
|
+
width: string;
|
|
865
|
+
borderRadius: string;
|
|
866
|
+
color: string;
|
|
867
|
+
colorHover: string;
|
|
868
|
+
railInsetHorizontalBottom: string;
|
|
869
|
+
railInsetHorizontalTop: string;
|
|
870
|
+
railInsetVerticalRight: string;
|
|
871
|
+
railInsetVerticalLeft: string;
|
|
872
|
+
railColor: string;
|
|
873
|
+
}, any>;
|
|
874
|
+
}>>;
|
|
675
875
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
676
876
|
fontSize: string;
|
|
677
877
|
borderRadius: string;
|
|
@@ -685,7 +885,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
685
885
|
arrowOffsetVertical: string;
|
|
686
886
|
arrowHeight: string;
|
|
687
887
|
padding: string;
|
|
688
|
-
},
|
|
888
|
+
}, {
|
|
889
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
890
|
+
height: string;
|
|
891
|
+
width: string;
|
|
892
|
+
borderRadius: string;
|
|
893
|
+
color: string;
|
|
894
|
+
colorHover: string;
|
|
895
|
+
railInsetHorizontalBottom: string;
|
|
896
|
+
railInsetHorizontalTop: string;
|
|
897
|
+
railInsetVerticalRight: string;
|
|
898
|
+
railInsetVerticalLeft: string;
|
|
899
|
+
railColor: string;
|
|
900
|
+
}, any>;
|
|
901
|
+
}>>>;
|
|
689
902
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
690
903
|
fontSize: string;
|
|
691
904
|
borderRadius: string;
|
|
@@ -699,7 +912,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
699
912
|
arrowOffsetVertical: string;
|
|
700
913
|
arrowHeight: string;
|
|
701
914
|
padding: string;
|
|
702
|
-
},
|
|
915
|
+
}, {
|
|
916
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
917
|
+
height: string;
|
|
918
|
+
width: string;
|
|
919
|
+
borderRadius: string;
|
|
920
|
+
color: string;
|
|
921
|
+
colorHover: string;
|
|
922
|
+
railInsetHorizontalBottom: string;
|
|
923
|
+
railInsetHorizontalTop: string;
|
|
924
|
+
railInsetVerticalRight: string;
|
|
925
|
+
railInsetVerticalLeft: string;
|
|
926
|
+
railColor: string;
|
|
927
|
+
}, any>;
|
|
928
|
+
}>>>;
|
|
703
929
|
}>, {
|
|
704
930
|
binderInstRef: Ref<{
|
|
705
931
|
targetRef: HTMLElement | null;
|
|
@@ -824,7 +1050,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
824
1050
|
arrowOffsetVertical: string;
|
|
825
1051
|
arrowHeight: string;
|
|
826
1052
|
padding: string;
|
|
827
|
-
},
|
|
1053
|
+
}, {
|
|
1054
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1055
|
+
height: string;
|
|
1056
|
+
width: string;
|
|
1057
|
+
borderRadius: string;
|
|
1058
|
+
color: string;
|
|
1059
|
+
colorHover: string;
|
|
1060
|
+
railInsetHorizontalBottom: string;
|
|
1061
|
+
railInsetHorizontalTop: string;
|
|
1062
|
+
railInsetVerticalRight: string;
|
|
1063
|
+
railInsetVerticalLeft: string;
|
|
1064
|
+
railColor: string;
|
|
1065
|
+
}, any>;
|
|
1066
|
+
}>>;
|
|
828
1067
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
829
1068
|
fontSize: string;
|
|
830
1069
|
borderRadius: string;
|
|
@@ -838,7 +1077,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
838
1077
|
arrowOffsetVertical: string;
|
|
839
1078
|
arrowHeight: string;
|
|
840
1079
|
padding: string;
|
|
841
|
-
},
|
|
1080
|
+
}, {
|
|
1081
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1082
|
+
height: string;
|
|
1083
|
+
width: string;
|
|
1084
|
+
borderRadius: string;
|
|
1085
|
+
color: string;
|
|
1086
|
+
colorHover: string;
|
|
1087
|
+
railInsetHorizontalBottom: string;
|
|
1088
|
+
railInsetHorizontalTop: string;
|
|
1089
|
+
railInsetVerticalRight: string;
|
|
1090
|
+
railInsetVerticalLeft: string;
|
|
1091
|
+
railColor: string;
|
|
1092
|
+
}, any>;
|
|
1093
|
+
}>>>;
|
|
842
1094
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
843
1095
|
fontSize: string;
|
|
844
1096
|
borderRadius: string;
|
|
@@ -852,7 +1104,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
852
1104
|
arrowOffsetVertical: string;
|
|
853
1105
|
arrowHeight: string;
|
|
854
1106
|
padding: string;
|
|
855
|
-
},
|
|
1107
|
+
}, {
|
|
1108
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1109
|
+
height: string;
|
|
1110
|
+
width: string;
|
|
1111
|
+
borderRadius: string;
|
|
1112
|
+
color: string;
|
|
1113
|
+
colorHover: string;
|
|
1114
|
+
railInsetHorizontalBottom: string;
|
|
1115
|
+
railInsetHorizontalTop: string;
|
|
1116
|
+
railInsetVerticalRight: string;
|
|
1117
|
+
railInsetVerticalLeft: string;
|
|
1118
|
+
railColor: string;
|
|
1119
|
+
}, any>;
|
|
1120
|
+
}>>>;
|
|
856
1121
|
}>> & Readonly<{}>, {
|
|
857
1122
|
to: string | boolean | HTMLElement;
|
|
858
1123
|
disabled: boolean;
|
|
@@ -862,22 +1127,22 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
862
1127
|
duration: number;
|
|
863
1128
|
raw: boolean;
|
|
864
1129
|
placement: PopoverPlacement;
|
|
865
|
-
overlap: boolean;
|
|
866
|
-
scrollable: boolean;
|
|
867
|
-
trigger: PopoverTrigger;
|
|
868
1130
|
showArrow: boolean;
|
|
1131
|
+
trigger: PopoverTrigger;
|
|
1132
|
+
arrow: boolean | undefined;
|
|
1133
|
+
defaultShow: boolean;
|
|
869
1134
|
delay: number;
|
|
870
1135
|
arrowPointToCenter: boolean;
|
|
871
1136
|
displayDirective: "show" | "if";
|
|
1137
|
+
animated: boolean;
|
|
1138
|
+
overlap: boolean;
|
|
872
1139
|
keepAliveOnHover: boolean;
|
|
1140
|
+
scrollable: boolean;
|
|
873
1141
|
internalDeactivateImmediately: boolean;
|
|
874
|
-
animated: boolean;
|
|
875
|
-
internalTrapFocus: boolean;
|
|
876
|
-
defaultShow: boolean;
|
|
877
1142
|
internalSyncTargetWithParent: boolean;
|
|
878
1143
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
1144
|
+
internalTrapFocus: boolean;
|
|
879
1145
|
internalExtraClass: string[];
|
|
880
|
-
arrow: boolean | undefined;
|
|
881
1146
|
}, SlotsType<PopoverSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
882
1147
|
PhotoOff: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
883
1148
|
FileText: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|