@dazhicheng/ui 1.5.3 → 1.5.4
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/components/tt-button/index.d.ts +476 -476
- package/dist/components/tt-button/index.vue.d.ts +272 -272
- package/dist/components/tt-checkbox/index.d.ts +5 -5
- package/dist/components/tt-checkbox/index.vue.d.ts +2 -2
- package/dist/components/tt-drawer/index.d.ts +540 -540
- package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +297 -297
- package/dist/components/tt-form/src/form/RenderContent.vue.d.ts +2 -2
- package/dist/components/tt-form/src/form-render/dependencies.d.ts +118 -118
- package/dist/components/tt-form-item-error-tooltip/index.d.ts +196 -196
- package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +98 -98
- package/dist/components/tt-icon/index.d.ts +3 -3
- package/dist/components/tt-icon/index.vue.d.ts +1 -1
- package/dist/components/tt-image/index.d.ts +5 -5
- package/dist/components/tt-image/src/components/ImageViewer.d.ts +2 -2
- package/dist/components/tt-image/tt-image.d.ts +5 -5
- package/dist/components/tt-loading/index.d.ts +3 -3
- package/dist/components/tt-loading/src/loading.vue.d.ts +3 -3
- package/dist/components/tt-modal/index.d.ts +184 -184
- package/dist/components/tt-modal/src/RenderModal.vue.d.ts +101 -101
- package/dist/components/tt-modal/src/components/ModalWrapper.vue.d.ts +10 -10
- package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +33 -33
- package/dist/components/tt-part/index.d.ts +12 -12
- package/dist/components/tt-part/index.vue.d.ts +4 -4
- package/dist/components/tt-select/src/Select.vue.d.ts +89 -89
- package/dist/components/tt-select/src/components/SelectTable.vue.d.ts +7 -7
- package/dist/components/tt-select/src/components/Table.vue.d.ts +9 -9
- package/dist/components/tt-table/src/Table.vue.d.ts +183 -177
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +202 -196
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +128 -128
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +2 -2
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts +1 -3
- package/dist/components/tt-table/src/props.d.ts +7 -4
- package/dist/components/tt-table/src/toolProps.d.ts +6 -2
- package/dist/components/tt-table/src/types/table.d.ts +2 -6
- package/dist/components/tt-table/src/types/tableTools.d.ts +2 -13
- package/dist/components/tt-text/index.d.ts +3 -3
- package/dist/components/tt-text/index.vue.d.ts +1 -1
- package/dist/components/tt-validate/src/Field.d.ts +4 -4
- package/dist/components/tt-validate/src/Form.d.ts +1 -1
- package/dist/components/tt-validate/src/utils/assertions.d.ts +1 -1
- package/dist/components/types.d.ts +2 -0
- package/dist/index.js +5968 -6003
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -42,10 +42,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
42
42
|
default: string;
|
|
43
43
|
};
|
|
44
44
|
}>> & Readonly<{}>, {
|
|
45
|
-
placement: any;
|
|
46
|
-
fieldName: string;
|
|
47
45
|
errMsg: string;
|
|
48
46
|
refDom: HTMLElement | null;
|
|
47
|
+
placement: any;
|
|
48
|
+
fieldName: string;
|
|
49
49
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
50
50
|
tooltipRef: ({
|
|
51
51
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -79,10 +79,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
79
79
|
triggerKeys: string[];
|
|
80
80
|
showArrow: boolean;
|
|
81
81
|
}> & Omit<{
|
|
82
|
-
readonly offset: number;
|
|
83
82
|
readonly placement: import('element-plus').Placement;
|
|
84
83
|
readonly visible: boolean | null;
|
|
85
|
-
readonly content: string;
|
|
86
84
|
readonly effect: import('element-plus').PopperEffect;
|
|
87
85
|
readonly enterable: boolean;
|
|
88
86
|
readonly pure: boolean;
|
|
@@ -93,28 +91,21 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
93
91
|
readonly loop: boolean;
|
|
94
92
|
readonly boundariesPadding: number;
|
|
95
93
|
readonly gpuAcceleration: boolean;
|
|
94
|
+
readonly offset: number;
|
|
96
95
|
readonly popperOptions: Partial<import('element-plus').Options>;
|
|
97
|
-
readonly strategy: "
|
|
96
|
+
readonly strategy: "absolute" | "fixed";
|
|
98
97
|
readonly arrowOffset: number;
|
|
99
98
|
readonly showArrow: boolean;
|
|
100
99
|
readonly role: typeof import('element-plus').roleTypes[number];
|
|
100
|
+
readonly content: string;
|
|
101
101
|
readonly teleported: boolean;
|
|
102
102
|
readonly showAfter: number;
|
|
103
103
|
readonly hideAfter: number;
|
|
104
104
|
readonly autoClose: number;
|
|
105
105
|
readonly trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
|
|
106
106
|
readonly triggerKeys: string[];
|
|
107
|
-
readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
|
|
108
107
|
readonly id?: string | undefined;
|
|
109
|
-
readonly
|
|
110
|
-
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
111
|
-
readonly onBlur?: ((e: FocusEvent) => void) | undefined;
|
|
112
|
-
readonly onClick?: ((e: PointerEvent) => void) | undefined;
|
|
113
|
-
readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
|
|
114
|
-
readonly onFocus?: ((e: FocusEvent) => void) | undefined;
|
|
115
|
-
readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
116
|
-
readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
|
|
117
|
-
readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
|
|
108
|
+
readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
|
|
118
109
|
readonly className?: (string | {
|
|
119
110
|
[x: string]: boolean;
|
|
120
111
|
} | (string | {
|
|
@@ -168,15 +159,24 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
168
159
|
readonly popperStyle?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
|
|
169
160
|
readonly referenceEl?: HTMLElement | undefined;
|
|
170
161
|
readonly triggerTargetEl?: HTMLElement | undefined;
|
|
162
|
+
readonly zIndex?: number | undefined;
|
|
171
163
|
readonly ariaLabel?: string | undefined;
|
|
172
164
|
readonly fallbackPlacements?: import('element-plus').Placement[] | undefined;
|
|
173
165
|
"onUpdate:visible"?: (((value: boolean) => void) & ((...args: any[]) => any)) | undefined;
|
|
166
|
+
readonly appendTo?: (string | HTMLElement) | undefined;
|
|
174
167
|
readonly rawContent?: boolean | undefined;
|
|
175
168
|
readonly persistent?: boolean | undefined;
|
|
176
169
|
readonly transition?: string | undefined;
|
|
177
170
|
readonly disabled?: boolean | undefined;
|
|
178
171
|
readonly focusOnTarget?: boolean | undefined;
|
|
179
172
|
readonly virtualRef?: import('element-plus').Measurable | undefined;
|
|
173
|
+
readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
|
|
174
|
+
readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
|
|
175
|
+
readonly onClick?: ((e: PointerEvent) => void) | undefined;
|
|
176
|
+
readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
|
|
177
|
+
readonly onFocus?: ((e: FocusEvent) => void) | undefined;
|
|
178
|
+
readonly onBlur?: ((e: FocusEvent) => void) | undefined;
|
|
179
|
+
readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
|
|
180
180
|
readonly open?: boolean | undefined;
|
|
181
181
|
onShow?: ((...args: any[]) => any) | undefined | undefined;
|
|
182
182
|
onHide?: ((...args: any[]) => any) | undefined | undefined;
|
|
@@ -184,7 +184,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
184
184
|
onOpen?: ((...args: any[]) => any) | undefined | undefined;
|
|
185
185
|
"onBefore-show"?: ((...args: any[]) => any) | undefined | undefined;
|
|
186
186
|
"onBefore-hide"?: ((...args: any[]) => any) | undefined | undefined;
|
|
187
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
187
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "placement" | "visible" | "style" | "effect" | "enterable" | "pure" | "focusOnShow" | "trapping" | "popperStyle" | "stopPopperMouseEvent" | "virtualTriggering" | "loop" | "boundariesPadding" | "gpuAcceleration" | "offset" | "popperOptions" | "strategy" | "arrowOffset" | "showArrow" | "role" | "content" | "teleported" | "showAfter" | "hideAfter" | "autoClose" | "trigger" | "triggerKeys">;
|
|
188
188
|
$attrs: {
|
|
189
189
|
[x: string]: unknown;
|
|
190
190
|
};
|
|
@@ -197,58 +197,23 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
197
197
|
$root: import('vue').ComponentPublicInstance | null;
|
|
198
198
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
199
199
|
$host: Element | null;
|
|
200
|
-
$emit: ((event: "
|
|
200
|
+
$emit: ((event: "open", ...args: any[]) => void) & ((event: "hide", ...args: any[]) => void) & ((event: "close", ...args: any[]) => void) & ((event: "show", ...args: any[]) => void) & ((event: "update:visible", ...args: any[]) => void) & ((event: "before-show", ...args: any[]) => void) & ((event: "before-hide", ...args: any[]) => void);
|
|
201
201
|
$el: any;
|
|
202
202
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
203
|
-
style: {
|
|
204
|
-
type: PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
205
|
-
default: undefined;
|
|
206
|
-
};
|
|
207
203
|
id: {
|
|
208
204
|
type: PropType<string>;
|
|
209
205
|
};
|
|
210
|
-
offset: {
|
|
211
|
-
type: PropType<number>;
|
|
212
|
-
default: 12;
|
|
213
|
-
};
|
|
214
206
|
placement: {
|
|
215
207
|
type: PropType<import('element-plus').Placement>;
|
|
216
208
|
default: "bottom";
|
|
217
209
|
};
|
|
218
|
-
zIndex: {
|
|
219
|
-
type: PropType<number>;
|
|
220
|
-
};
|
|
221
|
-
appendTo: {
|
|
222
|
-
type: PropType<string | HTMLElement>;
|
|
223
|
-
};
|
|
224
210
|
visible: {
|
|
225
211
|
type: PropType<boolean | null>;
|
|
226
212
|
default: null;
|
|
227
213
|
};
|
|
228
|
-
|
|
229
|
-
type: PropType<string>;
|
|
230
|
-
default:
|
|
231
|
-
};
|
|
232
|
-
onBlur: {
|
|
233
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
234
|
-
};
|
|
235
|
-
onClick: {
|
|
236
|
-
type: PropType<(e: PointerEvent) => void>;
|
|
237
|
-
};
|
|
238
|
-
onContextmenu: {
|
|
239
|
-
type: PropType<(e: PointerEvent) => void>;
|
|
240
|
-
};
|
|
241
|
-
onFocus: {
|
|
242
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
243
|
-
};
|
|
244
|
-
onKeydown: {
|
|
245
|
-
type: PropType<(e: KeyboardEvent) => void>;
|
|
246
|
-
};
|
|
247
|
-
onMouseenter: {
|
|
248
|
-
type: PropType<(e: MouseEvent) => void>;
|
|
249
|
-
};
|
|
250
|
-
onMouseleave: {
|
|
251
|
-
type: PropType<(e: MouseEvent) => void>;
|
|
214
|
+
style: {
|
|
215
|
+
type: PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
216
|
+
default: undefined;
|
|
252
217
|
};
|
|
253
218
|
className: {
|
|
254
219
|
type: PropType<string | {
|
|
@@ -342,6 +307,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
342
307
|
type: PropType<boolean>;
|
|
343
308
|
default: false;
|
|
344
309
|
};
|
|
310
|
+
zIndex: {
|
|
311
|
+
type: PropType<number>;
|
|
312
|
+
};
|
|
345
313
|
ariaLabel: {
|
|
346
314
|
type: PropType<string>;
|
|
347
315
|
};
|
|
@@ -360,12 +328,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
360
328
|
type: PropType<boolean>;
|
|
361
329
|
default: true;
|
|
362
330
|
};
|
|
331
|
+
offset: {
|
|
332
|
+
type: PropType<number>;
|
|
333
|
+
default: 12;
|
|
334
|
+
};
|
|
363
335
|
popperOptions: {
|
|
364
336
|
type: PropType<Partial<import('element-plus').Options>>;
|
|
365
337
|
default: () => {};
|
|
366
338
|
};
|
|
367
339
|
strategy: {
|
|
368
|
-
type: PropType<"
|
|
340
|
+
type: PropType<"absolute" | "fixed">;
|
|
369
341
|
default: "absolute";
|
|
370
342
|
};
|
|
371
343
|
arrowOffset: {
|
|
@@ -380,9 +352,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
380
352
|
type: PropType<(value: boolean) => void>;
|
|
381
353
|
};
|
|
382
354
|
role: {
|
|
383
|
-
type: PropType<"
|
|
355
|
+
type: PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
|
|
384
356
|
default: string;
|
|
385
357
|
};
|
|
358
|
+
appendTo: {
|
|
359
|
+
type: PropType<string | HTMLElement>;
|
|
360
|
+
};
|
|
361
|
+
content: {
|
|
362
|
+
type: PropType<string>;
|
|
363
|
+
default: "";
|
|
364
|
+
};
|
|
386
365
|
rawContent: {
|
|
387
366
|
type: PropType<boolean>;
|
|
388
367
|
};
|
|
@@ -425,6 +404,27 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
425
404
|
virtualRef: {
|
|
426
405
|
type: PropType<import('element-plus').Measurable>;
|
|
427
406
|
};
|
|
407
|
+
onMouseenter: {
|
|
408
|
+
type: PropType<(e: MouseEvent) => void>;
|
|
409
|
+
};
|
|
410
|
+
onMouseleave: {
|
|
411
|
+
type: PropType<(e: MouseEvent) => void>;
|
|
412
|
+
};
|
|
413
|
+
onClick: {
|
|
414
|
+
type: PropType<(e: PointerEvent) => void>;
|
|
415
|
+
};
|
|
416
|
+
onKeydown: {
|
|
417
|
+
type: PropType<(e: KeyboardEvent) => void>;
|
|
418
|
+
};
|
|
419
|
+
onFocus: {
|
|
420
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
421
|
+
};
|
|
422
|
+
onBlur: {
|
|
423
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
424
|
+
};
|
|
425
|
+
onContextmenu: {
|
|
426
|
+
type: PropType<(e: PointerEvent) => void>;
|
|
427
|
+
};
|
|
428
428
|
open: {
|
|
429
429
|
type: PropType<boolean>;
|
|
430
430
|
};
|
|
@@ -529,55 +529,20 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
529
529
|
triggerKeys: string[];
|
|
530
530
|
showArrow: boolean;
|
|
531
531
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
532
|
-
style: {
|
|
533
|
-
type: PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
534
|
-
default: undefined;
|
|
535
|
-
};
|
|
536
532
|
id: {
|
|
537
533
|
type: PropType<string>;
|
|
538
534
|
};
|
|
539
|
-
offset: {
|
|
540
|
-
type: PropType<number>;
|
|
541
|
-
default: 12;
|
|
542
|
-
};
|
|
543
535
|
placement: {
|
|
544
536
|
type: PropType<import('element-plus').Placement>;
|
|
545
537
|
default: "bottom";
|
|
546
538
|
};
|
|
547
|
-
zIndex: {
|
|
548
|
-
type: PropType<number>;
|
|
549
|
-
};
|
|
550
|
-
appendTo: {
|
|
551
|
-
type: PropType<string | HTMLElement>;
|
|
552
|
-
};
|
|
553
539
|
visible: {
|
|
554
540
|
type: PropType<boolean | null>;
|
|
555
541
|
default: null;
|
|
556
542
|
};
|
|
557
|
-
|
|
558
|
-
type: PropType<string>;
|
|
559
|
-
default:
|
|
560
|
-
};
|
|
561
|
-
onBlur: {
|
|
562
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
563
|
-
};
|
|
564
|
-
onClick: {
|
|
565
|
-
type: PropType<(e: PointerEvent) => void>;
|
|
566
|
-
};
|
|
567
|
-
onContextmenu: {
|
|
568
|
-
type: PropType<(e: PointerEvent) => void>;
|
|
569
|
-
};
|
|
570
|
-
onFocus: {
|
|
571
|
-
type: PropType<(e: FocusEvent) => void>;
|
|
572
|
-
};
|
|
573
|
-
onKeydown: {
|
|
574
|
-
type: PropType<(e: KeyboardEvent) => void>;
|
|
575
|
-
};
|
|
576
|
-
onMouseenter: {
|
|
577
|
-
type: PropType<(e: MouseEvent) => void>;
|
|
578
|
-
};
|
|
579
|
-
onMouseleave: {
|
|
580
|
-
type: PropType<(e: MouseEvent) => void>;
|
|
543
|
+
style: {
|
|
544
|
+
type: PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
|
|
545
|
+
default: undefined;
|
|
581
546
|
};
|
|
582
547
|
className: {
|
|
583
548
|
type: PropType<string | {
|
|
@@ -671,6 +636,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
671
636
|
type: PropType<boolean>;
|
|
672
637
|
default: false;
|
|
673
638
|
};
|
|
639
|
+
zIndex: {
|
|
640
|
+
type: PropType<number>;
|
|
641
|
+
};
|
|
674
642
|
ariaLabel: {
|
|
675
643
|
type: PropType<string>;
|
|
676
644
|
};
|
|
@@ -689,12 +657,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
689
657
|
type: PropType<boolean>;
|
|
690
658
|
default: true;
|
|
691
659
|
};
|
|
660
|
+
offset: {
|
|
661
|
+
type: PropType<number>;
|
|
662
|
+
default: 12;
|
|
663
|
+
};
|
|
692
664
|
popperOptions: {
|
|
693
665
|
type: PropType<Partial<import('element-plus').Options>>;
|
|
694
666
|
default: () => {};
|
|
695
667
|
};
|
|
696
668
|
strategy: {
|
|
697
|
-
type: PropType<"
|
|
669
|
+
type: PropType<"absolute" | "fixed">;
|
|
698
670
|
default: "absolute";
|
|
699
671
|
};
|
|
700
672
|
arrowOffset: {
|
|
@@ -709,9 +681,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
709
681
|
type: PropType<(value: boolean) => void>;
|
|
710
682
|
};
|
|
711
683
|
role: {
|
|
712
|
-
type: PropType<"
|
|
684
|
+
type: PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
|
|
713
685
|
default: string;
|
|
714
686
|
};
|
|
687
|
+
appendTo: {
|
|
688
|
+
type: PropType<string | HTMLElement>;
|
|
689
|
+
};
|
|
690
|
+
content: {
|
|
691
|
+
type: PropType<string>;
|
|
692
|
+
default: "";
|
|
693
|
+
};
|
|
715
694
|
rawContent: {
|
|
716
695
|
type: PropType<boolean>;
|
|
717
696
|
};
|
|
@@ -754,6 +733,27 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
754
733
|
virtualRef: {
|
|
755
734
|
type: PropType<import('element-plus').Measurable>;
|
|
756
735
|
};
|
|
736
|
+
onMouseenter: {
|
|
737
|
+
type: PropType<(e: MouseEvent) => void>;
|
|
738
|
+
};
|
|
739
|
+
onMouseleave: {
|
|
740
|
+
type: PropType<(e: MouseEvent) => void>;
|
|
741
|
+
};
|
|
742
|
+
onClick: {
|
|
743
|
+
type: PropType<(e: PointerEvent) => void>;
|
|
744
|
+
};
|
|
745
|
+
onKeydown: {
|
|
746
|
+
type: PropType<(e: KeyboardEvent) => void>;
|
|
747
|
+
};
|
|
748
|
+
onFocus: {
|
|
749
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
750
|
+
};
|
|
751
|
+
onBlur: {
|
|
752
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
753
|
+
};
|
|
754
|
+
onContextmenu: {
|
|
755
|
+
type: PropType<(e: PointerEvent) => void>;
|
|
756
|
+
};
|
|
757
757
|
open: {
|
|
758
758
|
type: PropType<boolean>;
|
|
759
759
|
};
|
|
@@ -765,7 +765,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
765
765
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
766
766
|
"onBefore-show"?: ((...args: any[]) => any) | undefined;
|
|
767
767
|
"onBefore-hide"?: ((...args: any[]) => any) | undefined;
|
|
768
|
-
}, "
|
|
768
|
+
}, "placement" | "visible" | "style" | "effect" | "enterable" | "pure" | "focusOnShow" | "trapping" | "popperStyle" | "stopPopperMouseEvent" | "virtualTriggering" | "loop" | "boundariesPadding" | "gpuAcceleration" | "offset" | "popperOptions" | "strategy" | "arrowOffset" | "showArrow" | "role" | "content" | "teleported" | "showAfter" | "hideAfter" | "autoClose" | "trigger" | "triggerKeys" | "popperRef" | "contentRef" | "isFocusInsideContent" | "updatePopper" | "onOpen" | "onClose" | "hide"> & import('vue').ShallowUnwrapRef<{
|
|
769
769
|
popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined>;
|
|
770
770
|
contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined>;
|
|
771
771
|
isFocusInsideContent: (event?: FocusEvent) => boolean | undefined;
|
|
@@ -5,8 +5,8 @@ export declare const TtIcon: import('../../../../utils/src').SFCWithInstall<{
|
|
|
5
5
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
6
|
click: () => any;
|
|
7
7
|
}, import('vue').PublicProps, {
|
|
8
|
-
disabled: boolean;
|
|
9
8
|
size: number;
|
|
9
|
+
disabled: boolean;
|
|
10
10
|
isSymbol: boolean;
|
|
11
11
|
isCustomSvg: boolean;
|
|
12
12
|
isImg: boolean;
|
|
@@ -20,8 +20,8 @@ export declare const TtIcon: import('../../../../utils/src').SFCWithInstall<{
|
|
|
20
20
|
}, Readonly<TtIconProps> & Readonly<{
|
|
21
21
|
onClick?: (() => any) | undefined;
|
|
22
22
|
}>, {}, {}, {}, {}, {
|
|
23
|
-
disabled: boolean;
|
|
24
23
|
size: number;
|
|
24
|
+
disabled: boolean;
|
|
25
25
|
isSymbol: boolean;
|
|
26
26
|
isCustomSvg: boolean;
|
|
27
27
|
isImg: boolean;
|
|
@@ -34,8 +34,8 @@ export declare const TtIcon: import('../../../../utils/src').SFCWithInstall<{
|
|
|
34
34
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
35
35
|
click: () => any;
|
|
36
36
|
}, string, {
|
|
37
|
-
disabled: boolean;
|
|
38
37
|
size: number;
|
|
38
|
+
disabled: boolean;
|
|
39
39
|
isSymbol: boolean;
|
|
40
40
|
isCustomSvg: boolean;
|
|
41
41
|
isImg: boolean;
|
|
@@ -17,8 +17,8 @@ declare const __VLS_component: import('vue').DefineComponent<TtIconProps, {}, {}
|
|
|
17
17
|
}, string, import('vue').PublicProps, Readonly<TtIconProps> & Readonly<{
|
|
18
18
|
onClick?: (() => any) | undefined;
|
|
19
19
|
}>, {
|
|
20
|
-
disabled: boolean;
|
|
21
20
|
size: number;
|
|
21
|
+
disabled: boolean;
|
|
22
22
|
isSymbol: boolean;
|
|
23
23
|
isCustomSvg: boolean;
|
|
24
24
|
isImg: boolean;
|
|
@@ -98,16 +98,16 @@ export declare const TtImage: import('../../../../utils/src').SFCWithInstall<imp
|
|
|
98
98
|
__epPropKey: true;
|
|
99
99
|
};
|
|
100
100
|
}>> & Readonly<{
|
|
101
|
-
onClose?: (() => any) | undefined;
|
|
102
|
-
onError?: ((evt: Event) => any) | undefined;
|
|
103
101
|
onLoad?: ((evt: Event) => any) | undefined;
|
|
104
|
-
|
|
102
|
+
onError?: ((evt: Event) => any) | undefined;
|
|
105
103
|
onSwitch?: ((val: number) => any) | undefined;
|
|
104
|
+
onClose?: (() => any) | undefined;
|
|
105
|
+
onShow?: (() => any) | undefined;
|
|
106
106
|
}>, {
|
|
107
|
+
fit: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "fill" | "contain" | "none" | "cover" | "scale-down", unknown>;
|
|
107
108
|
status: ImageStatus;
|
|
108
|
-
src: string;
|
|
109
109
|
hideOnClickModal: boolean;
|
|
110
|
-
|
|
110
|
+
src: string;
|
|
111
111
|
lazy: boolean;
|
|
112
112
|
previewSrcList: string[];
|
|
113
113
|
previewTeleported: boolean;
|
|
@@ -67,11 +67,11 @@ export declare const TtImageViewer: import('../../../../../../utils/src').SFCWit
|
|
|
67
67
|
__epPropKey: true;
|
|
68
68
|
};
|
|
69
69
|
}>> & Readonly<{
|
|
70
|
-
onClose?: (() => any) | undefined;
|
|
71
70
|
onError?: ((evt: Event) => any) | undefined;
|
|
72
|
-
"onUpdate:visible"?: ((_visible: boolean) => any) | undefined;
|
|
73
71
|
onSwitch?: ((index: number) => any) | undefined;
|
|
72
|
+
onClose?: (() => any) | undefined;
|
|
74
73
|
onRotate?: ((deg: number) => any) | undefined;
|
|
74
|
+
"onUpdate:visible"?: ((_visible: boolean) => any) | undefined;
|
|
75
75
|
}>, {
|
|
76
76
|
visible: boolean;
|
|
77
77
|
teleported: boolean;
|
|
@@ -97,16 +97,16 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
97
97
|
__epPropKey: true;
|
|
98
98
|
};
|
|
99
99
|
}>> & Readonly<{
|
|
100
|
-
onClose?: (() => any) | undefined;
|
|
101
|
-
onError?: ((evt: Event) => any) | undefined;
|
|
102
100
|
onLoad?: ((evt: Event) => any) | undefined;
|
|
103
|
-
|
|
101
|
+
onError?: ((evt: Event) => any) | undefined;
|
|
104
102
|
onSwitch?: ((val: number) => any) | undefined;
|
|
103
|
+
onClose?: (() => any) | undefined;
|
|
104
|
+
onShow?: (() => any) | undefined;
|
|
105
105
|
}>, {
|
|
106
|
+
fit: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "fill" | "contain" | "none" | "cover" | "scale-down", unknown>;
|
|
106
107
|
status: ImageStatus;
|
|
107
|
-
src: string;
|
|
108
108
|
hideOnClickModal: boolean;
|
|
109
|
-
|
|
109
|
+
src: string;
|
|
110
110
|
lazy: boolean;
|
|
111
111
|
previewSrcList: string[];
|
|
112
112
|
previewTeleported: boolean;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { vTtLoading } from './src/directive';
|
|
2
2
|
import { Loading } from './src/service';
|
|
3
3
|
export declare const TtLoading: import('../../../../utils/src').SFCWithInstall<import('vue').DefineComponent<import('.').LoadingProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('.').LoadingProps> & Readonly<{}>, {
|
|
4
|
+
visible: boolean;
|
|
4
5
|
zIndex: number;
|
|
5
6
|
background: string;
|
|
6
|
-
svg: string;
|
|
7
7
|
text: string;
|
|
8
|
-
|
|
9
|
-
visible: boolean;
|
|
8
|
+
svg: string;
|
|
10
9
|
textColor: string;
|
|
10
|
+
fullscreen: boolean;
|
|
11
11
|
spinnerColor: string;
|
|
12
12
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>> & Record<string, any>;
|
|
13
13
|
export { vTtLoading };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { LoadingProps } from './type';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<LoadingProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LoadingProps> & Readonly<{}>, {
|
|
3
|
+
visible: boolean;
|
|
3
4
|
zIndex: number;
|
|
4
5
|
background: string;
|
|
5
|
-
svg: string;
|
|
6
6
|
text: string;
|
|
7
|
-
|
|
8
|
-
visible: boolean;
|
|
7
|
+
svg: string;
|
|
9
8
|
textColor: string;
|
|
9
|
+
fullscreen: boolean;
|
|
10
10
|
spinnerColor: string;
|
|
11
11
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|