@deot/vc-components 1.0.9 → 1.0.11

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.
package/dist/index.d.ts CHANGED
@@ -658,6 +658,10 @@ changeOnSelect: {
658
658
  type: BooleanConstructor;
659
659
  default: boolean;
660
660
  };
661
+ nullValue: {
662
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
663
+ default: string;
664
+ };
661
665
  disabled: {
662
666
  type: BooleanConstructor;
663
667
  default: boolean;
@@ -720,6 +724,10 @@ changeOnSelect: {
720
724
  type: BooleanConstructor;
721
725
  default: boolean;
722
726
  };
727
+ nullValue: {
728
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
729
+ default: string;
730
+ };
723
731
  disabled: {
724
732
  type: BooleanConstructor;
725
733
  default: boolean;
@@ -757,6 +765,7 @@ separator: string;
757
765
  splitPanels: boolean;
758
766
  steps: unknown[];
759
767
  changeOnSelect: boolean;
768
+ nullValue: string | number | Record<string, any>;
760
769
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
761
770
 
762
771
  declare const Debounce: DefineComponent<ExtractPropTypes< {
@@ -1859,11 +1868,11 @@ allowDispatch: boolean;
1859
1868
  bytes: boolean;
1860
1869
  controllable: boolean;
1861
1870
  required: boolean;
1871
+ nullValue: string | number | Record<string, any>;
1862
1872
  min: number;
1863
1873
  max: number;
1864
1874
  step: number | boolean;
1865
1875
  precision: number;
1866
- nullValue: string | number | Record<string, any>;
1867
1876
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
1868
1877
 
1869
1878
  export declare const InputSearch: DefineComponent<ExtractPropTypes< {
@@ -2685,6 +2694,10 @@ changeOnSelect: {
2685
2694
  type: BooleanConstructor;
2686
2695
  default: boolean;
2687
2696
  };
2697
+ nullValue: {
2698
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
2699
+ default: string;
2700
+ };
2688
2701
  disabled: {
2689
2702
  type: BooleanConstructor;
2690
2703
  default: boolean;
@@ -2747,6 +2760,10 @@ changeOnSelect: {
2747
2760
  type: BooleanConstructor;
2748
2761
  default: boolean;
2749
2762
  };
2763
+ nullValue: {
2764
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
2765
+ default: string;
2766
+ };
2750
2767
  disabled: {
2751
2768
  type: BooleanConstructor;
2752
2769
  default: boolean;
@@ -2784,6 +2801,7 @@ separator: string;
2784
2801
  splitPanels: boolean;
2785
2802
  steps: unknown[];
2786
2803
  changeOnSelect: boolean;
2804
+ nullValue: string | number | Record<string, any>;
2787
2805
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2788
2806
 
2789
2807
  export declare const MDivider: DefineComponent<ExtractPropTypes< {
@@ -4093,11 +4111,11 @@ allowDispatch: boolean;
4093
4111
  bytes: boolean;
4094
4112
  controllable: boolean;
4095
4113
  required: boolean;
4114
+ nullValue: string | number | Record<string, any>;
4096
4115
  min: number;
4097
4116
  max: number;
4098
4117
  step: number | boolean;
4099
4118
  precision: number;
4100
- nullValue: string | number | Record<string, any>;
4101
4119
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
4102
4120
 
4103
4121
  export declare const MInputSearch: DefineComponent<ExtractPropTypes< {
@@ -6267,7 +6285,7 @@ renderFinish: Render;
6267
6285
  renderLoading: Render;
6268
6286
  renderPlaceholder: Render;
6269
6287
  renderRefresh: Render;
6270
- }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", PublicProps, Readonly<ExtractPropTypes< {
6288
+ }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("scroll" | "row-resize")[], "scroll" | "row-resize", PublicProps, Readonly<ExtractPropTypes< {
6271
6289
  data: {
6272
6290
  type: ArrayConstructor;
6273
6291
  default: () => never[];
@@ -6316,6 +6334,7 @@ renderPlaceholder: Render;
6316
6334
  renderRefresh: Render;
6317
6335
  }>> & Readonly<{
6318
6336
  onScroll?: ((...args: any[]) => any) | undefined;
6337
+ "onRow-resize"?: ((...args: any[]) => any) | undefined;
6319
6338
  }>, {
6320
6339
  data: unknown[];
6321
6340
  disabled: boolean;
@@ -6655,8 +6674,8 @@ arrow: boolean;
6655
6674
  autoWidth: boolean;
6656
6675
  trigger: string;
6657
6676
  separator: string;
6658
- max: number;
6659
6677
  nullValue: string | number | Record<string, any>;
6678
+ max: number;
6660
6679
  searchPlaceholder: string;
6661
6680
  searchable: boolean;
6662
6681
  numerable: boolean;
@@ -6815,17 +6834,260 @@ uncheckedText: string;
6815
6834
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
6816
6835
 
6817
6836
  export declare const MTable: DefineComponent<ExtractPropTypes< {
6818
- tag: {
6837
+ data: {
6838
+ type: ArrayConstructor;
6839
+ default: () => never[];
6840
+ };
6841
+ width: (StringConstructor | NumberConstructor)[];
6842
+ height: (StringConstructor | NumberConstructor)[];
6843
+ maxHeight: (StringConstructor | NumberConstructor)[];
6844
+ fit: {
6845
+ type: BooleanConstructor;
6846
+ default: boolean;
6847
+ };
6848
+ stripe: BooleanConstructor;
6849
+ border: BooleanConstructor;
6850
+ rows: {
6851
+ type: NumberConstructor;
6852
+ default: number;
6853
+ };
6854
+ rowKey: (StringConstructor | FunctionConstructor)[];
6855
+ showHeader: {
6856
+ type: BooleanConstructor;
6857
+ default: boolean;
6858
+ };
6859
+ showSummary: BooleanConstructor;
6860
+ sumText: StringConstructor;
6861
+ getSummary: FunctionConstructor;
6862
+ rowClass: (StringConstructor | FunctionConstructor)[];
6863
+ rowStyle: (ObjectConstructor | FunctionConstructor)[];
6864
+ cellClass: (StringConstructor | FunctionConstructor)[];
6865
+ cellStyle: (ObjectConstructor | FunctionConstructor)[];
6866
+ headerRowClass: (StringConstructor | FunctionConstructor)[];
6867
+ headerRowStyle: (ObjectConstructor | FunctionConstructor)[];
6868
+ headerCellClass: (StringConstructor | FunctionConstructor)[];
6869
+ headerCellStyle: (ObjectConstructor | FunctionConstructor)[];
6870
+ highlight: BooleanConstructor;
6871
+ currentRowValue: (StringConstructor | NumberConstructor)[];
6872
+ emptyText: (StringConstructor | FunctionConstructor)[];
6873
+ expandRowValue: ArrayConstructor;
6874
+ defaultExpandAll: BooleanConstructor;
6875
+ indeterminate: {
6876
+ type: BooleanConstructor;
6877
+ default: boolean;
6878
+ };
6879
+ lazy: BooleanConstructor;
6880
+ indent: {
6881
+ type: NumberConstructor;
6882
+ default: number;
6883
+ };
6884
+ treeMap: {
6885
+ type: ObjectConstructor;
6886
+ default: () => {
6887
+ hasChildren: string;
6888
+ children: string;
6889
+ };
6890
+ };
6891
+ expandSelectable: {
6892
+ type: BooleanConstructor;
6893
+ default: boolean;
6894
+ };
6895
+ loadExpand: FunctionConstructor;
6896
+ getSpan: FunctionConstructor;
6897
+ placeholder: {
6898
+ type: (StringConstructor | FunctionConstructor)[];
6899
+ default: string;
6900
+ };
6901
+ defaultSort: {
6902
+ type: ObjectConstructor;
6903
+ default: () => {};
6904
+ };
6905
+ }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "select-all" | "expand-change" | "current-change" | "selection-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ")[], "select" | "select-all" | "expand-change" | "current-change" | "selection-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ", PublicProps, Readonly<ExtractPropTypes< {
6906
+ data: {
6907
+ type: ArrayConstructor;
6908
+ default: () => never[];
6909
+ };
6910
+ width: (StringConstructor | NumberConstructor)[];
6911
+ height: (StringConstructor | NumberConstructor)[];
6912
+ maxHeight: (StringConstructor | NumberConstructor)[];
6913
+ fit: {
6914
+ type: BooleanConstructor;
6915
+ default: boolean;
6916
+ };
6917
+ stripe: BooleanConstructor;
6918
+ border: BooleanConstructor;
6919
+ rows: {
6920
+ type: NumberConstructor;
6921
+ default: number;
6922
+ };
6923
+ rowKey: (StringConstructor | FunctionConstructor)[];
6924
+ showHeader: {
6925
+ type: BooleanConstructor;
6926
+ default: boolean;
6927
+ };
6928
+ showSummary: BooleanConstructor;
6929
+ sumText: StringConstructor;
6930
+ getSummary: FunctionConstructor;
6931
+ rowClass: (StringConstructor | FunctionConstructor)[];
6932
+ rowStyle: (ObjectConstructor | FunctionConstructor)[];
6933
+ cellClass: (StringConstructor | FunctionConstructor)[];
6934
+ cellStyle: (ObjectConstructor | FunctionConstructor)[];
6935
+ headerRowClass: (StringConstructor | FunctionConstructor)[];
6936
+ headerRowStyle: (ObjectConstructor | FunctionConstructor)[];
6937
+ headerCellClass: (StringConstructor | FunctionConstructor)[];
6938
+ headerCellStyle: (ObjectConstructor | FunctionConstructor)[];
6939
+ highlight: BooleanConstructor;
6940
+ currentRowValue: (StringConstructor | NumberConstructor)[];
6941
+ emptyText: (StringConstructor | FunctionConstructor)[];
6942
+ expandRowValue: ArrayConstructor;
6943
+ defaultExpandAll: BooleanConstructor;
6944
+ indeterminate: {
6945
+ type: BooleanConstructor;
6946
+ default: boolean;
6947
+ };
6948
+ lazy: BooleanConstructor;
6949
+ indent: {
6950
+ type: NumberConstructor;
6951
+ default: number;
6952
+ };
6953
+ treeMap: {
6954
+ type: ObjectConstructor;
6955
+ default: () => {
6956
+ hasChildren: string;
6957
+ children: string;
6958
+ };
6959
+ };
6960
+ expandSelectable: {
6961
+ type: BooleanConstructor;
6962
+ default: boolean;
6963
+ };
6964
+ loadExpand: FunctionConstructor;
6965
+ getSpan: FunctionConstructor;
6966
+ placeholder: {
6967
+ type: (StringConstructor | FunctionConstructor)[];
6968
+ default: string;
6969
+ };
6970
+ defaultSort: {
6971
+ type: ObjectConstructor;
6972
+ default: () => {};
6973
+ };
6974
+ }>> & Readonly<{
6975
+ onSelect?: ((...args: any[]) => any) | undefined;
6976
+ "onSelect-all"?: ((...args: any[]) => any) | undefined;
6977
+ "onExpand-change"?: ((...args: any[]) => any) | undefined;
6978
+ "onCurrent-change"?: ((...args: any[]) => any) | undefined;
6979
+ "onSelection-change"?: ((...args: any[]) => any) | undefined;
6980
+ "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
6981
+ "onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
6982
+ "onHeader-click"?: ((...args: any[]) => any) | undefined;
6983
+ "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
6984
+ "onSort-change"?: ((...args: any[]) => any) | undefined;
6985
+ "onCell-click"?: ((...args: any[]) => any) | undefined;
6986
+ "onCell-dblclick"?: ((...args: any[]) => any) | undefined;
6987
+ "onRow-click"?: ((...args: any[]) => any) | undefined;
6988
+ "onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
6989
+ "onRow-dblclick"?: ((...args: any[]) => any) | undefined;
6990
+ "onHeader-dragend "?: ((...args: any[]) => any) | undefined;
6991
+ }>, {
6992
+ data: unknown[];
6993
+ border: boolean;
6994
+ indeterminate: boolean;
6995
+ placeholder: string | Function;
6996
+ fit: boolean;
6997
+ indent: number;
6998
+ lazy: boolean;
6999
+ defaultExpandAll: boolean;
7000
+ showHeader: boolean;
7001
+ rows: number;
7002
+ defaultSort: Record<string, any>;
7003
+ stripe: boolean;
7004
+ showSummary: boolean;
7005
+ highlight: boolean;
7006
+ treeMap: Record<string, any>;
7007
+ expandSelectable: boolean;
7008
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
7009
+
7010
+ export declare const MTableColumn: DefineComponent<ExtractPropTypes< {
7011
+ type: {
6819
7012
  type: StringConstructor;
6820
7013
  default: string;
6821
7014
  };
6822
- }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
6823
- tag: {
7015
+ label: StringConstructor;
7016
+ customClass: StringConstructor;
7017
+ labelClass: StringConstructor;
7018
+ prop: StringConstructor;
7019
+ width: (StringConstructor | NumberConstructor)[];
7020
+ minWidth: (StringConstructor | NumberConstructor)[];
7021
+ renderHeader: FunctionConstructor;
7022
+ resizable: {
7023
+ type: BooleanConstructor;
7024
+ default: boolean;
7025
+ };
7026
+ columnKey: StringConstructor;
7027
+ align: StringConstructor;
7028
+ headerAlign: StringConstructor;
7029
+ showPopover: BooleanConstructor;
7030
+ fixed: (StringConstructor | BooleanConstructor)[];
7031
+ formatter: FunctionConstructor;
7032
+ selectable: FunctionConstructor;
7033
+ reserveSelection: BooleanConstructor;
7034
+ index: (NumberConstructor | FunctionConstructor)[];
7035
+ sortable: BooleanConstructor;
7036
+ filters: ArrayConstructor;
7037
+ filterMultiple: {
7038
+ type: BooleanConstructor;
7039
+ default: boolean;
7040
+ };
7041
+ filterIcon: StringConstructor;
7042
+ filteredValue: ArrayConstructor;
7043
+ filterPopupClass: StringConstructor;
7044
+ filter: FunctionConstructor;
7045
+ tooltip: (StringConstructor | FunctionConstructor)[];
7046
+ }>, () => VNode<RendererNode, RendererElement, {
7047
+ [key: string]: any;
7048
+ }>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
7049
+ type: {
6824
7050
  type: StringConstructor;
6825
7051
  default: string;
6826
7052
  };
7053
+ label: StringConstructor;
7054
+ customClass: StringConstructor;
7055
+ labelClass: StringConstructor;
7056
+ prop: StringConstructor;
7057
+ width: (StringConstructor | NumberConstructor)[];
7058
+ minWidth: (StringConstructor | NumberConstructor)[];
7059
+ renderHeader: FunctionConstructor;
7060
+ resizable: {
7061
+ type: BooleanConstructor;
7062
+ default: boolean;
7063
+ };
7064
+ columnKey: StringConstructor;
7065
+ align: StringConstructor;
7066
+ headerAlign: StringConstructor;
7067
+ showPopover: BooleanConstructor;
7068
+ fixed: (StringConstructor | BooleanConstructor)[];
7069
+ formatter: FunctionConstructor;
7070
+ selectable: FunctionConstructor;
7071
+ reserveSelection: BooleanConstructor;
7072
+ index: (NumberConstructor | FunctionConstructor)[];
7073
+ sortable: BooleanConstructor;
7074
+ filters: ArrayConstructor;
7075
+ filterMultiple: {
7076
+ type: BooleanConstructor;
7077
+ default: boolean;
7078
+ };
7079
+ filterIcon: StringConstructor;
7080
+ filteredValue: ArrayConstructor;
7081
+ filterPopupClass: StringConstructor;
7082
+ filter: FunctionConstructor;
7083
+ tooltip: (StringConstructor | FunctionConstructor)[];
6827
7084
  }>> & Readonly<{}>, {
6828
- tag: string;
7085
+ type: string;
7086
+ reserveSelection: boolean;
7087
+ showPopover: boolean;
7088
+ sortable: boolean;
7089
+ resizable: boolean;
7090
+ filterMultiple: boolean;
6829
7091
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
6830
7092
 
6831
7093
  export declare const MTabs: DefineComponent<ExtractPropTypes< {
@@ -7217,6 +7479,10 @@ changeOnSelect: {
7217
7479
  type: BooleanConstructor;
7218
7480
  default: boolean;
7219
7481
  };
7482
+ nullValue: {
7483
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
7484
+ default: string;
7485
+ };
7220
7486
  disabled: {
7221
7487
  type: BooleanConstructor;
7222
7488
  default: boolean;
@@ -7279,6 +7545,10 @@ changeOnSelect: {
7279
7545
  type: BooleanConstructor;
7280
7546
  default: boolean;
7281
7547
  };
7548
+ nullValue: {
7549
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
7550
+ default: string;
7551
+ };
7282
7552
  disabled: {
7283
7553
  type: BooleanConstructor;
7284
7554
  default: boolean;
@@ -7316,6 +7586,7 @@ separator: string;
7316
7586
  splitPanels: boolean;
7317
7587
  steps: unknown[];
7318
7588
  changeOnSelect: boolean;
7589
+ nullValue: string | number | Record<string, any>;
7319
7590
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
7320
7591
 
7321
7592
  export declare const MToast: {
@@ -9458,7 +9729,7 @@ renderFinish: Render;
9458
9729
  renderLoading: Render;
9459
9730
  renderPlaceholder: Render;
9460
9731
  renderRefresh: Render;
9461
- }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", PublicProps, Readonly<ExtractPropTypes< {
9732
+ }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("scroll" | "row-resize")[], "scroll" | "row-resize", PublicProps, Readonly<ExtractPropTypes< {
9462
9733
  data: {
9463
9734
  type: ArrayConstructor;
9464
9735
  default: () => never[];
@@ -9507,6 +9778,7 @@ renderPlaceholder: Render;
9507
9778
  renderRefresh: Render;
9508
9779
  }>> & Readonly<{
9509
9780
  onScroll?: ((...args: any[]) => any) | undefined;
9781
+ "onRow-resize"?: ((...args: any[]) => any) | undefined;
9510
9782
  }>, {
9511
9783
  data: unknown[];
9512
9784
  disabled: boolean;
@@ -9751,6 +10023,11 @@ type: BooleanConstructor;
9751
10023
  default: boolean;
9752
10024
  };
9753
10025
  barTo: StringConstructor;
10026
+ } & {
10027
+ stopPropagation: {
10028
+ type: BooleanConstructor;
10029
+ default: boolean;
10030
+ };
9754
10031
  }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", PublicProps, Readonly<ExtractPropTypes< {
9755
10032
  always: {
9756
10033
  type: BooleanConstructor;
@@ -9813,6 +10090,11 @@ type: BooleanConstructor;
9813
10090
  default: boolean;
9814
10091
  };
9815
10092
  barTo: StringConstructor;
10093
+ } & {
10094
+ stopPropagation: {
10095
+ type: BooleanConstructor;
10096
+ default: boolean;
10097
+ };
9816
10098
  }>> & Readonly<{
9817
10099
  onScroll?: ((...args: any[]) => any) | undefined;
9818
10100
  }>, {
@@ -9830,6 +10112,7 @@ wrapperClass: StyleValue;
9830
10112
  contentStyle: StyleValue;
9831
10113
  contentClass: StyleValue;
9832
10114
  showBar: boolean;
10115
+ stopPropagation: boolean;
9833
10116
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
9834
10117
 
9835
10118
  export declare const Select: DefineComponent<ExtractPropTypes< {
@@ -9999,8 +10282,8 @@ arrow: boolean;
9999
10282
  autoWidth: boolean;
10000
10283
  trigger: string;
10001
10284
  separator: string;
10002
- max: number;
10003
10285
  nullValue: string | number | Record<string, any>;
10286
+ max: number;
10004
10287
  searchPlaceholder: string;
10005
10288
  searchable: boolean;
10006
10289
  numerable: boolean;
@@ -10159,17 +10442,260 @@ uncheckedText: string;
10159
10442
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
10160
10443
 
10161
10444
  export declare const Table: DefineComponent<ExtractPropTypes< {
10162
- tag: {
10445
+ data: {
10446
+ type: ArrayConstructor;
10447
+ default: () => never[];
10448
+ };
10449
+ width: (StringConstructor | NumberConstructor)[];
10450
+ height: (StringConstructor | NumberConstructor)[];
10451
+ maxHeight: (StringConstructor | NumberConstructor)[];
10452
+ fit: {
10453
+ type: BooleanConstructor;
10454
+ default: boolean;
10455
+ };
10456
+ stripe: BooleanConstructor;
10457
+ border: BooleanConstructor;
10458
+ rows: {
10459
+ type: NumberConstructor;
10460
+ default: number;
10461
+ };
10462
+ rowKey: (StringConstructor | FunctionConstructor)[];
10463
+ showHeader: {
10464
+ type: BooleanConstructor;
10465
+ default: boolean;
10466
+ };
10467
+ showSummary: BooleanConstructor;
10468
+ sumText: StringConstructor;
10469
+ getSummary: FunctionConstructor;
10470
+ rowClass: (StringConstructor | FunctionConstructor)[];
10471
+ rowStyle: (ObjectConstructor | FunctionConstructor)[];
10472
+ cellClass: (StringConstructor | FunctionConstructor)[];
10473
+ cellStyle: (ObjectConstructor | FunctionConstructor)[];
10474
+ headerRowClass: (StringConstructor | FunctionConstructor)[];
10475
+ headerRowStyle: (ObjectConstructor | FunctionConstructor)[];
10476
+ headerCellClass: (StringConstructor | FunctionConstructor)[];
10477
+ headerCellStyle: (ObjectConstructor | FunctionConstructor)[];
10478
+ highlight: BooleanConstructor;
10479
+ currentRowValue: (StringConstructor | NumberConstructor)[];
10480
+ emptyText: (StringConstructor | FunctionConstructor)[];
10481
+ expandRowValue: ArrayConstructor;
10482
+ defaultExpandAll: BooleanConstructor;
10483
+ indeterminate: {
10484
+ type: BooleanConstructor;
10485
+ default: boolean;
10486
+ };
10487
+ lazy: BooleanConstructor;
10488
+ indent: {
10489
+ type: NumberConstructor;
10490
+ default: number;
10491
+ };
10492
+ treeMap: {
10493
+ type: ObjectConstructor;
10494
+ default: () => {
10495
+ hasChildren: string;
10496
+ children: string;
10497
+ };
10498
+ };
10499
+ expandSelectable: {
10500
+ type: BooleanConstructor;
10501
+ default: boolean;
10502
+ };
10503
+ loadExpand: FunctionConstructor;
10504
+ getSpan: FunctionConstructor;
10505
+ placeholder: {
10506
+ type: (StringConstructor | FunctionConstructor)[];
10507
+ default: string;
10508
+ };
10509
+ defaultSort: {
10510
+ type: ObjectConstructor;
10511
+ default: () => {};
10512
+ };
10513
+ }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "select-all" | "expand-change" | "current-change" | "selection-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ")[], "select" | "select-all" | "expand-change" | "current-change" | "selection-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ", PublicProps, Readonly<ExtractPropTypes< {
10514
+ data: {
10515
+ type: ArrayConstructor;
10516
+ default: () => never[];
10517
+ };
10518
+ width: (StringConstructor | NumberConstructor)[];
10519
+ height: (StringConstructor | NumberConstructor)[];
10520
+ maxHeight: (StringConstructor | NumberConstructor)[];
10521
+ fit: {
10522
+ type: BooleanConstructor;
10523
+ default: boolean;
10524
+ };
10525
+ stripe: BooleanConstructor;
10526
+ border: BooleanConstructor;
10527
+ rows: {
10528
+ type: NumberConstructor;
10529
+ default: number;
10530
+ };
10531
+ rowKey: (StringConstructor | FunctionConstructor)[];
10532
+ showHeader: {
10533
+ type: BooleanConstructor;
10534
+ default: boolean;
10535
+ };
10536
+ showSummary: BooleanConstructor;
10537
+ sumText: StringConstructor;
10538
+ getSummary: FunctionConstructor;
10539
+ rowClass: (StringConstructor | FunctionConstructor)[];
10540
+ rowStyle: (ObjectConstructor | FunctionConstructor)[];
10541
+ cellClass: (StringConstructor | FunctionConstructor)[];
10542
+ cellStyle: (ObjectConstructor | FunctionConstructor)[];
10543
+ headerRowClass: (StringConstructor | FunctionConstructor)[];
10544
+ headerRowStyle: (ObjectConstructor | FunctionConstructor)[];
10545
+ headerCellClass: (StringConstructor | FunctionConstructor)[];
10546
+ headerCellStyle: (ObjectConstructor | FunctionConstructor)[];
10547
+ highlight: BooleanConstructor;
10548
+ currentRowValue: (StringConstructor | NumberConstructor)[];
10549
+ emptyText: (StringConstructor | FunctionConstructor)[];
10550
+ expandRowValue: ArrayConstructor;
10551
+ defaultExpandAll: BooleanConstructor;
10552
+ indeterminate: {
10553
+ type: BooleanConstructor;
10554
+ default: boolean;
10555
+ };
10556
+ lazy: BooleanConstructor;
10557
+ indent: {
10558
+ type: NumberConstructor;
10559
+ default: number;
10560
+ };
10561
+ treeMap: {
10562
+ type: ObjectConstructor;
10563
+ default: () => {
10564
+ hasChildren: string;
10565
+ children: string;
10566
+ };
10567
+ };
10568
+ expandSelectable: {
10569
+ type: BooleanConstructor;
10570
+ default: boolean;
10571
+ };
10572
+ loadExpand: FunctionConstructor;
10573
+ getSpan: FunctionConstructor;
10574
+ placeholder: {
10575
+ type: (StringConstructor | FunctionConstructor)[];
10576
+ default: string;
10577
+ };
10578
+ defaultSort: {
10579
+ type: ObjectConstructor;
10580
+ default: () => {};
10581
+ };
10582
+ }>> & Readonly<{
10583
+ onSelect?: ((...args: any[]) => any) | undefined;
10584
+ "onSelect-all"?: ((...args: any[]) => any) | undefined;
10585
+ "onExpand-change"?: ((...args: any[]) => any) | undefined;
10586
+ "onCurrent-change"?: ((...args: any[]) => any) | undefined;
10587
+ "onSelection-change"?: ((...args: any[]) => any) | undefined;
10588
+ "onCell-mouse-enter"?: ((...args: any[]) => any) | undefined;
10589
+ "onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
10590
+ "onHeader-click"?: ((...args: any[]) => any) | undefined;
10591
+ "onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
10592
+ "onSort-change"?: ((...args: any[]) => any) | undefined;
10593
+ "onCell-click"?: ((...args: any[]) => any) | undefined;
10594
+ "onCell-dblclick"?: ((...args: any[]) => any) | undefined;
10595
+ "onRow-click"?: ((...args: any[]) => any) | undefined;
10596
+ "onRow-contextmenu"?: ((...args: any[]) => any) | undefined;
10597
+ "onRow-dblclick"?: ((...args: any[]) => any) | undefined;
10598
+ "onHeader-dragend "?: ((...args: any[]) => any) | undefined;
10599
+ }>, {
10600
+ data: unknown[];
10601
+ border: boolean;
10602
+ indeterminate: boolean;
10603
+ placeholder: string | Function;
10604
+ fit: boolean;
10605
+ indent: number;
10606
+ lazy: boolean;
10607
+ defaultExpandAll: boolean;
10608
+ showHeader: boolean;
10609
+ rows: number;
10610
+ defaultSort: Record<string, any>;
10611
+ stripe: boolean;
10612
+ showSummary: boolean;
10613
+ highlight: boolean;
10614
+ treeMap: Record<string, any>;
10615
+ expandSelectable: boolean;
10616
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
10617
+
10618
+ export declare const TableColumn: DefineComponent<ExtractPropTypes< {
10619
+ type: {
10163
10620
  type: StringConstructor;
10164
10621
  default: string;
10165
10622
  };
10166
- }>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
10167
- tag: {
10623
+ label: StringConstructor;
10624
+ customClass: StringConstructor;
10625
+ labelClass: StringConstructor;
10626
+ prop: StringConstructor;
10627
+ width: (StringConstructor | NumberConstructor)[];
10628
+ minWidth: (StringConstructor | NumberConstructor)[];
10629
+ renderHeader: FunctionConstructor;
10630
+ resizable: {
10631
+ type: BooleanConstructor;
10632
+ default: boolean;
10633
+ };
10634
+ columnKey: StringConstructor;
10635
+ align: StringConstructor;
10636
+ headerAlign: StringConstructor;
10637
+ showPopover: BooleanConstructor;
10638
+ fixed: (StringConstructor | BooleanConstructor)[];
10639
+ formatter: FunctionConstructor;
10640
+ selectable: FunctionConstructor;
10641
+ reserveSelection: BooleanConstructor;
10642
+ index: (NumberConstructor | FunctionConstructor)[];
10643
+ sortable: BooleanConstructor;
10644
+ filters: ArrayConstructor;
10645
+ filterMultiple: {
10646
+ type: BooleanConstructor;
10647
+ default: boolean;
10648
+ };
10649
+ filterIcon: StringConstructor;
10650
+ filteredValue: ArrayConstructor;
10651
+ filterPopupClass: StringConstructor;
10652
+ filter: FunctionConstructor;
10653
+ tooltip: (StringConstructor | FunctionConstructor)[];
10654
+ }>, () => VNode<RendererNode, RendererElement, {
10655
+ [key: string]: any;
10656
+ }>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
10657
+ type: {
10168
10658
  type: StringConstructor;
10169
10659
  default: string;
10170
10660
  };
10661
+ label: StringConstructor;
10662
+ customClass: StringConstructor;
10663
+ labelClass: StringConstructor;
10664
+ prop: StringConstructor;
10665
+ width: (StringConstructor | NumberConstructor)[];
10666
+ minWidth: (StringConstructor | NumberConstructor)[];
10667
+ renderHeader: FunctionConstructor;
10668
+ resizable: {
10669
+ type: BooleanConstructor;
10670
+ default: boolean;
10671
+ };
10672
+ columnKey: StringConstructor;
10673
+ align: StringConstructor;
10674
+ headerAlign: StringConstructor;
10675
+ showPopover: BooleanConstructor;
10676
+ fixed: (StringConstructor | BooleanConstructor)[];
10677
+ formatter: FunctionConstructor;
10678
+ selectable: FunctionConstructor;
10679
+ reserveSelection: BooleanConstructor;
10680
+ index: (NumberConstructor | FunctionConstructor)[];
10681
+ sortable: BooleanConstructor;
10682
+ filters: ArrayConstructor;
10683
+ filterMultiple: {
10684
+ type: BooleanConstructor;
10685
+ default: boolean;
10686
+ };
10687
+ filterIcon: StringConstructor;
10688
+ filteredValue: ArrayConstructor;
10689
+ filterPopupClass: StringConstructor;
10690
+ filter: FunctionConstructor;
10691
+ tooltip: (StringConstructor | FunctionConstructor)[];
10171
10692
  }>> & Readonly<{}>, {
10172
- tag: string;
10693
+ type: string;
10694
+ reserveSelection: boolean;
10695
+ showPopover: boolean;
10696
+ sortable: boolean;
10697
+ resizable: boolean;
10698
+ filterMultiple: boolean;
10173
10699
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
10174
10700
 
10175
10701
  export declare const Tabs: DefineComponent<ExtractPropTypes< {
@@ -10768,6 +11294,10 @@ changeOnSelect: {
10768
11294
  type: BooleanConstructor;
10769
11295
  default: boolean;
10770
11296
  };
11297
+ nullValue: {
11298
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
11299
+ default: string;
11300
+ };
10771
11301
  disabled: {
10772
11302
  type: BooleanConstructor;
10773
11303
  default: boolean;
@@ -10830,6 +11360,10 @@ changeOnSelect: {
10830
11360
  type: BooleanConstructor;
10831
11361
  default: boolean;
10832
11362
  };
11363
+ nullValue: {
11364
+ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
11365
+ default: string;
11366
+ };
10833
11367
  disabled: {
10834
11368
  type: BooleanConstructor;
10835
11369
  default: boolean;
@@ -10867,6 +11401,7 @@ separator: string;
10867
11401
  splitPanels: boolean;
10868
11402
  steps: unknown[];
10869
11403
  changeOnSelect: boolean;
11404
+ nullValue: string | number | Record<string, any>;
10870
11405
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
10871
11406
 
10872
11407
  export declare const Toast: {