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, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, ComponentInternalInstance, Ref, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, CSSProperties, ComputedRef, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, ComponentInternalInstance, Ref, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, ComputedRef, StyleValue, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
2
  import { ColumnProps, BaseTableProps, 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';
@@ -121,7 +121,7 @@ declare const _default: DefineComponent<{}, {
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,8 +148,8 @@ declare const _default: DefineComponent<{}, {
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;
@@ -704,6 +704,7 @@ declare const _default: DefineComponent<{}, {
704
704
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
705
705
  cssVarBlockName: (name: string) => string;
706
706
  };
707
+ t: Translator;
707
708
  };
708
709
  columns: ComputedRef< TableColumnCtx<any>[]>;
709
710
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -745,7 +746,7 @@ declare const _default: DefineComponent<{}, {
745
746
  context: Table<any>;
746
747
  computedSumText: ComputedRef<string>;
747
748
  computedEmptyText: ComputedRef<string>;
748
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
749
+ tableLayout: ComputedRef<"fixed" | "auto">;
749
750
  scrollbarViewStyle: {
750
751
  display: string;
751
752
  verticalAlign: string;
@@ -765,9 +766,9 @@ declare const _default: DefineComponent<{}, {
765
766
  setScrollLeft: (left?: number) => void;
766
767
  setScrollTop: (top?: number) => void;
767
768
  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, {
769
+ }, 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
770
  data: any[];
770
- style: CSSProperties;
771
+ style: StyleValue;
771
772
  tableLayout: "fixed" | "auto";
772
773
  border: boolean;
773
774
  className: string;
@@ -858,7 +859,7 @@ declare const _default: DefineComponent<{}, {
858
859
  lazy: BooleanConstructor;
859
860
  load: PropType< TableProps<any>["load"]>;
860
861
  style: {
861
- type: PropType<CSSProperties>;
862
+ type: PropType< TableProps<any>["style"]>;
862
863
  default: () => {};
863
864
  };
864
865
  className: {
@@ -885,8 +886,8 @@ declare const _default: DefineComponent<{}, {
885
886
  preserveExpandedContent: BooleanConstructor;
886
887
  nativeScrollbar: BooleanConstructor;
887
888
  }>> & {
888
- onScroll?: ((...args: any[]) => any) | undefined;
889
889
  onSelect?: ((...args: any[]) => any) | undefined;
890
+ onScroll?: ((...args: any[]) => any) | undefined;
890
891
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
891
892
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
892
893
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -1441,6 +1442,7 @@ declare const _default: DefineComponent<{}, {
1441
1442
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
1442
1443
  cssVarBlockName: (name: string) => string;
1443
1444
  };
1445
+ t: Translator;
1444
1446
  };
1445
1447
  columns: ComputedRef< TableColumnCtx<any>[]>;
1446
1448
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -1482,7 +1484,7 @@ declare const _default: DefineComponent<{}, {
1482
1484
  context: Table<any>;
1483
1485
  computedSumText: ComputedRef<string>;
1484
1486
  computedEmptyText: ComputedRef<string>;
1485
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
1487
+ tableLayout: ComputedRef<"fixed" | "auto">;
1486
1488
  scrollbarViewStyle: {
1487
1489
  display: string;
1488
1490
  verticalAlign: string;
@@ -1504,7 +1506,7 @@ declare const _default: DefineComponent<{}, {
1504
1506
  allowDragLastColumn: boolean;
1505
1507
  }, {}, {}, {}, {
1506
1508
  data: any[];
1507
- style: CSSProperties;
1509
+ style: StyleValue;
1508
1510
  tableLayout: "fixed" | "auto";
1509
1511
  border: boolean;
1510
1512
  className: string;
@@ -1603,7 +1605,7 @@ declare const _default: DefineComponent<{}, {
1603
1605
  lazy: BooleanConstructor;
1604
1606
  load: PropType< TableProps<any>["load"]>;
1605
1607
  style: {
1606
- type: PropType<CSSProperties>;
1608
+ type: PropType< TableProps<any>["style"]>;
1607
1609
  default: () => {};
1608
1610
  };
1609
1611
  className: {
@@ -1630,8 +1632,8 @@ declare const _default: DefineComponent<{}, {
1630
1632
  preserveExpandedContent: BooleanConstructor;
1631
1633
  nativeScrollbar: BooleanConstructor;
1632
1634
  }>> & {
1633
- onScroll?: ((...args: any[]) => any) | undefined;
1634
1635
  onSelect?: ((...args: any[]) => any) | undefined;
1636
+ onScroll?: ((...args: any[]) => any) | undefined;
1635
1637
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
1636
1638
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
1637
1639
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -2186,6 +2188,7 @@ declare const _default: DefineComponent<{}, {
2186
2188
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
2187
2189
  cssVarBlockName: (name: string) => string;
2188
2190
  };
2191
+ t: Translator;
2189
2192
  };
2190
2193
  columns: ComputedRef< TableColumnCtx<any>[]>;
2191
2194
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -2227,7 +2230,7 @@ declare const _default: DefineComponent<{}, {
2227
2230
  context: Table<any>;
2228
2231
  computedSumText: ComputedRef<string>;
2229
2232
  computedEmptyText: ComputedRef<string>;
2230
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
2233
+ tableLayout: ComputedRef<"fixed" | "auto">;
2231
2234
  scrollbarViewStyle: {
2232
2235
  display: string;
2233
2236
  verticalAlign: string;
@@ -2247,9 +2250,9 @@ declare const _default: DefineComponent<{}, {
2247
2250
  setScrollLeft: (left?: number) => void;
2248
2251
  setScrollTop: (top?: number) => void;
2249
2252
  allowDragLastColumn: boolean;
2250
- }, 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, {
2253
+ }, 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, {
2251
2254
  data: any[];
2252
- style: CSSProperties;
2255
+ style: StyleValue;
2253
2256
  tableLayout: "fixed" | "auto";
2254
2257
  border: boolean;
2255
2258
  className: string;
@@ -2340,7 +2343,7 @@ declare const _default: DefineComponent<{}, {
2340
2343
  lazy: BooleanConstructor;
2341
2344
  load: PropType< TableProps<any>["load"]>;
2342
2345
  style: {
2343
- type: PropType<CSSProperties>;
2346
+ type: PropType< TableProps<any>["style"]>;
2344
2347
  default: () => {};
2345
2348
  };
2346
2349
  className: {
@@ -2367,8 +2370,8 @@ declare const _default: DefineComponent<{}, {
2367
2370
  preserveExpandedContent: BooleanConstructor;
2368
2371
  nativeScrollbar: BooleanConstructor;
2369
2372
  }>> & {
2370
- onScroll?: ((...args: any[]) => any) | undefined;
2371
2373
  onSelect?: ((...args: any[]) => any) | undefined;
2374
+ onScroll?: ((...args: any[]) => any) | undefined;
2372
2375
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
2373
2376
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
2374
2377
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -2923,6 +2926,7 @@ declare const _default: DefineComponent<{}, {
2923
2926
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
2924
2927
  cssVarBlockName: (name: string) => string;
2925
2928
  };
2929
+ t: Translator;
2926
2930
  };
2927
2931
  columns: ComputedRef< TableColumnCtx<any>[]>;
2928
2932
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -2964,7 +2968,7 @@ declare const _default: DefineComponent<{}, {
2964
2968
  context: Table<any>;
2965
2969
  computedSumText: ComputedRef<string>;
2966
2970
  computedEmptyText: ComputedRef<string>;
2967
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
2971
+ tableLayout: ComputedRef<"fixed" | "auto">;
2968
2972
  scrollbarViewStyle: {
2969
2973
  display: string;
2970
2974
  verticalAlign: string;
@@ -2986,7 +2990,7 @@ declare const _default: DefineComponent<{}, {
2986
2990
  allowDragLastColumn: boolean;
2987
2991
  }, {}, {}, {}, {
2988
2992
  data: any[];
2989
- style: CSSProperties;
2993
+ style: StyleValue;
2990
2994
  tableLayout: "fixed" | "auto";
2991
2995
  border: boolean;
2992
2996
  className: string;
@@ -3070,7 +3074,7 @@ declare const _default: DefineComponent<{}, {
3070
3074
  lazy: BooleanConstructor;
3071
3075
  load: PropType< TableProps<any>["load"]>;
3072
3076
  style: {
3073
- type: PropType<CSSProperties>;
3077
+ type: PropType< TableProps<any>["style"]>;
3074
3078
  default: () => {};
3075
3079
  };
3076
3080
  className: {
@@ -3097,8 +3101,8 @@ declare const _default: DefineComponent<{}, {
3097
3101
  preserveExpandedContent: BooleanConstructor;
3098
3102
  nativeScrollbar: BooleanConstructor;
3099
3103
  }>> & {
3100
- onScroll?: ((...args: any[]) => any) | undefined;
3101
3104
  onSelect?: ((...args: any[]) => any) | undefined;
3105
+ onScroll?: ((...args: any[]) => any) | undefined;
3102
3106
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
3103
3107
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
3104
3108
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -3653,6 +3657,7 @@ declare const _default: DefineComponent<{}, {
3653
3657
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
3654
3658
  cssVarBlockName: (name: string) => string;
3655
3659
  };
3660
+ t: Translator;
3656
3661
  };
3657
3662
  columns: ComputedRef< TableColumnCtx<any>[]>;
3658
3663
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -3694,7 +3699,7 @@ declare const _default: DefineComponent<{}, {
3694
3699
  context: Table<any>;
3695
3700
  computedSumText: ComputedRef<string>;
3696
3701
  computedEmptyText: ComputedRef<string>;
3697
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
3702
+ tableLayout: ComputedRef<"fixed" | "auto">;
3698
3703
  scrollbarViewStyle: {
3699
3704
  display: string;
3700
3705
  verticalAlign: string;
@@ -3714,9 +3719,9 @@ declare const _default: DefineComponent<{}, {
3714
3719
  setScrollLeft: (left?: number) => void;
3715
3720
  setScrollTop: (top?: number) => void;
3716
3721
  allowDragLastColumn: boolean;
3717
- }, 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, {
3722
+ }, 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, {
3718
3723
  data: any[];
3719
- style: CSSProperties;
3724
+ style: StyleValue;
3720
3725
  tableLayout: "fixed" | "auto";
3721
3726
  border: boolean;
3722
3727
  className: string;
@@ -3807,7 +3812,7 @@ declare const _default: DefineComponent<{}, {
3807
3812
  lazy: BooleanConstructor;
3808
3813
  load: PropType< TableProps<any>["load"]>;
3809
3814
  style: {
3810
- type: PropType<CSSProperties>;
3815
+ type: PropType< TableProps<any>["style"]>;
3811
3816
  default: () => {};
3812
3817
  };
3813
3818
  className: {
@@ -3834,8 +3839,8 @@ declare const _default: DefineComponent<{}, {
3834
3839
  preserveExpandedContent: BooleanConstructor;
3835
3840
  nativeScrollbar: BooleanConstructor;
3836
3841
  }>> & {
3837
- onScroll?: ((...args: any[]) => any) | undefined;
3838
3842
  onSelect?: ((...args: any[]) => any) | undefined;
3843
+ onScroll?: ((...args: any[]) => any) | undefined;
3839
3844
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
3840
3845
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
3841
3846
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -4390,6 +4395,7 @@ declare const _default: DefineComponent<{}, {
4390
4395
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
4391
4396
  cssVarBlockName: (name: string) => string;
4392
4397
  };
4398
+ t: Translator;
4393
4399
  };
4394
4400
  columns: ComputedRef< TableColumnCtx<any>[]>;
4395
4401
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -4431,7 +4437,7 @@ declare const _default: DefineComponent<{}, {
4431
4437
  context: Table<any>;
4432
4438
  computedSumText: ComputedRef<string>;
4433
4439
  computedEmptyText: ComputedRef<string>;
4434
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
4440
+ tableLayout: ComputedRef<"fixed" | "auto">;
4435
4441
  scrollbarViewStyle: {
4436
4442
  display: string;
4437
4443
  verticalAlign: string;
@@ -4453,7 +4459,7 @@ declare const _default: DefineComponent<{}, {
4453
4459
  allowDragLastColumn: boolean;
4454
4460
  }, {}, {}, {}, {
4455
4461
  data: any[];
4456
- style: CSSProperties;
4462
+ style: StyleValue;
4457
4463
  tableLayout: "fixed" | "auto";
4458
4464
  border: boolean;
4459
4465
  className: string;
@@ -4635,7 +4641,7 @@ declare const _default: DefineComponent<{}, {
4635
4641
  lazy: BooleanConstructor;
4636
4642
  load: PropType< TableProps<any>["load"]>;
4637
4643
  style: {
4638
- type: PropType<CSSProperties>;
4644
+ type: PropType< TableProps<any>["style"]>;
4639
4645
  default: () => {};
4640
4646
  };
4641
4647
  className: {
@@ -4662,8 +4668,8 @@ declare const _default: DefineComponent<{}, {
4662
4668
  preserveExpandedContent: BooleanConstructor;
4663
4669
  nativeScrollbar: BooleanConstructor;
4664
4670
  }>> & {
4665
- onScroll?: ((...args: any[]) => any) | undefined;
4666
4671
  onSelect?: ((...args: any[]) => any) | undefined;
4672
+ onScroll?: ((...args: any[]) => any) | undefined;
4667
4673
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
4668
4674
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
4669
4675
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -5218,6 +5224,7 @@ declare const _default: DefineComponent<{}, {
5218
5224
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
5219
5225
  cssVarBlockName: (name: string) => string;
5220
5226
  };
5227
+ t: Translator;
5221
5228
  };
5222
5229
  columns: ComputedRef< TableColumnCtx<any>[]>;
5223
5230
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -5259,7 +5266,7 @@ declare const _default: DefineComponent<{}, {
5259
5266
  context: Table<any>;
5260
5267
  computedSumText: ComputedRef<string>;
5261
5268
  computedEmptyText: ComputedRef<string>;
5262
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
5269
+ tableLayout: ComputedRef<"fixed" | "auto">;
5263
5270
  scrollbarViewStyle: {
5264
5271
  display: string;
5265
5272
  verticalAlign: string;
@@ -5279,9 +5286,9 @@ declare const _default: DefineComponent<{}, {
5279
5286
  setScrollLeft: (left?: number) => void;
5280
5287
  setScrollTop: (top?: number) => void;
5281
5288
  allowDragLastColumn: boolean;
5282
- }, 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, {
5289
+ }, 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, {
5283
5290
  data: any[];
5284
- style: CSSProperties;
5291
+ style: StyleValue;
5285
5292
  tableLayout: "fixed" | "auto";
5286
5293
  border: boolean;
5287
5294
  className: string;
@@ -5372,7 +5379,7 @@ declare const _default: DefineComponent<{}, {
5372
5379
  lazy: BooleanConstructor;
5373
5380
  load: PropType< TableProps<any>["load"]>;
5374
5381
  style: {
5375
- type: PropType<CSSProperties>;
5382
+ type: PropType< TableProps<any>["style"]>;
5376
5383
  default: () => {};
5377
5384
  };
5378
5385
  className: {
@@ -5399,8 +5406,8 @@ declare const _default: DefineComponent<{}, {
5399
5406
  preserveExpandedContent: BooleanConstructor;
5400
5407
  nativeScrollbar: BooleanConstructor;
5401
5408
  }>> & {
5402
- onScroll?: ((...args: any[]) => any) | undefined;
5403
5409
  onSelect?: ((...args: any[]) => any) | undefined;
5410
+ onScroll?: ((...args: any[]) => any) | undefined;
5404
5411
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
5405
5412
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
5406
5413
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -5955,6 +5962,7 @@ declare const _default: DefineComponent<{}, {
5955
5962
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
5956
5963
  cssVarBlockName: (name: string) => string;
5957
5964
  };
5965
+ t: Translator;
5958
5966
  };
5959
5967
  columns: ComputedRef< TableColumnCtx<any>[]>;
5960
5968
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -5996,7 +6004,7 @@ declare const _default: DefineComponent<{}, {
5996
6004
  context: Table<any>;
5997
6005
  computedSumText: ComputedRef<string>;
5998
6006
  computedEmptyText: ComputedRef<string>;
5999
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
6007
+ tableLayout: ComputedRef<"fixed" | "auto">;
6000
6008
  scrollbarViewStyle: {
6001
6009
  display: string;
6002
6010
  verticalAlign: string;
@@ -6018,7 +6026,7 @@ declare const _default: DefineComponent<{}, {
6018
6026
  allowDragLastColumn: boolean;
6019
6027
  }, {}, {}, {}, {
6020
6028
  data: any[];
6021
- style: CSSProperties;
6029
+ style: StyleValue;
6022
6030
  tableLayout: "fixed" | "auto";
6023
6031
  border: boolean;
6024
6032
  className: string;
@@ -6102,7 +6110,7 @@ declare const _default: DefineComponent<{}, {
6102
6110
  lazy: BooleanConstructor;
6103
6111
  load: PropType< TableProps<any>["load"]>;
6104
6112
  style: {
6105
- type: PropType<CSSProperties>;
6113
+ type: PropType< TableProps<any>["style"]>;
6106
6114
  default: () => {};
6107
6115
  };
6108
6116
  className: {
@@ -6129,8 +6137,8 @@ declare const _default: DefineComponent<{}, {
6129
6137
  preserveExpandedContent: BooleanConstructor;
6130
6138
  nativeScrollbar: BooleanConstructor;
6131
6139
  }>> & {
6132
- onScroll?: ((...args: any[]) => any) | undefined;
6133
6140
  onSelect?: ((...args: any[]) => any) | undefined;
6141
+ onScroll?: ((...args: any[]) => any) | undefined;
6134
6142
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
6135
6143
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
6136
6144
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -6685,6 +6693,7 @@ declare const _default: DefineComponent<{}, {
6685
6693
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
6686
6694
  cssVarBlockName: (name: string) => string;
6687
6695
  };
6696
+ t: Translator;
6688
6697
  };
6689
6698
  columns: ComputedRef< TableColumnCtx<any>[]>;
6690
6699
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -6726,7 +6735,7 @@ declare const _default: DefineComponent<{}, {
6726
6735
  context: Table<any>;
6727
6736
  computedSumText: ComputedRef<string>;
6728
6737
  computedEmptyText: ComputedRef<string>;
6729
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
6738
+ tableLayout: ComputedRef<"fixed" | "auto">;
6730
6739
  scrollbarViewStyle: {
6731
6740
  display: string;
6732
6741
  verticalAlign: string;
@@ -6746,9 +6755,9 @@ declare const _default: DefineComponent<{}, {
6746
6755
  setScrollLeft: (left?: number) => void;
6747
6756
  setScrollTop: (top?: number) => void;
6748
6757
  allowDragLastColumn: boolean;
6749
- }, 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, {
6758
+ }, 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, {
6750
6759
  data: any[];
6751
- style: CSSProperties;
6760
+ style: StyleValue;
6752
6761
  tableLayout: "fixed" | "auto";
6753
6762
  border: boolean;
6754
6763
  className: string;
@@ -6839,7 +6848,7 @@ declare const _default: DefineComponent<{}, {
6839
6848
  lazy: BooleanConstructor;
6840
6849
  load: PropType< TableProps<any>["load"]>;
6841
6850
  style: {
6842
- type: PropType<CSSProperties>;
6851
+ type: PropType< TableProps<any>["style"]>;
6843
6852
  default: () => {};
6844
6853
  };
6845
6854
  className: {
@@ -6866,8 +6875,8 @@ declare const _default: DefineComponent<{}, {
6866
6875
  preserveExpandedContent: BooleanConstructor;
6867
6876
  nativeScrollbar: BooleanConstructor;
6868
6877
  }>> & {
6869
- onScroll?: ((...args: any[]) => any) | undefined;
6870
6878
  onSelect?: ((...args: any[]) => any) | undefined;
6879
+ onScroll?: ((...args: any[]) => any) | undefined;
6871
6880
  "onExpand-change"?: ((...args: any[]) => any) | undefined;
6872
6881
  "onCurrent-change"?: ((...args: any[]) => any) | undefined;
6873
6882
  "onSelect-all"?: ((...args: any[]) => any) | undefined;
@@ -7422,6 +7431,7 @@ declare const _default: DefineComponent<{}, {
7422
7431
  cssVarBlock: (object: Record<string, string>) => Record<string, string>;
7423
7432
  cssVarBlockName: (name: string) => string;
7424
7433
  };
7434
+ t: Translator;
7425
7435
  };
7426
7436
  columns: ComputedRef< TableColumnCtx<any>[]>;
7427
7437
  handleHeaderFooterMousewheel: (_event: WheelEvent, data: any) => void;
@@ -7463,7 +7473,7 @@ declare const _default: DefineComponent<{}, {
7463
7473
  context: Table<any>;
7464
7474
  computedSumText: ComputedRef<string>;
7465
7475
  computedEmptyText: ComputedRef<string>;
7466
- tableLayout: ComputedRef<("fixed" | "auto") | undefined>;
7476
+ tableLayout: ComputedRef<"fixed" | "auto">;
7467
7477
  scrollbarViewStyle: {
7468
7478
  display: string;
7469
7479
  verticalAlign: string;
@@ -7485,7 +7495,7 @@ declare const _default: DefineComponent<{}, {
7485
7495
  allowDragLastColumn: boolean;
7486
7496
  }, {}, {}, {}, {
7487
7497
  data: any[];
7488
- style: CSSProperties;
7498
+ style: StyleValue;
7489
7499
  tableLayout: "fixed" | "auto";
7490
7500
  border: boolean;
7491
7501
  className: string;