auto-vue-basic 0.0.87 → 0.0.89

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.
@@ -1,5 +1,5 @@
1
1
  import { ColumnProps, ProTableListProps, StateProps } from 'auto-vue-manual';
2
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, Ref, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, CSSProperties, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, Ref, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComputedRef, StyleValue, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
3
  import { TableProps, TableColumnCtx, Sort, Filter, Translator, Table } from 'element-plus';
4
4
  import { EpPropMergeType } from 'element-plus/es/utils';
5
5
  import { default as __DTS_DEFAULT_0__ } from 'element-plus/es/components/table/src/table-layout';
@@ -121,7 +121,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
121
121
  lazy: BooleanConstructor;
122
122
  load: PropType< TableProps<any>["load"]>;
123
123
  style: {
124
- type: PropType<CSSProperties>;
124
+ type: PropType< TableProps<any>["style"]>;
125
125
  default: () => {};
126
126
  };
127
127
  className: {
@@ -148,15 +148,16 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
148
148
  preserveExpandedContent: BooleanConstructor;
149
149
  nativeScrollbar: BooleanConstructor;
150
150
  }>> & {
151
- onScroll?: ((...args: any[]) => any) | undefined;
152
151
  onSelect?: ((...args: any[]) => any) | undefined;
152
+ onScroll?: ((...args: any[]) => any) | undefined;
153
153
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
154
154
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
155
155
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
156
156
  "onHeader-click"?: ((...args: any[]) => any) | undefined;
157
157
  "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
158
158
  "onHeader-dragend"?: ((...args: any[]) => any) | undefined;
159
- "onSelection-change"?: ((...args: any[]) => any) | undefined;
159
+ "onSelection-change"?: ((
160
+ /** @type { [typeof __VLS_components.RefreshButton, ] } */ ...args: any[]) => any) | undefined;
160
161
  "onSort-change"?: ((...args: any[]) => any) | undefined;
161
162
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
162
163
  "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
@@ -704,6 +705,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
704
705
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
705
706
  cssVarBlockName: (name: string) => string;
706
707
  };
708
+ t: Translator;
707
709
  };
708
710
  columns: ComputedRef< TableColumnCtx<any>[]>;
709
711
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -745,7 +747,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
745
747
  context: Table<any>;
746
748
  computedSumText: ComputedRef<string>;
747
749
  computedEmptyText: ComputedRef<string>;
748
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
750
+ tableLayout: ComputedRef<"fixed" | "auto">;
749
751
  scrollbarViewStyle: {
750
752
  display: string;
751
753
  verticalAlign: string;
@@ -765,9 +767,9 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
765
767
  setScrollLeft: (left?: number) => void;
766
768
  setScrollTop: (top?: number) => void;
767
769
  allowDragLastColumn: boolean;
768
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], VNodeProps & AllowedComponentProps & ComponentCustomProps, {
770
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
769
771
  data: any[];
770
- style: CSSProperties;
772
+ style: StyleValue;
771
773
  tableLayout: "fixed" | "auto";
772
774
  border: boolean;
773
775
  className: string;
@@ -858,7 +860,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
858
860
  lazy: BooleanConstructor;
859
861
  load: PropType< TableProps<any>["load"]>;
860
862
  style: {
861
- type: PropType<CSSProperties>;
863
+ type: PropType< TableProps<any>["style"]>;
862
864
  default: () => {};
863
865
  };
864
866
  className: {
@@ -885,8 +887,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
885
887
  preserveExpandedContent: BooleanConstructor;
886
888
  nativeScrollbar: BooleanConstructor;
887
889
  }>> & {
888
- onScroll?: ((...args: any[]) => any) | undefined;
889
890
  onSelect?: ((...args: any[]) => any) | undefined;
891
+ onScroll?: ((...args: any[]) => any) | undefined;
890
892
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
891
893
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
892
894
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -1441,6 +1443,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
1441
1443
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
1442
1444
  cssVarBlockName: (name: string) => string;
1443
1445
  };
1446
+ t: Translator;
1444
1447
  };
1445
1448
  columns: ComputedRef< TableColumnCtx<any>[]>;
1446
1449
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -1482,7 +1485,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
1482
1485
  context: Table<any>;
1483
1486
  computedSumText: ComputedRef<string>;
1484
1487
  computedEmptyText: ComputedRef<string>;
1485
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
1488
+ tableLayout: ComputedRef<"fixed" | "auto">;
1486
1489
  scrollbarViewStyle: {
1487
1490
  display: string;
1488
1491
  verticalAlign: string;
@@ -1504,7 +1507,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
1504
1507
  allowDragLastColumn: boolean;
1505
1508
  }, {}, {}, {}, {
1506
1509
  data: any[];
1507
- style: CSSProperties;
1510
+ style: StyleValue;
1508
1511
  tableLayout: "fixed" | "auto";
1509
1512
  border: boolean;
1510
1513
  className: string;
@@ -1588,7 +1591,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
1588
1591
  lazy: BooleanConstructor;
1589
1592
  load: PropType< TableProps<any>["load"]>;
1590
1593
  style: {
1591
- type: PropType<CSSProperties>;
1594
+ type: PropType< TableProps<any>["style"]>;
1592
1595
  default: () => {};
1593
1596
  };
1594
1597
  className: {
@@ -1615,8 +1618,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
1615
1618
  preserveExpandedContent: BooleanConstructor;
1616
1619
  nativeScrollbar: BooleanConstructor;
1617
1620
  }>> & {
1618
- onScroll?: ((...args: any[]) => any) | undefined;
1619
1621
  onSelect?: ((...args: any[]) => any) | undefined;
1622
+ onScroll?: ((...args: any[]) => any) | undefined;
1620
1623
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
1621
1624
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
1622
1625
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -2171,6 +2174,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2171
2174
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
2172
2175
  cssVarBlockName: (name: string) => string;
2173
2176
  };
2177
+ t: Translator;
2174
2178
  };
2175
2179
  columns: ComputedRef< TableColumnCtx<any>[]>;
2176
2180
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -2212,7 +2216,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2212
2216
  context: Table<any>;
2213
2217
  computedSumText: ComputedRef<string>;
2214
2218
  computedEmptyText: ComputedRef<string>;
2215
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
2219
+ tableLayout: ComputedRef<"fixed" | "auto">;
2216
2220
  scrollbarViewStyle: {
2217
2221
  display: string;
2218
2222
  verticalAlign: string;
@@ -2232,9 +2236,9 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2232
2236
  setScrollLeft: (left?: number) => void;
2233
2237
  setScrollTop: (top?: number) => void;
2234
2238
  allowDragLastColumn: boolean;
2235
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], VNodeProps & AllowedComponentProps & ComponentCustomProps, {
2239
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
2236
2240
  data: any[];
2237
- style: CSSProperties;
2241
+ style: StyleValue;
2238
2242
  tableLayout: "fixed" | "auto";
2239
2243
  border: boolean;
2240
2244
  className: string;
@@ -2325,7 +2329,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2325
2329
  lazy: BooleanConstructor;
2326
2330
  load: PropType< TableProps<any>["load"]>;
2327
2331
  style: {
2328
- type: PropType<CSSProperties>;
2332
+ type: PropType< TableProps<any>["style"]>;
2329
2333
  default: () => {};
2330
2334
  };
2331
2335
  className: {
@@ -2352,8 +2356,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2352
2356
  preserveExpandedContent: BooleanConstructor;
2353
2357
  nativeScrollbar: BooleanConstructor;
2354
2358
  }>> & {
2355
- onScroll?: ((...args: any[]) => any) | undefined;
2356
2359
  onSelect?: ((...args: any[]) => any) | undefined;
2360
+ onScroll?: ((...args: any[]) => any) | undefined;
2357
2361
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
2358
2362
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
2359
2363
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -2908,6 +2912,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2908
2912
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
2909
2913
  cssVarBlockName: (name: string) => string;
2910
2914
  };
2915
+ t: Translator;
2911
2916
  };
2912
2917
  columns: ComputedRef< TableColumnCtx<any>[]>;
2913
2918
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -2949,7 +2954,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2949
2954
  context: Table<any>;
2950
2955
  computedSumText: ComputedRef<string>;
2951
2956
  computedEmptyText: ComputedRef<string>;
2952
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
2957
+ tableLayout: ComputedRef<"fixed" | "auto">;
2953
2958
  scrollbarViewStyle: {
2954
2959
  display: string;
2955
2960
  verticalAlign: string;
@@ -2971,7 +2976,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
2971
2976
  allowDragLastColumn: boolean;
2972
2977
  }, {}, {}, {}, {
2973
2978
  data: any[];
2974
- style: CSSProperties;
2979
+ style: StyleValue;
2975
2980
  tableLayout: "fixed" | "auto";
2976
2981
  border: boolean;
2977
2982
  className: string;
@@ -3150,7 +3155,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
3150
3155
  lazy: BooleanConstructor;
3151
3156
  load: PropType< TableProps<any>["load"]>;
3152
3157
  style: {
3153
- type: PropType<CSSProperties>;
3158
+ type: PropType< TableProps<any>["style"]>;
3154
3159
  default: () => {};
3155
3160
  };
3156
3161
  className: {
@@ -3177,15 +3182,16 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
3177
3182
  preserveExpandedContent: BooleanConstructor;
3178
3183
  nativeScrollbar: BooleanConstructor;
3179
3184
  }>> & {
3180
- onScroll?: ((...args: any[]) => any) | undefined;
3181
3185
  onSelect?: ((...args: any[]) => any) | undefined;
3186
+ onScroll?: ((...args: any[]) => any) | undefined;
3182
3187
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
3183
3188
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
3184
3189
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
3185
3190
  "onHeader-click"?: ((...args: any[]) => any) | undefined;
3186
3191
  "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
3187
3192
  "onHeader-dragend"?: ((...args: any[]) => any) | undefined;
3188
- "onSelection-change"?: ((...args: any[]) => any) | undefined;
3193
+ "onSelection-change"?: ((
3194
+ /** @type { [typeof __VLS_components.RefreshButton, ] } */ ...args: any[]) => any) | undefined;
3189
3195
  "onSort-change"?: ((...args: any[]) => any) | undefined;
3190
3196
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
3191
3197
  "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
@@ -3733,6 +3739,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
3733
3739
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
3734
3740
  cssVarBlockName: (name: string) => string;
3735
3741
  };
3742
+ t: Translator;
3736
3743
  };
3737
3744
  columns: ComputedRef< TableColumnCtx<any>[]>;
3738
3745
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -3774,7 +3781,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
3774
3781
  context: Table<any>;
3775
3782
  computedSumText: ComputedRef<string>;
3776
3783
  computedEmptyText: ComputedRef<string>;
3777
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
3784
+ tableLayout: ComputedRef<"fixed" | "auto">;
3778
3785
  scrollbarViewStyle: {
3779
3786
  display: string;
3780
3787
  verticalAlign: string;
@@ -3794,9 +3801,9 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
3794
3801
  setScrollLeft: (left?: number) => void;
3795
3802
  setScrollTop: (top?: number) => void;
3796
3803
  allowDragLastColumn: boolean;
3797
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], VNodeProps & AllowedComponentProps & ComponentCustomProps, {
3804
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
3798
3805
  data: any[];
3799
- style: CSSProperties;
3806
+ style: StyleValue;
3800
3807
  tableLayout: "fixed" | "auto";
3801
3808
  border: boolean;
3802
3809
  className: string;
@@ -3887,7 +3894,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
3887
3894
  lazy: BooleanConstructor;
3888
3895
  load: PropType< TableProps<any>["load"]>;
3889
3896
  style: {
3890
- type: PropType<CSSProperties>;
3897
+ type: PropType< TableProps<any>["style"]>;
3891
3898
  default: () => {};
3892
3899
  };
3893
3900
  className: {
@@ -3914,8 +3921,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
3914
3921
  preserveExpandedContent: BooleanConstructor;
3915
3922
  nativeScrollbar: BooleanConstructor;
3916
3923
  }>> & {
3917
- onScroll?: ((...args: any[]) => any) | undefined;
3918
3924
  onSelect?: ((...args: any[]) => any) | undefined;
3925
+ onScroll?: ((...args: any[]) => any) | undefined;
3919
3926
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
3920
3927
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
3921
3928
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -4470,6 +4477,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
4470
4477
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
4471
4478
  cssVarBlockName: (name: string) => string;
4472
4479
  };
4480
+ t: Translator;
4473
4481
  };
4474
4482
  columns: ComputedRef< TableColumnCtx<any>[]>;
4475
4483
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -4511,7 +4519,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
4511
4519
  context: Table<any>;
4512
4520
  computedSumText: ComputedRef<string>;
4513
4521
  computedEmptyText: ComputedRef<string>;
4514
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
4522
+ tableLayout: ComputedRef<"fixed" | "auto">;
4515
4523
  scrollbarViewStyle: {
4516
4524
  display: string;
4517
4525
  verticalAlign: string;
@@ -4533,7 +4541,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
4533
4541
  allowDragLastColumn: boolean;
4534
4542
  }, {}, {}, {}, {
4535
4543
  data: any[];
4536
- style: CSSProperties;
4544
+ style: StyleValue;
4537
4545
  tableLayout: "fixed" | "auto";
4538
4546
  border: boolean;
4539
4547
  className: string;
@@ -4617,7 +4625,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
4617
4625
  lazy: BooleanConstructor;
4618
4626
  load: PropType< TableProps<any>["load"]>;
4619
4627
  style: {
4620
- type: PropType<CSSProperties>;
4628
+ type: PropType< TableProps<any>["style"]>;
4621
4629
  default: () => {};
4622
4630
  };
4623
4631
  className: {
@@ -4644,8 +4652,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
4644
4652
  preserveExpandedContent: BooleanConstructor;
4645
4653
  nativeScrollbar: BooleanConstructor;
4646
4654
  }>> & {
4647
- onScroll?: ((...args: any[]) => any) | undefined;
4648
4655
  onSelect?: ((...args: any[]) => any) | undefined;
4656
+ onScroll?: ((...args: any[]) => any) | undefined;
4649
4657
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
4650
4658
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
4651
4659
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -5200,6 +5208,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
5200
5208
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
5201
5209
  cssVarBlockName: (name: string) => string;
5202
5210
  };
5211
+ t: Translator;
5203
5212
  };
5204
5213
  columns: ComputedRef< TableColumnCtx<any>[]>;
5205
5214
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -5241,7 +5250,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
5241
5250
  context: Table<any>;
5242
5251
  computedSumText: ComputedRef<string>;
5243
5252
  computedEmptyText: ComputedRef<string>;
5244
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
5253
+ tableLayout: ComputedRef<"fixed" | "auto">;
5245
5254
  scrollbarViewStyle: {
5246
5255
  display: string;
5247
5256
  verticalAlign: string;
@@ -5261,9 +5270,9 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
5261
5270
  setScrollLeft: (left?: number) => void;
5262
5271
  setScrollTop: (top?: number) => void;
5263
5272
  allowDragLastColumn: boolean;
5264
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], VNodeProps & AllowedComponentProps & ComponentCustomProps, {
5273
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "scroll" | "selection-change" | "current-change" | "row-click" | "row-dblclick" | "select-all" | "expand-change" | "header-click" | "header-contextmenu" | "header-dragend" | "sort-change" | "filter-change" | "cell-mouse-enter" | "cell-mouse-leave" | "cell-contextmenu" | "cell-click" | "cell-dblclick" | "row-contextmenu")[], PublicProps, {
5265
5274
  data: any[];
5266
- style: CSSProperties;
5275
+ style: StyleValue;
5267
5276
  tableLayout: "fixed" | "auto";
5268
5277
  border: boolean;
5269
5278
  className: string;
@@ -5354,7 +5363,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
5354
5363
  lazy: BooleanConstructor;
5355
5364
  load: PropType< TableProps<any>["load"]>;
5356
5365
  style: {
5357
- type: PropType<CSSProperties>;
5366
+ type: PropType< TableProps<any>["style"]>;
5358
5367
  default: () => {};
5359
5368
  };
5360
5369
  className: {
@@ -5381,8 +5390,8 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
5381
5390
  preserveExpandedContent: BooleanConstructor;
5382
5391
  nativeScrollbar: BooleanConstructor;
5383
5392
  }>> & {
5384
- onScroll?: ((...args: any[]) => any) | undefined;
5385
5393
  onSelect?: ((...args: any[]) => any) | undefined;
5394
+ onScroll?: ((...args: any[]) => any) | undefined;
5386
5395
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
5387
5396
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
5388
5397
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -5937,6 +5946,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
5937
5946
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
5938
5947
  cssVarBlockName: (name: string) => string;
5939
5948
  };
5949
+ t: Translator;
5940
5950
  };
5941
5951
  columns: ComputedRef< TableColumnCtx<any>[]>;
5942
5952
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -5978,7 +5988,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
5978
5988
  context: Table<any>;
5979
5989
  computedSumText: ComputedRef<string>;
5980
5990
  computedEmptyText: ComputedRef<string>;
5981
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
5991
+ tableLayout: ComputedRef<"fixed" | "auto">;
5982
5992
  scrollbarViewStyle: {
5983
5993
  display: string;
5984
5994
  verticalAlign: string;
@@ -6000,7 +6010,7 @@ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixi
6000
6010
  allowDragLastColumn: boolean;
6001
6011
  }, {}, {}, {}, {
6002
6012
  data: any[];
6003
- style: CSSProperties;
6013
+ style: StyleValue;
6004
6014
  tableLayout: "fixed" | "auto";
6005
6015
  border: boolean;
6006
6016
  className: string;