@utrecht/component-library-vue 1.0.0-alpha.31 → 1.0.0-alpha.310
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/.jest-test-results.json +1 -0
- package/dist/AlertDialog.vue.d.ts +25 -0
- package/dist/Article.vue.d.ts +2 -0
- package/dist/BadgeCounter.vue.d.ts +16 -0
- package/dist/BadgeStatus.vue.d.ts +18 -0
- package/dist/BreadcrumbLink.vue.d.ts +55 -0
- package/dist/BreadcrumbNav.vue.d.ts +48 -0
- package/dist/Button.vue.d.ts +52 -0
- package/dist/ButtonGroup.vue.d.ts +2 -0
- package/dist/Checkbox.vue.d.ts +38 -0
- package/dist/Code.vue.d.ts +2 -0
- package/dist/CodeBlock.vue.d.ts +2 -0
- package/dist/DataList.vue.d.ts +16 -0
- package/dist/DataListActions.vue.d.ts +2 -0
- package/dist/DataListItem.vue.d.ts +2 -0
- package/dist/DataListKey.vue.d.ts +2 -0
- package/dist/DataListValue.vue.d.ts +47 -0
- package/dist/Document.vue.d.ts +2 -0
- package/dist/Emphasis.vue.d.ts +2 -0
- package/dist/Figure.vue.d.ts +2 -0
- package/dist/FigureCaption.vue.d.ts +2 -0
- package/dist/FormField.vue.d.ts +29 -0
- package/dist/FormFieldset.vue.d.ts +93 -0
- package/dist/FormFieldsetLegend.vue.d.ts +2 -0
- package/dist/FormLabel.vue.d.ts +40 -0
- package/dist/Heading.vue.d.ts +16 -0
- package/dist/Heading1.vue.d.ts +2 -0
- package/dist/Heading2.vue.d.ts +2 -0
- package/dist/Heading3.vue.d.ts +2 -0
- package/dist/Heading4.vue.d.ts +2 -0
- package/dist/Heading5.vue.d.ts +2 -0
- package/dist/Heading6.vue.d.ts +2 -0
- package/dist/Image.vue.d.ts +16 -0
- package/dist/Link.vue.d.ts +16 -0
- package/dist/LinkSocial.vue.d.ts +16 -0
- package/dist/ListSocial.vue.d.ts +16 -0
- package/dist/ListSocialItem.vue.d.ts +2 -0
- package/dist/NumberValue.vue.d.ts +16 -0
- package/dist/OrderedList.vue.d.ts +2 -0
- package/dist/OrderedListItem.vue.d.ts +2 -0
- package/dist/Page.vue.d.ts +2 -0
- package/dist/PageContent.vue.d.ts +2 -0
- package/dist/PageFooter.vue.d.ts +2 -0
- package/dist/PageHeader.vue.d.ts +2 -0
- package/dist/Paragraph.vue.d.ts +27 -0
- package/dist/RadioButton.vue.d.ts +27 -0
- package/dist/Select.vue.d.ts +44 -0
- package/dist/Separator.vue.d.ts +2 -0
- package/dist/SkipLink.vue.d.ts +16 -0
- package/dist/Strong.vue.d.ts +2 -0
- package/dist/Table.vue.d.ts +2 -0
- package/dist/TableBody.vue.d.ts +2 -0
- package/dist/TableCaption.vue.d.ts +2 -0
- package/dist/TableCell.vue.d.ts +2 -0
- package/dist/TableFooter.vue.d.ts +2 -0
- package/dist/TableHeader.vue.d.ts +2 -0
- package/dist/TableHeaderCell.vue.d.ts +2 -0
- package/dist/TableRow.vue.d.ts +2 -0
- package/dist/Textarea.vue.d.ts +38 -0
- package/dist/Textbox.vue.d.ts +38 -0
- package/dist/URLValue.vue.d.ts +2 -0
- package/dist/UnorderedList.vue.d.ts +2 -0
- package/dist/UnorderedListItem.vue.d.ts +2 -0
- package/dist/component-library-vue.mjs +1055 -0
- package/dist/component-library-vue.umd.js +4 -1
- package/dist/helpers/microdata.d.ts +6 -0
- package/dist/helpers/modelWrapper.d.ts +1 -0
- package/dist/index.d.ts +62 -29
- package/dist/style.css +35 -46
- package/package.json +34 -25
- package/dist/UtrechtBadgeStatus.vue.d.ts +0 -12
- package/dist/UtrechtButton.vue.d.ts +0 -39
- package/dist/UtrechtCheckbox.vue.d.ts +0 -67
- package/dist/UtrechtFormLabel.vue.d.ts +0 -31
- package/dist/UtrechtHeading.vue.d.ts +0 -12
- package/dist/UtrechtLink.vue.d.ts +0 -14
- package/dist/UtrechtParagraph.vue.d.ts +0 -14
- package/dist/UtrechtRadioButton.vue.d.ts +0 -64
- package/dist/UtrechtSelect.vue.d.ts +0 -51
- package/dist/UtrechtSelectOption.vue.d.ts +0 -14
- package/dist/UtrechtTextarea.vue.d.ts +0 -59
- package/dist/UtrechtTextbox.vue.d.ts +0 -59
- package/dist/component-library-vue.es.js +0 -623
|
@@ -0,0 +1,1055 @@
|
|
|
1
|
+
import { defineComponent as d, ref as k, openBlock as s, createElementBlock as r, normalizeClass as p, toDisplayString as b, createCommentVNode as U, createElementVNode as m, renderSlot as c, getCurrentInstance as v, resolveComponent as q, mergeProps as u, createVNode as S, withCtx as B, computed as C, createTextVNode as h, withDirectives as y, vModelCheckbox as F, vModelRadio as H, Fragment as T, renderList as V, vModelSelect as D, vModelText as L } from "vue";
|
|
2
|
+
const I = d({
|
|
3
|
+
name: "UtrechtAlertDialog",
|
|
4
|
+
props: {
|
|
5
|
+
icon: {
|
|
6
|
+
type: String,
|
|
7
|
+
default: null
|
|
8
|
+
},
|
|
9
|
+
type: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: null
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
setup(e) {
|
|
15
|
+
return { dialogRef: k(null), props: e };
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
const i = (e, t) => {
|
|
19
|
+
const n = e.__vccOpts || e;
|
|
20
|
+
for (const [a, o] of t)
|
|
21
|
+
n[a] = o;
|
|
22
|
+
return n;
|
|
23
|
+
}, N = {
|
|
24
|
+
key: 0,
|
|
25
|
+
class: "utrecht-alert-dialog__icon"
|
|
26
|
+
}, w = { class: "utrecht-alert-dialog__message" };
|
|
27
|
+
function P(e, t, n, a, o, l) {
|
|
28
|
+
return s(), r("dialog", {
|
|
29
|
+
ref: "dialogRef",
|
|
30
|
+
class: p(["utrecht-alert-dialog", {
|
|
31
|
+
"utrecht-alert-dialog--error": e.type === "error",
|
|
32
|
+
"utrecht-alert-dialog--info": e.type === "info",
|
|
33
|
+
"utrecht-alert-dialog--warning": e.type === "warning"
|
|
34
|
+
}])
|
|
35
|
+
}, [
|
|
36
|
+
e.icon ? (s(), r("div", N, b(e.icon), 1)) : U("", !0),
|
|
37
|
+
m("div", w, [
|
|
38
|
+
c(e.$slots, "default")
|
|
39
|
+
])
|
|
40
|
+
], 2);
|
|
41
|
+
}
|
|
42
|
+
const ar = /* @__PURE__ */ i(I, [["render", P]]), M = d({
|
|
43
|
+
name: "UtrechtArticle"
|
|
44
|
+
});
|
|
45
|
+
const R = { class: "utrecht-article" };
|
|
46
|
+
function A(e, t, n, a, o, l) {
|
|
47
|
+
return s(), r("article", R, [
|
|
48
|
+
c(e.$slots, "default")
|
|
49
|
+
]);
|
|
50
|
+
}
|
|
51
|
+
const or = /* @__PURE__ */ i(M, [["render", A]]), E = d({
|
|
52
|
+
name: "UtrechtBadgeCounter",
|
|
53
|
+
props: {
|
|
54
|
+
value: { type: [Number, String], required: !1, default: void 0 }
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
const O = ["value"], j = {
|
|
58
|
+
key: 1,
|
|
59
|
+
class: "utrecht-badge-counter"
|
|
60
|
+
};
|
|
61
|
+
function z(e, t, n, a, o, l) {
|
|
62
|
+
return typeof e.value < "u" ? (s(), r("data", {
|
|
63
|
+
key: 0,
|
|
64
|
+
class: "utrecht-badge-counter",
|
|
65
|
+
value: e.value ? String(e.value) : void 0
|
|
66
|
+
}, [
|
|
67
|
+
c(e.$slots, "default")
|
|
68
|
+
], 8, O)) : (s(), r("span", j, [
|
|
69
|
+
c(e.$slots, "default")
|
|
70
|
+
]));
|
|
71
|
+
}
|
|
72
|
+
const cr = /* @__PURE__ */ i(E, [["render", z]]), G = d({
|
|
73
|
+
name: "UtrechtBadgeStatus",
|
|
74
|
+
props: {
|
|
75
|
+
status: { type: String, required: !1, default: void 0 }
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
function K(e, t, n, a, o, l) {
|
|
79
|
+
return s(), r("span", {
|
|
80
|
+
class: p([
|
|
81
|
+
{ [`utrecht-badge-status--${e.status}`]: !0 },
|
|
82
|
+
"utrecht-badge-status"
|
|
83
|
+
])
|
|
84
|
+
}, [
|
|
85
|
+
c(e.$slots, "default")
|
|
86
|
+
], 2);
|
|
87
|
+
}
|
|
88
|
+
const dr = /* @__PURE__ */ i(G, [["render", K]]), J = d({
|
|
89
|
+
name: "UtrechtLink",
|
|
90
|
+
props: {
|
|
91
|
+
external: { type: Boolean, required: !1, default: !1 }
|
|
92
|
+
}
|
|
93
|
+
});
|
|
94
|
+
const W = ["rel"];
|
|
95
|
+
function Q(e, t, n, a, o, l) {
|
|
96
|
+
return s(), r("a", {
|
|
97
|
+
class: p(["utrecht-link", { "utrecht-link--external": e.external }]),
|
|
98
|
+
rel: e.external ? "external noopener noreferrer" : void 0
|
|
99
|
+
}, [
|
|
100
|
+
c(e.$slots, "default")
|
|
101
|
+
], 10, W);
|
|
102
|
+
}
|
|
103
|
+
const X = /* @__PURE__ */ i(J, [["render", Q]]), x = ({
|
|
104
|
+
prop: e,
|
|
105
|
+
type: t
|
|
106
|
+
}) => ({
|
|
107
|
+
itemscope: !0,
|
|
108
|
+
itemtype: t,
|
|
109
|
+
itemprop: e
|
|
110
|
+
}), Y = (e) => ({
|
|
111
|
+
itemprop: e
|
|
112
|
+
}), Z = d({
|
|
113
|
+
name: "UtrechtBreadcrumbLink",
|
|
114
|
+
components: { UtrechtLink: X },
|
|
115
|
+
props: {
|
|
116
|
+
href: { type: String, required: !0 },
|
|
117
|
+
current: { type: Boolean, required: !1, default: !1 },
|
|
118
|
+
rel: { type: String, required: !1, default: "" },
|
|
119
|
+
index: { type: Number, required: !1, default: void 0 }
|
|
120
|
+
},
|
|
121
|
+
methods: { ref: k, useMicrodataProp: Y, useMicrodataItem: x, getCurrentInstance: v }
|
|
122
|
+
});
|
|
123
|
+
const ee = ["content"];
|
|
124
|
+
function te(e, t, n, a, o, l) {
|
|
125
|
+
const _ = q("UtrechtLink");
|
|
126
|
+
return s(), r("li", u({ class: "utrecht-breadcrumb__item" }, e.useMicrodataItem({ type: "https://schema.org/ListItem", prop: "itemListElement" })), [
|
|
127
|
+
S(_, u({ ...e.useMicrodataProp("item") }, {
|
|
128
|
+
ref: e.ref,
|
|
129
|
+
class: "utrecht-breadcrumb__link",
|
|
130
|
+
"aria-current": e.current && "location",
|
|
131
|
+
href: e.href,
|
|
132
|
+
rel: e.rel
|
|
133
|
+
}), {
|
|
134
|
+
default: B(() => [
|
|
135
|
+
m("span", u({ class: "utrecht-breadcrumb__text" }, { ...e.useMicrodataProp("name") }), [
|
|
136
|
+
c(e.$slots, "default")
|
|
137
|
+
], 16),
|
|
138
|
+
typeof e.index == "number" ? (s(), r("meta", u({ key: 0 }, { ...e.useMicrodataProp("position") }, {
|
|
139
|
+
content: String(e.index + 1)
|
|
140
|
+
}), null, 16, ee)) : U("", !0)
|
|
141
|
+
]),
|
|
142
|
+
_: 3
|
|
143
|
+
}, 16, ["aria-current", "href", "rel"])
|
|
144
|
+
], 16);
|
|
145
|
+
}
|
|
146
|
+
const ir = /* @__PURE__ */ i(Z, [["render", te]]), se = d({
|
|
147
|
+
name: "UtrechtHeading",
|
|
148
|
+
props: {
|
|
149
|
+
level: { type: Number, required: !0, default: 6 }
|
|
150
|
+
}
|
|
151
|
+
});
|
|
152
|
+
const re = {
|
|
153
|
+
key: 0,
|
|
154
|
+
class: "utrecht-heading-1"
|
|
155
|
+
}, ne = {
|
|
156
|
+
key: 1,
|
|
157
|
+
class: "utrecht-heading-2"
|
|
158
|
+
}, ae = {
|
|
159
|
+
key: 2,
|
|
160
|
+
class: "utrecht-heading-3"
|
|
161
|
+
}, oe = {
|
|
162
|
+
key: 3,
|
|
163
|
+
class: "utrecht-heading-4"
|
|
164
|
+
}, ce = {
|
|
165
|
+
key: 4,
|
|
166
|
+
class: "utrecht-heading-5"
|
|
167
|
+
}, de = {
|
|
168
|
+
key: 5,
|
|
169
|
+
class: "utrecht-heading-6"
|
|
170
|
+
};
|
|
171
|
+
function ie(e, t, n, a, o, l) {
|
|
172
|
+
return e.level == 1 ? (s(), r("h1", re, [
|
|
173
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
174
|
+
])) : e.level == 2 ? (s(), r("h2", ne, [
|
|
175
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
176
|
+
])) : e.level == 3 ? (s(), r("h3", ae, [
|
|
177
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
178
|
+
])) : e.level == 4 ? (s(), r("h4", oe, [
|
|
179
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
180
|
+
])) : e.level == 5 ? (s(), r("h5", ce, [
|
|
181
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
182
|
+
])) : (s(), r("h6", de, [
|
|
183
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
184
|
+
]));
|
|
185
|
+
}
|
|
186
|
+
const le = /* @__PURE__ */ i(se, [["render", ie], ["__scopeId", "data-v-7324134c"]]);
|
|
187
|
+
function $(e, t, n = "modelValue") {
|
|
188
|
+
return C({
|
|
189
|
+
get: () => e.modelValue,
|
|
190
|
+
set: (a) => t(`update:${n}`, a)
|
|
191
|
+
});
|
|
192
|
+
}
|
|
193
|
+
const _e = d({
|
|
194
|
+
name: "UtrechtBreadcrumbNav",
|
|
195
|
+
components: { UtrechtHeading: le },
|
|
196
|
+
props: {
|
|
197
|
+
appearance: { type: String, required: !1, default: "arrows" },
|
|
198
|
+
headingLevel: { type: Number, required: !1, default: 2 },
|
|
199
|
+
label: { type: String, required: !1, default: "" }
|
|
200
|
+
},
|
|
201
|
+
setup(e, { emit: t }) {
|
|
202
|
+
return {
|
|
203
|
+
value: $(e, t)
|
|
204
|
+
};
|
|
205
|
+
},
|
|
206
|
+
data() {
|
|
207
|
+
var e;
|
|
208
|
+
return {
|
|
209
|
+
headingId: this.$props.label ? String((e = v()) == null ? void 0 : e.uid) : void 0
|
|
210
|
+
};
|
|
211
|
+
},
|
|
212
|
+
methods: { useMicrodataItem: x, getCurrentInstance: v }
|
|
213
|
+
}), ue = ["aria-labelledby"];
|
|
214
|
+
function pe(e, t, n, a, o, l) {
|
|
215
|
+
const _ = q("UtrechtHeading");
|
|
216
|
+
return s(), r("nav", {
|
|
217
|
+
class: p([
|
|
218
|
+
"utrecht-breadcrumb",
|
|
219
|
+
{ "utrecht-breadcrumb--arrows": e.appearance === "arrows" }
|
|
220
|
+
]),
|
|
221
|
+
"aria-labelledby": e.headingId
|
|
222
|
+
}, [
|
|
223
|
+
S(_, {
|
|
224
|
+
id: e.headingId,
|
|
225
|
+
class: "utrecht-breadcrumb__heading",
|
|
226
|
+
level: e.headingLevel ?? 2,
|
|
227
|
+
"aria-hidden": "true"
|
|
228
|
+
}, {
|
|
229
|
+
default: B(() => [
|
|
230
|
+
h(b(e.label), 1)
|
|
231
|
+
]),
|
|
232
|
+
_: 1
|
|
233
|
+
}, 8, ["id", "level"]),
|
|
234
|
+
m("ol", u({ class: "utrecht-breadcrumb__list" }, { ...e.useMicrodataItem({ type: "https://schema.org/BreadcrumbList" }) }), [
|
|
235
|
+
c(e.$slots, "default")
|
|
236
|
+
], 16)
|
|
237
|
+
], 10, ue);
|
|
238
|
+
}
|
|
239
|
+
const lr = /* @__PURE__ */ i(_e, [["render", pe]]), $e = d({
|
|
240
|
+
name: "UtrechtButton",
|
|
241
|
+
props: {
|
|
242
|
+
appearance: { type: String, required: !1, default: void 0 },
|
|
243
|
+
type: { type: String, required: !1, default: "button" },
|
|
244
|
+
busy: { type: Boolean, required: !1, default: !1 },
|
|
245
|
+
pressed: { type: Boolean, required: !1, default: void 0 }
|
|
246
|
+
}
|
|
247
|
+
});
|
|
248
|
+
const fe = ["aria-busy", "aria-pressed", "type"];
|
|
249
|
+
function he(e, t, n, a, o, l) {
|
|
250
|
+
return s(), r("button", {
|
|
251
|
+
"aria-busy": e.busy || void 0,
|
|
252
|
+
"aria-pressed": e.pressed,
|
|
253
|
+
class: p([
|
|
254
|
+
"utrecht-button",
|
|
255
|
+
{ "utrecht-button--busy": e.busy },
|
|
256
|
+
{ "utrecht-button--pressed": e.pressed },
|
|
257
|
+
{ "utrecht-button--primary-action": e.appearance === "primary-action-button" },
|
|
258
|
+
{ "utrecht-button--secondary-action": e.appearance === "secondary-action-button" },
|
|
259
|
+
{ "utrecht-button--submit": e.type === "submit" },
|
|
260
|
+
{ "utrecht-button--subtle": e.appearance === "subtle-button" }
|
|
261
|
+
]),
|
|
262
|
+
type: e.type
|
|
263
|
+
}, [
|
|
264
|
+
c(e.$slots, "default")
|
|
265
|
+
], 10, fe);
|
|
266
|
+
}
|
|
267
|
+
const _r = /* @__PURE__ */ i($e, [["render", he]]), me = d({
|
|
268
|
+
name: "UtrechtButtonGroup"
|
|
269
|
+
});
|
|
270
|
+
const ye = { class: "utrecht-button-group" };
|
|
271
|
+
function ge(e, t, n, a, o, l) {
|
|
272
|
+
return s(), r("div", ye, [
|
|
273
|
+
c(e.$slots, "default")
|
|
274
|
+
]);
|
|
275
|
+
}
|
|
276
|
+
const ur = /* @__PURE__ */ i(me, [["render", ge]]), ve = d({
|
|
277
|
+
name: "UtrechtCheckbox",
|
|
278
|
+
props: {
|
|
279
|
+
appearance: { type: String, required: !1, default: "custom" },
|
|
280
|
+
invalid: { type: Boolean, required: !1 },
|
|
281
|
+
modelValue: { type: [String, Number, Boolean], required: !1, default: "" }
|
|
282
|
+
},
|
|
283
|
+
setup(e, { emit: t }) {
|
|
284
|
+
return {
|
|
285
|
+
value: $(e, t)
|
|
286
|
+
};
|
|
287
|
+
}
|
|
288
|
+
});
|
|
289
|
+
const be = ["aria-invalid"];
|
|
290
|
+
function Ue(e, t, n, a, o, l) {
|
|
291
|
+
return y((s(), r("input", {
|
|
292
|
+
"onUpdate:modelValue": t[0] || (t[0] = (_) => e.value = _),
|
|
293
|
+
type: "checkbox",
|
|
294
|
+
"aria-invalid": e.invalid || void 0,
|
|
295
|
+
class: p([
|
|
296
|
+
"utrecht-checkbox",
|
|
297
|
+
"utrecht-checkbox--html-input",
|
|
298
|
+
{ "utrecht-checkbox--invalid": e.invalid },
|
|
299
|
+
{ "utrecht-checkbox--custom": e.appearance === "custom" }
|
|
300
|
+
])
|
|
301
|
+
}, null, 10, be)), [
|
|
302
|
+
[F, e.value]
|
|
303
|
+
]);
|
|
304
|
+
}
|
|
305
|
+
const pr = /* @__PURE__ */ i(ve, [["render", Ue]]), ke = d({
|
|
306
|
+
name: "UtrechtCode"
|
|
307
|
+
});
|
|
308
|
+
const qe = { class: "utrecht-code" };
|
|
309
|
+
function Se(e, t, n, a, o, l) {
|
|
310
|
+
return s(), r("code", qe, [
|
|
311
|
+
c(e.$slots, "default")
|
|
312
|
+
]);
|
|
313
|
+
}
|
|
314
|
+
const $r = /* @__PURE__ */ i(ke, [["render", Se]]), Be = d({
|
|
315
|
+
name: "UtrechtCodeBlock"
|
|
316
|
+
});
|
|
317
|
+
const Le = { class: "utrecht-code-block" }, xe = { class: "utrecht-code-block__content" };
|
|
318
|
+
function Ce(e, t, n, a, o, l) {
|
|
319
|
+
return s(), r("pre", Le, [
|
|
320
|
+
h(" "),
|
|
321
|
+
m("code", xe, [
|
|
322
|
+
h(`
|
|
323
|
+
`),
|
|
324
|
+
c(e.$slots, "default"),
|
|
325
|
+
h(`
|
|
326
|
+
`)
|
|
327
|
+
]),
|
|
328
|
+
h(`
|
|
329
|
+
`)
|
|
330
|
+
]);
|
|
331
|
+
}
|
|
332
|
+
const fr = /* @__PURE__ */ i(Be, [["render", Ce]]), Fe = d({
|
|
333
|
+
name: "UtrechtDataList",
|
|
334
|
+
props: {
|
|
335
|
+
appearance: { type: String, required: !1, default: "rows" }
|
|
336
|
+
}
|
|
337
|
+
});
|
|
338
|
+
function He(e, t, n, a, o, l) {
|
|
339
|
+
return s(), r("dl", {
|
|
340
|
+
class: p([{ "utrecht-data-list--rows": e.appearance === "rows" }, "utrecht-data-list utrecht-data-list--html-dl"])
|
|
341
|
+
}, [
|
|
342
|
+
c(e.$slots, "default")
|
|
343
|
+
], 2);
|
|
344
|
+
}
|
|
345
|
+
const hr = /* @__PURE__ */ i(Fe, [["render", He]]), Te = d({
|
|
346
|
+
name: "UtrechtDataListActions"
|
|
347
|
+
}), Ve = { class: "utrecht-data-list__actions utrecht-data-list__actions--html-dd" };
|
|
348
|
+
function De(e, t, n, a, o, l) {
|
|
349
|
+
return s(), r("dd", Ve, [
|
|
350
|
+
c(e.$slots, "default")
|
|
351
|
+
]);
|
|
352
|
+
}
|
|
353
|
+
const mr = /* @__PURE__ */ i(Te, [["render", De]]), Ie = d({
|
|
354
|
+
name: "UtrechtDataListItem"
|
|
355
|
+
}), Ne = { class: "utrecht-data-list__item" };
|
|
356
|
+
function we(e, t, n, a, o, l) {
|
|
357
|
+
return s(), r("div", Ne, [
|
|
358
|
+
c(e.$slots, "default")
|
|
359
|
+
]);
|
|
360
|
+
}
|
|
361
|
+
const yr = /* @__PURE__ */ i(Ie, [["render", we]]), Pe = d({
|
|
362
|
+
name: "UtrechtDataListKey"
|
|
363
|
+
}), Me = { class: "utrecht-data-list__item-key" };
|
|
364
|
+
function Re(e, t, n, a, o, l) {
|
|
365
|
+
return s(), r("dt", Me, [
|
|
366
|
+
c(e.$slots, "default")
|
|
367
|
+
]);
|
|
368
|
+
}
|
|
369
|
+
const gr = /* @__PURE__ */ i(Pe, [["render", Re]]), Ae = d({
|
|
370
|
+
name: "UtrechtDataListValue",
|
|
371
|
+
props: {
|
|
372
|
+
value: { type: [Number, String], required: !1, default: "" },
|
|
373
|
+
emptyDescription: { type: String, required: !1, default: "" },
|
|
374
|
+
multiline: { type: Boolean, required: !1 },
|
|
375
|
+
notranslate: { type: Boolean, required: !1 }
|
|
376
|
+
},
|
|
377
|
+
data() {
|
|
378
|
+
return {
|
|
379
|
+
empty: this.$props.value === "" || this.$props.value === void 0
|
|
380
|
+
};
|
|
381
|
+
}
|
|
382
|
+
}), Ee = ["translate"], Oe = ["aria-label"];
|
|
383
|
+
function je(e, t, n, a, o, l) {
|
|
384
|
+
return s(), r("dd", {
|
|
385
|
+
class: p(["utrecht-data-list__item-value utrecht-data-list__item-value--html-dd", { "utrecht-data-list__item-value--multiline": e.multiline }]),
|
|
386
|
+
translate: typeof e.notranslate == "boolean" ? e.notranslate ? "no" : "yes" : void 0
|
|
387
|
+
}, [
|
|
388
|
+
e.empty ? (s(), r("span", {
|
|
389
|
+
key: 0,
|
|
390
|
+
"aria-label": e.emptyDescription
|
|
391
|
+
}, "-", 8, Oe)) : c(e.$slots, "default", { key: 1 })
|
|
392
|
+
], 10, Ee);
|
|
393
|
+
}
|
|
394
|
+
const vr = /* @__PURE__ */ i(Ae, [["render", je]]), ze = d({
|
|
395
|
+
name: "UtrechtDocument"
|
|
396
|
+
});
|
|
397
|
+
const Ge = { class: "utrecht-document" };
|
|
398
|
+
function Ke(e, t, n, a, o, l) {
|
|
399
|
+
return s(), r("div", Ge, [
|
|
400
|
+
c(e.$slots, "default")
|
|
401
|
+
]);
|
|
402
|
+
}
|
|
403
|
+
const br = /* @__PURE__ */ i(ze, [["render", Ke]]), Je = d({
|
|
404
|
+
name: "UtrechtEmphasis"
|
|
405
|
+
});
|
|
406
|
+
function We(e, t, n, a, o, l) {
|
|
407
|
+
return s(), r("em", u(e.$attrs, { class: "utrecht-emphasis utrecht-emphasis--stressed" }), [
|
|
408
|
+
c(e.$slots, "default")
|
|
409
|
+
], 16);
|
|
410
|
+
}
|
|
411
|
+
const Ur = /* @__PURE__ */ i(Je, [["render", We]]), Qe = d({
|
|
412
|
+
name: "UtrechtFigure"
|
|
413
|
+
});
|
|
414
|
+
function Xe(e, t, n, a, o, l) {
|
|
415
|
+
return s(), r("figure", u(e.$attrs, { class: "utrecht-figure" }), [
|
|
416
|
+
c(e.$slots, "default")
|
|
417
|
+
], 16);
|
|
418
|
+
}
|
|
419
|
+
const kr = /* @__PURE__ */ i(Qe, [["render", Xe]]), Ye = d({
|
|
420
|
+
name: "UtrechtFigureCaption"
|
|
421
|
+
});
|
|
422
|
+
function Ze(e, t, n, a, o, l) {
|
|
423
|
+
return s(), r("figcaption", u(e.$attrs, { class: "utrecht-figure__caption" }), [
|
|
424
|
+
c(e.$slots, "default")
|
|
425
|
+
], 16);
|
|
426
|
+
}
|
|
427
|
+
const qr = /* @__PURE__ */ i(Ye, [["render", Ze]]), et = d({
|
|
428
|
+
name: "UtrechtFormField",
|
|
429
|
+
props: {
|
|
430
|
+
invalid: { type: Boolean, required: !1, default: !1 },
|
|
431
|
+
type: { type: String, required: !1, default: void 0 }
|
|
432
|
+
}
|
|
433
|
+
});
|
|
434
|
+
function tt(e, t, n, a, o, l) {
|
|
435
|
+
return s(), r("div", {
|
|
436
|
+
class: p([
|
|
437
|
+
"utrecht-form-field",
|
|
438
|
+
{ "utrecht-form-field--invalid": e.invalid },
|
|
439
|
+
{ "utrecht-form-field--checkbox": e.type === "checkbox" },
|
|
440
|
+
{ "utrecht-form-field--radio": e.type === "radio" },
|
|
441
|
+
{ "utrecht-form-field--text": !e.type || e.type === "text" }
|
|
442
|
+
])
|
|
443
|
+
}, [
|
|
444
|
+
c(e.$slots, "default")
|
|
445
|
+
], 2);
|
|
446
|
+
}
|
|
447
|
+
const Sr = /* @__PURE__ */ i(et, [["render", tt]]), st = d({
|
|
448
|
+
name: "UtrechtFormFieldset",
|
|
449
|
+
props: {
|
|
450
|
+
describedby: {
|
|
451
|
+
type: String,
|
|
452
|
+
required: !1,
|
|
453
|
+
default: void 0
|
|
454
|
+
},
|
|
455
|
+
disabled: {
|
|
456
|
+
type: Boolean,
|
|
457
|
+
required: !1,
|
|
458
|
+
default: !1
|
|
459
|
+
},
|
|
460
|
+
invalid: {
|
|
461
|
+
type: Boolean,
|
|
462
|
+
required: !1,
|
|
463
|
+
default: !1
|
|
464
|
+
},
|
|
465
|
+
label: {
|
|
466
|
+
type: String,
|
|
467
|
+
required: !1,
|
|
468
|
+
default: void 0
|
|
469
|
+
},
|
|
470
|
+
labelledby: {
|
|
471
|
+
type: String,
|
|
472
|
+
required: !1,
|
|
473
|
+
default: void 0
|
|
474
|
+
},
|
|
475
|
+
role: {
|
|
476
|
+
type: String,
|
|
477
|
+
required: !1,
|
|
478
|
+
default: null
|
|
479
|
+
},
|
|
480
|
+
name: {
|
|
481
|
+
type: String,
|
|
482
|
+
required: !1,
|
|
483
|
+
default: ""
|
|
484
|
+
},
|
|
485
|
+
form: {
|
|
486
|
+
type: String,
|
|
487
|
+
required: !1,
|
|
488
|
+
default: null
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
});
|
|
492
|
+
const rt = { class: "utrecht-form-fieldset" }, nt = ["aria-describedby", "aria-invalid", "aria-label", "aria-labelledby", "disabled", "form", "name", "role"];
|
|
493
|
+
function at(e, t, n, a, o, l) {
|
|
494
|
+
return s(), r("div", rt, [
|
|
495
|
+
m("fieldset", {
|
|
496
|
+
"aria-describedby": e.describedby || void 0,
|
|
497
|
+
"aria-invalid": e.invalid || void 0,
|
|
498
|
+
"aria-label": e.label || void 0,
|
|
499
|
+
"aria-labelledby": e.labelledby || void 0,
|
|
500
|
+
class: "utrecht-form-fieldset__fieldset utrecht-form-fieldset__fieldset--html-fieldset",
|
|
501
|
+
disabled: e.disabled,
|
|
502
|
+
form: e.form || void 0,
|
|
503
|
+
name: e.name || void 0,
|
|
504
|
+
role: e.role || void 0
|
|
505
|
+
}, [
|
|
506
|
+
c(e.$slots, "default")
|
|
507
|
+
], 8, nt)
|
|
508
|
+
]);
|
|
509
|
+
}
|
|
510
|
+
const Br = /* @__PURE__ */ i(st, [["render", at]]), ot = d({
|
|
511
|
+
name: "UtrechtFormFieldsetLegend"
|
|
512
|
+
}), ct = { class: "utrecht-form-fieldset__legend" };
|
|
513
|
+
function dt(e, t, n, a, o, l) {
|
|
514
|
+
return s(), r("legend", ct, [
|
|
515
|
+
c(e.$slots, "default")
|
|
516
|
+
]);
|
|
517
|
+
}
|
|
518
|
+
const Lr = /* @__PURE__ */ i(ot, [["render", dt]]), it = d({
|
|
519
|
+
name: "UtrechtFormLabel",
|
|
520
|
+
props: {
|
|
521
|
+
checked: { type: Boolean, required: !1, default: !1 },
|
|
522
|
+
disabled: { type: Boolean, required: !1, default: !1 },
|
|
523
|
+
type: { type: String, required: !1, default: void 0 }
|
|
524
|
+
}
|
|
525
|
+
});
|
|
526
|
+
function lt(e, t, n, a, o, l) {
|
|
527
|
+
return s(), r("label", {
|
|
528
|
+
class: p([
|
|
529
|
+
"utrecht-form-label",
|
|
530
|
+
{ "utrecht-form-label--checked": e.checked },
|
|
531
|
+
{ "utrecht-form-label--disabled": e.disabled },
|
|
532
|
+
{ [`utrecht-form-label--${e.type}`]: e.type }
|
|
533
|
+
])
|
|
534
|
+
}, [
|
|
535
|
+
c(e.$slots, "default")
|
|
536
|
+
], 2);
|
|
537
|
+
}
|
|
538
|
+
const xr = /* @__PURE__ */ i(it, [["render", lt]]), _t = d({
|
|
539
|
+
name: "UtrechtHeading1"
|
|
540
|
+
});
|
|
541
|
+
const ut = { class: "utrecht-heading-1" };
|
|
542
|
+
function pt(e, t, n, a, o, l) {
|
|
543
|
+
return s(), r("h1", ut, [
|
|
544
|
+
c(e.$slots, "default")
|
|
545
|
+
]);
|
|
546
|
+
}
|
|
547
|
+
const Cr = /* @__PURE__ */ i(_t, [["render", pt]]), $t = d({
|
|
548
|
+
name: "UtrechtHeading2"
|
|
549
|
+
});
|
|
550
|
+
const ft = { class: "utrecht-heading-2" };
|
|
551
|
+
function ht(e, t, n, a, o, l) {
|
|
552
|
+
return s(), r("h2", ft, [
|
|
553
|
+
c(e.$slots, "default")
|
|
554
|
+
]);
|
|
555
|
+
}
|
|
556
|
+
const Fr = /* @__PURE__ */ i($t, [["render", ht]]), mt = d({
|
|
557
|
+
name: "UtrechtHeading3"
|
|
558
|
+
});
|
|
559
|
+
const yt = { class: "utrecht-heading-3" };
|
|
560
|
+
function gt(e, t, n, a, o, l) {
|
|
561
|
+
return s(), r("h3", yt, [
|
|
562
|
+
c(e.$slots, "default")
|
|
563
|
+
]);
|
|
564
|
+
}
|
|
565
|
+
const Hr = /* @__PURE__ */ i(mt, [["render", gt]]), vt = d({
|
|
566
|
+
name: "UtrechtHeading4"
|
|
567
|
+
});
|
|
568
|
+
const bt = { class: "utrecht-heading-4" };
|
|
569
|
+
function Ut(e, t, n, a, o, l) {
|
|
570
|
+
return s(), r("h4", bt, [
|
|
571
|
+
c(e.$slots, "default")
|
|
572
|
+
]);
|
|
573
|
+
}
|
|
574
|
+
const Tr = /* @__PURE__ */ i(vt, [["render", Ut]]), kt = d({
|
|
575
|
+
name: "UtrechtHeading5"
|
|
576
|
+
});
|
|
577
|
+
const qt = { class: "utrecht-heading-5" };
|
|
578
|
+
function St(e, t, n, a, o, l) {
|
|
579
|
+
return s(), r("h5", qt, [
|
|
580
|
+
c(e.$slots, "default")
|
|
581
|
+
]);
|
|
582
|
+
}
|
|
583
|
+
const Vr = /* @__PURE__ */ i(kt, [["render", St]]), Bt = d({
|
|
584
|
+
name: "UtrechtHeading6"
|
|
585
|
+
});
|
|
586
|
+
const Lt = { class: "utrecht-heading-6" };
|
|
587
|
+
function xt(e, t, n, a, o, l) {
|
|
588
|
+
return s(), r("h6", Lt, [
|
|
589
|
+
c(e.$slots, "default")
|
|
590
|
+
]);
|
|
591
|
+
}
|
|
592
|
+
const Dr = /* @__PURE__ */ i(Bt, [["render", xt]]), Ct = d({
|
|
593
|
+
name: "UtrechtImage",
|
|
594
|
+
props: {
|
|
595
|
+
photo: {
|
|
596
|
+
type: Boolean,
|
|
597
|
+
default: !1,
|
|
598
|
+
required: !1
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
}), Ft = ["alt", "src", "height", "width"];
|
|
602
|
+
function Ht(e, t, n, a, o, l) {
|
|
603
|
+
var _, g, f;
|
|
604
|
+
return s(), r("img", u({ class: "utrecht-img" }, e.$attrs, {
|
|
605
|
+
class: { "utrecht-img--photo": e.photo },
|
|
606
|
+
alt: (_ = e.$attrs) == null ? void 0 : _.alt,
|
|
607
|
+
src: e.$attrs.src,
|
|
608
|
+
height: (g = e.$attrs) == null ? void 0 : g.height,
|
|
609
|
+
width: (f = e.$attrs) == null ? void 0 : f.width
|
|
610
|
+
}), null, 16, Ft);
|
|
611
|
+
}
|
|
612
|
+
const Ir = /* @__PURE__ */ i(Ct, [["render", Ht]]), Tt = d({
|
|
613
|
+
name: "UtrechtLinkSocial",
|
|
614
|
+
props: {
|
|
615
|
+
external: {
|
|
616
|
+
type: Boolean,
|
|
617
|
+
default: !1,
|
|
618
|
+
required: !1
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
});
|
|
622
|
+
const Vt = ["rel"];
|
|
623
|
+
function Dt(e, t, n, a, o, l) {
|
|
624
|
+
return s(), r("a", u({ class: "utrecht-link-social" }, e.$attrs, {
|
|
625
|
+
rel: e.external !== !1 ? "external noopener noreferrer" : void 0
|
|
626
|
+
}), [
|
|
627
|
+
c(e.$slots, "default")
|
|
628
|
+
], 16, Vt);
|
|
629
|
+
}
|
|
630
|
+
const Nr = /* @__PURE__ */ i(Tt, [["render", Dt]]), It = d({
|
|
631
|
+
name: "UtrechtListSocial",
|
|
632
|
+
props: {
|
|
633
|
+
external: {
|
|
634
|
+
type: Boolean,
|
|
635
|
+
default: !1,
|
|
636
|
+
required: !1
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
});
|
|
640
|
+
function Nt(e, t, n, a, o, l) {
|
|
641
|
+
return s(), r("ul", u({ class: "utrecht-list-social" }, e.$attrs), [
|
|
642
|
+
c(e.$slots, "default")
|
|
643
|
+
], 16);
|
|
644
|
+
}
|
|
645
|
+
const wr = /* @__PURE__ */ i(It, [["render", Nt]]), wt = d({
|
|
646
|
+
name: "UtrechtListSocialItem"
|
|
647
|
+
});
|
|
648
|
+
function Pt(e, t, n, a, o, l) {
|
|
649
|
+
return s(), r("li", u({ class: "utrecht-list-social__item" }, e.$attrs), [
|
|
650
|
+
c(e.$slots, "default")
|
|
651
|
+
], 16);
|
|
652
|
+
}
|
|
653
|
+
const Pr = /* @__PURE__ */ i(wt, [["render", Pt]]), Mt = d({
|
|
654
|
+
name: "UtrechtOrderedList"
|
|
655
|
+
});
|
|
656
|
+
function Rt(e, t, n, a, o, l) {
|
|
657
|
+
return s(), r("ol", u({ class: "utrecht-ordered-list" }, e.$attrs), [
|
|
658
|
+
c(e.$slots, "default")
|
|
659
|
+
], 16);
|
|
660
|
+
}
|
|
661
|
+
const Mr = /* @__PURE__ */ i(Mt, [["render", Rt]]), At = d({
|
|
662
|
+
name: "UtrechtOrderedListItem"
|
|
663
|
+
});
|
|
664
|
+
function Et(e, t, n, a, o, l) {
|
|
665
|
+
return s(), r("li", u({ class: "utrecht-ordered-list__item" }, e.$attrs), [
|
|
666
|
+
c(e.$slots, "default")
|
|
667
|
+
], 16);
|
|
668
|
+
}
|
|
669
|
+
const Rr = /* @__PURE__ */ i(At, [["render", Et]]), Ot = d({
|
|
670
|
+
name: "UtrechtNumberValue",
|
|
671
|
+
props: {
|
|
672
|
+
value: { type: [Number, String], required: !1, default: void 0 }
|
|
673
|
+
}
|
|
674
|
+
});
|
|
675
|
+
const jt = ["value"];
|
|
676
|
+
function zt(e, t, n, a, o, l) {
|
|
677
|
+
return s(), r("data", {
|
|
678
|
+
value: typeof e.value == "string" || typeof e.value == "number" ? String(e.value) : void 0,
|
|
679
|
+
class: "utrecht-value-number"
|
|
680
|
+
}, [
|
|
681
|
+
c(e.$slots, "default")
|
|
682
|
+
], 8, jt);
|
|
683
|
+
}
|
|
684
|
+
const Ar = /* @__PURE__ */ i(Ot, [["render", zt]]), Gt = d({
|
|
685
|
+
name: "UtrechtPage"
|
|
686
|
+
});
|
|
687
|
+
const Kt = { class: "utrecht-page" };
|
|
688
|
+
function Jt(e, t, n, a, o, l) {
|
|
689
|
+
return s(), r("div", Kt, [
|
|
690
|
+
c(e.$slots, "default")
|
|
691
|
+
]);
|
|
692
|
+
}
|
|
693
|
+
const Er = /* @__PURE__ */ i(Gt, [["render", Jt]]), Wt = d({
|
|
694
|
+
name: "UtrechtPageContent"
|
|
695
|
+
});
|
|
696
|
+
const Qt = { class: "utrecht-page-content" };
|
|
697
|
+
function Xt(e, t, n, a, o, l) {
|
|
698
|
+
return s(), r("div", Qt, [
|
|
699
|
+
c(e.$slots, "default")
|
|
700
|
+
]);
|
|
701
|
+
}
|
|
702
|
+
const Or = /* @__PURE__ */ i(Wt, [["render", Xt]]), Yt = d({
|
|
703
|
+
name: "UtrechtPageFooter"
|
|
704
|
+
});
|
|
705
|
+
const Zt = { class: "utrecht-page-footer" };
|
|
706
|
+
function es(e, t, n, a, o, l) {
|
|
707
|
+
return s(), r("footer", Zt, [
|
|
708
|
+
c(e.$slots, "default")
|
|
709
|
+
]);
|
|
710
|
+
}
|
|
711
|
+
const jr = /* @__PURE__ */ i(Yt, [["render", es]]), ts = d({
|
|
712
|
+
name: "UtrechtPageHeader"
|
|
713
|
+
});
|
|
714
|
+
const ss = { class: "utrecht-page-header" };
|
|
715
|
+
function rs(e, t, n, a, o, l) {
|
|
716
|
+
return s(), r("header", ss, [
|
|
717
|
+
c(e.$slots, "default")
|
|
718
|
+
]);
|
|
719
|
+
}
|
|
720
|
+
const zr = /* @__PURE__ */ i(ts, [["render", rs]]), ns = d({
|
|
721
|
+
name: "UtrechtParagraph",
|
|
722
|
+
props: {
|
|
723
|
+
lead: { type: Boolean, required: !1, default: !1 },
|
|
724
|
+
small: { type: Boolean, required: !1, default: !1 }
|
|
725
|
+
}
|
|
726
|
+
});
|
|
727
|
+
const as = {
|
|
728
|
+
key: 0,
|
|
729
|
+
class: "utrecht-paragraph__small"
|
|
730
|
+
};
|
|
731
|
+
function os(e, t, n, a, o, l) {
|
|
732
|
+
return s(), r("p", {
|
|
733
|
+
class: p([
|
|
734
|
+
"utrecht-paragraph",
|
|
735
|
+
{
|
|
736
|
+
"utrecht-paragraph--lead": e.lead,
|
|
737
|
+
"utrecht-paragraph--small": e.small
|
|
738
|
+
}
|
|
739
|
+
])
|
|
740
|
+
}, [
|
|
741
|
+
e.small ? (s(), r("small", as, [
|
|
742
|
+
c(e.$slots, "default")
|
|
743
|
+
])) : c(e.$slots, "default", { key: 1 })
|
|
744
|
+
], 2);
|
|
745
|
+
}
|
|
746
|
+
const Gr = /* @__PURE__ */ i(ns, [["render", os]]), cs = d({
|
|
747
|
+
name: "UtrechtRadioButton",
|
|
748
|
+
props: {
|
|
749
|
+
invalid: { type: Boolean, required: !1 },
|
|
750
|
+
modelValue: { type: [String, Number, Boolean], required: !1, default: "" }
|
|
751
|
+
},
|
|
752
|
+
setup(e, { emit: t }) {
|
|
753
|
+
return {
|
|
754
|
+
value: $(e, t)
|
|
755
|
+
};
|
|
756
|
+
}
|
|
757
|
+
});
|
|
758
|
+
const ds = ["aria-invalid"];
|
|
759
|
+
function is(e, t, n, a, o, l) {
|
|
760
|
+
return y((s(), r("input", {
|
|
761
|
+
"onUpdate:modelValue": t[0] || (t[0] = (_) => e.value = _),
|
|
762
|
+
type: "radio",
|
|
763
|
+
"aria-invalid": e.invalid || void 0,
|
|
764
|
+
class: p([
|
|
765
|
+
"utrecht-radio-button",
|
|
766
|
+
"utrecht-radio-button--html-input",
|
|
767
|
+
{ "utrecht-radio-button--invalid": e.invalid }
|
|
768
|
+
])
|
|
769
|
+
}, null, 10, ds)), [
|
|
770
|
+
[H, e.value]
|
|
771
|
+
]);
|
|
772
|
+
}
|
|
773
|
+
const Kr = /* @__PURE__ */ i(cs, [["render", is]]), ls = d({
|
|
774
|
+
name: "UtrechtSelect",
|
|
775
|
+
props: {
|
|
776
|
+
invalid: { type: Boolean, required: !1 },
|
|
777
|
+
readonly: { type: Boolean, required: !1 },
|
|
778
|
+
options: { type: [Array, Object], required: !0 },
|
|
779
|
+
modelValue: { type: [String, Number, Boolean], required: !1, default: "" }
|
|
780
|
+
},
|
|
781
|
+
setup(e, { emit: t }) {
|
|
782
|
+
return {
|
|
783
|
+
selected: $(e, t)
|
|
784
|
+
};
|
|
785
|
+
}
|
|
786
|
+
});
|
|
787
|
+
const _s = ["aria-invalid", "readonly"], us = ["value", "disabled"];
|
|
788
|
+
function ps(e, t, n, a, o, l) {
|
|
789
|
+
return y((s(), r("select", {
|
|
790
|
+
"onUpdate:modelValue": t[0] || (t[0] = (_) => e.selected = _),
|
|
791
|
+
"aria-invalid": e.invalid || void 0,
|
|
792
|
+
class: p([
|
|
793
|
+
{ "utrecht-select--invalid": e.invalid },
|
|
794
|
+
{ "utrecht-select--readonly": e.readonly },
|
|
795
|
+
"utrecht-select--html-select",
|
|
796
|
+
"utrecht-select"
|
|
797
|
+
]),
|
|
798
|
+
readonly: e.readonly
|
|
799
|
+
}, [
|
|
800
|
+
e.options && e.options.length > 0 ? (s(!0), r(T, { key: 0 }, V(e.options, ({ value: _, label: g, disabled: f }) => (s(), r("option", {
|
|
801
|
+
key: _,
|
|
802
|
+
value: _,
|
|
803
|
+
class: p([
|
|
804
|
+
{ "utrecht-select__option--disabled": f },
|
|
805
|
+
"utrecht-select__option"
|
|
806
|
+
]),
|
|
807
|
+
disabled: f
|
|
808
|
+
}, b(g), 11, us))), 128)) : U("", !0)
|
|
809
|
+
], 10, _s)), [
|
|
810
|
+
[D, e.selected]
|
|
811
|
+
]);
|
|
812
|
+
}
|
|
813
|
+
const Jr = /* @__PURE__ */ i(ls, [["render", ps]]), $s = d({
|
|
814
|
+
name: "UtrechtSeparator"
|
|
815
|
+
});
|
|
816
|
+
function fs(e, t, n, a, o, l) {
|
|
817
|
+
return s(), r("hr", u({ class: "utrecht-separator" }, e.$attrs), null, 16);
|
|
818
|
+
}
|
|
819
|
+
const Wr = /* @__PURE__ */ i($s, [["render", fs]]), hs = d({
|
|
820
|
+
name: "UtrechtSkipLink",
|
|
821
|
+
props: {
|
|
822
|
+
href: {
|
|
823
|
+
type: String,
|
|
824
|
+
default: void 0,
|
|
825
|
+
required: !1
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
});
|
|
829
|
+
const ms = ["href"];
|
|
830
|
+
function ys(e, t, n, a, o, l) {
|
|
831
|
+
return s(), r("a", u(e.$attrs, {
|
|
832
|
+
href: e.$props.href,
|
|
833
|
+
class: "utrecht-skip-link utrecht-skip-link--visible-on-focus"
|
|
834
|
+
}), [
|
|
835
|
+
c(e.$slots, "default")
|
|
836
|
+
], 16, ms);
|
|
837
|
+
}
|
|
838
|
+
const Qr = /* @__PURE__ */ i(hs, [["render", ys]]), gs = d({
|
|
839
|
+
name: "UtrechtStrong"
|
|
840
|
+
});
|
|
841
|
+
function vs(e, t, n, a, o, l) {
|
|
842
|
+
return s(), r("strong", u(e.$attrs, { class: "utrecht-emphasis utrecht-emphasis--strong" }), [
|
|
843
|
+
c(e.$slots, "default")
|
|
844
|
+
], 16);
|
|
845
|
+
}
|
|
846
|
+
const Xr = /* @__PURE__ */ i(gs, [["render", vs]]), bs = d({
|
|
847
|
+
name: "UtrechtTable"
|
|
848
|
+
});
|
|
849
|
+
const Us = { class: "utrecht-table" };
|
|
850
|
+
function ks(e, t, n, a, o, l) {
|
|
851
|
+
return s(), r("table", Us, [
|
|
852
|
+
c(e.$slots, "default")
|
|
853
|
+
]);
|
|
854
|
+
}
|
|
855
|
+
const Yr = /* @__PURE__ */ i(bs, [["render", ks]]), qs = d({
|
|
856
|
+
name: "UtrechtTableBody"
|
|
857
|
+
}), Ss = { class: "utrecht-table__body" };
|
|
858
|
+
function Bs(e, t, n, a, o, l) {
|
|
859
|
+
return s(), r("tbody", Ss, [
|
|
860
|
+
c(e.$slots, "default")
|
|
861
|
+
]);
|
|
862
|
+
}
|
|
863
|
+
const Zr = /* @__PURE__ */ i(qs, [["render", Bs]]), Ls = d({
|
|
864
|
+
name: "UtrechtTableCaption"
|
|
865
|
+
}), xs = { class: "utrecht-table__caption" };
|
|
866
|
+
function Cs(e, t, n, a, o, l) {
|
|
867
|
+
return s(), r("caption", xs, [
|
|
868
|
+
c(e.$slots, "default")
|
|
869
|
+
]);
|
|
870
|
+
}
|
|
871
|
+
const en = /* @__PURE__ */ i(Ls, [["render", Cs]]), Fs = d({
|
|
872
|
+
name: "UtrechtTableCell"
|
|
873
|
+
}), Hs = { class: "utrecht-table__cell" };
|
|
874
|
+
function Ts(e, t, n, a, o, l) {
|
|
875
|
+
return s(), r("td", Hs, [
|
|
876
|
+
c(e.$slots, "default")
|
|
877
|
+
]);
|
|
878
|
+
}
|
|
879
|
+
const tn = /* @__PURE__ */ i(Fs, [["render", Ts]]), Vs = d({
|
|
880
|
+
name: "UtrechtTableFooter"
|
|
881
|
+
}), Ds = { class: "utrecht-table__footer" };
|
|
882
|
+
function Is(e, t, n, a, o, l) {
|
|
883
|
+
return s(), r("tfoot", Ds, [
|
|
884
|
+
c(e.$slots, "default")
|
|
885
|
+
]);
|
|
886
|
+
}
|
|
887
|
+
const sn = /* @__PURE__ */ i(Vs, [["render", Is]]), Ns = d({
|
|
888
|
+
name: "UtrechtTableHeader"
|
|
889
|
+
}), ws = { class: "utrecht-table__header" };
|
|
890
|
+
function Ps(e, t, n, a, o, l) {
|
|
891
|
+
return s(), r("thead", ws, [
|
|
892
|
+
c(e.$slots, "default")
|
|
893
|
+
]);
|
|
894
|
+
}
|
|
895
|
+
const rn = /* @__PURE__ */ i(Ns, [["render", Ps]]), Ms = d({
|
|
896
|
+
name: "UtrechtTableHeaderCell"
|
|
897
|
+
}), Rs = { class: "utrecht-table__header-cell" };
|
|
898
|
+
function As(e, t, n, a, o, l) {
|
|
899
|
+
return s(), r("th", Rs, [
|
|
900
|
+
c(e.$slots, "default")
|
|
901
|
+
]);
|
|
902
|
+
}
|
|
903
|
+
const nn = /* @__PURE__ */ i(Ms, [["render", As]]), Es = d({
|
|
904
|
+
name: "UtrechtTableRow"
|
|
905
|
+
}), Os = { class: "utrecht-table__row" };
|
|
906
|
+
function js(e, t, n, a, o, l) {
|
|
907
|
+
return s(), r("tr", Os, [
|
|
908
|
+
c(e.$slots, "default")
|
|
909
|
+
]);
|
|
910
|
+
}
|
|
911
|
+
const an = /* @__PURE__ */ i(Es, [["render", js]]), zs = d({
|
|
912
|
+
name: "UtrechtTextarea",
|
|
913
|
+
props: {
|
|
914
|
+
dir: { type: String, required: !1, default: "auto" },
|
|
915
|
+
invalid: { type: Boolean, required: !1 },
|
|
916
|
+
modelValue: { type: [String, Number, Boolean], require: !1, default: "" }
|
|
917
|
+
},
|
|
918
|
+
setup(e, { emit: t }) {
|
|
919
|
+
return {
|
|
920
|
+
value: $(e, t)
|
|
921
|
+
};
|
|
922
|
+
}
|
|
923
|
+
});
|
|
924
|
+
const Gs = ["aria-invalid", "dir"];
|
|
925
|
+
function Ks(e, t, n, a, o, l) {
|
|
926
|
+
return y((s(), r("textarea", {
|
|
927
|
+
"onUpdate:modelValue": t[0] || (t[0] = (_) => e.value = _),
|
|
928
|
+
"aria-invalid": e.invalid || void 0,
|
|
929
|
+
class: p([{ "utrecht-textarea--invalid": e.invalid }, "utrecht-textarea", "utrecht-textarea--html-textarea"]),
|
|
930
|
+
dir: e.dir
|
|
931
|
+
}, null, 10, Gs)), [
|
|
932
|
+
[L, e.value]
|
|
933
|
+
]);
|
|
934
|
+
}
|
|
935
|
+
const on = /* @__PURE__ */ i(zs, [["render", Ks]]), Js = d({
|
|
936
|
+
name: "UtrechtTextbox",
|
|
937
|
+
props: {
|
|
938
|
+
dir: { type: String, required: !1, default: "auto" },
|
|
939
|
+
invalid: { type: Boolean, required: !1 },
|
|
940
|
+
modelValue: { type: [String, Number, Boolean], require: !1, default: "" }
|
|
941
|
+
},
|
|
942
|
+
setup(e, { emit: t }) {
|
|
943
|
+
return {
|
|
944
|
+
value: $(e, t)
|
|
945
|
+
};
|
|
946
|
+
}
|
|
947
|
+
});
|
|
948
|
+
const Ws = ["aria-invalid", "dir"];
|
|
949
|
+
function Qs(e, t, n, a, o, l) {
|
|
950
|
+
return y((s(), r("input", {
|
|
951
|
+
"onUpdate:modelValue": t[0] || (t[0] = (_) => e.value = _),
|
|
952
|
+
"aria-invalid": e.invalid || void 0,
|
|
953
|
+
class: p([
|
|
954
|
+
{ "utrecht-textbox--invalid": e.invalid },
|
|
955
|
+
"utrecht-textbox",
|
|
956
|
+
"utrecht-textbox--html-input"
|
|
957
|
+
]),
|
|
958
|
+
dir: e.dir
|
|
959
|
+
}, null, 10, Ws)), [
|
|
960
|
+
[L, e.value]
|
|
961
|
+
]);
|
|
962
|
+
}
|
|
963
|
+
const cn = /* @__PURE__ */ i(Js, [["render", Qs]]), Xs = d({
|
|
964
|
+
name: "UtrechtUnorderedList"
|
|
965
|
+
});
|
|
966
|
+
function Ys(e, t, n, a, o, l) {
|
|
967
|
+
return s(), r("ul", u({ class: "utrecht-unordered-list" }, e.$attrs), [
|
|
968
|
+
c(e.$slots, "default")
|
|
969
|
+
], 16);
|
|
970
|
+
}
|
|
971
|
+
const dn = /* @__PURE__ */ i(Xs, [["render", Ys]]), Zs = d({
|
|
972
|
+
name: "UtrechtOrderedListItem"
|
|
973
|
+
});
|
|
974
|
+
function er(e, t, n, a, o, l) {
|
|
975
|
+
return s(), r("li", u({ class: "utrecht-ordered-list__item" }, e.$attrs), [
|
|
976
|
+
c(e.$slots, "default")
|
|
977
|
+
], 16);
|
|
978
|
+
}
|
|
979
|
+
const ln = /* @__PURE__ */ i(Zs, [["render", er]]), tr = d({
|
|
980
|
+
name: "UtrechtURLValue"
|
|
981
|
+
});
|
|
982
|
+
const sr = {
|
|
983
|
+
translate: "no",
|
|
984
|
+
class: "utrecht-url"
|
|
985
|
+
};
|
|
986
|
+
function rr(e, t, n, a, o, l) {
|
|
987
|
+
return s(), r("bdi", sr, [
|
|
988
|
+
c(e.$slots, "default")
|
|
989
|
+
]);
|
|
990
|
+
}
|
|
991
|
+
const _n = /* @__PURE__ */ i(tr, [["render", rr]]);
|
|
992
|
+
export {
|
|
993
|
+
ar as AlertDialog,
|
|
994
|
+
or as Article,
|
|
995
|
+
cr as BadgeCounter,
|
|
996
|
+
dr as BadgeStatus,
|
|
997
|
+
ir as BreadcrumbLink,
|
|
998
|
+
lr as BreadcrumbNav,
|
|
999
|
+
_r as Button,
|
|
1000
|
+
ur as ButtonGroup,
|
|
1001
|
+
pr as Checkbox,
|
|
1002
|
+
$r as Code,
|
|
1003
|
+
fr as CodeBlock,
|
|
1004
|
+
hr as DataList,
|
|
1005
|
+
mr as DataListActions,
|
|
1006
|
+
yr as DataListItem,
|
|
1007
|
+
gr as DataListKey,
|
|
1008
|
+
vr as DataListValue,
|
|
1009
|
+
br as Document,
|
|
1010
|
+
Ur as Emphasis,
|
|
1011
|
+
kr as Figure,
|
|
1012
|
+
qr as FigureCaption,
|
|
1013
|
+
Sr as FormField,
|
|
1014
|
+
Br as FormFieldset,
|
|
1015
|
+
Lr as FormFieldsetLegend,
|
|
1016
|
+
xr as FormLabel,
|
|
1017
|
+
le as Heading,
|
|
1018
|
+
Cr as Heading1,
|
|
1019
|
+
Fr as Heading2,
|
|
1020
|
+
Hr as Heading3,
|
|
1021
|
+
Tr as Heading4,
|
|
1022
|
+
Vr as Heading5,
|
|
1023
|
+
Dr as Heading6,
|
|
1024
|
+
Ir as Image,
|
|
1025
|
+
X as Link,
|
|
1026
|
+
Nr as LinkSocial,
|
|
1027
|
+
wr as ListSocial,
|
|
1028
|
+
Pr as ListSocialItem,
|
|
1029
|
+
Ar as NumberValue,
|
|
1030
|
+
Mr as OrderedList,
|
|
1031
|
+
Rr as OrderedListItem,
|
|
1032
|
+
Er as Page,
|
|
1033
|
+
Or as PageContent,
|
|
1034
|
+
jr as PageFooter,
|
|
1035
|
+
zr as PageHeader,
|
|
1036
|
+
Gr as Paragraph,
|
|
1037
|
+
Kr as RadioButton,
|
|
1038
|
+
Jr as Select,
|
|
1039
|
+
Wr as Separator,
|
|
1040
|
+
Qr as SkipLink,
|
|
1041
|
+
Xr as Strong,
|
|
1042
|
+
Yr as Table,
|
|
1043
|
+
Zr as TableBody,
|
|
1044
|
+
en as TableCaption,
|
|
1045
|
+
tn as TableCell,
|
|
1046
|
+
sn as TableFooter,
|
|
1047
|
+
rn as TableHeader,
|
|
1048
|
+
nn as TableHeaderCell,
|
|
1049
|
+
an as TableRow,
|
|
1050
|
+
on as Textarea,
|
|
1051
|
+
cn as Textbox,
|
|
1052
|
+
_n as URLValue,
|
|
1053
|
+
dn as UnorderedList,
|
|
1054
|
+
ln as UnorderedListItem
|
|
1055
|
+
};
|