@ironsource/shared-ui 2.2.0-test.4 → 2.2.0-test.5
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/components/button/v4/IconButtonV4.vue2.js +46 -1
- package/components/button/v4/ToggleButtonGroupAB.vue2.js +1 -1
- package/components/chip/v4/ChipV4.vue2.js +1 -1
- package/components/popover/v3/Popover.vue2.js +38 -1
- package/components/radioButton/v3/RadioButton.vue2.js +82 -1
- package/components/radioButton/v3/RadioGroup.vue2.js +29 -1
- package/components/radioButton/v4/RadioButtonV4.vue2.js +80 -1
- package/components/radioButton/v4/RadioGroupV4.vue2.js +29 -1
- package/components/table-cells/v4/EditableV4.vue2.js +57 -1
- package/index.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1,46 @@
|
|
|
1
|
-
import "../../../IconButtonV4.vue_vue_type_style_index_0_scoped_06e26be2_lang.css";
|
|
1
|
+
import "../../../IconButtonV4.vue_vue_type_style_index_0_scoped_06e26be2_lang.css"; import { defineComponent as o, computed as l, openBlock as r, createElementBlock as i, normalizeClass as c, unref as a, renderSlot as u, createVNode as m } from "vue";
|
|
2
|
+
import f from "../../icon/v4/IconV4.vue.js";
|
|
3
|
+
import "../../icon/v4/IconFlag.vue.js";
|
|
4
|
+
const p = ["data-testid", "disabled"], I = /* @__PURE__ */ o({
|
|
5
|
+
__name: "IconButtonV4",
|
|
6
|
+
props: {
|
|
7
|
+
variant: { default: "default" },
|
|
8
|
+
color: { default: "default" },
|
|
9
|
+
size: { default: "medium" },
|
|
10
|
+
type: { default: "regular" },
|
|
11
|
+
iconName: { default: "pencil-simple" },
|
|
12
|
+
disabled: { type: Boolean, default: !1 },
|
|
13
|
+
testId: { default: "" }
|
|
14
|
+
},
|
|
15
|
+
setup(e) {
|
|
16
|
+
const t = e, n = l(() => {
|
|
17
|
+
switch (t.size) {
|
|
18
|
+
case "extraSmall":
|
|
19
|
+
return "16px";
|
|
20
|
+
case "small":
|
|
21
|
+
case "medium":
|
|
22
|
+
return "20px";
|
|
23
|
+
case "large":
|
|
24
|
+
case "extraLarge":
|
|
25
|
+
default:
|
|
26
|
+
return "24px";
|
|
27
|
+
}
|
|
28
|
+
}), s = l(() => `variant-${t.variant}`);
|
|
29
|
+
return (d, b) => (r(), i("button", {
|
|
30
|
+
class: c([[e.size, e.color, a(s)], "button-wrap"]),
|
|
31
|
+
"data-testid": t.testId,
|
|
32
|
+
disabled: e.disabled
|
|
33
|
+
}, [
|
|
34
|
+
u(d.$slots, "default", {}, () => [
|
|
35
|
+
m(a(f), {
|
|
36
|
+
type: e.type,
|
|
37
|
+
name: e.iconName || "pencil-simple",
|
|
38
|
+
size: a(n)
|
|
39
|
+
}, null, 8, ["type", "name", "size"])
|
|
40
|
+
], !0)
|
|
41
|
+
], 10, p));
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
export {
|
|
45
|
+
I as default
|
|
46
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_0fc9ddf5_lang.css";
|
|
1
|
+
import "../../../ToggleButtonGroupAB.vue_vue_type_style_index_0_scoped_0fc9ddf5_lang.css"; import { defineComponent as b, ref as u, computed as A, openBlock as f, createElementBlock as C, createVNode as n, mergeProps as s, unref as e, withCtx as t, createTextVNode as B, createBlock as y, createElementVNode as N, renderSlot as w, createCommentVNode as O } from "vue";
|
|
2
2
|
import c from "./ButtonV4.vue.js";
|
|
3
3
|
import { useVModel as R } from "@vueuse/core";
|
|
4
4
|
import x from "../../icon/v4/IconV4.vue.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import "../../../ChipV4.vue_vue_type_style_index_0_scoped_a221c649_lang.css";
|
|
1
|
+
import "../../../ChipV4.vue_vue_type_style_index_0_scoped_a221c649_lang.css"; import { defineComponent as i, openBlock as o, createElementBlock as d, mergeProps as s, unref as t, renderSlot as c, createVNode as f, withCtx as n, createTextVNode as p, toDisplayString as u } from "vue";
|
|
2
2
|
import { ChipTestIdModifiers as a } from "../../../testids/index.js";
|
|
3
3
|
import { useTestIdAttrs as m } from "../../../utils/testIds.js";
|
|
4
4
|
import h from "../../typography/v4/Typography.vue.js";
|
|
@@ -1 +1,38 @@
|
|
|
1
|
-
import "../../../Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css"; import "../../../Popover.vue_vue_type_style_index_1_lang.css";
|
|
1
|
+
import "../../../Popover.vue_vue_type_style_index_0_scoped_c607b770_lang.css"; import "../../../Popover.vue_vue_type_style_index_1_lang.css"; import { defineComponent as n, openBlock as i, createBlock as r, unref as l, withCtx as a, renderSlot as d } from "vue";
|
|
2
|
+
import { Dropdown as s } from "floating-vue";
|
|
3
|
+
const f = /* @__PURE__ */ n({
|
|
4
|
+
__name: "Popover",
|
|
5
|
+
props: {
|
|
6
|
+
open: { type: Boolean },
|
|
7
|
+
autoHide: { type: Boolean, default: !1 },
|
|
8
|
+
trigger: { default: "click" },
|
|
9
|
+
disabled: { type: Boolean, default: !1 },
|
|
10
|
+
placement: { default: "bottom-start" },
|
|
11
|
+
distance: { default: 0 },
|
|
12
|
+
skidding: { default: 0 },
|
|
13
|
+
testId: { default: "" }
|
|
14
|
+
},
|
|
15
|
+
setup(e) {
|
|
16
|
+
return (t, u) => (i(), r(l(s), {
|
|
17
|
+
theme: "custom-popover",
|
|
18
|
+
placement: e.placement,
|
|
19
|
+
shown: !!e.open,
|
|
20
|
+
triggers: e.trigger === "managed" ? [] : [e.trigger],
|
|
21
|
+
"auto-hide": e.autoHide,
|
|
22
|
+
distance: e.distance,
|
|
23
|
+
skidding: e.skidding,
|
|
24
|
+
"data-testid": e.testId
|
|
25
|
+
}, {
|
|
26
|
+
popper: a(({ hide: o }) => [
|
|
27
|
+
d(t.$slots, "content", { hide: o }, void 0, !0)
|
|
28
|
+
]),
|
|
29
|
+
default: a(() => [
|
|
30
|
+
d(t.$slots, "trigger", {}, void 0, !0)
|
|
31
|
+
]),
|
|
32
|
+
_: 3
|
|
33
|
+
}, 8, ["placement", "shown", "triggers", "auto-hide", "distance", "skidding", "data-testid"]));
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
export {
|
|
37
|
+
f as default
|
|
38
|
+
};
|
|
@@ -1 +1,82 @@
|
|
|
1
|
-
import "../../../RadioButton.vue_vue_type_style_index_0_scoped_dac25b9f_lang.css";
|
|
1
|
+
import "../../../RadioButton.vue_vue_type_style_index_0_scoped_dac25b9f_lang.css"; import { defineComponent as E, computed as I, openBlock as u, createElementBlock as C, normalizeClass as T, unref as e, createElementVNode as o, withDirectives as N, mergeProps as i, isRef as g, vModelRadio as w, renderSlot as z, createVNode as A, withCtx as m, createTextVNode as f, toDisplayString as c, createBlock as v, createCommentVNode as R } from "vue";
|
|
2
|
+
import p from "../../typography/Text.vue.js";
|
|
3
|
+
import { useRadio as D } from "../common/useRadio.js";
|
|
4
|
+
import { RadioTestIdModifiers as r } from "../../../testids/index.js";
|
|
5
|
+
import { useTestIdAttrs as L } from "../../../utils/testIds.js";
|
|
6
|
+
const $ = { class: "wrapper" }, F = ["value", "name", "disabled"], U = /* @__PURE__ */ E({
|
|
7
|
+
__name: "RadioButton",
|
|
8
|
+
props: {
|
|
9
|
+
label: { default: "" },
|
|
10
|
+
name: { default: "" },
|
|
11
|
+
helperText: { default: "" },
|
|
12
|
+
errorText: { default: "" },
|
|
13
|
+
modelValue: { default: void 0 },
|
|
14
|
+
testId: { default: "" },
|
|
15
|
+
disabledButton: { type: Boolean, default: !1 }
|
|
16
|
+
},
|
|
17
|
+
emits: ["update:modelValue", "change"],
|
|
18
|
+
setup(t, { emit: B }) {
|
|
19
|
+
const d = t, { radioRef: V, focus: x, disabled: h, modelValue: a, radioGroup: k } = D(
|
|
20
|
+
d,
|
|
21
|
+
B
|
|
22
|
+
), s = L(d.testId, r), b = I(
|
|
23
|
+
() => h.value || d.disabledButton
|
|
24
|
+
);
|
|
25
|
+
return (y, l) => (u(), C("label", {
|
|
26
|
+
class: T(["radio-button", { "radio-button--disabled": e(b) }])
|
|
27
|
+
}, [
|
|
28
|
+
o("span", $, [
|
|
29
|
+
N(o("input", i({
|
|
30
|
+
ref_key: "radioRef",
|
|
31
|
+
ref: V,
|
|
32
|
+
"onUpdate:modelValue": l[0] || (l[0] = (n) => g(a) ? a.value = n : null),
|
|
33
|
+
value: t.label,
|
|
34
|
+
name: t.name || e(k)?.name,
|
|
35
|
+
type: "radio",
|
|
36
|
+
disabled: e(b)
|
|
37
|
+
}, e(s)[e(r).FIELD], {
|
|
38
|
+
onFocus: l[1] || (l[1] = (n) => x.value = !0),
|
|
39
|
+
onBlur: l[2] || (l[2] = (n) => x.value = !1)
|
|
40
|
+
}), null, 16, F), [
|
|
41
|
+
[w, e(a)]
|
|
42
|
+
]),
|
|
43
|
+
o("span", {
|
|
44
|
+
class: T([{ "circle--selected": e(a) === t.label }, "circle"])
|
|
45
|
+
}, null, 2)
|
|
46
|
+
]),
|
|
47
|
+
o("span", i({ class: "label" }, e(s)[e(r).LABEL]), [
|
|
48
|
+
z(y.$slots, "default", {}, () => [
|
|
49
|
+
A(p, { "is-truncated": "" }, {
|
|
50
|
+
default: m(() => [
|
|
51
|
+
f(c(t.label), 1)
|
|
52
|
+
]),
|
|
53
|
+
_: 1
|
|
54
|
+
})
|
|
55
|
+
], !0),
|
|
56
|
+
!t.errorText && t.helperText ? (u(), v(p, {
|
|
57
|
+
key: 0,
|
|
58
|
+
class: "helper-text--text helper-text",
|
|
59
|
+
size: "caption"
|
|
60
|
+
}, {
|
|
61
|
+
default: m(() => [
|
|
62
|
+
f(c(t.helperText), 1)
|
|
63
|
+
]),
|
|
64
|
+
_: 1
|
|
65
|
+
})) : R("", !0),
|
|
66
|
+
t.errorText ? (u(), v(p, i({
|
|
67
|
+
key: 1,
|
|
68
|
+
size: "caption",
|
|
69
|
+
class: "helper-text--error helper-text"
|
|
70
|
+
}, e(s)[e(r).ERROR_TEXT]), {
|
|
71
|
+
default: m(() => [
|
|
72
|
+
f(c(t.errorText), 1)
|
|
73
|
+
]),
|
|
74
|
+
_: 1
|
|
75
|
+
}, 16)) : R("", !0)
|
|
76
|
+
], 16)
|
|
77
|
+
], 2));
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
export {
|
|
81
|
+
U as default
|
|
82
|
+
};
|
|
@@ -1 +1,29 @@
|
|
|
1
|
-
import "../../../RadioGroup.vue_vue_type_style_index_0_scoped_3071ef24_lang.css";
|
|
1
|
+
import "../../../RadioGroup.vue_vue_type_style_index_0_scoped_3071ef24_lang.css"; import { defineComponent as u, openBlock as n, createElementBlock as p, mergeProps as f, unref as r, renderSlot as i } from "vue";
|
|
2
|
+
import { RadioTestIdModifiers as t } from "../../../testids/index.js";
|
|
3
|
+
import { radioGroupCommon as m } from "../common/radioGroup.common.js";
|
|
4
|
+
import { useTestIdAttrs as c } from "../../../utils/testIds.js";
|
|
5
|
+
const _ = /* @__PURE__ */ u({
|
|
6
|
+
__name: "RadioGroup",
|
|
7
|
+
props: {
|
|
8
|
+
name: { default: "" },
|
|
9
|
+
disabled: { type: Boolean, default: !1 },
|
|
10
|
+
modelValue: null,
|
|
11
|
+
row: { type: Boolean, default: !1 },
|
|
12
|
+
testId: { default: "" }
|
|
13
|
+
},
|
|
14
|
+
emits: ["update:modelValue", "change"],
|
|
15
|
+
setup(e, { emit: a }) {
|
|
16
|
+
const o = e, d = c(o.testId, t), { radioGroupRef: s } = m(o, a);
|
|
17
|
+
return (l, g) => (n(), p("div", f({
|
|
18
|
+
ref_key: "radioGroupRef",
|
|
19
|
+
ref: s,
|
|
20
|
+
class: [{ "radio-group--row": e.row }, "radio-group"],
|
|
21
|
+
role: "radiogroup"
|
|
22
|
+
}, r(d)[r(t).GROUP]), [
|
|
23
|
+
i(l.$slots, "default", {}, void 0, !0)
|
|
24
|
+
], 16));
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
export {
|
|
28
|
+
_ as default
|
|
29
|
+
};
|
|
@@ -1 +1,80 @@
|
|
|
1
|
-
import "../../../RadioButtonV4.vue_vue_type_style_index_0_scoped_4f3c7037_lang.css";
|
|
1
|
+
import "../../../RadioButtonV4.vue_vue_type_style_index_0_scoped_4f3c7037_lang.css"; import { defineComponent as R, ref as g, inject as k, computed as c, openBlock as b, createElementBlock as B, normalizeClass as v, unref as e, createElementVNode as l, withDirectives as w, mergeProps as m, isRef as C, vModelRadio as L, renderSlot as N, createVNode as T, withCtx as V, createTextVNode as h, toDisplayString as y, createBlock as A, createCommentVNode as x } from "vue";
|
|
2
|
+
import I from "../../typography/v4/Typography.vue.js";
|
|
3
|
+
import { radioGroupKey as G } from "../common/useRadio.js";
|
|
4
|
+
import { RadioTestIdModifiers as r } from "../../../testids/index.js";
|
|
5
|
+
import { useTestIdAttrs as S } from "../../../utils/testIds.js";
|
|
6
|
+
const M = { class: "wrapper-with-description" }, P = { class: "wrapper" }, j = ["value", "name", "disabled"], _ = /* @__PURE__ */ R({
|
|
7
|
+
__name: "RadioButtonV4",
|
|
8
|
+
props: {
|
|
9
|
+
value: null,
|
|
10
|
+
label: { default: "" },
|
|
11
|
+
name: { default: "" },
|
|
12
|
+
modelValue: { default: void 0 },
|
|
13
|
+
testId: { default: "" },
|
|
14
|
+
labelDescription: { default: "" }
|
|
15
|
+
},
|
|
16
|
+
emits: ["update:modelValue", "change"],
|
|
17
|
+
setup(t, { emit: D }) {
|
|
18
|
+
const o = t, n = S(o.testId, r), u = g(), a = k(G, void 0), p = c(() => !!a), d = c(() => a?.disabled), s = c({
|
|
19
|
+
get() {
|
|
20
|
+
return p.value ? a?.modelValue : o.modelValue;
|
|
21
|
+
},
|
|
22
|
+
set(i) {
|
|
23
|
+
p.value ? a?.changeEvent(i) : D("update:modelValue", i), u.value && (u.value.checked = o.modelValue === o.value);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
return (i, f) => (b(), B("label", {
|
|
27
|
+
class: v(["radio-button", { "radio-button--disabled": e(d) }])
|
|
28
|
+
}, [
|
|
29
|
+
l("span", M, [
|
|
30
|
+
l("span", P, [
|
|
31
|
+
w(l("input", m({
|
|
32
|
+
ref_key: "radioRef",
|
|
33
|
+
ref: u,
|
|
34
|
+
"onUpdate:modelValue": f[0] || (f[0] = (E) => C(s) ? s.value = E : null),
|
|
35
|
+
value: t.value,
|
|
36
|
+
name: t.name || e(a)?.name,
|
|
37
|
+
type: "radio",
|
|
38
|
+
disabled: e(d)
|
|
39
|
+
}, e(n)[e(r).FIELD]), null, 16, j), [
|
|
40
|
+
[L, e(s)]
|
|
41
|
+
]),
|
|
42
|
+
l("span", {
|
|
43
|
+
class: v(["circle", {
|
|
44
|
+
"circle--selected": e(s) === t.value,
|
|
45
|
+
"circle--disabled": e(d)
|
|
46
|
+
}])
|
|
47
|
+
}, null, 2)
|
|
48
|
+
]),
|
|
49
|
+
l("span", m({
|
|
50
|
+
class: ["label", { "label--disabled": e(d) }]
|
|
51
|
+
}, e(n)[e(r).LABEL]), [
|
|
52
|
+
N(i.$slots, "default", {}, () => [
|
|
53
|
+
T(e(I), {
|
|
54
|
+
variant: "body2",
|
|
55
|
+
"is-truncated": ""
|
|
56
|
+
}, {
|
|
57
|
+
default: V(() => [
|
|
58
|
+
h(y(t.label), 1)
|
|
59
|
+
]),
|
|
60
|
+
_: 1
|
|
61
|
+
})
|
|
62
|
+
], !0)
|
|
63
|
+
], 16)
|
|
64
|
+
]),
|
|
65
|
+
t.labelDescription ? (b(), A(e(I), m({
|
|
66
|
+
key: 0,
|
|
67
|
+
variant: "body2",
|
|
68
|
+
class: "label-description"
|
|
69
|
+
}, e(n)[e(r).LABEL_DESCRIPTION]), {
|
|
70
|
+
default: V(() => [
|
|
71
|
+
h(y(t.labelDescription), 1)
|
|
72
|
+
]),
|
|
73
|
+
_: 1
|
|
74
|
+
}, 16)) : x("", !0)
|
|
75
|
+
], 2));
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
export {
|
|
79
|
+
_ as default
|
|
80
|
+
};
|
|
@@ -1 +1,29 @@
|
|
|
1
|
-
import "../../../RadioGroupV4.vue_vue_type_style_index_0_scoped_f8e8cbab_lang.css";
|
|
1
|
+
import "../../../RadioGroupV4.vue_vue_type_style_index_0_scoped_f8e8cbab_lang.css"; import { defineComponent as u, openBlock as n, createElementBlock as p, mergeProps as f, unref as r, renderSlot as i } from "vue";
|
|
2
|
+
import { RadioTestIdModifiers as t } from "../../../testids/index.js";
|
|
3
|
+
import { radioGroupCommon as m } from "../common/radioGroup.common.js";
|
|
4
|
+
import { useTestIdAttrs as c } from "../../../utils/testIds.js";
|
|
5
|
+
const _ = /* @__PURE__ */ u({
|
|
6
|
+
__name: "RadioGroupV4",
|
|
7
|
+
props: {
|
|
8
|
+
name: { default: "" },
|
|
9
|
+
disabled: { type: Boolean, default: !1 },
|
|
10
|
+
modelValue: null,
|
|
11
|
+
row: { type: Boolean, default: !1 },
|
|
12
|
+
testId: { default: "" }
|
|
13
|
+
},
|
|
14
|
+
emits: ["update:modelValue", "change"],
|
|
15
|
+
setup(e, { emit: a }) {
|
|
16
|
+
const o = e, d = c(o.testId, t), { radioGroupRef: s } = m(o, a);
|
|
17
|
+
return (l, g) => (n(), p("div", f({
|
|
18
|
+
ref_key: "radioGroupRef",
|
|
19
|
+
ref: s,
|
|
20
|
+
class: [{ "radio-group--row": e.row }, "radio-group"],
|
|
21
|
+
role: "radiogroup"
|
|
22
|
+
}, r(d)[r(t).GROUP]), [
|
|
23
|
+
i(l.$slots, "default", {}, void 0, !0)
|
|
24
|
+
], 16));
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
export {
|
|
28
|
+
_ as default
|
|
29
|
+
};
|
|
@@ -1 +1,57 @@
|
|
|
1
|
-
import "../../../EditableV4.vue_vue_type_style_index_0_scoped_1bbe222a_lang.css";
|
|
1
|
+
import "../../../EditableV4.vue_vue_type_style_index_0_scoped_1bbe222a_lang.css"; import { defineComponent as f, openBlock as o, createElementBlock as i, unref as t, createElementVNode as m, renderSlot as r, createVNode as d, withCtx as y, createTextVNode as k, toDisplayString as V, createBlock as b, createCommentVNode as g } from "vue";
|
|
2
|
+
import { editableCommon as v } from "../common/Editable.common.js";
|
|
3
|
+
import w from "../../typography/v4/Typography.vue.js";
|
|
4
|
+
import x from "../../input/v4/TextField.vue.js";
|
|
5
|
+
import B from "../../icon/v4/IconV4.vue.js";
|
|
6
|
+
import "../../icon/v4/IconFlag.vue.js";
|
|
7
|
+
const C = { class: "editable-wrapper" }, E = {
|
|
8
|
+
key: 1,
|
|
9
|
+
class: "editable-content"
|
|
10
|
+
}, S = /* @__PURE__ */ f({
|
|
11
|
+
__name: "EditableV4",
|
|
12
|
+
props: {
|
|
13
|
+
cell: { default: "" },
|
|
14
|
+
isLoading: { type: Boolean, default: !1 },
|
|
15
|
+
rowIndex: null,
|
|
16
|
+
cellIndex: null,
|
|
17
|
+
type: { default: "input" },
|
|
18
|
+
withIcons: { type: Boolean, default: !0 },
|
|
19
|
+
saveOnClickOutside: { type: Boolean, default: !0 },
|
|
20
|
+
validateFunction: { type: Function, default: () => !1 },
|
|
21
|
+
displayValue: { type: Function, default: (e) => e }
|
|
22
|
+
},
|
|
23
|
+
setup(e) {
|
|
24
|
+
const s = e, { onEdit: n, target: c, isEditing: u } = v(s);
|
|
25
|
+
return (l, a) => (o(), i("div", {
|
|
26
|
+
ref_key: "target",
|
|
27
|
+
ref: c,
|
|
28
|
+
class: "editable",
|
|
29
|
+
onClick: a[0] || (a[0] = //@ts-ignore
|
|
30
|
+
(...p) => t(n) && t(n)(...p))
|
|
31
|
+
}, [
|
|
32
|
+
m("div", C, [
|
|
33
|
+
t(u) ? r(l.$slots, "input", { key: 0 }, () => [
|
|
34
|
+
d(t(x))
|
|
35
|
+
], !0) : (o(), i("div", E, [
|
|
36
|
+
r(l.$slots, "content", {}, () => [
|
|
37
|
+
d(t(w), { variant: "body1" }, {
|
|
38
|
+
default: y(() => [
|
|
39
|
+
k(V(e.displayValue(e.cell)), 1)
|
|
40
|
+
]),
|
|
41
|
+
_: 1
|
|
42
|
+
}),
|
|
43
|
+
e.type === "dropdown" ? (o(), b(t(B), {
|
|
44
|
+
key: 0,
|
|
45
|
+
class: "caret-icon",
|
|
46
|
+
name: "caret-down",
|
|
47
|
+
size: "20px"
|
|
48
|
+
})) : g("", !0)
|
|
49
|
+
], !0)
|
|
50
|
+
]))
|
|
51
|
+
])
|
|
52
|
+
], 512));
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
export {
|
|
56
|
+
S as default
|
|
57
|
+
};
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './FloatingToolbar.vue_vue_type_style_index_0_scoped_04d485be_lang.css';
|
|
2
2
|
import { AppTriggerTypes as eo } from "./components/appTrigger/index.js";
|
|
3
3
|
import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
|
|
4
4
|
import { MenuItemTypes as ao } from "./components/menuItem/index.js";
|