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

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 (34) hide show
  1. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_49bd7193_lang.css +1 -0
  2. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_9fa84b26_lang.css +1 -0
  3. package/DropdownV4.vue_vue_type_style_index_0_scoped_899679d0_lang.css +1 -0
  4. package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
  5. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_69c40021_lang.css +1 -0
  6. package/OptionV4.vue_vue_type_style_index_0_scoped_f61be399_lang.css +1 -0
  7. package/components/dropdown/common/Dropdown.common.d.ts +1 -0
  8. package/components/dropdown/common/Dropdown.common.js +165 -158
  9. package/components/dropdown/v4/ChipDropdownTrigger.vue.d.ts +5 -0
  10. package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
  11. package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +23 -22
  12. package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +11 -0
  13. package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
  14. package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +59 -45
  15. package/components/dropdown/v4/DropdownV4.vue.d.ts +12 -0
  16. package/components/dropdown/v4/DropdownV4.vue.js +3 -3
  17. package/components/dropdown/v4/DropdownV4.vue2.js +173 -167
  18. package/components/dropdown/v4/OptionV4.vue.d.ts +6 -0
  19. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  20. package/components/dropdown/v4/OptionV4.vue2.js +83 -70
  21. package/components/dropdown/v4/index.d.ts +111 -3
  22. package/components/table/v4/MultipleDataGrid.vue.d.ts +10 -0
  23. package/components/table/v4/MultipleDataGrid.vue.js +3 -3
  24. package/components/table/v4/MultipleDataGrid.vue2.js +62 -58
  25. package/components/table/v4/index.d.ts +39 -1
  26. package/consts/configs.d.ts +1 -0
  27. package/consts/configs.js +4 -0
  28. package/index.d.ts +300 -8
  29. package/package.json +1 -1
  30. package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_a8fdae89_lang.css +0 -1
  31. package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_fd7a490e_lang.css +0 -1
  32. package/DropdownV4.vue_vue_type_style_index_0_scoped_62a620ee_lang.css +0 -1
  33. package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_60d4a465_lang.css +0 -1
  34. package/OptionV4.vue_vue_type_style_index_0_scoped_77509f61_lang.css +0 -1
package/index.d.ts CHANGED
@@ -6990,6 +6990,8 @@ declare const _default: {
6990
6990
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6991
6991
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6992
6992
  zIndexBase: number;
6993
+ rowCustomClassKey: string;
6994
+ rowDataKey: string;
6993
6995
  totalCount: number;
6994
6996
  displayingText: string;
6995
6997
  outOfText: string;
@@ -7049,6 +7051,14 @@ declare const _default: {
7049
7051
  type: import("vue").PropType<number>;
7050
7052
  default: number;
7051
7053
  };
7054
+ rowCustomClassKey: {
7055
+ type: import("vue").PropType<string>;
7056
+ default: string;
7057
+ };
7058
+ rowDataKey: {
7059
+ type: import("vue").PropType<string>;
7060
+ default: string;
7061
+ };
7052
7062
  totalCount: {
7053
7063
  type: import("vue").PropType<number>;
7054
7064
  default: number;
@@ -7083,7 +7093,7 @@ declare const _default: {
7083
7093
  }) => any;
7084
7094
  onOnClearSearch?: () => any;
7085
7095
  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">;
7096
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
7087
7097
  $attrs: {
7088
7098
  [x: string]: unknown;
7089
7099
  };
@@ -7152,6 +7162,14 @@ declare const _default: {
7152
7162
  type: import("vue").PropType<number>;
7153
7163
  default: number;
7154
7164
  };
7165
+ rowCustomClassKey: {
7166
+ type: import("vue").PropType<string>;
7167
+ default: string;
7168
+ };
7169
+ rowDataKey: {
7170
+ type: import("vue").PropType<string>;
7171
+ default: string;
7172
+ };
7155
7173
  totalCount: {
7156
7174
  type: import("vue").PropType<number>;
7157
7175
  default: number;
@@ -7208,6 +7226,8 @@ declare const _default: {
7208
7226
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7209
7227
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7210
7228
  zIndexBase: number;
7229
+ rowCustomClassKey: string;
7230
+ rowDataKey: string;
7211
7231
  totalCount: number;
7212
7232
  displayingText: string;
7213
7233
  outOfText: string;
@@ -7287,6 +7307,14 @@ declare const _default: {
7287
7307
  type: import("vue").PropType<number>;
7288
7308
  default: number;
7289
7309
  };
7310
+ rowCustomClassKey: {
7311
+ type: import("vue").PropType<string>;
7312
+ default: string;
7313
+ };
7314
+ rowDataKey: {
7315
+ type: import("vue").PropType<string>;
7316
+ default: string;
7317
+ };
7290
7318
  totalCount: {
7291
7319
  type: import("vue").PropType<number>;
7292
7320
  default: number;
@@ -7378,6 +7406,14 @@ declare const _default: {
7378
7406
  type: import("vue").PropType<number>;
7379
7407
  default: number;
7380
7408
  };
7409
+ rowCustomClassKey: {
7410
+ type: import("vue").PropType<string>;
7411
+ default: string;
7412
+ };
7413
+ rowDataKey: {
7414
+ type: import("vue").PropType<string>;
7415
+ default: string;
7416
+ };
7381
7417
  totalCount: {
7382
7418
  type: import("vue").PropType<number>;
7383
7419
  default: number;
@@ -7434,6 +7470,8 @@ declare const _default: {
7434
7470
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7435
7471
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7436
7472
  zIndexBase: number;
7473
+ rowCustomClassKey: string;
7474
+ rowDataKey: string;
7437
7475
  totalCount: number;
7438
7476
  displayingText: string;
7439
7477
  outOfText: string;
@@ -7481,6 +7519,8 @@ declare const _default: {
7481
7519
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7482
7520
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7483
7521
  zIndexBase: number;
7522
+ rowCustomClassKey: string;
7523
+ rowDataKey: string;
7484
7524
  totalCount: number;
7485
7525
  displayingText: string;
7486
7526
  outOfText: string;
@@ -7540,6 +7580,14 @@ declare const _default: {
7540
7580
  type: import("vue").PropType<number>;
7541
7581
  default: number;
7542
7582
  };
7583
+ rowCustomClassKey: {
7584
+ type: import("vue").PropType<string>;
7585
+ default: string;
7586
+ };
7587
+ rowDataKey: {
7588
+ type: import("vue").PropType<string>;
7589
+ default: string;
7590
+ };
7543
7591
  totalCount: {
7544
7592
  type: import("vue").PropType<number>;
7545
7593
  default: number;
@@ -7574,7 +7622,7 @@ declare const _default: {
7574
7622
  }) => any;
7575
7623
  onOnClearSearch?: () => any;
7576
7624
  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">;
7625
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "searchPlaceholder" | "count" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "emptyStateSubtitle" | "getRowId" | "emptyStateVariant" | "zIndexBase" | "rowCustomClassKey" | "rowDataKey" | "totalCount" | "displayingText" | "outOfText" | "totalText" | "tablesSettings" | "loadingAndEmptyStatesColumns">;
7578
7626
  $attrs: {
7579
7627
  [x: string]: unknown;
7580
7628
  };
@@ -7643,6 +7691,14 @@ declare const _default: {
7643
7691
  type: import("vue").PropType<number>;
7644
7692
  default: number;
7645
7693
  };
7694
+ rowCustomClassKey: {
7695
+ type: import("vue").PropType<string>;
7696
+ default: string;
7697
+ };
7698
+ rowDataKey: {
7699
+ type: import("vue").PropType<string>;
7700
+ default: string;
7701
+ };
7646
7702
  totalCount: {
7647
7703
  type: import("vue").PropType<number>;
7648
7704
  default: number;
@@ -7699,6 +7755,8 @@ declare const _default: {
7699
7755
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7700
7756
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7701
7757
  zIndexBase: number;
7758
+ rowCustomClassKey: string;
7759
+ rowDataKey: string;
7702
7760
  totalCount: number;
7703
7761
  displayingText: string;
7704
7762
  outOfText: string;
@@ -7778,6 +7836,14 @@ declare const _default: {
7778
7836
  type: import("vue").PropType<number>;
7779
7837
  default: number;
7780
7838
  };
7839
+ rowCustomClassKey: {
7840
+ type: import("vue").PropType<string>;
7841
+ default: string;
7842
+ };
7843
+ rowDataKey: {
7844
+ type: import("vue").PropType<string>;
7845
+ default: string;
7846
+ };
7781
7847
  totalCount: {
7782
7848
  type: import("vue").PropType<number>;
7783
7849
  default: number;
@@ -7869,6 +7935,14 @@ declare const _default: {
7869
7935
  type: import("vue").PropType<number>;
7870
7936
  default: number;
7871
7937
  };
7938
+ rowCustomClassKey: {
7939
+ type: import("vue").PropType<string>;
7940
+ default: string;
7941
+ };
7942
+ rowDataKey: {
7943
+ type: import("vue").PropType<string>;
7944
+ default: string;
7945
+ };
7872
7946
  totalCount: {
7873
7947
  type: import("vue").PropType<number>;
7874
7948
  default: number;
@@ -7925,6 +7999,8 @@ declare const _default: {
7925
7999
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7926
8000
  emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7927
8001
  zIndexBase: number;
8002
+ rowCustomClassKey: string;
8003
+ rowDataKey: string;
7928
8004
  totalCount: number;
7929
8005
  displayingText: string;
7930
8006
  outOfText: string;
@@ -15616,11 +15692,13 @@ declare const _default: {
15616
15692
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
15617
15693
  optionEndIconKey: string;
15618
15694
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
15695
+ optionFlagKey: string;
15619
15696
  valueToCopy: string;
15620
15697
  disabledOptionKey: string;
15621
15698
  optionTwoLinesVariant: "horizontal" | "vertical";
15622
15699
  optionTwoLinesKey: string;
15623
15700
  groupedOptions: boolean;
15701
+ comparingKey: string;
15624
15702
  fullWidth: boolean;
15625
15703
  optionsListWidth: string;
15626
15704
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -15801,6 +15879,10 @@ declare const _default: {
15801
15879
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
15802
15880
  default: any;
15803
15881
  };
15882
+ optionFlagKey: {
15883
+ type: import("vue").PropType<string>;
15884
+ default: any;
15885
+ };
15804
15886
  valueToCopy: {
15805
15887
  type: import("vue").PropType<string>;
15806
15888
  default: any;
@@ -15821,6 +15903,10 @@ declare const _default: {
15821
15903
  type: import("vue").PropType<boolean>;
15822
15904
  default: boolean;
15823
15905
  };
15906
+ comparingKey: {
15907
+ type: import("vue").PropType<string>;
15908
+ default: any;
15909
+ };
15824
15910
  fullWidth: {
15825
15911
  type: import("vue").PropType<boolean>;
15826
15912
  default: boolean;
@@ -15851,7 +15937,7 @@ declare const _default: {
15851
15937
  onOnsearch?: (value: string) => any;
15852
15938
  onOpened?: () => any;
15853
15939
  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">;
15940
+ } & 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
15941
  $attrs: {
15856
15942
  [x: string]: unknown;
15857
15943
  };
@@ -16040,6 +16126,10 @@ declare const _default: {
16040
16126
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16041
16127
  default: any;
16042
16128
  };
16129
+ optionFlagKey: {
16130
+ type: import("vue").PropType<string>;
16131
+ default: any;
16132
+ };
16043
16133
  valueToCopy: {
16044
16134
  type: import("vue").PropType<string>;
16045
16135
  default: any;
@@ -16060,6 +16150,10 @@ declare const _default: {
16060
16150
  type: import("vue").PropType<boolean>;
16061
16151
  default: boolean;
16062
16152
  };
16153
+ comparingKey: {
16154
+ type: import("vue").PropType<string>;
16155
+ default: any;
16156
+ };
16063
16157
  fullWidth: {
16064
16158
  type: import("vue").PropType<boolean>;
16065
16159
  default: boolean;
@@ -16144,11 +16238,13 @@ declare const _default: {
16144
16238
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16145
16239
  optionEndIconKey: string;
16146
16240
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16241
+ optionFlagKey: string;
16147
16242
  valueToCopy: string;
16148
16243
  disabledOptionKey: string;
16149
16244
  optionTwoLinesVariant: "horizontal" | "vertical";
16150
16245
  optionTwoLinesKey: string;
16151
16246
  groupedOptions: boolean;
16247
+ comparingKey: string;
16152
16248
  fullWidth: boolean;
16153
16249
  optionsListWidth: string;
16154
16250
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -16349,6 +16445,10 @@ declare const _default: {
16349
16445
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16350
16446
  default: any;
16351
16447
  };
16448
+ optionFlagKey: {
16449
+ type: import("vue").PropType<string>;
16450
+ default: any;
16451
+ };
16352
16452
  valueToCopy: {
16353
16453
  type: import("vue").PropType<string>;
16354
16454
  default: any;
@@ -16369,6 +16469,10 @@ declare const _default: {
16369
16469
  type: import("vue").PropType<boolean>;
16370
16470
  default: boolean;
16371
16471
  };
16472
+ comparingKey: {
16473
+ type: import("vue").PropType<string>;
16474
+ default: any;
16475
+ };
16372
16476
  fullWidth: {
16373
16477
  type: import("vue").PropType<boolean>;
16374
16478
  default: boolean;
@@ -16581,6 +16685,10 @@ declare const _default: {
16581
16685
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16582
16686
  default: any;
16583
16687
  };
16688
+ optionFlagKey: {
16689
+ type: import("vue").PropType<string>;
16690
+ default: any;
16691
+ };
16584
16692
  valueToCopy: {
16585
16693
  type: import("vue").PropType<string>;
16586
16694
  default: any;
@@ -16601,6 +16709,10 @@ declare const _default: {
16601
16709
  type: import("vue").PropType<boolean>;
16602
16710
  default: boolean;
16603
16711
  };
16712
+ comparingKey: {
16713
+ type: import("vue").PropType<string>;
16714
+ default: any;
16715
+ };
16604
16716
  fullWidth: {
16605
16717
  type: import("vue").PropType<boolean>;
16606
16718
  default: boolean;
@@ -16685,11 +16797,13 @@ declare const _default: {
16685
16797
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16686
16798
  optionEndIconKey: string;
16687
16799
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16800
+ optionFlagKey: string;
16688
16801
  valueToCopy: string;
16689
16802
  disabledOptionKey: string;
16690
16803
  optionTwoLinesVariant: "horizontal" | "vertical";
16691
16804
  optionTwoLinesKey: string;
16692
16805
  groupedOptions: boolean;
16806
+ comparingKey: string;
16693
16807
  fullWidth: boolean;
16694
16808
  optionsListWidth: string;
16695
16809
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -16723,11 +16837,13 @@ declare const _default: {
16723
16837
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16724
16838
  optionAndIconKey: string;
16725
16839
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16840
+ optionFlagKey: string;
16726
16841
  feedbackVariant: "success" | "warning" | "error";
16727
16842
  valueToCopy: string;
16728
16843
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16729
16844
  size: "small" | "medium" | "large";
16730
16845
  showAllSelectedText: boolean;
16846
+ allSelected: boolean;
16731
16847
  onKeydown: (event: any) => void;
16732
16848
  onClick: () => void;
16733
16849
  };
@@ -16770,6 +16886,8 @@ declare const _default: {
16770
16886
  optionIconKey: string;
16771
16887
  optionImageKey: string;
16772
16888
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
16889
+ optionFlagKey: string;
16890
+ allSelected: boolean;
16773
16891
  selectedOption: any;
16774
16892
  showFeedbackIcon: boolean;
16775
16893
  brandIconType: "android" | "ios";
@@ -16858,6 +16976,14 @@ declare const _default: {
16858
16976
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16859
16977
  default: any;
16860
16978
  };
16979
+ optionFlagKey: {
16980
+ type: import("vue").PropType<string>;
16981
+ default: any;
16982
+ };
16983
+ allSelected: {
16984
+ type: import("vue").PropType<boolean>;
16985
+ default: boolean;
16986
+ };
16861
16987
  selectedOption: {
16862
16988
  type: import("vue").PropType<unknown>;
16863
16989
  default: any;
@@ -16880,7 +17006,7 @@ declare const _default: {
16880
17006
  };
16881
17007
  }>> & {
16882
17008
  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">;
17009
+ } & 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
17010
  $attrs: {
16885
17011
  [x: string]: unknown;
16886
17012
  };
@@ -16977,6 +17103,14 @@ declare const _default: {
16977
17103
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
16978
17104
  default: any;
16979
17105
  };
17106
+ optionFlagKey: {
17107
+ type: import("vue").PropType<string>;
17108
+ default: any;
17109
+ };
17110
+ allSelected: {
17111
+ type: import("vue").PropType<boolean>;
17112
+ default: boolean;
17113
+ };
16980
17114
  selectedOption: {
16981
17115
  type: import("vue").PropType<unknown>;
16982
17116
  default: any;
@@ -17021,6 +17155,8 @@ declare const _default: {
17021
17155
  optionIconKey: string;
17022
17156
  optionImageKey: string;
17023
17157
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
17158
+ optionFlagKey: string;
17159
+ allSelected: boolean;
17024
17160
  selectedOption: any;
17025
17161
  showFeedbackIcon: boolean;
17026
17162
  brandIconType: "android" | "ios";
@@ -17129,6 +17265,14 @@ declare const _default: {
17129
17265
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17130
17266
  default: any;
17131
17267
  };
17268
+ optionFlagKey: {
17269
+ type: import("vue").PropType<string>;
17270
+ default: any;
17271
+ };
17272
+ allSelected: {
17273
+ type: import("vue").PropType<boolean>;
17274
+ default: boolean;
17275
+ };
17132
17276
  selectedOption: {
17133
17277
  type: import("vue").PropType<unknown>;
17134
17278
  default: any;
@@ -17238,6 +17382,14 @@ declare const _default: {
17238
17382
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
17239
17383
  default: any;
17240
17384
  };
17385
+ optionFlagKey: {
17386
+ type: import("vue").PropType<string>;
17387
+ default: any;
17388
+ };
17389
+ allSelected: {
17390
+ type: import("vue").PropType<boolean>;
17391
+ default: boolean;
17392
+ };
17241
17393
  selectedOption: {
17242
17394
  type: import("vue").PropType<unknown>;
17243
17395
  default: any;
@@ -17282,6 +17434,8 @@ declare const _default: {
17282
17434
  optionIconKey: string;
17283
17435
  optionImageKey: string;
17284
17436
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
17437
+ optionFlagKey: string;
17438
+ allSelected: boolean;
17285
17439
  selectedOption: any;
17286
17440
  showFeedbackIcon: boolean;
17287
17441
  brandIconType: "android" | "ios";
@@ -17290,6 +17444,7 @@ declare const _default: {
17290
17444
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
17291
17445
  $slots: {
17292
17446
  image?(_: {}): any;
17447
+ flag?(_: {}): any;
17293
17448
  "icon-start"?(_: {}): any;
17294
17449
  "displayed-value"?(_: {}): any;
17295
17450
  "end-icon"?(_: {}): any;
@@ -17343,6 +17498,10 @@ declare const _default: {
17343
17498
  type: import("vue").PropType<(option: unknown) => string>;
17344
17499
  required: true;
17345
17500
  };
17501
+ allSelected: {
17502
+ type: import("vue").PropType<boolean>;
17503
+ default: boolean;
17504
+ };
17346
17505
  selectedOption: {
17347
17506
  type: import("vue").PropType<unknown>;
17348
17507
  required: true;
@@ -17389,6 +17548,10 @@ declare const _default: {
17389
17548
  type: import("vue").PropType<(option: unknown) => string>;
17390
17549
  required: true;
17391
17550
  };
17551
+ allSelected: {
17552
+ type: import("vue").PropType<boolean>;
17553
+ default: boolean;
17554
+ };
17392
17555
  selectedOption: {
17393
17556
  type: import("vue").PropType<unknown>;
17394
17557
  required: true;
@@ -17406,6 +17569,7 @@ declare const _default: {
17406
17569
  disabled: boolean;
17407
17570
  open: boolean;
17408
17571
  feedbackVariant: string;
17572
+ allSelected: boolean;
17409
17573
  displayedValue: any;
17410
17574
  }>;
17411
17575
  ButtonDropdownTrigger: import("vue").DefineComponent<{
@@ -18077,6 +18241,8 @@ declare const _default: {
18077
18241
  optionIconKey: string;
18078
18242
  optionImageKey: string;
18079
18243
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18244
+ optionFlagKey: string;
18245
+ allSelected: boolean;
18080
18246
  selectedOption: any;
18081
18247
  showFeedbackIcon: boolean;
18082
18248
  brandIconType: "android" | "ios";
@@ -18165,6 +18331,14 @@ declare const _default: {
18165
18331
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18166
18332
  default: any;
18167
18333
  };
18334
+ optionFlagKey: {
18335
+ type: import("vue").PropType<string>;
18336
+ default: any;
18337
+ };
18338
+ allSelected: {
18339
+ type: import("vue").PropType<boolean>;
18340
+ default: boolean;
18341
+ };
18168
18342
  selectedOption: {
18169
18343
  type: import("vue").PropType<unknown>;
18170
18344
  default: any;
@@ -18187,7 +18361,7 @@ declare const _default: {
18187
18361
  };
18188
18362
  }>> & {
18189
18363
  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">;
18364
+ } & 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
18365
  $attrs: {
18192
18366
  [x: string]: unknown;
18193
18367
  };
@@ -18284,6 +18458,14 @@ declare const _default: {
18284
18458
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18285
18459
  default: any;
18286
18460
  };
18461
+ optionFlagKey: {
18462
+ type: import("vue").PropType<string>;
18463
+ default: any;
18464
+ };
18465
+ allSelected: {
18466
+ type: import("vue").PropType<boolean>;
18467
+ default: boolean;
18468
+ };
18287
18469
  selectedOption: {
18288
18470
  type: import("vue").PropType<unknown>;
18289
18471
  default: any;
@@ -18328,6 +18510,8 @@ declare const _default: {
18328
18510
  optionIconKey: string;
18329
18511
  optionImageKey: string;
18330
18512
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18513
+ optionFlagKey: string;
18514
+ allSelected: boolean;
18331
18515
  selectedOption: any;
18332
18516
  showFeedbackIcon: boolean;
18333
18517
  brandIconType: "android" | "ios";
@@ -18436,6 +18620,14 @@ declare const _default: {
18436
18620
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18437
18621
  default: any;
18438
18622
  };
18623
+ optionFlagKey: {
18624
+ type: import("vue").PropType<string>;
18625
+ default: any;
18626
+ };
18627
+ allSelected: {
18628
+ type: import("vue").PropType<boolean>;
18629
+ default: boolean;
18630
+ };
18439
18631
  selectedOption: {
18440
18632
  type: import("vue").PropType<unknown>;
18441
18633
  default: any;
@@ -18545,6 +18737,14 @@ declare const _default: {
18545
18737
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
18546
18738
  default: any;
18547
18739
  };
18740
+ optionFlagKey: {
18741
+ type: import("vue").PropType<string>;
18742
+ default: any;
18743
+ };
18744
+ allSelected: {
18745
+ type: import("vue").PropType<boolean>;
18746
+ default: boolean;
18747
+ };
18548
18748
  selectedOption: {
18549
18749
  type: import("vue").PropType<unknown>;
18550
18750
  default: any;
@@ -18589,6 +18789,8 @@ declare const _default: {
18589
18789
  optionIconKey: string;
18590
18790
  optionImageKey: string;
18591
18791
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
18792
+ optionFlagKey: string;
18793
+ allSelected: boolean;
18592
18794
  selectedOption: any;
18593
18795
  showFeedbackIcon: boolean;
18594
18796
  brandIconType: "android" | "ios";
@@ -18597,6 +18799,7 @@ declare const _default: {
18597
18799
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
18598
18800
  $slots: {
18599
18801
  image?(_: {}): any;
18802
+ flag?(_: {}): any;
18600
18803
  "icon-start"?(_: {}): any;
18601
18804
  "displayed-value"?(_: {}): any;
18602
18805
  "end-icon"?(_: {}): any;
@@ -19087,6 +19290,7 @@ declare const _default: {
19087
19290
  disabled: boolean;
19088
19291
  active: boolean;
19089
19292
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19293
+ optionFlagKey: string;
19090
19294
  optionTwoLinesVariant: "horizontal" | "vertical";
19091
19295
  optionTwoLinesKey: string;
19092
19296
  isIndeterminate: boolean;
@@ -19119,6 +19323,10 @@ declare const _default: {
19119
19323
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19120
19324
  default: string;
19121
19325
  };
19326
+ optionFlagKey: {
19327
+ type: import("vue").PropType<string>;
19328
+ default: any;
19329
+ };
19122
19330
  optionTwoLinesVariant: {
19123
19331
  type: import("vue").PropType<"horizontal" | "vertical">;
19124
19332
  default: any;
@@ -19184,7 +19392,7 @@ declare const _default: {
19184
19392
  };
19185
19393
  }>> & {
19186
19394
  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">;
19395
+ } & 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
19396
  $attrs: {
19189
19397
  [x: string]: unknown;
19190
19398
  };
@@ -19215,6 +19423,10 @@ declare const _default: {
19215
19423
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19216
19424
  default: string;
19217
19425
  };
19426
+ optionFlagKey: {
19427
+ type: import("vue").PropType<string>;
19428
+ default: any;
19429
+ };
19218
19430
  optionTwoLinesVariant: {
19219
19431
  type: import("vue").PropType<"horizontal" | "vertical">;
19220
19432
  default: any;
@@ -19287,6 +19499,7 @@ declare const _default: {
19287
19499
  disabled: boolean;
19288
19500
  active: boolean;
19289
19501
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19502
+ optionFlagKey: string;
19290
19503
  optionTwoLinesVariant: "horizontal" | "vertical";
19291
19504
  optionTwoLinesKey: string;
19292
19505
  isIndeterminate: boolean;
@@ -19339,6 +19552,10 @@ declare const _default: {
19339
19552
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19340
19553
  default: string;
19341
19554
  };
19555
+ optionFlagKey: {
19556
+ type: import("vue").PropType<string>;
19557
+ default: any;
19558
+ };
19342
19559
  optionTwoLinesVariant: {
19343
19560
  type: import("vue").PropType<"horizontal" | "vertical">;
19344
19561
  default: any;
@@ -19425,6 +19642,10 @@ declare const _default: {
19425
19642
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19426
19643
  default: string;
19427
19644
  };
19645
+ optionFlagKey: {
19646
+ type: import("vue").PropType<string>;
19647
+ default: any;
19648
+ };
19428
19649
  optionTwoLinesVariant: {
19429
19650
  type: import("vue").PropType<"horizontal" | "vertical">;
19430
19651
  default: any;
@@ -19497,6 +19718,7 @@ declare const _default: {
19497
19718
  disabled: boolean;
19498
19719
  active: boolean;
19499
19720
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19721
+ optionFlagKey: string;
19500
19722
  optionTwoLinesVariant: "horizontal" | "vertical";
19501
19723
  optionTwoLinesKey: string;
19502
19724
  isIndeterminate: boolean;
@@ -19515,6 +19737,7 @@ declare const _default: {
19515
19737
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
19516
19738
  $slots: {
19517
19739
  image?(_: {}): any;
19740
+ flag?(_: {}): any;
19518
19741
  "icon-start"?(_: {}): any;
19519
19742
  default?(_: {}): any;
19520
19743
  "icon-end"?(_: {}): any;
@@ -19566,6 +19789,10 @@ declare const _default: {
19566
19789
  type: import("vue").PropType<(option: unknown) => string>;
19567
19790
  required: true;
19568
19791
  };
19792
+ allSelected: {
19793
+ type: import("vue").PropType<boolean>;
19794
+ default: boolean;
19795
+ };
19569
19796
  selectedOption: {
19570
19797
  type: import("vue").PropType<unknown>;
19571
19798
  required: true;
@@ -19612,6 +19839,10 @@ declare const _default: {
19612
19839
  type: import("vue").PropType<(option: unknown) => string>;
19613
19840
  required: true;
19614
19841
  };
19842
+ allSelected: {
19843
+ type: import("vue").PropType<boolean>;
19844
+ default: boolean;
19845
+ };
19615
19846
  selectedOption: {
19616
19847
  type: import("vue").PropType<unknown>;
19617
19848
  required: true;
@@ -19629,6 +19860,7 @@ declare const _default: {
19629
19860
  disabled: boolean;
19630
19861
  open: boolean;
19631
19862
  feedbackVariant: string;
19863
+ allSelected: boolean;
19632
19864
  displayedValue: any;
19633
19865
  }> | ({
19634
19866
  new (...args: any[]): {
@@ -19675,11 +19907,13 @@ declare const _default: {
19675
19907
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19676
19908
  optionEndIconKey: string;
19677
19909
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
19910
+ optionFlagKey: string;
19678
19911
  valueToCopy: string;
19679
19912
  disabledOptionKey: string;
19680
19913
  optionTwoLinesVariant: "horizontal" | "vertical";
19681
19914
  optionTwoLinesKey: string;
19682
19915
  groupedOptions: boolean;
19916
+ comparingKey: string;
19683
19917
  fullWidth: boolean;
19684
19918
  optionsListWidth: string;
19685
19919
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -19860,6 +20094,10 @@ declare const _default: {
19860
20094
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
19861
20095
  default: any;
19862
20096
  };
20097
+ optionFlagKey: {
20098
+ type: import("vue").PropType<string>;
20099
+ default: any;
20100
+ };
19863
20101
  valueToCopy: {
19864
20102
  type: import("vue").PropType<string>;
19865
20103
  default: any;
@@ -19880,6 +20118,10 @@ declare const _default: {
19880
20118
  type: import("vue").PropType<boolean>;
19881
20119
  default: boolean;
19882
20120
  };
20121
+ comparingKey: {
20122
+ type: import("vue").PropType<string>;
20123
+ default: any;
20124
+ };
19883
20125
  fullWidth: {
19884
20126
  type: import("vue").PropType<boolean>;
19885
20127
  default: boolean;
@@ -19910,7 +20152,7 @@ declare const _default: {
19910
20152
  onOnsearch?: (value: string) => any;
19911
20153
  onOpened?: () => any;
19912
20154
  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">;
20155
+ } & 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
20156
  $attrs: {
19915
20157
  [x: string]: unknown;
19916
20158
  };
@@ -20099,6 +20341,10 @@ declare const _default: {
20099
20341
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20100
20342
  default: any;
20101
20343
  };
20344
+ optionFlagKey: {
20345
+ type: import("vue").PropType<string>;
20346
+ default: any;
20347
+ };
20102
20348
  valueToCopy: {
20103
20349
  type: import("vue").PropType<string>;
20104
20350
  default: any;
@@ -20119,6 +20365,10 @@ declare const _default: {
20119
20365
  type: import("vue").PropType<boolean>;
20120
20366
  default: boolean;
20121
20367
  };
20368
+ comparingKey: {
20369
+ type: import("vue").PropType<string>;
20370
+ default: any;
20371
+ };
20122
20372
  fullWidth: {
20123
20373
  type: import("vue").PropType<boolean>;
20124
20374
  default: boolean;
@@ -20203,11 +20453,13 @@ declare const _default: {
20203
20453
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20204
20454
  optionEndIconKey: string;
20205
20455
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20456
+ optionFlagKey: string;
20206
20457
  valueToCopy: string;
20207
20458
  disabledOptionKey: string;
20208
20459
  optionTwoLinesVariant: "horizontal" | "vertical";
20209
20460
  optionTwoLinesKey: string;
20210
20461
  groupedOptions: boolean;
20462
+ comparingKey: string;
20211
20463
  fullWidth: boolean;
20212
20464
  optionsListWidth: string;
20213
20465
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -20408,6 +20660,10 @@ declare const _default: {
20408
20660
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20409
20661
  default: any;
20410
20662
  };
20663
+ optionFlagKey: {
20664
+ type: import("vue").PropType<string>;
20665
+ default: any;
20666
+ };
20411
20667
  valueToCopy: {
20412
20668
  type: import("vue").PropType<string>;
20413
20669
  default: any;
@@ -20428,6 +20684,10 @@ declare const _default: {
20428
20684
  type: import("vue").PropType<boolean>;
20429
20685
  default: boolean;
20430
20686
  };
20687
+ comparingKey: {
20688
+ type: import("vue").PropType<string>;
20689
+ default: any;
20690
+ };
20431
20691
  fullWidth: {
20432
20692
  type: import("vue").PropType<boolean>;
20433
20693
  default: boolean;
@@ -20640,6 +20900,10 @@ declare const _default: {
20640
20900
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
20641
20901
  default: any;
20642
20902
  };
20903
+ optionFlagKey: {
20904
+ type: import("vue").PropType<string>;
20905
+ default: any;
20906
+ };
20643
20907
  valueToCopy: {
20644
20908
  type: import("vue").PropType<string>;
20645
20909
  default: any;
@@ -20660,6 +20924,10 @@ declare const _default: {
20660
20924
  type: import("vue").PropType<boolean>;
20661
20925
  default: boolean;
20662
20926
  };
20927
+ comparingKey: {
20928
+ type: import("vue").PropType<string>;
20929
+ default: any;
20930
+ };
20663
20931
  fullWidth: {
20664
20932
  type: import("vue").PropType<boolean>;
20665
20933
  default: boolean;
@@ -20744,11 +21012,13 @@ declare const _default: {
20744
21012
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20745
21013
  optionEndIconKey: string;
20746
21014
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21015
+ optionFlagKey: string;
20747
21016
  valueToCopy: string;
20748
21017
  disabledOptionKey: string;
20749
21018
  optionTwoLinesVariant: "horizontal" | "vertical";
20750
21019
  optionTwoLinesKey: string;
20751
21020
  groupedOptions: boolean;
21021
+ comparingKey: string;
20752
21022
  fullWidth: boolean;
20753
21023
  optionsListWidth: string;
20754
21024
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
@@ -20782,11 +21052,13 @@ declare const _default: {
20782
21052
  optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
20783
21053
  optionAndIconKey: string;
20784
21054
  optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21055
+ optionFlagKey: string;
20785
21056
  feedbackVariant: "success" | "warning" | "error";
20786
21057
  valueToCopy: string;
20787
21058
  statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
20788
21059
  size: "small" | "medium" | "large";
20789
21060
  showAllSelectedText: boolean;
21061
+ allSelected: boolean;
20790
21062
  onKeydown: (event: any) => void;
20791
21063
  onClick: () => void;
20792
21064
  };
@@ -21305,6 +21577,7 @@ declare const _default: {
21305
21577
  disabled: boolean;
21306
21578
  active: boolean;
21307
21579
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21580
+ optionFlagKey: string;
21308
21581
  optionTwoLinesVariant: "horizontal" | "vertical";
21309
21582
  optionTwoLinesKey: string;
21310
21583
  isIndeterminate: boolean;
@@ -21337,6 +21610,10 @@ declare const _default: {
21337
21610
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21338
21611
  default: string;
21339
21612
  };
21613
+ optionFlagKey: {
21614
+ type: import("vue").PropType<string>;
21615
+ default: any;
21616
+ };
21340
21617
  optionTwoLinesVariant: {
21341
21618
  type: import("vue").PropType<"horizontal" | "vertical">;
21342
21619
  default: any;
@@ -21402,7 +21679,7 @@ declare const _default: {
21402
21679
  };
21403
21680
  }>> & {
21404
21681
  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">;
21682
+ } & 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
21683
  $attrs: {
21407
21684
  [x: string]: unknown;
21408
21685
  };
@@ -21433,6 +21710,10 @@ declare const _default: {
21433
21710
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21434
21711
  default: string;
21435
21712
  };
21713
+ optionFlagKey: {
21714
+ type: import("vue").PropType<string>;
21715
+ default: any;
21716
+ };
21436
21717
  optionTwoLinesVariant: {
21437
21718
  type: import("vue").PropType<"horizontal" | "vertical">;
21438
21719
  default: any;
@@ -21505,6 +21786,7 @@ declare const _default: {
21505
21786
  disabled: boolean;
21506
21787
  active: boolean;
21507
21788
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
21789
+ optionFlagKey: string;
21508
21790
  optionTwoLinesVariant: "horizontal" | "vertical";
21509
21791
  optionTwoLinesKey: string;
21510
21792
  isIndeterminate: boolean;
@@ -21557,6 +21839,10 @@ declare const _default: {
21557
21839
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21558
21840
  default: string;
21559
21841
  };
21842
+ optionFlagKey: {
21843
+ type: import("vue").PropType<string>;
21844
+ default: any;
21845
+ };
21560
21846
  optionTwoLinesVariant: {
21561
21847
  type: import("vue").PropType<"horizontal" | "vertical">;
21562
21848
  default: any;
@@ -21643,6 +21929,10 @@ declare const _default: {
21643
21929
  type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
21644
21930
  default: string;
21645
21931
  };
21932
+ optionFlagKey: {
21933
+ type: import("vue").PropType<string>;
21934
+ default: any;
21935
+ };
21646
21936
  optionTwoLinesVariant: {
21647
21937
  type: import("vue").PropType<"horizontal" | "vertical">;
21648
21938
  default: any;
@@ -21715,6 +22005,7 @@ declare const _default: {
21715
22005
  disabled: boolean;
21716
22006
  active: boolean;
21717
22007
  endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
22008
+ optionFlagKey: string;
21718
22009
  optionTwoLinesVariant: "horizontal" | "vertical";
21719
22010
  optionTwoLinesKey: string;
21720
22011
  isIndeterminate: boolean;
@@ -21733,6 +22024,7 @@ declare const _default: {
21733
22024
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
21734
22025
  $slots: {
21735
22026
  image?(_: {}): any;
22027
+ flag?(_: {}): any;
21736
22028
  "icon-start"?(_: {}): any;
21737
22029
  default?(_: {}): any;
21738
22030
  "icon-end"?(_: {}): any;