@ironsource/shared-ui 2.1.11-test.6 → 2.1.11-test.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_1aa6df01_lang.css +1 -0
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_309e5351_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_562f0b72_lang.css +1 -0
- package/InlineCopy.vue_vue_type_style_index_0_scoped_ad48b61e_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_da829544_lang.css +1 -0
- package/PopoverV4.vue_vue_type_style_index_0_scoped_43b5cba4_lang.css +1 -0
- package/ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_c81a7d3e_lang.css +1 -0
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_985779f7_lang.css +1 -0
- package/components/button/v4/ToggleButtonGroupAB.vue.d.ts +3 -1
- package/components/button/v4/ToggleButtonGroupAB.vue.js +2 -2
- package/components/button/v4/ToggleButtonGroupAB.vue2.js +44 -39
- package/components/button/v4/index.d.ts +9 -3
- package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
- package/components/dateRange/v4/DateRangeV4.vue2.js +21 -22
- package/components/dropdown/v3/Dropdown.vue.d.ts +1 -1
- package/components/dropdown/v3/index.d.ts +20 -20
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +1 -1
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +7 -7
- package/components/dropdown/v4/DropdownV4.vue.d.ts +8 -1
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +128 -122
- package/components/dropdown/v4/OptionV4.vue.d.ts +5 -0
- package/components/dropdown/v4/OptionV4.vue.js +2 -2
- package/components/dropdown/v4/OptionV4.vue2.js +78 -67
- package/components/dropdown/v4/TreeDropdown.vue.d.ts +6 -1
- package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
- package/components/dropdown/v4/TreeDropdown.vue2.js +151 -116
- package/components/dropdown/v4/index.d.ts +112 -53
- package/components/inlineCopy/InlineCopy.vue.d.ts +5 -0
- package/components/inlineCopy/InlineCopy.vue.js +2 -2
- package/components/inlineCopy/InlineCopy.vue2.js +24 -22
- package/components/inlineCopy/index.d.ts +9 -0
- package/components/popover/v4/PopoverV4.vue.d.ts +3 -1
- package/components/popover/v4/PopoverV4.vue.js +2 -2
- package/components/popover/v4/PopoverV4.vue2.js +22 -20
- package/components/popover/v4/index.d.ts +9 -3
- package/index.d.ts +278 -118
- package/index.js +1 -1
- package/mocks/options.d.ts +29 -2
- package/package.json +1 -1
- package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_7f750550_lang.css +0 -1
- package/DateRangeV4.vue_vue_type_style_index_0_scoped_f81413ec_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_e899ec7a_lang.css +0 -1
- package/InlineCopy.vue_vue_type_style_index_0_scoped_893a203c_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_4070942a_lang.css +0 -1
- package/PopoverV4.vue_vue_type_style_index_0_scoped_74bbce13_lang.css +0 -1
- package/ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_9d9e51c0_lang.css +0 -1
- package/TreeDropdown.vue_vue_type_style_index_0_scoped_6ac5f602_lang.css +0 -1
|
@@ -606,6 +606,7 @@ declare const DropdownTypes: () => (({
|
|
|
606
606
|
open: boolean;
|
|
607
607
|
mandatory: boolean;
|
|
608
608
|
loading: boolean;
|
|
609
|
+
valueToCopy: string;
|
|
609
610
|
options: unknown[];
|
|
610
611
|
singleAppSelection: boolean;
|
|
611
612
|
placeholder: string;
|
|
@@ -616,7 +617,6 @@ declare const DropdownTypes: () => (({
|
|
|
616
617
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
617
618
|
optionEndIconKey: string;
|
|
618
619
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
619
|
-
valueToCopy: string;
|
|
620
620
|
selectedOption: any;
|
|
621
621
|
brandIconType: "android" | "ios";
|
|
622
622
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -650,6 +650,10 @@ declare const DropdownTypes: () => (({
|
|
|
650
650
|
type: import("vue").PropType<boolean>;
|
|
651
651
|
default: boolean;
|
|
652
652
|
};
|
|
653
|
+
valueToCopy: {
|
|
654
|
+
type: import("vue").PropType<string>;
|
|
655
|
+
default: any;
|
|
656
|
+
};
|
|
653
657
|
options: {
|
|
654
658
|
type: import("vue").PropType<unknown[]>;
|
|
655
659
|
default: any;
|
|
@@ -694,10 +698,6 @@ declare const DropdownTypes: () => (({
|
|
|
694
698
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
695
699
|
default: any;
|
|
696
700
|
};
|
|
697
|
-
valueToCopy: {
|
|
698
|
-
type: import("vue").PropType<string>;
|
|
699
|
-
default: any;
|
|
700
|
-
};
|
|
701
701
|
selectedOption: {
|
|
702
702
|
type: import("vue").PropType<unknown>;
|
|
703
703
|
default: any;
|
|
@@ -709,7 +709,7 @@ declare const DropdownTypes: () => (({
|
|
|
709
709
|
}>> & {
|
|
710
710
|
onClick?: () => any;
|
|
711
711
|
onCopyToClipboard?: () => any;
|
|
712
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
712
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "testId" | "disabled" | "size" | "open" | "mandatory" | "loading" | "valueToCopy" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "selectedOption" | "brandIconType">;
|
|
713
713
|
$attrs: {
|
|
714
714
|
[x: string]: unknown;
|
|
715
715
|
};
|
|
@@ -754,6 +754,10 @@ declare const DropdownTypes: () => (({
|
|
|
754
754
|
type: import("vue").PropType<boolean>;
|
|
755
755
|
default: boolean;
|
|
756
756
|
};
|
|
757
|
+
valueToCopy: {
|
|
758
|
+
type: import("vue").PropType<string>;
|
|
759
|
+
default: any;
|
|
760
|
+
};
|
|
757
761
|
options: {
|
|
758
762
|
type: import("vue").PropType<unknown[]>;
|
|
759
763
|
default: any;
|
|
@@ -798,10 +802,6 @@ declare const DropdownTypes: () => (({
|
|
|
798
802
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
799
803
|
default: any;
|
|
800
804
|
};
|
|
801
|
-
valueToCopy: {
|
|
802
|
-
type: import("vue").PropType<string>;
|
|
803
|
-
default: any;
|
|
804
|
-
};
|
|
805
805
|
selectedOption: {
|
|
806
806
|
type: import("vue").PropType<unknown>;
|
|
807
807
|
default: any;
|
|
@@ -824,6 +824,7 @@ declare const DropdownTypes: () => (({
|
|
|
824
824
|
open: boolean;
|
|
825
825
|
mandatory: boolean;
|
|
826
826
|
loading: boolean;
|
|
827
|
+
valueToCopy: string;
|
|
827
828
|
options: unknown[];
|
|
828
829
|
singleAppSelection: boolean;
|
|
829
830
|
placeholder: string;
|
|
@@ -834,7 +835,6 @@ declare const DropdownTypes: () => (({
|
|
|
834
835
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
835
836
|
optionEndIconKey: string;
|
|
836
837
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
837
|
-
valueToCopy: string;
|
|
838
838
|
selectedOption: any;
|
|
839
839
|
brandIconType: "android" | "ios";
|
|
840
840
|
}, {}, string> & {
|
|
@@ -888,6 +888,10 @@ declare const DropdownTypes: () => (({
|
|
|
888
888
|
type: import("vue").PropType<boolean>;
|
|
889
889
|
default: boolean;
|
|
890
890
|
};
|
|
891
|
+
valueToCopy: {
|
|
892
|
+
type: import("vue").PropType<string>;
|
|
893
|
+
default: any;
|
|
894
|
+
};
|
|
891
895
|
options: {
|
|
892
896
|
type: import("vue").PropType<unknown[]>;
|
|
893
897
|
default: any;
|
|
@@ -932,10 +936,6 @@ declare const DropdownTypes: () => (({
|
|
|
932
936
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
933
937
|
default: any;
|
|
934
938
|
};
|
|
935
|
-
valueToCopy: {
|
|
936
|
-
type: import("vue").PropType<string>;
|
|
937
|
-
default: any;
|
|
938
|
-
};
|
|
939
939
|
selectedOption: {
|
|
940
940
|
type: import("vue").PropType<unknown>;
|
|
941
941
|
default: any;
|
|
@@ -982,6 +982,10 @@ declare const DropdownTypes: () => (({
|
|
|
982
982
|
type: import("vue").PropType<boolean>;
|
|
983
983
|
default: boolean;
|
|
984
984
|
};
|
|
985
|
+
valueToCopy: {
|
|
986
|
+
type: import("vue").PropType<string>;
|
|
987
|
+
default: any;
|
|
988
|
+
};
|
|
985
989
|
options: {
|
|
986
990
|
type: import("vue").PropType<unknown[]>;
|
|
987
991
|
default: any;
|
|
@@ -1026,10 +1030,6 @@ declare const DropdownTypes: () => (({
|
|
|
1026
1030
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1027
1031
|
default: any;
|
|
1028
1032
|
};
|
|
1029
|
-
valueToCopy: {
|
|
1030
|
-
type: import("vue").PropType<string>;
|
|
1031
|
-
default: any;
|
|
1032
|
-
};
|
|
1033
1033
|
selectedOption: {
|
|
1034
1034
|
type: import("vue").PropType<unknown>;
|
|
1035
1035
|
default: any;
|
|
@@ -1052,6 +1052,7 @@ declare const DropdownTypes: () => (({
|
|
|
1052
1052
|
open: boolean;
|
|
1053
1053
|
mandatory: boolean;
|
|
1054
1054
|
loading: boolean;
|
|
1055
|
+
valueToCopy: string;
|
|
1055
1056
|
options: unknown[];
|
|
1056
1057
|
singleAppSelection: boolean;
|
|
1057
1058
|
placeholder: string;
|
|
@@ -1062,7 +1063,6 @@ declare const DropdownTypes: () => (({
|
|
|
1062
1063
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1063
1064
|
optionEndIconKey: string;
|
|
1064
1065
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1065
|
-
valueToCopy: string;
|
|
1066
1066
|
selectedOption: any;
|
|
1067
1067
|
brandIconType: "android" | "ios";
|
|
1068
1068
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
@@ -1091,6 +1091,7 @@ declare const DropdownTypes: () => (({
|
|
|
1091
1091
|
iconKey: string;
|
|
1092
1092
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1093
1093
|
endIconKey: string;
|
|
1094
|
+
endTextIconKey: string;
|
|
1094
1095
|
toolTipPlacement: "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";
|
|
1095
1096
|
treeMainOption: boolean;
|
|
1096
1097
|
treeMainOptionExpanded: boolean;
|
|
@@ -1157,6 +1158,10 @@ declare const DropdownTypes: () => (({
|
|
|
1157
1158
|
type: import("vue").PropType<string>;
|
|
1158
1159
|
default: any;
|
|
1159
1160
|
};
|
|
1161
|
+
endTextIconKey: {
|
|
1162
|
+
type: import("vue").PropType<string>;
|
|
1163
|
+
default: any;
|
|
1164
|
+
};
|
|
1160
1165
|
toolTipPlacement: {
|
|
1161
1166
|
type: import("vue").PropType<"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">;
|
|
1162
1167
|
default: string;
|
|
@@ -1182,7 +1187,7 @@ declare const DropdownTypes: () => (({
|
|
|
1182
1187
|
};
|
|
1183
1188
|
}>> & {
|
|
1184
1189
|
onToggleTreeCollapse?: (option: unknown) => any;
|
|
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">;
|
|
1190
|
+
} & 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">;
|
|
1186
1191
|
$attrs: {
|
|
1187
1192
|
[x: string]: unknown;
|
|
1188
1193
|
};
|
|
@@ -1257,6 +1262,10 @@ declare const DropdownTypes: () => (({
|
|
|
1257
1262
|
type: import("vue").PropType<string>;
|
|
1258
1263
|
default: any;
|
|
1259
1264
|
};
|
|
1265
|
+
endTextIconKey: {
|
|
1266
|
+
type: import("vue").PropType<string>;
|
|
1267
|
+
default: any;
|
|
1268
|
+
};
|
|
1260
1269
|
toolTipPlacement: {
|
|
1261
1270
|
type: import("vue").PropType<"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">;
|
|
1262
1271
|
default: string;
|
|
@@ -1300,6 +1309,7 @@ declare const DropdownTypes: () => (({
|
|
|
1300
1309
|
iconKey: string;
|
|
1301
1310
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1302
1311
|
endIconKey: string;
|
|
1312
|
+
endTextIconKey: string;
|
|
1303
1313
|
toolTipPlacement: "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";
|
|
1304
1314
|
treeMainOption: boolean;
|
|
1305
1315
|
treeMainOptionExpanded: boolean;
|
|
@@ -1386,6 +1396,10 @@ declare const DropdownTypes: () => (({
|
|
|
1386
1396
|
type: import("vue").PropType<string>;
|
|
1387
1397
|
default: any;
|
|
1388
1398
|
};
|
|
1399
|
+
endTextIconKey: {
|
|
1400
|
+
type: import("vue").PropType<string>;
|
|
1401
|
+
default: any;
|
|
1402
|
+
};
|
|
1389
1403
|
toolTipPlacement: {
|
|
1390
1404
|
type: import("vue").PropType<"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">;
|
|
1391
1405
|
default: string;
|
|
@@ -1476,6 +1490,10 @@ declare const DropdownTypes: () => (({
|
|
|
1476
1490
|
type: import("vue").PropType<string>;
|
|
1477
1491
|
default: any;
|
|
1478
1492
|
};
|
|
1493
|
+
endTextIconKey: {
|
|
1494
|
+
type: import("vue").PropType<string>;
|
|
1495
|
+
default: any;
|
|
1496
|
+
};
|
|
1479
1497
|
toolTipPlacement: {
|
|
1480
1498
|
type: import("vue").PropType<"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">;
|
|
1481
1499
|
default: string;
|
|
@@ -1519,6 +1537,7 @@ declare const DropdownTypes: () => (({
|
|
|
1519
1537
|
iconKey: string;
|
|
1520
1538
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1521
1539
|
endIconKey: string;
|
|
1540
|
+
endTextIconKey: string;
|
|
1522
1541
|
toolTipPlacement: "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";
|
|
1523
1542
|
treeMainOption: boolean;
|
|
1524
1543
|
treeMainOptionExpanded: boolean;
|
|
@@ -1670,6 +1689,7 @@ declare const DropdownTypes: () => (({
|
|
|
1670
1689
|
skidding: number;
|
|
1671
1690
|
modelValue: any;
|
|
1672
1691
|
selected: any;
|
|
1692
|
+
valueToCopy: string;
|
|
1673
1693
|
onClear: () => void;
|
|
1674
1694
|
placeholder: string;
|
|
1675
1695
|
multi: boolean;
|
|
@@ -1697,8 +1717,8 @@ declare const DropdownTypes: () => (({
|
|
|
1697
1717
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1698
1718
|
optionEndIconKey: string;
|
|
1699
1719
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
1720
|
+
optionsEndTextIconKey: string;
|
|
1700
1721
|
optionFlagKey: string;
|
|
1701
|
-
valueToCopy: string;
|
|
1702
1722
|
disabledOptionKey: string;
|
|
1703
1723
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
1704
1724
|
optionTwoLinesKey: string;
|
|
@@ -1770,6 +1790,10 @@ declare const DropdownTypes: () => (({
|
|
|
1770
1790
|
type: import("vue").PropType<unknown>;
|
|
1771
1791
|
default: any;
|
|
1772
1792
|
};
|
|
1793
|
+
valueToCopy: {
|
|
1794
|
+
type: import("vue").PropType<string>;
|
|
1795
|
+
default: any;
|
|
1796
|
+
};
|
|
1773
1797
|
options: {
|
|
1774
1798
|
type: import("vue").PropType<unknown[]>;
|
|
1775
1799
|
required: true;
|
|
@@ -1886,11 +1910,11 @@ declare const DropdownTypes: () => (({
|
|
|
1886
1910
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
1887
1911
|
default: any;
|
|
1888
1912
|
};
|
|
1889
|
-
|
|
1913
|
+
optionsEndTextIconKey: {
|
|
1890
1914
|
type: import("vue").PropType<string>;
|
|
1891
1915
|
default: any;
|
|
1892
1916
|
};
|
|
1893
|
-
|
|
1917
|
+
optionFlagKey: {
|
|
1894
1918
|
type: import("vue").PropType<string>;
|
|
1895
1919
|
default: any;
|
|
1896
1920
|
};
|
|
@@ -1953,7 +1977,7 @@ declare const DropdownTypes: () => (({
|
|
|
1953
1977
|
onOnsearch?: (value: string) => any;
|
|
1954
1978
|
onOpened?: () => any;
|
|
1955
1979
|
onClosed?: () => any;
|
|
1956
|
-
} & 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" | "
|
|
1980
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "theme" | "testId" | "placement" | "disabled" | "distance" | "container" | "popperClass" | "size" | "flip" | "mandatory" | "skidding" | "modelValue" | "selected" | "valueToCopy" | "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" | "optionsEndTextIconKey" | "optionFlagKey" | "disabledOptionKey" | "optionTwoLinesVariant" | "optionTwoLinesKey" | "groupedOptions" | "comparingKey" | "withConditions" | "customNumberOfDisplayedOptions" | "fullWidth" | "optionsListWidth" | "statusType" | "disableVirtualScroll" | "overrideOptionCountCalculation">;
|
|
1957
1981
|
$attrs: {
|
|
1958
1982
|
[x: string]: unknown;
|
|
1959
1983
|
};
|
|
@@ -2026,6 +2050,10 @@ declare const DropdownTypes: () => (({
|
|
|
2026
2050
|
type: import("vue").PropType<unknown>;
|
|
2027
2051
|
default: any;
|
|
2028
2052
|
};
|
|
2053
|
+
valueToCopy: {
|
|
2054
|
+
type: import("vue").PropType<string>;
|
|
2055
|
+
default: any;
|
|
2056
|
+
};
|
|
2029
2057
|
options: {
|
|
2030
2058
|
type: import("vue").PropType<unknown[]>;
|
|
2031
2059
|
required: true;
|
|
@@ -2142,11 +2170,11 @@ declare const DropdownTypes: () => (({
|
|
|
2142
2170
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2143
2171
|
default: any;
|
|
2144
2172
|
};
|
|
2145
|
-
|
|
2173
|
+
optionsEndTextIconKey: {
|
|
2146
2174
|
type: import("vue").PropType<string>;
|
|
2147
2175
|
default: any;
|
|
2148
2176
|
};
|
|
2149
|
-
|
|
2177
|
+
optionFlagKey: {
|
|
2150
2178
|
type: import("vue").PropType<string>;
|
|
2151
2179
|
default: any;
|
|
2152
2180
|
};
|
|
@@ -2236,6 +2264,7 @@ declare const DropdownTypes: () => (({
|
|
|
2236
2264
|
skidding: number;
|
|
2237
2265
|
modelValue: any;
|
|
2238
2266
|
selected: any;
|
|
2267
|
+
valueToCopy: string;
|
|
2239
2268
|
onClear: () => void;
|
|
2240
2269
|
placeholder: string;
|
|
2241
2270
|
multi: boolean;
|
|
@@ -2263,8 +2292,8 @@ declare const DropdownTypes: () => (({
|
|
|
2263
2292
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2264
2293
|
optionEndIconKey: string;
|
|
2265
2294
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2295
|
+
optionsEndTextIconKey: string;
|
|
2266
2296
|
optionFlagKey: string;
|
|
2267
|
-
valueToCopy: string;
|
|
2268
2297
|
disabledOptionKey: string;
|
|
2269
2298
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2270
2299
|
optionTwoLinesKey: string;
|
|
@@ -2356,6 +2385,10 @@ declare const DropdownTypes: () => (({
|
|
|
2356
2385
|
type: import("vue").PropType<unknown>;
|
|
2357
2386
|
default: any;
|
|
2358
2387
|
};
|
|
2388
|
+
valueToCopy: {
|
|
2389
|
+
type: import("vue").PropType<string>;
|
|
2390
|
+
default: any;
|
|
2391
|
+
};
|
|
2359
2392
|
options: {
|
|
2360
2393
|
type: import("vue").PropType<unknown[]>;
|
|
2361
2394
|
required: true;
|
|
@@ -2472,11 +2505,11 @@ declare const DropdownTypes: () => (({
|
|
|
2472
2505
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2473
2506
|
default: any;
|
|
2474
2507
|
};
|
|
2475
|
-
|
|
2508
|
+
optionsEndTextIconKey: {
|
|
2476
2509
|
type: import("vue").PropType<string>;
|
|
2477
2510
|
default: any;
|
|
2478
2511
|
};
|
|
2479
|
-
|
|
2512
|
+
optionFlagKey: {
|
|
2480
2513
|
type: import("vue").PropType<string>;
|
|
2481
2514
|
default: any;
|
|
2482
2515
|
};
|
|
@@ -2605,6 +2638,10 @@ declare const DropdownTypes: () => (({
|
|
|
2605
2638
|
type: import("vue").PropType<unknown>;
|
|
2606
2639
|
default: any;
|
|
2607
2640
|
};
|
|
2641
|
+
valueToCopy: {
|
|
2642
|
+
type: import("vue").PropType<string>;
|
|
2643
|
+
default: any;
|
|
2644
|
+
};
|
|
2608
2645
|
options: {
|
|
2609
2646
|
type: import("vue").PropType<unknown[]>;
|
|
2610
2647
|
required: true;
|
|
@@ -2721,11 +2758,11 @@ declare const DropdownTypes: () => (({
|
|
|
2721
2758
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
2722
2759
|
default: any;
|
|
2723
2760
|
};
|
|
2724
|
-
|
|
2761
|
+
optionsEndTextIconKey: {
|
|
2725
2762
|
type: import("vue").PropType<string>;
|
|
2726
2763
|
default: any;
|
|
2727
2764
|
};
|
|
2728
|
-
|
|
2765
|
+
optionFlagKey: {
|
|
2729
2766
|
type: import("vue").PropType<string>;
|
|
2730
2767
|
default: any;
|
|
2731
2768
|
};
|
|
@@ -2815,6 +2852,7 @@ declare const DropdownTypes: () => (({
|
|
|
2815
2852
|
skidding: number;
|
|
2816
2853
|
modelValue: any;
|
|
2817
2854
|
selected: any;
|
|
2855
|
+
valueToCopy: string;
|
|
2818
2856
|
onClear: () => void;
|
|
2819
2857
|
placeholder: string;
|
|
2820
2858
|
multi: boolean;
|
|
@@ -2842,8 +2880,8 @@ declare const DropdownTypes: () => (({
|
|
|
2842
2880
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2843
2881
|
optionEndIconKey: string;
|
|
2844
2882
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2883
|
+
optionsEndTextIconKey: string;
|
|
2845
2884
|
optionFlagKey: string;
|
|
2846
|
-
valueToCopy: string;
|
|
2847
2885
|
disabledOptionKey: string;
|
|
2848
2886
|
optionTwoLinesVariant: "horizontal" | "vertical";
|
|
2849
2887
|
optionTwoLinesKey: string;
|
|
@@ -2884,6 +2922,7 @@ declare const DropdownTypes: () => (({
|
|
|
2884
2922
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2885
2923
|
optionAndIconKey: string;
|
|
2886
2924
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
2925
|
+
optionsEndTextIconKey: string;
|
|
2887
2926
|
optionFlagKey: string;
|
|
2888
2927
|
feedbackVariant: "success" | "warning" | "error";
|
|
2889
2928
|
valueToCopy: string;
|
|
@@ -2900,6 +2939,7 @@ declare const DropdownTypes: () => (({
|
|
|
2900
2939
|
"input-list"?(_: {
|
|
2901
2940
|
open: true;
|
|
2902
2941
|
}): any;
|
|
2942
|
+
"select-all"?(_: {}): any;
|
|
2903
2943
|
"group-option"?(_: {}): any;
|
|
2904
2944
|
default?(_: {
|
|
2905
2945
|
option: unknown;
|
|
@@ -2996,6 +3036,7 @@ declare const DropdownTypes: () => (({
|
|
|
2996
3036
|
disabled: boolean;
|
|
2997
3037
|
size: "small" | "medium" | "large";
|
|
2998
3038
|
selected: unknown[];
|
|
3039
|
+
valueToCopy: string;
|
|
2999
3040
|
placeholder: string;
|
|
3000
3041
|
inlineSearchPlaceholder: string;
|
|
3001
3042
|
optionNameKey: string;
|
|
@@ -3004,8 +3045,8 @@ declare const DropdownTypes: () => (({
|
|
|
3004
3045
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3005
3046
|
optionEndIconKey: string;
|
|
3006
3047
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3007
|
-
valueToCopy: string;
|
|
3008
3048
|
disabledOptionKey: string;
|
|
3049
|
+
optionEndTextIconKey: string;
|
|
3009
3050
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
3010
3051
|
testId: {
|
|
3011
3052
|
type: import("vue").PropType<string>;
|
|
@@ -3026,6 +3067,10 @@ declare const DropdownTypes: () => (({
|
|
|
3026
3067
|
type: import("vue").PropType<unknown[]>;
|
|
3027
3068
|
default: any;
|
|
3028
3069
|
};
|
|
3070
|
+
valueToCopy: {
|
|
3071
|
+
type: import("vue").PropType<string>;
|
|
3072
|
+
default: any;
|
|
3073
|
+
};
|
|
3029
3074
|
options: {
|
|
3030
3075
|
type: import("vue").PropType<unknown[]>;
|
|
3031
3076
|
required: true;
|
|
@@ -3066,14 +3111,14 @@ declare const DropdownTypes: () => (({
|
|
|
3066
3111
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3067
3112
|
default: any;
|
|
3068
3113
|
};
|
|
3069
|
-
valueToCopy: {
|
|
3070
|
-
type: import("vue").PropType<string>;
|
|
3071
|
-
default: any;
|
|
3072
|
-
};
|
|
3073
3114
|
disabledOptionKey: {
|
|
3074
3115
|
type: import("vue").PropType<string>;
|
|
3075
3116
|
default: string;
|
|
3076
3117
|
};
|
|
3118
|
+
optionEndTextIconKey: {
|
|
3119
|
+
type: import("vue").PropType<string>;
|
|
3120
|
+
default: any;
|
|
3121
|
+
};
|
|
3077
3122
|
optionChildrenKey: {
|
|
3078
3123
|
type: import("vue").PropType<string>;
|
|
3079
3124
|
required: true;
|
|
@@ -3089,7 +3134,7 @@ declare const DropdownTypes: () => (({
|
|
|
3089
3134
|
}>> & {
|
|
3090
3135
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
3091
3136
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
3092
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "
|
|
3137
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "testId" | "disabled" | "size" | "selected" | "valueToCopy" | "placeholder" | "inlineSearchPlaceholder" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "disabledOptionKey" | "optionEndTextIconKey">;
|
|
3093
3138
|
$attrs: {
|
|
3094
3139
|
[x: string]: unknown;
|
|
3095
3140
|
};
|
|
@@ -3123,6 +3168,10 @@ declare const DropdownTypes: () => (({
|
|
|
3123
3168
|
type: import("vue").PropType<unknown[]>;
|
|
3124
3169
|
default: any;
|
|
3125
3170
|
};
|
|
3171
|
+
valueToCopy: {
|
|
3172
|
+
type: import("vue").PropType<string>;
|
|
3173
|
+
default: any;
|
|
3174
|
+
};
|
|
3126
3175
|
options: {
|
|
3127
3176
|
type: import("vue").PropType<unknown[]>;
|
|
3128
3177
|
required: true;
|
|
@@ -3163,14 +3212,14 @@ declare const DropdownTypes: () => (({
|
|
|
3163
3212
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3164
3213
|
default: any;
|
|
3165
3214
|
};
|
|
3166
|
-
valueToCopy: {
|
|
3167
|
-
type: import("vue").PropType<string>;
|
|
3168
|
-
default: any;
|
|
3169
|
-
};
|
|
3170
3215
|
disabledOptionKey: {
|
|
3171
3216
|
type: import("vue").PropType<string>;
|
|
3172
3217
|
default: string;
|
|
3173
3218
|
};
|
|
3219
|
+
optionEndTextIconKey: {
|
|
3220
|
+
type: import("vue").PropType<string>;
|
|
3221
|
+
default: any;
|
|
3222
|
+
};
|
|
3174
3223
|
optionChildrenKey: {
|
|
3175
3224
|
type: import("vue").PropType<string>;
|
|
3176
3225
|
required: true;
|
|
@@ -3194,6 +3243,7 @@ declare const DropdownTypes: () => (({
|
|
|
3194
3243
|
disabled: boolean;
|
|
3195
3244
|
size: "small" | "medium" | "large";
|
|
3196
3245
|
selected: unknown[];
|
|
3246
|
+
valueToCopy: string;
|
|
3197
3247
|
placeholder: string;
|
|
3198
3248
|
inlineSearchPlaceholder: string;
|
|
3199
3249
|
optionNameKey: string;
|
|
@@ -3202,8 +3252,8 @@ declare const DropdownTypes: () => (({
|
|
|
3202
3252
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3203
3253
|
optionEndIconKey: string;
|
|
3204
3254
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3205
|
-
valueToCopy: string;
|
|
3206
3255
|
disabledOptionKey: string;
|
|
3256
|
+
optionEndTextIconKey: string;
|
|
3207
3257
|
}, {}, string> & {
|
|
3208
3258
|
beforeCreate?: (() => void) | (() => void)[];
|
|
3209
3259
|
created?: (() => void) | (() => void)[];
|
|
@@ -3244,6 +3294,10 @@ declare const DropdownTypes: () => (({
|
|
|
3244
3294
|
type: import("vue").PropType<unknown[]>;
|
|
3245
3295
|
default: any;
|
|
3246
3296
|
};
|
|
3297
|
+
valueToCopy: {
|
|
3298
|
+
type: import("vue").PropType<string>;
|
|
3299
|
+
default: any;
|
|
3300
|
+
};
|
|
3247
3301
|
options: {
|
|
3248
3302
|
type: import("vue").PropType<unknown[]>;
|
|
3249
3303
|
required: true;
|
|
@@ -3284,14 +3338,14 @@ declare const DropdownTypes: () => (({
|
|
|
3284
3338
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3285
3339
|
default: any;
|
|
3286
3340
|
};
|
|
3287
|
-
valueToCopy: {
|
|
3288
|
-
type: import("vue").PropType<string>;
|
|
3289
|
-
default: any;
|
|
3290
|
-
};
|
|
3291
3341
|
disabledOptionKey: {
|
|
3292
3342
|
type: import("vue").PropType<string>;
|
|
3293
3343
|
default: string;
|
|
3294
3344
|
};
|
|
3345
|
+
optionEndTextIconKey: {
|
|
3346
|
+
type: import("vue").PropType<string>;
|
|
3347
|
+
default: any;
|
|
3348
|
+
};
|
|
3295
3349
|
optionChildrenKey: {
|
|
3296
3350
|
type: import("vue").PropType<string>;
|
|
3297
3351
|
required: true;
|
|
@@ -3331,6 +3385,10 @@ declare const DropdownTypes: () => (({
|
|
|
3331
3385
|
type: import("vue").PropType<unknown[]>;
|
|
3332
3386
|
default: any;
|
|
3333
3387
|
};
|
|
3388
|
+
valueToCopy: {
|
|
3389
|
+
type: import("vue").PropType<string>;
|
|
3390
|
+
default: any;
|
|
3391
|
+
};
|
|
3334
3392
|
options: {
|
|
3335
3393
|
type: import("vue").PropType<unknown[]>;
|
|
3336
3394
|
required: true;
|
|
@@ -3371,14 +3429,14 @@ declare const DropdownTypes: () => (({
|
|
|
3371
3429
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate">;
|
|
3372
3430
|
default: any;
|
|
3373
3431
|
};
|
|
3374
|
-
valueToCopy: {
|
|
3375
|
-
type: import("vue").PropType<string>;
|
|
3376
|
-
default: any;
|
|
3377
|
-
};
|
|
3378
3432
|
disabledOptionKey: {
|
|
3379
3433
|
type: import("vue").PropType<string>;
|
|
3380
3434
|
default: string;
|
|
3381
3435
|
};
|
|
3436
|
+
optionEndTextIconKey: {
|
|
3437
|
+
type: import("vue").PropType<string>;
|
|
3438
|
+
default: any;
|
|
3439
|
+
};
|
|
3382
3440
|
optionChildrenKey: {
|
|
3383
3441
|
type: import("vue").PropType<string>;
|
|
3384
3442
|
required: true;
|
|
@@ -3402,6 +3460,7 @@ declare const DropdownTypes: () => (({
|
|
|
3402
3460
|
disabled: boolean;
|
|
3403
3461
|
size: "small" | "medium" | "large";
|
|
3404
3462
|
selected: unknown[];
|
|
3463
|
+
valueToCopy: string;
|
|
3405
3464
|
placeholder: string;
|
|
3406
3465
|
inlineSearchPlaceholder: string;
|
|
3407
3466
|
optionNameKey: string;
|
|
@@ -3410,8 +3469,8 @@ declare const DropdownTypes: () => (({
|
|
|
3410
3469
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3411
3470
|
optionEndIconKey: string;
|
|
3412
3471
|
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test" | "ad-networks" | "ad-networks/flat" | "content-rate";
|
|
3413
|
-
valueToCopy: string;
|
|
3414
3472
|
disabledOptionKey: string;
|
|
3473
|
+
optionEndTextIconKey: string;
|
|
3415
3474
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3416
3475
|
$slots: {
|
|
3417
3476
|
"trigger-end-icon"?(_: {}): any;
|
|
@@ -8,6 +8,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
8
8
|
tooltipHeader?: string;
|
|
9
9
|
tooltipText?: string;
|
|
10
10
|
tooltipPlacement?: TooltipPositions;
|
|
11
|
+
valueToCopy?: string;
|
|
11
12
|
}>, {
|
|
12
13
|
size: string;
|
|
13
14
|
text: string;
|
|
@@ -17,6 +18,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
18
|
tooltipHeader: string;
|
|
18
19
|
tooltipText: string;
|
|
19
20
|
tooltipPlacement: string;
|
|
21
|
+
valueToCopy: string;
|
|
20
22
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
23
|
copy: () => void;
|
|
22
24
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -28,6 +30,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
28
30
|
tooltipHeader?: string;
|
|
29
31
|
tooltipText?: string;
|
|
30
32
|
tooltipPlacement?: TooltipPositions;
|
|
33
|
+
valueToCopy?: string;
|
|
31
34
|
}>, {
|
|
32
35
|
size: string;
|
|
33
36
|
text: string;
|
|
@@ -37,6 +40,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
37
40
|
tooltipHeader: string;
|
|
38
41
|
tooltipText: string;
|
|
39
42
|
tooltipPlacement: string;
|
|
43
|
+
valueToCopy: string;
|
|
40
44
|
}>>> & {
|
|
41
45
|
onCopy?: () => any;
|
|
42
46
|
}, {
|
|
@@ -48,6 +52,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
48
52
|
hideTextValue: boolean;
|
|
49
53
|
iconSize: string;
|
|
50
54
|
tooltipHeader: string;
|
|
55
|
+
valueToCopy: string;
|
|
51
56
|
}>;
|
|
52
57
|
export default _default;
|
|
53
58
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./InlineCopy.vue2.js";
|
|
2
2
|
/* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../InlineCopy.
|
|
4
|
-
const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-
|
|
3
|
+
// import "../../InlineCopy.vue_vue_type_style_index_0_scoped_ad48b61e_lang.css"; //*');
|
|
4
|
+
const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-ad48b61e"]]);
|
|
5
5
|
export {
|
|
6
6
|
t as default
|
|
7
7
|
};
|