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,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;