@ironsource/shared-ui 2.2.0-test.7 → 2.2.0-test.89

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 (55) hide show
  1. package/Chart.vue_vue_type_style_index_0_scoped_a4d7b67a_lang.css +1 -0
  2. package/FormCard.vue_vue_type_style_index_0_scoped_98458a8f_lang.css +1 -0
  3. package/OptionV4.vue_vue_type_style_index_0_scoped_771e1980_lang.css +1 -0
  4. package/PopoverV4.vue_vue_type_style_index_0_scoped_9ae00876_lang.css +1 -0
  5. package/Tag.vue_vue_type_style_index_0_scoped_b0662035_lang.css +1 -0
  6. package/TagsFieldChip.vue_vue_type_style_index_0_scoped_d186b7ef_lang.css +1 -0
  7. package/TooltipV4.vue_vue_type_style_index_0_scoped_a8aebfee_lang.css +1 -0
  8. package/TooltipV4.vue_vue_type_style_index_1_lang.css +1 -1
  9. package/components/chart/Chart.vue.d.ts +5 -0
  10. package/components/chart/Chart.vue.js +3 -3
  11. package/components/chart/Chart.vue2.js +17 -15
  12. package/components/chart/composables/useChartHeight.d.ts +1 -1
  13. package/components/chart/composables/useChartHeight.js +16 -15
  14. package/components/chart/index.d.ts +20 -1
  15. package/components/chart/types.d.ts +1 -0
  16. package/components/dateRange/common/DateRange.common.js +1 -1
  17. package/components/dateRange/common/consts.common.d.ts +5 -0
  18. package/components/dateRange/common/consts.common.js +9 -0
  19. package/components/dateRange/v3/DateRange.vue.d.ts +3 -3
  20. package/components/dateRange/v3/DateRangePicker.vue.d.ts +3 -3
  21. package/components/dateRange/v3/index.d.ts +7 -7
  22. package/components/dateRange/v4/DateRangePickerV4.vue.d.ts +3 -3
  23. package/components/dateRange/v4/DateRangeV4.vue.d.ts +3 -3
  24. package/components/dateRange/v4/index.d.ts +7 -7
  25. package/components/dropdown/v4/ButtonDropdownTrigger.vue.d.ts +1 -1
  26. package/components/dropdown/v4/OptionV4.vue.js +3 -3
  27. package/components/dropdown/v4/OptionV4.vue2.js +13 -12
  28. package/components/forms/FormCard.vue.js +3 -3
  29. package/components/forms/FormCard.vue2.js +5 -5
  30. package/components/popover/v4/PopoverV4.vue.d.ts +14 -0
  31. package/components/popover/v4/PopoverV4.vue.js +2 -2
  32. package/components/popover/v4/PopoverV4.vue2.js +11 -9
  33. package/components/popover/v4/index.d.ts +41 -1
  34. package/components/tag/Tag.vue.d.ts +131 -0
  35. package/components/tag/Tag.vue.js +7 -0
  36. package/components/tag/Tag.vue2.js +295 -0
  37. package/components/tag/index.d.ts +192 -0
  38. package/components/tag/index.js +6 -0
  39. package/components/tagsField/TagsFieldChip.vue.d.ts +0 -41
  40. package/components/tagsField/TagsFieldChip.vue.js +5 -5
  41. package/components/tagsField/TagsFieldChip.vue2.js +54 -96
  42. package/components/tagsField/index.d.ts +0 -72
  43. package/components/tooltip/v4/TooltipV4.vue.d.ts +5 -0
  44. package/components/tooltip/v4/TooltipV4.vue.js +2 -2
  45. package/components/tooltip/v4/TooltipV4.vue2.js +76 -36
  46. package/components/tooltip/v4/index.d.ts +20 -1
  47. package/index.d.ts +157 -38
  48. package/index.js +84 -80
  49. package/package.json +6 -2
  50. package/Chart.vue_vue_type_style_index_0_scoped_22477735_lang.css +0 -1
  51. package/FormCard.vue_vue_type_style_index_0_scoped_86feae7b_lang.css +0 -1
  52. package/OptionV4.vue_vue_type_style_index_0_scoped_752a357d_lang.css +0 -1
  53. package/PopoverV4.vue_vue_type_style_index_0_scoped_66694b4e_lang.css +0 -1
  54. package/TagsFieldChip.vue_vue_type_style_index_0_scoped_a5f2dd8b_lang.css +0 -1
  55. package/TooltipV4.vue_vue_type_style_index_0_scoped_8a451e54_lang.css +0 -1
package/index.d.ts CHANGED
@@ -29,6 +29,10 @@ declare const _default: {
29
29
  $data: {};
30
30
  $props: Partial<{
31
31
  testId: string;
32
+ delay: number | {
33
+ show: number;
34
+ hide: number;
35
+ };
32
36
  placement: import("floating-vue").Placement;
33
37
  disabled: boolean;
34
38
  distance: number;
@@ -43,6 +47,13 @@ declare const _default: {
43
47
  type: import("vue").PropType<string>;
44
48
  default: string;
45
49
  };
50
+ delay: {
51
+ type: import("vue").PropType<number | {
52
+ show: number;
53
+ hide: number;
54
+ }>;
55
+ default: number;
56
+ };
46
57
  placement: {
47
58
  type: import("vue").PropType<import("floating-vue").Placement>;
48
59
  default: string;
@@ -81,7 +92,7 @@ declare const _default: {
81
92
  };
82
93
  }>> & {
83
94
  onIsOpen?: (value: boolean) => any;
84
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "placement" | "disabled" | "distance" | "container" | "autoHide" | "popperClass" | "isOpen" | "trigger" | "skidding">;
95
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "delay" | "placement" | "disabled" | "distance" | "container" | "autoHide" | "popperClass" | "isOpen" | "trigger" | "skidding">;
85
96
  $attrs: {
86
97
  [x: string]: unknown;
87
98
  };
@@ -100,6 +111,13 @@ declare const _default: {
100
111
  type: import("vue").PropType<string>;
101
112
  default: string;
102
113
  };
114
+ delay: {
115
+ type: import("vue").PropType<number | {
116
+ show: number;
117
+ hide: number;
118
+ }>;
119
+ default: number;
120
+ };
103
121
  placement: {
104
122
  type: import("vue").PropType<import("floating-vue").Placement>;
105
123
  default: string;
@@ -144,6 +162,10 @@ declare const _default: {
144
162
  isOpen: (value: boolean) => void;
145
163
  }, string, {
146
164
  testId: string;
165
+ delay: number | {
166
+ show: number;
167
+ hide: number;
168
+ };
147
169
  placement: import("floating-vue").Placement;
148
170
  disabled: boolean;
149
171
  distance: number;
@@ -178,6 +200,13 @@ declare const _default: {
178
200
  type: import("vue").PropType<string>;
179
201
  default: string;
180
202
  };
203
+ delay: {
204
+ type: import("vue").PropType<number | {
205
+ show: number;
206
+ hide: number;
207
+ }>;
208
+ default: number;
209
+ };
181
210
  placement: {
182
211
  type: import("vue").PropType<import("floating-vue").Placement>;
183
212
  default: string;
@@ -227,6 +256,13 @@ declare const _default: {
227
256
  type: import("vue").PropType<string>;
228
257
  default: string;
229
258
  };
259
+ delay: {
260
+ type: import("vue").PropType<number | {
261
+ show: number;
262
+ hide: number;
263
+ }>;
264
+ default: number;
265
+ };
230
266
  placement: {
231
267
  type: import("vue").PropType<import("floating-vue").Placement>;
232
268
  default: string;
@@ -271,6 +307,10 @@ declare const _default: {
271
307
  isOpen: (value: boolean) => void;
272
308
  }, string, {
273
309
  testId: string;
310
+ delay: number | {
311
+ show: number;
312
+ hide: number;
313
+ };
274
314
  placement: import("floating-vue").Placement;
275
315
  disabled: boolean;
276
316
  distance: number;
@@ -292,6 +332,10 @@ declare const _default: {
292
332
  $data: {};
293
333
  $props: Partial<{
294
334
  testId: string;
335
+ delay: number | {
336
+ show: number;
337
+ hide: number;
338
+ };
295
339
  placement: import("floating-vue").Placement;
296
340
  disabled: boolean;
297
341
  distance: number;
@@ -306,6 +350,13 @@ declare const _default: {
306
350
  type: import("vue").PropType<string>;
307
351
  default: string;
308
352
  };
353
+ delay: {
354
+ type: import("vue").PropType<number | {
355
+ show: number;
356
+ hide: number;
357
+ }>;
358
+ default: number;
359
+ };
309
360
  placement: {
310
361
  type: import("vue").PropType<import("floating-vue").Placement>;
311
362
  default: string;
@@ -344,7 +395,7 @@ declare const _default: {
344
395
  };
345
396
  }>> & {
346
397
  onIsOpen?: (value: boolean) => any;
347
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "placement" | "disabled" | "distance" | "container" | "autoHide" | "popperClass" | "isOpen" | "trigger" | "skidding">;
398
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "delay" | "placement" | "disabled" | "distance" | "container" | "autoHide" | "popperClass" | "isOpen" | "trigger" | "skidding">;
348
399
  $attrs: {
349
400
  [x: string]: unknown;
350
401
  };
@@ -363,6 +414,13 @@ declare const _default: {
363
414
  type: import("vue").PropType<string>;
364
415
  default: string;
365
416
  };
417
+ delay: {
418
+ type: import("vue").PropType<number | {
419
+ show: number;
420
+ hide: number;
421
+ }>;
422
+ default: number;
423
+ };
366
424
  placement: {
367
425
  type: import("vue").PropType<import("floating-vue").Placement>;
368
426
  default: string;
@@ -407,6 +465,10 @@ declare const _default: {
407
465
  isOpen: (value: boolean) => void;
408
466
  }, string, {
409
467
  testId: string;
468
+ delay: number | {
469
+ show: number;
470
+ hide: number;
471
+ };
410
472
  placement: import("floating-vue").Placement;
411
473
  disabled: boolean;
412
474
  distance: number;
@@ -441,6 +503,13 @@ declare const _default: {
441
503
  type: import("vue").PropType<string>;
442
504
  default: string;
443
505
  };
506
+ delay: {
507
+ type: import("vue").PropType<number | {
508
+ show: number;
509
+ hide: number;
510
+ }>;
511
+ default: number;
512
+ };
444
513
  placement: {
445
514
  type: import("vue").PropType<import("floating-vue").Placement>;
446
515
  default: string;
@@ -490,6 +559,13 @@ declare const _default: {
490
559
  type: import("vue").PropType<string>;
491
560
  default: string;
492
561
  };
562
+ delay: {
563
+ type: import("vue").PropType<number | {
564
+ show: number;
565
+ hide: number;
566
+ }>;
567
+ default: number;
568
+ };
493
569
  placement: {
494
570
  type: import("vue").PropType<import("floating-vue").Placement>;
495
571
  default: string;
@@ -534,6 +610,10 @@ declare const _default: {
534
610
  isOpen: (value: boolean) => void;
535
611
  }, string, {
536
612
  testId: string;
613
+ delay: number | {
614
+ show: number;
615
+ hide: number;
616
+ };
537
617
  placement: import("floating-vue").Placement;
538
618
  disabled: boolean;
539
619
  distance: number;
@@ -562,7 +642,7 @@ declare const _default: {
562
642
  dateFormat: string;
563
643
  types: ("date" | "week" | "month")[];
564
644
  maxDaysInRange: number;
565
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
645
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
566
646
  regex: RegExp;
567
647
  initialType: "date" | "week" | "month";
568
648
  openOnTop: boolean;
@@ -610,7 +690,7 @@ declare const _default: {
610
690
  default: any;
611
691
  };
612
692
  datePresetList: {
613
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
693
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
614
694
  default: string;
615
695
  };
616
696
  regex: {
@@ -702,7 +782,7 @@ declare const _default: {
702
782
  default: any;
703
783
  };
704
784
  datePresetList: {
705
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
785
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
706
786
  default: string;
707
787
  };
708
788
  regex: {
@@ -755,7 +835,7 @@ declare const _default: {
755
835
  dateFormat: string;
756
836
  types: ("date" | "week" | "month")[];
757
837
  maxDaysInRange: number;
758
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
838
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
759
839
  regex: RegExp;
760
840
  initialType: "date" | "week" | "month";
761
841
  openOnTop: boolean;
@@ -823,7 +903,7 @@ declare const _default: {
823
903
  default: any;
824
904
  };
825
905
  datePresetList: {
826
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
906
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
827
907
  default: string;
828
908
  };
829
909
  regex: {
@@ -905,7 +985,7 @@ declare const _default: {
905
985
  default: any;
906
986
  };
907
987
  datePresetList: {
908
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
988
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
909
989
  default: string;
910
990
  };
911
991
  regex: {
@@ -958,7 +1038,7 @@ declare const _default: {
958
1038
  dateFormat: string;
959
1039
  types: ("date" | "week" | "month")[];
960
1040
  maxDaysInRange: number;
961
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
1041
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
962
1042
  regex: RegExp;
963
1043
  initialType: "date" | "week" | "month";
964
1044
  openOnTop: boolean;
@@ -987,7 +1067,7 @@ declare const _default: {
987
1067
  dateFormat: string;
988
1068
  types: ("date" | "week" | "month")[];
989
1069
  maxDaysInRange: number;
990
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
1070
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
991
1071
  regex: RegExp;
992
1072
  initialType: "date" | "week" | "month";
993
1073
  openOnTop: boolean;
@@ -1035,7 +1115,7 @@ declare const _default: {
1035
1115
  default: any;
1036
1116
  };
1037
1117
  datePresetList: {
1038
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1118
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
1039
1119
  default: string;
1040
1120
  };
1041
1121
  regex: {
@@ -1127,7 +1207,7 @@ declare const _default: {
1127
1207
  default: any;
1128
1208
  };
1129
1209
  datePresetList: {
1130
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1210
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
1131
1211
  default: string;
1132
1212
  };
1133
1213
  regex: {
@@ -1180,7 +1260,7 @@ declare const _default: {
1180
1260
  dateFormat: string;
1181
1261
  types: ("date" | "week" | "month")[];
1182
1262
  maxDaysInRange: number;
1183
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
1263
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
1184
1264
  regex: RegExp;
1185
1265
  initialType: "date" | "week" | "month";
1186
1266
  openOnTop: boolean;
@@ -1248,7 +1328,7 @@ declare const _default: {
1248
1328
  default: any;
1249
1329
  };
1250
1330
  datePresetList: {
1251
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1331
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
1252
1332
  default: string;
1253
1333
  };
1254
1334
  regex: {
@@ -1330,7 +1410,7 @@ declare const _default: {
1330
1410
  default: any;
1331
1411
  };
1332
1412
  datePresetList: {
1333
- type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
1413
+ type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
1334
1414
  default: string;
1335
1415
  };
1336
1416
  regex: {
@@ -1383,7 +1463,7 @@ declare const _default: {
1383
1463
  dateFormat: string;
1384
1464
  types: ("date" | "week" | "month")[];
1385
1465
  maxDaysInRange: number;
1386
- datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
1466
+ datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
1387
1467
  regex: RegExp;
1388
1468
  initialType: "date" | "week" | "month";
1389
1469
  openOnTop: boolean;
@@ -10811,6 +10891,7 @@ declare const _default: {
10811
10891
  shown: boolean;
10812
10892
  autoHide: boolean;
10813
10893
  dontWrapDisabled: boolean;
10894
+ maxWidth: string;
10814
10895
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10815
10896
  header: {
10816
10897
  type: import("vue").PropType<string>;
@@ -10868,9 +10949,13 @@ declare const _default: {
10868
10949
  type: import("vue").PropType<boolean>;
10869
10950
  default: boolean;
10870
10951
  };
10952
+ maxWidth: {
10953
+ type: import("vue").PropType<string>;
10954
+ default: string;
10955
+ };
10871
10956
  }>> & {
10872
10957
  onShow?: () => any;
10873
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide" | "dontWrapDisabled">;
10958
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide" | "dontWrapDisabled" | "maxWidth">;
10874
10959
  $attrs: {
10875
10960
  [x: string]: unknown;
10876
10961
  };
@@ -10941,6 +11026,10 @@ declare const _default: {
10941
11026
  type: import("vue").PropType<boolean>;
10942
11027
  default: boolean;
10943
11028
  };
11029
+ maxWidth: {
11030
+ type: import("vue").PropType<string>;
11031
+ default: string;
11032
+ };
10944
11033
  }>> & {
10945
11034
  onShow?: () => any;
10946
11035
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -10960,6 +11049,7 @@ declare const _default: {
10960
11049
  shown: boolean;
10961
11050
  autoHide: boolean;
10962
11051
  dontWrapDisabled: boolean;
11052
+ maxWidth: string;
10963
11053
  }, {}, string> & {
10964
11054
  beforeCreate?: (() => void) | (() => void)[];
10965
11055
  created?: (() => void) | (() => void)[];
@@ -11037,6 +11127,10 @@ declare const _default: {
11037
11127
  type: import("vue").PropType<boolean>;
11038
11128
  default: boolean;
11039
11129
  };
11130
+ maxWidth: {
11131
+ type: import("vue").PropType<string>;
11132
+ default: string;
11133
+ };
11040
11134
  }>> & {
11041
11135
  onShow?: () => any;
11042
11136
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -11100,6 +11194,10 @@ declare const _default: {
11100
11194
  type: import("vue").PropType<boolean>;
11101
11195
  default: boolean;
11102
11196
  };
11197
+ maxWidth: {
11198
+ type: import("vue").PropType<string>;
11199
+ default: string;
11200
+ };
11103
11201
  }>> & {
11104
11202
  onShow?: () => any;
11105
11203
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -11119,6 +11217,7 @@ declare const _default: {
11119
11217
  shown: boolean;
11120
11218
  autoHide: boolean;
11121
11219
  dontWrapDisabled: boolean;
11220
+ maxWidth: string;
11122
11221
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
11123
11222
  $slots: {
11124
11223
  default?(_: {}): any;
@@ -11146,6 +11245,7 @@ declare const _default: {
11146
11245
  shown: boolean;
11147
11246
  autoHide: boolean;
11148
11247
  dontWrapDisabled: boolean;
11248
+ maxWidth: string;
11149
11249
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
11150
11250
  header: {
11151
11251
  type: import("vue").PropType<string>;
@@ -11203,9 +11303,13 @@ declare const _default: {
11203
11303
  type: import("vue").PropType<boolean>;
11204
11304
  default: boolean;
11205
11305
  };
11306
+ maxWidth: {
11307
+ type: import("vue").PropType<string>;
11308
+ default: string;
11309
+ };
11206
11310
  }>> & {
11207
11311
  onShow?: () => any;
11208
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide" | "dontWrapDisabled">;
11312
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "header" | "text" | "theme" | "testId" | "delay" | "triggers" | "forceShowWithTruncate" | "placement" | "disabled" | "distance" | "container" | "shown" | "autoHide" | "dontWrapDisabled" | "maxWidth">;
11209
11313
  $attrs: {
11210
11314
  [x: string]: unknown;
11211
11315
  };
@@ -11276,6 +11380,10 @@ declare const _default: {
11276
11380
  type: import("vue").PropType<boolean>;
11277
11381
  default: boolean;
11278
11382
  };
11383
+ maxWidth: {
11384
+ type: import("vue").PropType<string>;
11385
+ default: string;
11386
+ };
11279
11387
  }>> & {
11280
11388
  onShow?: () => any;
11281
11389
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -11295,6 +11403,7 @@ declare const _default: {
11295
11403
  shown: boolean;
11296
11404
  autoHide: boolean;
11297
11405
  dontWrapDisabled: boolean;
11406
+ maxWidth: string;
11298
11407
  }, {}, string> & {
11299
11408
  beforeCreate?: (() => void) | (() => void)[];
11300
11409
  created?: (() => void) | (() => void)[];
@@ -11372,6 +11481,10 @@ declare const _default: {
11372
11481
  type: import("vue").PropType<boolean>;
11373
11482
  default: boolean;
11374
11483
  };
11484
+ maxWidth: {
11485
+ type: import("vue").PropType<string>;
11486
+ default: string;
11487
+ };
11375
11488
  }>> & {
11376
11489
  onShow?: () => any;
11377
11490
  } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
@@ -11435,6 +11548,10 @@ declare const _default: {
11435
11548
  type: import("vue").PropType<boolean>;
11436
11549
  default: boolean;
11437
11550
  };
11551
+ maxWidth: {
11552
+ type: import("vue").PropType<string>;
11553
+ default: string;
11554
+ };
11438
11555
  }>> & {
11439
11556
  onShow?: () => any;
11440
11557
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -11454,6 +11571,7 @@ declare const _default: {
11454
11571
  shown: boolean;
11455
11572
  autoHide: boolean;
11456
11573
  dontWrapDisabled: boolean;
11574
+ maxWidth: string;
11457
11575
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
11458
11576
  $slots: {
11459
11577
  default?(_: {}): any;
@@ -19740,8 +19858,8 @@ declare const _default: {
19740
19858
  withTooltip: boolean;
19741
19859
  tooltipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
19742
19860
  disabled: boolean;
19743
- size: "small" | "medium";
19744
19861
  maxWidth: number;
19862
+ size: "small" | "medium";
19745
19863
  open: boolean;
19746
19864
  startIconName: string;
19747
19865
  startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
@@ -19771,14 +19889,14 @@ declare const _default: {
19771
19889
  type: import("vue").PropType<boolean>;
19772
19890
  default: boolean;
19773
19891
  };
19774
- size: {
19775
- type: import("vue").PropType<"small" | "medium">;
19776
- default: string;
19777
- };
19778
19892
  maxWidth: {
19779
19893
  type: import("vue").PropType<number>;
19780
19894
  default: number;
19781
19895
  };
19896
+ size: {
19897
+ type: import("vue").PropType<"small" | "medium">;
19898
+ default: string;
19899
+ };
19782
19900
  open: {
19783
19901
  type: import("vue").PropType<boolean>;
19784
19902
  default: boolean;
@@ -19797,7 +19915,7 @@ declare const _default: {
19797
19915
  };
19798
19916
  }>> & {
19799
19917
  onClick?: () => any;
19800
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "variant" | "withTooltip" | "tooltipPlacement" | "disabled" | "size" | "maxWidth" | "open" | "startIconName" | "startIconType" | "hideEndIcon">;
19918
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "variant" | "withTooltip" | "tooltipPlacement" | "disabled" | "maxWidth" | "size" | "open" | "startIconName" | "startIconType" | "hideEndIcon">;
19801
19919
  $attrs: {
19802
19920
  [x: string]: unknown;
19803
19921
  };
@@ -19836,14 +19954,14 @@ declare const _default: {
19836
19954
  type: import("vue").PropType<boolean>;
19837
19955
  default: boolean;
19838
19956
  };
19839
- size: {
19840
- type: import("vue").PropType<"small" | "medium">;
19841
- default: string;
19842
- };
19843
19957
  maxWidth: {
19844
19958
  type: import("vue").PropType<number>;
19845
19959
  default: number;
19846
19960
  };
19961
+ size: {
19962
+ type: import("vue").PropType<"small" | "medium">;
19963
+ default: string;
19964
+ };
19847
19965
  open: {
19848
19966
  type: import("vue").PropType<boolean>;
19849
19967
  default: boolean;
@@ -19870,8 +19988,8 @@ declare const _default: {
19870
19988
  withTooltip: boolean;
19871
19989
  tooltipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
19872
19990
  disabled: boolean;
19873
- size: "small" | "medium";
19874
19991
  maxWidth: number;
19992
+ size: "small" | "medium";
19875
19993
  open: boolean;
19876
19994
  startIconName: string;
19877
19995
  startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
@@ -19921,14 +20039,14 @@ declare const _default: {
19921
20039
  type: import("vue").PropType<boolean>;
19922
20040
  default: boolean;
19923
20041
  };
19924
- size: {
19925
- type: import("vue").PropType<"small" | "medium">;
19926
- default: string;
19927
- };
19928
20042
  maxWidth: {
19929
20043
  type: import("vue").PropType<number>;
19930
20044
  default: number;
19931
20045
  };
20046
+ size: {
20047
+ type: import("vue").PropType<"small" | "medium">;
20048
+ default: string;
20049
+ };
19932
20050
  open: {
19933
20051
  type: import("vue").PropType<boolean>;
19934
20052
  default: boolean;
@@ -19976,14 +20094,14 @@ declare const _default: {
19976
20094
  type: import("vue").PropType<boolean>;
19977
20095
  default: boolean;
19978
20096
  };
19979
- size: {
19980
- type: import("vue").PropType<"small" | "medium">;
19981
- default: string;
19982
- };
19983
20097
  maxWidth: {
19984
20098
  type: import("vue").PropType<number>;
19985
20099
  default: number;
19986
20100
  };
20101
+ size: {
20102
+ type: import("vue").PropType<"small" | "medium">;
20103
+ default: string;
20104
+ };
19987
20105
  open: {
19988
20106
  type: import("vue").PropType<boolean>;
19989
20107
  default: boolean;
@@ -20010,8 +20128,8 @@ declare const _default: {
20010
20128
  withTooltip: boolean;
20011
20129
  tooltipPlacement: "top" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right" | "right-start" | "right-end" | "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end";
20012
20130
  disabled: boolean;
20013
- size: "small" | "medium";
20014
20131
  maxWidth: number;
20132
+ size: "small" | "medium";
20015
20133
  open: boolean;
20016
20134
  startIconName: string;
20017
20135
  startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
@@ -28587,3 +28705,4 @@ export * from '@/components/chart';
28587
28705
  export * from '@/components/columnPicker';
28588
28706
  export * from '@/components/columnConfigurator';
28589
28707
  export * from '@/components/tagsField';
28708
+ export * from '@/components/tag';