comand-component-library 4.2.57 → 4.2.59

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.
@@ -4459,7 +4459,7 @@ function Fr(e, t, n, s, i, l) {
4459
4459
  V(e.$slots, "default")
4460
4460
  ])) : (a(), r("span", {
4461
4461
  key: 0,
4462
- class: C(["flex-container", { vertical: n.orientation === "vertical", "flex-none": !n.stretchHorizontally, "no-gap": n.multipleSwitch }])
4462
+ class: C(["flex-container", { vertical: n.orientation === "vertical", "flex-items-flex-none": !n.stretchHorizontally, "no-gap": n.multipleSwitch }])
4463
4463
  }, [
4464
4464
  (a(!0), r(O, null, q(n.inputElements, (c, f) => (a(), r("label", {
4465
4465
  key: f,
@@ -10773,6 +10773,168 @@ function Dp(e, t, n, s, i, l) {
10773
10773
  ], 2);
10774
10774
  }
10775
10775
  const Zi = /* @__PURE__ */ P(bp, [["render", Dp]]), Mp = {
10776
+ data() {
10777
+ return {
10778
+ defaultMessageProperties: {
10779
+ "pagination.tooltip.go_to_page": "Go to page {0}",
10780
+ "pagination.tooltip.not_possible": "Not possible (current page is shown already)"
10781
+ }
10782
+ };
10783
+ }
10784
+ }, Fp = {
10785
+ name: "CmdPagination",
10786
+ mixins: [
10787
+ ce,
10788
+ Mp
10789
+ ],
10790
+ emits: ["click"],
10791
+ data() {
10792
+ return {
10793
+ currentPage: 1
10794
+ };
10795
+ },
10796
+ props: {
10797
+ /**
10798
+ * set the active page/step
10799
+ */
10800
+ activePage: {
10801
+ type: Number,
10802
+ default: 1
10803
+ },
10804
+ /**
10805
+ * number of pages displayed
10806
+ */
10807
+ numberOfPages: {
10808
+ type: Number,
10809
+ required: !0
10810
+ },
10811
+ /**
10812
+ * toggle page-numbers on buttons
10813
+ */
10814
+ showPageNumbers: {
10815
+ type: Boolean,
10816
+ default: !0
10817
+ },
10818
+ /**
10819
+ * set type of links
10820
+ *
10821
+ * @allowedValues: "href", "button"
10822
+ */
10823
+ linkType: {
10824
+ type: String,
10825
+ default: "href",
10826
+ validator(e) {
10827
+ return e === "href" || e === "button";
10828
+ }
10829
+ },
10830
+ /**
10831
+ * link to switch to previous page
10832
+ *
10833
+ * @requiredForAccessibility: partial
10834
+ */
10835
+ prevLink: {
10836
+ type: Object,
10837
+ default: function() {
10838
+ return {
10839
+ iconClass: "icon-chevron-one-stripe-left",
10840
+ text: "prev",
10841
+ showText: !0
10842
+ };
10843
+ }
10844
+ },
10845
+ /**
10846
+ * link to switch to next page
10847
+ *
10848
+ * @requiredForAccessibility: partial
10849
+ */
10850
+ nextLink: {
10851
+ type: Object,
10852
+ default: function() {
10853
+ return {
10854
+ iconClass: "icon-chevron-one-stripe-right",
10855
+ text: "next",
10856
+ showText: !0
10857
+ };
10858
+ }
10859
+ }
10860
+ },
10861
+ computed: {
10862
+ getPreviousHref() {
10863
+ return this.currentPage === 1 ? null : "#";
10864
+ },
10865
+ getNextHref() {
10866
+ return this.currentPage === this.numberOfPages ? null : "#";
10867
+ }
10868
+ },
10869
+ methods: {
10870
+ getHref(e) {
10871
+ return this.linkType !== "href" || this.currentPage === e ? null : "#";
10872
+ },
10873
+ showPage(e, t) {
10874
+ this.currentPage = t, this.$emit("click", { orignalEvent: e, page: t });
10875
+ },
10876
+ nextPage(e) {
10877
+ this.currentPage < this.numberOfPages && this.showPage(e, this.currentPage + 1);
10878
+ },
10879
+ previousPage(e) {
10880
+ this.currentPage > 1 && this.showPage(e, this.currentPage - 1);
10881
+ }
10882
+ },
10883
+ watch: {
10884
+ activePage: {
10885
+ handler() {
10886
+ this.currentPage = this.activePage;
10887
+ },
10888
+ immediate: !0
10889
+ }
10890
+ }
10891
+ }, Pp = { class: "cmd-pagination" }, Vp = ["href", "title"], Ap = { key: 0 }, Ep = { class: "page-index" }, Hp = { class: "flex-container" }, qp = ["href", "title", "onClick"], Rp = ["href", "title"], jp = { key: 0 };
10892
+ function Np(e, t, n, s, i, l) {
10893
+ const d = K;
10894
+ return a(), r("div", Pp, [
10895
+ V(e.$slots, "default", {}, () => [
10896
+ o("a", {
10897
+ href: l.getPreviousHref,
10898
+ class: C(["page-change", { disabled: i.currentPage === 1, button: n.linkType === "button" }]),
10899
+ onClick: t[0] || (t[0] = S((...u) => l.previousPage && l.previousPage(...u), ["stop", "prevent"])),
10900
+ title: n.prevLink.showText ? null : n.prevLink.text
10901
+ }, [
10902
+ p(d, {
10903
+ iconClass: n.prevLink.iconClass,
10904
+ type: n.prevLink.iconType
10905
+ }, null, 8, ["iconClass", "type"]),
10906
+ n.prevLink.showText ? (a(), r("span", Ap, y(n.prevLink.text), 1)) : m("", !0)
10907
+ ], 10, Vp),
10908
+ o("div", Ep, [
10909
+ o("div", Hp, [
10910
+ (a(!0), r(O, null, q(n.numberOfPages, (u, c) => (a(), r("a", {
10911
+ href: l.getHref(u),
10912
+ class: C({ disabled: i.currentPage === c + 1, button: n.linkType === "button", hidden: !n.showPageNumbers }),
10913
+ title: i.currentPage !== c + 1 ? e.getMessage("pagination.tooltip.go_to_page", c + 1) : e.getMessage("pagination.tooltip.not_possible"),
10914
+ key: c,
10915
+ onClick: S((f) => l.showPage(f, u), ["stop", "prevent"]),
10916
+ "aria-live": "polite"
10917
+ }, [
10918
+ o("span", null, y(c + 1), 1)
10919
+ ], 10, qp))), 128))
10920
+ ])
10921
+ ]),
10922
+ o("a", {
10923
+ href: l.getNextHref,
10924
+ class: C(["page-change", { disabled: i.currentPage === n.numberOfPages, button: n.linkType === "button" }]),
10925
+ onClick: t[1] || (t[1] = S((...u) => l.nextPage && l.nextPage(...u), ["stop", "prevent"])),
10926
+ title: n.nextLink.showText ? null : n.nextLink.text
10927
+ }, [
10928
+ n.nextLink.showText ? (a(), r("span", jp, y(n.nextLink.text), 1)) : m("", !0),
10929
+ p(d, {
10930
+ iconClass: n.nextLink.iconClass,
10931
+ type: n.nextLink.iconType
10932
+ }, null, 8, ["iconClass", "type"])
10933
+ ], 10, Rp)
10934
+ ])
10935
+ ]);
10936
+ }
10937
+ const Qi = /* @__PURE__ */ P(Fp, [["render", Np]]), Up = {
10776
10938
  emits: ["click"],
10777
10939
  name: "CmdMultistepFormProgressBar",
10778
10940
  data() {
@@ -10882,11 +11044,11 @@ const Zi = /* @__PURE__ */ P(bp, [["render", Dp]]), Mp = {
10882
11044
  immediate: !0
10883
11045
  }
10884
11046
  }
10885
- }, Fp = {
11047
+ }, zp = {
10886
11048
  key: 0,
10887
11049
  class: "number"
10888
- }, Pp = { key: 2 };
10889
- function Vp(e, t, n, s, i, l) {
11050
+ }, Wp = { key: 2 };
11051
+ function Gp(e, t, n, s, i, l) {
10890
11052
  const d = K, u = Pe;
10891
11053
  return a(), r("ol", {
10892
11054
  class: C(["cmd-multistep-form-progress-bar", { "use-gap": n.useGap, "full-width": n.fullWidth }])
@@ -10906,24 +11068,197 @@ function Vp(e, t, n, s, i, l) {
10906
11068
  onClick: (h) => l.clickedStep(h, f)
10907
11069
  }, {
10908
11070
  default: k(() => [
10909
- n.showStepNumber ? (a(), r("span", Fp, y(f + 1), 1)) : m("", !0),
11071
+ n.showStepNumber ? (a(), r("span", zp, y(f + 1), 1)) : m("", !0),
10910
11072
  c.iconClass ? (a(), v(d, {
10911
11073
  key: 1,
10912
11074
  iconClass: c.iconClass,
10913
11075
  type: c.iconType
10914
11076
  }, null, 8, ["iconClass", "type"])) : m("", !0),
10915
- c.text ? (a(), r("span", Pp, y(c.text), 1)) : m("", !0)
11077
+ c.text ? (a(), r("span", Wp, y(c.text), 1)) : m("", !0)
10916
11078
  ]),
10917
11079
  _: 2
10918
11080
  }, 1032, ["linkType", "class", "styleAsButton", "highlightLevel", "path", "title", "disabled", "onClick"]),
10919
11081
  f + 1 !== n.multisteps.length && n.useGap ? (a(), r("span", {
10920
11082
  key: 0,
10921
- class: C(["separator", n.separatorIconClass])
10922
- }, null, 2)) : m("", !0)
10923
- ], 2))), 128))
10924
- ], 2);
11083
+ class: C(["separator", n.separatorIconClass])
11084
+ }, null, 2)) : m("", !0)
11085
+ ], 2))), 128))
11086
+ ], 2);
11087
+ }
11088
+ const Xi = /* @__PURE__ */ P(Up, [["render", Gp]]), Kp = {
11089
+ name: "CmdMultistepFormWrapper",
11090
+ data() {
11091
+ return {
11092
+ currentPage: 1,
11093
+ pagesWithError: []
11094
+ };
11095
+ },
11096
+ props: {
11097
+ /**
11098
+ * properties for CmdMultistepFormProgressBar-component
11099
+ */
11100
+ cmdMultistepFormProgressBar: {
11101
+ type: Object,
11102
+ default() {
11103
+ return {
11104
+ show: !0
11105
+ };
11106
+ }
11107
+ },
11108
+ /**
11109
+ * properties for CmdMultistepFormProgressBar-component
11110
+ */
11111
+ showButtonWrapper: {
11112
+ type: Boolean,
11113
+ default: !0
11114
+ },
11115
+ /**
11116
+ * properties for CmdLink-component
11117
+ */
11118
+ cmdLinkPrevious: {
11119
+ type: Object,
11120
+ required: !1
11121
+ },
11122
+ /**
11123
+ * properties for CmdLink-component
11124
+ */
11125
+ cmdLinkNext: {
11126
+ type: Object,
11127
+ required: !1
11128
+ },
11129
+ /**
11130
+ * properties for CmdPagination-component
11131
+ */
11132
+ cmdPagination: {
11133
+ type: Object,
11134
+ default() {
11135
+ return {
11136
+ show: !0
11137
+ };
11138
+ }
11139
+ }
11140
+ },
11141
+ mounted() {
11142
+ console.log("slots:", this.$slots);
11143
+ },
11144
+ methods: {
11145
+ getSystemMessage(e) {
11146
+ return this.pagesWithError.find((n) => n.page === e).message;
11147
+ },
11148
+ setErrorOnPage(e, t) {
11149
+ this.pagesWithError.some((s) => s.page === e) || this.pagesWithError.push({ page: e, message: t });
11150
+ },
11151
+ removeErrorOnPage() {
11152
+ this.pagesWithError = [];
11153
+ },
11154
+ setCurrentPage(e) {
11155
+ this.currentPage = e;
11156
+ },
11157
+ setPrevPage() {
11158
+ this.currentPage > 1 && this.currentPage--;
11159
+ },
11160
+ setNextPage() {
11161
+ this.currentPage < this.numberOfPages && this.currentPage++;
11162
+ }
11163
+ },
11164
+ computed: {
11165
+ errorSteps() {
11166
+ const e = [];
11167
+ return this.pagesWithError.find((t) => {
11168
+ e.push(t.page);
11169
+ }), console.log("steps", e), e;
11170
+ },
11171
+ multisteps() {
11172
+ const e = [];
11173
+ for (let t = 1; t <= this.numberOfPages; t++)
11174
+ e.push(t);
11175
+ return e;
11176
+ },
11177
+ numberOfPages() {
11178
+ return Object.keys(this.$slots).filter((e) => e.startsWith("page-")).length;
11179
+ },
11180
+ cmdMultistepFormProgressBarProperties() {
11181
+ return {
11182
+ show: !0,
11183
+ showStepNumber: !0,
11184
+ ...this.cmdMultistepFormProgressBar
11185
+ };
11186
+ },
11187
+ cmdPaginationProperties() {
11188
+ return {
11189
+ pages: null,
11190
+ itemsPerPage: null,
11191
+ showPageNumbers: !0,
11192
+ linkType: "href",
11193
+ prevLink: {
11194
+ iconClass: "icon-chevron-one-stripe-left",
11195
+ text: "prev",
11196
+ showText: !0
11197
+ },
11198
+ nextLink: {
11199
+ iconClass: "icon-chevron-one-stripe-right",
11200
+ text: "next",
11201
+ showText: !0
11202
+ }
11203
+ };
11204
+ }
11205
+ }
11206
+ }, Yp = { class: "cmd-multistepform-wrapper" };
11207
+ function Jp(e, t, n, s, i, l) {
11208
+ const d = Xi, u = Re, c = Qi;
11209
+ return a(), r("div", Yp, [
11210
+ V(e.$slots, "progress-bar", {
11211
+ setCurrentPage: l.setCurrentPage,
11212
+ numberOfPages: l.numberOfPages
11213
+ }, () => [
11214
+ n.cmdMultistepFormProgressBar.show ? (a(), v(d, L({ key: 0 }, l.cmdMultistepFormProgressBarProperties, {
11215
+ multisteps: l.multisteps,
11216
+ activeStep: i.currentPage - 1,
11217
+ errorSteps: l.errorSteps,
11218
+ onClick: t[0] || (t[0] = (f) => l.setCurrentPage(f.index + 1))
11219
+ }), null, 16, ["multisteps", "activeStep", "errorSteps"])) : m("", !0)
11220
+ ]),
11221
+ (a(!0), r(O, null, q(l.numberOfPages, (f, h) => $((a(), r("div", {
11222
+ class: C("multistep-page-" + f),
11223
+ key: h
11224
+ }, [
11225
+ i.pagesWithError.some((g) => g.page === f) ? (a(), v(u, {
11226
+ key: 0,
11227
+ systemMessage: l.getSystemMessage(f),
11228
+ validationStatus: "error"
11229
+ }, null, 8, ["systemMessage"])) : m("", !0),
11230
+ F(" page: " + y(f), 1),
11231
+ t[2] || (t[2] = o("br", null, null, -1)),
11232
+ F(" index: " + y(h), 1),
11233
+ t[3] || (t[3] = o("br", null, null, -1)),
11234
+ F(" currentPage: " + y(i.currentPage), 1),
11235
+ t[4] || (t[4] = o("br", null, null, -1)),
11236
+ F(" errorSteps: " + y(l.errorSteps) + " ", 1),
11237
+ V(e.$slots, "page-" + f, {
11238
+ setErrorOnPage: (g) => l.setErrorOnPage(f, g),
11239
+ removeErrorOnPage: l.removeErrorOnPage
11240
+ })
11241
+ ], 2)), [
11242
+ [ye, f === i.currentPage]
11243
+ ])), 128)),
11244
+ V(e.$slots, "pagination", {
11245
+ currentPage: i.currentPage,
11246
+ setPrevPage: l.setPrevPage,
11247
+ setNextPage: l.setNextPage,
11248
+ disabledPrevLink: i.currentPage === 1,
11249
+ disabledNextLink: i.currentPage === l.numberOfPages
11250
+ }, () => [
11251
+ n.cmdPagination.show ? (a(), v(c, L({
11252
+ key: 0,
11253
+ activePage: i.currentPage,
11254
+ numberOfPages: l.numberOfPages
11255
+ }, l.cmdPaginationProperties, {
11256
+ onClick: t[1] || (t[1] = (f) => l.setCurrentPage(f.page))
11257
+ }), null, 16, ["activePage", "numberOfPages"])) : m("", !0)
11258
+ ])
11259
+ ]);
10925
11260
  }
10926
- const Qi = /* @__PURE__ */ P(Mp, [["render", Vp]]), Ap = {
11261
+ const Zp = /* @__PURE__ */ P(Kp, [["render", Jp]]), Qp = {
10927
11262
  name: "CmdNewsletterSubscription",
10928
11263
  emits: ["button-click"],
10929
11264
  data() {
@@ -11072,10 +11407,10 @@ const Qi = /* @__PURE__ */ P(Mp, [["render", Vp]]), Ap = {
11072
11407
  immediate: !0
11073
11408
  }
11074
11409
  }
11075
- }, Ep = { class: "cmd-newsletter-subscription flex-container" }, Hp = { class: "button-wrapper" };
11076
- function qp(e, t, n, s, i, l) {
11410
+ }, Xp = { class: "cmd-newsletter-subscription flex-container" }, $p = { class: "button-wrapper" };
11411
+ function ef(e, t, n, s, i, l) {
11077
11412
  const d = Cn, u = te;
11078
- return a(), r("fieldset", Ep, [
11413
+ return a(), r("fieldset", Xp, [
11079
11414
  o("legend", {
11080
11415
  class: C({ hidden: !n.legend.show, "align-left": n.legend.align === "left" })
11081
11416
  }, y(n.legend.text), 3),
@@ -11099,7 +11434,7 @@ function qp(e, t, n, s, i, l) {
11099
11434
  "onUpdate:modelValue": t[1] || (t[1] = (c) => l.email = c),
11100
11435
  onValidationStatusChange: l.checkValidationStatus
11101
11436
  }, null, 8, ["placeholder", "labelText", "required", "useCustomTooltip", "modelValue", "onValidationStatusChange"]),
11102
- o("div", Hp, [
11437
+ o("div", $p, [
11103
11438
  p(u, {
11104
11439
  element: "button",
11105
11440
  type: n.buttonType,
@@ -11111,7 +11446,7 @@ function qp(e, t, n, s, i, l) {
11111
11446
  ])
11112
11447
  ]);
11113
11448
  }
11114
- const Rp = /* @__PURE__ */ P(Ap, [["render", qp]]);
11449
+ const tf = /* @__PURE__ */ P(Qp, [["render", ef]]);
11115
11450
  function ei(e, t, n, s = !0, i = !0) {
11116
11451
  function l(d, u) {
11117
11452
  return u && d < 10 ? "0" + d : d;
@@ -11124,7 +11459,7 @@ function ei(e, t, n, s = !0, i = !0) {
11124
11459
  return l(d, s) + e + l(u, !0) + t;
11125
11460
  };
11126
11461
  }
11127
- const jp = {
11462
+ const nf = {
11128
11463
  name: "CmdOpeningHoursItem",
11129
11464
  mixins: [ae],
11130
11465
  data() {
@@ -11212,20 +11547,20 @@ const jp = {
11212
11547
  deep: !0
11213
11548
  }
11214
11549
  }
11215
- }, Np = { class: "cmd-opening-hours-item" }, Up = {
11550
+ }, lf = { class: "cmd-opening-hours-item" }, of = {
11216
11551
  key: 0,
11217
11552
  class: "am"
11218
- }, zp = {
11553
+ }, af = {
11219
11554
  key: 1,
11220
11555
  class: "pm"
11221
- }, Wp = { class: "flex-container flex-none" }, Gp = { class: "flex-container flex-none am-wrapper" }, Kp = {
11556
+ }, sf = { class: "flex-container flex-none" }, rf = { class: "flex-container flex-none am-wrapper" }, df = {
11222
11557
  key: 1,
11223
11558
  class: "input-wrapper"
11224
- }, Yp = ["title"], Jp = { class: "flex-container flex-none pm-wrapper" }, Zp = {
11559
+ }, uf = ["title"], cf = { class: "flex-container flex-none pm-wrapper" }, mf = {
11225
11560
  key: 1,
11226
11561
  class: "input-wrapper"
11227
- }, Qp = ["title"];
11228
- function Xp(e, t, n, s, i, l) {
11562
+ }, pf = ["title"];
11563
+ function ff(e, t, n, s, i, l) {
11229
11564
  const d = te;
11230
11565
  return e.editing ? (a(), r(O, { key: 1 }, [
11231
11566
  o("dt", null, [
@@ -11240,8 +11575,8 @@ function Xp(e, t, n, s, i, l) {
11240
11575
  "onUpdate:modelValue": t[0] || (t[0] = (u) => i.editableDay.day = u)
11241
11576
  }, null, 8, ["modelValue"])
11242
11577
  ]),
11243
- o("dd", Wp, [
11244
- o("div", Gp, [
11578
+ o("dd", sf, [
11579
+ o("div", rf, [
11245
11580
  i.editableDay.amClosed ? (a(), v(d, {
11246
11581
  key: 0,
11247
11582
  element: "input",
@@ -11253,7 +11588,7 @@ function Xp(e, t, n, s, i, l) {
11253
11588
  modelValue: i.editableDay.amDisplayText,
11254
11589
  "onUpdate:modelValue": t[1] || (t[1] = (u) => i.editableDay.amDisplayText = u)
11255
11590
  }, null, 8, ["modelValue"])) : m("", !0),
11256
- i.editableDay.amClosed ? m("", !0) : (a(), r("div", Kp, [
11591
+ i.editableDay.amClosed ? m("", !0) : (a(), r("div", df, [
11257
11592
  p(d, {
11258
11593
  element: "input",
11259
11594
  type: "time",
@@ -11281,9 +11616,9 @@ function Xp(e, t, n, s, i, l) {
11281
11616
  onClick: t[4] || (t[4] = S((u) => l.toggleClosedStatus("am"), ["prevent"])),
11282
11617
  title: i.editableDay.amClosed ? "Set to open" : "Set to closed",
11283
11618
  class: C(i.editableDay.amClosed ? "icon-clock" : "icon-blocked")
11284
- }, null, 10, Yp)
11619
+ }, null, 10, uf)
11285
11620
  ]),
11286
- o("div", Jp, [
11621
+ o("div", cf, [
11287
11622
  i.editableDay.pmClosed ? (a(), v(d, {
11288
11623
  key: 0,
11289
11624
  element: "input",
@@ -11295,7 +11630,7 @@ function Xp(e, t, n, s, i, l) {
11295
11630
  modelValue: i.editableDay.pmDisplayText,
11296
11631
  "onUpdate:modelValue": t[5] || (t[5] = (u) => i.editableDay.pmDisplayText = u)
11297
11632
  }, null, 8, ["modelValue"])) : m("", !0),
11298
- i.editableDay.pmClosed ? m("", !0) : (a(), r("div", Zp, [
11633
+ i.editableDay.pmClosed ? m("", !0) : (a(), r("div", mf, [
11299
11634
  p(d, {
11300
11635
  element: "input",
11301
11636
  type: "time",
@@ -11323,20 +11658,20 @@ function Xp(e, t, n, s, i, l) {
11323
11658
  onClick: t[8] || (t[8] = S((u) => l.toggleClosedStatus("pm"), ["prevent"])),
11324
11659
  title: i.editableDay.pmClosed ? "Set to open" : "Set to closed",
11325
11660
  class: C(i.editableDay.pmClosed ? "icon-clock" : "icon-blocked")
11326
- }, null, 10, Qp)
11661
+ }, null, 10, pf)
11327
11662
  ])
11328
11663
  ])
11329
11664
  ], 64)) : (a(), r(O, { key: 0 }, [
11330
- o("dt", Np, y(n.day.day), 1),
11665
+ o("dt", lf, y(n.day.day), 1),
11331
11666
  o("dd", null, [
11332
- n.day.am ? (a(), r("span", Up, [
11667
+ n.day.am ? (a(), r("span", of, [
11333
11668
  n.day.am.displayText ? (a(), r(O, { key: 0 }, [
11334
11669
  F(y(n.day.am.displayText), 1)
11335
11670
  ], 64)) : (a(), r(O, { key: 1 }, [
11336
11671
  F(y(l.getTime(n.day.am.fromTime, n.abbreviationTextAm)) + " " + y(n.separator) + " " + y(l.getTime(n.day.am.tillTime)), 1)
11337
11672
  ], 64))
11338
11673
  ])) : m("", !0),
11339
- n.day.pm ? (a(), r("span", zp, [
11674
+ n.day.pm ? (a(), r("span", af, [
11340
11675
  n.day.pm.displayText ? (a(), r(O, { key: 0 }, [
11341
11676
  F(y(n.day.pm.displayText), 1)
11342
11677
  ], 64)) : (a(), r(O, { key: 1 }, [
@@ -11346,20 +11681,20 @@ function Xp(e, t, n, s, i, l) {
11346
11681
  ])
11347
11682
  ], 64));
11348
11683
  }
11349
- const $p = /* @__PURE__ */ P(jp, [["render", Xp]]);
11350
- function ef(e) {
11684
+ const hf = /* @__PURE__ */ P(nf, [["render", ff]]);
11685
+ function gf(e) {
11351
11686
  return (t, n) => {
11352
11687
  const s = /* @__PURE__ */ new Date();
11353
11688
  return s.setHours(t, n, 0, 0), new Intl.DateTimeFormat(e, { timeStyle: "short" }).format(s);
11354
11689
  };
11355
11690
  }
11356
- function tf(e, t, n, s = !0) {
11691
+ function yf(e, t, n, s = !0) {
11357
11692
  function i(l, d) {
11358
11693
  return d && l < 10 ? "0" + l : l;
11359
11694
  }
11360
11695
  return (l, d) => i(l, s) + e + i(d, !0) + t;
11361
11696
  }
11362
- const nf = {
11697
+ const bf = {
11363
11698
  name: "CmdOpeningHours",
11364
11699
  mixins: [ae],
11365
11700
  data() {
@@ -11593,7 +11928,7 @@ const nf = {
11593
11928
  };
11594
11929
  },
11595
11930
  getTime(e) {
11596
- return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) : tf(":", " hrs", "", !1)(e.hours, e.mins);
11931
+ return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) : yf(":", " hrs", "", !1)(e.hours, e.mins);
11597
11932
  },
11598
11933
  updateHandlerProvider() {
11599
11934
  const e = this.textOpenModel, t = this.textClosedModel, n = this.textHolidaysModel, s = this.textMiscInfoModel;
@@ -11606,17 +11941,17 @@ const nf = {
11606
11941
  });
11607
11942
  }
11608
11943
  }
11609
- }, lf = { class: "cmd-opening-hours" }, of = {
11944
+ }, xf = { class: "cmd-opening-hours" }, Cf = {
11610
11945
  key: 2,
11611
11946
  class: "flex-container"
11612
- }, af = { key: 3 }, sf = { class: "edit-mode-opening-hours-item" }, rf = { key: 5 }, df = { key: 0 }, uf = { key: 1 }, cf = {
11947
+ }, vf = { key: 3 }, kf = { class: "edit-mode-opening-hours-item" }, wf = { key: 5 }, Tf = { key: 0 }, Sf = { key: 1 }, _f = {
11613
11948
  key: 6,
11614
11949
  class: "flex-container vertical"
11615
11950
  };
11616
- function mf(e, t, n, s, i, l) {
11951
+ function Of(e, t, n, s, i, l) {
11617
11952
  var g, w;
11618
- const d = J, u = Pe, c = te, f = $p, h = qe;
11619
- return a(), r("div", lf, [
11953
+ const d = J, u = Pe, c = te, f = hf, h = qe;
11954
+ return a(), r("div", xf, [
11620
11955
  (g = n.cmdHeadline) != null && g.headlineText || e.editModeContext ? (a(), v(d, N(L({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
11621
11956
  !e.editing && n.showOpenStatus ? (a(), r(O, { key: 1 }, [
11622
11957
  (w = n.cmdLink) != null && w.path ? (a(), v(u, L({
@@ -11633,7 +11968,7 @@ function mf(e, t, n, s, i, l) {
11633
11968
  key: 1,
11634
11969
  class: C({ closed: l.isClosed })
11635
11970
  }, y(l.textOpenClosed), 3))
11636
- ], 64)) : e.editing ? (a(), r("div", of, [
11971
+ ], 64)) : e.editing ? (a(), r("div", Cf, [
11637
11972
  p(c, {
11638
11973
  element: "input",
11639
11974
  type: "text",
@@ -11661,231 +11996,69 @@ function mf(e, t, n, s, i, l) {
11661
11996
  onClick: t[2] || (t[2] = (...x) => l.onAddItem && l.onAddItem(...x))
11662
11997
  }, t[5] || (t[5] = [
11663
11998
  o("span", { class: "icon-plus" }, null, -1),
11664
- o("span", null, "Add new entry", -1)
11665
- ]))) : (a(!0), r(O, { key: 1 }, q(l.openingHoursFormatted, (x, _) => (a(), v(h, {
11666
- key: "x" + _,
11667
- class: "edit-items",
11668
- showComponentName: !1,
11669
- componentName: "CmdOpeningHoursItem",
11670
- componentProps: x,
11671
- allowedComponentTypes: [],
11672
- componentPath: ["props", "openingHours", _],
11673
- itemProvider: l.itemProvider
11674
- }, {
11675
- default: k(() => [
11676
- o("dl", sf, [
11677
- p(f, {
11678
- day: x,
11679
- separator: n.separator,
11680
- abbreviationTextAm: n.abbreviationTextAm,
11681
- abbreviationTextPm: n.abbreviationTextPm,
11682
- use24HoursFormat: n.use24HoursFormat
11683
- }, null, 8, ["day", "separator", "abbreviationTextAm", "abbreviationTextPm", "use24HoursFormat"])
11684
- ])
11685
- ]),
11686
- _: 2
11687
- }, 1032, ["componentProps", "componentPath", "itemProvider"]))), 128))
11688
- ], 64)) : (a(), r("dl", af, [
11689
- (a(!0), r(O, null, q(l.openingHoursFormatted, (x, _) => (a(), v(f, {
11690
- key: _,
11691
- day: x,
11692
- separator: n.separator,
11693
- abbreviationTextAm: n.abbreviationTextAm,
11694
- abbreviationTextPm: n.abbreviationTextPm,
11695
- use24HoursFormat: n.use24HoursFormat
11696
- }, null, 8, ["day", "separator", "abbreviationTextAm", "abbreviationTextPm", "use24HoursFormat"]))), 128))
11697
- ])),
11698
- !e.editing && (n.textHolidays || n.textMiscInfo) ? (a(), r("div", rf, [
11699
- n.textHolidays ? (a(), r("p", df, [
11700
- o("strong", null, y(n.textHolidays), 1)
11701
- ])) : m("", !0),
11702
- n.textMiscInfo ? (a(), r("p", uf, y(n.textMiscInfo), 1)) : m("", !0)
11703
- ])) : m("", !0),
11704
- e.editing ? (a(), r("div", cf, [
11705
- p(c, {
11706
- element: "input",
11707
- type: "text",
11708
- showLabel: !1,
11709
- labelText: "Text for 'holidays'",
11710
- placeholder: "Text for 'holidays'",
11711
- modelValue: l.textHolidaysModel,
11712
- "onUpdate:modelValue": t[3] || (t[3] = (x) => l.textHolidaysModel = x)
11713
- }, null, 8, ["modelValue"]),
11714
- p(c, {
11715
- element: "input",
11716
- type: "text",
11717
- showLabel: !1,
11718
- labelText: "Miscellaneous information",
11719
- placeholder: "Miscellaneous information",
11720
- modelValue: l.textMiscInfoModel,
11721
- "onUpdate:modelValue": t[4] || (t[4] = (x) => l.textMiscInfoModel = x)
11722
- }, null, 8, ["modelValue"])
11723
- ])) : m("", !0)
11724
- ]);
11725
- }
11726
- const pf = /* @__PURE__ */ P(nf, [["render", mf]]), ff = {
11727
- data() {
11728
- return {
11729
- defaultMessageProperties: {
11730
- "pagination.tooltip.go_to_page": "Go to page {0}",
11731
- "pagination.tooltip.not_possible": "Not possible (current page is shown already)"
11732
- }
11733
- };
11734
- }
11735
- }, hf = {
11736
- name: "CmdPagination",
11737
- mixins: [
11738
- ce,
11739
- ff
11740
- ],
11741
- emits: ["click"],
11742
- data() {
11743
- return {
11744
- currentPage: 1
11745
- };
11746
- },
11747
- props: {
11748
- /**
11749
- * set the active page/step
11750
- */
11751
- activePage: {
11752
- type: Number,
11753
- default: 1
11754
- },
11755
- /**
11756
- * number of pages displayed
11757
- */
11758
- numberOfPages: {
11759
- type: Number,
11760
- required: !0
11761
- },
11762
- /**
11763
- * toggle page-numbers on buttons
11764
- */
11765
- showPageNumbers: {
11766
- type: Boolean,
11767
- default: !0
11768
- },
11769
- /**
11770
- * set type of links
11771
- *
11772
- * @allowedValues: "href", "button"
11773
- */
11774
- linkType: {
11775
- type: String,
11776
- default: "href",
11777
- validator(e) {
11778
- return e === "href" || e === "button";
11779
- }
11780
- },
11781
- /**
11782
- * link to switch to previous page
11783
- *
11784
- * @requiredForAccessibility: partial
11785
- */
11786
- prevLink: {
11787
- type: Object,
11788
- default: function() {
11789
- return {
11790
- iconClass: "icon-chevron-one-stripe-left",
11791
- text: "prev",
11792
- showText: !0
11793
- };
11794
- }
11795
- },
11796
- /**
11797
- * link to switch to next page
11798
- *
11799
- * @requiredForAccessibility: partial
11800
- */
11801
- nextLink: {
11802
- type: Object,
11803
- default: function() {
11804
- return {
11805
- iconClass: "icon-chevron-one-stripe-right",
11806
- text: "next",
11807
- showText: !0
11808
- };
11809
- }
11810
- }
11811
- },
11812
- computed: {
11813
- getPreviousHref() {
11814
- return this.currentPage === 1 ? null : "#";
11815
- },
11816
- getNextHref() {
11817
- return this.currentPage === this.numberOfPages ? null : "#";
11818
- }
11819
- },
11820
- methods: {
11821
- getHref(e) {
11822
- return this.linkType !== "href" || this.currentPage === e ? null : "#";
11823
- },
11824
- showPage(e, t) {
11825
- this.currentPage = t, this.$emit("click", { orignalEvent: e, page: t });
11826
- },
11827
- nextPage(e) {
11828
- this.currentPage < this.numberOfPages && this.showPage(e, this.currentPage + 1);
11829
- },
11830
- previousPage(e) {
11831
- this.currentPage > 1 && this.showPage(e, this.currentPage - 1);
11832
- }
11833
- },
11834
- watch: {
11835
- activePage: {
11836
- handler() {
11837
- this.currentPage = this.activePage;
11838
- },
11839
- immediate: !0
11840
- }
11841
- }
11842
- }, gf = { class: "cmd-pagination" }, yf = ["href", "title"], bf = { key: 0 }, xf = { class: "page-index" }, Cf = { class: "flex-container" }, vf = ["href", "title", "onClick"], kf = ["href", "title"], wf = { key: 0 };
11843
- function Tf(e, t, n, s, i, l) {
11844
- const d = K;
11845
- return a(), r("div", gf, [
11846
- V(e.$slots, "default", {}, () => [
11847
- o("a", {
11848
- href: l.getPreviousHref,
11849
- class: C(["page-change", { disabled: i.currentPage === 1, button: n.linkType === "button" }]),
11850
- onClick: t[0] || (t[0] = S((...u) => l.previousPage && l.previousPage(...u), ["stop", "prevent"])),
11851
- title: n.prevLink.showText ? null : n.prevLink.text
11852
- }, [
11853
- p(d, {
11854
- iconClass: n.prevLink.iconClass,
11855
- type: n.prevLink.iconType
11856
- }, null, 8, ["iconClass", "type"]),
11857
- n.prevLink.showText ? (a(), r("span", bf, y(n.prevLink.text), 1)) : m("", !0)
11858
- ], 10, yf),
11859
- o("div", xf, [
11860
- o("div", Cf, [
11861
- (a(!0), r(O, null, q(n.numberOfPages, (u, c) => (a(), r("a", {
11862
- href: l.getHref(u),
11863
- class: C({ disabled: i.currentPage === c + 1, button: n.linkType === "button", hidden: !n.showPageNumbers }),
11864
- title: i.currentPage !== c + 1 ? e.getMessage("pagination.tooltip.go_to_page", c + 1) : e.getMessage("pagination.tooltip.not_possible"),
11865
- key: c,
11866
- onClick: S((f) => l.showPage(f, u), ["stop", "prevent"]),
11867
- "aria-live": "polite"
11868
- }, [
11869
- o("span", null, y(c + 1), 1)
11870
- ], 10, vf))), 128))
11871
- ])
11872
- ]),
11873
- o("a", {
11874
- href: l.getNextHref,
11875
- class: C(["page-change", { disabled: i.currentPage === n.numberOfPages, button: n.linkType === "button" }]),
11876
- onClick: t[1] || (t[1] = S((...u) => l.nextPage && l.nextPage(...u), ["stop", "prevent"])),
11877
- title: n.nextLink.showText ? null : n.nextLink.text
11878
- }, [
11879
- n.nextLink.showText ? (a(), r("span", wf, y(n.nextLink.text), 1)) : m("", !0),
11880
- p(d, {
11881
- iconClass: n.nextLink.iconClass,
11882
- type: n.nextLink.iconType
11883
- }, null, 8, ["iconClass", "type"])
11884
- ], 10, kf)
11885
- ])
11999
+ o("span", null, "Add new entry", -1)
12000
+ ]))) : (a(!0), r(O, { key: 1 }, q(l.openingHoursFormatted, (x, _) => (a(), v(h, {
12001
+ key: "x" + _,
12002
+ class: "edit-items",
12003
+ showComponentName: !1,
12004
+ componentName: "CmdOpeningHoursItem",
12005
+ componentProps: x,
12006
+ allowedComponentTypes: [],
12007
+ componentPath: ["props", "openingHours", _],
12008
+ itemProvider: l.itemProvider
12009
+ }, {
12010
+ default: k(() => [
12011
+ o("dl", kf, [
12012
+ p(f, {
12013
+ day: x,
12014
+ separator: n.separator,
12015
+ abbreviationTextAm: n.abbreviationTextAm,
12016
+ abbreviationTextPm: n.abbreviationTextPm,
12017
+ use24HoursFormat: n.use24HoursFormat
12018
+ }, null, 8, ["day", "separator", "abbreviationTextAm", "abbreviationTextPm", "use24HoursFormat"])
12019
+ ])
12020
+ ]),
12021
+ _: 2
12022
+ }, 1032, ["componentProps", "componentPath", "itemProvider"]))), 128))
12023
+ ], 64)) : (a(), r("dl", vf, [
12024
+ (a(!0), r(O, null, q(l.openingHoursFormatted, (x, _) => (a(), v(f, {
12025
+ key: _,
12026
+ day: x,
12027
+ separator: n.separator,
12028
+ abbreviationTextAm: n.abbreviationTextAm,
12029
+ abbreviationTextPm: n.abbreviationTextPm,
12030
+ use24HoursFormat: n.use24HoursFormat
12031
+ }, null, 8, ["day", "separator", "abbreviationTextAm", "abbreviationTextPm", "use24HoursFormat"]))), 128))
12032
+ ])),
12033
+ !e.editing && (n.textHolidays || n.textMiscInfo) ? (a(), r("div", wf, [
12034
+ n.textHolidays ? (a(), r("p", Tf, [
12035
+ o("strong", null, y(n.textHolidays), 1)
12036
+ ])) : m("", !0),
12037
+ n.textMiscInfo ? (a(), r("p", Sf, y(n.textMiscInfo), 1)) : m("", !0)
12038
+ ])) : m("", !0),
12039
+ e.editing ? (a(), r("div", _f, [
12040
+ p(c, {
12041
+ element: "input",
12042
+ type: "text",
12043
+ showLabel: !1,
12044
+ labelText: "Text for 'holidays'",
12045
+ placeholder: "Text for 'holidays'",
12046
+ modelValue: l.textHolidaysModel,
12047
+ "onUpdate:modelValue": t[3] || (t[3] = (x) => l.textHolidaysModel = x)
12048
+ }, null, 8, ["modelValue"]),
12049
+ p(c, {
12050
+ element: "input",
12051
+ type: "text",
12052
+ showLabel: !1,
12053
+ labelText: "Miscellaneous information",
12054
+ placeholder: "Miscellaneous information",
12055
+ modelValue: l.textMiscInfoModel,
12056
+ "onUpdate:modelValue": t[4] || (t[4] = (x) => l.textMiscInfoModel = x)
12057
+ }, null, 8, ["modelValue"])
12058
+ ])) : m("", !0)
11886
12059
  ]);
11887
12060
  }
11888
- const Xi = /* @__PURE__ */ P(hf, [["render", Tf]]), Sf = {
12061
+ const Lf = /* @__PURE__ */ P(bf, [["render", Of]]), If = {
11889
12062
  name: "CmdSocialNetworksItem",
11890
12063
  data() {
11891
12064
  return {
@@ -11984,10 +12157,10 @@ const Xi = /* @__PURE__ */ P(hf, [["render", Tf]]), Sf = {
11984
12157
  });
11985
12158
  }
11986
12159
  }
11987
- }, _f = { class: "cmd-social-networks-item" }, Of = ["href", "title"], Lf = { key: 1 };
11988
- function If(e, t, n, s, i, l) {
12160
+ }, Bf = { class: "cmd-social-networks-item" }, Df = ["href", "title"], Mf = { key: 1 };
12161
+ function Ff(e, t, n, s, i, l) {
11989
12162
  const d = K;
11990
- return a(), r("li", _f, [
12163
+ return a(), r("li", Bf, [
11991
12164
  (a(), r("a", {
11992
12165
  key: n.network.path,
11993
12166
  class: C(["button", n.network.buttonClass, { disabled: n.userMustAcceptDataPrivacy && !n.dataPrivacyAccepted }, "text-align-" + n.buttonTextAlign]),
@@ -12001,11 +12174,11 @@ function If(e, t, n, s, i, l) {
12001
12174
  iconClass: n.network.iconClass,
12002
12175
  type: n.network.iconType
12003
12176
  }, null, 8, ["iconClass", "type"])) : m("", !0),
12004
- n.network.linkText ? (a(), r("span", Lf, y(n.network.linkText), 1)) : m("", !0)
12005
- ], 10, Of))
12177
+ n.network.linkText ? (a(), r("span", Mf, y(n.network.linkText), 1)) : m("", !0)
12178
+ ], 10, Df))
12006
12179
  ]);
12007
12180
  }
12008
- const Bf = /* @__PURE__ */ P(Sf, [["render", If]]), Df = {
12181
+ const Pf = /* @__PURE__ */ P(If, [["render", Ff]]), Vf = {
12009
12182
  name: "CmdSocialNetworks",
12010
12183
  mixins: [ae],
12011
12184
  data() {
@@ -12166,9 +12339,9 @@ const Bf = /* @__PURE__ */ P(Sf, [["render", If]]), Df = {
12166
12339
  }
12167
12340
  }
12168
12341
  };
12169
- function Mf(e, t, n, s, i, l) {
12342
+ function Af(e, t, n, s, i, l) {
12170
12343
  var h, g;
12171
- const d = J, u = te, c = Bf, f = qe;
12344
+ const d = J, u = te, c = Pf, f = qe;
12172
12345
  return a(), r("div", {
12173
12346
  class: C(["cmd-social-networks", { stretch: n.stretchButtons }, l.alignment])
12174
12347
  }, [
@@ -12224,7 +12397,7 @@ function Mf(e, t, n, s, i, l) {
12224
12397
  ])))
12225
12398
  ], 2);
12226
12399
  }
12227
- const $i = /* @__PURE__ */ P(Df, [["render", Mf]]), Ff = {
12400
+ const $i = /* @__PURE__ */ P(Vf, [["render", Af]]), Ef = {
12228
12401
  name: "CmdPageFooter",
12229
12402
  props: {
12230
12403
  /**
@@ -12311,8 +12484,8 @@ const $i = /* @__PURE__ */ P(Df, [["render", Mf]]), Ff = {
12311
12484
  });
12312
12485
  }
12313
12486
  }
12314
- }, Pf = { class: "button-wrapper" }, Vf = ["title"], Af = { key: 1 };
12315
- function Ef(e, t, n, s, i, l) {
12487
+ }, Hf = { class: "button-wrapper" }, qf = ["title"], Rf = { key: 1 };
12488
+ function jf(e, t, n, s, i, l) {
12316
12489
  var u, c, f, h;
12317
12490
  const d = $i;
12318
12491
  return a(), r("footer", {
@@ -12324,7 +12497,7 @@ function Ef(e, t, n, s, i, l) {
12324
12497
  ]),
12325
12498
  _: 3
12326
12499
  }, 16)) : m("", !0),
12327
- o("div", Pf, [
12500
+ o("div", Hf, [
12328
12501
  V(e.$slots, "default"),
12329
12502
  (u = l.buttonPrintViewOptions) != null && u.show ? (a(), r("button", {
12330
12503
  key: 0,
@@ -12337,12 +12510,12 @@ function Ef(e, t, n, s, i, l) {
12337
12510
  key: 0,
12338
12511
  class: C((h = l.buttonPrintViewOptions.icon) == null ? void 0 : h.iconClass)
12339
12512
  }, null, 2)) : m("", !0),
12340
- l.buttonPrintViewOptions.text ? (a(), r("span", Af, y(l.buttonPrintViewOptions.text), 1)) : m("", !0)
12341
- ], 10, Vf)) : m("", !0)
12513
+ l.buttonPrintViewOptions.text ? (a(), r("span", Rf, y(l.buttonPrintViewOptions.text), 1)) : m("", !0)
12514
+ ], 10, qf)) : m("", !0)
12342
12515
  ])
12343
12516
  ], 2);
12344
12517
  }
12345
- const Hf = /* @__PURE__ */ P(Ff, [["render", Ef]]), qf = {
12518
+ const Nf = /* @__PURE__ */ P(Ef, [["render", jf]]), Uf = {
12346
12519
  name: "CmdPageHeader",
12347
12520
  props: {
12348
12521
  /**
@@ -12360,24 +12533,24 @@ const Hf = /* @__PURE__ */ P(Ff, [["render", Ef]]), qf = {
12360
12533
  required: !1
12361
12534
  }
12362
12535
  }
12363
- }, Rf = {
12536
+ }, zf = {
12364
12537
  key: 0,
12365
12538
  class: "cmd-page-header flex-container"
12366
- }, jf = {
12539
+ }, Wf = {
12367
12540
  key: 0,
12368
12541
  class: "headline-wrapper flex-container vertical"
12369
12542
  };
12370
- function Nf(e, t, n, s, i, l) {
12543
+ function Gf(e, t, n, s, i, l) {
12371
12544
  const d = Ui, u = J;
12372
- return n.cmdBreadcrumbs || n.cmdHeadline || e.$slots.default ? (a(), r("header", Rf, [
12373
- n.cmdBreadcrumbs || n.cmdHeadline ? (a(), r("div", jf, [
12545
+ return n.cmdBreadcrumbs || n.cmdHeadline || e.$slots.default ? (a(), r("header", zf, [
12546
+ n.cmdBreadcrumbs || n.cmdHeadline ? (a(), r("div", Wf, [
12374
12547
  n.cmdBreadcrumbs ? (a(), v(d, N(L({ key: 0 }, n.cmdBreadcrumbs)), null, 16)) : m("", !0),
12375
12548
  n.cmdHeadline.headlineText ? (a(), v(u, N(L({ key: 1 }, n.cmdHeadline)), null, 16)) : m("", !0)
12376
12549
  ])) : m("", !0),
12377
12550
  e.$slots.default ? V(e.$slots, "default", { key: 1 }) : m("", !0)
12378
12551
  ])) : m("", !0);
12379
12552
  }
12380
- const Uf = /* @__PURE__ */ P(qf, [["render", Nf]]), zf = {
12553
+ const Kf = /* @__PURE__ */ P(Uf, [["render", Gf]]), Yf = {
12381
12554
  name: "CmdProgressBar",
12382
12555
  inheritAttrs: !1,
12383
12556
  data() {
@@ -12419,8 +12592,8 @@ const Uf = /* @__PURE__ */ P(qf, [["render", Nf]]), zf = {
12419
12592
  required: !0
12420
12593
  }
12421
12594
  }
12422
- }, Wf = ["for"], Gf = { class: "progressbar" }, Kf = { key: 0 }, Yf = ["id", "value"];
12423
- function Jf(e, t, n, s, i, l) {
12595
+ }, Jf = ["for"], Zf = { class: "progressbar" }, Qf = { key: 0 }, Xf = ["id", "value"];
12596
+ function $f(e, t, n, s, i, l) {
12424
12597
  return a(), r("label", {
12425
12598
  class: "cmd-progressbar",
12426
12599
  for: n.id
@@ -12428,16 +12601,16 @@ function Jf(e, t, n, s, i, l) {
12428
12601
  o("span", {
12429
12602
  class: C(["label-text", { hidden: !n.showLabel }])
12430
12603
  }, y(n.labelText), 3),
12431
- o("span", Gf, [
12432
- n.showLoadingStatus ? (a(), r("span", Kf, y(i.loadingStatus) + " %", 1)) : m("", !0),
12604
+ o("span", Zf, [
12605
+ n.showLoadingStatus ? (a(), r("span", Qf, y(i.loadingStatus) + " %", 1)) : m("", !0),
12433
12606
  o("progress", L(e.$attrs, {
12434
12607
  id: n.id,
12435
12608
  value: i.loadingStatus
12436
- }), null, 16, Yf)
12609
+ }), null, 16, Xf)
12437
12610
  ])
12438
- ], 8, Wf);
12611
+ ], 8, Jf);
12439
12612
  }
12440
- const Zf = /* @__PURE__ */ P(zf, [["render", Jf]]), Qf = {
12613
+ const eh = /* @__PURE__ */ P(Yf, [["render", $f]]), th = {
12441
12614
  name: "CmdSection",
12442
12615
  props: {
12443
12616
  /**
@@ -12488,8 +12661,8 @@ const Zf = /* @__PURE__ */ P(zf, [["render", Jf]]), Qf = {
12488
12661
  };
12489
12662
  }
12490
12663
  }
12491
- }, Xf = ["innerHTML"];
12492
- function $f(e, t, n, s, i, l) {
12664
+ }, nh = ["innerHTML"];
12665
+ function ih(e, t, n, s, i, l) {
12493
12666
  var u;
12494
12667
  const d = J;
12495
12668
  return a(), r("section", {
@@ -12499,10 +12672,10 @@ function $f(e, t, n, s, i, l) {
12499
12672
  n.content && !n.useSlot ? (a(), r("div", {
12500
12673
  key: 1,
12501
12674
  innerHTML: n.content
12502
- }, null, 8, Xf)) : V(e.$slots, "default", { key: 2 })
12675
+ }, null, 8, nh)) : V(e.$slots, "default", { key: 2 })
12503
12676
  ], 2);
12504
12677
  }
12505
- const eh = /* @__PURE__ */ P(Qf, [["render", $f]]), th = {
12678
+ const lh = /* @__PURE__ */ P(th, [["render", ih]]), oh = {
12506
12679
  name: "CmdSidebar",
12507
12680
  data() {
12508
12681
  return {
@@ -12569,27 +12742,27 @@ const eh = /* @__PURE__ */ P(Qf, [["render", $f]]), th = {
12569
12742
  immediate: !0
12570
12743
  }
12571
12744
  }
12572
- }, nh = { class: "inner-sidebar-wrapper" }, ih = {
12745
+ }, ah = { class: "inner-sidebar-wrapper" }, sh = {
12573
12746
  key: 1,
12574
12747
  class: "open-slot-wrapper"
12575
- }, lh = {
12748
+ }, rh = {
12576
12749
  key: 2,
12577
12750
  class: "closed-slot-wrapper"
12578
- }, oh = ["title"];
12579
- function ah(e, t, n, s, i, l) {
12751
+ }, dh = ["title"];
12752
+ function uh(e, t, n, s, i, l) {
12580
12753
  var u;
12581
12754
  const d = J;
12582
12755
  return a(), r("aside", {
12583
12756
  class: C(["cmd-sidebar", l.wrapperClass, { box: n.styledAsBox, "collapse-to-right": !n.collapseToLeft }])
12584
12757
  }, [
12585
- o("div", nh, [
12758
+ o("div", ah, [
12586
12759
  (u = n.cmdHeadline) != null && u.headlineText && i.open ? (a(), v(d, L({ key: 0 }, n.cmdHeadline, {
12587
12760
  headlineLevel: n.cmdHeadline.headlineLevel || 3,
12588
12761
  class: "sidebar-main-headline"
12589
12762
  }), null, 16, ["headlineLevel"])) : m("", !0),
12590
- i.open ? (a(), r("div", ih, [
12763
+ i.open ? (a(), r("div", sh, [
12591
12764
  V(e.$slots, "open", { openBoxStatus: i.open })
12592
- ])) : (a(), r("div", lh, [
12765
+ ])) : (a(), r("div", rh, [
12593
12766
  V(e.$slots, "closed", { openBoxStatus: i.open })
12594
12767
  ]))
12595
12768
  ]),
@@ -12602,10 +12775,10 @@ function ah(e, t, n, s, i, l) {
12602
12775
  o("span", {
12603
12776
  class: C(l.iconClassOpenCollapse)
12604
12777
  }, null, 2)
12605
- ], 8, oh)) : m("", !0)
12778
+ ], 8, dh)) : m("", !0)
12606
12779
  ], 2);
12607
12780
  }
12608
- const sh = /* @__PURE__ */ P(th, [["render", ah]]), rh = {
12781
+ const ch = /* @__PURE__ */ P(oh, [["render", uh]]), mh = {
12609
12782
  name: "CmdSiteFooter",
12610
12783
  props: {
12611
12784
  /**
@@ -12621,9 +12794,9 @@ const sh = /* @__PURE__ */ P(th, [["render", ah]]), rh = {
12621
12794
  }
12622
12795
  }
12623
12796
  }
12624
- }, dh = { class: "cmd-site-footer site-footer" };
12625
- function uh(e, t, n, s, i, l) {
12626
- return a(), r("div", dh, [
12797
+ }, ph = { class: "cmd-site-footer site-footer" };
12798
+ function fh(e, t, n, s, i, l) {
12799
+ return a(), r("div", ph, [
12627
12800
  o("footer", {
12628
12801
  class: C(["flex-container", { vertical: n.orientation === "vertical" }])
12629
12802
  }, [
@@ -12631,7 +12804,7 @@ function uh(e, t, n, s, i, l) {
12631
12804
  ], 2)
12632
12805
  ]);
12633
12806
  }
12634
- const ch = /* @__PURE__ */ P(rh, [["render", uh]]), mh = {
12807
+ const hh = /* @__PURE__ */ P(mh, [["render", fh]]), gh = {
12635
12808
  name: "CmdSiteHeader",
12636
12809
  emits: ["offcanvas"],
12637
12810
  data() {
@@ -12728,11 +12901,11 @@ const ch = /* @__PURE__ */ P(rh, [["render", uh]]), mh = {
12728
12901
  e.style.height = this.defaultLogoHeight;
12729
12902
  }
12730
12903
  }
12731
- }, ph = {
12904
+ }, yh = {
12732
12905
  key: 0,
12733
12906
  class: "top-header"
12734
12907
  };
12735
- function fh(e, t, n, s, i, l) {
12908
+ function bh(e, t, n, s, i, l) {
12736
12909
  var c, f, h, g, w, x, _, T, D;
12737
12910
  const d = zi, u = Zi;
12738
12911
  return a(), r("div", {
@@ -12747,7 +12920,7 @@ function fh(e, t, n, s, i, l) {
12747
12920
  ]),
12748
12921
  role: "banner"
12749
12922
  }, [
12750
- e.$slots.topheader ? (a(), r("div", ph, [
12923
+ e.$slots.topheader ? (a(), r("div", yh, [
12751
12924
  V(e.$slots, "topheader")
12752
12925
  ])) : m("", !0),
12753
12926
  o("header", {
@@ -12775,7 +12948,7 @@ function fh(e, t, n, s, i, l) {
12775
12948
  }), null, 16, ["closeOffcanvas", "onOffcanvas"])) : m("", !0)
12776
12949
  ], 2);
12777
12950
  }
12778
- const hh = /* @__PURE__ */ P(mh, [["render", fh]]), gh = {
12951
+ const xh = /* @__PURE__ */ P(gh, [["render", bh]]), Ch = {
12779
12952
  data() {
12780
12953
  return {
12781
12954
  defaultMessageProperties: {
@@ -12784,7 +12957,7 @@ const hh = /* @__PURE__ */ P(mh, [["render", fh]]), gh = {
12784
12957
  }
12785
12958
  };
12786
12959
  }
12787
- }, yh = {
12960
+ }, vh = {
12788
12961
  emits: [
12789
12962
  "search",
12790
12963
  "update:modelValueInput1",
@@ -12793,7 +12966,7 @@ const hh = /* @__PURE__ */ P(mh, [["render", fh]]), gh = {
12793
12966
  "update:modelValueSearchFilters"
12794
12967
  ],
12795
12968
  name: "CmdBoxSiteSearch",
12796
- mixins: [ce, gh],
12969
+ mixins: [ce, Ch],
12797
12970
  data() {
12798
12971
  return {
12799
12972
  showFilters: !1
@@ -13056,22 +13229,22 @@ const hh = /* @__PURE__ */ P(mh, [["render", fh]]), gh = {
13056
13229
  deep: !0
13057
13230
  }
13058
13231
  }
13059
- }, bh = { class: "cmd-box-site-search flex-container" }, xh = { class: "flex-container align-bottom" }, Ch = { class: "input-wrapper align-bottom" }, vh = { key: 0 }, kh = { key: 1 }, wh = {
13232
+ }, kh = { class: "cmd-box-site-search flex-container" }, wh = { class: "flex-container align-bottom" }, Th = { class: "input-wrapper align-bottom" }, Sh = { key: 0 }, _h = { key: 1 }, Oh = {
13060
13233
  key: 0,
13061
13234
  class: "flex-container flex-none",
13062
13235
  role: "listbox",
13063
13236
  "aria-expanded": "true"
13064
13237
  };
13065
- function Th(e, t, n, s, i, l) {
13238
+ function Lh(e, t, n, s, i, l) {
13066
13239
  var g, w, x, _, T, D, B, H;
13067
13240
  const d = J, u = te, c = K, f = Wi, h = Gi;
13068
13241
  return a(), r(O, null, [
13069
- o("fieldset", bh, [
13242
+ o("fieldset", kh, [
13070
13243
  o("legend", {
13071
13244
  class: C({ hidden: !n.legend.show, "align-left": n.legend.align === "left" })
13072
13245
  }, y(n.legend.text), 3),
13073
13246
  n.cmdHeadline ? (a(), v(d, N(L({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
13074
- o("div", xh, [
13247
+ o("div", wh, [
13075
13248
  p(u, {
13076
13249
  element: "input",
13077
13250
  type: n.cmdFormElementInput1.type,
@@ -13083,7 +13256,7 @@ function Th(e, t, n, s, i, l) {
13083
13256
  modelValue: l.searchValue1,
13084
13257
  "onUpdate:modelValue": t[0] || (t[0] = (M) => l.searchValue1 = M)
13085
13258
  }, null, 8, ["type", "show-label", "labelText", "placeholder", "required", "showSearchButton", "modelValue"]),
13086
- o("div", Ch, [
13259
+ o("div", Th, [
13087
13260
  n.cmdFormElementInput2.show ? (a(), v(u, {
13088
13261
  key: 0,
13089
13262
  element: "input",
@@ -13122,13 +13295,13 @@ function Th(e, t, n, s, i, l) {
13122
13295
  iconClass: i.showFilters ? (w = (g = n.cmdIcon) == null ? void 0 : g.showFilters) == null ? void 0 : w.iconClass : (_ = (x = n.cmdIcon) == null ? void 0 : x.hideFilters) == null ? void 0 : _.iconClass,
13123
13296
  type: i.showFilters ? (D = (T = n.cmdIcon) == null ? void 0 : T.showFilters) == null ? void 0 : D.iconType : (H = (B = n.cmdIcon) == null ? void 0 : B.hideFilters) == null ? void 0 : H.iconType
13124
13297
  }, null, 8, ["iconClass", "type"]),
13125
- i.showFilters ? (a(), r("span", vh, y(e.getMessage("site_search.hide_filter_options")), 1)) : (a(), r("span", kh, y(e.getMessage("site_search.show_filter_options")), 1))
13298
+ i.showFilters ? (a(), r("span", Sh, y(e.getMessage("site_search.hide_filter_options")), 1)) : (a(), r("span", _h, y(e.getMessage("site_search.show_filter_options")), 1))
13126
13299
  ]),
13127
13300
  p(Me, { name: n.transitionFilters }, {
13128
13301
  default: k(() => {
13129
13302
  var M, U, G, E, R;
13130
13303
  return [
13131
- i.showFilters && ((M = n.cmdFakeSelect) != null && M.selectData.length) ? (a(), r("div", wh, [
13304
+ i.showFilters && ((M = n.cmdFakeSelect) != null && M.selectData.length) ? (a(), r("div", Oh, [
13132
13305
  p(f, {
13133
13306
  role: "option",
13134
13307
  selectData: (U = n.cmdFakeSelect) == null ? void 0 : U.selectData,
@@ -13153,7 +13326,7 @@ function Th(e, t, n, s, i, l) {
13153
13326
  }, null, 8, ["modelValue", "selectedOptionsName"])) : m("", !0)
13154
13327
  ], 64);
13155
13328
  }
13156
- const Sh = /* @__PURE__ */ P(yh, [["render", Th]]), _h = {
13329
+ const Ih = /* @__PURE__ */ P(vh, [["render", Lh]]), Bh = {
13157
13330
  name: "CmdSlideshow",
13158
13331
  mixins: [ae],
13159
13332
  data() {
@@ -13345,11 +13518,11 @@ const Sh = /* @__PURE__ */ P(yh, [["render", Th]]), _h = {
13345
13518
  });
13346
13519
  }
13347
13520
  }
13348
- }, Oh = ["href", "title"], Lh = { key: 2 }, Ih = ["onClick", "aria-label", "title"], Bh = {
13521
+ }, Dh = ["href", "title"], Mh = { key: 2 }, Fh = ["onClick", "aria-label", "title"], Ph = {
13349
13522
  key: 3,
13350
13523
  class: "item-counter"
13351
13524
  };
13352
- function Dh(e, t, n, s, i, l) {
13525
+ function Vh(e, t, n, s, i, l) {
13353
13526
  const d = Lt, u = ke;
13354
13527
  return a(), r("div", {
13355
13528
  class: C(["cmd-slideshow", { "full-width": i.fullWidth }])
@@ -13393,7 +13566,7 @@ function Dh(e, t, n, s, i, l) {
13393
13566
  image: (_ = l.currentItem) == null ? void 0 : _.image,
13394
13567
  figcaption: (T = l.currentItem) == null ? void 0 : T.figcaption
13395
13568
  }, null, 8, ["image", "figcaption"])
13396
- ], 8, Oh)) : (a(), v(u, {
13569
+ ], 8, Dh)) : (a(), v(u, {
13397
13570
  key: 1,
13398
13571
  image: (D = l.currentItem) == null ? void 0 : D.image,
13399
13572
  figcaption: (B = l.currentItem) == null ? void 0 : B.figcaption
@@ -13418,7 +13591,7 @@ function Dh(e, t, n, s, i, l) {
13418
13591
  onClick: S(l.showNextItem, ["prevent"]),
13419
13592
  class: { disabled: i.slideshowItemEditing }
13420
13593
  }, l.tooltipForSlidebuttons), null, 16, ["onClick", "class"])) : m("", !0),
13421
- n.showQuickLinkIcons ? (a(), r("ol", Lh, [
13594
+ n.showQuickLinkIcons ? (a(), r("ol", Mh, [
13422
13595
  (a(!0), r(O, null, q(n.slideshowItems, (c, f) => (a(), r("li", {
13423
13596
  key: f,
13424
13597
  class: C({ active: f === i.index })
@@ -13429,14 +13602,14 @@ function Dh(e, t, n, s, i, l) {
13429
13602
  onClick: S((h) => l.showItem(f), ["prevent"]),
13430
13603
  "aria-label": i.index,
13431
13604
  title: i.slideshowItemEditing ? "Not allowed while editing!" : "Switch to image #" + (f + 1)
13432
- }, null, 10, Ih)
13605
+ }, null, 10, Fh)
13433
13606
  ], 2))), 128))
13434
13607
  ])) : m("", !0),
13435
- n.showCounter ? (a(), r("span", Bh, y(i.index + 1) + "/" + y(n.slideshowItems.length), 1)) : m("", !0)
13608
+ n.showCounter ? (a(), r("span", Ph, y(i.index + 1) + "/" + y(n.slideshowItems.length), 1)) : m("", !0)
13436
13609
  ], 32)
13437
13610
  ], 2);
13438
13611
  }
13439
- const Mh = /* @__PURE__ */ P(_h, [["render", Dh]]), Fh = {
13612
+ const Ah = /* @__PURE__ */ P(Bh, [["render", Vh]]), Eh = {
13440
13613
  name: "CmdSmartSearch",
13441
13614
  data() {
13442
13615
  return {
@@ -13552,11 +13725,11 @@ const Mh = /* @__PURE__ */ P(_h, [["render", Dh]]), Fh = {
13552
13725
  immediate: !0
13553
13726
  }
13554
13727
  }
13555
- }, Ph = {
13728
+ }, Hh = {
13556
13729
  key: 0,
13557
13730
  class: "list-of-recommendations no-list-items"
13558
13731
  };
13559
- function Vh(e, t, n, s, i, l) {
13732
+ function qh(e, t, n, s, i, l) {
13560
13733
  const d = te, u = Pe;
13561
13734
  return a(), r("div", {
13562
13735
  class: C(["cmd-smart-search", { open: i.showListOfRecommendations, "open-list-to-top": n.openListToTop }])
@@ -13571,7 +13744,7 @@ function Vh(e, t, n, s, i, l) {
13571
13744
  l.showRecommendations
13572
13745
  ]
13573
13746
  }), null, 16, ["modelValue", "onUpdate:modelValue"]),
13574
- i.showListOfRecommendations ? (a(), r("ul", Ph, [
13747
+ i.showListOfRecommendations ? (a(), r("ul", Hh, [
13575
13748
  (a(!0), r(O, null, q(l.filteredListOfRecommendations, (c, f) => (a(), r("li", { key: f }, [
13576
13749
  p(u, L({ ref_for: !0 }, l.linkItem(c), {
13577
13750
  onClick: (h) => l.optionSelected(c)
@@ -13585,7 +13758,7 @@ function Vh(e, t, n, s, i, l) {
13585
13758
  ])) : m("", !0)
13586
13759
  ], 2);
13587
13760
  }
13588
- const Ah = /* @__PURE__ */ P(Fh, [["render", Vh]]), Eh = {
13761
+ const Rh = /* @__PURE__ */ P(Eh, [["render", qh]]), jh = {
13589
13762
  name: "CmdSwitchLanguage",
13590
13763
  emits: ["click"],
13591
13764
  data() {
@@ -13630,10 +13803,10 @@ const Ah = /* @__PURE__ */ P(Fh, [["render", Vh]]), Eh = {
13630
13803
  this.currentLanguage = e, document.documentElement.lang = e, this.$emit("click", { originalEvent: t, iso2: e });
13631
13804
  }
13632
13805
  }
13633
- }, Hh = { class: "cmd-switch-language" }, qh = ["href", "title", "onClick"], Rh = ["src", "alt"], jh = ["src", "alt"];
13634
- function Nh(e, t, n, s, i, l) {
13806
+ }, Nh = { class: "cmd-switch-language" }, Uh = ["href", "title", "onClick"], zh = ["src", "alt"], Wh = ["src", "alt"];
13807
+ function Gh(e, t, n, s, i, l) {
13635
13808
  const d = _e("router-link");
13636
- return a(), r("div", Hh, [
13809
+ return a(), r("div", Nh, [
13637
13810
  o("ul", null, [
13638
13811
  (a(!0), r(O, null, q(n.languages, (u, c) => (a(), r("li", { key: c }, [
13639
13812
  u.link.type === "href" ? (a(), r("a", {
@@ -13646,8 +13819,8 @@ function Nh(e, t, n, s, i, l) {
13646
13819
  o("img", {
13647
13820
  src: l.pathFlag(u.iso2),
13648
13821
  alt: u.name
13649
- }, null, 8, Rh)
13650
- ], 10, qh)) : (a(), v(d, {
13822
+ }, null, 8, zh)
13823
+ ], 10, Uh)) : (a(), v(d, {
13651
13824
  key: 1,
13652
13825
  to: l.getRoute(u),
13653
13826
  class: C(["flag", u.iso2]),
@@ -13658,7 +13831,7 @@ function Nh(e, t, n, s, i, l) {
13658
13831
  o("img", {
13659
13832
  src: l.pathFlag(u.iso2),
13660
13833
  alt: u.name
13661
- }, null, 8, jh)
13834
+ }, null, 8, Wh)
13662
13835
  ]),
13663
13836
  _: 2
13664
13837
  }, 1032, ["to", "class", "title", "onClick"]))
@@ -13666,7 +13839,7 @@ function Nh(e, t, n, s, i, l) {
13666
13839
  ])
13667
13840
  ]);
13668
13841
  }
13669
- const Uh = /* @__PURE__ */ P(Eh, [["render", Nh]]), zh = {
13842
+ const Kh = /* @__PURE__ */ P(jh, [["render", Gh]]), Yh = {
13670
13843
  name: "CmdTable",
13671
13844
  data() {
13672
13845
  return {
@@ -13819,19 +13992,19 @@ const Uh = /* @__PURE__ */ P(Eh, [["render", Nh]]), zh = {
13819
13992
  immediate: !0
13820
13993
  }
13821
13994
  }
13822
- }, Wh = {
13995
+ }, Jh = {
13823
13996
  key: 0,
13824
13997
  class: "button-wrapper"
13825
- }, Gh = ["title"], Kh = ["title"], Yh = ["innerHTML"], Jh = { "aria-expanded": "true" }, Zh = ["innerHTML"], Qh = {
13998
+ }, Zh = ["title"], Qh = ["title"], Xh = ["innerHTML"], $h = { "aria-expanded": "true" }, eg = ["innerHTML"], tg = {
13826
13999
  key: 0,
13827
14000
  "aria-expanded": "true"
13828
- }, Xh = ["innerHTML"];
13829
- function $h(e, t, n, s, i, l) {
14001
+ }, ng = ["innerHTML"];
14002
+ function ig(e, t, n, s, i, l) {
13830
14003
  const d = K, u = Lt;
13831
14004
  return a(), r("div", {
13832
14005
  class: C(["cmd-table-wrapper", { collapsed: !i.showTableData, "full-width": i.fullWidth, "has-caption": l.hasCaption, "has-overflow": i.hasOverflow }])
13833
14006
  }, [
13834
- n.collapsible || n.userCanToggleWidth ? (a(), r("div", Wh, [
14007
+ n.collapsible || n.userCanToggleWidth ? (a(), r("div", Jh, [
13835
14008
  n.userCanToggleWidth ? (a(), r("a", {
13836
14009
  key: 0,
13837
14010
  class: "button",
@@ -13843,7 +14016,7 @@ function $h(e, t, n, s, i, l) {
13843
14016
  iconClass: n.iconToggleWidth.iconClass,
13844
14017
  type: n.iconToggleWidth.iconType
13845
14018
  }, null, 8, ["iconClass", "type"])
13846
- ], 8, Gh)) : m("", !0),
14019
+ ], 8, Zh)) : m("", !0),
13847
14020
  n.collapsible ? (a(), r("a", {
13848
14021
  key: 1,
13849
14022
  class: "button",
@@ -13855,7 +14028,7 @@ function $h(e, t, n, s, i, l) {
13855
14028
  iconClass: i.showTableData ? n.iconCollapse.iconClass : n.iconExpand.iconClass,
13856
14029
  type: i.showTableData ? n.iconCollapse.iconType : n.iconExpand.iconType
13857
14030
  }, null, 8, ["iconClass", "type"])
13858
- ], 8, Kh)) : m("", !0)
14031
+ ], 8, Qh)) : m("", !0)
13859
14032
  ])) : m("", !0),
13860
14033
  o("div", {
13861
14034
  class: "inner-wrapper",
@@ -13886,14 +14059,14 @@ function $h(e, t, n, s, i, l) {
13886
14059
  (a(!0), r(O, null, q(n.tableData.thead, (c, f) => (a(), r("th", {
13887
14060
  key: f,
13888
14061
  innerHTML: c
13889
- }, null, 8, Yh))), 128))
14062
+ }, null, 8, Xh))), 128))
13890
14063
  ])
13891
14064
  ])
13892
14065
  ]),
13893
14066
  p(Me, { name: n.transition }, {
13894
14067
  default: k(() => [
13895
14068
  V(e.$slots, "table-body", {}, () => [
13896
- $(o("tbody", Jh, [
14069
+ $(o("tbody", $h, [
13897
14070
  (a(!0), r(O, null, q(n.tableData.tbody, (c, f) => (a(), r("tr", {
13898
14071
  class: C({ active: n.tableData.rowIndexHighlighted === f }),
13899
14072
  key: f
@@ -13902,7 +14075,7 @@ function $h(e, t, n, s, i, l) {
13902
14075
  class: C({ active: n.tableData.columnIndexHighlighted === g }),
13903
14076
  key: g,
13904
14077
  innerHTML: h
13905
- }, null, 10, Zh))), 128))
14078
+ }, null, 10, eg))), 128))
13906
14079
  ], 2))), 128))
13907
14080
  ], 512), [
13908
14081
  [ye, i.showTableData]
@@ -13914,13 +14087,13 @@ function $h(e, t, n, s, i, l) {
13914
14087
  p(Me, { name: n.transition }, {
13915
14088
  default: k(() => [
13916
14089
  V(e.$slots, "table-foot", {}, () => [
13917
- n.tableData.tfoot && n.tableData.tfoot.length && i.showTableData ? (a(), r("tfoot", Qh, [
14090
+ n.tableData.tfoot && n.tableData.tfoot.length && i.showTableData ? (a(), r("tfoot", tg, [
13918
14091
  o("tr", null, [
13919
14092
  (a(!0), r(O, null, q(n.tableData.tfoot, (c, f) => (a(), r("td", {
13920
14093
  class: C({ active: n.tableData.columnIndexHighlighted === f }),
13921
14094
  key: f,
13922
14095
  innerHTML: c
13923
- }, null, 10, Xh))), 128))
14096
+ }, null, 10, ng))), 128))
13924
14097
  ])
13925
14098
  ])) : m("", !0)
13926
14099
  ])
@@ -13935,7 +14108,7 @@ function $h(e, t, n, s, i, l) {
13935
14108
  ], 544)
13936
14109
  ], 2);
13937
14110
  }
13938
- const eg = /* @__PURE__ */ P(zh, [["render", $h]]), tg = "cmd", ng = {
14111
+ const lg = /* @__PURE__ */ P(Yh, [["render", ig]]), og = "cmd", ag = {
13939
14112
  "3d-cursor": {
13940
14113
  body: '<path d="M13 4H4v9.01h2V6h7V4z" fill="currentColor"/><path d="M29.49 13.12l-9-5a1 1 0 0 0-1 0l-9 5A1 1 0 0 0 10 14v10a1 1 0 0 0 .52.87l9 5A1 1 0 0 0 20 30a1.05 1.05 0 0 0 .49-.13l9-5A1 1 0 0 0 30 24V14a1 1 0 0 0-.51-.88zM19 27.3l-7-3.89v-7.72l7 3.89zm1-9.45L13.06 14L20 10.14L26.94 14zm8 5.56l-7 3.89v-7.72l7-3.89z" fill="currentColor"/>',
13941
14114
  hidden: !0
@@ -13949,14 +14122,14 @@ const eg = /* @__PURE__ */ P(zh, [["render", $h]]), tg = "cmd", ng = {
13949
14122
  <path fill="currentColor" d="M2,12h6v18H2V12z"/>
13950
14123
  <path fill="currentColor" d="M8,7c0,1.657-1.343,3-3,3S2,8.657,2,7s1.343-3,3-3S8,5.343,8,7z"/>`
13951
14124
  }
13952
- }, ig = 32, lg = 32, og = {
13953
- prefix: tg,
13954
- icons: ng,
13955
- width: ig,
13956
- height: lg
14125
+ }, sg = 32, rg = 32, dg = {
14126
+ prefix: og,
14127
+ icons: ag,
14128
+ width: sg,
14129
+ height: rg
13957
14130
  };
13958
- ki(og);
13959
- const ag = {
14131
+ ki(dg);
14132
+ const ug = {
13960
14133
  name: "CmdTabs",
13961
14134
  data() {
13962
14135
  return {
@@ -14030,11 +14203,11 @@ const ag = {
14030
14203
  this.showTab = this.defaultActiveTab;
14031
14204
  }
14032
14205
  }
14033
- }, sg = ["onClick", "title"], rg = { key: 1 }, dg = {
14206
+ }, cg = ["onClick", "title"], mg = { key: 1 }, pg = {
14034
14207
  key: 1,
14035
14208
  "aria-live": "assertive"
14036
- }, ug = ["innerHTML"];
14037
- function cg(e, t, n, s, i, l) {
14209
+ }, fg = ["innerHTML"];
14210
+ function hg(e, t, n, s, i, l) {
14038
14211
  const d = K, u = J;
14039
14212
  return a(), r("div", {
14040
14213
  class: C(["cmd-tabs", n.highlightLevel])
@@ -14059,8 +14232,8 @@ function cg(e, t, n, s, i, l) {
14059
14232
  iconClass: c.iconClass,
14060
14233
  type: c.iconType
14061
14234
  }, null, 8, ["iconClass", "type"])) : m("", !0),
14062
- c.text ? (a(), r("span", rg, y(c.text), 1)) : m("", !0)
14063
- ], 10, sg)
14235
+ c.text ? (a(), r("span", mg, y(c.text), 1)) : m("", !0)
14236
+ ], 10, cg)
14064
14237
  ], 2))), 128))
14065
14238
  ], 2),
14066
14239
  n.useSlot ? (a(!0), r(O, { key: 0 }, q(n.tabs.length, (c) => $((a(), r("div", {
@@ -14071,7 +14244,7 @@ function cg(e, t, n, s, i, l) {
14071
14244
  V(e.$slots, "tab-content-" + (c - 1))
14072
14245
  ], 2)), [
14073
14246
  [ye, i.showTab === c - 1]
14074
- ])), 128)) : (a(), r("div", dg, [
14247
+ ])), 128)) : (a(), r("div", pg, [
14075
14248
  n.cmdHeadline ? (a(), v(u, L({ key: 0 }, n.cmdHeadline, {
14076
14249
  headlineText: n.tabs[i.showTab].headlineText,
14077
14250
  headlineLevel: n.tabs[i.showTab].headlineLevel
@@ -14079,11 +14252,11 @@ function cg(e, t, n, s, i, l) {
14079
14252
  o("div", {
14080
14253
  innerHTML: n.tabs[i.showTab].htmlContent,
14081
14254
  class: C({ "no-padding": !n.useDefaultPadding })
14082
- }, null, 10, ug)
14255
+ }, null, 10, fg)
14083
14256
  ]))
14084
14257
  ], 2);
14085
14258
  }
14086
- const el = /* @__PURE__ */ P(ag, [["render", cg]]), mg = {
14259
+ const el = /* @__PURE__ */ P(ug, [["render", hg]]), gg = {
14087
14260
  name: "CmdTextImageBlock",
14088
14261
  mixins: [ae],
14089
14262
  data() {
@@ -14200,8 +14373,8 @@ const el = /* @__PURE__ */ P(ag, [["render", cg]]), mg = {
14200
14373
  immediate: !0
14201
14374
  }
14202
14375
  }
14203
- }, pg = ["innerHTML"], fg = ["innerHTML"];
14204
- function hg(e, t, n, s, i, l) {
14376
+ }, yg = ["innerHTML"], bg = ["innerHTML"];
14377
+ function xg(e, t, n, s, i, l) {
14205
14378
  var f, h, g, w;
14206
14379
  const d = J, u = ke, c = qe;
14207
14380
  return a(), r("div", {
@@ -14222,7 +14395,7 @@ function hg(e, t, n, s, i, l) {
14222
14395
  n.htmlContent ? (a(), r("div", {
14223
14396
  key: 1,
14224
14397
  innerHTML: n.htmlContent
14225
- }, null, 8, pg)) : m("", !0),
14398
+ }, null, 8, yg)) : m("", !0),
14226
14399
  V(e.$slots, "default")
14227
14400
  ], 2)),
14228
14401
  e.editModeContext ? (a(), v(c, {
@@ -14247,7 +14420,7 @@ function hg(e, t, n, s, i, l) {
14247
14420
  key: 1,
14248
14421
  innerHTML: n.htmlContent,
14249
14422
  class: C(l.textAlign)
14250
- }, null, 10, fg)) : (a(), r("button", {
14423
+ }, null, 10, bg)) : (a(), r("button", {
14251
14424
  key: 2,
14252
14425
  type: "button",
14253
14426
  class: "button confirm",
@@ -14261,7 +14434,7 @@ function hg(e, t, n, s, i, l) {
14261
14434
  }, 8, ["componentProps", "componentPath", "allowDeleteComponent"])) : m("", !0)
14262
14435
  ], 2);
14263
14436
  }
14264
- const gg = /* @__PURE__ */ P(mg, [["render", hg]]), yg = {
14437
+ const Cg = /* @__PURE__ */ P(gg, [["render", xg]]), vg = {
14265
14438
  name: "ToggleDarkMode",
14266
14439
  mixins: [
14267
14440
  ae
@@ -14414,8 +14587,8 @@ const gg = /* @__PURE__ */ P(mg, [["render", hg]]), yg = {
14414
14587
  immediate: !0
14415
14588
  }
14416
14589
  }
14417
- }, bg = { key: 0 };
14418
- function xg(e, t, n, s, i, l) {
14590
+ }, kg = { key: 0 };
14591
+ function wg(e, t, n, s, i, l) {
14419
14592
  const d = K, u = te;
14420
14593
  return a(), r("div", {
14421
14594
  class: C(["cmd-toggle-dark-mode", { "styled-layout": n.useStyledLayout, "dark-mode": i.darkMode }])
@@ -14444,7 +14617,7 @@ function xg(e, t, n, s, i, l) {
14444
14617
  class: C(["button", { "dark-mode": i.darkMode }]),
14445
14618
  onClick: t[0] || (t[0] = S((...c) => l.toggleColorScheme && l.toggleColorScheme(...c), ["prevent"]))
14446
14619
  }, [
14447
- n.showLabel ? (a(), r("span", bg, y(l.labelText), 1)) : m("", !0),
14620
+ n.showLabel ? (a(), r("span", kg, y(l.labelText), 1)) : m("", !0),
14448
14621
  p(d, {
14449
14622
  iconClass: l.iconClass,
14450
14623
  type: l.iconType,
@@ -14467,7 +14640,7 @@ function xg(e, t, n, s, i, l) {
14467
14640
  ], 64))
14468
14641
  ], 2);
14469
14642
  }
14470
- const Cg = /* @__PURE__ */ P(yg, [["render", xg]]), vg = {
14643
+ const Tg = /* @__PURE__ */ P(vg, [["render", wg]]), Sg = {
14471
14644
  data() {
14472
14645
  return {
14473
14646
  defaultMessageProperties: {
@@ -14525,28 +14698,28 @@ function tl(e, t) {
14525
14698
  return e.apply(t, arguments);
14526
14699
  };
14527
14700
  }
14528
- const { toString: kg } = Object.prototype, { getPrototypeOf: Sn } = Object, It = /* @__PURE__ */ ((e) => (t) => {
14529
- const n = kg.call(t);
14701
+ const { toString: _g } = Object.prototype, { getPrototypeOf: Sn } = Object, It = /* @__PURE__ */ ((e) => (t) => {
14702
+ const n = _g.call(t);
14530
14703
  return e[n] || (e[n] = n.slice(8, -1).toLowerCase());
14531
14704
  })(/* @__PURE__ */ Object.create(null)), we = (e) => (e = e.toLowerCase(), (t) => It(t) === e), Bt = (e) => (t) => typeof t === e, { isArray: We } = Array, lt = Bt("undefined");
14532
- function wg(e) {
14705
+ function Og(e) {
14533
14706
  return e !== null && !lt(e) && e.constructor !== null && !lt(e.constructor) && be(e.constructor.isBuffer) && e.constructor.isBuffer(e);
14534
14707
  }
14535
14708
  const nl = we("ArrayBuffer");
14536
- function Tg(e) {
14709
+ function Lg(e) {
14537
14710
  let t;
14538
14711
  return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && nl(e.buffer), t;
14539
14712
  }
14540
- const Sg = Bt("string"), be = Bt("function"), il = Bt("number"), Dt = (e) => e !== null && typeof e == "object", _g = (e) => e === !0 || e === !1, yt = (e) => {
14713
+ const Ig = Bt("string"), be = Bt("function"), il = Bt("number"), Dt = (e) => e !== null && typeof e == "object", Bg = (e) => e === !0 || e === !1, yt = (e) => {
14541
14714
  if (It(e) !== "object")
14542
14715
  return !1;
14543
14716
  const t = Sn(e);
14544
14717
  return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
14545
- }, Og = we("Date"), Lg = we("File"), Ig = we("Blob"), Bg = we("FileList"), Dg = (e) => Dt(e) && be(e.pipe), Mg = (e) => {
14718
+ }, Dg = we("Date"), Mg = we("File"), Fg = we("Blob"), Pg = we("FileList"), Vg = (e) => Dt(e) && be(e.pipe), Ag = (e) => {
14546
14719
  let t;
14547
14720
  return e && (typeof FormData == "function" && e instanceof FormData || be(e.append) && ((t = It(e)) === "formdata" || // detect form-data instance
14548
14721
  t === "object" && be(e.toString) && e.toString() === "[object FormData]"));
14549
- }, Fg = we("URLSearchParams"), [Pg, Vg, Ag, Eg] = ["ReadableStream", "Request", "Response", "Headers"].map(we), Hg = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
14722
+ }, 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, "");
14550
14723
  function ot(e, t, { allOwnKeys: n = !1 } = {}) {
14551
14724
  if (e === null || typeof e > "u")
14552
14725
  return;
@@ -14580,13 +14753,13 @@ function en() {
14580
14753
  arguments[s] && ot(arguments[s], n);
14581
14754
  return t;
14582
14755
  }
14583
- const qg = (e, t, n, { allOwnKeys: s } = {}) => (ot(t, (i, l) => {
14756
+ const Ug = (e, t, n, { allOwnKeys: s } = {}) => (ot(t, (i, l) => {
14584
14757
  n && be(i) ? e[l] = tl(i, n) : e[l] = i;
14585
- }, { allOwnKeys: s }), e), Rg = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), jg = (e, t, n, s) => {
14758
+ }, { allOwnKeys: s }), e), zg = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), Wg = (e, t, n, s) => {
14586
14759
  e.prototype = Object.create(t.prototype, s), e.prototype.constructor = e, Object.defineProperty(e, "super", {
14587
14760
  value: t.prototype
14588
14761
  }), n && Object.assign(e.prototype, n);
14589
- }, Ng = (e, t, n, s) => {
14762
+ }, Gg = (e, t, n, s) => {
14590
14763
  let i, l, d;
14591
14764
  const u = {};
14592
14765
  if (t = t || {}, e == null) return t;
@@ -14596,11 +14769,11 @@ const qg = (e, t, n, { allOwnKeys: s } = {}) => (ot(t, (i, l) => {
14596
14769
  e = n !== !1 && Sn(e);
14597
14770
  } while (e && (!n || n(e, t)) && e !== Object.prototype);
14598
14771
  return t;
14599
- }, Ug = (e, t, n) => {
14772
+ }, Kg = (e, t, n) => {
14600
14773
  e = String(e), (n === void 0 || n > e.length) && (n = e.length), n -= t.length;
14601
14774
  const s = e.indexOf(t, n);
14602
14775
  return s !== -1 && s === n;
14603
- }, zg = (e) => {
14776
+ }, Yg = (e) => {
14604
14777
  if (!e) return null;
14605
14778
  if (We(e)) return e;
14606
14779
  let t = e.length;
@@ -14609,31 +14782,31 @@ const qg = (e, t, n, { allOwnKeys: s } = {}) => (ot(t, (i, l) => {
14609
14782
  for (; t-- > 0; )
14610
14783
  n[t] = e[t];
14611
14784
  return n;
14612
- }, Wg = /* @__PURE__ */ ((e) => (t) => e && t instanceof e)(typeof Uint8Array < "u" && Sn(Uint8Array)), Gg = (e, t) => {
14785
+ }, Jg = /* @__PURE__ */ ((e) => (t) => e && t instanceof e)(typeof Uint8Array < "u" && Sn(Uint8Array)), Zg = (e, t) => {
14613
14786
  const s = (e && e[Symbol.iterator]).call(e);
14614
14787
  let i;
14615
14788
  for (; (i = s.next()) && !i.done; ) {
14616
14789
  const l = i.value;
14617
14790
  t.call(e, l[0], l[1]);
14618
14791
  }
14619
- }, Kg = (e, t) => {
14792
+ }, Qg = (e, t) => {
14620
14793
  let n;
14621
14794
  const s = [];
14622
14795
  for (; (n = e.exec(t)) !== null; )
14623
14796
  s.push(n);
14624
14797
  return s;
14625
- }, Yg = we("HTMLFormElement"), Jg = (e) => e.toLowerCase().replace(
14798
+ }, Xg = we("HTMLFormElement"), $g = (e) => e.toLowerCase().replace(
14626
14799
  /[-_\s]([a-z\d])(\w*)/g,
14627
14800
  function(n, s, i) {
14628
14801
  return s.toUpperCase() + i;
14629
14802
  }
14630
- ), ti = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), Zg = we("RegExp"), sl = (e, t) => {
14803
+ ), ti = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), ey = we("RegExp"), sl = (e, t) => {
14631
14804
  const n = Object.getOwnPropertyDescriptors(e), s = {};
14632
14805
  ot(n, (i, l) => {
14633
14806
  let d;
14634
14807
  (d = t(i, l, e)) !== !1 && (s[l] = d || i);
14635
14808
  }), Object.defineProperties(e, s);
14636
- }, Qg = (e) => {
14809
+ }, ty = (e) => {
14637
14810
  sl(e, (t, n) => {
14638
14811
  if (be(e) && ["arguments", "caller", "callee"].indexOf(n) !== -1)
14639
14812
  return !1;
@@ -14648,29 +14821,29 @@ const qg = (e, t, n, { allOwnKeys: s } = {}) => (ot(t, (i, l) => {
14648
14821
  });
14649
14822
  }
14650
14823
  });
14651
- }, Xg = (e, t) => {
14824
+ }, ny = (e, t) => {
14652
14825
  const n = {}, s = (i) => {
14653
14826
  i.forEach((l) => {
14654
14827
  n[l] = !0;
14655
14828
  });
14656
14829
  };
14657
14830
  return We(e) ? s(e) : s(String(e).split(t)), n;
14658
- }, $g = () => {
14659
- }, ey = (e, t) => e != null && Number.isFinite(e = +e) ? e : t, Rt = "abcdefghijklmnopqrstuvwxyz", ni = "0123456789", rl = {
14831
+ }, iy = () => {
14832
+ }, ly = (e, t) => e != null && Number.isFinite(e = +e) ? e : t, Rt = "abcdefghijklmnopqrstuvwxyz", ni = "0123456789", rl = {
14660
14833
  DIGIT: ni,
14661
14834
  ALPHA: Rt,
14662
14835
  ALPHA_DIGIT: Rt + Rt.toUpperCase() + ni
14663
- }, ty = (e = 16, t = rl.ALPHA_DIGIT) => {
14836
+ }, oy = (e = 16, t = rl.ALPHA_DIGIT) => {
14664
14837
  let n = "";
14665
14838
  const { length: s } = t;
14666
14839
  for (; e--; )
14667
14840
  n += t[Math.random() * s | 0];
14668
14841
  return n;
14669
14842
  };
14670
- function ny(e) {
14843
+ function ay(e) {
14671
14844
  return !!(e && be(e.append) && e[Symbol.toStringTag] === "FormData" && e[Symbol.iterator]);
14672
14845
  }
14673
- const iy = (e) => {
14846
+ const sy = (e) => {
14674
14847
  const t = new Array(10), n = (s, i) => {
14675
14848
  if (Dt(s)) {
14676
14849
  if (t.indexOf(s) >= 0)
@@ -14687,63 +14860,63 @@ const iy = (e) => {
14687
14860
  return s;
14688
14861
  };
14689
14862
  return n(e, 0);
14690
- }, ly = we("AsyncFunction"), oy = (e) => e && (Dt(e) || be(e)) && be(e.then) && be(e.catch), I = {
14863
+ }, ry = we("AsyncFunction"), dy = (e) => e && (Dt(e) || be(e)) && be(e.then) && be(e.catch), I = {
14691
14864
  isArray: We,
14692
14865
  isArrayBuffer: nl,
14693
- isBuffer: wg,
14694
- isFormData: Mg,
14695
- isArrayBufferView: Tg,
14696
- isString: Sg,
14866
+ isBuffer: Og,
14867
+ isFormData: Ag,
14868
+ isArrayBufferView: Lg,
14869
+ isString: Ig,
14697
14870
  isNumber: il,
14698
- isBoolean: _g,
14871
+ isBoolean: Bg,
14699
14872
  isObject: Dt,
14700
14873
  isPlainObject: yt,
14701
- isReadableStream: Pg,
14702
- isRequest: Vg,
14703
- isResponse: Ag,
14704
- isHeaders: Eg,
14874
+ isReadableStream: Hg,
14875
+ isRequest: qg,
14876
+ isResponse: Rg,
14877
+ isHeaders: jg,
14705
14878
  isUndefined: lt,
14706
- isDate: Og,
14707
- isFile: Lg,
14708
- isBlob: Ig,
14709
- isRegExp: Zg,
14879
+ isDate: Dg,
14880
+ isFile: Mg,
14881
+ isBlob: Fg,
14882
+ isRegExp: ey,
14710
14883
  isFunction: be,
14711
- isStream: Dg,
14712
- isURLSearchParams: Fg,
14713
- isTypedArray: Wg,
14714
- isFileList: Bg,
14884
+ isStream: Vg,
14885
+ isURLSearchParams: Eg,
14886
+ isTypedArray: Jg,
14887
+ isFileList: Pg,
14715
14888
  forEach: ot,
14716
14889
  merge: en,
14717
- extend: qg,
14718
- trim: Hg,
14719
- stripBOM: Rg,
14720
- inherits: jg,
14721
- toFlatObject: Ng,
14890
+ extend: Ug,
14891
+ trim: Ng,
14892
+ stripBOM: zg,
14893
+ inherits: Wg,
14894
+ toFlatObject: Gg,
14722
14895
  kindOf: It,
14723
14896
  kindOfTest: we,
14724
- endsWith: Ug,
14725
- toArray: zg,
14726
- forEachEntry: Gg,
14727
- matchAll: Kg,
14728
- isHTMLForm: Yg,
14897
+ endsWith: Kg,
14898
+ toArray: Yg,
14899
+ forEachEntry: Zg,
14900
+ matchAll: Qg,
14901
+ isHTMLForm: Xg,
14729
14902
  hasOwnProperty: ti,
14730
14903
  hasOwnProp: ti,
14731
14904
  // an alias to avoid ESLint no-prototype-builtins detection
14732
14905
  reduceDescriptors: sl,
14733
- freezeMethods: Qg,
14734
- toObjectSet: Xg,
14735
- toCamelCase: Jg,
14736
- noop: $g,
14737
- toFiniteNumber: ey,
14906
+ freezeMethods: ty,
14907
+ toObjectSet: ny,
14908
+ toCamelCase: $g,
14909
+ noop: iy,
14910
+ toFiniteNumber: ly,
14738
14911
  findKey: ll,
14739
14912
  global: ol,
14740
14913
  isContextDefined: al,
14741
14914
  ALPHABET: rl,
14742
- generateString: ty,
14743
- isSpecCompliantForm: ny,
14744
- toJSONObject: iy,
14745
- isAsyncFn: ly,
14746
- isThenable: oy
14915
+ generateString: oy,
14916
+ isSpecCompliantForm: ay,
14917
+ toJSONObject: sy,
14918
+ isAsyncFn: ry,
14919
+ isThenable: dy
14747
14920
  };
14748
14921
  function z(e, t, n, s, i) {
14749
14922
  Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = "AxiosError", t && (this.code = t), n && (this.config = n), s && (this.request = s), i && (this.response = i);
@@ -14795,7 +14968,7 @@ z.from = (e, t, n, s, i, l) => {
14795
14968
  return c !== Error.prototype;
14796
14969
  }, (u) => u !== "isAxiosError"), z.call(d, e.message, t, n, s, i), d.cause = e, d.name = e.name, l && Object.assign(d, l), d;
14797
14970
  };
14798
- const ay = null;
14971
+ const uy = null;
14799
14972
  function tn(e) {
14800
14973
  return I.isPlainObject(e) || I.isArray(e);
14801
14974
  }
@@ -14807,10 +14980,10 @@ function ii(e, t, n) {
14807
14980
  return i = cl(i), !n && l ? "[" + i + "]" : i;
14808
14981
  }).join(n ? "." : "") : t;
14809
14982
  }
14810
- function sy(e) {
14983
+ function cy(e) {
14811
14984
  return I.isArray(e) && !e.some(tn);
14812
14985
  }
14813
- const ry = I.toFlatObject(I, {}, null, function(t) {
14986
+ const my = I.toFlatObject(I, {}, null, function(t) {
14814
14987
  return /^is[A-Z]/.test(t);
14815
14988
  });
14816
14989
  function Mt(e, t, n) {
@@ -14839,7 +15012,7 @@ function Mt(e, t, n) {
14839
15012
  if (_ && !D && typeof _ == "object") {
14840
15013
  if (I.endsWith(T, "{}"))
14841
15014
  T = s ? T : T.slice(0, -2), _ = JSON.stringify(_);
14842
- else if (I.isArray(_) && sy(_) || (I.isFileList(_) || I.endsWith(T, "[]")) && (B = I.toArray(_)))
15015
+ else if (I.isArray(_) && cy(_) || (I.isFileList(_) || I.endsWith(T, "[]")) && (B = I.toArray(_)))
14843
15016
  return T = cl(T), B.forEach(function(M, U) {
14844
15017
  !(I.isUndefined(M) || M === null) && t.append(
14845
15018
  // eslint-disable-next-line no-nested-ternary
@@ -14850,7 +15023,7 @@ function Mt(e, t, n) {
14850
15023
  }
14851
15024
  return tn(_) ? !0 : (t.append(ii(D, T, l), f(_)), !1);
14852
15025
  }
14853
- const g = [], w = Object.assign(ry, {
15026
+ const g = [], w = Object.assign(my, {
14854
15027
  defaultVisitor: h,
14855
15028
  convertValue: f,
14856
15029
  isVisitable: tn
@@ -14903,13 +15076,13 @@ ml.toString = function(t) {
14903
15076
  return n(i[0]) + "=" + n(i[1]);
14904
15077
  }, "").join("&");
14905
15078
  };
14906
- function dy(e) {
15079
+ function py(e) {
14907
15080
  return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
14908
15081
  }
14909
15082
  function pl(e, t, n) {
14910
15083
  if (!t)
14911
15084
  return e;
14912
- const s = n && n.encode || dy, i = n && n.serialize;
15085
+ const s = n && n.encode || py, i = n && n.serialize;
14913
15086
  let l;
14914
15087
  if (i ? l = i(t, n) : l = I.isURLSearchParams(t) ? t.toString() : new _n(t, n).toString(s), l) {
14915
15088
  const d = e.indexOf("#");
@@ -14975,36 +15148,36 @@ const fl = {
14975
15148
  silentJSONParsing: !0,
14976
15149
  forcedJSONParsing: !0,
14977
15150
  clarifyTimeoutError: !1
14978
- }, uy = typeof URLSearchParams < "u" ? URLSearchParams : _n, cy = typeof FormData < "u" ? FormData : null, my = typeof Blob < "u" ? Blob : null, py = {
15151
+ }, fy = typeof URLSearchParams < "u" ? URLSearchParams : _n, hy = typeof FormData < "u" ? FormData : null, gy = typeof Blob < "u" ? Blob : null, yy = {
14979
15152
  isBrowser: !0,
14980
15153
  classes: {
14981
- URLSearchParams: uy,
14982
- FormData: cy,
14983
- Blob: my
15154
+ URLSearchParams: fy,
15155
+ FormData: hy,
15156
+ Blob: gy
14984
15157
  },
14985
15158
  protocols: ["http", "https", "file", "blob", "url", "data"]
14986
- }, On = typeof window < "u" && typeof document < "u", fy = ((e) => On && ["ReactNative", "NativeScript", "NS"].indexOf(e) < 0)(typeof navigator < "u" && navigator.product), hy = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
14987
- self instanceof WorkerGlobalScope && typeof self.importScripts == "function", gy = On && window.location.href || "http://localhost", yy = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
15159
+ }, On = typeof window < "u" && typeof document < "u", by = ((e) => On && ["ReactNative", "NativeScript", "NS"].indexOf(e) < 0)(typeof navigator < "u" && navigator.product), xy = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
15160
+ self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Cy = On && window.location.href || "http://localhost", vy = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
14988
15161
  __proto__: null,
14989
15162
  hasBrowserEnv: On,
14990
- hasStandardBrowserEnv: fy,
14991
- hasStandardBrowserWebWorkerEnv: hy,
14992
- origin: gy
15163
+ hasStandardBrowserEnv: by,
15164
+ hasStandardBrowserWebWorkerEnv: xy,
15165
+ origin: Cy
14993
15166
  }, Symbol.toStringTag, { value: "Module" })), ve = {
14994
- ...yy,
14995
- ...py
15167
+ ...vy,
15168
+ ...yy
14996
15169
  };
14997
- function by(e, t) {
15170
+ function ky(e, t) {
14998
15171
  return Mt(e, new ve.classes.URLSearchParams(), Object.assign({
14999
15172
  visitor: function(n, s, i, l) {
15000
15173
  return ve.isNode && I.isBuffer(n) ? (this.append(s, n.toString("base64")), !1) : l.defaultVisitor.apply(this, arguments);
15001
15174
  }
15002
15175
  }, t));
15003
15176
  }
15004
- function xy(e) {
15177
+ function wy(e) {
15005
15178
  return I.matchAll(/\w+|\[(\w*)]/g, e).map((t) => t[0] === "[]" ? "" : t[1] || t[0]);
15006
15179
  }
15007
- function Cy(e) {
15180
+ function Ty(e) {
15008
15181
  const t = {}, n = Object.keys(e);
15009
15182
  let s;
15010
15183
  const i = n.length;
@@ -15018,17 +15191,17 @@ function hl(e) {
15018
15191
  let d = n[l++];
15019
15192
  if (d === "__proto__") return !0;
15020
15193
  const u = Number.isFinite(+d), c = l >= n.length;
15021
- return d = !d && I.isArray(i) ? i.length : d, c ? (I.hasOwnProp(i, d) ? i[d] = [i[d], s] : i[d] = s, !u) : ((!i[d] || !I.isObject(i[d])) && (i[d] = []), t(n, s, i[d], l) && I.isArray(i[d]) && (i[d] = Cy(i[d])), !u);
15194
+ return d = !d && I.isArray(i) ? i.length : d, c ? (I.hasOwnProp(i, d) ? i[d] = [i[d], s] : i[d] = s, !u) : ((!i[d] || !I.isObject(i[d])) && (i[d] = []), t(n, s, i[d], l) && I.isArray(i[d]) && (i[d] = Ty(i[d])), !u);
15022
15195
  }
15023
15196
  if (I.isFormData(e) && I.isFunction(e.entries)) {
15024
15197
  const n = {};
15025
15198
  return I.forEachEntry(e, (s, i) => {
15026
- t(xy(s), i, n, 0);
15199
+ t(wy(s), i, n, 0);
15027
15200
  }), n;
15028
15201
  }
15029
15202
  return null;
15030
15203
  }
15031
- function vy(e, t, n) {
15204
+ function Sy(e, t, n) {
15032
15205
  if (I.isString(e))
15033
15206
  try {
15034
15207
  return (t || JSON.parse)(e), I.trim(e);
@@ -15054,7 +15227,7 @@ const at = {
15054
15227
  let u;
15055
15228
  if (l) {
15056
15229
  if (s.indexOf("application/x-www-form-urlencoded") > -1)
15057
- return by(t, this.formSerializer).toString();
15230
+ return ky(t, this.formSerializer).toString();
15058
15231
  if ((u = I.isFileList(t)) || s.indexOf("multipart/form-data") > -1) {
15059
15232
  const c = this.env && this.env.FormData;
15060
15233
  return Mt(
@@ -15064,7 +15237,7 @@ const at = {
15064
15237
  );
15065
15238
  }
15066
15239
  }
15067
- return l || i ? (n.setContentType("application/json", !1), vy(t)) : t;
15240
+ return l || i ? (n.setContentType("application/json", !1), Sy(t)) : t;
15068
15241
  }],
15069
15242
  transformResponse: [function(t) {
15070
15243
  const n = this.transitional || at.transitional, s = n && n.forcedJSONParsing, i = this.responseType === "json";
@@ -15107,7 +15280,7 @@ const at = {
15107
15280
  I.forEach(["delete", "get", "head", "post", "put", "patch"], (e) => {
15108
15281
  at.headers[e] = {};
15109
15282
  });
15110
- const ky = I.toObjectSet([
15283
+ const _y = I.toObjectSet([
15111
15284
  "age",
15112
15285
  "authorization",
15113
15286
  "content-length",
@@ -15125,12 +15298,12 @@ const ky = I.toObjectSet([
15125
15298
  "referer",
15126
15299
  "retry-after",
15127
15300
  "user-agent"
15128
- ]), wy = (e) => {
15301
+ ]), Oy = (e) => {
15129
15302
  const t = {};
15130
15303
  let n, s, i;
15131
15304
  return e && e.split(`
15132
15305
  `).forEach(function(d) {
15133
- i = d.indexOf(":"), n = d.substring(0, i).trim().toLowerCase(), s = d.substring(i + 1).trim(), !(!n || t[n] && ky[n]) && (n === "set-cookie" ? t[n] ? t[n].push(s) : t[n] = [s] : t[n] = t[n] ? t[n] + ", " + s : s);
15306
+ i = d.indexOf(":"), n = d.substring(0, i).trim().toLowerCase(), s = d.substring(i + 1).trim(), !(!n || t[n] && _y[n]) && (n === "set-cookie" ? t[n] ? t[n].push(s) : t[n] = [s] : t[n] = t[n] ? t[n] + ", " + s : s);
15134
15307
  }), t;
15135
15308
  }, ai = Symbol("internals");
15136
15309
  function Xe(e) {
@@ -15139,14 +15312,14 @@ function Xe(e) {
15139
15312
  function bt(e) {
15140
15313
  return e === !1 || e == null ? e : I.isArray(e) ? e.map(bt) : String(e);
15141
15314
  }
15142
- function Ty(e) {
15315
+ function Ly(e) {
15143
15316
  const t = /* @__PURE__ */ Object.create(null), n = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
15144
15317
  let s;
15145
15318
  for (; s = n.exec(e); )
15146
15319
  t[s[1]] = s[2];
15147
15320
  return t;
15148
15321
  }
15149
- const Sy = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());
15322
+ const Iy = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());
15150
15323
  function jt(e, t, n, s, i) {
15151
15324
  if (I.isFunction(s))
15152
15325
  return s.call(this, t, n);
@@ -15157,10 +15330,10 @@ function jt(e, t, n, s, i) {
15157
15330
  return s.test(t);
15158
15331
  }
15159
15332
  }
15160
- function _y(e) {
15333
+ function By(e) {
15161
15334
  return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (t, n, s) => n.toUpperCase() + s);
15162
15335
  }
15163
- function Oy(e, t) {
15336
+ function Dy(e, t) {
15164
15337
  const n = I.toCamelCase(" " + t);
15165
15338
  ["get", "set", "has"].forEach((s) => {
15166
15339
  Object.defineProperty(e, s + n, {
@@ -15187,8 +15360,8 @@ class ue {
15187
15360
  const d = (u, c) => I.forEach(u, (f, h) => l(f, h, c));
15188
15361
  if (I.isPlainObject(t) || t instanceof this.constructor)
15189
15362
  d(t, n);
15190
- else if (I.isString(t) && (t = t.trim()) && !Sy(t))
15191
- d(wy(t), n);
15363
+ else if (I.isString(t) && (t = t.trim()) && !Iy(t))
15364
+ d(Oy(t), n);
15192
15365
  else if (I.isHeaders(t))
15193
15366
  for (const [u, c] of t.entries())
15194
15367
  l(c, u, s);
@@ -15204,7 +15377,7 @@ class ue {
15204
15377
  if (!n)
15205
15378
  return i;
15206
15379
  if (n === !0)
15207
- return Ty(i);
15380
+ return Ly(i);
15208
15381
  if (I.isFunction(n))
15209
15382
  return n.call(this, i, s);
15210
15383
  if (I.isRegExp(n))
@@ -15248,7 +15421,7 @@ class ue {
15248
15421
  n[d] = bt(i), delete n[l];
15249
15422
  return;
15250
15423
  }
15251
- const u = t ? _y(l) : String(l).trim();
15424
+ const u = t ? By(l) : String(l).trim();
15252
15425
  u !== l && delete n[l], n[u] = bt(i), s[u] = !0;
15253
15426
  }), this;
15254
15427
  }
@@ -15284,7 +15457,7 @@ class ue {
15284
15457
  }).accessors, i = this.prototype;
15285
15458
  function l(d) {
15286
15459
  const u = Xe(d);
15287
- s[u] || (Oy(i, d), s[u] = !0);
15460
+ s[u] || (Dy(i, d), s[u] = !0);
15288
15461
  }
15289
15462
  return I.isArray(t) ? t.forEach(l) : l(t), this;
15290
15463
  }
@@ -15326,11 +15499,11 @@ function yl(e, t, n) {
15326
15499
  n
15327
15500
  ));
15328
15501
  }
15329
- function Ly(e) {
15502
+ function My(e) {
15330
15503
  const t = /^([-+\w]{1,25})(:?\/\/|:)/.exec(e);
15331
15504
  return t && t[1] || "";
15332
15505
  }
15333
- function Iy(e, t) {
15506
+ function Fy(e, t) {
15334
15507
  e = e || 10;
15335
15508
  const n = new Array(e), s = new Array(e);
15336
15509
  let i = 0, l = 0, d;
@@ -15346,7 +15519,7 @@ function Iy(e, t) {
15346
15519
  return x ? Math.round(w * 1e3 / x) : void 0;
15347
15520
  };
15348
15521
  }
15349
- function By(e, t) {
15522
+ function Py(e, t) {
15350
15523
  let n = 0;
15351
15524
  const s = 1e3 / t;
15352
15525
  let i = null;
@@ -15359,8 +15532,8 @@ function By(e, t) {
15359
15532
  }
15360
15533
  const vt = (e, t, n = 3) => {
15361
15534
  let s = 0;
15362
- const i = Iy(50, 250);
15363
- return By((l) => {
15535
+ const i = Fy(50, 250);
15536
+ return Py((l) => {
15364
15537
  const d = l.loaded, u = l.lengthComputable ? l.total : void 0, c = d - s, f = i(c), h = d <= u;
15365
15538
  s = d;
15366
15539
  const g = {
@@ -15375,7 +15548,7 @@ const vt = (e, t, n = 3) => {
15375
15548
  };
15376
15549
  g[t ? "download" : "upload"] = !0, e(g);
15377
15550
  }, n);
15378
- }, Dy = ve.hasStandardBrowserEnv ? (
15551
+ }, Vy = ve.hasStandardBrowserEnv ? (
15379
15552
  // Standard browser envs have full support of the APIs needed to test
15380
15553
  // whether the request URL is of the same origin as current location.
15381
15554
  function() {
@@ -15406,7 +15579,7 @@ const vt = (e, t, n = 3) => {
15406
15579
  return !0;
15407
15580
  };
15408
15581
  }()
15409
- ), My = ve.hasStandardBrowserEnv ? (
15582
+ ), Ay = ve.hasStandardBrowserEnv ? (
15410
15583
  // Standard browser envs support document.cookie
15411
15584
  {
15412
15585
  write(e, t, n, s, i, l) {
@@ -15433,14 +15606,14 @@ const vt = (e, t, n = 3) => {
15433
15606
  }
15434
15607
  }
15435
15608
  );
15436
- function Fy(e) {
15609
+ function Ey(e) {
15437
15610
  return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(e);
15438
15611
  }
15439
- function Py(e, t) {
15612
+ function Hy(e, t) {
15440
15613
  return t ? e.replace(/\/?\/$/, "") + "/" + t.replace(/^\/+/, "") : e;
15441
15614
  }
15442
15615
  function bl(e, t) {
15443
- return e && !Fy(t) ? Py(e, t) : t;
15616
+ return e && !Ey(t) ? Hy(e, t) : t;
15444
15617
  }
15445
15618
  const si = (e) => e instanceof ue ? { ...e } : e;
15446
15619
  function He(e, t) {
@@ -15523,12 +15696,12 @@ const xl = (e) => {
15523
15696
  d.setContentType([f || "multipart/form-data", ...h].join("; "));
15524
15697
  }
15525
15698
  }
15526
- if (ve.hasStandardBrowserEnv && (s && I.isFunction(s) && (s = s(t)), s || s !== !1 && Dy(t.url))) {
15527
- const f = i && l && My.read(l);
15699
+ if (ve.hasStandardBrowserEnv && (s && I.isFunction(s) && (s = s(t)), s || s !== !1 && Vy(t.url))) {
15700
+ const f = i && l && Ay.read(l);
15528
15701
  f && d.set(i, f);
15529
15702
  }
15530
15703
  return t;
15531
- }, Vy = typeof XMLHttpRequest < "u", Ay = Vy && function(e) {
15704
+ }, qy = typeof XMLHttpRequest < "u", Ry = qy && function(e) {
15532
15705
  return new Promise(function(n, s) {
15533
15706
  const i = xl(e);
15534
15707
  let l = i.data;
@@ -15578,14 +15751,14 @@ const xl = (e) => {
15578
15751
  }), I.isUndefined(i.withCredentials) || (h.withCredentials = !!i.withCredentials), u && u !== "json" && (h.responseType = i.responseType), typeof i.onDownloadProgress == "function" && h.addEventListener("progress", vt(i.onDownloadProgress, !0)), typeof i.onUploadProgress == "function" && h.upload && h.upload.addEventListener("progress", vt(i.onUploadProgress)), (i.cancelToken || i.signal) && (c = (x) => {
15579
15752
  h && (s(!x || x.type ? new Ge(null, e, h) : x), h.abort(), h = null);
15580
15753
  }, i.cancelToken && i.cancelToken.subscribe(c), i.signal && (i.signal.aborted ? c() : i.signal.addEventListener("abort", c)));
15581
- const w = Ly(i.url);
15754
+ const w = My(i.url);
15582
15755
  if (w && ve.protocols.indexOf(w) === -1) {
15583
15756
  s(new z("Unsupported protocol " + w + ":", z.ERR_BAD_REQUEST, e));
15584
15757
  return;
15585
15758
  }
15586
15759
  h.send(l || null);
15587
15760
  });
15588
- }, Ey = (e, t) => {
15761
+ }, jy = (e, t) => {
15589
15762
  let n = new AbortController(), s;
15590
15763
  const i = function(c) {
15591
15764
  if (!s) {
@@ -15607,7 +15780,7 @@ const xl = (e) => {
15607
15780
  return u.unsubscribe = d, [u, () => {
15608
15781
  l && clearTimeout(l), l = null;
15609
15782
  }];
15610
- }, Hy = function* (e, t) {
15783
+ }, Ny = function* (e, t) {
15611
15784
  let n = e.byteLength;
15612
15785
  if (n < t) {
15613
15786
  yield e;
@@ -15616,11 +15789,11 @@ const xl = (e) => {
15616
15789
  let s = 0, i;
15617
15790
  for (; s < n; )
15618
15791
  i = s + t, yield e.slice(s, i), s = i;
15619
- }, qy = async function* (e, t, n) {
15792
+ }, Uy = async function* (e, t, n) {
15620
15793
  for await (const s of e)
15621
- yield* Hy(ArrayBuffer.isView(s) ? s : await n(String(s)), t);
15794
+ yield* Ny(ArrayBuffer.isView(s) ? s : await n(String(s)), t);
15622
15795
  }, ri = (e, t, n, s, i) => {
15623
- const l = qy(e, t, i);
15796
+ const l = Uy(e, t, i);
15624
15797
  let d = 0;
15625
15798
  return new ReadableStream({
15626
15799
  type: "bytes",
@@ -15646,7 +15819,7 @@ const xl = (e) => {
15646
15819
  total: e,
15647
15820
  loaded: s
15648
15821
  }));
15649
- }, Ft = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Cl = Ft && typeof ReadableStream == "function", nn = Ft && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), Ry = Cl && (() => {
15822
+ }, Ft = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Cl = Ft && typeof ReadableStream == "function", nn = Ft && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), zy = Cl && (() => {
15650
15823
  let e = !1;
15651
15824
  const t = new Request(ve.origin, {
15652
15825
  body: new ReadableStream(),
@@ -15671,7 +15844,7 @@ Ft && ((e) => {
15671
15844
  });
15672
15845
  });
15673
15846
  })(new Response());
15674
- const jy = async (e) => {
15847
+ const Wy = async (e) => {
15675
15848
  if (e == null)
15676
15849
  return 0;
15677
15850
  if (I.isBlob(e))
@@ -15682,10 +15855,10 @@ const jy = async (e) => {
15682
15855
  return e.byteLength;
15683
15856
  if (I.isURLSearchParams(e) && (e = e + ""), I.isString(e))
15684
15857
  return (await nn(e)).byteLength;
15685
- }, Ny = async (e, t) => {
15858
+ }, Gy = async (e, t) => {
15686
15859
  const n = I.toFiniteNumber(e.getContentLength());
15687
- return n ?? jy(t);
15688
- }, Uy = Ft && (async (e) => {
15860
+ return n ?? Wy(t);
15861
+ }, Ky = Ft && (async (e) => {
15689
15862
  let {
15690
15863
  url: t,
15691
15864
  method: n,
@@ -15701,7 +15874,7 @@ const jy = async (e) => {
15701
15874
  fetchOptions: w
15702
15875
  } = xl(e);
15703
15876
  f = f ? (f + "").toLowerCase() : "text";
15704
- let [x, _] = i || l || d ? Ey([i, l], d) : [], T, D;
15877
+ let [x, _] = i || l || d ? jy([i, l], d) : [], T, D;
15705
15878
  const B = () => {
15706
15879
  !T && setTimeout(() => {
15707
15880
  x && x.unsubscribe();
@@ -15709,7 +15882,7 @@ const jy = async (e) => {
15709
15882
  };
15710
15883
  let H;
15711
15884
  try {
15712
- if (c && Ry && n !== "get" && n !== "head" && (H = await Ny(h, s)) !== 0) {
15885
+ if (c && zy && n !== "get" && n !== "head" && (H = await Gy(h, s)) !== 0) {
15713
15886
  let E = new Request(t, {
15714
15887
  method: "POST",
15715
15888
  body: s,
@@ -15766,9 +15939,9 @@ const jy = async (e) => {
15766
15939
  ) : z.from(M, M && M.code, e, D);
15767
15940
  }
15768
15941
  }), on = {
15769
- http: ay,
15770
- xhr: Ay,
15771
- fetch: Uy
15942
+ http: uy,
15943
+ xhr: Ry,
15944
+ fetch: Ky
15772
15945
  };
15773
15946
  I.forEach(on, (e, t) => {
15774
15947
  if (e) {
@@ -15779,7 +15952,7 @@ I.forEach(on, (e, t) => {
15779
15952
  Object.defineProperty(e, "adapterName", { value: t });
15780
15953
  }
15781
15954
  });
15782
- const ci = (e) => `- ${e}`, zy = (e) => I.isFunction(e) || e === null || e === !1, vl = {
15955
+ const ci = (e) => `- ${e}`, Yy = (e) => I.isFunction(e) || e === null || e === !1, vl = {
15783
15956
  getAdapter: (e) => {
15784
15957
  e = I.isArray(e) ? e : [e];
15785
15958
  const { length: t } = e;
@@ -15788,7 +15961,7 @@ const ci = (e) => `- ${e}`, zy = (e) => I.isFunction(e) || e === null || e === !
15788
15961
  for (let l = 0; l < t; l++) {
15789
15962
  n = e[l];
15790
15963
  let d;
15791
- if (s = n, !zy(n) && (s = on[(d = String(n)).toLowerCase()], s === void 0))
15964
+ if (s = n, !Yy(n) && (s = on[(d = String(n)).toLowerCase()], s === void 0))
15792
15965
  throw new z(`Unknown adapter '${d}'`);
15793
15966
  if (s)
15794
15967
  break;
@@ -15857,7 +16030,7 @@ Ln.transitional = function(t, n, s) {
15857
16030
  )), t ? t(l, d, u) : !0;
15858
16031
  };
15859
16032
  };
15860
- function Wy(e, t, n) {
16033
+ function Jy(e, t, n) {
15861
16034
  if (typeof e != "object")
15862
16035
  throw new z("options must be an object", z.ERR_BAD_OPTION_VALUE);
15863
16036
  const s = Object.keys(e);
@@ -15875,7 +16048,7 @@ function Wy(e, t, n) {
15875
16048
  }
15876
16049
  }
15877
16050
  const an = {
15878
- assertOptions: Wy,
16051
+ assertOptions: Jy,
15879
16052
  validators: Ln
15880
16053
  }, Le = an.validators;
15881
16054
  class Ae {
@@ -16066,12 +16239,12 @@ class In {
16066
16239
  };
16067
16240
  }
16068
16241
  }
16069
- function Gy(e) {
16242
+ function Zy(e) {
16070
16243
  return function(n) {
16071
16244
  return e.apply(null, n);
16072
16245
  };
16073
16246
  }
16074
- function Ky(e) {
16247
+ function Qy(e) {
16075
16248
  return I.isObject(e) && e.isAxiosError === !0;
16076
16249
  }
16077
16250
  const sn = {
@@ -16160,18 +16333,18 @@ ee.Cancel = ee.CanceledError;
16160
16333
  ee.all = function(t) {
16161
16334
  return Promise.all(t);
16162
16335
  };
16163
- ee.spread = Gy;
16164
- ee.isAxiosError = Ky;
16336
+ ee.spread = Zy;
16337
+ ee.isAxiosError = Qy;
16165
16338
  ee.mergeConfig = He;
16166
16339
  ee.AxiosHeaders = ue;
16167
16340
  ee.formToJSON = (e) => hl(I.isHTMLForm(e) ? new FormData(e) : e);
16168
16341
  ee.getAdapter = vl.getAdapter;
16169
16342
  ee.HttpStatusCode = sn;
16170
16343
  ee.default = ee;
16171
- const Yy = {
16344
+ const Xy = {
16172
16345
  name: "CmdUploadForm",
16173
16346
  emits: ["click", "error", "upload-complete", "upload-file-success"],
16174
- mixins: [ce, vg],
16347
+ mixins: [ce, Sg],
16175
16348
  data() {
16176
16349
  return {
16177
16350
  comment: "",
@@ -16711,29 +16884,29 @@ const Yy = {
16711
16884
  }
16712
16885
  }
16713
16886
  }
16714
- }, Jy = { key: 0 }, Zy = {
16887
+ }, $y = { key: 0 }, eb = {
16715
16888
  key: 1,
16716
16889
  class: "flex-container vertical"
16717
- }, Qy = {
16890
+ }, tb = {
16718
16891
  key: 0,
16719
16892
  class: "flex-container vertical list-files-wrapper"
16720
- }, Xy = {
16893
+ }, nb = {
16721
16894
  key: 0,
16722
16895
  class: "list-of-files total-files"
16723
- }, $y = { class: "flex-container flex-none" }, eb = ["title"], tb = {
16896
+ }, ib = { class: "flex-container flex-none" }, lb = ["title"], ob = {
16724
16897
  key: 0,
16725
16898
  class: "progressbar"
16726
- }, nb = ["value", "title"], ib = { class: "flex-container vertical list-files-wrapper" }, lb = { class: "list-of-files" }, ob = ["title", "onClick"], ab = {
16899
+ }, ab = ["value", "title"], sb = { class: "flex-container vertical list-files-wrapper" }, rb = { class: "list-of-files" }, db = ["title", "onClick"], ub = {
16727
16900
  key: 0,
16728
16901
  class: "progressbar"
16729
- }, sb = ["value", "title"], rb = ["title"], db = { class: "upload-conditions" }, ub = { class: "small" }, cb = ["title"], mb = {
16902
+ }, cb = ["value", "title"], mb = ["title"], pb = { class: "upload-conditions" }, fb = { class: "small" }, hb = ["title"], gb = {
16730
16903
  key: 0,
16731
16904
  class: "list-of-file-extensions"
16732
- }, pb = { class: "flex-container vertical no-gap" }, fb = ["disabled"], hb = { key: 0 }, gb = { key: 1 }, yb = { class: "button-wrapper stretch-on-small-devices" }, bb = ["disabled"], xb = { key: 0 }, Cb = { key: 1 }, vb = {
16905
+ }, yb = { class: "flex-container vertical no-gap" }, bb = ["disabled"], xb = { key: 0 }, Cb = { key: 1 }, vb = { class: "button-wrapper stretch-on-small-devices" }, kb = ["disabled"], wb = { key: 0 }, Tb = { key: 1 }, Sb = {
16733
16906
  key: 0,
16734
16907
  class: "progressbar"
16735
- }, kb = ["value", "title"];
16736
- function wb(e, t, n, s, i, l) {
16908
+ }, _b = ["value", "title"];
16909
+ function Ob(e, t, n, s, i, l) {
16737
16910
  const d = J, u = Re, c = K, f = te;
16738
16911
  return a(), r(O, null, [
16739
16912
  n.advancedMode ? (a(), r("fieldset", {
@@ -16751,7 +16924,7 @@ function wb(e, t, n, s, i, l) {
16751
16924
  systemMessage: l.allSystemMessages.length === 1 ? l.allSystemMessages[0] : e.getMessage("upload_form.system_message.the_following_errors_occurred")
16752
16925
  }, {
16753
16926
  default: k(() => [
16754
- l.allSystemMessages.length > 1 ? (a(), r("ul", Jy, [
16927
+ l.allSystemMessages.length > 1 ? (a(), r("ul", $y, [
16755
16928
  (a(!0), r(O, null, q(l.allSystemMessages, (h, g) => (a(), r("li", { key: g }, y(h), 1))), 128))
16756
16929
  ])) : m("", !0)
16757
16930
  ]),
@@ -16760,23 +16933,23 @@ function wb(e, t, n, s, i, l) {
16760
16933
  o("div", L({
16761
16934
  class: ["box flex-container vertical", { "drop-area": n.enableDragAndDrop, "allow-drop": i.allowDrop }]
16762
16935
  }, zt(l.dragAndDropHandler, !0)), [
16763
- i.listOfFiles.length ? (a(), r("div", Zy, [
16764
- n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("div", Qy, [
16936
+ i.listOfFiles.length ? (a(), r("div", eb, [
16937
+ n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("div", tb, [
16765
16938
  p(d, L(n.cmdHeadlineSummaryOfAllFiles, { headlineLevel: "4" }), {
16766
16939
  default: k(() => [
16767
16940
  F(y(e.getMessage("upload_form.headline.summary_of_all_files")), 1)
16768
16941
  ]),
16769
16942
  _: 1
16770
16943
  }, 16),
16771
- n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("ul", Xy, [
16772
- o("li", $y, [
16944
+ n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("ul", nb, [
16945
+ o("li", ib, [
16773
16946
  o("a", {
16774
16947
  href: "#",
16775
16948
  title: e.getMessage("upload_form.labeltext.remove_all_files_from_list"),
16776
16949
  onClick: t[0] || (t[0] = S((...h) => l.cancelUpload && l.cancelUpload(...h), ["prevent"]))
16777
16950
  }, [
16778
16951
  p(c, N(Be(n.iconDelete)), null, 16)
16779
- ], 8, eb),
16952
+ ], 8, lb),
16780
16953
  o("span", null, [
16781
16954
  F(y(i.listOfFiles.length) + " ", 1),
16782
16955
  n.allowMultipleFileUploads ? (a(), r(O, { key: 1 }, [
@@ -16791,26 +16964,26 @@ function wb(e, t, n, s, i, l) {
16791
16964
  { error: n.maxTotalUploadSize > 0 && l.totalSize > n.maxTotalUploadSize }
16792
16965
  ])
16793
16966
  }, " (" + y(l.formatSize(l.totalSize)) + ") ", 3),
16794
- i.uploadInitiated ? (a(), r("span", tb, [
16967
+ i.uploadInitiated ? (a(), r("span", ob, [
16795
16968
  o("span", null, y(l.getPercentage(l.totalUploadProgress)), 1),
16796
16969
  o("progress", {
16797
16970
  max: "100",
16798
16971
  value: l.totalUploadProgress,
16799
16972
  title: l.totalBytesUploaded
16800
- }, null, 8, nb)
16973
+ }, null, 8, ab)
16801
16974
  ])) : m("", !0)
16802
16975
  ])
16803
16976
  ])) : m("", !0),
16804
16977
  t[8] || (t[8] = o("hr", null, null, -1))
16805
16978
  ])) : m("", !0),
16806
- o("div", ib, [
16979
+ o("div", sb, [
16807
16980
  p(d, L(n.cmdHeadlineListOfSelectedFiles, { headlineLevel: "4" }), {
16808
16981
  default: k(() => [
16809
16982
  F(y(e.getMessage("upload_form.headline.list_of_selected_files")), 1)
16810
16983
  ]),
16811
16984
  _: 1
16812
16985
  }, 16),
16813
- o("ul", lb, [
16986
+ o("ul", rb, [
16814
16987
  (a(!0), r(O, null, q(i.listOfFiles, (h, g) => (a(), r("li", {
16815
16988
  key: g,
16816
16989
  class: "flex-container flex-none"
@@ -16821,7 +16994,7 @@ function wb(e, t, n, s, i, l) {
16821
16994
  onClick: S((w) => l.removeFile(g), ["prevent"])
16822
16995
  }, [
16823
16996
  p(c, L({ ref_for: !0 }, n.iconDelete), null, 16)
16824
- ], 8, ob),
16997
+ ], 8, db),
16825
16998
  o("span", {
16826
16999
  class: C([
16827
17000
  "text-align-right",
@@ -16832,13 +17005,13 @@ function wb(e, t, n, s, i, l) {
16832
17005
  F(y(h.file.name) + " ", 1),
16833
17006
  o("small", null, "(" + y(l.formatSize(h.file.size)) + ")", 1)
16834
17007
  ], 2),
16835
- i.uploadInitiated && !h.error ? (a(), r("span", ab, [
17008
+ i.uploadInitiated && !h.error ? (a(), r("span", ub, [
16836
17009
  o("span", null, y(l.getPercentage(h.progress)), 1),
16837
17010
  o("progress", {
16838
17011
  max: "100",
16839
17012
  value: h.progress,
16840
17013
  title: l.formatSize(h.uploadedBytes) + "/" + l.formatSize(h.file.size)
16841
- }, null, 8, sb)
17014
+ }, null, 8, cb)
16842
17015
  ])) : m("", !0)
16843
17016
  ]))), 128))
16844
17017
  ]),
@@ -16847,7 +17020,7 @@ function wb(e, t, n, s, i, l) {
16847
17020
  href: "#",
16848
17021
  onClick: t[1] || (t[1] = S((...h) => l.cancel && l.cancel(...h), ["prevent"])),
16849
17022
  title: e.getMessage("upload_form.all_files_will_be_removed")
16850
- }, y(e.getMessage("upload_form.reset_upload")), 9, rb)) : m("", !0),
17023
+ }, y(e.getMessage("upload_form.reset_upload")), 9, mb)) : m("", !0),
16851
17024
  t[9] || (t[9] = o("hr", null, null, -1))
16852
17025
  ])
16853
17026
  ])) : (a(), r(O, { key: 0 }, [
@@ -16858,7 +17031,7 @@ function wb(e, t, n, s, i, l) {
16858
17031
  _: 1
16859
17032
  }, 16)) : m("", !0)
16860
17033
  ], 64)),
16861
- o("div", db, [
17034
+ o("div", pb, [
16862
17035
  n.allowMultipleFileUploads && i.listOfFiles.length ? (a(), v(d, L({ key: 0 }, n.cmdHeadlineSelectAdditionalFiles, { headlineLevel: "4" }), {
16863
17036
  default: k(() => [
16864
17037
  F(y(e.getMessage("upload_form.headline.select_additional_files")), 1)
@@ -16871,7 +17044,7 @@ function wb(e, t, n, s, i, l) {
16871
17044
  ]),
16872
17045
  _: 1
16873
17046
  }, 16)) : m("", !0),
16874
- o("dl", ub, [
17047
+ o("dl", fb, [
16875
17048
  n.maxTotalUploadSize > 0 ? (a(), r(O, { key: 0 }, [
16876
17049
  o("dt", {
16877
17050
  class: C({ error: l.totalSize > n.maxTotalUploadSize })
@@ -16899,10 +17072,10 @@ function wb(e, t, n, s, i, l) {
16899
17072
  iconClass: i.showListOfFileExtensions ? n.iconInvisible.iconClass : n.iconVisible.iconClass,
16900
17073
  type: i.showListOfFileExtensions ? n.iconInvisible.iconType : n.iconVisible.iconType
16901
17074
  }, null, 8, ["iconClass", "type"])
16902
- ], 8, cb),
17075
+ ], 8, hb),
16903
17076
  p(Me, { name: n.transitionListOfFileExtensions }, {
16904
17077
  default: k(() => [
16905
- i.showListOfFileExtensions ? (a(), r("ul", mb, [
17078
+ i.showListOfFileExtensions ? (a(), r("ul", gb, [
16906
17079
  (a(!0), r(O, null, q(n.allowedFileExtensions, (h, g) => (a(), r("li", {
16907
17080
  key: g,
16908
17081
  class: C({ error: i.errors.fileType })
@@ -16914,7 +17087,7 @@ function wb(e, t, n, s, i, l) {
16914
17087
  ])
16915
17088
  ])
16916
17089
  ]),
16917
- o("div", pb, [
17090
+ o("div", yb, [
16918
17091
  o("button", {
16919
17092
  type: "button",
16920
17093
  class: C(["button upload primary", { disabled: i.uploadInitiated }]),
@@ -16925,8 +17098,8 @@ function wb(e, t, n, s, i, l) {
16925
17098
  iconClass: n.iconFileUpload.iconClass,
16926
17099
  type: n.iconFileUpload.iconType
16927
17100
  }, null, 8, ["iconClass", "type"]),
16928
- n.allowMultipleFileUploads ? (a(), r("span", hb, y(e.getMessage("upload_form.labeltext.select_files")), 1)) : (a(), r("span", gb, y(e.getMessage("upload_form.labeltext.select_file")), 1))
16929
- ], 10, fb),
17101
+ n.allowMultipleFileUploads ? (a(), r("span", xb, y(e.getMessage("upload_form.labeltext.select_files")), 1)) : (a(), r("span", Cb, y(e.getMessage("upload_form.labeltext.select_file")), 1))
17102
+ ], 10, bb),
16930
17103
  n.enableDragAndDrop ? (a(), r("p", {
16931
17104
  key: 0,
16932
17105
  class: C(["text-drag-and-drop", { disabled: i.uploadInitiated }])
@@ -16956,7 +17129,7 @@ function wb(e, t, n, s, i, l) {
16956
17129
  placeholder: e.getMessage("upload_form.placeholder.comment"),
16957
17130
  status: n.commentStatusMessage ? "error" : ""
16958
17131
  }, null, 8, ["labelText", "modelValue", "required", "validationMessage", "placeholder", "status"])) : m("", !0),
16959
- o("div", yb, [
17132
+ o("div", vb, [
16960
17133
  o("button", {
16961
17134
  class: C([
16962
17135
  "button primary",
@@ -16968,8 +17141,8 @@ function wb(e, t, n, s, i, l) {
16968
17141
  onClick: t[5] || (t[5] = (...h) => l.uploadFiles && l.uploadFiles(...h))
16969
17142
  }, [
16970
17143
  p(c, N(Be(n.iconUpload)), null, 16),
16971
- i.listOfFiles.length === 1 || !n.allowMultipleFileUploads ? (a(), r("span", xb, y(e.getMessage("upload_form.buttontext.upload_file")), 1)) : (a(), r("span", Cb, y(e.getMessage("upload_form.buttontext.upload_files")), 1))
16972
- ], 10, bb),
17144
+ i.listOfFiles.length === 1 || !n.allowMultipleFileUploads ? (a(), r("span", wb, y(e.getMessage("upload_form.buttontext.upload_file")), 1)) : (a(), r("span", Tb, y(e.getMessage("upload_form.buttontext.upload_files")), 1))
17145
+ ], 10, kb),
16973
17146
  o("button", {
16974
17147
  class: C(["button", { disabled: i.listOfFiles.length === 0 }]),
16975
17148
  onClick: t[6] || (t[6] = (...h) => l.cancel && l.cancel(...h))
@@ -16984,13 +17157,13 @@ function wb(e, t, n, s, i, l) {
16984
17157
  onClick: t[7] || (t[7] = S((...h) => l.selectFiles && l.selectFiles(...h), ["prevent"])),
16985
17158
  class: ["cmd-upload-form box", { "drop-area": n.enableDragAndDrop, "allow-drop": i.allowDrop }]
16986
17159
  }, zt(l.dragAndDropHandler, !0)), [
16987
- i.uploadInitiated ? (a(), r("span", vb, [
17160
+ i.uploadInitiated ? (a(), r("span", Sb, [
16988
17161
  o("span", null, y(l.getPercentage(l.totalUploadProgress)), 1),
16989
17162
  o("progress", {
16990
17163
  max: "100",
16991
17164
  value: l.totalUploadProgress,
16992
17165
  title: l.totalBytesUploaded
16993
- }, null, 8, kb)
17166
+ }, null, 8, _b)
16994
17167
  ])) : m("", !0),
16995
17168
  V(e.$slots, "default", {}, () => [
16996
17169
  n.enableDragAndDrop ? (a(), r(O, { key: 1 }, [
@@ -17029,7 +17202,7 @@ function wb(e, t, n, s, i, l) {
17029
17202
  }, null, 8, ["labelText", "disabled", "multiple", "onChange"])
17030
17203
  ], 64);
17031
17204
  }
17032
- const Tb = /* @__PURE__ */ P(Yy, [["render", wb]]), Sb = {
17205
+ const Lb = /* @__PURE__ */ P(Xy, [["render", Ob]]), Ib = {
17033
17206
  name: "CmdWidthLimitationWrapper",
17034
17207
  props: {
17035
17208
  /**
@@ -17135,8 +17308,8 @@ const Tb = /* @__PURE__ */ P(Yy, [["render", wb]]), Sb = {
17135
17308
  return e.length === 1 && typeof e[0].type == "symbol" && Array.isArray(e[0].children) ? e[0].children.length === 1 : e.length === 1;
17136
17309
  }
17137
17310
  }
17138
- }, _b = ["id"], Ob = ["id"];
17139
- function Lb(e, t, n, s, i, l) {
17311
+ }, Bb = ["id"], Db = ["id"];
17312
+ function Mb(e, t, n, s, i, l) {
17140
17313
  const d = J;
17141
17314
  return a(), r("div", {
17142
17315
  class: C(["cmd-width-limitation-wrapper", { sticky: n.sticky }]),
@@ -17154,16 +17327,16 @@ function Lb(e, t, n, s, i, l) {
17154
17327
  }, [
17155
17328
  V(e.$slots, "default")
17156
17329
  ], 2))
17157
- ], 10, _b)) : (a(), r(O, { key: 1 }, [
17330
+ ], 10, Bb)) : (a(), r(O, { key: 1 }, [
17158
17331
  n.anchorId ? (a(), r("a", {
17159
17332
  key: 0,
17160
17333
  id: n.anchorId
17161
- }, null, 8, Ob)) : m("", !0),
17334
+ }, null, 8, Db)) : m("", !0),
17162
17335
  V(e.$slots, "default")
17163
17336
  ], 64))
17164
17337
  ], 2);
17165
17338
  }
17166
- const Tl = /* @__PURE__ */ P(Sb, [["render", Lb]]), Ib = {
17339
+ const Tl = /* @__PURE__ */ P(Ib, [["render", Mb]]), Fb = {
17167
17340
  name: "ComponentSettings",
17168
17341
  data() {
17169
17342
  return {
@@ -17256,7 +17429,7 @@ const Tl = /* @__PURE__ */ P(Sb, [["render", Lb]]), Ib = {
17256
17429
  }
17257
17430
  }
17258
17431
  };
17259
- function Bb(e, t, n, s, i, l) {
17432
+ function Pb(e, t, n, s, i, l) {
17260
17433
  const d = te, u = wn;
17261
17434
  return a(), v(u, {
17262
17435
  "use-slots": ["body"],
@@ -17282,7 +17455,7 @@ function Bb(e, t, n, s, i, l) {
17282
17455
  _: 1
17283
17456
  }, 8, ["cmdHeadline"]);
17284
17457
  }
17285
- const Db = /* @__PURE__ */ P(Ib, [["render", Bb]]), Mb = {
17458
+ const Vb = /* @__PURE__ */ P(Fb, [["render", Pb]]), Ab = {
17286
17459
  name: "MultipleBoxWrapper",
17287
17460
  props: {
17288
17461
  segments: {
@@ -17290,10 +17463,10 @@ const Db = /* @__PURE__ */ P(Ib, [["render", Bb]]), Mb = {
17290
17463
  default: null
17291
17464
  }
17292
17465
  }
17293
- }, Fb = { class: "cmd-page-multiple-box-wrapper flex-container vertical" };
17294
- function Pb(e, t, n, s, i, l) {
17466
+ }, Eb = { class: "cmd-page-multiple-box-wrapper flex-container vertical" };
17467
+ function Hb(e, t, n, s, i, l) {
17295
17468
  const d = wn, u = Ni;
17296
- return a(), r("div", Fb, [
17469
+ return a(), r("div", Eb, [
17297
17470
  (a(!0), r(O, null, q(n.segments, (c, f) => (a(), r(O, { key: f }, [
17298
17471
  p(u, L({ ref_for: !0 }, c), {
17299
17472
  default: k((h) => [
@@ -17316,7 +17489,7 @@ function Pb(e, t, n, s, i, l) {
17316
17489
  ], 64))), 128))
17317
17490
  ]);
17318
17491
  }
17319
- const Vb = /* @__PURE__ */ P(Mb, [["render", Pb]]), Ab = {
17492
+ const qb = /* @__PURE__ */ P(Ab, [["render", Hb]]), Rb = {
17320
17493
  name: "MultipleListsOfLinks",
17321
17494
  props: {
17322
17495
  segments: {
@@ -17324,10 +17497,10 @@ const Vb = /* @__PURE__ */ P(Mb, [["render", Pb]]), Ab = {
17324
17497
  default: null
17325
17498
  }
17326
17499
  }
17327
- }, Eb = { class: "cmd-page-multiple-lists-of-links flex-container vertical" };
17328
- function Hb(e, t, n, s, i, l) {
17500
+ }, jb = { class: "cmd-page-multiple-lists-of-links flex-container vertical" };
17501
+ function Nb(e, t, n, s, i, l) {
17329
17502
  const d = vn;
17330
- return a(), r("div", Eb, [
17503
+ return a(), r("div", jb, [
17331
17504
  (a(!0), r(O, null, q(n.segments, (u, c) => (a(), r(O, { key: c }, [
17332
17505
  p(d, {
17333
17506
  links: u.links,
@@ -17339,7 +17512,7 @@ function Hb(e, t, n, s, i, l) {
17339
17512
  ], 64))), 128))
17340
17513
  ]);
17341
17514
  }
17342
- const qb = /* @__PURE__ */ P(Ab, [["render", Hb]]), Rb = {
17515
+ const Ub = /* @__PURE__ */ P(Rb, [["render", Nb]]), zb = {
17343
17516
  name: "ContactInformation",
17344
17517
  props: {
17345
17518
  /**
@@ -17372,22 +17545,22 @@ const qb = /* @__PURE__ */ P(Ab, [["render", Hb]]), Rb = {
17372
17545
  return !this.$scopedSlots["custom-info"];
17373
17546
  }
17374
17547
  }
17375
- }, jb = {
17548
+ }, Wb = {
17376
17549
  key: 1,
17377
17550
  class: "flex-container"
17378
- }, Nb = { class: "flex-container vertical" };
17379
- function Ub(e, t, n, s, i, l) {
17551
+ }, Gb = { class: "flex-container vertical" };
17552
+ function Kb(e, t, n, s, i, l) {
17380
17553
  const d = Ri, u = Ai, c = Ji;
17381
- return l.contactFormOnly ? (a(), v(d, N(L({ key: 0 }, e.basicForm)), null, 16)) : (a(), r("div", jb, [
17554
+ return l.contactFormOnly ? (a(), v(d, N(L({ key: 0 }, e.basicForm)), null, 16)) : (a(), r("div", Wb, [
17382
17555
  p(d, N(Be(e.basicForm)), null, 16),
17383
- o("div", Nb, [
17556
+ o("div", Gb, [
17384
17557
  n.cmdAddressData ? (a(), v(u, N(L({ key: 0 }, n.cmdAddressData)), null, 16)) : m("", !0),
17385
17558
  n.cmdGoogleMaps ? (a(), v(c, N(L({ key: 1 }, n.cmdGoogleMaps)), null, 16)) : m("", !0),
17386
17559
  V(e.$slots, "additional-info")
17387
17560
  ])
17388
17561
  ]));
17389
17562
  }
17390
- const zb = /* @__PURE__ */ P(Rb, [["render", Ub]]), Sl = [
17563
+ const Yb = /* @__PURE__ */ P(zb, [["render", Kb]]), Sl = [
17391
17564
  {
17392
17565
  name: "company",
17393
17566
  iconClass: "icon-company",
@@ -17453,7 +17626,7 @@ const zb = /* @__PURE__ */ P(Rb, [["render", Ub]]), Sl = [
17453
17626
  data: "Custom data",
17454
17627
  labelText: "Custom"
17455
17628
  }
17456
- ], Wb = [
17629
+ ], Jb = [
17457
17630
  {
17458
17631
  boxesPerRow: 4,
17459
17632
  useRowViewAsDefault: !0,
@@ -17501,7 +17674,7 @@ const zb = /* @__PURE__ */ P(Rb, [["render", Ub]]), Sl = [
17501
17674
  }
17502
17675
  ]
17503
17676
  }
17504
- ], Gb = [
17677
+ ], Zb = [
17505
17678
  {
17506
17679
  boxesPerRow: 4,
17507
17680
  useRowViewAsDefault: !0,
@@ -17802,7 +17975,7 @@ const zb = /* @__PURE__ */ P(Rb, [["render", Ub]]), Sl = [
17802
17975
  }
17803
17976
  ]
17804
17977
  }
17805
- ], Kb = [
17978
+ ], Qb = [
17806
17979
  {
17807
17980
  headline: {
17808
17981
  headlineLevel: 4,
@@ -17857,7 +18030,7 @@ const zb = /* @__PURE__ */ P(Rb, [["render", Ub]]), Sl = [
17857
18030
  }
17858
18031
  ]
17859
18032
  }
17860
- ], Yb = [
18033
+ ], Xb = [
17861
18034
  {
17862
18035
  headline: {
17863
18036
  headlineLevel: 4,
@@ -17934,20 +18107,20 @@ const zb = /* @__PURE__ */ P(Rb, [["render", Ub]]), Sl = [
17934
18107
  }
17935
18108
  ]
17936
18109
  }
17937
- ], Jb = {
18110
+ ], $b = {
17938
18111
  name: "PageOverview",
17939
18112
  data() {
17940
18113
  return {
17941
18114
  addressData: Sl,
17942
- faqsData: Wb,
17943
- boxesTeamOverviewData: Gb,
17944
- listOfDownloadsData: Kb,
17945
- listOfSiteLinksData: Yb
18115
+ faqsData: Jb,
18116
+ boxesTeamOverviewData: Zb,
18117
+ listOfDownloadsData: Qb,
18118
+ listOfSiteLinksData: Xb
17946
18119
  };
17947
18120
  }
17948
18121
  };
17949
- function Zb(e, t, n, s, i, l) {
17950
- const d = zb, u = Tl, c = qb, f = Vb;
18122
+ function ex(e, t, n, s, i, l) {
18123
+ const d = Yb, u = Tl, c = Ub, f = qb;
17951
18124
  return a(), r(O, null, [
17952
18125
  p(u, null, {
17953
18126
  default: k(() => [
@@ -18004,7 +18177,7 @@ function Zb(e, t, n, s, i, l) {
18004
18177
  })
18005
18178
  ], 64);
18006
18179
  }
18007
- const _l = /* @__PURE__ */ P(Jb, [["render", Zb]]), Qb = {
18180
+ const _l = /* @__PURE__ */ P($b, [["render", ex]]), tx = {
18008
18181
  name: "CmdParagraph",
18009
18182
  props: {
18010
18183
  /**
@@ -18038,185 +18211,12 @@ const _l = /* @__PURE__ */ P(Jb, [["render", Zb]]), Qb = {
18038
18211
  }
18039
18212
  }
18040
18213
  }
18041
- }, Xb = ["innerHTML"];
18042
- function $b(e, t, n, s, i, l) {
18214
+ }, nx = ["innerHTML"];
18215
+ function ix(e, t, n, s, i, l) {
18043
18216
  return a(), r("p", {
18044
18217
  class: C(["cmd-paragraph", "text-align-" + n.textAlign, "column-count-" + n.numberOfColumns]),
18045
18218
  innerHTML: n.content
18046
- }, null, 10, Xb);
18047
- }
18048
- const ex = /* @__PURE__ */ P(Qb, [["render", $b]]), tx = {
18049
- name: "CmdMultistepFormWrapper",
18050
- data() {
18051
- return {
18052
- currentPage: 1,
18053
- pagesWithError: []
18054
- };
18055
- },
18056
- props: {
18057
- /**
18058
- * properties for CmdMultistepFormProgressBar-component
18059
- */
18060
- cmdMultistepFormProgressBar: {
18061
- type: Object,
18062
- default() {
18063
- return {
18064
- show: !0
18065
- };
18066
- }
18067
- },
18068
- /**
18069
- * properties for CmdMultistepFormProgressBar-component
18070
- */
18071
- showButtonWrapper: {
18072
- type: Boolean,
18073
- default: !0
18074
- },
18075
- /**
18076
- * properties for CmdLink-component
18077
- */
18078
- cmdLinkPrevious: {
18079
- type: Object,
18080
- required: !1
18081
- },
18082
- /**
18083
- * properties for CmdLink-component
18084
- */
18085
- cmdLinkNext: {
18086
- type: Object,
18087
- required: !1
18088
- },
18089
- /**
18090
- * properties for CmdPagination-component
18091
- */
18092
- cmdPagination: {
18093
- type: Object,
18094
- default() {
18095
- return {
18096
- show: !0
18097
- };
18098
- }
18099
- }
18100
- },
18101
- mounted() {
18102
- console.log("slots:", this.$slots);
18103
- },
18104
- methods: {
18105
- getSystemMessage(e) {
18106
- return this.pagesWithError.find((n) => n.page === e).message;
18107
- },
18108
- setErrorOnPage(e, t) {
18109
- this.pagesWithError.some((s) => s.page === e) || this.pagesWithError.push({ page: e, message: t });
18110
- },
18111
- removeErrorOnPage() {
18112
- this.pagesWithError = [];
18113
- },
18114
- setCurrentPage(e) {
18115
- this.currentPage = e;
18116
- },
18117
- setPrevPage() {
18118
- this.currentPage > 1 && this.currentPage--;
18119
- },
18120
- setNextPage() {
18121
- this.currentPage < this.numberOfPages && this.currentPage++;
18122
- }
18123
- },
18124
- computed: {
18125
- errorSteps() {
18126
- const e = [];
18127
- return this.pagesWithError.find((t) => {
18128
- e.push(t.page);
18129
- }), console.log("steps", e), e;
18130
- },
18131
- multisteps() {
18132
- const e = [];
18133
- for (let t = 1; t <= this.numberOfPages; t++)
18134
- e.push(t);
18135
- return e;
18136
- },
18137
- numberOfPages() {
18138
- return Object.keys(this.$slots).filter((e) => e.startsWith("page-")).length;
18139
- },
18140
- cmdMultistepFormProgressBarProperties() {
18141
- return {
18142
- show: !0,
18143
- showStepNumber: !0,
18144
- ...this.cmdMultistepFormProgressBar
18145
- };
18146
- },
18147
- cmdPaginationProperties() {
18148
- return {
18149
- pages: null,
18150
- itemsPerPage: null,
18151
- showPageNumbers: !0,
18152
- linkType: "href",
18153
- prevLink: {
18154
- iconClass: "icon-chevron-one-stripe-left",
18155
- text: "prev",
18156
- showText: !0
18157
- },
18158
- nextLink: {
18159
- iconClass: "icon-chevron-one-stripe-right",
18160
- text: "next",
18161
- showText: !0
18162
- }
18163
- };
18164
- }
18165
- }
18166
- }, nx = { class: "cmd-multistepform-wrapper" };
18167
- function ix(e, t, n, s, i, l) {
18168
- const d = Qi, u = Re, c = Xi;
18169
- return a(), r("div", nx, [
18170
- V(e.$slots, "progress-bar", {
18171
- setCurrentPage: l.setCurrentPage,
18172
- numberOfPages: l.numberOfPages
18173
- }, () => [
18174
- n.cmdMultistepFormProgressBar.show ? (a(), v(d, L({ key: 0 }, l.cmdMultistepFormProgressBarProperties, {
18175
- multisteps: l.multisteps,
18176
- activeStep: i.currentPage - 1,
18177
- errorSteps: l.errorSteps,
18178
- onClick: t[0] || (t[0] = (f) => l.setCurrentPage(f.index + 1))
18179
- }), null, 16, ["multisteps", "activeStep", "errorSteps"])) : m("", !0)
18180
- ]),
18181
- (a(!0), r(O, null, q(l.numberOfPages, (f, h) => $((a(), r("div", {
18182
- class: C("multistep-page-" + f),
18183
- key: h
18184
- }, [
18185
- i.pagesWithError.some((g) => g.page === f) ? (a(), v(u, {
18186
- key: 0,
18187
- systemMessage: l.getSystemMessage(f),
18188
- validationStatus: "error"
18189
- }, null, 8, ["systemMessage"])) : m("", !0),
18190
- F(" page: " + y(f), 1),
18191
- t[2] || (t[2] = o("br", null, null, -1)),
18192
- F(" index: " + y(h), 1),
18193
- t[3] || (t[3] = o("br", null, null, -1)),
18194
- F(" currentPage: " + y(i.currentPage), 1),
18195
- t[4] || (t[4] = o("br", null, null, -1)),
18196
- F(" errorSteps: " + y(l.errorSteps) + " ", 1),
18197
- V(e.$slots, "page-" + f, {
18198
- setErrorOnPage: (g) => l.setErrorOnPage(f, g),
18199
- removeErrorOnPage: l.removeErrorOnPage
18200
- })
18201
- ], 2)), [
18202
- [ye, f === i.currentPage]
18203
- ])), 128)),
18204
- V(e.$slots, "pagination", {
18205
- currentPage: i.currentPage,
18206
- setPrevPage: l.setPrevPage,
18207
- setNextPage: l.setNextPage,
18208
- disabledPrevLink: i.currentPage === 1,
18209
- disabledNextLink: i.currentPage === l.numberOfPages
18210
- }, () => [
18211
- n.cmdPagination.show ? (a(), v(c, L({
18212
- key: 0,
18213
- activePage: i.currentPage,
18214
- numberOfPages: l.numberOfPages
18215
- }, l.cmdPaginationProperties, {
18216
- onClick: t[1] || (t[1] = (f) => l.setCurrentPage(f.page))
18217
- }), null, 16, ["activePage", "numberOfPages"])) : m("", !0)
18218
- ])
18219
- ]);
18219
+ }, null, 10, nx);
18220
18220
  }
18221
18221
  const lx = /* @__PURE__ */ P(tx, [["render", ix]]), ox = {
18222
18222
  data() {
@@ -21420,7 +21420,7 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
21420
21420
  text: "Zimbabwe",
21421
21421
  value: "zw"
21422
21422
  }
21423
- ], n1 = "comand-component-library", i1 = "4.2.57", l1 = "GPL-3.0-only", o1 = "CoManD-UI", a1 = "module", s1 = {
21423
+ ], n1 = "comand-component-library", i1 = "4.2.59", l1 = "GPL-3.0-only", o1 = "CoManD-UI", a1 = "module", s1 = {
21424
21424
  prepublishOnly: "npm run build-lib",
21425
21425
  dev: "vite",
21426
21426
  build: "vite build",
@@ -22789,7 +22789,7 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
22789
22789
  e.originalEvent.preventDefault(), console.log(e);
22790
22790
  },
22791
22791
  localizedTime(e) {
22792
- return (t, n) => ef(e)(t, n).toLowerCase();
22792
+ return (t, n) => gf(e)(t, n).toLowerCase();
22793
22793
  },
22794
22794
  idForReplacedInputsInInputGroup(e) {
22795
22795
  return dC.map((t) => ({ ...t, id: e + t.id, name: e + t.name }));
@@ -23037,7 +23037,7 @@ const qx = /* @__PURE__ */ P(Ex, [["render", Hx]]), Rx = [
23037
23037
  id: "content"
23038
23038
  };
23039
23039
  function mk(e, t, n, s, i, l) {
23040
- const d = wn, u = Ni, c = sh, f = vn, h = zi, g = hh, w = Tl, x = Ai, _ = Gi, T = te, D = Ah, B = Wi, H = Zf, M = Cn, U = Ei, G = hr, E = kr, R = Ri, W = Ui, Q = Tc, Z = Mc, le = Bm, me = Ji, ne = J, ie = K, se = ke, pe = Km, fe = $m, X = Pe, he = yp, A = qx, re = Zi, xe = _e("router-view"), Te = lx, Oe = Qi, Ve = Rp, de = pf, st = Hf, rt = Uf, dt = Xi, ut = ex, je = eh, Ke = ch, ct = Sh, Y = Mh, Bl = $i, Dl = Uh, Ml = Re, Bn = eg, Fl = el, Pl = ji, Pt = gg, Vl = Hi, Al = Cg, Vt = Pi, El = Tb, Hl = _l, ql = nm, Rl = Xc, jl = qd, Nl = Db, Ul = Zl("fancybox");
23040
+ const d = wn, u = Ni, c = ch, f = vn, h = zi, g = xh, w = Tl, x = Ai, _ = Gi, T = te, D = Rh, B = Wi, H = eh, M = Cn, U = Ei, G = hr, E = kr, R = Ri, W = Ui, Q = Tc, Z = Mc, le = Bm, me = Ji, ne = J, ie = 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, st = Nf, rt = Kf, dt = Qi, ut = lx, je = lh, Ke = hh, ct = Ih, Y = Ah, Bl = $i, Dl = Kh, Ml = Re, Bn = lg, Fl = el, Pl = ji, Pt = Cg, Vl = Hi, Al = Tg, Vt = Pi, El = Lb, Hl = _l, ql = nm, Rl = Xc, jl = qd, Nl = Vb, Ul = Zl("fancybox");
23041
23041
  return $((a(), r("div", {
23042
23042
  class: "page-wrapper",
23043
23043
  id: l.templateId
@@ -26066,42 +26066,43 @@ export {
26066
26066
  vn as CmdList,
26067
26067
  yp as CmdLoginForm,
26068
26068
  Zi as CmdMainNavigation,
26069
- Qi as CmdMultistepFormProgressBar,
26070
- Rp as CmdNewsletterSubscription,
26071
- pf as CmdOpeningHours,
26072
- Hf as CmdPageFooter,
26073
- Uf as CmdPageHeader,
26074
- Xi as CmdPagination,
26075
- Zf as CmdProgressBar,
26076
- eh as CmdSection,
26077
- sh as CmdSidebar,
26078
- ch as CmdSiteFooter,
26079
- hh as CmdSiteHeader,
26080
- Sh as CmdSiteSearch,
26069
+ Xi as CmdMultistepFormProgressBar,
26070
+ Zp as CmdMultistepFormWrapper,
26071
+ tf as CmdNewsletterSubscription,
26072
+ Lf as CmdOpeningHours,
26073
+ Nf as CmdPageFooter,
26074
+ Kf as CmdPageHeader,
26075
+ Qi as CmdPagination,
26076
+ eh as CmdProgressBar,
26077
+ lh as CmdSection,
26078
+ ch as CmdSidebar,
26079
+ hh as CmdSiteFooter,
26080
+ xh as CmdSiteHeader,
26081
+ Ih as CmdSiteSearch,
26081
26082
  Lt as CmdSlideButton,
26082
- Mh as CmdSlideshow,
26083
- Ah as CmdSmartSearch,
26083
+ Ah as CmdSlideshow,
26084
+ Rh as CmdSmartSearch,
26084
26085
  $i as CmdSocialNetworks,
26085
- Uh as CmdSwitchLanguage,
26086
+ Kh as CmdSwitchLanguage,
26086
26087
  Re as CmdSystemMessage,
26087
- eg as CmdTable,
26088
+ lg as CmdTable,
26088
26089
  el as CmdTabs,
26089
- gg as CmdTextImageBlock,
26090
+ Cg as CmdTextImageBlock,
26090
26091
  Hi as CmdThumbnailScroller,
26091
- Cg as CmdToggleDarkMode,
26092
+ Tg as CmdToggleDarkMode,
26092
26093
  Pi as CmdTooltip,
26093
26094
  gn as CmdTooltipForFormElements,
26094
- Tb as CmdUploadForm,
26095
+ Lb as CmdUploadForm,
26095
26096
  Tl as CmdWidthLimitationWrapper,
26096
26097
  wk as ComponentLibrary,
26097
- zb as ContactInformation,
26098
+ Yb as ContactInformation,
26098
26099
  _k as DirFancybox,
26099
26100
  Tk as DirFocus,
26100
26101
  Sk as DirTelephone,
26101
26102
  qe as EditComponentWrapper,
26102
26103
  ce as I18n,
26103
- Vb as MultipleBoxWrapper,
26104
- qb as MultipleListsOfLinks,
26104
+ qb as MultipleBoxWrapper,
26105
+ Ub as MultipleListsOfLinks,
26105
26106
  Ok as capitalizeFirstLetter,
26106
26107
  Vi as createHtmlId,
26107
26108
  it as createUuid,