@ironsource/shared-ui 2.1.12-rc.1 → 2.1.12-rc.11

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 (86) hide show
  1. package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_0123c361_lang.css +1 -0
  2. package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_0198fee8_lang.css +1 -0
  3. package/Chart.vue_vue_type_style_index_0_scoped_78d3f5a8_lang.css +1 -0
  4. package/ChartHeader.vue_vue_type_style_index_0_scoped_32001725_lang.css +1 -0
  5. package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_e4c673e7_lang.css +1 -0
  6. package/ChartLegend.vue_vue_type_style_index_0_scoped_532f23bc_lang.css +1 -0
  7. package/ChartPlane.vue_vue_type_style_index_0_scoped_4396faf6_lang.css +1 -0
  8. package/ChartTooltip.vue_vue_type_style_index_0_scoped_25d0e129_lang.css +1 -0
  9. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8d5521da_lang.css +1 -0
  10. package/DataGrid.vue_vue_type_style_index_0_scoped_86ea5d2a_lang.css +1 -0
  11. package/DateRangeV4.vue_vue_type_style_index_0_scoped_a849128a_lang.css +1 -0
  12. package/DropdownV4.vue_vue_type_style_index_0_scoped_d154c5da_lang.css +1 -0
  13. package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
  14. package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +1 -0
  15. package/components/chart/Chart.vue.d.ts +57 -39
  16. package/components/chart/Chart.vue.js +3 -3
  17. package/components/chart/Chart.vue2.js +98 -297
  18. package/components/chart/ChartHeader.vue.d.ts +20 -10
  19. package/components/chart/ChartHeader.vue.js +2 -2
  20. package/components/chart/ChartHeader.vue2.js +74 -52
  21. package/components/chart/ChartHeaderTrend.vue.d.ts +34 -0
  22. package/components/chart/ChartHeaderTrend.vue.js +7 -0
  23. package/components/chart/ChartHeaderTrend.vue2.js +32 -0
  24. package/components/chart/ChartLegend.vue.js +2 -2
  25. package/components/chart/ChartLegend.vue2.js +36 -35
  26. package/components/chart/ChartPlane.vue.d.ts +143 -0
  27. package/components/chart/ChartPlane.vue.js +7 -0
  28. package/components/chart/ChartPlane.vue2.js +306 -0
  29. package/components/chart/ChartStoryArgs.d.ts +135 -0
  30. package/components/chart/ChartTooltip.vue.js +2 -2
  31. package/components/chart/ChartTooltip.vue2.js +36 -35
  32. package/components/chart/composables/useChartHeight.d.ts +5 -0
  33. package/components/chart/composables/useChartHeight.js +22 -0
  34. package/components/chart/composables/useColorsMap.d.ts +10 -0
  35. package/components/chart/composables/useColorsMap.js +17 -0
  36. package/components/chart/composables/useTooltipPosition.d.ts +1 -1
  37. package/components/chart/composables/useTooltipPosition.js +11 -15
  38. package/components/chart/consts.d.ts +5 -0
  39. package/components/chart/consts.js +20 -15
  40. package/components/chart/index.d.ts +189 -113
  41. package/components/chart/mockData.d.ts +27 -1
  42. package/components/chart/types.d.ts +4 -0
  43. package/components/chart/utils/formatNumber.d.ts +0 -1
  44. package/components/chart/utils/utils.js +5 -5
  45. package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
  46. package/components/dateRange/v4/DateRangeV4.vue2.js +1 -1
  47. package/components/dropdown/common/Dropdown.common.js +92 -85
  48. package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +2 -2
  49. package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +1 -1
  50. package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +2 -2
  51. package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +1 -1
  52. package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
  53. package/components/dropdown/v4/ConditionalDropdown.vue2.js +76 -76
  54. package/components/dropdown/v4/DropdownV4.vue.js +4 -4
  55. package/components/dropdown/v4/DropdownV4.vue2.js +96 -86
  56. package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
  57. package/components/dropdown/v4/TreeDropdown.vue2.js +68 -73
  58. package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
  59. package/components/emptyState/v4/index.d.ts +7 -7
  60. package/components/table/v4/DataGrid.vue.d.ts +4 -3
  61. package/components/table/v4/DataGrid.vue.js +3 -3
  62. package/components/table/v4/DataGrid.vue2.js +152 -142
  63. package/components/table/v4/MultipleDataGrid.vue.d.ts +3 -3
  64. package/components/table/v4/index.d.ts +15 -14
  65. package/composables/useFullPageHeight.d.ts +10 -0
  66. package/composables/useFullPageHeight.js +15 -0
  67. package/index.d.ts +48 -42
  68. package/index.js +103 -101
  69. package/package.json +1 -1
  70. package/testids/index.d.ts +2 -1
  71. package/testids/index.js +10 -10
  72. package/utils/formatNumbers.d.ts +1 -1
  73. package/utils/formatNumbers.js +18 -5
  74. package/utils/index.js +7 -0
  75. package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_604dfc6f_lang.css +0 -1
  76. package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css +0 -1
  77. package/Chart.vue_vue_type_style_index_0_scoped_026d82c5_lang.css +0 -1
  78. package/ChartHeader.vue_vue_type_style_index_0_scoped_b8213498_lang.css +0 -1
  79. package/ChartLegend.vue_vue_type_style_index_0_scoped_4fe1c7d1_lang.css +0 -1
  80. package/ChartTooltip.vue_vue_type_style_index_0_scoped_6744325c_lang.css +0 -1
  81. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_3a2aeea3_lang.css +0 -1
  82. package/DataGrid.vue_vue_type_style_index_0_scoped_26488faf_lang.css +0 -1
  83. package/DateRangeV4.vue_vue_type_style_index_0_scoped_8a2714eb_lang.css +0 -1
  84. package/DropdownV4.vue_vue_type_style_index_0_scoped_48ba81e5_lang.css +0 -1
  85. package/TreeDropdown.vue_vue_type_style_index_0_scoped_b883d1fa_lang.css +0 -1
  86. package/components/chart/utils/formatNumber.js +0 -11
@@ -30,7 +30,7 @@ declare const DataGridTypes: () => (({
30
30
  getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
31
31
  getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
32
32
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
33
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
33
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
34
34
  rowCustomClassKey: string;
35
35
  rowDataKey: string;
36
36
  isSelectionSticky: boolean;
@@ -137,7 +137,7 @@ declare const DataGridTypes: () => (({
137
137
  default: (rowId: any, selectedItem: any) => boolean;
138
138
  };
139
139
  emptyStateVariant: {
140
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
140
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
141
141
  default: any;
142
142
  };
143
143
  rowCustomClassKey: {
@@ -283,7 +283,7 @@ declare const DataGridTypes: () => (({
283
283
  default: (rowId: any, selectedItem: any) => boolean;
284
284
  };
285
285
  emptyStateVariant: {
286
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
286
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
287
287
  default: any;
288
288
  };
289
289
  rowCustomClassKey: {
@@ -350,7 +350,7 @@ declare const DataGridTypes: () => (({
350
350
  getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
351
351
  getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
352
352
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
353
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
353
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
354
354
  rowCustomClassKey: string;
355
355
  rowDataKey: string;
356
356
  isSelectionSticky: boolean;
@@ -477,7 +477,7 @@ declare const DataGridTypes: () => (({
477
477
  default: (rowId: any, selectedItem: any) => boolean;
478
478
  };
479
479
  emptyStateVariant: {
480
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
480
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
481
481
  default: any;
482
482
  };
483
483
  rowCustomClassKey: {
@@ -615,7 +615,7 @@ declare const DataGridTypes: () => (({
615
615
  default: (rowId: any, selectedItem: any) => boolean;
616
616
  };
617
617
  emptyStateVariant: {
618
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
618
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
619
619
  default: any;
620
620
  };
621
621
  rowCustomClassKey: {
@@ -682,7 +682,7 @@ declare const DataGridTypes: () => (({
682
682
  getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
683
683
  getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
684
684
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
685
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
685
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
686
686
  rowCustomClassKey: string;
687
687
  rowDataKey: string;
688
688
  isSelectionSticky: boolean;
@@ -698,6 +698,7 @@ declare const DataGridTypes: () => (({
698
698
  rowIndex: number;
699
699
  }) => any>> & {
700
700
  title?(_: {}): any;
701
+ "table-header-pre-search"?(_: {}): any;
701
702
  search?(_: {}): any;
702
703
  "table-header-actions"?(_: {}): any;
703
704
  "select-all-checkbox"?(_: {}): any;
@@ -824,7 +825,7 @@ declare const DataGridTypes: () => (({
824
825
  emptyStateSubtitle: string;
825
826
  getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
826
827
  getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
827
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
828
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
828
829
  rowCustomClassKey: string;
829
830
  rowDataKey: string;
830
831
  totalCount: number;
@@ -887,7 +888,7 @@ declare const DataGridTypes: () => (({
887
888
  default: (row: any, index: any) => any;
888
889
  };
889
890
  emptyStateVariant: {
890
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
891
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
891
892
  default: any;
892
893
  };
893
894
  rowCustomClassKey: {
@@ -1002,7 +1003,7 @@ declare const DataGridTypes: () => (({
1002
1003
  default: (row: any, index: any) => any;
1003
1004
  };
1004
1005
  emptyStateVariant: {
1005
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1006
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
1006
1007
  default: any;
1007
1008
  };
1008
1009
  rowCustomClassKey: {
@@ -1069,7 +1070,7 @@ declare const DataGridTypes: () => (({
1069
1070
  emptyStateSubtitle: string;
1070
1071
  getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
1071
1072
  getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
1072
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
1073
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
1073
1074
  rowCustomClassKey: string;
1074
1075
  rowDataKey: string;
1075
1076
  totalCount: number;
@@ -1152,7 +1153,7 @@ declare const DataGridTypes: () => (({
1152
1153
  default: (row: any, index: any) => any;
1153
1154
  };
1154
1155
  emptyStateVariant: {
1155
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1156
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
1156
1157
  default: any;
1157
1158
  };
1158
1159
  rowCustomClassKey: {
@@ -1255,7 +1256,7 @@ declare const DataGridTypes: () => (({
1255
1256
  default: (row: any, index: any) => any;
1256
1257
  };
1257
1258
  emptyStateVariant: {
1258
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
1259
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
1259
1260
  default: any;
1260
1261
  };
1261
1262
  rowCustomClassKey: {
@@ -1322,7 +1323,7 @@ declare const DataGridTypes: () => (({
1322
1323
  emptyStateSubtitle: string;
1323
1324
  getRowId: (row: import("../common/Table.types").Row, index: number) => unknown;
1324
1325
  getRowKey: (row: import("../common/Table.types").Row, index: number) => string | number;
1325
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
1326
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
1326
1327
  rowCustomClassKey: string;
1327
1328
  rowDataKey: string;
1328
1329
  totalCount: number;
@@ -0,0 +1,10 @@
1
+ import { Ref } from 'vue';
2
+ type UseFullPageHeightArgs = {
3
+ elem: Ref<HTMLElement | null>;
4
+ minHeight?: number;
5
+ bottomSpacing?: number;
6
+ };
7
+ export declare const useFullPageHeight: ({ elem, minHeight, bottomSpacing, }: UseFullPageHeightArgs) => {
8
+ cssHeightValue: import("vue").ComputedRef<string>;
9
+ };
10
+ export {};
@@ -0,0 +1,15 @@
1
+ import { computed as c } from "vue";
2
+ import { useElementBounding as s, useWindowSize as i } from "@vueuse/core";
3
+ const p = ({
4
+ elem: u,
5
+ minHeight: e = 300,
6
+ bottomSpacing: t = 50
7
+ }) => {
8
+ const { top: o } = s(u), { height: l } = i();
9
+ return {
10
+ cssHeightValue: c(() => l.value - o.value - t <= e ? `${e}px` : `calc(100vh - ${o.value}px - ${t}px)`)
11
+ };
12
+ };
13
+ export {
14
+ p as useFullPageHeight
15
+ };
package/index.d.ts CHANGED
@@ -19,6 +19,10 @@ import * as tableV4 from '@/components/table/v4';
19
19
  import * as tableCellsV3 from '@/components/table-cells/v3';
20
20
  import * as snackbarV3 from '@/components/snackbar/v3';
21
21
  declare const _default: {
22
+ nFormatter(num: number): string;
23
+ DEFAULT_FALLBACK: "N/A";
24
+ diffInPersentage: (valueA: string | number, valueB: string | number, fallback?: string) => string | number;
25
+ formatNumberWithCommas: (num: string | number, fallback?: string) => string;
22
26
  Popover: {
23
27
  new (...args: any[]): {
24
28
  $: import("vue").ComponentInternalInstance;
@@ -4915,7 +4919,7 @@ declare const _default: {
4915
4919
  $data: {};
4916
4920
  $props: Partial<{
4917
4921
  title: string;
4918
- variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
4922
+ variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
4919
4923
  iconName: string;
4920
4924
  iconSize: string;
4921
4925
  subtitle: string;
@@ -4927,7 +4931,7 @@ declare const _default: {
4927
4931
  default: string;
4928
4932
  };
4929
4933
  variant: {
4930
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
4934
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
4931
4935
  default: string;
4932
4936
  };
4933
4937
  iconName: {
@@ -4972,7 +4976,7 @@ declare const _default: {
4972
4976
  default: string;
4973
4977
  };
4974
4978
  variant: {
4975
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
4979
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
4976
4980
  default: string;
4977
4981
  };
4978
4982
  iconName: {
@@ -5001,7 +5005,7 @@ declare const _default: {
5001
5005
  click: () => void;
5002
5006
  }, string, {
5003
5007
  title: string;
5004
- variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5008
+ variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
5005
5009
  iconName: string;
5006
5010
  iconSize: string;
5007
5011
  subtitle: string;
@@ -5033,7 +5037,7 @@ declare const _default: {
5033
5037
  default: string;
5034
5038
  };
5035
5039
  variant: {
5036
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5040
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
5037
5041
  default: string;
5038
5042
  };
5039
5043
  iconName: {
@@ -5068,7 +5072,7 @@ declare const _default: {
5068
5072
  default: string;
5069
5073
  };
5070
5074
  variant: {
5071
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5075
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
5072
5076
  default: string;
5073
5077
  };
5074
5078
  iconName: {
@@ -5097,7 +5101,7 @@ declare const _default: {
5097
5101
  click: () => void;
5098
5102
  }, string, {
5099
5103
  title: string;
5100
- variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5104
+ variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
5101
5105
  iconName: string;
5102
5106
  iconSize: string;
5103
5107
  subtitle: string;
@@ -5115,7 +5119,7 @@ declare const _default: {
5115
5119
  $data: {};
5116
5120
  $props: Partial<{
5117
5121
  title: string;
5118
- variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5122
+ variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
5119
5123
  iconName: string;
5120
5124
  iconSize: string;
5121
5125
  subtitle: string;
@@ -5127,7 +5131,7 @@ declare const _default: {
5127
5131
  default: string;
5128
5132
  };
5129
5133
  variant: {
5130
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5134
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
5131
5135
  default: string;
5132
5136
  };
5133
5137
  iconName: {
@@ -5172,7 +5176,7 @@ declare const _default: {
5172
5176
  default: string;
5173
5177
  };
5174
5178
  variant: {
5175
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5179
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
5176
5180
  default: string;
5177
5181
  };
5178
5182
  iconName: {
@@ -5201,7 +5205,7 @@ declare const _default: {
5201
5205
  click: () => void;
5202
5206
  }, string, {
5203
5207
  title: string;
5204
- variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5208
+ variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
5205
5209
  iconName: string;
5206
5210
  iconSize: string;
5207
5211
  subtitle: string;
@@ -5233,7 +5237,7 @@ declare const _default: {
5233
5237
  default: string;
5234
5238
  };
5235
5239
  variant: {
5236
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5240
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
5237
5241
  default: string;
5238
5242
  };
5239
5243
  iconName: {
@@ -5268,7 +5272,7 @@ declare const _default: {
5268
5272
  default: string;
5269
5273
  };
5270
5274
  variant: {
5271
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5275
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
5272
5276
  default: string;
5273
5277
  };
5274
5278
  iconName: {
@@ -5297,7 +5301,7 @@ declare const _default: {
5297
5301
  click: () => void;
5298
5302
  }, string, {
5299
5303
  title: string;
5300
- variant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5304
+ variant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
5301
5305
  iconName: string;
5302
5306
  iconSize: string;
5303
5307
  subtitle: string;
@@ -5787,7 +5791,7 @@ declare const _default: {
5787
5791
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
5788
5792
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
5789
5793
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
5790
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
5794
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
5791
5795
  rowCustomClassKey: string;
5792
5796
  rowDataKey: string;
5793
5797
  isSelectionSticky: boolean;
@@ -5894,7 +5898,7 @@ declare const _default: {
5894
5898
  default: (rowId: any, selectedItem: any) => boolean;
5895
5899
  };
5896
5900
  emptyStateVariant: {
5897
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
5901
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
5898
5902
  default: any;
5899
5903
  };
5900
5904
  rowCustomClassKey: {
@@ -6040,7 +6044,7 @@ declare const _default: {
6040
6044
  default: (rowId: any, selectedItem: any) => boolean;
6041
6045
  };
6042
6046
  emptyStateVariant: {
6043
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6047
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
6044
6048
  default: any;
6045
6049
  };
6046
6050
  rowCustomClassKey: {
@@ -6107,7 +6111,7 @@ declare const _default: {
6107
6111
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6108
6112
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6109
6113
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6110
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6114
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6111
6115
  rowCustomClassKey: string;
6112
6116
  rowDataKey: string;
6113
6117
  isSelectionSticky: boolean;
@@ -6234,7 +6238,7 @@ declare const _default: {
6234
6238
  default: (rowId: any, selectedItem: any) => boolean;
6235
6239
  };
6236
6240
  emptyStateVariant: {
6237
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6241
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
6238
6242
  default: any;
6239
6243
  };
6240
6244
  rowCustomClassKey: {
@@ -6372,7 +6376,7 @@ declare const _default: {
6372
6376
  default: (rowId: any, selectedItem: any) => boolean;
6373
6377
  };
6374
6378
  emptyStateVariant: {
6375
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6379
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
6376
6380
  default: any;
6377
6381
  };
6378
6382
  rowCustomClassKey: {
@@ -6439,7 +6443,7 @@ declare const _default: {
6439
6443
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6440
6444
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6441
6445
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6442
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6446
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6443
6447
  rowCustomClassKey: string;
6444
6448
  rowDataKey: string;
6445
6449
  isSelectionSticky: boolean;
@@ -6455,6 +6459,7 @@ declare const _default: {
6455
6459
  rowIndex: number;
6456
6460
  }) => any>> & {
6457
6461
  title?(_: {}): any;
6462
+ "table-header-pre-search"?(_: {}): any;
6458
6463
  search?(_: {}): any;
6459
6464
  "table-header-actions"?(_: {}): any;
6460
6465
  "select-all-checkbox"?(_: {}): any;
@@ -6594,7 +6599,7 @@ declare const _default: {
6594
6599
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6595
6600
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6596
6601
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6597
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6602
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6598
6603
  rowCustomClassKey: string;
6599
6604
  rowDataKey: string;
6600
6605
  isSelectionSticky: boolean;
@@ -6701,7 +6706,7 @@ declare const _default: {
6701
6706
  default: (rowId: any, selectedItem: any) => boolean;
6702
6707
  };
6703
6708
  emptyStateVariant: {
6704
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6709
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
6705
6710
  default: any;
6706
6711
  };
6707
6712
  rowCustomClassKey: {
@@ -6847,7 +6852,7 @@ declare const _default: {
6847
6852
  default: (rowId: any, selectedItem: any) => boolean;
6848
6853
  };
6849
6854
  emptyStateVariant: {
6850
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
6855
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
6851
6856
  default: any;
6852
6857
  };
6853
6858
  rowCustomClassKey: {
@@ -6914,7 +6919,7 @@ declare const _default: {
6914
6919
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
6915
6920
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
6916
6921
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
6917
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
6922
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
6918
6923
  rowCustomClassKey: string;
6919
6924
  rowDataKey: string;
6920
6925
  isSelectionSticky: boolean;
@@ -7041,7 +7046,7 @@ declare const _default: {
7041
7046
  default: (rowId: any, selectedItem: any) => boolean;
7042
7047
  };
7043
7048
  emptyStateVariant: {
7044
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7049
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
7045
7050
  default: any;
7046
7051
  };
7047
7052
  rowCustomClassKey: {
@@ -7179,7 +7184,7 @@ declare const _default: {
7179
7184
  default: (rowId: any, selectedItem: any) => boolean;
7180
7185
  };
7181
7186
  emptyStateVariant: {
7182
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7187
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
7183
7188
  default: any;
7184
7189
  };
7185
7190
  rowCustomClassKey: {
@@ -7246,7 +7251,7 @@ declare const _default: {
7246
7251
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7247
7252
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7248
7253
  selectedMatcher: (rowId: unknown, selected: unknown) => boolean;
7249
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7254
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
7250
7255
  rowCustomClassKey: string;
7251
7256
  rowDataKey: string;
7252
7257
  isSelectionSticky: boolean;
@@ -7262,6 +7267,7 @@ declare const _default: {
7262
7267
  rowIndex: number;
7263
7268
  }) => any>> & {
7264
7269
  title?(_: {}): any;
7270
+ "table-header-pre-search"?(_: {}): any;
7265
7271
  search?(_: {}): any;
7266
7272
  "table-header-actions"?(_: {}): any;
7267
7273
  "select-all-checkbox"?(_: {}): any;
@@ -7388,7 +7394,7 @@ declare const _default: {
7388
7394
  emptyStateSubtitle: string;
7389
7395
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7390
7396
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7391
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7397
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
7392
7398
  rowCustomClassKey: string;
7393
7399
  rowDataKey: string;
7394
7400
  totalCount: number;
@@ -7451,7 +7457,7 @@ declare const _default: {
7451
7457
  default: (row: any, index: any) => any;
7452
7458
  };
7453
7459
  emptyStateVariant: {
7454
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7460
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
7455
7461
  default: any;
7456
7462
  };
7457
7463
  rowCustomClassKey: {
@@ -7566,7 +7572,7 @@ declare const _default: {
7566
7572
  default: (row: any, index: any) => any;
7567
7573
  };
7568
7574
  emptyStateVariant: {
7569
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7575
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
7570
7576
  default: any;
7571
7577
  };
7572
7578
  rowCustomClassKey: {
@@ -7633,7 +7639,7 @@ declare const _default: {
7633
7639
  emptyStateSubtitle: string;
7634
7640
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7635
7641
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7636
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7642
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
7637
7643
  rowCustomClassKey: string;
7638
7644
  rowDataKey: string;
7639
7645
  totalCount: number;
@@ -7716,7 +7722,7 @@ declare const _default: {
7716
7722
  default: (row: any, index: any) => any;
7717
7723
  };
7718
7724
  emptyStateVariant: {
7719
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7725
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
7720
7726
  default: any;
7721
7727
  };
7722
7728
  rowCustomClassKey: {
@@ -7819,7 +7825,7 @@ declare const _default: {
7819
7825
  default: (row: any, index: any) => any;
7820
7826
  };
7821
7827
  emptyStateVariant: {
7822
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
7828
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
7823
7829
  default: any;
7824
7830
  };
7825
7831
  rowCustomClassKey: {
@@ -7886,7 +7892,7 @@ declare const _default: {
7886
7892
  emptyStateSubtitle: string;
7887
7893
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7888
7894
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7889
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7895
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
7890
7896
  rowCustomClassKey: string;
7891
7897
  rowDataKey: string;
7892
7898
  totalCount: number;
@@ -7936,7 +7942,7 @@ declare const _default: {
7936
7942
  emptyStateSubtitle: string;
7937
7943
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
7938
7944
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
7939
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
7945
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
7940
7946
  rowCustomClassKey: string;
7941
7947
  rowDataKey: string;
7942
7948
  totalCount: number;
@@ -7999,7 +8005,7 @@ declare const _default: {
7999
8005
  default: (row: any, index: any) => any;
8000
8006
  };
8001
8007
  emptyStateVariant: {
8002
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
8008
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
8003
8009
  default: any;
8004
8010
  };
8005
8011
  rowCustomClassKey: {
@@ -8114,7 +8120,7 @@ declare const _default: {
8114
8120
  default: (row: any, index: any) => any;
8115
8121
  };
8116
8122
  emptyStateVariant: {
8117
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
8123
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
8118
8124
  default: any;
8119
8125
  };
8120
8126
  rowCustomClassKey: {
@@ -8181,7 +8187,7 @@ declare const _default: {
8181
8187
  emptyStateSubtitle: string;
8182
8188
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
8183
8189
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
8184
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
8190
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
8185
8191
  rowCustomClassKey: string;
8186
8192
  rowDataKey: string;
8187
8193
  totalCount: number;
@@ -8264,7 +8270,7 @@ declare const _default: {
8264
8270
  default: (row: any, index: any) => any;
8265
8271
  };
8266
8272
  emptyStateVariant: {
8267
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
8273
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
8268
8274
  default: any;
8269
8275
  };
8270
8276
  rowCustomClassKey: {
@@ -8367,7 +8373,7 @@ declare const _default: {
8367
8373
  default: (row: any, index: any) => any;
8368
8374
  };
8369
8375
  emptyStateVariant: {
8370
- type: import("vue").PropType<"error" | "no-access" | "no-results" | "no-data" | "files" | "settings">;
8376
+ type: import("vue").PropType<"error" | "settings" | "no-access" | "no-results" | "no-data" | "files">;
8371
8377
  default: any;
8372
8378
  };
8373
8379
  rowCustomClassKey: {
@@ -8434,7 +8440,7 @@ declare const _default: {
8434
8440
  emptyStateSubtitle: string;
8435
8441
  getRowId: (row: import("./components/table/common/Table.types").Row, index: number) => unknown;
8436
8442
  getRowKey: (row: import("./components/table/common/Table.types").Row, index: number) => string | number;
8437
- emptyStateVariant: "error" | "no-access" | "no-results" | "no-data" | "files" | "settings";
8443
+ emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
8438
8444
  rowCustomClassKey: string;
8439
8445
  rowDataKey: string;
8440
8446
  totalCount: number;