@ironsource/shared-ui 2.1.12-rc.2 → 2.1.12-rc.21
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/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_0123c361_lang.css +1 -0
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_0198fee8_lang.css +1 -0
- package/ButtonV4.vue_vue_type_style_index_0_scoped_d7948c77_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_03771fa3_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_da34b108_lang.css +1 -0
- package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_79dc2883_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_fd9e4ea2_lang.css +1 -0
- package/ChartPlane.vue_vue_type_style_index_0_scoped_903fc6ae_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_e53c6287_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/DialogV4.vue_vue_type_style_index_0_scoped_eb226e31_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_08cb822e_lang.css +1 -0
- package/FieldLabel.vue_vue_type_style_index_0_scoped_921d4087_lang.css +1 -0
- package/FormRow.vue_vue_type_style_index_0_scoped_2d5a3057_lang.css +1 -0
- package/IconButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_99e51ecc_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_9cdf3a94_lang.css +1 -0
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_01f78cd7_lang.css +1 -0
- package/SubHeader.vue_vue_type_style_index_0_scoped_e6008b6c_lang.css +1 -0
- package/Tooltip.vue_vue_type_style_index_0_scoped_20630944_lang.css +1 -0
- package/TooltipHeader.vue_vue_type_style_index_0_scoped_3b15c693_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_0_scoped_bcb40ed4_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +1 -0
- package/components/appIcon/index.d.ts +3 -3
- package/components/banner/Banner.vue.d.ts +3 -3
- package/components/banner/index.d.ts +7 -7
- package/components/button/common/consts.d.ts +1 -0
- package/components/button/v3/Button.vue.d.ts +3 -3
- package/components/button/v3/ButtonBase.vue.d.ts +3 -3
- package/components/button/v3/IconButton.vue.d.ts +3 -3
- package/components/button/v3/index.d.ts +14 -14
- package/components/button/v4/ButtonV4.vue.d.ts +4 -3
- package/components/button/v4/ButtonV4.vue.js +3 -3
- package/components/button/v4/ButtonV4.vue2.js +1 -1
- package/components/chart/Chart.vue.d.ts +149 -38
- package/components/chart/Chart.vue.js +3 -3
- package/components/chart/Chart.vue2.js +146 -297
- package/components/chart/ChartHeader.vue.d.ts +45 -11
- package/components/chart/ChartHeader.vue.js +3 -3
- package/components/chart/ChartHeader.vue2.js +64 -53
- package/components/chart/ChartHeaderTrend.vue.d.ts +48 -0
- package/components/chart/ChartHeaderTrend.vue.js +7 -0
- package/components/chart/ChartHeaderTrend.vue2.js +95 -0
- package/components/chart/ChartLegend.vue.d.ts +24 -0
- package/components/chart/ChartLegend.vue.js +3 -3
- package/components/chart/ChartLegend.vue2.js +82 -63
- package/components/chart/ChartPlane.vue.d.ts +221 -0
- package/components/chart/ChartPlane.vue.js +7 -0
- package/components/chart/ChartPlane.vue2.js +368 -0
- package/components/chart/ChartStoryArgs.d.ts +179 -0
- package/components/chart/ChartTooltip.vue.d.ts +22 -2
- package/components/chart/ChartTooltip.vue.js +2 -2
- package/components/chart/ChartTooltip.vue2.js +50 -55
- package/components/chart/LegendSorting.vue.d.ts +37 -0
- package/components/chart/LegendSorting.vue.js +45 -0
- package/components/chart/LegendSorting.vue2.js +4 -0
- package/components/chart/SettingsHeader.vue.d.ts +1 -0
- package/components/chart/SettingsHeader.vue.js +3 -3
- package/components/chart/SettingsHeader.vue2.js +17 -16
- package/components/chart/SubHeader.vue.d.ts +52 -0
- package/components/chart/SubHeader.vue.js +7 -0
- package/components/chart/SubHeader.vue2.js +61 -0
- package/components/chart/TooltipHeader.vue.d.ts +50 -0
- package/components/chart/TooltipHeader.vue.js +7 -0
- package/components/chart/TooltipHeader.vue2.js +69 -0
- package/components/chart/colorPalette.d.ts +4 -0
- package/components/chart/colorPalette.js +54 -0
- package/components/chart/composables/useChartHeight.d.ts +5 -0
- package/components/chart/composables/useChartHeight.js +24 -0
- package/components/chart/composables/useColorsMap.d.ts +10 -0
- package/components/chart/composables/useColorsMap.js +46 -0
- package/components/chart/composables/useTooltipPosition.d.ts +1 -1
- package/components/chart/composables/useTooltipPosition.js +11 -15
- package/components/chart/consts.d.ts +29 -7
- package/components/chart/consts.js +41 -21
- package/components/chart/index.d.ts +515 -118
- package/components/chart/mockData.d.ts +44 -5
- package/components/chart/types.d.ts +37 -6
- package/components/chart/types.js +5 -2
- package/components/chart/utils/formatNumber.d.ts +0 -1
- package/components/chart/utils/highlightUtils.d.ts +3 -0
- package/components/chart/utils/highlightUtils.js +18 -0
- package/components/chart/utils/utils.d.ts +3 -2
- package/components/chart/utils/utils.js +23 -8
- package/components/checkbox/v3/Checkbox.vue.d.ts +3 -3
- package/components/checkbox/v3/index.d.ts +7 -7
- package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
- package/components/dateRange/v4/DateRangeV4.vue2.js +1 -1
- package/components/dialog/v4/DialogV4.vue.d.ts +4 -3
- package/components/dialog/v4/DialogV4.vue.js +4 -4
- package/components/dialog/v4/DialogV4.vue2.js +1 -1
- package/components/dialog/v4/index.d.ts +7 -7
- package/components/dropdown/common/Dropdown.common.js +92 -85
- package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
- package/components/dropdown/v4/ConditionalDropdown.vue2.js +76 -76
- package/components/dropdown/v4/DropdownV4.vue.d.ts +8 -0
- package/components/dropdown/v4/DropdownV4.vue.js +4 -4
- package/components/dropdown/v4/DropdownV4.vue2.js +105 -95
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.d.ts +11 -0
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue.js +4 -4
- package/components/dropdown/v4/IconButtonDropdownTrigger.vue2.js +12 -10
- package/components/dropdown/v4/OptionV4.vue.d.ts +8 -0
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +91 -69
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +68 -73
- package/components/dropdown/v4/index.d.ts +64 -2
- package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
- package/components/emptyState/v4/index.d.ts +7 -7
- package/components/forms/FormRow.vue.d.ts +9 -2
- package/components/forms/FormRow.vue.js +3 -3
- package/components/forms/FormRow.vue2.js +25 -14
- package/components/forms/index.d.ts +25 -5
- package/components/search/v3/index.d.ts +3 -3
- package/components/shared/FieldLabel.vue.d.ts +19 -7
- package/components/shared/FieldLabel.vue.js +3 -3
- package/components/shared/FieldLabel.vue2.js +50 -37
- package/components/table/v4/DataGrid.vue.d.ts +4 -3
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +151 -142
- package/components/table/v4/MultipleDataGrid.vue.d.ts +3 -3
- package/components/table/v4/index.d.ts +15 -14
- package/components/tabs/v3/Tabs.vue.d.ts +3 -3
- package/components/tabs/v3/index.d.ts +7 -7
- package/components/tooltip/common/Tooltip.types.d.ts +1 -0
- package/components/tooltip/v3/Tooltip.vue.d.ts +4 -4
- package/components/tooltip/v3/Tooltip.vue.js +2 -2
- package/components/tooltip/v3/Tooltip.vue2.js +1 -1
- package/components/tooltip/v3/index.d.ts +7 -7
- package/components/tooltip/v4/TooltipV4.vue.d.ts +4 -4
- package/components/tooltip/v4/TooltipV4.vue.js +2 -2
- package/components/tooltip/v4/TooltipV4.vue2.js +1 -1
- package/components/tooltip/v4/index.d.ts +7 -7
- package/components/typography/Text.vue.d.ts +3 -3
- package/components/typography/index.d.ts +7 -7
- package/composables/useFormValidation.d.ts +1 -0
- package/composables/useFormValidation.js +32 -27
- package/composables/useFullPageHeight.d.ts +10 -0
- package/composables/useFullPageHeight.js +15 -0
- package/consts/common.d.ts +1 -0
- package/consts/common.js +4 -0
- package/consts/regex.d.ts +1 -0
- package/consts/regex.js +2 -1
- package/index.d.ts +211 -81
- package/index.js +106 -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 +19 -6
- package/utils/index.js +7 -0
- package/utils/text.d.ts +3 -0
- package/utils/text.js +24 -5
- package/utils/totals.d.ts +5 -0
- package/utils/totals.js +9 -0
- package/utils/utils.d.ts +1 -0
- package/utils/utils.js +4 -0
- package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_604dfc6f_lang.css +0 -1
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css +0 -1
- package/ButtonV4.vue_vue_type_style_index_0_scoped_bdfce3aa_lang.css +0 -1
- package/Chart.vue_vue_type_style_index_0_scoped_a641383a_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_3a2aeea3_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_020072b0_lang.css +0 -1
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_8a2714eb_lang.css +0 -1
- package/DialogV4.vue_vue_type_style_index_0_scoped_37da643b_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_d154c5da_lang.css +0 -1
- package/FieldLabel.vue_vue_type_style_index_0_scoped_96ee1c98_lang.css +0 -1
- package/FormRow.vue_vue_type_style_index_0_scoped_fc3897fd_lang.css +0 -1
- package/IconButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_59fb505a_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_1e8837dc_lang.css +0 -1
- package/SettingsHeader.vue_vue_type_style_index_0_scoped_9b6cd9d9_lang.css +0 -1
- package/Tooltip.vue_vue_type_style_index_0_scoped_9020a179_lang.css +0 -1
- package/TooltipV4.vue_vue_type_style_index_0_scoped_66eab856_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, formatLowDigits?: boolean): 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;
|
|
@@ -9882,7 +9888,7 @@ declare const _default: {
|
|
|
9882
9888
|
theme: string;
|
|
9883
9889
|
testId: string;
|
|
9884
9890
|
delay: number;
|
|
9885
|
-
triggers: ("
|
|
9891
|
+
triggers: import("./components/tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
9886
9892
|
forceShowWithTruncate: boolean;
|
|
9887
9893
|
placement: "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";
|
|
9888
9894
|
disabled: boolean;
|
|
@@ -9912,7 +9918,7 @@ declare const _default: {
|
|
|
9912
9918
|
default: number;
|
|
9913
9919
|
};
|
|
9914
9920
|
triggers: {
|
|
9915
|
-
type: import("vue").PropType<("
|
|
9921
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
9916
9922
|
default: () => string[];
|
|
9917
9923
|
};
|
|
9918
9924
|
forceShowWithTruncate: {
|
|
@@ -9981,7 +9987,7 @@ declare const _default: {
|
|
|
9981
9987
|
default: number;
|
|
9982
9988
|
};
|
|
9983
9989
|
triggers: {
|
|
9984
|
-
type: import("vue").PropType<("
|
|
9990
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
9985
9991
|
default: () => string[];
|
|
9986
9992
|
};
|
|
9987
9993
|
forceShowWithTruncate: {
|
|
@@ -10022,7 +10028,7 @@ declare const _default: {
|
|
|
10022
10028
|
theme: string;
|
|
10023
10029
|
testId: string;
|
|
10024
10030
|
delay: number;
|
|
10025
|
-
triggers: ("
|
|
10031
|
+
triggers: import("./components/tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
10026
10032
|
forceShowWithTruncate: boolean;
|
|
10027
10033
|
placement: "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";
|
|
10028
10034
|
disabled: boolean;
|
|
@@ -10072,7 +10078,7 @@ declare const _default: {
|
|
|
10072
10078
|
default: number;
|
|
10073
10079
|
};
|
|
10074
10080
|
triggers: {
|
|
10075
|
-
type: import("vue").PropType<("
|
|
10081
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
10076
10082
|
default: () => string[];
|
|
10077
10083
|
};
|
|
10078
10084
|
forceShowWithTruncate: {
|
|
@@ -10131,7 +10137,7 @@ declare const _default: {
|
|
|
10131
10137
|
default: number;
|
|
10132
10138
|
};
|
|
10133
10139
|
triggers: {
|
|
10134
|
-
type: import("vue").PropType<("
|
|
10140
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
10135
10141
|
default: () => string[];
|
|
10136
10142
|
};
|
|
10137
10143
|
forceShowWithTruncate: {
|
|
@@ -10172,7 +10178,7 @@ declare const _default: {
|
|
|
10172
10178
|
theme: string;
|
|
10173
10179
|
testId: string;
|
|
10174
10180
|
delay: number;
|
|
10175
|
-
triggers: ("
|
|
10181
|
+
triggers: import("./components/tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
10176
10182
|
forceShowWithTruncate: boolean;
|
|
10177
10183
|
placement: "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";
|
|
10178
10184
|
disabled: boolean;
|
|
@@ -10198,7 +10204,7 @@ declare const _default: {
|
|
|
10198
10204
|
theme: string;
|
|
10199
10205
|
testId: string;
|
|
10200
10206
|
delay: number;
|
|
10201
|
-
triggers: ("
|
|
10207
|
+
triggers: import("./components/tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
10202
10208
|
forceShowWithTruncate: boolean;
|
|
10203
10209
|
placement: "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";
|
|
10204
10210
|
disabled: boolean;
|
|
@@ -10228,7 +10234,7 @@ declare const _default: {
|
|
|
10228
10234
|
default: number;
|
|
10229
10235
|
};
|
|
10230
10236
|
triggers: {
|
|
10231
|
-
type: import("vue").PropType<("
|
|
10237
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
10232
10238
|
default: () => string[];
|
|
10233
10239
|
};
|
|
10234
10240
|
forceShowWithTruncate: {
|
|
@@ -10297,7 +10303,7 @@ declare const _default: {
|
|
|
10297
10303
|
default: number;
|
|
10298
10304
|
};
|
|
10299
10305
|
triggers: {
|
|
10300
|
-
type: import("vue").PropType<("
|
|
10306
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
10301
10307
|
default: () => string[];
|
|
10302
10308
|
};
|
|
10303
10309
|
forceShowWithTruncate: {
|
|
@@ -10338,7 +10344,7 @@ declare const _default: {
|
|
|
10338
10344
|
theme: string;
|
|
10339
10345
|
testId: string;
|
|
10340
10346
|
delay: number;
|
|
10341
|
-
triggers: ("
|
|
10347
|
+
triggers: import("./components/tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
10342
10348
|
forceShowWithTruncate: boolean;
|
|
10343
10349
|
placement: "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";
|
|
10344
10350
|
disabled: boolean;
|
|
@@ -10388,7 +10394,7 @@ declare const _default: {
|
|
|
10388
10394
|
default: number;
|
|
10389
10395
|
};
|
|
10390
10396
|
triggers: {
|
|
10391
|
-
type: import("vue").PropType<("
|
|
10397
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
10392
10398
|
default: () => string[];
|
|
10393
10399
|
};
|
|
10394
10400
|
forceShowWithTruncate: {
|
|
@@ -10447,7 +10453,7 @@ declare const _default: {
|
|
|
10447
10453
|
default: number;
|
|
10448
10454
|
};
|
|
10449
10455
|
triggers: {
|
|
10450
|
-
type: import("vue").PropType<("
|
|
10456
|
+
type: import("vue").PropType<import("./components/tooltip/common/Tooltip.types").TooltipTriggers[]>;
|
|
10451
10457
|
default: () => string[];
|
|
10452
10458
|
};
|
|
10453
10459
|
forceShowWithTruncate: {
|
|
@@ -10488,7 +10494,7 @@ declare const _default: {
|
|
|
10488
10494
|
theme: string;
|
|
10489
10495
|
testId: string;
|
|
10490
10496
|
delay: number;
|
|
10491
|
-
triggers: ("
|
|
10497
|
+
triggers: import("./components/tooltip/common/Tooltip.types").TooltipTriggers[];
|
|
10492
10498
|
forceShowWithTruncate: boolean;
|
|
10493
10499
|
placement: "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";
|
|
10494
10500
|
disabled: boolean;
|
|
@@ -10527,7 +10533,7 @@ declare const _default: {
|
|
|
10527
10533
|
showFooter: boolean;
|
|
10528
10534
|
saveButtonLabel: string;
|
|
10529
10535
|
saveButtonLoading: boolean;
|
|
10530
|
-
saveButtonColor:
|
|
10536
|
+
saveButtonColor: import("./components/button/common/consts").ButtonColor;
|
|
10531
10537
|
cancelButtonLabel: string;
|
|
10532
10538
|
cancelButtonColor: string;
|
|
10533
10539
|
noPadding: boolean;
|
|
@@ -10609,7 +10615,7 @@ declare const _default: {
|
|
|
10609
10615
|
default: boolean;
|
|
10610
10616
|
};
|
|
10611
10617
|
saveButtonColor: {
|
|
10612
|
-
type: import("vue").PropType<
|
|
10618
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
10613
10619
|
default: string;
|
|
10614
10620
|
};
|
|
10615
10621
|
cancelButtonLabel: {
|
|
@@ -10722,7 +10728,7 @@ declare const _default: {
|
|
|
10722
10728
|
default: boolean;
|
|
10723
10729
|
};
|
|
10724
10730
|
saveButtonColor: {
|
|
10725
|
-
type: import("vue").PropType<
|
|
10731
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
10726
10732
|
default: string;
|
|
10727
10733
|
};
|
|
10728
10734
|
cancelButtonLabel: {
|
|
@@ -10768,7 +10774,7 @@ declare const _default: {
|
|
|
10768
10774
|
showFooter: boolean;
|
|
10769
10775
|
saveButtonLabel: string;
|
|
10770
10776
|
saveButtonLoading: boolean;
|
|
10771
|
-
saveButtonColor:
|
|
10777
|
+
saveButtonColor: import("./components/button/common/consts").ButtonColor;
|
|
10772
10778
|
cancelButtonLabel: string;
|
|
10773
10779
|
cancelButtonColor: string;
|
|
10774
10780
|
noPadding: boolean;
|
|
@@ -10870,7 +10876,7 @@ declare const _default: {
|
|
|
10870
10876
|
default: boolean;
|
|
10871
10877
|
};
|
|
10872
10878
|
saveButtonColor: {
|
|
10873
|
-
type: import("vue").PropType<
|
|
10879
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
10874
10880
|
default: string;
|
|
10875
10881
|
};
|
|
10876
10882
|
cancelButtonLabel: {
|
|
@@ -10973,7 +10979,7 @@ declare const _default: {
|
|
|
10973
10979
|
default: boolean;
|
|
10974
10980
|
};
|
|
10975
10981
|
saveButtonColor: {
|
|
10976
|
-
type: import("vue").PropType<
|
|
10982
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
10977
10983
|
default: string;
|
|
10978
10984
|
};
|
|
10979
10985
|
cancelButtonLabel: {
|
|
@@ -11019,7 +11025,7 @@ declare const _default: {
|
|
|
11019
11025
|
showFooter: boolean;
|
|
11020
11026
|
saveButtonLabel: string;
|
|
11021
11027
|
saveButtonLoading: boolean;
|
|
11022
|
-
saveButtonColor:
|
|
11028
|
+
saveButtonColor: import("./components/button/common/consts").ButtonColor;
|
|
11023
11029
|
cancelButtonLabel: string;
|
|
11024
11030
|
cancelButtonColor: string;
|
|
11025
11031
|
noPadding: boolean;
|
|
@@ -11053,7 +11059,7 @@ declare const _default: {
|
|
|
11053
11059
|
showFooter: boolean;
|
|
11054
11060
|
saveButtonLabel: string;
|
|
11055
11061
|
saveButtonLoading: boolean;
|
|
11056
|
-
saveButtonColor:
|
|
11062
|
+
saveButtonColor: import("./components/button/common/consts").ButtonColor;
|
|
11057
11063
|
cancelButtonLabel: string;
|
|
11058
11064
|
cancelButtonColor: string;
|
|
11059
11065
|
noPadding: boolean;
|
|
@@ -11135,7 +11141,7 @@ declare const _default: {
|
|
|
11135
11141
|
default: boolean;
|
|
11136
11142
|
};
|
|
11137
11143
|
saveButtonColor: {
|
|
11138
|
-
type: import("vue").PropType<
|
|
11144
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
11139
11145
|
default: string;
|
|
11140
11146
|
};
|
|
11141
11147
|
cancelButtonLabel: {
|
|
@@ -11248,7 +11254,7 @@ declare const _default: {
|
|
|
11248
11254
|
default: boolean;
|
|
11249
11255
|
};
|
|
11250
11256
|
saveButtonColor: {
|
|
11251
|
-
type: import("vue").PropType<
|
|
11257
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
11252
11258
|
default: string;
|
|
11253
11259
|
};
|
|
11254
11260
|
cancelButtonLabel: {
|
|
@@ -11294,7 +11300,7 @@ declare const _default: {
|
|
|
11294
11300
|
showFooter: boolean;
|
|
11295
11301
|
saveButtonLabel: string;
|
|
11296
11302
|
saveButtonLoading: boolean;
|
|
11297
|
-
saveButtonColor:
|
|
11303
|
+
saveButtonColor: import("./components/button/common/consts").ButtonColor;
|
|
11298
11304
|
cancelButtonLabel: string;
|
|
11299
11305
|
cancelButtonColor: string;
|
|
11300
11306
|
noPadding: boolean;
|
|
@@ -11396,7 +11402,7 @@ declare const _default: {
|
|
|
11396
11402
|
default: boolean;
|
|
11397
11403
|
};
|
|
11398
11404
|
saveButtonColor: {
|
|
11399
|
-
type: import("vue").PropType<
|
|
11405
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
11400
11406
|
default: string;
|
|
11401
11407
|
};
|
|
11402
11408
|
cancelButtonLabel: {
|
|
@@ -11499,7 +11505,7 @@ declare const _default: {
|
|
|
11499
11505
|
default: boolean;
|
|
11500
11506
|
};
|
|
11501
11507
|
saveButtonColor: {
|
|
11502
|
-
type: import("vue").PropType<
|
|
11508
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
11503
11509
|
default: string;
|
|
11504
11510
|
};
|
|
11505
11511
|
cancelButtonLabel: {
|
|
@@ -11545,7 +11551,7 @@ declare const _default: {
|
|
|
11545
11551
|
showFooter: boolean;
|
|
11546
11552
|
saveButtonLabel: string;
|
|
11547
11553
|
saveButtonLoading: boolean;
|
|
11548
|
-
saveButtonColor:
|
|
11554
|
+
saveButtonColor: import("./components/button/common/consts").ButtonColor;
|
|
11549
11555
|
cancelButtonLabel: string;
|
|
11550
11556
|
cancelButtonColor: string;
|
|
11551
11557
|
noPadding: boolean;
|
|
@@ -16323,6 +16329,7 @@ declare const _default: {
|
|
|
16323
16329
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16324
16330
|
optionsEndTextIconKey: string;
|
|
16325
16331
|
optionFlagKey: string;
|
|
16332
|
+
optionWarningKey: string;
|
|
16326
16333
|
disabledOptionKey: string;
|
|
16327
16334
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16328
16335
|
optionTwoLinesKey: string;
|
|
@@ -16533,6 +16540,10 @@ declare const _default: {
|
|
|
16533
16540
|
type: import("vue").PropType<string>;
|
|
16534
16541
|
default: any;
|
|
16535
16542
|
};
|
|
16543
|
+
optionWarningKey: {
|
|
16544
|
+
type: import("vue").PropType<string>;
|
|
16545
|
+
default: any;
|
|
16546
|
+
};
|
|
16536
16547
|
disabledOptionKey: {
|
|
16537
16548
|
type: import("vue").PropType<string>;
|
|
16538
16549
|
default: string;
|
|
@@ -16594,7 +16605,7 @@ declare const _default: {
|
|
|
16594
16605
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
16595
16606
|
onOpened?: () => any;
|
|
16596
16607
|
onClosed?: () => any;
|
|
16597
|
-
} & 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">;
|
|
16608
|
+
} & 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" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
16598
16609
|
$attrs: {
|
|
16599
16610
|
[x: string]: unknown;
|
|
16600
16611
|
};
|
|
@@ -16806,6 +16817,10 @@ declare const _default: {
|
|
|
16806
16817
|
type: import("vue").PropType<string>;
|
|
16807
16818
|
default: any;
|
|
16808
16819
|
};
|
|
16820
|
+
optionWarningKey: {
|
|
16821
|
+
type: import("vue").PropType<string>;
|
|
16822
|
+
default: any;
|
|
16823
|
+
};
|
|
16809
16824
|
disabledOptionKey: {
|
|
16810
16825
|
type: import("vue").PropType<string>;
|
|
16811
16826
|
default: string;
|
|
@@ -16929,6 +16944,7 @@ declare const _default: {
|
|
|
16929
16944
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
16930
16945
|
optionsEndTextIconKey: string;
|
|
16931
16946
|
optionFlagKey: string;
|
|
16947
|
+
optionWarningKey: string;
|
|
16932
16948
|
disabledOptionKey: string;
|
|
16933
16949
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
16934
16950
|
optionTwoLinesKey: string;
|
|
@@ -17159,6 +17175,10 @@ declare const _default: {
|
|
|
17159
17175
|
type: import("vue").PropType<string>;
|
|
17160
17176
|
default: any;
|
|
17161
17177
|
};
|
|
17178
|
+
optionWarningKey: {
|
|
17179
|
+
type: import("vue").PropType<string>;
|
|
17180
|
+
default: any;
|
|
17181
|
+
};
|
|
17162
17182
|
disabledOptionKey: {
|
|
17163
17183
|
type: import("vue").PropType<string>;
|
|
17164
17184
|
default: string;
|
|
@@ -17425,6 +17445,10 @@ declare const _default: {
|
|
|
17425
17445
|
type: import("vue").PropType<string>;
|
|
17426
17446
|
default: any;
|
|
17427
17447
|
};
|
|
17448
|
+
optionWarningKey: {
|
|
17449
|
+
type: import("vue").PropType<string>;
|
|
17450
|
+
default: any;
|
|
17451
|
+
};
|
|
17428
17452
|
disabledOptionKey: {
|
|
17429
17453
|
type: import("vue").PropType<string>;
|
|
17430
17454
|
default: string;
|
|
@@ -17548,6 +17572,7 @@ declare const _default: {
|
|
|
17548
17572
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
17549
17573
|
optionsEndTextIconKey: string;
|
|
17550
17574
|
optionFlagKey: string;
|
|
17575
|
+
optionWarningKey: string;
|
|
17551
17576
|
disabledOptionKey: string;
|
|
17552
17577
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
17553
17578
|
optionTwoLinesKey: string;
|
|
@@ -17615,6 +17640,9 @@ declare const _default: {
|
|
|
17615
17640
|
active: boolean;
|
|
17616
17641
|
disabled: any;
|
|
17617
17642
|
}): any;
|
|
17643
|
+
"option-end"?(_: {
|
|
17644
|
+
option: any;
|
|
17645
|
+
}): any;
|
|
17618
17646
|
};
|
|
17619
17647
|
});
|
|
17620
17648
|
DefaultDropdownTrigger: {
|
|
@@ -18210,13 +18238,31 @@ declare const _default: {
|
|
|
18210
18238
|
type: import("vue").PropType<string>;
|
|
18211
18239
|
default: string;
|
|
18212
18240
|
};
|
|
18241
|
+
iconName: {
|
|
18242
|
+
type: import("vue").PropType<string>;
|
|
18243
|
+
default: string;
|
|
18244
|
+
};
|
|
18245
|
+
iconType: {
|
|
18246
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18247
|
+
default: string;
|
|
18248
|
+
};
|
|
18213
18249
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18214
18250
|
testId: {
|
|
18215
18251
|
type: import("vue").PropType<string>;
|
|
18216
18252
|
default: string;
|
|
18217
18253
|
};
|
|
18254
|
+
iconName: {
|
|
18255
|
+
type: import("vue").PropType<string>;
|
|
18256
|
+
default: string;
|
|
18257
|
+
};
|
|
18258
|
+
iconType: {
|
|
18259
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
18260
|
+
default: string;
|
|
18261
|
+
};
|
|
18218
18262
|
}>>, {
|
|
18219
18263
|
testId: string;
|
|
18264
|
+
iconName: string;
|
|
18265
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
18220
18266
|
}>;
|
|
18221
18267
|
ChipDropdownTrigger: import("vue").DefineComponent<{
|
|
18222
18268
|
label: {
|
|
@@ -20275,6 +20321,7 @@ declare const _default: {
|
|
|
20275
20321
|
nameKey: string;
|
|
20276
20322
|
imageKey: string;
|
|
20277
20323
|
iconKey: string;
|
|
20324
|
+
warningKey: string;
|
|
20278
20325
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20279
20326
|
endIconKey: string;
|
|
20280
20327
|
endTextIconKey: string;
|
|
@@ -20337,6 +20384,10 @@ declare const _default: {
|
|
|
20337
20384
|
type: import("vue").PropType<string>;
|
|
20338
20385
|
default: any;
|
|
20339
20386
|
};
|
|
20387
|
+
warningKey: {
|
|
20388
|
+
type: import("vue").PropType<string>;
|
|
20389
|
+
default: any;
|
|
20390
|
+
};
|
|
20340
20391
|
iconType: {
|
|
20341
20392
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20342
20393
|
default: string;
|
|
@@ -20378,7 +20429,7 @@ declare const _default: {
|
|
|
20378
20429
|
};
|
|
20379
20430
|
}>> & {
|
|
20380
20431
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
20381
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
20432
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
20382
20433
|
$attrs: {
|
|
20383
20434
|
[x: string]: unknown;
|
|
20384
20435
|
};
|
|
@@ -20445,6 +20496,10 @@ declare const _default: {
|
|
|
20445
20496
|
type: import("vue").PropType<string>;
|
|
20446
20497
|
default: any;
|
|
20447
20498
|
};
|
|
20499
|
+
warningKey: {
|
|
20500
|
+
type: import("vue").PropType<string>;
|
|
20501
|
+
default: any;
|
|
20502
|
+
};
|
|
20448
20503
|
iconType: {
|
|
20449
20504
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20450
20505
|
default: string;
|
|
@@ -20502,6 +20557,7 @@ declare const _default: {
|
|
|
20502
20557
|
nameKey: string;
|
|
20503
20558
|
imageKey: string;
|
|
20504
20559
|
iconKey: string;
|
|
20560
|
+
warningKey: string;
|
|
20505
20561
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20506
20562
|
endIconKey: string;
|
|
20507
20563
|
endTextIconKey: string;
|
|
@@ -20584,6 +20640,10 @@ declare const _default: {
|
|
|
20584
20640
|
type: import("vue").PropType<string>;
|
|
20585
20641
|
default: any;
|
|
20586
20642
|
};
|
|
20643
|
+
warningKey: {
|
|
20644
|
+
type: import("vue").PropType<string>;
|
|
20645
|
+
default: any;
|
|
20646
|
+
};
|
|
20587
20647
|
iconType: {
|
|
20588
20648
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20589
20649
|
default: string;
|
|
@@ -20682,6 +20742,10 @@ declare const _default: {
|
|
|
20682
20742
|
type: import("vue").PropType<string>;
|
|
20683
20743
|
default: any;
|
|
20684
20744
|
};
|
|
20745
|
+
warningKey: {
|
|
20746
|
+
type: import("vue").PropType<string>;
|
|
20747
|
+
default: any;
|
|
20748
|
+
};
|
|
20685
20749
|
iconType: {
|
|
20686
20750
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20687
20751
|
default: string;
|
|
@@ -20739,6 +20803,7 @@ declare const _default: {
|
|
|
20739
20803
|
nameKey: string;
|
|
20740
20804
|
imageKey: string;
|
|
20741
20805
|
iconKey: string;
|
|
20806
|
+
warningKey: string;
|
|
20742
20807
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20743
20808
|
endIconKey: string;
|
|
20744
20809
|
endTextIconKey: string;
|
|
@@ -20755,19 +20820,40 @@ declare const _default: {
|
|
|
20755
20820
|
"icon-start"?(_: {}): any;
|
|
20756
20821
|
default?(_: {}): any;
|
|
20757
20822
|
"icon-end"?(_: {}): any;
|
|
20823
|
+
"option-end"?(_: {
|
|
20824
|
+
option: any;
|
|
20825
|
+
}): any;
|
|
20758
20826
|
};
|
|
20759
20827
|
})) | import("vue").DefineComponent<{
|
|
20760
20828
|
testId: {
|
|
20761
20829
|
type: import("vue").PropType<string>;
|
|
20762
20830
|
default: string;
|
|
20763
20831
|
};
|
|
20832
|
+
iconName: {
|
|
20833
|
+
type: import("vue").PropType<string>;
|
|
20834
|
+
default: string;
|
|
20835
|
+
};
|
|
20836
|
+
iconType: {
|
|
20837
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20838
|
+
default: string;
|
|
20839
|
+
};
|
|
20764
20840
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20765
20841
|
testId: {
|
|
20766
20842
|
type: import("vue").PropType<string>;
|
|
20767
20843
|
default: string;
|
|
20768
20844
|
};
|
|
20845
|
+
iconName: {
|
|
20846
|
+
type: import("vue").PropType<string>;
|
|
20847
|
+
default: string;
|
|
20848
|
+
};
|
|
20849
|
+
iconType: {
|
|
20850
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
20851
|
+
default: string;
|
|
20852
|
+
};
|
|
20769
20853
|
}>>, {
|
|
20770
20854
|
testId: string;
|
|
20855
|
+
iconName: string;
|
|
20856
|
+
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20771
20857
|
}> | import("vue").DefineComponent<{
|
|
20772
20858
|
label: {
|
|
20773
20859
|
type: import("vue").PropType<string>;
|
|
@@ -20944,6 +21030,7 @@ declare const _default: {
|
|
|
20944
21030
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
20945
21031
|
optionsEndTextIconKey: string;
|
|
20946
21032
|
optionFlagKey: string;
|
|
21033
|
+
optionWarningKey: string;
|
|
20947
21034
|
disabledOptionKey: string;
|
|
20948
21035
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
20949
21036
|
optionTwoLinesKey: string;
|
|
@@ -21154,6 +21241,10 @@ declare const _default: {
|
|
|
21154
21241
|
type: import("vue").PropType<string>;
|
|
21155
21242
|
default: any;
|
|
21156
21243
|
};
|
|
21244
|
+
optionWarningKey: {
|
|
21245
|
+
type: import("vue").PropType<string>;
|
|
21246
|
+
default: any;
|
|
21247
|
+
};
|
|
21157
21248
|
disabledOptionKey: {
|
|
21158
21249
|
type: import("vue").PropType<string>;
|
|
21159
21250
|
default: string;
|
|
@@ -21215,7 +21306,7 @@ declare const _default: {
|
|
|
21215
21306
|
onUnsavedSelectionUpdate?: (value: unknown[]) => any;
|
|
21216
21307
|
onOpened?: () => any;
|
|
21217
21308
|
onClosed?: () => any;
|
|
21218
|
-
} & 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">;
|
|
21309
|
+
} & 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" | "optionWarningKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation" | "withConditions">;
|
|
21219
21310
|
$attrs: {
|
|
21220
21311
|
[x: string]: unknown;
|
|
21221
21312
|
};
|
|
@@ -21427,6 +21518,10 @@ declare const _default: {
|
|
|
21427
21518
|
type: import("vue").PropType<string>;
|
|
21428
21519
|
default: any;
|
|
21429
21520
|
};
|
|
21521
|
+
optionWarningKey: {
|
|
21522
|
+
type: import("vue").PropType<string>;
|
|
21523
|
+
default: any;
|
|
21524
|
+
};
|
|
21430
21525
|
disabledOptionKey: {
|
|
21431
21526
|
type: import("vue").PropType<string>;
|
|
21432
21527
|
default: string;
|
|
@@ -21550,6 +21645,7 @@ declare const _default: {
|
|
|
21550
21645
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
21551
21646
|
optionsEndTextIconKey: string;
|
|
21552
21647
|
optionFlagKey: string;
|
|
21648
|
+
optionWarningKey: string;
|
|
21553
21649
|
disabledOptionKey: string;
|
|
21554
21650
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
21555
21651
|
optionTwoLinesKey: string;
|
|
@@ -21780,6 +21876,10 @@ declare const _default: {
|
|
|
21780
21876
|
type: import("vue").PropType<string>;
|
|
21781
21877
|
default: any;
|
|
21782
21878
|
};
|
|
21879
|
+
optionWarningKey: {
|
|
21880
|
+
type: import("vue").PropType<string>;
|
|
21881
|
+
default: any;
|
|
21882
|
+
};
|
|
21783
21883
|
disabledOptionKey: {
|
|
21784
21884
|
type: import("vue").PropType<string>;
|
|
21785
21885
|
default: string;
|
|
@@ -22046,6 +22146,10 @@ declare const _default: {
|
|
|
22046
22146
|
type: import("vue").PropType<string>;
|
|
22047
22147
|
default: any;
|
|
22048
22148
|
};
|
|
22149
|
+
optionWarningKey: {
|
|
22150
|
+
type: import("vue").PropType<string>;
|
|
22151
|
+
default: any;
|
|
22152
|
+
};
|
|
22049
22153
|
disabledOptionKey: {
|
|
22050
22154
|
type: import("vue").PropType<string>;
|
|
22051
22155
|
default: string;
|
|
@@ -22169,6 +22273,7 @@ declare const _default: {
|
|
|
22169
22273
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
22170
22274
|
optionsEndTextIconKey: string;
|
|
22171
22275
|
optionFlagKey: string;
|
|
22276
|
+
optionWarningKey: string;
|
|
22172
22277
|
disabledOptionKey: string;
|
|
22173
22278
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
22174
22279
|
optionTwoLinesKey: string;
|
|
@@ -22236,6 +22341,9 @@ declare const _default: {
|
|
|
22236
22341
|
active: boolean;
|
|
22237
22342
|
disabled: any;
|
|
22238
22343
|
}): any;
|
|
22344
|
+
"option-end"?(_: {
|
|
22345
|
+
option: any;
|
|
22346
|
+
}): any;
|
|
22239
22347
|
};
|
|
22240
22348
|
})) | import("vue").DefineComponent<{
|
|
22241
22349
|
label: {
|
|
@@ -23010,6 +23118,7 @@ declare const _default: {
|
|
|
23010
23118
|
nameKey: string;
|
|
23011
23119
|
imageKey: string;
|
|
23012
23120
|
iconKey: string;
|
|
23121
|
+
warningKey: string;
|
|
23013
23122
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23014
23123
|
endIconKey: string;
|
|
23015
23124
|
endTextIconKey: string;
|
|
@@ -23072,6 +23181,10 @@ declare const _default: {
|
|
|
23072
23181
|
type: import("vue").PropType<string>;
|
|
23073
23182
|
default: any;
|
|
23074
23183
|
};
|
|
23184
|
+
warningKey: {
|
|
23185
|
+
type: import("vue").PropType<string>;
|
|
23186
|
+
default: any;
|
|
23187
|
+
};
|
|
23075
23188
|
iconType: {
|
|
23076
23189
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23077
23190
|
default: string;
|
|
@@ -23113,7 +23226,7 @@ declare const _default: {
|
|
|
23113
23226
|
};
|
|
23114
23227
|
}>> & {
|
|
23115
23228
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
23116
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
23229
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "warningKey" | "iconType" | "endIconKey" | "endTextIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown" | "isMulti">;
|
|
23117
23230
|
$attrs: {
|
|
23118
23231
|
[x: string]: unknown;
|
|
23119
23232
|
};
|
|
@@ -23180,6 +23293,10 @@ declare const _default: {
|
|
|
23180
23293
|
type: import("vue").PropType<string>;
|
|
23181
23294
|
default: any;
|
|
23182
23295
|
};
|
|
23296
|
+
warningKey: {
|
|
23297
|
+
type: import("vue").PropType<string>;
|
|
23298
|
+
default: any;
|
|
23299
|
+
};
|
|
23183
23300
|
iconType: {
|
|
23184
23301
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23185
23302
|
default: string;
|
|
@@ -23237,6 +23354,7 @@ declare const _default: {
|
|
|
23237
23354
|
nameKey: string;
|
|
23238
23355
|
imageKey: string;
|
|
23239
23356
|
iconKey: string;
|
|
23357
|
+
warningKey: string;
|
|
23240
23358
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23241
23359
|
endIconKey: string;
|
|
23242
23360
|
endTextIconKey: string;
|
|
@@ -23319,6 +23437,10 @@ declare const _default: {
|
|
|
23319
23437
|
type: import("vue").PropType<string>;
|
|
23320
23438
|
default: any;
|
|
23321
23439
|
};
|
|
23440
|
+
warningKey: {
|
|
23441
|
+
type: import("vue").PropType<string>;
|
|
23442
|
+
default: any;
|
|
23443
|
+
};
|
|
23322
23444
|
iconType: {
|
|
23323
23445
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23324
23446
|
default: string;
|
|
@@ -23417,6 +23539,10 @@ declare const _default: {
|
|
|
23417
23539
|
type: import("vue").PropType<string>;
|
|
23418
23540
|
default: any;
|
|
23419
23541
|
};
|
|
23542
|
+
warningKey: {
|
|
23543
|
+
type: import("vue").PropType<string>;
|
|
23544
|
+
default: any;
|
|
23545
|
+
};
|
|
23420
23546
|
iconType: {
|
|
23421
23547
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
23422
23548
|
default: string;
|
|
@@ -23474,6 +23600,7 @@ declare const _default: {
|
|
|
23474
23600
|
nameKey: string;
|
|
23475
23601
|
imageKey: string;
|
|
23476
23602
|
iconKey: string;
|
|
23603
|
+
warningKey: string;
|
|
23477
23604
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
23478
23605
|
endIconKey: string;
|
|
23479
23606
|
endTextIconKey: string;
|
|
@@ -23490,6 +23617,9 @@ declare const _default: {
|
|
|
23490
23617
|
"icon-start"?(_: {}): any;
|
|
23491
23618
|
default?(_: {}): any;
|
|
23492
23619
|
"icon-end"?(_: {}): any;
|
|
23620
|
+
"option-end"?(_: {
|
|
23621
|
+
option: any;
|
|
23622
|
+
}): any;
|
|
23493
23623
|
};
|
|
23494
23624
|
});
|
|
23495
23625
|
TreeDropdown: {
|
|
@@ -24278,7 +24408,7 @@ declare const _default: {
|
|
|
24278
24408
|
testId: string;
|
|
24279
24409
|
variant: "text" | "contained" | "outlined";
|
|
24280
24410
|
disabled: boolean;
|
|
24281
|
-
color: "
|
|
24411
|
+
color: import("./components/button/common/consts").ButtonColor;
|
|
24282
24412
|
size: "small" | "medium" | "large" | "extraLarge";
|
|
24283
24413
|
content: string;
|
|
24284
24414
|
loading: boolean;
|
|
@@ -24300,7 +24430,7 @@ declare const _default: {
|
|
|
24300
24430
|
default: boolean;
|
|
24301
24431
|
};
|
|
24302
24432
|
color: {
|
|
24303
|
-
type: import("vue").PropType<"
|
|
24433
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
24304
24434
|
default: string;
|
|
24305
24435
|
};
|
|
24306
24436
|
size: {
|
|
@@ -24359,7 +24489,7 @@ declare const _default: {
|
|
|
24359
24489
|
default: boolean;
|
|
24360
24490
|
};
|
|
24361
24491
|
color: {
|
|
24362
|
-
type: import("vue").PropType<"
|
|
24492
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
24363
24493
|
default: string;
|
|
24364
24494
|
};
|
|
24365
24495
|
size: {
|
|
@@ -24394,7 +24524,7 @@ declare const _default: {
|
|
|
24394
24524
|
testId: string;
|
|
24395
24525
|
variant: "text" | "contained" | "outlined";
|
|
24396
24526
|
disabled: boolean;
|
|
24397
|
-
color: "
|
|
24527
|
+
color: import("./components/button/common/consts").ButtonColor;
|
|
24398
24528
|
size: "small" | "medium" | "large" | "extraLarge";
|
|
24399
24529
|
content: string;
|
|
24400
24530
|
loading: boolean;
|
|
@@ -24436,7 +24566,7 @@ declare const _default: {
|
|
|
24436
24566
|
default: boolean;
|
|
24437
24567
|
};
|
|
24438
24568
|
color: {
|
|
24439
|
-
type: import("vue").PropType<"
|
|
24569
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
24440
24570
|
default: string;
|
|
24441
24571
|
};
|
|
24442
24572
|
size: {
|
|
@@ -24485,7 +24615,7 @@ declare const _default: {
|
|
|
24485
24615
|
default: boolean;
|
|
24486
24616
|
};
|
|
24487
24617
|
color: {
|
|
24488
|
-
type: import("vue").PropType<"
|
|
24618
|
+
type: import("vue").PropType<import("./components/button/common/consts").ButtonColor>;
|
|
24489
24619
|
default: string;
|
|
24490
24620
|
};
|
|
24491
24621
|
size: {
|
|
@@ -24520,7 +24650,7 @@ declare const _default: {
|
|
|
24520
24650
|
testId: string;
|
|
24521
24651
|
variant: "text" | "contained" | "outlined";
|
|
24522
24652
|
disabled: boolean;
|
|
24523
|
-
color: "
|
|
24653
|
+
color: import("./components/button/common/consts").ButtonColor;
|
|
24524
24654
|
size: "small" | "medium" | "large" | "extraLarge";
|
|
24525
24655
|
content: string;
|
|
24526
24656
|
loading: boolean;
|