@ironsource/shared-ui 2.1.6-test.2 → 2.1.6-test.4
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/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_39c47ad1_lang.css +1 -0
- package/AppHeader.vue_vue_type_style_index_0_scoped_538ccdc6_lang.css +1 -0
- package/Autocomplete.vue_vue_type_style_index_0_scoped_a7bfd237_lang.css +1 -0
- package/CalendarMonth.vue_vue_type_style_index_0_scoped_acd3440c_lang.css +1 -0
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_a8fdae89_lang.css +1 -0
- package/DataGrid.vue_vue_type_style_index_0_scoped_6df3b70f_lang.css +1 -0
- package/DatePicker.vue_vue_type_style_index_0_scoped_67b44cbe_lang.css +1 -0
- package/DatePickerMonth.vue_vue_type_style_index_0_scoped_929d3028_lang.css +1 -0
- package/DateRange.vue_vue_type_style_index_0_scoped_70e316e9_lang.css +1 -0
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_ad524750_lang.css +1 -0
- package/DialogV4.vue_vue_type_style_index_0_scoped_09c488cf_lang.css +1 -0
- package/Dropdown.vue_vue_type_style_index_0_scoped_aaa8c4bb_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_0_scoped_0363db63_lang.css +1 -0
- package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
- package/FieldLabel.vue_vue_type_style_index_0_scoped_96ee1c98_lang.css +1 -0
- package/{FormCard.vue_vue_type_style_index_0_scoped_ef8b4e81_lang.css → FormCard.vue_vue_type_style_index_0_scoped_52ade67c_lang.css} +1 -1
- package/InlineCopy.vue_vue_type_style_index_0_scoped_6a7b3795_lang.css +1 -0
- package/MultiBar.vue_vue_type_style_index_0_scoped_71617643_lang.css +1 -0
- package/OptionV4.vue_vue_type_style_index_0_scoped_e0c24b6a_lang.css +1 -0
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_8199b662_lang.css +1 -0
- package/TextField.vue_vue_type_style_index_0_scoped_a6457440_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_0_scoped_fcdb9d02_lang.css +1 -0
- package/components/appHeader/AppHeader.vue.d.ts +6 -2
- package/components/appHeader/AppHeader.vue.js +2 -2
- package/components/appHeader/AppHeader.vue2.js +30 -28
- package/components/appHeader/index.d.ts +6 -2
- package/components/autocomplete/Autocomplete.vue.d.ts +5 -0
- package/components/autocomplete/Autocomplete.vue.js +3 -3
- package/components/autocomplete/Autocomplete.vue2.js +82 -61
- package/components/autocomplete/index.d.ts +20 -1
- package/components/datePicker/common/DatePicker.common.d.ts +11 -0
- package/components/datePicker/common/DatePicker.common.js +52 -0
- package/components/datePicker/common/DatePickerMonth.common.d.ts +85 -0
- package/components/datePicker/common/DatePickerMonth.common.js +66 -0
- package/components/datePicker/{DatePicker.vue.d.ts → v3/DatePicker.vue.d.ts} +1 -1
- package/components/datePicker/v3/DatePicker.vue.js +7 -0
- package/components/datePicker/v3/DatePicker.vue2.js +69 -0
- package/components/datePicker/v3/DatePickerMonth.vue.js +7 -0
- package/components/datePicker/v3/DatePickerMonth.vue2.js +40 -0
- package/components/datePicker/{index.d.ts → v3/index.d.ts} +1 -1
- package/components/datePicker/v4/DatePickerMonthV4.vue.d.ts +53 -0
- package/components/datePicker/v4/DatePickerV4.vue.d.ts +67 -0
- package/components/datePicker/v4/index.d.ts +184 -0
- package/components/dateRange/common/CalendarMonth.common.d.ts +17 -0
- package/components/dateRange/common/CalendarMonth.common.js +131 -0
- package/components/dateRange/common/DateRange.common.d.ts +47 -0
- package/components/dateRange/common/DateRange.common.js +265 -0
- package/components/dateRange/common/DateRangePicker.common.d.ts +3 -0
- package/components/dateRange/{CalendarMonth.vue.d.ts → v3/CalendarMonth.vue.d.ts} +1 -1
- package/components/dateRange/v3/CalendarMonth.vue.js +7 -0
- package/components/dateRange/v3/CalendarMonth.vue2.js +147 -0
- package/components/dateRange/{DateRange.vue.d.ts → v3/DateRange.vue.d.ts} +9 -9
- package/components/dateRange/v3/DateRange.vue.js +7 -0
- package/components/dateRange/v3/DateRange.vue2.js +226 -0
- package/components/dateRange/{DateRangePicker.vue.d.ts → v3/DateRangePicker.vue.d.ts} +9 -9
- package/components/dateRange/{index.d.ts → v3/index.d.ts} +21 -21
- package/components/dateRange/v4/CalendarMonthV4.vue.d.ts +75 -0
- package/components/dateRange/v4/DateRangePickerV4.vue.d.ts +115 -0
- package/components/dateRange/v4/DateRangeV4.vue.d.ts +127 -0
- package/components/dateRange/v4/index.d.ts +408 -0
- package/components/dialog/v4/DialogV4.vue.js +3 -3
- package/components/dialog/v4/DialogV4.vue2.js +67 -62
- package/components/dropdown/common/Dropdown.common.js +21 -21
- package/components/dropdown/v3/Dropdown.vue.d.ts +4 -0
- package/components/dropdown/v3/Dropdown.vue.js +4 -4
- package/components/dropdown/v3/Dropdown.vue2.js +32 -32
- package/components/dropdown/v3/index.d.ts +13 -1
- package/components/dropdown/v4/AppDropdownTrigger.vue.d.ts +2 -0
- package/components/dropdown/v4/AppDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/AppDropdownTrigger.vue2.js +16 -16
- package/components/dropdown/v4/ChipDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/ChipDropdownTrigger.vue2.js +1 -1
- package/components/dropdown/v4/DefaultDropdownTrigger.vue.js +2 -2
- package/components/dropdown/v4/DefaultDropdownTrigger.vue2.js +40 -49
- package/components/dropdown/v4/DropdownV4.vue.d.ts +16 -0
- package/components/dropdown/v4/DropdownV4.vue.js +3 -3
- package/components/dropdown/v4/DropdownV4.vue2.js +140 -128
- package/components/dropdown/v4/OptionV4.vue.d.ts +11 -0
- package/components/dropdown/v4/OptionV4.vue.js +3 -3
- package/components/dropdown/v4/OptionV4.vue2.js +61 -44
- package/components/dropdown/v4/index.d.ts +105 -4
- package/components/filtersPanel/v3/Filter.d.ts +1 -1
- package/components/forms/FormCard.vue.js +2 -2
- package/components/forms/FormCard.vue2.js +9 -9
- package/components/inlineCopy/InlineCopy.vue.d.ts +6 -2
- package/components/inlineCopy/InlineCopy.vue.js +3 -3
- package/components/inlineCopy/InlineCopy.vue2.js +23 -22
- package/components/inlineCopy/index.d.ts +6 -2
- package/components/input/v4/TextField.vue.d.ts +5 -0
- package/components/input/v4/TextField.vue.js +2 -2
- package/components/input/v4/TextField.vue2.js +43 -43
- package/components/input/v4/index.d.ts +20 -1
- package/components/multibar/MultiBar.vue.js +3 -3
- package/components/multibar/MultiBar.vue2.js +21 -21
- package/components/shared/FieldLabel.vue.js +3 -3
- package/components/shared/FieldLabel.vue2.js +9 -9
- package/components/table/v4/DataGrid.vue.d.ts +4 -0
- package/components/table/v4/DataGrid.vue.js +3 -3
- package/components/table/v4/DataGrid.vue2.js +147 -147
- package/components/table/v4/index.d.ts +14 -2
- package/components/textArea/v4/TextAreaV4.vue.js +3 -3
- package/components/textArea/v4/TextAreaV4.vue2.js +1 -1
- package/components/tooltip/v4/TooltipV4.vue.d.ts +6 -2
- package/components/tooltip/v4/TooltipV4.vue.js +2 -2
- package/components/tooltip/v4/TooltipV4.vue2.js +21 -19
- package/components/tooltip/v4/index.d.ts +17 -5
- package/index.d.ts +338 -34
- package/index.js +4 -4
- package/package.json +3 -3
- package/AppDropdownTrigger.vue_vue_type_style_index_0_scoped_0267d003_lang.css +0 -1
- package/AppHeader.vue_vue_type_style_index_0_scoped_c148fc7a_lang.css +0 -1
- package/Autocomplete.vue_vue_type_style_index_0_scoped_d2d1dc1d_lang.css +0 -1
- package/CalendarMonth.vue_vue_type_style_index_0_scoped_b2206adb_lang.css +0 -1
- package/ChipDropdownTrigger.vue_vue_type_style_index_0_scoped_889042cf_lang.css +0 -1
- package/DataGrid.vue_vue_type_style_index_0_scoped_c96fba2c_lang.css +0 -1
- package/DatePicker.vue_vue_type_style_index_0_scoped_e108ef3b_lang.css +0 -1
- package/DatePickerMonth.vue_vue_type_style_index_0_scoped_b171cdab_lang.css +0 -1
- package/DateRange.vue_vue_type_style_index_0_scoped_eb5d155e_lang.css +0 -1
- package/DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_c3033d90_lang.css +0 -1
- package/DialogV4.vue_vue_type_style_index_0_scoped_c3004ba3_lang.css +0 -1
- package/Dropdown.vue_vue_type_style_index_0_scoped_d4f8e790_lang.css +0 -1
- package/DropdownV4.vue_vue_type_style_index_0_scoped_bf8e7ff5_lang.css +0 -1
- package/FieldLabel.vue_vue_type_style_index_0_scoped_72ab1f25_lang.css +0 -1
- package/InlineCopy.vue_vue_type_style_index_0_scoped_ff9f4a0f_lang.css +0 -1
- package/MultiBar.vue_vue_type_style_index_0_scoped_b473b35e_lang.css +0 -1
- package/OptionV4.vue_vue_type_style_index_0_scoped_b8375219_lang.css +0 -1
- package/TextAreaV4.vue_vue_type_style_index_0_scoped_0336a92f_lang.css +0 -1
- package/TextField.vue_vue_type_style_index_0_scoped_01778240_lang.css +0 -1
- package/TooltipV4.vue_vue_type_style_index_0_scoped_25809092_lang.css +0 -1
- package/components/datePicker/DatePicker.vue.js +0 -7
- package/components/datePicker/DatePicker.vue2.js +0 -97
- package/components/datePicker/DatePickerMonth.vue.js +0 -7
- package/components/datePicker/DatePickerMonth.vue2.js +0 -85
- package/components/dateRange/CalendarMonth.vue.js +0 -7
- package/components/dateRange/CalendarMonth.vue2.js +0 -244
- package/components/dateRange/DateRange.vue.js +0 -7
- package/components/dateRange/DateRange.vue2.js +0 -417
- /package/components/datePicker/{DatePickerMonth.vue.d.ts → v3/DatePickerMonth.vue.d.ts} +0 -0
- /package/components/datePicker/{index.js → v3/index.js} +0 -0
- /package/components/dateRange/{DateServices.d.ts → common/DateServices.common.d.ts} +0 -0
- /package/components/dateRange/{DateServices.js → common/DateServices.common.js} +0 -0
- /package/components/dateRange/{consts.d.ts → common/consts.common.d.ts} +0 -0
- /package/components/dateRange/{consts.js → common/consts.common.js} +0 -0
- /package/components/dateRange/{index.js → v3/index.js} +0 -0
|
@@ -1,21 +1,20 @@
|
|
|
1
|
-
import "../../../DefaultDropdownTrigger.
|
|
2
|
-
import
|
|
1
|
+
import "../../../DefaultDropdownTrigger.vue_vue_type_style_index_0_scoped_ad524750_lang.css"; import { defineComponent as v, computed as r, openBlock as o, createElementBlock as a, createBlock as k, createCommentVNode as n, createElementVNode as c, mergeProps as m, unref as l, renderSlot as y, createVNode as i, withCtx as I, createTextVNode as B, toDisplayString as V } from "vue";
|
|
2
|
+
import x from "../../typography/v4/Typography.vue.js";
|
|
3
3
|
import { DropdownTestIdModifiers as u } from "../../../testids/index.js";
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import D from "
|
|
7
|
-
import
|
|
8
|
-
|
|
9
|
-
const K = { class: "default-dropdown-wrapper" }, $ = { class: "content" }, C = {
|
|
4
|
+
import h from "../../icon/v4/IconV4.vue.js";
|
|
5
|
+
import w from "../../shared/FieldLabel.vue.js";
|
|
6
|
+
import { useTestIdAttrs as D } from "../../../utils/testIds.js";
|
|
7
|
+
import A from "../../statusDot/StatusDot.vue.js";
|
|
8
|
+
const N = { class: "default-dropdown-wrapper" }, K = { class: "content" }, $ = {
|
|
10
9
|
key: 0,
|
|
11
10
|
class: "image"
|
|
12
|
-
},
|
|
11
|
+
}, C = ["src"], P = {
|
|
13
12
|
key: 1,
|
|
14
13
|
class: "start-icon"
|
|
15
14
|
}, S = {
|
|
16
15
|
key: 2,
|
|
17
16
|
class: "status-dot"
|
|
18
|
-
}, z = { class: "caret-down" },
|
|
17
|
+
}, z = { class: "caret-down" }, j = /* @__PURE__ */ v({
|
|
19
18
|
__name: "DefaultDropdownTrigger",
|
|
20
19
|
props: {
|
|
21
20
|
placeholder: { default: "Select" },
|
|
@@ -44,12 +43,12 @@ const K = { class: "default-dropdown-wrapper" }, $ = { class: "content" }, C = {
|
|
|
44
43
|
statusDotType: { default: null }
|
|
45
44
|
},
|
|
46
45
|
emits: ["click"],
|
|
47
|
-
setup(t, { emit:
|
|
48
|
-
const e = t,
|
|
46
|
+
setup(t, { emit: g }) {
|
|
47
|
+
const e = t, T = r(
|
|
49
48
|
() => e.feedbackVariant ? `state-${e.feedbackVariant}` : ""
|
|
50
|
-
),
|
|
51
|
-
|
|
52
|
-
},
|
|
49
|
+
), b = () => {
|
|
50
|
+
g("click");
|
|
51
|
+
}, p = D(e.testId, u), O = r(() => e.multi ? !Array.isArray(e.selectedOption) || !e.selectedOption?.length ? e.placeholder : e.options?.length === e.selectedOption.length ? `All selected (${e.selectedOption.length})` : e.selectedOption?.length === 1 && e.displayValue ? e.displayValue(e.selectedOption[0]) : `${e.selectedOption.length} selected` : e.selectedOption ? e.displayValue(e.selectedOption) : e.placeholder), d = r(() => {
|
|
53
52
|
if (!e.selectedOption)
|
|
54
53
|
return null;
|
|
55
54
|
if (!e.multi)
|
|
@@ -57,8 +56,8 @@ const K = { class: "default-dropdown-wrapper" }, $ = { class: "content" }, C = {
|
|
|
57
56
|
if (Array.isArray(e.selectedOption))
|
|
58
57
|
return e.selectedOption.length === 1 ? e.selectedOption[0] : null;
|
|
59
58
|
});
|
|
60
|
-
return (
|
|
61
|
-
t.label ? (
|
|
59
|
+
return (s, f) => (o(), a("div", N, [
|
|
60
|
+
t.label ? (o(), k(w, {
|
|
62
61
|
key: 0,
|
|
63
62
|
label: t.label,
|
|
64
63
|
mandatory: t.mandatory,
|
|
@@ -67,58 +66,50 @@ const K = { class: "default-dropdown-wrapper" }, $ = { class: "content" }, C = {
|
|
|
67
66
|
disabled: t.disabled,
|
|
68
67
|
"test-id": t.testId,
|
|
69
68
|
class: "dropdown-field-label"
|
|
70
|
-
}, null, 8, ["label", "mandatory", "hover-help-text", "hover-help-text-placement", "disabled", "test-id"])) :
|
|
71
|
-
c("div",
|
|
72
|
-
class: ["dropdown-trigger", [t.size, l(
|
|
73
|
-
}, l(
|
|
74
|
-
onClick:
|
|
69
|
+
}, null, 8, ["label", "mandatory", "hover-help-text", "hover-help-text-placement", "disabled", "test-id"])) : n("", !0),
|
|
70
|
+
c("div", m({
|
|
71
|
+
class: ["dropdown-trigger", [t.size, l(T), { open: t.open, disabled: t.disabled }]]
|
|
72
|
+
}, l(p)[l(u).BUTTON_WRAPPER], {
|
|
73
|
+
onClick: f[0] || (f[0] = (E) => b())
|
|
75
74
|
}), [
|
|
76
|
-
c("div",
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
t.optionImageKey ? (
|
|
75
|
+
c("div", K, [
|
|
76
|
+
s.$slots.image || l(d) && t.optionImageKey ? (o(), a("div", $, [
|
|
77
|
+
y(s.$slots, "image", {}, () => [
|
|
78
|
+
t.optionImageKey ? (o(), a("img", {
|
|
80
79
|
key: 0,
|
|
81
80
|
src: l(d)[t.optionImageKey]
|
|
82
|
-
}, null, 8,
|
|
81
|
+
}, null, 8, C)) : n("", !0)
|
|
83
82
|
], !0)
|
|
84
|
-
])) :
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
83
|
+
])) : n("", !0),
|
|
84
|
+
s.$slots["icon-start"] || l(d) && t.optionIconKey ? (o(), a("div", P, [
|
|
85
|
+
y(s.$slots, "icon-start", {}, () => [
|
|
86
|
+
i(l(h), {
|
|
88
87
|
type: t.optionIconType,
|
|
89
88
|
name: l(d)[t.optionIconKey],
|
|
90
89
|
size: "20px"
|
|
91
90
|
}, null, 8, ["type", "name"])
|
|
92
91
|
], !0)
|
|
93
|
-
])) :
|
|
94
|
-
t.statusDotType ? (
|
|
95
|
-
|
|
96
|
-
])) :
|
|
97
|
-
|
|
98
|
-
default:
|
|
99
|
-
|
|
92
|
+
])) : n("", !0),
|
|
93
|
+
t.statusDotType ? (o(), a("div", S, [
|
|
94
|
+
i(l(A), { type: t.statusDotType }, null, 8, ["type"])
|
|
95
|
+
])) : n("", !0),
|
|
96
|
+
i(l(x), m({ variant: "body1" }, l(p)[l(u).BUTTON_CONTENT], { class: "displayed-value" }), {
|
|
97
|
+
default: I(() => [
|
|
98
|
+
B(V(l(O)), 1)
|
|
100
99
|
]),
|
|
101
100
|
_: 1
|
|
102
101
|
}, 16)
|
|
103
102
|
]),
|
|
104
103
|
c("div", z, [
|
|
105
|
-
|
|
104
|
+
i(l(h), {
|
|
106
105
|
name: "caret-down",
|
|
107
106
|
size: "20px"
|
|
108
107
|
})
|
|
109
108
|
])
|
|
110
|
-
], 16)
|
|
111
|
-
t.feedbackText ? (a(), m(D, {
|
|
112
|
-
key: 1,
|
|
113
|
-
text: t.feedbackText,
|
|
114
|
-
variant: t.feedbackVariant,
|
|
115
|
-
"show-icon": t.showFeedbackIcon,
|
|
116
|
-
"test-id": t.testId,
|
|
117
|
-
class: "dropdown-field-help-text"
|
|
118
|
-
}, null, 8, ["text", "variant", "show-icon", "test-id"])) : o("", !0)
|
|
109
|
+
], 16)
|
|
119
110
|
]));
|
|
120
111
|
}
|
|
121
112
|
});
|
|
122
113
|
export {
|
|
123
|
-
|
|
114
|
+
j as default
|
|
124
115
|
};
|
|
@@ -40,6 +40,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
40
40
|
optionIconKey?: string;
|
|
41
41
|
optionImageKey?: string;
|
|
42
42
|
optionIconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
43
|
+
optionEndIconKey?: string;
|
|
44
|
+
optionEndIconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
43
45
|
valueToCopy?: string;
|
|
44
46
|
disabledOptionKey?: string;
|
|
45
47
|
theme?: string;
|
|
@@ -85,6 +87,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
85
87
|
optionIconKey: string;
|
|
86
88
|
optionImageKey: string;
|
|
87
89
|
optionIconType: any;
|
|
90
|
+
optionEndIconKey: string;
|
|
91
|
+
optionEndIconType: any;
|
|
88
92
|
valueToCopy: any;
|
|
89
93
|
disabledOptionKey: string;
|
|
90
94
|
fullWidth: boolean;
|
|
@@ -99,6 +103,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
99
103
|
closed: () => void;
|
|
100
104
|
opened: () => void;
|
|
101
105
|
apply: (value: unknown) => void;
|
|
106
|
+
selectAll: () => void;
|
|
107
|
+
clear: () => void;
|
|
108
|
+
copyToClipboard: () => void;
|
|
102
109
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
103
110
|
modelValue?: unknown;
|
|
104
111
|
selected?: unknown;
|
|
@@ -140,6 +147,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
140
147
|
optionIconKey?: string;
|
|
141
148
|
optionImageKey?: string;
|
|
142
149
|
optionIconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
150
|
+
optionEndIconKey?: string;
|
|
151
|
+
optionEndIconType?: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
143
152
|
valueToCopy?: string;
|
|
144
153
|
disabledOptionKey?: string;
|
|
145
154
|
theme?: string;
|
|
@@ -185,13 +194,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
185
194
|
optionIconKey: string;
|
|
186
195
|
optionImageKey: string;
|
|
187
196
|
optionIconType: any;
|
|
197
|
+
optionEndIconKey: string;
|
|
198
|
+
optionEndIconType: any;
|
|
188
199
|
valueToCopy: any;
|
|
189
200
|
disabledOptionKey: string;
|
|
190
201
|
fullWidth: boolean;
|
|
191
202
|
optionsListWidth: any;
|
|
192
203
|
statusType: any;
|
|
193
204
|
}>>> & {
|
|
205
|
+
onCopyToClipboard?: () => any;
|
|
206
|
+
onClear?: () => any;
|
|
194
207
|
onApply?: (value: unknown) => any;
|
|
208
|
+
onSelectAll?: () => any;
|
|
195
209
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
196
210
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
197
211
|
onOpened?: () => any;
|
|
@@ -234,6 +248,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
234
248
|
optionIconKey: string;
|
|
235
249
|
optionImageKey: string;
|
|
236
250
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
251
|
+
optionEndIconKey: string;
|
|
252
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
237
253
|
valueToCopy: string;
|
|
238
254
|
disabledOptionKey: string;
|
|
239
255
|
fullWidth: boolean;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import o from "./DropdownV4.vue2.js";
|
|
2
|
-
/* empty css *//* empty css */import
|
|
3
|
-
// import "../../../DropdownV4.
|
|
2
|
+
/* empty css *//* empty css */import _ from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../../DropdownV4.vue_vue_type_style_index_0_scoped_0363db63_lang.css"; //*');
|
|
4
4
|
// import "../../../DropdownV4.vue_vue_type_style_index_1_lang.css"; //');
|
|
5
|
-
const r = /* @__PURE__ */
|
|
5
|
+
const r = /* @__PURE__ */ _(o, [["__scopeId", "data-v-0363db63"]]);
|
|
6
6
|
export {
|
|
7
7
|
r as default
|
|
8
8
|
};
|