@ironsource/shared-ui 2.1.7-test.1 → 2.1.7-test.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Autocomplete.vue_vue_type_style_index_0_scoped_e361f9fd_lang.css +1 -0
- package/Chart.vue_vue_type_style_index_0_scoped_f06a4764_lang.css +1 -0
- package/ChartHeader.vue_vue_type_style_index_0_scoped_88d4532f_lang.css +1 -0
- package/ChartLegend.vue_vue_type_style_index_0_scoped_efc608f9_lang.css +1 -0
- package/ChartLoader.vue_vue_type_style_index_0_scoped_142c444a_lang.css +1 -0
- package/ChartTooltip.vue_vue_type_style_index_0_scoped_ec636f18_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_706b324e_lang.css +1 -0
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_0ce71f73_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_98819e5a_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_00ccab6b_lang.css +1 -0
- package/EditableV4.vue_vue_type_style_index_0_scoped_e0c047b4_lang.css +1 -0
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_47877984_lang.css +1 -0
- package/IconV4.vue_vue_type_style_index_0_scoped_dc433d48_lang.css +1 -0
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_cc2adbf5_lang.css +1 -0
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_bd6145ce_lang.css +1 -0
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_82ba0e12_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_77509f61_lang.css +1 -0
- package/Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_0_scoped_c54cd089_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_1_lang.css +1 -0
- package/README.md +1 -1
- package/SortableItem.vue_vue_type_style_index_0_scoped_9dd4d372_lang.css +1 -0
- package/SortableItemLabel.vue_vue_type_style_index_0_scoped_1386ae20_lang.css +1 -0
- package/SortableList.vue_vue_type_style_index_0_scoped_e9cd63b8_lang.css +1 -0
- package/TabsV4.vue_vue_type_style_index_0_scoped_f9433b11_lang.css +1 -0
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_4114ef89_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_4d9bf5b2_lang.css +1 -0
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_66bd448a_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_dbd80d49_lang.css +1 -0
- package/components/ThemeWrapper/ThemeWrapper.vue.js +2 -2
- package/components/ThemeWrapper/ThemeWrapper.vue2.js +5 -5
- package/components/appHeader/AppHeader.vue.d.ts +1 -1
- package/components/appHeader/index.d.ts +9 -9
- package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
- package/components/autocomplete/Autocomplete.vue.js +2 -2
- package/components/autocomplete/Autocomplete.vue2.js +57 -45
- package/components/autocomplete/index.d.ts +20 -1
- package/components/chart/Chart.vue.js +7 -0
- package/components/chart/Chart.vue2.js +281 -0
- package/components/chart/ChartHeader.vue.js +7 -0
- package/components/chart/ChartHeader.vue2.js +51 -0
- package/components/chart/ChartLegend.vue.js +7 -0
- package/components/chart/ChartLegend.vue2.js +65 -0
- package/components/chart/ChartLoader.vue.js +25 -0
- package/components/chart/ChartLoader.vue2.js +0 -0
- package/components/chart/ChartTooltip.vue.js +7 -0
- package/components/chart/ChartTooltip.vue2.js +81 -0
- package/components/chart/composables/useChartValues.js +32 -0
- package/components/chart/composables/useTooltipPosition.js +22 -0
- package/components/chart/consts.js +21 -0
- package/components/chart/index.js +6 -0
- package/components/chart/plugins/HoverVerticalLine.js +12 -0
- package/components/chart/types.js +4 -0
- package/components/chart/utils/formatNumber.js +11 -0
- package/components/chart/utils/utils.js +12 -0
- package/components/dropdown/common/Dropdown.common.js +89 -89
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +1 -0
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +32 -29
- package/components/dropdown/v4/DropdownV4.vue.d.ts +39 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +256 -224
- package/components/dropdown/v4/OptionV4.vue.d.ts +36 -2
- package/components/dropdown/v4/OptionV4.vue.js +2 -2
- package/components/dropdown/v4/OptionV4.vue2.js +99 -59
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +21 -16
- package/components/dropdown/v4/TreeDropdown.vue.js +3 -3
- package/components/dropdown/v4/TreeDropdown.vue2.js +170 -74
- package/components/dropdown/v4/dropdownStoryArgs.d.ts +14 -0
- package/components/dropdown/v4/index.d.ts +528 -83
- package/components/icon/v4/IconV4.vue.d.ts +5 -0
- package/components/icon/v4/IconV4.vue.js +4 -4
- package/components/icon/v4/IconV4.vue2.js +29 -26
- package/components/icon/v4/index.d.ts +20 -1
- package/components/includeExclude/IncludeExclude.vue.js +4 -4
- package/components/includeExclude/IncludeExclude.vue2.js +2 -2
- package/components/includeExclude/IncludeExcludeDragDrop.vue.js +4 -4
- package/components/includeExclude/IncludeExcludeDragDrop.vue2.js +2 -2
- package/components/input/v4/TextField.vue.d.ts +6 -1
- package/components/input/v4/TextField.vue.js +3 -3
- package/components/input/v4/TextField.vue2.js +95 -90
- package/components/input/v4/index.d.ts +20 -1
- package/components/popover/common/Popover.common.d.ts +6 -0
- package/components/popover/common/Popover.common.js +17 -0
- package/components/popover/v3/Popover.vue.js +8 -0
- package/components/popover/{Popover.vue2.js → v3/Popover.vue2.js} +1 -1
- package/components/popover/v4/PopoverV4.vue.d.ts +73 -0
- package/components/popover/v4/PopoverV4.vue.js +7 -0
- package/components/popover/v4/PopoverV4.vue2.js +54 -0
- package/components/popover/v4/index.d.ts +209 -0
- package/components/popover/v4/index.js +6 -0
- package/components/shared/FieldMaxLength.vue.js +3 -3
- package/components/shared/FieldMaxLength.vue2.js +2 -2
- package/components/shared/commonTypes.d.ts +2 -0
- package/components/sortableList/SortableItem.vue.js +7 -0
- package/components/sortableList/SortableItem.vue2.js +140 -0
- package/components/sortableList/SortableItemLabel.vue.js +7 -0
- package/components/sortableList/SortableItemLabel.vue2.js +60 -0
- package/components/sortableList/SortableList.vue.d.ts +25 -0
- package/components/sortableList/SortableList.vue.js +7 -0
- package/components/sortableList/SortableList.vue2.js +160 -0
- package/components/sortableList/composables/useHoverEffect.js +19 -0
- package/components/sortableList/consts.js +4 -0
- package/components/sortableList/index.d.ts +88 -2
- package/components/sortableList/index.js +6 -0
- package/components/table/v3/Table.vue.d.ts +2 -2
- package/components/table/v3/index.d.ts +39 -39
- package/components/table/v4/DataGrid.vue.d.ts +6 -2
- package/components/table/v4/DataGrid.vue.js +4 -4
- package/components/table/v4/DataGrid.vue2.js +131 -122
- package/components/table/v4/DataGridRowsCounter.vue.d.ts +5 -0
- package/components/table/v4/DataGridRowsCounter.vue.js +3 -3
- package/components/table/v4/DataGridRowsCounter.vue2.js +29 -22
- package/components/table/v4/MultipleDataGrid.vue.d.ts +16 -3
- package/components/table/v4/MultipleDataGrid.vue.js +4 -4
- package/components/table/v4/MultipleDataGrid.vue2.js +114 -66
- package/components/table/v4/index.d.ts +101 -75
- package/components/table-cells/common/Editable.common.js +37 -26
- package/components/table-cells/common/EditableContext.d.ts +1 -0
- package/components/table-cells/v4/EditableV4.vue.d.ts +5 -0
- package/components/table-cells/v4/EditableV4.vue.js +5 -5
- package/components/table-cells/v4/EditableV4.vue2.js +18 -17
- package/components/table-cells/v4/index.d.ts +20 -1
- package/components/tabs/v4/TabsV4.vue.js +4 -4
- package/components/tabs/v4/TabsV4.vue2.js +37 -40
- package/components/textArea/v4/TextAreaV4.vue.d.ts +6 -1
- package/components/textArea/v4/TextAreaV4.vue.js +3 -3
- package/components/textArea/v4/TextAreaV4.vue2.js +18 -12
- package/components/textArea/v4/index.d.ts +9 -0
- package/design-foundation.stories/icons/iconsData.d.ts +6 -2
- package/index.d.ts +9608 -7356
- package/index.js +136 -131
- package/mocks/options.d.ts +12 -0
- package/package.json +15 -3
- package/testids/index.d.ts +5 -0
- package/testids/index.js +27 -25
- package/utils/search.js +4 -0
- package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_63aaf3be_lang.css +0 -1
- package/DataGridRowsCounter.vue_vue_type_style_index_0_scoped_06751538_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_0345d6b1_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_7af4f288_lang.css +0 -1
- package/EditableV4.vue_vue_type_style_index_0_scoped_31bfb722_lang.css +0 -1
- package/FieldMaxLength.vue_vue_type_style_index_0_scoped_f3c4001a_lang.css +0 -1
- package/IconV4.vue_vue_type_style_index_0_scoped_1eea7671_lang.css +0 -1
- package/IncludeExclude.vue_vue_type_style_index_0_scoped_fb054d88_lang.css +0 -1
- package/IncludeExcludeDragDrop.vue_vue_type_style_index_0_scoped_5764fd61_lang.css +0 -1
- package/MultipleDataGrid.vue_vue_type_style_index_0_scoped_260b9cdc_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_9db0f796_lang.css +0 -1
- package/Popover.vue_vue_type_style_index_0_scoped_25eb53db_lang.css +0 -1
- package/TabsV4.vue_vue_type_style_index_0_scoped_bab40cfe_lang.css +0 -1
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_f3b2c01d_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +0 -1
- package/ThemeWrapper.vue_vue_type_style_index_0_scoped_b62ee695_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_142eab98_lang.css +0 -1
- package/components/popover/Popover.vue.js +0 -8
- /package/components/popover/{Popover.vue.d.ts → v3/Popover.vue.d.ts} +0 -0
- /package/components/popover/{index.d.ts → v3/index.d.ts} +0 -0
- /package/components/popover/{index.js → v3/index.js} +0 -0
|
@@ -552,6 +552,7 @@ declare const DropdownTypes: () => (({
|
|
|
552
552
|
$slots: {
|
|
553
553
|
image?(_: {}): any;
|
|
554
554
|
"icon-start"?(_: {}): any;
|
|
555
|
+
"end-icon"?(_: {}): any;
|
|
555
556
|
};
|
|
556
557
|
})) | ({
|
|
557
558
|
new (...args: any[]): {
|
|
@@ -1039,6 +1040,8 @@ declare const DropdownTypes: () => (({
|
|
|
1039
1040
|
disabled: boolean;
|
|
1040
1041
|
active: boolean;
|
|
1041
1042
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1043
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1044
|
+
optionTwoLinesKey: string;
|
|
1042
1045
|
isIndeterminate: boolean;
|
|
1043
1046
|
subtitle: string;
|
|
1044
1047
|
selectAllOption: boolean;
|
|
@@ -1048,6 +1051,10 @@ declare const DropdownTypes: () => (({
|
|
|
1048
1051
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1049
1052
|
endIconKey: string;
|
|
1050
1053
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
1054
|
+
treeMainOption: boolean;
|
|
1055
|
+
treeMainOptionExpanded: boolean;
|
|
1056
|
+
stopOptionClickEventPropagation: boolean;
|
|
1057
|
+
treeChildShown: boolean;
|
|
1051
1058
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1052
1059
|
option: {
|
|
1053
1060
|
type: import("vue").PropType<unknown>;
|
|
@@ -1065,6 +1072,14 @@ declare const DropdownTypes: () => (({
|
|
|
1065
1072
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1066
1073
|
default: string;
|
|
1067
1074
|
};
|
|
1075
|
+
optionTwoLinesVariant: {
|
|
1076
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1077
|
+
default: any;
|
|
1078
|
+
};
|
|
1079
|
+
optionTwoLinesKey: {
|
|
1080
|
+
type: import("vue").PropType<string>;
|
|
1081
|
+
default: any;
|
|
1082
|
+
};
|
|
1068
1083
|
isIndeterminate: {
|
|
1069
1084
|
type: import("vue").PropType<boolean>;
|
|
1070
1085
|
default: boolean;
|
|
@@ -1101,10 +1116,28 @@ declare const DropdownTypes: () => (({
|
|
|
1101
1116
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
1102
1117
|
default: string;
|
|
1103
1118
|
};
|
|
1119
|
+
treeMainOption: {
|
|
1120
|
+
type: import("vue").PropType<boolean>;
|
|
1121
|
+
default: boolean;
|
|
1122
|
+
};
|
|
1123
|
+
treeMainOptionExpanded: {
|
|
1124
|
+
type: import("vue").PropType<boolean>;
|
|
1125
|
+
default: boolean;
|
|
1126
|
+
};
|
|
1127
|
+
stopOptionClickEventPropagation: {
|
|
1128
|
+
type: import("vue").PropType<boolean>;
|
|
1129
|
+
default: boolean;
|
|
1130
|
+
};
|
|
1131
|
+
treeChildShown: {
|
|
1132
|
+
type: import("vue").PropType<boolean>;
|
|
1133
|
+
default: boolean;
|
|
1134
|
+
};
|
|
1104
1135
|
selectedProp: {
|
|
1105
1136
|
type: import("vue").PropType<boolean>;
|
|
1106
1137
|
};
|
|
1107
|
-
}>> &
|
|
1138
|
+
}>> & {
|
|
1139
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
1140
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
1108
1141
|
$attrs: {
|
|
1109
1142
|
[x: string]: unknown;
|
|
1110
1143
|
};
|
|
@@ -1116,7 +1149,7 @@ declare const DropdownTypes: () => (({
|
|
|
1116
1149
|
}>;
|
|
1117
1150
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1118
1151
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1119
|
-
$emit: (event:
|
|
1152
|
+
$emit: (event: "toggleTreeCollapse", option: unknown) => void;
|
|
1120
1153
|
$el: any;
|
|
1121
1154
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1122
1155
|
option: {
|
|
@@ -1135,6 +1168,14 @@ declare const DropdownTypes: () => (({
|
|
|
1135
1168
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1136
1169
|
default: string;
|
|
1137
1170
|
};
|
|
1171
|
+
optionTwoLinesVariant: {
|
|
1172
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1173
|
+
default: any;
|
|
1174
|
+
};
|
|
1175
|
+
optionTwoLinesKey: {
|
|
1176
|
+
type: import("vue").PropType<string>;
|
|
1177
|
+
default: any;
|
|
1178
|
+
};
|
|
1138
1179
|
isIndeterminate: {
|
|
1139
1180
|
type: import("vue").PropType<boolean>;
|
|
1140
1181
|
default: boolean;
|
|
@@ -1171,14 +1212,36 @@ declare const DropdownTypes: () => (({
|
|
|
1171
1212
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
1172
1213
|
default: string;
|
|
1173
1214
|
};
|
|
1215
|
+
treeMainOption: {
|
|
1216
|
+
type: import("vue").PropType<boolean>;
|
|
1217
|
+
default: boolean;
|
|
1218
|
+
};
|
|
1219
|
+
treeMainOptionExpanded: {
|
|
1220
|
+
type: import("vue").PropType<boolean>;
|
|
1221
|
+
default: boolean;
|
|
1222
|
+
};
|
|
1223
|
+
stopOptionClickEventPropagation: {
|
|
1224
|
+
type: import("vue").PropType<boolean>;
|
|
1225
|
+
default: boolean;
|
|
1226
|
+
};
|
|
1227
|
+
treeChildShown: {
|
|
1228
|
+
type: import("vue").PropType<boolean>;
|
|
1229
|
+
default: boolean;
|
|
1230
|
+
};
|
|
1174
1231
|
selectedProp: {
|
|
1175
1232
|
type: import("vue").PropType<boolean>;
|
|
1176
1233
|
};
|
|
1177
|
-
}
|
|
1234
|
+
}>> & {
|
|
1235
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
1236
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1237
|
+
toggleTreeCollapse: (option: unknown) => void;
|
|
1238
|
+
}, string, {
|
|
1178
1239
|
option: any;
|
|
1179
1240
|
disabled: boolean;
|
|
1180
1241
|
active: boolean;
|
|
1181
1242
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1243
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1244
|
+
optionTwoLinesKey: string;
|
|
1182
1245
|
isIndeterminate: boolean;
|
|
1183
1246
|
subtitle: string;
|
|
1184
1247
|
selectAllOption: boolean;
|
|
@@ -1188,6 +1251,10 @@ declare const DropdownTypes: () => (({
|
|
|
1188
1251
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1189
1252
|
endIconKey: string;
|
|
1190
1253
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
1254
|
+
treeMainOption: boolean;
|
|
1255
|
+
treeMainOptionExpanded: boolean;
|
|
1256
|
+
stopOptionClickEventPropagation: boolean;
|
|
1257
|
+
treeChildShown: boolean;
|
|
1191
1258
|
}, {}, string> & {
|
|
1192
1259
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1193
1260
|
created?: (() => void) | (() => void)[];
|
|
@@ -1225,6 +1292,14 @@ declare const DropdownTypes: () => (({
|
|
|
1225
1292
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1226
1293
|
default: string;
|
|
1227
1294
|
};
|
|
1295
|
+
optionTwoLinesVariant: {
|
|
1296
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1297
|
+
default: any;
|
|
1298
|
+
};
|
|
1299
|
+
optionTwoLinesKey: {
|
|
1300
|
+
type: import("vue").PropType<string>;
|
|
1301
|
+
default: any;
|
|
1302
|
+
};
|
|
1228
1303
|
isIndeterminate: {
|
|
1229
1304
|
type: import("vue").PropType<boolean>;
|
|
1230
1305
|
default: boolean;
|
|
@@ -1261,10 +1336,28 @@ declare const DropdownTypes: () => (({
|
|
|
1261
1336
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
1262
1337
|
default: string;
|
|
1263
1338
|
};
|
|
1339
|
+
treeMainOption: {
|
|
1340
|
+
type: import("vue").PropType<boolean>;
|
|
1341
|
+
default: boolean;
|
|
1342
|
+
};
|
|
1343
|
+
treeMainOptionExpanded: {
|
|
1344
|
+
type: import("vue").PropType<boolean>;
|
|
1345
|
+
default: boolean;
|
|
1346
|
+
};
|
|
1347
|
+
stopOptionClickEventPropagation: {
|
|
1348
|
+
type: import("vue").PropType<boolean>;
|
|
1349
|
+
default: boolean;
|
|
1350
|
+
};
|
|
1351
|
+
treeChildShown: {
|
|
1352
|
+
type: import("vue").PropType<boolean>;
|
|
1353
|
+
default: boolean;
|
|
1354
|
+
};
|
|
1264
1355
|
selectedProp: {
|
|
1265
1356
|
type: import("vue").PropType<boolean>;
|
|
1266
1357
|
};
|
|
1267
|
-
}>> &
|
|
1358
|
+
}>> & {
|
|
1359
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
1360
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
1268
1361
|
__isFragment?: never;
|
|
1269
1362
|
__isTeleport?: never;
|
|
1270
1363
|
__isSuspense?: never;
|
|
@@ -1285,6 +1378,14 @@ declare const DropdownTypes: () => (({
|
|
|
1285
1378
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1286
1379
|
default: string;
|
|
1287
1380
|
};
|
|
1381
|
+
optionTwoLinesVariant: {
|
|
1382
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1383
|
+
default: any;
|
|
1384
|
+
};
|
|
1385
|
+
optionTwoLinesKey: {
|
|
1386
|
+
type: import("vue").PropType<string>;
|
|
1387
|
+
default: any;
|
|
1388
|
+
};
|
|
1288
1389
|
isIndeterminate: {
|
|
1289
1390
|
type: import("vue").PropType<boolean>;
|
|
1290
1391
|
default: boolean;
|
|
@@ -1321,14 +1422,36 @@ declare const DropdownTypes: () => (({
|
|
|
1321
1422
|
type: import("vue").PropType<"auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end">;
|
|
1322
1423
|
default: string;
|
|
1323
1424
|
};
|
|
1425
|
+
treeMainOption: {
|
|
1426
|
+
type: import("vue").PropType<boolean>;
|
|
1427
|
+
default: boolean;
|
|
1428
|
+
};
|
|
1429
|
+
treeMainOptionExpanded: {
|
|
1430
|
+
type: import("vue").PropType<boolean>;
|
|
1431
|
+
default: boolean;
|
|
1432
|
+
};
|
|
1433
|
+
stopOptionClickEventPropagation: {
|
|
1434
|
+
type: import("vue").PropType<boolean>;
|
|
1435
|
+
default: boolean;
|
|
1436
|
+
};
|
|
1437
|
+
treeChildShown: {
|
|
1438
|
+
type: import("vue").PropType<boolean>;
|
|
1439
|
+
default: boolean;
|
|
1440
|
+
};
|
|
1324
1441
|
selectedProp: {
|
|
1325
1442
|
type: import("vue").PropType<boolean>;
|
|
1326
1443
|
};
|
|
1327
|
-
}
|
|
1444
|
+
}>> & {
|
|
1445
|
+
onToggleTreeCollapse?: (option: unknown) => any;
|
|
1446
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1447
|
+
toggleTreeCollapse: (option: unknown) => void;
|
|
1448
|
+
}, string, {
|
|
1328
1449
|
option: any;
|
|
1329
1450
|
disabled: boolean;
|
|
1330
1451
|
active: boolean;
|
|
1331
1452
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1453
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1454
|
+
optionTwoLinesKey: string;
|
|
1332
1455
|
isIndeterminate: boolean;
|
|
1333
1456
|
subtitle: string;
|
|
1334
1457
|
selectAllOption: boolean;
|
|
@@ -1338,6 +1461,10 @@ declare const DropdownTypes: () => (({
|
|
|
1338
1461
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1339
1462
|
endIconKey: string;
|
|
1340
1463
|
toolTipPlacement: "auto" | "left" | "right" | "bottom" | "top" | "auto-start" | "auto-end" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end";
|
|
1464
|
+
treeMainOption: boolean;
|
|
1465
|
+
treeMainOptionExpanded: boolean;
|
|
1466
|
+
stopOptionClickEventPropagation: boolean;
|
|
1467
|
+
treeChildShown: boolean;
|
|
1341
1468
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1342
1469
|
$slots: {
|
|
1343
1470
|
image?(_: {}): any;
|
|
@@ -1503,6 +1630,8 @@ declare const DropdownTypes: () => (({
|
|
|
1503
1630
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1504
1631
|
valueToCopy: string;
|
|
1505
1632
|
disabledOptionKey: string;
|
|
1633
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1634
|
+
optionTwoLinesKey: string;
|
|
1506
1635
|
fullWidth: boolean;
|
|
1507
1636
|
optionsListWidth: string;
|
|
1508
1637
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -1691,6 +1820,14 @@ declare const DropdownTypes: () => (({
|
|
|
1691
1820
|
type: import("vue").PropType<string>;
|
|
1692
1821
|
default: string;
|
|
1693
1822
|
};
|
|
1823
|
+
optionTwoLinesVariant: {
|
|
1824
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1825
|
+
default: any;
|
|
1826
|
+
};
|
|
1827
|
+
optionTwoLinesKey: {
|
|
1828
|
+
type: import("vue").PropType<string>;
|
|
1829
|
+
default: any;
|
|
1830
|
+
};
|
|
1694
1831
|
fullWidth: {
|
|
1695
1832
|
type: import("vue").PropType<boolean>;
|
|
1696
1833
|
default: boolean;
|
|
@@ -1718,9 +1855,10 @@ declare const DropdownTypes: () => (({
|
|
|
1718
1855
|
onSelectAll?: () => any;
|
|
1719
1856
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
1720
1857
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
1858
|
+
onOnsearch?: (value: string) => any;
|
|
1721
1859
|
onOpened?: () => any;
|
|
1722
1860
|
onClosed?: () => any;
|
|
1723
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
1861
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "disabled" | "size" | "flip" | "mandatory" | "testId" | "container" | "placement" | "distance" | "popperClass" | "selected" | "onClear" | "modelValue" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "skidding" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
1724
1862
|
$attrs: {
|
|
1725
1863
|
[x: string]: unknown;
|
|
1726
1864
|
};
|
|
@@ -1732,7 +1870,7 @@ declare const DropdownTypes: () => (({
|
|
|
1732
1870
|
}>;
|
|
1733
1871
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1734
1872
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1735
|
-
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
1873
|
+
$emit: ((event: "clear") => void) & ((event: "copyToClipboard") => void) & ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "onsearch", value: string) => void) & ((event: "selectAll") => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
1736
1874
|
$el: any;
|
|
1737
1875
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1738
1876
|
theme: {
|
|
@@ -1917,6 +2055,14 @@ declare const DropdownTypes: () => (({
|
|
|
1917
2055
|
type: import("vue").PropType<string>;
|
|
1918
2056
|
default: string;
|
|
1919
2057
|
};
|
|
2058
|
+
optionTwoLinesVariant: {
|
|
2059
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2060
|
+
default: any;
|
|
2061
|
+
};
|
|
2062
|
+
optionTwoLinesKey: {
|
|
2063
|
+
type: import("vue").PropType<string>;
|
|
2064
|
+
default: any;
|
|
2065
|
+
};
|
|
1920
2066
|
fullWidth: {
|
|
1921
2067
|
type: import("vue").PropType<boolean>;
|
|
1922
2068
|
default: boolean;
|
|
@@ -1944,6 +2090,7 @@ declare const DropdownTypes: () => (({
|
|
|
1944
2090
|
onSelectAll?: () => any;
|
|
1945
2091
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
1946
2092
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2093
|
+
onOnsearch?: (value: string) => any;
|
|
1947
2094
|
onOpened?: () => any;
|
|
1948
2095
|
onClosed?: () => any;
|
|
1949
2096
|
}, {
|
|
@@ -1958,6 +2105,7 @@ declare const DropdownTypes: () => (({
|
|
|
1958
2105
|
selectAll: () => void;
|
|
1959
2106
|
clear: () => void;
|
|
1960
2107
|
copyToClipboard: () => void;
|
|
2108
|
+
onsearch: (value: string) => void;
|
|
1961
2109
|
}, string, {
|
|
1962
2110
|
theme: string;
|
|
1963
2111
|
disabled: boolean;
|
|
@@ -2001,6 +2149,8 @@ declare const DropdownTypes: () => (({
|
|
|
2001
2149
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2002
2150
|
valueToCopy: string;
|
|
2003
2151
|
disabledOptionKey: string;
|
|
2152
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2153
|
+
optionTwoLinesKey: string;
|
|
2004
2154
|
fullWidth: boolean;
|
|
2005
2155
|
optionsListWidth: string;
|
|
2006
2156
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -2209,6 +2359,14 @@ declare const DropdownTypes: () => (({
|
|
|
2209
2359
|
type: import("vue").PropType<string>;
|
|
2210
2360
|
default: string;
|
|
2211
2361
|
};
|
|
2362
|
+
optionTwoLinesVariant: {
|
|
2363
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2364
|
+
default: any;
|
|
2365
|
+
};
|
|
2366
|
+
optionTwoLinesKey: {
|
|
2367
|
+
type: import("vue").PropType<string>;
|
|
2368
|
+
default: any;
|
|
2369
|
+
};
|
|
2212
2370
|
fullWidth: {
|
|
2213
2371
|
type: import("vue").PropType<boolean>;
|
|
2214
2372
|
default: boolean;
|
|
@@ -2236,6 +2394,7 @@ declare const DropdownTypes: () => (({
|
|
|
2236
2394
|
onSelectAll?: () => any;
|
|
2237
2395
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
2238
2396
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2397
|
+
onOnsearch?: (value: string) => any;
|
|
2239
2398
|
onOpened?: () => any;
|
|
2240
2399
|
onClosed?: () => any;
|
|
2241
2400
|
} & import("vue").ShallowUnwrapRef<{
|
|
@@ -2428,6 +2587,14 @@ declare const DropdownTypes: () => (({
|
|
|
2428
2587
|
type: import("vue").PropType<string>;
|
|
2429
2588
|
default: string;
|
|
2430
2589
|
};
|
|
2590
|
+
optionTwoLinesVariant: {
|
|
2591
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2592
|
+
default: any;
|
|
2593
|
+
};
|
|
2594
|
+
optionTwoLinesKey: {
|
|
2595
|
+
type: import("vue").PropType<string>;
|
|
2596
|
+
default: any;
|
|
2597
|
+
};
|
|
2431
2598
|
fullWidth: {
|
|
2432
2599
|
type: import("vue").PropType<boolean>;
|
|
2433
2600
|
default: boolean;
|
|
@@ -2455,6 +2622,7 @@ declare const DropdownTypes: () => (({
|
|
|
2455
2622
|
onSelectAll?: () => any;
|
|
2456
2623
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
2457
2624
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2625
|
+
onOnsearch?: (value: string) => any;
|
|
2458
2626
|
onOpened?: () => any;
|
|
2459
2627
|
onClosed?: () => any;
|
|
2460
2628
|
}, {
|
|
@@ -2469,6 +2637,7 @@ declare const DropdownTypes: () => (({
|
|
|
2469
2637
|
selectAll: () => void;
|
|
2470
2638
|
clear: () => void;
|
|
2471
2639
|
copyToClipboard: () => void;
|
|
2640
|
+
onsearch: (value: string) => void;
|
|
2472
2641
|
}, string, {
|
|
2473
2642
|
theme: string;
|
|
2474
2643
|
disabled: boolean;
|
|
@@ -2512,6 +2681,8 @@ declare const DropdownTypes: () => (({
|
|
|
2512
2681
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2513
2682
|
valueToCopy: string;
|
|
2514
2683
|
disabledOptionKey: string;
|
|
2684
|
+
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2685
|
+
optionTwoLinesKey: string;
|
|
2515
2686
|
fullWidth: boolean;
|
|
2516
2687
|
optionsListWidth: string;
|
|
2517
2688
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
@@ -2527,7 +2698,34 @@ declare const DropdownTypes: () => (({
|
|
|
2527
2698
|
label: any;
|
|
2528
2699
|
onClick: () => void;
|
|
2529
2700
|
};
|
|
2701
|
+
defaultTriggerProps: {
|
|
2702
|
+
placeholder: string;
|
|
2703
|
+
open: boolean;
|
|
2704
|
+
label: string;
|
|
2705
|
+
showFeedbackIcon: boolean;
|
|
2706
|
+
mandatory: boolean;
|
|
2707
|
+
testId: string;
|
|
2708
|
+
multi: boolean;
|
|
2709
|
+
disabled: boolean;
|
|
2710
|
+
selectedOption: unknown;
|
|
2711
|
+
displayValue: (option: unknown) => string;
|
|
2712
|
+
options: unknown[];
|
|
2713
|
+
optionNameKey: string;
|
|
2714
|
+
optionImageKey: string;
|
|
2715
|
+
optionIconKey: string;
|
|
2716
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2717
|
+
optionAndIconKey: string;
|
|
2718
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2719
|
+
feedbackVariant: "success" | "warning" | "error";
|
|
2720
|
+
valueToCopy: string;
|
|
2721
|
+
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
2722
|
+
size: "small" | "medium" | "large";
|
|
2723
|
+
showAllSelectedText: boolean;
|
|
2724
|
+
onKeydown: (event: any) => void;
|
|
2725
|
+
onClick: () => void;
|
|
2726
|
+
};
|
|
2530
2727
|
}): any;
|
|
2728
|
+
"inline-search"?(_: {}): any;
|
|
2531
2729
|
"input-list"?(_: {
|
|
2532
2730
|
open: true;
|
|
2533
2731
|
}): any;
|
|
@@ -2617,7 +2815,319 @@ declare const DropdownTypes: () => (({
|
|
|
2617
2815
|
startIconName: string;
|
|
2618
2816
|
startIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2619
2817
|
hideEndIcon: boolean;
|
|
2620
|
-
}> |
|
|
2818
|
+
}> | ({
|
|
2819
|
+
new (...args: any[]): {
|
|
2820
|
+
$: import("vue").ComponentInternalInstance;
|
|
2821
|
+
$data: {};
|
|
2822
|
+
$props: Partial<{
|
|
2823
|
+
disabled: boolean;
|
|
2824
|
+
size: "small" | "medium" | "large";
|
|
2825
|
+
testId: string;
|
|
2826
|
+
selected: unknown[];
|
|
2827
|
+
placeholder: string;
|
|
2828
|
+
inlineSearchPlaceholder: string;
|
|
2829
|
+
optionNameKey: string;
|
|
2830
|
+
optionIconKey: string;
|
|
2831
|
+
optionImageKey: string;
|
|
2832
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2833
|
+
optionEndIconKey: string;
|
|
2834
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2835
|
+
valueToCopy: string;
|
|
2836
|
+
disabledOptionKey: string;
|
|
2837
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
2838
|
+
disabled: {
|
|
2839
|
+
type: import("vue").PropType<boolean>;
|
|
2840
|
+
default: boolean;
|
|
2841
|
+
};
|
|
2842
|
+
size: {
|
|
2843
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
2844
|
+
default: string;
|
|
2845
|
+
};
|
|
2846
|
+
testId: {
|
|
2847
|
+
type: import("vue").PropType<string>;
|
|
2848
|
+
default: string;
|
|
2849
|
+
};
|
|
2850
|
+
selected: {
|
|
2851
|
+
type: import("vue").PropType<unknown[]>;
|
|
2852
|
+
default: any;
|
|
2853
|
+
};
|
|
2854
|
+
options: {
|
|
2855
|
+
type: import("vue").PropType<unknown[]>;
|
|
2856
|
+
required: true;
|
|
2857
|
+
};
|
|
2858
|
+
placeholder: {
|
|
2859
|
+
type: import("vue").PropType<string>;
|
|
2860
|
+
default: string;
|
|
2861
|
+
};
|
|
2862
|
+
isOpen: {
|
|
2863
|
+
type: import("vue").PropType<boolean>;
|
|
2864
|
+
};
|
|
2865
|
+
inlineSearchPlaceholder: {
|
|
2866
|
+
type: import("vue").PropType<string>;
|
|
2867
|
+
default: string;
|
|
2868
|
+
};
|
|
2869
|
+
displayValue: {
|
|
2870
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
2871
|
+
required: true;
|
|
2872
|
+
};
|
|
2873
|
+
optionNameKey: {
|
|
2874
|
+
type: import("vue").PropType<string>;
|
|
2875
|
+
default: string;
|
|
2876
|
+
};
|
|
2877
|
+
optionIconKey: {
|
|
2878
|
+
type: import("vue").PropType<string>;
|
|
2879
|
+
default: string;
|
|
2880
|
+
};
|
|
2881
|
+
optionImageKey: {
|
|
2882
|
+
type: import("vue").PropType<string>;
|
|
2883
|
+
default: string;
|
|
2884
|
+
};
|
|
2885
|
+
optionIconType: {
|
|
2886
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2887
|
+
default: any;
|
|
2888
|
+
};
|
|
2889
|
+
optionEndIconKey: {
|
|
2890
|
+
type: import("vue").PropType<string>;
|
|
2891
|
+
default: string;
|
|
2892
|
+
};
|
|
2893
|
+
optionEndIconType: {
|
|
2894
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2895
|
+
default: any;
|
|
2896
|
+
};
|
|
2897
|
+
valueToCopy: {
|
|
2898
|
+
type: import("vue").PropType<string>;
|
|
2899
|
+
default: any;
|
|
2900
|
+
};
|
|
2901
|
+
disabledOptionKey: {
|
|
2902
|
+
type: import("vue").PropType<string>;
|
|
2903
|
+
default: string;
|
|
2904
|
+
};
|
|
2905
|
+
optionChildrenKey: {
|
|
2906
|
+
type: import("vue").PropType<string>;
|
|
2907
|
+
required: true;
|
|
2908
|
+
};
|
|
2909
|
+
optionUniqueIdKey: {
|
|
2910
|
+
type: import("vue").PropType<string>;
|
|
2911
|
+
required: true;
|
|
2912
|
+
};
|
|
2913
|
+
}>> & {
|
|
2914
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
2915
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2916
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "size" | "testId" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey">;
|
|
2917
|
+
$attrs: {
|
|
2918
|
+
[x: string]: unknown;
|
|
2919
|
+
};
|
|
2920
|
+
$refs: {
|
|
2921
|
+
[x: string]: unknown;
|
|
2922
|
+
};
|
|
2923
|
+
$slots: Readonly<{
|
|
2924
|
+
[name: string]: import("vue").Slot;
|
|
2925
|
+
}>;
|
|
2926
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
2927
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
2928
|
+
$emit: ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void);
|
|
2929
|
+
$el: any;
|
|
2930
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2931
|
+
disabled: {
|
|
2932
|
+
type: import("vue").PropType<boolean>;
|
|
2933
|
+
default: boolean;
|
|
2934
|
+
};
|
|
2935
|
+
size: {
|
|
2936
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
2937
|
+
default: string;
|
|
2938
|
+
};
|
|
2939
|
+
testId: {
|
|
2940
|
+
type: import("vue").PropType<string>;
|
|
2941
|
+
default: string;
|
|
2942
|
+
};
|
|
2943
|
+
selected: {
|
|
2944
|
+
type: import("vue").PropType<unknown[]>;
|
|
2945
|
+
default: any;
|
|
2946
|
+
};
|
|
2947
|
+
options: {
|
|
2948
|
+
type: import("vue").PropType<unknown[]>;
|
|
2949
|
+
required: true;
|
|
2950
|
+
};
|
|
2951
|
+
placeholder: {
|
|
2952
|
+
type: import("vue").PropType<string>;
|
|
2953
|
+
default: string;
|
|
2954
|
+
};
|
|
2955
|
+
isOpen: {
|
|
2956
|
+
type: import("vue").PropType<boolean>;
|
|
2957
|
+
};
|
|
2958
|
+
inlineSearchPlaceholder: {
|
|
2959
|
+
type: import("vue").PropType<string>;
|
|
2960
|
+
default: string;
|
|
2961
|
+
};
|
|
2962
|
+
displayValue: {
|
|
2963
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
2964
|
+
required: true;
|
|
2965
|
+
};
|
|
2966
|
+
optionNameKey: {
|
|
2967
|
+
type: import("vue").PropType<string>;
|
|
2968
|
+
default: string;
|
|
2969
|
+
};
|
|
2970
|
+
optionIconKey: {
|
|
2971
|
+
type: import("vue").PropType<string>;
|
|
2972
|
+
default: string;
|
|
2973
|
+
};
|
|
2974
|
+
optionImageKey: {
|
|
2975
|
+
type: import("vue").PropType<string>;
|
|
2976
|
+
default: string;
|
|
2977
|
+
};
|
|
2978
|
+
optionIconType: {
|
|
2979
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2980
|
+
default: any;
|
|
2981
|
+
};
|
|
2982
|
+
optionEndIconKey: {
|
|
2983
|
+
type: import("vue").PropType<string>;
|
|
2984
|
+
default: string;
|
|
2985
|
+
};
|
|
2986
|
+
optionEndIconType: {
|
|
2987
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2988
|
+
default: any;
|
|
2989
|
+
};
|
|
2990
|
+
valueToCopy: {
|
|
2991
|
+
type: import("vue").PropType<string>;
|
|
2992
|
+
default: any;
|
|
2993
|
+
};
|
|
2994
|
+
disabledOptionKey: {
|
|
2995
|
+
type: import("vue").PropType<string>;
|
|
2996
|
+
default: string;
|
|
2997
|
+
};
|
|
2998
|
+
optionChildrenKey: {
|
|
2999
|
+
type: import("vue").PropType<string>;
|
|
3000
|
+
required: true;
|
|
3001
|
+
};
|
|
3002
|
+
optionUniqueIdKey: {
|
|
3003
|
+
type: import("vue").PropType<string>;
|
|
3004
|
+
required: true;
|
|
3005
|
+
};
|
|
3006
|
+
}>> & {
|
|
3007
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
3008
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
3009
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3010
|
+
"update:selected": (value: unknown) => void;
|
|
3011
|
+
"update:isOpen": (value: unknown) => void;
|
|
3012
|
+
}, string, {
|
|
3013
|
+
disabled: boolean;
|
|
3014
|
+
size: "small" | "medium" | "large";
|
|
3015
|
+
testId: string;
|
|
3016
|
+
selected: unknown[];
|
|
3017
|
+
placeholder: string;
|
|
3018
|
+
inlineSearchPlaceholder: string;
|
|
3019
|
+
optionNameKey: string;
|
|
3020
|
+
optionIconKey: string;
|
|
3021
|
+
optionImageKey: string;
|
|
3022
|
+
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3023
|
+
optionEndIconKey: string;
|
|
3024
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3025
|
+
valueToCopy: string;
|
|
3026
|
+
disabledOptionKey: string;
|
|
3027
|
+
}, {}, string> & {
|
|
3028
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
3029
|
+
created?: (() => void) | (() => void)[];
|
|
3030
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
3031
|
+
mounted?: (() => void) | (() => void)[];
|
|
3032
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
3033
|
+
updated?: (() => void) | (() => void)[];
|
|
3034
|
+
activated?: (() => void) | (() => void)[];
|
|
3035
|
+
deactivated?: (() => void) | (() => void)[];
|
|
3036
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
3037
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
3038
|
+
destroyed?: (() => void) | (() => void)[];
|
|
3039
|
+
unmounted?: (() => void) | (() => void)[];
|
|
3040
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
3041
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
3042
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
3043
|
+
};
|
|
3044
|
+
$forceUpdate: () => void;
|
|
3045
|
+
$nextTick: typeof import("vue").nextTick;
|
|
3046
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
3047
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
3048
|
+
disabled: {
|
|
3049
|
+
type: import("vue").PropType<boolean>;
|
|
3050
|
+
default: boolean;
|
|
3051
|
+
};
|
|
3052
|
+
size: {
|
|
3053
|
+
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
3054
|
+
default: string;
|
|
3055
|
+
};
|
|
3056
|
+
testId: {
|
|
3057
|
+
type: import("vue").PropType<string>;
|
|
3058
|
+
default: string;
|
|
3059
|
+
};
|
|
3060
|
+
selected: {
|
|
3061
|
+
type: import("vue").PropType<unknown[]>;
|
|
3062
|
+
default: any;
|
|
3063
|
+
};
|
|
3064
|
+
options: {
|
|
3065
|
+
type: import("vue").PropType<unknown[]>;
|
|
3066
|
+
required: true;
|
|
3067
|
+
};
|
|
3068
|
+
placeholder: {
|
|
3069
|
+
type: import("vue").PropType<string>;
|
|
3070
|
+
default: string;
|
|
3071
|
+
};
|
|
3072
|
+
isOpen: {
|
|
3073
|
+
type: import("vue").PropType<boolean>;
|
|
3074
|
+
};
|
|
3075
|
+
inlineSearchPlaceholder: {
|
|
3076
|
+
type: import("vue").PropType<string>;
|
|
3077
|
+
default: string;
|
|
3078
|
+
};
|
|
3079
|
+
displayValue: {
|
|
3080
|
+
type: import("vue").PropType<(option: unknown) => string>;
|
|
3081
|
+
required: true;
|
|
3082
|
+
};
|
|
3083
|
+
optionNameKey: {
|
|
3084
|
+
type: import("vue").PropType<string>;
|
|
3085
|
+
default: string;
|
|
3086
|
+
};
|
|
3087
|
+
optionIconKey: {
|
|
3088
|
+
type: import("vue").PropType<string>;
|
|
3089
|
+
default: string;
|
|
3090
|
+
};
|
|
3091
|
+
optionImageKey: {
|
|
3092
|
+
type: import("vue").PropType<string>;
|
|
3093
|
+
default: string;
|
|
3094
|
+
};
|
|
3095
|
+
optionIconType: {
|
|
3096
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3097
|
+
default: any;
|
|
3098
|
+
};
|
|
3099
|
+
optionEndIconKey: {
|
|
3100
|
+
type: import("vue").PropType<string>;
|
|
3101
|
+
default: string;
|
|
3102
|
+
};
|
|
3103
|
+
optionEndIconType: {
|
|
3104
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3105
|
+
default: any;
|
|
3106
|
+
};
|
|
3107
|
+
valueToCopy: {
|
|
3108
|
+
type: import("vue").PropType<string>;
|
|
3109
|
+
default: any;
|
|
3110
|
+
};
|
|
3111
|
+
disabledOptionKey: {
|
|
3112
|
+
type: import("vue").PropType<string>;
|
|
3113
|
+
default: string;
|
|
3114
|
+
};
|
|
3115
|
+
optionChildrenKey: {
|
|
3116
|
+
type: import("vue").PropType<string>;
|
|
3117
|
+
required: true;
|
|
3118
|
+
};
|
|
3119
|
+
optionUniqueIdKey: {
|
|
3120
|
+
type: import("vue").PropType<string>;
|
|
3121
|
+
required: true;
|
|
3122
|
+
};
|
|
3123
|
+
}>> & {
|
|
3124
|
+
"onUpdate:selected"?: (value: unknown) => any;
|
|
3125
|
+
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
3126
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
3127
|
+
__isFragment?: never;
|
|
3128
|
+
__isTeleport?: never;
|
|
3129
|
+
__isSuspense?: never;
|
|
3130
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2621
3131
|
disabled: {
|
|
2622
3132
|
type: import("vue").PropType<boolean>;
|
|
2623
3133
|
default: boolean;
|
|
@@ -2687,87 +3197,19 @@ declare const DropdownTypes: () => (({
|
|
|
2687
3197
|
};
|
|
2688
3198
|
optionChildrenKey: {
|
|
2689
3199
|
type: import("vue").PropType<string>;
|
|
2690
|
-
default: string;
|
|
2691
|
-
};
|
|
2692
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2693
|
-
"update:selected": (value: unknown) => void;
|
|
2694
|
-
"update:isOpen": (value: unknown) => void;
|
|
2695
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2696
|
-
disabled: {
|
|
2697
|
-
type: import("vue").PropType<boolean>;
|
|
2698
|
-
default: boolean;
|
|
2699
|
-
};
|
|
2700
|
-
size: {
|
|
2701
|
-
type: import("vue").PropType<"small" | "medium" | "large">;
|
|
2702
|
-
default: string;
|
|
2703
|
-
};
|
|
2704
|
-
testId: {
|
|
2705
|
-
type: import("vue").PropType<string>;
|
|
2706
|
-
default: string;
|
|
2707
|
-
};
|
|
2708
|
-
selected: {
|
|
2709
|
-
type: import("vue").PropType<unknown[]>;
|
|
2710
|
-
default: any;
|
|
2711
|
-
};
|
|
2712
|
-
options: {
|
|
2713
|
-
type: import("vue").PropType<unknown[]>;
|
|
2714
3200
|
required: true;
|
|
2715
3201
|
};
|
|
2716
|
-
|
|
3202
|
+
optionUniqueIdKey: {
|
|
2717
3203
|
type: import("vue").PropType<string>;
|
|
2718
|
-
default: string;
|
|
2719
|
-
};
|
|
2720
|
-
isOpen: {
|
|
2721
|
-
type: import("vue").PropType<boolean>;
|
|
2722
|
-
};
|
|
2723
|
-
inlineSearchPlaceholder: {
|
|
2724
|
-
type: import("vue").PropType<string>;
|
|
2725
|
-
default: string;
|
|
2726
|
-
};
|
|
2727
|
-
displayValue: {
|
|
2728
|
-
type: import("vue").PropType<(option: unknown) => string>;
|
|
2729
3204
|
required: true;
|
|
2730
3205
|
};
|
|
2731
|
-
optionNameKey: {
|
|
2732
|
-
type: import("vue").PropType<string>;
|
|
2733
|
-
default: string;
|
|
2734
|
-
};
|
|
2735
|
-
optionIconKey: {
|
|
2736
|
-
type: import("vue").PropType<string>;
|
|
2737
|
-
default: string;
|
|
2738
|
-
};
|
|
2739
|
-
optionImageKey: {
|
|
2740
|
-
type: import("vue").PropType<string>;
|
|
2741
|
-
default: string;
|
|
2742
|
-
};
|
|
2743
|
-
optionIconType: {
|
|
2744
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2745
|
-
default: any;
|
|
2746
|
-
};
|
|
2747
|
-
optionEndIconKey: {
|
|
2748
|
-
type: import("vue").PropType<string>;
|
|
2749
|
-
default: string;
|
|
2750
|
-
};
|
|
2751
|
-
optionEndIconType: {
|
|
2752
|
-
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2753
|
-
default: any;
|
|
2754
|
-
};
|
|
2755
|
-
valueToCopy: {
|
|
2756
|
-
type: import("vue").PropType<string>;
|
|
2757
|
-
default: any;
|
|
2758
|
-
};
|
|
2759
|
-
disabledOptionKey: {
|
|
2760
|
-
type: import("vue").PropType<string>;
|
|
2761
|
-
default: string;
|
|
2762
|
-
};
|
|
2763
|
-
optionChildrenKey: {
|
|
2764
|
-
type: import("vue").PropType<string>;
|
|
2765
|
-
default: string;
|
|
2766
|
-
};
|
|
2767
3206
|
}>> & {
|
|
2768
3207
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
2769
3208
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2770
|
-
}, {
|
|
3209
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3210
|
+
"update:selected": (value: unknown) => void;
|
|
3211
|
+
"update:isOpen": (value: unknown) => void;
|
|
3212
|
+
}, string, {
|
|
2771
3213
|
disabled: boolean;
|
|
2772
3214
|
size: "small" | "medium" | "large";
|
|
2773
3215
|
testId: string;
|
|
@@ -2782,6 +3224,9 @@ declare const DropdownTypes: () => (({
|
|
|
2782
3224
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2783
3225
|
valueToCopy: string;
|
|
2784
3226
|
disabledOptionKey: string;
|
|
2785
|
-
|
|
2786
|
-
|
|
3227
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3228
|
+
$slots: {
|
|
3229
|
+
"trigger-end-icon"?(_: {}): any;
|
|
3230
|
+
};
|
|
3231
|
+
})))[];
|
|
2787
3232
|
export { Dropdown, DefaultDropdownTrigger, IconButtonDropdownTrigger, ChipDropdownTrigger, ButtonDropdownTrigger, ButtonFilterDropdownTrigger, AppDropdownTrigger, DropdownTypes, Option, TreeDropdown, };
|