comand-component-library 4.2.73 → 4.2.74
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/comand-component-library.js +601 -533
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +6 -1
- package/src/assets/data/form-elements.json +6 -7
- package/src/components/CmdForm.vue +41 -2
- package/src/components/CmdGoogleMaps.vue +2 -1
- package/src/components/CmdMultistepFormWrapper.vue +9 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
var zl = Object.defineProperty;
|
|
2
2
|
var Wl = (e, t, n) => t in e ? zl(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
|
3
3
|
var Ze = (e, t, n) => Wl(e, typeof t != "symbol" ? t + "" : t, n);
|
|
4
|
-
import { defineComponent as gi, h as Fn, resolveComponent as _e, openBlock as a, createBlock as v, normalizeClass as C, createElementBlock as r, getCurrentInstance as Gl, resolveDynamicComponent as Ue, withModifiers as S, withCtx as k, withDirectives as $, createElementVNode as o, createVNode as p, createCommentVNode as m, vShow as ye, Fragment as O, toDisplayString as y, renderSlot as V, normalizeProps as N, mergeProps as L, createTextVNode as M, renderList as q, Transition as Fe, vModelDynamic as Kl, toHandlers as
|
|
5
|
-
const
|
|
4
|
+
import { defineComponent as gi, h as Fn, resolveComponent as _e, openBlock as a, createBlock as v, normalizeClass as C, createElementBlock as r, getCurrentInstance as Gl, resolveDynamicComponent as Ue, withModifiers as S, withCtx as k, withDirectives as $, createElementVNode as o, createVNode as p, createCommentVNode as m, vShow as ye, Fragment as O, toDisplayString as y, renderSlot as V, normalizeProps as N, mergeProps as L, createTextVNode as M, renderList as q, Transition as Fe, vModelDynamic as Kl, vModelText as et, toHandlers as Wt, TransitionGroup as dn, createApp as Yl, guardReactiveProps as Be, normalizeStyle as Ct, useCssVars as yi, createStaticVNode as Jl, resolveDirective as Zl, vModelSelect as Ql, vModelRadio as Et, onBeforeUpdate as Xl, onMounted as $l, onUnmounted as eo, reactive as to } from "vue";
|
|
5
|
+
const tt = /^[a-z0-9]+(-[a-z0-9]+)*$/, Tt = (e, t, n, s = "") => {
|
|
6
6
|
const i = e.split(":");
|
|
7
7
|
if (e.slice(0, 1) === "@") {
|
|
8
8
|
if (i.length < 2 || i.length > 3)
|
|
@@ -17,7 +17,7 @@ const et = /^[a-z0-9]+(-[a-z0-9]+)*$/, wt = (e, t, n, s = "") => {
|
|
|
17
17
|
prefix: c,
|
|
18
18
|
name: u
|
|
19
19
|
};
|
|
20
|
-
return t && !
|
|
20
|
+
return t && !ht(f) ? null : f;
|
|
21
21
|
}
|
|
22
22
|
const l = i[0], d = l.split("-");
|
|
23
23
|
if (d.length > 1) {
|
|
@@ -26,7 +26,7 @@ const et = /^[a-z0-9]+(-[a-z0-9]+)*$/, wt = (e, t, n, s = "") => {
|
|
|
26
26
|
prefix: d.shift(),
|
|
27
27
|
name: d.join("-")
|
|
28
28
|
};
|
|
29
|
-
return t && !
|
|
29
|
+
return t && !ht(u) ? null : u;
|
|
30
30
|
}
|
|
31
31
|
if (n && s === "") {
|
|
32
32
|
const u = {
|
|
@@ -34,25 +34,25 @@ const et = /^[a-z0-9]+(-[a-z0-9]+)*$/, wt = (e, t, n, s = "") => {
|
|
|
34
34
|
prefix: "",
|
|
35
35
|
name: l
|
|
36
36
|
};
|
|
37
|
-
return t && !
|
|
37
|
+
return t && !ht(u, n) ? null : u;
|
|
38
38
|
}
|
|
39
39
|
return null;
|
|
40
|
-
},
|
|
40
|
+
}, ht = (e, t) => e ? !!((e.provider === "" || e.provider.match(tt)) && (t && e.prefix === "" || e.prefix.match(tt)) && e.name.match(tt)) : !1, bi = Object.freeze(
|
|
41
41
|
{
|
|
42
42
|
left: 0,
|
|
43
43
|
top: 0,
|
|
44
44
|
width: 16,
|
|
45
45
|
height: 16
|
|
46
46
|
}
|
|
47
|
-
),
|
|
47
|
+
), vt = Object.freeze({
|
|
48
48
|
rotate: 0,
|
|
49
49
|
vFlip: !1,
|
|
50
50
|
hFlip: !1
|
|
51
|
-
}),
|
|
51
|
+
}), St = Object.freeze({
|
|
52
52
|
...bi,
|
|
53
|
-
...
|
|
53
|
+
...vt
|
|
54
54
|
}), Gt = Object.freeze({
|
|
55
|
-
...
|
|
55
|
+
...St,
|
|
56
56
|
body: "",
|
|
57
57
|
hidden: !1
|
|
58
58
|
});
|
|
@@ -65,7 +65,7 @@ function no(e, t) {
|
|
|
65
65
|
function Mn(e, t) {
|
|
66
66
|
const n = no(e, t);
|
|
67
67
|
for (const s in Gt)
|
|
68
|
-
s in
|
|
68
|
+
s in vt ? s in e && !(s in n) && (n[s] = vt[s]) : s in t ? n[s] = t[s] : s in e && (n[s] = e[s]);
|
|
69
69
|
return n;
|
|
70
70
|
}
|
|
71
71
|
function io(e, t) {
|
|
@@ -113,7 +113,7 @@ const oo = {
|
|
|
113
113
|
not_found: {},
|
|
114
114
|
...bi
|
|
115
115
|
};
|
|
116
|
-
function
|
|
116
|
+
function Ht(e, t) {
|
|
117
117
|
for (const n in t)
|
|
118
118
|
if (n in e && typeof e[n] != typeof t[n])
|
|
119
119
|
return !1;
|
|
@@ -123,12 +123,12 @@ function Ci(e) {
|
|
|
123
123
|
if (typeof e != "object" || e === null)
|
|
124
124
|
return null;
|
|
125
125
|
const t = e;
|
|
126
|
-
if (typeof t.prefix != "string" || !e.icons || typeof e.icons != "object" || !
|
|
126
|
+
if (typeof t.prefix != "string" || !e.icons || typeof e.icons != "object" || !Ht(e, oo))
|
|
127
127
|
return null;
|
|
128
128
|
const n = t.icons;
|
|
129
129
|
for (const i in n) {
|
|
130
130
|
const l = n[i];
|
|
131
|
-
if (!i.match(
|
|
131
|
+
if (!i.match(tt) || typeof l.body != "string" || !Ht(
|
|
132
132
|
l,
|
|
133
133
|
Gt
|
|
134
134
|
))
|
|
@@ -137,7 +137,7 @@ function Ci(e) {
|
|
|
137
137
|
const s = t.aliases || {};
|
|
138
138
|
for (const i in s) {
|
|
139
139
|
const l = s[i], d = l.parent;
|
|
140
|
-
if (!i.match(
|
|
140
|
+
if (!i.match(tt) || typeof d != "string" || !n[d] && !s[d] || !Ht(
|
|
141
141
|
l,
|
|
142
142
|
Gt
|
|
143
143
|
))
|
|
@@ -171,19 +171,19 @@ function so(e, t, n) {
|
|
|
171
171
|
}
|
|
172
172
|
return !1;
|
|
173
173
|
}
|
|
174
|
-
let
|
|
174
|
+
let nt = !1;
|
|
175
175
|
function vi(e) {
|
|
176
|
-
return typeof e == "boolean" && (
|
|
176
|
+
return typeof e == "boolean" && (nt = e), nt;
|
|
177
177
|
}
|
|
178
178
|
function ro(e) {
|
|
179
|
-
const t = typeof e == "string" ?
|
|
179
|
+
const t = typeof e == "string" ? Tt(e, !0, nt) : e;
|
|
180
180
|
if (t) {
|
|
181
181
|
const n = Ee(t.provider, t.prefix), s = t.name;
|
|
182
182
|
return n.icons[s] || (n.missing.has(s) ? null : void 0);
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
function uo(e, t) {
|
|
186
|
-
const n =
|
|
186
|
+
const n = Tt(e, !0, nt);
|
|
187
187
|
if (!n)
|
|
188
188
|
return !1;
|
|
189
189
|
const s = Ee(n.provider, n.prefix);
|
|
@@ -192,14 +192,14 @@ function uo(e, t) {
|
|
|
192
192
|
function ki(e, t) {
|
|
193
193
|
if (typeof e != "object")
|
|
194
194
|
return !1;
|
|
195
|
-
if (typeof t != "string" && (t = e.provider || ""),
|
|
195
|
+
if (typeof t != "string" && (t = e.provider || ""), nt && !t && !e.prefix) {
|
|
196
196
|
let i = !1;
|
|
197
197
|
return Ci(e) && (e.prefix = "", xi(e, (l, d) => {
|
|
198
198
|
d && uo(l, d) && (i = !0);
|
|
199
199
|
})), i;
|
|
200
200
|
}
|
|
201
201
|
const n = e.prefix;
|
|
202
|
-
if (!
|
|
202
|
+
if (!ht({
|
|
203
203
|
provider: t,
|
|
204
204
|
prefix: n,
|
|
205
205
|
name: "a"
|
|
@@ -213,7 +213,7 @@ const wi = Object.freeze({
|
|
|
213
213
|
height: null
|
|
214
214
|
}), Ti = Object.freeze({
|
|
215
215
|
...wi,
|
|
216
|
-
...
|
|
216
|
+
...vt
|
|
217
217
|
}), co = /(-?[0-9.]*[0-9]+[0-9.]*)/g, mo = /^-?[0-9.]*[0-9]+[0-9.]*$/g;
|
|
218
218
|
function Vn(e, t, n) {
|
|
219
219
|
if (t === 1)
|
|
@@ -240,7 +240,7 @@ function Vn(e, t, n) {
|
|
|
240
240
|
}
|
|
241
241
|
function po(e, t) {
|
|
242
242
|
const n = {
|
|
243
|
-
...
|
|
243
|
+
...St,
|
|
244
244
|
...e
|
|
245
245
|
}, s = {
|
|
246
246
|
...Ti,
|
|
@@ -333,11 +333,11 @@ function cn(e) {
|
|
|
333
333
|
const mn = /* @__PURE__ */ Object.create(null), Qe = [
|
|
334
334
|
"https://api.simplesvg.com",
|
|
335
335
|
"https://api.unisvg.com"
|
|
336
|
-
],
|
|
336
|
+
], gt = [];
|
|
337
337
|
for (; Qe.length > 0; )
|
|
338
|
-
Qe.length === 1 || Math.random() > 0.5 ?
|
|
338
|
+
Qe.length === 1 || Math.random() > 0.5 ? gt.push(Qe.shift()) : gt.push(Qe.pop());
|
|
339
339
|
mn[""] = cn({
|
|
340
|
-
resources: ["https://api.iconify.design"].concat(
|
|
340
|
+
resources: ["https://api.iconify.design"].concat(gt)
|
|
341
341
|
});
|
|
342
342
|
function xo(e, t) {
|
|
343
343
|
const n = cn(t);
|
|
@@ -539,7 +539,7 @@ function Bo(e, t, n) {
|
|
|
539
539
|
function Do(e, t = !0, n = !1) {
|
|
540
540
|
const s = [];
|
|
541
541
|
return e.forEach((i) => {
|
|
542
|
-
const l = typeof i == "string" ?
|
|
542
|
+
const l = typeof i == "string" ? Tt(i, t, n) : i;
|
|
543
543
|
l && s.push(l);
|
|
544
544
|
}), s;
|
|
545
545
|
}
|
|
@@ -687,9 +687,9 @@ function _i(e) {
|
|
|
687
687
|
}
|
|
688
688
|
function En() {
|
|
689
689
|
}
|
|
690
|
-
const
|
|
690
|
+
const qt = /* @__PURE__ */ Object.create(null);
|
|
691
691
|
function Po(e) {
|
|
692
|
-
if (!
|
|
692
|
+
if (!qt[e]) {
|
|
693
693
|
const t = pn(e);
|
|
694
694
|
if (!t)
|
|
695
695
|
return;
|
|
@@ -697,9 +697,9 @@ function Po(e) {
|
|
|
697
697
|
config: t,
|
|
698
698
|
redundancy: n
|
|
699
699
|
};
|
|
700
|
-
|
|
700
|
+
qt[e] = s;
|
|
701
701
|
}
|
|
702
|
-
return
|
|
702
|
+
return qt[e];
|
|
703
703
|
}
|
|
704
704
|
function Vo(e, t, n) {
|
|
705
705
|
let s, i;
|
|
@@ -720,7 +720,7 @@ function Vo(e, t, n) {
|
|
|
720
720
|
}
|
|
721
721
|
return !s || !i ? (n(void 0, 424), En) : s.query(t, i, n)().abort;
|
|
722
722
|
}
|
|
723
|
-
const Hn = "iconify2",
|
|
723
|
+
const Hn = "iconify2", it = "iconify", Oi = it + "-count", qn = it + "-version", Li = 36e5, Ao = 168;
|
|
724
724
|
function Jt(e, t) {
|
|
725
725
|
try {
|
|
726
726
|
return e.getItem(t);
|
|
@@ -745,7 +745,7 @@ function Zt(e, t) {
|
|
|
745
745
|
function Qt(e) {
|
|
746
746
|
return parseInt(Jt(e, Oi)) || 0;
|
|
747
747
|
}
|
|
748
|
-
const
|
|
748
|
+
const _t = {
|
|
749
749
|
local: !0,
|
|
750
750
|
session: !0
|
|
751
751
|
}, Ii = {
|
|
@@ -756,15 +756,15 @@ let hn = !1;
|
|
|
756
756
|
function Eo(e) {
|
|
757
757
|
hn = e;
|
|
758
758
|
}
|
|
759
|
-
let
|
|
759
|
+
let pt = typeof window > "u" ? {} : window;
|
|
760
760
|
function Bi(e) {
|
|
761
761
|
const t = e + "Storage";
|
|
762
762
|
try {
|
|
763
|
-
if (
|
|
764
|
-
return
|
|
763
|
+
if (pt && pt[t] && typeof pt[t].length == "number")
|
|
764
|
+
return pt[t];
|
|
765
765
|
} catch {
|
|
766
766
|
}
|
|
767
|
-
|
|
767
|
+
_t[e] = !1;
|
|
768
768
|
}
|
|
769
769
|
function Di(e, t) {
|
|
770
770
|
const n = Bi(e);
|
|
@@ -775,13 +775,13 @@ function Di(e, t) {
|
|
|
775
775
|
if (s) {
|
|
776
776
|
const u = Qt(n);
|
|
777
777
|
for (let c = 0; c < u; c++)
|
|
778
|
-
Rn(n,
|
|
778
|
+
Rn(n, it + c.toString());
|
|
779
779
|
}
|
|
780
780
|
fn(n, qn, Hn), Zt(n, 0);
|
|
781
781
|
return;
|
|
782
782
|
}
|
|
783
783
|
const i = Math.floor(Date.now() / Li) - Ao, l = (u) => {
|
|
784
|
-
const c =
|
|
784
|
+
const c = it + u.toString(), f = Jt(n, c);
|
|
785
785
|
if (typeof f == "string") {
|
|
786
786
|
try {
|
|
787
787
|
const g = JSON.parse(f);
|
|
@@ -799,7 +799,7 @@ function Di(e, t) {
|
|
|
799
799
|
function Fi() {
|
|
800
800
|
if (!hn) {
|
|
801
801
|
Eo(!0);
|
|
802
|
-
for (const e in
|
|
802
|
+
for (const e in _t)
|
|
803
803
|
Di(e, (t) => {
|
|
804
804
|
const n = t.data, s = t.provider, i = n.prefix, l = Ee(
|
|
805
805
|
s,
|
|
@@ -817,7 +817,7 @@ function Ho(e, t) {
|
|
|
817
817
|
if (n && n >= t)
|
|
818
818
|
return n === t;
|
|
819
819
|
if (e.lastModifiedCached = t, n)
|
|
820
|
-
for (const s in
|
|
820
|
+
for (const s in _t)
|
|
821
821
|
Di(s, (i) => {
|
|
822
822
|
const l = i.data;
|
|
823
823
|
return i.provider !== e.provider || l.prefix !== e.prefix || l.lastModified === t;
|
|
@@ -828,7 +828,7 @@ function qo(e, t) {
|
|
|
828
828
|
hn || Fi();
|
|
829
829
|
function n(s) {
|
|
830
830
|
let i;
|
|
831
|
-
if (!
|
|
831
|
+
if (!_t[s] || !(i = Bi(s)))
|
|
832
832
|
return;
|
|
833
833
|
const l = Ii[s];
|
|
834
834
|
let d;
|
|
@@ -843,7 +843,7 @@ function qo(e, t) {
|
|
|
843
843
|
};
|
|
844
844
|
return fn(
|
|
845
845
|
i,
|
|
846
|
-
|
|
846
|
+
it + d.toString(),
|
|
847
847
|
JSON.stringify(u)
|
|
848
848
|
);
|
|
849
849
|
}
|
|
@@ -1013,10 +1013,10 @@ for (const e in zn) {
|
|
|
1013
1013
|
for (const n in Un)
|
|
1014
1014
|
t[e + n] = Un[n];
|
|
1015
1015
|
}
|
|
1016
|
-
const
|
|
1016
|
+
const yt = {};
|
|
1017
1017
|
["horizontal", "vertical"].forEach((e) => {
|
|
1018
1018
|
const t = e.slice(0, 1) + "Flip";
|
|
1019
|
-
|
|
1019
|
+
yt[e + "-flip"] = t, yt[e.slice(0, 1) + "-flip"] = t, yt[e + "Flip"] = t;
|
|
1020
1020
|
});
|
|
1021
1021
|
function Wn(e) {
|
|
1022
1022
|
return e + (e.match(/^[-0-9.]+$/) ? "px" : "");
|
|
@@ -1051,7 +1051,7 @@ const Gn = (e, t) => {
|
|
|
1051
1051
|
D !== !0 && D !== "true" && delete s["aria-hidden"];
|
|
1052
1052
|
break;
|
|
1053
1053
|
default: {
|
|
1054
|
-
const B =
|
|
1054
|
+
const B = yt[T];
|
|
1055
1055
|
B ? (D === !0 || D === "true" || D === 1) && (n[B] = !0) : Nn[T] === void 0 && (s[T] = D);
|
|
1056
1056
|
}
|
|
1057
1057
|
}
|
|
@@ -1115,7 +1115,7 @@ if (typeof document < "u" && typeof window < "u") {
|
|
|
1115
1115
|
}
|
|
1116
1116
|
}
|
|
1117
1117
|
const Xo = {
|
|
1118
|
-
...
|
|
1118
|
+
...St,
|
|
1119
1119
|
body: ""
|
|
1120
1120
|
}, $o = gi({
|
|
1121
1121
|
// Do not inherit other attributes: it is handled by render()
|
|
@@ -1146,7 +1146,7 @@ const Xo = {
|
|
|
1146
1146
|
data: e
|
|
1147
1147
|
};
|
|
1148
1148
|
let n;
|
|
1149
|
-
if (typeof e != "string" || (n =
|
|
1149
|
+
if (typeof e != "string" || (n = Tt(e, !1, !0)) === null)
|
|
1150
1150
|
return this.abortLoading(), null;
|
|
1151
1151
|
const s = ro(n);
|
|
1152
1152
|
if (!s)
|
|
@@ -1172,7 +1172,7 @@ const Xo = {
|
|
|
1172
1172
|
...e,
|
|
1173
1173
|
class: (typeof e.class == "string" ? e.class + " " : "") + t.classes.join(" ")
|
|
1174
1174
|
}), Gn({
|
|
1175
|
-
...
|
|
1175
|
+
...St,
|
|
1176
1176
|
...t.data
|
|
1177
1177
|
}, n);
|
|
1178
1178
|
}
|
|
@@ -1242,17 +1242,17 @@ function na(e, t, n, s, i, l) {
|
|
|
1242
1242
|
}
|
|
1243
1243
|
const K = /* @__PURE__ */ P(ea, [["render", na]]);
|
|
1244
1244
|
function De(e, t) {
|
|
1245
|
-
return
|
|
1245
|
+
return Ot(e, "EditComponentWrapper", t);
|
|
1246
1246
|
}
|
|
1247
1247
|
function ia(e) {
|
|
1248
|
-
return
|
|
1248
|
+
return Ot(e, "EditModeSettingsSidebar");
|
|
1249
1249
|
}
|
|
1250
1250
|
function la(e) {
|
|
1251
|
-
return
|
|
1251
|
+
return Ot(e, "EditModeMainSidebar");
|
|
1252
1252
|
}
|
|
1253
|
-
function
|
|
1253
|
+
function Ot(e, t, n) {
|
|
1254
1254
|
var s;
|
|
1255
|
-
return ((s = e == null ? void 0 : e.$options) == null ? void 0 : s.name) === t && (n == null || n(e)) ? e : e != null && e.$parent ?
|
|
1255
|
+
return ((s = e == null ? void 0 : e.$options) == null ? void 0 : s.name) === t && (n == null || n(e)) ? e : e != null && e.$parent ? Ot(e.$parent, t, n) : null;
|
|
1256
1256
|
}
|
|
1257
1257
|
function Me(e, ...t) {
|
|
1258
1258
|
const n = [];
|
|
@@ -2576,7 +2576,7 @@ function Za(e = "Field contains capital letters") {
|
|
|
2576
2576
|
}
|
|
2577
2577
|
};
|
|
2578
2578
|
}
|
|
2579
|
-
function
|
|
2579
|
+
function lt() {
|
|
2580
2580
|
let e = (/* @__PURE__ */ new Date()).getTime();
|
|
2581
2581
|
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(t) {
|
|
2582
2582
|
const n = (e + Math.random() * 16) % 16 | 0;
|
|
@@ -2584,9 +2584,9 @@ function it() {
|
|
|
2584
2584
|
});
|
|
2585
2585
|
}
|
|
2586
2586
|
function Vi() {
|
|
2587
|
-
return "cmd-" +
|
|
2587
|
+
return "cmd-" + lt();
|
|
2588
2588
|
}
|
|
2589
|
-
const
|
|
2589
|
+
const Lt = {
|
|
2590
2590
|
props: {
|
|
2591
2591
|
/**
|
|
2592
2592
|
* use as unique id if generated it should not be used
|
|
@@ -2606,10 +2606,10 @@ const Ot = {
|
|
|
2606
2606
|
return e.map((t) => t.replace(/\s/g, "")).join("");
|
|
2607
2607
|
}
|
|
2608
2608
|
}
|
|
2609
|
-
},
|
|
2609
|
+
}, Rt = {};
|
|
2610
2610
|
function Qa(e = "defaultSequence") {
|
|
2611
|
-
const t =
|
|
2612
|
-
return
|
|
2611
|
+
const t = Rt[e] || 0;
|
|
2612
|
+
return Rt[e] = t + 1, Rt[e];
|
|
2613
2613
|
}
|
|
2614
2614
|
const xn = {
|
|
2615
2615
|
data() {
|
|
@@ -2641,7 +2641,7 @@ const xn = {
|
|
|
2641
2641
|
ce,
|
|
2642
2642
|
yn,
|
|
2643
2643
|
bn,
|
|
2644
|
-
|
|
2644
|
+
Lt,
|
|
2645
2645
|
xn
|
|
2646
2646
|
],
|
|
2647
2647
|
data() {
|
|
@@ -4201,7 +4201,7 @@ const vr = /* @__PURE__ */ P(hr, [["render", Cr]]), kr = {
|
|
|
4201
4201
|
mixins: [
|
|
4202
4202
|
yn,
|
|
4203
4203
|
bn,
|
|
4204
|
-
|
|
4204
|
+
Lt,
|
|
4205
4205
|
xn
|
|
4206
4206
|
],
|
|
4207
4207
|
props: {
|
|
@@ -4502,7 +4502,7 @@ function Fr(e, t, n, s, i, l) {
|
|
|
4502
4502
|
}
|
|
4503
4503
|
const Cn = /* @__PURE__ */ P(kr, [["render", Fr]]), Mr = {
|
|
4504
4504
|
name: "CmdSystemMessage",
|
|
4505
|
-
mixins: [
|
|
4505
|
+
mixins: [Lt],
|
|
4506
4506
|
data() {
|
|
4507
4507
|
return {
|
|
4508
4508
|
showSystemMessage: !0
|
|
@@ -4641,7 +4641,7 @@ function Ar(e, t, n, s, i, l) {
|
|
|
4641
4641
|
const Re = /* @__PURE__ */ P(Mr, [["render", Ar]]), Er = {
|
|
4642
4642
|
name: "CmdForm",
|
|
4643
4643
|
components: { CmdSystemMessage: Re },
|
|
4644
|
-
emits: ["submit"],
|
|
4644
|
+
emits: ["submit", "update:modelValue"],
|
|
4645
4645
|
data() {
|
|
4646
4646
|
return {
|
|
4647
4647
|
errorOccurred: !1,
|
|
@@ -4656,6 +4656,9 @@ const Re = /* @__PURE__ */ P(Mr, [["render", Ar]]), Er = {
|
|
|
4656
4656
|
};
|
|
4657
4657
|
},
|
|
4658
4658
|
props: {
|
|
4659
|
+
modelValue: {
|
|
4660
|
+
type: Object
|
|
4661
|
+
},
|
|
4659
4662
|
/**
|
|
4660
4663
|
* set url for form-action
|
|
4661
4664
|
*/
|
|
@@ -4805,16 +4808,48 @@ const Re = /* @__PURE__ */ P(Mr, [["render", Ar]]), Er = {
|
|
|
4805
4808
|
}
|
|
4806
4809
|
},
|
|
4807
4810
|
watch: {
|
|
4811
|
+
modelValue: {
|
|
4812
|
+
handler() {
|
|
4813
|
+
var e;
|
|
4814
|
+
if (this.modelValue) {
|
|
4815
|
+
for (const t in this.modelValue)
|
|
4816
|
+
this.formValues[t] = this.modelValue[t];
|
|
4817
|
+
(e = this.formElements) == null || e.forEach((t) => {
|
|
4818
|
+
this.formValues[t.name] == null && (this.formValues[t.name] = "");
|
|
4819
|
+
});
|
|
4820
|
+
}
|
|
4821
|
+
},
|
|
4822
|
+
immediate: !0
|
|
4823
|
+
},
|
|
4808
4824
|
formValues: {
|
|
4809
4825
|
handler() {
|
|
4810
|
-
|
|
4811
|
-
return;
|
|
4812
|
-
const e = this.formElements.filter((i) => i.required).length, t = this.formElements.filter((i) => i.required && !this.formValues[i.name]).length, n = e > 0 && e === t, s = e > 0 && t > 0;
|
|
4813
|
-
this.$emit("empty-required-form-elements", { allRequiredFormElementsEmpty: n, emptyRequiredFormElementExists: s });
|
|
4826
|
+
this.$emit("update:modelValue", this.formValues);
|
|
4814
4827
|
},
|
|
4815
|
-
immediate: !0,
|
|
4816
4828
|
deep: !0
|
|
4817
4829
|
},
|
|
4830
|
+
/*
|
|
4831
|
+
formValues: {
|
|
4832
|
+
handler() {
|
|
4833
|
+
if(!this.formElements) {
|
|
4834
|
+
return
|
|
4835
|
+
}
|
|
4836
|
+
|
|
4837
|
+
const numberRequiredFormElements = this.formElements.filter((element) => {
|
|
4838
|
+
return element.required
|
|
4839
|
+
}).length
|
|
4840
|
+
|
|
4841
|
+
const numberEmptyRequiredFormElements = this.formElements.filter((element) => {
|
|
4842
|
+
return element.required && !this.formValues[element.name]
|
|
4843
|
+
}).length
|
|
4844
|
+
|
|
4845
|
+
const allRequiredFormElementsEmpty = numberRequiredFormElements > 0 && numberRequiredFormElements === numberEmptyRequiredFormElements
|
|
4846
|
+
const emptyRequiredFormElementExists = numberRequiredFormElements > 0 && numberEmptyRequiredFormElements > 0
|
|
4847
|
+
|
|
4848
|
+
this.$emit("empty-required-form-elements", { allRequiredFormElementsEmpty, emptyRequiredFormElementExists })
|
|
4849
|
+
},
|
|
4850
|
+
immediate: true,
|
|
4851
|
+
deep: true
|
|
4852
|
+
}, */
|
|
4818
4853
|
formElements: {
|
|
4819
4854
|
handler() {
|
|
4820
4855
|
var e;
|
|
@@ -4848,7 +4883,7 @@ function Qr(e, t, n, s, i, l) {
|
|
|
4848
4883
|
class: C(["cmd-form", { error: i.errorOccurred }]),
|
|
4849
4884
|
action: n.formAction,
|
|
4850
4885
|
"data-use-validation": n.useValidation,
|
|
4851
|
-
onSubmit: t[
|
|
4886
|
+
onSubmit: t[4] || (t[4] = (...f) => l.onSubmit && l.onSubmit(...f)),
|
|
4852
4887
|
novalidate: n.novalidate,
|
|
4853
4888
|
method: n.formMethod
|
|
4854
4889
|
}, [
|
|
@@ -4862,6 +4897,22 @@ function Qr(e, t, n, s, i, l) {
|
|
|
4862
4897
|
validationStatus: i.systemMessage.validationStatus,
|
|
4863
4898
|
systemMessage: i.systemMessage.message
|
|
4864
4899
|
}, null, 8, ["validationStatus", "systemMessage"])) : m("", !0),
|
|
4900
|
+
p(u, {
|
|
4901
|
+
element: "input",
|
|
4902
|
+
type: "text",
|
|
4903
|
+
labelText: "TEST",
|
|
4904
|
+
modelValue: i.formValues.nase,
|
|
4905
|
+
"onUpdate:modelValue": t[0] || (t[0] = (f) => i.formValues.nase = f)
|
|
4906
|
+
}, null, 8, ["modelValue"]),
|
|
4907
|
+
o("label", null, [
|
|
4908
|
+
t[5] || (t[5] = M("TEST2: ")),
|
|
4909
|
+
$(o("input", {
|
|
4910
|
+
type: "text",
|
|
4911
|
+
"onUpdate:modelValue": t[1] || (t[1] = (f) => i.formValues.ahoi = f)
|
|
4912
|
+
}, null, 512), [
|
|
4913
|
+
[et, i.formValues.ahoi]
|
|
4914
|
+
])
|
|
4915
|
+
]),
|
|
4865
4916
|
n.useSlot ? V(e.$slots, "default", { key: 1 }) : (a(!0), r(O, { key: 2 }, q(n.formElements, (f, g) => (a(), r(O, { key: g }, [
|
|
4866
4917
|
!f.component || f.component === "CmdFormElement" ? (a(), v(u, {
|
|
4867
4918
|
key: g,
|
|
@@ -4925,14 +4976,14 @@ function Qr(e, t, n, s, i, l) {
|
|
|
4925
4976
|
], 64))), 128)),
|
|
4926
4977
|
l.submitButtonOptions.show && (l.submitButtonOptions.position === "insideFieldset" || l.submitButtonOptions.position === null) ? (a(), r("div", jr, [
|
|
4927
4978
|
n.mandatoryText ? (a(), r("small", Nr, [
|
|
4928
|
-
t[
|
|
4979
|
+
t[6] || (t[6] = o("sup", null, "*", -1)),
|
|
4929
4980
|
M(y(n.mandatoryText), 1)
|
|
4930
4981
|
])) : m("", !0),
|
|
4931
4982
|
l.cancelButtonOptions !== void 0 ? (a(), r("button", {
|
|
4932
4983
|
key: 1,
|
|
4933
4984
|
class: C(["button", { "stretch-on-small-devices": l.cancelButtonOptions.stretchOnSmallDevices, disabled: l.cancelButtonOptions.disabled, cancel: l.cancelButtonOptions.useDefaultStyling }]),
|
|
4934
4985
|
type: "button",
|
|
4935
|
-
onClick: t[
|
|
4986
|
+
onClick: t[2] || (t[2] = (...f) => l.cancelFormSubmit && l.cancelFormSubmit(...f))
|
|
4936
4987
|
}, [
|
|
4937
4988
|
l.cancelButtonOptions.iconClass ? (a(), r("span", {
|
|
4938
4989
|
key: 0,
|
|
@@ -4954,14 +5005,14 @@ function Qr(e, t, n, s, i, l) {
|
|
|
4954
5005
|
]),
|
|
4955
5006
|
l.submitButtonOptions.show && l.submitButtonOptions.position === "belowFieldset" ? (a(), r("div", Gr, [
|
|
4956
5007
|
n.mandatoryText ? (a(), r("small", Kr, [
|
|
4957
|
-
t[
|
|
5008
|
+
t[7] || (t[7] = o("sup", null, "*", -1)),
|
|
4958
5009
|
M(y(n.mandatoryText), 1)
|
|
4959
5010
|
])) : m("", !0),
|
|
4960
5011
|
l.cancelButtonOptions.show ? (a(), r("button", {
|
|
4961
5012
|
key: 1,
|
|
4962
5013
|
class: C(["button", { "stretch-on-small-devices": l.cancelButtonOptions.stretchOnSmallDevices, disabled: l.cancelButtonOptions.disabled, cancel: l.cancelButtonOptions.useDefaultStyling }]),
|
|
4963
5014
|
type: "button",
|
|
4964
|
-
onClick: t[
|
|
5015
|
+
onClick: t[3] || (t[3] = (...f) => l.cancelFormSubmit && l.cancelFormSubmit(...f))
|
|
4965
5016
|
}, [
|
|
4966
5017
|
l.cancelButtonOptions.iconClass ? (a(), r("span", {
|
|
4967
5018
|
key: 0,
|
|
@@ -5254,7 +5305,7 @@ const $r = {
|
|
|
5254
5305
|
addHandlerProvider() {
|
|
5255
5306
|
const e = {
|
|
5256
5307
|
image: {
|
|
5257
|
-
id:
|
|
5308
|
+
id: lt(),
|
|
5258
5309
|
src: "media/images/demo-images/large/landscape-06.jpg",
|
|
5259
5310
|
srcImageLarge: "media/images/demo-images/large/landscape-06.jpg",
|
|
5260
5311
|
alt: "Alternative Text"
|
|
@@ -5332,7 +5383,7 @@ function rd(e, t, n, s, i, l) {
|
|
|
5332
5383
|
o("a", L({
|
|
5333
5384
|
href: "#",
|
|
5334
5385
|
class: ["box drop-area flex-container vertical", { "allow-drop": i.allowDrop }]
|
|
5335
|
-
},
|
|
5386
|
+
}, Wt(l.dragAndDropHandler, !0), {
|
|
5336
5387
|
onClick: t[1] || (t[1] = S((...A) => l.selectFiles && l.selectFiles(...A), ["prevent"])),
|
|
5337
5388
|
title: "Drag new image to this area to replace old one!"
|
|
5338
5389
|
}), [
|
|
@@ -5497,7 +5548,7 @@ function md(e, t, n, s, i, l) {
|
|
|
5497
5548
|
}, null, 8, ["type", "iconClass"])
|
|
5498
5549
|
], 10, cd);
|
|
5499
5550
|
}
|
|
5500
|
-
const
|
|
5551
|
+
const It = /* @__PURE__ */ P(ud, [["render", md]]), pd = {
|
|
5501
5552
|
data() {
|
|
5502
5553
|
return {
|
|
5503
5554
|
defaultMessageProperties: {
|
|
@@ -5679,7 +5730,7 @@ const Lt = /* @__PURE__ */ P(ud, [["render", md]]), pd = {
|
|
|
5679
5730
|
itemProvider() {
|
|
5680
5731
|
return {
|
|
5681
5732
|
image: {
|
|
5682
|
-
id:
|
|
5733
|
+
id: lt(),
|
|
5683
5734
|
src: "/media/images/demo-images/small/landscape-01.jpg",
|
|
5684
5735
|
srcImageLarge: "/media/images/demo-images/large/landscape-01.jpg",
|
|
5685
5736
|
alt: "Alternative Text",
|
|
@@ -5703,7 +5754,7 @@ const Lt = /* @__PURE__ */ P(ud, [["render", md]]), pd = {
|
|
|
5703
5754
|
return {
|
|
5704
5755
|
itemProviderOverwrite: () => ({
|
|
5705
5756
|
image: {
|
|
5706
|
-
id:
|
|
5757
|
+
id: lt(),
|
|
5707
5758
|
src: "/media/images/demo-images/small/landscape-01.jpg",
|
|
5708
5759
|
srcImageLarge: "/media/images/demo-images/large/landscape-01.jpg",
|
|
5709
5760
|
tooltip: "Tooltip DE"
|
|
@@ -5751,7 +5802,7 @@ const Lt = /* @__PURE__ */ P(ud, [["render", md]]), pd = {
|
|
|
5751
5802
|
}, hd = ["href", "onClick", "title", "target"], gd = { key: 1 }, yd = { key: 1 }, bd = { key: 0 };
|
|
5752
5803
|
function xd(e, t, n, s, i, l) {
|
|
5753
5804
|
var g;
|
|
5754
|
-
const d = J, u =
|
|
5805
|
+
const d = J, u = It, c = ke, f = K;
|
|
5755
5806
|
return a(), r("div", {
|
|
5756
5807
|
class: C([
|
|
5757
5808
|
"cmd-thumbnail-scroller",
|
|
@@ -6141,7 +6192,7 @@ const vd = qi, kd = ["aria-label"], wd = { class: "flex-container" }, Td = {
|
|
|
6141
6192
|
}, Pd = ["title"], Vd = { key: 1 }, Ad = ["title"], Ed = { key: 1 };
|
|
6142
6193
|
function Hd(e, t, n, s, i, l) {
|
|
6143
6194
|
var h, w, x, _, T, D, B, H, F, U, G, E, R, W, Q, Z, ie, me, le, ne, se, pe, fe, X, he, A, re, xe, Te, Oe, Ve;
|
|
6144
|
-
const d = J, u = K, c = ke, f =
|
|
6195
|
+
const d = J, u = K, c = ke, f = It, g = Hi;
|
|
6145
6196
|
return a(), r("dialog", {
|
|
6146
6197
|
ref: "dialog",
|
|
6147
6198
|
class: C(["cmd-fancybox", { "show-overlay": e.showOverlay, image: e.fancyBoxImageUrl || e.fancyBoxGallery, "image-gallery": e.fancyBoxGallery }]),
|
|
@@ -6573,7 +6624,7 @@ function Kd(e, t, n, s, i, l) {
|
|
|
6573
6624
|
class: "flex-container flex-direction-column"
|
|
6574
6625
|
}), {
|
|
6575
6626
|
default: k(() => {
|
|
6576
|
-
var f, g, h, w, x, _, T, D, B, H, F, U, G, E, R, W, Q, Z, ie, me, le, ne, se, pe, fe, X, he, A, re, xe, Te, Oe, Ve, de,
|
|
6627
|
+
var f, g, h, w, x, _, T, D, B, H, F, U, G, E, R, W, Q, Z, ie, me, le, ne, se, pe, fe, X, he, A, re, xe, Te, Oe, Ve, de, rt, dt, ut, ct, je, Ke, mt;
|
|
6577
6628
|
return [
|
|
6578
6629
|
n.configuration.salutation ? (a(), r("div", Nd, [
|
|
6579
6630
|
p(u, {
|
|
@@ -6751,13 +6802,13 @@ function Kd(e, t, n, s, i, l) {
|
|
|
6751
6802
|
])) : m("", !0),
|
|
6752
6803
|
n.configuration.userMessage ? (a(), v(u, {
|
|
6753
6804
|
key: 4,
|
|
6754
|
-
element: ((
|
|
6805
|
+
element: ((rt = n.configuration.userMessage) == null ? void 0 : rt.element) || "textarea",
|
|
6755
6806
|
labelText: e.getMessage("basic_form.labeltext.user_message"),
|
|
6756
6807
|
placeholder: e.getMessage("basic_form.placeholder.user_message"),
|
|
6757
|
-
required: (
|
|
6758
|
-
name: (
|
|
6808
|
+
required: (dt = n.configuration.userMessage) == null ? void 0 : dt.required,
|
|
6809
|
+
name: (ut = n.configuration.userMessage) == null ? void 0 : ut.name,
|
|
6759
6810
|
textCharactersLeft: e.getMessage("basic_form.text.characters_left"),
|
|
6760
|
-
maxlength: (
|
|
6811
|
+
maxlength: (ct = n.configuration.userMessage) == null ? void 0 : ct.maxLength,
|
|
6761
6812
|
modelValue: i.formData.userMessage.value,
|
|
6762
6813
|
"onUpdate:modelValue": t[12] || (t[12] = (Y) => i.formData.userMessage.value = Y),
|
|
6763
6814
|
status: i.formData.userMessage.error ? "error" : "",
|
|
@@ -6772,7 +6823,7 @@ function Kd(e, t, n, s, i, l) {
|
|
|
6772
6823
|
class: "flex-none",
|
|
6773
6824
|
required: (je = n.configuration.acceptPrivacy) == null ? void 0 : je.required,
|
|
6774
6825
|
name: (Ke = n.configuration.acceptPrivacy) == null ? void 0 : Ke.name,
|
|
6775
|
-
replaceInputType: (
|
|
6826
|
+
replaceInputType: (mt = n.configuration.acceptPrivacy) == null ? void 0 : mt.replaceInputType,
|
|
6776
6827
|
modelValue: i.formData.acceptPrivacy.value,
|
|
6777
6828
|
"onUpdate:modelValue": t[13] || (t[13] = (Y) => i.formData.acceptPrivacy.value = Y),
|
|
6778
6829
|
status: i.formData.acceptPrivacy.error ? "error" : "",
|
|
@@ -7952,7 +8003,7 @@ function nc(e, t, n, s, i, l) {
|
|
|
7952
8003
|
key: 0,
|
|
7953
8004
|
class: C(["inner-box-body-wrapper", { "box-body-padding": n.useBoxBodyPadding, "allow-scroll": n.allowContentToScroll }]),
|
|
7954
8005
|
ref: "boxBody",
|
|
7955
|
-
style:
|
|
8006
|
+
style: Ct(n.allowContentToScroll ? "max-height: " + i.calculatedBodyHeight : null)
|
|
7956
8007
|
}, [
|
|
7957
8008
|
V(e.$slots, "body", {}, () => {
|
|
7958
8009
|
var W;
|
|
@@ -9077,7 +9128,7 @@ const nm = /* @__PURE__ */ P($c, [["render", tm]]), im = {
|
|
|
9077
9128
|
ce,
|
|
9078
9129
|
im,
|
|
9079
9130
|
bn,
|
|
9080
|
-
|
|
9131
|
+
Lt,
|
|
9081
9132
|
xn
|
|
9082
9133
|
],
|
|
9083
9134
|
data() {
|
|
@@ -9410,7 +9461,7 @@ function Sm(e, t, n, s, i, l) {
|
|
|
9410
9461
|
class: C(["flag", l.optionCountry])
|
|
9411
9462
|
}, null, 10, mm)) : n.type === "color" ? (a(), r("span", {
|
|
9412
9463
|
key: 1,
|
|
9413
|
-
style:
|
|
9464
|
+
style: Ct("background: " + l.optionColor)
|
|
9414
9465
|
}, null, 4)) : m("", !0),
|
|
9415
9466
|
(g = l.optionIcon) != null && g.iconClass ? (a(), v(d, {
|
|
9416
9467
|
key: 2,
|
|
@@ -9501,7 +9552,7 @@ function Sm(e, t, n, s, i, l) {
|
|
|
9501
9552
|
}, [
|
|
9502
9553
|
o("span", {
|
|
9503
9554
|
class: "color",
|
|
9504
|
-
style:
|
|
9555
|
+
style: Ct("background: " + x.value)
|
|
9505
9556
|
}, null, 4),
|
|
9506
9557
|
o("span", null, y(x.text), 1)
|
|
9507
9558
|
], 10, wm)) : m("", !0)
|
|
@@ -9763,7 +9814,8 @@ function Nm(e, t, n, s, i, l) {
|
|
|
9763
9814
|
}, null, 8, jm)) : (a(), v(u, {
|
|
9764
9815
|
key: 1,
|
|
9765
9816
|
validationStatus: "warning",
|
|
9766
|
-
textAlign: "center"
|
|
9817
|
+
textAlign: "center",
|
|
9818
|
+
iconClose: { show: !1 }
|
|
9767
9819
|
}, {
|
|
9768
9820
|
default: k(() => [
|
|
9769
9821
|
o("p", null, y(e.getMessage("google_maps.system_message.accept_terms")), 1),
|
|
@@ -11168,7 +11220,8 @@ const Xi = /* @__PURE__ */ P(Up, [["render", Gp]]), Kp = {
|
|
|
11168
11220
|
return {
|
|
11169
11221
|
currentPage: 1,
|
|
11170
11222
|
statusForPages: [],
|
|
11171
|
-
inputMade: !1
|
|
11223
|
+
inputMade: !1,
|
|
11224
|
+
formData: {}
|
|
11172
11225
|
};
|
|
11173
11226
|
},
|
|
11174
11227
|
props: {
|
|
@@ -11217,6 +11270,9 @@ const Xi = /* @__PURE__ */ P(Up, [["render", Gp]]), Kp = {
|
|
|
11217
11270
|
}
|
|
11218
11271
|
},
|
|
11219
11272
|
methods: {
|
|
11273
|
+
formDataForPage(e) {
|
|
11274
|
+
return this.formData[e] || (this.formData[e] = {}), this.formData[e];
|
|
11275
|
+
},
|
|
11220
11276
|
getSystemMessage(e) {
|
|
11221
11277
|
return this.statusForPages.find((n) => n.page === e).message;
|
|
11222
11278
|
},
|
|
@@ -11313,7 +11369,8 @@ function Jp(e, t, n, s, i, l) {
|
|
|
11313
11369
|
V(e.$slots, "page-" + f, {
|
|
11314
11370
|
setErrorOnPage: (h) => l.setErrorOnPage(f, h),
|
|
11315
11371
|
removeErrorOnPage: () => l.removeErrorOnPage(f),
|
|
11316
|
-
atleastOnePageWithError: l.atleastOnePageWithError
|
|
11372
|
+
atleastOnePageWithError: l.atleastOnePageWithError,
|
|
11373
|
+
formDataForPage: l.formDataForPage(f)
|
|
11317
11374
|
})
|
|
11318
11375
|
], 2)), [
|
|
11319
11376
|
[ye, f === i.currentPage]
|
|
@@ -12226,7 +12283,7 @@ const Lf = /* @__PURE__ */ P(bf, [["render", Of]]), If = {
|
|
|
12226
12283
|
});
|
|
12227
12284
|
},
|
|
12228
12285
|
updateHandlerProvider() {
|
|
12229
|
-
const e =
|
|
12286
|
+
const e = lt(), t = this.editablePath, n = this.editableTooltip, s = this.editableLinktext;
|
|
12230
12287
|
return oe(this, {
|
|
12231
12288
|
update(i) {
|
|
12232
12289
|
i.id = e, i.path = t, i.tooltip = n, i.linkText = s;
|
|
@@ -13600,7 +13657,7 @@ const Ih = /* @__PURE__ */ P(vh, [["render", Lh]]), Bh = {
|
|
|
13600
13657
|
class: "item-counter"
|
|
13601
13658
|
};
|
|
13602
13659
|
function Vh(e, t, n, s, i, l) {
|
|
13603
|
-
const d =
|
|
13660
|
+
const d = It, u = ke;
|
|
13604
13661
|
return a(), r("div", {
|
|
13605
13662
|
class: C(["cmd-slideshow", { "full-width": i.fullWidth }])
|
|
13606
13663
|
}, [
|
|
@@ -13623,7 +13680,7 @@ function Vh(e, t, n, s, i, l) {
|
|
|
13623
13680
|
n.useSlot ? (a(), r("div", {
|
|
13624
13681
|
class: "slot-wrapper",
|
|
13625
13682
|
key: i.index,
|
|
13626
|
-
style:
|
|
13683
|
+
style: Ct("background-image: url(" + l.currentItem.image.srcLarge + ")")
|
|
13627
13684
|
}, [
|
|
13628
13685
|
V(e.$slots, "item" + i.currentSlotItem)
|
|
13629
13686
|
], 4)) : (a(), r(O, { key: 0 }, [
|
|
@@ -14077,7 +14134,7 @@ const Kh = /* @__PURE__ */ P(jh, [["render", Gh]]), Yh = {
|
|
|
14077
14134
|
"aria-expanded": "true"
|
|
14078
14135
|
}, ng = ["innerHTML"];
|
|
14079
14136
|
function ig(e, t, n, s, i, l) {
|
|
14080
|
-
const d = K, u =
|
|
14137
|
+
const d = K, u = It;
|
|
14081
14138
|
return a(), r("div", {
|
|
14082
14139
|
class: C(["cmd-table-wrapper", { collapsed: !i.showTableData, "full-width": i.fullWidth, "has-caption": l.hasCaption, "has-overflow": i.hasOverflow }])
|
|
14083
14140
|
}, [
|
|
@@ -14492,7 +14549,7 @@ function xg(e, t, n, s, i, l) {
|
|
|
14492
14549
|
"onUpdate:modelValue": t[0] || (t[0] = (_) => i.editableHtmlContent = _),
|
|
14493
14550
|
placeholder: "Paragraph"
|
|
14494
14551
|
}, null, 2)), [
|
|
14495
|
-
[
|
|
14552
|
+
[et, i.editableHtmlContent]
|
|
14496
14553
|
]) : n.htmlContent ? (a(), r("div", {
|
|
14497
14554
|
key: 1,
|
|
14498
14555
|
innerHTML: n.htmlContent,
|
|
@@ -14775,29 +14832,29 @@ function tl(e, t) {
|
|
|
14775
14832
|
return e.apply(t, arguments);
|
|
14776
14833
|
};
|
|
14777
14834
|
}
|
|
14778
|
-
const { toString: _g } = Object.prototype, { getPrototypeOf: Sn } = Object,
|
|
14835
|
+
const { toString: _g } = Object.prototype, { getPrototypeOf: Sn } = Object, Bt = /* @__PURE__ */ ((e) => (t) => {
|
|
14779
14836
|
const n = _g.call(t);
|
|
14780
14837
|
return e[n] || (e[n] = n.slice(8, -1).toLowerCase());
|
|
14781
|
-
})(/* @__PURE__ */ Object.create(null)), we = (e) => (e = e.toLowerCase(), (t) =>
|
|
14838
|
+
})(/* @__PURE__ */ Object.create(null)), we = (e) => (e = e.toLowerCase(), (t) => Bt(t) === e), Dt = (e) => (t) => typeof t === e, { isArray: We } = Array, ot = Dt("undefined");
|
|
14782
14839
|
function Og(e) {
|
|
14783
|
-
return e !== null && !
|
|
14840
|
+
return e !== null && !ot(e) && e.constructor !== null && !ot(e.constructor) && be(e.constructor.isBuffer) && e.constructor.isBuffer(e);
|
|
14784
14841
|
}
|
|
14785
14842
|
const nl = we("ArrayBuffer");
|
|
14786
14843
|
function Lg(e) {
|
|
14787
14844
|
let t;
|
|
14788
14845
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && nl(e.buffer), t;
|
|
14789
14846
|
}
|
|
14790
|
-
const Ig =
|
|
14791
|
-
if (
|
|
14847
|
+
const Ig = Dt("string"), be = Dt("function"), il = Dt("number"), Ft = (e) => e !== null && typeof e == "object", Bg = (e) => e === !0 || e === !1, bt = (e) => {
|
|
14848
|
+
if (Bt(e) !== "object")
|
|
14792
14849
|
return !1;
|
|
14793
14850
|
const t = Sn(e);
|
|
14794
14851
|
return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
|
14795
|
-
}, Dg = we("Date"), Fg = we("File"), Mg = we("Blob"), Pg = we("FileList"), Vg = (e) =>
|
|
14852
|
+
}, Dg = we("Date"), Fg = we("File"), Mg = we("Blob"), Pg = we("FileList"), Vg = (e) => Ft(e) && be(e.pipe), Ag = (e) => {
|
|
14796
14853
|
let t;
|
|
14797
|
-
return e && (typeof FormData == "function" && e instanceof FormData || be(e.append) && ((t =
|
|
14854
|
+
return e && (typeof FormData == "function" && e instanceof FormData || be(e.append) && ((t = Bt(e)) === "formdata" || // detect form-data instance
|
|
14798
14855
|
t === "object" && be(e.toString) && e.toString() === "[object FormData]"));
|
|
14799
14856
|
}, Eg = we("URLSearchParams"), [Hg, qg, Rg, jg] = ["ReadableStream", "Request", "Response", "Headers"].map(we), Ng = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
14800
|
-
function
|
|
14857
|
+
function at(e, t, { allOwnKeys: n = !1 } = {}) {
|
|
14801
14858
|
if (e === null || typeof e > "u")
|
|
14802
14859
|
return;
|
|
14803
14860
|
let s, i;
|
|
@@ -14820,17 +14877,17 @@ function ll(e, t) {
|
|
|
14820
14877
|
return i;
|
|
14821
14878
|
return null;
|
|
14822
14879
|
}
|
|
14823
|
-
const ol = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, al = (e) => !
|
|
14880
|
+
const ol = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, al = (e) => !ot(e) && e !== ol;
|
|
14824
14881
|
function en() {
|
|
14825
14882
|
const { caseless: e } = al(this) && this || {}, t = {}, n = (s, i) => {
|
|
14826
14883
|
const l = e && ll(t, i) || i;
|
|
14827
|
-
|
|
14884
|
+
bt(t[l]) && bt(s) ? t[l] = en(t[l], s) : bt(s) ? t[l] = en({}, s) : We(s) ? t[l] = s.slice() : t[l] = s;
|
|
14828
14885
|
};
|
|
14829
14886
|
for (let s = 0, i = arguments.length; s < i; s++)
|
|
14830
|
-
arguments[s] &&
|
|
14887
|
+
arguments[s] && at(arguments[s], n);
|
|
14831
14888
|
return t;
|
|
14832
14889
|
}
|
|
14833
|
-
const Ug = (e, t, n, { allOwnKeys: s } = {}) => (
|
|
14890
|
+
const Ug = (e, t, n, { allOwnKeys: s } = {}) => (at(t, (i, l) => {
|
|
14834
14891
|
n && be(i) ? e[l] = tl(i, n) : e[l] = i;
|
|
14835
14892
|
}, { allOwnKeys: s }), e), zg = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), Wg = (e, t, n, s) => {
|
|
14836
14893
|
e.prototype = Object.create(t.prototype, s), e.prototype.constructor = e, Object.defineProperty(e, "super", {
|
|
@@ -14879,7 +14936,7 @@ const Ug = (e, t, n, { allOwnKeys: s } = {}) => (ot(t, (i, l) => {
|
|
|
14879
14936
|
}
|
|
14880
14937
|
), ti = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), ey = we("RegExp"), sl = (e, t) => {
|
|
14881
14938
|
const n = Object.getOwnPropertyDescriptors(e), s = {};
|
|
14882
|
-
|
|
14939
|
+
at(n, (i, l) => {
|
|
14883
14940
|
let d;
|
|
14884
14941
|
(d = t(i, l, e)) !== !1 && (s[l] = d || i);
|
|
14885
14942
|
}), Object.defineProperties(e, s);
|
|
@@ -14906,10 +14963,10 @@ const Ug = (e, t, n, { allOwnKeys: s } = {}) => (ot(t, (i, l) => {
|
|
|
14906
14963
|
};
|
|
14907
14964
|
return We(e) ? s(e) : s(String(e).split(t)), n;
|
|
14908
14965
|
}, iy = () => {
|
|
14909
|
-
}, ly = (e, t) => e != null && Number.isFinite(e = +e) ? e : t,
|
|
14966
|
+
}, ly = (e, t) => e != null && Number.isFinite(e = +e) ? e : t, jt = "abcdefghijklmnopqrstuvwxyz", ni = "0123456789", rl = {
|
|
14910
14967
|
DIGIT: ni,
|
|
14911
|
-
ALPHA:
|
|
14912
|
-
ALPHA_DIGIT:
|
|
14968
|
+
ALPHA: jt,
|
|
14969
|
+
ALPHA_DIGIT: jt + jt.toUpperCase() + ni
|
|
14913
14970
|
}, oy = (e = 16, t = rl.ALPHA_DIGIT) => {
|
|
14914
14971
|
let n = "";
|
|
14915
14972
|
const { length: s } = t;
|
|
@@ -14922,22 +14979,22 @@ function ay(e) {
|
|
|
14922
14979
|
}
|
|
14923
14980
|
const sy = (e) => {
|
|
14924
14981
|
const t = new Array(10), n = (s, i) => {
|
|
14925
|
-
if (
|
|
14982
|
+
if (Ft(s)) {
|
|
14926
14983
|
if (t.indexOf(s) >= 0)
|
|
14927
14984
|
return;
|
|
14928
14985
|
if (!("toJSON" in s)) {
|
|
14929
14986
|
t[i] = s;
|
|
14930
14987
|
const l = We(s) ? [] : {};
|
|
14931
|
-
return
|
|
14988
|
+
return at(s, (d, u) => {
|
|
14932
14989
|
const c = n(d, i + 1);
|
|
14933
|
-
!
|
|
14990
|
+
!ot(c) && (l[u] = c);
|
|
14934
14991
|
}), t[i] = void 0, l;
|
|
14935
14992
|
}
|
|
14936
14993
|
}
|
|
14937
14994
|
return s;
|
|
14938
14995
|
};
|
|
14939
14996
|
return n(e, 0);
|
|
14940
|
-
}, ry = we("AsyncFunction"), dy = (e) => e && (
|
|
14997
|
+
}, ry = we("AsyncFunction"), dy = (e) => e && (Ft(e) || be(e)) && be(e.then) && be(e.catch), I = {
|
|
14941
14998
|
isArray: We,
|
|
14942
14999
|
isArrayBuffer: nl,
|
|
14943
15000
|
isBuffer: Og,
|
|
@@ -14946,13 +15003,13 @@ const sy = (e) => {
|
|
|
14946
15003
|
isString: Ig,
|
|
14947
15004
|
isNumber: il,
|
|
14948
15005
|
isBoolean: Bg,
|
|
14949
|
-
isObject:
|
|
14950
|
-
isPlainObject:
|
|
15006
|
+
isObject: Ft,
|
|
15007
|
+
isPlainObject: bt,
|
|
14951
15008
|
isReadableStream: Hg,
|
|
14952
15009
|
isRequest: qg,
|
|
14953
15010
|
isResponse: Rg,
|
|
14954
15011
|
isHeaders: jg,
|
|
14955
|
-
isUndefined:
|
|
15012
|
+
isUndefined: ot,
|
|
14956
15013
|
isDate: Dg,
|
|
14957
15014
|
isFile: Fg,
|
|
14958
15015
|
isBlob: Mg,
|
|
@@ -14962,14 +15019,14 @@ const sy = (e) => {
|
|
|
14962
15019
|
isURLSearchParams: Eg,
|
|
14963
15020
|
isTypedArray: Jg,
|
|
14964
15021
|
isFileList: Pg,
|
|
14965
|
-
forEach:
|
|
15022
|
+
forEach: at,
|
|
14966
15023
|
merge: en,
|
|
14967
15024
|
extend: Ug,
|
|
14968
15025
|
trim: Ng,
|
|
14969
15026
|
stripBOM: zg,
|
|
14970
15027
|
inherits: Wg,
|
|
14971
15028
|
toFlatObject: Gg,
|
|
14972
|
-
kindOf:
|
|
15029
|
+
kindOf: Bt,
|
|
14973
15030
|
kindOfTest: we,
|
|
14974
15031
|
endsWith: Kg,
|
|
14975
15032
|
toArray: Yg,
|
|
@@ -15063,7 +15120,7 @@ function cy(e) {
|
|
|
15063
15120
|
const my = I.toFlatObject(I, {}, null, function(t) {
|
|
15064
15121
|
return /^is[A-Z]/.test(t);
|
|
15065
15122
|
});
|
|
15066
|
-
function
|
|
15123
|
+
function Mt(e, t, n) {
|
|
15067
15124
|
if (!I.isObject(e))
|
|
15068
15125
|
throw new TypeError("target must be an object");
|
|
15069
15126
|
t = t || new FormData(), n = I.toFlatObject(n, {
|
|
@@ -15139,7 +15196,7 @@ function li(e) {
|
|
|
15139
15196
|
});
|
|
15140
15197
|
}
|
|
15141
15198
|
function _n(e, t) {
|
|
15142
|
-
this._pairs = [], e &&
|
|
15199
|
+
this._pairs = [], e && Mt(e, this, t);
|
|
15143
15200
|
}
|
|
15144
15201
|
const ml = _n.prototype;
|
|
15145
15202
|
ml.append = function(t, n) {
|
|
@@ -15245,7 +15302,7 @@ self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Cy
|
|
|
15245
15302
|
...yy
|
|
15246
15303
|
};
|
|
15247
15304
|
function ky(e, t) {
|
|
15248
|
-
return
|
|
15305
|
+
return Mt(e, new ve.classes.URLSearchParams(), Object.assign({
|
|
15249
15306
|
visitor: function(n, s, i, l) {
|
|
15250
15307
|
return ve.isNode && I.isBuffer(n) ? (this.append(s, n.toString("base64")), !1) : l.defaultVisitor.apply(this, arguments);
|
|
15251
15308
|
}
|
|
@@ -15288,7 +15345,7 @@ function Sy(e, t, n) {
|
|
|
15288
15345
|
}
|
|
15289
15346
|
return (0, JSON.stringify)(e);
|
|
15290
15347
|
}
|
|
15291
|
-
const
|
|
15348
|
+
const st = {
|
|
15292
15349
|
transitional: fl,
|
|
15293
15350
|
adapter: ["xhr", "http", "fetch"],
|
|
15294
15351
|
transformRequest: [function(t, n) {
|
|
@@ -15307,7 +15364,7 @@ const at = {
|
|
|
15307
15364
|
return ky(t, this.formSerializer).toString();
|
|
15308
15365
|
if ((u = I.isFileList(t)) || s.indexOf("multipart/form-data") > -1) {
|
|
15309
15366
|
const c = this.env && this.env.FormData;
|
|
15310
|
-
return
|
|
15367
|
+
return Mt(
|
|
15311
15368
|
u ? { "files[]": t } : t,
|
|
15312
15369
|
c && new c(),
|
|
15313
15370
|
this.formSerializer
|
|
@@ -15317,7 +15374,7 @@ const at = {
|
|
|
15317
15374
|
return l || i ? (n.setContentType("application/json", !1), Sy(t)) : t;
|
|
15318
15375
|
}],
|
|
15319
15376
|
transformResponse: [function(t) {
|
|
15320
|
-
const n = this.transitional ||
|
|
15377
|
+
const n = this.transitional || st.transitional, s = n && n.forcedJSONParsing, i = this.responseType === "json";
|
|
15321
15378
|
if (I.isResponse(t) || I.isReadableStream(t))
|
|
15322
15379
|
return t;
|
|
15323
15380
|
if (t && I.isString(t) && (s && !this.responseType || i)) {
|
|
@@ -15355,7 +15412,7 @@ const at = {
|
|
|
15355
15412
|
}
|
|
15356
15413
|
};
|
|
15357
15414
|
I.forEach(["delete", "get", "head", "post", "put", "patch"], (e) => {
|
|
15358
|
-
|
|
15415
|
+
st.headers[e] = {};
|
|
15359
15416
|
});
|
|
15360
15417
|
const _y = I.toObjectSet([
|
|
15361
15418
|
"age",
|
|
@@ -15386,8 +15443,8 @@ const _y = I.toObjectSet([
|
|
|
15386
15443
|
function Xe(e) {
|
|
15387
15444
|
return e && String(e).trim().toLowerCase();
|
|
15388
15445
|
}
|
|
15389
|
-
function
|
|
15390
|
-
return e === !1 || e == null ? e : I.isArray(e) ? e.map(
|
|
15446
|
+
function xt(e) {
|
|
15447
|
+
return e === !1 || e == null ? e : I.isArray(e) ? e.map(xt) : String(e);
|
|
15391
15448
|
}
|
|
15392
15449
|
function Ly(e) {
|
|
15393
15450
|
const t = /* @__PURE__ */ Object.create(null), n = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
|
@@ -15397,7 +15454,7 @@ function Ly(e) {
|
|
|
15397
15454
|
return t;
|
|
15398
15455
|
}
|
|
15399
15456
|
const Iy = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());
|
|
15400
|
-
function
|
|
15457
|
+
function Nt(e, t, n, s, i) {
|
|
15401
15458
|
if (I.isFunction(s))
|
|
15402
15459
|
return s.call(this, t, n);
|
|
15403
15460
|
if (i && (t = n), !!I.isString(t)) {
|
|
@@ -15432,7 +15489,7 @@ class ue {
|
|
|
15432
15489
|
if (!g)
|
|
15433
15490
|
throw new Error("header name must be a non-empty string");
|
|
15434
15491
|
const h = I.findKey(i, g);
|
|
15435
|
-
(!h || i[h] === void 0 || f === !0 || f === void 0 && i[h] !== !1) && (i[h || c] =
|
|
15492
|
+
(!h || i[h] === void 0 || f === !0 || f === void 0 && i[h] !== !1) && (i[h || c] = xt(u));
|
|
15436
15493
|
}
|
|
15437
15494
|
const d = (u, c) => I.forEach(u, (f, g) => l(f, g, c));
|
|
15438
15495
|
if (I.isPlainObject(t) || t instanceof this.constructor)
|
|
@@ -15466,7 +15523,7 @@ class ue {
|
|
|
15466
15523
|
has(t, n) {
|
|
15467
15524
|
if (t = Xe(t), t) {
|
|
15468
15525
|
const s = I.findKey(this, t);
|
|
15469
|
-
return !!(s && this[s] !== void 0 && (!n ||
|
|
15526
|
+
return !!(s && this[s] !== void 0 && (!n || Nt(this, this[s], s, n)));
|
|
15470
15527
|
}
|
|
15471
15528
|
return !1;
|
|
15472
15529
|
}
|
|
@@ -15476,7 +15533,7 @@ class ue {
|
|
|
15476
15533
|
function l(d) {
|
|
15477
15534
|
if (d = Xe(d), d) {
|
|
15478
15535
|
const u = I.findKey(s, d);
|
|
15479
|
-
u && (!n ||
|
|
15536
|
+
u && (!n || Nt(s, s[u], u, n)) && (delete s[u], i = !0);
|
|
15480
15537
|
}
|
|
15481
15538
|
}
|
|
15482
15539
|
return I.isArray(t) ? t.forEach(l) : l(t), i;
|
|
@@ -15486,7 +15543,7 @@ class ue {
|
|
|
15486
15543
|
let s = n.length, i = !1;
|
|
15487
15544
|
for (; s--; ) {
|
|
15488
15545
|
const l = n[s];
|
|
15489
|
-
(!t ||
|
|
15546
|
+
(!t || Nt(this, this[l], l, t, !0)) && (delete this[l], i = !0);
|
|
15490
15547
|
}
|
|
15491
15548
|
return i;
|
|
15492
15549
|
}
|
|
@@ -15495,11 +15552,11 @@ class ue {
|
|
|
15495
15552
|
return I.forEach(this, (i, l) => {
|
|
15496
15553
|
const d = I.findKey(s, l);
|
|
15497
15554
|
if (d) {
|
|
15498
|
-
n[d] =
|
|
15555
|
+
n[d] = xt(i), delete n[l];
|
|
15499
15556
|
return;
|
|
15500
15557
|
}
|
|
15501
15558
|
const u = t ? By(l) : String(l).trim();
|
|
15502
|
-
u !== l && delete n[l], n[u] =
|
|
15559
|
+
u !== l && delete n[l], n[u] = xt(i), s[u] = !0;
|
|
15503
15560
|
}), this;
|
|
15504
15561
|
}
|
|
15505
15562
|
concat(...t) {
|
|
@@ -15550,8 +15607,8 @@ I.reduceDescriptors(ue.prototype, ({ value: e }, t) => {
|
|
|
15550
15607
|
};
|
|
15551
15608
|
});
|
|
15552
15609
|
I.freezeMethods(ue);
|
|
15553
|
-
function
|
|
15554
|
-
const n = this ||
|
|
15610
|
+
function Ut(e, t) {
|
|
15611
|
+
const n = this || st, s = t || n, i = ue.from(s.headers);
|
|
15555
15612
|
let l = s.data;
|
|
15556
15613
|
return I.forEach(e, function(u) {
|
|
15557
15614
|
l = u.call(n, l, i.normalize(), t ? t.status : void 0);
|
|
@@ -15607,7 +15664,7 @@ function Py(e, t) {
|
|
|
15607
15664
|
i || (i = setTimeout(() => (i = null, n = Date.now(), e.apply(null, arguments)), s - (u - n)));
|
|
15608
15665
|
};
|
|
15609
15666
|
}
|
|
15610
|
-
const
|
|
15667
|
+
const kt = (e, t, n = 3) => {
|
|
15611
15668
|
let s = 0;
|
|
15612
15669
|
const i = My(50, 250);
|
|
15613
15670
|
return Py((l) => {
|
|
@@ -15825,7 +15882,7 @@ const xl = (e) => {
|
|
|
15825
15882
|
)), g = null;
|
|
15826
15883
|
}, l === void 0 && d.setContentType(null), "setRequestHeader" in g && I.forEach(d.toJSON(), function(_, T) {
|
|
15827
15884
|
g.setRequestHeader(T, _);
|
|
15828
|
-
}), I.isUndefined(i.withCredentials) || (g.withCredentials = !!i.withCredentials), u && u !== "json" && (g.responseType = i.responseType), typeof i.onDownloadProgress == "function" && g.addEventListener("progress",
|
|
15885
|
+
}), I.isUndefined(i.withCredentials) || (g.withCredentials = !!i.withCredentials), u && u !== "json" && (g.responseType = i.responseType), typeof i.onDownloadProgress == "function" && g.addEventListener("progress", kt(i.onDownloadProgress, !0)), typeof i.onUploadProgress == "function" && g.upload && g.upload.addEventListener("progress", kt(i.onUploadProgress)), (i.cancelToken || i.signal) && (c = (x) => {
|
|
15829
15886
|
g && (s(!x || x.type ? new Ge(null, e, g) : x), g.abort(), g = null);
|
|
15830
15887
|
}, i.cancelToken && i.cancelToken.subscribe(c), i.signal && (i.signal.aborted ? c() : i.signal.addEventListener("abort", c)));
|
|
15831
15888
|
const w = Fy(i.url);
|
|
@@ -15896,7 +15953,7 @@ const xl = (e) => {
|
|
|
15896
15953
|
total: e,
|
|
15897
15954
|
loaded: s
|
|
15898
15955
|
}));
|
|
15899
|
-
},
|
|
15956
|
+
}, Pt = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Cl = Pt && typeof ReadableStream == "function", nn = Pt && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), zy = Cl && (() => {
|
|
15900
15957
|
let e = !1;
|
|
15901
15958
|
const t = new Request(ve.origin, {
|
|
15902
15959
|
body: new ReadableStream(),
|
|
@@ -15911,12 +15968,12 @@ const xl = (e) => {
|
|
|
15911
15968
|
return I.isReadableStream(new Response("").body);
|
|
15912
15969
|
} catch {
|
|
15913
15970
|
}
|
|
15914
|
-
})(),
|
|
15971
|
+
})(), wt = {
|
|
15915
15972
|
stream: ln && ((e) => e.body)
|
|
15916
15973
|
};
|
|
15917
|
-
|
|
15974
|
+
Pt && ((e) => {
|
|
15918
15975
|
["text", "arrayBuffer", "blob", "formData", "stream"].forEach((t) => {
|
|
15919
|
-
!
|
|
15976
|
+
!wt[t] && (wt[t] = I.isFunction(e[t]) ? (n) => n[t]() : (n, s) => {
|
|
15920
15977
|
throw new z(`Response type '${t}' is not supported`, z.ERR_NOT_SUPPORT, s);
|
|
15921
15978
|
});
|
|
15922
15979
|
});
|
|
@@ -15935,7 +15992,7 @@ const Wy = async (e) => {
|
|
|
15935
15992
|
}, Gy = async (e, t) => {
|
|
15936
15993
|
const n = I.toFiniteNumber(e.getContentLength());
|
|
15937
15994
|
return n ?? Wy(t);
|
|
15938
|
-
}, Ky =
|
|
15995
|
+
}, Ky = Pt && (async (e) => {
|
|
15939
15996
|
let {
|
|
15940
15997
|
url: t,
|
|
15941
15998
|
method: n,
|
|
@@ -15967,7 +16024,7 @@ const Wy = async (e) => {
|
|
|
15967
16024
|
}), R;
|
|
15968
16025
|
I.isFormData(s) && (R = E.headers.get("content-type")) && g.setContentType(R), E.body && (s = ri(E.body, ui, di(
|
|
15969
16026
|
H,
|
|
15970
|
-
|
|
16027
|
+
kt(c)
|
|
15971
16028
|
), null, nn));
|
|
15972
16029
|
}
|
|
15973
16030
|
I.isString(h) || (h = h ? "cors" : "omit"), D = new Request(t, {
|
|
@@ -15990,13 +16047,13 @@ const Wy = async (e) => {
|
|
|
15990
16047
|
F = new Response(
|
|
15991
16048
|
ri(F.body, ui, u && di(
|
|
15992
16049
|
R,
|
|
15993
|
-
|
|
16050
|
+
kt(u, !0)
|
|
15994
16051
|
), U && B, nn),
|
|
15995
16052
|
E
|
|
15996
16053
|
);
|
|
15997
16054
|
}
|
|
15998
16055
|
f = f || "text";
|
|
15999
|
-
let G = await
|
|
16056
|
+
let G = await wt[I.findKey(wt, f) || "text"](F, e);
|
|
16000
16057
|
return !U && B(), _ && _(), await new Promise((E, R) => {
|
|
16001
16058
|
yl(E, R, {
|
|
16002
16059
|
data: G,
|
|
@@ -16060,22 +16117,22 @@ const ci = (e) => `- ${e}`, Yy = (e) => I.isFunction(e) || e === null || e === !
|
|
|
16060
16117
|
},
|
|
16061
16118
|
adapters: on
|
|
16062
16119
|
};
|
|
16063
|
-
function
|
|
16120
|
+
function zt(e) {
|
|
16064
16121
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
|
16065
16122
|
throw new Ge(null, e);
|
|
16066
16123
|
}
|
|
16067
16124
|
function mi(e) {
|
|
16068
|
-
return
|
|
16125
|
+
return zt(e), e.headers = ue.from(e.headers), e.data = Ut.call(
|
|
16069
16126
|
e,
|
|
16070
16127
|
e.transformRequest
|
|
16071
|
-
), ["post", "put", "patch"].indexOf(e.method) !== -1 && e.headers.setContentType("application/x-www-form-urlencoded", !1), vl.getAdapter(e.adapter ||
|
|
16072
|
-
return
|
|
16128
|
+
), ["post", "put", "patch"].indexOf(e.method) !== -1 && e.headers.setContentType("application/x-www-form-urlencoded", !1), vl.getAdapter(e.adapter || st.adapter)(e).then(function(s) {
|
|
16129
|
+
return zt(e), s.data = Ut.call(
|
|
16073
16130
|
e,
|
|
16074
16131
|
e.transformResponse,
|
|
16075
16132
|
s
|
|
16076
16133
|
), s.headers = ue.from(s.headers), s;
|
|
16077
16134
|
}, function(s) {
|
|
16078
|
-
return gl(s) || (
|
|
16135
|
+
return gl(s) || (zt(e), s && s.response && (s.response.data = Ut.call(
|
|
16079
16136
|
e,
|
|
16080
16137
|
e.transformResponse,
|
|
16081
16138
|
s.response
|
|
@@ -16398,13 +16455,13 @@ function wl(e) {
|
|
|
16398
16455
|
return wl(He(e, i));
|
|
16399
16456
|
}, n;
|
|
16400
16457
|
}
|
|
16401
|
-
const ee = wl(
|
|
16458
|
+
const ee = wl(st);
|
|
16402
16459
|
ee.Axios = Ae;
|
|
16403
16460
|
ee.CanceledError = Ge;
|
|
16404
16461
|
ee.CancelToken = In;
|
|
16405
16462
|
ee.isCancel = gl;
|
|
16406
16463
|
ee.VERSION = kl;
|
|
16407
|
-
ee.toFormData =
|
|
16464
|
+
ee.toFormData = Mt;
|
|
16408
16465
|
ee.AxiosError = z;
|
|
16409
16466
|
ee.Cancel = ee.CanceledError;
|
|
16410
16467
|
ee.all = function(t) {
|
|
@@ -17009,7 +17066,7 @@ function Ob(e, t, n, s, i, l) {
|
|
|
17009
17066
|
}, 8, ["validationStatus", "systemMessage"])) : m("", !0),
|
|
17010
17067
|
o("div", L({
|
|
17011
17068
|
class: ["box flex-container vertical", { "drop-area": n.enableDragAndDrop, "allow-drop": i.allowDrop }]
|
|
17012
|
-
},
|
|
17069
|
+
}, Wt(l.dragAndDropHandler, !0)), [
|
|
17013
17070
|
i.listOfFiles.length ? (a(), r("div", eb, [
|
|
17014
17071
|
n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("div", tb, [
|
|
17015
17072
|
p(d, L(n.cmdHeadlineSummaryOfAllFiles, { headlineLevel: "4" }), {
|
|
@@ -17233,7 +17290,7 @@ function Ob(e, t, n, s, i, l) {
|
|
|
17233
17290
|
href: "#",
|
|
17234
17291
|
onClick: t[7] || (t[7] = S((...g) => l.selectFiles && l.selectFiles(...g), ["prevent"])),
|
|
17235
17292
|
class: ["cmd-upload-form box", { "drop-area": n.enableDragAndDrop, "allow-drop": i.allowDrop }]
|
|
17236
|
-
},
|
|
17293
|
+
}, Wt(l.dragAndDropHandler, !0)), [
|
|
17237
17294
|
i.uploadInitiated ? (a(), r("span", Sb, [
|
|
17238
17295
|
o("span", null, y(l.getPercentage(l.totalUploadProgress)), 1),
|
|
17239
17296
|
o("progress", {
|
|
@@ -18308,14 +18365,14 @@ const lx = /* @__PURE__ */ P(tx, [["render", ix]]), ox = {
|
|
|
18308
18365
|
};
|
|
18309
18366
|
}
|
|
18310
18367
|
};
|
|
18311
|
-
function
|
|
18368
|
+
function vk(e = !1) {
|
|
18312
18369
|
return e ? (/* @__PURE__ */ new Date()).toISOString() : (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
18313
18370
|
}
|
|
18314
|
-
function
|
|
18371
|
+
function kk() {
|
|
18315
18372
|
const e = /* @__PURE__ */ new Date(), t = String(e.getHours()).padStart(2, "0"), n = String(e.getMinutes()).padStart(2, "0");
|
|
18316
18373
|
return t + ":" + n;
|
|
18317
18374
|
}
|
|
18318
|
-
function
|
|
18375
|
+
function wk(e, t = "+", n = 1) {
|
|
18319
18376
|
const s = new Date(e);
|
|
18320
18377
|
if (t === "+")
|
|
18321
18378
|
s.setDate(s.getDate() + n);
|
|
@@ -18325,7 +18382,7 @@ function kk(e, t = "+", n = 1) {
|
|
|
18325
18382
|
throw new Error("function 'getDate()' received invalid operator as parameter. Use '+' to add or '-' to subtract days.");
|
|
18326
18383
|
return s;
|
|
18327
18384
|
}
|
|
18328
|
-
function
|
|
18385
|
+
function Tk(e, t = "short") {
|
|
18329
18386
|
const n = new Date(e), s = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], i = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
|
|
18330
18387
|
if (t === "short")
|
|
18331
18388
|
return s[n.getDay()];
|
|
@@ -19288,7 +19345,7 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
|
|
|
19288
19345
|
type: "text",
|
|
19289
19346
|
name: "form-element-text-name",
|
|
19290
19347
|
htmlClass: "form-element-text-class",
|
|
19291
|
-
value: "
|
|
19348
|
+
value: "",
|
|
19292
19349
|
fieldIconClass: "icon-lock",
|
|
19293
19350
|
labelText: "Text input",
|
|
19294
19351
|
placeholder: "Placeholdertext",
|
|
@@ -19300,14 +19357,13 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
|
|
|
19300
19357
|
formElements: [
|
|
19301
19358
|
{
|
|
19302
19359
|
element: "input",
|
|
19303
|
-
type: "
|
|
19304
|
-
name: "form-element-
|
|
19305
|
-
htmlClass: "form-element-
|
|
19306
|
-
id: "form-element-
|
|
19360
|
+
type: "text",
|
|
19361
|
+
name: "form-element-text-name",
|
|
19362
|
+
htmlClass: "form-element-text-class",
|
|
19363
|
+
id: "form-element-text-id",
|
|
19307
19364
|
value: "default value",
|
|
19308
19365
|
fieldIconClass: "icon-cogs",
|
|
19309
|
-
labelText: "
|
|
19310
|
-
placeholder: "Placeholdertext",
|
|
19366
|
+
labelText: "Username input",
|
|
19311
19367
|
required: !0,
|
|
19312
19368
|
disabled: !1
|
|
19313
19369
|
},
|
|
@@ -21526,7 +21582,7 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
|
|
|
21526
21582
|
text: "Zimbabwe",
|
|
21527
21583
|
value: "zw"
|
|
21528
21584
|
}
|
|
21529
|
-
], i1 = "comand-component-library", l1 = "4.2.
|
|
21585
|
+
], i1 = "comand-component-library", l1 = "4.2.74", o1 = "GPL-3.0-only", a1 = "CoManD-UI", s1 = "module", r1 = {
|
|
21530
21586
|
prepublishOnly: "npm run build-lib",
|
|
21531
21587
|
dev: "vite",
|
|
21532
21588
|
build: "vite build",
|
|
@@ -22659,6 +22715,7 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
|
|
|
22659
22715
|
},
|
|
22660
22716
|
data() {
|
|
22661
22717
|
return {
|
|
22718
|
+
cmdFormData: {},
|
|
22662
22719
|
smartSearchObject: { id: 3, displayValue: "smartSearchDisplayValue" },
|
|
22663
22720
|
smartSearchString: "",
|
|
22664
22721
|
selectedLanguage: "none",
|
|
@@ -22857,6 +22914,9 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
|
|
|
22857
22914
|
}
|
|
22858
22915
|
},
|
|
22859
22916
|
methods: {
|
|
22917
|
+
myAlert(e) {
|
|
22918
|
+
alert(e);
|
|
22919
|
+
},
|
|
22860
22920
|
toggleSystemMessage(e, t) {
|
|
22861
22921
|
console.log("event", e), e === "error" ? t.setErrorOnPage("Please fill all required fields!") : t.removeErrorOnPage();
|
|
22862
22922
|
},
|
|
@@ -23088,86 +23148,86 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
|
|
|
23088
23148
|
}, Ov = {
|
|
23089
23149
|
class: "headline-demopage",
|
|
23090
23150
|
id: "section-multistep-form-wrapper"
|
|
23091
|
-
}, Lv = ["onClick"], Iv = ["onClick"], Bv = ["
|
|
23151
|
+
}, Lv = ["onClick"], Iv = ["onClick"], Bv = ["onUpdate:modelValue"], Dv = ["onClick"], Fv = { class: "flex-container" }, Mv = ["onClick"], Pv = { key: 0 }, Vv = ["onClick"], Av = { key: 0 }, Ev = ["onClick"], Hv = { key: 0 }, qv = { key: 0 }, Rv = { key: 0 }, jv = { class: "button-wrapper reverse justify-content-space-between" }, Nv = {
|
|
23092
23152
|
class: "headline-demopage",
|
|
23093
23153
|
id: "section-multistep-form-progress-bar"
|
|
23094
|
-
},
|
|
23154
|
+
}, Uv = {
|
|
23095
23155
|
class: "headline-demopage",
|
|
23096
23156
|
id: "section-newsletter-subscription"
|
|
23097
|
-
},
|
|
23157
|
+
}, zv = {
|
|
23098
23158
|
class: "headline-demopage",
|
|
23099
23159
|
id: "section-opening-hours"
|
|
23100
|
-
},
|
|
23160
|
+
}, Wv = {
|
|
23101
23161
|
class: "headline-demopage",
|
|
23102
23162
|
id: "section-page-footer"
|
|
23103
|
-
},
|
|
23163
|
+
}, Gv = {
|
|
23104
23164
|
class: "headline-demopage",
|
|
23105
23165
|
id: "section-page-header"
|
|
23106
|
-
},
|
|
23166
|
+
}, Kv = {
|
|
23107
23167
|
class: "headline-demopage",
|
|
23108
23168
|
id: "section-pagination"
|
|
23109
|
-
},
|
|
23169
|
+
}, Yv = {
|
|
23110
23170
|
class: "headline-demopage",
|
|
23111
23171
|
id: "section-paragraph"
|
|
23112
|
-
},
|
|
23172
|
+
}, Jv = {
|
|
23113
23173
|
class: "headline-demopage",
|
|
23114
23174
|
id: "section-section"
|
|
23115
|
-
},
|
|
23175
|
+
}, Zv = {
|
|
23116
23176
|
class: "headline-demopage",
|
|
23117
23177
|
id: "section-site-header"
|
|
23118
|
-
},
|
|
23178
|
+
}, Qv = {
|
|
23119
23179
|
class: "headline-demopage",
|
|
23120
23180
|
id: "section-site-search"
|
|
23121
|
-
},
|
|
23181
|
+
}, Xv = {
|
|
23122
23182
|
class: "headline-demopage",
|
|
23123
23183
|
id: "section-slideshow"
|
|
23124
|
-
},
|
|
23184
|
+
}, $v = {
|
|
23125
23185
|
class: "headline-demopage",
|
|
23126
23186
|
id: "section-smart-search"
|
|
23127
|
-
},
|
|
23187
|
+
}, ek = {
|
|
23128
23188
|
class: "headline-demopage",
|
|
23129
23189
|
id: "section-social-networks"
|
|
23130
|
-
},
|
|
23190
|
+
}, tk = {
|
|
23131
23191
|
class: "headline-demopage",
|
|
23132
23192
|
id: "section-system-message"
|
|
23133
|
-
},
|
|
23193
|
+
}, nk = {
|
|
23134
23194
|
class: "headline-demopage",
|
|
23135
23195
|
id: "section-tables"
|
|
23136
|
-
},
|
|
23196
|
+
}, ik = {
|
|
23137
23197
|
class: "headline-demopage",
|
|
23138
23198
|
id: "section-tabs"
|
|
23139
|
-
},
|
|
23199
|
+
}, lk = {
|
|
23140
23200
|
class: "headline-demopage",
|
|
23141
23201
|
id: "section-tag"
|
|
23142
|
-
},
|
|
23202
|
+
}, ok = {
|
|
23143
23203
|
class: "headline-demopage",
|
|
23144
23204
|
id: "section-text-image-block"
|
|
23145
|
-
},
|
|
23205
|
+
}, ak = { class: "flex-container" }, sk = {
|
|
23146
23206
|
class: "headline-demopage",
|
|
23147
23207
|
id: "section-thumbnail-scroller"
|
|
23148
|
-
},
|
|
23208
|
+
}, rk = { class: "inline-size" }, dk = {
|
|
23149
23209
|
class: "headline-demopage",
|
|
23150
23210
|
id: "section-toggle-dark-mode"
|
|
23151
|
-
},
|
|
23211
|
+
}, uk = {
|
|
23152
23212
|
class: "headline-demopage",
|
|
23153
23213
|
id: "section-tooltip"
|
|
23154
|
-
},
|
|
23214
|
+
}, ck = {
|
|
23155
23215
|
class: "headline-demopage",
|
|
23156
23216
|
id: "section-upload-form"
|
|
23157
|
-
},
|
|
23217
|
+
}, mk = {
|
|
23158
23218
|
class: "headline-demopage",
|
|
23159
23219
|
id: "section-width-limitation-wrapper"
|
|
23160
|
-
},
|
|
23220
|
+
}, pk = {
|
|
23161
23221
|
key: 2,
|
|
23162
23222
|
id: "content"
|
|
23163
23223
|
};
|
|
23164
|
-
function
|
|
23165
|
-
const d = wn, u = Ni, c = ch, f = vn, g = zi, h = xh, w = Tl, x = Ai, _ = Gi, T = te, D = Rh, B = Wi, H = eh, F = Cn, U = Ei, G = fr, E = vr, R = Ri, W = Ui, Q = Tc, Z = Fc, ie = Bm, me = Ji, le = J, ne = K, se = ke, pe = Km, fe = $m, X = Pe, he = yp, A = qx, re = Zi, xe = _e("router-view"), Te = Zp, Oe = Xi, Ve = tf, de = Lf,
|
|
23224
|
+
function fk(e, t, n, s, i, l) {
|
|
23225
|
+
const d = wn, u = Ni, c = ch, f = vn, g = zi, h = xh, w = Tl, x = Ai, _ = Gi, T = te, D = Rh, B = Wi, H = eh, F = Cn, U = Ei, G = fr, E = vr, R = Ri, W = Ui, Q = Tc, Z = Fc, ie = Bm, me = Ji, le = J, ne = K, se = ke, pe = Km, fe = $m, X = Pe, he = yp, A = qx, re = Zi, xe = _e("router-view"), Te = Zp, Oe = Xi, Ve = tf, de = Lf, rt = Nf, dt = Kf, ut = Qi, ct = lx, je = lh, Ke = hh, mt = Ih, Y = Ah, Bl = $i, Dl = Kh, Fl = Re, Bn = lg, Ml = el, Pl = ji, Vt = Cg, Vl = Hi, Al = Tg, At = Pi, El = Lb, Hl = _l, ql = nm, Rl = Xc, jl = qd, Nl = Vb, Ul = Zl("fancybox");
|
|
23166
23226
|
return $((a(), r("div", {
|
|
23167
23227
|
class: "page-wrapper",
|
|
23168
23228
|
id: l.templateId
|
|
23169
23229
|
}, [
|
|
23170
|
-
t[
|
|
23230
|
+
t[328] || (t[328] = o("a", { id: "anchor-back-to-top" }, null, -1)),
|
|
23171
23231
|
i.showLeftSidebar ? (a(), v(c, {
|
|
23172
23232
|
key: 0,
|
|
23173
23233
|
cmdHeadline: { headlineText: "Site Settings", headlineLevel: 3, textAlign: "center" },
|
|
@@ -23192,11 +23252,11 @@ function pk(e, t, n, s, i, l) {
|
|
|
23192
23252
|
}, {
|
|
23193
23253
|
body: k(() => [
|
|
23194
23254
|
o("label", v1, [
|
|
23195
|
-
t[
|
|
23255
|
+
t[134] || (t[134] = o("span", null, "Select template", -1)),
|
|
23196
23256
|
$(o("select", {
|
|
23197
23257
|
id: "select-template",
|
|
23198
23258
|
"onUpdate:modelValue": t[0] || (t[0] = (j) => i.selectedTemplate = j)
|
|
23199
|
-
}, t[
|
|
23259
|
+
}, t[133] || (t[133] = [
|
|
23200
23260
|
o("option", { value: "blank" }, "Blank/Unstyled", -1),
|
|
23201
23261
|
o("option", { value: "material-web" }, "Material-Web", -1),
|
|
23202
23262
|
o("option", { value: "tailwind" }, "Tailwind", -1)
|
|
@@ -23205,7 +23265,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23205
23265
|
])
|
|
23206
23266
|
]),
|
|
23207
23267
|
o("div", null, [
|
|
23208
|
-
t[
|
|
23268
|
+
t[138] || (t[138] = o("span", null, "Color Scheme", -1)),
|
|
23209
23269
|
o("div", k1, [
|
|
23210
23270
|
o("label", w1, [
|
|
23211
23271
|
$(o("input", {
|
|
@@ -23215,9 +23275,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
23215
23275
|
"onUpdate:modelValue": t[1] || (t[1] = (j) => i.colorScheme = j),
|
|
23216
23276
|
value: "none"
|
|
23217
23277
|
}, null, 512), [
|
|
23218
|
-
[
|
|
23278
|
+
[Et, i.colorScheme]
|
|
23219
23279
|
]),
|
|
23220
|
-
t[
|
|
23280
|
+
t[135] || (t[135] = o("span", { class: "label-text" }, "Color-Scheme by Browser/OS", -1))
|
|
23221
23281
|
]),
|
|
23222
23282
|
o("label", T1, [
|
|
23223
23283
|
$(o("input", {
|
|
@@ -23227,9 +23287,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
23227
23287
|
"onUpdate:modelValue": t[2] || (t[2] = (j) => i.colorScheme = j),
|
|
23228
23288
|
value: "light"
|
|
23229
23289
|
}, null, 512), [
|
|
23230
|
-
[
|
|
23290
|
+
[Et, i.colorScheme]
|
|
23231
23291
|
]),
|
|
23232
|
-
t[
|
|
23292
|
+
t[136] || (t[136] = o("span", { class: "label-text" }, "Light Mode", -1))
|
|
23233
23293
|
]),
|
|
23234
23294
|
o("label", S1, [
|
|
23235
23295
|
$(o("input", {
|
|
@@ -23239,9 +23299,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
23239
23299
|
"onUpdate:modelValue": t[3] || (t[3] = (j) => i.colorScheme = j),
|
|
23240
23300
|
value: "dark"
|
|
23241
23301
|
}, null, 512), [
|
|
23242
|
-
[
|
|
23302
|
+
[Et, i.colorScheme]
|
|
23243
23303
|
]),
|
|
23244
|
-
t[
|
|
23304
|
+
t[137] || (t[137] = o("span", { class: "label-text" }, "Dark Mode", -1))
|
|
23245
23305
|
])
|
|
23246
23306
|
])
|
|
23247
23307
|
])
|
|
@@ -23288,7 +23348,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23288
23348
|
}, " Contact Information ")
|
|
23289
23349
|
]),
|
|
23290
23350
|
o("li", null, [
|
|
23291
|
-
t[
|
|
23351
|
+
t[139] || (t[139] = M(" Multiple Lists Of Links ")),
|
|
23292
23352
|
o("ul", null, [
|
|
23293
23353
|
o("li", null, [
|
|
23294
23354
|
o("a", {
|
|
@@ -23305,7 +23365,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23305
23365
|
])
|
|
23306
23366
|
]),
|
|
23307
23367
|
o("li", null, [
|
|
23308
|
-
t[
|
|
23368
|
+
t[140] || (t[140] = M(" Multiple Box Wrapper ")),
|
|
23309
23369
|
o("ul", null, [
|
|
23310
23370
|
o("li", null, [
|
|
23311
23371
|
o("a", {
|
|
@@ -23329,9 +23389,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
23329
23389
|
_: 1
|
|
23330
23390
|
}, 8, ["openBoxesByDefault"]),
|
|
23331
23391
|
o("dl", O1, [
|
|
23332
|
-
t[
|
|
23392
|
+
t[141] || (t[141] = o("dt", null, "Frontend-Framework Version:", -1)),
|
|
23333
23393
|
o("dd", null, y(i.packageJson.dependencies["comand-frontend-framework"].replace("^", "")), 1),
|
|
23334
|
-
t[
|
|
23394
|
+
t[142] || (t[142] = o("dt", null, "Component-Library Version:", -1)),
|
|
23335
23395
|
o("dd", null, y(i.packageJson.version), 1)
|
|
23336
23396
|
])
|
|
23337
23397
|
]),
|
|
@@ -23342,7 +23402,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23342
23402
|
class: "button primary",
|
|
23343
23403
|
title: "Open Template Selection",
|
|
23344
23404
|
onClick: t[9] || (t[9] = S((b) => l.openBox(0), ["prevent"]))
|
|
23345
|
-
}, t[
|
|
23405
|
+
}, t[143] || (t[143] = [
|
|
23346
23406
|
o("span", { class: "icon-settings-template" }, null, -1)
|
|
23347
23407
|
])),
|
|
23348
23408
|
o("a", {
|
|
@@ -23350,7 +23410,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23350
23410
|
class: "button primary",
|
|
23351
23411
|
title: "Open Components Overview",
|
|
23352
23412
|
onClick: t[10] || (t[10] = S((b) => l.openBox(1), ["prevent"]))
|
|
23353
|
-
}, t[
|
|
23413
|
+
}, t[144] || (t[144] = [
|
|
23354
23414
|
o("span", { class: "icon-settings-component" }, null, -1)
|
|
23355
23415
|
])),
|
|
23356
23416
|
o("a", {
|
|
@@ -23358,13 +23418,13 @@ function pk(e, t, n, s, i, l) {
|
|
|
23358
23418
|
class: "button primary",
|
|
23359
23419
|
title: "Open Page-Templates",
|
|
23360
23420
|
onClick: t[11] || (t[11] = S((b) => l.openBox(2), ["prevent"]))
|
|
23361
|
-
}, t[
|
|
23421
|
+
}, t[145] || (t[145] = [
|
|
23362
23422
|
o("span", { class: "icon-file-settings" }, null, -1)
|
|
23363
23423
|
])),
|
|
23364
23424
|
o("a", {
|
|
23365
23425
|
href: "#",
|
|
23366
23426
|
onClick: t[12] || (t[12] = S((b) => i.showLeftSidebar = !1, ["prevent"]))
|
|
23367
|
-
}, t[
|
|
23427
|
+
}, t[146] || (t[146] = [
|
|
23368
23428
|
o("span", null, "Hide sidebar", -1)
|
|
23369
23429
|
]))
|
|
23370
23430
|
])
|
|
@@ -23386,7 +23446,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23386
23446
|
}),
|
|
23387
23447
|
i.componentView ? (a(), r("main", I1, [
|
|
23388
23448
|
p(w, null, {
|
|
23389
|
-
default: k(() => t[
|
|
23449
|
+
default: k(() => t[147] || (t[147] = [
|
|
23390
23450
|
o("h1", { class: "headline-demopage" }, "Components Overview", -1)
|
|
23391
23451
|
])),
|
|
23392
23452
|
_: 1
|
|
@@ -23394,7 +23454,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23394
23454
|
p(w, null, {
|
|
23395
23455
|
default: k(() => [
|
|
23396
23456
|
o("h2", B1, [
|
|
23397
|
-
t[
|
|
23457
|
+
t[148] || (t[148] = o("span", null, "Address Data", -1)),
|
|
23398
23458
|
o("a", {
|
|
23399
23459
|
href: "#",
|
|
23400
23460
|
class: "button small icon-cog",
|
|
@@ -23413,11 +23473,11 @@ function pk(e, t, n, s, i, l) {
|
|
|
23413
23473
|
}),
|
|
23414
23474
|
p(w, null, {
|
|
23415
23475
|
default: k(() => [
|
|
23416
|
-
t[
|
|
23476
|
+
t[188] || (t[188] = o("h2", {
|
|
23417
23477
|
class: "headline-demopage",
|
|
23418
23478
|
id: "section-advanced-form-elements"
|
|
23419
23479
|
}, "Advanced Form Elements", -1)),
|
|
23420
|
-
t[
|
|
23480
|
+
t[189] || (t[189] = o("h3", null, [
|
|
23421
23481
|
o("span", null, "Form elements status:")
|
|
23422
23482
|
], -1)),
|
|
23423
23483
|
o("div", F1, [
|
|
@@ -23484,9 +23544,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
23484
23544
|
}, {
|
|
23485
23545
|
default: k(() => [
|
|
23486
23546
|
o("fieldset", V1, [
|
|
23487
|
-
t[
|
|
23547
|
+
t[168] || (t[168] = o("legend", null, "Legend", -1)),
|
|
23488
23548
|
o("h2", A1, [
|
|
23489
|
-
t[
|
|
23549
|
+
t[149] || (t[149] = o("span", null, "Form Element-Component", -1)),
|
|
23490
23550
|
o("a", {
|
|
23491
23551
|
href: "#",
|
|
23492
23552
|
class: "button small icon-cog",
|
|
@@ -23532,7 +23592,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23532
23592
|
tooltipText: "This is a tooltip"
|
|
23533
23593
|
}, { useCustomTooltip: !1 }), null, 16, ["status", "disabled"])
|
|
23534
23594
|
]),
|
|
23535
|
-
t[
|
|
23595
|
+
t[169] || (t[169] = o("h3", null, "Inputfields in Columns", -1)),
|
|
23536
23596
|
o("div", q1, [
|
|
23537
23597
|
p(T, {
|
|
23538
23598
|
element: "input",
|
|
@@ -23546,7 +23606,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23546
23606
|
status: i.validationStatus,
|
|
23547
23607
|
disabled: i.disabledStatus
|
|
23548
23608
|
}, {
|
|
23549
|
-
labeltext: k(() => t[
|
|
23609
|
+
labeltext: k(() => t[150] || (t[150] = [
|
|
23550
23610
|
o("span", { innerHTML: "Label with <a href='#'>Link</a> given by slot" }, null, -1)
|
|
23551
23611
|
])),
|
|
23552
23612
|
_: 1
|
|
@@ -23668,7 +23728,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23668
23728
|
status: i.validationStatus,
|
|
23669
23729
|
disabled: i.disabledStatus
|
|
23670
23730
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
|
23671
|
-
t[
|
|
23731
|
+
t[170] || (t[170] = o("h3", null, "Searchfields", -1)),
|
|
23672
23732
|
o("div", j1, [
|
|
23673
23733
|
p(T, {
|
|
23674
23734
|
element: "input",
|
|
@@ -23710,7 +23770,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23710
23770
|
disabled: i.disabledStatus
|
|
23711
23771
|
}, null, 8, ["listOfRecommendations", "cmdFormElement", "modelValue", "disabled"])
|
|
23712
23772
|
]),
|
|
23713
|
-
t[
|
|
23773
|
+
t[171] || (t[171] = o("h3", null, "Textarea", -1)),
|
|
23714
23774
|
p(T, {
|
|
23715
23775
|
element: "textarea",
|
|
23716
23776
|
labelText: "Label for textarea:",
|
|
@@ -23724,9 +23784,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
23724
23784
|
status: i.validationStatus,
|
|
23725
23785
|
disabled: i.disabledStatus
|
|
23726
23786
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
|
23727
|
-
t[
|
|
23787
|
+
t[172] || (t[172] = o("hr", null, null, -1)),
|
|
23728
23788
|
o("h3", N1, [
|
|
23729
|
-
t[
|
|
23789
|
+
t[151] || (t[151] = o("span", null, "Fake Selects", -1)),
|
|
23730
23790
|
o("a", {
|
|
23731
23791
|
href: "#",
|
|
23732
23792
|
class: "button small icon-cog",
|
|
@@ -23799,21 +23859,21 @@ function pk(e, t, n, s, i, l) {
|
|
|
23799
23859
|
type: "color"
|
|
23800
23860
|
}, null, 8, ["status", "disabled", "selectData", "modelValue"])
|
|
23801
23861
|
]),
|
|
23802
|
-
t[
|
|
23803
|
-
t[
|
|
23862
|
+
t[173] || (t[173] = o("hr", null, null, -1)),
|
|
23863
|
+
t[174] || (t[174] = o("h2", null, "Progress Bar [native]", -1)),
|
|
23804
23864
|
p(H, {
|
|
23805
23865
|
labelText: "Progress Bar (with optional output):",
|
|
23806
23866
|
id: "progress-bar2",
|
|
23807
23867
|
max: "100"
|
|
23808
23868
|
}),
|
|
23809
|
-
t[
|
|
23869
|
+
t[175] || (t[175] = o("h2", null, "Slider [native]", -1)),
|
|
23810
23870
|
o("div", {
|
|
23811
23871
|
class: C(["label", i.validationStatus])
|
|
23812
23872
|
}, [
|
|
23813
|
-
t[
|
|
23873
|
+
t[154] || (t[154] = o("span", { class: "label-text" }, "Single-Slider (with in- and output):", -1)),
|
|
23814
23874
|
o("span", z1, [
|
|
23815
23875
|
o("label", W1, [
|
|
23816
|
-
t[
|
|
23876
|
+
t[152] || (t[152] = o("span", { class: "label-text" }, [
|
|
23817
23877
|
o("span", null, "Range Value:")
|
|
23818
23878
|
], -1)),
|
|
23819
23879
|
$(o("input", {
|
|
@@ -23825,11 +23885,11 @@ function pk(e, t, n, s, i, l) {
|
|
|
23825
23885
|
max: "100",
|
|
23826
23886
|
id: "range-value"
|
|
23827
23887
|
}, null, 10, G1), [
|
|
23828
|
-
[
|
|
23888
|
+
[et, i.rangeValue]
|
|
23829
23889
|
])
|
|
23830
23890
|
]),
|
|
23831
23891
|
o("label", K1, [
|
|
23832
|
-
t[
|
|
23892
|
+
t[153] || (t[153] = o("span", { class: "label-text hidden" }, [
|
|
23833
23893
|
o("span", null, "Range Value")
|
|
23834
23894
|
], -1)),
|
|
23835
23895
|
$(o("input", {
|
|
@@ -23841,14 +23901,14 @@ function pk(e, t, n, s, i, l) {
|
|
|
23841
23901
|
min: "0",
|
|
23842
23902
|
max: "100"
|
|
23843
23903
|
}, null, 8, Y1), [
|
|
23844
|
-
[
|
|
23904
|
+
[et, i.rangeValue]
|
|
23845
23905
|
])
|
|
23846
23906
|
])
|
|
23847
23907
|
])
|
|
23848
23908
|
], 2),
|
|
23849
|
-
t[
|
|
23850
|
-
t[
|
|
23851
|
-
t[
|
|
23909
|
+
t[176] || (t[176] = o("hr", null, null, -1)),
|
|
23910
|
+
t[177] || (t[177] = o("h2", null, "Toggle-Switches", -1)),
|
|
23911
|
+
t[178] || (t[178] = o("h3", null, "Switches without switch-labels", -1)),
|
|
23852
23912
|
p(T, {
|
|
23853
23913
|
element: "input",
|
|
23854
23914
|
type: "checkbox",
|
|
@@ -23873,7 +23933,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
23873
23933
|
status: i.validationStatus,
|
|
23874
23934
|
disabled: i.disabledStatus
|
|
23875
23935
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
|
23876
|
-
t[
|
|
23936
|
+
t[179] || (t[179] = o("h3", null, "Switches with switch-labels", -1)),
|
|
23877
23937
|
p(T, {
|
|
23878
23938
|
element: "input",
|
|
23879
23939
|
type: "checkbox",
|
|
@@ -23948,15 +24008,15 @@ function pk(e, t, n, s, i, l) {
|
|
|
23948
24008
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
|
23949
24009
|
o("p", null, [
|
|
23950
24010
|
M(" checkbox (required) with boolean: " + y(i.checkboxRequiredValue), 1),
|
|
23951
|
-
t[154] || (t[154] = o("br", null, null, -1)),
|
|
23952
|
-
M(" checkbox with boolean: " + y(i.checkboxValue), 1),
|
|
23953
24011
|
t[155] || (t[155] = o("br", null, null, -1)),
|
|
24012
|
+
M(" checkbox with boolean: " + y(i.checkboxValue), 1),
|
|
24013
|
+
t[156] || (t[156] = o("br", null, null, -1)),
|
|
23954
24014
|
M(" checkboxes with values: " + y(i.checkboxValues), 1)
|
|
23955
24015
|
]),
|
|
23956
|
-
t[
|
|
23957
|
-
t[
|
|
24016
|
+
t[180] || (t[180] = o("h2", null, "Checkboxes and Radiobuttons", -1)),
|
|
24017
|
+
t[181] || (t[181] = o("h3", null, "Checkboxes [native]", -1)),
|
|
23958
24018
|
o("div", J1, [
|
|
23959
|
-
t[
|
|
24019
|
+
t[158] || (t[158] = o("span", { class: "label-text" }, "Label for native checkboxes:", -1)),
|
|
23960
24020
|
o("div", Z1, [
|
|
23961
24021
|
p(T, {
|
|
23962
24022
|
element: "input",
|
|
@@ -24000,7 +24060,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24000
24060
|
status: i.validationStatus,
|
|
24001
24061
|
disabled: i.disabledStatus
|
|
24002
24062
|
}, {
|
|
24003
|
-
labeltext: k(() => t[
|
|
24063
|
+
labeltext: k(() => t[157] || (t[157] = [
|
|
24004
24064
|
M(" Labeltext with "),
|
|
24005
24065
|
o("a", { href: "#" }, "link", -1),
|
|
24006
24066
|
M(" given by slot ")
|
|
@@ -24009,9 +24069,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
24009
24069
|
}, 8, ["modelValue", "status", "disabled"])
|
|
24010
24070
|
])
|
|
24011
24071
|
]),
|
|
24012
|
-
t[
|
|
24072
|
+
t[182] || (t[182] = o("h3", null, "Checkboxes (replaced)", -1)),
|
|
24013
24073
|
o("div", Q1, [
|
|
24014
|
-
t[
|
|
24074
|
+
t[159] || (t[159] = o("span", { class: "label-text" }, "Label for Replaced Input-Type-Checkbox:", -1)),
|
|
24015
24075
|
o("div", X1, [
|
|
24016
24076
|
p(T, {
|
|
24017
24077
|
element: "input",
|
|
@@ -24039,9 +24099,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
24039
24099
|
}, null, 8, ["modelValue", "status", "disabled"])
|
|
24040
24100
|
])
|
|
24041
24101
|
]),
|
|
24042
|
-
t[
|
|
24102
|
+
t[183] || (t[183] = o("h3", null, "Radiobuttons [native]", -1)),
|
|
24043
24103
|
o("div", $1, [
|
|
24044
|
-
t[
|
|
24104
|
+
t[160] || (t[160] = o("span", { class: "label-text" }, "Label for native radiobuttons:", -1)),
|
|
24045
24105
|
o("div", ev, [
|
|
24046
24106
|
p(T, {
|
|
24047
24107
|
element: "input",
|
|
@@ -24070,9 +24130,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
24070
24130
|
])
|
|
24071
24131
|
]),
|
|
24072
24132
|
o("p", null, " Radiobuttons with values: " + y(i.radiobuttonValue), 1),
|
|
24073
|
-
t[
|
|
24133
|
+
t[184] || (t[184] = o("h3", null, "Radiobuttons (replaced)", -1)),
|
|
24074
24134
|
o("div", tv, [
|
|
24075
|
-
t[
|
|
24135
|
+
t[161] || (t[161] = o("span", { class: "label-text" }, "Label for Replaced Input-Type-Radio:", -1)),
|
|
24076
24136
|
o("div", nv, [
|
|
24077
24137
|
p(T, {
|
|
24078
24138
|
element: "input",
|
|
@@ -24103,7 +24163,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24103
24163
|
])
|
|
24104
24164
|
]),
|
|
24105
24165
|
o("h3", iv, [
|
|
24106
|
-
t[
|
|
24166
|
+
t[162] || (t[162] = M(" Input-Group ")),
|
|
24107
24167
|
o("a", {
|
|
24108
24168
|
href: "#",
|
|
24109
24169
|
class: "button small icon-cog",
|
|
@@ -24118,12 +24178,12 @@ function pk(e, t, n, s, i, l) {
|
|
|
24118
24178
|
"onUpdate:modelValue": t[63] || (t[63] = (b) => i.inputGroup = b)
|
|
24119
24179
|
}), null, 16, ["inputElements", "modelValue"]),
|
|
24120
24180
|
o("dl", null, [
|
|
24121
|
-
t[
|
|
24181
|
+
t[163] || (t[163] = o("dt", null, "Selected value:", -1)),
|
|
24122
24182
|
o("dd", null, [
|
|
24123
24183
|
o("output", null, y(i.inputGroup), 1)
|
|
24124
24184
|
])
|
|
24125
24185
|
]),
|
|
24126
|
-
t[
|
|
24186
|
+
t[185] || (t[185] = o("h3", null, "Input Groups with Checkboxes/Radiobuttons (toggle-switches)", -1)),
|
|
24127
24187
|
p(F, {
|
|
24128
24188
|
labelText: "Grouplabel for checkbox-group styled as toggle-switches (colored):",
|
|
24129
24189
|
inputElements: l.idForReplacedInputsInInputGroup("checkbox-group-toggle-switch"),
|
|
@@ -24137,7 +24197,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24137
24197
|
disabled: i.disabledStatus
|
|
24138
24198
|
}, null, 8, ["inputElements", "modelValue", "status", "disabled"]),
|
|
24139
24199
|
o("dl", null, [
|
|
24140
|
-
t[
|
|
24200
|
+
t[164] || (t[164] = o("dt", null, "Selected value(s):", -1)),
|
|
24141
24201
|
o("dd", null, [
|
|
24142
24202
|
o("output", null, y(i.inputGroupValueToggleSwitchCheckbox), 1)
|
|
24143
24203
|
])
|
|
@@ -24154,7 +24214,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24154
24214
|
disabled: i.disabledStatus
|
|
24155
24215
|
}, null, 8, ["inputElements", "modelValue", "status", "disabled"]),
|
|
24156
24216
|
o("dl", null, [
|
|
24157
|
-
t[
|
|
24217
|
+
t[165] || (t[165] = o("dt", null, "Selected value(s):", -1)),
|
|
24158
24218
|
o("dd", null, [
|
|
24159
24219
|
o("output", null, y(i.inputGroupValueToggleSwitchRadio), 1)
|
|
24160
24220
|
])
|
|
@@ -24170,7 +24230,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24170
24230
|
disabled: i.disabledStatus
|
|
24171
24231
|
}, null, 8, ["inputElements", "modelValue", "status", "disabled"]),
|
|
24172
24232
|
o("dl", null, [
|
|
24173
|
-
t[
|
|
24233
|
+
t[166] || (t[166] = o("dt", null, "Selected value(s):", -1)),
|
|
24174
24234
|
o("dd", null, [
|
|
24175
24235
|
o("output", null, y(i.inputGroupValue3), 1)
|
|
24176
24236
|
])
|
|
@@ -24188,14 +24248,14 @@ function pk(e, t, n, s, i, l) {
|
|
|
24188
24248
|
disabled: i.disabledStatus
|
|
24189
24249
|
}, null, 8, ["inputElements", "modelValue", "status", "disabled"]),
|
|
24190
24250
|
o("dl", null, [
|
|
24191
|
-
t[
|
|
24251
|
+
t[167] || (t[167] = o("dt", null, "Selected value(s):", -1)),
|
|
24192
24252
|
o("dd", null, [
|
|
24193
24253
|
o("output", null, y(i.inputGroupValue4), 1)
|
|
24194
24254
|
])
|
|
24195
24255
|
])
|
|
24196
24256
|
]),
|
|
24197
24257
|
o("div", lv, [
|
|
24198
|
-
t[
|
|
24258
|
+
t[187] || (t[187] = o("small", null, "(values will not be submitted with the form!)", -1)),
|
|
24199
24259
|
o("div", ov, [
|
|
24200
24260
|
p(T, {
|
|
24201
24261
|
element: "button",
|
|
@@ -24209,7 +24269,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24209
24269
|
class: "button",
|
|
24210
24270
|
type: "submit",
|
|
24211
24271
|
disabled: i.disabledStatus
|
|
24212
|
-
}, t[
|
|
24272
|
+
}, t[186] || (t[186] = [
|
|
24213
24273
|
o("span", { class: "icon-check" }, null, -1),
|
|
24214
24274
|
o("span", null, "Native submit-button", -1)
|
|
24215
24275
|
]), 8, av)
|
|
@@ -24228,7 +24288,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24228
24288
|
p(w, null, {
|
|
24229
24289
|
default: k(() => [
|
|
24230
24290
|
o("h2", sv, [
|
|
24231
|
-
t[
|
|
24291
|
+
t[190] || (t[190] = o("span", null, "Bank Account Data", -1)),
|
|
24232
24292
|
o("a", {
|
|
24233
24293
|
href: "#",
|
|
24234
24294
|
class: "button small icon-cog",
|
|
@@ -24243,7 +24303,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24243
24303
|
p(w, null, {
|
|
24244
24304
|
default: k(() => [
|
|
24245
24305
|
o("h2", rv, [
|
|
24246
|
-
t[
|
|
24306
|
+
t[191] || (t[191] = o("span", null, "Basic Form", -1)),
|
|
24247
24307
|
o("a", {
|
|
24248
24308
|
href: "#",
|
|
24249
24309
|
class: "button small icon-cog",
|
|
@@ -24264,9 +24324,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
24264
24324
|
}
|
|
24265
24325
|
}, null, 512),
|
|
24266
24326
|
o("dl", null, [
|
|
24267
|
-
t[
|
|
24327
|
+
t[192] || (t[192] = o("dt", null, "originalEvent", -1)),
|
|
24268
24328
|
o("dd", null, y(i.basicFormData.originalEvent), 1),
|
|
24269
|
-
t[
|
|
24329
|
+
t[193] || (t[193] = o("dt", null, "formdata", -1)),
|
|
24270
24330
|
o("dd", null, y(i.basicFormData.formData), 1)
|
|
24271
24331
|
])
|
|
24272
24332
|
]),
|
|
@@ -24274,9 +24334,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
24274
24334
|
}),
|
|
24275
24335
|
p(w, { anchorId: "section-boxes" }, {
|
|
24276
24336
|
default: k(() => [
|
|
24277
|
-
t[
|
|
24337
|
+
t[212] || (t[212] = o("h2", { class: "headline-demopage" }, "Boxes", -1)),
|
|
24278
24338
|
o("h3", dv, [
|
|
24279
|
-
t[
|
|
24339
|
+
t[194] || (t[194] = o("span", null, "Default Box", -1)),
|
|
24280
24340
|
o("a", {
|
|
24281
24341
|
href: "#",
|
|
24282
24342
|
class: "button small icon-cog",
|
|
@@ -24290,17 +24350,17 @@ function pk(e, t, n, s, i, l) {
|
|
|
24290
24350
|
"cmd-headline": { headlineText: "Headline for box", headlineLevel: 4 },
|
|
24291
24351
|
stretchVertically: !0
|
|
24292
24352
|
}), {
|
|
24293
|
-
header: k(() => t[
|
|
24353
|
+
header: k(() => t[195] || (t[195] = [
|
|
24294
24354
|
o("h4", null, " Texts given by slots ", -1)
|
|
24295
24355
|
])),
|
|
24296
|
-
body: k(() => t[
|
|
24356
|
+
body: k(() => t[196] || (t[196] = [
|
|
24297
24357
|
o("p", null, " This content with paragraphs inside is placed inside the box-body. ", -1),
|
|
24298
24358
|
o("p", null, [
|
|
24299
24359
|
o("strong", null, "Header, Content/Body and Footer of this box are given by slots.")
|
|
24300
24360
|
], -1),
|
|
24301
24361
|
o("p", null, "Additionally 'allowContentToScroll' is active, which enables (as far as a max-height is defined) the content of this box to scroll", -1)
|
|
24302
24362
|
])),
|
|
24303
|
-
footer: k(() => t[
|
|
24363
|
+
footer: k(() => t[197] || (t[197] = [
|
|
24304
24364
|
o("p", null, " Footer content ", -1)
|
|
24305
24365
|
])),
|
|
24306
24366
|
_: 1
|
|
@@ -24330,7 +24390,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24330
24390
|
useSlots: ["body"],
|
|
24331
24391
|
"cutoff-text-lines": 4
|
|
24332
24392
|
}, {
|
|
24333
|
-
body: k(() => t[
|
|
24393
|
+
body: k(() => t[198] || (t[198] = [
|
|
24334
24394
|
M(" This is a long text that is cutoff after a specific number of lines that can be defined by the property 'cutoffTextLines' and be toggled by a link below. ")
|
|
24335
24395
|
])),
|
|
24336
24396
|
_: 1
|
|
@@ -24339,17 +24399,17 @@ function pk(e, t, n, s, i, l) {
|
|
|
24339
24399
|
useSlots: ["header", "body", "footer"],
|
|
24340
24400
|
allowContentToScroll: !0
|
|
24341
24401
|
}, {
|
|
24342
|
-
header: k(() => t[
|
|
24402
|
+
header: k(() => t[199] || (t[199] = [
|
|
24343
24403
|
o("h4", null, " Texts given by slots ", -1)
|
|
24344
24404
|
])),
|
|
24345
|
-
body: k(() => t[
|
|
24405
|
+
body: k(() => t[200] || (t[200] = [
|
|
24346
24406
|
o("p", null, " This content with paragraphs inside is placed inside the box-body. ", -1),
|
|
24347
24407
|
o("p", null, [
|
|
24348
24408
|
o("strong", null, "Header, Content/Body and Footer of this box are given by slots.")
|
|
24349
24409
|
], -1),
|
|
24350
24410
|
o("p", null, "Additionally 'allowContentToScroll' is active, which enables (as far as a max-height is defined) the content of this box to scroll", -1)
|
|
24351
24411
|
])),
|
|
24352
|
-
footer: k(() => t[
|
|
24412
|
+
footer: k(() => t[201] || (t[201] = [
|
|
24353
24413
|
o("p", null, " Footer content ", -1)
|
|
24354
24414
|
])),
|
|
24355
24415
|
_: 1
|
|
@@ -24359,7 +24419,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24359
24419
|
useBoxBodyPadding: !1,
|
|
24360
24420
|
collapsible: !0
|
|
24361
24421
|
}, {
|
|
24362
|
-
header: k(() => t[
|
|
24422
|
+
header: k(() => t[202] || (t[202] = [
|
|
24363
24423
|
o("h4", null, " Box with inputs ", -1)
|
|
24364
24424
|
])),
|
|
24365
24425
|
body: k(() => [
|
|
@@ -24383,7 +24443,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24383
24443
|
_: 1
|
|
24384
24444
|
})
|
|
24385
24445
|
]),
|
|
24386
|
-
footer: k(() => t[
|
|
24446
|
+
footer: k(() => t[203] || (t[203] = [
|
|
24387
24447
|
o("p", null, " footer content ", -1)
|
|
24388
24448
|
])),
|
|
24389
24449
|
_: 1
|
|
@@ -24392,7 +24452,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24392
24452
|
useSlots: ["header", "body"],
|
|
24393
24453
|
useBoxBodyPadding: !1
|
|
24394
24454
|
}, {
|
|
24395
|
-
header: k(() => t[
|
|
24455
|
+
header: k(() => t[204] || (t[204] = [
|
|
24396
24456
|
o("h4", null, " Box with links ", -1)
|
|
24397
24457
|
])),
|
|
24398
24458
|
body: k(() => [
|
|
@@ -24427,7 +24487,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24427
24487
|
])
|
|
24428
24488
|
])
|
|
24429
24489
|
]),
|
|
24430
|
-
footer: k(() => t[
|
|
24490
|
+
footer: k(() => t[205] || (t[205] = [
|
|
24431
24491
|
o("p", null, " footer content ", -1)
|
|
24432
24492
|
])),
|
|
24433
24493
|
_: 1
|
|
@@ -24438,10 +24498,10 @@ function pk(e, t, n, s, i, l) {
|
|
|
24438
24498
|
cmdHeadline: { headlineText: "Collapsible box", headlineLevel: 4 },
|
|
24439
24499
|
collapsible: !0
|
|
24440
24500
|
}, {
|
|
24441
|
-
header: k(() => t[
|
|
24501
|
+
header: k(() => t[206] || (t[206] = [
|
|
24442
24502
|
o("h4", null, " Collapsible box with image ", -1)
|
|
24443
24503
|
])),
|
|
24444
|
-
body: k(() => t[
|
|
24504
|
+
body: k(() => t[207] || (t[207] = [
|
|
24445
24505
|
o("img", {
|
|
24446
24506
|
src: hi,
|
|
24447
24507
|
alt: "Alternative text"
|
|
@@ -24453,10 +24513,10 @@ function pk(e, t, n, s, i, l) {
|
|
|
24453
24513
|
useSlots: ["header", "body", "footer"],
|
|
24454
24514
|
useBoxBodyPadding: !1
|
|
24455
24515
|
}, {
|
|
24456
|
-
header: k(() => t[
|
|
24516
|
+
header: k(() => t[208] || (t[208] = [
|
|
24457
24517
|
o("h4", null, " Box with image, content and link ", -1)
|
|
24458
24518
|
])),
|
|
24459
|
-
body: k(() => t[
|
|
24519
|
+
body: k(() => t[209] || (t[209] = [
|
|
24460
24520
|
o("img", {
|
|
24461
24521
|
src: hi,
|
|
24462
24522
|
alt: "Alternative text"
|
|
@@ -24466,7 +24526,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24466
24526
|
o("p", null, "Image, custom-headline and this text for the component are given by slot")
|
|
24467
24527
|
], -1)
|
|
24468
24528
|
])),
|
|
24469
|
-
footer: k(() => t[
|
|
24529
|
+
footer: k(() => t[210] || (t[210] = [
|
|
24470
24530
|
o("p", null, [
|
|
24471
24531
|
o("a", { href: "#" }, "Read more…")
|
|
24472
24532
|
], -1)
|
|
@@ -24499,7 +24559,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24499
24559
|
]),
|
|
24500
24560
|
_: 1
|
|
24501
24561
|
}),
|
|
24502
|
-
t[
|
|
24562
|
+
t[213] || (t[213] = o("h3", null, "Product boxes", -1)),
|
|
24503
24563
|
p(u, {
|
|
24504
24564
|
boxesPerRow: [5, 2, 1],
|
|
24505
24565
|
useRowViewAsDefault: !0,
|
|
@@ -24516,7 +24576,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24516
24576
|
]),
|
|
24517
24577
|
_: 1
|
|
24518
24578
|
}),
|
|
24519
|
-
t[
|
|
24579
|
+
t[214] || (t[214] = o("h3", null, "User boxes", -1)),
|
|
24520
24580
|
p(u, {
|
|
24521
24581
|
boxesPerRow: [5, 2, 1],
|
|
24522
24582
|
useRowViewAsDefault: !0,
|
|
@@ -24534,7 +24594,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24534
24594
|
_: 1
|
|
24535
24595
|
}),
|
|
24536
24596
|
o("h3", null, [
|
|
24537
|
-
t[
|
|
24597
|
+
t[211] || (t[211] = o("span", null, "Boxes in BoxWrapper (collapsible)", -1)),
|
|
24538
24598
|
o("a", {
|
|
24539
24599
|
href: "#",
|
|
24540
24600
|
class: "button small icon-cog",
|
|
@@ -24576,7 +24636,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24576
24636
|
p(w, { "inner-component": "div" }, {
|
|
24577
24637
|
default: k(() => [
|
|
24578
24638
|
o("h2", cv, [
|
|
24579
|
-
t[
|
|
24639
|
+
t[215] || (t[215] = o("span", null, "Breadcrumbs", -1)),
|
|
24580
24640
|
o("a", {
|
|
24581
24641
|
href: "#",
|
|
24582
24642
|
class: "button small icon-cog",
|
|
@@ -24595,7 +24655,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24595
24655
|
p(w, null, {
|
|
24596
24656
|
default: k(() => [
|
|
24597
24657
|
o("h2", mv, [
|
|
24598
|
-
t[
|
|
24658
|
+
t[216] || (t[216] = o("span", null, "Code Output", -1)),
|
|
24599
24659
|
o("a", {
|
|
24600
24660
|
href: "#",
|
|
24601
24661
|
class: "button small icon-cog",
|
|
@@ -24615,7 +24675,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24615
24675
|
p(w, null, {
|
|
24616
24676
|
default: k(() => [
|
|
24617
24677
|
o("h2", pv, [
|
|
24618
|
-
t[
|
|
24678
|
+
t[217] || (t[217] = o("span", null, "Company Logo", -1)),
|
|
24619
24679
|
o("a", {
|
|
24620
24680
|
href: "#",
|
|
24621
24681
|
class: "button small icon-cog",
|
|
@@ -24633,7 +24693,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24633
24693
|
p(w, null, {
|
|
24634
24694
|
default: k(() => [
|
|
24635
24695
|
o("h2", fv, [
|
|
24636
|
-
t[
|
|
24696
|
+
t[218] || (t[218] = o("span", null, "Containers", -1)),
|
|
24637
24697
|
o("a", {
|
|
24638
24698
|
href: "#",
|
|
24639
24699
|
class: "button small icon-cog",
|
|
@@ -24641,19 +24701,19 @@ function pk(e, t, n, s, i, l) {
|
|
|
24641
24701
|
onClick: t[79] || (t[79] = S((b) => l.openSettingsSidebar("CmdContainer"), ["prevent"]))
|
|
24642
24702
|
})
|
|
24643
24703
|
]),
|
|
24644
|
-
t[
|
|
24704
|
+
t[223] || (t[223] = o("h3", null, 'Container (type "default")', -1)),
|
|
24645
24705
|
p(Z, L({
|
|
24646
24706
|
style: { border: "1px dashed var(--color-gray-30)" },
|
|
24647
24707
|
ref: "CmdContainer"
|
|
24648
24708
|
}, e.cmdContainerSettingsData), {
|
|
24649
|
-
default: k(() => t[
|
|
24709
|
+
default: k(() => t[219] || (t[219] = [
|
|
24650
24710
|
o("p", null, "Slot-content", -1),
|
|
24651
24711
|
o("p", null, "Slot-content", -1),
|
|
24652
24712
|
o("p", null, "Slot-content", -1)
|
|
24653
24713
|
])),
|
|
24654
24714
|
_: 1
|
|
24655
24715
|
}, 16),
|
|
24656
|
-
t[
|
|
24716
|
+
t[224] || (t[224] = o("h3", null, 'Container (type "flex", horizontal)', -1)),
|
|
24657
24717
|
p(Z, L({
|
|
24658
24718
|
style: { border: "1px dashed var(--color-gray-30)" },
|
|
24659
24719
|
ref: "CmdContainer"
|
|
@@ -24661,14 +24721,14 @@ function pk(e, t, n, s, i, l) {
|
|
|
24661
24721
|
containerType: "flex",
|
|
24662
24722
|
contentOrientation: "horizontal"
|
|
24663
24723
|
}), {
|
|
24664
|
-
default: k(() => t[
|
|
24724
|
+
default: k(() => t[220] || (t[220] = [
|
|
24665
24725
|
o("p", null, "Slot-content", -1),
|
|
24666
24726
|
o("p", null, "Slot-content", -1),
|
|
24667
24727
|
o("p", null, "Slot-content", -1)
|
|
24668
24728
|
])),
|
|
24669
24729
|
_: 1
|
|
24670
24730
|
}, 16),
|
|
24671
|
-
t[
|
|
24731
|
+
t[225] || (t[225] = o("h3", null, 'Container (type "flex", vertical)', -1)),
|
|
24672
24732
|
p(Z, L({
|
|
24673
24733
|
style: { border: "1px dashed var(--color-gray-30)" },
|
|
24674
24734
|
ref: "CmdContainer"
|
|
@@ -24676,19 +24736,19 @@ function pk(e, t, n, s, i, l) {
|
|
|
24676
24736
|
containerType: "flex",
|
|
24677
24737
|
contentOrientation: "vertical"
|
|
24678
24738
|
}), {
|
|
24679
|
-
default: k(() => t[
|
|
24739
|
+
default: k(() => t[221] || (t[221] = [
|
|
24680
24740
|
o("p", null, "Slot-content", -1),
|
|
24681
24741
|
o("p", null, "Slot-content", -1),
|
|
24682
24742
|
o("p", null, "Slot-content", -1)
|
|
24683
24743
|
])),
|
|
24684
24744
|
_: 1
|
|
24685
24745
|
}, 16),
|
|
24686
|
-
t[
|
|
24746
|
+
t[226] || (t[226] = o("h3", null, "Container with horizontal slots", -1)),
|
|
24687
24747
|
p(Z, L({
|
|
24688
24748
|
style: { border: "1px dashed var(--color-gray-30)" },
|
|
24689
24749
|
ref: "CmdContainer"
|
|
24690
24750
|
}, e.cmdContainerSettingsData, { containerType: "grid" }), {
|
|
24691
|
-
default: k(() => t[
|
|
24751
|
+
default: k(() => t[222] || (t[222] = [
|
|
24692
24752
|
o("p", null, "Slot-content", -1),
|
|
24693
24753
|
o("p", null, "Slot-content", -1),
|
|
24694
24754
|
o("p", null, "Slot-content", -1),
|
|
@@ -24703,7 +24763,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24703
24763
|
}),
|
|
24704
24764
|
p(w, null, {
|
|
24705
24765
|
default: k(() => [
|
|
24706
|
-
t[
|
|
24766
|
+
t[228] || (t[228] = o("h2", {
|
|
24707
24767
|
class: "headline-demopage",
|
|
24708
24768
|
id: "section-cookie-disclaimer"
|
|
24709
24769
|
}, "Cookie Disclaimer", -1)),
|
|
@@ -24711,7 +24771,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24711
24771
|
class: "button",
|
|
24712
24772
|
href: "#",
|
|
24713
24773
|
onClick: t[80] || (t[80] = S((b) => i.fancyBoxCookieDisclaimer = !0, ["prevent"]))
|
|
24714
|
-
}, t[
|
|
24774
|
+
}, t[227] || (t[227] = [
|
|
24715
24775
|
o("span", null, "Open Cookie Disclaimer", -1)
|
|
24716
24776
|
]))
|
|
24717
24777
|
]),
|
|
@@ -24719,20 +24779,22 @@ function pk(e, t, n, s, i, l) {
|
|
|
24719
24779
|
}),
|
|
24720
24780
|
p(w, null, {
|
|
24721
24781
|
default: k(() => [
|
|
24722
|
-
t[
|
|
24782
|
+
t[229] || (t[229] = o("h2", {
|
|
24723
24783
|
class: "headline-demopage",
|
|
24724
24784
|
id: "section-forms"
|
|
24725
24785
|
}, "Forms", -1)),
|
|
24726
|
-
t[
|
|
24786
|
+
t[230] || (t[230] = o("h3", null, "Form elements given by data", -1)),
|
|
24727
24787
|
p(U, {
|
|
24728
24788
|
useFieldset: !0,
|
|
24729
24789
|
useSlot: !1,
|
|
24730
24790
|
id: "form-component",
|
|
24731
24791
|
novalidate: "novalidate",
|
|
24732
24792
|
formElements: i.formElementsData,
|
|
24733
|
-
onSubmit: l.doConsoleLog
|
|
24734
|
-
|
|
24735
|
-
|
|
24793
|
+
onSubmit: l.doConsoleLog,
|
|
24794
|
+
modelValue: i.cmdFormData,
|
|
24795
|
+
"onUpdate:modelValue": t[81] || (t[81] = (b) => i.cmdFormData = b)
|
|
24796
|
+
}, null, 8, ["formElements", "onSubmit", "modelValue"]),
|
|
24797
|
+
t[231] || (t[231] = o("h3", null, "Form elements given by slot", -1)),
|
|
24736
24798
|
p(U, {
|
|
24737
24799
|
"use-fieldset": !0,
|
|
24738
24800
|
id: "form-component",
|
|
@@ -24770,50 +24832,50 @@ function pk(e, t, n, s, i, l) {
|
|
|
24770
24832
|
}),
|
|
24771
24833
|
p(w, null, {
|
|
24772
24834
|
default: k(() => [
|
|
24773
|
-
t[
|
|
24835
|
+
t[235] || (t[235] = o("h2", {
|
|
24774
24836
|
class: "headline-demopage",
|
|
24775
24837
|
id: "section-fancybox"
|
|
24776
24838
|
}, "Fancybox", -1)),
|
|
24777
|
-
t[
|
|
24839
|
+
t[236] || (t[236] = o("h3", null, "FancyBox with text", -1)),
|
|
24778
24840
|
o("a", {
|
|
24779
24841
|
href: "#",
|
|
24780
|
-
onClick: t[
|
|
24842
|
+
onClick: t[82] || (t[82] = S((b) => l.showFancyBox("text", "Some text", "FancyBox with text"), ["prevent"]))
|
|
24781
24843
|
}, "Open FancyBox with text"),
|
|
24782
|
-
t[
|
|
24844
|
+
t[237] || (t[237] = o("h3", null, "FancyBox with large image given by url", -1)),
|
|
24783
24845
|
o("a", {
|
|
24784
24846
|
href: "#",
|
|
24785
|
-
onClick: t[
|
|
24847
|
+
onClick: t[83] || (t[83] = S((b) => l.showFancyBox("url", "/media/images/demo-images/large/landscape-01.jpg", "FancyBox with large image given by url"), ["prevent"])),
|
|
24786
24848
|
title: "Open FancyBox with large image given by url",
|
|
24787
24849
|
style: { "align-self": "flex-start" }
|
|
24788
|
-
}, t[
|
|
24850
|
+
}, t[232] || (t[232] = [
|
|
24789
24851
|
o("img", {
|
|
24790
24852
|
src: g1,
|
|
24791
24853
|
alt: "Alternative text"
|
|
24792
24854
|
}, null, -1)
|
|
24793
24855
|
])),
|
|
24794
|
-
t[
|
|
24856
|
+
t[238] || (t[238] = o("h3", null, "FancyBox with large image given by property", -1)),
|
|
24795
24857
|
o("a", {
|
|
24796
24858
|
href: "#",
|
|
24797
|
-
onClick: t[
|
|
24859
|
+
onClick: t[84] || (t[84] = S((b) => l.showFancyBox("image", { large: "/media/images/demo-images/large/landscape-02.jpg" }, "FancyBox with large image given by property"), ["prevent"])),
|
|
24798
24860
|
title: "Open FancyBox with large image given by property",
|
|
24799
24861
|
style: { "align-self": "flex-start" }
|
|
24800
|
-
}, t[
|
|
24862
|
+
}, t[233] || (t[233] = [
|
|
24801
24863
|
o("img", {
|
|
24802
24864
|
src: y1,
|
|
24803
24865
|
alt: "Alternative text"
|
|
24804
24866
|
}, null, -1)
|
|
24805
24867
|
])),
|
|
24806
|
-
t[
|
|
24868
|
+
t[239] || (t[239] = o("h3", null, "FancyBox with image as object give by property", -1)),
|
|
24807
24869
|
o("a", {
|
|
24808
24870
|
href: "#",
|
|
24809
|
-
onClick: t[
|
|
24871
|
+
onClick: t[85] || (t[85] = S((b) => l.showFancyBox("image", {
|
|
24810
24872
|
small: "/media/images/demo-images/medium/landscape-03.jpg",
|
|
24811
24873
|
medium: "/media/images/demo-images/medium/landscape-03.jpg",
|
|
24812
24874
|
large: "/media/images/demo-images/large/landscape-03.jpg"
|
|
24813
24875
|
}, "FancyBox with large image given by property"), ["prevent"])),
|
|
24814
24876
|
title: "Open FancyBox with large image given by property",
|
|
24815
24877
|
style: { "align-self": "flex-start" }
|
|
24816
|
-
}, t[
|
|
24878
|
+
}, t[234] || (t[234] = [
|
|
24817
24879
|
o("img", {
|
|
24818
24880
|
src: b1,
|
|
24819
24881
|
alt: "Alternative text"
|
|
@@ -24824,18 +24886,18 @@ function pk(e, t, n, s, i, l) {
|
|
|
24824
24886
|
}),
|
|
24825
24887
|
p(w, null, {
|
|
24826
24888
|
default: k(() => [
|
|
24827
|
-
t[
|
|
24889
|
+
t[242] || (t[242] = o("h2", {
|
|
24828
24890
|
class: "headline-demopage",
|
|
24829
24891
|
id: "section-flexible-scroll-container"
|
|
24830
24892
|
}, "Flexible Scroll-Container", -1)),
|
|
24831
24893
|
p(ie, { style: { border: "1px dashed var(--color-gray-30)" } }, {
|
|
24832
|
-
"fixed-wrapper": k(() => t[
|
|
24894
|
+
"fixed-wrapper": k(() => t[240] || (t[240] = [
|
|
24833
24895
|
o("div", {
|
|
24834
24896
|
class: "default-padding",
|
|
24835
24897
|
style: { border: "1px dashed var(--color-gray-30)" }
|
|
24836
24898
|
}, " Fixed content ", -1)
|
|
24837
24899
|
])),
|
|
24838
|
-
"scroll-wrapper": k(() => t[
|
|
24900
|
+
"scroll-wrapper": k(() => t[241] || (t[241] = [
|
|
24839
24901
|
o("div", {
|
|
24840
24902
|
class: "default-padding",
|
|
24841
24903
|
style: { border: "1px dashed var(--color-gray-30)" }
|
|
@@ -24875,7 +24937,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24875
24937
|
}),
|
|
24876
24938
|
p(w, null, {
|
|
24877
24939
|
default: k(() => [
|
|
24878
|
-
t[
|
|
24940
|
+
t[243] || (t[243] = o("h2", {
|
|
24879
24941
|
class: "headline-demopage",
|
|
24880
24942
|
id: "section-google-maps"
|
|
24881
24943
|
}, "Google Maps™", -1)),
|
|
@@ -24888,12 +24950,12 @@ function pk(e, t, n, s, i, l) {
|
|
|
24888
24950
|
p(w, null, {
|
|
24889
24951
|
default: k(() => [
|
|
24890
24952
|
o("h2", hv, [
|
|
24891
|
-
t[
|
|
24953
|
+
t[244] || (t[244] = o("span", null, "Headlines", -1)),
|
|
24892
24954
|
o("a", {
|
|
24893
24955
|
href: "#",
|
|
24894
24956
|
class: "button small icon-cog",
|
|
24895
24957
|
title: "Open Component Settings",
|
|
24896
|
-
onClick: t[
|
|
24958
|
+
onClick: t[86] || (t[86] = S((b) => l.openSettingsSidebar("CmdHeadline"), ["prevent"]))
|
|
24897
24959
|
})
|
|
24898
24960
|
]),
|
|
24899
24961
|
p(le, L({ ref: "CmdHeadline" }, e.cmdHeadlineSettingsData), null, 16),
|
|
@@ -24911,7 +24973,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24911
24973
|
ref: "CmdHeadline",
|
|
24912
24974
|
headlineLevel: "3"
|
|
24913
24975
|
}, {
|
|
24914
|
-
default: k(() => t[
|
|
24976
|
+
default: k(() => t[245] || (t[245] = [
|
|
24915
24977
|
M(" Headline text"),
|
|
24916
24978
|
o("br", null, null, -1),
|
|
24917
24979
|
M(" with html-content given by slot ")
|
|
@@ -24923,29 +24985,29 @@ function pk(e, t, n, s, i, l) {
|
|
|
24923
24985
|
}),
|
|
24924
24986
|
p(w, null, {
|
|
24925
24987
|
default: k(() => [
|
|
24926
|
-
t[
|
|
24988
|
+
t[251] || (t[251] = o("h2", {
|
|
24927
24989
|
class: "headline-demopage",
|
|
24928
24990
|
id: "section-icons"
|
|
24929
24991
|
}, "Icons", -1)),
|
|
24930
24992
|
o("ul", null, [
|
|
24931
24993
|
o("li", null, [
|
|
24932
|
-
t[
|
|
24994
|
+
t[246] || (t[246] = o("span", null, "Icon from local iconfont", -1)),
|
|
24933
24995
|
p(ne, { iconClass: "icon-home" })
|
|
24934
24996
|
]),
|
|
24935
24997
|
o("li", null, [
|
|
24936
|
-
t[
|
|
24998
|
+
t[247] || (t[247] = o("span", null, "Icon from iconify-api (icomoon-font)", -1)),
|
|
24937
24999
|
p(ne, { iconClass: "icomoon-free:home" })
|
|
24938
25000
|
]),
|
|
24939
25001
|
o("li", null, [
|
|
24940
|
-
t[
|
|
25002
|
+
t[248] || (t[248] = o("span", null, "Icon from iconify-api (bootstrap-font)", -1)),
|
|
24941
25003
|
p(ne, { iconClass: "bi:house-fill" })
|
|
24942
25004
|
]),
|
|
24943
25005
|
o("li", null, [
|
|
24944
|
-
t[
|
|
25006
|
+
t[249] || (t[249] = o("span", null, "Icon from iconify-api (material-design-font)", -1)),
|
|
24945
25007
|
p(ne, { iconClass: "mdi:home" })
|
|
24946
25008
|
]),
|
|
24947
25009
|
o("li", null, [
|
|
24948
|
-
t[
|
|
25010
|
+
t[250] || (t[250] = o("span", null, "Icon from iconify-api (font-awesome-solid-font)", -1)),
|
|
24949
25011
|
p(ne, { iconClass: "fa6-solid:house-chimney" })
|
|
24950
25012
|
])
|
|
24951
25013
|
])
|
|
@@ -24955,12 +25017,12 @@ function pk(e, t, n, s, i, l) {
|
|
|
24955
25017
|
p(w, null, {
|
|
24956
25018
|
default: k(() => [
|
|
24957
25019
|
o("h2", gv, [
|
|
24958
|
-
t[
|
|
25020
|
+
t[252] || (t[252] = o("span", null, "Image", -1)),
|
|
24959
25021
|
o("a", {
|
|
24960
25022
|
href: "#",
|
|
24961
25023
|
class: "button small icon-cog",
|
|
24962
25024
|
title: "Open Component Settings",
|
|
24963
|
-
onClick: t[
|
|
25025
|
+
onClick: t[87] || (t[87] = S((b) => l.openSettingsSidebar("CmdImage"), ["prevent"]))
|
|
24964
25026
|
})
|
|
24965
25027
|
]),
|
|
24966
25028
|
o("div", yv, [
|
|
@@ -24980,12 +25042,12 @@ function pk(e, t, n, s, i, l) {
|
|
|
24980
25042
|
p(w, null, {
|
|
24981
25043
|
default: k(() => [
|
|
24982
25044
|
o("h2", bv, [
|
|
24983
|
-
t[
|
|
25045
|
+
t[253] || (t[253] = o("span", null, "Image-Gallery", -1)),
|
|
24984
25046
|
o("a", {
|
|
24985
25047
|
href: "#",
|
|
24986
25048
|
class: "button small icon-cog",
|
|
24987
25049
|
title: "Open Component Settings",
|
|
24988
|
-
onClick: t[
|
|
25050
|
+
onClick: t[88] || (t[88] = S((b) => l.openSettingsSidebar("CmdImageGallery"), ["prevent"]))
|
|
24989
25051
|
})
|
|
24990
25052
|
]),
|
|
24991
25053
|
p(pe, L({
|
|
@@ -24997,7 +25059,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
24997
25059
|
}),
|
|
24998
25060
|
p(w, null, {
|
|
24999
25061
|
default: k(() => [
|
|
25000
|
-
t[
|
|
25062
|
+
t[254] || (t[254] = o("h2", {
|
|
25001
25063
|
class: "headline-demopage",
|
|
25002
25064
|
id: "section-image-zoom"
|
|
25003
25065
|
}, " Image-Zoom ", -1)),
|
|
@@ -25013,12 +25075,12 @@ function pk(e, t, n, s, i, l) {
|
|
|
25013
25075
|
var b, j, ge, Ne, Ye, Je;
|
|
25014
25076
|
return [
|
|
25015
25077
|
o("h2", xv, [
|
|
25016
|
-
t[
|
|
25078
|
+
t[255] || (t[255] = o("span", null, "Link", -1)),
|
|
25017
25079
|
o("a", {
|
|
25018
25080
|
href: "#",
|
|
25019
25081
|
class: "button small icon-cog",
|
|
25020
25082
|
title: "Open Component Settings",
|
|
25021
|
-
onClick: t[
|
|
25083
|
+
onClick: t[89] || (t[89] = S((Dn) => l.openSettingsSidebar("CmdLink"), ["prevent"]))
|
|
25022
25084
|
})
|
|
25023
25085
|
]),
|
|
25024
25086
|
p(X, L({
|
|
@@ -25070,7 +25132,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
25070
25132
|
text: "Add link",
|
|
25071
25133
|
primaryButton: !0,
|
|
25072
25134
|
icon: { iconClass: "icon-link", position: "right" },
|
|
25073
|
-
onClick: t[
|
|
25135
|
+
onClick: t[90] || (t[90] = (Dn) => i.showCmdLink = !0)
|
|
25074
25136
|
}),
|
|
25075
25137
|
i.showCmdLink ? (a(), v(X, {
|
|
25076
25138
|
key: 0,
|
|
@@ -25081,11 +25143,11 @@ function pk(e, t, n, s, i, l) {
|
|
|
25081
25143
|
icon: { iconClass: "icon-chevron-one-stripe-right", position: "right", tooltip: "Tooltip for hyperlink" }
|
|
25082
25144
|
})) : m("", !0),
|
|
25083
25145
|
o("dl", Cv, [
|
|
25084
|
-
t[
|
|
25146
|
+
t[256] || (t[256] = o("dt", null, "Event:", -1)),
|
|
25085
25147
|
o("dd", null, y((j = (b = i.outputCmdLink) == null ? void 0 : b.event) == null ? void 0 : j.originalEvent.originalEvent), 1),
|
|
25086
|
-
t[
|
|
25148
|
+
t[257] || (t[257] = o("dt", null, "Target:", -1)),
|
|
25087
25149
|
o("dd", null, y((Ne = (ge = i.outputCmdLink) == null ? void 0 : ge.event) == null ? void 0 : Ne.originalEvent.target), 1),
|
|
25088
|
-
t[
|
|
25150
|
+
t[258] || (t[258] = o("dt", null, "LinkType:", -1)),
|
|
25089
25151
|
o("dd", null, y((Je = (Ye = i.outputCmdLink) == null ? void 0 : Ye.event) == null ? void 0 : Je.originalEvent.linkType), 1)
|
|
25090
25152
|
])
|
|
25091
25153
|
];
|
|
@@ -25097,12 +25159,12 @@ function pk(e, t, n, s, i, l) {
|
|
|
25097
25159
|
var b, j, ge, Ne, Ye, Je;
|
|
25098
25160
|
return [
|
|
25099
25161
|
o("h2", vv, [
|
|
25100
|
-
t[
|
|
25162
|
+
t[259] || (t[259] = o("span", null, "List", -1)),
|
|
25101
25163
|
o("a", {
|
|
25102
25164
|
href: "#",
|
|
25103
25165
|
class: "button small icon-cog",
|
|
25104
25166
|
title: "Open Component Settings",
|
|
25105
|
-
onClick: t[
|
|
25167
|
+
onClick: t[91] || (t[91] = S((Dn) => l.openSettingsSidebar("CmdList"), ["prevent"]))
|
|
25106
25168
|
})
|
|
25107
25169
|
]),
|
|
25108
25170
|
p(f, L({
|
|
@@ -25114,11 +25176,11 @@ function pk(e, t, n, s, i, l) {
|
|
|
25114
25176
|
onClick: l.cmdLinkOutput
|
|
25115
25177
|
}), null, 16, ["items", "onClick"]),
|
|
25116
25178
|
o("dl", kv, [
|
|
25117
|
-
t[
|
|
25179
|
+
t[260] || (t[260] = o("dt", null, "Event:", -1)),
|
|
25118
25180
|
o("dd", null, y((j = (b = i.outputCmdLink) == null ? void 0 : b.event) == null ? void 0 : j.originalEvent), 1),
|
|
25119
|
-
t[
|
|
25181
|
+
t[261] || (t[261] = o("dt", null, "Target:", -1)),
|
|
25120
25182
|
o("dd", null, y((Ne = (ge = i.outputCmdLink) == null ? void 0 : ge.event) == null ? void 0 : Ne.originalEvent.target), 1),
|
|
25121
|
-
t[
|
|
25183
|
+
t[262] || (t[262] = o("dt", null, "LinkType:", -1)),
|
|
25122
25184
|
o("dd", null, y((Je = (Ye = i.outputCmdLink) == null ? void 0 : Ye.event) == null ? void 0 : Je.linkType), 1)
|
|
25123
25185
|
]),
|
|
25124
25186
|
p(f, {
|
|
@@ -25156,7 +25218,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
25156
25218
|
highlightLevel: "tertiary"
|
|
25157
25219
|
}, null, 8, ["items"])
|
|
25158
25220
|
]),
|
|
25159
|
-
t[
|
|
25221
|
+
t[263] || (t[263] = o("h3", null, "Description Lists", -1)),
|
|
25160
25222
|
o("div", Tv, [
|
|
25161
25223
|
p(f, {
|
|
25162
25224
|
listType: "description",
|
|
@@ -25182,19 +25244,19 @@ function pk(e, t, n, s, i, l) {
|
|
|
25182
25244
|
p(w, null, {
|
|
25183
25245
|
default: k(() => [
|
|
25184
25246
|
o("h2", Sv, [
|
|
25185
|
-
t[
|
|
25247
|
+
t[264] || (t[264] = o("span", null, "Login Form", -1)),
|
|
25186
25248
|
o("a", {
|
|
25187
25249
|
href: "#",
|
|
25188
25250
|
class: "button small icon-cog",
|
|
25189
25251
|
title: "Open Component Settings",
|
|
25190
|
-
onClick: t[
|
|
25252
|
+
onClick: t[92] || (t[92] = S((b) => l.openSettingsSidebar("CmdLoginForm"), ["prevent"]))
|
|
25191
25253
|
})
|
|
25192
25254
|
]),
|
|
25193
25255
|
p(U, { "use-fieldset": !1 }, {
|
|
25194
25256
|
default: k(() => [
|
|
25195
25257
|
p(he, L({ ref: "CmdLoginForm" }, e.cmdLoginFormSettingsData, {
|
|
25196
25258
|
modelValue: i.loginData,
|
|
25197
|
-
"onUpdate:modelValue": t[
|
|
25259
|
+
"onUpdate:modelValue": t[93] || (t[93] = (b) => i.loginData = b)
|
|
25198
25260
|
}), null, 16, ["modelValue"])
|
|
25199
25261
|
]),
|
|
25200
25262
|
_: 1
|
|
@@ -25205,7 +25267,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
25205
25267
|
}),
|
|
25206
25268
|
p(w, null, {
|
|
25207
25269
|
default: k(() => [
|
|
25208
|
-
t[
|
|
25270
|
+
t[265] || (t[265] = o("h2", {
|
|
25209
25271
|
class: "headline-demopage",
|
|
25210
25272
|
id: "section-mail-tool"
|
|
25211
25273
|
}, [
|
|
@@ -25222,12 +25284,12 @@ function pk(e, t, n, s, i, l) {
|
|
|
25222
25284
|
p(w, null, {
|
|
25223
25285
|
default: k(() => [
|
|
25224
25286
|
o("h2", _v, [
|
|
25225
|
-
t[
|
|
25287
|
+
t[266] || (t[266] = o("span", null, "Main Navigation", -1)),
|
|
25226
25288
|
o("a", {
|
|
25227
25289
|
href: "#",
|
|
25228
25290
|
class: "button small icon-cog",
|
|
25229
25291
|
title: "Open Component Settings",
|
|
25230
|
-
onClick: t[
|
|
25292
|
+
onClick: t[94] || (t[94] = S((b) => l.openSettingsSidebar("CmdMainNavigation"), ["prevent"]))
|
|
25231
25293
|
})
|
|
25232
25294
|
]),
|
|
25233
25295
|
p(re, L({ ref: "CmdMainNavigation" }, e.cmdMainNavigationSettingsData, { navigationEntries: l.navigationDataModified }), null, 16, ["navigationEntries"]),
|
|
@@ -25238,15 +25300,15 @@ function pk(e, t, n, s, i, l) {
|
|
|
25238
25300
|
p(w, null, {
|
|
25239
25301
|
default: k(() => [
|
|
25240
25302
|
o("h2", Ov, [
|
|
25241
|
-
t[
|
|
25303
|
+
t[267] || (t[267] = o("span", null, "Multistepform-Wrapper", -1)),
|
|
25242
25304
|
o("a", {
|
|
25243
25305
|
href: "#",
|
|
25244
25306
|
class: "button small icon-cog",
|
|
25245
25307
|
title: "Open Component Settings",
|
|
25246
|
-
onClick: t[
|
|
25308
|
+
onClick: t[95] || (t[95] = S((b) => l.openSettingsSidebar("CmdMultistepFormProgressBar"), ["prevent"]))
|
|
25247
25309
|
})
|
|
25248
25310
|
]),
|
|
25249
|
-
t[
|
|
25311
|
+
t[278] || (t[278] = o("h3", null, "Data provided by property", -1)),
|
|
25250
25312
|
p(Te, null, {
|
|
25251
25313
|
"page-1": k((b) => [
|
|
25252
25314
|
p(U, {
|
|
@@ -25259,24 +25321,30 @@ function pk(e, t, n, s, i, l) {
|
|
|
25259
25321
|
href: "#",
|
|
25260
25322
|
onClick: S((j) => b.setErrorOnPage("This is an error!"), ["prevent"])
|
|
25261
25323
|
}, "Set Error", 8, Lv),
|
|
25262
|
-
t[
|
|
25324
|
+
t[268] || (t[268] = o("br", null, null, -1)),
|
|
25263
25325
|
o("a", {
|
|
25264
25326
|
href: "#",
|
|
25265
25327
|
onClick: S(b.removeErrorOnPage, ["prevent"])
|
|
25266
25328
|
}, "Remove Error", 8, Iv)
|
|
25267
25329
|
]),
|
|
25268
25330
|
"page-2": k((b) => [
|
|
25269
|
-
t[
|
|
25270
|
-
t[
|
|
25331
|
+
t[269] || (t[269] = M(" Content Page 2")),
|
|
25332
|
+
t[270] || (t[270] = o("br", null, null, -1)),
|
|
25333
|
+
$(o("input", {
|
|
25334
|
+
type: "text",
|
|
25335
|
+
"onUpdate:modelValue": (j) => b.formDataForPage.nase = j
|
|
25336
|
+
}, null, 8, Bv), [
|
|
25337
|
+
[et, b.formDataForPage.nase]
|
|
25338
|
+
]),
|
|
25271
25339
|
o("a", {
|
|
25272
25340
|
href: "#",
|
|
25273
25341
|
onClick: S((j) => b.setErrorOnPage("This is an error!"), ["prevent"])
|
|
25274
|
-
}, "Set Error", 8,
|
|
25342
|
+
}, "Set Error", 8, Dv)
|
|
25275
25343
|
]),
|
|
25276
|
-
"page-3": k(() => t[
|
|
25344
|
+
"page-3": k(() => t[271] || (t[271] = [
|
|
25277
25345
|
M(" Content Page 3 ")
|
|
25278
25346
|
])),
|
|
25279
|
-
"page-4": k(() => t[
|
|
25347
|
+
"page-4": k(() => t[272] || (t[272] = [
|
|
25280
25348
|
M(" Content Page 4 ")
|
|
25281
25349
|
])),
|
|
25282
25350
|
"page-5": k((b) => [
|
|
@@ -25290,48 +25358,48 @@ function pk(e, t, n, s, i, l) {
|
|
|
25290
25358
|
]),
|
|
25291
25359
|
_: 1
|
|
25292
25360
|
}),
|
|
25293
|
-
t[
|
|
25361
|
+
t[279] || (t[279] = o("h3", null, "Data provided by slot", -1)),
|
|
25294
25362
|
p(Te, null, {
|
|
25295
25363
|
"progress-bar": k((b) => [
|
|
25296
|
-
o("ul",
|
|
25364
|
+
o("ul", Fv, [
|
|
25297
25365
|
(a(!0), r(O, null, q(b.numberOfPages, (j) => (a(), r("li", { key: j }, [
|
|
25298
25366
|
o("a", {
|
|
25299
25367
|
href: "#",
|
|
25300
25368
|
onClick: S((ge) => b.setErrorOnPage("This is an error!"), ["prevent"])
|
|
25301
|
-
}, y(j), 9,
|
|
25369
|
+
}, y(j), 9, Mv)
|
|
25302
25370
|
]))), 128))
|
|
25303
25371
|
])
|
|
25304
25372
|
]),
|
|
25305
25373
|
"page-1": k((b) => [
|
|
25306
|
-
t[
|
|
25307
|
-
b.hasError ? (a(), r("span",
|
|
25374
|
+
t[273] || (t[273] = M(" Content Page 1 ")),
|
|
25375
|
+
b.hasError ? (a(), r("span", Pv, "Error")) : m("", !0),
|
|
25308
25376
|
o("a", {
|
|
25309
25377
|
href: "#",
|
|
25310
25378
|
onClick: S((j) => b.setErrorOnPage("This is an error!"), ["prevent"])
|
|
25311
|
-
}, "Set Error", 8,
|
|
25379
|
+
}, "Set Error", 8, Vv)
|
|
25312
25380
|
]),
|
|
25313
25381
|
"page-2": k((b) => [
|
|
25314
|
-
t[
|
|
25315
|
-
b.hasError ? (a(), r("span",
|
|
25382
|
+
t[274] || (t[274] = M(" Content Page 2 ")),
|
|
25383
|
+
b.hasError ? (a(), r("span", Av, "Error")) : m("", !0),
|
|
25316
25384
|
o("a", {
|
|
25317
25385
|
href: "#",
|
|
25318
25386
|
onClick: S((j) => b.setErrorOnPage("This is an error!"), ["prevent"])
|
|
25319
|
-
}, "Set Error", 8,
|
|
25387
|
+
}, "Set Error", 8, Ev)
|
|
25320
25388
|
]),
|
|
25321
25389
|
"page-3": k((b) => [
|
|
25322
|
-
t[
|
|
25323
|
-
b.hasError ? (a(), r("span",
|
|
25390
|
+
t[275] || (t[275] = M(" Content Page 3 ")),
|
|
25391
|
+
b.hasError ? (a(), r("span", Hv, "Error")) : m("", !0)
|
|
25324
25392
|
]),
|
|
25325
25393
|
"page-4": k((b) => [
|
|
25326
|
-
t[
|
|
25327
|
-
b.hasError ? (a(), r("span",
|
|
25394
|
+
t[276] || (t[276] = M(" Content Page 4 ")),
|
|
25395
|
+
b.hasError ? (a(), r("span", qv, "Error")) : m("", !0)
|
|
25328
25396
|
]),
|
|
25329
25397
|
"page-5": k((b) => [
|
|
25330
|
-
t[
|
|
25331
|
-
b.hasError ? (a(), r("span",
|
|
25398
|
+
t[277] || (t[277] = M(" Content Page 5 ")),
|
|
25399
|
+
b.hasError ? (a(), r("span", Rv, "Error")) : m("", !0)
|
|
25332
25400
|
]),
|
|
25333
25401
|
pagination: k((b) => [
|
|
25334
|
-
o("div",
|
|
25402
|
+
o("div", jv, [
|
|
25335
25403
|
p(X, {
|
|
25336
25404
|
linkType: "button",
|
|
25337
25405
|
highlightLevel: "none",
|
|
@@ -25374,28 +25442,28 @@ function pk(e, t, n, s, i, l) {
|
|
|
25374
25442
|
}),
|
|
25375
25443
|
p(w, null, {
|
|
25376
25444
|
default: k(() => [
|
|
25377
|
-
o("h2",
|
|
25378
|
-
t[
|
|
25445
|
+
o("h2", Nv, [
|
|
25446
|
+
t[280] || (t[280] = o("span", null, "Multistepform-Progressbar", -1)),
|
|
25379
25447
|
o("a", {
|
|
25380
25448
|
href: "#",
|
|
25381
25449
|
class: "button small icon-cog",
|
|
25382
25450
|
title: "Open Component Settings",
|
|
25383
|
-
onClick: t[
|
|
25451
|
+
onClick: t[96] || (t[96] = S((b) => l.openSettingsSidebar("CmdMultistepFormProgressBar"), ["prevent"]))
|
|
25384
25452
|
})
|
|
25385
25453
|
]),
|
|
25386
|
-
t[
|
|
25454
|
+
t[281] || (t[281] = o("h3", null, "Steps with icons", -1)),
|
|
25387
25455
|
p(Oe, L({
|
|
25388
25456
|
ref: "CmdMultistepFormProgressBar",
|
|
25389
25457
|
multisteps: i.multistepsData.withIcon
|
|
25390
25458
|
}, e.cmdMultistepFormProgressBarSettingsData, {
|
|
25391
|
-
onClick: t[
|
|
25459
|
+
onClick: t[97] || (t[97] = (b) => i.showPageMultistep = b.index + 1)
|
|
25392
25460
|
}), null, 16, ["multisteps"]),
|
|
25393
|
-
t[
|
|
25461
|
+
t[282] || (t[282] = o("h3", null, "Router", -1)),
|
|
25394
25462
|
p(Oe, L({
|
|
25395
25463
|
ref: "CmdMultistepFormProgressBar",
|
|
25396
25464
|
multisteps: i.multistepsData.router
|
|
25397
25465
|
}, e.cmdMultistepFormProgressBarSettingsData, {
|
|
25398
|
-
onClick: t[
|
|
25466
|
+
onClick: t[98] || (t[98] = (b) => i.showPageMultistep = b.index + 1)
|
|
25399
25467
|
}), null, 16, ["multisteps"]),
|
|
25400
25468
|
o("div", null, [
|
|
25401
25469
|
o("p", null, "Page " + y(i.showPageMultistep), 1)
|
|
@@ -25405,20 +25473,20 @@ function pk(e, t, n, s, i, l) {
|
|
|
25405
25473
|
}),
|
|
25406
25474
|
p(w, null, {
|
|
25407
25475
|
default: k(() => [
|
|
25408
|
-
o("h2",
|
|
25409
|
-
t[
|
|
25476
|
+
o("h2", Uv, [
|
|
25477
|
+
t[283] || (t[283] = o("span", null, "Newsletter Subscription", -1)),
|
|
25410
25478
|
o("a", {
|
|
25411
25479
|
href: "#",
|
|
25412
25480
|
class: "button small icon-cog",
|
|
25413
25481
|
title: "Open Component Settings",
|
|
25414
|
-
onClick: t[
|
|
25482
|
+
onClick: t[99] || (t[99] = S((b) => l.openSettingsSidebar("CmdNewsletterSubscription"), ["prevent"]))
|
|
25415
25483
|
})
|
|
25416
25484
|
]),
|
|
25417
25485
|
p(U, { "use-fieldset": !1 }, {
|
|
25418
25486
|
default: k(() => [
|
|
25419
25487
|
p(Ve, L({ ref: "CmdNewsletterSubscription" }, e.cmdNewsletterSubscriptionSettingsData, {
|
|
25420
25488
|
modelValue: i.newsletter,
|
|
25421
|
-
"onUpdate:modelValue": t[
|
|
25489
|
+
"onUpdate:modelValue": t[100] || (t[100] = (b) => i.newsletter = b),
|
|
25422
25490
|
onButtonClick: l.submitNewsletterRegistration
|
|
25423
25491
|
}), null, 16, ["modelValue", "onButtonClick"])
|
|
25424
25492
|
]),
|
|
@@ -25429,13 +25497,13 @@ function pk(e, t, n, s, i, l) {
|
|
|
25429
25497
|
}),
|
|
25430
25498
|
p(w, null, {
|
|
25431
25499
|
default: k(() => [
|
|
25432
|
-
o("h2",
|
|
25433
|
-
t[
|
|
25500
|
+
o("h2", zv, [
|
|
25501
|
+
t[284] || (t[284] = o("span", null, "Opening Hours", -1)),
|
|
25434
25502
|
o("a", {
|
|
25435
25503
|
href: "#",
|
|
25436
25504
|
class: "button small icon-cog",
|
|
25437
25505
|
title: "Open Component Settings",
|
|
25438
|
-
onClick: t[
|
|
25506
|
+
onClick: t[101] || (t[101] = S((b) => l.openSettingsSidebar("CmdOpeningHours"), ["prevent"]))
|
|
25439
25507
|
})
|
|
25440
25508
|
]),
|
|
25441
25509
|
p(de, L({ ref: "CmdOpeningHours" }, e.cmdOpeningHoursSettingsData, {
|
|
@@ -25448,20 +25516,20 @@ function pk(e, t, n, s, i, l) {
|
|
|
25448
25516
|
}),
|
|
25449
25517
|
p(w, null, {
|
|
25450
25518
|
default: k(() => [
|
|
25451
|
-
o("h2",
|
|
25452
|
-
t[
|
|
25519
|
+
o("h2", Wv, [
|
|
25520
|
+
t[285] || (t[285] = o("span", null, "Page Footer", -1)),
|
|
25453
25521
|
o("a", {
|
|
25454
25522
|
href: "#",
|
|
25455
25523
|
class: "button small icon-cog",
|
|
25456
25524
|
title: "Open Component Settings",
|
|
25457
|
-
onClick: t[
|
|
25525
|
+
onClick: t[102] || (t[102] = S((b) => l.openSettingsSidebar("CmdPageFooter"), ["prevent"]))
|
|
25458
25526
|
})
|
|
25459
25527
|
]),
|
|
25460
|
-
p(
|
|
25528
|
+
p(rt, L({ ref: "CmdPageFooter" }, e.cmdPageFooterSettingsData, {
|
|
25461
25529
|
"button-print-view": { text: "Print this page" },
|
|
25462
25530
|
cmdSocialNetworks: i.socialNetworksData
|
|
25463
25531
|
}), {
|
|
25464
|
-
default: k(() => t[
|
|
25532
|
+
default: k(() => t[286] || (t[286] = [
|
|
25465
25533
|
o("button", {
|
|
25466
25534
|
class: "button primary",
|
|
25467
25535
|
title: "Button given by slot"
|
|
@@ -25477,21 +25545,21 @@ function pk(e, t, n, s, i, l) {
|
|
|
25477
25545
|
}),
|
|
25478
25546
|
p(w, null, {
|
|
25479
25547
|
default: k(() => [
|
|
25480
|
-
o("h2",
|
|
25481
|
-
t[
|
|
25548
|
+
o("h2", Gv, [
|
|
25549
|
+
t[287] || (t[287] = o("span", null, "Page Header", -1)),
|
|
25482
25550
|
o("a", {
|
|
25483
25551
|
href: "#",
|
|
25484
25552
|
class: "button small icon-cog",
|
|
25485
25553
|
title: "Open Component Settings",
|
|
25486
|
-
onClick: t[
|
|
25554
|
+
onClick: t[103] || (t[103] = S((b) => l.openSettingsSidebar("CmdPageHeader"), ["prevent"]))
|
|
25487
25555
|
})
|
|
25488
25556
|
]),
|
|
25489
|
-
p(
|
|
25557
|
+
p(dt, {
|
|
25490
25558
|
ref: "CmdPageHeader",
|
|
25491
25559
|
cmdBreadcrumbs: i.breadcrumbsData,
|
|
25492
25560
|
cmdHeadline: { headlineText: "Main headline for page", headlineLevel: 1 }
|
|
25493
25561
|
}, {
|
|
25494
|
-
default: k(() => t[
|
|
25562
|
+
default: k(() => t[288] || (t[288] = [
|
|
25495
25563
|
o("a", {
|
|
25496
25564
|
href: "#",
|
|
25497
25565
|
title: "Link given by slot"
|
|
@@ -25507,69 +25575,69 @@ function pk(e, t, n, s, i, l) {
|
|
|
25507
25575
|
}),
|
|
25508
25576
|
p(w, null, {
|
|
25509
25577
|
default: k(() => [
|
|
25510
|
-
o("h2",
|
|
25511
|
-
t[
|
|
25578
|
+
o("h2", Kv, [
|
|
25579
|
+
t[289] || (t[289] = o("span", null, "Pagination", -1)),
|
|
25512
25580
|
o("a", {
|
|
25513
25581
|
href: "#",
|
|
25514
25582
|
class: "button small icon-cog",
|
|
25515
25583
|
title: "Open Component Settings",
|
|
25516
|
-
onClick: t[
|
|
25584
|
+
onClick: t[104] || (t[104] = S((b) => l.openSettingsSidebar("CmdPagination"), ["prevent"]))
|
|
25517
25585
|
})
|
|
25518
25586
|
]),
|
|
25519
25587
|
o("div", null, [
|
|
25520
25588
|
o("p", null, "Page " + y(i.showPagePager), 1)
|
|
25521
25589
|
]),
|
|
25522
|
-
p(
|
|
25523
|
-
onClick: t[
|
|
25590
|
+
p(ut, L({ ref: "CmdPagination" }, e.cmdPaginationSettingsData, {
|
|
25591
|
+
onClick: t[105] || (t[105] = (b) => i.showPagePager = b)
|
|
25524
25592
|
}), null, 16)
|
|
25525
25593
|
]),
|
|
25526
25594
|
_: 1
|
|
25527
25595
|
}),
|
|
25528
25596
|
p(w, null, {
|
|
25529
25597
|
default: k(() => [
|
|
25530
|
-
o("h2",
|
|
25531
|
-
t[
|
|
25598
|
+
o("h2", Yv, [
|
|
25599
|
+
t[290] || (t[290] = o("span", null, "Paragraph", -1)),
|
|
25532
25600
|
o("a", {
|
|
25533
25601
|
href: "#",
|
|
25534
25602
|
class: "button small icon-cog",
|
|
25535
25603
|
title: "Open Component Settings",
|
|
25536
|
-
onClick: t[
|
|
25604
|
+
onClick: t[106] || (t[106] = S((b) => l.openSettingsSidebar("CmdParagraph"), ["prevent"]))
|
|
25537
25605
|
})
|
|
25538
25606
|
]),
|
|
25539
|
-
p(
|
|
25607
|
+
p(ct, L({ ref: "CmdParagraph" }, e.cmdParagraphSettingsData), null, 16)
|
|
25540
25608
|
]),
|
|
25541
25609
|
_: 1
|
|
25542
25610
|
}),
|
|
25543
25611
|
p(w, null, {
|
|
25544
25612
|
default: k(() => [
|
|
25545
|
-
o("h2",
|
|
25546
|
-
t[
|
|
25613
|
+
o("h2", Jv, [
|
|
25614
|
+
t[291] || (t[291] = o("span", null, "Section", -1)),
|
|
25547
25615
|
o("a", {
|
|
25548
25616
|
href: "#",
|
|
25549
25617
|
class: "button small icon-cog",
|
|
25550
25618
|
title: "Open Component Settings",
|
|
25551
|
-
onClick: t[
|
|
25619
|
+
onClick: t[107] || (t[107] = S((b) => l.openSettingsSidebar("CmdSection"), ["prevent"]))
|
|
25552
25620
|
})
|
|
25553
25621
|
]),
|
|
25554
|
-
t[
|
|
25622
|
+
t[294] || (t[294] = o("h3", null, "Section with content provided by properties", -1)),
|
|
25555
25623
|
p(je, {
|
|
25556
25624
|
cmdHeadline: { headlineText: "Headline for section provided by property", headlineLevel: 4 },
|
|
25557
25625
|
content: "Content for section provided by property."
|
|
25558
25626
|
}),
|
|
25559
|
-
t[
|
|
25627
|
+
t[295] || (t[295] = o("h3", null, "Section with content provided by slot", -1)),
|
|
25560
25628
|
p(je, { useSlot: !0 }, {
|
|
25561
|
-
default: k(() => t[
|
|
25629
|
+
default: k(() => t[292] || (t[292] = [
|
|
25562
25630
|
o("h4", null, "Headline for section provided by slot", -1),
|
|
25563
25631
|
o("p", null, "Content for section provided by slot.", -1)
|
|
25564
25632
|
])),
|
|
25565
25633
|
_: 1
|
|
25566
25634
|
}),
|
|
25567
|
-
t[
|
|
25635
|
+
t[296] || (t[296] = o("h3", null, "Section styled as box", -1)),
|
|
25568
25636
|
p(je, {
|
|
25569
25637
|
useSlot: !0,
|
|
25570
25638
|
styleAsBox: !0
|
|
25571
25639
|
}, {
|
|
25572
|
-
default: k(() => t[
|
|
25640
|
+
default: k(() => t[293] || (t[293] = [
|
|
25573
25641
|
o("h4", null, "Headline for section styled as box", -1),
|
|
25574
25642
|
o("p", null, "Content for section styled as box.", -1)
|
|
25575
25643
|
])),
|
|
@@ -25580,7 +25648,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
25580
25648
|
}),
|
|
25581
25649
|
p(w, null, {
|
|
25582
25650
|
default: k(() => [
|
|
25583
|
-
t[
|
|
25651
|
+
t[297] || (t[297] = o("h2", {
|
|
25584
25652
|
class: "headline-demopage",
|
|
25585
25653
|
id: "section-site-footer"
|
|
25586
25654
|
}, "Site Footer", -1)),
|
|
@@ -25601,13 +25669,13 @@ function pk(e, t, n, s, i, l) {
|
|
|
25601
25669
|
}),
|
|
25602
25670
|
p(w, null, {
|
|
25603
25671
|
default: k(() => [
|
|
25604
|
-
o("h2",
|
|
25605
|
-
t[
|
|
25672
|
+
o("h2", Zv, [
|
|
25673
|
+
t[298] || (t[298] = o("span", null, "Site Header", -1)),
|
|
25606
25674
|
o("a", {
|
|
25607
25675
|
href: "#",
|
|
25608
25676
|
class: "button small icon-cog",
|
|
25609
25677
|
title: "Open Component Settings",
|
|
25610
|
-
onClick: t[
|
|
25678
|
+
onClick: t[108] || (t[108] = S((b) => l.openSettingsSidebar("CmdSiteHeader"), ["prevent"]))
|
|
25611
25679
|
})
|
|
25612
25680
|
]),
|
|
25613
25681
|
p(h, L({ ref: "CmdSiteHeader" }, e.cmdSiteHeaderSettingsData, { cmdCompanyLogo: i.companyLogoData }), {
|
|
@@ -25625,24 +25693,24 @@ function pk(e, t, n, s, i, l) {
|
|
|
25625
25693
|
}),
|
|
25626
25694
|
p(w, null, {
|
|
25627
25695
|
default: k(() => [
|
|
25628
|
-
o("h2",
|
|
25629
|
-
t[
|
|
25696
|
+
o("h2", Qv, [
|
|
25697
|
+
t[299] || (t[299] = o("span", null, "Site Search", -1)),
|
|
25630
25698
|
o("a", {
|
|
25631
25699
|
href: "#",
|
|
25632
25700
|
class: "button small icon-cog",
|
|
25633
25701
|
title: "Open Component Settings",
|
|
25634
|
-
onClick: t[
|
|
25702
|
+
onClick: t[109] || (t[109] = S((b) => l.openSettingsSidebar("CmdSiteSearch"), ["prevent"]))
|
|
25635
25703
|
})
|
|
25636
25704
|
]),
|
|
25637
|
-
p(
|
|
25705
|
+
p(mt, L({ ref: "CmdSiteSearch" }, e.cmdSiteSearchSettingsData, {
|
|
25638
25706
|
modelValueInput1: i.siteSearchInput1,
|
|
25639
|
-
"onUpdate:modelValueInput1": t[
|
|
25707
|
+
"onUpdate:modelValueInput1": t[110] || (t[110] = (b) => i.siteSearchInput1 = b),
|
|
25640
25708
|
modelValueInput2: i.siteSearchInput2,
|
|
25641
|
-
"onUpdate:modelValueInput2": t[
|
|
25709
|
+
"onUpdate:modelValueInput2": t[111] || (t[111] = (b) => i.siteSearchInput2 = b),
|
|
25642
25710
|
modelValueRadius: i.radius,
|
|
25643
|
-
"onUpdate:modelValueRadius": t[
|
|
25711
|
+
"onUpdate:modelValueRadius": t[112] || (t[112] = (b) => i.radius = b),
|
|
25644
25712
|
modelValueSearchFilters: i.filters,
|
|
25645
|
-
"onUpdate:modelValueSearchFilters": t[
|
|
25713
|
+
"onUpdate:modelValueSearchFilters": t[113] || (t[113] = (b) => i.filters = b),
|
|
25646
25714
|
onSearch: l.siteSearchOutput,
|
|
25647
25715
|
cmdFakeSelect: i.siteSearchFilters
|
|
25648
25716
|
}), null, 16, ["modelValueInput1", "modelValueInput2", "modelValueRadius", "modelValueSearchFilters", "onSearch", "cmdFakeSelect"])
|
|
@@ -25651,17 +25719,17 @@ function pk(e, t, n, s, i, l) {
|
|
|
25651
25719
|
}),
|
|
25652
25720
|
p(w, null, {
|
|
25653
25721
|
default: k(() => [
|
|
25654
|
-
o("h2",
|
|
25655
|
-
t[
|
|
25722
|
+
o("h2", Xv, [
|
|
25723
|
+
t[300] || (t[300] = o("span", null, "Slideshow", -1)),
|
|
25656
25724
|
o("a", {
|
|
25657
25725
|
href: "#",
|
|
25658
25726
|
class: "button small icon-cog",
|
|
25659
25727
|
title: "Open Component Settings",
|
|
25660
|
-
onClick: t[
|
|
25728
|
+
onClick: t[114] || (t[114] = S((b) => l.openSettingsSidebar("CmdSlideshow"), ["prevent"]))
|
|
25661
25729
|
})
|
|
25662
25730
|
]),
|
|
25663
25731
|
p(Y, L({ ref: "CmdSlideshow" }, e.cmdSlideshowSettingsData, { "slideshow-items": i.slideshowData }), {
|
|
25664
|
-
default: k(() => t[
|
|
25732
|
+
default: k(() => t[301] || (t[301] = [
|
|
25665
25733
|
M(" Slot-Content ")
|
|
25666
25734
|
])),
|
|
25667
25735
|
_: 1
|
|
@@ -25671,39 +25739,39 @@ function pk(e, t, n, s, i, l) {
|
|
|
25671
25739
|
}),
|
|
25672
25740
|
p(w, null, {
|
|
25673
25741
|
default: k(() => [
|
|
25674
|
-
o("h2",
|
|
25675
|
-
t[
|
|
25742
|
+
o("h2", $v, [
|
|
25743
|
+
t[302] || (t[302] = o("span", null, "Smart Search", -1)),
|
|
25676
25744
|
o("a", {
|
|
25677
25745
|
href: "#",
|
|
25678
25746
|
class: "button small icon-cog",
|
|
25679
25747
|
title: "Open Component Settings",
|
|
25680
|
-
onClick: t[
|
|
25748
|
+
onClick: t[115] || (t[115] = S((b) => l.openSettingsSidebar("CmdSmartSearch"), ["prevent"]))
|
|
25681
25749
|
})
|
|
25682
25750
|
]),
|
|
25683
25751
|
M(" smartSearchString: " + y(i.smartSearchString) + " ", 1),
|
|
25684
25752
|
p(D, L({ ref: "CmdSmartSearch" }, e.smartSearchSettingsData, {
|
|
25685
25753
|
listOfRecommendations: i.smartSearchData.listOfRecommendations,
|
|
25686
25754
|
modelValue: i.smartSearchString,
|
|
25687
|
-
"onUpdate:modelValue": t[
|
|
25755
|
+
"onUpdate:modelValue": t[116] || (t[116] = (b) => i.smartSearchString = b)
|
|
25688
25756
|
}), null, 16, ["listOfRecommendations", "modelValue"]),
|
|
25689
25757
|
M(" smartSearchObject: " + y(i.smartSearchObject) + " ", 1),
|
|
25690
25758
|
p(D, L({ ref: "CmdSmartSearch" }, e.smartSearchSettingsData, {
|
|
25691
25759
|
listOfRecommendations: i.smartSearchData.listOfRecommendations,
|
|
25692
25760
|
modelValue: i.smartSearchObject,
|
|
25693
|
-
"onUpdate:modelValue": t[
|
|
25761
|
+
"onUpdate:modelValue": t[117] || (t[117] = (b) => i.smartSearchObject = b)
|
|
25694
25762
|
}), null, 16, ["listOfRecommendations", "modelValue"])
|
|
25695
25763
|
]),
|
|
25696
25764
|
_: 1
|
|
25697
25765
|
}),
|
|
25698
25766
|
p(w, null, {
|
|
25699
25767
|
default: k(() => [
|
|
25700
|
-
o("h2",
|
|
25701
|
-
t[
|
|
25768
|
+
o("h2", ek, [
|
|
25769
|
+
t[303] || (t[303] = o("span", null, "Social Networks", -1)),
|
|
25702
25770
|
o("a", {
|
|
25703
25771
|
href: "#",
|
|
25704
25772
|
class: "button small icon-cog",
|
|
25705
25773
|
title: "Open Component Settings",
|
|
25706
|
-
onClick: t[
|
|
25774
|
+
onClick: t[118] || (t[118] = S((b) => l.openSettingsSidebar("CmdSocialNetworks"), ["prevent"]))
|
|
25707
25775
|
})
|
|
25708
25776
|
]),
|
|
25709
25777
|
p(Bl, L({ ref: "CmdSocialNetworks" }, { ...e.cmdSocialNetworksSettingsData, ...i.socialNetworksData }), null, 16)
|
|
@@ -25712,7 +25780,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
25712
25780
|
}),
|
|
25713
25781
|
p(w, null, {
|
|
25714
25782
|
default: k(() => [
|
|
25715
|
-
t[
|
|
25783
|
+
t[304] || (t[304] = o("h2", {
|
|
25716
25784
|
class: "headline-demopage",
|
|
25717
25785
|
id: "section-switch-language"
|
|
25718
25786
|
}, "Switch Language", -1)),
|
|
@@ -25727,13 +25795,13 @@ function pk(e, t, n, s, i, l) {
|
|
|
25727
25795
|
}),
|
|
25728
25796
|
p(w, null, {
|
|
25729
25797
|
default: k(() => [
|
|
25730
|
-
o("h2",
|
|
25731
|
-
t[
|
|
25798
|
+
o("h2", tk, [
|
|
25799
|
+
t[305] || (t[305] = o("span", null, "System Message", -1)),
|
|
25732
25800
|
o("a", {
|
|
25733
25801
|
href: "#",
|
|
25734
25802
|
class: "button small icon-cog",
|
|
25735
25803
|
title: "Open Component Settings",
|
|
25736
|
-
onClick: t[
|
|
25804
|
+
onClick: t[119] || (t[119] = S((b) => l.openSettingsSidebar("CmdSystemMessage"), ["prevent"]))
|
|
25737
25805
|
})
|
|
25738
25806
|
]),
|
|
25739
25807
|
p(Fl, L({ ref: "CmdSystemMessage" }, e.cmdSystemMessageSettingsData, { iconMessage: { iconClass: "icon-error-circle", show: !0 } }), null, 16)
|
|
@@ -25742,18 +25810,18 @@ function pk(e, t, n, s, i, l) {
|
|
|
25742
25810
|
}),
|
|
25743
25811
|
p(w, null, {
|
|
25744
25812
|
default: k(() => [
|
|
25745
|
-
o("h2",
|
|
25746
|
-
t[
|
|
25813
|
+
o("h2", nk, [
|
|
25814
|
+
t[306] || (t[306] = o("span", null, "Tables", -1)),
|
|
25747
25815
|
o("a", {
|
|
25748
25816
|
href: "#",
|
|
25749
25817
|
class: "button small icon-cog",
|
|
25750
25818
|
title: "Open Component Settings",
|
|
25751
|
-
onClick: t[
|
|
25819
|
+
onClick: t[120] || (t[120] = S((b) => l.openSettingsSidebar("CmdTable"), ["prevent"]))
|
|
25752
25820
|
})
|
|
25753
25821
|
]),
|
|
25754
|
-
t[
|
|
25822
|
+
t[307] || (t[307] = o("h3", null, "Table as wide as its content (with caption)", -1)),
|
|
25755
25823
|
p(Bn, L({ ref: "CmdTable" }, e.cmdTableSettingsData, { "table-data": i.tableDataLarge }), null, 16, ["table-data"]),
|
|
25756
|
-
t[
|
|
25824
|
+
t[308] || (t[308] = o("h3", null, "Table as wide as possible", -1)),
|
|
25757
25825
|
p(Bn, {
|
|
25758
25826
|
collapsible: !0,
|
|
25759
25827
|
fullWidthOnDefault: !1,
|
|
@@ -25765,25 +25833,25 @@ function pk(e, t, n, s, i, l) {
|
|
|
25765
25833
|
}),
|
|
25766
25834
|
p(w, null, {
|
|
25767
25835
|
default: k(() => [
|
|
25768
|
-
o("h2",
|
|
25769
|
-
t[
|
|
25836
|
+
o("h2", ik, [
|
|
25837
|
+
t[309] || (t[309] = o("span", null, "Tabs", -1)),
|
|
25770
25838
|
o("a", {
|
|
25771
25839
|
href: "#",
|
|
25772
25840
|
class: "button small icon-cog",
|
|
25773
25841
|
title: "Open Component Settings",
|
|
25774
|
-
onClick: t[
|
|
25842
|
+
onClick: t[121] || (t[121] = S((b) => l.openSettingsSidebar("CmdTabs"), ["prevent"]))
|
|
25775
25843
|
})
|
|
25776
25844
|
]),
|
|
25777
25845
|
p(Ml, L({ ref: "CmdTabs" }, e.cmdTabsSettingsData, { tabs: i.tabsData }), {
|
|
25778
|
-
"tab-content-0": k(() => t[
|
|
25846
|
+
"tab-content-0": k(() => t[310] || (t[310] = [
|
|
25779
25847
|
o("h4", null, "Tab 1 headline", -1),
|
|
25780
25848
|
o("p", null, "Slot-Content Tab 1", -1)
|
|
25781
25849
|
])),
|
|
25782
|
-
"tab-content-1": k(() => t[
|
|
25850
|
+
"tab-content-1": k(() => t[311] || (t[311] = [
|
|
25783
25851
|
o("h4", null, "Tab 2 headline", -1),
|
|
25784
25852
|
o("p", null, "Slot-Content Tab 2", -1)
|
|
25785
25853
|
])),
|
|
25786
|
-
"tab-content-2": k(() => t[
|
|
25854
|
+
"tab-content-2": k(() => t[312] || (t[312] = [
|
|
25787
25855
|
o("h4", null, "Tab 3 headline", -1),
|
|
25788
25856
|
o("p", null, "Slot-Content Tab 3", -1)
|
|
25789
25857
|
])),
|
|
@@ -25794,13 +25862,13 @@ function pk(e, t, n, s, i, l) {
|
|
|
25794
25862
|
}),
|
|
25795
25863
|
p(w, null, {
|
|
25796
25864
|
default: k(() => [
|
|
25797
|
-
o("h2",
|
|
25798
|
-
t[
|
|
25865
|
+
o("h2", lk, [
|
|
25866
|
+
t[313] || (t[313] = o("span", null, "Tag", -1)),
|
|
25799
25867
|
o("a", {
|
|
25800
25868
|
href: "#",
|
|
25801
25869
|
class: "button small icon-cog",
|
|
25802
25870
|
title: "Open Component Settings",
|
|
25803
|
-
onClick: t[
|
|
25871
|
+
onClick: t[122] || (t[122] = S((b) => l.openSettingsSidebar("CmdTag"), ["prevent"]))
|
|
25804
25872
|
})
|
|
25805
25873
|
]),
|
|
25806
25874
|
p(Pl, L({ ref: "CmdTag" }, e.cmdTagSettingsData), null, 16)
|
|
@@ -25809,21 +25877,21 @@ function pk(e, t, n, s, i, l) {
|
|
|
25809
25877
|
}),
|
|
25810
25878
|
p(w, null, {
|
|
25811
25879
|
default: k(() => [
|
|
25812
|
-
o("h2",
|
|
25813
|
-
t[
|
|
25880
|
+
o("h2", ok, [
|
|
25881
|
+
t[314] || (t[314] = o("span", null, "Text-Image-Block", -1)),
|
|
25814
25882
|
o("a", {
|
|
25815
25883
|
href: "#",
|
|
25816
25884
|
class: "button small icon-cog",
|
|
25817
25885
|
title: "Open Component Settings",
|
|
25818
|
-
onClick: t[
|
|
25886
|
+
onClick: t[123] || (t[123] = S((b) => l.openSettingsSidebar("CmdTextImageBlock"), ["prevent"]))
|
|
25819
25887
|
})
|
|
25820
25888
|
]),
|
|
25821
|
-
o("div",
|
|
25822
|
-
p(
|
|
25889
|
+
o("div", ak, [
|
|
25890
|
+
p(Vt, {
|
|
25823
25891
|
cmdHeadline: { headlineText: "Text-Image-Block (with html-text)", headlineLevel: 3 },
|
|
25824
25892
|
htmlContent: "<p>This text is given as html-text and show below an optional image.</p>"
|
|
25825
25893
|
}),
|
|
25826
|
-
p(
|
|
25894
|
+
p(Vt, L({ ref: "CmdTextImageBlock" }, e.cmdTextImageBlockSettingsData, {
|
|
25827
25895
|
cmdHeadline: { headlineText: "Text-Image-Block (with image and plain text)", headlineLevel: 3 },
|
|
25828
25896
|
cmdImage: {
|
|
25829
25897
|
image: {
|
|
@@ -25840,7 +25908,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
25840
25908
|
},
|
|
25841
25909
|
htmlContent: "This text is given as plain text and show below an optional image."
|
|
25842
25910
|
}), null, 16),
|
|
25843
|
-
p(
|
|
25911
|
+
p(Vt, {
|
|
25844
25912
|
cmdHeadline: { headlineText: "Text-Image-Block (with image and html-text)", headlineLevel: 3 },
|
|
25845
25913
|
htmlContent: "<p>This text is given as html-text and show below an optional image.</p>",
|
|
25846
25914
|
cmdImage: {
|
|
@@ -25863,20 +25931,20 @@ function pk(e, t, n, s, i, l) {
|
|
|
25863
25931
|
}),
|
|
25864
25932
|
p(w, null, {
|
|
25865
25933
|
default: k(() => [
|
|
25866
|
-
o("h2",
|
|
25867
|
-
t[
|
|
25934
|
+
o("h2", sk, [
|
|
25935
|
+
t[315] || (t[315] = o("span", null, "Thumbnail-Scroller", -1)),
|
|
25868
25936
|
o("a", {
|
|
25869
25937
|
href: "#",
|
|
25870
25938
|
class: "button small icon-cog",
|
|
25871
25939
|
title: "Open Component Settings",
|
|
25872
|
-
onClick: t[
|
|
25940
|
+
onClick: t[124] || (t[124] = S((b) => l.openSettingsSidebar("CmdThumbnailScroller"), ["prevent"]))
|
|
25873
25941
|
})
|
|
25874
25942
|
]),
|
|
25875
25943
|
o("p", null, " date (YMD/default): " + y(l.formatDate("2025-01-28", "", "-")), 1),
|
|
25876
25944
|
o("p", null, " date (DMY): " + y(l.formatDate("2025-01-28", "dmy")), 1),
|
|
25877
25945
|
o("p", null, " date (MDY): " + y(l.formatDate("2025-01-28", "mdy", "/")), 1),
|
|
25878
25946
|
o("p", null, " date (invalid)): " + y(l.formatDate("invalid")), 1),
|
|
25879
|
-
o("div",
|
|
25947
|
+
o("div", rk, [
|
|
25880
25948
|
p(Vl, L({ ref: "CmdThumbnailScroller" }, e.cmdThumbnailScrollerSettingsData, { thumbnailScrollerItems: l.thumbnailScrollerData }), null, 16, ["thumbnailScrollerItems"])
|
|
25881
25949
|
])
|
|
25882
25950
|
]),
|
|
@@ -25884,13 +25952,13 @@ function pk(e, t, n, s, i, l) {
|
|
|
25884
25952
|
}),
|
|
25885
25953
|
p(w, null, {
|
|
25886
25954
|
default: k(() => [
|
|
25887
|
-
o("h2",
|
|
25888
|
-
t[
|
|
25955
|
+
o("h2", dk, [
|
|
25956
|
+
t[316] || (t[316] = o("span", null, "Toggle Dark-Mode", -1)),
|
|
25889
25957
|
o("a", {
|
|
25890
25958
|
href: "#",
|
|
25891
25959
|
class: "button small icon-cog",
|
|
25892
25960
|
title: "Open Component Settings",
|
|
25893
|
-
onClick: t[
|
|
25961
|
+
onClick: t[125] || (t[125] = S((b) => l.openSettingsSidebar("CmdToggleDarkMode"), ["prevent"]))
|
|
25894
25962
|
})
|
|
25895
25963
|
]),
|
|
25896
25964
|
p(Al, L({ ref: "CmdToggleDarkMode" }, e.cmdToggleDarkModeSettingsData), null, 16)
|
|
@@ -25899,62 +25967,62 @@ function pk(e, t, n, s, i, l) {
|
|
|
25899
25967
|
}),
|
|
25900
25968
|
p(w, null, {
|
|
25901
25969
|
default: k(() => [
|
|
25902
|
-
o("h2",
|
|
25903
|
-
t[
|
|
25970
|
+
o("h2", uk, [
|
|
25971
|
+
t[317] || (t[317] = o("span", null, "Tooltip", -1)),
|
|
25904
25972
|
o("a", {
|
|
25905
25973
|
href: "#",
|
|
25906
25974
|
class: "button small icon-cog",
|
|
25907
25975
|
title: "Open Component Settings",
|
|
25908
|
-
onClick: t[
|
|
25976
|
+
onClick: t[126] || (t[126] = S((b) => l.openSettingsSidebar("CmdTooltip"), ["prevent"]))
|
|
25909
25977
|
})
|
|
25910
25978
|
]),
|
|
25911
25979
|
o("p", null, [
|
|
25912
25980
|
o("a", {
|
|
25913
25981
|
href: "#",
|
|
25914
|
-
onClick: t[
|
|
25982
|
+
onClick: t[127] || (t[127] = S(() => {
|
|
25915
25983
|
}, ["prevent"])),
|
|
25916
25984
|
id: "show-on-hover"
|
|
25917
25985
|
}, "Show tooltip on hover!"),
|
|
25918
|
-
t[
|
|
25986
|
+
t[318] || (t[318] = o("br", null, null, -1)),
|
|
25919
25987
|
o("a", {
|
|
25920
25988
|
href: "#",
|
|
25921
|
-
onClick: t[
|
|
25989
|
+
onClick: t[128] || (t[128] = S(() => {
|
|
25922
25990
|
}, ["prevent"])),
|
|
25923
25991
|
id: "show-with-delay"
|
|
25924
25992
|
}, "Show tooltip on hover with delay!"),
|
|
25925
|
-
t[
|
|
25993
|
+
t[319] || (t[319] = o("br", null, null, -1)),
|
|
25926
25994
|
o("a", {
|
|
25927
25995
|
href: "#",
|
|
25928
|
-
onClick: t[
|
|
25996
|
+
onClick: t[129] || (t[129] = S(() => {
|
|
25929
25997
|
}, ["prevent"])),
|
|
25930
25998
|
id: "show-on-click",
|
|
25931
25999
|
title: "Native tooltip"
|
|
25932
26000
|
}, "Show tooltip on click!")
|
|
25933
26001
|
]),
|
|
25934
|
-
p(
|
|
26002
|
+
p(At, L({
|
|
25935
26003
|
ref: "CmdTooltip",
|
|
25936
26004
|
"related-id": "show-on-hover"
|
|
25937
26005
|
}, e.cmdTooltipSettingsData), {
|
|
25938
|
-
default: k(() => t[
|
|
26006
|
+
default: k(() => t[320] || (t[320] = [
|
|
25939
26007
|
M(" Tooltip on hover ")
|
|
25940
26008
|
])),
|
|
25941
26009
|
_: 1
|
|
25942
26010
|
}, 16),
|
|
25943
|
-
p(
|
|
26011
|
+
p(At, {
|
|
25944
26012
|
"delay-to-show-tooltip": 2e3,
|
|
25945
26013
|
"related-id": "show-with-delay"
|
|
25946
26014
|
}, {
|
|
25947
|
-
default: k(() => t[
|
|
26015
|
+
default: k(() => t[321] || (t[321] = [
|
|
25948
26016
|
M(" Tooltip on hover with delay ")
|
|
25949
26017
|
])),
|
|
25950
26018
|
_: 1
|
|
25951
26019
|
}),
|
|
25952
|
-
p(
|
|
26020
|
+
p(At, {
|
|
25953
26021
|
"related-id": "show-on-click",
|
|
25954
26022
|
"toggle-visibility-by-click": !0,
|
|
25955
26023
|
allowEscapeKey: !0
|
|
25956
26024
|
}, {
|
|
25957
|
-
default: k(() => t[
|
|
26025
|
+
default: k(() => t[322] || (t[322] = [
|
|
25958
26026
|
M(" Tooltip on click ")
|
|
25959
26027
|
])),
|
|
25960
26028
|
_: 1
|
|
@@ -25964,13 +26032,13 @@ function pk(e, t, n, s, i, l) {
|
|
|
25964
26032
|
}),
|
|
25965
26033
|
p(w, null, {
|
|
25966
26034
|
default: k(() => [
|
|
25967
|
-
o("h2",
|
|
25968
|
-
t[
|
|
26035
|
+
o("h2", ck, [
|
|
26036
|
+
t[323] || (t[323] = o("span", null, "Upload-Form", -1)),
|
|
25969
26037
|
o("a", {
|
|
25970
26038
|
href: "#",
|
|
25971
26039
|
class: "button small icon-cog",
|
|
25972
26040
|
title: "Open Component Settings",
|
|
25973
|
-
onClick: t[
|
|
26041
|
+
onClick: t[130] || (t[130] = S((b) => l.openSettingsSidebar("CmdUploadForm"), ["prevent"]))
|
|
25974
26042
|
})
|
|
25975
26043
|
]),
|
|
25976
26044
|
p(El, L({ ref: "CmdUploadForm" }, e.cmdUploadFormSettingsData), null, 16)
|
|
@@ -25979,20 +26047,20 @@ function pk(e, t, n, s, i, l) {
|
|
|
25979
26047
|
}),
|
|
25980
26048
|
p(w, null, {
|
|
25981
26049
|
default: k(() => [
|
|
25982
|
-
o("h2",
|
|
25983
|
-
t[
|
|
26050
|
+
o("h2", mk, [
|
|
26051
|
+
t[324] || (t[324] = o("span", null, "Width Limitation Wrapper", -1)),
|
|
25984
26052
|
o("a", {
|
|
25985
26053
|
href: "#",
|
|
25986
26054
|
class: "button small icon-cog",
|
|
25987
26055
|
title: "Open Component Settings",
|
|
25988
|
-
onClick: t[
|
|
26056
|
+
onClick: t[131] || (t[131] = S((b) => l.openSettingsSidebar("CmdWidthLimitationWrapper"), ["prevent"]))
|
|
25989
26057
|
})
|
|
25990
26058
|
]),
|
|
25991
26059
|
p(w, L({
|
|
25992
26060
|
style: { border: "1px dashed var(--color-gray-30)" },
|
|
25993
26061
|
ref: "CmdWidthLimitationWrapper"
|
|
25994
26062
|
}, e.cmdWidthLimitationWrapperSettingsData), {
|
|
25995
|
-
default: k(() => t[
|
|
26063
|
+
default: k(() => t[325] || (t[325] = [
|
|
25996
26064
|
o("p", null, "Slot-content", -1),
|
|
25997
26065
|
o("p", null, "Slot-content", -1),
|
|
25998
26066
|
o("p", null, "Slot-content", -1)
|
|
@@ -26002,9 +26070,9 @@ function pk(e, t, n, s, i, l) {
|
|
|
26002
26070
|
]),
|
|
26003
26071
|
_: 1
|
|
26004
26072
|
})
|
|
26005
|
-
])) : (a(), r("main",
|
|
26073
|
+
])) : (a(), r("main", pk, [
|
|
26006
26074
|
p(w, null, {
|
|
26007
|
-
default: k(() => t[
|
|
26075
|
+
default: k(() => t[326] || (t[326] = [
|
|
26008
26076
|
o("h1", { class: "headline-demopage" }, "Page Overview", -1)
|
|
26009
26077
|
])),
|
|
26010
26078
|
_: 1
|
|
@@ -26012,7 +26080,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
26012
26080
|
p(Hl)
|
|
26013
26081
|
])),
|
|
26014
26082
|
p(Ke, null, {
|
|
26015
|
-
default: k(() => t[
|
|
26083
|
+
default: k(() => t[327] || (t[327] = [
|
|
26016
26084
|
M(" Slot-Content for Site-Footer ")
|
|
26017
26085
|
])),
|
|
26018
26086
|
_: 1
|
|
@@ -26030,7 +26098,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
26030
26098
|
cookieOptions: i.cookieDisclaimerData,
|
|
26031
26099
|
onCloseCookieDisclaimer: l.closeCookieDisclaimer,
|
|
26032
26100
|
modelValue: i.acceptedCookies,
|
|
26033
|
-
"onUpdate:modelValue": t[
|
|
26101
|
+
"onUpdate:modelValue": t[132] || (t[132] = (b) => i.acceptedCookies = b),
|
|
26034
26102
|
cmdHeadlineCookieDisclaimer: { show: !1 },
|
|
26035
26103
|
privacyText: "By browsing this website you accept the usage and saving of anonymous data!"
|
|
26036
26104
|
}, null, 8, ["cookieOptions", "onCloseCookieDisclaimer", "modelValue"])
|
|
@@ -26059,7 +26127,7 @@ function pk(e, t, n, s, i, l) {
|
|
|
26059
26127
|
[Ul]
|
|
26060
26128
|
]);
|
|
26061
26129
|
}
|
|
26062
|
-
const
|
|
26130
|
+
const Sk = /* @__PURE__ */ P(x1, [["render", fk]]), _k = {
|
|
26063
26131
|
// el = real dom-element
|
|
26064
26132
|
mounted(e) {
|
|
26065
26133
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
|
@@ -26069,7 +26137,7 @@ const Tk = /* @__PURE__ */ P(x1, [["render", pk]]), Sk = {
|
|
|
26069
26137
|
t ? t.focus() : console.warn("No input-element for focus-directive on element " + e.tagName + " found!");
|
|
26070
26138
|
}
|
|
26071
26139
|
}
|
|
26072
|
-
},
|
|
26140
|
+
}, Ok = {
|
|
26073
26141
|
// el = real dom-element
|
|
26074
26142
|
// binding.value = value of v-directive
|
|
26075
26143
|
mounted(e, t) {
|
|
@@ -26085,8 +26153,8 @@ function Il(e) {
|
|
|
26085
26153
|
n.preventDefault(), Se({ url: e[t].href });
|
|
26086
26154
|
}), e[t].dataset.cmdFancyBoxHandlerRegistered = "true");
|
|
26087
26155
|
}
|
|
26088
|
-
const
|
|
26089
|
-
function
|
|
26156
|
+
const ft = new MutationObserver(hk);
|
|
26157
|
+
function hk(e) {
|
|
26090
26158
|
const t = [];
|
|
26091
26159
|
for (let n = 0; n < e.length; n++)
|
|
26092
26160
|
if (e[n].type === "attributes")
|
|
@@ -26097,9 +26165,9 @@ function fk(e) {
|
|
|
26097
26165
|
}
|
|
26098
26166
|
t.length > 0 && Il(t);
|
|
26099
26167
|
}
|
|
26100
|
-
const
|
|
26168
|
+
const Lk = (e) => {
|
|
26101
26169
|
const t = e.querySelectorAll(".fancybox");
|
|
26102
|
-
Il(t),
|
|
26170
|
+
Il(t), ft == null || ft.disconnect(), ft.observe(e, {
|
|
26103
26171
|
subtree: !0,
|
|
26104
26172
|
// observe nested elements
|
|
26105
26173
|
childList: !0,
|
|
@@ -26109,16 +26177,16 @@ const Ok = (e) => {
|
|
|
26109
26177
|
characterData: !1
|
|
26110
26178
|
});
|
|
26111
26179
|
};
|
|
26112
|
-
function
|
|
26180
|
+
function Ik(e) {
|
|
26113
26181
|
return e ? e.slice(0, 1).toUpperCase() + e.slice(1) : "";
|
|
26114
26182
|
}
|
|
26115
|
-
function
|
|
26183
|
+
function Bk(e) {
|
|
26116
26184
|
return e ? e.charAt(0).toLowerCase() + e.slice(1) : "";
|
|
26117
26185
|
}
|
|
26118
|
-
function
|
|
26186
|
+
function Dk(...e) {
|
|
26119
26187
|
return e.filter((t) => typeof t == "string").map((t) => t.trim()).filter((t) => t.length > 0).join(" ");
|
|
26120
26188
|
}
|
|
26121
|
-
function
|
|
26189
|
+
function Fk() {
|
|
26122
26190
|
const e = {};
|
|
26123
26191
|
Xl(s);
|
|
26124
26192
|
function t(i = "defaultSequence") {
|
|
@@ -26133,19 +26201,19 @@ function Dk() {
|
|
|
26133
26201
|
}
|
|
26134
26202
|
return { nextSequenceValue: t, currentSequenceValue: n, resetSequence: s };
|
|
26135
26203
|
}
|
|
26136
|
-
function
|
|
26204
|
+
function gk(e, t, n) {
|
|
26137
26205
|
$l(() => e.addEventListener(t, n)), eo(() => e.removeEventListener(t, n));
|
|
26138
26206
|
}
|
|
26139
26207
|
function rn(e) {
|
|
26140
26208
|
return e.offsetParent ? e.offsetTop + rn(e.offsetParent) : e.offsetTop;
|
|
26141
26209
|
}
|
|
26142
|
-
function
|
|
26210
|
+
function yk(e) {
|
|
26143
26211
|
return e instanceof NodeList ? Array.from(e) : Array.isArray(e) ? e : [];
|
|
26144
26212
|
}
|
|
26145
|
-
function
|
|
26213
|
+
function bk(e, t) {
|
|
26146
26214
|
if (!t.length) {
|
|
26147
26215
|
const n = e();
|
|
26148
|
-
|
|
26216
|
+
yk(n).map((s, i) => {
|
|
26149
26217
|
const l = {
|
|
26150
26218
|
offsetTop: rn(s)
|
|
26151
26219
|
};
|
|
@@ -26153,16 +26221,16 @@ function yk(e, t) {
|
|
|
26153
26221
|
}).forEach((s) => t.push(s));
|
|
26154
26222
|
}
|
|
26155
26223
|
}
|
|
26156
|
-
function
|
|
26224
|
+
function Mk(e, t = 0) {
|
|
26157
26225
|
const n = [], s = to({
|
|
26158
26226
|
activeItem: t,
|
|
26159
26227
|
reset() {
|
|
26160
26228
|
this.activeItem = 0, n.length = 0;
|
|
26161
26229
|
}
|
|
26162
26230
|
});
|
|
26163
|
-
return
|
|
26231
|
+
return gk(window, "scroll", () => {
|
|
26164
26232
|
const i = window.scrollY;
|
|
26165
|
-
|
|
26233
|
+
bk(e, n);
|
|
26166
26234
|
for (let l = 0, d = n.length; l < d; l++)
|
|
26167
26235
|
if (i < n[l].offsetTop + n[l].height / 2) {
|
|
26168
26236
|
s.activeItem = l;
|
|
@@ -26213,7 +26281,7 @@ export {
|
|
|
26213
26281
|
hh as CmdSiteFooter,
|
|
26214
26282
|
xh as CmdSiteHeader,
|
|
26215
26283
|
Ih as CmdSiteSearch,
|
|
26216
|
-
|
|
26284
|
+
It as CmdSlideButton,
|
|
26217
26285
|
Ah as CmdSlideshow,
|
|
26218
26286
|
Rh as CmdSmartSearch,
|
|
26219
26287
|
$i as CmdSocialNetworks,
|
|
@@ -26228,30 +26296,30 @@ export {
|
|
|
26228
26296
|
gn as CmdTooltipForFormElements,
|
|
26229
26297
|
Lb as CmdUploadForm,
|
|
26230
26298
|
Tl as CmdWidthLimitationWrapper,
|
|
26231
|
-
|
|
26299
|
+
Sk as ComponentLibrary,
|
|
26232
26300
|
Yb as ContactInformation,
|
|
26233
|
-
|
|
26234
|
-
|
|
26235
|
-
|
|
26301
|
+
Lk as DirFancybox,
|
|
26302
|
+
_k as DirFocus,
|
|
26303
|
+
Ok as DirTelephone,
|
|
26236
26304
|
qe as EditComponentWrapper,
|
|
26237
26305
|
ce as I18n,
|
|
26238
26306
|
qb as MultipleBoxWrapper,
|
|
26239
26307
|
Ub as MultipleListsOfLinks,
|
|
26240
|
-
|
|
26308
|
+
Ik as capitalizeFirstLetter,
|
|
26241
26309
|
Vi as createHtmlId,
|
|
26242
|
-
|
|
26243
|
-
|
|
26244
|
-
|
|
26310
|
+
lt as createUuid,
|
|
26311
|
+
vk as currentDate,
|
|
26312
|
+
kk as currentTime,
|
|
26245
26313
|
Ol as formatDate,
|
|
26246
26314
|
ax as formatTime,
|
|
26247
|
-
|
|
26315
|
+
Dk as fullName,
|
|
26248
26316
|
Yi as getCookieDisclaimerCookie,
|
|
26249
|
-
|
|
26317
|
+
wk as getDate,
|
|
26250
26318
|
$e as getFileExtension,
|
|
26251
|
-
|
|
26252
|
-
|
|
26319
|
+
Tk as getWeekday,
|
|
26320
|
+
Bk as lowercaseFirstLetter,
|
|
26253
26321
|
Se as openFancyBox,
|
|
26254
26322
|
Hm as setCookieDisclaimerCookie,
|
|
26255
|
-
|
|
26256
|
-
|
|
26323
|
+
Mk as useScrollspy,
|
|
26324
|
+
Fk as useSequence
|
|
26257
26325
|
};
|