auto-vue-basic 0.0.87 → 0.0.88

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,4 +1,4 @@
1
- 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';
1
+ 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';
2
2
  import { ColumnProps, ProTableListProps, StateProps } from 'auto-vue-manual';
3
3
  import { TableProps, TableColumnCtx, Sort, Filter, Translator, Table } from 'element-plus';
4
4
  import { EpPropMergeType } from 'element-plus/es/utils';
@@ -123,7 +123,7 @@ declare const _default: DefineComponent<{}, {
123
123
  lazy: BooleanConstructor;
124
124
  load: PropType< TableProps<any>["load"]>;
125
125
  style: {
126
- type: PropType<CSSProperties>;
126
+ type: PropType< TableProps<any>["style"]>;
127
127
  default: () => {};
128
128
  };
129
129
  className: {
@@ -150,8 +150,8 @@ declare const _default: DefineComponent<{}, {
150
150
  preserveExpandedContent: BooleanConstructor;
151
151
  nativeScrollbar: BooleanConstructor;
152
152
  }>> & {
153
- onScroll?: ((...args: any[]) => any) | undefined;
154
153
  onSelect?: ((...args: any[]) => any) | undefined;
154
+ onScroll?: ((...args: any[]) => any) | undefined;
155
155
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
156
156
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
157
157
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -706,6 +706,7 @@ declare const _default: DefineComponent<{}, {
706
706
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
707
707
  cssVarBlockName: (name: string) => string;
708
708
  };
709
+ t: Translator;
709
710
  };
710
711
  columns: ComputedRef< TableColumnCtx<any>[]>;
711
712
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -747,7 +748,7 @@ declare const _default: DefineComponent<{}, {
747
748
  context: Table<any>;
748
749
  computedSumText: ComputedRef<string>;
749
750
  computedEmptyText: ComputedRef<string>;
750
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
751
+ tableLayout: ComputedRef<"fixed" | "auto">;
751
752
  scrollbarViewStyle: {
752
753
  display: string;
753
754
  verticalAlign: string;
@@ -767,9 +768,9 @@ declare const _default: DefineComponent<{}, {
767
768
  setScrollLeft: (left?: number) => void;
768
769
  setScrollTop: (top?: number) => void;
769
770
  allowDragLastColumn: boolean;
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")[], VNodeProps & AllowedComponentProps & ComponentCustomProps, {
771
+ }, 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, {
771
772
  data: any[];
772
- style: CSSProperties;
773
+ style: StyleValue;
773
774
  tableLayout: "fixed" | "auto";
774
775
  border: boolean;
775
776
  className: string;
@@ -860,7 +861,7 @@ declare const _default: DefineComponent<{}, {
860
861
  lazy: BooleanConstructor;
861
862
  load: PropType< TableProps<any>["load"]>;
862
863
  style: {
863
- type: PropType<CSSProperties>;
864
+ type: PropType< TableProps<any>["style"]>;
864
865
  default: () => {};
865
866
  };
866
867
  className: {
@@ -887,8 +888,8 @@ declare const _default: DefineComponent<{}, {
887
888
  preserveExpandedContent: BooleanConstructor;
888
889
  nativeScrollbar: BooleanConstructor;
889
890
  }>> & {
890
- onScroll?: ((...args: any[]) => any) | undefined;
891
891
  onSelect?: ((...args: any[]) => any) | undefined;
892
+ onScroll?: ((...args: any[]) => any) | undefined;
892
893
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
893
894
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
894
895
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -1443,6 +1444,7 @@ declare const _default: DefineComponent<{}, {
1443
1444
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
1444
1445
  cssVarBlockName: (name: string) => string;
1445
1446
  };
1447
+ t: Translator;
1446
1448
  };
1447
1449
  columns: ComputedRef< TableColumnCtx<any>[]>;
1448
1450
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -1484,7 +1486,7 @@ declare const _default: DefineComponent<{}, {
1484
1486
  context: Table<any>;
1485
1487
  computedSumText: ComputedRef<string>;
1486
1488
  computedEmptyText: ComputedRef<string>;
1487
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
1489
+ tableLayout: ComputedRef<"fixed" | "auto">;
1488
1490
  scrollbarViewStyle: {
1489
1491
  display: string;
1490
1492
  verticalAlign: string;
@@ -1506,7 +1508,7 @@ declare const _default: DefineComponent<{}, {
1506
1508
  allowDragLastColumn: boolean;
1507
1509
  }, {}, {}, {}, {
1508
1510
  data: any[];
1509
- style: CSSProperties;
1511
+ style: StyleValue;
1510
1512
  tableLayout: "fixed" | "auto";
1511
1513
  border: boolean;
1512
1514
  className: string;
@@ -1590,7 +1592,7 @@ declare const _default: DefineComponent<{}, {
1590
1592
  lazy: BooleanConstructor;
1591
1593
  load: PropType< TableProps<any>["load"]>;
1592
1594
  style: {
1593
- type: PropType<CSSProperties>;
1595
+ type: PropType< TableProps<any>["style"]>;
1594
1596
  default: () => {};
1595
1597
  };
1596
1598
  className: {
@@ -1617,8 +1619,8 @@ declare const _default: DefineComponent<{}, {
1617
1619
  preserveExpandedContent: BooleanConstructor;
1618
1620
  nativeScrollbar: BooleanConstructor;
1619
1621
  }>> & {
1620
- onScroll?: ((...args: any[]) => any) | undefined;
1621
1622
  onSelect?: ((...args: any[]) => any) | undefined;
1623
+ onScroll?: ((...args: any[]) => any) | undefined;
1622
1624
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
1623
1625
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
1624
1626
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -2173,6 +2175,7 @@ declare const _default: DefineComponent<{}, {
2173
2175
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
2174
2176
  cssVarBlockName: (name: string) => string;
2175
2177
  };
2178
+ t: Translator;
2176
2179
  };
2177
2180
  columns: ComputedRef< TableColumnCtx<any>[]>;
2178
2181
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -2214,7 +2217,7 @@ declare const _default: DefineComponent<{}, {
2214
2217
  context: Table<any>;
2215
2218
  computedSumText: ComputedRef<string>;
2216
2219
  computedEmptyText: ComputedRef<string>;
2217
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
2220
+ tableLayout: ComputedRef<"fixed" | "auto">;
2218
2221
  scrollbarViewStyle: {
2219
2222
  display: string;
2220
2223
  verticalAlign: string;
@@ -2234,9 +2237,9 @@ declare const _default: DefineComponent<{}, {
2234
2237
  setScrollLeft: (left?: number) => void;
2235
2238
  setScrollTop: (top?: number) => void;
2236
2239
  allowDragLastColumn: boolean;
2237
- }, 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, {
2240
+ }, 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, {
2238
2241
  data: any[];
2239
- style: CSSProperties;
2242
+ style: StyleValue;
2240
2243
  tableLayout: "fixed" | "auto";
2241
2244
  border: boolean;
2242
2245
  className: string;
@@ -2327,7 +2330,7 @@ declare const _default: DefineComponent<{}, {
2327
2330
  lazy: BooleanConstructor;
2328
2331
  load: PropType< TableProps<any>["load"]>;
2329
2332
  style: {
2330
- type: PropType<CSSProperties>;
2333
+ type: PropType< TableProps<any>["style"]>;
2331
2334
  default: () => {};
2332
2335
  };
2333
2336
  className: {
@@ -2354,8 +2357,8 @@ declare const _default: DefineComponent<{}, {
2354
2357
  preserveExpandedContent: BooleanConstructor;
2355
2358
  nativeScrollbar: BooleanConstructor;
2356
2359
  }>> & {
2357
- onScroll?: ((...args: any[]) => any) | undefined;
2358
2360
  onSelect?: ((...args: any[]) => any) | undefined;
2361
+ onScroll?: ((...args: any[]) => any) | undefined;
2359
2362
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
2360
2363
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
2361
2364
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -2910,6 +2913,7 @@ declare const _default: DefineComponent<{}, {
2910
2913
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
2911
2914
  cssVarBlockName: (name: string) => string;
2912
2915
  };
2916
+ t: Translator;
2913
2917
  };
2914
2918
  columns: ComputedRef< TableColumnCtx<any>[]>;
2915
2919
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -2951,7 +2955,7 @@ declare const _default: DefineComponent<{}, {
2951
2955
  context: Table<any>;
2952
2956
  computedSumText: ComputedRef<string>;
2953
2957
  computedEmptyText: ComputedRef<string>;
2954
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
2958
+ tableLayout: ComputedRef<"fixed" | "auto">;
2955
2959
  scrollbarViewStyle: {
2956
2960
  display: string;
2957
2961
  verticalAlign: string;
@@ -2973,7 +2977,7 @@ declare const _default: DefineComponent<{}, {
2973
2977
  allowDragLastColumn: boolean;
2974
2978
  }, {}, {}, {}, {
2975
2979
  data: any[];
2976
- style: CSSProperties;
2980
+ style: StyleValue;
2977
2981
  tableLayout: "fixed" | "auto";
2978
2982
  border: boolean;
2979
2983
  className: string;
@@ -3152,7 +3156,7 @@ declare const _default: DefineComponent<{}, {
3152
3156
  lazy: BooleanConstructor;
3153
3157
  load: PropType< TableProps<any>["load"]>;
3154
3158
  style: {
3155
- type: PropType<CSSProperties>;
3159
+ type: PropType< TableProps<any>["style"]>;
3156
3160
  default: () => {};
3157
3161
  };
3158
3162
  className: {
@@ -3179,8 +3183,8 @@ declare const _default: DefineComponent<{}, {
3179
3183
  preserveExpandedContent: BooleanConstructor;
3180
3184
  nativeScrollbar: BooleanConstructor;
3181
3185
  }>> & {
3182
- onScroll?: ((...args: any[]) => any) | undefined;
3183
3186
  onSelect?: ((...args: any[]) => any) | undefined;
3187
+ onScroll?: ((...args: any[]) => any) | undefined;
3184
3188
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
3185
3189
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
3186
3190
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -3735,6 +3739,7 @@ declare const _default: DefineComponent<{}, {
3735
3739
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
3736
3740
  cssVarBlockName: (name: string) => string;
3737
3741
  };
3742
+ t: Translator;
3738
3743
  };
3739
3744
  columns: ComputedRef< TableColumnCtx<any>[]>;
3740
3745
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -3776,7 +3781,7 @@ declare const _default: DefineComponent<{}, {
3776
3781
  context: Table<any>;
3777
3782
  computedSumText: ComputedRef<string>;
3778
3783
  computedEmptyText: ComputedRef<string>;
3779
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
3784
+ tableLayout: ComputedRef<"fixed" | "auto">;
3780
3785
  scrollbarViewStyle: {
3781
3786
  display: string;
3782
3787
  verticalAlign: string;
@@ -3796,9 +3801,9 @@ declare const _default: DefineComponent<{}, {
3796
3801
  setScrollLeft: (left?: number) => void;
3797
3802
  setScrollTop: (top?: number) => void;
3798
3803
  allowDragLastColumn: boolean;
3799
- }, 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, {
3800
3805
  data: any[];
3801
- style: CSSProperties;
3806
+ style: StyleValue;
3802
3807
  tableLayout: "fixed" | "auto";
3803
3808
  border: boolean;
3804
3809
  className: string;
@@ -3889,7 +3894,7 @@ declare const _default: DefineComponent<{}, {
3889
3894
  lazy: BooleanConstructor;
3890
3895
  load: PropType< TableProps<any>["load"]>;
3891
3896
  style: {
3892
- type: PropType<CSSProperties>;
3897
+ type: PropType< TableProps<any>["style"]>;
3893
3898
  default: () => {};
3894
3899
  };
3895
3900
  className: {
@@ -3916,8 +3921,8 @@ declare const _default: DefineComponent<{}, {
3916
3921
  preserveExpandedContent: BooleanConstructor;
3917
3922
  nativeScrollbar: BooleanConstructor;
3918
3923
  }>> & {
3919
- onScroll?: ((...args: any[]) => any) | undefined;
3920
3924
  onSelect?: ((...args: any[]) => any) | undefined;
3925
+ onScroll?: ((...args: any[]) => any) | undefined;
3921
3926
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
3922
3927
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
3923
3928
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -4472,6 +4477,7 @@ declare const _default: DefineComponent<{}, {
4472
4477
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
4473
4478
  cssVarBlockName: (name: string) => string;
4474
4479
  };
4480
+ t: Translator;
4475
4481
  };
4476
4482
  columns: ComputedRef< TableColumnCtx<any>[]>;
4477
4483
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -4513,7 +4519,7 @@ declare const _default: DefineComponent<{}, {
4513
4519
  context: Table<any>;
4514
4520
  computedSumText: ComputedRef<string>;
4515
4521
  computedEmptyText: ComputedRef<string>;
4516
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
4522
+ tableLayout: ComputedRef<"fixed" | "auto">;
4517
4523
  scrollbarViewStyle: {
4518
4524
  display: string;
4519
4525
  verticalAlign: string;
@@ -4535,7 +4541,7 @@ declare const _default: DefineComponent<{}, {
4535
4541
  allowDragLastColumn: boolean;
4536
4542
  }, {}, {}, {}, {
4537
4543
  data: any[];
4538
- style: CSSProperties;
4544
+ style: StyleValue;
4539
4545
  tableLayout: "fixed" | "auto";
4540
4546
  border: boolean;
4541
4547
  className: string;
@@ -4619,7 +4625,7 @@ declare const _default: DefineComponent<{}, {
4619
4625
  lazy: BooleanConstructor;
4620
4626
  load: PropType< TableProps<any>["load"]>;
4621
4627
  style: {
4622
- type: PropType<CSSProperties>;
4628
+ type: PropType< TableProps<any>["style"]>;
4623
4629
  default: () => {};
4624
4630
  };
4625
4631
  className: {
@@ -4646,8 +4652,8 @@ declare const _default: DefineComponent<{}, {
4646
4652
  preserveExpandedContent: BooleanConstructor;
4647
4653
  nativeScrollbar: BooleanConstructor;
4648
4654
  }>> & {
4649
- onScroll?: ((...args: any[]) => any) | undefined;
4650
4655
  onSelect?: ((...args: any[]) => any) | undefined;
4656
+ onScroll?: ((...args: any[]) => any) | undefined;
4651
4657
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
4652
4658
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
4653
4659
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -5202,6 +5208,7 @@ declare const _default: DefineComponent<{}, {
5202
5208
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
5203
5209
  cssVarBlockName: (name: string) => string;
5204
5210
  };
5211
+ t: Translator;
5205
5212
  };
5206
5213
  columns: ComputedRef< TableColumnCtx<any>[]>;
5207
5214
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -5243,7 +5250,7 @@ declare const _default: DefineComponent<{}, {
5243
5250
  context: Table<any>;
5244
5251
  computedSumText: ComputedRef<string>;
5245
5252
  computedEmptyText: ComputedRef<string>;
5246
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
5253
+ tableLayout: ComputedRef<"fixed" | "auto">;
5247
5254
  scrollbarViewStyle: {
5248
5255
  display: string;
5249
5256
  verticalAlign: string;
@@ -5263,9 +5270,9 @@ declare const _default: DefineComponent<{}, {
5263
5270
  setScrollLeft: (left?: number) => void;
5264
5271
  setScrollTop: (top?: number) => void;
5265
5272
  allowDragLastColumn: boolean;
5266
- }, 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, {
5267
5274
  data: any[];
5268
- style: CSSProperties;
5275
+ style: StyleValue;
5269
5276
  tableLayout: "fixed" | "auto";
5270
5277
  border: boolean;
5271
5278
  className: string;
@@ -5356,7 +5363,7 @@ declare const _default: DefineComponent<{}, {
5356
5363
  lazy: BooleanConstructor;
5357
5364
  load: PropType< TableProps<any>["load"]>;
5358
5365
  style: {
5359
- type: PropType<CSSProperties>;
5366
+ type: PropType< TableProps<any>["style"]>;
5360
5367
  default: () => {};
5361
5368
  };
5362
5369
  className: {
@@ -5383,8 +5390,8 @@ declare const _default: DefineComponent<{}, {
5383
5390
  preserveExpandedContent: BooleanConstructor;
5384
5391
  nativeScrollbar: BooleanConstructor;
5385
5392
  }>> & {
5386
- onScroll?: ((...args: any[]) => any) | undefined;
5387
5393
  onSelect?: ((...args: any[]) => any) | undefined;
5394
+ onScroll?: ((...args: any[]) => any) | undefined;
5388
5395
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
5389
5396
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
5390
5397
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -5939,6 +5946,7 @@ declare const _default: DefineComponent<{}, {
5939
5946
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
5940
5947
  cssVarBlockName: (name: string) => string;
5941
5948
  };
5949
+ t: Translator;
5942
5950
  };
5943
5951
  columns: ComputedRef< TableColumnCtx<any>[]>;
5944
5952
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -5980,7 +5988,7 @@ declare const _default: DefineComponent<{}, {
5980
5988
  context: Table<any>;
5981
5989
  computedSumText: ComputedRef<string>;
5982
5990
  computedEmptyText: ComputedRef<string>;
5983
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
5991
+ tableLayout: ComputedRef<"fixed" | "auto">;
5984
5992
  scrollbarViewStyle: {
5985
5993
  display: string;
5986
5994
  verticalAlign: string;
@@ -6002,7 +6010,7 @@ declare const _default: DefineComponent<{}, {
6002
6010
  allowDragLastColumn: boolean;
6003
6011
  }, {}, {}, {}, {
6004
6012
  data: any[];
6005
- style: CSSProperties;
6013
+ style: StyleValue;
6006
6014
  tableLayout: "fixed" | "auto";
6007
6015
  border: boolean;
6008
6016
  className: string;
@@ -6314,7 +6322,7 @@ declare const _default: DefineComponent<{}, {
6314
6322
  lazy: BooleanConstructor;
6315
6323
  load: PropType< TableProps<any>["load"]>;
6316
6324
  style: {
6317
- type: PropType<CSSProperties>;
6325
+ type: PropType< TableProps<any>["style"]>;
6318
6326
  default: () => {};
6319
6327
  };
6320
6328
  className: {
@@ -6341,8 +6349,8 @@ declare const _default: DefineComponent<{}, {
6341
6349
  preserveExpandedContent: BooleanConstructor;
6342
6350
  nativeScrollbar: BooleanConstructor;
6343
6351
  }>> & {
6344
- onScroll?: ((...args: any[]) => any) | undefined;
6345
6352
  onSelect?: ((...args: any[]) => any) | undefined;
6353
+ onScroll?: ((...args: any[]) => any) | undefined;
6346
6354
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
6347
6355
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
6348
6356
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -6897,6 +6905,7 @@ declare const _default: DefineComponent<{}, {
6897
6905
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
6898
6906
  cssVarBlockName: (name: string) => string;
6899
6907
  };
6908
+ t: Translator;
6900
6909
  };
6901
6910
  columns: ComputedRef< TableColumnCtx<any>[]>;
6902
6911
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -6938,7 +6947,7 @@ declare const _default: DefineComponent<{}, {
6938
6947
  context: Table<any>;
6939
6948
  computedSumText: ComputedRef<string>;
6940
6949
  computedEmptyText: ComputedRef<string>;
6941
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
6950
+ tableLayout: ComputedRef<"fixed" | "auto">;
6942
6951
  scrollbarViewStyle: {
6943
6952
  display: string;
6944
6953
  verticalAlign: string;
@@ -6958,9 +6967,9 @@ declare const _default: DefineComponent<{}, {
6958
6967
  setScrollLeft: (left?: number) => void;
6959
6968
  setScrollTop: (top?: number) => void;
6960
6969
  allowDragLastColumn: boolean;
6961
- }, 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, {
6970
+ }, 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, {
6962
6971
  data: any[];
6963
- style: CSSProperties;
6972
+ style: StyleValue;
6964
6973
  tableLayout: "fixed" | "auto";
6965
6974
  border: boolean;
6966
6975
  className: string;
@@ -7051,7 +7060,7 @@ declare const _default: DefineComponent<{}, {
7051
7060
  lazy: BooleanConstructor;
7052
7061
  load: PropType< TableProps<any>["load"]>;
7053
7062
  style: {
7054
- type: PropType<CSSProperties>;
7063
+ type: PropType< TableProps<any>["style"]>;
7055
7064
  default: () => {};
7056
7065
  };
7057
7066
  className: {
@@ -7078,8 +7087,8 @@ declare const _default: DefineComponent<{}, {
7078
7087
  preserveExpandedContent: BooleanConstructor;
7079
7088
  nativeScrollbar: BooleanConstructor;
7080
7089
  }>> & {
7081
- onScroll?: ((...args: any[]) => any) | undefined;
7082
7090
  onSelect?: ((...args: any[]) => any) | undefined;
7091
+ onScroll?: ((...args: any[]) => any) | undefined;
7083
7092
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
7084
7093
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
7085
7094
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -7634,6 +7643,7 @@ declare const _default: DefineComponent<{}, {
7634
7643
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
7635
7644
  cssVarBlockName: (name: string) => string;
7636
7645
  };
7646
+ t: Translator;
7637
7647
  };
7638
7648
  columns: ComputedRef< TableColumnCtx<any>[]>;
7639
7649
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -7675,7 +7685,7 @@ declare const _default: DefineComponent<{}, {
7675
7685
  context: Table<any>;
7676
7686
  computedSumText: ComputedRef<string>;
7677
7687
  computedEmptyText: ComputedRef<string>;
7678
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
7688
+ tableLayout: ComputedRef<"fixed" | "auto">;
7679
7689
  scrollbarViewStyle: {
7680
7690
  display: string;
7681
7691
  verticalAlign: string;
@@ -7697,7 +7707,7 @@ declare const _default: DefineComponent<{}, {
7697
7707
  allowDragLastColumn: boolean;
7698
7708
  }, {}, {}, {}, {
7699
7709
  data: any[];
7700
- style: CSSProperties;
7710
+ style: StyleValue;
7701
7711
  tableLayout: "fixed" | "auto";
7702
7712
  border: boolean;
7703
7713
  className: string;
@@ -7781,7 +7791,7 @@ declare const _default: DefineComponent<{}, {
7781
7791
  lazy: BooleanConstructor;
7782
7792
  load: PropType< TableProps<any>["load"]>;
7783
7793
  style: {
7784
- type: PropType<CSSProperties>;
7794
+ type: PropType< TableProps<any>["style"]>;
7785
7795
  default: () => {};
7786
7796
  };
7787
7797
  className: {
@@ -7808,8 +7818,8 @@ declare const _default: DefineComponent<{}, {
7808
7818
  preserveExpandedContent: BooleanConstructor;
7809
7819
  nativeScrollbar: BooleanConstructor;
7810
7820
  }>> & {
7811
- onScroll?: ((...args: any[]) => any) | undefined;
7812
7821
  onSelect?: ((...args: any[]) => any) | undefined;
7822
+ onScroll?: ((...args: any[]) => any) | undefined;
7813
7823
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
7814
7824
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
7815
7825
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -8364,6 +8374,7 @@ declare const _default: DefineComponent<{}, {
8364
8374
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
8365
8375
  cssVarBlockName: (name: string) => string;
8366
8376
  };
8377
+ t: Translator;
8367
8378
  };
8368
8379
  columns: ComputedRef< TableColumnCtx<any>[]>;
8369
8380
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -8405,7 +8416,7 @@ declare const _default: DefineComponent<{}, {
8405
8416
  context: Table<any>;
8406
8417
  computedSumText: ComputedRef<string>;
8407
8418
  computedEmptyText: ComputedRef<string>;
8408
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
8419
+ tableLayout: ComputedRef<"fixed" | "auto">;
8409
8420
  scrollbarViewStyle: {
8410
8421
  display: string;
8411
8422
  verticalAlign: string;
@@ -8425,9 +8436,9 @@ declare const _default: DefineComponent<{}, {
8425
8436
  setScrollLeft: (left?: number) => void;
8426
8437
  setScrollTop: (top?: number) => void;
8427
8438
  allowDragLastColumn: boolean;
8428
- }, 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, {
8439
+ }, 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, {
8429
8440
  data: any[];
8430
- style: CSSProperties;
8441
+ style: StyleValue;
8431
8442
  tableLayout: "fixed" | "auto";
8432
8443
  border: boolean;
8433
8444
  className: string;
@@ -8518,7 +8529,7 @@ declare const _default: DefineComponent<{}, {
8518
8529
  lazy: BooleanConstructor;
8519
8530
  load: PropType< TableProps<any>["load"]>;
8520
8531
  style: {
8521
- type: PropType<CSSProperties>;
8532
+ type: PropType< TableProps<any>["style"]>;
8522
8533
  default: () => {};
8523
8534
  };
8524
8535
  className: {
@@ -8545,8 +8556,8 @@ declare const _default: DefineComponent<{}, {
8545
8556
  preserveExpandedContent: BooleanConstructor;
8546
8557
  nativeScrollbar: BooleanConstructor;
8547
8558
  }>> & {
8548
- onScroll?: ((...args: any[]) => any) | undefined;
8549
8559
  onSelect?: ((...args: any[]) => any) | undefined;
8560
+ onScroll?: ((...args: any[]) => any) | undefined;
8550
8561
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
8551
8562
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
8552
8563
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -9101,6 +9112,7 @@ declare const _default: DefineComponent<{}, {
9101
9112
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
9102
9113
  cssVarBlockName: (name: string) => string;
9103
9114
  };
9115
+ t: Translator;
9104
9116
  };
9105
9117
  columns: ComputedRef< TableColumnCtx<any>[]>;
9106
9118
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -9142,7 +9154,7 @@ declare const _default: DefineComponent<{}, {
9142
9154
  context: Table<any>;
9143
9155
  computedSumText: ComputedRef<string>;
9144
9156
  computedEmptyText: ComputedRef<string>;
9145
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
9157
+ tableLayout: ComputedRef<"fixed" | "auto">;
9146
9158
  scrollbarViewStyle: {
9147
9159
  display: string;
9148
9160
  verticalAlign: string;
@@ -9164,7 +9176,7 @@ declare const _default: DefineComponent<{}, {
9164
9176
  allowDragLastColumn: boolean;
9165
9177
  }, {}, {}, {}, {
9166
9178
  data: any[];
9167
- style: CSSProperties;
9179
+ style: StyleValue;
9168
9180
  tableLayout: "fixed" | "auto";
9169
9181
  border: boolean;
9170
9182
  className: string;
@@ -9343,7 +9355,7 @@ declare const _default: DefineComponent<{}, {
9343
9355
  lazy: BooleanConstructor;
9344
9356
  load: PropType< TableProps<any>["load"]>;
9345
9357
  style: {
9346
- type: PropType<CSSProperties>;
9358
+ type: PropType< TableProps<any>["style"]>;
9347
9359
  default: () => {};
9348
9360
  };
9349
9361
  className: {
@@ -9370,8 +9382,8 @@ declare const _default: DefineComponent<{}, {
9370
9382
  preserveExpandedContent: BooleanConstructor;
9371
9383
  nativeScrollbar: BooleanConstructor;
9372
9384
  }>> & {
9373
- onScroll?: ((...args: any[]) => any) | undefined;
9374
9385
  onSelect?: ((...args: any[]) => any) | undefined;
9386
+ onScroll?: ((...args: any[]) => any) | undefined;
9375
9387
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
9376
9388
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
9377
9389
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -9926,6 +9938,7 @@ declare const _default: DefineComponent<{}, {
9926
9938
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
9927
9939
  cssVarBlockName: (name: string) => string;
9928
9940
  };
9941
+ t: Translator;
9929
9942
  };
9930
9943
  columns: ComputedRef< TableColumnCtx<any>[]>;
9931
9944
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -9967,7 +9980,7 @@ declare const _default: DefineComponent<{}, {
9967
9980
  context: Table<any>;
9968
9981
  computedSumText: ComputedRef<string>;
9969
9982
  computedEmptyText: ComputedRef<string>;
9970
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
9983
+ tableLayout: ComputedRef<"fixed" | "auto">;
9971
9984
  scrollbarViewStyle: {
9972
9985
  display: string;
9973
9986
  verticalAlign: string;
@@ -9987,9 +10000,9 @@ declare const _default: DefineComponent<{}, {
9987
10000
  setScrollLeft: (left?: number) => void;
9988
10001
  setScrollTop: (top?: number) => void;
9989
10002
  allowDragLastColumn: boolean;
9990
- }, 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, {
10003
+ }, 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, {
9991
10004
  data: any[];
9992
- style: CSSProperties;
10005
+ style: StyleValue;
9993
10006
  tableLayout: "fixed" | "auto";
9994
10007
  border: boolean;
9995
10008
  className: string;
@@ -10080,7 +10093,7 @@ declare const _default: DefineComponent<{}, {
10080
10093
  lazy: BooleanConstructor;
10081
10094
  load: PropType< TableProps<any>["load"]>;
10082
10095
  style: {
10083
- type: PropType<CSSProperties>;
10096
+ type: PropType< TableProps<any>["style"]>;
10084
10097
  default: () => {};
10085
10098
  };
10086
10099
  className: {
@@ -10107,8 +10120,8 @@ declare const _default: DefineComponent<{}, {
10107
10120
  preserveExpandedContent: BooleanConstructor;
10108
10121
  nativeScrollbar: BooleanConstructor;
10109
10122
  }>> & {
10110
- onScroll?: ((...args: any[]) => any) | undefined;
10111
10123
  onSelect?: ((...args: any[]) => any) | undefined;
10124
+ onScroll?: ((...args: any[]) => any) | undefined;
10112
10125
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
10113
10126
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
10114
10127
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -10663,6 +10676,7 @@ declare const _default: DefineComponent<{}, {
10663
10676
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
10664
10677
  cssVarBlockName: (name: string) => string;
10665
10678
  };
10679
+ t: Translator;
10666
10680
  };
10667
10681
  columns: ComputedRef< TableColumnCtx<any>[]>;
10668
10682
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -10704,7 +10718,7 @@ declare const _default: DefineComponent<{}, {
10704
10718
  context: Table<any>;
10705
10719
  computedSumText: ComputedRef<string>;
10706
10720
  computedEmptyText: ComputedRef<string>;
10707
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
10721
+ tableLayout: ComputedRef<"fixed" | "auto">;
10708
10722
  scrollbarViewStyle: {
10709
10723
  display: string;
10710
10724
  verticalAlign: string;
@@ -10726,7 +10740,7 @@ declare const _default: DefineComponent<{}, {
10726
10740
  allowDragLastColumn: boolean;
10727
10741
  }, {}, {}, {}, {
10728
10742
  data: any[];
10729
- style: CSSProperties;
10743
+ style: StyleValue;
10730
10744
  tableLayout: "fixed" | "auto";
10731
10745
  border: boolean;
10732
10746
  className: string;
@@ -10810,7 +10824,7 @@ declare const _default: DefineComponent<{}, {
10810
10824
  lazy: BooleanConstructor;
10811
10825
  load: PropType< TableProps<any>["load"]>;
10812
10826
  style: {
10813
- type: PropType<CSSProperties>;
10827
+ type: PropType< TableProps<any>["style"]>;
10814
10828
  default: () => {};
10815
10829
  };
10816
10830
  className: {
@@ -10837,8 +10851,8 @@ declare const _default: DefineComponent<{}, {
10837
10851
  preserveExpandedContent: BooleanConstructor;
10838
10852
  nativeScrollbar: BooleanConstructor;
10839
10853
  }>> & {
10840
- onScroll?: ((...args: any[]) => any) | undefined;
10841
10854
  onSelect?: ((...args: any[]) => any) | undefined;
10855
+ onScroll?: ((...args: any[]) => any) | undefined;
10842
10856
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
10843
10857
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
10844
10858
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -11393,6 +11407,7 @@ declare const _default: DefineComponent<{}, {
11393
11407
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
11394
11408
  cssVarBlockName: (name: string) => string;
11395
11409
  };
11410
+ t: Translator;
11396
11411
  };
11397
11412
  columns: ComputedRef< TableColumnCtx<any>[]>;
11398
11413
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -11434,7 +11449,7 @@ declare const _default: DefineComponent<{}, {
11434
11449
  context: Table<any>;
11435
11450
  computedSumText: ComputedRef<string>;
11436
11451
  computedEmptyText: ComputedRef<string>;
11437
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
11452
+ tableLayout: ComputedRef<"fixed" | "auto">;
11438
11453
  scrollbarViewStyle: {
11439
11454
  display: string;
11440
11455
  verticalAlign: string;
@@ -11454,9 +11469,9 @@ declare const _default: DefineComponent<{}, {
11454
11469
  setScrollLeft: (left?: number) => void;
11455
11470
  setScrollTop: (top?: number) => void;
11456
11471
  allowDragLastColumn: boolean;
11457
- }, 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, {
11472
+ }, 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, {
11458
11473
  data: any[];
11459
- style: CSSProperties;
11474
+ style: StyleValue;
11460
11475
  tableLayout: "fixed" | "auto";
11461
11476
  border: boolean;
11462
11477
  className: string;
@@ -11547,7 +11562,7 @@ declare const _default: DefineComponent<{}, {
11547
11562
  lazy: BooleanConstructor;
11548
11563
  load: PropType< TableProps<any>["load"]>;
11549
11564
  style: {
11550
- type: PropType<CSSProperties>;
11565
+ type: PropType< TableProps<any>["style"]>;
11551
11566
  default: () => {};
11552
11567
  };
11553
11568
  className: {
@@ -11574,8 +11589,8 @@ declare const _default: DefineComponent<{}, {
11574
11589
  preserveExpandedContent: BooleanConstructor;
11575
11590
  nativeScrollbar: BooleanConstructor;
11576
11591
  }>> & {
11577
- onScroll?: ((...args: any[]) => any) | undefined;
11578
11592
  onSelect?: ((...args: any[]) => any) | undefined;
11593
+ onScroll?: ((...args: any[]) => any) | undefined;
11579
11594
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
11580
11595
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
11581
11596
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -12130,6 +12145,7 @@ declare const _default: DefineComponent<{}, {
12130
12145
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
12131
12146
  cssVarBlockName: (name: string) => string;
12132
12147
  };
12148
+ t: Translator;
12133
12149
  };
12134
12150
  columns: ComputedRef< TableColumnCtx<any>[]>;
12135
12151
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -12171,7 +12187,7 @@ declare const _default: DefineComponent<{}, {
12171
12187
  context: Table<any>;
12172
12188
  computedSumText: ComputedRef<string>;
12173
12189
  computedEmptyText: ComputedRef<string>;
12174
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
12190
+ tableLayout: ComputedRef<"fixed" | "auto">;
12175
12191
  scrollbarViewStyle: {
12176
12192
  display: string;
12177
12193
  verticalAlign: string;
@@ -12193,7 +12209,7 @@ declare const _default: DefineComponent<{}, {
12193
12209
  allowDragLastColumn: boolean;
12194
12210
  }, {}, {}, {}, {
12195
12211
  data: any[];
12196
- style: CSSProperties;
12212
+ style: StyleValue;
12197
12213
  tableLayout: "fixed" | "auto";
12198
12214
  border: boolean;
12199
12215
  className: string;