@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,8 +1,8 @@
|
|
|
1
|
-
import "../../../OptionV4.
|
|
1
|
+
import "../../../OptionV4.vue_vue_type_style_index_0_scoped_e0c24b6a_lang.css"; import { defineComponent as $, openBlock as n, createBlock as u, unref as i, withCtx as y, createElementVNode as s, normalizeClass as b, createCommentVNode as o, createElementBlock as l, renderSlot as c, createVNode as d, createTextVNode as k, toDisplayString as h, withModifiers as C } from "vue";
|
|
2
2
|
import "../../typography/Heading.vue.js";
|
|
3
|
-
import
|
|
3
|
+
import B from "../../typography/Text.vue.js";
|
|
4
4
|
import z from "../../checkbox/v4/CheckboxV4.vue.js";
|
|
5
|
-
import
|
|
5
|
+
import f from "../../icon/v4/IconV4.vue.js";
|
|
6
6
|
import { NOOP as N } from "@vue/shared";
|
|
7
7
|
import { optionCommon as V } from "../common/Option.common.js";
|
|
8
8
|
import w from "../../typography/v4/Typography.vue.js";
|
|
@@ -13,7 +13,10 @@ const P = {
|
|
|
13
13
|
}, S = ["src"], j = {
|
|
14
14
|
key: 2,
|
|
15
15
|
class: "start-icon"
|
|
16
|
-
}, E = { class: "text-container" }, M = {
|
|
16
|
+
}, E = { class: "text-container" }, M = {
|
|
17
|
+
key: 3,
|
|
18
|
+
class: "end-icon"
|
|
19
|
+
}, A = { key: 0 }, U = /* @__PURE__ */ $({
|
|
17
20
|
__name: "OptionV4",
|
|
18
21
|
props: {
|
|
19
22
|
option: { default: null },
|
|
@@ -27,92 +30,106 @@ const P = {
|
|
|
27
30
|
imageKey: { default: null },
|
|
28
31
|
iconKey: { default: null },
|
|
29
32
|
iconType: { default: "regular" },
|
|
33
|
+
endIconKey: { default: null },
|
|
34
|
+
endIconType: { default: "regular" },
|
|
30
35
|
toolTipPlacement: { default: "right" }
|
|
31
36
|
},
|
|
32
37
|
setup(e) {
|
|
33
|
-
const
|
|
34
|
-
return (t,
|
|
38
|
+
const p = e, { selected: m, isMulti: r, id: v, onClick: I, api: T } = V(p), K = (t) => t && typeof t == "object" && "optionTooltipText" in t ? t.optionTooltipText : "", x = (t) => t && typeof t == "object" && "optionTooltipTestId" in t ? t.optionTooltipTestId : null;
|
|
39
|
+
return (t, a) => (n(), u(i(O), {
|
|
35
40
|
text: K(e.option),
|
|
36
|
-
"test-id":
|
|
41
|
+
"test-id": x(e.option),
|
|
37
42
|
placement: e.toolTipPlacement,
|
|
38
43
|
class: "tooltip-option"
|
|
39
44
|
}, {
|
|
40
|
-
default:
|
|
41
|
-
|
|
45
|
+
default: y(() => [
|
|
46
|
+
s("div", {
|
|
42
47
|
ref: "el",
|
|
43
|
-
class:
|
|
48
|
+
class: b(["item-container", {
|
|
44
49
|
"item-container--disabled": e.disabled,
|
|
45
50
|
"item-container--active": e.nameKey ? !1 : e.active,
|
|
46
|
-
"item-container--selected": i(
|
|
47
|
-
"item-container--multi": i(
|
|
51
|
+
"item-container--selected": i(m),
|
|
52
|
+
"item-container--multi": i(r)
|
|
48
53
|
}])
|
|
49
54
|
}, [
|
|
50
|
-
|
|
51
|
-
class:
|
|
52
|
-
"item--multi": i(
|
|
55
|
+
s("div", {
|
|
56
|
+
class: b(["item", {
|
|
57
|
+
"item--multi": i(r),
|
|
53
58
|
"item--with-icon": t.$slots["icon-start"] || t.$slots.image
|
|
54
59
|
}])
|
|
55
60
|
}, [
|
|
56
|
-
i(
|
|
61
|
+
i(r) ? (n(), u(i(z), {
|
|
57
62
|
key: 0,
|
|
58
63
|
id: i(v).toString(),
|
|
59
64
|
tabindex: "-1",
|
|
60
65
|
class: "checkbox",
|
|
61
66
|
size: "sm",
|
|
62
|
-
"is-checked": i(
|
|
67
|
+
"is-checked": i(m),
|
|
63
68
|
"is-indeterminate": e.isIndeterminate && !e.option,
|
|
64
|
-
onClick:
|
|
65
|
-
}, null, 8, ["id", "is-checked", "is-indeterminate"])) :
|
|
66
|
-
t.$slots.image || e.imageKey ? (
|
|
67
|
-
|
|
68
|
-
e.imageKey ? (
|
|
69
|
+
onClick: a[0] || (a[0] = (g) => e.disabled ? i(N)() : i(I)(g))
|
|
70
|
+
}, null, 8, ["id", "is-checked", "is-indeterminate"])) : o("", !0),
|
|
71
|
+
t.$slots.image || e.imageKey ? (n(), l("div", P, [
|
|
72
|
+
c(t.$slots, "image", {}, () => [
|
|
73
|
+
e.imageKey ? (n(), l("img", {
|
|
69
74
|
key: 0,
|
|
70
75
|
src: e.option[e.imageKey]
|
|
71
|
-
}, null, 8, S)) :
|
|
76
|
+
}, null, 8, S)) : o("", !0)
|
|
72
77
|
], !0)
|
|
73
|
-
])) :
|
|
74
|
-
t.$slots["icon-start"] || e.iconKey ? (
|
|
75
|
-
|
|
76
|
-
|
|
78
|
+
])) : o("", !0),
|
|
79
|
+
t.$slots["icon-start"] || e.iconKey ? (n(), l("div", j, [
|
|
80
|
+
c(t.$slots, "icon-start", {}, () => [
|
|
81
|
+
d(i(f), {
|
|
77
82
|
type: e.iconType,
|
|
78
83
|
name: e.option[e.iconKey],
|
|
79
84
|
size: e.iconType === "regular" ? "20px" : "16px"
|
|
80
85
|
}, null, 8, ["type", "name", "size"])
|
|
81
86
|
], !0)
|
|
82
|
-
])) :
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
87
|
+
])) : o("", !0),
|
|
88
|
+
s("div", E, [
|
|
89
|
+
d(i(w), {
|
|
90
|
+
class: "option-text",
|
|
91
|
+
variant: "body2"
|
|
92
|
+
}, {
|
|
93
|
+
default: y(() => [
|
|
94
|
+
c(t.$slots, "default", {}, () => [
|
|
95
|
+
k(h(e.option[e.nameKey]), 1)
|
|
88
96
|
], !0)
|
|
89
97
|
]),
|
|
90
98
|
_: 3
|
|
91
99
|
}),
|
|
92
|
-
e.subtitle ? (
|
|
100
|
+
e.subtitle ? (n(), u(i(B), {
|
|
93
101
|
key: 0,
|
|
94
102
|
class: "subtitle",
|
|
95
103
|
size: "xs"
|
|
96
104
|
}, {
|
|
97
|
-
default:
|
|
98
|
-
|
|
105
|
+
default: y(() => [
|
|
106
|
+
k(h(e.subtitle), 1)
|
|
99
107
|
]),
|
|
100
108
|
_: 1
|
|
101
|
-
})) :
|
|
102
|
-
])
|
|
109
|
+
})) : o("", !0)
|
|
110
|
+
]),
|
|
111
|
+
t.$slots["icon-end"] || e.endIconKey ? (n(), l("div", M, [
|
|
112
|
+
c(t.$slots, "icon-end", {}, () => [
|
|
113
|
+
d(i(f), {
|
|
114
|
+
type: e.endIconType,
|
|
115
|
+
name: e.option[e.endIconKey],
|
|
116
|
+
size: e.endIconType === "regular" || e.endIconType === "ab-test" ? "20px" : "16px"
|
|
117
|
+
}, null, 8, ["type", "name", "size"])
|
|
118
|
+
], !0)
|
|
119
|
+
])) : o("", !0)
|
|
103
120
|
], 2),
|
|
104
|
-
i(
|
|
105
|
-
|
|
121
|
+
i(T).clearable && i(m) ? (n(), l("div", A, [
|
|
122
|
+
s("button", {
|
|
106
123
|
class: "clear-button",
|
|
107
|
-
onClick:
|
|
124
|
+
onClick: a[1] || (a[1] = C((g) => i(T).clearSelection(), ["prevent", "stop"]))
|
|
108
125
|
}, [
|
|
109
|
-
|
|
126
|
+
d(i(f), {
|
|
110
127
|
name: "close",
|
|
111
128
|
width: "8",
|
|
112
129
|
height: 8
|
|
113
130
|
})
|
|
114
131
|
])
|
|
115
|
-
])) :
|
|
132
|
+
])) : o("", !0)
|
|
116
133
|
], 2)
|
|
117
134
|
]),
|
|
118
135
|
_: 3
|
|
@@ -120,5 +137,5 @@ const P = {
|
|
|
120
137
|
}
|
|
121
138
|
});
|
|
122
139
|
export {
|
|
123
|
-
|
|
140
|
+
U as default
|
|
124
141
|
};
|
|
@@ -637,6 +637,7 @@ declare const DropdownTypes: () => (({
|
|
|
637
637
|
};
|
|
638
638
|
}>> & {
|
|
639
639
|
onClick?: () => any;
|
|
640
|
+
onCopyToClipboard?: () => any;
|
|
640
641
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "disabled" | "size" | "open" | "mandatory" | "loading" | "testId" | "options" | "singleAppSelection" | "placeholder" | "multi" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "selectedOption" | "brandIconType">;
|
|
641
642
|
$attrs: {
|
|
642
643
|
[x: string]: unknown;
|
|
@@ -649,7 +650,7 @@ declare const DropdownTypes: () => (({
|
|
|
649
650
|
}>;
|
|
650
651
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
651
652
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
652
|
-
$emit: (event: "click") => void;
|
|
653
|
+
$emit: ((event: "click") => void) & ((event: "copyToClipboard") => void);
|
|
653
654
|
$el: any;
|
|
654
655
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
655
656
|
label: {
|
|
@@ -732,8 +733,10 @@ declare const DropdownTypes: () => (({
|
|
|
732
733
|
};
|
|
733
734
|
}>> & {
|
|
734
735
|
onClick?: () => any;
|
|
736
|
+
onCopyToClipboard?: () => any;
|
|
735
737
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
736
738
|
click: () => void;
|
|
739
|
+
copyToClipboard: () => void;
|
|
737
740
|
}, string, {
|
|
738
741
|
label: string;
|
|
739
742
|
disabled: boolean;
|
|
@@ -854,6 +857,7 @@ declare const DropdownTypes: () => (({
|
|
|
854
857
|
};
|
|
855
858
|
}>> & {
|
|
856
859
|
onClick?: () => any;
|
|
860
|
+
onCopyToClipboard?: () => any;
|
|
857
861
|
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
858
862
|
__isFragment?: never;
|
|
859
863
|
__isTeleport?: never;
|
|
@@ -939,8 +943,10 @@ declare const DropdownTypes: () => (({
|
|
|
939
943
|
};
|
|
940
944
|
}>> & {
|
|
941
945
|
onClick?: () => any;
|
|
946
|
+
onCopyToClipboard?: () => any;
|
|
942
947
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
943
948
|
click: () => void;
|
|
949
|
+
copyToClipboard: () => void;
|
|
944
950
|
}, string, {
|
|
945
951
|
label: string;
|
|
946
952
|
disabled: boolean;
|
|
@@ -973,6 +979,7 @@ declare const DropdownTypes: () => (({
|
|
|
973
979
|
option: any;
|
|
974
980
|
disabled: boolean;
|
|
975
981
|
active: boolean;
|
|
982
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
976
983
|
isIndeterminate: boolean;
|
|
977
984
|
subtitle: string;
|
|
978
985
|
selectAllOption: boolean;
|
|
@@ -980,6 +987,7 @@ declare const DropdownTypes: () => (({
|
|
|
980
987
|
imageKey: string;
|
|
981
988
|
iconKey: string;
|
|
982
989
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
990
|
+
endIconKey: string;
|
|
983
991
|
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";
|
|
984
992
|
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
985
993
|
option: {
|
|
@@ -994,6 +1002,10 @@ declare const DropdownTypes: () => (({
|
|
|
994
1002
|
type: import("vue").PropType<boolean>;
|
|
995
1003
|
default: any;
|
|
996
1004
|
};
|
|
1005
|
+
endIconType: {
|
|
1006
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1007
|
+
default: string;
|
|
1008
|
+
};
|
|
997
1009
|
isIndeterminate: {
|
|
998
1010
|
type: import("vue").PropType<boolean>;
|
|
999
1011
|
default: boolean;
|
|
@@ -1022,6 +1034,10 @@ declare const DropdownTypes: () => (({
|
|
|
1022
1034
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1023
1035
|
default: string;
|
|
1024
1036
|
};
|
|
1037
|
+
endIconKey: {
|
|
1038
|
+
type: import("vue").PropType<string>;
|
|
1039
|
+
default: any;
|
|
1040
|
+
};
|
|
1025
1041
|
toolTipPlacement: {
|
|
1026
1042
|
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">;
|
|
1027
1043
|
default: string;
|
|
@@ -1029,7 +1045,7 @@ declare const DropdownTypes: () => (({
|
|
|
1029
1045
|
selectedProp: {
|
|
1030
1046
|
type: import("vue").PropType<boolean>;
|
|
1031
1047
|
};
|
|
1032
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "toolTipPlacement">;
|
|
1048
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "option" | "disabled" | "active" | "endIconType" | "isIndeterminate" | "subtitle" | "selectAllOption" | "nameKey" | "imageKey" | "iconKey" | "iconType" | "endIconKey" | "toolTipPlacement">;
|
|
1033
1049
|
$attrs: {
|
|
1034
1050
|
[x: string]: unknown;
|
|
1035
1051
|
};
|
|
@@ -1056,6 +1072,10 @@ declare const DropdownTypes: () => (({
|
|
|
1056
1072
|
type: import("vue").PropType<boolean>;
|
|
1057
1073
|
default: any;
|
|
1058
1074
|
};
|
|
1075
|
+
endIconType: {
|
|
1076
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1077
|
+
default: string;
|
|
1078
|
+
};
|
|
1059
1079
|
isIndeterminate: {
|
|
1060
1080
|
type: import("vue").PropType<boolean>;
|
|
1061
1081
|
default: boolean;
|
|
@@ -1084,6 +1104,10 @@ declare const DropdownTypes: () => (({
|
|
|
1084
1104
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1085
1105
|
default: string;
|
|
1086
1106
|
};
|
|
1107
|
+
endIconKey: {
|
|
1108
|
+
type: import("vue").PropType<string>;
|
|
1109
|
+
default: any;
|
|
1110
|
+
};
|
|
1087
1111
|
toolTipPlacement: {
|
|
1088
1112
|
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">;
|
|
1089
1113
|
default: string;
|
|
@@ -1095,6 +1119,7 @@ declare const DropdownTypes: () => (({
|
|
|
1095
1119
|
option: any;
|
|
1096
1120
|
disabled: boolean;
|
|
1097
1121
|
active: boolean;
|
|
1122
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1098
1123
|
isIndeterminate: boolean;
|
|
1099
1124
|
subtitle: string;
|
|
1100
1125
|
selectAllOption: boolean;
|
|
@@ -1102,6 +1127,7 @@ declare const DropdownTypes: () => (({
|
|
|
1102
1127
|
imageKey: string;
|
|
1103
1128
|
iconKey: string;
|
|
1104
1129
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1130
|
+
endIconKey: string;
|
|
1105
1131
|
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";
|
|
1106
1132
|
}, {}, string> & {
|
|
1107
1133
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -1136,6 +1162,10 @@ declare const DropdownTypes: () => (({
|
|
|
1136
1162
|
type: import("vue").PropType<boolean>;
|
|
1137
1163
|
default: any;
|
|
1138
1164
|
};
|
|
1165
|
+
endIconType: {
|
|
1166
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1167
|
+
default: string;
|
|
1168
|
+
};
|
|
1139
1169
|
isIndeterminate: {
|
|
1140
1170
|
type: import("vue").PropType<boolean>;
|
|
1141
1171
|
default: boolean;
|
|
@@ -1164,6 +1194,10 @@ declare const DropdownTypes: () => (({
|
|
|
1164
1194
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1165
1195
|
default: string;
|
|
1166
1196
|
};
|
|
1197
|
+
endIconKey: {
|
|
1198
|
+
type: import("vue").PropType<string>;
|
|
1199
|
+
default: any;
|
|
1200
|
+
};
|
|
1167
1201
|
toolTipPlacement: {
|
|
1168
1202
|
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">;
|
|
1169
1203
|
default: string;
|
|
@@ -1188,6 +1222,10 @@ declare const DropdownTypes: () => (({
|
|
|
1188
1222
|
type: import("vue").PropType<boolean>;
|
|
1189
1223
|
default: any;
|
|
1190
1224
|
};
|
|
1225
|
+
endIconType: {
|
|
1226
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1227
|
+
default: string;
|
|
1228
|
+
};
|
|
1191
1229
|
isIndeterminate: {
|
|
1192
1230
|
type: import("vue").PropType<boolean>;
|
|
1193
1231
|
default: boolean;
|
|
@@ -1216,6 +1254,10 @@ declare const DropdownTypes: () => (({
|
|
|
1216
1254
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1217
1255
|
default: string;
|
|
1218
1256
|
};
|
|
1257
|
+
endIconKey: {
|
|
1258
|
+
type: import("vue").PropType<string>;
|
|
1259
|
+
default: any;
|
|
1260
|
+
};
|
|
1219
1261
|
toolTipPlacement: {
|
|
1220
1262
|
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">;
|
|
1221
1263
|
default: string;
|
|
@@ -1227,6 +1269,7 @@ declare const DropdownTypes: () => (({
|
|
|
1227
1269
|
option: any;
|
|
1228
1270
|
disabled: boolean;
|
|
1229
1271
|
active: boolean;
|
|
1272
|
+
endIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1230
1273
|
isIndeterminate: boolean;
|
|
1231
1274
|
subtitle: string;
|
|
1232
1275
|
selectAllOption: boolean;
|
|
@@ -1234,12 +1277,14 @@ declare const DropdownTypes: () => (({
|
|
|
1234
1277
|
imageKey: string;
|
|
1235
1278
|
iconKey: string;
|
|
1236
1279
|
iconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1280
|
+
endIconKey: string;
|
|
1237
1281
|
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";
|
|
1238
1282
|
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1239
1283
|
$slots: {
|
|
1240
1284
|
image?(_: {}): any;
|
|
1241
1285
|
"icon-start"?(_: {}): any;
|
|
1242
1286
|
default?(_: {}): any;
|
|
1287
|
+
"icon-end"?(_: {}): any;
|
|
1243
1288
|
};
|
|
1244
1289
|
})) | import("vue").DefineComponent<{
|
|
1245
1290
|
testId: {
|
|
@@ -1394,6 +1439,8 @@ declare const DropdownTypes: () => (({
|
|
|
1394
1439
|
optionIconKey: string;
|
|
1395
1440
|
optionImageKey: string;
|
|
1396
1441
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1442
|
+
optionEndIconKey: string;
|
|
1443
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1397
1444
|
valueToCopy: string;
|
|
1398
1445
|
disabledOptionKey: string;
|
|
1399
1446
|
fullWidth: boolean;
|
|
@@ -1562,6 +1609,14 @@ declare const DropdownTypes: () => (({
|
|
|
1562
1609
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1563
1610
|
default: any;
|
|
1564
1611
|
};
|
|
1612
|
+
optionEndIconKey: {
|
|
1613
|
+
type: import("vue").PropType<string>;
|
|
1614
|
+
default: string;
|
|
1615
|
+
};
|
|
1616
|
+
optionEndIconType: {
|
|
1617
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1618
|
+
default: any;
|
|
1619
|
+
};
|
|
1565
1620
|
valueToCopy: {
|
|
1566
1621
|
type: import("vue").PropType<string>;
|
|
1567
1622
|
default: any;
|
|
@@ -1583,12 +1638,15 @@ declare const DropdownTypes: () => (({
|
|
|
1583
1638
|
default: any;
|
|
1584
1639
|
};
|
|
1585
1640
|
}>> & {
|
|
1641
|
+
onCopyToClipboard?: () => any;
|
|
1642
|
+
onClear?: () => any;
|
|
1586
1643
|
onApply?: (value: unknown) => any;
|
|
1644
|
+
onSelectAll?: () => any;
|
|
1587
1645
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
1588
1646
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
1589
1647
|
onOpened?: () => any;
|
|
1590
1648
|
onClosed?: () => any;
|
|
1591
|
-
} & 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" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
1649
|
+
} & 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" | "predefinedTrigger" | "inlineSearch" | "inlineSearchPlaceholder" | "onSearch" | "noResultsText" | "searchAutoFocus" | "optionNameKey" | "optionIconKey" | "optionImageKey" | "optionIconType" | "optionEndIconKey" | "optionEndIconType" | "valueToCopy" | "disabledOptionKey" | "fullWidth" | "optionsListWidth" | "statusType">;
|
|
1592
1650
|
$attrs: {
|
|
1593
1651
|
[x: string]: unknown;
|
|
1594
1652
|
};
|
|
@@ -1600,7 +1658,7 @@ declare const DropdownTypes: () => (({
|
|
|
1600
1658
|
}>;
|
|
1601
1659
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1602
1660
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1603
|
-
$emit: ((event: "apply", value: unknown) => void) & ((event: "update:selected", value: unknown) => void) & ((event: "update:isOpen", value: unknown) => void) & ((event: "opened") => void) & ((event: "closed") => void);
|
|
1661
|
+
$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);
|
|
1604
1662
|
$el: any;
|
|
1605
1663
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1606
1664
|
theme: {
|
|
@@ -1765,6 +1823,14 @@ declare const DropdownTypes: () => (({
|
|
|
1765
1823
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1766
1824
|
default: any;
|
|
1767
1825
|
};
|
|
1826
|
+
optionEndIconKey: {
|
|
1827
|
+
type: import("vue").PropType<string>;
|
|
1828
|
+
default: string;
|
|
1829
|
+
};
|
|
1830
|
+
optionEndIconType: {
|
|
1831
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
1832
|
+
default: any;
|
|
1833
|
+
};
|
|
1768
1834
|
valueToCopy: {
|
|
1769
1835
|
type: import("vue").PropType<string>;
|
|
1770
1836
|
default: any;
|
|
@@ -1786,7 +1852,10 @@ declare const DropdownTypes: () => (({
|
|
|
1786
1852
|
default: any;
|
|
1787
1853
|
};
|
|
1788
1854
|
}>> & {
|
|
1855
|
+
onCopyToClipboard?: () => any;
|
|
1856
|
+
onClear?: () => any;
|
|
1789
1857
|
onApply?: (value: unknown) => any;
|
|
1858
|
+
onSelectAll?: () => any;
|
|
1790
1859
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
1791
1860
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
1792
1861
|
onOpened?: () => any;
|
|
@@ -1800,6 +1869,9 @@ declare const DropdownTypes: () => (({
|
|
|
1800
1869
|
closed: () => void;
|
|
1801
1870
|
opened: () => void;
|
|
1802
1871
|
apply: (value: unknown) => void;
|
|
1872
|
+
selectAll: () => void;
|
|
1873
|
+
clear: () => void;
|
|
1874
|
+
copyToClipboard: () => void;
|
|
1803
1875
|
}, string, {
|
|
1804
1876
|
theme: string;
|
|
1805
1877
|
disabled: boolean;
|
|
@@ -1838,6 +1910,8 @@ declare const DropdownTypes: () => (({
|
|
|
1838
1910
|
optionIconKey: string;
|
|
1839
1911
|
optionImageKey: string;
|
|
1840
1912
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1913
|
+
optionEndIconKey: string;
|
|
1914
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
1841
1915
|
valueToCopy: string;
|
|
1842
1916
|
disabledOptionKey: string;
|
|
1843
1917
|
fullWidth: boolean;
|
|
@@ -2026,6 +2100,14 @@ declare const DropdownTypes: () => (({
|
|
|
2026
2100
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2027
2101
|
default: any;
|
|
2028
2102
|
};
|
|
2103
|
+
optionEndIconKey: {
|
|
2104
|
+
type: import("vue").PropType<string>;
|
|
2105
|
+
default: string;
|
|
2106
|
+
};
|
|
2107
|
+
optionEndIconType: {
|
|
2108
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2109
|
+
default: any;
|
|
2110
|
+
};
|
|
2029
2111
|
valueToCopy: {
|
|
2030
2112
|
type: import("vue").PropType<string>;
|
|
2031
2113
|
default: any;
|
|
@@ -2047,7 +2129,10 @@ declare const DropdownTypes: () => (({
|
|
|
2047
2129
|
default: any;
|
|
2048
2130
|
};
|
|
2049
2131
|
}>> & {
|
|
2132
|
+
onCopyToClipboard?: () => any;
|
|
2133
|
+
onClear?: () => any;
|
|
2050
2134
|
onApply?: (value: unknown) => any;
|
|
2135
|
+
onSelectAll?: () => any;
|
|
2051
2136
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
2052
2137
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2053
2138
|
onOpened?: () => any;
|
|
@@ -2222,6 +2307,14 @@ declare const DropdownTypes: () => (({
|
|
|
2222
2307
|
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2223
2308
|
default: any;
|
|
2224
2309
|
};
|
|
2310
|
+
optionEndIconKey: {
|
|
2311
|
+
type: import("vue").PropType<string>;
|
|
2312
|
+
default: string;
|
|
2313
|
+
};
|
|
2314
|
+
optionEndIconType: {
|
|
2315
|
+
type: import("vue").PropType<"fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test">;
|
|
2316
|
+
default: any;
|
|
2317
|
+
};
|
|
2225
2318
|
valueToCopy: {
|
|
2226
2319
|
type: import("vue").PropType<string>;
|
|
2227
2320
|
default: any;
|
|
@@ -2243,7 +2336,10 @@ declare const DropdownTypes: () => (({
|
|
|
2243
2336
|
default: any;
|
|
2244
2337
|
};
|
|
2245
2338
|
}>> & {
|
|
2339
|
+
onCopyToClipboard?: () => any;
|
|
2340
|
+
onClear?: () => any;
|
|
2246
2341
|
onApply?: (value: unknown) => any;
|
|
2342
|
+
onSelectAll?: () => any;
|
|
2247
2343
|
"onUpdate:selected"?: (value: unknown) => any;
|
|
2248
2344
|
"onUpdate:isOpen"?: (value: unknown) => any;
|
|
2249
2345
|
onOpened?: () => any;
|
|
@@ -2257,6 +2353,9 @@ declare const DropdownTypes: () => (({
|
|
|
2257
2353
|
closed: () => void;
|
|
2258
2354
|
opened: () => void;
|
|
2259
2355
|
apply: (value: unknown) => void;
|
|
2356
|
+
selectAll: () => void;
|
|
2357
|
+
clear: () => void;
|
|
2358
|
+
copyToClipboard: () => void;
|
|
2260
2359
|
}, string, {
|
|
2261
2360
|
theme: string;
|
|
2262
2361
|
disabled: boolean;
|
|
@@ -2295,6 +2394,8 @@ declare const DropdownTypes: () => (({
|
|
|
2295
2394
|
optionIconKey: string;
|
|
2296
2395
|
optionImageKey: string;
|
|
2297
2396
|
optionIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
2397
|
+
optionEndIconKey: string;
|
|
2398
|
+
optionEndIconType: "fill" | "bold" | "regular" | "branded" | "ad-unit" | "ab-test";
|
|
2298
2399
|
valueToCopy: string;
|
|
2299
2400
|
disabledOptionKey: string;
|
|
2300
2401
|
fullWidth: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Dropdown } from '@/components/dropdown/v3';
|
|
2
2
|
import { IncludeExcludeChipFilter } from '@/components/includeExclude';
|
|
3
|
-
import { DateRange } from '
|
|
3
|
+
import { DateRange } from '@/components/dateRange/v3';
|
|
4
4
|
interface Option {
|
|
5
5
|
label: string;
|
|
6
6
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./FormCard.vue2.js";
|
|
2
2
|
/* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
-
// import "../../FormCard.
|
|
4
|
-
const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-
|
|
3
|
+
// import "../../FormCard.vue_vue_type_style_index_0_scoped_52ade67c_lang.css"; //*');
|
|
4
|
+
const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-52ade67c"]]);
|
|
5
5
|
export {
|
|
6
6
|
t as default
|
|
7
7
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import "../../FormCard.
|
|
2
|
-
import
|
|
1
|
+
import "../../FormCard.vue_vue_type_style_index_0_scoped_52ade67c_lang.css"; import { defineComponent as T, openBlock as d, createElementBlock as c, createElementVNode as f, mergeProps as l, unref as e, renderSlot as u, createVNode as a, withCtx as m, createTextVNode as g, toDisplayString as v, createBlock as B, createCommentVNode as C } from "vue";
|
|
2
|
+
import N from "../typography/v4/Typography.vue.js";
|
|
3
3
|
import y from "../button/v4/ButtonV4.vue.js";
|
|
4
4
|
import "../button/v4/IconButtonV4.vue.js";
|
|
5
5
|
import { FormCardTestIdModifiers as o } from "../../testids/index.js";
|
|
6
|
-
import { useTestIdAttrs as
|
|
6
|
+
import { useTestIdAttrs as b } from "../../utils/testIds.js";
|
|
7
7
|
import i from "../skeleton/v4/SkeletonV4.vue.js";
|
|
8
|
-
const
|
|
8
|
+
const h = { class: "form-card" }, p = {
|
|
9
9
|
key: 1,
|
|
10
10
|
class: "content-skeleton-container"
|
|
11
11
|
}, z = /* @__PURE__ */ T({
|
|
@@ -22,9 +22,9 @@ const b = { class: "form-card" }, h = {
|
|
|
22
22
|
},
|
|
23
23
|
emits: ["save", "cancel"],
|
|
24
24
|
setup(t, { emit: k }) {
|
|
25
|
-
const n =
|
|
25
|
+
const n = b(t.testId, o);
|
|
26
26
|
return (r, s) => (d(), c("div", null, [
|
|
27
|
-
f("div",
|
|
27
|
+
f("div", h, [
|
|
28
28
|
f("header", l({ class: "card-header" }, e(n)[e(o).TITLE]), [
|
|
29
29
|
t.isLoading ? (d(), B(e(i), {
|
|
30
30
|
key: 1,
|
|
@@ -32,7 +32,7 @@ const b = { class: "form-card" }, h = {
|
|
|
32
32
|
size: 20,
|
|
33
33
|
class: "skeleton-header"
|
|
34
34
|
})) : u(r.$slots, "header", { key: 0 }, () => [
|
|
35
|
-
a(e(
|
|
35
|
+
a(e(N), { variant: "h3" }, {
|
|
36
36
|
default: m(() => [
|
|
37
37
|
g(v(t.title), 1)
|
|
38
38
|
]),
|
|
@@ -43,7 +43,7 @@ const b = { class: "form-card" }, h = {
|
|
|
43
43
|
f("div", l({
|
|
44
44
|
class: ["card-content", { "card-content--no-padding": t.noPadding }]
|
|
45
45
|
}, e(n)[e(o).CONTENT]), [
|
|
46
|
-
t.isLoading ? (d(), c("div",
|
|
46
|
+
t.isLoading ? (d(), c("div", p, [
|
|
47
47
|
a(e(i), {
|
|
48
48
|
type: "rectangle",
|
|
49
49
|
size: 20,
|
|
@@ -70,7 +70,7 @@ const b = { class: "form-card" }, h = {
|
|
|
70
70
|
variant: "outlined",
|
|
71
71
|
color: "default"
|
|
72
72
|
}, e(n)[e(o).CANCEL_BUTTON], {
|
|
73
|
-
disabled: t.isLoading,
|
|
73
|
+
disabled: t.isLoading || t.saveLoading,
|
|
74
74
|
onClick: s[0] || (s[0] = (L) => k("cancel"))
|
|
75
75
|
}), {
|
|
76
76
|
default: m(() => [
|
|
@@ -17,7 +17,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
17
|
tooltipHeader: string;
|
|
18
18
|
tooltipText: string;
|
|
19
19
|
tooltipPlacement: string;
|
|
20
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
+
copy: () => void;
|
|
22
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
23
|
text: string;
|
|
22
24
|
size: 'small' | 'medium';
|
|
23
25
|
testId: string;
|
|
@@ -35,7 +37,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
35
37
|
tooltipHeader: string;
|
|
36
38
|
tooltipText: string;
|
|
37
39
|
tooltipPlacement: string;
|
|
38
|
-
}
|
|
40
|
+
}>>> & {
|
|
41
|
+
onCopy?: () => any;
|
|
42
|
+
}, {
|
|
39
43
|
text: string;
|
|
40
44
|
size: 'small' | 'medium';
|
|
41
45
|
testId: string;
|
|
@@ -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
|
|
3
|
+
// import "../../InlineCopy.vue_vue_type_style_index_0_scoped_6a7b3795_lang.css"; //*');
|
|
4
|
+
const t = /* @__PURE__ */ e(o, [["__scopeId", "data-v-6a7b3795"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
t as default
|
|
7
7
|
};
|