@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
@@ -43,10 +43,8 @@ declare function __VLS_template(): {
43
43
  triggerKeys: string[];
44
44
  showArrow: boolean;
45
45
  }> & Omit<{
46
- readonly offset: number;
47
46
  readonly placement: import('element-plus').Placement;
48
47
  readonly visible: boolean | null;
49
- readonly content: string;
50
48
  readonly effect: import('element-plus').PopperEffect;
51
49
  readonly enterable: boolean;
52
50
  readonly pure: boolean;
@@ -57,28 +55,21 @@ declare function __VLS_template(): {
57
55
  readonly loop: boolean;
58
56
  readonly boundariesPadding: number;
59
57
  readonly gpuAcceleration: boolean;
58
+ readonly offset: number;
60
59
  readonly popperOptions: Partial<import('element-plus').Options>;
61
- readonly strategy: "fixed" | "absolute";
60
+ readonly strategy: "absolute" | "fixed";
62
61
  readonly arrowOffset: number;
63
62
  readonly showArrow: boolean;
64
63
  readonly role: typeof import('element-plus').roleTypes[number];
64
+ readonly content: string;
65
65
  readonly teleported: boolean;
66
66
  readonly showAfter: number;
67
67
  readonly hideAfter: number;
68
68
  readonly autoClose: number;
69
69
  readonly trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
70
70
  readonly triggerKeys: string[];
71
- readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
72
71
  readonly id?: string | undefined;
73
- readonly zIndex?: number | undefined;
74
- readonly appendTo?: (string | HTMLElement) | undefined;
75
- readonly onBlur?: ((e: FocusEvent) => void) | undefined;
76
- readonly onClick?: ((e: PointerEvent) => void) | undefined;
77
- readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
78
- readonly onFocus?: ((e: FocusEvent) => void) | undefined;
79
- readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
80
- readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
81
- readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
72
+ readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
82
73
  readonly className?: (string | {
83
74
  [x: string]: boolean;
84
75
  } | (string | {
@@ -132,15 +123,24 @@ declare function __VLS_template(): {
132
123
  readonly popperStyle?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
133
124
  readonly referenceEl?: HTMLElement | undefined;
134
125
  readonly triggerTargetEl?: HTMLElement | undefined;
126
+ readonly zIndex?: number | undefined;
135
127
  readonly ariaLabel?: string | undefined;
136
128
  readonly fallbackPlacements?: import('element-plus').Placement[] | undefined;
137
129
  "onUpdate:visible"?: (((value: boolean) => void) & ((...args: any[]) => any)) | undefined;
130
+ readonly appendTo?: (string | HTMLElement) | undefined;
138
131
  readonly rawContent?: boolean | undefined;
139
132
  readonly persistent?: boolean | undefined;
140
133
  readonly transition?: string | undefined;
141
134
  readonly disabled?: boolean | undefined;
142
135
  readonly focusOnTarget?: boolean | undefined;
143
136
  readonly virtualRef?: import('element-plus').Measurable | undefined;
137
+ readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
138
+ readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
139
+ readonly onClick?: ((e: PointerEvent) => void) | undefined;
140
+ readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
141
+ readonly onFocus?: ((e: FocusEvent) => void) | undefined;
142
+ readonly onBlur?: ((e: FocusEvent) => void) | undefined;
143
+ readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
144
144
  readonly open?: boolean | undefined;
145
145
  onShow?: ((...args: any[]) => any) | undefined | undefined;
146
146
  onHide?: ((...args: any[]) => any) | undefined | undefined;
@@ -148,7 +148,7 @@ declare function __VLS_template(): {
148
148
  onOpen?: ((...args: any[]) => any) | undefined | undefined;
149
149
  "onBefore-show"?: ((...args: any[]) => any) | undefined | undefined;
150
150
  "onBefore-hide"?: ((...args: any[]) => any) | undefined | undefined;
151
- } & 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">;
151
+ } & 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">;
152
152
  $attrs: {
153
153
  [x: string]: unknown;
154
154
  };
@@ -161,58 +161,23 @@ declare function __VLS_template(): {
161
161
  $root: import('vue').ComponentPublicInstance | null;
162
162
  $parent: import('vue').ComponentPublicInstance | null;
163
163
  $host: Element | null;
164
- $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);
164
+ $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);
165
165
  $el: any;
166
166
  $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
167
- style: {
168
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
169
- default: undefined;
170
- };
171
167
  id: {
172
168
  type: import('vue').PropType<string>;
173
169
  };
174
- offset: {
175
- type: import('vue').PropType<number>;
176
- default: 12;
177
- };
178
170
  placement: {
179
171
  type: import('vue').PropType<import('element-plus').Placement>;
180
172
  default: "bottom";
181
173
  };
182
- zIndex: {
183
- type: import('vue').PropType<number>;
184
- };
185
- appendTo: {
186
- type: import('vue').PropType<string | HTMLElement>;
187
- };
188
174
  visible: {
189
175
  type: import('vue').PropType<boolean | null>;
190
176
  default: null;
191
177
  };
192
- content: {
193
- type: import('vue').PropType<string>;
194
- default: "";
195
- };
196
- onBlur: {
197
- type: import('vue').PropType<(e: FocusEvent) => void>;
198
- };
199
- onClick: {
200
- type: import('vue').PropType<(e: PointerEvent) => void>;
201
- };
202
- onContextmenu: {
203
- type: import('vue').PropType<(e: PointerEvent) => void>;
204
- };
205
- onFocus: {
206
- type: import('vue').PropType<(e: FocusEvent) => void>;
207
- };
208
- onKeydown: {
209
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
210
- };
211
- onMouseenter: {
212
- type: import('vue').PropType<(e: MouseEvent) => void>;
213
- };
214
- onMouseleave: {
215
- type: import('vue').PropType<(e: MouseEvent) => void>;
178
+ style: {
179
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
180
+ default: undefined;
216
181
  };
217
182
  className: {
218
183
  type: import('vue').PropType<string | {
@@ -306,6 +271,9 @@ declare function __VLS_template(): {
306
271
  type: import('vue').PropType<boolean>;
307
272
  default: false;
308
273
  };
274
+ zIndex: {
275
+ type: import('vue').PropType<number>;
276
+ };
309
277
  ariaLabel: {
310
278
  type: import('vue').PropType<string>;
311
279
  };
@@ -324,12 +292,16 @@ declare function __VLS_template(): {
324
292
  type: import('vue').PropType<boolean>;
325
293
  default: true;
326
294
  };
295
+ offset: {
296
+ type: import('vue').PropType<number>;
297
+ default: 12;
298
+ };
327
299
  popperOptions: {
328
300
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
329
301
  default: () => {};
330
302
  };
331
303
  strategy: {
332
- type: import('vue').PropType<"fixed" | "absolute">;
304
+ type: import('vue').PropType<"absolute" | "fixed">;
333
305
  default: "absolute";
334
306
  };
335
307
  arrowOffset: {
@@ -344,9 +316,16 @@ declare function __VLS_template(): {
344
316
  type: import('vue').PropType<(value: boolean) => void>;
345
317
  };
346
318
  role: {
347
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
319
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
348
320
  default: string;
349
321
  };
322
+ appendTo: {
323
+ type: import('vue').PropType<string | HTMLElement>;
324
+ };
325
+ content: {
326
+ type: import('vue').PropType<string>;
327
+ default: "";
328
+ };
350
329
  rawContent: {
351
330
  type: import('vue').PropType<boolean>;
352
331
  };
@@ -389,6 +368,27 @@ declare function __VLS_template(): {
389
368
  virtualRef: {
390
369
  type: import('vue').PropType<import('element-plus').Measurable>;
391
370
  };
371
+ onMouseenter: {
372
+ type: import('vue').PropType<(e: MouseEvent) => void>;
373
+ };
374
+ onMouseleave: {
375
+ type: import('vue').PropType<(e: MouseEvent) => void>;
376
+ };
377
+ onClick: {
378
+ type: import('vue').PropType<(e: PointerEvent) => void>;
379
+ };
380
+ onKeydown: {
381
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
382
+ };
383
+ onFocus: {
384
+ type: import('vue').PropType<(e: FocusEvent) => void>;
385
+ };
386
+ onBlur: {
387
+ type: import('vue').PropType<(e: FocusEvent) => void>;
388
+ };
389
+ onContextmenu: {
390
+ type: import('vue').PropType<(e: PointerEvent) => void>;
391
+ };
392
392
  open: {
393
393
  type: import('vue').PropType<boolean>;
394
394
  };
@@ -493,55 +493,20 @@ declare function __VLS_template(): {
493
493
  triggerKeys: string[];
494
494
  showArrow: boolean;
495
495
  }> & Omit<Readonly<import('vue').ExtractPropTypes<{
496
- style: {
497
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
498
- default: undefined;
499
- };
500
496
  id: {
501
497
  type: import('vue').PropType<string>;
502
498
  };
503
- offset: {
504
- type: import('vue').PropType<number>;
505
- default: 12;
506
- };
507
499
  placement: {
508
500
  type: import('vue').PropType<import('element-plus').Placement>;
509
501
  default: "bottom";
510
502
  };
511
- zIndex: {
512
- type: import('vue').PropType<number>;
513
- };
514
- appendTo: {
515
- type: import('vue').PropType<string | HTMLElement>;
516
- };
517
503
  visible: {
518
504
  type: import('vue').PropType<boolean | null>;
519
505
  default: null;
520
506
  };
521
- content: {
522
- type: import('vue').PropType<string>;
523
- default: "";
524
- };
525
- onBlur: {
526
- type: import('vue').PropType<(e: FocusEvent) => void>;
527
- };
528
- onClick: {
529
- type: import('vue').PropType<(e: PointerEvent) => void>;
530
- };
531
- onContextmenu: {
532
- type: import('vue').PropType<(e: PointerEvent) => void>;
533
- };
534
- onFocus: {
535
- type: import('vue').PropType<(e: FocusEvent) => void>;
536
- };
537
- onKeydown: {
538
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
539
- };
540
- onMouseenter: {
541
- type: import('vue').PropType<(e: MouseEvent) => void>;
542
- };
543
- onMouseleave: {
544
- type: import('vue').PropType<(e: MouseEvent) => void>;
507
+ style: {
508
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
509
+ default: undefined;
545
510
  };
546
511
  className: {
547
512
  type: import('vue').PropType<string | {
@@ -635,6 +600,9 @@ declare function __VLS_template(): {
635
600
  type: import('vue').PropType<boolean>;
636
601
  default: false;
637
602
  };
603
+ zIndex: {
604
+ type: import('vue').PropType<number>;
605
+ };
638
606
  ariaLabel: {
639
607
  type: import('vue').PropType<string>;
640
608
  };
@@ -653,12 +621,16 @@ declare function __VLS_template(): {
653
621
  type: import('vue').PropType<boolean>;
654
622
  default: true;
655
623
  };
624
+ offset: {
625
+ type: import('vue').PropType<number>;
626
+ default: 12;
627
+ };
656
628
  popperOptions: {
657
629
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
658
630
  default: () => {};
659
631
  };
660
632
  strategy: {
661
- type: import('vue').PropType<"fixed" | "absolute">;
633
+ type: import('vue').PropType<"absolute" | "fixed">;
662
634
  default: "absolute";
663
635
  };
664
636
  arrowOffset: {
@@ -673,9 +645,16 @@ declare function __VLS_template(): {
673
645
  type: import('vue').PropType<(value: boolean) => void>;
674
646
  };
675
647
  role: {
676
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
648
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
677
649
  default: string;
678
650
  };
651
+ appendTo: {
652
+ type: import('vue').PropType<string | HTMLElement>;
653
+ };
654
+ content: {
655
+ type: import('vue').PropType<string>;
656
+ default: "";
657
+ };
679
658
  rawContent: {
680
659
  type: import('vue').PropType<boolean>;
681
660
  };
@@ -718,6 +697,27 @@ declare function __VLS_template(): {
718
697
  virtualRef: {
719
698
  type: import('vue').PropType<import('element-plus').Measurable>;
720
699
  };
700
+ onMouseenter: {
701
+ type: import('vue').PropType<(e: MouseEvent) => void>;
702
+ };
703
+ onMouseleave: {
704
+ type: import('vue').PropType<(e: MouseEvent) => void>;
705
+ };
706
+ onClick: {
707
+ type: import('vue').PropType<(e: PointerEvent) => void>;
708
+ };
709
+ onKeydown: {
710
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
711
+ };
712
+ onFocus: {
713
+ type: import('vue').PropType<(e: FocusEvent) => void>;
714
+ };
715
+ onBlur: {
716
+ type: import('vue').PropType<(e: FocusEvent) => void>;
717
+ };
718
+ onContextmenu: {
719
+ type: import('vue').PropType<(e: PointerEvent) => void>;
720
+ };
721
721
  open: {
722
722
  type: import('vue').PropType<boolean>;
723
723
  };
@@ -729,7 +729,7 @@ declare function __VLS_template(): {
729
729
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
730
730
  "onBefore-show"?: ((...args: any[]) => any) | undefined;
731
731
  "onBefore-hide"?: ((...args: any[]) => any) | undefined;
732
- }, "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<{
732
+ }, "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<{
733
733
  popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined>;
734
734
  contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined>;
735
735
  isFocusInsideContent: (event?: FocusEvent) => boolean | undefined;
@@ -749,10 +749,6 @@ declare function __VLS_template(): {
749
749
  };
750
750
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
751
751
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
752
- size: {
753
- type: import('vue').PropType<import("vxe-table").VxeGridPropTypes.Size>;
754
- default: () => import('vxe-pc-ui').VxeComponentSizeType | undefined;
755
- };
756
752
  showSetting: {
757
753
  type: BooleanConstructor;
758
754
  default: boolean;
@@ -765,27 +761,14 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
765
761
  type: BooleanConstructor;
766
762
  default: boolean;
767
763
  };
768
- useCache: {
769
- type: BooleanConstructor;
770
- default: boolean;
771
- };
772
- columnsKey: any;
773
- refreshIcon: {
774
- type: StringConstructor;
775
- default: string;
776
- };
777
- columnIcon: {
778
- type: StringConstructor;
764
+ columnsKey: {
765
+ type: import('vue').PropType<string | (() => string)>;
779
766
  default: string;
780
767
  };
781
768
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
782
769
  "on-refresh": () => any;
783
770
  "on-columns-setting": () => any;
784
771
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
785
- size: {
786
- type: import('vue').PropType<import("vxe-table").VxeGridPropTypes.Size>;
787
- default: () => import('vxe-pc-ui').VxeComponentSizeType | undefined;
788
- };
789
772
  showSetting: {
790
773
  type: BooleanConstructor;
791
774
  default: boolean;
@@ -798,31 +781,18 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
798
781
  type: BooleanConstructor;
799
782
  default: boolean;
800
783
  };
801
- useCache: {
802
- type: BooleanConstructor;
803
- default: boolean;
804
- };
805
- columnsKey: any;
806
- refreshIcon: {
807
- type: StringConstructor;
808
- default: string;
809
- };
810
- columnIcon: {
811
- type: StringConstructor;
784
+ columnsKey: {
785
+ type: import('vue').PropType<string | (() => string)>;
812
786
  default: string;
813
787
  };
814
788
  }>> & Readonly<{
815
789
  "onOn-refresh"?: (() => any) | undefined;
816
790
  "onOn-columns-setting"?: (() => any) | undefined;
817
791
  }>, {
818
- size: import('vxe-pc-ui').VxeComponentSizeType;
819
- columnsKey: any;
820
792
  showSetting: boolean;
821
- showSetColumn: boolean;
822
793
  showRefresh: boolean;
823
- useCache: boolean;
824
- refreshIcon: string;
825
- columnIcon: string;
794
+ columnsKey: string | (() => string);
795
+ showSetColumn: boolean;
826
796
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
827
797
  tooltipRef: (({
828
798
  $: import('vue').ComponentInternalInstance;
@@ -856,10 +826,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
856
826
  triggerKeys: string[];
857
827
  showArrow: boolean;
858
828
  }> & Omit<{
859
- readonly offset: number;
860
829
  readonly placement: import('element-plus').Placement;
861
830
  readonly visible: boolean | null;
862
- readonly content: string;
863
831
  readonly effect: import('element-plus').PopperEffect;
864
832
  readonly enterable: boolean;
865
833
  readonly pure: boolean;
@@ -870,28 +838,21 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
870
838
  readonly loop: boolean;
871
839
  readonly boundariesPadding: number;
872
840
  readonly gpuAcceleration: boolean;
841
+ readonly offset: number;
873
842
  readonly popperOptions: Partial<import('element-plus').Options>;
874
- readonly strategy: "fixed" | "absolute";
843
+ readonly strategy: "absolute" | "fixed";
875
844
  readonly arrowOffset: number;
876
845
  readonly showArrow: boolean;
877
846
  readonly role: typeof import('element-plus').roleTypes[number];
847
+ readonly content: string;
878
848
  readonly teleported: boolean;
879
849
  readonly showAfter: number;
880
850
  readonly hideAfter: number;
881
851
  readonly autoClose: number;
882
852
  readonly trigger: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').TooltipTriggerType>;
883
853
  readonly triggerKeys: string[];
884
- readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
885
854
  readonly id?: string | undefined;
886
- readonly zIndex?: number | undefined;
887
- readonly appendTo?: (string | HTMLElement) | undefined;
888
- readonly onBlur?: ((e: FocusEvent) => void) | undefined;
889
- readonly onClick?: ((e: PointerEvent) => void) | undefined;
890
- readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
891
- readonly onFocus?: ((e: FocusEvent) => void) | undefined;
892
- readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
893
- readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
894
- readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
855
+ readonly style?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
895
856
  readonly className?: (string | {
896
857
  [x: string]: boolean;
897
858
  } | (string | {
@@ -945,15 +906,24 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
945
906
  readonly popperStyle?: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null | undefined;
946
907
  readonly referenceEl?: HTMLElement | undefined;
947
908
  readonly triggerTargetEl?: HTMLElement | undefined;
909
+ readonly zIndex?: number | undefined;
948
910
  readonly ariaLabel?: string | undefined;
949
911
  readonly fallbackPlacements?: import('element-plus').Placement[] | undefined;
950
912
  "onUpdate:visible"?: (((value: boolean) => void) & ((...args: any[]) => any)) | undefined;
913
+ readonly appendTo?: (string | HTMLElement) | undefined;
951
914
  readonly rawContent?: boolean | undefined;
952
915
  readonly persistent?: boolean | undefined;
953
916
  readonly transition?: string | undefined;
954
917
  readonly disabled?: boolean | undefined;
955
918
  readonly focusOnTarget?: boolean | undefined;
956
919
  readonly virtualRef?: import('element-plus').Measurable | undefined;
920
+ readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
921
+ readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
922
+ readonly onClick?: ((e: PointerEvent) => void) | undefined;
923
+ readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
924
+ readonly onFocus?: ((e: FocusEvent) => void) | undefined;
925
+ readonly onBlur?: ((e: FocusEvent) => void) | undefined;
926
+ readonly onContextmenu?: ((e: PointerEvent) => void) | undefined;
957
927
  readonly open?: boolean | undefined;
958
928
  onShow?: ((...args: any[]) => any) | undefined | undefined;
959
929
  onHide?: ((...args: any[]) => any) | undefined | undefined;
@@ -961,7 +931,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
961
931
  onOpen?: ((...args: any[]) => any) | undefined | undefined;
962
932
  "onBefore-show"?: ((...args: any[]) => any) | undefined | undefined;
963
933
  "onBefore-hide"?: ((...args: any[]) => any) | undefined | undefined;
964
- } & 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">;
934
+ } & 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">;
965
935
  $attrs: {
966
936
  [x: string]: unknown;
967
937
  };
@@ -974,58 +944,23 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
974
944
  $root: import('vue').ComponentPublicInstance | null;
975
945
  $parent: import('vue').ComponentPublicInstance | null;
976
946
  $host: Element | null;
977
- $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);
947
+ $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);
978
948
  $el: any;
979
949
  $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
980
- style: {
981
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
982
- default: undefined;
983
- };
984
950
  id: {
985
951
  type: import('vue').PropType<string>;
986
952
  };
987
- offset: {
988
- type: import('vue').PropType<number>;
989
- default: 12;
990
- };
991
953
  placement: {
992
954
  type: import('vue').PropType<import('element-plus').Placement>;
993
955
  default: "bottom";
994
956
  };
995
- zIndex: {
996
- type: import('vue').PropType<number>;
997
- };
998
- appendTo: {
999
- type: import('vue').PropType<string | HTMLElement>;
1000
- };
1001
957
  visible: {
1002
958
  type: import('vue').PropType<boolean | null>;
1003
959
  default: null;
1004
960
  };
1005
- content: {
1006
- type: import('vue').PropType<string>;
1007
- default: "";
1008
- };
1009
- onBlur: {
1010
- type: import('vue').PropType<(e: FocusEvent) => void>;
1011
- };
1012
- onClick: {
1013
- type: import('vue').PropType<(e: PointerEvent) => void>;
1014
- };
1015
- onContextmenu: {
1016
- type: import('vue').PropType<(e: PointerEvent) => void>;
1017
- };
1018
- onFocus: {
1019
- type: import('vue').PropType<(e: FocusEvent) => void>;
1020
- };
1021
- onKeydown: {
1022
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
1023
- };
1024
- onMouseenter: {
1025
- type: import('vue').PropType<(e: MouseEvent) => void>;
1026
- };
1027
- onMouseleave: {
1028
- type: import('vue').PropType<(e: MouseEvent) => void>;
961
+ style: {
962
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
963
+ default: undefined;
1029
964
  };
1030
965
  className: {
1031
966
  type: import('vue').PropType<string | {
@@ -1119,6 +1054,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1119
1054
  type: import('vue').PropType<boolean>;
1120
1055
  default: false;
1121
1056
  };
1057
+ zIndex: {
1058
+ type: import('vue').PropType<number>;
1059
+ };
1122
1060
  ariaLabel: {
1123
1061
  type: import('vue').PropType<string>;
1124
1062
  };
@@ -1137,12 +1075,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1137
1075
  type: import('vue').PropType<boolean>;
1138
1076
  default: true;
1139
1077
  };
1078
+ offset: {
1079
+ type: import('vue').PropType<number>;
1080
+ default: 12;
1081
+ };
1140
1082
  popperOptions: {
1141
1083
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
1142
1084
  default: () => {};
1143
1085
  };
1144
1086
  strategy: {
1145
- type: import('vue').PropType<"fixed" | "absolute">;
1087
+ type: import('vue').PropType<"absolute" | "fixed">;
1146
1088
  default: "absolute";
1147
1089
  };
1148
1090
  arrowOffset: {
@@ -1157,9 +1099,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1157
1099
  type: import('vue').PropType<(value: boolean) => void>;
1158
1100
  };
1159
1101
  role: {
1160
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
1102
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
1161
1103
  default: string;
1162
1104
  };
1105
+ appendTo: {
1106
+ type: import('vue').PropType<string | HTMLElement>;
1107
+ };
1108
+ content: {
1109
+ type: import('vue').PropType<string>;
1110
+ default: "";
1111
+ };
1163
1112
  rawContent: {
1164
1113
  type: import('vue').PropType<boolean>;
1165
1114
  };
@@ -1202,6 +1151,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1202
1151
  virtualRef: {
1203
1152
  type: import('vue').PropType<import('element-plus').Measurable>;
1204
1153
  };
1154
+ onMouseenter: {
1155
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1156
+ };
1157
+ onMouseleave: {
1158
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1159
+ };
1160
+ onClick: {
1161
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1162
+ };
1163
+ onKeydown: {
1164
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
1165
+ };
1166
+ onFocus: {
1167
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1168
+ };
1169
+ onBlur: {
1170
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1171
+ };
1172
+ onContextmenu: {
1173
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1174
+ };
1205
1175
  open: {
1206
1176
  type: import('vue').PropType<boolean>;
1207
1177
  };
@@ -1306,55 +1276,20 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1306
1276
  triggerKeys: string[];
1307
1277
  showArrow: boolean;
1308
1278
  }> & Omit<Readonly<import('vue').ExtractPropTypes<{
1309
- style: {
1310
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1311
- default: undefined;
1312
- };
1313
1279
  id: {
1314
1280
  type: import('vue').PropType<string>;
1315
1281
  };
1316
- offset: {
1317
- type: import('vue').PropType<number>;
1318
- default: 12;
1319
- };
1320
1282
  placement: {
1321
1283
  type: import('vue').PropType<import('element-plus').Placement>;
1322
1284
  default: "bottom";
1323
1285
  };
1324
- zIndex: {
1325
- type: import('vue').PropType<number>;
1326
- };
1327
- appendTo: {
1328
- type: import('vue').PropType<string | HTMLElement>;
1329
- };
1330
1286
  visible: {
1331
1287
  type: import('vue').PropType<boolean | null>;
1332
1288
  default: null;
1333
1289
  };
1334
- content: {
1335
- type: import('vue').PropType<string>;
1336
- default: "";
1337
- };
1338
- onBlur: {
1339
- type: import('vue').PropType<(e: FocusEvent) => void>;
1340
- };
1341
- onClick: {
1342
- type: import('vue').PropType<(e: PointerEvent) => void>;
1343
- };
1344
- onContextmenu: {
1345
- type: import('vue').PropType<(e: PointerEvent) => void>;
1346
- };
1347
- onFocus: {
1348
- type: import('vue').PropType<(e: FocusEvent) => void>;
1349
- };
1350
- onKeydown: {
1351
- type: import('vue').PropType<(e: KeyboardEvent) => void>;
1352
- };
1353
- onMouseenter: {
1354
- type: import('vue').PropType<(e: MouseEvent) => void>;
1355
- };
1356
- onMouseleave: {
1357
- type: import('vue').PropType<(e: MouseEvent) => void>;
1290
+ style: {
1291
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
1292
+ default: undefined;
1358
1293
  };
1359
1294
  className: {
1360
1295
  type: import('vue').PropType<string | {
@@ -1448,6 +1383,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1448
1383
  type: import('vue').PropType<boolean>;
1449
1384
  default: false;
1450
1385
  };
1386
+ zIndex: {
1387
+ type: import('vue').PropType<number>;
1388
+ };
1451
1389
  ariaLabel: {
1452
1390
  type: import('vue').PropType<string>;
1453
1391
  };
@@ -1466,12 +1404,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1466
1404
  type: import('vue').PropType<boolean>;
1467
1405
  default: true;
1468
1406
  };
1407
+ offset: {
1408
+ type: import('vue').PropType<number>;
1409
+ default: 12;
1410
+ };
1469
1411
  popperOptions: {
1470
1412
  type: import('vue').PropType<Partial<import('element-plus').Options>>;
1471
1413
  default: () => {};
1472
1414
  };
1473
1415
  strategy: {
1474
- type: import('vue').PropType<"fixed" | "absolute">;
1416
+ type: import('vue').PropType<"absolute" | "fixed">;
1475
1417
  default: "absolute";
1476
1418
  };
1477
1419
  arrowOffset: {
@@ -1486,9 +1428,16 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1486
1428
  type: import('vue').PropType<(value: boolean) => void>;
1487
1429
  };
1488
1430
  role: {
1489
- type: import('vue').PropType<"dialog" | "menu" | "grid" | "group" | "listbox" | "navigation" | "tooltip" | "tree">;
1431
+ type: import('vue').PropType<"tooltip" | "listbox" | "grid" | "menu" | "dialog" | "group" | "navigation" | "tree">;
1490
1432
  default: string;
1491
1433
  };
1434
+ appendTo: {
1435
+ type: import('vue').PropType<string | HTMLElement>;
1436
+ };
1437
+ content: {
1438
+ type: import('vue').PropType<string>;
1439
+ default: "";
1440
+ };
1492
1441
  rawContent: {
1493
1442
  type: import('vue').PropType<boolean>;
1494
1443
  };
@@ -1531,6 +1480,27 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1531
1480
  virtualRef: {
1532
1481
  type: import('vue').PropType<import('element-plus').Measurable>;
1533
1482
  };
1483
+ onMouseenter: {
1484
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1485
+ };
1486
+ onMouseleave: {
1487
+ type: import('vue').PropType<(e: MouseEvent) => void>;
1488
+ };
1489
+ onClick: {
1490
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1491
+ };
1492
+ onKeydown: {
1493
+ type: import('vue').PropType<(e: KeyboardEvent) => void>;
1494
+ };
1495
+ onFocus: {
1496
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1497
+ };
1498
+ onBlur: {
1499
+ type: import('vue').PropType<(e: FocusEvent) => void>;
1500
+ };
1501
+ onContextmenu: {
1502
+ type: import('vue').PropType<(e: PointerEvent) => void>;
1503
+ };
1534
1504
  open: {
1535
1505
  type: import('vue').PropType<boolean>;
1536
1506
  };
@@ -1542,7 +1512,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
1542
1512
  "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
1543
1513
  "onBefore-show"?: ((...args: any[]) => any) | undefined;
1544
1514
  "onBefore-hide"?: ((...args: any[]) => any) | undefined;
1545
- }, "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<{
1515
+ }, "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<{
1546
1516
  popperRef: import('vue').Ref<import('element-plus').PopperInstance | undefined>;
1547
1517
  contentRef: import('vue').Ref<import('element-plus').TooltipContentInstance | undefined>;
1548
1518
  isFocusInsideContent: (event?: FocusEvent) => boolean | undefined;