@ironsource/shared-ui 2.1.10-rc.2 → 2.1.10-rc.4

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 (40) hide show
  1. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_49bd7193_lang.css +1 -0
  2. package/DataGrid.vue_vue_type_style_index_0_scoped_92101a6c_lang.css +1 -0
  3. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_9fa84b26_lang.css +1 -0
  4. package/DropdownV4.vue_vue_type_style_index_0_scoped_899679d0_lang.css +1 -0
  5. package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
  6. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_020a9896_lang.css +1 -0
  7. package/OptionV4.vue_vue_type_style_index_0_scoped_f61be399_lang.css +1 -0
  8. package/components/dropdown/common/Dropdown.common.d.ts +1 -0
  9. package/components/dropdown/common/Dropdown.common.js +165 -158
  10. package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +5 -0
  11. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
  12. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +23 -22
  13. package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +11 -0
  14. package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
  15. package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +59 -45
  16. package/components/dropdown/v4/DropdownV4.vue.d.ts +12 -0
  17. package/components/dropdown/v4/DropdownV4.vue.js +3 -3
  18. package/components/dropdown/v4/DropdownV4.vue2.js +173 -167
  19. package/components/dropdown/v4/OptionV4.vue.d.ts +6 -0
  20. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  21. package/components/dropdown/v4/OptionV4.vue2.js +83 -70
  22. package/components/dropdown/v4/index.d.ts +111 -3
  23. package/components/table/v4/DataGrid.vue.d.ts +8 -3
  24. package/components/table/v4/DataGrid.vue.js +2 -2
  25. package/components/table/v4/DataGrid.vue2.js +58 -57
  26. package/components/table/v4/MultipleDataGrid.vue.d.ts +18 -3
  27. package/components/table/v4/MultipleDataGrid.vue.js +2 -2
  28. package/components/table/v4/MultipleDataGrid.vue2.js +78 -72
  29. package/components/table/v4/index.d.ts +84 -8
  30. package/consts/configs.d.ts +1 -0
  31. package/consts/configs.js +4 -0
  32. package/index.d.ts +390 -22
  33. package/index.js +1 -1
  34. package/package.json +1 -1
  35. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_a8fdae89_lang.css +0 -1
  36. package/DataGrid.vue_vue_type_style_index_0_scoped_9cab3826_lang.css +0 -1
  37. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_fd7a490e_lang.css +0 -1
  38. package/DropdownV4.vue_vue_type_style_index_0_scoped_62a620ee_lang.css +0 -1
  39. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_60d4a465_lang.css +0 -1
  40. package/OptionV4.vue_vue_type_style_index_0_scoped_77509f61_lang.css +0 -1
package/index.d.ts CHANGED
@@ -5499,7 +5499,8 @@ declare const _default: {
5499
5499
  infiniteScrollThreshold: number;
5500
5500
  rowHeight: number | ((index: number) => number);
5501
5501
  defaultScrollPosition: number;
5502
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5502
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5503
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5503
5504
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
5504
5505
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5505
5506
  zIndexBase: number;
@@ -5591,6 +5592,10 @@ declare const _default: {
5591
5592
  default: any;
5592
5593
  };
5593
5594
  getRowId: {
5595
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
5596
+ default: (row: any, index: any) => any;
5597
+ };
5598
+ getRowKey: {
5594
5599
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
5595
5600
  default: (row: any, index: any) => any;
5596
5601
  };
@@ -5625,7 +5630,7 @@ declare const _default: {
5625
5630
  "onUpdate:selection"?: (selection: unknown[]) => any;
5626
5631
  onSelectRow?: (value: boolean) => any;
5627
5632
  onClickRow?: (rowIndex: number) => any;
5628
- } & 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" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
5633
+ } & 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">;
5629
5634
  $attrs: {
5630
5635
  [x: string]: unknown;
5631
5636
  };
@@ -5725,6 +5730,10 @@ declare const _default: {
5725
5730
  default: any;
5726
5731
  };
5727
5732
  getRowId: {
5733
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
5734
+ default: (row: any, index: any) => any;
5735
+ };
5736
+ getRowKey: {
5728
5737
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
5729
5738
  default: (row: any, index: any) => any;
5730
5739
  };
@@ -5792,7 +5801,8 @@ declare const _default: {
5792
5801
  infiniteScrollThreshold: number;
5793
5802
  rowHeight: number | ((index: number) => number);
5794
5803
  defaultScrollPosition: number;
5795
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5804
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5805
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5796
5806
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
5797
5807
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5798
5808
  zIndexBase: number;
@@ -5904,6 +5914,10 @@ declare const _default: {
5904
5914
  default: any;
5905
5915
  };
5906
5916
  getRowId: {
5917
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
5918
+ default: (row: any, index: any) => any;
5919
+ };
5920
+ getRowKey: {
5907
5921
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
5908
5922
  default: (row: any, index: any) => any;
5909
5923
  };
@@ -6030,6 +6044,10 @@ declare const _default: {
6030
6044
  default: any;
6031
6045
  };
6032
6046
  getRowId: {
6047
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
6048
+ default: (row: any, index: any) => any;
6049
+ };
6050
+ getRowKey: {
6033
6051
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
6034
6052
  default: (row: any, index: any) => any;
6035
6053
  };
@@ -6097,7 +6115,8 @@ declare const _default: {
6097
6115
  infiniteScrollThreshold: number;
6098
6116
  rowHeight: number | ((index: number) => number);
6099
6117
  defaultScrollPosition: number;
6100
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6118
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6119
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6101
6120
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6102
6121
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6103
6122
  zIndexBase: number;
@@ -6249,7 +6268,8 @@ declare const _default: {
6249
6268
  infiniteScrollThreshold: number;
6250
6269
  rowHeight: number | ((index: number) => number);
6251
6270
  defaultScrollPosition: number;
6252
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6271
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6272
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6253
6273
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6254
6274
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6255
6275
  zIndexBase: number;
@@ -6341,6 +6361,10 @@ declare const _default: {
6341
6361
  default: any;
6342
6362
  };
6343
6363
  getRowId: {
6364
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
6365
+ default: (row: any, index: any) => any;
6366
+ };
6367
+ getRowKey: {
6344
6368
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
6345
6369
  default: (row: any, index: any) => any;
6346
6370
  };
@@ -6375,7 +6399,7 @@ declare const _default: {
6375
6399
  "onUpdate:selection"?: (selection: unknown[]) => any;
6376
6400
  onSelectRow?: (value: boolean) => any;
6377
6401
  onClickRow?: (rowIndex: number) => any;
6378
- } & 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" | "selectedMatcher" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey">;
6402
+ } & 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">;
6379
6403
  $attrs: {
6380
6404
  [x: string]: unknown;
6381
6405
  };
@@ -6475,6 +6499,10 @@ declare const _default: {
6475
6499
  default: any;
6476
6500
  };
6477
6501
  getRowId: {
6502
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
6503
+ default: (row: any, index: any) => any;
6504
+ };
6505
+ getRowKey: {
6478
6506
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
6479
6507
  default: (row: any, index: any) => any;
6480
6508
  };
@@ -6542,7 +6570,8 @@ declare const _default: {
6542
6570
  infiniteScrollThreshold: number;
6543
6571
  rowHeight: number | ((index: number) => number);
6544
6572
  defaultScrollPosition: number;
6545
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6573
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6574
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6546
6575
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6547
6576
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6548
6577
  zIndexBase: number;
@@ -6654,6 +6683,10 @@ declare const _default: {
6654
6683
  default: any;
6655
6684
  };
6656
6685
  getRowId: {
6686
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
6687
+ default: (row: any, index: any) => any;
6688
+ };
6689
+ getRowKey: {
6657
6690
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
6658
6691
  default: (row: any, index: any) => any;
6659
6692
  };
@@ -6780,6 +6813,10 @@ declare const _default: {
6780
6813
  default: any;
6781
6814
  };
6782
6815
  getRowId: {
6816
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
6817
+ default: (row: any, index: any) => any;
6818
+ };
6819
+ getRowKey: {
6783
6820
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
6784
6821
  default: (row: any, index: any) => any;
6785
6822
  };
@@ -6847,7 +6884,8 @@ declare const _default: {
6847
6884
  infiniteScrollThreshold: number;
6848
6885
  rowHeight: number | ((index: number) => number);
6849
6886
  defaultScrollPosition: number;
6850
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6887
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6888
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6851
6889
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6852
6890
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6853
6891
  zIndexBase: number;
@@ -6987,9 +7025,12 @@ declare const _default: {
6987
7025
  emptyStateTitle: string;
6988
7026
  isSticky: boolean;
6989
7027
  emptyStateSubtitle: string;
6990
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7028
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7029
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6991
7030
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6992
7031
  zIndexBase: number;
7032
+ rowCustomClassKey: string;
7033
+ rowDataKey: string;
6993
7034
  totalCount: number;
6994
7035
  displayingText: string;
6995
7036
  outOfText: string;
@@ -7038,6 +7079,10 @@ declare const _default: {
7038
7079
  default: string;
7039
7080
  };
7040
7081
  getRowId: {
7082
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7083
+ default: (row: any, index: any) => any;
7084
+ };
7085
+ getRowKey: {
7041
7086
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7042
7087
  default: (row: any, index: any) => any;
7043
7088
  };
@@ -7049,6 +7094,14 @@ declare const _default: {
7049
7094
  type: import("vue").PropType<number>;
7050
7095
  default: number;
7051
7096
  };
7097
+ rowCustomClassKey: {
7098
+ type: import("vue").PropType<string>;
7099
+ default: string;
7100
+ };
7101
+ rowDataKey: {
7102
+ type: import("vue").PropType<string>;
7103
+ default: string;
7104
+ };
7052
7105
  totalCount: {
7053
7106
  type: import("vue").PropType<number>;
7054
7107
  default: number;
@@ -7083,7 +7136,7 @@ declare const _default: {
7083
7136
  }) => any;
7084
7137
  onOnClearSearch?: () => any;
7085
7138
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7086
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
7139
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "getRowKey" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
7087
7140
  $attrs: {
7088
7141
  [x: string]: unknown;
7089
7142
  };
@@ -7141,6 +7194,10 @@ declare const _default: {
7141
7194
  default: string;
7142
7195
  };
7143
7196
  getRowId: {
7197
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7198
+ default: (row: any, index: any) => any;
7199
+ };
7200
+ getRowKey: {
7144
7201
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7145
7202
  default: (row: any, index: any) => any;
7146
7203
  };
@@ -7152,6 +7209,14 @@ declare const _default: {
7152
7209
  type: import("vue").PropType<number>;
7153
7210
  default: number;
7154
7211
  };
7212
+ rowCustomClassKey: {
7213
+ type: import("vue").PropType<string>;
7214
+ default: string;
7215
+ };
7216
+ rowDataKey: {
7217
+ type: import("vue").PropType<string>;
7218
+ default: string;
7219
+ };
7155
7220
  totalCount: {
7156
7221
  type: import("vue").PropType<number>;
7157
7222
  default: number;
@@ -7205,9 +7270,12 @@ declare const _default: {
7205
7270
  emptyStateTitle: string;
7206
7271
  isSticky: boolean;
7207
7272
  emptyStateSubtitle: string;
7208
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7273
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7274
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7209
7275
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7210
7276
  zIndexBase: number;
7277
+ rowCustomClassKey: string;
7278
+ rowDataKey: string;
7211
7279
  totalCount: number;
7212
7280
  displayingText: string;
7213
7281
  outOfText: string;
@@ -7276,6 +7344,10 @@ declare const _default: {
7276
7344
  default: string;
7277
7345
  };
7278
7346
  getRowId: {
7347
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7348
+ default: (row: any, index: any) => any;
7349
+ };
7350
+ getRowKey: {
7279
7351
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7280
7352
  default: (row: any, index: any) => any;
7281
7353
  };
@@ -7287,6 +7359,14 @@ declare const _default: {
7287
7359
  type: import("vue").PropType<number>;
7288
7360
  default: number;
7289
7361
  };
7362
+ rowCustomClassKey: {
7363
+ type: import("vue").PropType<string>;
7364
+ default: string;
7365
+ };
7366
+ rowDataKey: {
7367
+ type: import("vue").PropType<string>;
7368
+ default: string;
7369
+ };
7290
7370
  totalCount: {
7291
7371
  type: import("vue").PropType<number>;
7292
7372
  default: number;
@@ -7367,6 +7447,10 @@ declare const _default: {
7367
7447
  default: string;
7368
7448
  };
7369
7449
  getRowId: {
7450
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7451
+ default: (row: any, index: any) => any;
7452
+ };
7453
+ getRowKey: {
7370
7454
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7371
7455
  default: (row: any, index: any) => any;
7372
7456
  };
@@ -7378,6 +7462,14 @@ declare const _default: {
7378
7462
  type: import("vue").PropType<number>;
7379
7463
  default: number;
7380
7464
  };
7465
+ rowCustomClassKey: {
7466
+ type: import("vue").PropType<string>;
7467
+ default: string;
7468
+ };
7469
+ rowDataKey: {
7470
+ type: import("vue").PropType<string>;
7471
+ default: string;
7472
+ };
7381
7473
  totalCount: {
7382
7474
  type: import("vue").PropType<number>;
7383
7475
  default: number;
@@ -7431,9 +7523,12 @@ declare const _default: {
7431
7523
  emptyStateTitle: string;
7432
7524
  isSticky: boolean;
7433
7525
  emptyStateSubtitle: string;
7434
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7526
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7527
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7435
7528
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7436
7529
  zIndexBase: number;
7530
+ rowCustomClassKey: string;
7531
+ rowDataKey: string;
7437
7532
  totalCount: number;
7438
7533
  displayingText: string;
7439
7534
  outOfText: string;
@@ -7478,9 +7573,12 @@ declare const _default: {
7478
7573
  emptyStateTitle: string;
7479
7574
  isSticky: boolean;
7480
7575
  emptyStateSubtitle: string;
7481
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7576
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7577
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7482
7578
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7483
7579
  zIndexBase: number;
7580
+ rowCustomClassKey: string;
7581
+ rowDataKey: string;
7484
7582
  totalCount: number;
7485
7583
  displayingText: string;
7486
7584
  outOfText: string;
@@ -7529,6 +7627,10 @@ declare const _default: {
7529
7627
  default: string;
7530
7628
  };
7531
7629
  getRowId: {
7630
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7631
+ default: (row: any, index: any) => any;
7632
+ };
7633
+ getRowKey: {
7532
7634
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7533
7635
  default: (row: any, index: any) => any;
7534
7636
  };
@@ -7540,6 +7642,14 @@ declare const _default: {
7540
7642
  type: import("vue").PropType<number>;
7541
7643
  default: number;
7542
7644
  };
7645
+ rowCustomClassKey: {
7646
+ type: import("vue").PropType<string>;
7647
+ default: string;
7648
+ };
7649
+ rowDataKey: {
7650
+ type: import("vue").PropType<string>;
7651
+ default: string;
7652
+ };
7543
7653
  totalCount: {
7544
7654
  type: import("vue").PropType<number>;
7545
7655
  default: number;
@@ -7574,7 +7684,7 @@ declare const _default: {
7574
7684
  }) => any;
7575
7685
  onOnClearSearch?: () => any;
7576
7686
  onClickRow?: (rowIndex: number, tableIndex: number) => any;
7577
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "emptyStateVariant" | "zIndexBase" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
7687
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "getRowKey" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
7578
7688
  $attrs: {
7579
7689
  [x: string]: unknown;
7580
7690
  };
@@ -7632,6 +7742,10 @@ declare const _default: {
7632
7742
  default: string;
7633
7743
  };
7634
7744
  getRowId: {
7745
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7746
+ default: (row: any, index: any) => any;
7747
+ };
7748
+ getRowKey: {
7635
7749
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7636
7750
  default: (row: any, index: any) => any;
7637
7751
  };
@@ -7643,6 +7757,14 @@ declare const _default: {
7643
7757
  type: import("vue").PropType<number>;
7644
7758
  default: number;
7645
7759
  };
7760
+ rowCustomClassKey: {
7761
+ type: import("vue").PropType<string>;
7762
+ default: string;
7763
+ };
7764
+ rowDataKey: {
7765
+ type: import("vue").PropType<string>;
7766
+ default: string;
7767
+ };
7646
7768
  totalCount: {
7647
7769
  type: import("vue").PropType<number>;
7648
7770
  default: number;
@@ -7696,9 +7818,12 @@ declare const _default: {
7696
7818
  emptyStateTitle: string;
7697
7819
  isSticky: boolean;
7698
7820
  emptyStateSubtitle: string;
7699
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7821
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7822
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7700
7823
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7701
7824
  zIndexBase: number;
7825
+ rowCustomClassKey: string;
7826
+ rowDataKey: string;
7702
7827
  totalCount: number;
7703
7828
  displayingText: string;
7704
7829
  outOfText: string;
@@ -7767,6 +7892,10 @@ declare const _default: {
7767
7892
  default: string;
7768
7893
  };
7769
7894
  getRowId: {
7895
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7896
+ default: (row: any, index: any) => any;
7897
+ };
7898
+ getRowKey: {
7770
7899
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7771
7900
  default: (row: any, index: any) => any;
7772
7901
  };
@@ -7778,6 +7907,14 @@ declare const _default: {
7778
7907
  type: import("vue").PropType<number>;
7779
7908
  default: number;
7780
7909
  };
7910
+ rowCustomClassKey: {
7911
+ type: import("vue").PropType<string>;
7912
+ default: string;
7913
+ };
7914
+ rowDataKey: {
7915
+ type: import("vue").PropType<string>;
7916
+ default: string;
7917
+ };
7781
7918
  totalCount: {
7782
7919
  type: import("vue").PropType<number>;
7783
7920
  default: number;
@@ -7858,6 +7995,10 @@ declare const _default: {
7858
7995
  default: string;
7859
7996
  };
7860
7997
  getRowId: {
7998
+ type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => unknown>;
7999
+ default: (row: any, index: any) => any;
8000
+ };
8001
+ getRowKey: {
7861
8002
  type: import("vue").PropType<(row: import("./components/table/common/Table.types").Row, index: number) => string | number>;
7862
8003
  default: (row: any, index: any) => any;
7863
8004
  };
@@ -7869,6 +8010,14 @@ declare const _default: {
7869
8010
  type: import("vue").PropType<number>;
7870
8011
  default: number;
7871
8012
  };
8013
+ rowCustomClassKey: {
8014
+ type: import("vue").PropType<string>;
8015
+ default: string;
8016
+ };
8017
+ rowDataKey: {
8018
+ type: import("vue").PropType<string>;
8019
+ default: string;
8020
+ };
7872
8021
  totalCount: {
7873
8022
  type: import("vue").PropType<number>;
7874
8023
  default: number;
@@ -7922,9 +8071,12 @@ declare const _default: {
7922
8071
  emptyStateTitle: string;
7923
8072
  isSticky: boolean;
7924
8073
  emptyStateSubtitle: string;
7925
- getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
8074
+ getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
8075
+ getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7926
8076
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7927
8077
  zIndexBase: number;
8078
+ rowCustomClassKey: string;
8079
+ rowDataKey: string;
7928
8080
  totalCount: number;
7929
8081
  displayingText: string;
7930
8082
  outOfText: string;
@@ -15616,11 +15768,13 @@ declare const _default: {
15616
15768
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
15617
15769
  optionEndIconKey: string;
15618
15770
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
15771
+ optionFlagKey: string;
15619
15772
  valueToCopy: string;
15620
15773
  disabledOptionKey: string;
15621
15774
  optionTwoLinesVariant: "horizontal" | "vertical";
15622
15775
  optionTwoLinesKey: string;
15623
15776
  groupedOptions: boolean;
15777
+ comparingKey: string;
15624
15778
  fullWidth: boolean;
15625
15779
  optionsListWidth: string;
15626
15780
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -15801,6 +15955,10 @@ declare const _default: {
15801
15955
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
15802
15956
  default: any;
15803
15957
  };
15958
+ optionFlagKey: {
15959
+ type: import("vue").PropType<string>;
15960
+ default: any;
15961
+ };
15804
15962
  valueToCopy: {
15805
15963
  type: import("vue").PropType<string>;
15806
15964
  default: any;
@@ -15821,6 +15979,10 @@ declare const _default: {
15821
15979
  type: import("vue").PropType<boolean>;
15822
15980
  default: boolean;
15823
15981
  };
15982
+ comparingKey: {
15983
+ type: import("vue").PropType<string>;
15984
+ default: any;
15985
+ };
15824
15986
  fullWidth: {
15825
15987
  type: import("vue").PropType<boolean>;
15826
15988
  default: boolean;
@@ -15851,7 +16013,7 @@ declare const _default: {
15851
16013
  onOnsearch?: (value: string) => any;
15852
16014
  onOpened?: () => any;
15853
16015
  onClosed?: () => any;
15854
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
16016
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
15855
16017
  $attrs: {
15856
16018
  [x: string]: unknown;
15857
16019
  };
@@ -16040,6 +16202,10 @@ declare const _default: {
16040
16202
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16041
16203
  default: any;
16042
16204
  };
16205
+ optionFlagKey: {
16206
+ type: import("vue").PropType<string>;
16207
+ default: any;
16208
+ };
16043
16209
  valueToCopy: {
16044
16210
  type: import("vue").PropType<string>;
16045
16211
  default: any;
@@ -16060,6 +16226,10 @@ declare const _default: {
16060
16226
  type: import("vue").PropType<boolean>;
16061
16227
  default: boolean;
16062
16228
  };
16229
+ comparingKey: {
16230
+ type: import("vue").PropType<string>;
16231
+ default: any;
16232
+ };
16063
16233
  fullWidth: {
16064
16234
  type: import("vue").PropType<boolean>;
16065
16235
  default: boolean;
@@ -16144,11 +16314,13 @@ declare const _default: {
16144
16314
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16145
16315
  optionEndIconKey: string;
16146
16316
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16317
+ optionFlagKey: string;
16147
16318
  valueToCopy: string;
16148
16319
  disabledOptionKey: string;
16149
16320
  optionTwoLinesVariant: "horizontal" | "vertical";
16150
16321
  optionTwoLinesKey: string;
16151
16322
  groupedOptions: boolean;
16323
+ comparingKey: string;
16152
16324
  fullWidth: boolean;
16153
16325
  optionsListWidth: string;
16154
16326
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -16349,6 +16521,10 @@ declare const _default: {
16349
16521
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16350
16522
  default: any;
16351
16523
  };
16524
+ optionFlagKey: {
16525
+ type: import("vue").PropType<string>;
16526
+ default: any;
16527
+ };
16352
16528
  valueToCopy: {
16353
16529
  type: import("vue").PropType<string>;
16354
16530
  default: any;
@@ -16369,6 +16545,10 @@ declare const _default: {
16369
16545
  type: import("vue").PropType<boolean>;
16370
16546
  default: boolean;
16371
16547
  };
16548
+ comparingKey: {
16549
+ type: import("vue").PropType<string>;
16550
+ default: any;
16551
+ };
16372
16552
  fullWidth: {
16373
16553
  type: import("vue").PropType<boolean>;
16374
16554
  default: boolean;
@@ -16581,6 +16761,10 @@ declare const _default: {
16581
16761
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16582
16762
  default: any;
16583
16763
  };
16764
+ optionFlagKey: {
16765
+ type: import("vue").PropType<string>;
16766
+ default: any;
16767
+ };
16584
16768
  valueToCopy: {
16585
16769
  type: import("vue").PropType<string>;
16586
16770
  default: any;
@@ -16601,6 +16785,10 @@ declare const _default: {
16601
16785
  type: import("vue").PropType<boolean>;
16602
16786
  default: boolean;
16603
16787
  };
16788
+ comparingKey: {
16789
+ type: import("vue").PropType<string>;
16790
+ default: any;
16791
+ };
16604
16792
  fullWidth: {
16605
16793
  type: import("vue").PropType<boolean>;
16606
16794
  default: boolean;
@@ -16685,11 +16873,13 @@ declare const _default: {
16685
16873
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16686
16874
  optionEndIconKey: string;
16687
16875
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16876
+ optionFlagKey: string;
16688
16877
  valueToCopy: string;
16689
16878
  disabledOptionKey: string;
16690
16879
  optionTwoLinesVariant: "horizontal" | "vertical";
16691
16880
  optionTwoLinesKey: string;
16692
16881
  groupedOptions: boolean;
16882
+ comparingKey: string;
16693
16883
  fullWidth: boolean;
16694
16884
  optionsListWidth: string;
16695
16885
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -16723,11 +16913,13 @@ declare const _default: {
16723
16913
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16724
16914
  optionAndIconKey: string;
16725
16915
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16916
+ optionFlagKey: string;
16726
16917
  feedbackVariant: "success" | "warning" | "error";
16727
16918
  valueToCopy: string;
16728
16919
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16729
16920
  size: "small" | "medium" | "large";
16730
16921
  showAllSelectedText: boolean;
16922
+ allSelected: boolean;
16731
16923
  onKeydown: (event: any) => void;
16732
16924
  onClick: () => void;
16733
16925
  };
@@ -16770,6 +16962,8 @@ declare const _default: {
16770
16962
  optionIconKey: string;
16771
16963
  optionImageKey: string;
16772
16964
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16965
+ optionFlagKey: string;
16966
+ allSelected: boolean;
16773
16967
  selectedOption: any;
16774
16968
  showFeedbackIcon: boolean;
16775
16969
  brandIconType: "android" | "ios";
@@ -16858,6 +17052,14 @@ declare const _default: {
16858
17052
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16859
17053
  default: any;
16860
17054
  };
17055
+ optionFlagKey: {
17056
+ type: import("vue").PropType<string>;
17057
+ default: any;
17058
+ };
17059
+ allSelected: {
17060
+ type: import("vue").PropType<boolean>;
17061
+ default: boolean;
17062
+ };
16861
17063
  selectedOption: {
16862
17064
  type: import("vue").PropType<unknown>;
16863
17065
  default: any;
@@ -16880,7 +17082,7 @@ declare const _default: {
16880
17082
  };
16881
17083
  }>> & {
16882
17084
  onClick?: () => any;
16883
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
17085
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
16884
17086
  $attrs: {
16885
17087
  [x: string]: unknown;
16886
17088
  };
@@ -16977,6 +17179,14 @@ declare const _default: {
16977
17179
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16978
17180
  default: any;
16979
17181
  };
17182
+ optionFlagKey: {
17183
+ type: import("vue").PropType<string>;
17184
+ default: any;
17185
+ };
17186
+ allSelected: {
17187
+ type: import("vue").PropType<boolean>;
17188
+ default: boolean;
17189
+ };
16980
17190
  selectedOption: {
16981
17191
  type: import("vue").PropType<unknown>;
16982
17192
  default: any;
@@ -17021,6 +17231,8 @@ declare const _default: {
17021
17231
  optionIconKey: string;
17022
17232
  optionImageKey: string;
17023
17233
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
17234
+ optionFlagKey: string;
17235
+ allSelected: boolean;
17024
17236
  selectedOption: any;
17025
17237
  showFeedbackIcon: boolean;
17026
17238
  brandIconType: "android" | "ios";
@@ -17129,6 +17341,14 @@ declare const _default: {
17129
17341
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17130
17342
  default: any;
17131
17343
  };
17344
+ optionFlagKey: {
17345
+ type: import("vue").PropType<string>;
17346
+ default: any;
17347
+ };
17348
+ allSelected: {
17349
+ type: import("vue").PropType<boolean>;
17350
+ default: boolean;
17351
+ };
17132
17352
  selectedOption: {
17133
17353
  type: import("vue").PropType<unknown>;
17134
17354
  default: any;
@@ -17238,6 +17458,14 @@ declare const _default: {
17238
17458
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17239
17459
  default: any;
17240
17460
  };
17461
+ optionFlagKey: {
17462
+ type: import("vue").PropType<string>;
17463
+ default: any;
17464
+ };
17465
+ allSelected: {
17466
+ type: import("vue").PropType<boolean>;
17467
+ default: boolean;
17468
+ };
17241
17469
  selectedOption: {
17242
17470
  type: import("vue").PropType<unknown>;
17243
17471
  default: any;
@@ -17282,6 +17510,8 @@ declare const _default: {
17282
17510
  optionIconKey: string;
17283
17511
  optionImageKey: string;
17284
17512
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
17513
+ optionFlagKey: string;
17514
+ allSelected: boolean;
17285
17515
  selectedOption: any;
17286
17516
  showFeedbackIcon: boolean;
17287
17517
  brandIconType: "android" | "ios";
@@ -17290,6 +17520,7 @@ declare const _default: {
17290
17520
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
17291
17521
  $slots: {
17292
17522
  image?(_: {}): any;
17523
+ flag?(_: {}): any;
17293
17524
  "icon-start"?(_: {}): any;
17294
17525
  "displayed-value"?(_: {}): any;
17295
17526
  "end-icon"?(_: {}): any;
@@ -17343,6 +17574,10 @@ declare const _default: {
17343
17574
  type: import("vue").PropType<(option: unknown) => string>;
17344
17575
  required: true;
17345
17576
  };
17577
+ allSelected: {
17578
+ type: import("vue").PropType<boolean>;
17579
+ default: boolean;
17580
+ };
17346
17581
  selectedOption: {
17347
17582
  type: import("vue").PropType<unknown>;
17348
17583
  required: true;
@@ -17389,6 +17624,10 @@ declare const _default: {
17389
17624
  type: import("vue").PropType<(option: unknown) => string>;
17390
17625
  required: true;
17391
17626
  };
17627
+ allSelected: {
17628
+ type: import("vue").PropType<boolean>;
17629
+ default: boolean;
17630
+ };
17392
17631
  selectedOption: {
17393
17632
  type: import("vue").PropType<unknown>;
17394
17633
  required: true;
@@ -17406,6 +17645,7 @@ declare const _default: {
17406
17645
  disabled: boolean;
17407
17646
  open: boolean;
17408
17647
  feedbackVariant: string;
17648
+ allSelected: boolean;
17409
17649
  displayedValue: any;
17410
17650
  }>;
17411
17651
  ButtonDropdownTrigger: import("vue").DefineComponent<{
@@ -18077,6 +18317,8 @@ declare const _default: {
18077
18317
  optionIconKey: string;
18078
18318
  optionImageKey: string;
18079
18319
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18320
+ optionFlagKey: string;
18321
+ allSelected: boolean;
18080
18322
  selectedOption: any;
18081
18323
  showFeedbackIcon: boolean;
18082
18324
  brandIconType: "android" | "ios";
@@ -18165,6 +18407,14 @@ declare const _default: {
18165
18407
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18166
18408
  default: any;
18167
18409
  };
18410
+ optionFlagKey: {
18411
+ type: import("vue").PropType<string>;
18412
+ default: any;
18413
+ };
18414
+ allSelected: {
18415
+ type: import("vue").PropType<boolean>;
18416
+ default: boolean;
18417
+ };
18168
18418
  selectedOption: {
18169
18419
  type: import("vue").PropType<unknown>;
18170
18420
  default: any;
@@ -18187,7 +18437,7 @@ declare const _default: {
18187
18437
  };
18188
18438
  }>> & {
18189
18439
  onClick?: () => any;
18190
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
18440
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
18191
18441
  $attrs: {
18192
18442
  [x: string]: unknown;
18193
18443
  };
@@ -18284,6 +18534,14 @@ declare const _default: {
18284
18534
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18285
18535
  default: any;
18286
18536
  };
18537
+ optionFlagKey: {
18538
+ type: import("vue").PropType<string>;
18539
+ default: any;
18540
+ };
18541
+ allSelected: {
18542
+ type: import("vue").PropType<boolean>;
18543
+ default: boolean;
18544
+ };
18287
18545
  selectedOption: {
18288
18546
  type: import("vue").PropType<unknown>;
18289
18547
  default: any;
@@ -18328,6 +18586,8 @@ declare const _default: {
18328
18586
  optionIconKey: string;
18329
18587
  optionImageKey: string;
18330
18588
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18589
+ optionFlagKey: string;
18590
+ allSelected: boolean;
18331
18591
  selectedOption: any;
18332
18592
  showFeedbackIcon: boolean;
18333
18593
  brandIconType: "android" | "ios";
@@ -18436,6 +18696,14 @@ declare const _default: {
18436
18696
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18437
18697
  default: any;
18438
18698
  };
18699
+ optionFlagKey: {
18700
+ type: import("vue").PropType<string>;
18701
+ default: any;
18702
+ };
18703
+ allSelected: {
18704
+ type: import("vue").PropType<boolean>;
18705
+ default: boolean;
18706
+ };
18439
18707
  selectedOption: {
18440
18708
  type: import("vue").PropType<unknown>;
18441
18709
  default: any;
@@ -18545,6 +18813,14 @@ declare const _default: {
18545
18813
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18546
18814
  default: any;
18547
18815
  };
18816
+ optionFlagKey: {
18817
+ type: import("vue").PropType<string>;
18818
+ default: any;
18819
+ };
18820
+ allSelected: {
18821
+ type: import("vue").PropType<boolean>;
18822
+ default: boolean;
18823
+ };
18548
18824
  selectedOption: {
18549
18825
  type: import("vue").PropType<unknown>;
18550
18826
  default: any;
@@ -18589,6 +18865,8 @@ declare const _default: {
18589
18865
  optionIconKey: string;
18590
18866
  optionImageKey: string;
18591
18867
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18868
+ optionFlagKey: string;
18869
+ allSelected: boolean;
18592
18870
  selectedOption: any;
18593
18871
  showFeedbackIcon: boolean;
18594
18872
  brandIconType: "android" | "ios";
@@ -18597,6 +18875,7 @@ declare const _default: {
18597
18875
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
18598
18876
  $slots: {
18599
18877
  image?(_: {}): any;
18878
+ flag?(_: {}): any;
18600
18879
  "icon-start"?(_: {}): any;
18601
18880
  "displayed-value"?(_: {}): any;
18602
18881
  "end-icon"?(_: {}): any;
@@ -19087,6 +19366,7 @@ declare const _default: {
19087
19366
  disabled: boolean;
19088
19367
  active: boolean;
19089
19368
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19369
+ optionFlagKey: string;
19090
19370
  optionTwoLinesVariant: "horizontal" | "vertical";
19091
19371
  optionTwoLinesKey: string;
19092
19372
  isIndeterminate: boolean;
@@ -19119,6 +19399,10 @@ declare const _default: {
19119
19399
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19120
19400
  default: string;
19121
19401
  };
19402
+ optionFlagKey: {
19403
+ type: import("vue").PropType<string>;
19404
+ default: any;
19405
+ };
19122
19406
  optionTwoLinesVariant: {
19123
19407
  type: import("vue").PropType<"horizontal" | "vertical">;
19124
19408
  default: any;
@@ -19184,7 +19468,7 @@ declare const _default: {
19184
19468
  };
19185
19469
  }>> & {
19186
19470
  onToggleTreeCollapse?: (option: unknown) => any;
19187
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
19471
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
19188
19472
  $attrs: {
19189
19473
  [x: string]: unknown;
19190
19474
  };
@@ -19215,6 +19499,10 @@ declare const _default: {
19215
19499
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19216
19500
  default: string;
19217
19501
  };
19502
+ optionFlagKey: {
19503
+ type: import("vue").PropType<string>;
19504
+ default: any;
19505
+ };
19218
19506
  optionTwoLinesVariant: {
19219
19507
  type: import("vue").PropType<"horizontal" | "vertical">;
19220
19508
  default: any;
@@ -19287,6 +19575,7 @@ declare const _default: {
19287
19575
  disabled: boolean;
19288
19576
  active: boolean;
19289
19577
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19578
+ optionFlagKey: string;
19290
19579
  optionTwoLinesVariant: "horizontal" | "vertical";
19291
19580
  optionTwoLinesKey: string;
19292
19581
  isIndeterminate: boolean;
@@ -19339,6 +19628,10 @@ declare const _default: {
19339
19628
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19340
19629
  default: string;
19341
19630
  };
19631
+ optionFlagKey: {
19632
+ type: import("vue").PropType<string>;
19633
+ default: any;
19634
+ };
19342
19635
  optionTwoLinesVariant: {
19343
19636
  type: import("vue").PropType<"horizontal" | "vertical">;
19344
19637
  default: any;
@@ -19425,6 +19718,10 @@ declare const _default: {
19425
19718
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19426
19719
  default: string;
19427
19720
  };
19721
+ optionFlagKey: {
19722
+ type: import("vue").PropType<string>;
19723
+ default: any;
19724
+ };
19428
19725
  optionTwoLinesVariant: {
19429
19726
  type: import("vue").PropType<"horizontal" | "vertical">;
19430
19727
  default: any;
@@ -19497,6 +19794,7 @@ declare const _default: {
19497
19794
  disabled: boolean;
19498
19795
  active: boolean;
19499
19796
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19797
+ optionFlagKey: string;
19500
19798
  optionTwoLinesVariant: "horizontal" | "vertical";
19501
19799
  optionTwoLinesKey: string;
19502
19800
  isIndeterminate: boolean;
@@ -19515,6 +19813,7 @@ declare const _default: {
19515
19813
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
19516
19814
  $slots: {
19517
19815
  image?(_: {}): any;
19816
+ flag?(_: {}): any;
19518
19817
  "icon-start"?(_: {}): any;
19519
19818
  default?(_: {}): any;
19520
19819
  "icon-end"?(_: {}): any;
@@ -19566,6 +19865,10 @@ declare const _default: {
19566
19865
  type: import("vue").PropType<(option: unknown) => string>;
19567
19866
  required: true;
19568
19867
  };
19868
+ allSelected: {
19869
+ type: import("vue").PropType<boolean>;
19870
+ default: boolean;
19871
+ };
19569
19872
  selectedOption: {
19570
19873
  type: import("vue").PropType<unknown>;
19571
19874
  required: true;
@@ -19612,6 +19915,10 @@ declare const _default: {
19612
19915
  type: import("vue").PropType<(option: unknown) => string>;
19613
19916
  required: true;
19614
19917
  };
19918
+ allSelected: {
19919
+ type: import("vue").PropType<boolean>;
19920
+ default: boolean;
19921
+ };
19615
19922
  selectedOption: {
19616
19923
  type: import("vue").PropType<unknown>;
19617
19924
  required: true;
@@ -19629,6 +19936,7 @@ declare const _default: {
19629
19936
  disabled: boolean;
19630
19937
  open: boolean;
19631
19938
  feedbackVariant: string;
19939
+ allSelected: boolean;
19632
19940
  displayedValue: any;
19633
19941
  }> | ({
19634
19942
  new (...args: any[]): {
@@ -19675,11 +19983,13 @@ declare const _default: {
19675
19983
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19676
19984
  optionEndIconKey: string;
19677
19985
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19986
+ optionFlagKey: string;
19678
19987
  valueToCopy: string;
19679
19988
  disabledOptionKey: string;
19680
19989
  optionTwoLinesVariant: "horizontal" | "vertical";
19681
19990
  optionTwoLinesKey: string;
19682
19991
  groupedOptions: boolean;
19992
+ comparingKey: string;
19683
19993
  fullWidth: boolean;
19684
19994
  optionsListWidth: string;
19685
19995
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -19860,6 +20170,10 @@ declare const _default: {
19860
20170
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19861
20171
  default: any;
19862
20172
  };
20173
+ optionFlagKey: {
20174
+ type: import("vue").PropType<string>;
20175
+ default: any;
20176
+ };
19863
20177
  valueToCopy: {
19864
20178
  type: import("vue").PropType<string>;
19865
20179
  default: any;
@@ -19880,6 +20194,10 @@ declare const _default: {
19880
20194
  type: import("vue").PropType<boolean>;
19881
20195
  default: boolean;
19882
20196
  };
20197
+ comparingKey: {
20198
+ type: import("vue").PropType<string>;
20199
+ default: any;
20200
+ };
19883
20201
  fullWidth: {
19884
20202
  type: import("vue").PropType<boolean>;
19885
20203
  default: boolean;
@@ -19910,7 +20228,7 @@ declare const _default: {
19910
20228
  onOnsearch?: (value: string) => any;
19911
20229
  onOpened?: () => any;
19912
20230
  onClosed?: () => any;
19913
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
20231
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
19914
20232
  $attrs: {
19915
20233
  [x: string]: unknown;
19916
20234
  };
@@ -20099,6 +20417,10 @@ declare const _default: {
20099
20417
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20100
20418
  default: any;
20101
20419
  };
20420
+ optionFlagKey: {
20421
+ type: import("vue").PropType<string>;
20422
+ default: any;
20423
+ };
20102
20424
  valueToCopy: {
20103
20425
  type: import("vue").PropType<string>;
20104
20426
  default: any;
@@ -20119,6 +20441,10 @@ declare const _default: {
20119
20441
  type: import("vue").PropType<boolean>;
20120
20442
  default: boolean;
20121
20443
  };
20444
+ comparingKey: {
20445
+ type: import("vue").PropType<string>;
20446
+ default: any;
20447
+ };
20122
20448
  fullWidth: {
20123
20449
  type: import("vue").PropType<boolean>;
20124
20450
  default: boolean;
@@ -20203,11 +20529,13 @@ declare const _default: {
20203
20529
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20204
20530
  optionEndIconKey: string;
20205
20531
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20532
+ optionFlagKey: string;
20206
20533
  valueToCopy: string;
20207
20534
  disabledOptionKey: string;
20208
20535
  optionTwoLinesVariant: "horizontal" | "vertical";
20209
20536
  optionTwoLinesKey: string;
20210
20537
  groupedOptions: boolean;
20538
+ comparingKey: string;
20211
20539
  fullWidth: boolean;
20212
20540
  optionsListWidth: string;
20213
20541
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -20408,6 +20736,10 @@ declare const _default: {
20408
20736
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20409
20737
  default: any;
20410
20738
  };
20739
+ optionFlagKey: {
20740
+ type: import("vue").PropType<string>;
20741
+ default: any;
20742
+ };
20411
20743
  valueToCopy: {
20412
20744
  type: import("vue").PropType<string>;
20413
20745
  default: any;
@@ -20428,6 +20760,10 @@ declare const _default: {
20428
20760
  type: import("vue").PropType<boolean>;
20429
20761
  default: boolean;
20430
20762
  };
20763
+ comparingKey: {
20764
+ type: import("vue").PropType<string>;
20765
+ default: any;
20766
+ };
20431
20767
  fullWidth: {
20432
20768
  type: import("vue").PropType<boolean>;
20433
20769
  default: boolean;
@@ -20640,6 +20976,10 @@ declare const _default: {
20640
20976
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20641
20977
  default: any;
20642
20978
  };
20979
+ optionFlagKey: {
20980
+ type: import("vue").PropType<string>;
20981
+ default: any;
20982
+ };
20643
20983
  valueToCopy: {
20644
20984
  type: import("vue").PropType<string>;
20645
20985
  default: any;
@@ -20660,6 +21000,10 @@ declare const _default: {
20660
21000
  type: import("vue").PropType<boolean>;
20661
21001
  default: boolean;
20662
21002
  };
21003
+ comparingKey: {
21004
+ type: import("vue").PropType<string>;
21005
+ default: any;
21006
+ };
20663
21007
  fullWidth: {
20664
21008
  type: import("vue").PropType<boolean>;
20665
21009
  default: boolean;
@@ -20744,11 +21088,13 @@ declare const _default: {
20744
21088
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20745
21089
  optionEndIconKey: string;
20746
21090
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21091
+ optionFlagKey: string;
20747
21092
  valueToCopy: string;
20748
21093
  disabledOptionKey: string;
20749
21094
  optionTwoLinesVariant: "horizontal" | "vertical";
20750
21095
  optionTwoLinesKey: string;
20751
21096
  groupedOptions: boolean;
21097
+ comparingKey: string;
20752
21098
  fullWidth: boolean;
20753
21099
  optionsListWidth: string;
20754
21100
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -20782,11 +21128,13 @@ declare const _default: {
20782
21128
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20783
21129
  optionAndIconKey: string;
20784
21130
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21131
+ optionFlagKey: string;
20785
21132
  feedbackVariant: "success" | "warning" | "error";
20786
21133
  valueToCopy: string;
20787
21134
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
20788
21135
  size: "small" | "medium" | "large";
20789
21136
  showAllSelectedText: boolean;
21137
+ allSelected: boolean;
20790
21138
  onKeydown: (event: any) => void;
20791
21139
  onClick: () => void;
20792
21140
  };
@@ -21305,6 +21653,7 @@ declare const _default: {
21305
21653
  disabled: boolean;
21306
21654
  active: boolean;
21307
21655
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21656
+ optionFlagKey: string;
21308
21657
  optionTwoLinesVariant: "horizontal" | "vertical";
21309
21658
  optionTwoLinesKey: string;
21310
21659
  isIndeterminate: boolean;
@@ -21337,6 +21686,10 @@ declare const _default: {
21337
21686
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21338
21687
  default: string;
21339
21688
  };
21689
+ optionFlagKey: {
21690
+ type: import("vue").PropType<string>;
21691
+ default: any;
21692
+ };
21340
21693
  optionTwoLinesVariant: {
21341
21694
  type: import("vue").PropType<"horizontal" | "vertical">;
21342
21695
  default: any;
@@ -21402,7 +21755,7 @@ declare const _default: {
21402
21755
  };
21403
21756
  }>> & {
21404
21757
  onToggleTreeCollapse?: (option: unknown) => any;
21405
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
21758
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
21406
21759
  $attrs: {
21407
21760
  [x: string]: unknown;
21408
21761
  };
@@ -21433,6 +21786,10 @@ declare const _default: {
21433
21786
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21434
21787
  default: string;
21435
21788
  };
21789
+ optionFlagKey: {
21790
+ type: import("vue").PropType<string>;
21791
+ default: any;
21792
+ };
21436
21793
  optionTwoLinesVariant: {
21437
21794
  type: import("vue").PropType<"horizontal" | "vertical">;
21438
21795
  default: any;
@@ -21505,6 +21862,7 @@ declare const _default: {
21505
21862
  disabled: boolean;
21506
21863
  active: boolean;
21507
21864
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21865
+ optionFlagKey: string;
21508
21866
  optionTwoLinesVariant: "horizontal" | "vertical";
21509
21867
  optionTwoLinesKey: string;
21510
21868
  isIndeterminate: boolean;
@@ -21557,6 +21915,10 @@ declare const _default: {
21557
21915
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21558
21916
  default: string;
21559
21917
  };
21918
+ optionFlagKey: {
21919
+ type: import("vue").PropType<string>;
21920
+ default: any;
21921
+ };
21560
21922
  optionTwoLinesVariant: {
21561
21923
  type: import("vue").PropType<"horizontal" | "vertical">;
21562
21924
  default: any;
@@ -21643,6 +22005,10 @@ declare const _default: {
21643
22005
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21644
22006
  default: string;
21645
22007
  };
22008
+ optionFlagKey: {
22009
+ type: import("vue").PropType<string>;
22010
+ default: any;
22011
+ };
21646
22012
  optionTwoLinesVariant: {
21647
22013
  type: import("vue").PropType<"horizontal" | "vertical">;
21648
22014
  default: any;
@@ -21715,6 +22081,7 @@ declare const _default: {
21715
22081
  disabled: boolean;
21716
22082
  active: boolean;
21717
22083
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22084
+ optionFlagKey: string;
21718
22085
  optionTwoLinesVariant: "horizontal" | "vertical";
21719
22086
  optionTwoLinesKey: string;
21720
22087
  isIndeterminate: boolean;
@@ -21733,6 +22100,7 @@ declare const _default: {
21733
22100
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
21734
22101
  $slots: {
21735
22102
  image?(_: {}): any;
22103
+ flag?(_: {}): any;
21736
22104
  "icon-start"?(_: {}): any;
21737
22105
  default?(_: {}): any;
21738
22106
  "icon-end"?(_: {}): any;