@ironsource/shared-ui 2.2.0-rc.9 → 2.2.0-test.10

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 (62) hide show
  1. package/CalendarMonth.vue_vue_type_style_index_0_scoped_a44769fd_lang.css +1 -0
  2. package/CalendarMonthV4.vue_vue_type_style_index_0_scoped_6eae923a_lang.css +1 -0
  3. package/ChartHeader.vue_vue_type_style_index_0_scoped_3a061c08_lang.css +1 -0
  4. package/ColumnPicker.vue_vue_type_style_index_0_scoped_d59af062_lang.css +1 -0
  5. package/DataGrid.vue_vue_type_style_index_0_scoped_0967498f_lang.css +1 -0
  6. package/DateRange.vue_vue_type_style_index_0_scoped_25d03907_lang.css +1 -0
  7. package/DateRangeV4.vue_vue_type_style_index_0_scoped_f8826716_lang.css +1 -0
  8. package/SectionDropdown.vue_vue_type_style_index_0_scoped_65877e48_lang.css +1 -0
  9. package/SwitchV4.vue_vue_type_style_index_0_scoped_b71a806e_lang.css +1 -0
  10. package/Tag.vue_vue_type_style_index_0_scoped_211651e9_lang.css +1 -0
  11. package/components/chart/ChartHeader.vue.js +2 -2
  12. package/components/chart/ChartHeader.vue2.js +2 -2
  13. package/components/columnConfigurator/SectionDropdown.vue.js +3 -3
  14. package/components/columnConfigurator/SectionDropdown.vue2.js +6 -7
  15. package/components/columnPicker/ColumnPicker.vue.d.ts +2 -0
  16. package/components/columnPicker/ColumnPicker.vue.js +3 -3
  17. package/components/columnPicker/ColumnPicker.vue2.js +173 -153
  18. package/components/columnPicker/index.d.ts +7 -1
  19. package/components/dateRange/common/CalendarMonth.common.js +46 -41
  20. package/components/dateRange/common/DateRange.common.d.ts +1 -0
  21. package/components/dateRange/common/DateRange.common.js +39 -38
  22. package/components/dateRange/v3/CalendarMonth.vue.d.ts +5 -0
  23. package/components/dateRange/v3/CalendarMonth.vue.js +3 -3
  24. package/components/dateRange/v3/CalendarMonth.vue2.js +6 -5
  25. package/components/dateRange/v3/DateRange.vue.d.ts +5 -0
  26. package/components/dateRange/v3/DateRange.vue.js +2 -2
  27. package/components/dateRange/v3/DateRange.vue2.js +2 -1
  28. package/components/dateRange/v3/index.d.ts +20 -1
  29. package/components/dateRange/v4/CalendarMonthV4.vue.d.ts +5 -0
  30. package/components/dateRange/v4/CalendarMonthV4.vue.js +4 -4
  31. package/components/dateRange/v4/CalendarMonthV4.vue2.js +12 -11
  32. package/components/dateRange/v4/DateRangeV4.vue.d.ts +5 -0
  33. package/components/dateRange/v4/DateRangeV4.vue.js +3 -3
  34. package/components/dateRange/v4/DateRangeV4.vue2.js +104 -101
  35. package/components/dateRange/v4/index.d.ts +20 -1
  36. package/components/switch/v4/SwitchV4.vue.d.ts +5 -0
  37. package/components/switch/v4/SwitchV4.vue.js +4 -4
  38. package/components/switch/v4/SwitchV4.vue2.js +14 -13
  39. package/components/switch/v4/index.d.ts +9 -0
  40. package/components/table/v4/DataGrid.vue.d.ts +2 -0
  41. package/components/table/v4/DataGrid.vue.js +2 -2
  42. package/components/table/v4/DataGrid.vue2.js +116 -115
  43. package/components/table/v4/index.d.ts +7 -1
  44. package/components/tag/Tag.vue.d.ts +110 -0
  45. package/components/tag/Tag.vue.js +7 -0
  46. package/components/tag/Tag.vue2.js +225 -0
  47. package/components/tag/index.d.ts +159 -0
  48. package/components/tag/index.js +6 -0
  49. package/components/tagsField/index.d.ts +42 -3
  50. package/components/tagsField/index.js +6 -4
  51. package/index.d.ts +73 -4
  52. package/index.js +84 -78
  53. package/package.json +6 -2
  54. package/CalendarMonth.vue_vue_type_style_index_0_scoped_acd3440c_lang.css +0 -1
  55. package/CalendarMonthV4.vue_vue_type_style_index_0_scoped_b0d3ea50_lang.css +0 -1
  56. package/ChartHeader.vue_vue_type_style_index_0_scoped_9a603520_lang.css +0 -1
  57. package/ColumnPicker.vue_vue_type_style_index_0_scoped_01c4e08f_lang.css +0 -1
  58. package/DataGrid.vue_vue_type_style_index_0_scoped_46851fcb_lang.css +0 -1
  59. package/DateRange.vue_vue_type_style_index_0_scoped_70e316e9_lang.css +0 -1
  60. package/DateRangeV4.vue_vue_type_style_index_0_scoped_a849128a_lang.css +0 -1
  61. package/SectionDropdown.vue_vue_type_style_index_0_scoped_cfad60a8_lang.css +0 -1
  62. package/SwitchV4.vue_vue_type_style_index_0_scoped_0a80c49f_lang.css +0 -1
package/index.d.ts CHANGED
@@ -568,6 +568,7 @@ declare const _default: {
568
568
  openOnTop: boolean;
569
569
  showPresets: boolean;
570
570
  maxDate: Date;
571
+ minDate: Date;
571
572
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
572
573
  testId: {
573
574
  type: import("vue").PropType<string>;
@@ -635,6 +636,10 @@ declare const _default: {
635
636
  type: import("vue").PropType<Date>;
636
637
  default: any;
637
638
  };
639
+ minDate: {
640
+ type: import("vue").PropType<Date>;
641
+ default: any;
642
+ };
638
643
  }>> & {
639
644
  onOpened?: (...args: any[]) => any;
640
645
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -642,7 +647,7 @@ declare const _default: {
642
647
  onRangeChanged?: (...args: any[]) => any;
643
648
  onDateRangePresetNameChanged?: (...args: any[]) => any;
644
649
  onDismissed?: (...args: any[]) => any;
645
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "allowedDays" | "uniqueId" | "includeToday" | "dateFormat" | "types" | "maxDaysInRange" | "datePresetList" | "regex" | "initialType" | "openOnTop" | "showPresets" | "maxDate">;
650
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "allowedDays" | "uniqueId" | "includeToday" | "dateFormat" | "types" | "maxDaysInRange" | "datePresetList" | "regex" | "initialType" | "openOnTop" | "showPresets" | "maxDate" | "minDate">;
646
651
  $attrs: {
647
652
  [x: string]: unknown;
648
653
  };
@@ -723,6 +728,10 @@ declare const _default: {
723
728
  type: import("vue").PropType<Date>;
724
729
  default: any;
725
730
  };
731
+ minDate: {
732
+ type: import("vue").PropType<Date>;
733
+ default: any;
734
+ };
726
735
  }>> & {
727
736
  onOpened?: (...args: any[]) => any;
728
737
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -752,6 +761,7 @@ declare const _default: {
752
761
  openOnTop: boolean;
753
762
  showPresets: boolean;
754
763
  maxDate: Date;
764
+ minDate: Date;
755
765
  }, {}, string> & {
756
766
  beforeCreate?: (() => void) | (() => void)[];
757
767
  created?: (() => void) | (() => void)[];
@@ -839,6 +849,10 @@ declare const _default: {
839
849
  type: import("vue").PropType<Date>;
840
850
  default: any;
841
851
  };
852
+ minDate: {
853
+ type: import("vue").PropType<Date>;
854
+ default: any;
855
+ };
842
856
  }>> & {
843
857
  onOpened?: (...args: any[]) => any;
844
858
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -917,6 +931,10 @@ declare const _default: {
917
931
  type: import("vue").PropType<Date>;
918
932
  default: any;
919
933
  };
934
+ minDate: {
935
+ type: import("vue").PropType<Date>;
936
+ default: any;
937
+ };
920
938
  }>> & {
921
939
  onOpened?: (...args: any[]) => any;
922
940
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -946,6 +964,7 @@ declare const _default: {
946
964
  openOnTop: boolean;
947
965
  showPresets: boolean;
948
966
  maxDate: Date;
967
+ minDate: Date;
949
968
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
950
969
  $slots: {
951
970
  field?(_: {
@@ -974,6 +993,7 @@ declare const _default: {
974
993
  openOnTop: boolean;
975
994
  showPresets: boolean;
976
995
  maxDate: Date;
996
+ minDate: Date;
977
997
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
978
998
  testId: {
979
999
  type: import("vue").PropType<string>;
@@ -1041,6 +1061,10 @@ declare const _default: {
1041
1061
  type: import("vue").PropType<Date>;
1042
1062
  default: any;
1043
1063
  };
1064
+ minDate: {
1065
+ type: import("vue").PropType<Date>;
1066
+ default: any;
1067
+ };
1044
1068
  }>> & {
1045
1069
  onOpened?: (...args: any[]) => any;
1046
1070
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -1048,7 +1072,7 @@ declare const _default: {
1048
1072
  onRangeChanged?: (...args: any[]) => any;
1049
1073
  onDateRangePresetNameChanged?: (...args: any[]) => any;
1050
1074
  onDismissed?: (...args: any[]) => any;
1051
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "allowedDays" | "uniqueId" | "includeToday" | "dateFormat" | "types" | "maxDaysInRange" | "datePresetList" | "regex" | "initialType" | "openOnTop" | "showPresets" | "maxDate">;
1075
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "allowedDays" | "uniqueId" | "includeToday" | "dateFormat" | "types" | "maxDaysInRange" | "datePresetList" | "regex" | "initialType" | "openOnTop" | "showPresets" | "maxDate" | "minDate">;
1052
1076
  $attrs: {
1053
1077
  [x: string]: unknown;
1054
1078
  };
@@ -1129,6 +1153,10 @@ declare const _default: {
1129
1153
  type: import("vue").PropType<Date>;
1130
1154
  default: any;
1131
1155
  };
1156
+ minDate: {
1157
+ type: import("vue").PropType<Date>;
1158
+ default: any;
1159
+ };
1132
1160
  }>> & {
1133
1161
  onOpened?: (...args: any[]) => any;
1134
1162
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -1158,6 +1186,7 @@ declare const _default: {
1158
1186
  openOnTop: boolean;
1159
1187
  showPresets: boolean;
1160
1188
  maxDate: Date;
1189
+ minDate: Date;
1161
1190
  }, {}, string> & {
1162
1191
  beforeCreate?: (() => void) | (() => void)[];
1163
1192
  created?: (() => void) | (() => void)[];
@@ -1245,6 +1274,10 @@ declare const _default: {
1245
1274
  type: import("vue").PropType<Date>;
1246
1275
  default: any;
1247
1276
  };
1277
+ minDate: {
1278
+ type: import("vue").PropType<Date>;
1279
+ default: any;
1280
+ };
1248
1281
  }>> & {
1249
1282
  onOpened?: (...args: any[]) => any;
1250
1283
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -1323,6 +1356,10 @@ declare const _default: {
1323
1356
  type: import("vue").PropType<Date>;
1324
1357
  default: any;
1325
1358
  };
1359
+ minDate: {
1360
+ type: import("vue").PropType<Date>;
1361
+ default: any;
1362
+ };
1326
1363
  }>> & {
1327
1364
  onOpened?: (...args: any[]) => any;
1328
1365
  onRangeTypeChanged?: (...args: any[]) => any;
@@ -1352,6 +1389,7 @@ declare const _default: {
1352
1389
  openOnTop: boolean;
1353
1390
  showPresets: boolean;
1354
1391
  maxDate: Date;
1392
+ minDate: Date;
1355
1393
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
1356
1394
  $slots: {
1357
1395
  field?(_: {
@@ -6109,6 +6147,7 @@ declare const _default: {
6109
6147
  onOnClearSearch?: () => any;
6110
6148
  onClickRow?: (rowIndex: number) => any;
6111
6149
  onSelectRow?: (value: boolean) => any;
6150
+ onColumnHover?: (column: tableV3.Column) => any;
6112
6151
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "loadingRowCount" | "zIndexBase" | "showSearch" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "useAvailableHeight" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
6113
6152
  $attrs: {
6114
6153
  [x: string]: unknown;
@@ -6121,7 +6160,7 @@ declare const _default: {
6121
6160
  }>;
6122
6161
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6123
6162
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
6124
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "clickRow", rowIndex: number) => void) & ((event: "selectRow", value: boolean) => void);
6163
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "clickRow", rowIndex: number) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "columnHover", column: tableV3.Column) => void);
6125
6164
  $el: any;
6126
6165
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
6127
6166
  sort: {
@@ -6266,6 +6305,7 @@ declare const _default: {
6266
6305
  onOnClearSearch?: () => any;
6267
6306
  onClickRow?: (rowIndex: number) => any;
6268
6307
  onSelectRow?: (value: boolean) => any;
6308
+ onColumnHover?: (column: tableV3.Column) => any;
6269
6309
  }, {
6270
6310
  scrollTo: (index: number) => void;
6271
6311
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -6279,6 +6319,7 @@ declare const _default: {
6279
6319
  selectAll: (value: boolean) => void;
6280
6320
  selectRow: (value: boolean) => void;
6281
6321
  clickRow: (rowIndex: number) => void;
6322
+ columnHover: (column: tableV3.Column) => void;
6282
6323
  }, string, {
6283
6324
  sort: tableV3.Sort;
6284
6325
  title: string;
@@ -6473,6 +6514,7 @@ declare const _default: {
6473
6514
  onOnClearSearch?: () => any;
6474
6515
  onClickRow?: (rowIndex: number) => any;
6475
6516
  onSelectRow?: (value: boolean) => any;
6517
+ onColumnHover?: (column: tableV3.Column) => any;
6476
6518
  } & import("vue").ShallowUnwrapRef<{
6477
6519
  scrollTo: (index: number) => void;
6478
6520
  }> & {} & import("vue").ComponentCustomProperties & {};
@@ -6622,6 +6664,7 @@ declare const _default: {
6622
6664
  onOnClearSearch?: () => any;
6623
6665
  onClickRow?: (rowIndex: number) => any;
6624
6666
  onSelectRow?: (value: boolean) => any;
6667
+ onColumnHover?: (column: tableV3.Column) => any;
6625
6668
  }, {
6626
6669
  scrollTo: (index: number) => void;
6627
6670
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -6635,6 +6678,7 @@ declare const _default: {
6635
6678
  selectAll: (value: boolean) => void;
6636
6679
  selectRow: (value: boolean) => void;
6637
6680
  clickRow: (rowIndex: number) => void;
6681
+ columnHover: (column: tableV3.Column) => void;
6638
6682
  }, string, {
6639
6683
  sort: tableV3.Sort;
6640
6684
  title: string;
@@ -7356,6 +7400,7 @@ declare const _default: {
7356
7400
  onOnClearSearch?: () => any;
7357
7401
  onClickRow?: (rowIndex: number) => any;
7358
7402
  onSelectRow?: (value: boolean) => any;
7403
+ onColumnHover?: (column: tableV3.Column) => any;
7359
7404
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "sort" | "title" | "search" | "testId" | "isLoading" | "searchAutoFocus" | "searchPlaceholder" | "selection" | "loadingRowCount" | "zIndexBase" | "showSearch" | "emptyStateTitle" | "isSticky" | "sections" | "isStickyHeader" | "emptyStateSubtitle" | "isInfiniteScroll" | "infiniteScrollThreshold" | "rowHeight" | "defaultScrollPosition" | "getRowId" | "getRowKey" | "emptyStateVariant" | "rowCustomClassKey" | "rowDataKey" | "helpTooltipVariant" | "useAvailableHeight" | "selectedMatcher" | "isSelectionSticky" | "isSelectionBordered">;
7360
7405
  $attrs: {
7361
7406
  [x: string]: unknown;
@@ -7368,7 +7413,7 @@ declare const _default: {
7368
7413
  }>;
7369
7414
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7370
7415
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
7371
- $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "clickRow", rowIndex: number) => void) & ((event: "selectRow", value: boolean) => void);
7416
+ $emit: ((event: "onScroll", event: Event) => void) & ((event: "selectAll", value: boolean) => void) & ((event: "loadMore") => void) & ((event: "onClearSearch") => void) & ((event: "update:selection", selection: unknown[]) => void) & ((event: "update:search", query: string) => void) & ((event: "update:sort", newSort: tableV3.Sort) => void) & ((event: "saveRow", args_0: import("./components/table/common/Table.types").SaveRowEvent) => void) & ((event: "clickRow", rowIndex: number) => void) & ((event: "selectRow", value: boolean) => void) & ((event: "columnHover", column: tableV3.Column) => void);
7372
7417
  $el: any;
7373
7418
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
7374
7419
  sort: {
@@ -7513,6 +7558,7 @@ declare const _default: {
7513
7558
  onOnClearSearch?: () => any;
7514
7559
  onClickRow?: (rowIndex: number) => any;
7515
7560
  onSelectRow?: (value: boolean) => any;
7561
+ onColumnHover?: (column: tableV3.Column) => any;
7516
7562
  }, {
7517
7563
  scrollTo: (index: number) => void;
7518
7564
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -7526,6 +7572,7 @@ declare const _default: {
7526
7572
  selectAll: (value: boolean) => void;
7527
7573
  selectRow: (value: boolean) => void;
7528
7574
  clickRow: (rowIndex: number) => void;
7575
+ columnHover: (column: tableV3.Column) => void;
7529
7576
  }, string, {
7530
7577
  sort: tableV3.Sort;
7531
7578
  title: string;
@@ -7720,6 +7767,7 @@ declare const _default: {
7720
7767
  onOnClearSearch?: () => any;
7721
7768
  onClickRow?: (rowIndex: number) => any;
7722
7769
  onSelectRow?: (value: boolean) => any;
7770
+ onColumnHover?: (column: tableV3.Column) => any;
7723
7771
  } & import("vue").ShallowUnwrapRef<{
7724
7772
  scrollTo: (index: number) => void;
7725
7773
  }> & {} & import("vue").ComponentCustomProperties & {};
@@ -7869,6 +7917,7 @@ declare const _default: {
7869
7917
  onOnClearSearch?: () => any;
7870
7918
  onClickRow?: (rowIndex: number) => any;
7871
7919
  onSelectRow?: (value: boolean) => any;
7920
+ onColumnHover?: (column: tableV3.Column) => any;
7872
7921
  }, {
7873
7922
  scrollTo: (index: number) => void;
7874
7923
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -7882,6 +7931,7 @@ declare const _default: {
7882
7931
  selectAll: (value: boolean) => void;
7883
7932
  selectRow: (value: boolean) => void;
7884
7933
  clickRow: (rowIndex: number) => void;
7934
+ columnHover: (column: tableV3.Column) => void;
7885
7935
  }, string, {
7886
7936
  sort: tableV3.Sort;
7887
7937
  title: string;
@@ -28044,6 +28094,10 @@ declare const _default: {
28044
28094
  type: import("vue").PropType<unknown>;
28045
28095
  required: true;
28046
28096
  };
28097
+ iconSize: {
28098
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge" | "extraSmall">;
28099
+ default: string;
28100
+ };
28047
28101
  options: {
28048
28102
  type: import("vue").PropType<unknown[]>;
28049
28103
  required: true;
@@ -28076,6 +28130,10 @@ declare const _default: {
28076
28130
  type: import("vue").PropType<unknown>;
28077
28131
  required: true;
28078
28132
  };
28133
+ iconSize: {
28134
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge" | "extraSmall">;
28135
+ default: string;
28136
+ };
28079
28137
  options: {
28080
28138
  type: import("vue").PropType<unknown[]>;
28081
28139
  required: true;
@@ -28094,6 +28152,7 @@ declare const _default: {
28094
28152
  testId: string;
28095
28153
  variant: "default" | "primary";
28096
28154
  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";
28155
+ iconSize: "small" | "medium" | "large" | "extraLarge" | "extraSmall";
28097
28156
  iconKey: string;
28098
28157
  tooltipTextKey: string;
28099
28158
  }>;
@@ -28115,6 +28174,10 @@ declare const _default: {
28115
28174
  type: import("vue").PropType<unknown>;
28116
28175
  required: true;
28117
28176
  };
28177
+ iconSize: {
28178
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge" | "extraSmall">;
28179
+ default: string;
28180
+ };
28118
28181
  options: {
28119
28182
  type: import("vue").PropType<unknown[]>;
28120
28183
  required: true;
@@ -28147,6 +28210,10 @@ declare const _default: {
28147
28210
  type: import("vue").PropType<unknown>;
28148
28211
  required: true;
28149
28212
  };
28213
+ iconSize: {
28214
+ type: import("vue").PropType<"small" | "medium" | "large" | "extraLarge" | "extraSmall">;
28215
+ default: string;
28216
+ };
28150
28217
  options: {
28151
28218
  type: import("vue").PropType<unknown[]>;
28152
28219
  required: true;
@@ -28165,6 +28232,7 @@ declare const _default: {
28165
28232
  testId: string;
28166
28233
  variant: "default" | "primary";
28167
28234
  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";
28235
+ iconSize: "small" | "medium" | "large" | "extraLarge" | "extraSmall";
28168
28236
  iconKey: string;
28169
28237
  tooltipTextKey: string;
28170
28238
  }>[];
@@ -28519,3 +28587,4 @@ export * from '@/components/chart';
28519
28587
  export * from '@/components/columnPicker';
28520
28588
  export * from '@/components/columnConfigurator';
28521
28589
  export * from '@/components/tagsField';
28590
+ export * from '@/components/tag';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import './AppTrigger.vue_vue_type_style_index_0_scoped_121aac8b_lang.css';
1
+ import './AutocompleteDropdown.vue_vue_type_style_index_0_scoped_214ddaf4_lang.css';
2
2
  import { AppTriggerTypes as eo } from "./components/appTrigger/index.js";
3
3
  import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
4
4
  import { MenuItemTypes as ao } from "./components/menuItem/index.js";
@@ -6,7 +6,7 @@ import { MenuTypes as io } from "./components/menu/index.js";
6
6
  import { AppIconTypes as so } from "./components/appIcon/index.js";
7
7
  import { FloatingToolbarTypes as lo } from "./components/floatingToolbar/index.js";
8
8
  import { IncludeExcludeTypes as $o } from "./components/includeExclude/index.js";
9
- import { ID_INJECTION_KEY as co, useId as yo } from "./composables/useId.js";
9
+ import { ID_INJECTION_KEY as yo, useId as co } from "./composables/useId.js";
10
10
  import { FilterDropdownTypes as Fo } from "./components/filterDropdown/index.js";
11
11
  import { TypographyTypes as Co } from "./components/typography/index.js";
12
12
  import { TypographyTypesV4 as Eo } from "./components/typography/v4/index.js";
@@ -30,8 +30,8 @@ import * as l from "./components/checkbox/v4/index.js";
30
30
  import * as u from "./components/icon/v3/index.js";
31
31
  import * as $ from "./components/icon/v4/index.js";
32
32
  import * as T from "./components/input/v3/index.js";
33
- import * as c from "./components/input/v4/index.js";
34
- import * as y from "./components/tabs/v3/index.js";
33
+ import * as y from "./components/input/v4/index.js";
34
+ import * as c from "./components/tabs/v3/index.js";
35
35
  import * as g from "./components/tabs/v4/index.js";
36
36
  import * as F from "./components/dialog/v3/index.js";
37
37
  import * as I from "./components/dialog/v4/index.js";
@@ -79,40 +79,43 @@ import { ChartTypes as or } from "./components/chart/index.js";
79
79
  import { ColumnPickerTypes as er } from "./components/columnPicker/index.js";
80
80
  import { ColumnConfiguratorTypes as mr } from "./components/columnConfigurator/index.js";
81
81
  import { TagsFieldTypes as ar } from "./components/tagsField/index.js";
82
- import { default as ir } from "./components/appTrigger/AppTrigger.vue.js";
83
- import { default as xr } from "./components/autocompleteDropdown/AutocompleteDropdown.vue.js";
84
- import { default as nr } from "./components/menuItem/MenuItem.vue.js";
85
- import { default as ur } from "./components/menu/Menu.vue.js";
86
- import { default as Tr } from "./components/appIcon/AppIcon.vue.js";
87
- import { default as yr } from "./components/floatingToolbar/FloatingToolbar.vue.js";
88
- import { default as Fr } from "./components/includeExclude/IncludeExclude.vue.js";
89
- import { default as Cr } from "./components/includeExclude/IncludeExcludeDragDrop.vue.js";
90
- import { default as Er } from "./components/includeExclude/IncludeExcludeOption.vue.js";
91
- import { default as hr } from "./components/includeExclude/IncludeExcludeOptionDraggable.vue.js";
92
- import { default as Mr } from "./components/includeExclude/IncludeExcludeAppTrigger.vue.js";
93
- import { default as wr } from "./components/includeExclude/IncludeExcludeAppHeader.vue.js";
94
- import { default as Hr } from "./components/includeExclude/IncludeExcludeChipFilter.vue.js";
95
- import { default as Pr } from "./components/filterDropdown/FilterDropdown.vue.js";
96
- import { default as vr } from "./components/filterDropdown/AddFilterButton.vue.js";
97
- import { default as Nr } from "./components/typography/Heading.vue.js";
98
- import { default as Jr } from "./components/typography/Text.vue.js";
99
- import { default as Rr } from "./components/typography/v4/Typography.vue.js";
100
- import { default as jr } from "./components/multibar/MultiBar.vue.js";
101
- import { default as zr } from "./components/layout/FoldableSection.vue.js";
102
- import { default as Qr } from "./components/forms/FormRow.vue.js";
103
- import { default as Ur } from "./components/forms/FormCard.vue.js";
104
- import { default as Xr } from "./components/forms/CardPanel.vue.js";
105
- import { default as oe } from "./components/forms/FormField.vue.js";
106
- import { default as ee } from "./components/banner/Banner.vue.js";
107
- import { default as me } from "./components/alert/Alert.vue.js";
108
- import { default as ae } from "./components/link/Link.vue.js";
109
- import { default as ie } from "./components/helpText/HelpText.vue.js";
110
- import { default as xe } from "./components/autocomplete/Autocomplete.vue.js";
111
- import { default as ne } from "./components/chart/Chart.vue.js";
112
- import { ChartType as ue, TooltipOrder as $e, TrendDirection as Te } from "./components/chart/types.js";
113
- import { default as ye } from "./components/columnPicker/ColumnPicker.vue.js";
114
- import { default as Fe } from "./components/columnConfigurator/ColumnConfigurator.vue.js";
115
- import { default as Ce } from "./components/tagsField/TagsField.vue.js";
82
+ import { TagTypes as ir } from "./components/tag/index.js";
83
+ import { default as xr } from "./components/appTrigger/AppTrigger.vue.js";
84
+ import { default as nr } from "./components/autocompleteDropdown/AutocompleteDropdown.vue.js";
85
+ import { default as ur } from "./components/menuItem/MenuItem.vue.js";
86
+ import { default as Tr } from "./components/menu/Menu.vue.js";
87
+ import { default as cr } from "./components/appIcon/AppIcon.vue.js";
88
+ import { default as Fr } from "./components/floatingToolbar/FloatingToolbar.vue.js";
89
+ import { default as Cr } from "./components/includeExclude/IncludeExclude.vue.js";
90
+ import { default as Er } from "./components/includeExclude/IncludeExcludeDragDrop.vue.js";
91
+ import { default as hr } from "./components/includeExclude/IncludeExcludeOption.vue.js";
92
+ import { default as Mr } from "./components/includeExclude/IncludeExcludeOptionDraggable.vue.js";
93
+ import { default as wr } from "./components/includeExclude/IncludeExcludeAppTrigger.vue.js";
94
+ import { default as Hr } from "./components/includeExclude/IncludeExcludeAppHeader.vue.js";
95
+ import { default as Pr } from "./components/includeExclude/IncludeExcludeChipFilter.vue.js";
96
+ import { default as vr } from "./components/filterDropdown/FilterDropdown.vue.js";
97
+ import { default as Nr } from "./components/filterDropdown/AddFilterButton.vue.js";
98
+ import { default as Jr } from "./components/typography/Heading.vue.js";
99
+ import { default as Rr } from "./components/typography/Text.vue.js";
100
+ import { default as jr } from "./components/typography/v4/Typography.vue.js";
101
+ import { default as zr } from "./components/multibar/MultiBar.vue.js";
102
+ import { default as Qr } from "./components/layout/FoldableSection.vue.js";
103
+ import { default as Ur } from "./components/forms/FormRow.vue.js";
104
+ import { default as Xr } from "./components/forms/FormCard.vue.js";
105
+ import { default as oe } from "./components/forms/CardPanel.vue.js";
106
+ import { default as ee } from "./components/forms/FormField.vue.js";
107
+ import { default as me } from "./components/banner/Banner.vue.js";
108
+ import { default as ae } from "./components/alert/Alert.vue.js";
109
+ import { default as ie } from "./components/link/Link.vue.js";
110
+ import { default as xe } from "./components/helpText/HelpText.vue.js";
111
+ import { default as ne } from "./components/autocomplete/Autocomplete.vue.js";
112
+ import { default as ue } from "./components/chart/Chart.vue.js";
113
+ import { ChartType as Te, TooltipOrder as ye, TrendDirection as ce } from "./components/chart/types.js";
114
+ import { default as Fe } from "./components/columnPicker/ColumnPicker.vue.js";
115
+ import { default as Ce } from "./components/columnConfigurator/ColumnConfigurator.vue.js";
116
+ import { default as Ee } from "./components/tagsField/TagsField.vue.js";
117
+ import { default as he } from "./components/tagsField/TagsFieldChip.vue.js";
118
+ import { default as Me } from "./components/tag/Tag.vue.js";
116
119
  const Z = {
117
120
  ...e,
118
121
  ...t,
@@ -127,10 +130,10 @@ const Z = {
127
130
  ...x,
128
131
  ...s,
129
132
  ...T,
130
- ...c,
133
+ ...y,
131
134
  ...u,
132
135
  ...$,
133
- ...y,
136
+ ...c,
134
137
  ...g,
135
138
  ...F,
136
139
  ...I,
@@ -169,64 +172,67 @@ const Z = {
169
172
  ...X
170
173
  };
171
174
  export {
172
- vr as AddFilterButton,
173
- me as Alert,
175
+ Nr as AddFilterButton,
176
+ ae as Alert,
174
177
  zo as AlertTypes,
175
- Tr as AppIcon,
178
+ cr as AppIcon,
176
179
  so as AppIconTypes,
177
- ir as AppTrigger,
180
+ xr as AppTrigger,
178
181
  eo as AppTriggerTypes,
179
- xe as Autocomplete,
180
- xr as AutocompleteDropdown,
182
+ ne as Autocomplete,
183
+ nr as AutocompleteDropdown,
181
184
  mo as AutocompleteDropdownTypes,
182
185
  Xo as AutocompleteTypes,
183
- ee as Banner,
186
+ me as Banner,
184
187
  jo as BannerTypes,
185
- Xr as CardPanel,
186
- ne as Chart,
187
- ue as ChartType,
188
+ oe as CardPanel,
189
+ ue as Chart,
190
+ Te as ChartType,
188
191
  or as ChartTypes,
189
- Fe as ColumnConfigurator,
192
+ Ce as ColumnConfigurator,
190
193
  mr as ColumnConfiguratorTypes,
191
- ye as ColumnPicker,
194
+ Fe as ColumnPicker,
192
195
  er as ColumnPickerTypes,
193
- Pr as FilterDropdown,
196
+ vr as FilterDropdown,
194
197
  Fo as FilterDropdownTypes,
195
- yr as FloatingToolbar,
198
+ Fr as FloatingToolbar,
196
199
  lo as FloatingToolbarTypes,
197
- zr as FoldableSection,
200
+ Qr as FoldableSection,
198
201
  Mo as FoldableSectionTypes,
199
- Ur as FormCard,
202
+ Xr as FormCard,
200
203
  wo as FormCardTypes,
201
- oe as FormField,
204
+ ee as FormField,
202
205
  ko as FormFieldTypes,
203
- Qr as FormRow,
204
- Nr as Heading,
205
- ie as HelpText,
206
+ Ur as FormRow,
207
+ Jr as Heading,
208
+ xe as HelpText,
206
209
  Uo as HelpTextTypes,
207
- co as ID_INJECTION_KEY,
208
- Fr as IncludeExclude,
209
- wr as IncludeExcludeAppHeader,
210
- Mr as IncludeExcludeAppTrigger,
211
- Hr as IncludeExcludeChipFilter,
212
- Cr as IncludeExcludeDragDrop,
213
- Er as IncludeExcludeOption,
214
- hr as IncludeExcludeOptionDraggable,
210
+ yo as ID_INJECTION_KEY,
211
+ Cr as IncludeExclude,
212
+ Hr as IncludeExcludeAppHeader,
213
+ wr as IncludeExcludeAppTrigger,
214
+ Pr as IncludeExcludeChipFilter,
215
+ Er as IncludeExcludeDragDrop,
216
+ hr as IncludeExcludeOption,
217
+ Mr as IncludeExcludeOptionDraggable,
215
218
  $o as IncludeExcludeTypes,
216
- ae as Link,
219
+ ie as Link,
217
220
  Qo as LinkTypes,
218
- ur as Menu,
219
- nr as MenuItem,
221
+ Tr as Menu,
222
+ ur as MenuItem,
220
223
  ao as MenuItemTypes,
221
224
  io as MenuTypes,
222
- jr as MultiBar,
225
+ zr as MultiBar,
223
226
  ho as MultiBarTypes,
224
- Ce as TagsField,
227
+ Me as Tag,
228
+ ir as TagTypes,
229
+ Ee as TagsField,
230
+ he as TagsFieldChip,
225
231
  ar as TagsFieldTypes,
226
- Jr as Text,
227
- $e as TooltipOrder,
228
- Te as TrendDirection,
229
- Rr as Typography,
232
+ Rr as Text,
233
+ ye as TooltipOrder,
234
+ ce as TrendDirection,
235
+ jr as Typography,
230
236
  Co as TypographyTypes,
231
237
  Eo as TypographyTypesV4,
232
238
  Z as default,
@@ -234,7 +240,7 @@ export {
234
240
  No as scrollToFirstInvalidElement,
235
241
  Ro as useDateService,
236
242
  Vo as useFormValidation,
237
- yo as useId,
243
+ co as useId,
238
244
  So as useSearch,
239
245
  Oo as useToggle,
240
246
  Jo as yupValidation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ironsource/shared-ui",
3
- "version": "2.2.0-rc.9",
3
+ "version": "2.2.0-test.10",
4
4
  "engines": {
5
5
  "npm": ">=7.0.0",
6
6
  "node": ">=16.0.0"
@@ -239,7 +239,8 @@
239
239
  "./sortableList": "./components/sortableList/index.js",
240
240
  "./composables/useFormValidation": "./composables/useFormValidation.js",
241
241
  "./composables/useDateService": "./composables/useDateService.js",
242
- "./utils/": "./utils/index.ts"
242
+ "./utils/": "./utils/index.ts",
243
+ "./tag": "./components/tag/index.js"
243
244
  },
244
245
  "typesVersions": {
245
246
  "*": {
@@ -494,6 +495,9 @@
494
495
  ],
495
496
  "composables/useDateService": [
496
497
  "./composables/useDateService.d.ts"
498
+ ],
499
+ "tag": [
500
+ "./components/tag/index.d.ts"
497
501
  ]
498
502
  }
499
503
  },
@@ -1 +0,0 @@
1
- .label[data-v-acd3440c]{color:#41454d}.days-wrapper[data-v-acd3440c]{color:#53575b}.days-wrapper .day[data-v-acd3440c]{position:relative;width:32px;height:32px;cursor:pointer;display:inline-block;text-align:center;padding:5px;margin-bottom:4px;line-height:21px;box-sizing:border-box}.days-wrapper .day[data-v-acd3440c]:not(.non-day):not(.disabled-day):not(.selected-day):hover:before{content:"";display:block;position:absolute;background:#f1f3f4;width:32px;height:32px;left:50%;top:0;margin-left:-16px;border-radius:100px;z-index:-1}.days-wrapper .day.today[data-v-acd3440c]:after{content:"";background:#3083ff;position:absolute;text-align:center;width:4px;height:4px;border-radius:100%;bottom:4px;left:50%;margin-left:-2px}.days-wrapper .day.today.selected-day[data-v-acd3440c]:after,.days-wrapper .day.today.selected-day-between[data-v-acd3440c]:after{background:#ffffff}.days-wrapper .day.start-day[data-v-acd3440c]{border-radius:100px 0 0 100px}.days-wrapper .day.end-day[data-v-acd3440c]{border-radius:0 100px 100px 0}.days-wrapper .day.start-day.end-day[data-v-acd3440c]{background-color:transparent!important}.days-wrapper .day.start-day.end-day[data-v-acd3440c]:before{content:"";display:block;position:absolute;background:#3083ff;width:32px;height:32px;left:50%;top:0;margin-left:-16px;border-radius:100px;z-index:-1}.days-wrapper .day.selected-day-between[data-v-acd3440c]{color:#fff;background-color:#96c0ff}.days-wrapper .day.selected-day-between[data-v-acd3440c]:hover{background-color:#f1f3f4;color:#696a6b}.days-wrapper .day.selected-day[data-v-acd3440c]{background-color:#3083ff!important;color:#fff}.days-wrapper .day.selected-day[data-v-acd3440c]:hover{color:#fff}.days-wrapper .day.disabled-day[data-v-acd3440c]{color:#a9afb4;cursor:default;background:transparent}.days-wrapper .day.non-day[data-v-acd3440c]{color:transparent;cursor:default;background:transparent}.calendar-month[data-v-acd3440c]{user-select:none;box-sizing:unset;padding:0;overflow:hidden;position:relative;width:224px;margin:auto}.calendar-month .days-header[data-v-acd3440c]{padding:21px 0 14px;color:#8e959d}.calendar-month .days-header span[data-v-acd3440c]{width:32px;display:inline-block;text-align:center}.calendar-month .month-header[data-v-acd3440c]{padding-top:13px;padding-bottom:3px;text-align:center;color:#53575b}.calendar-month .next[data-v-acd3440c]{right:4px;cursor:pointer;position:absolute;z-index:16}.calendar-month .next[data-v-acd3440c],.calendar-month .previous[data-v-acd3440c]{transform:translateY(8px)}.calendar-month .previous[data-v-acd3440c]{left:4px;cursor:pointer;position:absolute;z-index:16}
@@ -1 +0,0 @@
1
- .label[data-v-b0d3ea50]{color:#41454d}.days-wrapper .date-wrapper[data-v-b0d3ea50]{position:relative;width:32px;height:32px;display:inline-block;text-align:center;margin-bottom:4px;line-height:21px;box-sizing:border-box}.days-wrapper .date-wrapper.start-day-wrapper[data-v-b0d3ea50]{background:var(--primary-light, #cee7fe);border-radius:100% 0% 0% 100%}.days-wrapper .date-wrapper.end-day-wrapper[data-v-b0d3ea50]{background:var(--primary-light, #cee7fe);border-radius:0% 100% 100% 0%}.days-wrapper .date-wrapper.start-day-wrapper.end-day-wrapper[data-v-b0d3ea50]{background-color:transparent!important}.days-wrapper .date-wrapper.start-day-wrapper.end-day-wrapper[data-v-b0d3ea50]:before{content:"";display:block;position:absolute;background:var(--primary-main, #0091ff);width:32px;height:32px;left:50%;top:0;margin-left:-16px;border-radius:var(--borderRadius-full, 100px);z-index:-1}.days-wrapper .day[data-v-b0d3ea50]{position:relative;width:32px;height:32px;display:inline-block;text-align:center;padding:5px;margin-bottom:4px;line-height:21px;box-sizing:border-box;cursor:pointer;color:var(--text-Primary, #202020)}.days-wrapper .day[data-v-b0d3ea50]:not(.non-day):not(.disabled-day):not(.selected-day):hover:not(.selected-day-between):before{content:"";display:block;position:absolute;background:var(--primary-main50p, rgba(0, 145, 255, .5));width:32px;height:32px;left:50%;top:0;margin-left:-16px;border-radius:var(--borderRadius-full, 100px);z-index:-1}.days-wrapper .day.today[data-v-b0d3ea50]:after{content:"";background:var(--primary-main, #0091ff);position:absolute;text-align:center;width:4px;height:4px;border-radius:var(--borderRadius-full, 100px);bottom:4px;left:50%;margin-left:-2px}.days-wrapper .day.today.selected-day[data-v-b0d3ea50]:after,.days-wrapper .day.today.selected-day-between[data-v-b0d3ea50]:after{background:#ffffff}.days-wrapper .day.start-day[data-v-b0d3ea50]{border-radius:100px 0 0 100px}.days-wrapper .day.end-day[data-v-b0d3ea50]{border-radius:0 100px 100px 0}.days-wrapper .day.start-day.end-day[data-v-b0d3ea50]{background-color:transparent!important}.days-wrapper .day.start-day.end-day[data-v-b0d3ea50]:before{content:"";display:block;position:absolute;background:var(--primary-main, #0091ff);width:32px;height:32px;left:50%;top:0;margin-left:-16px;border-radius:var(--borderRadius-full, 100px);z-index:-1}.days-wrapper .day.selected-day-between[data-v-b0d3ea50]{color:#53575b;background:var(--primary-light, #cee7fe)}.days-wrapper .day.selected-day-between[data-v-b0d3ea50]:hover{background-color:var(--primary-main50p, rgba(0, 145, 255, .5));color:#696a6b}.days-wrapper .day.selected-day[data-v-b0d3ea50]{background:var(--primary-main, #0091ff)!important;border-radius:var(--borderRadius-full, 100px);color:var(--common-white, #fff)}.days-wrapper .day.selected-day[data-v-b0d3ea50]:hover{color:var(--common-white, #fff)}.days-wrapper .day.disabled-day[data-v-b0d3ea50]{color:var(--text-disabled, #bbb);cursor:default;background:transparent}.days-wrapper .day.non-day[data-v-b0d3ea50]{color:transparent;cursor:default;background:transparent}.calendar-month[data-v-b0d3ea50]{user-select:none;box-sizing:unset;padding:0;overflow:hidden;position:relative;width:224px;margin:auto}.calendar-month .days-header span[data-v-b0d3ea50]{width:32px;display:inline-block;display:inline-flex;text-align:center;height:32px;justify-content:center;align-items:center}.calendar-month .month-header[data-v-b0d3ea50]{display:flex;height:var(--spacing-500, 40px);padding:8px 0;align-items:center;gap:8px;align-self:stretch;text-align:center;flex-direction:column}.calendar-month .month-header .month-name[data-v-b0d3ea50]{color:var(--text-primary, #202020)}.calendar-month .week-day[data-v-b0d3ea50]{color:var(--text-secondary, #646464);text-align:center}.calendar-month .next[data-v-b0d3ea50]{right:1px;cursor:pointer;position:absolute;z-index:16}.calendar-month .next[data-v-b0d3ea50],.calendar-month .previous[data-v-b0d3ea50]{transform:translateY(8px)}.calendar-month .previous[data-v-b0d3ea50]{left:1px;cursor:pointer;position:absolute;z-index:16}
@@ -1 +0,0 @@
1
- .chart-header[data-v-9a603520]{display:flex;align-items:center;justify-content:space-between;padding:24px 24px 0}.chart-header--compact[data-v-9a603520]{padding-top:22px}.chart-header--compact .header-texts[data-v-9a603520]{flex-direction:row}.chart-header--compact .header-text[data-v-9a603520]{color:var(--text-secondary)}.header-row[data-v-9a603520]{display:flex;align-items:flex-end;gap:4px}.header-texts[data-v-9a603520]{display:flex;flex-direction:column;color:var(--text-primary);gap:4px;cursor:default}.header-actions[data-v-9a603520]{display:flex;align-items:center;gap:var(--spacing-200)}
@@ -1 +0,0 @@
1
- .column-picker[data-v-01c4e08f]{width:37.375rem;border-radius:var(--border-radius-lg);background:var(--background-modal-elevation)}.content[data-v-01c4e08f]{min-height:18.75rem;display:grid;grid-template-columns:1fr 1fr}.selected-list-wrapper[data-v-01c4e08f]{padding:.25rem 1rem 1rem}.scrollable-list[data-v-01c4e08f]{overflow-y:auto;max-height:24.625rem}.search-wrapper[data-v-01c4e08f]{height:3rem;padding:1rem 1rem .25rem}.options-list-wrapper[data-v-01c4e08f]{border-right:1px solid var(--common-divider)}.options-list[data-v-01c4e08f]{margin:0;list-style:none;padding:.3125rem .75rem}.options-list__item[data-v-01c4e08f]{margin-bottom:.5rem}.options-list[data-v-01c4e08f] .item-container{margin-bottom:1px;min-height:1.9375rem}.selected-list-header[data-v-01c4e08f]{height:3rem;padding:.25rem 1rem 0;display:flex;justify-content:space-between;align-items:center}.group-name[data-v-01c4e08f]{color:var(--text-secondary)}.inline-group[data-v-01c4e08f]{padding:.25rem .5rem}.no-result-container[data-v-01c4e08f]{height:100%;display:flex;align-items:center;padding:.375rem .5rem;color:var(--text-disabled)}
@@ -1 +0,0 @@
1
- .sticky[data-v-46851fcb]{position:sticky}.table-container[data-v-46851fcb]{width:100%;position:relative;display:flex;flex-direction:column}.table-head-container[data-v-46851fcb]{display:flex;align-items:center;white-space:nowrap;color:var(--text-primary)}.table-footer[data-v-46851fcb]{color:var(--text-primary);background-color:var(--background-paper-elevation-0);padding:0 var(--spacing-300);display:flex;align-items:center;min-height:var(--spacing-600);border:1px solid var(--common-divider);border-radius:var(--border-radius-md);border-top-right-radius:0;border-top-left-radius:0}.table-body-wrapper[data-v-46851fcb]{display:inline-table}.table-row[data-v-46851fcb]{position:relative}.table-row.loading[data-v-46851fcb]{opacity:.7}.table-row:not(.expanded):last-child>td[data-v-46851fcb]{border-bottom:none}.table-row.expanded:last-child>.expanded-row[data-v-46851fcb]{border-bottom:none}.expanded-row[data-v-46851fcb]{grid-column:var(--5caaa606);border-bottom:1px solid var(--common-divider);background-color:var(--background-default)}table[data-v-46851fcb]{position:relative;display:block;overflow:auto;background:var(--background-paper-elevation-0);border:1px solid var(--common-divider);color:var(--text-primary);text-align:left;table-layout:fixed;width:100%;max-height:100%;border-radius:var(--border-radius-md);border-collapse:collapse;border-spacing:0}table.hasFooter[data-v-46851fcb]{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:none}table td[data-v-46851fcb],table th[data-v-46851fcb]{line-height:normal;padding:0 var(--spacing-200)}table td[data-v-46851fcb]:first-of-type,table th[data-v-46851fcb]:first-of-type{padding-left:var(--spacing-300)}table td[data-v-46851fcb]:last-of-type,table th[data-v-46851fcb]:last-of-type{padding-right:var(--spacing-300)}table td.expand-toggle-cell[data-v-46851fcb],table th.expand-toggle-cell[data-v-46851fcb]{padding-left:var(--spacing-150);padding-right:var(--spacing-75)}table>thead[data-v-46851fcb]{border-bottom:none;z-index:calc(var(--55ef8912) + 1);display:inline-table;min-width:100%}table>thead>tr[data-v-46851fcb]{color:var(--text-primary);border-bottom:1px solid var(--common-divider);display:grid;grid-template-columns:var(--b7356102)}table>thead>tr>th[data-v-46851fcb]{background:var(--background-paper-elevation-0);width:100%;display:flex;align-items:center;cursor:default}table>thead>tr>th.isSortable[data-v-46851fcb]{cursor:pointer}table>thead>tr>td[data-v-46851fcb]{display:flex;align-items:center}table>thead>tr>th.bordered[data-v-46851fcb],table>thead>tr>td.bordered[data-v-46851fcb]{border-right:1px solid var(--common-divider)}table>thead>tr>th.bordered.isStickyRight[data-v-46851fcb],table>thead>tr>td.bordered.isStickyRight[data-v-46851fcb]{border-right:none;border-left:1px solid var(--common-divider)}table>thead>tr>th.isTextRight[data-v-46851fcb],table>thead>tr>td.isTextRight[data-v-46851fcb]{justify-content:flex-end}table>thead.sticky[data-v-46851fcb]{position:sticky;top:0;background:var(--background-default)}table>thead.isStickyHeader[data-v-46851fcb]{z-index:calc(var(--55ef8912) + 2);top:var(--7d96c2a6)}table .totals-row[data-v-46851fcb]{height:40px}table .totals-row[data-v-46851fcb]:hover{background:var(--background-paper-elevation-1)}table .totals-row>td.sticky[data-v-46851fcb]{background-color:var(--background-default)}table>tbody[data-v-46851fcb]{display:block}table>tbody>*>tr[data-v-46851fcb]{background-color:var(--background-default);height:auto;display:grid;align-items:center;grid-template-columns:var(--b7356102)}table>tbody>*>tr:nth-of-type(2n)>td[data-v-46851fcb]{background-color:var(--background-default)}table>tbody>*>tr:hover:not(.loading)>td[data-v-46851fcb],table>tbody>*>tr.activeMenu>td[data-v-46851fcb]{background-color:var(--background-paper-elevation-1)}table>tbody td[data-v-46851fcb]{background-color:var(--background-default);border:none;min-width:0;display:flex;height:auto;width:100%;place-items:center;border-bottom:1px solid var(--common-divider);justify-content:start}table>tbody td.bordered[data-v-46851fcb]{border-right:1px solid var(--common-divider)}table>tbody td.bordered.isStickyRight[data-v-46851fcb]{border-right:none;border-left:1px solid var(--common-divider)}table>tbody td.isTextRight[data-v-46851fcb]{justify-content:flex-end;text-align:right}.underlined[data-v-46851fcb]{border-bottom:.0625rem dashed var(--default-outlined-border)}.underlined[data-v-46851fcb]:hover{cursor:pointer}.section-container[data-v-46851fcb]{left:0}.sections[data-v-46851fcb]{display:flex}.section[data-v-46851fcb]{padding:0 1.5rem;background:var(--background-default);left:0;height:32px;display:flex;align-items:flex-end;border-right:1px solid var(--common-divider)}.table-cell[data-v-46851fcb]{width:100%}.empty-state[data-v-46851fcb]{min-height:250px}.floating-row[data-v-46851fcb]{display:flex;inset:0;pointer-events:none;position:absolute;z-index:calc(var(--55ef8912) + 1)}.floating-row *[data-v-46851fcb-s]{pointer-events:auto}.bg[data-v-46851fcb]{background:var(--background-default)}.useAvailableHeight[data-v-46851fcb]{height:100%}.disabled-scrolling[data-v-46851fcb]{overflow:hidden}
@@ -1 +0,0 @@
1
- .label[data-v-70e316e9]{color:#41454d}.pop-up[data-v-70e316e9]{width:652px;position:absolute;z-index:1000;top:32px;box-shadow:0 8px 24px -6px #00000029,0 0 1px #0006;background-color:#fff;border-radius:8px;left:1px;overflow:hidden}.pop-up.open-on-top[data-v-70e316e9]{top:0}.pop-up.hide-presets[data-v-70e316e9],.pop-up.hide-presets .calendar-wrap[data-v-70e316e9]{width:494px}.pop-up.hide-presets .date-picker-calendar[data-v-70e316e9]{padding:15px 16px}.pop-up .date-picker-menu[data-v-70e316e9]{width:164px;background:#ffffff;vertical-align:top}.pop-up .date-picker-menu .preset-element[data-v-70e316e9]{padding-left:8px;height:32px;border-radius:8px;color:#53575b;line-height:32px}.pop-up .date-picker-menu .preset-element[data-v-70e316e9]:hover{background:#f1f3f4}.pop-up .date-picker-menu .selected-preset[data-v-70e316e9]{background:#e2eeff!important;color:#3083ff}.pop-up .date-picker-menu li[data-v-70e316e9]{cursor:pointer;margin-bottom:2px}.pop-up .left-box[data-v-70e316e9]{left:-1px}.pop-up .date-picker-calendar[data-v-70e316e9]{box-sizing:border-box;height:100%;padding:15px 0;display:grid;grid-template-columns:1fr 1fr;grid-gap:18px}.pop-up .calendars-wrapper[data-v-70e316e9]{padding-left:6px}.pop-up .preset-dropdown ul[data-v-70e316e9]{list-style:none;margin:0;padding:12px 16px 12px 12px;line-height:32px}.pop-up .buttons-cover[data-v-70e316e9]{height:48px;padding:0 16px 0 0;position:absolute;bottom:0;width:calc(100% + 10px);right:-10px;box-sizing:border-box;border-top:1px solid #dddfe1;display:grid;grid-template-columns:auto 250px;align-items:center}.pop-up button[data-v-70e316e9]{float:right;margin-left:4px}.pop-up .error[data-v-70e316e9]{display:none;position:absolute;left:270px;top:22px}.pop-up .inline-block[data-v-70e316e9]{display:inline-block}.pop-up.right[data-v-70e316e9]{left:initial;right:1px}.calendar-wrap[data-v-70e316e9]{width:478px;height:372px;position:relative;border-bottom-right-radius:8px;border-top-right-radius:8px;vertical-align:top}.type-picker[data-v-70e316e9]{height:60px;line-height:60px;padding-left:15px;box-shadow:0 1px 3px #0000003b}.range-type[data-v-70e316e9]{color:#8e959d;padding-left:15px;padding-right:15px;cursor:pointer}.selected-range-type[data-v-70e316e9]{color:#fff;background-color:#3083ff;border-radius:20px;padding:6px 15px;cursor:default}.date-range-field[data-v-70e316e9]{display:inline-block;width:100%;height:30px;position:relative;cursor:pointer;border-radius:3px}.date-range-field.selected-item-as-title[data-v-70e316e9]{left:0;border:none;background-image:none;max-width:100%;height:22px;color:#3083ff;overflow:visible}.date-range-field.selected-item-as-title .small-triangle[data-v-70e316e9]{right:-25px}.date-range-field.selected-item-as-title .small-triangle[data-v-70e316e9]:after{border-top-color:currentColor}.date-range-field.selected-item-as-title span[data-v-70e316e9]{padding-left:12px}.date-range-field.no-button-limit[data-v-70e316e9]{overflow:visible}.date-range-field.no-button-limit span[data-v-70e316e9]{width:100%;line-height:22px}.date-range-field span[data-v-70e316e9]{line-height:28px;padding-left:15px;overflow:hidden;text-overflow:ellipsis;display:inline-block;width:calc(100% - 26px);white-space:nowrap;position:relative}.date-range-disabled .date-range-field[data-v-70e316e9]{cursor:default;color:#8e959d;pointer-events:none}.date-range-disabled .small-triangle[data-v-70e316e9]:after{border-top-color:#8e959d}.pop-up-content[data-v-70e316e9]{margin-top:1px}.type-message[data-v-70e316e9]{color:#8e959d;padding:10px 20px;line-height:1.5}.relative-wrap[data-v-70e316e9]{position:relative}.space-right[data-v-70e316e9]{margin-right:13px}.space-left[data-v-70e316e9]{margin-left:9px}.top-date[data-v-70e316e9]{line-height:13px}.flex[data-v-70e316e9]{display:flex}