@ironsource/shared-ui 2.1.12-rc.30 → 2.1.12-rc.31

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 (67) hide show
  1. package/ColumnPicker.vue_vue_type_style_index_0_scoped_ea8c7024_lang.css +1 -0
  2. package/DialogFooter.vue_vue_type_style_index_0_scoped_8b7f64fe_lang.css +1 -0
  3. package/DialogHeader.vue_vue_type_style_index_0_scoped_9a814ec3_lang.css +1 -0
  4. package/DialogV4.vue_vue_type_style_index_0_scoped_cc99f1e3_lang.css +1 -0
  5. package/OptionChip.vue_vue_type_style_index_0_scoped_538e4a21_lang.css +1 -0
  6. package/OptionV4.vue_vue_type_style_index_0_scoped_752a357d_lang.css +1 -0
  7. package/RemoveButton.vue_vue_type_style_index_0_scoped_ca7fc11d_lang.css +1 -0
  8. package/SortableItem.vue_vue_type_style_index_0_scoped_800cd503_lang.css +1 -0
  9. package/SortableItemLabel.vue_vue_type_style_index_0_scoped_a534c7af_lang.css +1 -0
  10. package/SortableList.vue_vue_type_style_index_0_scoped_84dc8525_lang.css +1 -0
  11. package/TooltipV4.vue_vue_type_style_index_0_scoped_8a451e54_lang.css +1 -0
  12. package/TooltipV4.vue_vue_type_style_index_1_lang.css +1 -1
  13. package/components/columnPicker/ColumnPicker.vue.d.ts +119 -0
  14. package/components/columnPicker/ColumnPicker.vue.js +7 -0
  15. package/components/columnPicker/ColumnPicker.vue2.js +322 -0
  16. package/components/columnPicker/OptionChip.vue.d.ts +53 -0
  17. package/components/columnPicker/OptionChip.vue.js +7 -0
  18. package/components/columnPicker/OptionChip.vue2.js +46 -0
  19. package/components/columnPicker/RemoveButton.vue.d.ts +38 -0
  20. package/components/columnPicker/RemoveButton.vue.js +7 -0
  21. package/components/columnPicker/RemoveButton.vue2.js +35 -0
  22. package/components/columnPicker/index.d.ts +388 -0
  23. package/components/columnPicker/index.js +6 -0
  24. package/components/columnPicker/mockData.d.ts +8 -0
  25. package/components/dialog/v3/Dialog.vue.d.ts +3 -3
  26. package/components/dialog/v3/index.d.ts +46 -46
  27. package/components/dialog/v4/DialogFooter.vue.d.ts +78 -0
  28. package/components/dialog/v4/DialogFooter.vue.js +7 -0
  29. package/components/dialog/v4/DialogFooter.vue2.js +60 -0
  30. package/components/dialog/v4/DialogHeader.vue.d.ts +60 -0
  31. package/components/dialog/v4/DialogHeader.vue.js +7 -0
  32. package/components/dialog/v4/DialogHeader.vue2.js +58 -0
  33. package/components/dialog/v4/DialogV4.vue.d.ts +9 -9
  34. package/components/dialog/v4/DialogV4.vue.js +3 -3
  35. package/components/dialog/v4/DialogV4.vue2.js +65 -107
  36. package/components/dialog/v4/index.d.ts +157 -157
  37. package/components/dropdown/v4/OptionV4.vue.d.ts +5 -0
  38. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  39. package/components/dropdown/v4/OptionV4.vue2.js +83 -70
  40. package/components/dropdown/v4/index.d.ts +20 -1
  41. package/components/sortableList/SortableItem.vue.d.ts +17 -2
  42. package/components/sortableList/SortableItem.vue.js +3 -3
  43. package/components/sortableList/SortableItem.vue2.js +86 -70
  44. package/components/sortableList/SortableItemLabel.vue.js +3 -3
  45. package/components/sortableList/SortableItemLabel.vue2.js +26 -23
  46. package/components/sortableList/SortableList.types.d.ts +1 -0
  47. package/components/sortableList/SortableList.vue.d.ts +10 -0
  48. package/components/sortableList/SortableList.vue.js +3 -3
  49. package/components/sortableList/SortableList.vue2.js +104 -96
  50. package/components/sortableList/composables/useHoverEffect.js +1 -1
  51. package/components/sortableList/index.d.ts +39 -1
  52. package/components/table/v4/storyUtils.d.ts +17 -0
  53. package/components/tooltip/v4/TooltipV4.vue.d.ts +5 -0
  54. package/components/tooltip/v4/TooltipV4.vue.js +2 -2
  55. package/components/tooltip/v4/TooltipV4.vue2.js +18 -17
  56. package/components/tooltip/v4/index.d.ts +20 -1
  57. package/index.d.ts +473 -320
  58. package/index.js +99 -95
  59. package/package.json +5 -1
  60. package/testids/index.d.ts +4 -0
  61. package/testids/index.js +29 -28
  62. package/DialogV4.vue_vue_type_style_index_0_scoped_eb226e31_lang.css +0 -1
  63. package/OptionV4.vue_vue_type_style_index_0_scoped_0287cebf_lang.css +0 -1
  64. package/SortableItem.vue_vue_type_style_index_0_scoped_48542664_lang.css +0 -1
  65. package/SortableItemLabel.vue_vue_type_style_index_0_scoped_f2ced2f4_lang.css +0 -1
  66. package/SortableList.vue_vue_type_style_index_0_scoped_8f267f88_lang.css +0 -1
  67. package/TooltipV4.vue_vue_type_style_index_0_scoped_bcb40ed4_lang.css +0 -1
package/index.d.ts CHANGED
@@ -1732,6 +1732,7 @@ declare const _default: {
1732
1732
  $props: Partial<{
1733
1733
  search: string;
1734
1734
  testId: string;
1735
+ variant: "default" | "compact";
1735
1736
  isLoading: boolean;
1736
1737
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1737
1738
  searchPlaceholder: string;
@@ -1739,6 +1740,7 @@ declare const _default: {
1739
1740
  selectedChildId: string | number;
1740
1741
  childListMaxHeight: string;
1741
1742
  searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1743
+ draggableArea: "handle" | "full";
1742
1744
  openId: string | number;
1743
1745
  selectedId: string | number;
1744
1746
  showSearch: boolean;
@@ -1755,6 +1757,10 @@ declare const _default: {
1755
1757
  type: import("vue").PropType<string>;
1756
1758
  default: string;
1757
1759
  };
1760
+ variant: {
1761
+ type: import("vue").PropType<"default" | "compact">;
1762
+ default: string;
1763
+ };
1758
1764
  isLoading: {
1759
1765
  type: import("vue").PropType<boolean>;
1760
1766
  default: boolean;
@@ -1785,6 +1791,10 @@ declare const _default: {
1785
1791
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1786
1792
  default: any;
1787
1793
  };
1794
+ draggableArea: {
1795
+ type: import("vue").PropType<"handle" | "full">;
1796
+ default: string;
1797
+ };
1788
1798
  openId: {
1789
1799
  type: import("vue").PropType<string | number>;
1790
1800
  default: any;
@@ -1824,7 +1834,7 @@ declare const _default: {
1824
1834
  "onUpdate:selectedId"?: (id: string | number) => any;
1825
1835
  "onUpdate:selectedChildId"?: (id: string | number) => any;
1826
1836
  "onUpdate:search"?: (query: string) => any;
1827
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "childListMaxHeight" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase">;
1837
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "variant" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "childListMaxHeight" | "searchHandler" | "draggableArea" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase">;
1828
1838
  $attrs: {
1829
1839
  [x: string]: unknown;
1830
1840
  };
@@ -1850,6 +1860,10 @@ declare const _default: {
1850
1860
  type: import("vue").PropType<string>;
1851
1861
  default: string;
1852
1862
  };
1863
+ variant: {
1864
+ type: import("vue").PropType<"default" | "compact">;
1865
+ default: string;
1866
+ };
1853
1867
  isLoading: {
1854
1868
  type: import("vue").PropType<boolean>;
1855
1869
  default: boolean;
@@ -1880,6 +1894,10 @@ declare const _default: {
1880
1894
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
1881
1895
  default: any;
1882
1896
  };
1897
+ draggableArea: {
1898
+ type: import("vue").PropType<"handle" | "full">;
1899
+ default: string;
1900
+ };
1883
1901
  openId: {
1884
1902
  type: import("vue").PropType<string | number>;
1885
1903
  default: any;
@@ -1933,6 +1951,7 @@ declare const _default: {
1933
1951
  }, string, {
1934
1952
  search: string;
1935
1953
  testId: string;
1954
+ variant: "default" | "compact";
1936
1955
  isLoading: boolean;
1937
1956
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
1938
1957
  searchPlaceholder: string;
@@ -1940,6 +1959,7 @@ declare const _default: {
1940
1959
  selectedChildId: string | number;
1941
1960
  childListMaxHeight: string;
1942
1961
  searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
1962
+ draggableArea: "handle" | "full";
1943
1963
  openId: string | number;
1944
1964
  selectedId: string | number;
1945
1965
  showSearch: boolean;
@@ -1976,6 +1996,10 @@ declare const _default: {
1976
1996
  type: import("vue").PropType<string>;
1977
1997
  default: string;
1978
1998
  };
1999
+ variant: {
2000
+ type: import("vue").PropType<"default" | "compact">;
2001
+ default: string;
2002
+ };
1979
2003
  isLoading: {
1980
2004
  type: import("vue").PropType<boolean>;
1981
2005
  default: boolean;
@@ -2006,6 +2030,10 @@ declare const _default: {
2006
2030
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2007
2031
  default: any;
2008
2032
  };
2033
+ draggableArea: {
2034
+ type: import("vue").PropType<"handle" | "full">;
2035
+ default: string;
2036
+ };
2009
2037
  openId: {
2010
2038
  type: import("vue").PropType<string | number>;
2011
2039
  default: any;
@@ -2058,6 +2086,10 @@ declare const _default: {
2058
2086
  type: import("vue").PropType<string>;
2059
2087
  default: string;
2060
2088
  };
2089
+ variant: {
2090
+ type: import("vue").PropType<"default" | "compact">;
2091
+ default: string;
2092
+ };
2061
2093
  isLoading: {
2062
2094
  type: import("vue").PropType<boolean>;
2063
2095
  default: boolean;
@@ -2088,6 +2120,10 @@ declare const _default: {
2088
2120
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2089
2121
  default: any;
2090
2122
  };
2123
+ draggableArea: {
2124
+ type: import("vue").PropType<"handle" | "full">;
2125
+ default: string;
2126
+ };
2091
2127
  openId: {
2092
2128
  type: import("vue").PropType<string | number>;
2093
2129
  default: any;
@@ -2141,6 +2177,7 @@ declare const _default: {
2141
2177
  }, string, {
2142
2178
  search: string;
2143
2179
  testId: string;
2180
+ variant: "default" | "compact";
2144
2181
  isLoading: boolean;
2145
2182
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2146
2183
  searchPlaceholder: string;
@@ -2148,6 +2185,7 @@ declare const _default: {
2148
2185
  selectedChildId: string | number;
2149
2186
  childListMaxHeight: string;
2150
2187
  searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
2188
+ draggableArea: "handle" | "full";
2151
2189
  openId: string | number;
2152
2190
  selectedId: string | number;
2153
2191
  showSearch: boolean;
@@ -2172,6 +2210,7 @@ declare const _default: {
2172
2210
  $props: Partial<{
2173
2211
  search: string;
2174
2212
  testId: string;
2213
+ variant: "default" | "compact";
2175
2214
  isLoading: boolean;
2176
2215
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2177
2216
  searchPlaceholder: string;
@@ -2179,6 +2218,7 @@ declare const _default: {
2179
2218
  selectedChildId: string | number;
2180
2219
  childListMaxHeight: string;
2181
2220
  searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
2221
+ draggableArea: "handle" | "full";
2182
2222
  openId: string | number;
2183
2223
  selectedId: string | number;
2184
2224
  showSearch: boolean;
@@ -2195,6 +2235,10 @@ declare const _default: {
2195
2235
  type: import("vue").PropType<string>;
2196
2236
  default: string;
2197
2237
  };
2238
+ variant: {
2239
+ type: import("vue").PropType<"default" | "compact">;
2240
+ default: string;
2241
+ };
2198
2242
  isLoading: {
2199
2243
  type: import("vue").PropType<boolean>;
2200
2244
  default: boolean;
@@ -2225,6 +2269,10 @@ declare const _default: {
2225
2269
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2226
2270
  default: any;
2227
2271
  };
2272
+ draggableArea: {
2273
+ type: import("vue").PropType<"handle" | "full">;
2274
+ default: string;
2275
+ };
2228
2276
  openId: {
2229
2277
  type: import("vue").PropType<string | number>;
2230
2278
  default: any;
@@ -2264,7 +2312,7 @@ declare const _default: {
2264
2312
  "onUpdate:selectedId"?: (id: string | number) => any;
2265
2313
  "onUpdate:selectedChildId"?: (id: string | number) => any;
2266
2314
  "onUpdate:search"?: (query: string) => any;
2267
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "childListMaxHeight" | "searchHandler" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase">;
2315
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "search" | "testId" | "variant" | "isLoading" | "displayValue" | "searchPlaceholder" | "items" | "selectedChildId" | "childListMaxHeight" | "searchHandler" | "draggableArea" | "openId" | "selectedId" | "showSearch" | "loadingRowCount" | "emptyStateTitle" | "isSticky" | "zIndexBase">;
2268
2316
  $attrs: {
2269
2317
  [x: string]: unknown;
2270
2318
  };
@@ -2290,6 +2338,10 @@ declare const _default: {
2290
2338
  type: import("vue").PropType<string>;
2291
2339
  default: string;
2292
2340
  };
2341
+ variant: {
2342
+ type: import("vue").PropType<"default" | "compact">;
2343
+ default: string;
2344
+ };
2293
2345
  isLoading: {
2294
2346
  type: import("vue").PropType<boolean>;
2295
2347
  default: boolean;
@@ -2320,6 +2372,10 @@ declare const _default: {
2320
2372
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2321
2373
  default: any;
2322
2374
  };
2375
+ draggableArea: {
2376
+ type: import("vue").PropType<"handle" | "full">;
2377
+ default: string;
2378
+ };
2323
2379
  openId: {
2324
2380
  type: import("vue").PropType<string | number>;
2325
2381
  default: any;
@@ -2373,6 +2429,7 @@ declare const _default: {
2373
2429
  }, string, {
2374
2430
  search: string;
2375
2431
  testId: string;
2432
+ variant: "default" | "compact";
2376
2433
  isLoading: boolean;
2377
2434
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2378
2435
  searchPlaceholder: string;
@@ -2380,6 +2437,7 @@ declare const _default: {
2380
2437
  selectedChildId: string | number;
2381
2438
  childListMaxHeight: string;
2382
2439
  searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
2440
+ draggableArea: "handle" | "full";
2383
2441
  openId: string | number;
2384
2442
  selectedId: string | number;
2385
2443
  showSearch: boolean;
@@ -2416,6 +2474,10 @@ declare const _default: {
2416
2474
  type: import("vue").PropType<string>;
2417
2475
  default: string;
2418
2476
  };
2477
+ variant: {
2478
+ type: import("vue").PropType<"default" | "compact">;
2479
+ default: string;
2480
+ };
2419
2481
  isLoading: {
2420
2482
  type: import("vue").PropType<boolean>;
2421
2483
  default: boolean;
@@ -2446,6 +2508,10 @@ declare const _default: {
2446
2508
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2447
2509
  default: any;
2448
2510
  };
2511
+ draggableArea: {
2512
+ type: import("vue").PropType<"handle" | "full">;
2513
+ default: string;
2514
+ };
2449
2515
  openId: {
2450
2516
  type: import("vue").PropType<string | number>;
2451
2517
  default: any;
@@ -2498,6 +2564,10 @@ declare const _default: {
2498
2564
  type: import("vue").PropType<string>;
2499
2565
  default: string;
2500
2566
  };
2567
+ variant: {
2568
+ type: import("vue").PropType<"default" | "compact">;
2569
+ default: string;
2570
+ };
2501
2571
  isLoading: {
2502
2572
  type: import("vue").PropType<boolean>;
2503
2573
  default: boolean;
@@ -2528,6 +2598,10 @@ declare const _default: {
2528
2598
  type: import("vue").PropType<(item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean>;
2529
2599
  default: any;
2530
2600
  };
2601
+ draggableArea: {
2602
+ type: import("vue").PropType<"handle" | "full">;
2603
+ default: string;
2604
+ };
2531
2605
  openId: {
2532
2606
  type: import("vue").PropType<string | number>;
2533
2607
  default: any;
@@ -2581,6 +2655,7 @@ declare const _default: {
2581
2655
  }, string, {
2582
2656
  search: string;
2583
2657
  testId: string;
2658
+ variant: "default" | "compact";
2584
2659
  isLoading: boolean;
2585
2660
  displayValue: (item: import("./components/sortableList/SortableList.types").SortableListItem) => string;
2586
2661
  searchPlaceholder: string;
@@ -2588,6 +2663,7 @@ declare const _default: {
2588
2663
  selectedChildId: string | number;
2589
2664
  childListMaxHeight: string;
2590
2665
  searchHandler: (item: import("./components/sortableList/SortableList.types").SortableListItem, searchQuery: string) => boolean;
2666
+ draggableArea: "handle" | "full";
2591
2667
  openId: string | number;
2592
2668
  selectedId: string | number;
2593
2669
  showSearch: boolean;
@@ -9966,6 +10042,7 @@ declare const _default: {
9966
10042
  container: string;
9967
10043
  shown: boolean;
9968
10044
  autoHide: boolean;
10045
+ dontWrapDisabled: boolean;
9969
10046
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
9970
10047
  header: {
9971
10048
  type: import("vue").PropType<string>;
@@ -10019,9 +10096,13 @@ declare const _default: {
10019
10096
  type: import("vue").PropType<boolean>;
10020
10097
  default: boolean;
10021
10098
  };
10099
+ dontWrapDisabled: {
10100
+ type: import("vue").PropType<boolean>;
10101
+ default: boolean;
10102
+ };
10022
10103
  }>> & {
10023
10104
  onShow?: () => any;
10024
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide">;
10105
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide" | "dontWrapDisabled">;
10025
10106
  $attrs: {
10026
10107
  [x: string]: unknown;
10027
10108
  };
@@ -10088,6 +10169,10 @@ declare const _default: {
10088
10169
  type: import("vue").PropType<boolean>;
10089
10170
  default: boolean;
10090
10171
  };
10172
+ dontWrapDisabled: {
10173
+ type: import("vue").PropType<boolean>;
10174
+ default: boolean;
10175
+ };
10091
10176
  }>> & {
10092
10177
  onShow?: () => any;
10093
10178
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -10106,6 +10191,7 @@ declare const _default: {
10106
10191
  container: string;
10107
10192
  shown: boolean;
10108
10193
  autoHide: boolean;
10194
+ dontWrapDisabled: boolean;
10109
10195
  }, {}, string> & {
10110
10196
  beforeCreate?: (() => void) | (() => void)[];
10111
10197
  created?: (() => void) | (() => void)[];
@@ -10179,6 +10265,10 @@ declare const _default: {
10179
10265
  type: import("vue").PropType<boolean>;
10180
10266
  default: boolean;
10181
10267
  };
10268
+ dontWrapDisabled: {
10269
+ type: import("vue").PropType<boolean>;
10270
+ default: boolean;
10271
+ };
10182
10272
  }>> & {
10183
10273
  onShow?: () => any;
10184
10274
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -10238,6 +10328,10 @@ declare const _default: {
10238
10328
  type: import("vue").PropType<boolean>;
10239
10329
  default: boolean;
10240
10330
  };
10331
+ dontWrapDisabled: {
10332
+ type: import("vue").PropType<boolean>;
10333
+ default: boolean;
10334
+ };
10241
10335
  }>> & {
10242
10336
  onShow?: () => any;
10243
10337
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -10256,6 +10350,7 @@ declare const _default: {
10256
10350
  container: string;
10257
10351
  shown: boolean;
10258
10352
  autoHide: boolean;
10353
+ dontWrapDisabled: boolean;
10259
10354
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
10260
10355
  $slots: {
10261
10356
  default?(_: {}): any;
@@ -10282,6 +10377,7 @@ declare const _default: {
10282
10377
  container: string;
10283
10378
  shown: boolean;
10284
10379
  autoHide: boolean;
10380
+ dontWrapDisabled: boolean;
10285
10381
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10286
10382
  header: {
10287
10383
  type: import("vue").PropType<string>;
@@ -10335,9 +10431,13 @@ declare const _default: {
10335
10431
  type: import("vue").PropType<boolean>;
10336
10432
  default: boolean;
10337
10433
  };
10434
+ dontWrapDisabled: {
10435
+ type: import("vue").PropType<boolean>;
10436
+ default: boolean;
10437
+ };
10338
10438
  }>> & {
10339
10439
  onShow?: () => any;
10340
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide">;
10440
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide" | "dontWrapDisabled">;
10341
10441
  $attrs: {
10342
10442
  [x: string]: unknown;
10343
10443
  };
@@ -10404,6 +10504,10 @@ declare const _default: {
10404
10504
  type: import("vue").PropType<boolean>;
10405
10505
  default: boolean;
10406
10506
  };
10507
+ dontWrapDisabled: {
10508
+ type: import("vue").PropType<boolean>;
10509
+ default: boolean;
10510
+ };
10407
10511
  }>> & {
10408
10512
  onShow?: () => any;
10409
10513
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -10422,6 +10526,7 @@ declare const _default: {
10422
10526
  container: string;
10423
10527
  shown: boolean;
10424
10528
  autoHide: boolean;
10529
+ dontWrapDisabled: boolean;
10425
10530
  }, {}, string> & {
10426
10531
  beforeCreate?: (() => void) | (() => void)[];
10427
10532
  created?: (() => void) | (() => void)[];
@@ -10495,6 +10600,10 @@ declare const _default: {
10495
10600
  type: import("vue").PropType<boolean>;
10496
10601
  default: boolean;
10497
10602
  };
10603
+ dontWrapDisabled: {
10604
+ type: import("vue").PropType<boolean>;
10605
+ default: boolean;
10606
+ };
10498
10607
  }>> & {
10499
10608
  onShow?: () => any;
10500
10609
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -10554,6 +10663,10 @@ declare const _default: {
10554
10663
  type: import("vue").PropType<boolean>;
10555
10664
  default: boolean;
10556
10665
  };
10666
+ dontWrapDisabled: {
10667
+ type: import("vue").PropType<boolean>;
10668
+ default: boolean;
10669
+ };
10557
10670
  }>> & {
10558
10671
  onShow?: () => any;
10559
10672
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -10572,6 +10685,7 @@ declare const _default: {
10572
10685
  container: string;
10573
10686
  shown: boolean;
10574
10687
  autoHide: boolean;
10688
+ dontWrapDisabled: boolean;
10575
10689
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
10576
10690
  $slots: {
10577
10691
  default?(_: {}): any;
@@ -10590,22 +10704,22 @@ declare const _default: {
10590
10704
  size: "small" | "medium" | "extraSmall";
10591
10705
  content: string;
10592
10706
  subtitle: string;
10593
- appendToBody: boolean;
10594
- closeDelay: number;
10595
- openDelay: number;
10596
- escapeToClose: boolean;
10597
- showBackdrop: boolean;
10598
- closeOnClickOutside: boolean;
10599
- beforeClose: (show: () => void) => void;
10600
10707
  showCloseButton: boolean;
10601
10708
  showCancelButton: boolean;
10602
10709
  showSaveButton: boolean;
10603
- showFooter: boolean;
10604
10710
  saveButtonLabel: string;
10605
10711
  saveButtonLoading: boolean;
10606
10712
  saveButtonColor: import("./components/button/common/consts").ButtonColor;
10607
10713
  cancelButtonLabel: string;
10608
10714
  cancelButtonColor: string;
10715
+ appendToBody: boolean;
10716
+ showBackdrop: boolean;
10717
+ closeDelay: number;
10718
+ openDelay: number;
10719
+ escapeToClose: boolean;
10720
+ closeOnClickOutside: boolean;
10721
+ beforeClose: (show: () => void) => void;
10722
+ showFooter: boolean;
10609
10723
  noPadding: boolean;
10610
10724
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10611
10725
  title: {
@@ -10632,34 +10746,6 @@ declare const _default: {
10632
10746
  type: import("vue").PropType<string>;
10633
10747
  default: string;
10634
10748
  };
10635
- appendToBody: {
10636
- type: import("vue").PropType<boolean>;
10637
- default: boolean;
10638
- };
10639
- closeDelay: {
10640
- type: import("vue").PropType<number>;
10641
- default: number;
10642
- };
10643
- openDelay: {
10644
- type: import("vue").PropType<number>;
10645
- default: number;
10646
- };
10647
- escapeToClose: {
10648
- type: import("vue").PropType<boolean>;
10649
- default: boolean;
10650
- };
10651
- showBackdrop: {
10652
- type: import("vue").PropType<boolean>;
10653
- default: boolean;
10654
- };
10655
- closeOnClickOutside: {
10656
- type: import("vue").PropType<boolean>;
10657
- default: boolean;
10658
- };
10659
- beforeClose: {
10660
- type: import("vue").PropType<(show: () => void) => void>;
10661
- default: any;
10662
- };
10663
10749
  showCloseButton: {
10664
10750
  type: import("vue").PropType<boolean>;
10665
10751
  default: boolean;
@@ -10672,10 +10758,6 @@ declare const _default: {
10672
10758
  type: import("vue").PropType<boolean>;
10673
10759
  default: boolean;
10674
10760
  };
10675
- showFooter: {
10676
- type: import("vue").PropType<boolean>;
10677
- default: boolean;
10678
- };
10679
10761
  saveButtonLabel: {
10680
10762
  type: import("vue").PropType<string>;
10681
10763
  default: string;
@@ -10696,6 +10778,38 @@ declare const _default: {
10696
10778
  type: import("vue").PropType<string>;
10697
10779
  default: string;
10698
10780
  };
10781
+ appendToBody: {
10782
+ type: import("vue").PropType<boolean>;
10783
+ default: boolean;
10784
+ };
10785
+ showBackdrop: {
10786
+ type: import("vue").PropType<boolean>;
10787
+ default: boolean;
10788
+ };
10789
+ closeDelay: {
10790
+ type: import("vue").PropType<number>;
10791
+ default: number;
10792
+ };
10793
+ openDelay: {
10794
+ type: import("vue").PropType<number>;
10795
+ default: number;
10796
+ };
10797
+ escapeToClose: {
10798
+ type: import("vue").PropType<boolean>;
10799
+ default: boolean;
10800
+ };
10801
+ closeOnClickOutside: {
10802
+ type: import("vue").PropType<boolean>;
10803
+ default: boolean;
10804
+ };
10805
+ beforeClose: {
10806
+ type: import("vue").PropType<(show: () => void) => void>;
10807
+ default: any;
10808
+ };
10809
+ showFooter: {
10810
+ type: import("vue").PropType<boolean>;
10811
+ default: boolean;
10812
+ };
10699
10813
  noPadding: {
10700
10814
  type: import("vue").PropType<boolean>;
10701
10815
  default: boolean;
@@ -10704,9 +10818,9 @@ declare const _default: {
10704
10818
  "onUpdate:modelValue"?: (value: boolean) => any;
10705
10819
  onClose?: (reason: dialogV3.Reason) => any;
10706
10820
  onCancel?: () => any;
10707
- onOpen?: () => any;
10708
10821
  onSave?: () => any;
10709
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "closeOnClickOutside" | "beforeClose" | "showCloseButton" | "showCancelButton" | "showSaveButton" | "showFooter" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor" | "noPadding">;
10822
+ onOpen?: () => any;
10823
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "showCloseButton" | "showCancelButton" | "showSaveButton" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor" | "appendToBody" | "showBackdrop" | "closeDelay" | "openDelay" | "escapeToClose" | "closeOnClickOutside" | "beforeClose" | "showFooter" | "noPadding">;
10710
10824
  $attrs: {
10711
10825
  [x: string]: unknown;
10712
10826
  };
@@ -10745,34 +10859,6 @@ declare const _default: {
10745
10859
  type: import("vue").PropType<string>;
10746
10860
  default: string;
10747
10861
  };
10748
- appendToBody: {
10749
- type: import("vue").PropType<boolean>;
10750
- default: boolean;
10751
- };
10752
- closeDelay: {
10753
- type: import("vue").PropType<number>;
10754
- default: number;
10755
- };
10756
- openDelay: {
10757
- type: import("vue").PropType<number>;
10758
- default: number;
10759
- };
10760
- escapeToClose: {
10761
- type: import("vue").PropType<boolean>;
10762
- default: boolean;
10763
- };
10764
- showBackdrop: {
10765
- type: import("vue").PropType<boolean>;
10766
- default: boolean;
10767
- };
10768
- closeOnClickOutside: {
10769
- type: import("vue").PropType<boolean>;
10770
- default: boolean;
10771
- };
10772
- beforeClose: {
10773
- type: import("vue").PropType<(show: () => void) => void>;
10774
- default: any;
10775
- };
10776
10862
  showCloseButton: {
10777
10863
  type: import("vue").PropType<boolean>;
10778
10864
  default: boolean;
@@ -10785,10 +10871,6 @@ declare const _default: {
10785
10871
  type: import("vue").PropType<boolean>;
10786
10872
  default: boolean;
10787
10873
  };
10788
- showFooter: {
10789
- type: import("vue").PropType<boolean>;
10790
- default: boolean;
10791
- };
10792
10874
  saveButtonLabel: {
10793
10875
  type: import("vue").PropType<string>;
10794
10876
  default: string;
@@ -10809,6 +10891,38 @@ declare const _default: {
10809
10891
  type: import("vue").PropType<string>;
10810
10892
  default: string;
10811
10893
  };
10894
+ appendToBody: {
10895
+ type: import("vue").PropType<boolean>;
10896
+ default: boolean;
10897
+ };
10898
+ showBackdrop: {
10899
+ type: import("vue").PropType<boolean>;
10900
+ default: boolean;
10901
+ };
10902
+ closeDelay: {
10903
+ type: import("vue").PropType<number>;
10904
+ default: number;
10905
+ };
10906
+ openDelay: {
10907
+ type: import("vue").PropType<number>;
10908
+ default: number;
10909
+ };
10910
+ escapeToClose: {
10911
+ type: import("vue").PropType<boolean>;
10912
+ default: boolean;
10913
+ };
10914
+ closeOnClickOutside: {
10915
+ type: import("vue").PropType<boolean>;
10916
+ default: boolean;
10917
+ };
10918
+ beforeClose: {
10919
+ type: import("vue").PropType<(show: () => void) => void>;
10920
+ default: any;
10921
+ };
10922
+ showFooter: {
10923
+ type: import("vue").PropType<boolean>;
10924
+ default: boolean;
10925
+ };
10812
10926
  noPadding: {
10813
10927
  type: import("vue").PropType<boolean>;
10814
10928
  default: boolean;
@@ -10817,8 +10931,8 @@ declare const _default: {
10817
10931
  "onUpdate:modelValue"?: (value: boolean) => any;
10818
10932
  onClose?: (reason: dialogV3.Reason) => any;
10819
10933
  onCancel?: () => any;
10820
- onOpen?: () => any;
10821
10934
  onSave?: () => any;
10935
+ onOpen?: () => any;
10822
10936
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10823
10937
  "update:modelValue": (value: boolean) => void;
10824
10938
  open: () => void;
@@ -10831,22 +10945,22 @@ declare const _default: {
10831
10945
  size: "small" | "medium" | "extraSmall";
10832
10946
  content: string;
10833
10947
  subtitle: string;
10834
- appendToBody: boolean;
10835
- closeDelay: number;
10836
- openDelay: number;
10837
- escapeToClose: boolean;
10838
- showBackdrop: boolean;
10839
- closeOnClickOutside: boolean;
10840
- beforeClose: (show: () => void) => void;
10841
10948
  showCloseButton: boolean;
10842
10949
  showCancelButton: boolean;
10843
10950
  showSaveButton: boolean;
10844
- showFooter: boolean;
10845
10951
  saveButtonLabel: string;
10846
10952
  saveButtonLoading: boolean;
10847
10953
  saveButtonColor: import("./components/button/common/consts").ButtonColor;
10848
10954
  cancelButtonLabel: string;
10849
10955
  cancelButtonColor: string;
10956
+ appendToBody: boolean;
10957
+ showBackdrop: boolean;
10958
+ closeDelay: number;
10959
+ openDelay: number;
10960
+ escapeToClose: boolean;
10961
+ closeOnClickOutside: boolean;
10962
+ beforeClose: (show: () => void) => void;
10963
+ showFooter: boolean;
10850
10964
  noPadding: boolean;
10851
10965
  }, {}, string> & {
10852
10966
  beforeCreate?: (() => void) | (() => void)[];
@@ -10893,34 +11007,6 @@ declare const _default: {
10893
11007
  type: import("vue").PropType<string>;
10894
11008
  default: string;
10895
11009
  };
10896
- appendToBody: {
10897
- type: import("vue").PropType<boolean>;
10898
- default: boolean;
10899
- };
10900
- closeDelay: {
10901
- type: import("vue").PropType<number>;
10902
- default: number;
10903
- };
10904
- openDelay: {
10905
- type: import("vue").PropType<number>;
10906
- default: number;
10907
- };
10908
- escapeToClose: {
10909
- type: import("vue").PropType<boolean>;
10910
- default: boolean;
10911
- };
10912
- showBackdrop: {
10913
- type: import("vue").PropType<boolean>;
10914
- default: boolean;
10915
- };
10916
- closeOnClickOutside: {
10917
- type: import("vue").PropType<boolean>;
10918
- default: boolean;
10919
- };
10920
- beforeClose: {
10921
- type: import("vue").PropType<(show: () => void) => void>;
10922
- default: any;
10923
- };
10924
11010
  showCloseButton: {
10925
11011
  type: import("vue").PropType<boolean>;
10926
11012
  default: boolean;
@@ -10933,10 +11019,6 @@ declare const _default: {
10933
11019
  type: import("vue").PropType<boolean>;
10934
11020
  default: boolean;
10935
11021
  };
10936
- showFooter: {
10937
- type: import("vue").PropType<boolean>;
10938
- default: boolean;
10939
- };
10940
11022
  saveButtonLabel: {
10941
11023
  type: import("vue").PropType<string>;
10942
11024
  default: string;
@@ -10957,6 +11039,38 @@ declare const _default: {
10957
11039
  type: import("vue").PropType<string>;
10958
11040
  default: string;
10959
11041
  };
11042
+ appendToBody: {
11043
+ type: import("vue").PropType<boolean>;
11044
+ default: boolean;
11045
+ };
11046
+ showBackdrop: {
11047
+ type: import("vue").PropType<boolean>;
11048
+ default: boolean;
11049
+ };
11050
+ closeDelay: {
11051
+ type: import("vue").PropType<number>;
11052
+ default: number;
11053
+ };
11054
+ openDelay: {
11055
+ type: import("vue").PropType<number>;
11056
+ default: number;
11057
+ };
11058
+ escapeToClose: {
11059
+ type: import("vue").PropType<boolean>;
11060
+ default: boolean;
11061
+ };
11062
+ closeOnClickOutside: {
11063
+ type: import("vue").PropType<boolean>;
11064
+ default: boolean;
11065
+ };
11066
+ beforeClose: {
11067
+ type: import("vue").PropType<(show: () => void) => void>;
11068
+ default: any;
11069
+ };
11070
+ showFooter: {
11071
+ type: import("vue").PropType<boolean>;
11072
+ default: boolean;
11073
+ };
10960
11074
  noPadding: {
10961
11075
  type: import("vue").PropType<boolean>;
10962
11076
  default: boolean;
@@ -10965,8 +11079,8 @@ declare const _default: {
10965
11079
  "onUpdate:modelValue"?: (value: boolean) => any;
10966
11080
  onClose?: (reason: dialogV3.Reason) => any;
10967
11081
  onCancel?: () => any;
10968
- onOpen?: () => any;
10969
11082
  onSave?: () => any;
11083
+ onOpen?: () => any;
10970
11084
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
10971
11085
  __isFragment?: never;
10972
11086
  __isTeleport?: never;
@@ -10996,34 +11110,6 @@ declare const _default: {
10996
11110
  type: import("vue").PropType<string>;
10997
11111
  default: string;
10998
11112
  };
10999
- appendToBody: {
11000
- type: import("vue").PropType<boolean>;
11001
- default: boolean;
11002
- };
11003
- closeDelay: {
11004
- type: import("vue").PropType<number>;
11005
- default: number;
11006
- };
11007
- openDelay: {
11008
- type: import("vue").PropType<number>;
11009
- default: number;
11010
- };
11011
- escapeToClose: {
11012
- type: import("vue").PropType<boolean>;
11013
- default: boolean;
11014
- };
11015
- showBackdrop: {
11016
- type: import("vue").PropType<boolean>;
11017
- default: boolean;
11018
- };
11019
- closeOnClickOutside: {
11020
- type: import("vue").PropType<boolean>;
11021
- default: boolean;
11022
- };
11023
- beforeClose: {
11024
- type: import("vue").PropType<(show: () => void) => void>;
11025
- default: any;
11026
- };
11027
11113
  showCloseButton: {
11028
11114
  type: import("vue").PropType<boolean>;
11029
11115
  default: boolean;
@@ -11036,10 +11122,6 @@ declare const _default: {
11036
11122
  type: import("vue").PropType<boolean>;
11037
11123
  default: boolean;
11038
11124
  };
11039
- showFooter: {
11040
- type: import("vue").PropType<boolean>;
11041
- default: boolean;
11042
- };
11043
11125
  saveButtonLabel: {
11044
11126
  type: import("vue").PropType<string>;
11045
11127
  default: string;
@@ -11060,6 +11142,38 @@ declare const _default: {
11060
11142
  type: import("vue").PropType<string>;
11061
11143
  default: string;
11062
11144
  };
11145
+ appendToBody: {
11146
+ type: import("vue").PropType<boolean>;
11147
+ default: boolean;
11148
+ };
11149
+ showBackdrop: {
11150
+ type: import("vue").PropType<boolean>;
11151
+ default: boolean;
11152
+ };
11153
+ closeDelay: {
11154
+ type: import("vue").PropType<number>;
11155
+ default: number;
11156
+ };
11157
+ openDelay: {
11158
+ type: import("vue").PropType<number>;
11159
+ default: number;
11160
+ };
11161
+ escapeToClose: {
11162
+ type: import("vue").PropType<boolean>;
11163
+ default: boolean;
11164
+ };
11165
+ closeOnClickOutside: {
11166
+ type: import("vue").PropType<boolean>;
11167
+ default: boolean;
11168
+ };
11169
+ beforeClose: {
11170
+ type: import("vue").PropType<(show: () => void) => void>;
11171
+ default: any;
11172
+ };
11173
+ showFooter: {
11174
+ type: import("vue").PropType<boolean>;
11175
+ default: boolean;
11176
+ };
11063
11177
  noPadding: {
11064
11178
  type: import("vue").PropType<boolean>;
11065
11179
  default: boolean;
@@ -11068,8 +11182,8 @@ declare const _default: {
11068
11182
  "onUpdate:modelValue"?: (value: boolean) => any;
11069
11183
  onClose?: (reason: dialogV3.Reason) => any;
11070
11184
  onCancel?: () => any;
11071
- onOpen?: () => any;
11072
11185
  onSave?: () => any;
11186
+ onOpen?: () => any;
11073
11187
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11074
11188
  "update:modelValue": (value: boolean) => void;
11075
11189
  open: () => void;
@@ -11082,22 +11196,22 @@ declare const _default: {
11082
11196
  size: "small" | "medium" | "extraSmall";
11083
11197
  content: string;
11084
11198
  subtitle: string;
11085
- appendToBody: boolean;
11086
- closeDelay: number;
11087
- openDelay: number;
11088
- escapeToClose: boolean;
11089
- showBackdrop: boolean;
11090
- closeOnClickOutside: boolean;
11091
- beforeClose: (show: () => void) => void;
11092
11199
  showCloseButton: boolean;
11093
11200
  showCancelButton: boolean;
11094
11201
  showSaveButton: boolean;
11095
- showFooter: boolean;
11096
11202
  saveButtonLabel: string;
11097
11203
  saveButtonLoading: boolean;
11098
11204
  saveButtonColor: import("./components/button/common/consts").ButtonColor;
11099
11205
  cancelButtonLabel: string;
11100
11206
  cancelButtonColor: string;
11207
+ appendToBody: boolean;
11208
+ showBackdrop: boolean;
11209
+ closeDelay: number;
11210
+ openDelay: number;
11211
+ escapeToClose: boolean;
11212
+ closeOnClickOutside: boolean;
11213
+ beforeClose: (show: () => void) => void;
11214
+ showFooter: boolean;
11101
11215
  noPadding: boolean;
11102
11216
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
11103
11217
  $slots: {
@@ -11116,22 +11230,22 @@ declare const _default: {
11116
11230
  size: "small" | "medium" | "extraSmall";
11117
11231
  content: string;
11118
11232
  subtitle: string;
11119
- appendToBody: boolean;
11120
- closeDelay: number;
11121
- openDelay: number;
11122
- escapeToClose: boolean;
11123
- showBackdrop: boolean;
11124
- closeOnClickOutside: boolean;
11125
- beforeClose: (show: () => void) => void;
11126
11233
  showCloseButton: boolean;
11127
11234
  showCancelButton: boolean;
11128
11235
  showSaveButton: boolean;
11129
- showFooter: boolean;
11130
11236
  saveButtonLabel: string;
11131
11237
  saveButtonLoading: boolean;
11132
11238
  saveButtonColor: import("./components/button/common/consts").ButtonColor;
11133
11239
  cancelButtonLabel: string;
11134
11240
  cancelButtonColor: string;
11241
+ appendToBody: boolean;
11242
+ showBackdrop: boolean;
11243
+ closeDelay: number;
11244
+ openDelay: number;
11245
+ escapeToClose: boolean;
11246
+ closeOnClickOutside: boolean;
11247
+ beforeClose: (show: () => void) => void;
11248
+ showFooter: boolean;
11135
11249
  noPadding: boolean;
11136
11250
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
11137
11251
  title: {
@@ -11158,34 +11272,6 @@ declare const _default: {
11158
11272
  type: import("vue").PropType<string>;
11159
11273
  default: string;
11160
11274
  };
11161
- appendToBody: {
11162
- type: import("vue").PropType<boolean>;
11163
- default: boolean;
11164
- };
11165
- closeDelay: {
11166
- type: import("vue").PropType<number>;
11167
- default: number;
11168
- };
11169
- openDelay: {
11170
- type: import("vue").PropType<number>;
11171
- default: number;
11172
- };
11173
- escapeToClose: {
11174
- type: import("vue").PropType<boolean>;
11175
- default: boolean;
11176
- };
11177
- showBackdrop: {
11178
- type: import("vue").PropType<boolean>;
11179
- default: boolean;
11180
- };
11181
- closeOnClickOutside: {
11182
- type: import("vue").PropType<boolean>;
11183
- default: boolean;
11184
- };
11185
- beforeClose: {
11186
- type: import("vue").PropType<(show: () => void) => void>;
11187
- default: any;
11188
- };
11189
11275
  showCloseButton: {
11190
11276
  type: import("vue").PropType<boolean>;
11191
11277
  default: boolean;
@@ -11198,10 +11284,6 @@ declare const _default: {
11198
11284
  type: import("vue").PropType<boolean>;
11199
11285
  default: boolean;
11200
11286
  };
11201
- showFooter: {
11202
- type: import("vue").PropType<boolean>;
11203
- default: boolean;
11204
- };
11205
11287
  saveButtonLabel: {
11206
11288
  type: import("vue").PropType<string>;
11207
11289
  default: string;
@@ -11222,6 +11304,38 @@ declare const _default: {
11222
11304
  type: import("vue").PropType<string>;
11223
11305
  default: string;
11224
11306
  };
11307
+ appendToBody: {
11308
+ type: import("vue").PropType<boolean>;
11309
+ default: boolean;
11310
+ };
11311
+ showBackdrop: {
11312
+ type: import("vue").PropType<boolean>;
11313
+ default: boolean;
11314
+ };
11315
+ closeDelay: {
11316
+ type: import("vue").PropType<number>;
11317
+ default: number;
11318
+ };
11319
+ openDelay: {
11320
+ type: import("vue").PropType<number>;
11321
+ default: number;
11322
+ };
11323
+ escapeToClose: {
11324
+ type: import("vue").PropType<boolean>;
11325
+ default: boolean;
11326
+ };
11327
+ closeOnClickOutside: {
11328
+ type: import("vue").PropType<boolean>;
11329
+ default: boolean;
11330
+ };
11331
+ beforeClose: {
11332
+ type: import("vue").PropType<(show: () => void) => void>;
11333
+ default: any;
11334
+ };
11335
+ showFooter: {
11336
+ type: import("vue").PropType<boolean>;
11337
+ default: boolean;
11338
+ };
11225
11339
  noPadding: {
11226
11340
  type: import("vue").PropType<boolean>;
11227
11341
  default: boolean;
@@ -11230,9 +11344,9 @@ declare const _default: {
11230
11344
  "onUpdate:modelValue"?: (value: boolean) => any;
11231
11345
  onClose?: (reason: dialogV3.Reason) => any;
11232
11346
  onCancel?: () => any;
11233
- onOpen?: () => any;
11234
11347
  onSave?: () => any;
11235
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "appendToBody" | "closeDelay" | "openDelay" | "escapeToClose" | "showBackdrop" | "closeOnClickOutside" | "beforeClose" | "showCloseButton" | "showCancelButton" | "showSaveButton" | "showFooter" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor" | "noPadding">;
11348
+ onOpen?: () => any;
11349
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "size" | "content" | "subtitle" | "showCloseButton" | "showCancelButton" | "showSaveButton" | "saveButtonLabel" | "saveButtonLoading" | "saveButtonColor" | "cancelButtonLabel" | "cancelButtonColor" | "appendToBody" | "showBackdrop" | "closeDelay" | "openDelay" | "escapeToClose" | "closeOnClickOutside" | "beforeClose" | "showFooter" | "noPadding">;
11236
11350
  $attrs: {
11237
11351
  [x: string]: unknown;
11238
11352
  };
@@ -11271,34 +11385,6 @@ declare const _default: {
11271
11385
  type: import("vue").PropType<string>;
11272
11386
  default: string;
11273
11387
  };
11274
- appendToBody: {
11275
- type: import("vue").PropType<boolean>;
11276
- default: boolean;
11277
- };
11278
- closeDelay: {
11279
- type: import("vue").PropType<number>;
11280
- default: number;
11281
- };
11282
- openDelay: {
11283
- type: import("vue").PropType<number>;
11284
- default: number;
11285
- };
11286
- escapeToClose: {
11287
- type: import("vue").PropType<boolean>;
11288
- default: boolean;
11289
- };
11290
- showBackdrop: {
11291
- type: import("vue").PropType<boolean>;
11292
- default: boolean;
11293
- };
11294
- closeOnClickOutside: {
11295
- type: import("vue").PropType<boolean>;
11296
- default: boolean;
11297
- };
11298
- beforeClose: {
11299
- type: import("vue").PropType<(show: () => void) => void>;
11300
- default: any;
11301
- };
11302
11388
  showCloseButton: {
11303
11389
  type: import("vue").PropType<boolean>;
11304
11390
  default: boolean;
@@ -11311,10 +11397,6 @@ declare const _default: {
11311
11397
  type: import("vue").PropType<boolean>;
11312
11398
  default: boolean;
11313
11399
  };
11314
- showFooter: {
11315
- type: import("vue").PropType<boolean>;
11316
- default: boolean;
11317
- };
11318
11400
  saveButtonLabel: {
11319
11401
  type: import("vue").PropType<string>;
11320
11402
  default: string;
@@ -11335,6 +11417,38 @@ declare const _default: {
11335
11417
  type: import("vue").PropType<string>;
11336
11418
  default: string;
11337
11419
  };
11420
+ appendToBody: {
11421
+ type: import("vue").PropType<boolean>;
11422
+ default: boolean;
11423
+ };
11424
+ showBackdrop: {
11425
+ type: import("vue").PropType<boolean>;
11426
+ default: boolean;
11427
+ };
11428
+ closeDelay: {
11429
+ type: import("vue").PropType<number>;
11430
+ default: number;
11431
+ };
11432
+ openDelay: {
11433
+ type: import("vue").PropType<number>;
11434
+ default: number;
11435
+ };
11436
+ escapeToClose: {
11437
+ type: import("vue").PropType<boolean>;
11438
+ default: boolean;
11439
+ };
11440
+ closeOnClickOutside: {
11441
+ type: import("vue").PropType<boolean>;
11442
+ default: boolean;
11443
+ };
11444
+ beforeClose: {
11445
+ type: import("vue").PropType<(show: () => void) => void>;
11446
+ default: any;
11447
+ };
11448
+ showFooter: {
11449
+ type: import("vue").PropType<boolean>;
11450
+ default: boolean;
11451
+ };
11338
11452
  noPadding: {
11339
11453
  type: import("vue").PropType<boolean>;
11340
11454
  default: boolean;
@@ -11343,8 +11457,8 @@ declare const _default: {
11343
11457
  "onUpdate:modelValue"?: (value: boolean) => any;
11344
11458
  onClose?: (reason: dialogV3.Reason) => any;
11345
11459
  onCancel?: () => any;
11346
- onOpen?: () => any;
11347
11460
  onSave?: () => any;
11461
+ onOpen?: () => any;
11348
11462
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11349
11463
  "update:modelValue": (value: boolean) => void;
11350
11464
  open: () => void;
@@ -11357,22 +11471,22 @@ declare const _default: {
11357
11471
  size: "small" | "medium" | "extraSmall";
11358
11472
  content: string;
11359
11473
  subtitle: string;
11360
- appendToBody: boolean;
11361
- closeDelay: number;
11362
- openDelay: number;
11363
- escapeToClose: boolean;
11364
- showBackdrop: boolean;
11365
- closeOnClickOutside: boolean;
11366
- beforeClose: (show: () => void) => void;
11367
11474
  showCloseButton: boolean;
11368
11475
  showCancelButton: boolean;
11369
11476
  showSaveButton: boolean;
11370
- showFooter: boolean;
11371
11477
  saveButtonLabel: string;
11372
11478
  saveButtonLoading: boolean;
11373
11479
  saveButtonColor: import("./components/button/common/consts").ButtonColor;
11374
11480
  cancelButtonLabel: string;
11375
11481
  cancelButtonColor: string;
11482
+ appendToBody: boolean;
11483
+ showBackdrop: boolean;
11484
+ closeDelay: number;
11485
+ openDelay: number;
11486
+ escapeToClose: boolean;
11487
+ closeOnClickOutside: boolean;
11488
+ beforeClose: (show: () => void) => void;
11489
+ showFooter: boolean;
11376
11490
  noPadding: boolean;
11377
11491
  }, {}, string> & {
11378
11492
  beforeCreate?: (() => void) | (() => void)[];
@@ -11419,34 +11533,6 @@ declare const _default: {
11419
11533
  type: import("vue").PropType<string>;
11420
11534
  default: string;
11421
11535
  };
11422
- appendToBody: {
11423
- type: import("vue").PropType<boolean>;
11424
- default: boolean;
11425
- };
11426
- closeDelay: {
11427
- type: import("vue").PropType<number>;
11428
- default: number;
11429
- };
11430
- openDelay: {
11431
- type: import("vue").PropType<number>;
11432
- default: number;
11433
- };
11434
- escapeToClose: {
11435
- type: import("vue").PropType<boolean>;
11436
- default: boolean;
11437
- };
11438
- showBackdrop: {
11439
- type: import("vue").PropType<boolean>;
11440
- default: boolean;
11441
- };
11442
- closeOnClickOutside: {
11443
- type: import("vue").PropType<boolean>;
11444
- default: boolean;
11445
- };
11446
- beforeClose: {
11447
- type: import("vue").PropType<(show: () => void) => void>;
11448
- default: any;
11449
- };
11450
11536
  showCloseButton: {
11451
11537
  type: import("vue").PropType<boolean>;
11452
11538
  default: boolean;
@@ -11459,10 +11545,6 @@ declare const _default: {
11459
11545
  type: import("vue").PropType<boolean>;
11460
11546
  default: boolean;
11461
11547
  };
11462
- showFooter: {
11463
- type: import("vue").PropType<boolean>;
11464
- default: boolean;
11465
- };
11466
11548
  saveButtonLabel: {
11467
11549
  type: import("vue").PropType<string>;
11468
11550
  default: string;
@@ -11483,6 +11565,38 @@ declare const _default: {
11483
11565
  type: import("vue").PropType<string>;
11484
11566
  default: string;
11485
11567
  };
11568
+ appendToBody: {
11569
+ type: import("vue").PropType<boolean>;
11570
+ default: boolean;
11571
+ };
11572
+ showBackdrop: {
11573
+ type: import("vue").PropType<boolean>;
11574
+ default: boolean;
11575
+ };
11576
+ closeDelay: {
11577
+ type: import("vue").PropType<number>;
11578
+ default: number;
11579
+ };
11580
+ openDelay: {
11581
+ type: import("vue").PropType<number>;
11582
+ default: number;
11583
+ };
11584
+ escapeToClose: {
11585
+ type: import("vue").PropType<boolean>;
11586
+ default: boolean;
11587
+ };
11588
+ closeOnClickOutside: {
11589
+ type: import("vue").PropType<boolean>;
11590
+ default: boolean;
11591
+ };
11592
+ beforeClose: {
11593
+ type: import("vue").PropType<(show: () => void) => void>;
11594
+ default: any;
11595
+ };
11596
+ showFooter: {
11597
+ type: import("vue").PropType<boolean>;
11598
+ default: boolean;
11599
+ };
11486
11600
  noPadding: {
11487
11601
  type: import("vue").PropType<boolean>;
11488
11602
  default: boolean;
@@ -11491,8 +11605,8 @@ declare const _default: {
11491
11605
  "onUpdate:modelValue"?: (value: boolean) => any;
11492
11606
  onClose?: (reason: dialogV3.Reason) => any;
11493
11607
  onCancel?: () => any;
11494
- onOpen?: () => any;
11495
11608
  onSave?: () => any;
11609
+ onOpen?: () => any;
11496
11610
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
11497
11611
  __isFragment?: never;
11498
11612
  __isTeleport?: never;
@@ -11522,34 +11636,6 @@ declare const _default: {
11522
11636
  type: import("vue").PropType<string>;
11523
11637
  default: string;
11524
11638
  };
11525
- appendToBody: {
11526
- type: import("vue").PropType<boolean>;
11527
- default: boolean;
11528
- };
11529
- closeDelay: {
11530
- type: import("vue").PropType<number>;
11531
- default: number;
11532
- };
11533
- openDelay: {
11534
- type: import("vue").PropType<number>;
11535
- default: number;
11536
- };
11537
- escapeToClose: {
11538
- type: import("vue").PropType<boolean>;
11539
- default: boolean;
11540
- };
11541
- showBackdrop: {
11542
- type: import("vue").PropType<boolean>;
11543
- default: boolean;
11544
- };
11545
- closeOnClickOutside: {
11546
- type: import("vue").PropType<boolean>;
11547
- default: boolean;
11548
- };
11549
- beforeClose: {
11550
- type: import("vue").PropType<(show: () => void) => void>;
11551
- default: any;
11552
- };
11553
11639
  showCloseButton: {
11554
11640
  type: import("vue").PropType<boolean>;
11555
11641
  default: boolean;
@@ -11562,10 +11648,6 @@ declare const _default: {
11562
11648
  type: import("vue").PropType<boolean>;
11563
11649
  default: boolean;
11564
11650
  };
11565
- showFooter: {
11566
- type: import("vue").PropType<boolean>;
11567
- default: boolean;
11568
- };
11569
11651
  saveButtonLabel: {
11570
11652
  type: import("vue").PropType<string>;
11571
11653
  default: string;
@@ -11586,6 +11668,38 @@ declare const _default: {
11586
11668
  type: import("vue").PropType<string>;
11587
11669
  default: string;
11588
11670
  };
11671
+ appendToBody: {
11672
+ type: import("vue").PropType<boolean>;
11673
+ default: boolean;
11674
+ };
11675
+ showBackdrop: {
11676
+ type: import("vue").PropType<boolean>;
11677
+ default: boolean;
11678
+ };
11679
+ closeDelay: {
11680
+ type: import("vue").PropType<number>;
11681
+ default: number;
11682
+ };
11683
+ openDelay: {
11684
+ type: import("vue").PropType<number>;
11685
+ default: number;
11686
+ };
11687
+ escapeToClose: {
11688
+ type: import("vue").PropType<boolean>;
11689
+ default: boolean;
11690
+ };
11691
+ closeOnClickOutside: {
11692
+ type: import("vue").PropType<boolean>;
11693
+ default: boolean;
11694
+ };
11695
+ beforeClose: {
11696
+ type: import("vue").PropType<(show: () => void) => void>;
11697
+ default: any;
11698
+ };
11699
+ showFooter: {
11700
+ type: import("vue").PropType<boolean>;
11701
+ default: boolean;
11702
+ };
11589
11703
  noPadding: {
11590
11704
  type: import("vue").PropType<boolean>;
11591
11705
  default: boolean;
@@ -11594,8 +11708,8 @@ declare const _default: {
11594
11708
  "onUpdate:modelValue"?: (value: boolean) => any;
11595
11709
  onClose?: (reason: dialogV3.Reason) => any;
11596
11710
  onCancel?: () => any;
11597
- onOpen?: () => any;
11598
11711
  onSave?: () => any;
11712
+ onOpen?: () => any;
11599
11713
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11600
11714
  "update:modelValue": (value: boolean) => void;
11601
11715
  open: () => void;
@@ -11608,22 +11722,22 @@ declare const _default: {
11608
11722
  size: "small" | "medium" | "extraSmall";
11609
11723
  content: string;
11610
11724
  subtitle: string;
11611
- appendToBody: boolean;
11612
- closeDelay: number;
11613
- openDelay: number;
11614
- escapeToClose: boolean;
11615
- showBackdrop: boolean;
11616
- closeOnClickOutside: boolean;
11617
- beforeClose: (show: () => void) => void;
11618
11725
  showCloseButton: boolean;
11619
11726
  showCancelButton: boolean;
11620
11727
  showSaveButton: boolean;
11621
- showFooter: boolean;
11622
11728
  saveButtonLabel: string;
11623
11729
  saveButtonLoading: boolean;
11624
11730
  saveButtonColor: import("./components/button/common/consts").ButtonColor;
11625
11731
  cancelButtonLabel: string;
11626
11732
  cancelButtonColor: string;
11733
+ appendToBody: boolean;
11734
+ showBackdrop: boolean;
11735
+ closeDelay: number;
11736
+ openDelay: number;
11737
+ escapeToClose: boolean;
11738
+ closeOnClickOutside: boolean;
11739
+ beforeClose: (show: () => void) => void;
11740
+ showFooter: boolean;
11627
11741
  noPadding: boolean;
11628
11742
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
11629
11743
  $slots: {
@@ -20494,6 +20608,7 @@ declare const _default: {
20494
20608
  isIndeterminate: boolean;
20495
20609
  subtitle: string;
20496
20610
  selectAllOption: boolean;
20611
+ tooltipAttachedToText: boolean;
20497
20612
  nameKey: string;
20498
20613
  imageKey: string;
20499
20614
  iconKey: string;
@@ -20552,6 +20667,10 @@ declare const _default: {
20552
20667
  type: import("vue").PropType<boolean>;
20553
20668
  default: boolean;
20554
20669
  };
20670
+ tooltipAttachedToText: {
20671
+ type: import("vue").PropType<boolean>;
20672
+ default: boolean;
20673
+ };
20555
20674
  nameKey: {
20556
20675
  type: import("vue").PropType<string>;
20557
20676
  default: any;
@@ -20609,7 +20728,7 @@ declare const _default: {
20609
20728
  };
20610
20729
  }>> & {
20611
20730
  onToggleTreeCollapse?: (option: unknown) => any;
20612
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "tooltipPlacement" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti" | "minMaxSelectionTooltipMessage">;
20731
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "tooltipPlacement" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "tooltipAttachedToText" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti" | "minMaxSelectionTooltipMessage">;
20613
20732
  $attrs: {
20614
20733
  [x: string]: unknown;
20615
20734
  };
@@ -20668,6 +20787,10 @@ declare const _default: {
20668
20787
  type: import("vue").PropType<boolean>;
20669
20788
  default: boolean;
20670
20789
  };
20790
+ tooltipAttachedToText: {
20791
+ type: import("vue").PropType<boolean>;
20792
+ default: boolean;
20793
+ };
20671
20794
  nameKey: {
20672
20795
  type: import("vue").PropType<string>;
20673
20796
  default: any;
@@ -20739,6 +20862,7 @@ declare const _default: {
20739
20862
  isIndeterminate: boolean;
20740
20863
  subtitle: string;
20741
20864
  selectAllOption: boolean;
20865
+ tooltipAttachedToText: boolean;
20742
20866
  nameKey: string;
20743
20867
  imageKey: string;
20744
20868
  iconKey: string;
@@ -20817,6 +20941,10 @@ declare const _default: {
20817
20941
  type: import("vue").PropType<boolean>;
20818
20942
  default: boolean;
20819
20943
  };
20944
+ tooltipAttachedToText: {
20945
+ type: import("vue").PropType<boolean>;
20946
+ default: boolean;
20947
+ };
20820
20948
  nameKey: {
20821
20949
  type: import("vue").PropType<string>;
20822
20950
  default: any;
@@ -20923,6 +21051,10 @@ declare const _default: {
20923
21051
  type: import("vue").PropType<boolean>;
20924
21052
  default: boolean;
20925
21053
  };
21054
+ tooltipAttachedToText: {
21055
+ type: import("vue").PropType<boolean>;
21056
+ default: boolean;
21057
+ };
20926
21058
  nameKey: {
20927
21059
  type: import("vue").PropType<string>;
20928
21060
  default: any;
@@ -20994,6 +21126,7 @@ declare const _default: {
20994
21126
  isIndeterminate: boolean;
20995
21127
  subtitle: string;
20996
21128
  selectAllOption: boolean;
21129
+ tooltipAttachedToText: boolean;
20997
21130
  nameKey: string;
20998
21131
  imageKey: string;
20999
21132
  iconKey: string;
@@ -23749,6 +23882,7 @@ declare const _default: {
23749
23882
  isIndeterminate: boolean;
23750
23883
  subtitle: string;
23751
23884
  selectAllOption: boolean;
23885
+ tooltipAttachedToText: boolean;
23752
23886
  nameKey: string;
23753
23887
  imageKey: string;
23754
23888
  iconKey: string;
@@ -23807,6 +23941,10 @@ declare const _default: {
23807
23941
  type: import("vue").PropType<boolean>;
23808
23942
  default: boolean;
23809
23943
  };
23944
+ tooltipAttachedToText: {
23945
+ type: import("vue").PropType<boolean>;
23946
+ default: boolean;
23947
+ };
23810
23948
  nameKey: {
23811
23949
  type: import("vue").PropType<string>;
23812
23950
  default: any;
@@ -23864,7 +24002,7 @@ declare const _default: {
23864
24002
  };
23865
24003
  }>> & {
23866
24004
  onToggleTreeCollapse?: (option: unknown) => any;
23867
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "tooltipPlacement" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti" | "minMaxSelectionTooltipMessage">;
24005
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "tooltipPlacement" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "tooltipAttachedToText" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti" | "minMaxSelectionTooltipMessage">;
23868
24006
  $attrs: {
23869
24007
  [x: string]: unknown;
23870
24008
  };
@@ -23923,6 +24061,10 @@ declare const _default: {
23923
24061
  type: import("vue").PropType<boolean>;
23924
24062
  default: boolean;
23925
24063
  };
24064
+ tooltipAttachedToText: {
24065
+ type: import("vue").PropType<boolean>;
24066
+ default: boolean;
24067
+ };
23926
24068
  nameKey: {
23927
24069
  type: import("vue").PropType<string>;
23928
24070
  default: any;
@@ -23994,6 +24136,7 @@ declare const _default: {
23994
24136
  isIndeterminate: boolean;
23995
24137
  subtitle: string;
23996
24138
  selectAllOption: boolean;
24139
+ tooltipAttachedToText: boolean;
23997
24140
  nameKey: string;
23998
24141
  imageKey: string;
23999
24142
  iconKey: string;
@@ -24072,6 +24215,10 @@ declare const _default: {
24072
24215
  type: import("vue").PropType<boolean>;
24073
24216
  default: boolean;
24074
24217
  };
24218
+ tooltipAttachedToText: {
24219
+ type: import("vue").PropType<boolean>;
24220
+ default: boolean;
24221
+ };
24075
24222
  nameKey: {
24076
24223
  type: import("vue").PropType<string>;
24077
24224
  default: any;
@@ -24178,6 +24325,10 @@ declare const _default: {
24178
24325
  type: import("vue").PropType<boolean>;
24179
24326
  default: boolean;
24180
24327
  };
24328
+ tooltipAttachedToText: {
24329
+ type: import("vue").PropType<boolean>;
24330
+ default: boolean;
24331
+ };
24181
24332
  nameKey: {
24182
24333
  type: import("vue").PropType<string>;
24183
24334
  default: any;
@@ -24249,6 +24400,7 @@ declare const _default: {
24249
24400
  isIndeterminate: boolean;
24250
24401
  subtitle: string;
24251
24402
  selectAllOption: boolean;
24403
+ tooltipAttachedToText: boolean;
24252
24404
  nameKey: string;
24253
24405
  imageKey: string;
24254
24406
  iconKey: string;
@@ -27129,3 +27281,4 @@ export * from '@/components/alert';
27129
27281
  export * from '@/components/link';
27130
27282
  export * from '@/components/autocomplete';
27131
27283
  export * from '@/components/chart';
27284
+ export * from '@/components/columnPicker';