@ironsource/shared-ui 2.1.8-test.1 → 2.1.9-test.0

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 (46) hide show
  1. package/Chart.vue_vue_type_style_index_0_scoped_ea1e5c3e_lang.css +1 -0
  2. package/ChartHeader.vue_vue_type_style_index_0_scoped_4c37736e_lang.css +1 -0
  3. package/ChartLegend.vue_vue_type_style_index_0_scoped_c0f71a49_lang.css +1 -0
  4. package/DropdownV4.vue_vue_type_style_index_0_scoped_119e4bc3_lang.css +1 -0
  5. package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
  6. package/GroupOption.vue_vue_type_style_index_0_scoped_5f372a81_lang.css +1 -0
  7. package/SettingsHeader.vue_vue_type_style_index_0_scoped_9b6cd9d9_lang.css +1 -0
  8. package/Typography.vue_vue_type_style_index_0_scoped_992962bc_lang.css +1 -0
  9. package/components/chart/Chart.vue.d.ts +5 -0
  10. package/components/chart/Chart.vue.js +4 -4
  11. package/components/chart/Chart.vue2.js +51 -49
  12. package/components/chart/ChartHeader.vue.d.ts +5 -0
  13. package/components/chart/ChartHeader.vue.js +2 -2
  14. package/components/chart/ChartHeader.vue2.js +35 -22
  15. package/components/chart/ChartLegend.vue.js +3 -3
  16. package/components/chart/ChartLegend.vue2.js +35 -28
  17. package/components/chart/SettingsHeader.vue.js +3 -3
  18. package/components/chart/SettingsHeader.vue2.js +33 -26
  19. package/components/chart/index.d.ts +20 -1
  20. package/components/dropdown/common/Dropdown.common.d.ts +1 -0
  21. package/components/dropdown/common/Dropdown.common.js +207 -178
  22. package/components/dropdown/common/consts.d.ts +1 -0
  23. package/components/dropdown/common/consts.js +4 -0
  24. package/components/dropdown/common/useGroupedOptions.d.ts +10 -0
  25. package/components/dropdown/common/useGroupedOptions.js +57 -0
  26. package/components/dropdown/v4/DropdownV4.vue.d.ts +12 -0
  27. package/components/dropdown/v4/DropdownV4.vue.js +4 -4
  28. package/components/dropdown/v4/DropdownV4.vue2.js +184 -162
  29. package/components/dropdown/v4/GroupOption.vue.d.ts +9 -0
  30. package/components/dropdown/v4/GroupOption.vue.js +7 -0
  31. package/components/dropdown/v4/GroupOption.vue2.js +29 -0
  32. package/components/dropdown/v4/dropdownStoryArgs.d.ts +8 -0
  33. package/components/dropdown/v4/index.d.ts +45 -1
  34. package/components/typography/v4/Typography.vue.js +2 -2
  35. package/components/typography/v4/Typography.vue2.js +1 -1
  36. package/index.d.ts +90 -3
  37. package/index.js +111 -116
  38. package/mocks/apps.d.ts +7 -0
  39. package/package.json +1 -1
  40. package/utils/formatNumbers.js +7 -15
  41. package/Chart.vue_vue_type_style_index_0_scoped_df85e0af_lang.css +0 -1
  42. package/ChartHeader.vue_vue_type_style_index_0_scoped_2e3de9c5_lang.css +0 -1
  43. package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +0 -1
  44. package/DropdownV4.vue_vue_type_style_index_0_scoped_00ccab6b_lang.css +0 -1
  45. package/SettingsHeader.vue_vue_type_style_index_0_scoped_1791e4fe_lang.css +0 -1
  46. package/Typography.vue_vue_type_style_index_0_scoped_b00956b7_lang.css +0 -1
@@ -239,6 +239,14 @@ export declare const dropDownStoryArgs: {
239
239
  category: string;
240
240
  };
241
241
  };
242
+ groupedOptions: {
243
+ control: {
244
+ type: string;
245
+ };
246
+ table: {
247
+ category: string;
248
+ };
249
+ };
242
250
  valueToCopy: {
243
251
  control: {
244
252
  type: string;
@@ -1633,11 +1633,13 @@ declare const DropdownTypes: () => (({
1633
1633
  disabledOptionKey: string;
1634
1634
  optionTwoLinesVariant: "horizontal" | "vertical";
1635
1635
  optionTwoLinesKey: string;
1636
+ groupedOptions: boolean;
1636
1637
  fullWidth: boolean;
1637
1638
  optionsListWidth: string;
1638
1639
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
1639
1640
  disableVirtualScroll: boolean;
1640
1641
  overrideOptionCountCalculation: (option: unknown) => number;
1642
+ withConditions: boolean;
1641
1643
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
1642
1644
  theme: {
1643
1645
  type: import("vue").PropType<string>;
@@ -1829,6 +1831,10 @@ declare const DropdownTypes: () => (({
1829
1831
  type: import("vue").PropType<string>;
1830
1832
  default: any;
1831
1833
  };
1834
+ groupedOptions: {
1835
+ type: import("vue").PropType<boolean>;
1836
+ default: boolean;
1837
+ };
1832
1838
  fullWidth: {
1833
1839
  type: import("vue").PropType<boolean>;
1834
1840
  default: boolean;
@@ -1849,6 +1855,11 @@ declare const DropdownTypes: () => (({
1849
1855
  type: import("vue").PropType<(option: unknown) => number>;
1850
1856
  default: any;
1851
1857
  };
1858
+ withConditions: {
1859
+ type: import("vue").PropType<boolean>;
1860
+ required: true;
1861
+ default: boolean;
1862
+ };
1852
1863
  }>> & {
1853
1864
  onCopyToClipboard?: () => any;
1854
1865
  onClear?: () => any;
@@ -1859,7 +1870,7 @@ declare const DropdownTypes: () => (({
1859
1870
  onOnsearch?: (value: string) => any;
1860
1871
  onOpened?: () => any;
1861
1872
  onClosed?: () => any;
1862
- } & 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" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
1873
+ } & 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" | "withConditions">;
1863
1874
  $attrs: {
1864
1875
  [x: string]: unknown;
1865
1876
  };
@@ -2064,6 +2075,10 @@ declare const DropdownTypes: () => (({
2064
2075
  type: import("vue").PropType<string>;
2065
2076
  default: any;
2066
2077
  };
2078
+ groupedOptions: {
2079
+ type: import("vue").PropType<boolean>;
2080
+ default: boolean;
2081
+ };
2067
2082
  fullWidth: {
2068
2083
  type: import("vue").PropType<boolean>;
2069
2084
  default: boolean;
@@ -2084,6 +2099,11 @@ declare const DropdownTypes: () => (({
2084
2099
  type: import("vue").PropType<(option: unknown) => number>;
2085
2100
  default: any;
2086
2101
  };
2102
+ withConditions: {
2103
+ type: import("vue").PropType<boolean>;
2104
+ required: true;
2105
+ default: boolean;
2106
+ };
2087
2107
  }>> & {
2088
2108
  onCopyToClipboard?: () => any;
2089
2109
  onClear?: () => any;
@@ -2152,11 +2172,13 @@ declare const DropdownTypes: () => (({
2152
2172
  disabledOptionKey: string;
2153
2173
  optionTwoLinesVariant: "horizontal" | "vertical";
2154
2174
  optionTwoLinesKey: string;
2175
+ groupedOptions: boolean;
2155
2176
  fullWidth: boolean;
2156
2177
  optionsListWidth: string;
2157
2178
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
2158
2179
  disableVirtualScroll: boolean;
2159
2180
  overrideOptionCountCalculation: (option: unknown) => number;
2181
+ withConditions: boolean;
2160
2182
  }, {}, string> & {
2161
2183
  beforeCreate?: (() => void) | (() => void)[];
2162
2184
  created?: (() => void) | (() => void)[];
@@ -2368,6 +2390,10 @@ declare const DropdownTypes: () => (({
2368
2390
  type: import("vue").PropType<string>;
2369
2391
  default: any;
2370
2392
  };
2393
+ groupedOptions: {
2394
+ type: import("vue").PropType<boolean>;
2395
+ default: boolean;
2396
+ };
2371
2397
  fullWidth: {
2372
2398
  type: import("vue").PropType<boolean>;
2373
2399
  default: boolean;
@@ -2388,6 +2414,11 @@ declare const DropdownTypes: () => (({
2388
2414
  type: import("vue").PropType<(option: unknown) => number>;
2389
2415
  default: any;
2390
2416
  };
2417
+ withConditions: {
2418
+ type: import("vue").PropType<boolean>;
2419
+ required: true;
2420
+ default: boolean;
2421
+ };
2391
2422
  }>> & {
2392
2423
  onCopyToClipboard?: () => any;
2393
2424
  onClear?: () => any;
@@ -2596,6 +2627,10 @@ declare const DropdownTypes: () => (({
2596
2627
  type: import("vue").PropType<string>;
2597
2628
  default: any;
2598
2629
  };
2630
+ groupedOptions: {
2631
+ type: import("vue").PropType<boolean>;
2632
+ default: boolean;
2633
+ };
2599
2634
  fullWidth: {
2600
2635
  type: import("vue").PropType<boolean>;
2601
2636
  default: boolean;
@@ -2616,6 +2651,11 @@ declare const DropdownTypes: () => (({
2616
2651
  type: import("vue").PropType<(option: unknown) => number>;
2617
2652
  default: any;
2618
2653
  };
2654
+ withConditions: {
2655
+ type: import("vue").PropType<boolean>;
2656
+ required: true;
2657
+ default: boolean;
2658
+ };
2619
2659
  }>> & {
2620
2660
  onCopyToClipboard?: () => any;
2621
2661
  onClear?: () => any;
@@ -2684,11 +2724,13 @@ declare const DropdownTypes: () => (({
2684
2724
  disabledOptionKey: string;
2685
2725
  optionTwoLinesVariant: "horizontal" | "vertical";
2686
2726
  optionTwoLinesKey: string;
2727
+ groupedOptions: boolean;
2687
2728
  fullWidth: boolean;
2688
2729
  optionsListWidth: string;
2689
2730
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
2690
2731
  disableVirtualScroll: boolean;
2691
2732
  overrideOptionCountCalculation: (option: unknown) => number;
2733
+ withConditions: boolean;
2692
2734
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
2693
2735
  $slots: {
2694
2736
  label?(_: {}): any;
@@ -2726,10 +2768,12 @@ declare const DropdownTypes: () => (({
2726
2768
  onClick: () => void;
2727
2769
  };
2728
2770
  }): any;
2771
+ "dropdown-conditions"?(_: {}): any;
2729
2772
  "inline-search"?(_: {}): any;
2730
2773
  "input-list"?(_: {
2731
2774
  open: true;
2732
2775
  }): any;
2776
+ "group-option"?(_: {}): any;
2733
2777
  default?(_: {
2734
2778
  option: unknown;
2735
2779
  index: number;
@@ -1,7 +1,7 @@
1
1
  import o from "./Typography.vue2.js";
2
2
  /* empty css */import p from "../../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../../Typography.vue_vue_type_style_index_0_scoped_b00956b7_lang.css"; //*');
4
- const t = /* @__PURE__ */ p(o, [["__scopeId", "data-v-b00956b7"]]);
3
+ // import "../../../Typography.vue_vue_type_style_index_0_scoped_992962bc_lang.css"; //*');
4
+ const t = /* @__PURE__ */ p(o, [["__scopeId", "data-v-992962bc"]]);
5
5
  export {
6
6
  t as default
7
7
  };
@@ -1,4 +1,4 @@
1
- import "../../../Typography.vue_vue_type_style_index_0_scoped_b00956b7_lang.css"; import { defineComponent as m, ref as y, computed as l, openBlock as o, createBlock as i, unref as e, withCtx as s, resolveDynamicComponent as d, normalizeClass as f, renderSlot as h } from "vue";
1
+ import "../../../Typography.vue_vue_type_style_index_0_scoped_992962bc_lang.css"; import { defineComponent as m, ref as y, computed as l, openBlock as o, createBlock as i, unref as e, withCtx as s, resolveDynamicComponent as d, normalizeClass as f, renderSlot as h } from "vue";
2
2
  import T from "../../tooltip/v4/TooltipV4.vue.js";
3
3
  const C = /* @__PURE__ */ m({
4
4
  __name: "Typography",
package/index.d.ts CHANGED
@@ -15542,11 +15542,13 @@ declare const _default: {
15542
15542
  disabledOptionKey: string;
15543
15543
  optionTwoLinesVariant: "horizontal" | "vertical";
15544
15544
  optionTwoLinesKey: string;
15545
+ groupedOptions: boolean;
15545
15546
  fullWidth: boolean;
15546
15547
  optionsListWidth: string;
15547
15548
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
15548
15549
  disableVirtualScroll: boolean;
15549
15550
  overrideOptionCountCalculation: (option: unknown) => number;
15551
+ withConditions: boolean;
15550
15552
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
15551
15553
  theme: {
15552
15554
  type: import("vue").PropType<string>;
@@ -15738,6 +15740,10 @@ declare const _default: {
15738
15740
  type: import("vue").PropType<string>;
15739
15741
  default: any;
15740
15742
  };
15743
+ groupedOptions: {
15744
+ type: import("vue").PropType<boolean>;
15745
+ default: boolean;
15746
+ };
15741
15747
  fullWidth: {
15742
15748
  type: import("vue").PropType<boolean>;
15743
15749
  default: boolean;
@@ -15758,6 +15764,11 @@ declare const _default: {
15758
15764
  type: import("vue").PropType<(option: unknown) => number>;
15759
15765
  default: any;
15760
15766
  };
15767
+ withConditions: {
15768
+ type: import("vue").PropType<boolean>;
15769
+ required: true;
15770
+ default: boolean;
15771
+ };
15761
15772
  }>> & {
15762
15773
  onCopyToClipboard?: () => any;
15763
15774
  onClear?: () => any;
@@ -15768,7 +15779,7 @@ declare const _default: {
15768
15779
  onOnsearch?: (value: string) => any;
15769
15780
  onOpened?: () => any;
15770
15781
  onClosed?: () => any;
15771
- } & 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" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
15782
+ } & 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" | "withConditions">;
15772
15783
  $attrs: {
15773
15784
  [x: string]: unknown;
15774
15785
  };
@@ -15973,6 +15984,10 @@ declare const _default: {
15973
15984
  type: import("vue").PropType<string>;
15974
15985
  default: any;
15975
15986
  };
15987
+ groupedOptions: {
15988
+ type: import("vue").PropType<boolean>;
15989
+ default: boolean;
15990
+ };
15976
15991
  fullWidth: {
15977
15992
  type: import("vue").PropType<boolean>;
15978
15993
  default: boolean;
@@ -15993,6 +16008,11 @@ declare const _default: {
15993
16008
  type: import("vue").PropType<(option: unknown) => number>;
15994
16009
  default: any;
15995
16010
  };
16011
+ withConditions: {
16012
+ type: import("vue").PropType<boolean>;
16013
+ required: true;
16014
+ default: boolean;
16015
+ };
15996
16016
  }>> & {
15997
16017
  onCopyToClipboard?: () => any;
15998
16018
  onClear?: () => any;
@@ -16061,11 +16081,13 @@ declare const _default: {
16061
16081
  disabledOptionKey: string;
16062
16082
  optionTwoLinesVariant: "horizontal" | "vertical";
16063
16083
  optionTwoLinesKey: string;
16084
+ groupedOptions: boolean;
16064
16085
  fullWidth: boolean;
16065
16086
  optionsListWidth: string;
16066
16087
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16067
16088
  disableVirtualScroll: boolean;
16068
16089
  overrideOptionCountCalculation: (option: unknown) => number;
16090
+ withConditions: boolean;
16069
16091
  }, {}, string> & {
16070
16092
  beforeCreate?: (() => void) | (() => void)[];
16071
16093
  created?: (() => void) | (() => void)[];
@@ -16277,6 +16299,10 @@ declare const _default: {
16277
16299
  type: import("vue").PropType<string>;
16278
16300
  default: any;
16279
16301
  };
16302
+ groupedOptions: {
16303
+ type: import("vue").PropType<boolean>;
16304
+ default: boolean;
16305
+ };
16280
16306
  fullWidth: {
16281
16307
  type: import("vue").PropType<boolean>;
16282
16308
  default: boolean;
@@ -16297,6 +16323,11 @@ declare const _default: {
16297
16323
  type: import("vue").PropType<(option: unknown) => number>;
16298
16324
  default: any;
16299
16325
  };
16326
+ withConditions: {
16327
+ type: import("vue").PropType<boolean>;
16328
+ required: true;
16329
+ default: boolean;
16330
+ };
16300
16331
  }>> & {
16301
16332
  onCopyToClipboard?: () => any;
16302
16333
  onClear?: () => any;
@@ -16505,6 +16536,10 @@ declare const _default: {
16505
16536
  type: import("vue").PropType<string>;
16506
16537
  default: any;
16507
16538
  };
16539
+ groupedOptions: {
16540
+ type: import("vue").PropType<boolean>;
16541
+ default: boolean;
16542
+ };
16508
16543
  fullWidth: {
16509
16544
  type: import("vue").PropType<boolean>;
16510
16545
  default: boolean;
@@ -16525,6 +16560,11 @@ declare const _default: {
16525
16560
  type: import("vue").PropType<(option: unknown) => number>;
16526
16561
  default: any;
16527
16562
  };
16563
+ withConditions: {
16564
+ type: import("vue").PropType<boolean>;
16565
+ required: true;
16566
+ default: boolean;
16567
+ };
16528
16568
  }>> & {
16529
16569
  onCopyToClipboard?: () => any;
16530
16570
  onClear?: () => any;
@@ -16593,11 +16633,13 @@ declare const _default: {
16593
16633
  disabledOptionKey: string;
16594
16634
  optionTwoLinesVariant: "horizontal" | "vertical";
16595
16635
  optionTwoLinesKey: string;
16636
+ groupedOptions: boolean;
16596
16637
  fullWidth: boolean;
16597
16638
  optionsListWidth: string;
16598
16639
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
16599
16640
  disableVirtualScroll: boolean;
16600
16641
  overrideOptionCountCalculation: (option: unknown) => number;
16642
+ withConditions: boolean;
16601
16643
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
16602
16644
  $slots: {
16603
16645
  label?(_: {}): any;
@@ -16635,10 +16677,12 @@ declare const _default: {
16635
16677
  onClick: () => void;
16636
16678
  };
16637
16679
  }): any;
16680
+ "dropdown-conditions"?(_: {}): any;
16638
16681
  "inline-search"?(_: {}): any;
16639
16682
  "input-list"?(_: {
16640
16683
  open: true;
16641
16684
  }): any;
16685
+ "group-option"?(_: {}): any;
16642
16686
  default?(_: {
16643
16687
  option: unknown;
16644
16688
  index: number;
@@ -19581,11 +19625,13 @@ declare const _default: {
19581
19625
  disabledOptionKey: string;
19582
19626
  optionTwoLinesVariant: "horizontal" | "vertical";
19583
19627
  optionTwoLinesKey: string;
19628
+ groupedOptions: boolean;
19584
19629
  fullWidth: boolean;
19585
19630
  optionsListWidth: string;
19586
19631
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
19587
19632
  disableVirtualScroll: boolean;
19588
19633
  overrideOptionCountCalculation: (option: unknown) => number;
19634
+ withConditions: boolean;
19589
19635
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
19590
19636
  theme: {
19591
19637
  type: import("vue").PropType<string>;
@@ -19777,6 +19823,10 @@ declare const _default: {
19777
19823
  type: import("vue").PropType<string>;
19778
19824
  default: any;
19779
19825
  };
19826
+ groupedOptions: {
19827
+ type: import("vue").PropType<boolean>;
19828
+ default: boolean;
19829
+ };
19780
19830
  fullWidth: {
19781
19831
  type: import("vue").PropType<boolean>;
19782
19832
  default: boolean;
@@ -19797,6 +19847,11 @@ declare const _default: {
19797
19847
  type: import("vue").PropType<(option: unknown) => number>;
19798
19848
  default: any;
19799
19849
  };
19850
+ withConditions: {
19851
+ type: import("vue").PropType<boolean>;
19852
+ required: true;
19853
+ default: boolean;
19854
+ };
19800
19855
  }>> & {
19801
19856
  onCopyToClipboard?: () => any;
19802
19857
  onClear?: () => any;
@@ -19807,7 +19862,7 @@ declare const _default: {
19807
19862
  onOnsearch?: (value: string) => any;
19808
19863
  onOpened?: () => any;
19809
19864
  onClosed?: () => any;
19810
- } & 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" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
19865
+ } & 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" | "withConditions">;
19811
19866
  $attrs: {
19812
19867
  [x: string]: unknown;
19813
19868
  };
@@ -20012,6 +20067,10 @@ declare const _default: {
20012
20067
  type: import("vue").PropType<string>;
20013
20068
  default: any;
20014
20069
  };
20070
+ groupedOptions: {
20071
+ type: import("vue").PropType<boolean>;
20072
+ default: boolean;
20073
+ };
20015
20074
  fullWidth: {
20016
20075
  type: import("vue").PropType<boolean>;
20017
20076
  default: boolean;
@@ -20032,6 +20091,11 @@ declare const _default: {
20032
20091
  type: import("vue").PropType<(option: unknown) => number>;
20033
20092
  default: any;
20034
20093
  };
20094
+ withConditions: {
20095
+ type: import("vue").PropType<boolean>;
20096
+ required: true;
20097
+ default: boolean;
20098
+ };
20035
20099
  }>> & {
20036
20100
  onCopyToClipboard?: () => any;
20037
20101
  onClear?: () => any;
@@ -20100,11 +20164,13 @@ declare const _default: {
20100
20164
  disabledOptionKey: string;
20101
20165
  optionTwoLinesVariant: "horizontal" | "vertical";
20102
20166
  optionTwoLinesKey: string;
20167
+ groupedOptions: boolean;
20103
20168
  fullWidth: boolean;
20104
20169
  optionsListWidth: string;
20105
20170
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
20106
20171
  disableVirtualScroll: boolean;
20107
20172
  overrideOptionCountCalculation: (option: unknown) => number;
20173
+ withConditions: boolean;
20108
20174
  }, {}, string> & {
20109
20175
  beforeCreate?: (() => void) | (() => void)[];
20110
20176
  created?: (() => void) | (() => void)[];
@@ -20316,6 +20382,10 @@ declare const _default: {
20316
20382
  type: import("vue").PropType<string>;
20317
20383
  default: any;
20318
20384
  };
20385
+ groupedOptions: {
20386
+ type: import("vue").PropType<boolean>;
20387
+ default: boolean;
20388
+ };
20319
20389
  fullWidth: {
20320
20390
  type: import("vue").PropType<boolean>;
20321
20391
  default: boolean;
@@ -20336,6 +20406,11 @@ declare const _default: {
20336
20406
  type: import("vue").PropType<(option: unknown) => number>;
20337
20407
  default: any;
20338
20408
  };
20409
+ withConditions: {
20410
+ type: import("vue").PropType<boolean>;
20411
+ required: true;
20412
+ default: boolean;
20413
+ };
20339
20414
  }>> & {
20340
20415
  onCopyToClipboard?: () => any;
20341
20416
  onClear?: () => any;
@@ -20544,6 +20619,10 @@ declare const _default: {
20544
20619
  type: import("vue").PropType<string>;
20545
20620
  default: any;
20546
20621
  };
20622
+ groupedOptions: {
20623
+ type: import("vue").PropType<boolean>;
20624
+ default: boolean;
20625
+ };
20547
20626
  fullWidth: {
20548
20627
  type: import("vue").PropType<boolean>;
20549
20628
  default: boolean;
@@ -20564,6 +20643,11 @@ declare const _default: {
20564
20643
  type: import("vue").PropType<(option: unknown) => number>;
20565
20644
  default: any;
20566
20645
  };
20646
+ withConditions: {
20647
+ type: import("vue").PropType<boolean>;
20648
+ required: true;
20649
+ default: boolean;
20650
+ };
20567
20651
  }>> & {
20568
20652
  onCopyToClipboard?: () => any;
20569
20653
  onClear?: () => any;
@@ -20632,11 +20716,13 @@ declare const _default: {
20632
20716
  disabledOptionKey: string;
20633
20717
  optionTwoLinesVariant: "horizontal" | "vertical";
20634
20718
  optionTwoLinesKey: string;
20719
+ groupedOptions: boolean;
20635
20720
  fullWidth: boolean;
20636
20721
  optionsListWidth: string;
20637
20722
  statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
20638
20723
  disableVirtualScroll: boolean;
20639
20724
  overrideOptionCountCalculation: (option: unknown) => number;
20725
+ withConditions: boolean;
20640
20726
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
20641
20727
  $slots: {
20642
20728
  label?(_: {}): any;
@@ -20674,10 +20760,12 @@ declare const _default: {
20674
20760
  onClick: () => void;
20675
20761
  };
20676
20762
  }): any;
20763
+ "dropdown-conditions"?(_: {}): any;
20677
20764
  "inline-search"?(_: {}): any;
20678
20765
  "input-list"?(_: {
20679
20766
  open: true;
20680
20767
  }): any;
20768
+ "group-option"?(_: {}): any;
20681
20769
  default?(_: {
20682
20770
  option: unknown;
20683
20771
  index: number;
@@ -23466,4 +23554,3 @@ export * from '@/components/banner';
23466
23554
  export * from '@/components/alert';
23467
23555
  export * from '@/components/autocomplete';
23468
23556
  export * from '@/components/chart';
23469
- export * from '@/utils';