x-next 0.0.0-alpha.49 → 0.0.0-alpha.50
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/_container/render-function.d.ts +14 -0
- package/dist/_hooks/use-merge-state.d.ts +4 -0
- package/dist/_hooks/use-popup-container.d.ts +6 -0
- package/dist/_hooks/use-popup-overflow-hidden.d.ts +6 -0
- package/dist/_hooks/use-state.d.ts +2 -0
- package/dist/_utils/dom.d.ts +1 -0
- package/dist/components/image/ImagePreviewAction.d.ts +1354 -0
- package/dist/components/image/context.d.ts +6 -0
- package/dist/components/image/hooks/use-image-drag.d.ts +11 -0
- package/dist/components/image/hooks/use-image-load-status.d.ts +10 -0
- package/dist/components/image/image-footer.vue.d.ts +23 -0
- package/dist/components/image/interface.d.ts +45 -0
- package/dist/components/image/preview-arrow.vue.d.ts +122 -0
- package/dist/components/image/preview-toolbar.vue.d.ts +1388 -0
- package/dist/components/image/utils/get-fix-translate.d.ts +1 -0
- package/dist/components/image/utils/get-scale.d.ts +6 -0
- package/dist/components/image/utils/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/tag/Tag.vue.d.ts +1 -1
- package/dist/components/tag/index.d.ts +3 -3
- package/dist/components/tooltip/Tooltip.vue.d.ts +12 -12
- package/dist/components/tooltip/index.d.ts +24 -24
- package/dist/components/trigger/index.d.ts +6 -6
- package/dist/components/trigger/src/trigger.d.ts +2 -2
- package/dist/components/trigger-v2/index.d.ts +12 -12
- package/dist/components/trigger-v2/trigger.d.ts +4 -4
- package/dist/icons/_self/full-screen.d.ts +50 -0
- package/dist/icons/_self/next.d.ts +50 -0
- package/dist/icons/_self/original-size.d.ts +50 -0
- package/dist/icons/_self/prev.d.ts +50 -0
- package/dist/icons/_self/rotate-left.d.ts +50 -0
- package/dist/icons/_self/rotate-right.d.ts +50 -0
- package/dist/icons/_self/zoom-in.d.ts +50 -0
- package/dist/icons/_self/zoom-out.d.ts +50 -0
- package/dist/icons/default/left.d.ts +50 -0
- package/dist/icons/default/right.d.ts +50 -0
- package/dist/icons/index.d.ts +3 -1
- package/dist/index.es.js +4673 -3231
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
- package/volar.d.ts +4 -0
@@ -0,0 +1 @@
|
|
1
|
+
export default function getFixTranslate(wrapperRect: DOMRect, imgRect: DOMRect, translateX: number, translateY: number, scale: number): [number, number];
|
@@ -0,0 +1,6 @@
|
|
1
|
+
type ZoomType = 'zoomIn' | 'zoomOut';
|
2
|
+
export declare const minScale: number;
|
3
|
+
export declare const maxScale: number;
|
4
|
+
export default function getScale(cur?: number, type?: ZoomType): number;
|
5
|
+
export declare function getScaleByRate(scale: number, rate?: number, type?: ZoomType): number;
|
6
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function normalizeImageSizeProp(size?: string | number): string | undefined;
|
@@ -231,9 +231,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
231
231
|
loading: boolean;
|
232
232
|
visible: boolean;
|
233
233
|
nowrap: boolean;
|
234
|
-
bordered: boolean;
|
235
234
|
defaultVisible: boolean;
|
236
235
|
closable: boolean;
|
236
|
+
bordered: boolean;
|
237
237
|
selectable: boolean;
|
238
238
|
checked: boolean;
|
239
239
|
defaultChecked: boolean;
|
@@ -73,9 +73,9 @@ export declare const XTag: {
|
|
73
73
|
loading: boolean;
|
74
74
|
visible: boolean;
|
75
75
|
nowrap: boolean;
|
76
|
-
bordered: boolean;
|
77
76
|
defaultVisible: boolean;
|
78
77
|
closable: boolean;
|
78
|
+
bordered: boolean;
|
79
79
|
selectable: boolean;
|
80
80
|
checked: boolean;
|
81
81
|
defaultChecked: boolean;
|
@@ -289,9 +289,9 @@ export declare const XTag: {
|
|
289
289
|
loading: boolean;
|
290
290
|
visible: boolean;
|
291
291
|
nowrap: boolean;
|
292
|
-
bordered: boolean;
|
293
292
|
defaultVisible: boolean;
|
294
293
|
closable: boolean;
|
294
|
+
bordered: boolean;
|
295
295
|
selectable: boolean;
|
296
296
|
checked: boolean;
|
297
297
|
defaultChecked: boolean;
|
@@ -373,9 +373,9 @@ export declare const XTag: {
|
|
373
373
|
loading: boolean;
|
374
374
|
visible: boolean;
|
375
375
|
nowrap: boolean;
|
376
|
-
bordered: boolean;
|
377
376
|
defaultVisible: boolean;
|
378
377
|
closable: boolean;
|
378
|
+
bordered: boolean;
|
379
379
|
selectable: boolean;
|
380
380
|
checked: boolean;
|
381
381
|
defaultChecked: boolean;
|
@@ -355,7 +355,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
355
355
|
disabled: boolean;
|
356
356
|
animationName: string;
|
357
357
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
358
|
-
|
358
|
+
autoFitPosition: boolean;
|
359
359
|
popupVisible: boolean;
|
360
360
|
defaultPopupVisible: boolean;
|
361
361
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -373,11 +373,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
373
373
|
autoFitPopupWidth: boolean;
|
374
374
|
autoFitPopupMinWidth: boolean;
|
375
375
|
autoFixPosition: boolean;
|
376
|
-
autoFitTransformOrigin: boolean;
|
377
|
-
autoFitPosition: boolean;
|
378
|
-
preventFocus: boolean;
|
379
376
|
updateAtScroll: boolean;
|
377
|
+
autoFitTransformOrigin: boolean;
|
380
378
|
hideEmpty: boolean;
|
379
|
+
renderToBody: boolean;
|
380
|
+
preventFocus: boolean;
|
381
381
|
scrollToClose: boolean;
|
382
382
|
scrollToCloseDistance: number;
|
383
383
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
@@ -540,7 +540,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
540
540
|
disabled: boolean;
|
541
541
|
animationName: string;
|
542
542
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
543
|
-
|
543
|
+
autoFitPosition: boolean;
|
544
544
|
popupVisible: boolean;
|
545
545
|
defaultPopupVisible: boolean;
|
546
546
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -558,11 +558,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
558
558
|
autoFitPopupWidth: boolean;
|
559
559
|
autoFitPopupMinWidth: boolean;
|
560
560
|
autoFixPosition: boolean;
|
561
|
-
autoFitTransformOrigin: boolean;
|
562
|
-
autoFitPosition: boolean;
|
563
|
-
preventFocus: boolean;
|
564
561
|
updateAtScroll: boolean;
|
562
|
+
autoFitTransformOrigin: boolean;
|
565
563
|
hideEmpty: boolean;
|
564
|
+
renderToBody: boolean;
|
565
|
+
preventFocus: boolean;
|
566
566
|
scrollToClose: boolean;
|
567
567
|
scrollToCloseDistance: number;
|
568
568
|
}>;
|
@@ -728,7 +728,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
728
728
|
disabled: boolean;
|
729
729
|
animationName: string;
|
730
730
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
731
|
-
|
731
|
+
autoFitPosition: boolean;
|
732
732
|
popupVisible: boolean;
|
733
733
|
defaultPopupVisible: boolean;
|
734
734
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -746,11 +746,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
746
746
|
autoFitPopupWidth: boolean;
|
747
747
|
autoFitPopupMinWidth: boolean;
|
748
748
|
autoFixPosition: boolean;
|
749
|
-
autoFitTransformOrigin: boolean;
|
750
|
-
autoFitPosition: boolean;
|
751
|
-
preventFocus: boolean;
|
752
749
|
updateAtScroll: boolean;
|
750
|
+
autoFitTransformOrigin: boolean;
|
753
751
|
hideEmpty: boolean;
|
752
|
+
renderToBody: boolean;
|
753
|
+
preventFocus: boolean;
|
754
754
|
scrollToClose: boolean;
|
755
755
|
scrollToCloseDistance: number;
|
756
756
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
@@ -220,7 +220,7 @@ export declare const XTooltip: {
|
|
220
220
|
disabled: boolean;
|
221
221
|
animationName: string;
|
222
222
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
223
|
-
|
223
|
+
autoFitPosition: boolean;
|
224
224
|
popupVisible: boolean;
|
225
225
|
defaultPopupVisible: boolean;
|
226
226
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -238,11 +238,11 @@ export declare const XTooltip: {
|
|
238
238
|
autoFitPopupWidth: boolean;
|
239
239
|
autoFitPopupMinWidth: boolean;
|
240
240
|
autoFixPosition: boolean;
|
241
|
-
autoFitTransformOrigin: boolean;
|
242
|
-
autoFitPosition: boolean;
|
243
|
-
preventFocus: boolean;
|
244
241
|
updateAtScroll: boolean;
|
242
|
+
autoFitTransformOrigin: boolean;
|
245
243
|
hideEmpty: boolean;
|
244
|
+
renderToBody: boolean;
|
245
|
+
preventFocus: boolean;
|
246
246
|
scrollToClose: boolean;
|
247
247
|
scrollToCloseDistance: number;
|
248
248
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
@@ -405,7 +405,7 @@ export declare const XTooltip: {
|
|
405
405
|
disabled: boolean;
|
406
406
|
animationName: string;
|
407
407
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
408
|
-
|
408
|
+
autoFitPosition: boolean;
|
409
409
|
popupVisible: boolean;
|
410
410
|
defaultPopupVisible: boolean;
|
411
411
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -423,11 +423,11 @@ export declare const XTooltip: {
|
|
423
423
|
autoFitPopupWidth: boolean;
|
424
424
|
autoFitPopupMinWidth: boolean;
|
425
425
|
autoFixPosition: boolean;
|
426
|
-
autoFitTransformOrigin: boolean;
|
427
|
-
autoFitPosition: boolean;
|
428
|
-
preventFocus: boolean;
|
429
426
|
updateAtScroll: boolean;
|
427
|
+
autoFitTransformOrigin: boolean;
|
430
428
|
hideEmpty: boolean;
|
429
|
+
renderToBody: boolean;
|
430
|
+
preventFocus: boolean;
|
431
431
|
scrollToClose: boolean;
|
432
432
|
scrollToCloseDistance: number;
|
433
433
|
}>;
|
@@ -593,7 +593,7 @@ export declare const XTooltip: {
|
|
593
593
|
disabled: boolean;
|
594
594
|
animationName: string;
|
595
595
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
596
|
-
|
596
|
+
autoFitPosition: boolean;
|
597
597
|
popupVisible: boolean;
|
598
598
|
defaultPopupVisible: boolean;
|
599
599
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -611,11 +611,11 @@ export declare const XTooltip: {
|
|
611
611
|
autoFitPopupWidth: boolean;
|
612
612
|
autoFitPopupMinWidth: boolean;
|
613
613
|
autoFixPosition: boolean;
|
614
|
-
autoFitTransformOrigin: boolean;
|
615
|
-
autoFitPosition: boolean;
|
616
|
-
preventFocus: boolean;
|
617
614
|
updateAtScroll: boolean;
|
615
|
+
autoFitTransformOrigin: boolean;
|
618
616
|
hideEmpty: boolean;
|
617
|
+
renderToBody: boolean;
|
618
|
+
preventFocus: boolean;
|
619
619
|
scrollToClose: boolean;
|
620
620
|
scrollToCloseDistance: number;
|
621
621
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
@@ -910,7 +910,7 @@ export declare const XTooltip: {
|
|
910
910
|
disabled: boolean;
|
911
911
|
animationName: string;
|
912
912
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
913
|
-
|
913
|
+
autoFitPosition: boolean;
|
914
914
|
popupVisible: boolean;
|
915
915
|
defaultPopupVisible: boolean;
|
916
916
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -928,11 +928,11 @@ export declare const XTooltip: {
|
|
928
928
|
autoFitPopupWidth: boolean;
|
929
929
|
autoFitPopupMinWidth: boolean;
|
930
930
|
autoFixPosition: boolean;
|
931
|
-
autoFitTransformOrigin: boolean;
|
932
|
-
autoFitPosition: boolean;
|
933
|
-
preventFocus: boolean;
|
934
931
|
updateAtScroll: boolean;
|
932
|
+
autoFitTransformOrigin: boolean;
|
935
933
|
hideEmpty: boolean;
|
934
|
+
renderToBody: boolean;
|
935
|
+
preventFocus: boolean;
|
936
936
|
scrollToClose: boolean;
|
937
937
|
scrollToCloseDistance: number;
|
938
938
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
@@ -1095,7 +1095,7 @@ export declare const XTooltip: {
|
|
1095
1095
|
disabled: boolean;
|
1096
1096
|
animationName: string;
|
1097
1097
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
1098
|
-
|
1098
|
+
autoFitPosition: boolean;
|
1099
1099
|
popupVisible: boolean;
|
1100
1100
|
defaultPopupVisible: boolean;
|
1101
1101
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -1113,11 +1113,11 @@ export declare const XTooltip: {
|
|
1113
1113
|
autoFitPopupWidth: boolean;
|
1114
1114
|
autoFitPopupMinWidth: boolean;
|
1115
1115
|
autoFixPosition: boolean;
|
1116
|
-
autoFitTransformOrigin: boolean;
|
1117
|
-
autoFitPosition: boolean;
|
1118
|
-
preventFocus: boolean;
|
1119
1116
|
updateAtScroll: boolean;
|
1117
|
+
autoFitTransformOrigin: boolean;
|
1120
1118
|
hideEmpty: boolean;
|
1119
|
+
renderToBody: boolean;
|
1120
|
+
preventFocus: boolean;
|
1121
1121
|
scrollToClose: boolean;
|
1122
1122
|
scrollToCloseDistance: number;
|
1123
1123
|
}>;
|
@@ -1283,7 +1283,7 @@ export declare const XTooltip: {
|
|
1283
1283
|
disabled: boolean;
|
1284
1284
|
animationName: string;
|
1285
1285
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
1286
|
-
|
1286
|
+
autoFitPosition: boolean;
|
1287
1287
|
popupVisible: boolean;
|
1288
1288
|
defaultPopupVisible: boolean;
|
1289
1289
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -1301,11 +1301,11 @@ export declare const XTooltip: {
|
|
1301
1301
|
autoFitPopupWidth: boolean;
|
1302
1302
|
autoFitPopupMinWidth: boolean;
|
1303
1303
|
autoFixPosition: boolean;
|
1304
|
-
autoFitTransformOrigin: boolean;
|
1305
|
-
autoFitPosition: boolean;
|
1306
|
-
preventFocus: boolean;
|
1307
1304
|
updateAtScroll: boolean;
|
1305
|
+
autoFitTransformOrigin: boolean;
|
1308
1306
|
hideEmpty: boolean;
|
1307
|
+
renderToBody: boolean;
|
1308
|
+
preventFocus: boolean;
|
1309
1309
|
scrollToClose: boolean;
|
1310
1310
|
scrollToCloseDistance: number;
|
1311
1311
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
@@ -135,7 +135,7 @@ export declare const XTrigger: {
|
|
135
135
|
disabled: boolean;
|
136
136
|
animationName: string;
|
137
137
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
138
|
-
|
138
|
+
autoFitPosition: boolean;
|
139
139
|
popupVisible: boolean;
|
140
140
|
defaultPopupVisible: boolean;
|
141
141
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -154,7 +154,7 @@ export declare const XTrigger: {
|
|
154
154
|
autoFitPopupMinWidth: boolean;
|
155
155
|
autoFixPosition: boolean;
|
156
156
|
autoFitTransformOrigin: boolean;
|
157
|
-
|
157
|
+
renderToBody: boolean;
|
158
158
|
preventFocus: boolean;
|
159
159
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
160
160
|
P: {};
|
@@ -299,7 +299,7 @@ export declare const XTrigger: {
|
|
299
299
|
disabled: boolean;
|
300
300
|
animationName: string;
|
301
301
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
302
|
-
|
302
|
+
autoFitPosition: boolean;
|
303
303
|
popupVisible: boolean;
|
304
304
|
defaultPopupVisible: boolean;
|
305
305
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -318,7 +318,7 @@ export declare const XTrigger: {
|
|
318
318
|
autoFitPopupMinWidth: boolean;
|
319
319
|
autoFixPosition: boolean;
|
320
320
|
autoFitTransformOrigin: boolean;
|
321
|
-
|
321
|
+
renderToBody: boolean;
|
322
322
|
preventFocus: boolean;
|
323
323
|
}>;
|
324
324
|
__isFragment?: never;
|
@@ -460,7 +460,7 @@ export declare const XTrigger: {
|
|
460
460
|
disabled: boolean;
|
461
461
|
animationName: string;
|
462
462
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
463
|
-
|
463
|
+
autoFitPosition: boolean;
|
464
464
|
popupVisible: boolean;
|
465
465
|
defaultPopupVisible: boolean;
|
466
466
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -479,7 +479,7 @@ export declare const XTrigger: {
|
|
479
479
|
autoFitPopupMinWidth: boolean;
|
480
480
|
autoFixPosition: boolean;
|
481
481
|
autoFitTransformOrigin: boolean;
|
482
|
-
|
482
|
+
renderToBody: boolean;
|
483
483
|
preventFocus: boolean;
|
484
484
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
485
485
|
install(app: import('vue').App): void;
|
@@ -263,7 +263,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
263
263
|
disabled: boolean;
|
264
264
|
animationName: string;
|
265
265
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
266
|
-
|
266
|
+
autoFitPosition: boolean;
|
267
267
|
popupVisible: boolean;
|
268
268
|
defaultPopupVisible: boolean;
|
269
269
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -282,7 +282,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
282
282
|
autoFitPopupMinWidth: boolean;
|
283
283
|
autoFixPosition: boolean;
|
284
284
|
autoFitTransformOrigin: boolean;
|
285
|
-
|
285
|
+
renderToBody: boolean;
|
286
286
|
preventFocus: boolean;
|
287
287
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
288
288
|
export default _default;
|
@@ -158,7 +158,7 @@ export declare const XTrigger: {
|
|
158
158
|
disabled: boolean;
|
159
159
|
animationName: string;
|
160
160
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
161
|
-
|
161
|
+
autoFitPosition: boolean;
|
162
162
|
popupVisible: boolean;
|
163
163
|
defaultPopupVisible: boolean;
|
164
164
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -176,11 +176,11 @@ export declare const XTrigger: {
|
|
176
176
|
autoFitPopupWidth: boolean;
|
177
177
|
autoFitPopupMinWidth: boolean;
|
178
178
|
autoFixPosition: boolean;
|
179
|
-
autoFitTransformOrigin: boolean;
|
180
|
-
autoFitPosition: boolean;
|
181
|
-
preventFocus: boolean;
|
182
179
|
updateAtScroll: boolean;
|
180
|
+
autoFitTransformOrigin: boolean;
|
183
181
|
hideEmpty: boolean;
|
182
|
+
renderToBody: boolean;
|
183
|
+
preventFocus: boolean;
|
184
184
|
scrollToClose: boolean;
|
185
185
|
scrollToCloseDistance: number;
|
186
186
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
@@ -343,7 +343,7 @@ export declare const XTrigger: {
|
|
343
343
|
disabled: boolean;
|
344
344
|
animationName: string;
|
345
345
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
346
|
-
|
346
|
+
autoFitPosition: boolean;
|
347
347
|
popupVisible: boolean;
|
348
348
|
defaultPopupVisible: boolean;
|
349
349
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -361,11 +361,11 @@ export declare const XTrigger: {
|
|
361
361
|
autoFitPopupWidth: boolean;
|
362
362
|
autoFitPopupMinWidth: boolean;
|
363
363
|
autoFixPosition: boolean;
|
364
|
-
autoFitTransformOrigin: boolean;
|
365
|
-
autoFitPosition: boolean;
|
366
|
-
preventFocus: boolean;
|
367
364
|
updateAtScroll: boolean;
|
365
|
+
autoFitTransformOrigin: boolean;
|
368
366
|
hideEmpty: boolean;
|
367
|
+
renderToBody: boolean;
|
368
|
+
preventFocus: boolean;
|
369
369
|
scrollToClose: boolean;
|
370
370
|
scrollToCloseDistance: number;
|
371
371
|
}>;
|
@@ -531,7 +531,7 @@ export declare const XTrigger: {
|
|
531
531
|
disabled: boolean;
|
532
532
|
animationName: string;
|
533
533
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
534
|
-
|
534
|
+
autoFitPosition: boolean;
|
535
535
|
popupVisible: boolean;
|
536
536
|
defaultPopupVisible: boolean;
|
537
537
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -549,11 +549,11 @@ export declare const XTrigger: {
|
|
549
549
|
autoFitPopupWidth: boolean;
|
550
550
|
autoFitPopupMinWidth: boolean;
|
551
551
|
autoFixPosition: boolean;
|
552
|
-
autoFitTransformOrigin: boolean;
|
553
|
-
autoFitPosition: boolean;
|
554
|
-
preventFocus: boolean;
|
555
552
|
updateAtScroll: boolean;
|
553
|
+
autoFitTransformOrigin: boolean;
|
556
554
|
hideEmpty: boolean;
|
555
|
+
renderToBody: boolean;
|
556
|
+
preventFocus: boolean;
|
557
557
|
scrollToClose: boolean;
|
558
558
|
scrollToCloseDistance: number;
|
559
559
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
@@ -598,7 +598,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
598
598
|
disabled: boolean;
|
599
599
|
animationName: string;
|
600
600
|
position: "br" | "rt" | "tr" | "bottom" | "left" | "right" | "top" | "rb" | "tl" | "bl" | "lt" | "lb";
|
601
|
-
|
601
|
+
autoFitPosition: boolean;
|
602
602
|
popupVisible: boolean;
|
603
603
|
defaultPopupVisible: boolean;
|
604
604
|
trigger: "click" | "focus" | "hover" | "contextMenu" | ("click" | "focus" | "hover" | "contextMenu")[];
|
@@ -616,11 +616,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
616
616
|
autoFitPopupWidth: boolean;
|
617
617
|
autoFitPopupMinWidth: boolean;
|
618
618
|
autoFixPosition: boolean;
|
619
|
-
autoFitTransformOrigin: boolean;
|
620
|
-
autoFitPosition: boolean;
|
621
|
-
preventFocus: boolean;
|
622
619
|
updateAtScroll: boolean;
|
620
|
+
autoFitTransformOrigin: boolean;
|
623
621
|
hideEmpty: boolean;
|
622
|
+
renderToBody: boolean;
|
623
|
+
preventFocus: boolean;
|
624
624
|
scrollToClose: boolean;
|
625
625
|
scrollToCloseDistance: number;
|
626
626
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
@@ -0,0 +1,50 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
size: {
|
3
|
+
type: (NumberConstructor | StringConstructor)[];
|
4
|
+
default: undefined;
|
5
|
+
};
|
6
|
+
rotate: {
|
7
|
+
type: NumberConstructor;
|
8
|
+
default: undefined;
|
9
|
+
};
|
10
|
+
spin: {
|
11
|
+
type: BooleanConstructor;
|
12
|
+
default: boolean;
|
13
|
+
};
|
14
|
+
color: {
|
15
|
+
type: StringConstructor;
|
16
|
+
default: undefined;
|
17
|
+
};
|
18
|
+
fillColor: {
|
19
|
+
type: ArrayConstructor;
|
20
|
+
default: undefined;
|
21
|
+
};
|
22
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
|
+
size: {
|
24
|
+
type: (NumberConstructor | StringConstructor)[];
|
25
|
+
default: undefined;
|
26
|
+
};
|
27
|
+
rotate: {
|
28
|
+
type: NumberConstructor;
|
29
|
+
default: undefined;
|
30
|
+
};
|
31
|
+
spin: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
color: {
|
36
|
+
type: StringConstructor;
|
37
|
+
default: undefined;
|
38
|
+
};
|
39
|
+
fillColor: {
|
40
|
+
type: ArrayConstructor;
|
41
|
+
default: undefined;
|
42
|
+
};
|
43
|
+
}>> & Readonly<{}>, {
|
44
|
+
size: string | number;
|
45
|
+
rotate: number;
|
46
|
+
spin: boolean;
|
47
|
+
color: string;
|
48
|
+
fillColor: unknown[];
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
50
|
+
export default _default;
|
@@ -0,0 +1,50 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
size: {
|
3
|
+
type: (NumberConstructor | StringConstructor)[];
|
4
|
+
default: undefined;
|
5
|
+
};
|
6
|
+
rotate: {
|
7
|
+
type: NumberConstructor;
|
8
|
+
default: undefined;
|
9
|
+
};
|
10
|
+
spin: {
|
11
|
+
type: BooleanConstructor;
|
12
|
+
default: boolean;
|
13
|
+
};
|
14
|
+
color: {
|
15
|
+
type: StringConstructor;
|
16
|
+
default: undefined;
|
17
|
+
};
|
18
|
+
fillColor: {
|
19
|
+
type: ArrayConstructor;
|
20
|
+
default: undefined;
|
21
|
+
};
|
22
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
|
+
size: {
|
24
|
+
type: (NumberConstructor | StringConstructor)[];
|
25
|
+
default: undefined;
|
26
|
+
};
|
27
|
+
rotate: {
|
28
|
+
type: NumberConstructor;
|
29
|
+
default: undefined;
|
30
|
+
};
|
31
|
+
spin: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
color: {
|
36
|
+
type: StringConstructor;
|
37
|
+
default: undefined;
|
38
|
+
};
|
39
|
+
fillColor: {
|
40
|
+
type: ArrayConstructor;
|
41
|
+
default: undefined;
|
42
|
+
};
|
43
|
+
}>> & Readonly<{}>, {
|
44
|
+
size: string | number;
|
45
|
+
rotate: number;
|
46
|
+
spin: boolean;
|
47
|
+
color: string;
|
48
|
+
fillColor: unknown[];
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
50
|
+
export default _default;
|
@@ -0,0 +1,50 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
size: {
|
3
|
+
type: (NumberConstructor | StringConstructor)[];
|
4
|
+
default: undefined;
|
5
|
+
};
|
6
|
+
rotate: {
|
7
|
+
type: NumberConstructor;
|
8
|
+
default: undefined;
|
9
|
+
};
|
10
|
+
spin: {
|
11
|
+
type: BooleanConstructor;
|
12
|
+
default: boolean;
|
13
|
+
};
|
14
|
+
color: {
|
15
|
+
type: StringConstructor;
|
16
|
+
default: undefined;
|
17
|
+
};
|
18
|
+
fillColor: {
|
19
|
+
type: ArrayConstructor;
|
20
|
+
default: undefined;
|
21
|
+
};
|
22
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
|
+
size: {
|
24
|
+
type: (NumberConstructor | StringConstructor)[];
|
25
|
+
default: undefined;
|
26
|
+
};
|
27
|
+
rotate: {
|
28
|
+
type: NumberConstructor;
|
29
|
+
default: undefined;
|
30
|
+
};
|
31
|
+
spin: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
color: {
|
36
|
+
type: StringConstructor;
|
37
|
+
default: undefined;
|
38
|
+
};
|
39
|
+
fillColor: {
|
40
|
+
type: ArrayConstructor;
|
41
|
+
default: undefined;
|
42
|
+
};
|
43
|
+
}>> & Readonly<{}>, {
|
44
|
+
size: string | number;
|
45
|
+
rotate: number;
|
46
|
+
spin: boolean;
|
47
|
+
color: string;
|
48
|
+
fillColor: unknown[];
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
50
|
+
export default _default;
|
@@ -0,0 +1,50 @@
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
2
|
+
size: {
|
3
|
+
type: (NumberConstructor | StringConstructor)[];
|
4
|
+
default: undefined;
|
5
|
+
};
|
6
|
+
rotate: {
|
7
|
+
type: NumberConstructor;
|
8
|
+
default: undefined;
|
9
|
+
};
|
10
|
+
spin: {
|
11
|
+
type: BooleanConstructor;
|
12
|
+
default: boolean;
|
13
|
+
};
|
14
|
+
color: {
|
15
|
+
type: StringConstructor;
|
16
|
+
default: undefined;
|
17
|
+
};
|
18
|
+
fillColor: {
|
19
|
+
type: ArrayConstructor;
|
20
|
+
default: undefined;
|
21
|
+
};
|
22
|
+
}>, () => any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
23
|
+
size: {
|
24
|
+
type: (NumberConstructor | StringConstructor)[];
|
25
|
+
default: undefined;
|
26
|
+
};
|
27
|
+
rotate: {
|
28
|
+
type: NumberConstructor;
|
29
|
+
default: undefined;
|
30
|
+
};
|
31
|
+
spin: {
|
32
|
+
type: BooleanConstructor;
|
33
|
+
default: boolean;
|
34
|
+
};
|
35
|
+
color: {
|
36
|
+
type: StringConstructor;
|
37
|
+
default: undefined;
|
38
|
+
};
|
39
|
+
fillColor: {
|
40
|
+
type: ArrayConstructor;
|
41
|
+
default: undefined;
|
42
|
+
};
|
43
|
+
}>> & Readonly<{}>, {
|
44
|
+
size: string | number;
|
45
|
+
rotate: number;
|
46
|
+
spin: boolean;
|
47
|
+
color: string;
|
48
|
+
fillColor: unknown[];
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
50
|
+
export default _default;
|