@dazhicheng/ui 1.5.1 → 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.
Files changed (46) hide show
  1. package/dist/components/tt-button/index.d.ts +476 -476
  2. package/dist/components/tt-button/index.vue.d.ts +272 -272
  3. package/dist/components/tt-checkbox/index.d.ts +5 -5
  4. package/dist/components/tt-checkbox/index.vue.d.ts +2 -2
  5. package/dist/components/tt-drawer/index.d.ts +540 -540
  6. package/dist/components/tt-drawer/src/RenderDrawer.vue.d.ts +297 -297
  7. package/dist/components/tt-form/src/form/RenderContent.vue.d.ts +2 -2
  8. package/dist/components/tt-form/src/form-render/dependencies.d.ts +118 -118
  9. package/dist/components/tt-form-item-error-tooltip/index.d.ts +196 -196
  10. package/dist/components/tt-form-item-error-tooltip/index.vue.d.ts +98 -98
  11. package/dist/components/tt-icon/index.d.ts +3 -3
  12. package/dist/components/tt-icon/index.vue.d.ts +1 -1
  13. package/dist/components/tt-image/index.d.ts +5 -5
  14. package/dist/components/tt-image/src/components/ImageViewer.d.ts +2 -2
  15. package/dist/components/tt-image/tt-image.d.ts +5 -5
  16. package/dist/components/tt-loading/index.d.ts +3 -3
  17. package/dist/components/tt-loading/src/loading.vue.d.ts +3 -3
  18. package/dist/components/tt-modal/index.d.ts +184 -184
  19. package/dist/components/tt-modal/src/RenderModal.vue.d.ts +101 -101
  20. package/dist/components/tt-modal/src/components/ModalWrapper.vue.d.ts +10 -10
  21. package/dist/components/tt-modal/src/hooks/useModalRender.d.ts +33 -33
  22. package/dist/components/tt-part/index.d.ts +12 -12
  23. package/dist/components/tt-part/index.vue.d.ts +4 -4
  24. package/dist/components/tt-select/src/Select.vue.d.ts +89 -89
  25. package/dist/components/tt-select/src/components/SelectTable.vue.d.ts +7 -7
  26. package/dist/components/tt-select/src/components/Table.vue.d.ts +9 -9
  27. package/dist/components/tt-table/src/Table.vue.d.ts +185 -179
  28. package/dist/components/tt-table/src/components/TableColumnModal.vue.d.ts +1 -1
  29. package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +198 -228
  30. package/dist/components/tt-table/src/hooks/useCustomColumns.d.ts +1 -5
  31. package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +128 -128
  32. package/dist/components/tt-table/src/hooks/usePagination.d.ts +2 -2
  33. package/dist/components/tt-table/src/hooks/useTableRender.d.ts +7 -8
  34. package/dist/components/tt-table/src/props.d.ts +8 -5
  35. package/dist/components/tt-table/src/toolProps.d.ts +3 -21
  36. package/dist/components/tt-table/src/types/table.d.ts +8 -11
  37. package/dist/components/tt-table/src/types/tableTools.d.ts +2 -13
  38. package/dist/components/tt-text/index.d.ts +3 -3
  39. package/dist/components/tt-text/index.vue.d.ts +1 -1
  40. package/dist/components/tt-validate/src/Field.d.ts +4 -4
  41. package/dist/components/tt-validate/src/Form.d.ts +1 -1
  42. package/dist/components/tt-validate/src/utils/assertions.d.ts +1 -1
  43. package/dist/components/types.d.ts +10 -33
  44. package/dist/index.js +5942 -5976
  45. package/dist/style.css +1 -1
  46. package/package.json +1 -1
@@ -33,10 +33,10 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
33
33
  default: string;
34
34
  };
35
35
  }>> & Readonly<{}>, {
36
- placement: any;
37
- fieldName: string;
38
36
  errMsg: string;
39
37
  refDom: HTMLElement | null;
38
+ placement: any;
39
+ fieldName: string;
40
40
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
41
41
  tooltipRef: ({
42
42
  $: import('vue').ComponentInternalInstance;
@@ -70,10 +70,8 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
70
70
  triggerKeys: string[];
71
71
  showArrow: boolean;
72
72
  }> & Omit<{
73
- readonly offset: number;
74
73
  readonly placement: import('element-plus').Placement;
75
74
  readonly visible: boolean | null;
76
- readonly content: string;
77
75
  readonly effect: import('element-plus').PopperEffect;
78
76
  readonly enterable: boolean;
79
77
  readonly pure: boolean;
@@ -84,28 +82,21 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
84
82
  readonly loop: boolean;
85
83
  readonly boundariesPadding: number;
86
84
  readonly gpuAcceleration: boolean;
85
+ readonly offset: number;
87
86
  readonly popperOptions: Partial<import('element-plus').Options>;
88
- readonly strategy: "fixed" | "absolute";
87
+ readonly strategy: "absolute" | "fixed";
89
88
  readonly arrowOffset: number;
90
89
  readonly showArrow: boolean;
91
90
  readonly role: typeof import('element-plus').roleTypes[number];
91
+ readonly content: string;
92
92
  readonly teleported: boolean;
93
93
  readonly showAfter: number;
94
94
  readonly hideAfter: number;
95
95
  readonly autoClose: number;
96
96
  readonly trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
97
97
  readonly triggerKeys: string[];
98
- readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
99
98
  readonly id?: string | undefined;
100
- readonly zIndex?: number | undefined;
101
- readonly appendTo?: (string | HTMLElement) | undefined;
102
- readonly onBlur?: ((e: FocusEvent) => void) | undefined;
103
- readonly onClick?: ((e: PointerEvent) => void) | undefined;
104
- readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
105
- readonly onFocus?: ((e: FocusEvent) => void) | undefined;
106
- readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
107
- readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
108
- readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
99
+ readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
109
100
  readonly className?: (string | {
110
101
  [x: string]: boolean;
111
102
  } | (string | {
@@ -159,15 +150,24 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
159
150
  readonly popperStyle?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
160
151
  readonly referenceEl?: HTMLElement | undefined;
161
152
  readonly triggerTargetEl?: HTMLElement | undefined;
153
+ readonly zIndex?: number | undefined;
162
154
  readonly ariaLabel?: string | undefined;
163
155
  readonly fallbackPlacements?: import('element-plus').Placement[] | undefined;
164
156
  "onUpdate:visible"?: (((value: boolean) => void) & ((...args: any[]) => any)) | undefined;
157
+ readonly appendTo?: (string | HTMLElement) | undefined;
165
158
  readonly rawContent?: boolean | undefined;
166
159
  readonly persistent?: boolean | undefined;
167
160
  readonly transition?: string | undefined;
168
161
  readonly disabled?: boolean | undefined;
169
162
  readonly focusOnTarget?: boolean | undefined;
170
163
  readonly virtualRef?: import('element-plus').Measurable | undefined;
164
+ readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
165
+ readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
166
+ readonly onClick?: ((e: PointerEvent) => void) | undefined;
167
+ readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
168
+ readonly onFocus?: ((e: FocusEvent) => void) | undefined;
169
+ readonly onBlur?: ((e: FocusEvent) => void) | undefined;
170
+ readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
171
171
  readonly open?: boolean | undefined;
172
172
  onShow?: ((...args: any[]) => any) | undefined | undefined;
173
173
  onHide?: ((...args: any[]) => any) | undefined | undefined;
@@ -175,7 +175,7 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
175
175
  onOpen?: ((...args: any[]) => any) | undefined | undefined;
176
176
  "onBefore-show"?: ((...args: any[]) => any) | undefined | undefined;
177
177
  "onBefore-hide"?: ((...args: any[]) => any) | undefined | undefined;
178
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "offset" | "placement" | "visible" | "content" | "effect" | "enterable" | "pure" | "focusOnShow" | "trapping" | "popperStyle" | "stopPopperMouseEvent" | "virtualTriggering" | "loop" | "boundariesPadding" | "gpuAcceleration" | "popperOptions" | "strategy" | "arrowOffset" | "showArrow" | "role" | "teleported" | "showAfter" | "hideAfter" | "autoClose" | "trigger" | "triggerKeys">;
178
+ } & 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">;
179
179
  $attrs: {
180
180
  [x: string]: unknown;
181
181
  };
@@ -188,58 +188,23 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
188
188
  $root: import('vue').ComponentPublicInstance | null;
189
189
  $parent: import('vue').ComponentPublicInstance | null;
190
190
  $host: Element | null;
191
- $emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "hide", ...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);
191
+ $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);
192
192
  $el: any;
193
193
  $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
194
- style: {
195
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
196
- default: undefined;
197
- };
198
194
  id: {
199
195
  type: import('vue').PropType<string>;
200
196
  };
201
- offset: {
202
- type: import('vue').PropType<number>;
203
- default: 12;
204
- };
205
197
  placement: {
206
198
  type: import('vue').PropType<import('element-plus').Placement>;
207
199
  default: "bottom";
208
200
  };
209
- zIndex: {
210
- type: import('vue').PropType<number>;
211
- };
212
- appendTo: {
213
- type: import('vue').PropType<string | HTMLElement>;
214
- };
215
201
  visible: {
216
202
  type: import('vue').PropType<boolean | null>;
217
203
  default: null;
218
204
  };
219
- content: {
220
- type: import('vue').PropType<string>;
221
- default: "";
222
- };
223
- onBlur: {
224
- type: import('vue').PropType<(e: FocusEvent) => void>;
225
- };
226
- onClick: {
227
- type: import('vue').PropType<(e: PointerEvent) => void>;
228
- };
229
- onContextmenu: {
230
- type: import('vue').PropType<(e: PointerEvent) => void>;
231
- };
232
- onFocus: {
233
- type: import('vue').PropType<(e: FocusEvent) => void>;
234
- };
235
- onKeydown: {
236
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
237
- };
238
- onMouseenter: {
239
- type: import('vue').PropType<(e: MouseEvent) => void>;
240
- };
241
- onMouseleave: {
242
- type: import('vue').PropType<(e: MouseEvent) => void>;
205
+ style: {
206
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
207
+ default: undefined;
243
208
  };
244
209
  className: {
245
210
  type: import('vue').PropType<string | {
@@ -333,6 +298,9 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
333
298
  type: import('vue').PropType<boolean>;
334
299
  default: false;
335
300
  };
301
+ zIndex: {
302
+ type: import('vue').PropType<number>;
303
+ };
336
304
  ariaLabel: {
337
305
  type: import('vue').PropType<string>;
338
306
  };
@@ -351,12 +319,16 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
351
319
  type: import('vue').PropType<boolean>;
352
320
  default: true;
353
321
  };
322
+ offset: {
323
+ type: import('vue').PropType<number>;
324
+ default: 12;
325
+ };
354
326
  popperOptions: {
355
327
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
356
328
  default: () => {};
357
329
  };
358
330
  strategy: {
359
- type: import('vue').PropType<"fixed" | "absolute">;
331
+ type: import('vue').PropType<"absolute" | "fixed">;
360
332
  default: "absolute";
361
333
  };
362
334
  arrowOffset: {
@@ -371,9 +343,16 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
371
343
  type: import('vue').PropType<(value: boolean) => void>;
372
344
  };
373
345
  role: {
374
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
346
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
375
347
  default: string;
376
348
  };
349
+ appendTo: {
350
+ type: import('vue').PropType<string | HTMLElement>;
351
+ };
352
+ content: {
353
+ type: import('vue').PropType<string>;
354
+ default: "";
355
+ };
377
356
  rawContent: {
378
357
  type: import('vue').PropType<boolean>;
379
358
  };
@@ -416,6 +395,27 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
416
395
  virtualRef: {
417
396
  type: import('vue').PropType<import('element-plus').Measurable>;
418
397
  };
398
+ onMouseenter: {
399
+ type: import('vue').PropType<(e: MouseEvent) => void>;
400
+ };
401
+ onMouseleave: {
402
+ type: import('vue').PropType<(e: MouseEvent) => void>;
403
+ };
404
+ onClick: {
405
+ type: import('vue').PropType<(e: PointerEvent) => void>;
406
+ };
407
+ onKeydown: {
408
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
409
+ };
410
+ onFocus: {
411
+ type: import('vue').PropType<(e: FocusEvent) => void>;
412
+ };
413
+ onBlur: {
414
+ type: import('vue').PropType<(e: FocusEvent) => void>;
415
+ };
416
+ onContextmenu: {
417
+ type: import('vue').PropType<(e: PointerEvent) => void>;
418
+ };
419
419
  open: {
420
420
  type: import('vue').PropType<boolean>;
421
421
  };
@@ -520,55 +520,20 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
520
520
  triggerKeys: string[];
521
521
  showArrow: boolean;
522
522
  }> & Omit<Readonly<import('vue').ExtractPropTypes<{
523
- style: {
524
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
525
- default: undefined;
526
- };
527
523
  id: {
528
524
  type: import('vue').PropType<string>;
529
525
  };
530
- offset: {
531
- type: import('vue').PropType<number>;
532
- default: 12;
533
- };
534
526
  placement: {
535
527
  type: import('vue').PropType<import('element-plus').Placement>;
536
528
  default: "bottom";
537
529
  };
538
- zIndex: {
539
- type: import('vue').PropType<number>;
540
- };
541
- appendTo: {
542
- type: import('vue').PropType<string | HTMLElement>;
543
- };
544
530
  visible: {
545
531
  type: import('vue').PropType<boolean | null>;
546
532
  default: null;
547
533
  };
548
- content: {
549
- type: import('vue').PropType<string>;
550
- default: "";
551
- };
552
- onBlur: {
553
- type: import('vue').PropType<(e: FocusEvent) => void>;
554
- };
555
- onClick: {
556
- type: import('vue').PropType<(e: PointerEvent) => void>;
557
- };
558
- onContextmenu: {
559
- type: import('vue').PropType<(e: PointerEvent) => void>;
560
- };
561
- onFocus: {
562
- type: import('vue').PropType<(e: FocusEvent) => void>;
563
- };
564
- onKeydown: {
565
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
566
- };
567
- onMouseenter: {
568
- type: import('vue').PropType<(e: MouseEvent) => void>;
569
- };
570
- onMouseleave: {
571
- type: import('vue').PropType<(e: MouseEvent) => void>;
534
+ style: {
535
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
536
+ default: undefined;
572
537
  };
573
538
  className: {
574
539
  type: import('vue').PropType<string | {
@@ -662,6 +627,9 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
662
627
  type: import('vue').PropType<boolean>;
663
628
  default: false;
664
629
  };
630
+ zIndex: {
631
+ type: import('vue').PropType<number>;
632
+ };
665
633
  ariaLabel: {
666
634
  type: import('vue').PropType<string>;
667
635
  };
@@ -680,12 +648,16 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
680
648
  type: import('vue').PropType<boolean>;
681
649
  default: true;
682
650
  };
651
+ offset: {
652
+ type: import('vue').PropType<number>;
653
+ default: 12;
654
+ };
683
655
  popperOptions: {
684
656
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
685
657
  default: () => {};
686
658
  };
687
659
  strategy: {
688
- type: import('vue').PropType<"fixed" | "absolute">;
660
+ type: import('vue').PropType<"absolute" | "fixed">;
689
661
  default: "absolute";
690
662
  };
691
663
  arrowOffset: {
@@ -700,9 +672,16 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
700
672
  type: import('vue').PropType<(value: boolean) => void>;
701
673
  };
702
674
  role: {
703
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
675
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
704
676
  default: string;
705
677
  };
678
+ appendTo: {
679
+ type: import('vue').PropType<string | HTMLElement>;
680
+ };
681
+ content: {
682
+ type: import('vue').PropType<string>;
683
+ default: "";
684
+ };
706
685
  rawContent: {
707
686
  type: import('vue').PropType<boolean>;
708
687
  };
@@ -745,6 +724,27 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
745
724
  virtualRef: {
746
725
  type: import('vue').PropType<import('element-plus').Measurable>;
747
726
  };
727
+ onMouseenter: {
728
+ type: import('vue').PropType<(e: MouseEvent) => void>;
729
+ };
730
+ onMouseleave: {
731
+ type: import('vue').PropType<(e: MouseEvent) => void>;
732
+ };
733
+ onClick: {
734
+ type: import('vue').PropType<(e: PointerEvent) => void>;
735
+ };
736
+ onKeydown: {
737
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
738
+ };
739
+ onFocus: {
740
+ type: import('vue').PropType<(e: FocusEvent) => void>;
741
+ };
742
+ onBlur: {
743
+ type: import('vue').PropType<(e: FocusEvent) => void>;
744
+ };
745
+ onContextmenu: {
746
+ type: import('vue').PropType<(e: PointerEvent) => void>;
747
+ };
748
748
  open: {
749
749
  type: import('vue').PropType<boolean>;
750
750
  };
@@ -756,7 +756,7 @@ export declare const TtFormItemErrorTooltip: import('../../../../utils/src').SFC
756
756
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
757
757
  "onBefore-show"?: ((...args: any[]) => any) | undefined;
758
758
  "onBefore-hide"?: ((...args: any[]) => any) | undefined;
759
- }, "style" | "onClose" | "offset" | "placement" | "visible" | "content" | "effect" | "enterable" | "pure" | "focusOnShow" | "trapping" | "popperStyle" | "stopPopperMouseEvent" | "virtualTriggering" | "loop" | "boundariesPadding" | "gpuAcceleration" | "popperOptions" | "strategy" | "arrowOffset" | "showArrow" | "role" | "teleported" | "showAfter" | "hideAfter" | "autoClose" | "trigger" | "triggerKeys" | "popperRef" | "contentRef" | "isFocusInsideContent" | "updatePopper" | "onOpen" | "hide"> & import('vue').ShallowUnwrapRef<{
759
+ }, "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<{
760
760
  popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined>;
761
761
  contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined>;
762
762
  isFocusInsideContent: (event?: FocusEvent) => boolean | undefined;
@@ -807,10 +807,10 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
807
807
  default: string;
808
808
  };
809
809
  }>> & Readonly<{}>, {
810
- placement: any;
811
- fieldName: string;
812
810
  errMsg: string;
813
811
  refDom: HTMLElement | null;
812
+ placement: any;
813
+ fieldName: string;
814
814
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
815
815
  tooltipRef: ({
816
816
  $: import('vue').ComponentInternalInstance;
@@ -844,10 +844,8 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
844
844
  triggerKeys: string[];
845
845
  showArrow: boolean;
846
846
  }> & Omit<{
847
- readonly offset: number;
848
847
  readonly placement: import('element-plus').Placement;
849
848
  readonly visible: boolean | null;
850
- readonly content: string;
851
849
  readonly effect: import('element-plus').PopperEffect;
852
850
  readonly enterable: boolean;
853
851
  readonly pure: boolean;
@@ -858,28 +856,21 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
858
856
  readonly loop: boolean;
859
857
  readonly boundariesPadding: number;
860
858
  readonly gpuAcceleration: boolean;
859
+ readonly offset: number;
861
860
  readonly popperOptions: Partial<import('element-plus').Options>;
862
- readonly strategy: "fixed" | "absolute";
861
+ readonly strategy: "absolute" | "fixed";
863
862
  readonly arrowOffset: number;
864
863
  readonly showArrow: boolean;
865
864
  readonly role: typeof import('element-plus').roleTypes[number];
865
+ readonly content: string;
866
866
  readonly teleported: boolean;
867
867
  readonly showAfter: number;
868
868
  readonly hideAfter: number;
869
869
  readonly autoClose: number;
870
870
  readonly trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
871
871
  readonly triggerKeys: string[];
872
- readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
873
872
  readonly id?: string | undefined;
874
- readonly zIndex?: number | undefined;
875
- readonly appendTo?: (string | HTMLElement) | undefined;
876
- readonly onBlur?: ((e: FocusEvent) => void) | undefined;
877
- readonly onClick?: ((e: PointerEvent) => void) | undefined;
878
- readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
879
- readonly onFocus?: ((e: FocusEvent) => void) | undefined;
880
- readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
881
- readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
882
- readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
873
+ readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
883
874
  readonly className?: (string | {
884
875
  [x: string]: boolean;
885
876
  } | (string | {
@@ -933,15 +924,24 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
933
924
  readonly popperStyle?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
934
925
  readonly referenceEl?: HTMLElement | undefined;
935
926
  readonly triggerTargetEl?: HTMLElement | undefined;
927
+ readonly zIndex?: number | undefined;
936
928
  readonly ariaLabel?: string | undefined;
937
929
  readonly fallbackPlacements?: import('element-plus').Placement[] | undefined;
938
930
  "onUpdate:visible"?: (((value: boolean) => void) & ((...args: any[]) => any)) | undefined;
931
+ readonly appendTo?: (string | HTMLElement) | undefined;
939
932
  readonly rawContent?: boolean | undefined;
940
933
  readonly persistent?: boolean | undefined;
941
934
  readonly transition?: string | undefined;
942
935
  readonly disabled?: boolean | undefined;
943
936
  readonly focusOnTarget?: boolean | undefined;
944
937
  readonly virtualRef?: import('element-plus').Measurable | undefined;
938
+ readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
939
+ readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
940
+ readonly onClick?: ((e: PointerEvent) => void) | undefined;
941
+ readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
942
+ readonly onFocus?: ((e: FocusEvent) => void) | undefined;
943
+ readonly onBlur?: ((e: FocusEvent) => void) | undefined;
944
+ readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
945
945
  readonly open?: boolean | undefined;
946
946
  onShow?: ((...args: any[]) => any) | undefined | undefined;
947
947
  onHide?: ((...args: any[]) => any) | undefined | undefined;
@@ -949,7 +949,7 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
949
949
  onOpen?: ((...args: any[]) => any) | undefined | undefined;
950
950
  "onBefore-show"?: ((...args: any[]) => any) | undefined | undefined;
951
951
  "onBefore-hide"?: ((...args: any[]) => any) | undefined | undefined;
952
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "style" | "offset" | "placement" | "visible" | "content" | "effect" | "enterable" | "pure" | "focusOnShow" | "trapping" | "popperStyle" | "stopPopperMouseEvent" | "virtualTriggering" | "loop" | "boundariesPadding" | "gpuAcceleration" | "popperOptions" | "strategy" | "arrowOffset" | "showArrow" | "role" | "teleported" | "showAfter" | "hideAfter" | "autoClose" | "trigger" | "triggerKeys">;
952
+ } & 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">;
953
953
  $attrs: {
954
954
  [x: string]: unknown;
955
955
  };
@@ -962,58 +962,23 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
962
962
  $root: import('vue').ComponentPublicInstance | null;
963
963
  $parent: import('vue').ComponentPublicInstance | null;
964
964
  $host: Element | null;
965
- $emit: ((event: "close", ...args: any[]) => void) & ((event: "open", ...args: any[]) => void) & ((event: "hide", ...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);
965
+ $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);
966
966
  $el: any;
967
967
  $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
968
- style: {
969
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
970
- default: undefined;
971
- };
972
968
  id: {
973
969
  type: import('vue').PropType<string>;
974
970
  };
975
- offset: {
976
- type: import('vue').PropType<number>;
977
- default: 12;
978
- };
979
971
  placement: {
980
972
  type: import('vue').PropType<import('element-plus').Placement>;
981
973
  default: "bottom";
982
974
  };
983
- zIndex: {
984
- type: import('vue').PropType<number>;
985
- };
986
- appendTo: {
987
- type: import('vue').PropType<string | HTMLElement>;
988
- };
989
975
  visible: {
990
976
  type: import('vue').PropType<boolean | null>;
991
977
  default: null;
992
978
  };
993
- content: {
994
- type: import('vue').PropType<string>;
995
- default: "";
996
- };
997
- onBlur: {
998
- type: import('vue').PropType<(e: FocusEvent) => void>;
999
- };
1000
- onClick: {
1001
- type: import('vue').PropType<(e: PointerEvent) => void>;
1002
- };
1003
- onContextmenu: {
1004
- type: import('vue').PropType<(e: PointerEvent) => void>;
1005
- };
1006
- onFocus: {
1007
- type: import('vue').PropType<(e: FocusEvent) => void>;
1008
- };
1009
- onKeydown: {
1010
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
1011
- };
1012
- onMouseenter: {
1013
- type: import('vue').PropType<(e: MouseEvent) => void>;
1014
- };
1015
- onMouseleave: {
1016
- type: import('vue').PropType<(e: MouseEvent) => void>;
979
+ style: {
980
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
981
+ default: undefined;
1017
982
  };
1018
983
  className: {
1019
984
  type: import('vue').PropType<string | {
@@ -1107,6 +1072,9 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1107
1072
  type: import('vue').PropType<boolean>;
1108
1073
  default: false;
1109
1074
  };
1075
+ zIndex: {
1076
+ type: import('vue').PropType<number>;
1077
+ };
1110
1078
  ariaLabel: {
1111
1079
  type: import('vue').PropType<string>;
1112
1080
  };
@@ -1125,12 +1093,16 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1125
1093
  type: import('vue').PropType<boolean>;
1126
1094
  default: true;
1127
1095
  };
1096
+ offset: {
1097
+ type: import('vue').PropType<number>;
1098
+ default: 12;
1099
+ };
1128
1100
  popperOptions: {
1129
1101
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
1130
1102
  default: () => {};
1131
1103
  };
1132
1104
  strategy: {
1133
- type: import('vue').PropType<"fixed" | "absolute">;
1105
+ type: import('vue').PropType<"absolute" | "fixed">;
1134
1106
  default: "absolute";
1135
1107
  };
1136
1108
  arrowOffset: {
@@ -1145,9 +1117,16 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1145
1117
  type: import('vue').PropType<(value: boolean) => void>;
1146
1118
  };
1147
1119
  role: {
1148
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
1120
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
1149
1121
  default: string;
1150
1122
  };
1123
+ appendTo: {
1124
+ type: import('vue').PropType<string | HTMLElement>;
1125
+ };
1126
+ content: {
1127
+ type: import('vue').PropType<string>;
1128
+ default: "";
1129
+ };
1151
1130
  rawContent: {
1152
1131
  type: import('vue').PropType<boolean>;
1153
1132
  };
@@ -1190,6 +1169,27 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1190
1169
  virtualRef: {
1191
1170
  type: import('vue').PropType<import('element-plus').Measurable>;
1192
1171
  };
1172
+ onMouseenter: {
1173
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1174
+ };
1175
+ onMouseleave: {
1176
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1177
+ };
1178
+ onClick: {
1179
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1180
+ };
1181
+ onKeydown: {
1182
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
1183
+ };
1184
+ onFocus: {
1185
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1186
+ };
1187
+ onBlur: {
1188
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1189
+ };
1190
+ onContextmenu: {
1191
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1192
+ };
1193
1193
  open: {
1194
1194
  type: import('vue').PropType<boolean>;
1195
1195
  };
@@ -1294,55 +1294,20 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1294
1294
  triggerKeys: string[];
1295
1295
  showArrow: boolean;
1296
1296
  }> & Omit<Readonly<import('vue').ExtractPropTypes<{
1297
- style: {
1298
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1299
- default: undefined;
1300
- };
1301
1297
  id: {
1302
1298
  type: import('vue').PropType<string>;
1303
1299
  };
1304
- offset: {
1305
- type: import('vue').PropType<number>;
1306
- default: 12;
1307
- };
1308
1300
  placement: {
1309
1301
  type: import('vue').PropType<import('element-plus').Placement>;
1310
1302
  default: "bottom";
1311
1303
  };
1312
- zIndex: {
1313
- type: import('vue').PropType<number>;
1314
- };
1315
- appendTo: {
1316
- type: import('vue').PropType<string | HTMLElement>;
1317
- };
1318
1304
  visible: {
1319
1305
  type: import('vue').PropType<boolean | null>;
1320
1306
  default: null;
1321
1307
  };
1322
- content: {
1323
- type: import('vue').PropType<string>;
1324
- default: "";
1325
- };
1326
- onBlur: {
1327
- type: import('vue').PropType<(e: FocusEvent) => void>;
1328
- };
1329
- onClick: {
1330
- type: import('vue').PropType<(e: PointerEvent) => void>;
1331
- };
1332
- onContextmenu: {
1333
- type: import('vue').PropType<(e: PointerEvent) => void>;
1334
- };
1335
- onFocus: {
1336
- type: import('vue').PropType<(e: FocusEvent) => void>;
1337
- };
1338
- onKeydown: {
1339
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
1340
- };
1341
- onMouseenter: {
1342
- type: import('vue').PropType<(e: MouseEvent) => void>;
1343
- };
1344
- onMouseleave: {
1345
- type: import('vue').PropType<(e: MouseEvent) => void>;
1308
+ style: {
1309
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1310
+ default: undefined;
1346
1311
  };
1347
1312
  className: {
1348
1313
  type: import('vue').PropType<string | {
@@ -1436,6 +1401,9 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1436
1401
  type: import('vue').PropType<boolean>;
1437
1402
  default: false;
1438
1403
  };
1404
+ zIndex: {
1405
+ type: import('vue').PropType<number>;
1406
+ };
1439
1407
  ariaLabel: {
1440
1408
  type: import('vue').PropType<string>;
1441
1409
  };
@@ -1454,12 +1422,16 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1454
1422
  type: import('vue').PropType<boolean>;
1455
1423
  default: true;
1456
1424
  };
1425
+ offset: {
1426
+ type: import('vue').PropType<number>;
1427
+ default: 12;
1428
+ };
1457
1429
  popperOptions: {
1458
1430
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
1459
1431
  default: () => {};
1460
1432
  };
1461
1433
  strategy: {
1462
- type: import('vue').PropType<"fixed" | "absolute">;
1434
+ type: import('vue').PropType<"absolute" | "fixed">;
1463
1435
  default: "absolute";
1464
1436
  };
1465
1437
  arrowOffset: {
@@ -1474,9 +1446,16 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1474
1446
  type: import('vue').PropType<(value: boolean) => void>;
1475
1447
  };
1476
1448
  role: {
1477
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
1449
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
1478
1450
  default: string;
1479
1451
  };
1452
+ appendTo: {
1453
+ type: import('vue').PropType<string | HTMLElement>;
1454
+ };
1455
+ content: {
1456
+ type: import('vue').PropType<string>;
1457
+ default: "";
1458
+ };
1480
1459
  rawContent: {
1481
1460
  type: import('vue').PropType<boolean>;
1482
1461
  };
@@ -1519,6 +1498,27 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1519
1498
  virtualRef: {
1520
1499
  type: import('vue').PropType<import('element-plus').Measurable>;
1521
1500
  };
1501
+ onMouseenter: {
1502
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1503
+ };
1504
+ onMouseleave: {
1505
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1506
+ };
1507
+ onClick: {
1508
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1509
+ };
1510
+ onKeydown: {
1511
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
1512
+ };
1513
+ onFocus: {
1514
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1515
+ };
1516
+ onBlur: {
1517
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1518
+ };
1519
+ onContextmenu: {
1520
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1521
+ };
1522
1522
  open: {
1523
1523
  type: import('vue').PropType<boolean>;
1524
1524
  };
@@ -1530,7 +1530,7 @@ export declare const TtErrorTooltip: import('../../../../utils/src').SFCWithInst
1530
1530
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
1531
1531
  "onBefore-show"?: ((...args: any[]) => any) | undefined;
1532
1532
  "onBefore-hide"?: ((...args: any[]) => any) | undefined;
1533
- }, "style" | "onClose" | "offset" | "placement" | "visible" | "content" | "effect" | "enterable" | "pure" | "focusOnShow" | "trapping" | "popperStyle" | "stopPopperMouseEvent" | "virtualTriggering" | "loop" | "boundariesPadding" | "gpuAcceleration" | "popperOptions" | "strategy" | "arrowOffset" | "showArrow" | "role" | "teleported" | "showAfter" | "hideAfter" | "autoClose" | "trigger" | "triggerKeys" | "popperRef" | "contentRef" | "isFocusInsideContent" | "updatePopper" | "onOpen" | "hide"> & import('vue').ShallowUnwrapRef<{
1533
+ }, "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<{
1534
1534
  popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined>;
1535
1535
  contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined>;
1536
1536
  isFocusInsideContent: (event?: FocusEvent) => boolean | undefined;