@ironsource/shared-ui 2.1.9-test.1 → 2.1.9-test.2
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/DropdownV4.vue_vue_type_style_index_0_scoped_cf64ca64_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/components/dropdown/common/Dropdown.common.d.ts +1 -0
- package/components/dropdown/common/Dropdown.common.js +165 -158
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.d.ts +1 -1
- package/components/dropdown/v4/DropdownV4.vue.d.ts +17 -5
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +164 -158
- package/components/dropdown/v4/OptionV4.vue.d.ts +1 -1
- package/components/dropdown/v4/index.d.ts +104 -64
- package/index.d.ts +208 -128
- package/index.js +1 -1
- package/package.json +1 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_360883b1_lang.css +0 -1
|
@@ -31,12 +31,12 @@ declare const DropdownTypes: () => (({
|
|
|
31
31
|
optionIconKey: string;
|
|
32
32
|
optionImageKey: string;
|
|
33
33
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
34
|
+
optionFlagKey: string;
|
|
34
35
|
allSelected: boolean;
|
|
35
36
|
selectedOption: any;
|
|
36
37
|
showFeedbackIcon: boolean;
|
|
37
38
|
brandIconType: "android" | "ios";
|
|
38
39
|
showAllSelectedText: boolean;
|
|
39
|
-
optionFlagKey: string;
|
|
40
40
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
41
41
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
42
42
|
label: {
|
|
@@ -121,6 +121,10 @@ declare const DropdownTypes: () => (({
|
|
|
121
121
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
122
122
|
default: any;
|
|
123
123
|
};
|
|
124
|
+
optionFlagKey: {
|
|
125
|
+
type: import("vue").PropType<string>;
|
|
126
|
+
default: any;
|
|
127
|
+
};
|
|
124
128
|
allSelected: {
|
|
125
129
|
type: import("vue").PropType<boolean>;
|
|
126
130
|
default: boolean;
|
|
@@ -141,17 +145,13 @@ declare const DropdownTypes: () => (({
|
|
|
141
145
|
type: import("vue").PropType<boolean>;
|
|
142
146
|
default: boolean;
|
|
143
147
|
};
|
|
144
|
-
optionFlagKey: {
|
|
145
|
-
type: import("vue").PropType<string>;
|
|
146
|
-
default: any;
|
|
147
|
-
};
|
|
148
148
|
statusDotType: {
|
|
149
149
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
150
150
|
default: any;
|
|
151
151
|
};
|
|
152
152
|
}>> & {
|
|
153
153
|
onClick?: () => any;
|
|
154
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "
|
|
154
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "hoverHelpText" | "hoverHelpTextPlacement" | "placeholder" | "feedbackText" | "feedbackVariant" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionFlagKey" | "allSelected" | "selectedOption" | "showFeedbackIcon" | "brandIconType" | "showAllSelectedText" | "statusDotType">;
|
|
155
155
|
$attrs: {
|
|
156
156
|
[x: string]: unknown;
|
|
157
157
|
};
|
|
@@ -248,6 +248,10 @@ declare const DropdownTypes: () => (({
|
|
|
248
248
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
249
249
|
default: any;
|
|
250
250
|
};
|
|
251
|
+
optionFlagKey: {
|
|
252
|
+
type: import("vue").PropType<string>;
|
|
253
|
+
default: any;
|
|
254
|
+
};
|
|
251
255
|
allSelected: {
|
|
252
256
|
type: import("vue").PropType<boolean>;
|
|
253
257
|
default: boolean;
|
|
@@ -268,10 +272,6 @@ declare const DropdownTypes: () => (({
|
|
|
268
272
|
type: import("vue").PropType<boolean>;
|
|
269
273
|
default: boolean;
|
|
270
274
|
};
|
|
271
|
-
optionFlagKey: {
|
|
272
|
-
type: import("vue").PropType<string>;
|
|
273
|
-
default: any;
|
|
274
|
-
};
|
|
275
275
|
statusDotType: {
|
|
276
276
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
277
277
|
default: any;
|
|
@@ -300,12 +300,12 @@ declare const DropdownTypes: () => (({
|
|
|
300
300
|
optionIconKey: string;
|
|
301
301
|
optionImageKey: string;
|
|
302
302
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
303
|
+
optionFlagKey: string;
|
|
303
304
|
allSelected: boolean;
|
|
304
305
|
selectedOption: any;
|
|
305
306
|
showFeedbackIcon: boolean;
|
|
306
307
|
brandIconType: "android" | "ios";
|
|
307
308
|
showAllSelectedText: boolean;
|
|
308
|
-
optionFlagKey: string;
|
|
309
309
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
310
310
|
}, {}, string> & {
|
|
311
311
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -410,6 +410,10 @@ declare const DropdownTypes: () => (({
|
|
|
410
410
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
411
411
|
default: any;
|
|
412
412
|
};
|
|
413
|
+
optionFlagKey: {
|
|
414
|
+
type: import("vue").PropType<string>;
|
|
415
|
+
default: any;
|
|
416
|
+
};
|
|
413
417
|
allSelected: {
|
|
414
418
|
type: import("vue").PropType<boolean>;
|
|
415
419
|
default: boolean;
|
|
@@ -430,10 +434,6 @@ declare const DropdownTypes: () => (({
|
|
|
430
434
|
type: import("vue").PropType<boolean>;
|
|
431
435
|
default: boolean;
|
|
432
436
|
};
|
|
433
|
-
optionFlagKey: {
|
|
434
|
-
type: import("vue").PropType<string>;
|
|
435
|
-
default: any;
|
|
436
|
-
};
|
|
437
437
|
statusDotType: {
|
|
438
438
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
439
439
|
default: any;
|
|
@@ -527,6 +527,10 @@ declare const DropdownTypes: () => (({
|
|
|
527
527
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
528
528
|
default: any;
|
|
529
529
|
};
|
|
530
|
+
optionFlagKey: {
|
|
531
|
+
type: import("vue").PropType<string>;
|
|
532
|
+
default: any;
|
|
533
|
+
};
|
|
530
534
|
allSelected: {
|
|
531
535
|
type: import("vue").PropType<boolean>;
|
|
532
536
|
default: boolean;
|
|
@@ -547,10 +551,6 @@ declare const DropdownTypes: () => (({
|
|
|
547
551
|
type: import("vue").PropType<boolean>;
|
|
548
552
|
default: boolean;
|
|
549
553
|
};
|
|
550
|
-
optionFlagKey: {
|
|
551
|
-
type: import("vue").PropType<string>;
|
|
552
|
-
default: any;
|
|
553
|
-
};
|
|
554
554
|
statusDotType: {
|
|
555
555
|
type: import("vue").PropType<"default" | "disabled" | "success" | "warning" | "error" | "archive">;
|
|
556
556
|
default: any;
|
|
@@ -579,12 +579,12 @@ declare const DropdownTypes: () => (({
|
|
|
579
579
|
optionIconKey: string;
|
|
580
580
|
optionImageKey: string;
|
|
581
581
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
582
|
+
optionFlagKey: string;
|
|
582
583
|
allSelected: boolean;
|
|
583
584
|
selectedOption: any;
|
|
584
585
|
showFeedbackIcon: boolean;
|
|
585
586
|
brandIconType: "android" | "ios";
|
|
586
587
|
showAllSelectedText: boolean;
|
|
587
|
-
optionFlagKey: string;
|
|
588
588
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
589
589
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
590
590
|
$slots: {
|
|
@@ -1080,10 +1080,10 @@ declare const DropdownTypes: () => (({
|
|
|
1080
1080
|
disabled: boolean;
|
|
1081
1081
|
active: boolean;
|
|
1082
1082
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1083
|
+
optionFlagKey: string;
|
|
1083
1084
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1084
1085
|
optionTwoLinesKey: string;
|
|
1085
1086
|
isIndeterminate: boolean;
|
|
1086
|
-
optionFlagKey: string;
|
|
1087
1087
|
subtitle: string;
|
|
1088
1088
|
selectAllOption: boolean;
|
|
1089
1089
|
nameKey: string;
|
|
@@ -1113,6 +1113,10 @@ declare const DropdownTypes: () => (({
|
|
|
1113
1113
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1114
1114
|
default: string;
|
|
1115
1115
|
};
|
|
1116
|
+
optionFlagKey: {
|
|
1117
|
+
type: import("vue").PropType<string>;
|
|
1118
|
+
default: any;
|
|
1119
|
+
};
|
|
1116
1120
|
optionTwoLinesVariant: {
|
|
1117
1121
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1118
1122
|
default: any;
|
|
@@ -1125,10 +1129,6 @@ declare const DropdownTypes: () => (({
|
|
|
1125
1129
|
type: import("vue").PropType<boolean>;
|
|
1126
1130
|
default: boolean;
|
|
1127
1131
|
};
|
|
1128
|
-
optionFlagKey: {
|
|
1129
|
-
type: import("vue").PropType<string>;
|
|
1130
|
-
default: any;
|
|
1131
|
-
};
|
|
1132
1132
|
subtitle: {
|
|
1133
1133
|
type: import("vue").PropType<string>;
|
|
1134
1134
|
default: string;
|
|
@@ -1182,7 +1182,7 @@ declare const DropdownTypes: () => (({
|
|
|
1182
1182
|
};
|
|
1183
1183
|
}>> & {
|
|
1184
1184
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
1185
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "
|
|
1185
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "optionFlagKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement" | "treeMainOption" | "treeMainOptionExpanded" | "stopOptionClickEventPropagation" | "treeChildShown">;
|
|
1186
1186
|
$attrs: {
|
|
1187
1187
|
[x: string]: unknown;
|
|
1188
1188
|
};
|
|
@@ -1213,6 +1213,10 @@ declare const DropdownTypes: () => (({
|
|
|
1213
1213
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1214
1214
|
default: string;
|
|
1215
1215
|
};
|
|
1216
|
+
optionFlagKey: {
|
|
1217
|
+
type: import("vue").PropType<string>;
|
|
1218
|
+
default: any;
|
|
1219
|
+
};
|
|
1216
1220
|
optionTwoLinesVariant: {
|
|
1217
1221
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1218
1222
|
default: any;
|
|
@@ -1225,10 +1229,6 @@ declare const DropdownTypes: () => (({
|
|
|
1225
1229
|
type: import("vue").PropType<boolean>;
|
|
1226
1230
|
default: boolean;
|
|
1227
1231
|
};
|
|
1228
|
-
optionFlagKey: {
|
|
1229
|
-
type: import("vue").PropType<string>;
|
|
1230
|
-
default: any;
|
|
1231
|
-
};
|
|
1232
1232
|
subtitle: {
|
|
1233
1233
|
type: import("vue").PropType<string>;
|
|
1234
1234
|
default: string;
|
|
@@ -1289,10 +1289,10 @@ declare const DropdownTypes: () => (({
|
|
|
1289
1289
|
disabled: boolean;
|
|
1290
1290
|
active: boolean;
|
|
1291
1291
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1292
|
+
optionFlagKey: string;
|
|
1292
1293
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1293
1294
|
optionTwoLinesKey: string;
|
|
1294
1295
|
isIndeterminate: boolean;
|
|
1295
|
-
optionFlagKey: string;
|
|
1296
1296
|
subtitle: string;
|
|
1297
1297
|
selectAllOption: boolean;
|
|
1298
1298
|
nameKey: string;
|
|
@@ -1342,6 +1342,10 @@ declare const DropdownTypes: () => (({
|
|
|
1342
1342
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1343
1343
|
default: string;
|
|
1344
1344
|
};
|
|
1345
|
+
optionFlagKey: {
|
|
1346
|
+
type: import("vue").PropType<string>;
|
|
1347
|
+
default: any;
|
|
1348
|
+
};
|
|
1345
1349
|
optionTwoLinesVariant: {
|
|
1346
1350
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1347
1351
|
default: any;
|
|
@@ -1354,10 +1358,6 @@ declare const DropdownTypes: () => (({
|
|
|
1354
1358
|
type: import("vue").PropType<boolean>;
|
|
1355
1359
|
default: boolean;
|
|
1356
1360
|
};
|
|
1357
|
-
optionFlagKey: {
|
|
1358
|
-
type: import("vue").PropType<string>;
|
|
1359
|
-
default: any;
|
|
1360
|
-
};
|
|
1361
1361
|
subtitle: {
|
|
1362
1362
|
type: import("vue").PropType<string>;
|
|
1363
1363
|
default: string;
|
|
@@ -1432,6 +1432,10 @@ declare const DropdownTypes: () => (({
|
|
|
1432
1432
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1433
1433
|
default: string;
|
|
1434
1434
|
};
|
|
1435
|
+
optionFlagKey: {
|
|
1436
|
+
type: import("vue").PropType<string>;
|
|
1437
|
+
default: any;
|
|
1438
|
+
};
|
|
1435
1439
|
optionTwoLinesVariant: {
|
|
1436
1440
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1437
1441
|
default: any;
|
|
@@ -1444,10 +1448,6 @@ declare const DropdownTypes: () => (({
|
|
|
1444
1448
|
type: import("vue").PropType<boolean>;
|
|
1445
1449
|
default: boolean;
|
|
1446
1450
|
};
|
|
1447
|
-
optionFlagKey: {
|
|
1448
|
-
type: import("vue").PropType<string>;
|
|
1449
|
-
default: any;
|
|
1450
|
-
};
|
|
1451
1451
|
subtitle: {
|
|
1452
1452
|
type: import("vue").PropType<string>;
|
|
1453
1453
|
default: string;
|
|
@@ -1508,10 +1508,10 @@ declare const DropdownTypes: () => (({
|
|
|
1508
1508
|
disabled: boolean;
|
|
1509
1509
|
active: boolean;
|
|
1510
1510
|
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1511
|
+
optionFlagKey: string;
|
|
1511
1512
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1512
1513
|
optionTwoLinesKey: string;
|
|
1513
1514
|
isIndeterminate: boolean;
|
|
1514
|
-
optionFlagKey: string;
|
|
1515
1515
|
subtitle: string;
|
|
1516
1516
|
selectAllOption: boolean;
|
|
1517
1517
|
nameKey: string;
|
|
@@ -1697,17 +1697,19 @@ declare const DropdownTypes: () => (({
|
|
|
1697
1697
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1698
1698
|
optionEndIconKey: string;
|
|
1699
1699
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1700
|
+
optionFlagKey: string;
|
|
1700
1701
|
valueToCopy: string;
|
|
1701
1702
|
disabledOptionKey: string;
|
|
1702
1703
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1703
1704
|
optionTwoLinesKey: string;
|
|
1704
1705
|
groupedOptions: boolean;
|
|
1706
|
+
comparingKey: string;
|
|
1707
|
+
withConditions: boolean;
|
|
1705
1708
|
fullWidth: boolean;
|
|
1706
1709
|
optionsListWidth: string;
|
|
1707
1710
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
1708
1711
|
disableVirtualScroll: boolean;
|
|
1709
1712
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
1710
|
-
withConditions: boolean;
|
|
1711
1713
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
1712
1714
|
theme: {
|
|
1713
1715
|
type: import("vue").PropType<string>;
|
|
@@ -1883,6 +1885,10 @@ declare const DropdownTypes: () => (({
|
|
|
1883
1885
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1884
1886
|
default: any;
|
|
1885
1887
|
};
|
|
1888
|
+
optionFlagKey: {
|
|
1889
|
+
type: import("vue").PropType<string>;
|
|
1890
|
+
default: any;
|
|
1891
|
+
};
|
|
1886
1892
|
valueToCopy: {
|
|
1887
1893
|
type: import("vue").PropType<string>;
|
|
1888
1894
|
default: any;
|
|
@@ -1903,6 +1909,15 @@ declare const DropdownTypes: () => (({
|
|
|
1903
1909
|
type: import("vue").PropType<boolean>;
|
|
1904
1910
|
default: boolean;
|
|
1905
1911
|
};
|
|
1912
|
+
comparingKey: {
|
|
1913
|
+
type: import("vue").PropType<string>;
|
|
1914
|
+
default: any;
|
|
1915
|
+
};
|
|
1916
|
+
withConditions: {
|
|
1917
|
+
type: import("vue").PropType<boolean>;
|
|
1918
|
+
required: true;
|
|
1919
|
+
default: boolean;
|
|
1920
|
+
};
|
|
1906
1921
|
fullWidth: {
|
|
1907
1922
|
type: import("vue").PropType<boolean>;
|
|
1908
1923
|
default: boolean;
|
|
@@ -1923,11 +1938,6 @@ declare const DropdownTypes: () => (({
|
|
|
1923
1938
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
1924
1939
|
default: any;
|
|
1925
1940
|
};
|
|
1926
|
-
withConditions: {
|
|
1927
|
-
type: import("vue").PropType<boolean>;
|
|
1928
|
-
required: true;
|
|
1929
|
-
default: boolean;
|
|
1930
|
-
};
|
|
1931
1941
|
}>> & {
|
|
1932
1942
|
onCopyToClipboard?: () => any;
|
|
1933
1943
|
onClear?: () => any;
|
|
@@ -1938,7 +1948,7 @@ declare const DropdownTypes: () => (({
|
|
|
1938
1948
|
onOnsearch?: (value: string) => any;
|
|
1939
1949
|
onOpened?: () => any;
|
|
1940
1950
|
onClosed?: () => any;
|
|
1941
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation"
|
|
1951
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "onClear" | "placeholder" | "multi" | "showSelectAll" | "defaultOpen" | "keepOpen" | "autoSize" | "disableKeyboardEvents" | "isOnTop" | "triggerLabel" | "triggerHelperText" | "triggerFeedbackText" | "triggerFeedbackVariant" | "triggerFeedbackShowIcon" | "triggerShowAllSelectedText" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "optionFlagKey" | "valueToCopy" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "withConditions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
1942
1952
|
$attrs: {
|
|
1943
1953
|
[x: string]: unknown;
|
|
1944
1954
|
};
|
|
@@ -2127,6 +2137,10 @@ declare const DropdownTypes: () => (({
|
|
|
2127
2137
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2128
2138
|
default: any;
|
|
2129
2139
|
};
|
|
2140
|
+
optionFlagKey: {
|
|
2141
|
+
type: import("vue").PropType<string>;
|
|
2142
|
+
default: any;
|
|
2143
|
+
};
|
|
2130
2144
|
valueToCopy: {
|
|
2131
2145
|
type: import("vue").PropType<string>;
|
|
2132
2146
|
default: any;
|
|
@@ -2147,6 +2161,15 @@ declare const DropdownTypes: () => (({
|
|
|
2147
2161
|
type: import("vue").PropType<boolean>;
|
|
2148
2162
|
default: boolean;
|
|
2149
2163
|
};
|
|
2164
|
+
comparingKey: {
|
|
2165
|
+
type: import("vue").PropType<string>;
|
|
2166
|
+
default: any;
|
|
2167
|
+
};
|
|
2168
|
+
withConditions: {
|
|
2169
|
+
type: import("vue").PropType<boolean>;
|
|
2170
|
+
required: true;
|
|
2171
|
+
default: boolean;
|
|
2172
|
+
};
|
|
2150
2173
|
fullWidth: {
|
|
2151
2174
|
type: import("vue").PropType<boolean>;
|
|
2152
2175
|
default: boolean;
|
|
@@ -2167,11 +2190,6 @@ declare const DropdownTypes: () => (({
|
|
|
2167
2190
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
2168
2191
|
default: any;
|
|
2169
2192
|
};
|
|
2170
|
-
withConditions: {
|
|
2171
|
-
type: import("vue").PropType<boolean>;
|
|
2172
|
-
required: true;
|
|
2173
|
-
default: boolean;
|
|
2174
|
-
};
|
|
2175
2193
|
}>> & {
|
|
2176
2194
|
onCopyToClipboard?: () => any;
|
|
2177
2195
|
onClear?: () => any;
|
|
@@ -2236,17 +2254,19 @@ declare const DropdownTypes: () => (({
|
|
|
2236
2254
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2237
2255
|
optionEndIconKey: string;
|
|
2238
2256
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2257
|
+
optionFlagKey: string;
|
|
2239
2258
|
valueToCopy: string;
|
|
2240
2259
|
disabledOptionKey: string;
|
|
2241
2260
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2242
2261
|
optionTwoLinesKey: string;
|
|
2243
2262
|
groupedOptions: boolean;
|
|
2263
|
+
comparingKey: string;
|
|
2264
|
+
withConditions: boolean;
|
|
2244
2265
|
fullWidth: boolean;
|
|
2245
2266
|
optionsListWidth: string;
|
|
2246
2267
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
2247
2268
|
disableVirtualScroll: boolean;
|
|
2248
2269
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
2249
|
-
withConditions: boolean;
|
|
2250
2270
|
}, {}, string> & {
|
|
2251
2271
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2252
2272
|
created?: (() => void) | (() => void)[];
|
|
@@ -2442,6 +2462,10 @@ declare const DropdownTypes: () => (({
|
|
|
2442
2462
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2443
2463
|
default: any;
|
|
2444
2464
|
};
|
|
2465
|
+
optionFlagKey: {
|
|
2466
|
+
type: import("vue").PropType<string>;
|
|
2467
|
+
default: any;
|
|
2468
|
+
};
|
|
2445
2469
|
valueToCopy: {
|
|
2446
2470
|
type: import("vue").PropType<string>;
|
|
2447
2471
|
default: any;
|
|
@@ -2462,6 +2486,15 @@ declare const DropdownTypes: () => (({
|
|
|
2462
2486
|
type: import("vue").PropType<boolean>;
|
|
2463
2487
|
default: boolean;
|
|
2464
2488
|
};
|
|
2489
|
+
comparingKey: {
|
|
2490
|
+
type: import("vue").PropType<string>;
|
|
2491
|
+
default: any;
|
|
2492
|
+
};
|
|
2493
|
+
withConditions: {
|
|
2494
|
+
type: import("vue").PropType<boolean>;
|
|
2495
|
+
required: true;
|
|
2496
|
+
default: boolean;
|
|
2497
|
+
};
|
|
2465
2498
|
fullWidth: {
|
|
2466
2499
|
type: import("vue").PropType<boolean>;
|
|
2467
2500
|
default: boolean;
|
|
@@ -2482,11 +2515,6 @@ declare const DropdownTypes: () => (({
|
|
|
2482
2515
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
2483
2516
|
default: any;
|
|
2484
2517
|
};
|
|
2485
|
-
withConditions: {
|
|
2486
|
-
type: import("vue").PropType<boolean>;
|
|
2487
|
-
required: true;
|
|
2488
|
-
default: boolean;
|
|
2489
|
-
};
|
|
2490
2518
|
}>> & {
|
|
2491
2519
|
onCopyToClipboard?: () => any;
|
|
2492
2520
|
onClear?: () => any;
|
|
@@ -2679,6 +2707,10 @@ declare const DropdownTypes: () => (({
|
|
|
2679
2707
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2680
2708
|
default: any;
|
|
2681
2709
|
};
|
|
2710
|
+
optionFlagKey: {
|
|
2711
|
+
type: import("vue").PropType<string>;
|
|
2712
|
+
default: any;
|
|
2713
|
+
};
|
|
2682
2714
|
valueToCopy: {
|
|
2683
2715
|
type: import("vue").PropType<string>;
|
|
2684
2716
|
default: any;
|
|
@@ -2699,6 +2731,15 @@ declare const DropdownTypes: () => (({
|
|
|
2699
2731
|
type: import("vue").PropType<boolean>;
|
|
2700
2732
|
default: boolean;
|
|
2701
2733
|
};
|
|
2734
|
+
comparingKey: {
|
|
2735
|
+
type: import("vue").PropType<string>;
|
|
2736
|
+
default: any;
|
|
2737
|
+
};
|
|
2738
|
+
withConditions: {
|
|
2739
|
+
type: import("vue").PropType<boolean>;
|
|
2740
|
+
required: true;
|
|
2741
|
+
default: boolean;
|
|
2742
|
+
};
|
|
2702
2743
|
fullWidth: {
|
|
2703
2744
|
type: import("vue").PropType<boolean>;
|
|
2704
2745
|
default: boolean;
|
|
@@ -2719,11 +2760,6 @@ declare const DropdownTypes: () => (({
|
|
|
2719
2760
|
type: import("vue").PropType<(option: unknown) => number>;
|
|
2720
2761
|
default: any;
|
|
2721
2762
|
};
|
|
2722
|
-
withConditions: {
|
|
2723
|
-
type: import("vue").PropType<boolean>;
|
|
2724
|
-
required: true;
|
|
2725
|
-
default: boolean;
|
|
2726
|
-
};
|
|
2727
2763
|
}>> & {
|
|
2728
2764
|
onCopyToClipboard?: () => any;
|
|
2729
2765
|
onClear?: () => any;
|
|
@@ -2788,17 +2824,19 @@ declare const DropdownTypes: () => (({
|
|
|
2788
2824
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2789
2825
|
optionEndIconKey: string;
|
|
2790
2826
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2827
|
+
optionFlagKey: string;
|
|
2791
2828
|
valueToCopy: string;
|
|
2792
2829
|
disabledOptionKey: string;
|
|
2793
2830
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2794
2831
|
optionTwoLinesKey: string;
|
|
2795
2832
|
groupedOptions: boolean;
|
|
2833
|
+
comparingKey: string;
|
|
2834
|
+
withConditions: boolean;
|
|
2796
2835
|
fullWidth: boolean;
|
|
2797
2836
|
optionsListWidth: string;
|
|
2798
2837
|
statusType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
2799
2838
|
disableVirtualScroll: boolean;
|
|
2800
2839
|
overrideOptionCountCalculation: (option: unknown) => number;
|
|
2801
|
-
withConditions: boolean;
|
|
2802
2840
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2803
2841
|
$slots: {
|
|
2804
2842
|
label?(_: {}): any;
|
|
@@ -2827,11 +2865,13 @@ declare const DropdownTypes: () => (({
|
|
|
2827
2865
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2828
2866
|
optionAndIconKey: string;
|
|
2829
2867
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2868
|
+
optionFlagKey: string;
|
|
2830
2869
|
feedbackVariant: "success" | "warning" | "error";
|
|
2831
2870
|
valueToCopy: string;
|
|
2832
2871
|
statusDotType: "default" | "disabled" | "success" | "warning" | "error" | "archive";
|
|
2833
2872
|
size: "small" | "medium" | "large";
|
|
2834
2873
|
showAllSelectedText: boolean;
|
|
2874
|
+
allSelected: boolean;
|
|
2835
2875
|
onKeydown: (event: any) => void;
|
|
2836
2876
|
onClick: () => void;
|
|
2837
2877
|
};
|