@ironsource/shared-ui 2.1.11-rc.24 → 2.1.11-rc.26

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.
Files changed (39) hide show
  1. package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_f9a13e27_lang.css +1 -0
  2. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_039dd922_lang.css +1 -0
  3. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_2aee12ad_lang.css +1 -0
  4. package/DataGrid.vue_vue_type_style_index_0_scoped_e7591db4_lang.css +1 -0
  5. package/DropdownV4.vue_vue_type_style_index_0_scoped_6466948d_lang.css +1 -0
  6. package/OptionV4.vue_vue_type_style_index_0_scoped_2c2947b3_lang.css +1 -0
  7. package/components/dropdown/common/Dropdown.common.js +141 -135
  8. package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +3 -3
  9. package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +6 -6
  10. package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +10 -0
  11. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +3 -3
  12. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +36 -32
  13. package/components/dropdown/v4/ConditionalDropdown.vue.d.ts +10 -0
  14. package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
  15. package/components/dropdown/v4/ConditionalDropdown.vue2.js +100 -77
  16. package/components/dropdown/v4/DropdownV4.vue.d.ts +11 -0
  17. package/components/dropdown/v4/DropdownV4.vue.js +3 -3
  18. package/components/dropdown/v4/DropdownV4.vue2.js +27 -25
  19. package/components/dropdown/v4/OptionV4.vue.js +2 -2
  20. package/components/dropdown/v4/OptionV4.vue2.js +2 -2
  21. package/components/dropdown/v4/index.d.ts +81 -2
  22. package/components/table/common/Table.common.js +61 -61
  23. package/components/table/common/Table.types.d.ts +1 -1
  24. package/components/table/v3/Table.vue.d.ts +1 -1
  25. package/components/table/v3/index.d.ts +5 -5
  26. package/components/table/v4/DataGrid.vue.d.ts +6 -1
  27. package/components/table/v4/DataGrid.vue.js +4 -4
  28. package/components/table/v4/DataGrid.vue2.js +124 -117
  29. package/components/table/v4/index.d.ts +25 -6
  30. package/index.d.ts +222 -26
  31. package/index.js +1 -1
  32. package/mocks/words.d.ts +1 -1
  33. package/package.json +1 -1
  34. package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_76c74f58_lang.css +0 -1
  35. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_ba28c717_lang.css +0 -1
  36. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_3d7ef976_lang.css +0 -1
  37. package/DataGrid.vue_vue_type_style_index_0_scoped_0cd8af73_lang.css +0 -1
  38. package/DropdownV4.vue_vue_type_style_index_0_scoped_b1bde483_lang.css +0 -1
  39. package/OptionV4.vue_vue_type_style_index_0_scoped_df830bf5_lang.css +0 -1
package/index.d.ts CHANGED
@@ -5632,6 +5632,7 @@ declare const _default: {
5632
5632
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5633
5633
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5634
5634
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
5635
+ isSelectionSticky: boolean;
5635
5636
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5636
5637
  zIndexBase: number;
5637
5638
  rowCustomClassKey: string;
@@ -5733,6 +5734,10 @@ declare const _default: {
5733
5734
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
5734
5735
  default: (rowId: any, selectedItem: any) => boolean;
5735
5736
  };
5737
+ isSelectionSticky: {
5738
+ type: import("vue").PropType<boolean>;
5739
+ default: boolean;
5740
+ };
5736
5741
  emptyStateVariant: {
5737
5742
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5738
5743
  default: any;
@@ -5751,16 +5756,16 @@ declare const _default: {
5751
5756
  };
5752
5757
  }>> & {
5753
5758
  onSelectAll?: (value: boolean) => any;
5759
+ onLoadMore?: () => any;
5754
5760
  "onUpdate:search"?: (query: string) => any;
5755
5761
  onOnScroll?: (event: Event) => any;
5756
5762
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
5757
5763
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
5758
- onLoadMore?: () => any;
5759
5764
  onOnClearSearch?: () => any;
5760
5765
  "onUpdate:selection"?: (selection: unknown[]) => any;
5761
5766
  onSelectRow?: (value: boolean) => any;
5762
5767
  onClickRow?: (rowIndex: number) => any;
5763
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
5768
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "isSelectionSticky" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
5764
5769
  $attrs: {
5765
5770
  [x: string]: unknown;
5766
5771
  };
@@ -5772,7 +5777,7 @@ declare const _default: {
5772
5777
  }>;
5773
5778
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5774
5779
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
5775
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
5780
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
5776
5781
  $el: any;
5777
5782
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
5778
5783
  sort: {
@@ -5871,6 +5876,10 @@ declare const _default: {
5871
5876
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
5872
5877
  default: (rowId: any, selectedItem: any) => boolean;
5873
5878
  };
5879
+ isSelectionSticky: {
5880
+ type: import("vue").PropType<boolean>;
5881
+ default: boolean;
5882
+ };
5874
5883
  emptyStateVariant: {
5875
5884
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5876
5885
  default: any;
@@ -5889,11 +5898,11 @@ declare const _default: {
5889
5898
  };
5890
5899
  }>> & {
5891
5900
  onSelectAll?: (value: boolean) => any;
5901
+ onLoadMore?: () => any;
5892
5902
  "onUpdate:search"?: (query: string) => any;
5893
5903
  onOnScroll?: (event: Event) => any;
5894
5904
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
5895
5905
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
5896
- onLoadMore?: () => any;
5897
5906
  onOnClearSearch?: () => any;
5898
5907
  "onUpdate:selection"?: (selection: unknown[]) => any;
5899
5908
  onSelectRow?: (value: boolean) => any;
@@ -5934,6 +5943,7 @@ declare const _default: {
5934
5943
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5935
5944
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5936
5945
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
5946
+ isSelectionSticky: boolean;
5937
5947
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5938
5948
  zIndexBase: number;
5939
5949
  rowCustomClassKey: string;
@@ -6055,6 +6065,10 @@ declare const _default: {
6055
6065
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
6056
6066
  default: (rowId: any, selectedItem: any) => boolean;
6057
6067
  };
6068
+ isSelectionSticky: {
6069
+ type: import("vue").PropType<boolean>;
6070
+ default: boolean;
6071
+ };
6058
6072
  emptyStateVariant: {
6059
6073
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6060
6074
  default: any;
@@ -6073,11 +6087,11 @@ declare const _default: {
6073
6087
  };
6074
6088
  }>> & {
6075
6089
  onSelectAll?: (value: boolean) => any;
6090
+ onLoadMore?: () => any;
6076
6091
  "onUpdate:search"?: (query: string) => any;
6077
6092
  onOnScroll?: (event: Event) => any;
6078
6093
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6079
6094
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6080
- onLoadMore?: () => any;
6081
6095
  onOnClearSearch?: () => any;
6082
6096
  "onUpdate:selection"?: (selection: unknown[]) => any;
6083
6097
  onSelectRow?: (value: boolean) => any;
@@ -6185,6 +6199,10 @@ declare const _default: {
6185
6199
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
6186
6200
  default: (rowId: any, selectedItem: any) => boolean;
6187
6201
  };
6202
+ isSelectionSticky: {
6203
+ type: import("vue").PropType<boolean>;
6204
+ default: boolean;
6205
+ };
6188
6206
  emptyStateVariant: {
6189
6207
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6190
6208
  default: any;
@@ -6203,11 +6221,11 @@ declare const _default: {
6203
6221
  };
6204
6222
  }>> & {
6205
6223
  onSelectAll?: (value: boolean) => any;
6224
+ onLoadMore?: () => any;
6206
6225
  "onUpdate:search"?: (query: string) => any;
6207
6226
  onOnScroll?: (event: Event) => any;
6208
6227
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6209
6228
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6210
- onLoadMore?: () => any;
6211
6229
  onOnClearSearch?: () => any;
6212
6230
  "onUpdate:selection"?: (selection: unknown[]) => any;
6213
6231
  onSelectRow?: (value: boolean) => any;
@@ -6248,6 +6266,7 @@ declare const _default: {
6248
6266
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6249
6267
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6250
6268
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6269
+ isSelectionSticky: boolean;
6251
6270
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6252
6271
  zIndexBase: number;
6253
6272
  rowCustomClassKey: string;
@@ -6401,6 +6420,7 @@ declare const _default: {
6401
6420
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6402
6421
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6403
6422
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6423
+ isSelectionSticky: boolean;
6404
6424
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6405
6425
  zIndexBase: number;
6406
6426
  rowCustomClassKey: string;
@@ -6502,6 +6522,10 @@ declare const _default: {
6502
6522
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
6503
6523
  default: (rowId: any, selectedItem: any) => boolean;
6504
6524
  };
6525
+ isSelectionSticky: {
6526
+ type: import("vue").PropType<boolean>;
6527
+ default: boolean;
6528
+ };
6505
6529
  emptyStateVariant: {
6506
6530
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6507
6531
  default: any;
@@ -6520,16 +6544,16 @@ declare const _default: {
6520
6544
  };
6521
6545
  }>> & {
6522
6546
  onSelectAll?: (value: boolean) => any;
6547
+ onLoadMore?: () => any;
6523
6548
  "onUpdate:search"?: (query: string) => any;
6524
6549
  onOnScroll?: (event: Event) => any;
6525
6550
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6526
6551
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6527
- onLoadMore?: () => any;
6528
6552
  onOnClearSearch?: () => any;
6529
6553
  "onUpdate:selection"?: (selection: unknown[]) => any;
6530
6554
  onSelectRow?: (value: boolean) => any;
6531
6555
  onClickRow?: (rowIndex: number) => any;
6532
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
6556
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "selectedMatcher" | "isSelectionSticky" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
6533
6557
  $attrs: {
6534
6558
  [x: string]: unknown;
6535
6559
  };
@@ -6541,7 +6565,7 @@ declare const _default: {
6541
6565
  }>;
6542
6566
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6543
6567
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6544
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
6568
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "clickRow", rowIndex: number) => void);
6545
6569
  $el: any;
6546
6570
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6547
6571
  sort: {
@@ -6640,6 +6664,10 @@ declare const _default: {
6640
6664
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
6641
6665
  default: (rowId: any, selectedItem: any) => boolean;
6642
6666
  };
6667
+ isSelectionSticky: {
6668
+ type: import("vue").PropType<boolean>;
6669
+ default: boolean;
6670
+ };
6643
6671
  emptyStateVariant: {
6644
6672
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6645
6673
  default: any;
@@ -6658,11 +6686,11 @@ declare const _default: {
6658
6686
  };
6659
6687
  }>> & {
6660
6688
  onSelectAll?: (value: boolean) => any;
6689
+ onLoadMore?: () => any;
6661
6690
  "onUpdate:search"?: (query: string) => any;
6662
6691
  onOnScroll?: (event: Event) => any;
6663
6692
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6664
6693
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6665
- onLoadMore?: () => any;
6666
6694
  onOnClearSearch?: () => any;
6667
6695
  "onUpdate:selection"?: (selection: unknown[]) => any;
6668
6696
  onSelectRow?: (value: boolean) => any;
@@ -6703,6 +6731,7 @@ declare const _default: {
6703
6731
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6704
6732
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6705
6733
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6734
+ isSelectionSticky: boolean;
6706
6735
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6707
6736
  zIndexBase: number;
6708
6737
  rowCustomClassKey: string;
@@ -6824,6 +6853,10 @@ declare const _default: {
6824
6853
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
6825
6854
  default: (rowId: any, selectedItem: any) => boolean;
6826
6855
  };
6856
+ isSelectionSticky: {
6857
+ type: import("vue").PropType<boolean>;
6858
+ default: boolean;
6859
+ };
6827
6860
  emptyStateVariant: {
6828
6861
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6829
6862
  default: any;
@@ -6842,11 +6875,11 @@ declare const _default: {
6842
6875
  };
6843
6876
  }>> & {
6844
6877
  onSelectAll?: (value: boolean) => any;
6878
+ onLoadMore?: () => any;
6845
6879
  "onUpdate:search"?: (query: string) => any;
6846
6880
  onOnScroll?: (event: Event) => any;
6847
6881
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6848
6882
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6849
- onLoadMore?: () => any;
6850
6883
  onOnClearSearch?: () => any;
6851
6884
  "onUpdate:selection"?: (selection: unknown[]) => any;
6852
6885
  onSelectRow?: (value: boolean) => any;
@@ -6954,6 +6987,10 @@ declare const _default: {
6954
6987
  type: import("vue").PropType<(rowId: unknown, selected: unknown) => boolean>;
6955
6988
  default: (rowId: any, selectedItem: any) => boolean;
6956
6989
  };
6990
+ isSelectionSticky: {
6991
+ type: import("vue").PropType<boolean>;
6992
+ default: boolean;
6993
+ };
6957
6994
  emptyStateVariant: {
6958
6995
  type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6959
6996
  default: any;
@@ -6972,11 +7009,11 @@ declare const _default: {
6972
7009
  };
6973
7010
  }>> & {
6974
7011
  onSelectAll?: (value: boolean) => any;
7012
+ onLoadMore?: () => any;
6975
7013
  "onUpdate:search"?: (query: string) => any;
6976
7014
  onOnScroll?: (event: Event) => any;
6977
7015
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
6978
7016
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
6979
- onLoadMore?: () => any;
6980
7017
  onOnClearSearch?: () => any;
6981
7018
  "onUpdate:selection"?: (selection: unknown[]) => any;
6982
7019
  onSelectRow?: (value: boolean) => any;
@@ -7017,6 +7054,7 @@ declare const _default: {
7017
7054
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7018
7055
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7019
7056
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
7057
+ isSelectionSticky: boolean;
7020
7058
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7021
7059
  zIndexBase: number;
7022
7060
  rowCustomClassKey: string;
@@ -8319,10 +8357,10 @@ declare const _default: {
8319
8357
  default: any;
8320
8358
  };
8321
8359
  }>> & {
8360
+ onLoadMore?: () => any;
8322
8361
  onOnScroll?: (event: Event) => any;
8323
8362
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8324
8363
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8325
- onLoadMore?: () => any;
8326
8364
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
8327
8365
  $attrs: {
8328
8366
  [x: string]: unknown;
@@ -8335,7 +8373,7 @@ declare const _default: {
8335
8373
  }>;
8336
8374
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
8337
8375
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
8338
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void);
8376
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "loadMore") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void);
8339
8377
  $el: any;
8340
8378
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
8341
8379
  sort: {
@@ -8403,10 +8441,10 @@ declare const _default: {
8403
8441
  default: any;
8404
8442
  };
8405
8443
  }>> & {
8444
+ onLoadMore?: () => any;
8406
8445
  onOnScroll?: (event: Event) => any;
8407
8446
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8408
8447
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8409
- onLoadMore?: () => any;
8410
8448
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8411
8449
  "update:sort": (newSort: tableV3.Sort) => void;
8412
8450
  onScroll: (event: Event) => void;
@@ -8511,10 +8549,10 @@ declare const _default: {
8511
8549
  default: any;
8512
8550
  };
8513
8551
  }>> & {
8552
+ onLoadMore?: () => any;
8514
8553
  onOnScroll?: (event: Event) => any;
8515
8554
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8516
8555
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8517
- onLoadMore?: () => any;
8518
8556
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
8519
8557
  __isFragment?: never;
8520
8558
  __isTeleport?: never;
@@ -8585,10 +8623,10 @@ declare const _default: {
8585
8623
  default: any;
8586
8624
  };
8587
8625
  }>> & {
8626
+ onLoadMore?: () => any;
8588
8627
  onOnScroll?: (event: Event) => any;
8589
8628
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8590
8629
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8591
- onLoadMore?: () => any;
8592
8630
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8593
8631
  "update:sort": (newSort: tableV3.Sort) => void;
8594
8632
  onScroll: (event: Event) => void;
@@ -8712,10 +8750,10 @@ declare const _default: {
8712
8750
  default: any;
8713
8751
  };
8714
8752
  }>> & {
8753
+ onLoadMore?: () => any;
8715
8754
  onOnScroll?: (event: Event) => any;
8716
8755
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8717
8756
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8718
- onLoadMore?: () => any;
8719
8757
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "isLoading" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition">;
8720
8758
  $attrs: {
8721
8759
  [x: string]: unknown;
@@ -8728,7 +8766,7 @@ declare const _default: {
8728
8766
  }>;
8729
8767
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
8730
8768
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
8731
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "loadMore") => void);
8769
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "loadMore") => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void);
8732
8770
  $el: any;
8733
8771
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
8734
8772
  sort: {
@@ -8796,10 +8834,10 @@ declare const _default: {
8796
8834
  default: any;
8797
8835
  };
8798
8836
  }>> & {
8837
+ onLoadMore?: () => any;
8799
8838
  onOnScroll?: (event: Event) => any;
8800
8839
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8801
8840
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8802
- onLoadMore?: () => any;
8803
8841
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8804
8842
  "update:sort": (newSort: tableV3.Sort) => void;
8805
8843
  onScroll: (event: Event) => void;
@@ -8904,10 +8942,10 @@ declare const _default: {
8904
8942
  default: any;
8905
8943
  };
8906
8944
  }>> & {
8945
+ onLoadMore?: () => any;
8907
8946
  onOnScroll?: (event: Event) => any;
8908
8947
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8909
8948
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8910
- onLoadMore?: () => any;
8911
8949
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
8912
8950
  __isFragment?: never;
8913
8951
  __isTeleport?: never;
@@ -8978,10 +9016,10 @@ declare const _default: {
8978
9016
  default: any;
8979
9017
  };
8980
9018
  }>> & {
9019
+ onLoadMore?: () => any;
8981
9020
  onOnScroll?: (event: Event) => any;
8982
9021
  "onUpdate:sort"?: (newSort: tableV3.Sort) => any;
8983
9022
  onSaveRow?: (args_0: import("./components/table/common/Table.types").SaveRowEvent) => any;
8984
- onLoadMore?: () => any;
8985
9023
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8986
9024
  "update:sort": (newSort: tableV3.Sort) => void;
8987
9025
  onScroll: (event: Event) => void;
@@ -15950,6 +15988,7 @@ declare const _default: {
15950
15988
  valueToCopy: string;
15951
15989
  placeholder: string;
15952
15990
  multi: boolean;
15991
+ infiniteLoading: boolean;
15953
15992
  showSelectAll: boolean;
15954
15993
  defaultOpen: boolean;
15955
15994
  keepOpen: boolean;
@@ -16064,6 +16103,13 @@ declare const _default: {
16064
16103
  type: import("vue").PropType<boolean>;
16065
16104
  default: boolean;
16066
16105
  };
16106
+ loadMoreLoading: {
16107
+ type: import("vue").PropType<boolean>;
16108
+ };
16109
+ infiniteLoading: {
16110
+ type: import("vue").PropType<boolean>;
16111
+ default: boolean;
16112
+ };
16067
16113
  showSelectAll: {
16068
16114
  type: import("vue").PropType<boolean>;
16069
16115
  default: boolean;
@@ -16230,11 +16276,13 @@ declare const _default: {
16230
16276
  onApply?: (value: unknown) => any;
16231
16277
  onSelectAll?: () => any;
16232
16278
  "onUpdate:selected"?: (value: unknown) => any;
16279
+ onAllSelectedChanged?: (value: boolean) => any;
16233
16280
  "onUpdate:isOpen"?: (value: unknown) => any;
16234
16281
  onOnsearch?: (value: string) => any;
16282
+ onLoadMore?: () => any;
16235
16283
  onOpened?: () => any;
16236
16284
  onClosed?: () => any;
16237
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
16285
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
16238
16286
  $attrs: {
16239
16287
  [x: string]: unknown;
16240
16288
  };
@@ -16246,7 +16294,7 @@ declare const _default: {
16246
16294
  }>;
16247
16295
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
16248
16296
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
16249
- $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
16297
+ $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "allSelectedChanged", value: boolean) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "loadMore") => void) & ((event: "opened") => void) & ((event: "closed") => void);
16250
16298
  $el: any;
16251
16299
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
16252
16300
  theme: {
@@ -16323,6 +16371,13 @@ declare const _default: {
16323
16371
  type: import("vue").PropType<boolean>;
16324
16372
  default: boolean;
16325
16373
  };
16374
+ loadMoreLoading: {
16375
+ type: import("vue").PropType<boolean>;
16376
+ };
16377
+ infiniteLoading: {
16378
+ type: import("vue").PropType<boolean>;
16379
+ default: boolean;
16380
+ };
16326
16381
  showSelectAll: {
16327
16382
  type: import("vue").PropType<boolean>;
16328
16383
  default: boolean;
@@ -16489,8 +16544,10 @@ declare const _default: {
16489
16544
  onApply?: (value: unknown) => any;
16490
16545
  onSelectAll?: () => any;
16491
16546
  "onUpdate:selected"?: (value: unknown) => any;
16547
+ onAllSelectedChanged?: (value: boolean) => any;
16492
16548
  "onUpdate:isOpen"?: (value: unknown) => any;
16493
16549
  onOnsearch?: (value: string) => any;
16550
+ onLoadMore?: () => any;
16494
16551
  onOpened?: () => any;
16495
16552
  onClosed?: () => any;
16496
16553
  }, {
@@ -16506,6 +16563,8 @@ declare const _default: {
16506
16563
  clear: () => void;
16507
16564
  copyToClipboard: () => void;
16508
16565
  onsearch: (value: string) => void;
16566
+ loadMore: () => void;
16567
+ allSelectedChanged: (value: boolean) => void;
16509
16568
  }, string, {
16510
16569
  theme: string;
16511
16570
  testId: string;
@@ -16523,6 +16582,7 @@ declare const _default: {
16523
16582
  valueToCopy: string;
16524
16583
  placeholder: string;
16525
16584
  multi: boolean;
16585
+ infiniteLoading: boolean;
16526
16586
  showSelectAll: boolean;
16527
16587
  defaultOpen: boolean;
16528
16588
  keepOpen: boolean;
@@ -16657,6 +16717,13 @@ declare const _default: {
16657
16717
  type: import("vue").PropType<boolean>;
16658
16718
  default: boolean;
16659
16719
  };
16720
+ loadMoreLoading: {
16721
+ type: import("vue").PropType<boolean>;
16722
+ };
16723
+ infiniteLoading: {
16724
+ type: import("vue").PropType<boolean>;
16725
+ default: boolean;
16726
+ };
16660
16727
  showSelectAll: {
16661
16728
  type: import("vue").PropType<boolean>;
16662
16729
  default: boolean;
@@ -16823,8 +16890,10 @@ declare const _default: {
16823
16890
  onApply?: (value: unknown) => any;
16824
16891
  onSelectAll?: () => any;
16825
16892
  "onUpdate:selected"?: (value: unknown) => any;
16893
+ onAllSelectedChanged?: (value: boolean) => any;
16826
16894
  "onUpdate:isOpen"?: (value: unknown) => any;
16827
16895
  onOnsearch?: (value: string) => any;
16896
+ onLoadMore?: () => any;
16828
16897
  onOpened?: () => any;
16829
16898
  onClosed?: () => any;
16830
16899
  } & import("vue").ShallowUnwrapRef<{
@@ -16909,6 +16978,13 @@ declare const _default: {
16909
16978
  type: import("vue").PropType<boolean>;
16910
16979
  default: boolean;
16911
16980
  };
16981
+ loadMoreLoading: {
16982
+ type: import("vue").PropType<boolean>;
16983
+ };
16984
+ infiniteLoading: {
16985
+ type: import("vue").PropType<boolean>;
16986
+ default: boolean;
16987
+ };
16912
16988
  showSelectAll: {
16913
16989
  type: import("vue").PropType<boolean>;
16914
16990
  default: boolean;
@@ -17075,8 +17151,10 @@ declare const _default: {
17075
17151
  onApply?: (value: unknown) => any;
17076
17152
  onSelectAll?: () => any;
17077
17153
  "onUpdate:selected"?: (value: unknown) => any;
17154
+ onAllSelectedChanged?: (value: boolean) => any;
17078
17155
  "onUpdate:isOpen"?: (value: unknown) => any;
17079
17156
  onOnsearch?: (value: string) => any;
17157
+ onLoadMore?: () => any;
17080
17158
  onOpened?: () => any;
17081
17159
  onClosed?: () => any;
17082
17160
  }, {
@@ -17092,6 +17170,8 @@ declare const _default: {
17092
17170
  clear: () => void;
17093
17171
  copyToClipboard: () => void;
17094
17172
  onsearch: (value: string) => void;
17173
+ loadMore: () => void;
17174
+ allSelectedChanged: (value: boolean) => void;
17095
17175
  }, string, {
17096
17176
  theme: string;
17097
17177
  testId: string;
@@ -17109,6 +17189,7 @@ declare const _default: {
17109
17189
  valueToCopy: string;
17110
17190
  placeholder: string;
17111
17191
  multi: boolean;
17192
+ infiniteLoading: boolean;
17112
17193
  showSelectAll: boolean;
17113
17194
  defaultOpen: boolean;
17114
17195
  keepOpen: boolean;
@@ -17854,6 +17935,14 @@ declare const _default: {
17854
17935
  required: true;
17855
17936
  default: string;
17856
17937
  };
17938
+ cancelAllSelectedDisplay: {
17939
+ type: import("vue").PropType<boolean>;
17940
+ default: boolean;
17941
+ };
17942
+ displayValueInQuotes: {
17943
+ type: import("vue").PropType<boolean>;
17944
+ default: boolean;
17945
+ };
17857
17946
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17858
17947
  clear: () => void;
17859
17948
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -17904,6 +17993,14 @@ declare const _default: {
17904
17993
  required: true;
17905
17994
  default: string;
17906
17995
  };
17996
+ cancelAllSelectedDisplay: {
17997
+ type: import("vue").PropType<boolean>;
17998
+ default: boolean;
17999
+ };
18000
+ displayValueInQuotes: {
18001
+ type: import("vue").PropType<boolean>;
18002
+ default: boolean;
18003
+ };
17907
18004
  }>> & {
17908
18005
  onClear?: () => any;
17909
18006
  }, {
@@ -17914,6 +18011,8 @@ declare const _default: {
17914
18011
  feedbackVariant: string;
17915
18012
  allSelected: boolean;
17916
18013
  displayedValue: any;
18014
+ cancelAllSelectedDisplay: boolean;
18015
+ displayValueInQuotes: boolean;
17917
18016
  }>;
17918
18017
  ButtonDropdownTrigger: {
17919
18018
  new (...args: any[]): {
@@ -20329,6 +20428,14 @@ declare const _default: {
20329
20428
  required: true;
20330
20429
  default: string;
20331
20430
  };
20431
+ cancelAllSelectedDisplay: {
20432
+ type: import("vue").PropType<boolean>;
20433
+ default: boolean;
20434
+ };
20435
+ displayValueInQuotes: {
20436
+ type: import("vue").PropType<boolean>;
20437
+ default: boolean;
20438
+ };
20332
20439
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20333
20440
  clear: () => void;
20334
20441
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -20379,6 +20486,14 @@ declare const _default: {
20379
20486
  required: true;
20380
20487
  default: string;
20381
20488
  };
20489
+ cancelAllSelectedDisplay: {
20490
+ type: import("vue").PropType<boolean>;
20491
+ default: boolean;
20492
+ };
20493
+ displayValueInQuotes: {
20494
+ type: import("vue").PropType<boolean>;
20495
+ default: boolean;
20496
+ };
20382
20497
  }>> & {
20383
20498
  onClear?: () => any;
20384
20499
  }, {
@@ -20389,6 +20504,8 @@ declare const _default: {
20389
20504
  feedbackVariant: string;
20390
20505
  allSelected: boolean;
20391
20506
  displayedValue: any;
20507
+ cancelAllSelectedDisplay: boolean;
20508
+ displayValueInQuotes: boolean;
20392
20509
  }> | ({
20393
20510
  new (...args: any[]): {
20394
20511
  $: import("vue").ComponentInternalInstance;
@@ -20410,6 +20527,7 @@ declare const _default: {
20410
20527
  valueToCopy: string;
20411
20528
  placeholder: string;
20412
20529
  multi: boolean;
20530
+ infiniteLoading: boolean;
20413
20531
  showSelectAll: boolean;
20414
20532
  defaultOpen: boolean;
20415
20533
  keepOpen: boolean;
@@ -20524,6 +20642,13 @@ declare const _default: {
20524
20642
  type: import("vue").PropType<boolean>;
20525
20643
  default: boolean;
20526
20644
  };
20645
+ loadMoreLoading: {
20646
+ type: import("vue").PropType<boolean>;
20647
+ };
20648
+ infiniteLoading: {
20649
+ type: import("vue").PropType<boolean>;
20650
+ default: boolean;
20651
+ };
20527
20652
  showSelectAll: {
20528
20653
  type: import("vue").PropType<boolean>;
20529
20654
  default: boolean;
@@ -20690,11 +20815,13 @@ declare const _default: {
20690
20815
  onApply?: (value: unknown) => any;
20691
20816
  onSelectAll?: () => any;
20692
20817
  "onUpdate:selected"?: (value: unknown) => any;
20818
+ onAllSelectedChanged?: (value: boolean) => any;
20693
20819
  "onUpdate:isOpen"?: (value: unknown) => any;
20694
20820
  onOnsearch?: (value: string) => any;
20821
+ onLoadMore?: () => any;
20695
20822
  onOpened?: () => any;
20696
20823
  onClosed?: () => any;
20697
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
20824
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
20698
20825
  $attrs: {
20699
20826
  [x: string]: unknown;
20700
20827
  };
@@ -20706,7 +20833,7 @@ declare const _default: {
20706
20833
  }>;
20707
20834
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
20708
20835
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
20709
- $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
20836
+ $emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "allSelectedChanged", value: boolean) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "loadMore") => void) & ((event: "opened") => void) & ((event: "closed") => void);
20710
20837
  $el: any;
20711
20838
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
20712
20839
  theme: {
@@ -20783,6 +20910,13 @@ declare const _default: {
20783
20910
  type: import("vue").PropType<boolean>;
20784
20911
  default: boolean;
20785
20912
  };
20913
+ loadMoreLoading: {
20914
+ type: import("vue").PropType<boolean>;
20915
+ };
20916
+ infiniteLoading: {
20917
+ type: import("vue").PropType<boolean>;
20918
+ default: boolean;
20919
+ };
20786
20920
  showSelectAll: {
20787
20921
  type: import("vue").PropType<boolean>;
20788
20922
  default: boolean;
@@ -20949,8 +21083,10 @@ declare const _default: {
20949
21083
  onApply?: (value: unknown) => any;
20950
21084
  onSelectAll?: () => any;
20951
21085
  "onUpdate:selected"?: (value: unknown) => any;
21086
+ onAllSelectedChanged?: (value: boolean) => any;
20952
21087
  "onUpdate:isOpen"?: (value: unknown) => any;
20953
21088
  onOnsearch?: (value: string) => any;
21089
+ onLoadMore?: () => any;
20954
21090
  onOpened?: () => any;
20955
21091
  onClosed?: () => any;
20956
21092
  }, {
@@ -20966,6 +21102,8 @@ declare const _default: {
20966
21102
  clear: () => void;
20967
21103
  copyToClipboard: () => void;
20968
21104
  onsearch: (value: string) => void;
21105
+ loadMore: () => void;
21106
+ allSelectedChanged: (value: boolean) => void;
20969
21107
  }, string, {
20970
21108
  theme: string;
20971
21109
  testId: string;
@@ -20983,6 +21121,7 @@ declare const _default: {
20983
21121
  valueToCopy: string;
20984
21122
  placeholder: string;
20985
21123
  multi: boolean;
21124
+ infiniteLoading: boolean;
20986
21125
  showSelectAll: boolean;
20987
21126
  defaultOpen: boolean;
20988
21127
  keepOpen: boolean;
@@ -21117,6 +21256,13 @@ declare const _default: {
21117
21256
  type: import("vue").PropType<boolean>;
21118
21257
  default: boolean;
21119
21258
  };
21259
+ loadMoreLoading: {
21260
+ type: import("vue").PropType<boolean>;
21261
+ };
21262
+ infiniteLoading: {
21263
+ type: import("vue").PropType<boolean>;
21264
+ default: boolean;
21265
+ };
21120
21266
  showSelectAll: {
21121
21267
  type: import("vue").PropType<boolean>;
21122
21268
  default: boolean;
@@ -21283,8 +21429,10 @@ declare const _default: {
21283
21429
  onApply?: (value: unknown) => any;
21284
21430
  onSelectAll?: () => any;
21285
21431
  "onUpdate:selected"?: (value: unknown) => any;
21432
+ onAllSelectedChanged?: (value: boolean) => any;
21286
21433
  "onUpdate:isOpen"?: (value: unknown) => any;
21287
21434
  onOnsearch?: (value: string) => any;
21435
+ onLoadMore?: () => any;
21288
21436
  onOpened?: () => any;
21289
21437
  onClosed?: () => any;
21290
21438
  } & import("vue").ShallowUnwrapRef<{
@@ -21369,6 +21517,13 @@ declare const _default: {
21369
21517
  type: import("vue").PropType<boolean>;
21370
21518
  default: boolean;
21371
21519
  };
21520
+ loadMoreLoading: {
21521
+ type: import("vue").PropType<boolean>;
21522
+ };
21523
+ infiniteLoading: {
21524
+ type: import("vue").PropType<boolean>;
21525
+ default: boolean;
21526
+ };
21372
21527
  showSelectAll: {
21373
21528
  type: import("vue").PropType<boolean>;
21374
21529
  default: boolean;
@@ -21535,8 +21690,10 @@ declare const _default: {
21535
21690
  onApply?: (value: unknown) => any;
21536
21691
  onSelectAll?: () => any;
21537
21692
  "onUpdate:selected"?: (value: unknown) => any;
21693
+ onAllSelectedChanged?: (value: boolean) => any;
21538
21694
  "onUpdate:isOpen"?: (value: unknown) => any;
21539
21695
  onOnsearch?: (value: string) => any;
21696
+ onLoadMore?: () => any;
21540
21697
  onOpened?: () => any;
21541
21698
  onClosed?: () => any;
21542
21699
  }, {
@@ -21552,6 +21709,8 @@ declare const _default: {
21552
21709
  clear: () => void;
21553
21710
  copyToClipboard: () => void;
21554
21711
  onsearch: (value: string) => void;
21712
+ loadMore: () => void;
21713
+ allSelectedChanged: (value: boolean) => void;
21555
21714
  }, string, {
21556
21715
  theme: string;
21557
21716
  testId: string;
@@ -21569,6 +21728,7 @@ declare const _default: {
21569
21728
  valueToCopy: string;
21570
21729
  placeholder: string;
21571
21730
  multi: boolean;
21731
+ infiniteLoading: boolean;
21572
21732
  showSelectAll: boolean;
21573
21733
  defaultOpen: boolean;
21574
21734
  keepOpen: boolean;
@@ -22204,6 +22364,10 @@ declare const _default: {
22204
22364
  type: import("vue").PropType<boolean>;
22205
22365
  default: boolean;
22206
22366
  };
22367
+ infiniteLoading: {
22368
+ type: import("vue").PropType<boolean>;
22369
+ default: boolean;
22370
+ };
22207
22371
  optionNameKey: {
22208
22372
  type: import("vue").PropType<string>;
22209
22373
  required: true;
@@ -22246,6 +22410,10 @@ declare const _default: {
22246
22410
  type: import("vue").PropType<string>;
22247
22411
  default: string;
22248
22412
  };
22413
+ loadMoreFn: {
22414
+ type: import("vue").PropType<() => Promise<void>>;
22415
+ default: any;
22416
+ };
22249
22417
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22250
22418
  "update:selectedCondition": (value: {
22251
22419
  label: string;
@@ -22268,6 +22436,10 @@ declare const _default: {
22268
22436
  type: import("vue").PropType<boolean>;
22269
22437
  default: boolean;
22270
22438
  };
22439
+ infiniteLoading: {
22440
+ type: import("vue").PropType<boolean>;
22441
+ default: boolean;
22442
+ };
22271
22443
  optionNameKey: {
22272
22444
  type: import("vue").PropType<string>;
22273
22445
  required: true;
@@ -22310,6 +22482,10 @@ declare const _default: {
22310
22482
  type: import("vue").PropType<string>;
22311
22483
  default: string;
22312
22484
  };
22485
+ loadMoreFn: {
22486
+ type: import("vue").PropType<() => Promise<void>>;
22487
+ default: any;
22488
+ };
22313
22489
  }>> & {
22314
22490
  onClear?: () => any;
22315
22491
  "onUpdate:selectedCondition"?: (value: {
@@ -22322,10 +22498,12 @@ declare const _default: {
22322
22498
  label: string;
22323
22499
  testId: string;
22324
22500
  isOpen: boolean;
22501
+ infiniteLoading: boolean;
22325
22502
  optionNameKey: string;
22326
22503
  comparingKey: string;
22327
22504
  minCharsToStart: number;
22328
22505
  searchQuery: string;
22506
+ loadMoreFn: () => Promise<void>;
22329
22507
  }>)[];
22330
22508
  Option: {
22331
22509
  new (...args: any[]): {
@@ -23290,6 +23468,10 @@ declare const _default: {
23290
23468
  type: import("vue").PropType<boolean>;
23291
23469
  default: boolean;
23292
23470
  };
23471
+ infiniteLoading: {
23472
+ type: import("vue").PropType<boolean>;
23473
+ default: boolean;
23474
+ };
23293
23475
  optionNameKey: {
23294
23476
  type: import("vue").PropType<string>;
23295
23477
  required: true;
@@ -23332,6 +23514,10 @@ declare const _default: {
23332
23514
  type: import("vue").PropType<string>;
23333
23515
  default: string;
23334
23516
  };
23517
+ loadMoreFn: {
23518
+ type: import("vue").PropType<() => Promise<void>>;
23519
+ default: any;
23520
+ };
23335
23521
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23336
23522
  "update:selectedCondition": (value: {
23337
23523
  label: string;
@@ -23354,6 +23540,10 @@ declare const _default: {
23354
23540
  type: import("vue").PropType<boolean>;
23355
23541
  default: boolean;
23356
23542
  };
23543
+ infiniteLoading: {
23544
+ type: import("vue").PropType<boolean>;
23545
+ default: boolean;
23546
+ };
23357
23547
  optionNameKey: {
23358
23548
  type: import("vue").PropType<string>;
23359
23549
  required: true;
@@ -23396,6 +23586,10 @@ declare const _default: {
23396
23586
  type: import("vue").PropType<string>;
23397
23587
  default: string;
23398
23588
  };
23589
+ loadMoreFn: {
23590
+ type: import("vue").PropType<() => Promise<void>>;
23591
+ default: any;
23592
+ };
23399
23593
  }>> & {
23400
23594
  onClear?: () => any;
23401
23595
  "onUpdate:selectedCondition"?: (value: {
@@ -23408,10 +23602,12 @@ declare const _default: {
23408
23602
  label: string;
23409
23603
  testId: string;
23410
23604
  isOpen: boolean;
23605
+ infiniteLoading: boolean;
23411
23606
  optionNameKey: string;
23412
23607
  comparingKey: string;
23413
23608
  minCharsToStart: number;
23414
23609
  searchQuery: string;
23610
+ loadMoreFn: () => Promise<void>;
23415
23611
  }>;
23416
23612
  Label: {
23417
23613
  new (...args: any[]): {