@mozaic-ds/vue 2.2.0 → 2.4.0
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/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +351 -257
- package/dist/mozaic-vue.js +797 -680
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +1 -1
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +6 -6
- package/src/components/circularprogressbar/MCircularProgressbar.spec.ts +77 -0
- package/src/components/circularprogressbar/MCircularProgressbar.stories.ts +53 -0
- package/src/components/circularprogressbar/MCircularProgressbar.vue +89 -0
- package/src/components/container/MContainer.spec.ts +44 -0
- package/src/components/container/MContainer.stories.ts +32 -0
- package/src/components/container/MContainer.vue +28 -0
- package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.spec.ts +51 -0
- package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.stories.ts +41 -0
- package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.vue +46 -0
- package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.spec.ts +62 -0
- package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.stories.ts +37 -0
- package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.vue +41 -0
- package/src/components/textinput/MTextInput.vue +1 -1
- package/src/components/tooltip/MTooltip.spec.ts +14 -8
- package/src/components/tooltip/MTooltip.stories.ts +8 -8
- package/src/components/tooltip/MTooltip.vue +3 -3
- package/src/main.ts +4 -0
package/dist/mozaic-vue.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as h, computed as v, createBlock as B, openBlock as l, resolveDynamicComponent as A, normalizeClass as g, withCtx as M, createElementBlock as n, createCommentVNode as $, createElementVNode as d, renderSlot as w, Fragment as O, renderList as S, createVNode as k, createTextVNode as q, toDisplayString as f, normalizeStyle as K, mergeProps as I, ref as z, watch as P, withKeys as R, withDirectives as G, vModelDynamic as E, nextTick as X, vModelText as Y } from "vue";
|
|
2
|
+
const Z = {
|
|
3
3
|
key: 0,
|
|
4
4
|
class: "mc-link__icon",
|
|
5
5
|
"aria-hidden": "true"
|
|
6
|
-
},
|
|
6
|
+
}, x = { class: "mc-link__label" }, ee = {
|
|
7
7
|
key: 1,
|
|
8
8
|
class: "mc-link__icon",
|
|
9
9
|
"aria-hidden": "true"
|
|
10
|
-
},
|
|
10
|
+
}, ae = /* @__PURE__ */ h({
|
|
11
11
|
__name: "MLink",
|
|
12
12
|
props: {
|
|
13
13
|
iconPosition: { default: "left" },
|
|
@@ -18,72 +18,69 @@ const x = {
|
|
|
18
18
|
inline: { type: Boolean },
|
|
19
19
|
router: { type: Boolean }
|
|
20
20
|
},
|
|
21
|
-
setup(
|
|
22
|
-
const e =
|
|
21
|
+
setup(r) {
|
|
22
|
+
const e = r, t = v(() => ({
|
|
23
23
|
[`mc-link--${e.appearance}`]: e.appearance && e.appearance != "standard",
|
|
24
24
|
[`mc-link--${e.size}`]: e.size && e.size != "s",
|
|
25
25
|
"mc-link--inline": e.inline,
|
|
26
26
|
"mc-link--stand-alone": !e.inline
|
|
27
27
|
}));
|
|
28
|
-
return (
|
|
29
|
-
class: g(["mc-link",
|
|
30
|
-
href:
|
|
31
|
-
target:
|
|
32
|
-
to:
|
|
28
|
+
return (a, o) => (l(), B(A(a.router ? "router-link" : "a"), {
|
|
29
|
+
class: g(["mc-link", t.value]),
|
|
30
|
+
href: a.href,
|
|
31
|
+
target: a.target,
|
|
32
|
+
to: a.router ? a.href : void 0
|
|
33
33
|
}, {
|
|
34
|
-
default:
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
])) :
|
|
38
|
-
|
|
39
|
-
|
|
34
|
+
default: M(() => [
|
|
35
|
+
a.$slots.icon && a.iconPosition == "left" ? (l(), n("span", Z, [
|
|
36
|
+
w(a.$slots, "icon", {}, void 0, !0)
|
|
37
|
+
])) : $("", !0),
|
|
38
|
+
d("span", x, [
|
|
39
|
+
w(a.$slots, "default", {}, void 0, !0)
|
|
40
40
|
]),
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
])) :
|
|
41
|
+
a.$slots.icon && a.iconPosition == "right" ? (l(), n("span", ee, [
|
|
42
|
+
w(a.$slots, "icon", {}, void 0, !0)
|
|
43
|
+
])) : $("", !0)
|
|
44
44
|
]),
|
|
45
45
|
_: 3
|
|
46
46
|
}, 8, ["class", "href", "target", "to"]));
|
|
47
47
|
}
|
|
48
|
-
}), _ = (
|
|
49
|
-
const
|
|
50
|
-
for (const [
|
|
51
|
-
a
|
|
52
|
-
return
|
|
53
|
-
},
|
|
48
|
+
}), _ = (r, e) => {
|
|
49
|
+
const t = r.__vccOpts || r;
|
|
50
|
+
for (const [a, o] of e)
|
|
51
|
+
t[a] = o;
|
|
52
|
+
return t;
|
|
53
|
+
}, te = /* @__PURE__ */ _(ae, [["__scopeId", "data-v-df607c25"]]), se = { class: "mc-breadcrumb__container" }, le = /* @__PURE__ */ h({
|
|
54
54
|
__name: "MBreadcrumb",
|
|
55
55
|
props: {
|
|
56
56
|
appearance: {},
|
|
57
57
|
links: {}
|
|
58
58
|
},
|
|
59
|
-
setup(
|
|
60
|
-
const e =
|
|
59
|
+
setup(r) {
|
|
60
|
+
const e = r, t = v(() => ({
|
|
61
61
|
[`mc-breadcrumb--${e.appearance}`]: e.appearance && e.appearance != "standard"
|
|
62
|
-
})),
|
|
63
|
-
var s;
|
|
64
|
-
return o === (((s = e.links) == null ? void 0 : s.length) ?? 0) - 1;
|
|
65
|
-
};
|
|
62
|
+
})), a = (o) => o === (e.links?.length ?? 0) - 1;
|
|
66
63
|
return (o, s) => (l(), n("nav", {
|
|
67
|
-
class: g(["mc-breadcrumb",
|
|
64
|
+
class: g(["mc-breadcrumb", t.value]),
|
|
68
65
|
"aria-label": "Breadcrumb"
|
|
69
66
|
}, [
|
|
70
|
-
|
|
67
|
+
d("ul", se, [
|
|
71
68
|
(l(!0), n(O, null, S(o.links, (i, c) => (l(), n("li", {
|
|
72
69
|
class: "mc-breadcrumb__item",
|
|
73
70
|
key: `breadcrumb-${c}`
|
|
74
71
|
}, [
|
|
75
|
-
|
|
72
|
+
k(te, {
|
|
76
73
|
href: i.href,
|
|
77
74
|
router: i.router,
|
|
78
75
|
appearance: o.appearance,
|
|
79
76
|
inline: "",
|
|
80
77
|
class: g({
|
|
81
|
-
"mc-breadcrumb__current":
|
|
78
|
+
"mc-breadcrumb__current": a(c)
|
|
82
79
|
}),
|
|
83
|
-
"aria-current":
|
|
80
|
+
"aria-current": a(c) ? "page" : void 0
|
|
84
81
|
}, {
|
|
85
|
-
default:
|
|
86
|
-
|
|
82
|
+
default: M(() => [
|
|
83
|
+
q(f(i.label), 1)
|
|
87
84
|
]),
|
|
88
85
|
_: 2
|
|
89
86
|
}, 1032, ["href", "router", "appearance", "class", "aria-current"])
|
|
@@ -91,23 +88,23 @@ const x = {
|
|
|
91
88
|
])
|
|
92
89
|
], 2));
|
|
93
90
|
}
|
|
94
|
-
}),
|
|
91
|
+
}), Fs = /* @__PURE__ */ _(le, [["__scopeId", "data-v-41249412"]]), oe = { class: "mc-loader__spinner" }, ne = ["viewBox"], ie = ["r"], re = {
|
|
95
92
|
key: 0,
|
|
96
93
|
class: "mc-loader__text",
|
|
97
94
|
role: "status"
|
|
98
|
-
},
|
|
95
|
+
}, de = /* @__PURE__ */ h({
|
|
99
96
|
__name: "MLoader",
|
|
100
97
|
props: {
|
|
101
98
|
appearance: { default: "standard" },
|
|
102
99
|
size: { default: "m" },
|
|
103
100
|
text: {}
|
|
104
101
|
},
|
|
105
|
-
setup(
|
|
106
|
-
const e =
|
|
102
|
+
setup(r) {
|
|
103
|
+
const e = r, t = v(() => ({
|
|
107
104
|
[`mc-loader--${e.size}`]: e.size && e.size !== "m",
|
|
108
105
|
[`mc-loader--${e.appearance}`]: e.appearance && e.appearance !== "standard",
|
|
109
106
|
"mc-loader--text-visible": e.text
|
|
110
|
-
})),
|
|
107
|
+
})), a = v(() => {
|
|
111
108
|
let s;
|
|
112
109
|
switch (e.size) {
|
|
113
110
|
case "s":
|
|
@@ -135,40 +132,40 @@ const x = {
|
|
|
135
132
|
return s;
|
|
136
133
|
});
|
|
137
134
|
return (s, i) => (l(), n("div", {
|
|
138
|
-
class: g(["mc-loader",
|
|
135
|
+
class: g(["mc-loader", t.value])
|
|
139
136
|
}, [
|
|
140
|
-
|
|
137
|
+
d("span", oe, [
|
|
141
138
|
(l(), n("svg", {
|
|
142
139
|
class: "mc-loader__icon",
|
|
143
140
|
xmlns: "http://www.w3.org/2000/svg",
|
|
144
|
-
viewBox:
|
|
141
|
+
viewBox: a.value,
|
|
145
142
|
"aria-hidden": "true"
|
|
146
143
|
}, [
|
|
147
|
-
|
|
144
|
+
d("circle", {
|
|
148
145
|
class: "mc-loader__path",
|
|
149
146
|
cx: "50%",
|
|
150
147
|
cy: "50%",
|
|
151
148
|
r: o.value
|
|
152
|
-
}, null, 8,
|
|
153
|
-
], 8,
|
|
149
|
+
}, null, 8, ie)
|
|
150
|
+
], 8, ne))
|
|
154
151
|
]),
|
|
155
|
-
s.text ? (l(), n("p", re, f(s.text), 1)) :
|
|
152
|
+
s.text ? (l(), n("p", re, f(s.text), 1)) : $("", !0)
|
|
156
153
|
], 2));
|
|
157
154
|
}
|
|
158
|
-
}),
|
|
155
|
+
}), Q = /* @__PURE__ */ _(de, [["__scopeId", "data-v-998c550b"]]), ce = ["disabled", "type"], ue = {
|
|
159
156
|
key: 0,
|
|
160
157
|
class: "mc-button__icon"
|
|
161
|
-
},
|
|
158
|
+
}, pe = {
|
|
162
159
|
key: 1,
|
|
163
160
|
class: "mc-button__icon",
|
|
164
161
|
style: { position: "absolute" }
|
|
165
|
-
},
|
|
162
|
+
}, me = {
|
|
166
163
|
key: 2,
|
|
167
164
|
class: "mc-button__icon"
|
|
168
|
-
},
|
|
165
|
+
}, _e = {
|
|
169
166
|
key: 4,
|
|
170
167
|
class: "mc-button__icon"
|
|
171
|
-
},
|
|
168
|
+
}, ve = /* @__PURE__ */ h({
|
|
172
169
|
__name: "MButton",
|
|
173
170
|
props: {
|
|
174
171
|
appearance: { default: "standard" },
|
|
@@ -180,45 +177,45 @@ const x = {
|
|
|
180
177
|
type: { default: "button" },
|
|
181
178
|
isLoading: { type: Boolean }
|
|
182
179
|
},
|
|
183
|
-
setup(
|
|
184
|
-
const e =
|
|
180
|
+
setup(r) {
|
|
181
|
+
const e = r, t = v(() => ({
|
|
185
182
|
[`mc-button--${e.appearance}`]: e.appearance && e.appearance != "standard",
|
|
186
183
|
[`mc-button--${e.size}`]: e.size && e.size != "m",
|
|
187
184
|
"mc-button--ghost": e.ghost,
|
|
188
185
|
"mc-button--outlined": e.outlined,
|
|
189
186
|
"mc-button--icon-only": e.iconPosition == "only"
|
|
190
187
|
}));
|
|
191
|
-
return (
|
|
192
|
-
class: g(["mc-button",
|
|
193
|
-
disabled:
|
|
194
|
-
type:
|
|
188
|
+
return (a, o) => (l(), n("button", {
|
|
189
|
+
class: g(["mc-button", t.value]),
|
|
190
|
+
disabled: a.disabled,
|
|
191
|
+
type: a.type
|
|
195
192
|
}, [
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
])) :
|
|
199
|
-
|
|
200
|
-
|
|
193
|
+
a.$slots.icon && a.iconPosition == "left" && !a.isLoading ? (l(), n("span", ue, [
|
|
194
|
+
w(a.$slots, "icon", {}, void 0, !0)
|
|
195
|
+
])) : $("", !0),
|
|
196
|
+
a.isLoading ? (l(), n("span", pe, [
|
|
197
|
+
k(Q, {
|
|
201
198
|
style: { color: "currentColor" },
|
|
202
199
|
size: "s"
|
|
203
200
|
})
|
|
204
|
-
])) :
|
|
205
|
-
|
|
206
|
-
|
|
201
|
+
])) : $("", !0),
|
|
202
|
+
a.$slots.icon && a.iconPosition == "only" ? (l(), n("span", me, [
|
|
203
|
+
w(a.$slots, "icon", {}, void 0, !0)
|
|
207
204
|
])) : (l(), n("span", {
|
|
208
205
|
key: 3,
|
|
209
206
|
class: "mc-button__label",
|
|
210
|
-
style:
|
|
207
|
+
style: K({ visibility: a.isLoading ? "hidden" : "visible" })
|
|
211
208
|
}, [
|
|
212
|
-
|
|
213
|
-
o[0] || (o[0] =
|
|
209
|
+
w(a.$slots, "default", {}, () => [
|
|
210
|
+
o[0] || (o[0] = q("Button Label"))
|
|
214
211
|
], !0)
|
|
215
212
|
], 4)),
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
])) :
|
|
219
|
-
], 10,
|
|
213
|
+
a.$slots.icon && a.iconPosition == "right" && !a.isLoading ? (l(), n("span", _e, [
|
|
214
|
+
w(a.$slots, "icon", {}, void 0, !0)
|
|
215
|
+
])) : $("", !0)
|
|
216
|
+
], 10, ce));
|
|
220
217
|
}
|
|
221
|
-
}), N = /* @__PURE__ */ _(
|
|
218
|
+
}), N = /* @__PURE__ */ _(ve, [["__scopeId", "data-v-f4f43ab6"]]), be = { class: "mc-checkbox" }, fe = ["id", "name", "checked", "indeterminate", "disabled", "aria-invalid"], he = ["for"], $e = /* @__PURE__ */ h({
|
|
222
219
|
__name: "MCheckbox",
|
|
223
220
|
props: {
|
|
224
221
|
id: {},
|
|
@@ -230,15 +227,15 @@ const x = {
|
|
|
230
227
|
disabled: { type: Boolean }
|
|
231
228
|
},
|
|
232
229
|
emits: ["update:modelValue"],
|
|
233
|
-
setup(
|
|
234
|
-
const
|
|
235
|
-
"is-invalid":
|
|
230
|
+
setup(r, { emit: e }) {
|
|
231
|
+
const t = r, a = v(() => ({
|
|
232
|
+
"is-invalid": t.isInvalid
|
|
236
233
|
})), o = e;
|
|
237
|
-
return (s, i) => (l(), n("div",
|
|
238
|
-
|
|
234
|
+
return (s, i) => (l(), n("div", be, [
|
|
235
|
+
d("input", I({
|
|
239
236
|
id: s.id,
|
|
240
237
|
type: "checkbox",
|
|
241
|
-
class: ["mc-checkbox__input",
|
|
238
|
+
class: ["mc-checkbox__input", a.value],
|
|
242
239
|
name: s.name,
|
|
243
240
|
checked: s.modelValue,
|
|
244
241
|
indeterminate: s.indeterminate,
|
|
@@ -246,15 +243,15 @@ const x = {
|
|
|
246
243
|
"aria-invalid": s.isInvalid
|
|
247
244
|
}, s.$attrs, {
|
|
248
245
|
onChange: i[0] || (i[0] = (c) => o("update:modelValue", c.target.checked))
|
|
249
|
-
}), null, 16,
|
|
246
|
+
}), null, 16, fe),
|
|
250
247
|
s.label ? (l(), n("label", {
|
|
251
248
|
key: 0,
|
|
252
249
|
for: s.id,
|
|
253
250
|
class: "mc-checkbox__label"
|
|
254
|
-
}, f(s.label), 9,
|
|
251
|
+
}, f(s.label), 9, he)) : $("", !0)
|
|
255
252
|
]));
|
|
256
253
|
}
|
|
257
|
-
}), ge = /* @__PURE__ */ _(
|
|
254
|
+
}), ge = /* @__PURE__ */ _($e, [["__scopeId", "data-v-37fd0a35"]]), ye = /* @__PURE__ */ h({
|
|
258
255
|
__name: "MCheckboxGroup",
|
|
259
256
|
props: {
|
|
260
257
|
name: {},
|
|
@@ -263,22 +260,22 @@ const x = {
|
|
|
263
260
|
inline: { type: Boolean }
|
|
264
261
|
},
|
|
265
262
|
emits: ["update:modelValue"],
|
|
266
|
-
setup(
|
|
267
|
-
const
|
|
268
|
-
|
|
269
|
-
() =>
|
|
263
|
+
setup(r, { emit: e }) {
|
|
264
|
+
const t = r, a = z([]);
|
|
265
|
+
P(
|
|
266
|
+
() => t.modelValue,
|
|
270
267
|
(p) => {
|
|
271
|
-
|
|
268
|
+
a.value = p || [];
|
|
272
269
|
},
|
|
273
270
|
{ immediate: !0 }
|
|
274
271
|
);
|
|
275
272
|
const o = (p, m) => {
|
|
276
|
-
let u = [...
|
|
277
|
-
p && !u.includes(m) ? u.push(m) : u = u.filter((b) => b !== m), c("update:modelValue", u),
|
|
273
|
+
let u = [...a.value];
|
|
274
|
+
p && !u.includes(m) ? u.push(m) : u = u.filter((b) => b !== m), c("update:modelValue", u), a.value = u;
|
|
278
275
|
}, s = v(() => ({
|
|
279
|
-
"mc-field__container--inline":
|
|
276
|
+
"mc-field__container--inline": t.inline
|
|
280
277
|
})), i = v(() => ({
|
|
281
|
-
"mc-field__container--inline__item":
|
|
278
|
+
"mc-field__container--inline__item": t.inline
|
|
282
279
|
})), c = e;
|
|
283
280
|
return (p, m) => (l(), n("div", {
|
|
284
281
|
class: g(["mc-field__container", s.value])
|
|
@@ -296,7 +293,81 @@ const x = {
|
|
|
296
293
|
}, null, 8, ["id", "label", "is-invalid", "name", "class", "model-value", "disabled", "onUpdate:modelValue"]))), 128))
|
|
297
294
|
], 2));
|
|
298
295
|
}
|
|
299
|
-
}),
|
|
296
|
+
}), Ns = /* @__PURE__ */ _(ye, [["__scopeId", "data-v-8ee4699f"]]), ke = ["aria-valuenow"], we = {
|
|
297
|
+
key: 0,
|
|
298
|
+
class: "mc-circular-progressbar__percentage"
|
|
299
|
+
}, Ve = { class: "mc-circular-progressbar__value" }, Ie = {
|
|
300
|
+
key: 1,
|
|
301
|
+
class: "mc-circular-progressbar__content"
|
|
302
|
+
}, Be = { class: "mc-circular-progressbar__number" }, Ce = {
|
|
303
|
+
key: 0,
|
|
304
|
+
class: "mc-circular-progressbar__text"
|
|
305
|
+
}, Me = /* @__PURE__ */ h({
|
|
306
|
+
__name: "MCircularProgressbar",
|
|
307
|
+
props: {
|
|
308
|
+
size: {},
|
|
309
|
+
value: { default: 0 },
|
|
310
|
+
type: { default: "percentage" },
|
|
311
|
+
contentValue: {},
|
|
312
|
+
additionalInfo: {}
|
|
313
|
+
},
|
|
314
|
+
setup(r) {
|
|
315
|
+
const e = r, t = v(() => ({
|
|
316
|
+
[`mc-circular-progressbar--${e.size}`]: e.size && e.size != "l"
|
|
317
|
+
}));
|
|
318
|
+
return (a, o) => (l(), n("div", {
|
|
319
|
+
class: g(["mc-circular-progressbar", t.value]),
|
|
320
|
+
role: "progressbar",
|
|
321
|
+
style: K(`--progress-value: ${a.value};`),
|
|
322
|
+
"aria-valuenow": a.value,
|
|
323
|
+
"aria-valuemin": 0,
|
|
324
|
+
"aria-valuemax": 100
|
|
325
|
+
}, [
|
|
326
|
+
o[1] || (o[1] = d("svg", {
|
|
327
|
+
class: "mc-circular-progressbar__line",
|
|
328
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
329
|
+
"aria-hidden": "true",
|
|
330
|
+
viewBox: "0 0 100 100"
|
|
331
|
+
}, [
|
|
332
|
+
d("circle", {
|
|
333
|
+
class: "mc-circular-progressbar__track",
|
|
334
|
+
cx: "50",
|
|
335
|
+
cy: "50",
|
|
336
|
+
r: "46"
|
|
337
|
+
}),
|
|
338
|
+
d("circle", {
|
|
339
|
+
class: "mc-circular-progressbar__indicator",
|
|
340
|
+
cx: "50",
|
|
341
|
+
cy: "50",
|
|
342
|
+
r: "46"
|
|
343
|
+
})
|
|
344
|
+
], -1)),
|
|
345
|
+
a.type === "percentage" ? (l(), n("div", we, [
|
|
346
|
+
d("p", Ve, f(a.value), 1),
|
|
347
|
+
o[0] || (o[0] = d("p", { class: "mc-circular-progressbar__unit" }, "%", -1))
|
|
348
|
+
])) : $("", !0),
|
|
349
|
+
a.type === "content" ? (l(), n("div", Ie, [
|
|
350
|
+
d("p", Be, f(a.contentValue), 1),
|
|
351
|
+
a.additionalInfo ? (l(), n("p", Ce, f(a.additionalInfo), 1)) : $("", !0)
|
|
352
|
+
])) : $("", !0)
|
|
353
|
+
], 14, ke));
|
|
354
|
+
}
|
|
355
|
+
}), As = /* @__PURE__ */ _(Me, [["__scopeId", "data-v-ec931b7f"]]), ze = /* @__PURE__ */ h({
|
|
356
|
+
__name: "MContainer",
|
|
357
|
+
props: {
|
|
358
|
+
fluid: { type: Boolean }
|
|
359
|
+
},
|
|
360
|
+
setup(r) {
|
|
361
|
+
const e = r, t = v(() => ({
|
|
362
|
+
"ml-container--fluid": e.fluid
|
|
363
|
+
}));
|
|
364
|
+
return (a, o) => (l(), n("div", {
|
|
365
|
+
class: g(["ml-container", t.value])
|
|
366
|
+
}, [
|
|
367
|
+
w(a.$slots, "default", {}, void 0, !0)
|
|
368
|
+
], 2));
|
|
369
|
+
}
|
|
370
|
+
}), Rs = /* @__PURE__ */ _(ze, [["__scopeId", "data-v-31859e0b"]]), Le = {
|
|
300
371
|
name: "CrossCircleFilled24",
|
|
301
372
|
props: {
|
|
302
373
|
/**
|
|
@@ -307,26 +378,26 @@ const x = {
|
|
|
307
378
|
default: "currentColor"
|
|
308
379
|
}
|
|
309
380
|
}
|
|
310
|
-
},
|
|
311
|
-
function
|
|
381
|
+
}, je = ["fill"];
|
|
382
|
+
function Te(r, e, t, a, o, s) {
|
|
312
383
|
return l(), n("svg", {
|
|
313
384
|
"aria-hidden": "true",
|
|
314
|
-
fill:
|
|
385
|
+
fill: t.color,
|
|
315
386
|
xmlns: "http://www.w3.org/2000/svg",
|
|
316
387
|
viewBox: "0 0 24 24",
|
|
317
388
|
width: "24",
|
|
318
389
|
height: "24"
|
|
319
390
|
}, e[0] || (e[0] = [
|
|
320
|
-
|
|
391
|
+
d("path", {
|
|
321
392
|
"fill-rule": "evenodd",
|
|
322
393
|
d: "M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M8.293 8.293a1 1 0 0 1 1.414 0L12 10.586l2.293-2.293a1 1 0 1 1 1.414 1.414L13.414 12l2.293 2.293a1 1 0 0 1-1.414 1.414L12 13.414l-2.293 2.293a1 1 0 0 1-1.414-1.414L10.586 12 8.293 9.707a1 1 0 0 1 0-1.414"
|
|
323
394
|
}, null, -1)
|
|
324
|
-
]), 8,
|
|
395
|
+
]), 8, je);
|
|
325
396
|
}
|
|
326
|
-
const F = /* @__PURE__ */ _(
|
|
397
|
+
const F = /* @__PURE__ */ _(Le, [["render", Te]]), Oe = ["id", "value", "name", "disabled", "aria-invalid", "readonly"], Se = {
|
|
327
398
|
key: 0,
|
|
328
399
|
class: "mc-datepicker__controls-options mc-controls-options"
|
|
329
|
-
},
|
|
400
|
+
}, Pe = { class: "mc-controls-options__label" }, qe = /* @__PURE__ */ h({
|
|
330
401
|
__name: "MDatepicker",
|
|
331
402
|
props: {
|
|
332
403
|
id: {},
|
|
@@ -340,17 +411,17 @@ const F = /* @__PURE__ */ _(we, [["render", Ie]]), Be = ["id", "value", "name",
|
|
|
340
411
|
clearLabel: { default: "clear content" }
|
|
341
412
|
},
|
|
342
413
|
emits: ["update:modelValue"],
|
|
343
|
-
setup(
|
|
344
|
-
const
|
|
345
|
-
[`mc-text-input--${
|
|
346
|
-
"is-invalid":
|
|
347
|
-
})), o = z(
|
|
414
|
+
setup(r, { emit: e }) {
|
|
415
|
+
const t = r, a = v(() => ({
|
|
416
|
+
[`mc-text-input--${t.size} mc-datepicker--${t.size}`]: t.size && t.size != "m",
|
|
417
|
+
"is-invalid": t.isInvalid
|
|
418
|
+
})), o = z(t.modelValue), s = () => {
|
|
348
419
|
o.value = "", i("update:modelValue", "");
|
|
349
420
|
}, i = e;
|
|
350
421
|
return (c, p) => (l(), n("div", {
|
|
351
|
-
class: g(["mc-datepicker mc-text-input",
|
|
422
|
+
class: g(["mc-datepicker mc-text-input", a.value])
|
|
352
423
|
}, [
|
|
353
|
-
|
|
424
|
+
d("input", I({
|
|
354
425
|
id: c.id,
|
|
355
426
|
class: "mc-datepicker__control mc-text-input__control",
|
|
356
427
|
value: o.value,
|
|
@@ -361,43 +432,43 @@ const F = /* @__PURE__ */ _(we, [["render", Ie]]), Be = ["id", "value", "name",
|
|
|
361
432
|
readonly: c.readonly
|
|
362
433
|
}, c.$attrs, {
|
|
363
434
|
onInput: p[0] || (p[0] = (m) => i("update:modelValue", m.target.value))
|
|
364
|
-
}), null, 16,
|
|
365
|
-
c.isClearable && o.value ? (l(), n("div",
|
|
366
|
-
|
|
435
|
+
}), null, 16, Oe),
|
|
436
|
+
c.isClearable && o.value ? (l(), n("div", Se, [
|
|
437
|
+
d("button", {
|
|
367
438
|
type: "button",
|
|
368
439
|
class: "mc-controls-options__button",
|
|
369
440
|
onClick: s
|
|
370
441
|
}, [
|
|
371
|
-
|
|
442
|
+
k(F, {
|
|
372
443
|
class: "mc-controls-options__icon",
|
|
373
444
|
"aria-hidden": "true"
|
|
374
445
|
}),
|
|
375
|
-
|
|
446
|
+
d("span", Pe, f(c.clearLabel), 1)
|
|
376
447
|
])
|
|
377
|
-
])) :
|
|
448
|
+
])) : $("", !0)
|
|
378
449
|
], 2));
|
|
379
450
|
}
|
|
380
|
-
}),
|
|
451
|
+
}), Gs = /* @__PURE__ */ _(qe, [["__scopeId", "data-v-0c5cddc2"]]), De = { class: "mc-divider" }, Fe = /* @__PURE__ */ h({
|
|
381
452
|
__name: "MDivider",
|
|
382
453
|
props: {
|
|
383
454
|
orientation: { default: "horizontal" },
|
|
384
455
|
style: { default: "primary" },
|
|
385
456
|
size: { default: "s" }
|
|
386
457
|
},
|
|
387
|
-
setup(
|
|
388
|
-
const e =
|
|
458
|
+
setup(r) {
|
|
459
|
+
const e = r, t = v(() => ({
|
|
389
460
|
[`mc-divider-${e.orientation}`]: e.orientation,
|
|
390
461
|
[`mc-divider-horizontal--${e.style}`]: e.style && e.style != "primary",
|
|
391
462
|
[`mc-divider-horizontal--${e.size}`]: e.size && e.size != "s"
|
|
392
463
|
}));
|
|
393
|
-
return (
|
|
394
|
-
|
|
395
|
-
class: g(
|
|
464
|
+
return (a, o) => (l(), n("div", De, [
|
|
465
|
+
d("div", {
|
|
466
|
+
class: g(t.value)
|
|
396
467
|
}, null, 2),
|
|
397
|
-
|
|
468
|
+
w(a.$slots, "default", {}, void 0, !0)
|
|
398
469
|
]));
|
|
399
470
|
}
|
|
400
|
-
}),
|
|
471
|
+
}), Ne = /* @__PURE__ */ _(Fe, [["__scopeId", "data-v-f8e160af"]]), Ae = {
|
|
401
472
|
name: "ArrowBack24",
|
|
402
473
|
props: {
|
|
403
474
|
/**
|
|
@@ -408,23 +479,23 @@ const F = /* @__PURE__ */ _(we, [["render", Ie]]), Be = ["id", "value", "name",
|
|
|
408
479
|
default: "currentColor"
|
|
409
480
|
}
|
|
410
481
|
}
|
|
411
|
-
},
|
|
412
|
-
function
|
|
482
|
+
}, Re = ["fill"];
|
|
483
|
+
function Ge(r, e, t, a, o, s) {
|
|
413
484
|
return l(), n("svg", {
|
|
414
485
|
"aria-hidden": "true",
|
|
415
|
-
fill:
|
|
486
|
+
fill: t.color,
|
|
416
487
|
xmlns: "http://www.w3.org/2000/svg",
|
|
417
488
|
viewBox: "0 0 24 24",
|
|
418
489
|
width: "24",
|
|
419
490
|
height: "24"
|
|
420
491
|
}, e[0] || (e[0] = [
|
|
421
|
-
|
|
492
|
+
d("path", {
|
|
422
493
|
"fill-rule": "evenodd",
|
|
423
494
|
d: "M8.707 6.293a1 1 0 0 1 0 1.414L5.414 11H21a1 1 0 1 1 0 2H5.414l3.293 3.293a1 1 0 1 1-1.414 1.414l-5-5a1 1 0 0 1 0-1.414l5-5a1 1 0 0 1 1.414 0"
|
|
424
495
|
}, null, -1)
|
|
425
|
-
]), 8,
|
|
496
|
+
]), 8, Re);
|
|
426
497
|
}
|
|
427
|
-
const
|
|
498
|
+
const Ue = /* @__PURE__ */ _(Ae, [["render", Ge]]), He = {
|
|
428
499
|
name: "Cross24",
|
|
429
500
|
props: {
|
|
430
501
|
/**
|
|
@@ -435,23 +506,23 @@ const De = /* @__PURE__ */ _(Oe, [["render", qe]]), Pe = {
|
|
|
435
506
|
default: "currentColor"
|
|
436
507
|
}
|
|
437
508
|
}
|
|
438
|
-
},
|
|
439
|
-
function
|
|
509
|
+
}, Ke = ["fill"];
|
|
510
|
+
function Ee(r, e, t, a, o, s) {
|
|
440
511
|
return l(), n("svg", {
|
|
441
512
|
"aria-hidden": "true",
|
|
442
|
-
fill:
|
|
513
|
+
fill: t.color,
|
|
443
514
|
xmlns: "http://www.w3.org/2000/svg",
|
|
444
515
|
viewBox: "0 0 24 24",
|
|
445
516
|
width: "24",
|
|
446
517
|
height: "24"
|
|
447
518
|
}, e[0] || (e[0] = [
|
|
448
|
-
|
|
519
|
+
d("path", {
|
|
449
520
|
"fill-rule": "evenodd",
|
|
450
521
|
d: "M17.707 7.707a1 1 0 0 0-1.414-1.414L12 10.586 7.707 6.293a1 1 0 0 0-1.414 1.414L10.586 12l-4.293 4.293a1 1 0 1 0 1.414 1.414L12 13.414l4.293 4.293a1 1 0 0 0 1.414-1.414L13.414 12z"
|
|
451
522
|
}, null, -1)
|
|
452
|
-
]), 8,
|
|
523
|
+
]), 8, Ke);
|
|
453
524
|
}
|
|
454
|
-
const
|
|
525
|
+
const W = /* @__PURE__ */ _(He, [["render", Ee]]), Qe = ["disabled", "type"], We = { class: "mc-button__icon" }, Je = /* @__PURE__ */ h({
|
|
455
526
|
__name: "MIconButton",
|
|
456
527
|
props: {
|
|
457
528
|
appearance: { default: "standard" },
|
|
@@ -461,58 +532,58 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
461
532
|
outlined: { type: Boolean },
|
|
462
533
|
type: { default: "button" }
|
|
463
534
|
},
|
|
464
|
-
setup(
|
|
465
|
-
const e =
|
|
535
|
+
setup(r) {
|
|
536
|
+
const e = r, t = v(() => ({
|
|
466
537
|
[`mc-button--${e.appearance}`]: e.appearance && e.appearance != "standard",
|
|
467
538
|
[`mc-button--${e.size}`]: e.size && e.size != "m",
|
|
468
539
|
"mc-button--ghost": e.ghost,
|
|
469
540
|
"mc-button--outlined": e.outlined
|
|
470
541
|
}));
|
|
471
|
-
return (
|
|
472
|
-
class: g(["mc-button mc-button--icon-button",
|
|
473
|
-
disabled:
|
|
474
|
-
type:
|
|
542
|
+
return (a, o) => (l(), n("button", {
|
|
543
|
+
class: g(["mc-button mc-button--icon-button", t.value]),
|
|
544
|
+
disabled: a.disabled,
|
|
545
|
+
type: a.type
|
|
475
546
|
}, [
|
|
476
|
-
|
|
477
|
-
|
|
547
|
+
d("span", We, [
|
|
548
|
+
w(a.$slots, "icon", {}, void 0, !0)
|
|
478
549
|
])
|
|
479
|
-
], 10,
|
|
550
|
+
], 10, Qe));
|
|
480
551
|
}
|
|
481
|
-
}), D = /* @__PURE__ */ _(
|
|
552
|
+
}), D = /* @__PURE__ */ _(Je, [["__scopeId", "data-v-abf78562"]]), Xe = ["aria-labelledby"], Ye = /* @__PURE__ */ h({
|
|
482
553
|
__name: "MOverlay",
|
|
483
554
|
props: {
|
|
484
555
|
isVisible: { type: Boolean },
|
|
485
556
|
dialogLabel: {}
|
|
486
557
|
},
|
|
487
|
-
setup(
|
|
488
|
-
return (e,
|
|
558
|
+
setup(r) {
|
|
559
|
+
return (e, t) => (l(), n("div", {
|
|
489
560
|
class: g(["mc-overlay", { "is-visible": e.isVisible }])
|
|
490
561
|
}, [
|
|
491
|
-
|
|
562
|
+
d("div", {
|
|
492
563
|
role: "dialog",
|
|
493
564
|
tabindex: "-1",
|
|
494
565
|
"aria-labelledby": e.dialogLabel
|
|
495
566
|
}, [
|
|
496
|
-
|
|
497
|
-
], 8,
|
|
567
|
+
w(e.$slots, "default", {}, void 0, !0)
|
|
568
|
+
], 8, Xe)
|
|
498
569
|
], 2));
|
|
499
570
|
}
|
|
500
|
-
}),
|
|
571
|
+
}), J = /* @__PURE__ */ _(Ye, [["__scopeId", "data-v-db90fdb3"]]), Ze = ["aria-modal", "aria-hidden"], xe = {
|
|
501
572
|
class: "mc-drawer__dialog",
|
|
502
573
|
role: "document"
|
|
503
|
-
},
|
|
574
|
+
}, ea = { class: "mc-drawer__header" }, aa = {
|
|
504
575
|
class: "mc-drawer__title",
|
|
505
576
|
id: "drawerTitle"
|
|
506
|
-
},
|
|
577
|
+
}, ta = { class: "mc-drawer__body" }, sa = {
|
|
507
578
|
class: "mc-drawer__content",
|
|
508
579
|
tabindex: "0"
|
|
509
|
-
},
|
|
580
|
+
}, la = {
|
|
510
581
|
key: 0,
|
|
511
582
|
class: "mc-drawer__content__title"
|
|
512
|
-
},
|
|
583
|
+
}, oa = {
|
|
513
584
|
key: 0,
|
|
514
585
|
class: "mc-drawer__footer"
|
|
515
|
-
},
|
|
586
|
+
}, na = /* @__PURE__ */ h({
|
|
516
587
|
__name: "MDrawer",
|
|
517
588
|
props: {
|
|
518
589
|
open: { type: Boolean },
|
|
@@ -523,14 +594,14 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
523
594
|
contentTitle: {}
|
|
524
595
|
},
|
|
525
596
|
emits: ["update:open", "back"],
|
|
526
|
-
setup(
|
|
527
|
-
const
|
|
528
|
-
"is-open":
|
|
529
|
-
"mc-drawer--extend":
|
|
530
|
-
[`mc-drawer--${
|
|
597
|
+
setup(r, { emit: e }) {
|
|
598
|
+
const t = r, a = v(() => ({
|
|
599
|
+
"is-open": t.open,
|
|
600
|
+
"mc-drawer--extend": t.extended,
|
|
601
|
+
[`mc-drawer--${t.position}`]: t.position && t.position != "right"
|
|
531
602
|
}));
|
|
532
|
-
|
|
533
|
-
() =>
|
|
603
|
+
P(
|
|
604
|
+
() => t.open,
|
|
534
605
|
(i) => {
|
|
535
606
|
s("update:open", i);
|
|
536
607
|
}
|
|
@@ -538,13 +609,13 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
538
609
|
const o = () => {
|
|
539
610
|
s("update:open", !1);
|
|
540
611
|
}, s = e;
|
|
541
|
-
return (i, c) => (l(), B(
|
|
612
|
+
return (i, c) => (l(), B(J, {
|
|
542
613
|
"is-visible": i.open,
|
|
543
614
|
dialogLabel: "drawerTitle"
|
|
544
615
|
}, {
|
|
545
|
-
default:
|
|
546
|
-
|
|
547
|
-
class: ["mc-drawer",
|
|
616
|
+
default: M(() => [
|
|
617
|
+
d("section", I({
|
|
618
|
+
class: ["mc-drawer", a.value],
|
|
548
619
|
role: "dialog",
|
|
549
620
|
"aria-labelledby": "drawerTitle",
|
|
550
621
|
"aria-modal": i.open ? "true" : "false",
|
|
@@ -553,8 +624,8 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
553
624
|
}, i.$attrs, {
|
|
554
625
|
onKeydown: R(o, ["esc"])
|
|
555
626
|
}), [
|
|
556
|
-
|
|
557
|
-
|
|
627
|
+
d("div", xe, [
|
|
628
|
+
d("div", ea, [
|
|
558
629
|
i.back ? (l(), B(D, {
|
|
559
630
|
key: 0,
|
|
560
631
|
class: "mc-drawer__back",
|
|
@@ -562,43 +633,43 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
562
633
|
ghost: "",
|
|
563
634
|
onClick: c[0] || (c[0] = (p) => s("back"))
|
|
564
635
|
}, {
|
|
565
|
-
icon:
|
|
566
|
-
|
|
636
|
+
icon: M(() => [
|
|
637
|
+
k(Ue, { "aria-hidden": "true" })
|
|
567
638
|
]),
|
|
568
639
|
_: 1
|
|
569
|
-
})) :
|
|
570
|
-
|
|
571
|
-
|
|
640
|
+
})) : $("", !0),
|
|
641
|
+
d("h2", aa, f(i.title), 1),
|
|
642
|
+
k(D, {
|
|
572
643
|
class: "mc-drawer__close",
|
|
573
644
|
"aria-label": "Close",
|
|
574
645
|
ghost: "",
|
|
575
646
|
onClick: o
|
|
576
647
|
}, {
|
|
577
|
-
icon:
|
|
578
|
-
|
|
648
|
+
icon: M(() => [
|
|
649
|
+
k(W, { "aria-hidden": "true" })
|
|
579
650
|
]),
|
|
580
651
|
_: 1
|
|
581
652
|
})
|
|
582
653
|
]),
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
i.contentTitle ? (l(), n("h2",
|
|
586
|
-
|
|
654
|
+
d("div", ta, [
|
|
655
|
+
d("div", sa, [
|
|
656
|
+
i.contentTitle ? (l(), n("h2", la, f(i.contentTitle), 1)) : $("", !0),
|
|
657
|
+
w(i.$slots, "default", {}, void 0, !0)
|
|
587
658
|
])
|
|
588
659
|
]),
|
|
589
|
-
i.$slots.footer ? (l(), n("div",
|
|
590
|
-
|
|
591
|
-
])) :
|
|
660
|
+
i.$slots.footer ? (l(), n("div", oa, [
|
|
661
|
+
w(i.$slots, "footer", {}, void 0, !0)
|
|
662
|
+
])) : $("", !0)
|
|
592
663
|
])
|
|
593
|
-
], 16,
|
|
664
|
+
], 16, Ze)
|
|
594
665
|
]),
|
|
595
666
|
_: 3
|
|
596
667
|
}, 8, ["is-visible"]));
|
|
597
668
|
}
|
|
598
|
-
}),
|
|
669
|
+
}), Us = /* @__PURE__ */ _(na, [["__scopeId", "data-v-673a796c"]]), ia = { class: "mc-field" }, ra = ["for"], da = {
|
|
599
670
|
key: 0,
|
|
600
671
|
class: "mc-field__requirement"
|
|
601
|
-
},
|
|
672
|
+
}, ca = ["id"], ua = { class: "mc-field__content" }, pa = ["id"], ma = /* @__PURE__ */ h({
|
|
602
673
|
__name: "MField",
|
|
603
674
|
props: {
|
|
604
675
|
id: {},
|
|
@@ -611,41 +682,41 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
611
682
|
messageId: {},
|
|
612
683
|
message: {}
|
|
613
684
|
},
|
|
614
|
-
setup(
|
|
615
|
-
const e =
|
|
685
|
+
setup(r) {
|
|
686
|
+
const e = r, t = v(() => ({
|
|
616
687
|
"is-valid": e.isValid,
|
|
617
688
|
"is-invalid": e.isInvalid
|
|
618
689
|
}));
|
|
619
|
-
return (
|
|
620
|
-
|
|
690
|
+
return (a, o) => (l(), n("div", ia, [
|
|
691
|
+
d("label", {
|
|
621
692
|
class: "mc-field__label",
|
|
622
|
-
for:
|
|
693
|
+
for: a.id
|
|
623
694
|
}, [
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
], 8,
|
|
627
|
-
|
|
695
|
+
q(f(a.label) + " ", 1),
|
|
696
|
+
a.requirementText ? (l(), n("span", da, "(" + f(a.requirementText) + ")", 1)) : $("", !0)
|
|
697
|
+
], 8, ra),
|
|
698
|
+
a.helpId && a.helpText ? (l(), n("span", {
|
|
628
699
|
key: 0,
|
|
629
|
-
id:
|
|
700
|
+
id: a.helpId,
|
|
630
701
|
class: "mc-field__help"
|
|
631
|
-
}, f(
|
|
632
|
-
|
|
633
|
-
|
|
702
|
+
}, f(a.helpText), 9, ca)) : $("", !0),
|
|
703
|
+
d("div", ua, [
|
|
704
|
+
w(a.$slots, "default", {}, void 0, !0)
|
|
634
705
|
]),
|
|
635
|
-
(
|
|
706
|
+
(a.isValid || a.isInvalid) && a.message ? (l(), n("span", {
|
|
636
707
|
key: 1,
|
|
637
|
-
class: g(["mc-field__validation-message",
|
|
638
|
-
id:
|
|
639
|
-
}, f(
|
|
708
|
+
class: g(["mc-field__validation-message", t.value]),
|
|
709
|
+
id: a.messageId
|
|
710
|
+
}, f(a.message), 11, pa)) : $("", !0)
|
|
640
711
|
]));
|
|
641
712
|
}
|
|
642
|
-
}),
|
|
713
|
+
}), Hs = /* @__PURE__ */ _(ma, [["__scopeId", "data-v-ead078c4"]]), _a = { class: "mc-field--group" }, va = ["for"], ba = {
|
|
643
714
|
key: 0,
|
|
644
715
|
class: "mc-field__requirement"
|
|
645
|
-
},
|
|
716
|
+
}, fa = {
|
|
646
717
|
key: 0,
|
|
647
718
|
class: "mc-field__help"
|
|
648
|
-
},
|
|
719
|
+
}, ha = { class: "mc-field__content" }, $a = /* @__PURE__ */ h({
|
|
649
720
|
__name: "MFieldGroup",
|
|
650
721
|
props: {
|
|
651
722
|
id: {},
|
|
@@ -656,81 +727,81 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
656
727
|
isInvalid: { type: Boolean },
|
|
657
728
|
message: {}
|
|
658
729
|
},
|
|
659
|
-
setup(
|
|
660
|
-
const e =
|
|
730
|
+
setup(r) {
|
|
731
|
+
const e = r, t = v(() => ({
|
|
661
732
|
"is-valid": e.isValid,
|
|
662
733
|
"is-invalid": e.isInvalid
|
|
663
734
|
}));
|
|
664
|
-
return (
|
|
665
|
-
|
|
735
|
+
return (a, o) => (l(), n("fieldset", _a, [
|
|
736
|
+
d("legend", {
|
|
666
737
|
class: "mc-field__legend",
|
|
667
|
-
for:
|
|
738
|
+
for: a.id
|
|
668
739
|
}, [
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
], 8,
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
740
|
+
q(f(a.legend) + " ", 1),
|
|
741
|
+
a.requirementText ? (l(), n("span", ba, "(" + f(a.requirementText) + ")", 1)) : $("", !0)
|
|
742
|
+
], 8, va),
|
|
743
|
+
a.helpText ? (l(), n("span", fa, f(a.helpText), 1)) : $("", !0),
|
|
744
|
+
d("div", ha, [
|
|
745
|
+
w(a.$slots, "default", {}, void 0, !0)
|
|
675
746
|
]),
|
|
676
|
-
(
|
|
747
|
+
(a.isValid || a.isInvalid) && a.message ? (l(), n("span", {
|
|
677
748
|
key: 1,
|
|
678
|
-
class: g(["mc-field__validation-message",
|
|
679
|
-
}, f(
|
|
749
|
+
class: g(["mc-field__validation-message", t.value])
|
|
750
|
+
}, f(a.message), 3)) : $("", !0)
|
|
680
751
|
]));
|
|
681
752
|
}
|
|
682
|
-
}),
|
|
753
|
+
}), Ks = /* @__PURE__ */ _($a, [["__scopeId", "data-v-fc0c08dc"]]), ga = { class: "mc-flag__label" }, ya = /* @__PURE__ */ h({
|
|
683
754
|
__name: "MFlag",
|
|
684
755
|
props: {
|
|
685
756
|
label: {},
|
|
686
757
|
appearance: {}
|
|
687
758
|
},
|
|
688
|
-
setup(
|
|
689
|
-
const e =
|
|
759
|
+
setup(r) {
|
|
760
|
+
const e = r, t = v(() => ({
|
|
690
761
|
[`mc-flag--${e.appearance}`]: e.appearance && e.appearance != "standard"
|
|
691
762
|
}));
|
|
692
|
-
return (
|
|
693
|
-
class: g(["mc-flag",
|
|
763
|
+
return (a, o) => (l(), n("div", {
|
|
764
|
+
class: g(["mc-flag", t.value])
|
|
694
765
|
}, [
|
|
695
|
-
|
|
766
|
+
d("span", ga, f(a.label), 1)
|
|
696
767
|
], 2));
|
|
697
768
|
}
|
|
698
|
-
}),
|
|
769
|
+
}), Es = /* @__PURE__ */ _(ya, [["__scopeId", "data-v-9245f79e"]]), ka = ["aria-label"], wa = /* @__PURE__ */ h({
|
|
699
770
|
__name: "MLoadingOverlay",
|
|
700
771
|
props: {
|
|
701
772
|
isVisible: { type: Boolean },
|
|
702
773
|
text: {}
|
|
703
774
|
},
|
|
704
|
-
setup(
|
|
705
|
-
return (e,
|
|
775
|
+
setup(r) {
|
|
776
|
+
return (e, t) => (l(), n("div", {
|
|
706
777
|
class: g(["mc-loading-loader", { "is-visible": e.isVisible }])
|
|
707
778
|
}, [
|
|
708
|
-
|
|
779
|
+
d("div", I({
|
|
709
780
|
role: "dialog",
|
|
710
781
|
tabindex: "-1",
|
|
711
782
|
"aria-label": e.text
|
|
712
783
|
}, e.$attrs), [
|
|
713
|
-
|
|
784
|
+
k(Q, {
|
|
714
785
|
size: "l",
|
|
715
786
|
appearance: "inverse",
|
|
716
787
|
text: e.text
|
|
717
788
|
}, null, 8, ["text"])
|
|
718
|
-
], 16,
|
|
789
|
+
], 16, ka)
|
|
719
790
|
], 2));
|
|
720
791
|
}
|
|
721
|
-
}),
|
|
792
|
+
}), Qs = /* @__PURE__ */ _(wa, [["__scopeId", "data-v-eae6b1f2"]]), Va = ["aria-modal", "aria-hidden"], Ia = {
|
|
722
793
|
class: "mc-modal__dialog",
|
|
723
794
|
role: "document"
|
|
724
|
-
},
|
|
795
|
+
}, Ba = { class: "mc-modal__header" }, Ca = {
|
|
725
796
|
key: 0,
|
|
726
797
|
class: "mc-modal__icon"
|
|
727
|
-
},
|
|
798
|
+
}, Ma = {
|
|
728
799
|
class: "mc-modal__title",
|
|
729
800
|
id: "modalTitle"
|
|
730
|
-
},
|
|
801
|
+
}, za = { class: "mc-modal__body" }, La = {
|
|
731
802
|
key: 0,
|
|
732
803
|
class: "mc-modal__footer"
|
|
733
|
-
},
|
|
804
|
+
}, ja = { class: "mc-modal__link" }, Ta = /* @__PURE__ */ h({
|
|
734
805
|
__name: "MModal",
|
|
735
806
|
props: {
|
|
736
807
|
open: { type: Boolean },
|
|
@@ -739,12 +810,12 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
739
810
|
closable: { type: Boolean, default: !0 }
|
|
740
811
|
},
|
|
741
812
|
emits: ["update:open"],
|
|
742
|
-
setup(
|
|
743
|
-
const
|
|
744
|
-
"is-open":
|
|
813
|
+
setup(r, { emit: e }) {
|
|
814
|
+
const t = r, a = v(() => ({
|
|
815
|
+
"is-open": t.open
|
|
745
816
|
}));
|
|
746
|
-
|
|
747
|
-
() =>
|
|
817
|
+
P(
|
|
818
|
+
() => t.open,
|
|
748
819
|
(i) => {
|
|
749
820
|
s("update:open", i);
|
|
750
821
|
}
|
|
@@ -752,13 +823,13 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
752
823
|
const o = () => {
|
|
753
824
|
s("update:open", !1);
|
|
754
825
|
}, s = e;
|
|
755
|
-
return (i, c) => (l(), B(
|
|
826
|
+
return (i, c) => (l(), B(J, {
|
|
756
827
|
"is-visible": i.open,
|
|
757
828
|
dialogLabel: "modalTitle"
|
|
758
829
|
}, {
|
|
759
|
-
default:
|
|
760
|
-
|
|
761
|
-
class: ["mc-modal",
|
|
830
|
+
default: M(() => [
|
|
831
|
+
d("section", I({
|
|
832
|
+
class: ["mc-modal", a.value],
|
|
762
833
|
role: "dialog",
|
|
763
834
|
"aria-labelledby": "modalTitle",
|
|
764
835
|
"aria-modal": i.open ? "true" : "false",
|
|
@@ -767,12 +838,12 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
767
838
|
}, i.$attrs, {
|
|
768
839
|
onKeydown: R(o, ["esc"])
|
|
769
840
|
}), [
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
i.$slots.icon ? (l(), n("span",
|
|
773
|
-
|
|
774
|
-
])) :
|
|
775
|
-
|
|
841
|
+
d("div", Ia, [
|
|
842
|
+
d("header", Ba, [
|
|
843
|
+
i.$slots.icon ? (l(), n("span", Ca, [
|
|
844
|
+
w(i.$slots, "icon", {}, void 0, !0)
|
|
845
|
+
])) : $("", !0),
|
|
846
|
+
d("h2", Ma, f(i.title), 1),
|
|
776
847
|
i.closable ? (l(), B(D, {
|
|
777
848
|
key: 1,
|
|
778
849
|
class: "mc-modal__close",
|
|
@@ -780,49 +851,49 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
780
851
|
ghost: "",
|
|
781
852
|
onClick: o
|
|
782
853
|
}, {
|
|
783
|
-
icon:
|
|
784
|
-
|
|
854
|
+
icon: M(() => [
|
|
855
|
+
k(W, { "aria-hidden": "true" })
|
|
785
856
|
]),
|
|
786
857
|
_: 1
|
|
787
|
-
})) :
|
|
858
|
+
})) : $("", !0)
|
|
788
859
|
]),
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
860
|
+
d("main", za, [
|
|
861
|
+
d("p", null, f(i.description), 1),
|
|
862
|
+
w(i.$slots, "default", {}, void 0, !0)
|
|
792
863
|
]),
|
|
793
|
-
i.$slots.footer ? (l(), n("footer",
|
|
794
|
-
|
|
795
|
-
|
|
864
|
+
i.$slots.footer ? (l(), n("footer", La, [
|
|
865
|
+
d("span", ja, [
|
|
866
|
+
w(i.$slots, "link", {}, void 0, !0)
|
|
796
867
|
]),
|
|
797
|
-
|
|
798
|
-
])) :
|
|
868
|
+
w(i.$slots, "footer", {}, void 0, !0)
|
|
869
|
+
])) : $("", !0)
|
|
799
870
|
])
|
|
800
|
-
], 16,
|
|
871
|
+
], 16, Va)
|
|
801
872
|
]),
|
|
802
873
|
_: 3
|
|
803
874
|
}, 8, ["is-visible"]));
|
|
804
875
|
}
|
|
805
|
-
}),
|
|
876
|
+
}), Ws = /* @__PURE__ */ _(Ta, [["__scopeId", "data-v-20ce36b2"]]), Oa = /* @__PURE__ */ h({
|
|
806
877
|
__name: "MNumberBadge",
|
|
807
878
|
props: {
|
|
808
879
|
label: {},
|
|
809
880
|
appearance: { default: "standard" },
|
|
810
881
|
size: { default: "s" }
|
|
811
882
|
},
|
|
812
|
-
setup(
|
|
813
|
-
const e =
|
|
883
|
+
setup(r) {
|
|
884
|
+
const e = r, t = v(() => ({
|
|
814
885
|
[`mc-number-badge--${e.appearance}`]: e.appearance && e.appearance != "standard",
|
|
815
886
|
[`mc-number-badge--${e.size}`]: e.size && e.size != "s"
|
|
816
887
|
}));
|
|
817
|
-
return (
|
|
818
|
-
class: g(["mc-number-badge",
|
|
819
|
-
}, f(
|
|
888
|
+
return (a, o) => (l(), n("span", {
|
|
889
|
+
class: g(["mc-number-badge", t.value])
|
|
890
|
+
}, f(a.label), 3));
|
|
820
891
|
}
|
|
821
|
-
}),
|
|
892
|
+
}), Sa = /* @__PURE__ */ _(Oa, [["__scopeId", "data-v-7e6acb92"]]), Pa = ["id", "name", "value", "disabled"], qa = {
|
|
822
893
|
key: 0,
|
|
823
894
|
value: "",
|
|
824
895
|
disabled: ""
|
|
825
|
-
},
|
|
896
|
+
}, Da = ["value", "disabled"], Fa = /* @__PURE__ */ h({
|
|
826
897
|
__name: "MSelect",
|
|
827
898
|
props: {
|
|
828
899
|
id: {},
|
|
@@ -836,31 +907,31 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
836
907
|
readonly: { type: Boolean }
|
|
837
908
|
},
|
|
838
909
|
emits: ["update:modelValue"],
|
|
839
|
-
setup(
|
|
840
|
-
const
|
|
841
|
-
[`mc-select--${
|
|
842
|
-
"mc-select--readonly":
|
|
843
|
-
"is-invalid":
|
|
910
|
+
setup(r, { emit: e }) {
|
|
911
|
+
const t = r, a = v(() => ({
|
|
912
|
+
[`mc-select--${t.size}`]: t.size && t.size != "m",
|
|
913
|
+
"mc-select--readonly": t.readonly,
|
|
914
|
+
"is-invalid": t.isInvalid
|
|
844
915
|
})), o = e;
|
|
845
916
|
return (s, i) => (l(), n("select", I({
|
|
846
917
|
id: s.id,
|
|
847
|
-
class: ["mc-select",
|
|
918
|
+
class: ["mc-select", a.value],
|
|
848
919
|
name: s.name,
|
|
849
920
|
value: s.modelValue,
|
|
850
921
|
disabled: s.disabled
|
|
851
922
|
}, s.$attrs, {
|
|
852
923
|
onChange: i[0] || (i[0] = (c) => o("update:modelValue", c.target.value))
|
|
853
924
|
}), [
|
|
854
|
-
s.placeholder ? (l(), n("option",
|
|
925
|
+
s.placeholder ? (l(), n("option", qa, " -- " + f(s.placeholder) + " -- ", 1)) : $("", !0),
|
|
855
926
|
(l(!0), n(O, null, S(s.options, (c, p) => (l(), n("option", I({
|
|
856
927
|
key: p,
|
|
857
928
|
value: c.value
|
|
858
929
|
}, { ref_for: !0 }, c.attributes, {
|
|
859
930
|
disabled: c.disabled
|
|
860
|
-
}), f(c.text), 17,
|
|
861
|
-
], 16,
|
|
931
|
+
}), f(c.text), 17, Da))), 128))
|
|
932
|
+
], 16, Pa));
|
|
862
933
|
}
|
|
863
|
-
}),
|
|
934
|
+
}), Na = /* @__PURE__ */ _(Fa, [["__scopeId", "data-v-68c735e4"]]), Aa = {
|
|
864
935
|
name: "ChevronLeft24",
|
|
865
936
|
props: {
|
|
866
937
|
/**
|
|
@@ -871,23 +942,23 @@ const E = /* @__PURE__ */ _(Pe, [["render", Ne]]), Ae = ["disabled", "type"], Re
|
|
|
871
942
|
default: "currentColor"
|
|
872
943
|
}
|
|
873
944
|
}
|
|
874
|
-
},
|
|
875
|
-
function
|
|
945
|
+
}, Ra = ["fill"];
|
|
946
|
+
function Ga(r, e, t, a, o, s) {
|
|
876
947
|
return l(), n("svg", {
|
|
877
948
|
"aria-hidden": "true",
|
|
878
|
-
fill:
|
|
949
|
+
fill: t.color,
|
|
879
950
|
xmlns: "http://www.w3.org/2000/svg",
|
|
880
951
|
viewBox: "0 0 24 24",
|
|
881
952
|
width: "24",
|
|
882
953
|
height: "24"
|
|
883
954
|
}, e[0] || (e[0] = [
|
|
884
|
-
|
|
955
|
+
d("path", {
|
|
885
956
|
"fill-rule": "evenodd",
|
|
886
957
|
d: "M14.207 6.293a1 1 0 0 1 0 1.414L9.914 12l4.293 4.293a1 1 0 0 1-1.414 1.414l-5-5a1 1 0 0 1 0-1.414l5-5a1 1 0 0 1 1.414 0"
|
|
887
958
|
}, null, -1)
|
|
888
|
-
]), 8,
|
|
959
|
+
]), 8, Ra);
|
|
889
960
|
}
|
|
890
|
-
const
|
|
961
|
+
const U = /* @__PURE__ */ _(Aa, [["render", Ga]]), Ua = {
|
|
891
962
|
name: "ChevronRight24",
|
|
892
963
|
props: {
|
|
893
964
|
/**
|
|
@@ -898,34 +969,34 @@ const G = /* @__PURE__ */ _(Oa, [["render", qa]]), Da = {
|
|
|
898
969
|
default: "currentColor"
|
|
899
970
|
}
|
|
900
971
|
}
|
|
901
|
-
},
|
|
902
|
-
function
|
|
972
|
+
}, Ha = ["fill"];
|
|
973
|
+
function Ka(r, e, t, a, o, s) {
|
|
903
974
|
return l(), n("svg", {
|
|
904
975
|
"aria-hidden": "true",
|
|
905
|
-
fill:
|
|
976
|
+
fill: t.color,
|
|
906
977
|
xmlns: "http://www.w3.org/2000/svg",
|
|
907
978
|
viewBox: "0 0 24 24",
|
|
908
979
|
width: "24",
|
|
909
980
|
height: "24"
|
|
910
981
|
}, e[0] || (e[0] = [
|
|
911
|
-
|
|
982
|
+
d("path", {
|
|
912
983
|
"fill-rule": "evenodd",
|
|
913
984
|
d: "M9.793 6.293a1 1 0 0 1 1.414 0l5 5a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414-1.414L14.086 12 9.793 7.707a1 1 0 0 1 0-1.414"
|
|
914
985
|
}, null, -1)
|
|
915
|
-
]), 8,
|
|
986
|
+
]), 8, Ha);
|
|
916
987
|
}
|
|
917
|
-
const
|
|
988
|
+
const H = /* @__PURE__ */ _(Ua, [["render", Ka]]), Ea = {
|
|
918
989
|
class: "mc-pagination",
|
|
919
990
|
role: "navigation",
|
|
920
991
|
"aria-label": "pagination"
|
|
921
|
-
},
|
|
992
|
+
}, Qa = {
|
|
922
993
|
key: 2,
|
|
923
994
|
class: "mc-pagination__field"
|
|
924
|
-
},
|
|
995
|
+
}, Wa = {
|
|
925
996
|
key: 3,
|
|
926
997
|
class: "mc-pagination__label",
|
|
927
998
|
"aria-current": "page"
|
|
928
|
-
},
|
|
999
|
+
}, Ja = /* @__PURE__ */ h({
|
|
929
1000
|
__name: "MPagination",
|
|
930
1001
|
props: {
|
|
931
1002
|
id: {},
|
|
@@ -935,96 +1006,93 @@ const U = /* @__PURE__ */ _(Da, [["render", Fa]]), Na = {
|
|
|
935
1006
|
selectLabel: {}
|
|
936
1007
|
},
|
|
937
1008
|
emits: ["update:modelValue"],
|
|
938
|
-
setup(
|
|
939
|
-
const
|
|
940
|
-
|
|
941
|
-
u !==
|
|
1009
|
+
setup(r, { emit: e }) {
|
|
1010
|
+
const t = r, a = e, o = z(t.modelValue);
|
|
1011
|
+
P(o, (u) => {
|
|
1012
|
+
u !== t.modelValue && a("update:modelValue", u);
|
|
942
1013
|
});
|
|
943
1014
|
const s = v(
|
|
944
|
-
() =>
|
|
1015
|
+
() => t.options.findIndex((u) => u.value === o.value)
|
|
945
1016
|
), i = v(() => s.value === 0), c = v(
|
|
946
|
-
() => s.value ===
|
|
1017
|
+
() => s.value === t.options.length - 1
|
|
947
1018
|
), p = () => {
|
|
948
|
-
const u =
|
|
1019
|
+
const u = t.options.findIndex(
|
|
949
1020
|
(b) => b.value === o.value
|
|
950
1021
|
);
|
|
951
|
-
u > 0 && (o.value =
|
|
1022
|
+
u > 0 && (o.value = t.options[u - 1].value, a("update:modelValue", t.options[u - 1].value));
|
|
952
1023
|
}, m = () => {
|
|
953
|
-
const u =
|
|
1024
|
+
const u = t.options.findIndex(
|
|
954
1025
|
(b) => b.value === o.value
|
|
955
1026
|
);
|
|
956
|
-
u <
|
|
957
|
-
};
|
|
958
|
-
return (u, b) => {
|
|
959
|
-
var L;
|
|
960
|
-
return l(), n("nav", Na, [
|
|
961
|
-
u.compact ? (l(), B(D, {
|
|
962
|
-
key: 1,
|
|
963
|
-
outlined: "",
|
|
964
|
-
"aria-label": "Previous page",
|
|
965
|
-
disabled: i.value,
|
|
966
|
-
onClick: p
|
|
967
|
-
}, {
|
|
968
|
-
icon: C(() => [
|
|
969
|
-
w(G)
|
|
970
|
-
]),
|
|
971
|
-
_: 1
|
|
972
|
-
}, 8, ["disabled"])) : (l(), B(N, {
|
|
973
|
-
key: 0,
|
|
974
|
-
"icon-position": "only",
|
|
975
|
-
"aria-label": "Previous page",
|
|
976
|
-
disabled: i.value,
|
|
977
|
-
onClick: p
|
|
978
|
-
}, {
|
|
979
|
-
icon: C(() => [
|
|
980
|
-
w(G)
|
|
981
|
-
]),
|
|
982
|
-
_: 1
|
|
983
|
-
}, 8, ["disabled"])),
|
|
984
|
-
u.compact ? h("", !0) : (l(), n("div", Aa, [
|
|
985
|
-
w(ja, {
|
|
986
|
-
class: "mc-pagination__select",
|
|
987
|
-
id: u.id,
|
|
988
|
-
modelValue: o.value,
|
|
989
|
-
"onUpdate:modelValue": [
|
|
990
|
-
b[0] || (b[0] = (y) => o.value = y),
|
|
991
|
-
b[1] || (b[1] = (y) => t("update:modelValue", Number(y)))
|
|
992
|
-
],
|
|
993
|
-
options: u.options,
|
|
994
|
-
"aria-label": u.selectLabel
|
|
995
|
-
}, null, 8, ["id", "modelValue", "options", "aria-label"])
|
|
996
|
-
])),
|
|
997
|
-
u.compact ? (l(), n("span", Ra, f((L = u.options.find((y) => y.value === o.value)) == null ? void 0 : L.text), 1)) : h("", !0),
|
|
998
|
-
u.compact ? (l(), B(D, {
|
|
999
|
-
key: 5,
|
|
1000
|
-
outlined: "",
|
|
1001
|
-
"aria-label": "Next page",
|
|
1002
|
-
disabled: c.value,
|
|
1003
|
-
onClick: m
|
|
1004
|
-
}, {
|
|
1005
|
-
icon: C(() => [
|
|
1006
|
-
w(U)
|
|
1007
|
-
]),
|
|
1008
|
-
_: 1
|
|
1009
|
-
}, 8, ["disabled"])) : (l(), B(N, {
|
|
1010
|
-
key: 4,
|
|
1011
|
-
"icon-position": "only",
|
|
1012
|
-
"aria-label": "Next page",
|
|
1013
|
-
disabled: c.value,
|
|
1014
|
-
onClick: m
|
|
1015
|
-
}, {
|
|
1016
|
-
icon: C(() => [
|
|
1017
|
-
w(U)
|
|
1018
|
-
]),
|
|
1019
|
-
_: 1
|
|
1020
|
-
}, 8, ["disabled"]))
|
|
1021
|
-
]);
|
|
1027
|
+
u < t.options.length - 1 && (o.value = t.options[u + 1].value, a("update:modelValue", t.options[u + 1].value));
|
|
1022
1028
|
};
|
|
1029
|
+
return (u, b) => (l(), n("nav", Ea, [
|
|
1030
|
+
u.compact ? (l(), B(D, {
|
|
1031
|
+
key: 1,
|
|
1032
|
+
outlined: "",
|
|
1033
|
+
"aria-label": "Previous page",
|
|
1034
|
+
disabled: i.value,
|
|
1035
|
+
onClick: p
|
|
1036
|
+
}, {
|
|
1037
|
+
icon: M(() => [
|
|
1038
|
+
k(U)
|
|
1039
|
+
]),
|
|
1040
|
+
_: 1
|
|
1041
|
+
}, 8, ["disabled"])) : (l(), B(N, {
|
|
1042
|
+
key: 0,
|
|
1043
|
+
"icon-position": "only",
|
|
1044
|
+
"aria-label": "Previous page",
|
|
1045
|
+
disabled: i.value,
|
|
1046
|
+
onClick: p
|
|
1047
|
+
}, {
|
|
1048
|
+
icon: M(() => [
|
|
1049
|
+
k(U)
|
|
1050
|
+
]),
|
|
1051
|
+
_: 1
|
|
1052
|
+
}, 8, ["disabled"])),
|
|
1053
|
+
u.compact ? $("", !0) : (l(), n("div", Qa, [
|
|
1054
|
+
k(Na, {
|
|
1055
|
+
class: "mc-pagination__select",
|
|
1056
|
+
id: u.id,
|
|
1057
|
+
modelValue: o.value,
|
|
1058
|
+
"onUpdate:modelValue": [
|
|
1059
|
+
b[0] || (b[0] = (C) => o.value = C),
|
|
1060
|
+
b[1] || (b[1] = (C) => a("update:modelValue", Number(C)))
|
|
1061
|
+
],
|
|
1062
|
+
options: u.options,
|
|
1063
|
+
"aria-label": u.selectLabel
|
|
1064
|
+
}, null, 8, ["id", "modelValue", "options", "aria-label"])
|
|
1065
|
+
])),
|
|
1066
|
+
u.compact ? (l(), n("span", Wa, f(u.options.find((C) => C.value === o.value)?.text), 1)) : $("", !0),
|
|
1067
|
+
u.compact ? (l(), B(D, {
|
|
1068
|
+
key: 5,
|
|
1069
|
+
outlined: "",
|
|
1070
|
+
"aria-label": "Next page",
|
|
1071
|
+
disabled: c.value,
|
|
1072
|
+
onClick: m
|
|
1073
|
+
}, {
|
|
1074
|
+
icon: M(() => [
|
|
1075
|
+
k(H)
|
|
1076
|
+
]),
|
|
1077
|
+
_: 1
|
|
1078
|
+
}, 8, ["disabled"])) : (l(), B(N, {
|
|
1079
|
+
key: 4,
|
|
1080
|
+
"icon-position": "only",
|
|
1081
|
+
"aria-label": "Next page",
|
|
1082
|
+
disabled: c.value,
|
|
1083
|
+
onClick: m
|
|
1084
|
+
}, {
|
|
1085
|
+
icon: M(() => [
|
|
1086
|
+
k(H)
|
|
1087
|
+
]),
|
|
1088
|
+
_: 1
|
|
1089
|
+
}, 8, ["disabled"]))
|
|
1090
|
+
]));
|
|
1023
1091
|
}
|
|
1024
|
-
}),
|
|
1092
|
+
}), Js = /* @__PURE__ */ _(Ja, [["__scopeId", "data-v-3b9257ac"]]), Xa = ["id", "type", "name", "placeholder", "disabled", "aria-invalid", "readonly"], Ya = {
|
|
1025
1093
|
key: 0,
|
|
1026
1094
|
class: "mc-controls-options"
|
|
1027
|
-
},
|
|
1095
|
+
}, Za = { class: "mc-controls-options__label" }, xa = /* @__PURE__ */ h({
|
|
1028
1096
|
__name: "MPasswordInput",
|
|
1029
1097
|
props: {
|
|
1030
1098
|
id: {},
|
|
@@ -1039,20 +1107,20 @@ const U = /* @__PURE__ */ _(Da, [["render", Fa]]), Na = {
|
|
|
1039
1107
|
buttonLabel: { default: () => ({ show: "Show", hide: "Hide" }) }
|
|
1040
1108
|
},
|
|
1041
1109
|
emits: ["update:modelValue"],
|
|
1042
|
-
setup(
|
|
1043
|
-
const
|
|
1044
|
-
"is-invalid":
|
|
1045
|
-
})), o = z(
|
|
1110
|
+
setup(r, { emit: e }) {
|
|
1111
|
+
const t = r, a = v(() => ({
|
|
1112
|
+
"is-invalid": t.isInvalid
|
|
1113
|
+
})), o = z(t.modelValue), s = z(!1), i = () => {
|
|
1046
1114
|
o.value = "", u("update:modelValue", "");
|
|
1047
1115
|
}, c = () => {
|
|
1048
1116
|
s.value = !s.value;
|
|
1049
1117
|
}, p = v(() => s.value ? "text" : "password"), m = v(() => s.value ? "true" : "false"), u = e;
|
|
1050
|
-
return (b,
|
|
1051
|
-
class: g(["mc-password-input mc-text-input",
|
|
1118
|
+
return (b, C) => (l(), n("div", {
|
|
1119
|
+
class: g(["mc-password-input mc-text-input", a.value])
|
|
1052
1120
|
}, [
|
|
1053
|
-
|
|
1121
|
+
G(d("input", I({
|
|
1054
1122
|
class: "mc-password-input__control mc-text-input__control",
|
|
1055
|
-
"onUpdate:modelValue":
|
|
1123
|
+
"onUpdate:modelValue": C[0] || (C[0] = (y) => o.value = y),
|
|
1056
1124
|
id: b.id,
|
|
1057
1125
|
type: p.value,
|
|
1058
1126
|
name: b.name,
|
|
@@ -1061,23 +1129,23 @@ const U = /* @__PURE__ */ _(Da, [["render", Fa]]), Na = {
|
|
|
1061
1129
|
"aria-invalid": b.isInvalid,
|
|
1062
1130
|
readonly: b.readonly
|
|
1063
1131
|
}, b.$attrs, {
|
|
1064
|
-
onInput:
|
|
1065
|
-
}), null, 16,
|
|
1066
|
-
[
|
|
1132
|
+
onInput: C[1] || (C[1] = (y) => u("update:modelValue", y.target.value))
|
|
1133
|
+
}), null, 16, Xa), [
|
|
1134
|
+
[E, o.value]
|
|
1067
1135
|
]),
|
|
1068
|
-
b.isClearable && o.value ? (l(), n("div",
|
|
1069
|
-
|
|
1136
|
+
b.isClearable && o.value ? (l(), n("div", Ya, [
|
|
1137
|
+
d("button", {
|
|
1070
1138
|
class: "mc-controls-options__button",
|
|
1071
1139
|
onClick: i
|
|
1072
1140
|
}, [
|
|
1073
|
-
|
|
1141
|
+
k(F, {
|
|
1074
1142
|
class: "mc-controls-options__icon",
|
|
1075
1143
|
"aria-hidden": "true"
|
|
1076
1144
|
}),
|
|
1077
|
-
|
|
1145
|
+
d("span", Za, f(b.clearLabel), 1)
|
|
1078
1146
|
])
|
|
1079
|
-
])) :
|
|
1080
|
-
|
|
1147
|
+
])) : $("", !0),
|
|
1148
|
+
k(N, {
|
|
1081
1149
|
ref: "button",
|
|
1082
1150
|
role: "switch",
|
|
1083
1151
|
"aria-checked": m.value,
|
|
@@ -1086,14 +1154,14 @@ const U = /* @__PURE__ */ _(Da, [["render", Fa]]), Na = {
|
|
|
1086
1154
|
size: "s",
|
|
1087
1155
|
ghost: ""
|
|
1088
1156
|
}, {
|
|
1089
|
-
default:
|
|
1090
|
-
|
|
1157
|
+
default: M(() => [
|
|
1158
|
+
q(f(s.value ? b.buttonLabel.hide : b.buttonLabel.show), 1)
|
|
1091
1159
|
]),
|
|
1092
1160
|
_: 1
|
|
1093
1161
|
}, 8, ["aria-checked", "disabled"])
|
|
1094
1162
|
], 2));
|
|
1095
1163
|
}
|
|
1096
|
-
}),
|
|
1164
|
+
}), Xs = /* @__PURE__ */ _(xa, [["__scopeId", "data-v-167f10e2"]]), et = ["id", "name", "disabled", "readonly", "value", "onInput", "onKeydown"], at = /* @__PURE__ */ h({
|
|
1097
1165
|
__name: "MPincode",
|
|
1098
1166
|
props: {
|
|
1099
1167
|
id: {},
|
|
@@ -1105,47 +1173,43 @@ const U = /* @__PURE__ */ _(Da, [["render", Fa]]), Na = {
|
|
|
1105
1173
|
readonly: { type: Boolean }
|
|
1106
1174
|
},
|
|
1107
1175
|
emits: ["update:modelValue"],
|
|
1108
|
-
setup(
|
|
1109
|
-
const
|
|
1110
|
-
"is-invalid":
|
|
1111
|
-
})), o = e, s = z(Array(
|
|
1112
|
-
i.value[
|
|
1176
|
+
setup(r, { emit: e }) {
|
|
1177
|
+
const t = r, a = v(() => ({
|
|
1178
|
+
"is-invalid": t.isInvalid
|
|
1179
|
+
})), o = e, s = z(Array(t.length).fill("")), i = z([]), c = (y, V) => {
|
|
1180
|
+
i.value[V] = y;
|
|
1113
1181
|
};
|
|
1114
|
-
|
|
1115
|
-
() =>
|
|
1182
|
+
P(
|
|
1183
|
+
() => t.modelValue,
|
|
1116
1184
|
(y) => {
|
|
1117
|
-
const
|
|
1118
|
-
s.value = Array.from({ length:
|
|
1185
|
+
const V = String(y ?? "");
|
|
1186
|
+
s.value = Array.from({ length: t.length }, (T, L) => V[L] ?? "");
|
|
1119
1187
|
},
|
|
1120
1188
|
{ immediate: !0 }
|
|
1121
1189
|
);
|
|
1122
1190
|
const p = (y) => {
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
return (k = i.value[y]) == null ? void 0 : k.focus();
|
|
1126
|
-
});
|
|
1127
|
-
}, m = (y, k) => {
|
|
1191
|
+
X(() => i.value[y]?.focus());
|
|
1192
|
+
}, m = (y, V) => {
|
|
1128
1193
|
const T = y.target.value.replace(/\D/g, "");
|
|
1129
|
-
T ? (s.value[
|
|
1130
|
-
}, u = (y,
|
|
1131
|
-
y.key === "ArrowLeft" &&
|
|
1132
|
-
}, b = (y,
|
|
1133
|
-
s.value[
|
|
1134
|
-
},
|
|
1135
|
-
var M;
|
|
1194
|
+
T ? (s.value[V] = T[0], o("update:modelValue", s.value.join("")), V + 1 < t.length && p(V + 1)) : (s.value[V] = "", o("update:modelValue", s.value.join("")));
|
|
1195
|
+
}, u = (y, V) => {
|
|
1196
|
+
y.key === "ArrowLeft" && V > 0 ? p(V - 1) : y.key === "ArrowRight" && V < t.length - 1 ? p(V + 1) : y.key === "Backspace" && b(y, V);
|
|
1197
|
+
}, b = (y, V) => {
|
|
1198
|
+
s.value[V] === "" && V > 0 && (s.value[V - 1] = "", o("update:modelValue", s.value.join("")), p(V - 1));
|
|
1199
|
+
}, C = (y) => {
|
|
1136
1200
|
y.preventDefault();
|
|
1137
|
-
const T = (
|
|
1138
|
-
s.value = Array.from({ length:
|
|
1201
|
+
const T = (y.clipboardData?.getData("text") ?? "").replace(/\D/g, "").slice(0, t.length).split("");
|
|
1202
|
+
s.value = Array.from({ length: t.length }, (L, j) => T[j] ?? ""), o("update:modelValue", s.value.join("")), p(Math.min(T.length, t.length - 1));
|
|
1139
1203
|
};
|
|
1140
|
-
return (y,
|
|
1141
|
-
class: g(["mc-pincode-input",
|
|
1142
|
-
onPaste:
|
|
1204
|
+
return (y, V) => (l(), n("div", {
|
|
1205
|
+
class: g(["mc-pincode-input", a.value]),
|
|
1206
|
+
onPaste: C
|
|
1143
1207
|
}, [
|
|
1144
|
-
(l(!0), n(O, null, S(s.value, (T,
|
|
1145
|
-
key:
|
|
1146
|
-
id: `pincodeItem${
|
|
1208
|
+
(l(!0), n(O, null, S(s.value, (T, L) => (l(), n("input", I({
|
|
1209
|
+
key: L,
|
|
1210
|
+
id: `pincodeItem${L}`,
|
|
1147
1211
|
ref_for: !0,
|
|
1148
|
-
ref: (j) => c(j,
|
|
1212
|
+
ref: (j) => c(j, L),
|
|
1149
1213
|
type: "text",
|
|
1150
1214
|
inputmode: "numeric",
|
|
1151
1215
|
maxlength: "1",
|
|
@@ -1157,15 +1221,62 @@ const U = /* @__PURE__ */ _(Da, [["render", Fa]]), Na = {
|
|
|
1157
1221
|
readonly: y.readonly,
|
|
1158
1222
|
value: T
|
|
1159
1223
|
}, { ref_for: !0 }, y.$attrs, {
|
|
1160
|
-
onInput: (j) => m(j,
|
|
1224
|
+
onInput: (j) => m(j, L),
|
|
1161
1225
|
onKeydown: [
|
|
1162
|
-
R((j) => b(j,
|
|
1163
|
-
(j) => u(j,
|
|
1226
|
+
R((j) => b(j, L), ["backspace"]),
|
|
1227
|
+
(j) => u(j, L)
|
|
1164
1228
|
]
|
|
1165
|
-
}), null, 16,
|
|
1229
|
+
}), null, 16, et))), 128))
|
|
1166
1230
|
], 34));
|
|
1167
1231
|
}
|
|
1168
|
-
}),
|
|
1232
|
+
}), Ys = /* @__PURE__ */ _(at, [["__scopeId", "data-v-b2202545"]]), tt = ["aria-valuenow"], st = /* @__PURE__ */ h({
|
|
1233
|
+
__name: "MLinearProgressbarBuffer",
|
|
1234
|
+
props: {
|
|
1235
|
+
size: {},
|
|
1236
|
+
value: { default: 0 }
|
|
1237
|
+
},
|
|
1238
|
+
setup(r) {
|
|
1239
|
+
const e = r, t = v(() => ({
|
|
1240
|
+
[`mc-linear-progressbar-buffer--${e.size}`]: e.size && e.size != "m"
|
|
1241
|
+
}));
|
|
1242
|
+
return (a, o) => (l(), n("div", {
|
|
1243
|
+
class: g(["mc-linear-progressbar-buffer", t.value])
|
|
1244
|
+
}, [
|
|
1245
|
+
d("div", I({
|
|
1246
|
+
class: "mc-linear-progressbar-buffer__indicator",
|
|
1247
|
+
role: "progressbar",
|
|
1248
|
+
style: `--progress-value: ${a.value};`,
|
|
1249
|
+
"aria-valuenow": a.value,
|
|
1250
|
+
"aria-valuemin": 0,
|
|
1251
|
+
"aria-valuemax": 100
|
|
1252
|
+
}, a.$attrs), null, 16, tt)
|
|
1253
|
+
], 2));
|
|
1254
|
+
}
|
|
1255
|
+
}), Zs = /* @__PURE__ */ _(st, [["__scopeId", "data-v-aa64aedc"]]), lt = { class: "mc-linear-progressbar-percentage" }, ot = ["aria-valuenow"], nt = { class: "mc-linear-progressbar-percentage__label" }, it = { class: "mc-linear-progressbar-percentage__value" }, rt = /* @__PURE__ */ h({
|
|
1256
|
+
__name: "MLinearProgressbarPercentage",
|
|
1257
|
+
props: {
|
|
1258
|
+
value: { default: 0 }
|
|
1259
|
+
},
|
|
1260
|
+
setup(r) {
|
|
1261
|
+
return (e, t) => (l(), n("div", lt, [
|
|
1262
|
+
d("div", I({
|
|
1263
|
+
class: "mc-linear-progressbar-percentage__indicator",
|
|
1264
|
+
role: "progressbar",
|
|
1265
|
+
style: `--progress-value: ${e.value};`,
|
|
1266
|
+
"aria-valuenow": e.value,
|
|
1267
|
+
"aria-valuemin": 0,
|
|
1268
|
+
"aria-valuemax": 100
|
|
1269
|
+
}, e.$attrs), [
|
|
1270
|
+
d("div", nt, [
|
|
1271
|
+
d("p", it, [
|
|
1272
|
+
q(f(e.value), 1),
|
|
1273
|
+
t[0] || (t[0] = d("span", { class: "mc-linear-progressbar-percentage__unit" }, "%", -1))
|
|
1274
|
+
])
|
|
1275
|
+
])
|
|
1276
|
+
], 16, ot)
|
|
1277
|
+
]));
|
|
1278
|
+
}
|
|
1279
|
+
}), xs = /* @__PURE__ */ _(rt, [["__scopeId", "data-v-14fbed65"]]), dt = {
|
|
1169
1280
|
name: "More24",
|
|
1170
1281
|
props: {
|
|
1171
1282
|
/**
|
|
@@ -1176,23 +1287,23 @@ const U = /* @__PURE__ */ _(Da, [["render", Fa]]), Na = {
|
|
|
1176
1287
|
default: "currentColor"
|
|
1177
1288
|
}
|
|
1178
1289
|
}
|
|
1179
|
-
},
|
|
1180
|
-
function
|
|
1290
|
+
}, ct = ["fill"];
|
|
1291
|
+
function ut(r, e, t, a, o, s) {
|
|
1181
1292
|
return l(), n("svg", {
|
|
1182
1293
|
"aria-hidden": "true",
|
|
1183
|
-
fill:
|
|
1294
|
+
fill: t.color,
|
|
1184
1295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1185
1296
|
viewBox: "0 0 24 24",
|
|
1186
1297
|
width: "24",
|
|
1187
1298
|
height: "24"
|
|
1188
1299
|
}, e[0] || (e[0] = [
|
|
1189
|
-
|
|
1300
|
+
d("path", {
|
|
1190
1301
|
"fill-rule": "evenodd",
|
|
1191
1302
|
d: "M13 5a1 1 0 1 0-2 0v6H5a1 1 0 1 0 0 2h6v6a1 1 0 1 0 2 0v-6h6a1 1 0 1 0 0-2h-6z"
|
|
1192
1303
|
}, null, -1)
|
|
1193
|
-
]), 8,
|
|
1304
|
+
]), 8, ct);
|
|
1194
1305
|
}
|
|
1195
|
-
const
|
|
1306
|
+
const pt = /* @__PURE__ */ _(dt, [["render", ut]]), mt = {
|
|
1196
1307
|
name: "Less24",
|
|
1197
1308
|
props: {
|
|
1198
1309
|
/**
|
|
@@ -1203,23 +1314,23 @@ const Za = /* @__PURE__ */ _(Ja, [["render", Ya]]), xa = {
|
|
|
1203
1314
|
default: "currentColor"
|
|
1204
1315
|
}
|
|
1205
1316
|
}
|
|
1206
|
-
},
|
|
1207
|
-
function
|
|
1317
|
+
}, _t = ["fill"];
|
|
1318
|
+
function vt(r, e, t, a, o, s) {
|
|
1208
1319
|
return l(), n("svg", {
|
|
1209
1320
|
"aria-hidden": "true",
|
|
1210
|
-
fill:
|
|
1321
|
+
fill: t.color,
|
|
1211
1322
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1212
1323
|
viewBox: "0 0 24 24",
|
|
1213
1324
|
width: "24",
|
|
1214
1325
|
height: "24"
|
|
1215
1326
|
}, e[0] || (e[0] = [
|
|
1216
|
-
|
|
1327
|
+
d("path", {
|
|
1217
1328
|
"fill-rule": "evenodd",
|
|
1218
1329
|
d: "M6 12a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1"
|
|
1219
1330
|
}, null, -1)
|
|
1220
|
-
]), 8,
|
|
1331
|
+
]), 8, _t);
|
|
1221
1332
|
}
|
|
1222
|
-
const
|
|
1333
|
+
const bt = /* @__PURE__ */ _(mt, [["render", vt]]), ft = ["id", "name", "disabled", "min", "max", "step", "readonly", "aria-invalid", "aria-valuemin", "aria-valuemax", "aria-valuenow"], ht = ["aria-controls", "disabled"], $t = { class: "mc-quantity-selector__icon" }, gt = { class: "mc-quantity-selector__label" }, yt = ["aria-controls", "disabled"], kt = { class: "mc-quantity-selector__icon" }, wt = { class: "mc-quantity-selector__label" }, Vt = /* @__PURE__ */ h({
|
|
1223
1334
|
__name: "MQuantitySelector",
|
|
1224
1335
|
props: {
|
|
1225
1336
|
id: {},
|
|
@@ -1236,27 +1347,27 @@ const tt = /* @__PURE__ */ _(xa, [["render", at]]), st = ["id", "name", "disable
|
|
|
1236
1347
|
decrementLabel: { default: "Decrement" }
|
|
1237
1348
|
},
|
|
1238
1349
|
emits: ["update:modelValue"],
|
|
1239
|
-
setup(
|
|
1240
|
-
const
|
|
1241
|
-
|
|
1242
|
-
m !==
|
|
1350
|
+
setup(r, { emit: e }) {
|
|
1351
|
+
const t = r, a = z(t.modelValue);
|
|
1352
|
+
P(a, (m) => {
|
|
1353
|
+
m !== t.modelValue && p("update:modelValue", m);
|
|
1243
1354
|
});
|
|
1244
1355
|
const o = v(() => ({
|
|
1245
|
-
[`mc-quantity-selector--${
|
|
1246
|
-
"is-invalid":
|
|
1356
|
+
[`mc-quantity-selector--${t.size}`]: t.size && t.size != "m",
|
|
1357
|
+
"is-invalid": t.isInvalid
|
|
1247
1358
|
})), s = () => {
|
|
1248
|
-
|
|
1359
|
+
a.value + t.step <= t.max ? a.value += t.step : a.value = t.max;
|
|
1249
1360
|
}, i = () => {
|
|
1250
|
-
|
|
1361
|
+
a.value - t.step > t.min ? a.value -= t.step : a.value = t.min;
|
|
1251
1362
|
}, c = (m) => {
|
|
1252
|
-
|
|
1363
|
+
a.value = m, a.value > t.max && (a.value = t.max), a.value <= t.min && (a.value = t.min), p("update:modelValue", a.value);
|
|
1253
1364
|
}, p = e;
|
|
1254
1365
|
return (m, u) => (l(), n("div", {
|
|
1255
1366
|
class: g(["mc-quantity-selector", o.value])
|
|
1256
1367
|
}, [
|
|
1257
|
-
|
|
1368
|
+
G(d("input", I({
|
|
1258
1369
|
id: m.id,
|
|
1259
|
-
"onUpdate:modelValue": u[0] || (u[0] = (b) =>
|
|
1370
|
+
"onUpdate:modelValue": u[0] || (u[0] = (b) => a.value = b),
|
|
1260
1371
|
class: "mc-quantity-selector__control",
|
|
1261
1372
|
type: "number",
|
|
1262
1373
|
name: m.name,
|
|
@@ -1268,43 +1379,43 @@ const tt = /* @__PURE__ */ _(xa, [["render", at]]), st = ["id", "name", "disable
|
|
|
1268
1379
|
"aria-invalid": m.isInvalid,
|
|
1269
1380
|
"aria-valuemin": m.min,
|
|
1270
1381
|
"aria-valuemax": m.max,
|
|
1271
|
-
"aria-valuenow":
|
|
1382
|
+
"aria-valuenow": a.value
|
|
1272
1383
|
}, m.$attrs, {
|
|
1273
1384
|
onChange: u[1] || (u[1] = (b) => c(Number(b.target.value)))
|
|
1274
|
-
}), null, 16,
|
|
1275
|
-
[
|
|
1385
|
+
}), null, 16, ft), [
|
|
1386
|
+
[Y, a.value]
|
|
1276
1387
|
]),
|
|
1277
|
-
m.readonly ?
|
|
1388
|
+
m.readonly ? $("", !0) : (l(), n("button", {
|
|
1278
1389
|
key: 0,
|
|
1279
1390
|
type: "button",
|
|
1280
1391
|
"aria-controls": m.id,
|
|
1281
1392
|
class: "mc-quantity-selector__button mc-quantity-selector__button--increase",
|
|
1282
1393
|
tabindex: "-1",
|
|
1283
|
-
disabled: m.disabled ||
|
|
1394
|
+
disabled: m.disabled || a.value === m.max,
|
|
1284
1395
|
onClick: s
|
|
1285
1396
|
}, [
|
|
1286
|
-
|
|
1287
|
-
|
|
1397
|
+
d("span", $t, [
|
|
1398
|
+
k(pt)
|
|
1288
1399
|
]),
|
|
1289
|
-
|
|
1290
|
-
], 8,
|
|
1291
|
-
m.readonly ?
|
|
1400
|
+
d("span", gt, f(m.incrementlabel), 1)
|
|
1401
|
+
], 8, ht)),
|
|
1402
|
+
m.readonly ? $("", !0) : (l(), n("button", {
|
|
1292
1403
|
key: 1,
|
|
1293
1404
|
type: "button",
|
|
1294
1405
|
"aria-controls": m.id,
|
|
1295
1406
|
class: "mc-quantity-selector__button mc-quantity-selector__button--decrease",
|
|
1296
1407
|
tabindex: "-1",
|
|
1297
|
-
disabled: m.disabled ||
|
|
1408
|
+
disabled: m.disabled || a.value === m.min,
|
|
1298
1409
|
onClick: i
|
|
1299
1410
|
}, [
|
|
1300
|
-
|
|
1301
|
-
|
|
1411
|
+
d("span", kt, [
|
|
1412
|
+
k(bt)
|
|
1302
1413
|
]),
|
|
1303
|
-
|
|
1304
|
-
], 8,
|
|
1414
|
+
d("span", wt, f(m.decrementLabel), 1)
|
|
1415
|
+
], 8, yt))
|
|
1305
1416
|
], 2));
|
|
1306
1417
|
}
|
|
1307
|
-
}),
|
|
1418
|
+
}), el = /* @__PURE__ */ _(Vt, [["__scopeId", "data-v-a732650a"]]), It = { class: "mc-radio" }, Bt = ["id", "name", "checked", "disabled", "aria-invalid"], Ct = ["for"], Mt = /* @__PURE__ */ h({
|
|
1308
1419
|
__name: "MRadio",
|
|
1309
1420
|
props: {
|
|
1310
1421
|
id: {},
|
|
@@ -1315,30 +1426,30 @@ const tt = /* @__PURE__ */ _(xa, [["render", at]]), st = ["id", "name", "disable
|
|
|
1315
1426
|
disabled: { type: Boolean }
|
|
1316
1427
|
},
|
|
1317
1428
|
emits: ["update:modelValue"],
|
|
1318
|
-
setup(
|
|
1319
|
-
const
|
|
1320
|
-
"is-invalid":
|
|
1429
|
+
setup(r, { emit: e }) {
|
|
1430
|
+
const t = r, a = v(() => ({
|
|
1431
|
+
"is-invalid": t.isInvalid
|
|
1321
1432
|
})), o = e;
|
|
1322
|
-
return (s, i) => (l(), n("div",
|
|
1323
|
-
|
|
1433
|
+
return (s, i) => (l(), n("div", It, [
|
|
1434
|
+
d("input", I({
|
|
1324
1435
|
id: s.id,
|
|
1325
1436
|
type: "radio",
|
|
1326
|
-
class: ["mc-radio__input",
|
|
1437
|
+
class: ["mc-radio__input", a.value],
|
|
1327
1438
|
name: s.name,
|
|
1328
1439
|
checked: s.modelValue,
|
|
1329
1440
|
disabled: s.disabled,
|
|
1330
1441
|
"aria-invalid": s.isInvalid
|
|
1331
1442
|
}, s.$attrs, {
|
|
1332
1443
|
onChange: i[0] || (i[0] = (c) => o("update:modelValue", c.target.checked))
|
|
1333
|
-
}), null, 16,
|
|
1444
|
+
}), null, 16, Bt),
|
|
1334
1445
|
s.label ? (l(), n("label", {
|
|
1335
1446
|
key: 0,
|
|
1336
1447
|
for: s.id,
|
|
1337
1448
|
class: "mc-radio__label"
|
|
1338
|
-
}, f(s.label), 9,
|
|
1449
|
+
}, f(s.label), 9, Ct)) : $("", !0)
|
|
1339
1450
|
]));
|
|
1340
1451
|
}
|
|
1341
|
-
}),
|
|
1452
|
+
}), zt = /* @__PURE__ */ _(Mt, [["__scopeId", "data-v-da78938c"]]), Lt = /* @__PURE__ */ h({
|
|
1342
1453
|
__name: "MRadioGroup",
|
|
1343
1454
|
props: {
|
|
1344
1455
|
name: {},
|
|
@@ -1348,16 +1459,16 @@ const tt = /* @__PURE__ */ _(xa, [["render", at]]), st = ["id", "name", "disable
|
|
|
1348
1459
|
inline: { type: Boolean }
|
|
1349
1460
|
},
|
|
1350
1461
|
emits: ["update:modelValue"],
|
|
1351
|
-
setup(
|
|
1352
|
-
const
|
|
1353
|
-
"mc-field__container--inline":
|
|
1462
|
+
setup(r, { emit: e }) {
|
|
1463
|
+
const t = r, a = v(() => ({
|
|
1464
|
+
"mc-field__container--inline": t.inline
|
|
1354
1465
|
})), o = v(() => ({
|
|
1355
|
-
"mc-field__container--inline__item":
|
|
1466
|
+
"mc-field__container--inline__item": t.inline
|
|
1356
1467
|
})), s = e;
|
|
1357
1468
|
return (i, c) => (l(), n("div", {
|
|
1358
|
-
class: g(["mc-field__container",
|
|
1469
|
+
class: g(["mc-field__container", a.value])
|
|
1359
1470
|
}, [
|
|
1360
|
-
(l(!0), n(O, null, S(i.options, (p) => (l(), B(
|
|
1471
|
+
(l(!0), n(O, null, S(i.options, (p) => (l(), B(zt, {
|
|
1361
1472
|
id: p.id,
|
|
1362
1473
|
key: p.id,
|
|
1363
1474
|
label: p.label,
|
|
@@ -1370,39 +1481,39 @@ const tt = /* @__PURE__ */ _(xa, [["render", at]]), st = ["id", "name", "disable
|
|
|
1370
1481
|
}, null, 8, ["id", "label", "is-invalid", "name", "class", "model-value", "disabled", "onUpdate:modelValue"]))), 128))
|
|
1371
1482
|
], 2));
|
|
1372
1483
|
}
|
|
1373
|
-
}),
|
|
1484
|
+
}), al = /* @__PURE__ */ _(Lt, [["__scopeId", "data-v-d2f5e103"]]), jt = /* @__PURE__ */ h({
|
|
1374
1485
|
__name: "MStatusDot",
|
|
1375
1486
|
props: {
|
|
1376
1487
|
status: { default: "info" },
|
|
1377
1488
|
size: {}
|
|
1378
1489
|
},
|
|
1379
|
-
setup(
|
|
1380
|
-
const e =
|
|
1490
|
+
setup(r) {
|
|
1491
|
+
const e = r, t = v(() => ({
|
|
1381
1492
|
[`mc-status-dot--${e.status}`]: e.status && e.status != "info",
|
|
1382
1493
|
[`mc-status-dot--${e.size}`]: e.size && e.size != "m"
|
|
1383
1494
|
}));
|
|
1384
|
-
return (
|
|
1385
|
-
class: g(["mc-status-dot",
|
|
1495
|
+
return (a, o) => (l(), n("span", {
|
|
1496
|
+
class: g(["mc-status-dot", t.value])
|
|
1386
1497
|
}, null, 2));
|
|
1387
1498
|
}
|
|
1388
|
-
}),
|
|
1499
|
+
}), Tt = /* @__PURE__ */ _(jt, [["__scopeId", "data-v-417b563f"]]), Ot = { class: "mc-status-badge__label" }, St = /* @__PURE__ */ h({
|
|
1389
1500
|
__name: "MStatusBadge",
|
|
1390
1501
|
props: {
|
|
1391
1502
|
label: {},
|
|
1392
1503
|
status: { default: "info" }
|
|
1393
1504
|
},
|
|
1394
|
-
setup(
|
|
1395
|
-
const e =
|
|
1505
|
+
setup(r) {
|
|
1506
|
+
const e = r, t = v(() => ({
|
|
1396
1507
|
[`mc-status-badge--${e.status}`]: e.status && e.status != "info"
|
|
1397
1508
|
}));
|
|
1398
|
-
return (
|
|
1399
|
-
class: g(["mc-status-badge",
|
|
1509
|
+
return (a, o) => (l(), n("div", {
|
|
1510
|
+
class: g(["mc-status-badge", t.value])
|
|
1400
1511
|
}, [
|
|
1401
|
-
|
|
1402
|
-
|
|
1512
|
+
k(Tt, { status: a.status }, null, 8, ["status"]),
|
|
1513
|
+
d("span", Ot, f(a.label), 1)
|
|
1403
1514
|
], 2));
|
|
1404
1515
|
}
|
|
1405
|
-
}),
|
|
1516
|
+
}), tl = /* @__PURE__ */ _(St, [["__scopeId", "data-v-3e437a03"]]), Pt = {
|
|
1406
1517
|
name: "Cross20",
|
|
1407
1518
|
props: {
|
|
1408
1519
|
/**
|
|
@@ -1413,23 +1524,23 @@ const tt = /* @__PURE__ */ _(xa, [["render", at]]), st = ["id", "name", "disable
|
|
|
1413
1524
|
default: "currentColor"
|
|
1414
1525
|
}
|
|
1415
1526
|
}
|
|
1416
|
-
},
|
|
1417
|
-
function
|
|
1527
|
+
}, qt = ["fill"];
|
|
1528
|
+
function Dt(r, e, t, a, o, s) {
|
|
1418
1529
|
return l(), n("svg", {
|
|
1419
1530
|
"aria-hidden": "true",
|
|
1420
|
-
fill:
|
|
1531
|
+
fill: t.color,
|
|
1421
1532
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1422
1533
|
viewBox: "0 0 20 20",
|
|
1423
1534
|
width: "20",
|
|
1424
1535
|
height: "20"
|
|
1425
1536
|
}, e[0] || (e[0] = [
|
|
1426
|
-
|
|
1537
|
+
d("path", {
|
|
1427
1538
|
"fill-rule": "evenodd",
|
|
1428
1539
|
d: "M14.697 6.364a.75.75 0 1 0-1.061-1.061L10 8.939 6.363 5.303a.75.75 0 0 0-1.06 1.06L8.939 10l-3.636 3.636a.75.75 0 1 0 1.06 1.06L10 11.062l3.636 3.636a.75.75 0 0 0 1.06-1.06L11.06 10z"
|
|
1429
1540
|
}, null, -1)
|
|
1430
|
-
]), 8,
|
|
1541
|
+
]), 8, qt);
|
|
1431
1542
|
}
|
|
1432
|
-
const
|
|
1543
|
+
const Ft = /* @__PURE__ */ _(Pt, [["render", Dt]]), Nt = {
|
|
1433
1544
|
name: "InfoCircleFilled32",
|
|
1434
1545
|
props: {
|
|
1435
1546
|
/**
|
|
@@ -1440,23 +1551,23 @@ const Vt = /* @__PURE__ */ _(gt, [["render", wt]]), It = {
|
|
|
1440
1551
|
default: "currentColor"
|
|
1441
1552
|
}
|
|
1442
1553
|
}
|
|
1443
|
-
},
|
|
1444
|
-
function
|
|
1554
|
+
}, At = ["fill"];
|
|
1555
|
+
function Rt(r, e, t, a, o, s) {
|
|
1445
1556
|
return l(), n("svg", {
|
|
1446
1557
|
"aria-hidden": "true",
|
|
1447
|
-
fill:
|
|
1558
|
+
fill: t.color,
|
|
1448
1559
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1449
1560
|
viewBox: "0 0 32 32",
|
|
1450
1561
|
width: "32",
|
|
1451
1562
|
height: "32"
|
|
1452
1563
|
}, e[0] || (e[0] = [
|
|
1453
|
-
|
|
1564
|
+
d("path", {
|
|
1454
1565
|
"fill-rule": "evenodd",
|
|
1455
1566
|
d: "M16 3C8.82 3 3 8.82 3 16s5.82 13 13 13 13-5.82 13-13S23.18 3 16 3m0 9a1.333 1.333 0 1 0 0-2.667A1.333 1.333 0 0 0 16 12m1 2.667a1 1 0 1 0-2 0v6.666a1 1 0 1 0 2 0z"
|
|
1456
1567
|
}, null, -1)
|
|
1457
|
-
]), 8,
|
|
1568
|
+
]), 8, At);
|
|
1458
1569
|
}
|
|
1459
|
-
const
|
|
1570
|
+
const Gt = /* @__PURE__ */ _(Nt, [["render", Rt]]), Ut = {
|
|
1460
1571
|
name: "WarningCircleFilled32",
|
|
1461
1572
|
props: {
|
|
1462
1573
|
/**
|
|
@@ -1467,23 +1578,23 @@ const Mt = /* @__PURE__ */ _(It, [["render", Ct]]), zt = {
|
|
|
1467
1578
|
default: "currentColor"
|
|
1468
1579
|
}
|
|
1469
1580
|
}
|
|
1470
|
-
},
|
|
1471
|
-
function
|
|
1581
|
+
}, Ht = ["fill"];
|
|
1582
|
+
function Kt(r, e, t, a, o, s) {
|
|
1472
1583
|
return l(), n("svg", {
|
|
1473
1584
|
"aria-hidden": "true",
|
|
1474
|
-
fill:
|
|
1585
|
+
fill: t.color,
|
|
1475
1586
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1476
1587
|
viewBox: "0 0 32 32",
|
|
1477
1588
|
width: "32",
|
|
1478
1589
|
height: "32"
|
|
1479
1590
|
}, e[0] || (e[0] = [
|
|
1480
|
-
|
|
1591
|
+
d("path", {
|
|
1481
1592
|
"fill-rule": "evenodd",
|
|
1482
1593
|
d: "M16 3C8.82 3 3 8.82 3 16s5.82 13 13 13 13-5.82 13-13S23.18 3 16 3m1 7.667a1 1 0 1 0-2 0v6.666a1 1 0 1 0 2 0zm-1 12A1.333 1.333 0 1 0 16 20a1.333 1.333 0 0 0 0 2.667"
|
|
1483
1594
|
}, null, -1)
|
|
1484
|
-
]), 8,
|
|
1595
|
+
]), 8, Ht);
|
|
1485
1596
|
}
|
|
1486
|
-
const
|
|
1597
|
+
const Et = /* @__PURE__ */ _(Ut, [["render", Kt]]), Qt = {
|
|
1487
1598
|
name: "CrossCircleFilled32",
|
|
1488
1599
|
props: {
|
|
1489
1600
|
/**
|
|
@@ -1494,23 +1605,23 @@ const jt = /* @__PURE__ */ _(zt, [["render", Tt]]), Ot = {
|
|
|
1494
1605
|
default: "currentColor"
|
|
1495
1606
|
}
|
|
1496
1607
|
}
|
|
1497
|
-
},
|
|
1498
|
-
function
|
|
1608
|
+
}, Wt = ["fill"];
|
|
1609
|
+
function Jt(r, e, t, a, o, s) {
|
|
1499
1610
|
return l(), n("svg", {
|
|
1500
1611
|
"aria-hidden": "true",
|
|
1501
|
-
fill:
|
|
1612
|
+
fill: t.color,
|
|
1502
1613
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1503
1614
|
viewBox: "0 0 32 32",
|
|
1504
1615
|
width: "32",
|
|
1505
1616
|
height: "32"
|
|
1506
1617
|
}, e[0] || (e[0] = [
|
|
1507
|
-
|
|
1618
|
+
d("path", {
|
|
1508
1619
|
"fill-rule": "evenodd",
|
|
1509
1620
|
d: "M16 3C8.82 3 3 8.82 3 16s5.82 13 13 13 13-5.82 13-13S23.18 3 16 3m-4.707 8.293a1 1 0 0 1 1.414 0L16 14.586l3.293-3.293a1 1 0 0 1 1.414 1.414L17.414 16l3.293 3.293a1 1 0 0 1-1.414 1.414L16 17.414l-3.293 3.293a1 1 0 0 1-1.414-1.414L14.586 16l-3.293-3.293a1 1 0 0 1 0-1.414"
|
|
1510
1621
|
}, null, -1)
|
|
1511
|
-
]), 8,
|
|
1622
|
+
]), 8, Wt);
|
|
1512
1623
|
}
|
|
1513
|
-
const
|
|
1624
|
+
const Xt = /* @__PURE__ */ _(Qt, [["render", Jt]]), Yt = {
|
|
1514
1625
|
name: "CheckCircleFilled32",
|
|
1515
1626
|
props: {
|
|
1516
1627
|
/**
|
|
@@ -1521,26 +1632,26 @@ const Dt = /* @__PURE__ */ _(Ot, [["render", qt]]), Pt = {
|
|
|
1521
1632
|
default: "currentColor"
|
|
1522
1633
|
}
|
|
1523
1634
|
}
|
|
1524
|
-
},
|
|
1525
|
-
function
|
|
1635
|
+
}, Zt = ["fill"];
|
|
1636
|
+
function xt(r, e, t, a, o, s) {
|
|
1526
1637
|
return l(), n("svg", {
|
|
1527
1638
|
"aria-hidden": "true",
|
|
1528
|
-
fill:
|
|
1639
|
+
fill: t.color,
|
|
1529
1640
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1530
1641
|
viewBox: "0 0 32 32",
|
|
1531
1642
|
width: "32",
|
|
1532
1643
|
height: "32"
|
|
1533
1644
|
}, e[0] || (e[0] = [
|
|
1534
|
-
|
|
1645
|
+
d("path", {
|
|
1535
1646
|
"fill-rule": "evenodd",
|
|
1536
1647
|
d: "M16 3C8.82 3 3 8.82 3 16s5.82 13 13 13 13-5.82 13-13S23.18 3 16 3m6.707 8.96a1 1 0 0 1 0 1.414l-7.333 7.333a1 1 0 0 1-1.414 0l-4-4a1 1 0 1 1 1.414-1.414l3.293 3.293 6.626-6.626a1 1 0 0 1 1.414 0"
|
|
1537
1648
|
}, null, -1)
|
|
1538
|
-
]), 8,
|
|
1649
|
+
]), 8, Zt);
|
|
1539
1650
|
}
|
|
1540
|
-
const
|
|
1651
|
+
const es = /* @__PURE__ */ _(Yt, [["render", xt]]), as = { class: "mc-status-notification__content" }, ts = { class: "mc-status-notification__title" }, ss = { class: "mc-status-notification__message" }, ls = {
|
|
1541
1652
|
key: 0,
|
|
1542
1653
|
class: "mc-status-notification__footer"
|
|
1543
|
-
},
|
|
1654
|
+
}, os = /* @__PURE__ */ h({
|
|
1544
1655
|
__name: "MStatusNotification",
|
|
1545
1656
|
props: {
|
|
1546
1657
|
title: {},
|
|
@@ -1549,54 +1660,54 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1549
1660
|
closable: { type: Boolean }
|
|
1550
1661
|
},
|
|
1551
1662
|
emits: ["close"],
|
|
1552
|
-
setup(
|
|
1553
|
-
const
|
|
1554
|
-
[`mc-status-notification--${
|
|
1663
|
+
setup(r, { emit: e }) {
|
|
1664
|
+
const t = r, a = v(() => ({
|
|
1665
|
+
[`mc-status-notification--${t.status}`]: t.status && t.status != "info"
|
|
1555
1666
|
})), o = v(() => {
|
|
1556
|
-
switch (
|
|
1667
|
+
switch (t.status) {
|
|
1557
1668
|
case "success":
|
|
1558
|
-
return
|
|
1669
|
+
return es;
|
|
1559
1670
|
case "warning":
|
|
1560
|
-
return
|
|
1671
|
+
return Et;
|
|
1561
1672
|
case "error":
|
|
1562
|
-
return
|
|
1673
|
+
return Xt;
|
|
1563
1674
|
case "info":
|
|
1564
1675
|
default:
|
|
1565
|
-
return
|
|
1676
|
+
return Gt;
|
|
1566
1677
|
}
|
|
1567
1678
|
}), s = e;
|
|
1568
1679
|
return (i, c) => (l(), n("section", {
|
|
1569
|
-
class: g(["mc-status-notification",
|
|
1680
|
+
class: g(["mc-status-notification", a.value]),
|
|
1570
1681
|
role: "status"
|
|
1571
1682
|
}, [
|
|
1572
1683
|
(l(), B(A(o.value), {
|
|
1573
1684
|
class: "mc-status-notification__icon",
|
|
1574
1685
|
"aria-hidden": "true"
|
|
1575
1686
|
})),
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
i.$slots.footer ? (l(), n("div",
|
|
1580
|
-
|
|
1581
|
-
])) :
|
|
1687
|
+
d("div", as, [
|
|
1688
|
+
d("h2", ts, f(i.title), 1),
|
|
1689
|
+
d("p", ss, f(i.description), 1),
|
|
1690
|
+
i.$slots.footer ? (l(), n("div", ls, [
|
|
1691
|
+
w(i.$slots, "footer", {}, void 0, !0)
|
|
1692
|
+
])) : $("", !0)
|
|
1582
1693
|
]),
|
|
1583
1694
|
i.closable ? (l(), n("button", {
|
|
1584
1695
|
key: 0,
|
|
1585
1696
|
class: "mc-status-notification-closable__close",
|
|
1586
1697
|
onClick: c[0] || (c[0] = (p) => s("close"))
|
|
1587
1698
|
}, [
|
|
1588
|
-
|
|
1699
|
+
k(Ft, {
|
|
1589
1700
|
class: "mc-status-notification-closable__icon",
|
|
1590
1701
|
"aria-hidden": "true"
|
|
1591
1702
|
}),
|
|
1592
|
-
c[1] || (c[1] =
|
|
1593
|
-
])) :
|
|
1703
|
+
c[1] || (c[1] = d("span", { class: "mc-status-notification-closable__text" }, "Close", -1))
|
|
1704
|
+
])) : $("", !0)
|
|
1594
1705
|
], 2));
|
|
1595
1706
|
}
|
|
1596
|
-
}),
|
|
1707
|
+
}), sl = /* @__PURE__ */ _(os, [["__scopeId", "data-v-457733a1"]]), ns = ["aria-label"], is = ["aria-selected", "onClick"], rs = {
|
|
1597
1708
|
key: 0,
|
|
1598
1709
|
class: "mc-tabs__icon"
|
|
1599
|
-
},
|
|
1710
|
+
}, ds = { class: "mc-tabs__label" }, cs = /* @__PURE__ */ h({
|
|
1600
1711
|
__name: "MTabs",
|
|
1601
1712
|
props: {
|
|
1602
1713
|
description: {},
|
|
@@ -1606,16 +1717,16 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1606
1717
|
tabs: {}
|
|
1607
1718
|
},
|
|
1608
1719
|
emits: ["update:modelValue"],
|
|
1609
|
-
setup(
|
|
1610
|
-
const
|
|
1611
|
-
"mc-tabs--centered":
|
|
1612
|
-
})), o = z(
|
|
1613
|
-
|
|
1720
|
+
setup(r, { emit: e }) {
|
|
1721
|
+
const t = r, a = v(() => ({
|
|
1722
|
+
"mc-tabs--centered": t.centered
|
|
1723
|
+
})), o = z(t.modelValue), s = (p) => {
|
|
1724
|
+
t.tabs[p].disabled || p !== o.value && (o.value = p, c("update:modelValue", p));
|
|
1614
1725
|
}, i = (p) => o.value === p, c = e;
|
|
1615
1726
|
return (p, m) => (l(), n("nav", {
|
|
1616
|
-
class: g(["mc-tabs",
|
|
1727
|
+
class: g(["mc-tabs", a.value])
|
|
1617
1728
|
}, [
|
|
1618
|
-
|
|
1729
|
+
d("ul", {
|
|
1619
1730
|
role: "tablist",
|
|
1620
1731
|
class: "mc-tabs__list",
|
|
1621
1732
|
"aria-label": p.description
|
|
@@ -1625,7 +1736,7 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1625
1736
|
role: "presentation",
|
|
1626
1737
|
class: "mc-tabs__item"
|
|
1627
1738
|
}, [
|
|
1628
|
-
|
|
1739
|
+
d("button", {
|
|
1629
1740
|
ref_for: !0,
|
|
1630
1741
|
ref: "tab",
|
|
1631
1742
|
role: "tab",
|
|
@@ -1635,21 +1746,21 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1635
1746
|
}]),
|
|
1636
1747
|
"aria-selected": i(b),
|
|
1637
1748
|
type: "button",
|
|
1638
|
-
onClick: (
|
|
1749
|
+
onClick: (C) => s(b)
|
|
1639
1750
|
}, [
|
|
1640
|
-
u.icon ? (l(), n("span",
|
|
1751
|
+
u.icon ? (l(), n("span", rs, [
|
|
1641
1752
|
(l(), B(A(u.icon)))
|
|
1642
|
-
])) :
|
|
1643
|
-
|
|
1644
|
-
|
|
1753
|
+
])) : $("", !0),
|
|
1754
|
+
d("div", ds, [
|
|
1755
|
+
d("span", null, f(u.label), 1)
|
|
1645
1756
|
])
|
|
1646
|
-
], 10,
|
|
1757
|
+
], 10, is)
|
|
1647
1758
|
]))), 128))
|
|
1648
|
-
], 8,
|
|
1649
|
-
p.divider ? (l(), B(
|
|
1759
|
+
], 8, ns),
|
|
1760
|
+
p.divider ? (l(), B(Ne, { key: 0 })) : $("", !0)
|
|
1650
1761
|
], 2));
|
|
1651
1762
|
}
|
|
1652
|
-
}),
|
|
1763
|
+
}), ll = /* @__PURE__ */ _(cs, [["__scopeId", "data-v-3919f834"]]), us = ["for"], ps = ["id", "name", "checked", "disabled"], ms = { class: "mc-tag__label" }, _s = ["disabled"], vs = { class: "mc-tag__label" }, bs = ["disabled"], fs = { class: "mc-tag__label" }, hs = { class: "mc-tag__label" }, $s = { class: "mc-tag__label" }, gs = /* @__PURE__ */ h({
|
|
1653
1764
|
__name: "MTag",
|
|
1654
1765
|
props: {
|
|
1655
1766
|
type: { default: "informative" },
|
|
@@ -1663,17 +1774,17 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1663
1774
|
removableLabel: {}
|
|
1664
1775
|
},
|
|
1665
1776
|
emits: ["update:modelValue", "remove-tag"],
|
|
1666
|
-
setup(
|
|
1667
|
-
const
|
|
1668
|
-
[`mc-tag-${
|
|
1669
|
-
[`mc-tag--${
|
|
1777
|
+
setup(r, { emit: e }) {
|
|
1778
|
+
const t = r, a = v(() => ({
|
|
1779
|
+
[`mc-tag-${t.type}`]: t.type && t.type != "informative",
|
|
1780
|
+
[`mc-tag--${t.size}`]: t.size && t.size != "m"
|
|
1670
1781
|
})), o = e;
|
|
1671
1782
|
return (s, i) => s.type === "selectable" ? (l(), n("label", {
|
|
1672
1783
|
key: 0,
|
|
1673
1784
|
for: s.id,
|
|
1674
|
-
class: g(["mc-tag",
|
|
1785
|
+
class: g(["mc-tag", a.value])
|
|
1675
1786
|
}, [
|
|
1676
|
-
|
|
1787
|
+
d("input", I({
|
|
1677
1788
|
type: "checkbox",
|
|
1678
1789
|
class: "mc-tag__input",
|
|
1679
1790
|
id: s.id,
|
|
@@ -1681,51 +1792,51 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1681
1792
|
checked: s.modelValue,
|
|
1682
1793
|
disabled: s.disabled,
|
|
1683
1794
|
onChange: i[0] || (i[0] = (c) => o("update:modelValue", c.target.checked))
|
|
1684
|
-
}, s.$attrs), null, 16,
|
|
1685
|
-
|
|
1686
|
-
], 10,
|
|
1795
|
+
}, s.$attrs), null, 16, ps),
|
|
1796
|
+
d("span", ms, f(s.label), 1)
|
|
1797
|
+
], 10, us)) : s.type === "interactive" ? (l(), n("button", I({
|
|
1687
1798
|
key: 1,
|
|
1688
|
-
class: ["mc-tag",
|
|
1799
|
+
class: ["mc-tag", a.value],
|
|
1689
1800
|
type: "button",
|
|
1690
1801
|
disabled: s.disabled
|
|
1691
1802
|
}, s.$attrs), [
|
|
1692
|
-
|
|
1693
|
-
], 16,
|
|
1803
|
+
d("span", vs, f(s.label), 1)
|
|
1804
|
+
], 16, _s)) : s.type === "contextualised" ? (l(), n("button", I({
|
|
1694
1805
|
key: 2,
|
|
1695
|
-
class: ["mc-tag",
|
|
1806
|
+
class: ["mc-tag", a.value],
|
|
1696
1807
|
type: "button",
|
|
1697
1808
|
disabled: s.disabled
|
|
1698
1809
|
}, s.$attrs), [
|
|
1699
|
-
|
|
1810
|
+
k(Sa, {
|
|
1700
1811
|
appearance: "inverse",
|
|
1701
1812
|
label: s.contextualisedNumber,
|
|
1702
1813
|
size: s.size === "l" ? "m" : void 0
|
|
1703
1814
|
}, null, 8, ["label", "size"]),
|
|
1704
|
-
|
|
1705
|
-
], 16,
|
|
1815
|
+
d("span", fs, f(s.label), 1)
|
|
1816
|
+
], 16, bs)) : s.type === "removable" ? (l(), n("span", I({
|
|
1706
1817
|
key: 3,
|
|
1707
|
-
class: ["mc-tag",
|
|
1818
|
+
class: ["mc-tag", a.value]
|
|
1708
1819
|
}, s.$attrs), [
|
|
1709
|
-
|
|
1710
|
-
|
|
1820
|
+
d("span", hs, f(s.label), 1),
|
|
1821
|
+
d("button", {
|
|
1711
1822
|
class: "mc-tag-removable__remove",
|
|
1712
1823
|
type: "button",
|
|
1713
1824
|
onClick: i[1] || (i[1] = (c) => s.id && o("remove-tag", s.id))
|
|
1714
1825
|
}, [
|
|
1715
|
-
|
|
1826
|
+
k(F, {
|
|
1716
1827
|
class: "mc-tag-removable__icon",
|
|
1717
1828
|
"aria-hidden": "true"
|
|
1718
1829
|
}),
|
|
1719
|
-
i[2] || (i[2] =
|
|
1830
|
+
i[2] || (i[2] = d("span", { class: "mc-tag-removable__text" }, "removableLabel", -1))
|
|
1720
1831
|
])
|
|
1721
1832
|
], 16)) : (l(), n("span", I({
|
|
1722
1833
|
key: 4,
|
|
1723
|
-
class: ["mc-tag",
|
|
1834
|
+
class: ["mc-tag", a.value]
|
|
1724
1835
|
}, s.$attrs), [
|
|
1725
|
-
|
|
1836
|
+
d("span", $s, f(s.label), 1)
|
|
1726
1837
|
], 16));
|
|
1727
1838
|
}
|
|
1728
|
-
}),
|
|
1839
|
+
}), ol = /* @__PURE__ */ _(gs, [["__scopeId", "data-v-a3166010"]]), ys = ["id", "aria-invalid", "value", "name", "placeholder", "disabled", "minlength", "maxlength", "rows", "readonly"], ks = /* @__PURE__ */ h({
|
|
1729
1840
|
__name: "MTextArea",
|
|
1730
1841
|
props: {
|
|
1731
1842
|
id: {},
|
|
@@ -1740,13 +1851,13 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1740
1851
|
readonly: { type: Boolean }
|
|
1741
1852
|
},
|
|
1742
1853
|
emits: ["update:modelValue"],
|
|
1743
|
-
setup(
|
|
1744
|
-
const
|
|
1745
|
-
"is-invalid":
|
|
1854
|
+
setup(r, { emit: e }) {
|
|
1855
|
+
const t = r, a = v(() => ({
|
|
1856
|
+
"is-invalid": t.isInvalid
|
|
1746
1857
|
})), o = e;
|
|
1747
1858
|
return (s, i) => (l(), n("textarea", I({
|
|
1748
1859
|
id: s.id,
|
|
1749
|
-
class: ["mc-textarea",
|
|
1860
|
+
class: ["mc-textarea", a.value],
|
|
1750
1861
|
"aria-invalid": s.isInvalid,
|
|
1751
1862
|
value: s.modelValue,
|
|
1752
1863
|
name: s.name,
|
|
@@ -1758,15 +1869,15 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1758
1869
|
readonly: s.readonly
|
|
1759
1870
|
}, s.$attrs, {
|
|
1760
1871
|
onInput: i[0] || (i[0] = (c) => o("update:modelValue", c.target.value))
|
|
1761
|
-
}), null, 16,
|
|
1872
|
+
}), null, 16, ys));
|
|
1762
1873
|
}
|
|
1763
|
-
}),
|
|
1874
|
+
}), nl = /* @__PURE__ */ _(ks, [["__scopeId", "data-v-8184b69c"]]), ws = {
|
|
1764
1875
|
key: 0,
|
|
1765
1876
|
class: "mc-text-input__icon"
|
|
1766
|
-
},
|
|
1877
|
+
}, Vs = ["id", "type", "name", "placeholder", "disabled", "aria-invalid", "readonly"], Is = {
|
|
1767
1878
|
key: 1,
|
|
1768
1879
|
class: "mc-controls-options"
|
|
1769
|
-
},
|
|
1880
|
+
}, Bs = /* @__PURE__ */ h({
|
|
1770
1881
|
__name: "MTextInput",
|
|
1771
1882
|
props: {
|
|
1772
1883
|
id: {},
|
|
@@ -1782,23 +1893,23 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1782
1893
|
clearLabel: { default: "clear content" }
|
|
1783
1894
|
},
|
|
1784
1895
|
emits: ["update:modelValue"],
|
|
1785
|
-
setup(
|
|
1786
|
-
const
|
|
1787
|
-
[`mc-text-input--${
|
|
1788
|
-
"is-invalid":
|
|
1789
|
-
})), o = z(
|
|
1896
|
+
setup(r, { emit: e }) {
|
|
1897
|
+
const t = r, a = v(() => ({
|
|
1898
|
+
[`mc-text-input--${t.size}`]: t.size && t.size != "m",
|
|
1899
|
+
"is-invalid": t.isInvalid
|
|
1900
|
+
})), o = z(t.modelValue), s = () => {
|
|
1790
1901
|
o.value = "", i("update:modelValue", "");
|
|
1791
1902
|
}, i = e;
|
|
1792
1903
|
return (c, p) => (l(), n("div", {
|
|
1793
|
-
class: g(["mc-text-input",
|
|
1904
|
+
class: g(["mc-text-input", a.value])
|
|
1794
1905
|
}, [
|
|
1795
|
-
c.$slots.icon ? (l(), n("span",
|
|
1796
|
-
|
|
1797
|
-
])) :
|
|
1798
|
-
|
|
1906
|
+
c.$slots.icon ? (l(), n("span", ws, [
|
|
1907
|
+
w(c.$slots, "icon", {}, void 0, !0)
|
|
1908
|
+
])) : $("", !0),
|
|
1909
|
+
G(d("input", I({
|
|
1799
1910
|
id: c.id,
|
|
1800
1911
|
class: "mc-text-input__control",
|
|
1801
|
-
|
|
1912
|
+
"onUpdate:modelValue": p[0] || (p[0] = (m) => o.value = m),
|
|
1802
1913
|
type: c.inputType,
|
|
1803
1914
|
name: c.name,
|
|
1804
1915
|
placeholder: c.placeholder,
|
|
@@ -1806,24 +1917,26 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1806
1917
|
"aria-invalid": c.isInvalid,
|
|
1807
1918
|
readonly: c.readonly
|
|
1808
1919
|
}, c.$attrs, {
|
|
1809
|
-
onInput: p[
|
|
1810
|
-
}), null, 16,
|
|
1811
|
-
|
|
1812
|
-
|
|
1920
|
+
onInput: p[1] || (p[1] = (m) => i("update:modelValue", m.target.value))
|
|
1921
|
+
}), null, 16, Vs), [
|
|
1922
|
+
[E, o.value]
|
|
1923
|
+
]),
|
|
1924
|
+
c.isClearable && o.value ? (l(), n("div", Is, [
|
|
1925
|
+
d("button", {
|
|
1813
1926
|
type: "button",
|
|
1814
1927
|
class: "mc-controls-options__button",
|
|
1815
1928
|
onClick: s
|
|
1816
1929
|
}, [
|
|
1817
|
-
|
|
1930
|
+
k(F, {
|
|
1818
1931
|
class: "mc-controls-options__icon",
|
|
1819
1932
|
"aria-hidden": "true"
|
|
1820
1933
|
}),
|
|
1821
|
-
p[
|
|
1934
|
+
p[2] || (p[2] = d("span", { class: "mc-controls-options__label" }, "{clearLabel}", -1))
|
|
1822
1935
|
])
|
|
1823
|
-
])) :
|
|
1936
|
+
])) : $("", !0)
|
|
1824
1937
|
], 2));
|
|
1825
1938
|
}
|
|
1826
|
-
}),
|
|
1939
|
+
}), il = /* @__PURE__ */ _(Bs, [["__scopeId", "data-v-4fb14aba"]]), Cs = ["for"], Ms = ["id", "name", "checked", "disabled"], zs = ["for"], Ls = /* @__PURE__ */ h({
|
|
1827
1940
|
__name: "MToggle",
|
|
1828
1941
|
props: {
|
|
1829
1942
|
id: {},
|
|
@@ -1834,18 +1947,18 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1834
1947
|
disabled: { type: Boolean }
|
|
1835
1948
|
},
|
|
1836
1949
|
emits: ["update:modelValue"],
|
|
1837
|
-
setup(
|
|
1838
|
-
const
|
|
1839
|
-
[`mc-toggle--${
|
|
1950
|
+
setup(r, { emit: e }) {
|
|
1951
|
+
const t = r, a = v(() => ({
|
|
1952
|
+
[`mc-toggle--${t.size}`]: t.size && t.size != "s"
|
|
1840
1953
|
})), o = e;
|
|
1841
1954
|
return (s, i) => (l(), n("div", {
|
|
1842
|
-
class: g(["mc-toggle",
|
|
1955
|
+
class: g(["mc-toggle", a.value])
|
|
1843
1956
|
}, [
|
|
1844
|
-
|
|
1957
|
+
d("label", {
|
|
1845
1958
|
class: "mc-toggle__container",
|
|
1846
1959
|
for: s.id
|
|
1847
1960
|
}, [
|
|
1848
|
-
|
|
1961
|
+
d("input", I({
|
|
1849
1962
|
id: s.id,
|
|
1850
1963
|
type: "checkbox",
|
|
1851
1964
|
class: "mc-toggle__input",
|
|
@@ -1854,16 +1967,16 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1854
1967
|
disabled: s.disabled
|
|
1855
1968
|
}, s.$attrs, {
|
|
1856
1969
|
onChange: i[0] || (i[0] = (c) => o("update:modelValue", c.target.checked))
|
|
1857
|
-
}), null, 16,
|
|
1970
|
+
}), null, 16, Ms),
|
|
1858
1971
|
s.label ? (l(), n("span", {
|
|
1859
1972
|
key: 0,
|
|
1860
1973
|
for: s.id,
|
|
1861
1974
|
class: "mc-toggle__label"
|
|
1862
|
-
}, f(s.label), 9,
|
|
1863
|
-
], 8,
|
|
1975
|
+
}, f(s.label), 9, zs)) : $("", !0)
|
|
1976
|
+
], 8, Cs)
|
|
1864
1977
|
], 2));
|
|
1865
1978
|
}
|
|
1866
|
-
}),
|
|
1979
|
+
}), js = /* @__PURE__ */ _(Ls, [["__scopeId", "data-v-5be734e7"]]), Ts = { class: "tooltip-story-wrapper" }, Os = ["aria-describedby"], Ss = ["id"], Ps = /* @__PURE__ */ h({
|
|
1867
1980
|
__name: "MTooltip",
|
|
1868
1981
|
props: {
|
|
1869
1982
|
id: {},
|
|
@@ -1871,26 +1984,26 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1871
1984
|
position: { default: "top" },
|
|
1872
1985
|
pointer: { type: Boolean, default: !0 }
|
|
1873
1986
|
},
|
|
1874
|
-
setup(
|
|
1875
|
-
const e =
|
|
1987
|
+
setup(r) {
|
|
1988
|
+
const e = r, t = v(() => ({
|
|
1876
1989
|
[`mc-tooltip--${e.position}`]: e.position,
|
|
1877
1990
|
"mc-tooltip--no-pointer": !e.pointer
|
|
1878
1991
|
}));
|
|
1879
|
-
return (
|
|
1880
|
-
|
|
1881
|
-
class: g(["mc-tooltip",
|
|
1882
|
-
"aria-describedby":
|
|
1992
|
+
return (a, o) => (l(), n("div", Ts, [
|
|
1993
|
+
d("div", {
|
|
1994
|
+
class: g(["mc-tooltip", t.value]),
|
|
1995
|
+
"aria-describedby": a.id
|
|
1883
1996
|
}, [
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
id:
|
|
1997
|
+
w(a.$slots, "default", {}, void 0, !0),
|
|
1998
|
+
d("span", {
|
|
1999
|
+
id: a.id,
|
|
1887
2000
|
class: "mc-tooltip__content",
|
|
1888
2001
|
role: "tooltip"
|
|
1889
|
-
}, f(
|
|
1890
|
-
], 10,
|
|
2002
|
+
}, f(a.text), 9, Ss)
|
|
2003
|
+
], 10, Os)
|
|
1891
2004
|
]));
|
|
1892
2005
|
}
|
|
1893
|
-
}),
|
|
2006
|
+
}), rl = /* @__PURE__ */ _(Ps, [["__scopeId", "data-v-f90a7be6"]]), qs = /* @__PURE__ */ h({
|
|
1894
2007
|
__name: "MToggleGroup",
|
|
1895
2008
|
props: {
|
|
1896
2009
|
name: {},
|
|
@@ -1899,27 +2012,27 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1899
2012
|
inline: { type: Boolean }
|
|
1900
2013
|
},
|
|
1901
2014
|
emits: ["update:modelValue"],
|
|
1902
|
-
setup(
|
|
1903
|
-
const
|
|
1904
|
-
|
|
1905
|
-
() =>
|
|
2015
|
+
setup(r, { emit: e }) {
|
|
2016
|
+
const t = r, a = z([]);
|
|
2017
|
+
P(
|
|
2018
|
+
() => t.modelValue,
|
|
1906
2019
|
(p) => {
|
|
1907
|
-
|
|
2020
|
+
a.value = p || [];
|
|
1908
2021
|
},
|
|
1909
2022
|
{ immediate: !0 }
|
|
1910
2023
|
);
|
|
1911
2024
|
const o = (p, m) => {
|
|
1912
|
-
let u = [...
|
|
1913
|
-
p && !u.includes(m) ? u.push(m) : u = u.filter((b) => b !== m), c("update:modelValue", u),
|
|
2025
|
+
let u = [...a.value];
|
|
2026
|
+
p && !u.includes(m) ? u.push(m) : u = u.filter((b) => b !== m), c("update:modelValue", u), a.value = u;
|
|
1914
2027
|
}, s = v(() => ({
|
|
1915
|
-
"mc-field__container--inline":
|
|
2028
|
+
"mc-field__container--inline": t.inline
|
|
1916
2029
|
})), i = v(() => ({
|
|
1917
|
-
"mc-field__container--inline__item":
|
|
2030
|
+
"mc-field__container--inline__item": t.inline
|
|
1918
2031
|
})), c = e;
|
|
1919
2032
|
return (p, m) => (l(), n("div", {
|
|
1920
2033
|
class: g(s.value)
|
|
1921
2034
|
}, [
|
|
1922
|
-
(l(!0), n(O, null, S(p.options, (u) => (l(), B(
|
|
2035
|
+
(l(!0), n(O, null, S(p.options, (u) => (l(), B(js, {
|
|
1923
2036
|
id: u.id,
|
|
1924
2037
|
key: u.id,
|
|
1925
2038
|
label: u.label,
|
|
@@ -1932,40 +2045,44 @@ const At = /* @__PURE__ */ _(Pt, [["render", Nt]]), Rt = { class: "mc-status-not
|
|
|
1932
2045
|
}, null, 8, ["id", "label", "is-invalid", "name", "class", "model-value", "disabled", "onUpdate:modelValue"]))), 128))
|
|
1933
2046
|
], 2));
|
|
1934
2047
|
}
|
|
1935
|
-
}),
|
|
2048
|
+
}), dl = /* @__PURE__ */ _(qs, [["__scopeId", "data-v-c6b10172"]]);
|
|
1936
2049
|
export {
|
|
1937
|
-
|
|
2050
|
+
Fs as MBreadcrumb,
|
|
1938
2051
|
N as MButton,
|
|
1939
2052
|
ge as MCheckbox,
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
2053
|
+
Ns as MCheckboxGroup,
|
|
2054
|
+
As as MCircularProgressbar,
|
|
2055
|
+
Rs as MContainer,
|
|
2056
|
+
Gs as MDatepicker,
|
|
2057
|
+
Ne as MDivider,
|
|
2058
|
+
Us as MDrawer,
|
|
2059
|
+
Hs as MField,
|
|
2060
|
+
Ks as MFieldGroup,
|
|
2061
|
+
Es as MFlag,
|
|
1947
2062
|
D as MIconButton,
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
2063
|
+
Zs as MLinearProgressbarBuffer,
|
|
2064
|
+
xs as MLinearProgressbarPercentage,
|
|
2065
|
+
te as MLink,
|
|
2066
|
+
Q as MLoader,
|
|
2067
|
+
Qs as MLoadingOverlay,
|
|
2068
|
+
Ws as MModal,
|
|
2069
|
+
Sa as MNumberBadge,
|
|
2070
|
+
J as MOverlay,
|
|
2071
|
+
Js as MPagination,
|
|
2072
|
+
Xs as MPasswordInput,
|
|
2073
|
+
Ys as MPincode,
|
|
2074
|
+
el as MQuantitySelector,
|
|
2075
|
+
zt as MRadio,
|
|
2076
|
+
al as MRadioGroup,
|
|
2077
|
+
Na as MSelect,
|
|
2078
|
+
tl as MStatusBadge,
|
|
2079
|
+
sl as MStatusNotification,
|
|
2080
|
+
ll as MTabs,
|
|
2081
|
+
ol as MTag,
|
|
2082
|
+
nl as MTextArea,
|
|
2083
|
+
il as MTextInput,
|
|
2084
|
+
js as MToggle,
|
|
2085
|
+
dl as MToggleGroup,
|
|
2086
|
+
rl as MTooltip
|
|
1970
2087
|
};
|
|
1971
2088
|
//# sourceMappingURL=mozaic-vue.js.map
|