@ironsource/shared-ui 2.1.12-rc.0 → 2.1.12-rc.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.
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_0198fee8_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_78d3f5a8_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_32001725_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_e4c673e7_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_532f23bc_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_4396faf6_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_25d0e129_lang.css +1 -0
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8d5521da_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_86ea5d2a_lang.css +1 -0
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_a849128a_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_64ae80dd_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_d154c5da_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +1 -0
- package/components/chart/Chart.vue.d.ts +57 -39
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +98 -297
- package/components/chart/ChartHeader.vue.d.ts +20 -10
- package/components/chart/ChartHeader.vue.js +2 -2
- package/components/chart/ChartHeader.vue2.js +74 -52
- package/components/chart/ChartHeaderTrend.vue.d.ts +34 -0
- package/components/chart/ChartHeaderTrend.vue.js +7 -0
- package/components/chart/ChartHeaderTrend.vue2.js +32 -0
- package/components/chart/ChartLegend.vue.js +2 -2
- package/components/chart/ChartLegend.vue2.js +36 -35
- package/components/chart/ChartPlane.vue.d.ts +143 -0
- package/components/chart/ChartPlane.vue.js +7 -0
- package/components/chart/ChartPlane.vue2.js +306 -0
- package/components/chart/ChartStoryArgs.d.ts +135 -0
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +36 -35
- package/components/chart/composables/useChartHeight.d.ts +5 -0
- package/components/chart/composables/useChartHeight.js +22 -0
- package/components/chart/composables/useColorsMap.d.ts +10 -0
- package/components/chart/composables/useColorsMap.js +17 -0
- package/components/chart/composables/useTooltipPosition.d.ts +1 -1
- package/components/chart/composables/useTooltipPosition.js +11 -15
- package/components/chart/consts.d.ts +5 -0
- package/components/chart/consts.js +20 -15
- package/components/chart/index.d.ts +189 -113
- package/components/chart/mockData.d.ts +27 -1
- package/components/chart/types.d.ts +4 -0
- package/components/chart/utils/formatNumber.d.ts +0 -1
- package/components/chart/utils/utils.js +5 -5
- package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
- package/components/dateRange/v4/DateRangeV4.vue2.js +1 -1
- package/components/dropdown/common/Dropdown.common.js +208 -200
- package/components/dropdown/common/useGroupedOptions.d.ts +1 -0
- package/components/dropdown/common/useGroupedOptions.js +40 -39
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +10 -7
- package/components/dropdown/v4/ConditionalDropdown.vue.js +4 -4
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +80 -80
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +3 -3
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue.d.ts +5 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +97 -86
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +68 -73
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +30 -0
- package/components/dropdown/v4/index.d.ts +20 -1
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
- package/components/emptyState/v4/index.d.ts +7 -7
- package/components/table/v4/DataGrid.vue.d.ts +4 -3
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +152 -142
- package/components/table/v4/MultipleDataGrid.vue.d.ts +3 -3
- package/components/table/v4/index.d.ts +15 -14
- package/composables/useFullPageHeight.d.ts +10 -0
- package/composables/useFullPageHeight.js +15 -0
- package/index.d.ts +88 -44
- package/index.js +102 -100
- package/package.json +1 -1
- package/testids/index.d.ts +2 -1
- package/testids/index.js +10 -10
- package/utils/formatNumbers.d.ts +1 -1
- package/utils/formatNumbers.js +18 -5
- package/utils/index.js +7 -0
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_1aa6df01_lang.css +0 -1
- package/Chart.vue_vue_type_style_index_0_scoped_026d82c5_lang.css +0 -1
- package/ChartHeader.vue_vue_type_style_index_0_scoped_b8213498_lang.css +0 -1
- package/ChartLegend.vue_vue_type_style_index_0_scoped_4fe1c7d1_lang.css +0 -1
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_6744325c_lang.css +0 -1
- package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8e026669_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_26488faf_lang.css +0 -1
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_8a2714eb_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_73bf9b5b_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_75002075_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_b883d1fa_lang.css +0 -1
- package/components/chart/utils/formatNumber.js +0 -11
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
8443
|
+
emptyStateVariant: "error" | "settings" | "no-access" | "no-results" | "no-data" | "files";
|
|
8438
8444
|
rowCustomClassKey: string;
|
|
8439
8445
|
rowDataKey: string;
|
|
8440
8446
|
totalCount: number;
|
|
@@ -16300,6 +16306,7 @@ declare const _default: {
|
|
|
16300
16306
|
keepOpen: boolean;
|
|
16301
16307
|
autoSize: boolean;
|
|
16302
16308
|
disableKeyboardEvents: boolean;
|
|
16309
|
+
dynamicFilterMode: boolean;
|
|
16303
16310
|
isOnTop: boolean;
|
|
16304
16311
|
triggerLabel: string;
|
|
16305
16312
|
triggerHelperText: string;
|
|
@@ -16436,6 +16443,10 @@ declare const _default: {
|
|
|
16436
16443
|
type: import("vue").PropType<boolean>;
|
|
16437
16444
|
default: boolean;
|
|
16438
16445
|
};
|
|
16446
|
+
dynamicFilterMode: {
|
|
16447
|
+
type: import("vue").PropType<boolean>;
|
|
16448
|
+
default: boolean;
|
|
16449
|
+
};
|
|
16439
16450
|
isOnTop: {
|
|
16440
16451
|
type: import("vue").PropType<boolean>;
|
|
16441
16452
|
default: boolean;
|
|
@@ -16589,7 +16600,7 @@ declare const _default: {
|
|
|
16589
16600
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16590
16601
|
onOpened?: () => any;
|
|
16591
16602
|
onClosed?: () => any;
|
|
16592
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16603
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16593
16604
|
$attrs: {
|
|
16594
16605
|
[x: string]: unknown;
|
|
16595
16606
|
};
|
|
@@ -16705,6 +16716,10 @@ declare const _default: {
|
|
|
16705
16716
|
type: import("vue").PropType<boolean>;
|
|
16706
16717
|
default: boolean;
|
|
16707
16718
|
};
|
|
16719
|
+
dynamicFilterMode: {
|
|
16720
|
+
type: import("vue").PropType<boolean>;
|
|
16721
|
+
default: boolean;
|
|
16722
|
+
};
|
|
16708
16723
|
isOnTop: {
|
|
16709
16724
|
type: import("vue").PropType<boolean>;
|
|
16710
16725
|
default: boolean;
|
|
@@ -16897,6 +16912,7 @@ declare const _default: {
|
|
|
16897
16912
|
keepOpen: boolean;
|
|
16898
16913
|
autoSize: boolean;
|
|
16899
16914
|
disableKeyboardEvents: boolean;
|
|
16915
|
+
dynamicFilterMode: boolean;
|
|
16900
16916
|
isOnTop: boolean;
|
|
16901
16917
|
triggerLabel: string;
|
|
16902
16918
|
triggerHelperText: string;
|
|
@@ -17053,6 +17069,10 @@ declare const _default: {
|
|
|
17053
17069
|
type: import("vue").PropType<boolean>;
|
|
17054
17070
|
default: boolean;
|
|
17055
17071
|
};
|
|
17072
|
+
dynamicFilterMode: {
|
|
17073
|
+
type: import("vue").PropType<boolean>;
|
|
17074
|
+
default: boolean;
|
|
17075
|
+
};
|
|
17056
17076
|
isOnTop: {
|
|
17057
17077
|
type: import("vue").PropType<boolean>;
|
|
17058
17078
|
default: boolean;
|
|
@@ -17315,6 +17335,10 @@ declare const _default: {
|
|
|
17315
17335
|
type: import("vue").PropType<boolean>;
|
|
17316
17336
|
default: boolean;
|
|
17317
17337
|
};
|
|
17338
|
+
dynamicFilterMode: {
|
|
17339
|
+
type: import("vue").PropType<boolean>;
|
|
17340
|
+
default: boolean;
|
|
17341
|
+
};
|
|
17318
17342
|
isOnTop: {
|
|
17319
17343
|
type: import("vue").PropType<boolean>;
|
|
17320
17344
|
default: boolean;
|
|
@@ -17507,6 +17531,7 @@ declare const _default: {
|
|
|
17507
17531
|
keepOpen: boolean;
|
|
17508
17532
|
autoSize: boolean;
|
|
17509
17533
|
disableKeyboardEvents: boolean;
|
|
17534
|
+
dynamicFilterMode: boolean;
|
|
17510
17535
|
isOnTop: boolean;
|
|
17511
17536
|
triggerLabel: string;
|
|
17512
17537
|
triggerHelperText: string;
|
|
@@ -20902,6 +20927,7 @@ declare const _default: {
|
|
|
20902
20927
|
keepOpen: boolean;
|
|
20903
20928
|
autoSize: boolean;
|
|
20904
20929
|
disableKeyboardEvents: boolean;
|
|
20930
|
+
dynamicFilterMode: boolean;
|
|
20905
20931
|
isOnTop: boolean;
|
|
20906
20932
|
triggerLabel: string;
|
|
20907
20933
|
triggerHelperText: string;
|
|
@@ -21038,6 +21064,10 @@ declare const _default: {
|
|
|
21038
21064
|
type: import("vue").PropType<boolean>;
|
|
21039
21065
|
default: boolean;
|
|
21040
21066
|
};
|
|
21067
|
+
dynamicFilterMode: {
|
|
21068
|
+
type: import("vue").PropType<boolean>;
|
|
21069
|
+
default: boolean;
|
|
21070
|
+
};
|
|
21041
21071
|
isOnTop: {
|
|
21042
21072
|
type: import("vue").PropType<boolean>;
|
|
21043
21073
|
default: boolean;
|
|
@@ -21191,7 +21221,7 @@ declare const _default: {
|
|
|
21191
21221
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21192
21222
|
onOpened?: () => any;
|
|
21193
21223
|
onClosed?: () => any;
|
|
21194
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21224
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "placeholder" | "multi" | "infiniteLoading" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "dynamicFilterMode" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "onClearSearch" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21195
21225
|
$attrs: {
|
|
21196
21226
|
[x: string]: unknown;
|
|
21197
21227
|
};
|
|
@@ -21307,6 +21337,10 @@ declare const _default: {
|
|
|
21307
21337
|
type: import("vue").PropType<boolean>;
|
|
21308
21338
|
default: boolean;
|
|
21309
21339
|
};
|
|
21340
|
+
dynamicFilterMode: {
|
|
21341
|
+
type: import("vue").PropType<boolean>;
|
|
21342
|
+
default: boolean;
|
|
21343
|
+
};
|
|
21310
21344
|
isOnTop: {
|
|
21311
21345
|
type: import("vue").PropType<boolean>;
|
|
21312
21346
|
default: boolean;
|
|
@@ -21499,6 +21533,7 @@ declare const _default: {
|
|
|
21499
21533
|
keepOpen: boolean;
|
|
21500
21534
|
autoSize: boolean;
|
|
21501
21535
|
disableKeyboardEvents: boolean;
|
|
21536
|
+
dynamicFilterMode: boolean;
|
|
21502
21537
|
isOnTop: boolean;
|
|
21503
21538
|
triggerLabel: string;
|
|
21504
21539
|
triggerHelperText: string;
|
|
@@ -21655,6 +21690,10 @@ declare const _default: {
|
|
|
21655
21690
|
type: import("vue").PropType<boolean>;
|
|
21656
21691
|
default: boolean;
|
|
21657
21692
|
};
|
|
21693
|
+
dynamicFilterMode: {
|
|
21694
|
+
type: import("vue").PropType<boolean>;
|
|
21695
|
+
default: boolean;
|
|
21696
|
+
};
|
|
21658
21697
|
isOnTop: {
|
|
21659
21698
|
type: import("vue").PropType<boolean>;
|
|
21660
21699
|
default: boolean;
|
|
@@ -21917,6 +21956,10 @@ declare const _default: {
|
|
|
21917
21956
|
type: import("vue").PropType<boolean>;
|
|
21918
21957
|
default: boolean;
|
|
21919
21958
|
};
|
|
21959
|
+
dynamicFilterMode: {
|
|
21960
|
+
type: import("vue").PropType<boolean>;
|
|
21961
|
+
default: boolean;
|
|
21962
|
+
};
|
|
21920
21963
|
isOnTop: {
|
|
21921
21964
|
type: import("vue").PropType<boolean>;
|
|
21922
21965
|
default: boolean;
|
|
@@ -22109,6 +22152,7 @@ declare const _default: {
|
|
|
22109
22152
|
keepOpen: boolean;
|
|
22110
22153
|
autoSize: boolean;
|
|
22111
22154
|
disableKeyboardEvents: boolean;
|
|
22155
|
+
dynamicFilterMode: boolean;
|
|
22112
22156
|
isOnTop: boolean;
|
|
22113
22157
|
triggerLabel: string;
|
|
22114
22158
|
triggerHelperText: string;
|