@everchron/ec-shards 19.7.7 → 20.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/ec-shards.js CHANGED
@@ -10365,7 +10365,14 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10365
10365
  bold: !1,
10366
10366
  italic: !1,
10367
10367
  underline: !1
10368
- }), Id = (e) => typeof e == "string" && /^#([0-9A-Fa-f]{3}){1,2}$/.test(e), Ld = (e) => Object.keys(Pd).includes(e), Rd = (e) => typeof e.content == "string" && typeof e.size == "number" && e.size >= 8 && e.size <= 32 && typeof e.bold == "boolean" && typeof e.italic == "boolean" && typeof e.underline == "boolean", zd = (e) => e == null ? !0 : Id(e.color) && Ld(e.shape) && Array.isArray(e.text) && e.text.length >= 1 && e.text.length <= 6 && e.text.every(Rd), Bd = () => {
10368
+ }), Id = (e) => typeof e == "string" && /^#([0-9A-Fa-f]{3}){1,2}$/.test(e), Ld = (e) => Object.keys(Pd).includes(e), Rd = [
10369
+ "top-left",
10370
+ "top-right",
10371
+ "bottom-left",
10372
+ "bottom-right",
10373
+ "center-top",
10374
+ "center-bottom"
10375
+ ], zd = (e) => e == null || Rd.includes(e), Bd = (e) => typeof e.content == "string" && typeof e.size == "number" && e.size >= 8 && e.size <= 32 && typeof e.bold == "boolean" && typeof e.italic == "boolean" && typeof e.underline == "boolean", Vd = (e) => e == null ? !0 : Id(e.color) && Ld(e.shape) && zd(e.position) && Array.isArray(e.text) && e.text.length >= 1 && e.text.length <= 6 && e.text.every(Bd), Hd = () => {
10369
10376
  let e = document.createElement("canvas").getContext("2d");
10370
10377
  return {
10371
10378
  getTextWidth: (t, n) => {
@@ -10374,9 +10381,9 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10374
10381
  },
10375
10382
  escapeHtml: (e) => e.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#039;")
10376
10383
  };
10377
- }, Vd = {
10384
+ }, Ud = {
10378
10385
  name: "ecs-exhibit-sticker-editor",
10379
- emits: ["update:modelValue"],
10386
+ emits: ["update:modelValue", "remove"],
10380
10387
  components: {
10381
10388
  EcsFlexRow: G,
10382
10389
  EcsButton: Y,
@@ -10387,7 +10394,8 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10387
10394
  EcsPopoverListHeadline: Nd,
10388
10395
  EcsPopoverList: fr,
10389
10396
  EcsPopoverListItem: xi,
10390
- EcsColorPicker: vc
10397
+ EcsColorPicker: vc,
10398
+ EcsSelect: _l
10391
10399
  },
10392
10400
  props: {
10393
10401
  readOnly: {
@@ -10397,7 +10405,7 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10397
10405
  modelValue: {
10398
10406
  type: Object,
10399
10407
  required: !1,
10400
- validator: zd
10408
+ validator: Vd
10401
10409
  },
10402
10410
  variables: {
10403
10411
  type: Array,
@@ -10405,18 +10413,13 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10405
10413
  default: () => [],
10406
10414
  validator: (e) => e.every((e) => typeof e.name == "string" && typeof e.variable == "string" && (e.value === void 0 || typeof e.value == "string"))
10407
10415
  },
10408
- pagePosition: {
10409
- type: String,
10410
- validator: (e) => [
10411
- "top-left",
10412
- "top-right",
10413
- "bottom-left",
10414
- "bottom-right",
10415
- "center-top",
10416
- "center-bottom",
10417
- null
10418
- ].includes(e),
10419
- default: null
10416
+ removable: {
10417
+ type: Boolean,
10418
+ default: !0
10419
+ },
10420
+ positionIndicator: {
10421
+ type: Boolean,
10422
+ default: !0
10420
10423
  }
10421
10424
  },
10422
10425
  data() {
@@ -10424,11 +10427,12 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10424
10427
  localSticker: this.modelValue ? JSON.parse(JSON.stringify(this.modelValue)) : {
10425
10428
  color: "#F9DF00",
10426
10429
  shape: "roundedRect",
10430
+ position: null,
10427
10431
  text: [Fd()]
10428
10432
  },
10429
10433
  focusedLineIndex: null,
10430
10434
  lineInputs: [],
10431
- textProcessing: Bd(),
10435
+ textProcessing: Hd(),
10432
10436
  colorPickerValue: "#F9DF00",
10433
10437
  swatches: [
10434
10438
  {
@@ -10531,35 +10535,39 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10531
10535
  stickerBorderColor() {
10532
10536
  return X(this.localSticker.color).darken(50).toHexString();
10533
10537
  },
10538
+ effectivePosition() {
10539
+ return this.localSticker.position ?? null;
10540
+ },
10534
10541
  pagePositionIndicatorStyles() {
10535
- if (!this.pagePosition) return {};
10536
- let e = {
10542
+ let e = this.effectivePosition;
10543
+ if (!e) return {};
10544
+ let t = {
10537
10545
  backgroundColor: this.localSticker.color,
10538
10546
  borderRadius: this.localSticker.shape === "roundedRect" || this.localSticker.shape === "roundedSquare" ? "1.4px" : "0px",
10539
10547
  borderColor: this.stickerBorderColor,
10540
10548
  aspectRatio: this.localSticker.shape === "roundedRect" || this.localSticker.shape === "rect" ? "2 / 1" : "1 / 1"
10541
10549
  };
10542
- switch (this.pagePosition) {
10550
+ switch (e) {
10543
10551
  case "top-left":
10544
- e.top = "2px", e.left = "2px";
10552
+ t.top = "2px", t.left = "2px";
10545
10553
  break;
10546
10554
  case "top-right":
10547
- e.top = "2px", e.right = "2px";
10555
+ t.top = "2px", t.right = "2px";
10548
10556
  break;
10549
10557
  case "bottom-left":
10550
- e.bottom = "2px", e.left = "2px";
10558
+ t.bottom = "2px", t.left = "2px";
10551
10559
  break;
10552
10560
  case "bottom-right":
10553
- e.bottom = "2px", e.right = "2px";
10561
+ t.bottom = "2px", t.right = "2px";
10554
10562
  break;
10555
10563
  case "center-top":
10556
- e.top = "2px", e.left = "50%", e.transform = "translateX(-50%)";
10564
+ t.top = "2px", t.left = "50%", t.transform = "translateX(-50%)";
10557
10565
  break;
10558
10566
  case "center-bottom":
10559
- e.bottom = "2px", e.left = "50%", e.transform = "translateX(-50%)";
10567
+ t.bottom = "2px", t.left = "50%", t.transform = "translateX(-50%)";
10560
10568
  break;
10561
10569
  }
10562
- return e;
10570
+ return t;
10563
10571
  },
10564
10572
  variableBackgroundColor() {
10565
10573
  return X(this.localSticker?.color || "#000000").darken(40).toHexString();
@@ -10580,6 +10588,7 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10580
10588
  this.localSticker = e ? JSON.parse(JSON.stringify(e)) : {
10581
10589
  color: "#000000",
10582
10590
  shape: "roundedRect",
10591
+ position: null,
10583
10592
  text: [Fd()]
10584
10593
  }, this.colorPickerValue = this.localSticker.color, this.$nextTick(() => {
10585
10594
  this.lineInputs.forEach((e, t) => this.adjustTextToFit(t));
@@ -10635,9 +10644,28 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10635
10644
  };
10636
10645
  this.$emit("update:modelValue", e);
10637
10646
  },
10647
+ updatePosition(e) {
10648
+ this.localSticker.position = e, this.emitChange();
10649
+ },
10638
10650
  updateShape(e) {
10639
10651
  this.localSticker.shape = e, this.emitChange();
10640
10652
  },
10653
+ setRectangleShape() {
10654
+ let e = this.localSticker.shape === "roundedRect" || this.localSticker.shape === "roundedSquare";
10655
+ this.updateShape(e ? "roundedRect" : "rect");
10656
+ },
10657
+ setSquareShape() {
10658
+ let e = this.localSticker.shape === "roundedRect" || this.localSticker.shape === "roundedSquare";
10659
+ this.updateShape(e ? "roundedSquare" : "square");
10660
+ },
10661
+ setRounded() {
10662
+ let e = this.localSticker.shape === "square" || this.localSticker.shape === "roundedSquare";
10663
+ this.updateShape(e ? "roundedSquare" : "roundedRect");
10664
+ },
10665
+ setNoRadius() {
10666
+ let e = this.localSticker.shape === "square" || this.localSticker.shape === "roundedSquare";
10667
+ this.updateShape(e ? "square" : "rect");
10668
+ },
10641
10669
  updateColor(e) {
10642
10670
  let t = typeof e == "string" ? e : e.hex;
10643
10671
  this.localSticker.color = t, this.emitChange();
@@ -10759,102 +10787,39 @@ var Nd = /* @__PURE__ */ V(Ad, [["render", Md], ["__scopeId", "data-v-442eb0eb"]
10759
10787
  });
10760
10788
  }
10761
10789
  }
10762
- }, Hd = { class: "ecs-exhibit-sticker-editor" }, Ud = ["aria-checked"], Wd = ["aria-checked"], Gd = ["aria-checked"], Kd = ["aria-checked"], qd = { class: "ecs-exhibit-sticker-editor-content" }, Jd = { class: "ecs-exhibit-sticker-editor-preview" }, Yd = {
10790
+ }, Wd = { class: "ecs-exhibit-sticker-editor" }, Gd = { class: "ecs-exhibit-sticker-editor-content" }, Kd = { class: "ecs-exhibit-sticker-editor-preview" }, qd = {
10763
10791
  key: 0,
10764
10792
  class: "page-preview"
10765
- }, Xd = { class: "sticker-content" }, Zd = { class: "line-controls line-controls-left" }, Qd = { class: "line-input" }, $d = [
10793
+ }, Jd = { class: "sticker-content" }, Yd = { class: "line-controls line-controls-left" }, Xd = { class: "line-input" }, Zd = [
10766
10794
  "value",
10767
10795
  "onInput",
10768
10796
  "onFocus",
10769
10797
  "onKeydown"
10770
- ], ef = ["innerHTML"], tf = { class: "line-controls line-controls-right" }, nf = { class: "line-input" }, rf = ["innerHTML"], af = { style: { width: "240px" } };
10771
- function of(t, n, r, i, a, u) {
10772
- let p = A("ecs-text-v2"), m = A("ecs-flex-row"), h = A("ecs-button"), g = A("ecs-color-picker"), _ = A("ecs-popover"), v = A("ecs-separator"), y = A("ecs-input"), x = A("ecs-popover-list-headline"), C = A("ecs-popover-list-item"), w = A("ecs-popover-list");
10773
- return T(), c("div", Hd, [r.readOnly ? s("", !0) : (T(), o(m, {
10774
- key: 0,
10775
- direction: "column",
10776
- gap: 4,
10777
- align: "start"
10778
- }, {
10779
- default: I(() => [f(p, { preset: "label-1" }, {
10780
- default: I(() => [...n[10] ||= [d("Sticker shape", -1)]]),
10781
- _: 1
10782
- }), f(m, {
10783
- gap: 12,
10784
- role: "radiogroup",
10785
- "aria-label": "Sticker shape options",
10786
- class: "shape-preview-buttons"
10787
- }, {
10788
- default: I(() => [
10789
- l("button", {
10790
- role: "radio",
10791
- class: b(["shape-preview-button", { active: a.localSticker.shape === "roundedRect" }]),
10792
- onClick: n[0] ||= (e) => u.updateShape("roundedRect"),
10793
- "aria-checked": a.localSticker.shape === "roundedRect",
10794
- title: "Rounded rectangle shape",
10795
- "aria-label": "Rounded rectangle shape"
10796
- }, [l("div", {
10797
- class: "shape-preview rounded-rect",
10798
- style: S({
10799
- backgroundColor: a.localSticker.color,
10800
- borderColor: u.stickerBorderColor
10801
- })
10802
- }, null, 4)], 10, Ud),
10803
- l("button", {
10804
- role: "radio",
10805
- class: b(["shape-preview-button", { active: a.localSticker.shape === "rect" }]),
10806
- onClick: n[1] ||= (e) => u.updateShape("rect"),
10807
- "aria-checked": a.localSticker.shape === "rect",
10808
- title: "Rectangle shape",
10809
- "aria-label": "Rectangle shape"
10810
- }, [l("div", {
10811
- class: "shape-preview rect",
10812
- style: S({
10813
- backgroundColor: a.localSticker.color,
10814
- borderColor: u.stickerBorderColor
10815
- })
10816
- }, null, 4)], 10, Wd),
10817
- l("button", {
10818
- role: "radio",
10819
- class: b(["shape-preview-button", { active: a.localSticker.shape === "roundedSquare" }]),
10820
- onClick: n[2] ||= (e) => u.updateShape("roundedSquare"),
10821
- "aria-checked": a.localSticker.shape === "roundedSquare",
10822
- title: "Rounded square shape",
10823
- "aria-label": "Rounded square shape"
10824
- }, [l("div", {
10825
- class: "shape-preview rounded-square",
10826
- style: S({
10827
- backgroundColor: a.localSticker.color,
10828
- borderColor: u.stickerBorderColor
10829
- })
10830
- }, null, 4)], 10, Gd),
10831
- l("button", {
10832
- role: "radio",
10833
- class: b(["shape-preview-button", { active: a.localSticker.shape === "square" }]),
10834
- onClick: n[3] ||= (e) => u.updateShape("square"),
10835
- "aria-checked": a.localSticker.shape === "square",
10836
- title: "Square shape",
10837
- "aria-label": "Square shape"
10838
- }, [l("div", {
10839
- class: "shape-preview square",
10840
- style: S({
10841
- backgroundColor: a.localSticker.color,
10842
- borderColor: u.stickerBorderColor
10843
- })
10844
- }, null, 4)], 10, Kd)
10845
- ]),
10846
- _: 1
10847
- })]),
10848
- _: 1
10849
- })), l("div", qd, [
10850
- r.readOnly ? s("", !0) : (T(), o(p, {
10798
+ ], Qd = ["innerHTML"], $d = { class: "line-controls line-controls-right" }, ef = { class: "line-input" }, tf = ["innerHTML"], nf = { style: { width: "240px" } };
10799
+ function rf(t, n, r, i, a, u) {
10800
+ let p = A("ecs-text-v2"), m = A("ecs-button"), h = A("ecs-flex-row"), g = A("ecs-color-picker"), _ = A("ecs-popover"), v = A("ecs-separator"), y = A("ecs-select"), x = A("ecs-input"), C = A("ecs-popover-list-headline"), w = A("ecs-popover-list-item"), E = A("ecs-popover-list");
10801
+ return T(), c("div", Wd, [l("div", Gd, [
10802
+ r.readOnly ? s("", !0) : (T(), o(h, {
10851
10803
  key: 0,
10852
- preset: "label-1"
10804
+ gap: 8,
10805
+ justify: "between"
10853
10806
  }, {
10854
- default: I(() => [...n[11] ||= [d("Edit content and formatting", -1)]]),
10807
+ default: I(() => [f(p, { preset: "label-1" }, {
10808
+ default: I(() => [...n[7] ||= [d("Edit content and formatting", -1)]]),
10809
+ _: 1
10810
+ }), r.removable ? (T(), o(m, {
10811
+ key: 0,
10812
+ onClick: n[0] ||= (e) => t.$emit("remove"),
10813
+ type: "secondary",
10814
+ size: "sml",
10815
+ icon: "minus"
10816
+ }, {
10817
+ default: I(() => [...n[8] ||= [d(" Remove Sticker ", -1)]]),
10818
+ _: 1
10819
+ })) : s("", !0)]),
10855
10820
  _: 1
10856
10821
  })),
10857
- l("div", Jd, [r.pagePosition ? (T(), c("div", Yd, [l("div", {
10822
+ l("div", Kd, [r.positionIndicator && u.effectivePosition ? (T(), c("div", qd, [l("div", {
10858
10823
  class: "page-position-indicator",
10859
10824
  style: S(u.pagePositionIndicatorStyles)
10860
10825
  }, [
@@ -10894,11 +10859,11 @@ function of(t, n, r, i, a, u) {
10894
10859
  }, [l("div", { class: b(["sticker-content", { "read-only": r.readOnly }]) }, [(T(!0), c(e, null, O(a.localSticker.text, (e, t) => (T(), c("div", {
10895
10860
  key: t,
10896
10861
  class: "line"
10897
- }, [l("div", nf, [l("span", {
10862
+ }, [l("div", ef, [l("span", {
10898
10863
  class: "line-preview",
10899
10864
  style: S(u.getLineStyle(e)),
10900
10865
  innerHTML: u.processTextContent(e.content)
10901
- }, null, 12, rf)])]))), 128))], 2)], 4)) : (T(), c("div", {
10866
+ }, null, 12, tf)])]))), 128))], 2)], 4)) : (T(), c("div", {
10902
10867
  key: 1,
10903
10868
  class: "sticker",
10904
10869
  style: S({
@@ -10907,13 +10872,13 @@ function of(t, n, r, i, a, u) {
10907
10872
  color: u.stickerTextColor,
10908
10873
  ...u.stickerShapeStyles[a.localSticker.shape]
10909
10874
  })
10910
- }, [l("div", Xd, [(T(!0), c(e, null, O(a.localSticker.text, (e, t) => (T(), c("div", {
10875
+ }, [l("div", Jd, [(T(!0), c(e, null, O(a.localSticker.text, (e, t) => (T(), c("div", {
10911
10876
  key: t,
10912
10877
  class: b(["line editable", { focused: u.isLineFocused(t) }]),
10913
10878
  ref_for: !0,
10914
10879
  ref: `line-${t}`
10915
10880
  }, [
10916
- l("div", Zd, [f(h, {
10881
+ l("div", Yd, [f(m, {
10917
10882
  type: "secondary",
10918
10883
  size: "sml",
10919
10884
  "icon-only": "",
@@ -10927,7 +10892,7 @@ function of(t, n, r, i, a, u) {
10927
10892
  "onClick",
10928
10893
  "disabled",
10929
10894
  "tabindex"
10930
- ]), f(h, {
10895
+ ]), f(m, {
10931
10896
  type: "secondary",
10932
10897
  size: "sml",
10933
10898
  "icon-only": "",
@@ -10942,24 +10907,24 @@ function of(t, n, r, i, a, u) {
10942
10907
  "disabled",
10943
10908
  "tabindex"
10944
10909
  ])]),
10945
- l("div", Qd, [l("input", {
10910
+ l("div", Xd, [l("input", {
10946
10911
  type: "text",
10947
10912
  value: e.content,
10948
10913
  onInput: (e) => u.updateLine(t, "content", e.target.value),
10949
10914
  onFocus: (e) => u.setFocusedLine(t),
10950
- onBlur: n[4] ||= (...e) => u.clearFocusedLine && u.clearFocusedLine(...e),
10915
+ onBlur: n[1] ||= (...e) => u.clearFocusedLine && u.clearFocusedLine(...e),
10951
10916
  onKeydown: (e) => u.handleKeyboardInput(e, t),
10952
10917
  style: S(u.getLineStyle(e)),
10953
10918
  ref_for: !0,
10954
10919
  ref: (e) => {
10955
10920
  e && (a.lineInputs[t] = e);
10956
10921
  }
10957
- }, null, 44, $d), l("span", {
10922
+ }, null, 44, Zd), l("span", {
10958
10923
  class: "line-preview",
10959
10924
  style: S(u.getLineStyle(e)),
10960
10925
  innerHTML: u.processTextContent(e.content)
10961
- }, null, 12, ef)]),
10962
- l("div", tf, [f(h, {
10926
+ }, null, 12, Qd)]),
10927
+ l("div", $d, [f(m, {
10963
10928
  type: "secondary",
10964
10929
  size: "sml",
10965
10930
  "icon-only": "",
@@ -10975,148 +10940,228 @@ function of(t, n, r, i, a, u) {
10975
10940
  "tabindex"
10976
10941
  ])])
10977
10942
  ], 2))), 128))])], 4))]),
10978
- r.readOnly ? s("", !0) : (T(), o(m, {
10943
+ r.readOnly ? s("", !0) : (T(), o(h, {
10979
10944
  key: 1,
10980
10945
  gap: 8,
10981
- justify: "center",
10946
+ justify: "between",
10982
10947
  class: "ecs-exhibit-sticker-editor-controls"
10983
10948
  }, {
10984
- default: I(() => [
10985
- f(_, null, {
10986
- content: I(() => [f(g, {
10987
- modelValue: a.colorPickerValue,
10988
- "onUpdate:modelValue": n[5] ||= (e) => a.colorPickerValue = e,
10989
- swatches: a.swatches,
10990
- padding: 8,
10991
- "disable-fields": !1,
10992
- "disable-custom": !1
10993
- }, null, 8, ["modelValue", "swatches"])]),
10994
- default: I(() => [l("button", {
10995
- class: "color-button",
10996
- style: S({ backgroundColor: a.localSticker.color })
10997
- }, null, 4)]),
10998
- _: 1
10999
- }),
11000
- f(v, {
11001
- height: "16px",
11002
- type: "vertical",
11003
- width: "1px"
11004
- }),
11005
- f(h, {
11006
- type: "secondary",
11007
- icon: "list-add",
11008
- "icon-only": "",
11009
- size: "sml",
11010
- onClick: u.addLine,
11011
- disabled: a.localSticker.text.length >= 6,
11012
- title: "Add line",
11013
- "aria-label": "Add line"
11014
- }, null, 8, ["onClick", "disabled"]),
11015
- f(v, {
11016
- height: "16px",
11017
- type: "vertical",
11018
- width: "1px"
11019
- }),
11020
- f(m, { gap: 4 }, {
11021
- default: I(() => [
11022
- f(y, {
11023
- onInput: n[6] ||= (e) => u.updateFocusedLine("size", parseInt(e.target.value)),
11024
- type: "number",
11025
- min: 8,
11026
- max: 32,
11027
- size: "sml",
11028
- value: u.focusedLine ? u.focusedLine.size : 14,
11029
- disabled: a.focusedLineIndex === null,
11030
- subtle: "",
11031
- class: "font-size-input"
11032
- }, null, 8, ["value", "disabled"]),
11033
- f(h, {
11034
- type: u.focusedLine && u.focusedLine.bold ? "primary" : "secondary",
11035
- size: "sml",
11036
- icon: "format-bold",
11037
- "icon-only": "",
11038
- active: u.focusedLine && u.focusedLine.bold,
11039
- onClick: n[7] ||= (e) => u.updateFocusedLine("bold", !u.focusedLine?.bold),
11040
- disabled: a.focusedLineIndex === null,
11041
- title: "Bold",
11042
- "aria-label": "Bold"
11043
- }, null, 8, [
11044
- "type",
11045
- "active",
11046
- "disabled"
10949
+ default: I(() => [f(h, { gap: 8 }, {
10950
+ default: I(() => [
10951
+ f(_, null, {
10952
+ content: I(() => [f(g, {
10953
+ modelValue: a.colorPickerValue,
10954
+ "onUpdate:modelValue": n[2] ||= (e) => a.colorPickerValue = e,
10955
+ swatches: a.swatches,
10956
+ padding: 8,
10957
+ "disable-fields": !1,
10958
+ "disable-custom": !1
10959
+ }, null, 8, ["modelValue", "swatches"])]),
10960
+ default: I(() => [l("button", {
10961
+ class: "color-button",
10962
+ style: S({ backgroundColor: a.localSticker.color })
10963
+ }, null, 4)]),
10964
+ _: 1
10965
+ }),
10966
+ f(v, {
10967
+ height: "16px",
10968
+ type: "vertical",
10969
+ width: "1px"
10970
+ }),
10971
+ f(m, {
10972
+ type: "secondary",
10973
+ icon: "shape-rectangle",
10974
+ "icon-only": "",
10975
+ size: "sml",
10976
+ active: a.localSticker.shape === "rect" || a.localSticker.shape === "roundedRect",
10977
+ onClick: u.setRectangleShape,
10978
+ title: "Sticker shape: Rectangle",
10979
+ "aria-label": "Sticker shape: Rectangle"
10980
+ }, null, 8, ["active", "onClick"]),
10981
+ f(m, {
10982
+ type: "secondary",
10983
+ icon: "shape-square",
10984
+ "icon-only": "",
10985
+ size: "sml",
10986
+ active: a.localSticker.shape === "square" || a.localSticker.shape === "roundedSquare",
10987
+ onClick: u.setSquareShape,
10988
+ title: "Sticker shape: Square",
10989
+ "aria-label": "Sticker shape: Square"
10990
+ }, null, 8, ["active", "onClick"]),
10991
+ f(v, {
10992
+ height: "16px",
10993
+ type: "vertical",
10994
+ width: "1px"
10995
+ }),
10996
+ f(m, {
10997
+ type: "secondary",
10998
+ icon: "corner-radius",
10999
+ "icon-only": "",
11000
+ size: "sml",
11001
+ active: a.localSticker.shape === "roundedRect" || a.localSticker.shape === "roundedSquare",
11002
+ onClick: u.setRounded,
11003
+ title: "Rounded Corners",
11004
+ "aria-label": "Rounded Corners"
11005
+ }, null, 8, ["active", "onClick"]),
11006
+ f(m, {
11007
+ type: "secondary",
11008
+ icon: "corner-no-radius",
11009
+ "icon-only": "",
11010
+ size: "sml",
11011
+ active: a.localSticker.shape === "rect" || a.localSticker.shape === "square",
11012
+ onClick: u.setNoRadius,
11013
+ title: "No Rounded Corners",
11014
+ "aria-label": "No Rounded Corners"
11015
+ }, null, 8, ["active", "onClick"]),
11016
+ f(v, {
11017
+ height: "16px",
11018
+ type: "vertical",
11019
+ width: "1px"
11020
+ }),
11021
+ f(y, {
11022
+ modelValue: a.localSticker.position,
11023
+ "onUpdate:modelValue": u.updatePosition,
11024
+ size: "sml",
11025
+ type: "subtle",
11026
+ "fit-width": ""
11027
+ }, {
11028
+ default: I(() => [...n[9] ||= [
11029
+ l("option", {
11030
+ value: "",
11031
+ disabled: "",
11032
+ selected: "",
11033
+ hidden: ""
11034
+ }, "Position", -1),
11035
+ l("option", { value: "top-left" }, "Top-Left", -1),
11036
+ l("option", { value: "top-right" }, "Top-Right", -1),
11037
+ l("option", { value: "center-top" }, "Top-Center", -1),
11038
+ l("option", { value: "bottom-left" }, "Bottom-Left", -1),
11039
+ l("option", { value: "bottom-right" }, "Bottom-Right", -1),
11040
+ l("option", { value: "center-bottom" }, "Bottom-Center", -1)
11041
+ ]]),
11042
+ _: 1
11043
+ }, 8, ["modelValue", "onUpdate:modelValue"])
11044
+ ]),
11045
+ _: 1
11046
+ }), f(h, { gap: 8 }, {
11047
+ default: I(() => [
11048
+ f(m, {
11049
+ onClick: u.addLine,
11050
+ type: "secondary",
11051
+ icon: "list-add",
11052
+ "icon-only": "",
11053
+ size: "sml",
11054
+ disabled: a.localSticker.text.length >= 6,
11055
+ title: "Add line",
11056
+ "aria-label": "Add line"
11057
+ }, null, 8, ["onClick", "disabled"]),
11058
+ f(v, {
11059
+ height: "16px",
11060
+ type: "vertical",
11061
+ width: "1px"
11062
+ }),
11063
+ f(h, { gap: 4 }, {
11064
+ default: I(() => [
11065
+ f(x, {
11066
+ onInput: n[3] ||= (e) => u.updateFocusedLine("size", parseInt(e.target.value)),
11067
+ type: "number",
11068
+ min: 8,
11069
+ max: 32,
11070
+ size: "sml",
11071
+ value: u.focusedLine ? u.focusedLine.size : 14,
11072
+ disabled: a.focusedLineIndex === null,
11073
+ subtle: "",
11074
+ class: "font-size-input"
11075
+ }, null, 8, ["value", "disabled"]),
11076
+ f(m, {
11077
+ type: u.focusedLine && u.focusedLine.bold ? "primary" : "secondary",
11078
+ size: "sml",
11079
+ icon: "format-bold",
11080
+ "icon-only": "",
11081
+ active: u.focusedLine && u.focusedLine.bold,
11082
+ onClick: n[4] ||= (e) => u.updateFocusedLine("bold", !u.focusedLine?.bold),
11083
+ disabled: a.focusedLineIndex === null,
11084
+ title: "Bold",
11085
+ "aria-label": "Bold"
11086
+ }, null, 8, [
11087
+ "type",
11088
+ "active",
11089
+ "disabled"
11090
+ ]),
11091
+ f(m, {
11092
+ type: u.focusedLine && u.focusedLine.italic ? "primary" : "secondary",
11093
+ size: "sml",
11094
+ icon: "format-italic",
11095
+ "icon-only": "",
11096
+ active: u.focusedLine && u.focusedLine.italic,
11097
+ onClick: n[5] ||= (e) => u.updateFocusedLine("italic", !u.focusedLine?.italic),
11098
+ disabled: a.focusedLineIndex === null,
11099
+ title: "Italic",
11100
+ "aria-label": "Italic"
11101
+ }, null, 8, [
11102
+ "type",
11103
+ "active",
11104
+ "disabled"
11105
+ ]),
11106
+ f(m, {
11107
+ type: u.focusedLine && u.focusedLine.underline ? "primary" : "secondary",
11108
+ size: "sml",
11109
+ icon: "format-underline",
11110
+ "icon-only": "",
11111
+ active: u.focusedLine && u.focusedLine.underline,
11112
+ onClick: n[6] ||= (e) => u.updateFocusedLine("underline", !u.focusedLine?.underline),
11113
+ disabled: a.focusedLineIndex === null,
11114
+ title: "Underline",
11115
+ "aria-label": "Underline"
11116
+ }, null, 8, [
11117
+ "type",
11118
+ "active",
11119
+ "disabled"
11120
+ ])
11047
11121
  ]),
11048
- f(h, {
11049
- type: u.focusedLine && u.focusedLine.italic ? "primary" : "secondary",
11050
- size: "sml",
11051
- icon: "format-italic",
11122
+ _: 1
11123
+ }),
11124
+ r.variables.length > 0 ? (T(), o(v, {
11125
+ key: 0,
11126
+ height: "16px",
11127
+ type: "vertical",
11128
+ width: "1px"
11129
+ })) : s("", !0),
11130
+ r.variables.length > 0 ? (T(), o(_, {
11131
+ key: 1,
11132
+ disabled: a.focusedLineIndex === null
11133
+ }, {
11134
+ content: I(() => [l("div", nf, [f(E, null, {
11135
+ default: I(() => [f(C, null, {
11136
+ default: I(() => [...n[10] ||= [d("Insert Field Value", -1)]]),
11137
+ _: 1
11138
+ }), (T(!0), c(e, null, O(r.variables, (e) => (T(), o(w, {
11139
+ key: e.variable,
11140
+ help: e.value,
11141
+ onClick: (t) => u.insertVariable(e.variable)
11142
+ }, {
11143
+ default: I(() => [d(N(e.name), 1)]),
11144
+ _: 2
11145
+ }, 1032, ["help", "onClick"]))), 128))]),
11146
+ _: 1
11147
+ })])]),
11148
+ default: I(() => [f(m, {
11149
+ type: "secondary",
11150
+ icon: "variable",
11052
11151
  "icon-only": "",
11053
- active: u.focusedLine && u.focusedLine.italic,
11054
- onClick: n[8] ||= (e) => u.updateFocusedLine("italic", !u.focusedLine?.italic),
11055
- disabled: a.focusedLineIndex === null,
11056
- title: "Italic",
11057
- "aria-label": "Italic"
11058
- }, null, 8, [
11059
- "type",
11060
- "active",
11061
- "disabled"
11062
- ]),
11063
- f(h, {
11064
- type: u.focusedLine && u.focusedLine.underline ? "primary" : "secondary",
11065
11152
  size: "sml",
11066
- icon: "format-underline",
11067
- "icon-only": "",
11068
- active: u.focusedLine && u.focusedLine.underline,
11069
- onClick: n[9] ||= (e) => u.updateFocusedLine("underline", !u.focusedLine?.underline),
11070
11153
  disabled: a.focusedLineIndex === null,
11071
- title: "Underline",
11072
- "aria-label": "Underline"
11073
- }, null, 8, [
11074
- "type",
11075
- "active",
11076
- "disabled"
11077
- ])
11078
- ]),
11079
- _: 1
11080
- }),
11081
- r.variables.length > 0 ? (T(), o(v, {
11082
- key: 0,
11083
- height: "16px",
11084
- type: "vertical",
11085
- width: "1px"
11086
- })) : s("", !0),
11087
- r.variables.length > 0 ? (T(), o(_, {
11088
- key: 1,
11089
- disabled: a.focusedLineIndex === null
11090
- }, {
11091
- content: I(() => [l("div", af, [f(w, null, {
11092
- default: I(() => [f(x, null, {
11093
- default: I(() => [...n[12] ||= [d("Insert Field Value", -1)]]),
11094
- _: 1
11095
- }), (T(!0), c(e, null, O(r.variables, (e) => (T(), o(C, {
11096
- key: e.variable,
11097
- help: e.value,
11098
- onClick: (t) => u.insertVariable(e.variable)
11099
- }, {
11100
- default: I(() => [d(N(e.name), 1)]),
11101
- _: 2
11102
- }, 1032, ["help", "onClick"]))), 128))]),
11154
+ title: "Insert field value",
11155
+ "aria-label": "Insert field value"
11156
+ }, null, 8, ["disabled"])]),
11103
11157
  _: 1
11104
- })])]),
11105
- default: I(() => [f(h, {
11106
- type: "secondary",
11107
- icon: "variable",
11108
- "icon-only": "",
11109
- size: "sml",
11110
- disabled: a.focusedLineIndex === null,
11111
- title: "Insert field value",
11112
- "aria-label": "Insert field value"
11113
- }, null, 8, ["disabled"])]),
11114
- _: 1
11115
- }, 8, ["disabled"])) : s("", !0)
11116
- ]),
11158
+ }, 8, ["disabled"])) : s("", !0)
11159
+ ]),
11160
+ _: 1
11161
+ })]),
11117
11162
  _: 1
11118
11163
  })),
11119
- !r.readOnly && u.hasInvalidVariables ? (T(), o(m, {
11164
+ !r.readOnly && u.hasInvalidVariables ? (T(), o(h, {
11120
11165
  key: 2,
11121
11166
  gap: 8,
11122
11167
  justify: "center",
@@ -11126,14 +11171,14 @@ function of(t, n, r, i, a, u) {
11126
11171
  preset: "form",
11127
11172
  color: "negative"
11128
11173
  }, {
11129
- default: I(() => [...n[13] ||= [d(" Your sticker template contains an invalid variable. Please correct the value in order to save. ", -1)]]),
11174
+ default: I(() => [...n[11] ||= [d(" Your sticker template contains an invalid variable. Please correct the value in order to save. ", -1)]]),
11130
11175
  _: 1
11131
11176
  })]),
11132
11177
  _: 1
11133
11178
  })) : s("", !0)
11134
11179
  ])]);
11135
11180
  }
11136
- var sf = /* @__PURE__ */ V(Vd, [["render", of], ["__scopeId", "data-v-acfa8b96"]]), cf = {
11181
+ var af = /* @__PURE__ */ V(Ud, [["render", rf], ["__scopeId", "data-v-73a11144"]]), of = {
11137
11182
  __name: "fill-icon",
11138
11183
  props: {
11139
11184
  type: {
@@ -11181,14 +11226,14 @@ var sf = /* @__PURE__ */ V(Vd, [["render", of], ["__scopeId", "data-v-acfa8b96"]
11181
11226
  width: e.width
11182
11227
  }, null, 8, ["height", "width"]));
11183
11228
  }
11184
- }, lf = { name: "ecs-file-list" }, uf = {
11229
+ }, sf = { name: "ecs-file-list" }, cf = {
11185
11230
  class: "ecs-file-list",
11186
11231
  role: "list"
11187
11232
  };
11188
- function df(e, t, n, r, i, a) {
11189
- return T(), c("div", uf, [k(e.$slots, "default")]);
11233
+ function lf(e, t, n, r, i, a) {
11234
+ return T(), c("div", cf, [k(e.$slots, "default")]);
11190
11235
  }
11191
- var ff = /* @__PURE__ */ V(lf, [["render", df]]), pf = {
11236
+ var uf = /* @__PURE__ */ V(sf, [["render", lf]]), df = {
11192
11237
  name: "ecs-file-list-item",
11193
11238
  emits: [
11194
11239
  "click",
@@ -11308,28 +11353,28 @@ var ff = /* @__PURE__ */ V(lf, [["render", df]]), pf = {
11308
11353
  created() {
11309
11354
  this.expandId = this.generateUniqueId(), this.errorId = this.generateUniqueId(), this.warningId = this.generateUniqueId(), this.editId = this.generateUniqueId();
11310
11355
  }
11311
- }, mf = ["tabindex"], hf = {
11356
+ }, ff = ["tabindex"], pf = {
11312
11357
  key: 0,
11313
11358
  class: "ecs-file-list-inner"
11314
- }, gf = ["aria-errormessage"], _f = { class: "ecs-file-list-controls" }, vf = {
11359
+ }, mf = ["aria-errormessage"], hf = { class: "ecs-file-list-controls" }, gf = {
11315
11360
  key: 0,
11316
11361
  class: "ecs-file-list-meta"
11317
- }, yf = [
11362
+ }, _f = [
11318
11363
  "aria-controls",
11319
11364
  "aria-expanded",
11320
11365
  "aria-label",
11321
11366
  "disabled"
11322
- ], bf = ["aria-valuenow"], xf = ["id"], Sf = {
11367
+ ], vf = ["aria-valuenow"], yf = ["id"], bf = {
11323
11368
  key: 0,
11324
11369
  class: "list"
11325
- }, Cf = ["id"], wf = {
11370
+ }, xf = ["id"], Sf = {
11326
11371
  key: 0,
11327
11372
  class: "list"
11328
- }, Tf = ["id", "aria-hidden"], Ef = ["id"], Df = {
11373
+ }, Cf = ["id", "aria-hidden"], wf = ["id"], Tf = {
11329
11374
  ref: "edit",
11330
11375
  class: "ecs-file-list-entry-edit"
11331
11376
  };
11332
- function Of(t, n, i, a, u, p) {
11377
+ function Ef(t, n, i, a, u, p) {
11333
11378
  let m = A("ecs-focus-ring"), h = A("ecs-icon"), g = A("ecs-file-icon"), _ = A("ecs-sticker"), v = A("ecs-button-table");
11334
11379
  return T(), c("div", {
11335
11380
  onClick: n[9] ||= (e) => t.$emit("click", e),
@@ -11343,7 +11388,7 @@ function Of(t, n, i, a, u, p) {
11343
11388
  }, [
11344
11389
  i.hover ? (T(), o(m, { key: 0 })) : s("", !0),
11345
11390
  f(r, { name: "title" }, {
11346
- default: I(() => [i.showTitleEdit || !i.edit ? (T(), c("div", hf, [
11391
+ default: I(() => [i.showTitleEdit || !i.edit ? (T(), c("div", pf, [
11347
11392
  i.icon ? (T(), o(h, {
11348
11393
  key: 0,
11349
11394
  onClick: n[0] ||= (e) => t.$emit("title-click", e),
@@ -11375,9 +11420,9 @@ function Of(t, n, i, a, u, p) {
11375
11420
  }, [l("div", {
11376
11421
  class: "title",
11377
11422
  "aria-errormessage": i.error ? u.errorId : null
11378
- }, [k(t.$slots, "default", {}, void 0, !0)], 8, gf)], 32),
11379
- l("div", _f, [
11380
- t.$slots.meta ? (T(), c("div", vf, [k(t.$slots, "meta", {}, void 0, !0)])) : s("", !0),
11423
+ }, [k(t.$slots, "default", {}, void 0, !0)], 8, mf)], 32),
11424
+ l("div", hf, [
11425
+ t.$slots.meta ? (T(), c("div", gf, [k(t.$slots, "meta", {}, void 0, !0)])) : s("", !0),
11381
11426
  k(t.$slots, "controls", {}, void 0, !0),
11382
11427
  t.$slots.collapse ? (T(), c("button", {
11383
11428
  key: 1,
@@ -11387,7 +11432,7 @@ function Of(t, n, i, a, u, p) {
11387
11432
  "aria-expanded": u.isVisible ? "true" : "false",
11388
11433
  "aria-label": u.isVisible ? "Collapse" : "Expand",
11389
11434
  disabled: i.disableButtons
11390
- }, [f(m)], 10, yf)) : s("", !0),
11435
+ }, [f(m)], 10, _f)) : s("", !0),
11391
11436
  i.remove ? (T(), o(v, {
11392
11437
  key: 2,
11393
11438
  onClick: n[8] ||= (e) => t.$emit("remove", e),
@@ -11404,7 +11449,7 @@ function Of(t, n, i, a, u, p) {
11404
11449
  style: S({ width: i.progress + "%" }),
11405
11450
  role: "progressbar",
11406
11451
  "aria-valuenow": i.progress
11407
- }, null, 12, bf)) : s("", !0)
11452
+ }, null, 12, vf)) : s("", !0)
11408
11453
  ])) : s("", !0)]),
11409
11454
  _: 3
11410
11455
  }),
@@ -11412,29 +11457,29 @@ function Of(t, n, i, a, u, p) {
11412
11457
  key: 1,
11413
11458
  class: "error",
11414
11459
  id: u.errorId
11415
- }, [Array.isArray(i.error) ? (T(), c("ul", Sf, [(T(!0), c(e, null, O(i.error, (e, t) => (T(), c("li", { key: t }, N(e), 1))), 128))])) : (T(), c(e, { key: 1 }, [d(N(i.error), 1)], 64))], 8, xf)) : s("", !0),
11460
+ }, [Array.isArray(i.error) ? (T(), c("ul", bf, [(T(!0), c(e, null, O(i.error, (e, t) => (T(), c("li", { key: t }, N(e), 1))), 128))])) : (T(), c(e, { key: 1 }, [d(N(i.error), 1)], 64))], 8, yf)) : s("", !0),
11416
11461
  i.warning && typeof i.warning != "boolean" ? (T(), c("div", {
11417
11462
  key: 2,
11418
11463
  class: "warning",
11419
11464
  id: u.warningId
11420
- }, [Array.isArray(i.warning) ? (T(), c("ul", wf, [(T(!0), c(e, null, O(i.warning, (e, t) => (T(), c("li", { key: t }, N(e), 1))), 128))])) : (T(), c(e, { key: 1 }, [d(N(i.warning), 1)], 64))], 8, Cf)) : s("", !0),
11465
+ }, [Array.isArray(i.warning) ? (T(), c("ul", Sf, [(T(!0), c(e, null, O(i.warning, (e, t) => (T(), c("li", { key: t }, N(e), 1))), 128))])) : (T(), c(e, { key: 1 }, [d(N(i.warning), 1)], 64))], 8, xf)) : s("", !0),
11421
11466
  t.$slots.collapse ? (T(), c("div", {
11422
11467
  key: 3,
11423
11468
  class: b(u.isVisible ? "collapse-show" : "collapse-hide"),
11424
11469
  id: u.expandId,
11425
11470
  "aria-hidden": u.isVisible ? "false" : "true"
11426
- }, [k(t.$slots, "collapse", {}, void 0, !0)], 10, Tf)) : s("", !0),
11471
+ }, [k(t.$slots, "collapse", {}, void 0, !0)], 10, Cf)) : s("", !0),
11427
11472
  f(r, { name: "edit" }, {
11428
11473
  default: I(() => [t.$slots.edit && i.edit ? (T(), c("div", {
11429
11474
  key: 0,
11430
11475
  style: S({ maxHeight: u.editHeight + "px" }),
11431
11476
  id: u.editId
11432
- }, [l("div", Df, [k(t.$slots, "edit", {}, void 0, !0)], 512)], 12, Ef)) : s("", !0)]),
11477
+ }, [l("div", Tf, [k(t.$slots, "edit", {}, void 0, !0)], 512)], 12, wf)) : s("", !0)]),
11433
11478
  _: 3
11434
11479
  })
11435
- ], 10, mf);
11480
+ ], 10, ff);
11436
11481
  }
11437
- var kf = /* @__PURE__ */ V(pf, [["render", Of], ["__scopeId", "data-v-b753f1a9"]]), Af = { class: "ecs-flag" }, jf = /* @__PURE__ */ V({
11482
+ var Df = /* @__PURE__ */ V(df, [["render", Ef], ["__scopeId", "data-v-b753f1a9"]]), Of = { class: "ecs-flag" }, kf = /* @__PURE__ */ V({
11438
11483
  __name: "flag",
11439
11484
  props: { code: {
11440
11485
  type: String,
@@ -11983,12 +12028,12 @@ var kf = /* @__PURE__ */ V(pf, [["render", Of], ["__scopeId", "data-v-b753f1a9"]
11983
12028
  "../assets/icons/flags/ZM.svg": () => import("./ZM-y8QFD1Wr.js"),
11984
12029
  "../assets/icons/flags/ZW.svg": () => import("./ZW-CFbFtUNe.js")
11985
12030
  }), `../assets/icons/flags/${e.toUpperCase()}.svg`, 5)));
11986
- }), (t, i) => (T(), c("div", Af, [e.code ? (T(), o(M(P(r)), {
12031
+ }), (t, i) => (T(), c("div", Of, [e.code ? (T(), o(M(P(r)), {
11987
12032
  key: 0,
11988
12033
  alt: n.value
11989
12034
  }, null, 8, ["alt"])) : s("", !0)]));
11990
12035
  }
11991
- }, [["__scopeId", "data-v-98c0431b"]]), Mf = {
12036
+ }, [["__scopeId", "data-v-98c0431b"]]), Af = {
11992
12037
  name: "ecs-flex-col",
11993
12038
  props: {
11994
12039
  columns: { type: Number },
@@ -12028,7 +12073,7 @@ var kf = /* @__PURE__ */ V(pf, [["render", Of], ["__scopeId", "data-v-b753f1a9"]
12028
12073
  }
12029
12074
  }
12030
12075
  };
12031
- function Nf(e, t, n, r, i, a) {
12076
+ function jf(e, t, n, r, i, a) {
12032
12077
  return T(), c("div", { class: b(["ecs-flex-col", [
12033
12078
  a.columnClass,
12034
12079
  a.growClass,
@@ -12036,7 +12081,7 @@ function Nf(e, t, n, r, i, a) {
12036
12081
  a.autoMarginClass
12037
12082
  ]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2);
12038
12083
  }
12039
- var Pf = /* @__PURE__ */ V(Mf, [["render", Nf], ["__scopeId", "data-v-1d2ad846"]]), Ff = {
12084
+ var Mf = /* @__PURE__ */ V(Af, [["render", jf], ["__scopeId", "data-v-1d2ad846"]]), Nf = {
12040
12085
  name: "ecs-input-clear",
12041
12086
  emits: ["click"],
12042
12087
  components: {
@@ -12053,8 +12098,8 @@ var Pf = /* @__PURE__ */ V(Mf, [["render", Nf], ["__scopeId", "data-v-1d2ad846"]
12053
12098
  computed: { title() {
12054
12099
  return this.tooltip || "Clear";
12055
12100
  } }
12056
- }, If = ["aria-busy"], Lf = ["title"];
12057
- function Rf(e, t, n, r, i, a) {
12101
+ }, Pf = ["aria-busy"], Ff = ["title"];
12102
+ function If(e, t, n, r, i, a) {
12058
12103
  let u = A("ecs-focus-ring"), d = A("ecs-icon");
12059
12104
  return T(), c("div", {
12060
12105
  class: "ecs-input-clear",
@@ -12065,20 +12110,20 @@ function Rf(e, t, n, r, i, a) {
12065
12110
  title: a.title,
12066
12111
  class: "ecs-input-clear-button",
12067
12112
  "aria-label": "Clear"
12068
- }, [f(u, { radius: 24 })], 40, Lf), n.loading ? (T(), o(d, {
12113
+ }, [f(u, { radius: 24 })], 40, Ff), n.loading ? (T(), o(d, {
12069
12114
  key: 0,
12070
12115
  type: "loading",
12071
12116
  size: "32",
12072
12117
  spinning: "",
12073
12118
  color: "#AEB1B9"
12074
- })) : s("", !0)], 8, If);
12119
+ })) : s("", !0)], 8, Pf);
12075
12120
  }
12076
- var zf = /* @__PURE__ */ V(Ff, [["render", Rf], ["__scopeId", "data-v-65544544"]]), Bf = {
12121
+ var Lf = /* @__PURE__ */ V(Nf, [["render", If], ["__scopeId", "data-v-65544544"]]), Rf = {
12077
12122
  name: "ecs-input-search",
12078
12123
  emits: ["update:modelValue", "change"],
12079
12124
  components: {
12080
12125
  EcsIcon: H,
12081
- EcsInputClear: zf
12126
+ EcsInputClear: Lf
12082
12127
  },
12083
12128
  props: {
12084
12129
  placeholder: {
@@ -12163,14 +12208,14 @@ var zf = /* @__PURE__ */ V(Ff, [["render", Rf], ["__scopeId", "data-v-65544544"]
12163
12208
  mounted() {
12164
12209
  this.modelValue && this.setValue(this.modelValue);
12165
12210
  }
12166
- }, Vf = [
12211
+ }, zf = [
12167
12212
  "name",
12168
12213
  "disabled",
12169
12214
  "placeholder",
12170
12215
  "autocomplete",
12171
12216
  "value"
12172
12217
  ];
12173
- function Hf(e, t, n, r, i, a) {
12218
+ function Bf(e, t, n, r, i, a) {
12174
12219
  let u = A("ecs-icon"), d = A("ecs-input-clear");
12175
12220
  return T(), c("div", { class: b(["ecs-search-group", a.groupSizeClass]) }, [
12176
12221
  f(u, {
@@ -12193,7 +12238,7 @@ function Hf(e, t, n, r, i, a) {
12193
12238
  a.sizeClass,
12194
12239
  a.typeClass
12195
12240
  ]
12196
- }), null, 16, Vf),
12241
+ }), null, 16, zf),
12197
12242
  n.showClear ? (T(), o(d, {
12198
12243
  key: 0,
12199
12244
  onClick: a.clearSearch,
@@ -12201,7 +12246,7 @@ function Hf(e, t, n, r, i, a) {
12201
12246
  }, null, 8, ["onClick", "loading"])) : s("", !0)
12202
12247
  ], 2);
12203
12248
  }
12204
- var Uf = /* @__PURE__ */ V(Bf, [["render", Hf], ["__scopeId", "data-v-5f9bc8e4"]]), Wf = {
12249
+ var Vf = /* @__PURE__ */ V(Rf, [["render", Bf], ["__scopeId", "data-v-5f9bc8e4"]]), Hf = {
12205
12250
  name: "ecs-scroll-container",
12206
12251
  props: {
12207
12252
  height: {
@@ -12222,7 +12267,7 @@ var Uf = /* @__PURE__ */ V(Bf, [["render", Hf], ["__scopeId", "data-v-5f9bc8e4"]
12222
12267
  }
12223
12268
  }
12224
12269
  };
12225
- function Gf(e, t, n, r, i, a) {
12270
+ function Uf(e, t, n, r, i, a) {
12226
12271
  return T(), c("div", {
12227
12272
  class: b(["ecs-scroll-container scrollbar scrollbar-sml vertical", [n.borderless ? "" : "ecs-scroll-container-border", n.hideShadows ? "" : "ecs-scroll-container-shadows"]]),
12228
12273
  style: S({
@@ -12231,7 +12276,7 @@ function Gf(e, t, n, r, i, a) {
12231
12276
  })
12232
12277
  }, [k(e.$slots, "default", {}, void 0, !0)], 6);
12233
12278
  }
12234
- var Kf = /* @__PURE__ */ V(Wf, [["render", Gf], ["__scopeId", "data-v-d87a8075"]]), qf = {
12279
+ var Wf = /* @__PURE__ */ V(Hf, [["render", Uf], ["__scopeId", "data-v-d87a8075"]]), Gf = {
12235
12280
  name: "ecs-folder-selector",
12236
12281
  emits: [
12237
12282
  "search",
@@ -12239,8 +12284,8 @@ var Kf = /* @__PURE__ */ V(Wf, [["render", Gf], ["__scopeId", "data-v-d87a8075"]
12239
12284
  "refresh"
12240
12285
  ],
12241
12286
  components: {
12242
- EcsInputSearch: Uf,
12243
- EcsScrollContainer: Kf,
12287
+ EcsInputSearch: Vf,
12288
+ EcsScrollContainer: Wf,
12244
12289
  EcsButton: Y,
12245
12290
  EcsEmptyState: Uu,
12246
12291
  EcsTextV2: xr
@@ -12313,19 +12358,19 @@ var Kf = /* @__PURE__ */ V(Wf, [["render", Gf], ["__scopeId", "data-v-d87a8075"]
12313
12358
  this.$emit("add");
12314
12359
  }
12315
12360
  }
12316
- }, Jf = {
12361
+ }, Kf = {
12317
12362
  key: 0,
12318
12363
  class: "ecs-folder-selector-header"
12319
- }, Yf = {
12364
+ }, qf = {
12320
12365
  key: 2,
12321
12366
  class: "empty-list"
12322
12367
  };
12323
- function Xf(e, t, n, r, i, a) {
12368
+ function Jf(e, t, n, r, i, a) {
12324
12369
  let l = A("ecs-text-v2"), u = A("ecs-input-search"), p = A("ecs-button"), m = A("ecs-empty-state"), h = A("ecs-scroll-container");
12325
12370
  return T(), c("div", {
12326
12371
  class: b(["ecs-folder-selector", [n.framed ? "ecs-folder-selector-border" : ""]]),
12327
12372
  style: S({ height: a.selectorHeight })
12328
- }, [n.searchable || n.create || n.refreshable || n.title ? (T(), c("div", Jf, [
12373
+ }, [n.searchable || n.create || n.refreshable || n.title ? (T(), c("div", Kf, [
12329
12374
  n.title && !n.searchable ? (T(), o(l, {
12330
12375
  key: 0,
12331
12376
  preset: "headline-5",
@@ -12375,11 +12420,11 @@ function Xf(e, t, n, r, i, a) {
12375
12420
  default: I(() => [n.loading ? (T(), o(m, {
12376
12421
  key: 0,
12377
12422
  type: "loading"
12378
- })) : e.$slots.default ? k(e.$slots, "default", { key: 1 }, void 0, !0) : (T(), c("div", Yf, N(n.emptyMessage), 1))]),
12423
+ })) : e.$slots.default ? k(e.$slots, "default", { key: 1 }, void 0, !0) : (T(), c("div", qf, N(n.emptyMessage), 1))]),
12379
12424
  _: 3
12380
12425
  }, 8, ["style", "padding"])], 6);
12381
12426
  }
12382
- var Zf = /* @__PURE__ */ V(qf, [["render", Xf], ["__scopeId", "data-v-e8fd70d2"]]), Qf = {
12427
+ var Yf = /* @__PURE__ */ V(Gf, [["render", Jf], ["__scopeId", "data-v-e8fd70d2"]]), Xf = {
12383
12428
  name: "ecs-form-group",
12384
12429
  components: { EcsTextV2: xr },
12385
12430
  props: {
@@ -12409,7 +12454,7 @@ var Zf = /* @__PURE__ */ V(qf, [["render", Xf], ["__scopeId", "data-v-e8fd70d2"]
12409
12454
  }
12410
12455
  }
12411
12456
  };
12412
- function $f(e, t, n, r, i, a) {
12457
+ function Zf(e, t, n, r, i, a) {
12413
12458
  let l = A("ecs-text-v2");
12414
12459
  return T(), c("div", { class: b(["ecs-form-group", {
12415
12460
  error: n.error,
@@ -12441,14 +12486,14 @@ function $f(e, t, n, r, i, a) {
12441
12486
  }, null, 8, ["innerHTML"])) : s("", !0)
12442
12487
  ], 2);
12443
12488
  }
12444
- var ep = /* @__PURE__ */ V(Qf, [["render", $f], ["__scopeId", "data-v-b5eb6ae4"]]), tp = {}, np = { class: "ecs-form-headline" }, rp = { class: "ecs-form-headline-main" }, ip = {
12489
+ var Qf = /* @__PURE__ */ V(Xf, [["render", Zf], ["__scopeId", "data-v-b5eb6ae4"]]), $f = {}, ep = { class: "ecs-form-headline" }, tp = { class: "ecs-form-headline-main" }, np = {
12445
12490
  key: 0,
12446
12491
  class: "ecs-form-headline-controls"
12447
12492
  };
12448
- function ap(e, t) {
12449
- return T(), c("div", np, [l("h2", rp, [k(e.$slots, "default", {}, void 0, !0)]), e.$slots.controls ? (T(), c("div", ip, [k(e.$slots, "controls", {}, void 0, !0)])) : s("", !0)]);
12493
+ function rp(e, t) {
12494
+ return T(), c("div", ep, [l("h2", tp, [k(e.$slots, "default", {}, void 0, !0)]), e.$slots.controls ? (T(), c("div", np, [k(e.$slots, "controls", {}, void 0, !0)])) : s("", !0)]);
12450
12495
  }
12451
- var op = /* @__PURE__ */ V(tp, [["render", ap], ["__scopeId", "data-v-16833f69"]]), sp = {
12496
+ var ip = /* @__PURE__ */ V($f, [["render", rp], ["__scopeId", "data-v-16833f69"]]), ap = {
12452
12497
  name: "ecs-form-set",
12453
12498
  components: { EcsButtonMore: Va },
12454
12499
  props: {
@@ -12481,22 +12526,22 @@ var op = /* @__PURE__ */ V(tp, [["render", ap], ["__scopeId", "data-v-16833f69"]
12481
12526
  this.isTransitioning = !1;
12482
12527
  }, 200);
12483
12528
  } }
12484
- }, cp = ["aria-invalid"], lp = { class: "ecs-form-set-title" }, up = { class: "ecs-form-set-content" }, dp = { class: "ecs-form-set-content-inner" }, fp = { class: "ecs-form-set-expand-content-inner" };
12485
- function pp(t, n, r, i, a, o) {
12529
+ }, op = ["aria-invalid"], sp = { class: "ecs-form-set-title" }, cp = { class: "ecs-form-set-content" }, lp = { class: "ecs-form-set-content-inner" }, up = { class: "ecs-form-set-expand-content-inner" };
12530
+ function dp(t, n, r, i, a, o) {
12486
12531
  let u = A("ecs-button-more");
12487
12532
  return T(), c("fieldset", {
12488
12533
  class: b(["ecs-form-set", [r.type, r.error ? "error" : ""]]),
12489
12534
  "aria-invalid": r.error || null
12490
- }, [l("legend", lp, N(r.title), 1), l("div", up, [l("div", dp, [k(t.$slots, "default", {}, void 0, !0)]), t.$slots.expand ? (T(), c(e, { key: 0 }, [f(u, {
12535
+ }, [l("legend", sp, N(r.title), 1), l("div", cp, [l("div", lp, [k(t.$slots, "default", {}, void 0, !0)]), t.$slots.expand ? (T(), c(e, { key: 0 }, [f(u, {
12491
12536
  type: "expand",
12492
12537
  active: a.expanded,
12493
12538
  onClick: o.toggleExpand
12494
12539
  }, {
12495
12540
  default: I(() => [d(N(r.expandButtonText), 1)]),
12496
12541
  _: 1
12497
- }, 8, ["active", "onClick"]), l("div", { class: b(["ecs-form-set-expand-content", [a.expanded ? "collapse-show" : "collapse-hide", a.isTransitioning ? "collapse-transitioning" : ""]]) }, [l("div", fp, [k(t.$slots, "expand", {}, void 0, !0)])], 2)], 64)) : s("", !0)])], 10, cp);
12542
+ }, 8, ["active", "onClick"]), l("div", { class: b(["ecs-form-set-expand-content", [a.expanded ? "collapse-show" : "collapse-hide", a.isTransitioning ? "collapse-transitioning" : ""]]) }, [l("div", up, [k(t.$slots, "expand", {}, void 0, !0)])], 2)], 64)) : s("", !0)])], 10, op);
12498
12543
  }
12499
- var mp = /* @__PURE__ */ V(sp, [["render", pp], ["__scopeId", "data-v-1085541e"]]), hp = {
12544
+ var fp = /* @__PURE__ */ V(ap, [["render", dp], ["__scopeId", "data-v-1085541e"]]), pp = {
12500
12545
  name: "ecs-highlight",
12501
12546
  props: {
12502
12547
  show: {
@@ -12549,7 +12594,7 @@ var mp = /* @__PURE__ */ V(sp, [["render", pp], ["__scopeId", "data-v-1085541e"]
12549
12594
  }
12550
12595
  }
12551
12596
  };
12552
- function gp(e, t, n, i, a, l) {
12597
+ function mp(e, t, n, i, a, l) {
12553
12598
  return T(), o(r, {
12554
12599
  name: "fade",
12555
12600
  appear: ""
@@ -12566,7 +12611,7 @@ function gp(e, t, n, i, a, l) {
12566
12611
  _: 3
12567
12612
  });
12568
12613
  }
12569
- var _p = /* @__PURE__ */ V(hp, [["render", gp], ["__scopeId", "data-v-ad0ca7b9"]]), vp = {
12614
+ var hp = /* @__PURE__ */ V(pp, [["render", mp], ["__scopeId", "data-v-ad0ca7b9"]]), gp = {
12570
12615
  name: "EcsIllustration",
12571
12616
  props: {
12572
12617
  type: {
@@ -12614,7 +12659,7 @@ var _p = /* @__PURE__ */ V(hp, [["render", gp], ["__scopeId", "data-v-ad0ca7b9"]
12614
12659
  }), `../assets/images/select-tile/${e}.svg`, 5)));
12615
12660
  } }
12616
12661
  };
12617
- function yp(e, t, n, r, i, a) {
12662
+ function _p(e, t, n, r, i, a) {
12618
12663
  return T(), o(M(i.illustrationComponent), {
12619
12664
  class: "ecs-illustration",
12620
12665
  width: n.size,
@@ -12627,7 +12672,7 @@ function yp(e, t, n, r, i, a) {
12627
12672
  "data-test-illustration-type"
12628
12673
  ]);
12629
12674
  }
12630
- var bp = /* @__PURE__ */ V(vp, [["render", yp], ["__scopeId", "data-v-ff7cc16f"]]), xp = {
12675
+ var vp = /* @__PURE__ */ V(gp, [["render", _p], ["__scopeId", "data-v-ff7cc16f"]]), yp = {
12631
12676
  name: "ecs-index-toolbar",
12632
12677
  components: { EcsFlexRow: G },
12633
12678
  props: { showActionbar: {
@@ -12638,30 +12683,30 @@ var bp = /* @__PURE__ */ V(vp, [["render", yp], ["__scopeId", "data-v-ff7cc16f"]
12638
12683
  data() {
12639
12684
  return {};
12640
12685
  }
12641
- }, Sp = { class: "ecs-toolbar" }, Cp = { class: "ecs-toolbar-search" }, wp = {
12686
+ }, bp = { class: "ecs-toolbar" }, xp = { class: "ecs-toolbar-search" }, Sp = {
12642
12687
  key: 0,
12643
12688
  class: "ecs-toolbar-controls"
12644
- }, Tp = {
12689
+ }, Cp = {
12645
12690
  key: 0,
12646
12691
  class: "ecs-toolbar-controls-secondary"
12647
- }, Ep = {
12692
+ }, wp = {
12648
12693
  key: 1,
12649
12694
  class: "ecs-toolbar-controls-primary"
12650
- }, Dp = {
12695
+ }, Tp = {
12651
12696
  key: 0,
12652
12697
  class: "ecs-toolbar-action-bar"
12653
12698
  };
12654
- function Op(e, t, n, r, i, a) {
12699
+ function Ep(e, t, n, r, i, a) {
12655
12700
  let o = A("ecs-flex-row");
12656
- return T(), c("div", Sp, [f(o, {
12701
+ return T(), c("div", bp, [f(o, {
12657
12702
  gap: 24,
12658
12703
  class: "ecs-toolbar-content"
12659
12704
  }, {
12660
- default: I(() => [l("div", Cp, [k(e.$slots, "search", {}, void 0, !0)]), e.$slots.secondary || e.$slots.primary ? (T(), c("div", wp, [e.$slots.secondary ? (T(), c("div", Tp, [k(e.$slots, "secondary", {}, void 0, !0)])) : s("", !0), e.$slots.primary ? (T(), c("div", Ep, [k(e.$slots, "primary", {}, void 0, !0)])) : s("", !0)])) : s("", !0)]),
12705
+ default: I(() => [l("div", xp, [k(e.$slots, "search", {}, void 0, !0)]), e.$slots.secondary || e.$slots.primary ? (T(), c("div", Sp, [e.$slots.secondary ? (T(), c("div", Cp, [k(e.$slots, "secondary", {}, void 0, !0)])) : s("", !0), e.$slots.primary ? (T(), c("div", wp, [k(e.$slots, "primary", {}, void 0, !0)])) : s("", !0)])) : s("", !0)]),
12661
12706
  _: 3
12662
- }), e.$slots.actionbar && n.showActionbar ? (T(), c("div", Dp, [k(e.$slots, "actionbar", {}, void 0, !0)])) : s("", !0)]);
12707
+ }), e.$slots.actionbar && n.showActionbar ? (T(), c("div", Tp, [k(e.$slots, "actionbar", {}, void 0, !0)])) : s("", !0)]);
12663
12708
  }
12664
- var kp = /* @__PURE__ */ V(xp, [["render", Op], ["__scopeId", "data-v-9021ef06"]]), Ap = {
12709
+ var Dp = /* @__PURE__ */ V(yp, [["render", Ep], ["__scopeId", "data-v-9021ef06"]]), Op = {
12665
12710
  name: "ecs-index-list-item",
12666
12711
  emits: ["click", "toggled"],
12667
12712
  mixins: [J],
@@ -12718,13 +12763,13 @@ var kp = /* @__PURE__ */ V(xp, [["render", Op], ["__scopeId", "data-v-9021ef06"]
12718
12763
  watch: { expanded(e) {
12719
12764
  this.isExpanded = e;
12720
12765
  } }
12721
- }, jp = [
12766
+ }, kp = [
12722
12767
  "aria-expanded",
12723
12768
  "aria-controls",
12724
12769
  "aria-disabled",
12725
12770
  "tabindex"
12726
- ], Mp = { class: "ecs-index-list-item-content" }, Np = { class: "ecs-index-list-item-actions" }, Pp = ["id", "aria-labelledby"];
12727
- function Fp(e, t, n, r, i, a) {
12771
+ ], Ap = { class: "ecs-index-list-item-content" }, jp = { class: "ecs-index-list-item-actions" }, Mp = ["id", "aria-labelledby"];
12772
+ function Np(e, t, n, r, i, a) {
12728
12773
  let o = A("ecs-focus-ring");
12729
12774
  return T(), c("div", {
12730
12775
  onClick: t[1] ||= (t) => e.$emit("click", t),
@@ -12743,9 +12788,9 @@ function Fp(e, t, n, r, i, a) {
12743
12788
  "aria-disabled": e.$slots.expand ? n.disabled : void 0,
12744
12789
  tabindex: e.$slots.expand && !n.disabled ? 0 : void 0,
12745
12790
  class: "ecs-index-list-item-expand-button"
12746
- }, [f(o)], 8, jp)) : s("", !0),
12747
- l("div", Mp, [k(e.$slots, "default", {}, void 0, !0)]),
12748
- l("div", Np, [k(e.$slots, "actions", {}, void 0, !0)]),
12791
+ }, [f(o)], 8, kp)) : s("", !0),
12792
+ l("div", Ap, [k(e.$slots, "default", {}, void 0, !0)]),
12793
+ l("div", jp, [k(e.$slots, "actions", {}, void 0, !0)]),
12749
12794
  a.showProgress ? (T(), c("div", {
12750
12795
  key: 1,
12751
12796
  class: "progress",
@@ -12761,9 +12806,9 @@ function Fp(e, t, n, r, i, a) {
12761
12806
  id: `${a.itemId}-content`,
12762
12807
  role: "region",
12763
12808
  "aria-labelledby": a.itemId
12764
- }, [k(e.$slots, "expand", {}, void 0, !0)], 10, Pp)) : s("", !0)], 2);
12809
+ }, [k(e.$slots, "expand", {}, void 0, !0)], 10, Mp)) : s("", !0)], 2);
12765
12810
  }
12766
- var Ip = /* @__PURE__ */ V(Ap, [["render", Fp], ["__scopeId", "data-v-3fb03d5e"]]), Lp = {
12811
+ var Pp = /* @__PURE__ */ V(Op, [["render", Np], ["__scopeId", "data-v-3fb03d5e"]]), Fp = {
12767
12812
  name: "ecs-info-tooltip",
12768
12813
  emits: ["click"],
12769
12814
  components: { EcsIcon: H },
@@ -12789,7 +12834,7 @@ var Ip = /* @__PURE__ */ V(Ap, [["render", Fp], ["__scopeId", "data-v-3fb03d5e"]
12789
12834
  this.$emit("click", e);
12790
12835
  } }
12791
12836
  };
12792
- function Rp(e, t, n, r, i, a) {
12837
+ function Ip(e, t, n, r, i, a) {
12793
12838
  let o = A("ecs-icon");
12794
12839
  return T(), c("i", {
12795
12840
  class: b(["ecs-info-tooltip", { "hover-color": a.shouldShowHover }]),
@@ -12800,7 +12845,7 @@ function Rp(e, t, n, r, i, a) {
12800
12845
  size: "20"
12801
12846
  }, null, 8, ["type"])], 6);
12802
12847
  }
12803
- var zp = /* @__PURE__ */ V(Lp, [["render", Rp], ["__scopeId", "data-v-f66945cb"]]), Bp = {
12848
+ var Lp = /* @__PURE__ */ V(Fp, [["render", Ip], ["__scopeId", "data-v-f66945cb"]]), Rp = {
12804
12849
  name: "ecs-input-group-addon",
12805
12850
  components: { EcsIcon: H },
12806
12851
  props: {
@@ -12814,7 +12859,7 @@ var zp = /* @__PURE__ */ V(Lp, [["render", Rp], ["__scopeId", "data-v-f66945cb"]
12814
12859
  return this.icon && this.icon !== "" ? "has-icon" : this.icon;
12815
12860
  } }
12816
12861
  };
12817
- function Vp(e, t, n, r, i, a) {
12862
+ function zp(e, t, n, r, i, a) {
12818
12863
  let l = A("ecs-icon");
12819
12864
  return T(), c("span", { class: b(["ecs-input-group-addon", [a.iconClass, n.button ? "has-button" : ""]]) }, [k(e.$slots, "default"), n.icon ? (T(), o(l, {
12820
12865
  key: 0,
@@ -12823,11 +12868,11 @@ function Vp(e, t, n, r, i, a) {
12823
12868
  color: "var(--color-gray-8)"
12824
12869
  }, null, 8, ["type"])) : s("", !0)], 2);
12825
12870
  }
12826
- var Hp = /* @__PURE__ */ V(Bp, [["render", Vp]]), Up = { name: "ecs-input-connector" }, Wp = { class: "ecs-input-group-addon connector" };
12827
- function Gp(e, t, n, r, i, a) {
12828
- return T(), c("span", Wp);
12871
+ var Bp = /* @__PURE__ */ V(Rp, [["render", zp]]), Vp = { name: "ecs-input-connector" }, Hp = { class: "ecs-input-group-addon connector" };
12872
+ function Up(e, t, n, r, i, a) {
12873
+ return T(), c("span", Hp);
12829
12874
  }
12830
- var Kp = /* @__PURE__ */ V(Up, [["render", Gp]]), qp = {
12875
+ var Wp = /* @__PURE__ */ V(Vp, [["render", Up]]), Gp = {
12831
12876
  name: "ecs-input-float",
12832
12877
  emits: ["input"],
12833
12878
  mixins: [J],
@@ -12893,7 +12938,7 @@ var Kp = /* @__PURE__ */ V(Up, [["render", Gp]]), qp = {
12893
12938
  created() {
12894
12939
  this.uniqueId = this.generateUniqueId();
12895
12940
  }
12896
- }, Jp = { class: "form-group has-float-label" }, Yp = [
12941
+ }, Kp = { class: "form-group has-float-label" }, qp = [
12897
12942
  "id",
12898
12943
  "type",
12899
12944
  "name",
@@ -12903,9 +12948,9 @@ var Kp = /* @__PURE__ */ V(Up, [["render", Gp]]), qp = {
12903
12948
  "placeholder",
12904
12949
  "autocomplete",
12905
12950
  "value"
12906
- ], Xp = ["for"];
12907
- function Zp(e, t, n, r, i, a) {
12908
- return T(), c("div", Jp, [l("input", v({
12951
+ ], Jp = ["for"];
12952
+ function Yp(e, t, n, r, i, a) {
12953
+ return T(), c("div", Kp, [l("input", v({
12909
12954
  class: ["form-control", [a.sizeClass, n.subtle ? "form-control-subtle" : null]],
12910
12955
  id: i.uniqueId,
12911
12956
  type: n.type,
@@ -12917,16 +12962,16 @@ function Zp(e, t, n, r, i, a) {
12917
12962
  autocomplete: n.autocomplete,
12918
12963
  value: n.value,
12919
12964
  onInput: t[0] ||= (...e) => a.changeValue && a.changeValue(...e)
12920
- }, e.$attrs), null, 16, Yp), l("label", { for: i.uniqueId }, N(n.label), 9, Xp)]);
12965
+ }, e.$attrs), null, 16, qp), l("label", { for: i.uniqueId }, N(n.label), 9, Jp)]);
12921
12966
  }
12922
- var Qp = /* @__PURE__ */ V(qp, [["render", Zp], ["__scopeId", "data-v-dfa713b3"]]), $p = { props: { singleInput: {
12967
+ var Xp = /* @__PURE__ */ V(Gp, [["render", Yp], ["__scopeId", "data-v-dfa713b3"]]), Zp = { props: { singleInput: {
12923
12968
  type: Boolean,
12924
12969
  default: !1
12925
12970
  } } };
12926
- function em(e, t, n, r, i, a) {
12971
+ function Qp(e, t, n, r, i, a) {
12927
12972
  return T(), c("div", { class: b(["ecs-input-group", n.singleInput ? "ecs-input-group-single" : ""]) }, [k(e.$slots, "default")], 2);
12928
12973
  }
12929
- var tm = /* @__PURE__ */ V($p, [["render", em]]), nm = {
12974
+ var $p = /* @__PURE__ */ V(Zp, [["render", Qp]]), em = {
12930
12975
  name: "ecs-inplace",
12931
12976
  emits: ["update:index"],
12932
12977
  data() {
@@ -12982,9 +13027,9 @@ var tm = /* @__PURE__ */ V($p, [["render", em]]), nm = {
12982
13027
  t && (this.slotHeights[this.currentSlot] = t.scrollHeight, e.style.height = `${this.slotHeights[this.currentSlot]}px`);
12983
13028
  }
12984
13029
  }
12985
- }, rm = { class: "ecs-inplace" }, im = ["data-slot"];
12986
- function am(e, t, n, r, a, o) {
12987
- return T(), c("div", rm, [f(i, {
13030
+ }, tm = { class: "ecs-inplace" }, nm = ["data-slot"];
13031
+ function rm(e, t, n, r, a, o) {
13032
+ return T(), c("div", tm, [f(i, {
12988
13033
  name: "slide",
12989
13034
  tag: "div",
12990
13035
  class: "inplace-container",
@@ -12994,11 +13039,11 @@ function am(e, t, n, r, a, o) {
12994
13039
  key: a.currentIndex,
12995
13040
  class: "inplace-item",
12996
13041
  "data-slot": o.currentSlot
12997
- }, [k(e.$slots, o.currentSlot)], 8, im)) : s("", !0)]),
13042
+ }, [k(e.$slots, o.currentSlot)], 8, nm)) : s("", !0)]),
12998
13043
  _: 3
12999
13044
  }, 8, ["onEnter"])]);
13000
13045
  }
13001
- var om = /* @__PURE__ */ V(nm, [["render", am]]), sm = {
13046
+ var im = /* @__PURE__ */ V(em, [["render", rm]]), am = {
13002
13047
  name: "ecs-jumper-document",
13003
13048
  emits: [
13004
13049
  "goToPrev",
@@ -13060,11 +13105,11 @@ var om = /* @__PURE__ */ V(nm, [["render", am]]), sm = {
13060
13105
  methods: { indexPosKeyPressed(e) {
13061
13106
  this.$emit("indexPosKeyPressed", e), e.stopPropagation(), e.key == "Enter" && e.preventDefault();
13062
13107
  } }
13063
- }, cm = {
13108
+ }, om = {
13064
13109
  key: 0,
13065
13110
  class: "ecs-viewer-toolbar-jumper-inputs"
13066
- }, lm = ["contenteditable", "disabled"];
13067
- function um(e, t, n, r, i, a) {
13111
+ }, sm = ["contenteditable", "disabled"];
13112
+ function cm(e, t, n, r, i, a) {
13068
13113
  let u = A("ecs-button-toolbar"), p = A("ecs-button-toolbar-group");
13069
13114
  return T(), o(p, { class: "ecs-viewer-toolbar-jumper" }, {
13070
13115
  default: I(() => [
@@ -13080,7 +13125,7 @@ function um(e, t, n, r, i, a) {
13080
13125
  "title",
13081
13126
  "aria-label"
13082
13127
  ]),
13083
- n.showCount ? (T(), c("div", cm, [
13128
+ n.showCount ? (T(), c("div", om, [
13084
13129
  l("div", {
13085
13130
  onClick: t[1] ||= (t) => e.$emit("selectCurEntryText"),
13086
13131
  onKeydown: t[2] ||= (...e) => a.indexPosKeyPressed && a.indexPosKeyPressed(...e),
@@ -13089,7 +13134,7 @@ function um(e, t, n, r, i, a) {
13089
13134
  class: b(["ecs-viewer-toolbar-jumper-input", { disabled: n.disabled }]),
13090
13135
  disabled: n.navigating || n.disabled,
13091
13136
  id: "currEntry"
13092
- }, N(n.currentEntry), 43, lm),
13137
+ }, N(n.currentEntry), 43, sm),
13093
13138
  t[5] ||= d(" /\xA0 ", -1),
13094
13139
  l("div", null, N(n.totalEntries), 1)
13095
13140
  ])) : s("", !0),
@@ -13109,7 +13154,7 @@ function um(e, t, n, r, i, a) {
13109
13154
  _: 1
13110
13155
  });
13111
13156
  }
13112
- var dm = /* @__PURE__ */ V(sm, [["render", um], ["__scopeId", "data-v-f854b4ab"]]), fm = {
13157
+ var lm = /* @__PURE__ */ V(am, [["render", cm], ["__scopeId", "data-v-f854b4ab"]]), um = {
13113
13158
  name: "ecs-jumper-index",
13114
13159
  emits: [
13115
13160
  "nextSearchResult",
@@ -13180,14 +13225,14 @@ var dm = /* @__PURE__ */ V(sm, [["render", um], ["__scopeId", "data-v-f854b4ab"]
13180
13225
  this.$emit("setSearchResultCount", e), e.stopPropagation(), e.key == "Enter" && e.preventDefault();
13181
13226
  }
13182
13227
  }
13183
- }, pm = {
13228
+ }, dm = {
13184
13229
  key: 0,
13185
13230
  class: "ecs-jumper-count"
13186
- }, mm = { class: "ecs-jumper-count-current" }, hm = { class: "ecs-jumper-count-total" }, gm = {
13231
+ }, fm = { class: "ecs-jumper-count-current" }, pm = { class: "ecs-jumper-count-total" }, mm = {
13187
13232
  key: 1,
13188
13233
  class: "ecs-jumper-count-inputs"
13189
13234
  };
13190
- function _m(e, t, n, r, i, a) {
13235
+ function hm(e, t, n, r, i, a) {
13191
13236
  let u = A("ecs-button-toolbar"), p = A("ecs-button-toolbar-group");
13192
13237
  return T(), o(p, { class: "ecs-jumper" }, {
13193
13238
  default: I(() => [
@@ -13203,8 +13248,8 @@ function _m(e, t, n, r, i, a) {
13203
13248
  "title",
13204
13249
  "aria-label"
13205
13250
  ]),
13206
- n.showCount && !n.inputPagination ? (T(), c("div", pm, [l("span", mm, N(a.currentPosition), 1), l("span", hm, "/" + N(n.maxCount), 1)])) : s("", !0),
13207
- n.inputPagination ? (T(), c("div", gm, [
13251
+ n.showCount && !n.inputPagination ? (T(), c("div", dm, [l("span", fm, N(a.currentPosition), 1), l("span", pm, "/" + N(n.maxCount), 1)])) : s("", !0),
13252
+ n.inputPagination ? (T(), c("div", mm, [
13208
13253
  l("div", {
13209
13254
  onClick: t[0] ||= (...e) => a.selectSearchResultCount && a.selectSearchResultCount(...e),
13210
13255
  onKeydown: t[1] ||= (...e) => a.setSearchResultCount && a.setSearchResultCount(...e),
@@ -13230,7 +13275,7 @@ function _m(e, t, n, r, i, a) {
13230
13275
  _: 1
13231
13276
  });
13232
13277
  }
13233
- var vm = /* @__PURE__ */ V(fm, [["render", _m], ["__scopeId", "data-v-d7f79667"]]), ym = {
13278
+ var gm = /* @__PURE__ */ V(um, [["render", hm], ["__scopeId", "data-v-d7f79667"]]), _m = {
13234
13279
  name: "ecs-jumper-page",
13235
13280
  emits: [
13236
13281
  "selectCurPageText",
@@ -13281,16 +13326,16 @@ var vm = /* @__PURE__ */ V(fm, [["render", _m], ["__scopeId", "data-v-d7f79667"]
13281
13326
  methods: { pageKeyPressed(e, t) {
13282
13327
  this.$emit("currentPageKeyPressed", e), e.stopPropagation(), e.key == "Enter" && e.preventDefault();
13283
13328
  } }
13284
- }, bm = { class: "ecs-viewer-pages" }, xm = { class: "ecs-viewer-pages-inner" }, Sm = { class: "ecs-viewer-pages-pagination" }, Cm = ["contenteditable"], wm = { class: "total-pages" }, Tm = {
13329
+ }, vm = { class: "ecs-viewer-pages" }, ym = { class: "ecs-viewer-pages-inner" }, bm = { class: "ecs-viewer-pages-pagination" }, xm = ["contenteditable"], Sm = { class: "total-pages" }, Cm = {
13285
13330
  key: 0,
13286
13331
  class: "page-missing-gaps",
13287
13332
  title: "This transcript has missing page gaps"
13288
- }, Em = { class: "ecs-viewer-pages-pagination" }, Dm = { class: "total-pages-relative" }, Om = { class: "total-pages-relative" }, km = {
13333
+ }, wm = { class: "ecs-viewer-pages-pagination" }, Tm = { class: "total-pages-relative" }, Em = { class: "total-pages-relative" }, Dm = {
13289
13334
  key: 1,
13290
13335
  class: "ecs-viewer-pages-pagination"
13291
- }, Am = ["innerHTML"], jm = { class: "total-pages" };
13292
- function Mm(t, n, r, i, a, o) {
13293
- return T(), c("div", bm, [l("div", xm, [o.showAltPageNumbers ? (T(), c(e, { key: 0 }, [l("div", Sm, [
13336
+ }, Om = ["innerHTML"], km = { class: "total-pages" };
13337
+ function Am(t, n, r, i, a, o) {
13338
+ return T(), c("div", vm, [l("div", ym, [o.showAltPageNumbers ? (T(), c(e, { key: 0 }, [l("div", bm, [
13294
13339
  l("div", {
13295
13340
  onClick: n[0] ||= (e) => t.$emit("selectCurPageText"),
13296
13341
  onKeydown: n[1] ||= (e) => o.pageKeyPressed(e, "relative"),
@@ -13298,10 +13343,10 @@ function Mm(t, n, r, i, a, o) {
13298
13343
  contenteditable: !r.disabled,
13299
13344
  class: b(["current-page", { disabled: r.disabled }]),
13300
13345
  id: "currPage"
13301
- }, N(r.currentPage), 43, Cm),
13302
- l("div", wm, "of " + N(r.lastPage), 1),
13303
- r.isTranscriptMissingPages ? (T(), c("span", Tm, "*")) : s("", !0)
13304
- ]), l("div", Em, [l("div", Dm, N(o.altPageNumber) + "\xA0", 1), l("div", Om, "of " + N(r.pageCount), 1)])], 64)) : (T(), c("div", km, [l("div", {
13346
+ }, N(r.currentPage), 43, xm),
13347
+ l("div", Sm, "of " + N(r.lastPage), 1),
13348
+ r.isTranscriptMissingPages ? (T(), c("span", Cm, "*")) : s("", !0)
13349
+ ]), l("div", wm, [l("div", Tm, N(o.altPageNumber) + "\xA0", 1), l("div", Em, "of " + N(r.pageCount), 1)])], 64)) : (T(), c("div", Dm, [l("div", {
13305
13350
  innerHTML: r.currentPage,
13306
13351
  onClick: n[3] ||= (e) => t.$emit("selectCurPageText"),
13307
13352
  onKeydown: n[4] ||= (e) => o.pageKeyPressed(e),
@@ -13309,9 +13354,9 @@ function Mm(t, n, r, i, a, o) {
13309
13354
  contenteditable: !0,
13310
13355
  class: "current-page",
13311
13356
  id: "currPage"
13312
- }, null, 40, Am), l("div", jm, "of " + N(r.pageCount), 1)]))])]);
13357
+ }, null, 40, Om), l("div", km, "of " + N(r.pageCount), 1)]))])]);
13313
13358
  }
13314
- var Nm = /* @__PURE__ */ V(ym, [["render", Mm], ["__scopeId", "data-v-5c8f8c17"]]), Pm = {
13359
+ var jm = /* @__PURE__ */ V(_m, [["render", Am], ["__scopeId", "data-v-5c8f8c17"]]), Mm = {
13315
13360
  name: "ecs-pane",
13316
13361
  inject: [
13317
13362
  "requestUpdate",
@@ -13375,14 +13420,14 @@ var Nm = /* @__PURE__ */ V(ym, [["render", Mm], ["__scopeId", "data-v-5c8f8c17"]
13375
13420
  }
13376
13421
  }
13377
13422
  };
13378
- function Fm(e, t, n, r, i, a) {
13423
+ function Nm(e, t, n, r, i, a) {
13379
13424
  return T(), c("div", {
13380
13425
  class: "ecs-pane",
13381
13426
  onClick: t[0] ||= (t) => a.onPaneClick(t, e._.uid),
13382
13427
  style: S(e.style)
13383
13428
  }, [k(e.$slots, "default")], 4);
13384
13429
  }
13385
- var Im = /* @__PURE__ */ V(Pm, [["render", Fm]]), Lm = {
13430
+ var Pm = /* @__PURE__ */ V(Mm, [["render", Nm]]), Fm = {
13386
13431
  name: "ecs-splitpanes",
13387
13432
  emits: [
13388
13433
  "ready",
@@ -13693,12 +13738,12 @@ var Im = /* @__PURE__ */ V(Pm, [["render", Fm]]), Lm = {
13693
13738
  ]
13694
13739
  }, this.$slots.default());
13695
13740
  }
13696
- }, Rm = {
13741
+ }, Im = {
13697
13742
  name: "ecs-layout-index",
13698
13743
  emits: ["resized"],
13699
13744
  components: {
13700
- EcsPane: Im,
13701
- EcsSplitpanes: Lm
13745
+ EcsPane: Pm,
13746
+ EcsSplitpanes: Fm
13702
13747
  },
13703
13748
  props: {
13704
13749
  overlaySidebar: {
@@ -13768,14 +13813,14 @@ var Im = /* @__PURE__ */ V(Pm, [["render", Fm]]), Lm = {
13768
13813
  this.currentPanes = e, this.$emit("resized", e);
13769
13814
  }
13770
13815
  }
13771
- }, zm = ["data-pane"], Bm = { class: "ecs-index-layout-contents" }, Vm = {
13816
+ }, Lm = ["data-pane"], Rm = { class: "ecs-index-layout-contents" }, zm = {
13772
13817
  key: 0,
13773
13818
  class: "ecs-index-layout-table scrollbar"
13774
- }, Hm = {
13819
+ }, Bm = {
13775
13820
  key: 2,
13776
13821
  class: "ecs-index-layout-pagination"
13777
13822
  };
13778
- function Um(e, t, n, r, i, a) {
13823
+ function Vm(e, t, n, r, i, a) {
13779
13824
  let u = A("ecs-pane"), d = A("ecs-splitpanes");
13780
13825
  return T(), c("div", {
13781
13826
  class: b(["ecs-index-layout", [n.backgroundWhite ? "background-white" : ""]]),
@@ -13783,7 +13828,7 @@ function Um(e, t, n, r, i, a) {
13783
13828
  }, [
13784
13829
  k(e.$slots, "toolbar", {}, void 0, !0),
13785
13830
  k(e.$slots, "action-toolbar", {}, void 0, !0),
13786
- l("div", { class: b(["ecs-index-layout-wrap", [n.indent ? "indent" : ""]]) }, [l("main", Bm, [n.splitPane ? (T(), o(d, {
13831
+ l("div", { class: b(["ecs-index-layout-wrap", [n.indent ? "indent" : ""]]) }, [l("main", Rm, [n.splitPane ? (T(), o(d, {
13787
13832
  key: 1,
13788
13833
  onResized: a.onPanesResized,
13789
13834
  onPaneAdd: a.onPaneAdd,
@@ -13840,38 +13885,38 @@ function Um(e, t, n, r, i, a) {
13840
13885
  "onResized",
13841
13886
  "onPaneAdd",
13842
13887
  "onPaneRemove"
13843
- ])) : (T(), c("div", Vm, [k(e.$slots, "default", {}, void 0, !0)])), e.$slots.pagination ? (T(), c("div", Hm, [k(e.$slots, "pagination", {}, void 0, !0)])) : s("", !0)]), e.$slots.sidebar ? (T(), c("div", {
13888
+ ])) : (T(), c("div", zm, [k(e.$slots, "default", {}, void 0, !0)])), e.$slots.pagination ? (T(), c("div", Bm, [k(e.$slots, "pagination", {}, void 0, !0)])) : s("", !0)]), e.$slots.sidebar ? (T(), c("div", {
13844
13889
  key: 0,
13845
13890
  class: b(["ecs-index-layout-sidebar", [n.overlaySidebar ? "overlay" : ""]]),
13846
13891
  style: S(a.sidebarPosition)
13847
13892
  }, [k(e.$slots, "sidebar", {}, void 0, !0)], 6)) : s("", !0)], 2)
13848
- ], 10, zm);
13893
+ ], 10, Lm);
13849
13894
  }
13850
- var Wm = /* @__PURE__ */ V(Rm, [["render", Um], ["__scopeId", "data-v-4e83743f"]]), Gm = {
13895
+ var Hm = /* @__PURE__ */ V(Im, [["render", Vm], ["__scopeId", "data-v-4e83743f"]]), Um = {
13851
13896
  name: "ecs-layout-directory",
13852
13897
  props: { indent: {
13853
13898
  type: Boolean,
13854
13899
  default: !1
13855
13900
  } }
13856
- }, Km = { class: "ecs-directory-layout" }, qm = { class: "ecs-directory-layout-wrap" }, Jm = { class: "ecs-directory-layout-contents" }, Ym = {
13901
+ }, Wm = { class: "ecs-directory-layout" }, Gm = { class: "ecs-directory-layout-wrap" }, Km = { class: "ecs-directory-layout-contents" }, qm = {
13857
13902
  key: 0,
13858
13903
  class: "ecs-directory-layout-directory"
13859
- }, Xm = {
13904
+ }, Jm = {
13860
13905
  key: 1,
13861
13906
  class: "ecs-directory-layout-sidebar"
13862
13907
  };
13863
- function Zm(e, t, n, r, i, a) {
13864
- return T(), c("div", Km, [
13908
+ function Ym(e, t, n, r, i, a) {
13909
+ return T(), c("div", Wm, [
13865
13910
  k(e.$slots, "toolbar", {}, void 0, !0),
13866
13911
  k(e.$slots, "action-toolbar", {}, void 0, !0),
13867
- l("div", qm, [l("div", Jm, [
13868
- e.$slots.directory ? (T(), c("aside", Ym, [k(e.$slots, "directory", {}, void 0, !0)])) : s("", !0),
13912
+ l("div", Gm, [l("div", Km, [
13913
+ e.$slots.directory ? (T(), c("aside", qm, [k(e.$slots, "directory", {}, void 0, !0)])) : s("", !0),
13869
13914
  l("main", { class: b(["ecs-directory-layout-entry scrollbar", [e.$slots.sidebar ? "has-sidebar" : ""]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2),
13870
- e.$slots.sidebar ? (T(), c("div", Xm, [k(e.$slots, "sidebar", {}, void 0, !0)])) : s("", !0)
13915
+ e.$slots.sidebar ? (T(), c("div", Jm, [k(e.$slots, "sidebar", {}, void 0, !0)])) : s("", !0)
13871
13916
  ])])
13872
13917
  ]);
13873
13918
  }
13874
- var Qm = /* @__PURE__ */ V(Gm, [["render", Zm], ["__scopeId", "data-v-f5afc4e6"]]), $m = {
13919
+ var Xm = /* @__PURE__ */ V(Um, [["render", Ym], ["__scopeId", "data-v-f5afc4e6"]]), Zm = {
13875
13920
  name: "ecs-layout-data-table",
13876
13921
  components: {
13877
13922
  EcsActionToolbar: Ae,
@@ -13922,24 +13967,24 @@ var Qm = /* @__PURE__ */ V(Gm, [["render", Zm], ["__scopeId", "data-v-f5afc4e6"]
13922
13967
  created() {
13923
13968
  this.showStatistics = localStorage.getItem("showStatistics") !== "false", this.statisticsId = this.generateUniqueId();
13924
13969
  }
13925
- }, eh = () => {
13970
+ }, Qm = () => {
13926
13971
  ne((e) => ({ v25931314: e.statisticsHeight }));
13927
- }, th = $m.setup;
13928
- $m.setup = th ? (e, t) => (eh(), th(e, t)) : eh;
13929
- var nh = { class: "ecs-data-layout-content" }, rh = {
13972
+ }, $m = Zm.setup;
13973
+ Zm.setup = $m ? (e, t) => (Qm(), $m(e, t)) : Qm;
13974
+ var eh = { class: "ecs-data-layout-content" }, th = {
13930
13975
  key: 0,
13931
13976
  role: "toolbar",
13932
13977
  "aria-label": "Main",
13933
13978
  class: "ecs-data-layout-toolbar"
13934
- }, ih = ["id"], ah = { class: "ecs-data-layout-data" }, oh = { class: "ecs-data-layout-sidebar-inner" }, sh = {
13979
+ }, nh = ["id"], rh = { class: "ecs-data-layout-data" }, ih = { class: "ecs-data-layout-sidebar-inner" }, ah = {
13935
13980
  key: 0,
13936
13981
  class: "ecs-data-layout-sidebar-header"
13937
- }, ch = { class: "ecs-data-layout-sidebar-content scrollbar scrollbar-sml" }, lh = { class: "ecs-data-layout-overlay-sidebar-panel" };
13938
- function uh(e, t, n, i, a, u) {
13982
+ }, oh = { class: "ecs-data-layout-sidebar-content scrollbar scrollbar-sml" }, sh = { class: "ecs-data-layout-overlay-sidebar-panel" };
13983
+ function ch(e, t, n, i, a, u) {
13939
13984
  let d = A("ecs-button"), p = A("ecs-action-toolbar");
13940
13985
  return T(), c("div", { class: b(["ecs-data-layout", n.leftBorder ? "left-border" : ""]) }, [
13941
- l("main", nh, [
13942
- e.$slots.toolbar ? (T(), c("div", rh, [k(e.$slots, "toolbar", {}, void 0, !0), e.$slots.statistics ? (T(), o(d, {
13986
+ l("main", eh, [
13987
+ e.$slots.toolbar ? (T(), c("div", th, [k(e.$slots, "toolbar", {}, void 0, !0), e.$slots.statistics ? (T(), o(d, {
13943
13988
  key: 0,
13944
13989
  onClick: u.toggleStatistics,
13945
13990
  type: a.showStatistics ? "primary" : "secondary",
@@ -13965,7 +14010,7 @@ function uh(e, t, n, i, a, u) {
13965
14010
  class: "ecs-data-layout-statistics scrollbar scrollbar-sml vertical",
13966
14011
  id: a.statisticsId,
13967
14012
  style: S({ height: `${n.statisticsHeight}px` })
13968
- }, [k(e.$slots, "statistics", {}, void 0, !0)], 12, ih)) : s("", !0)]),
14013
+ }, [k(e.$slots, "statistics", {}, void 0, !0)], 12, nh)) : s("", !0)]),
13969
14014
  _: 3
13970
14015
  }, 8, ["name"]),
13971
14016
  e.$slots.actionbar ? se((T(), o(p, {
@@ -13975,20 +14020,20 @@ function uh(e, t, n, i, a, u) {
13975
14020
  default: I(() => [k(e.$slots, "actionbar", {}, void 0, !0)]),
13976
14021
  _: 3
13977
14022
  }, 8, ["padding"])), [[ae, n.showActionbar]]) : s("", !0),
13978
- l("div", ah, [k(e.$slots, "default", {}, void 0, !0)])
14023
+ l("div", rh, [k(e.$slots, "default", {}, void 0, !0)])
13979
14024
  ]),
13980
14025
  e.$slots.sidebarcontent || e.$slots.sidebarheader ? (T(), c("aside", {
13981
14026
  key: 0,
13982
14027
  class: b(["ecs-data-layout-sidebar", n.sidebarExpanded ? "expanded" : ""])
13983
- }, [l("div", oh, [e.$slots.sidebarheader ? (T(), c("div", sh, [k(e.$slots, "sidebarheader", {}, void 0, !0)])) : s("", !0), l("div", ch, [k(e.$slots, "sidebarcontent", {}, void 0, !0)])])], 2)) : s("", !0),
14028
+ }, [l("div", ih, [e.$slots.sidebarheader ? (T(), c("div", ah, [k(e.$slots, "sidebarheader", {}, void 0, !0)])) : s("", !0), l("div", oh, [k(e.$slots, "sidebarcontent", {}, void 0, !0)])])], 2)) : s("", !0),
13984
14029
  e.$slots.overlaysidebar ? (T(), c("aside", {
13985
14030
  key: 1,
13986
14031
  class: b(["ecs-data-layout-overlay-sidebar", n.overlaySidebarExpanded ? "expanded" : ""]),
13987
14032
  "data-test": "overlay-sidebar"
13988
- }, [t[0] ||= l("div", { class: "ecs-data-layout-overlay-sidebar-backdrop" }, null, -1), l("div", lh, [k(e.$slots, "overlaysidebar", {}, void 0, !0)])], 2)) : s("", !0)
14033
+ }, [t[0] ||= l("div", { class: "ecs-data-layout-overlay-sidebar-backdrop" }, null, -1), l("div", sh, [k(e.$slots, "overlaysidebar", {}, void 0, !0)])], 2)) : s("", !0)
13989
14034
  ], 2);
13990
14035
  }
13991
- var dh = /* @__PURE__ */ V($m, [["render", uh], ["__scopeId", "data-v-f2f03b2c"]]), fh = {
14036
+ var lh = /* @__PURE__ */ V(Zm, [["render", ch], ["__scopeId", "data-v-f2f03b2c"]]), uh = {
13992
14037
  name: "ecs-legend-item",
13993
14038
  emits: ["click"],
13994
14039
  components: {
@@ -14030,17 +14075,17 @@ var dh = /* @__PURE__ */ V($m, [["render", uh], ["__scopeId", "data-v-f2f03b2c"]
14030
14075
  return `ecs-legend-item-${this.size}`;
14031
14076
  }
14032
14077
  }
14033
- }, ph = { class: "ecs-legend-item-label-container" }, mh = { class: "ecs-legend-item-label" }, hh = {
14078
+ }, dh = { class: "ecs-legend-item-label-container" }, fh = { class: "ecs-legend-item-label" }, ph = {
14034
14079
  key: 0,
14035
14080
  class: "ecs-legend-item-custom-label"
14036
- }, gh = {
14081
+ }, mh = {
14037
14082
  key: 0,
14038
14083
  class: "ecs-legend-item-count"
14039
- }, _h = {
14084
+ }, hh = {
14040
14085
  key: 1,
14041
14086
  class: "ecs-legend-item-percentage"
14042
14087
  };
14043
- function vh(e, t, n, r, i, a) {
14088
+ function gh(e, t, n, r, i, a) {
14044
14089
  let u = A("ecs-focus-ring"), d = A("ecs-flex-row");
14045
14090
  return T(), o(d, {
14046
14091
  onClick: t[0] ||= (t) => e.$emit("click", t),
@@ -14058,9 +14103,9 @@ function vh(e, t, n, r, i, a) {
14058
14103
  class: b(["ecs-legend-item-color", n.type]),
14059
14104
  style: S({ backgroundColor: n.color })
14060
14105
  }, null, 6),
14061
- l("div", ph, [l("div", mh, N(n.label), 1), e.$slots.label ? (T(), c("div", hh, [k(e.$slots, "label", {}, void 0, !0)])) : s("", !0)]),
14062
- n.count ? (T(), c("div", gh, N(n.count), 1)) : s("", !0),
14063
- n.percentage ? (T(), c("div", _h, N(a.percentageLabel), 1)) : s("", !0),
14106
+ l("div", dh, [l("div", fh, N(n.label), 1), e.$slots.label ? (T(), c("div", ph, [k(e.$slots, "label", {}, void 0, !0)])) : s("", !0)]),
14107
+ n.count ? (T(), c("div", mh, N(n.count), 1)) : s("", !0),
14108
+ n.percentage ? (T(), c("div", hh, N(a.percentageLabel), 1)) : s("", !0),
14064
14109
  n.highlight || n.hover ? (T(), c("div", {
14065
14110
  key: 2,
14066
14111
  class: "ecs-legend-item-highlight",
@@ -14075,7 +14120,7 @@ function vh(e, t, n, r, i, a) {
14075
14120
  "class"
14076
14121
  ]);
14077
14122
  }
14078
- var yh = /* @__PURE__ */ V(fh, [["render", vh], ["__scopeId", "data-v-31e7ba6e"]]), bh = {
14123
+ var _h = /* @__PURE__ */ V(uh, [["render", gh], ["__scopeId", "data-v-31e7ba6e"]]), vh = {
14079
14124
  name: "ecs-log-message",
14080
14125
  components: {
14081
14126
  EcsFlexRow: G,
@@ -14128,14 +14173,14 @@ var yh = /* @__PURE__ */ V(fh, [["render", vh], ["__scopeId", "data-v-31e7ba6e"]
14128
14173
  return ["warning", "error"].includes(this.type) ? "alert" : null;
14129
14174
  }
14130
14175
  }
14131
- }, xh = {
14176
+ }, yh = {
14132
14177
  key: 0,
14133
14178
  class: "ecs-log-message-indicator"
14134
- }, Sh = { class: "ecs-log-message-content" }, Ch = {
14179
+ }, bh = { class: "ecs-log-message-content" }, xh = {
14135
14180
  key: 3,
14136
14181
  class: "ecs-log-message-meta"
14137
- }, wh = { class: "ecs-log-message-meta-text" };
14138
- function Th(e, t, n, r, i, a) {
14182
+ }, Sh = { class: "ecs-log-message-meta-text" };
14183
+ function Ch(e, t, n, r, i, a) {
14139
14184
  let u = A("ecs-skeleton-loader"), d = A("ecs-sticker"), f = A("ecs-flex-row");
14140
14185
  return T(), o(f, {
14141
14186
  class: b(["ecs-log-message", [n.type, n.variant]]),
@@ -14146,7 +14191,7 @@ function Th(e, t, n, r, i, a) {
14146
14191
  style: S(a.padding)
14147
14192
  }, {
14148
14193
  default: I(() => [
14149
- n.variant === "indicator" ? (T(), c("div", xh)) : s("", !0),
14194
+ n.variant === "indicator" ? (T(), c("div", yh)) : s("", !0),
14150
14195
  n.loading && n.type != "blank" ? (T(), o(u, {
14151
14196
  key: 1,
14152
14197
  type: "rect",
@@ -14156,7 +14201,7 @@ function Th(e, t, n, r, i, a) {
14156
14201
  key: 2,
14157
14202
  type: n.type
14158
14203
  }, null, 8, ["type"])),
14159
- l("div", Sh, [n.loading ? (T(), o(u, {
14204
+ l("div", bh, [n.loading ? (T(), o(u, {
14160
14205
  key: 0,
14161
14206
  type: "single",
14162
14207
  width: 40,
@@ -14165,11 +14210,11 @@ function Th(e, t, n, r, i, a) {
14165
14210
  key: 2,
14166
14211
  class: b(["ecs-log-message-collapse", { expanded: i.expanded }])
14167
14212
  }, [k(e.$slots, "collapse", {}, void 0, !0)], 2)) : s("", !0)]),
14168
- (n.meta || e.$slots.collapse) && !n.loading ? (T(), c("div", Ch, [e.$slots.collapse ? (T(), c("button", {
14213
+ (n.meta || e.$slots.collapse) && !n.loading ? (T(), c("div", xh, [e.$slots.collapse ? (T(), c("button", {
14169
14214
  key: 0,
14170
14215
  onClick: t[0] ||= (e) => i.expanded = !i.expanded,
14171
14216
  class: "ecs-log-message-collapse-button"
14172
- }, N(n.collapseButtonText), 1)) : s("", !0), l("div", wh, N(n.meta), 1)])) : s("", !0)
14217
+ }, N(n.collapseButtonText), 1)) : s("", !0), l("div", Sh, N(n.meta), 1)])) : s("", !0)
14173
14218
  ]),
14174
14219
  _: 3
14175
14220
  }, 8, [
@@ -14179,7 +14224,7 @@ function Th(e, t, n, r, i, a) {
14179
14224
  "style"
14180
14225
  ]);
14181
14226
  }
14182
- var Eh = /* @__PURE__ */ V(bh, [["render", Th], ["__scopeId", "data-v-e0610fe5"]]), Dh = {
14227
+ var wh = /* @__PURE__ */ V(vh, [["render", Ch], ["__scopeId", "data-v-e0610fe5"]]), Th = {
14183
14228
  name: "ecs-map",
14184
14229
  components: { EcsFocusRing: U },
14185
14230
  props: {
@@ -14200,8 +14245,8 @@ var Eh = /* @__PURE__ */ V(bh, [["render", Th], ["__scopeId", "data-v-e0610fe5"]
14200
14245
  return `https://maps.googleapis.com/maps/api/staticmap?maptype=terrain&sensor=false&format=png&zoom=13&key=AIzaSyBEv9bJVd1MU5zSs_Ezxkvc8FOfIO7Q1Fk&visual_refresh=true&scale=2&size=320x220&style=feature:poi|visibility:off&center=${this.address}`;
14201
14246
  }
14202
14247
  }
14203
- }, Oh = ["href"], kh = ["src", "alt"];
14204
- function Ah(e, t, n, r, i, a) {
14248
+ }, Eh = ["href"], Dh = ["src", "alt"];
14249
+ function Oh(e, t, n, r, i, a) {
14205
14250
  let o = A("ecs-focus-ring");
14206
14251
  return T(), c("div", { class: b(["ecs-map", [n.marker ? "ecs-map-marker" : ""]]) }, [l("a", {
14207
14252
  target: "_blank",
@@ -14210,12 +14255,12 @@ function Ah(e, t, n, r, i, a) {
14210
14255
  }, [l("img", {
14211
14256
  src: a.mapImageUrl,
14212
14257
  alt: "Map of " + n.address
14213
- }, null, 8, kh), f(o, {
14258
+ }, null, 8, Dh), f(o, {
14214
14259
  inset: 0,
14215
14260
  radius: 4
14216
- })], 8, Oh)], 2);
14261
+ })], 8, Eh)], 2);
14217
14262
  }
14218
- var jh = /* @__PURE__ */ V(Dh, [["render", Ah], ["__scopeId", "data-v-219f95e2"]]), Mh = {
14263
+ var kh = /* @__PURE__ */ V(Th, [["render", Oh], ["__scopeId", "data-v-219f95e2"]]), Ah = {
14219
14264
  name: "ecs-modal",
14220
14265
  props: {
14221
14266
  show: {
@@ -14260,14 +14305,14 @@ var jh = /* @__PURE__ */ V(Dh, [["render", Ah], ["__scopeId", "data-v-219f95e2"]
14260
14305
  mounted() {
14261
14306
  this.show && (this.isShown = !0);
14262
14307
  }
14263
- }, Nh = {
14308
+ }, jh = {
14264
14309
  key: 0,
14265
14310
  class: "ecs-modal-header-wrap"
14266
- }, Ph = { class: "ecs-modal-content-wrap scrollbar" }, Fh = {
14311
+ }, Mh = { class: "ecs-modal-content-wrap scrollbar" }, Nh = {
14267
14312
  key: 1,
14268
14313
  class: "ecs-modal-footer-wrap"
14269
14314
  };
14270
- function Ih(e, t, n, i, a, u) {
14315
+ function Ph(e, t, n, i, a, u) {
14271
14316
  return T(), o(r, { name: "dialog-fade" }, {
14272
14317
  default: I(() => [a.isShown ? (T(), c("div", {
14273
14318
  key: 0,
@@ -14276,14 +14321,14 @@ function Ih(e, t, n, i, a, u) {
14276
14321
  class: "ecs-modal-dialog ecs-modal-sheet",
14277
14322
  style: S([u.fixedHeightStyle, u.widthStyle])
14278
14323
  }, [
14279
- e.$slots.header ? (T(), c("div", Nh, [k(e.$slots, "header", {}, void 0, !0)])) : s("", !0),
14280
- l("div", Ph, [k(e.$slots, "default", {}, void 0, !0)]),
14281
- e.$slots.footer ? (T(), c("div", Fh, [k(e.$slots, "footer", {}, void 0, !0)])) : s("", !0)
14324
+ e.$slots.header ? (T(), c("div", jh, [k(e.$slots, "header", {}, void 0, !0)])) : s("", !0),
14325
+ l("div", Mh, [k(e.$slots, "default", {}, void 0, !0)]),
14326
+ e.$slots.footer ? (T(), c("div", Nh, [k(e.$slots, "footer", {}, void 0, !0)])) : s("", !0)
14282
14327
  ], 4), t[0] ||= l("div", { class: "ecs-modal-backdrop ecs-modal-sheet-backdrop" }, null, -1)], 2)) : s("", !0)]),
14283
14328
  _: 3
14284
14329
  });
14285
14330
  }
14286
- var Lh = /* @__PURE__ */ V(Mh, [["render", Ih], ["__scopeId", "data-v-317f069f"]]), Rh = {
14331
+ var Fh = /* @__PURE__ */ V(Ah, [["render", Ph], ["__scopeId", "data-v-317f069f"]]), Ih = {
14287
14332
  name: "ecs-modal-header",
14288
14333
  emits: ["close"],
14289
14334
  components: {
@@ -14317,17 +14362,17 @@ var Lh = /* @__PURE__ */ V(Mh, [["render", Ih], ["__scopeId", "data-v-317f069f"]
14317
14362
  e && (e.focus(), e.click());
14318
14363
  }
14319
14364
  } }
14320
- }, zh = {
14365
+ }, Lh = {
14321
14366
  class: "ecs-modal-header-main",
14322
14367
  ref: "firstFocusable",
14323
14368
  tabindex: "0"
14324
- }, Bh = { class: "ecs-modal-header-main-inner" }, Vh = {
14369
+ }, Rh = { class: "ecs-modal-header-main-inner" }, zh = {
14325
14370
  key: 0,
14326
14371
  class: "ecs-modal-header-extended"
14327
14372
  };
14328
- function Hh(e, t, n, r, i, a) {
14373
+ function Bh(e, t, n, r, i, a) {
14329
14374
  let o = A("ecs-button");
14330
- return T(), c("div", { class: b(["ecs-modal-header", a.typeClass]) }, [l("div", zh, [l("div", Bh, [k(e.$slots, "default", {}, void 0, !0)]), f(o, {
14375
+ return T(), c("div", { class: b(["ecs-modal-header", a.typeClass]) }, [l("div", Lh, [l("div", Rh, [k(e.$slots, "default", {}, void 0, !0)]), f(o, {
14331
14376
  onClick: t[0] ||= (t) => e.$emit("close"),
14332
14377
  title: "Close",
14333
14378
  "aria-label": "Close",
@@ -14338,16 +14383,16 @@ function Hh(e, t, n, r, i, a) {
14338
14383
  "focus-inset": -1,
14339
14384
  "data-close-button": "",
14340
14385
  "data-test": "close-modal-button"
14341
- })], 512), e.$slots.extension ? (T(), c("div", Vh, [k(e.$slots, "extension", {}, void 0, !0)])) : s("", !0)], 2);
14386
+ })], 512), e.$slots.extension ? (T(), c("div", zh, [k(e.$slots, "extension", {}, void 0, !0)])) : s("", !0)], 2);
14342
14387
  }
14343
- var Uh = /* @__PURE__ */ V(Rh, [["render", Hh], ["__scopeId", "data-v-7d67bede"]]), Wh = { name: "ecs-modal-footer" }, Gh = { class: "ecs-modal-footer" }, Kh = {
14388
+ var Vh = /* @__PURE__ */ V(Ih, [["render", Bh], ["__scopeId", "data-v-7d67bede"]]), Hh = { name: "ecs-modal-footer" }, Uh = { class: "ecs-modal-footer" }, Wh = {
14344
14389
  key: 0,
14345
14390
  class: "ecs-modal-footer-secondary"
14346
- }, qh = { class: "ecs-modal-footer-main" };
14347
- function Jh(e, t, n, r, i, a) {
14348
- return T(), c("div", Gh, [e.$slots.secondary ? (T(), c("div", Kh, [k(e.$slots, "secondary", {}, void 0, !0)])) : s("", !0), l("div", qh, [k(e.$slots, "default", {}, void 0, !0)])]);
14391
+ }, Gh = { class: "ecs-modal-footer-main" };
14392
+ function Kh(e, t, n, r, i, a) {
14393
+ return T(), c("div", Uh, [e.$slots.secondary ? (T(), c("div", Wh, [k(e.$slots, "secondary", {}, void 0, !0)])) : s("", !0), l("div", Gh, [k(e.$slots, "default", {}, void 0, !0)])]);
14349
14394
  }
14350
- var Yh = /* @__PURE__ */ V(Wh, [["render", Jh], ["__scopeId", "data-v-05db6a92"]]), Xh = {
14395
+ var qh = /* @__PURE__ */ V(Hh, [["render", Kh], ["__scopeId", "data-v-05db6a92"]]), Jh = {
14351
14396
  name: "ecs-multiselect-search-token",
14352
14397
  emits: [
14353
14398
  "remove",
@@ -14390,29 +14435,29 @@ var Yh = /* @__PURE__ */ V(Wh, [["render", Jh], ["__scopeId", "data-v-05db6a92"]
14390
14435
  this.$emit("editToken", e);
14391
14436
  }
14392
14437
  }
14393
- }, Zh = {
14438
+ }, Yh = {
14394
14439
  key: 0,
14395
14440
  class: "symbol"
14396
- }, Qh = {
14441
+ }, Xh = {
14397
14442
  key: 0,
14398
14443
  class: "operator"
14399
- }, $h = { class: "query" }, eg = {
14444
+ }, Zh = { class: "query" }, Qh = {
14400
14445
  key: 0,
14401
14446
  class: "descriptor"
14402
14447
  };
14403
- function tg(e, t, n, r, i, a) {
14448
+ function $h(e, t, n, r, i, a) {
14404
14449
  let o = A("ecs-icon"), u = A("ecs-focus-ring");
14405
14450
  return T(), c("div", {
14406
14451
  class: b(["ecs-multiselect-search-token", [a.typeClass, { editable: n.editable }]]),
14407
14452
  tabindex: "0",
14408
14453
  onKeydown: t[5] ||= L((t) => e.$emit("remove", t), ["delete"])
14409
- }, [n.icon || n.operator || n.operatorSwitch ? (T(), c("div", Zh, [
14454
+ }, [n.icon || n.operator || n.operatorSwitch ? (T(), c("div", Yh, [
14410
14455
  f(o, {
14411
14456
  type: n.icon,
14412
14457
  size: "20",
14413
14458
  color: "var(--color-white)"
14414
14459
  }, null, 8, ["type"]),
14415
- n.operator && !n.operatorSwitch ? (T(), c("div", Qh, N(n.operator), 1)) : s("", !0),
14460
+ n.operator && !n.operatorSwitch ? (T(), c("div", Xh, N(n.operator), 1)) : s("", !0),
14416
14461
  n.operatorSwitch ? (T(), c("button", {
14417
14462
  key: 1,
14418
14463
  onClick: t[0] ||= (...e) => a.handleOperatorToggle && a.handleOperatorToggle(...e),
@@ -14434,8 +14479,8 @@ function tg(e, t, n, r, i, a) {
14434
14479
  }, null, 8, ["class"]),
14435
14480
  f(u, { radius: 12 })
14436
14481
  ], 2)) : s("", !0)
14437
- ])) : s("", !0), l("div", $h, [
14438
- n.descriptor ? (T(), c("div", eg, N(n.descriptor), 1)) : s("", !0),
14482
+ ])) : s("", !0), l("div", Zh, [
14483
+ n.descriptor ? (T(), c("div", Qh, N(n.descriptor), 1)) : s("", !0),
14439
14484
  n.editable ? (T(), c("button", {
14440
14485
  key: 1,
14441
14486
  onClick: t[1] ||= (...e) => a.handleEditToken && a.handleEditToken(...e),
@@ -14465,7 +14510,7 @@ function tg(e, t, n, r, i, a) {
14465
14510
  }), f(u, { radius: 12 })], 32)
14466
14511
  ])], 34);
14467
14512
  }
14468
- var ng = /* @__PURE__ */ V(Xh, [["render", tg], ["__scopeId", "data-v-41602e43"]]), rg = {
14513
+ var eg = /* @__PURE__ */ V(Jh, [["render", $h], ["__scopeId", "data-v-41602e43"]]), tg = {
14469
14514
  name: "ecs-multiselect-token",
14470
14515
  emits: ["remove"],
14471
14516
  components: {
@@ -14473,7 +14518,7 @@ var ng = /* @__PURE__ */ V(Xh, [["render", tg], ["__scopeId", "data-v-41602e43"]
14473
14518
  EcsFocusRing: U
14474
14519
  }
14475
14520
  };
14476
- function ig(e, t, n, r, i, a) {
14521
+ function ng(e, t, n, r, i, a) {
14477
14522
  let o = A("ecs-icon"), s = A("ecs-focus-ring");
14478
14523
  return T(), c("div", {
14479
14524
  class: "ecs-multiselect-token",
@@ -14488,7 +14533,7 @@ function ig(e, t, n, r, i, a) {
14488
14533
  color: "#FFF"
14489
14534
  }), f(s, { radius: 12 })])], 32);
14490
14535
  }
14491
- var ag = /* @__PURE__ */ V(rg, [["render", ig], ["__scopeId", "data-v-daa501d2"]]), og = {
14536
+ var rg = /* @__PURE__ */ V(tg, [["render", ng], ["__scopeId", "data-v-daa501d2"]]), ig = {
14492
14537
  name: "ecs-multiselect-option",
14493
14538
  components: {
14494
14539
  EcsIcon: H,
@@ -14536,14 +14581,14 @@ var ag = /* @__PURE__ */ V(rg, [["render", ig], ["__scopeId", "data-v-daa501d2"]
14536
14581
  return this.isPlainTextSlotContent ? { display: "block" } : { display: "flex" };
14537
14582
  }
14538
14583
  }
14539
- }, sg = ["role"], cg = {
14584
+ }, ag = ["role"], og = {
14540
14585
  key: 1,
14541
14586
  class: "color"
14542
- }, lg = {
14587
+ }, sg = {
14543
14588
  key: 2,
14544
14589
  class: "ecs-multiselect-option-content-count"
14545
14590
  };
14546
- function ug(e, t, n, r, i, a) {
14591
+ function cg(e, t, n, r, i, a) {
14547
14592
  let u = A("ecs-icon"), p = A("ecs-flex-row"), m = A("ecs-text-v2");
14548
14593
  return T(), c("div", {
14549
14594
  class: b(["ecs-multiselect-option", [a.typeClass, n.highlighted ? "highlighted" : ""]]),
@@ -14557,7 +14602,7 @@ function ug(e, t, n, r, i, a) {
14557
14602
  key: 0,
14558
14603
  type: n.icon,
14559
14604
  size: "20"
14560
- }, null, 8, ["type"])) : n.color ? (T(), c("div", cg, [l("div", {
14605
+ }, null, 8, ["type"])) : n.color ? (T(), c("div", og, [l("div", {
14561
14606
  class: "color-dot",
14562
14607
  style: S({ backgroundColor: n.color })
14563
14608
  }, null, 4)])) : s("", !0),
@@ -14565,7 +14610,7 @@ function ug(e, t, n, r, i, a) {
14565
14610
  class: "ecs-multiselect-option-content-text",
14566
14611
  style: S(a.slotContentStyle)
14567
14612
  }, [k(e.$slots, "default", {}, void 0, !0)], 4),
14568
- n.count ? (T(), c("span", lg, N(n.count), 1)) : s("", !0)
14613
+ n.count ? (T(), c("span", sg, N(n.count), 1)) : s("", !0)
14569
14614
  ]),
14570
14615
  _: 3
14571
14616
  }), n.help ? (T(), c("div", {
@@ -14574,9 +14619,9 @@ function ug(e, t, n, r, i, a) {
14574
14619
  }, [f(m, { preset: "form" }, {
14575
14620
  default: I(() => [d(N(n.help), 1)]),
14576
14621
  _: 1
14577
- })], 2)) : s("", !0)], 10, sg);
14622
+ })], 2)) : s("", !0)], 10, ag);
14578
14623
  }
14579
- var dg = /* @__PURE__ */ V(og, [["render", ug], ["__scopeId", "data-v-28659eb6"]]), fg = {
14624
+ var lg = /* @__PURE__ */ V(ig, [["render", cg], ["__scopeId", "data-v-28659eb6"]]), ug = {
14580
14625
  name: "ecs-overlay",
14581
14626
  emits: ["close", "toggled"],
14582
14627
  components: {
@@ -14694,38 +14739,38 @@ var dg = /* @__PURE__ */ V(og, [["render", ug], ["__scopeId", "data-v-28659eb6"]
14694
14739
  this.isShown && this.setScrollPaddings();
14695
14740
  }, 10);
14696
14741
  } }
14697
- }, pg = { class: "ecs-overlay-titles" }, mg = { class: "title" }, hg = {
14742
+ }, dg = { class: "ecs-overlay-titles" }, fg = { class: "title" }, pg = {
14698
14743
  key: 0,
14699
14744
  class: "emphasized"
14700
- }, gg = {
14745
+ }, mg = {
14701
14746
  key: 0,
14702
14747
  class: "subline"
14703
- }, _g = {
14748
+ }, hg = {
14704
14749
  key: 0,
14705
14750
  class: "ecs-overlay-header-controls"
14706
- }, vg = ["aria-busy"], yg = {
14751
+ }, gg = ["aria-busy"], _g = {
14707
14752
  key: 0,
14708
14753
  class: "ecs-overlay-tabs scrollbar scrollbar-sml"
14709
- }, bg = {
14754
+ }, vg = {
14710
14755
  key: 0,
14711
14756
  class: "ecs-overlay-sidebar ecs-overlay-sidebar-static"
14712
- }, xg = { class: "ecs-overlay-sidebar ecs-overlay-sidebar-float scrollbar scrollbar-sml" }, Sg = {
14757
+ }, yg = { class: "ecs-overlay-sidebar ecs-overlay-sidebar-float scrollbar scrollbar-sml" }, bg = {
14713
14758
  key: 1,
14714
14759
  class: "ecs-overlay-content-block"
14715
- }, Cg = {
14760
+ }, xg = {
14716
14761
  key: 1,
14717
14762
  class: "ecs-overlay-footer"
14718
- }, wg = {
14763
+ }, Sg = {
14719
14764
  key: 0,
14720
14765
  class: "spacer-tabs"
14721
- }, Tg = { class: "ecs-overlay-footer-content" }, Eg = {
14766
+ }, Cg = { class: "ecs-overlay-footer-content" }, wg = {
14722
14767
  key: 0,
14723
14768
  class: "spacer-sidebar"
14724
- }, Dg = {
14769
+ }, Tg = {
14725
14770
  key: 1,
14726
14771
  class: "spacer-scrollbar"
14727
14772
  };
14728
- function Og(e, t, n, i, a, u) {
14773
+ function Eg(e, t, n, i, a, u) {
14729
14774
  let p = A("ecs-icon"), m = A("ecs-button-toolbar"), h = A("ecs-alert");
14730
14775
  return T(), o(r, {
14731
14776
  name: "fade",
@@ -14743,13 +14788,13 @@ function Og(e, t, n, i, a, u) {
14743
14788
  class: "ecs-overlay-header",
14744
14789
  style: S(e.$slots.alert ? "" : "border-bottom: 1px solid var(--color-gray-4);")
14745
14790
  }, [
14746
- l("div", pg, [n.icon ? (T(), o(p, {
14791
+ l("div", dg, [n.icon ? (T(), o(p, {
14747
14792
  key: 0,
14748
14793
  type: n.icon,
14749
14794
  size: "40",
14750
14795
  color: "#B9BCC2"
14751
- }, null, 8, ["type"])) : s("", !0), l("div", null, [l("span", mg, [n.headerTitleEmphasized ? (T(), c("span", hg, N(n.headerTitleEmphasized), 1)) : s("", !0), d(" " + N(n.headerTitle), 1)]), n.headerTitleSubline ? (T(), c("span", gg, N(n.headerTitleSubline), 1)) : s("", !0)])]),
14752
- e.$slots.headercontrols ? (T(), c("div", _g, [k(e.$slots, "headercontrols", {}, void 0, !0)])) : s("", !0),
14796
+ }, null, 8, ["type"])) : s("", !0), l("div", null, [l("span", fg, [n.headerTitleEmphasized ? (T(), c("span", pg, N(n.headerTitleEmphasized), 1)) : s("", !0), d(" " + N(n.headerTitle), 1)]), n.headerTitleSubline ? (T(), c("span", mg, N(n.headerTitleSubline), 1)) : s("", !0)])]),
14797
+ e.$slots.headercontrols ? (T(), c("div", hg, [k(e.$slots, "headercontrols", {}, void 0, !0)])) : s("", !0),
14753
14798
  e.$slots.sidebar && a.width <= 1500 ? (T(), o(m, {
14754
14799
  key: 1,
14755
14800
  onClick: u.sidebarToggle,
@@ -14798,7 +14843,7 @@ function Og(e, t, n, i, a, u) {
14798
14843
  class: "ecs-overlay-content",
14799
14844
  "aria-busy": n.blockContent || null
14800
14845
  }, [
14801
- e.$slots.tabs ? (T(), c("div", yg, [k(e.$slots, "tabs", {}, void 0, !0)])) : s("", !0),
14846
+ e.$slots.tabs ? (T(), c("div", _g, [k(e.$slots, "tabs", {}, void 0, !0)])) : s("", !0),
14802
14847
  l("div", {
14803
14848
  ref: "innerContent",
14804
14849
  class: b(["ecs-overlay-content-inner scrollbar", u.sidebarOpenClass])
@@ -14813,15 +14858,15 @@ function Og(e, t, n, i, a, u) {
14813
14858
  paddingRight: u.contentPadding
14814
14859
  })
14815
14860
  }, [k(e.$slots, "default", {}, void 0, !0)], 6),
14816
- e.$slots.sidebar && a.width > 1500 ? (T(), c("div", bg, [k(e.$slots, "sidebar", {}, void 0, !0)])) : s("", !0),
14861
+ e.$slots.sidebar && a.width > 1500 ? (T(), c("div", vg, [k(e.$slots, "sidebar", {}, void 0, !0)])) : s("", !0),
14817
14862
  f(r, { name: "slide" }, {
14818
- default: I(() => [se(l("div", xg, [k(e.$slots, "sidebar", {}, void 0, !0)], 512), [[ae, e.$slots.sidebar && a.width <= 1500 && a.showSidebar]])]),
14863
+ default: I(() => [se(l("div", yg, [k(e.$slots, "sidebar", {}, void 0, !0)], 512), [[ae, e.$slots.sidebar && a.width <= 1500 && a.showSidebar]])]),
14819
14864
  _: 3
14820
14865
  })
14821
14866
  ], 2),
14822
- n.blockContent ? (T(), c("div", Sg)) : s("", !0)
14823
- ], 8, vg),
14824
- e.$slots.footer ? (T(), c("footer", Cg, [e.$slots.tabs ? (T(), c("div", wg)) : s("", !0), l("div", Tg, [
14867
+ n.blockContent ? (T(), c("div", bg)) : s("", !0)
14868
+ ], 8, gg),
14869
+ e.$slots.footer ? (T(), c("footer", xg, [e.$slots.tabs ? (T(), c("div", Sg)) : s("", !0), l("div", Cg, [
14825
14870
  l("div", {
14826
14871
  class: "ecs-overlay-footer-content-inner",
14827
14872
  style: S({
@@ -14832,14 +14877,14 @@ function Og(e, t, n, i, a, u) {
14832
14877
  paddingRight: u.contentPadding
14833
14878
  })
14834
14879
  }, [k(e.$slots, "footer", {}, void 0, !0)], 4),
14835
- e.$slots.sidebar && a.width > 1500 ? (T(), c("div", Eg)) : s("", !0),
14836
- a.footerScrollSpacer ? (T(), c("div", Dg)) : s("", !0)
14880
+ e.$slots.sidebar && a.width > 1500 ? (T(), c("div", wg)) : s("", !0),
14881
+ a.footerScrollSpacer ? (T(), c("div", Tg)) : s("", !0)
14837
14882
  ])])) : s("", !0)
14838
14883
  ], 4)) : s("", !0)]),
14839
14884
  _: 3
14840
14885
  });
14841
14886
  }
14842
- var kg = /* @__PURE__ */ V(fg, [["render", Og], ["__scopeId", "data-v-acdd9118"]]), Ag = {
14887
+ var Dg = /* @__PURE__ */ V(ug, [["render", Eg], ["__scopeId", "data-v-acdd9118"]]), Og = {
14843
14888
  name: "ecs-pagination",
14844
14889
  emits: [
14845
14890
  "firstPage",
@@ -14933,14 +14978,14 @@ var kg = /* @__PURE__ */ V(fg, [["render", Og], ["__scopeId", "data-v-acdd9118"]
14933
14978
  this.$emit("updatePage", Number(e));
14934
14979
  }
14935
14980
  }
14936
- }, jg = ["value", "selected"], Mg = {
14981
+ }, kg = ["value", "selected"], Ag = {
14937
14982
  key: 0,
14938
14983
  class: "total"
14939
- }, Ng = {
14984
+ }, jg = {
14940
14985
  key: 1,
14941
14986
  class: "ecs-pagination-range"
14942
- }, Pg = { class: "ecs-pagination-tabs" }, Fg = ["value", "selected"];
14943
- function Ig(t, n, r, i, a, u) {
14987
+ }, Mg = { class: "ecs-pagination-tabs" }, Ng = ["value", "selected"];
14988
+ function Pg(t, n, r, i, a, u) {
14944
14989
  let p = A("ecs-button"), m = A("ecs-flex-row"), h = A("ecs-select");
14945
14990
  return T(), c("div", {
14946
14991
  class: b(["ecs-pagination", [r.theme === "bordered" ? "ecs-pagination-bordered" : "", r.theme === "floating" ? "ecs-pagination-floating" : ""]]),
@@ -14988,10 +15033,10 @@ function Ig(t, n, r, i, a, u) {
14988
15033
  key: e,
14989
15034
  value: e,
14990
15035
  selected: e === r.currentPage
14991
- }, N(e), 9, jg))), 128))]),
15036
+ }, N(e), 9, kg))), 128))]),
14992
15037
  _: 1
14993
15038
  }, 8, ["modelValue", "disabled"]),
14994
- r.totalPages ? (T(), c("span", Mg, "of " + N(r.totalPages), 1)) : s("", !0)
15039
+ r.totalPages ? (T(), c("span", Ag, "of " + N(r.totalPages), 1)) : s("", !0)
14995
15040
  ]),
14996
15041
  _: 1
14997
15042
  }),
@@ -15017,7 +15062,7 @@ function Ig(t, n, r, i, a, u) {
15017
15062
  }, null, 8, ["disabled"])]),
15018
15063
  _: 1
15019
15064
  })
15020
- ], 64)) : u.hasRange ? (T(), c("span", Ng, [
15065
+ ], 64)) : u.hasRange ? (T(), c("span", jg, [
15021
15066
  n[8] ||= d("Showing entries ", -1),
15022
15067
  l("span", null, N(r.itemRangeFrom) + " to " + N(r.itemRangeTo), 1),
15023
15068
  n[9] ||= d(" of ", -1),
@@ -15025,7 +15070,7 @@ function Ig(t, n, r, i, a, u) {
15025
15070
  ])) : s("", !0)]),
15026
15071
  _: 1
15027
15072
  }, 8, ["style"]),
15028
- l("div", Pg, [k(t.$slots, "tabs", {}, void 0, !0)]),
15073
+ l("div", Mg, [k(t.$slots, "tabs", {}, void 0, !0)]),
15029
15074
  r.showItemsPerPage && r.type == "paginated" ? (T(), o(m, {
15030
15075
  key: 0,
15031
15076
  gap: 4,
@@ -15042,7 +15087,7 @@ function Ig(t, n, r, i, a, u) {
15042
15087
  key: e,
15043
15088
  value: e,
15044
15089
  selected: e === r.itemsPerPageSelected
15045
- }, N(e), 9, Fg))), 128))]),
15090
+ }, N(e), 9, Ng))), 128))]),
15046
15091
  _: 1
15047
15092
  }, 8, ["modelValue", "disabled"])]),
15048
15093
  _: 1
@@ -15057,7 +15102,7 @@ function Ig(t, n, r, i, a, u) {
15057
15102
  })) : s("", !0)
15058
15103
  ], 2);
15059
15104
  }
15060
- var Lg = /* @__PURE__ */ V(Ag, [["render", Ig], ["__scopeId", "data-v-6741fbf9"]]), Rg = {
15105
+ var Fg = /* @__PURE__ */ V(Og, [["render", Pg], ["__scopeId", "data-v-6741fbf9"]]), Ig = {
15061
15106
  name: "ecs-popover-header",
15062
15107
  components: {
15063
15108
  EcsIcon: H,
@@ -15076,19 +15121,19 @@ var Lg = /* @__PURE__ */ V(Ag, [["render", Ig], ["__scopeId", "data-v-6741fbf9"]
15076
15121
  computed: { hasControls() {
15077
15122
  return !!this.$slots.default;
15078
15123
  } }
15079
- }, zg = { class: "ecs-popover-header" }, Bg = { class: "ecs-popover-header-title" }, Vg = {
15124
+ }, Lg = { class: "ecs-popover-header" }, Rg = { class: "ecs-popover-header-title" }, zg = {
15080
15125
  key: 1,
15081
15126
  class: "ecs-popover-header-title-content"
15082
- }, Hg = {
15127
+ }, Bg = {
15083
15128
  key: 2,
15084
15129
  class: "ecs-popover-header-title-controls"
15085
- }, Ug = {
15130
+ }, Vg = {
15086
15131
  key: 0,
15087
15132
  class: "ecs-popover-header-actions"
15088
15133
  };
15089
- function Wg(e, t, n, r, i, a) {
15134
+ function Hg(e, t, n, r, i, a) {
15090
15135
  let u = A("ecs-icon"), p = A("ecs-text-v2");
15091
- return T(), c("header", zg, [l("div", Bg, [
15136
+ return T(), c("header", Lg, [l("div", Rg, [
15092
15137
  n.icon ? (T(), o(u, {
15093
15138
  key: 0,
15094
15139
  type: n.icon,
@@ -15096,15 +15141,15 @@ function Wg(e, t, n, r, i, a) {
15096
15141
  class: "icon",
15097
15142
  color: "#B4B9BE"
15098
15143
  }, null, 8, ["type"])) : s("", !0),
15099
- e.$slots.title ? (T(), c("div", Vg, [k(e.$slots, "title", {}, void 0, !0)])) : s("", !0),
15144
+ e.$slots.title ? (T(), c("div", zg, [k(e.$slots, "title", {}, void 0, !0)])) : s("", !0),
15100
15145
  f(p, { preset: "headline-4" }, {
15101
15146
  default: I(() => [d(N(n.title), 1)]),
15102
15147
  _: 1
15103
15148
  }),
15104
- e.$slots.titleControls ? (T(), c("div", Hg, [k(e.$slots, "titleControls", {}, void 0, !0)])) : s("", !0)
15105
- ]), a.hasControls ? (T(), c("div", Ug, [k(e.$slots, "default", {}, void 0, !0)])) : s("", !0)]);
15149
+ e.$slots.titleControls ? (T(), c("div", Bg, [k(e.$slots, "titleControls", {}, void 0, !0)])) : s("", !0)
15150
+ ]), a.hasControls ? (T(), c("div", Vg, [k(e.$slots, "default", {}, void 0, !0)])) : s("", !0)]);
15106
15151
  }
15107
- var Gg = /* @__PURE__ */ V(Rg, [["render", Wg], ["__scopeId", "data-v-0c73e09d"]]), Kg = {
15152
+ var Ug = /* @__PURE__ */ V(Ig, [["render", Hg], ["__scopeId", "data-v-0c73e09d"]]), Wg = {
15108
15153
  name: "ecs-rating-star-read",
15109
15154
  components: { EcsSkeletonLoader: W },
15110
15155
  props: {
@@ -15129,8 +15174,8 @@ var Gg = /* @__PURE__ */ V(Rg, [["render", Wg], ["__scopeId", "data-v-0c73e09d"]
15129
15174
  computed: { sizeClass() {
15130
15175
  return this.size && this.size !== "" ? `ecs-rating-read-${this.size}` : this.size;
15131
15176
  } }
15132
- }, qg = ["aria-busy", "aria-label"], Jg = ["data-maximum", "data-rating"];
15133
- function Yg(e, t, n, r, i, a) {
15177
+ }, Gg = ["aria-busy", "aria-label"], Kg = ["data-maximum", "data-rating"];
15178
+ function qg(e, t, n, r, i, a) {
15134
15179
  let s = A("ecs-skeleton-loader");
15135
15180
  return T(), c("div", {
15136
15181
  class: b(["ecs-rating-read", [a.sizeClass]]),
@@ -15146,9 +15191,9 @@ function Yg(e, t, n, r, i, a) {
15146
15191
  class: "ecs-stars-read",
15147
15192
  "data-maximum": n.maximum,
15148
15193
  "data-rating": n.rating
15149
- }, null, 8, Jg))], 10, qg);
15194
+ }, null, 8, Kg))], 10, Gg);
15150
15195
  }
15151
- var Xg = /* @__PURE__ */ V(Kg, [["render", Yg], ["__scopeId", "data-v-7e609016"]]), Zg = {
15196
+ var Jg = /* @__PURE__ */ V(Wg, [["render", qg], ["__scopeId", "data-v-7e609016"]]), Yg = {
15152
15197
  name: "ecs-rating-favorability",
15153
15198
  emits: ["click"],
15154
15199
  components: {
@@ -15220,8 +15265,8 @@ var Xg = /* @__PURE__ */ V(Kg, [["render", Yg], ["__scopeId", "data-v-7e609016"]
15220
15265
  methods: { handleClick(e) {
15221
15266
  this.disabled || this.$emit("click", e);
15222
15267
  } }
15223
- }, Qg = ["aria-busy"], $g = ["title"];
15224
- function e_(e, t, n, r, i, a) {
15268
+ }, Xg = ["aria-busy"], Zg = ["title"];
15269
+ function Qg(e, t, n, r, i, a) {
15225
15270
  let u = A("ecs-icon"), d = A("ecs-skeleton-loader");
15226
15271
  return T(), c("div", {
15227
15272
  onClick: t[0] ||= (...e) => a.handleClick && a.handleClick(...e),
@@ -15231,7 +15276,7 @@ function e_(e, t, n, r, i, a) {
15231
15276
  l("div", {
15232
15277
  class: b(["ecs-favorability-button", [a.css, n.loading ? "loading" : ""]]),
15233
15278
  title: a.labelText
15234
- }, [f(u, { type: a.iconType }, null, 8, ["type"])], 10, $g),
15279
+ }, [f(u, { type: a.iconType }, null, 8, ["type"])], 10, Zg),
15235
15280
  n.label ? (T(), c("span", {
15236
15281
  key: 0,
15237
15282
  class: b(["label", n.loading ? "loading" : ""])
@@ -15248,9 +15293,9 @@ function e_(e, t, n, r, i, a) {
15248
15293
  width: 100,
15249
15294
  style: { width: "calc(100% - 30px)" }
15250
15295
  })) : s("", !0)
15251
- ], 10, Qg);
15296
+ ], 10, Xg);
15252
15297
  }
15253
- var t_ = /* @__PURE__ */ V(Zg, [["render", e_], ["__scopeId", "data-v-a6e15633"]]), n_ = {
15298
+ var $g = /* @__PURE__ */ V(Yg, [["render", Qg], ["__scopeId", "data-v-a6e15633"]]), e_ = {
15254
15299
  name: "ecs-quicklinks-link",
15255
15300
  emits: [
15256
15301
  "click",
@@ -15260,8 +15305,8 @@ var t_ = /* @__PURE__ */ V(Zg, [["render", e_], ["__scopeId", "data-v-a6e15633"]
15260
15305
  ],
15261
15306
  components: {
15262
15307
  EcsCheckbox: Er,
15263
- EcsRatingStarRead: Xg,
15264
- EcsRatingFavorability: t_,
15308
+ EcsRatingStarRead: Jg,
15309
+ EcsRatingFavorability: $g,
15265
15310
  EcsSwitch: zr,
15266
15311
  EcsIcon: H,
15267
15312
  EcsFocusRing: U,
@@ -15404,21 +15449,21 @@ var t_ = /* @__PURE__ */ V(Zg, [["render", e_], ["__scopeId", "data-v-a6e15633"]
15404
15449
  created() {
15405
15450
  this.updateVolumes(this.volumes);
15406
15451
  }
15407
- }, r_ = { class: "filter-description" }, i_ = {
15452
+ }, t_ = { class: "filter-description" }, n_ = {
15408
15453
  key: 0,
15409
15454
  class: "meta"
15410
- }, a_ = { key: 0 }, o_ = ["title"], s_ = { style: { "margin-left": "12px" } }, c_ = { class: "static-label" }, l_ = {
15455
+ }, r_ = { key: 0 }, i_ = ["title"], a_ = { style: { "margin-left": "12px" } }, o_ = { class: "static-label" }, s_ = {
15411
15456
  key: 0,
15412
15457
  class: "meta"
15413
- }, u_ = { key: 0 }, d_ = ["title"], f_ = { class: "persona-label" }, p_ = { key: 3 }, m_ = [
15458
+ }, c_ = { key: 0 }, l_ = ["title"], u_ = { class: "persona-label" }, d_ = { key: 3 }, f_ = [
15414
15459
  "onClick",
15415
15460
  "title",
15416
15461
  "aria-label"
15417
- ], h_ = ["aria-label"], g_ = {
15462
+ ], p_ = ["aria-label"], m_ = {
15418
15463
  key: 5,
15419
15464
  class: "meta"
15420
- }, __ = { key: 0 }, v_ = ["title"];
15421
- function y_(t, n, r, i, a, u) {
15465
+ }, h_ = { key: 0 }, g_ = ["title"];
15466
+ function __(t, n, r, i, a, u) {
15422
15467
  let p = A("ecs-icon"), m = A("ecs-focus-ring"), h = A("ecs-rating-favorability"), g = A("ecs-rating-star-read"), _ = A("ecs-switch"), v = A("ecs-avatar"), y = A("ecs-popover-list-item"), x = A("ecs-popover-list"), S = A("ecs-popover"), C = A("ecs-flex-row"), w = A("ecs-checkbox");
15423
15468
  return T(), c("li", { class: b(["ecs-quicklinks-link", [
15424
15469
  u.typeClass,
@@ -15431,11 +15476,11 @@ function y_(t, n, r, i, a, u) {
15431
15476
  role: "button"
15432
15477
  }, [
15433
15478
  f(p, { type: r.icon }, null, 8, ["type"]),
15434
- l("span", r_, N(r.label), 1),
15435
- r.count || r.meta ? (T(), c("small", i_, [r.count ? (T(), c("span", a_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
15479
+ l("span", t_, N(r.label), 1),
15480
+ r.count || r.meta ? (T(), c("small", n_, [r.count ? (T(), c("span", r_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
15436
15481
  key: 1,
15437
15482
  title: r.metaTitle
15438
- }, N(r.meta), 9, o_)) : s("", !0)])) : s("", !0),
15483
+ }, N(r.meta), 9, i_)) : s("", !0)])) : s("", !0),
15439
15484
  f(m)
15440
15485
  ])) : r.type === "favorability" ? (T(), c("div", {
15441
15486
  key: 1,
@@ -15454,11 +15499,11 @@ function y_(t, n, r, i, a, u) {
15454
15499
  "rating",
15455
15500
  "disabled"
15456
15501
  ]),
15457
- l("label", s_, [l("span", c_, N(r.label), 1)]),
15458
- r.count || r.meta ? (T(), c("small", l_, [r.count ? (T(), c("span", u_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
15502
+ l("label", a_, [l("span", o_, N(r.label), 1)]),
15503
+ r.count || r.meta ? (T(), c("small", s_, [r.count ? (T(), c("span", c_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
15459
15504
  key: 1,
15460
15505
  title: r.metaTitle
15461
- }, N(r.meta), 9, d_)) : s("", !0)])) : s("", !0),
15506
+ }, N(r.meta), 9, l_)) : s("", !0)])) : s("", !0),
15462
15507
  f(m)
15463
15508
  ])) : (T(), o(w, {
15464
15509
  key: 2,
@@ -15494,7 +15539,7 @@ function y_(t, n, r, i, a, u) {
15494
15539
  "name",
15495
15540
  "relevant-badge",
15496
15541
  "backgroundColor"
15497
- ]), l("span", f_, N(r.label || r.persona.name), 1)], 64)) : (T(), c("span", p_, N(r.label), 1)),
15542
+ ]), l("span", u_, N(r.label || r.persona.name), 1)], 64)) : (T(), c("span", d_, N(r.label), 1)),
15498
15543
  a.localVolumes.length ? (T(), o(C, {
15499
15544
  key: 4,
15500
15545
  gap: 2,
@@ -15506,7 +15551,7 @@ function y_(t, n, r, i, a, u) {
15506
15551
  onClick: (t) => u.toggleVolume(e.id),
15507
15552
  title: `${e.name} (${e.date})`,
15508
15553
  "aria-label": `Volume ${e.id}${e.active ? " active" : ""}`
15509
- }, N(e.id), 11, m_))), 128)), a.localVolumes.length > 3 ? (T(), o(S, {
15554
+ }, N(e.id), 11, f_))), 128)), a.localVolumes.length > 3 ? (T(), o(S, {
15510
15555
  key: 0,
15511
15556
  disabled: r.disabled || null
15512
15557
  }, {
@@ -15535,15 +15580,15 @@ function y_(t, n, r, i, a, u) {
15535
15580
  }, [f(p, {
15536
15581
  type: "more",
15537
15582
  size: "18"
15538
- })], 10, h_)]),
15583
+ })], 10, p_)]),
15539
15584
  _: 1
15540
15585
  }, 8, ["disabled"])) : s("", !0)]),
15541
15586
  _: 1
15542
15587
  })) : s("", !0),
15543
- r.count || r.meta ? (T(), c("small", g_, [r.count ? (T(), c("span", __, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
15588
+ r.count || r.meta ? (T(), c("small", m_, [r.count ? (T(), c("span", h_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
15544
15589
  key: 1,
15545
15590
  title: r.metaTitle
15546
- }, N(r.meta), 9, v_)) : s("", !0)])) : s("", !0)
15591
+ }, N(r.meta), 9, g_)) : s("", !0)])) : s("", !0)
15547
15592
  ]),
15548
15593
  _: 1
15549
15594
  }, 8, [
@@ -15554,7 +15599,7 @@ function y_(t, n, r, i, a, u) {
15554
15599
  "indeterminate"
15555
15600
  ]))], 2);
15556
15601
  }
15557
- var b_ = /* @__PURE__ */ V(n_, [["render", y_], ["__scopeId", "data-v-bafc258b"]]), x_ = {
15602
+ var v_ = /* @__PURE__ */ V(e_, [["render", __], ["__scopeId", "data-v-bafc258b"]]), y_ = {
15558
15603
  name: "ecs-range",
15559
15604
  mixins: [J],
15560
15605
  emits: ["update:modelValue"],
@@ -15614,21 +15659,21 @@ var b_ = /* @__PURE__ */ V(n_, [["render", y_], ["__scopeId", "data-v-bafc258b"]
15614
15659
  watch: { modelValue(e) {
15615
15660
  this.updateProgress(e);
15616
15661
  } }
15617
- }, S_ = [
15662
+ }, b_ = [
15618
15663
  "id",
15619
15664
  "disabled",
15620
15665
  "min",
15621
15666
  "max",
15622
15667
  "value",
15623
15668
  "step"
15624
- ], C_ = {
15669
+ ], x_ = {
15625
15670
  key: 0,
15626
15671
  class: "ecs-range-markers"
15627
- }, w_ = {
15672
+ }, S_ = {
15628
15673
  key: 1,
15629
15674
  class: "ecs-range-labels"
15630
15675
  };
15631
- function T_(t, n, r, i, a, o) {
15676
+ function C_(t, n, r, i, a, o) {
15632
15677
  return T(), c("div", { class: b(["ecs-range", { "has-list": r.list }]) }, [
15633
15678
  l("input", {
15634
15679
  ref: "rangeInput",
@@ -15641,18 +15686,18 @@ function T_(t, n, r, i, a, o) {
15641
15686
  value: r.modelValue,
15642
15687
  step: r.step === "any" ? "any" : r.step,
15643
15688
  class: "ecs-range-input"
15644
- }, null, 40, S_),
15645
- o.shouldShowMarkers ? (T(), c("div", C_, [(T(!0), c(e, null, O(o.stepCount, (e, t) => (T(), c("span", {
15689
+ }, null, 40, b_),
15690
+ o.shouldShowMarkers ? (T(), c("div", x_, [(T(!0), c(e, null, O(o.stepCount, (e, t) => (T(), c("span", {
15646
15691
  key: t,
15647
15692
  class: "ecs-range-marker"
15648
15693
  }))), 128))])) : s("", !0),
15649
- r.list ? (T(), c("div", w_, [(T(!0), c(e, null, O(r.list, (e, t) => (T(), c("span", {
15694
+ r.list ? (T(), c("div", S_, [(T(!0), c(e, null, O(r.list, (e, t) => (T(), c("span", {
15650
15695
  key: t,
15651
15696
  class: "ecs-range-label"
15652
15697
  }, N(e), 1))), 128))])) : s("", !0)
15653
15698
  ], 2);
15654
15699
  }
15655
- var E_ = /* @__PURE__ */ V(x_, [["render", T_], ["__scopeId", "data-v-b6f3e6b0"]]), D_ = {
15700
+ var w_ = /* @__PURE__ */ V(y_, [["render", C_], ["__scopeId", "data-v-b6f3e6b0"]]), T_ = {
15656
15701
  name: "ecs-rating-star-write",
15657
15702
  emits: ["click", "reset"],
15658
15703
  props: {
@@ -15673,15 +15718,15 @@ var E_ = /* @__PURE__ */ V(x_, [["render", T_], ["__scopeId", "data-v-b6f3e6b0"]
15673
15718
  default: !1
15674
15719
  }
15675
15720
  }
15676
- }, O_ = ["disabled"], k_ = { class: "ecs-rating-write" }, A_ = ["checked", "disabled"], j_ = ["checked", "disabled"], M_ = ["checked", "disabled"], N_ = ["checked", "disabled"];
15677
- function P_(e, t, n, r, i, a) {
15721
+ }, E_ = ["disabled"], D_ = { class: "ecs-rating-write" }, O_ = ["checked", "disabled"], k_ = ["checked", "disabled"], A_ = ["checked", "disabled"], j_ = ["checked", "disabled"];
15722
+ function M_(e, t, n, r, i, a) {
15678
15723
  return T(), c("div", { class: b(["ecs-rating-form", [n.large ? "ecs-rating-form-lg" : ""]]) }, [n.unrated ? (T(), c("button", {
15679
15724
  key: 0,
15680
15725
  onClick: t[0] ||= (t) => e.$emit("reset"),
15681
15726
  disabled: n.disabled,
15682
15727
  class: b(["ecs-rating-reset", { active: n.value == 0 }]),
15683
15728
  "aria-label": "Reset Rating"
15684
- }, [...t[5] ||= [u("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 18 18\" data-v-0d4c1ecb><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(-1215 -543)\" data-v-0d4c1ecb><polygon stroke=\"currentColor\" points=\"1224.145 555.692 1220.347 557.69 1221.073 553.46 1218 550.465 1222.246 549.848 1224.146 546 1226.044 549.848 1230.291 550.465 1227.221 553.46 1227.945 557.69 1224.147 555.692\" data-v-0d4c1ecb></polygon><g transform=\"rotate(-45 1281.298 -1191.488)\" data-v-0d4c1ecb><rect width=\"15\" height=\"1.5\" x=\".101\" y=\"1.899\" fill=\"#FFFFFF\" data-v-0d4c1ecb></rect><rect width=\"15\" height=\"1\" x=\".096\" y=\".904\" fill=\"currentColor\" data-v-0d4c1ecb></rect></g></g></svg>", 1)]], 10, O_)) : s("", !0), l("div", k_, [
15729
+ }, [...t[5] ||= [u("<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 18 18\" data-v-0d4c1ecb><g fill=\"none\" fill-rule=\"evenodd\" transform=\"translate(-1215 -543)\" data-v-0d4c1ecb><polygon stroke=\"currentColor\" points=\"1224.145 555.692 1220.347 557.69 1221.073 553.46 1218 550.465 1222.246 549.848 1224.146 546 1226.044 549.848 1230.291 550.465 1227.221 553.46 1227.945 557.69 1224.147 555.692\" data-v-0d4c1ecb></polygon><g transform=\"rotate(-45 1281.298 -1191.488)\" data-v-0d4c1ecb><rect width=\"15\" height=\"1.5\" x=\".101\" y=\"1.899\" fill=\"#FFFFFF\" data-v-0d4c1ecb></rect><rect width=\"15\" height=\"1\" x=\".096\" y=\".904\" fill=\"currentColor\" data-v-0d4c1ecb></rect></g></g></svg>", 1)]], 10, E_)) : s("", !0), l("div", D_, [
15685
15730
  l("input", {
15686
15731
  type: "radio",
15687
15732
  value: "1",
@@ -15689,7 +15734,7 @@ function P_(e, t, n, r, i, a) {
15689
15734
  onClick: t[1] ||= (t) => e.$emit("click", t),
15690
15735
  checked: n.value == 1 || null,
15691
15736
  disabled: n.disabled
15692
- }, null, 8, A_),
15737
+ }, null, 8, O_),
15693
15738
  t[6] ||= l("i", null, null, -1),
15694
15739
  l("input", {
15695
15740
  type: "radio",
@@ -15698,7 +15743,7 @@ function P_(e, t, n, r, i, a) {
15698
15743
  onClick: t[2] ||= (t) => e.$emit("click", t),
15699
15744
  checked: n.value == 2 || null,
15700
15745
  disabled: n.disabled
15701
- }, null, 8, j_),
15746
+ }, null, 8, k_),
15702
15747
  t[7] ||= l("i", null, null, -1),
15703
15748
  l("input", {
15704
15749
  type: "radio",
@@ -15707,7 +15752,7 @@ function P_(e, t, n, r, i, a) {
15707
15752
  onClick: t[3] ||= (t) => e.$emit("click", t),
15708
15753
  checked: n.value == 3 || null,
15709
15754
  disabled: n.disabled
15710
- }, null, 8, M_),
15755
+ }, null, 8, A_),
15711
15756
  t[8] ||= l("i", null, null, -1),
15712
15757
  l("input", {
15713
15758
  type: "radio",
@@ -15716,11 +15761,11 @@ function P_(e, t, n, r, i, a) {
15716
15761
  onClick: t[4] ||= (t) => e.$emit("click", t),
15717
15762
  checked: n.value == 4 || null,
15718
15763
  disabled: n.disabled
15719
- }, null, 8, N_),
15764
+ }, null, 8, j_),
15720
15765
  t[9] ||= l("i", null, null, -1)
15721
15766
  ])], 2);
15722
15767
  }
15723
- var F_ = /* @__PURE__ */ V(D_, [["render", P_], ["__scopeId", "data-v-0d4c1ecb"]]), I_ = {
15768
+ var N_ = /* @__PURE__ */ V(T_, [["render", M_], ["__scopeId", "data-v-0d4c1ecb"]]), P_ = {
15724
15769
  name: "ecs-section",
15725
15770
  props: {
15726
15771
  title: { type: String },
@@ -15766,11 +15811,11 @@ var F_ = /* @__PURE__ */ V(D_, [["render", P_], ["__scopeId", "data-v-0d4c1ecb"]
15766
15811
  return `ecs-section-content-padding-${this.contentPadding}`;
15767
15812
  }
15768
15813
  }
15769
- }, L_ = {
15814
+ }, F_ = {
15770
15815
  key: 0,
15771
15816
  class: "ecs-section-controls"
15772
15817
  };
15773
- function R_(e, t, n, r, i, a) {
15818
+ function I_(e, t, n, r, i, a) {
15774
15819
  return T(), c("div", { class: b(["ecs-section", [
15775
15820
  n.borderTop ? "ecs-section-border-top" : "",
15776
15821
  n.borderBottom ? "ecs-section-border-bottom" : "",
@@ -15779,9 +15824,9 @@ function R_(e, t, n, r, i, a) {
15779
15824
  ]]) }, [n.title ? (T(), c("h3", {
15780
15825
  key: 0,
15781
15826
  class: b(["ecs-section-headline", [n.headlineBold ? "ecs-headline-section-bold" : "ecs-headline-section", e.$slots.controls ? "has-buttons" : ""]])
15782
- }, [d(N(n.title) + " ", 1), e.$slots.controls ? (T(), c("div", L_, [k(e.$slots, "controls", {}, void 0, !0)])) : s("", !0)], 2)) : s("", !0), l("div", { class: b(["ecs-section-content", [n.title ? "" : "equal", a.contentPaddingClass]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2)], 2);
15827
+ }, [d(N(n.title) + " ", 1), e.$slots.controls ? (T(), c("div", F_, [k(e.$slots, "controls", {}, void 0, !0)])) : s("", !0)], 2)) : s("", !0), l("div", { class: b(["ecs-section-content", [n.title ? "" : "equal", a.contentPaddingClass]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2)], 2);
15783
15828
  }
15784
- var z_ = /* @__PURE__ */ V(I_, [["render", R_], ["__scopeId", "data-v-cdcc0680"]]), B_ = {
15829
+ var L_ = /* @__PURE__ */ V(P_, [["render", I_], ["__scopeId", "data-v-cdcc0680"]]), R_ = {
15785
15830
  name: "ecs-segments",
15786
15831
  emits: ["click"],
15787
15832
  components: { EcsIcon: H },
@@ -15807,15 +15852,15 @@ var z_ = /* @__PURE__ */ V(I_, [["render", R_], ["__scopeId", "data-v-cdcc0680"]
15807
15852
  default: !1
15808
15853
  }
15809
15854
  }
15810
- }, V_ = ["for", "disabled"], H_ = [
15855
+ }, z_ = ["for", "disabled"], B_ = [
15811
15856
  "name",
15812
15857
  "value",
15813
15858
  "id",
15814
15859
  "checked",
15815
15860
  "disabled",
15816
15861
  "onClick"
15817
- ], U_ = ["title"];
15818
- function W_(t, n, r, i, a, u) {
15862
+ ], V_ = ["title"];
15863
+ function H_(t, n, r, i, a, u) {
15819
15864
  let f = A("ecs-icon");
15820
15865
  return T(), c("div", { class: b(["ecs-segments", [r.inline ? "ecs-segments-inline" : ""]]) }, [(T(!0), c(e, null, O(r.options, (e) => (T(), c("label", {
15821
15866
  key: e.id,
@@ -15829,7 +15874,7 @@ function W_(t, n, r, i, a, u) {
15829
15874
  checked: r.value.toLowerCase() == e.id.toLowerCase() || null,
15830
15875
  disabled: e.disabled || r.disabled,
15831
15876
  onClick: (n) => t.$emit("click", e.id)
15832
- }, null, 8, H_), l("span", {
15877
+ }, null, 8, B_), l("span", {
15833
15878
  class: "ecs-segment",
15834
15879
  title: e.title
15835
15880
  }, [e.icon ? (T(), o(f, {
@@ -15838,9 +15883,9 @@ function W_(t, n, r, i, a, u) {
15838
15883
  type: e.icon,
15839
15884
  size: "20",
15840
15885
  color: "#2F333C"
15841
- }, null, 8, ["class", "type"])) : s("", !0), d(" " + N(e.label), 1)], 8, U_)], 8, V_))), 128))], 2);
15886
+ }, null, 8, ["class", "type"])) : s("", !0), d(" " + N(e.label), 1)], 8, V_)], 8, z_))), 128))], 2);
15842
15887
  }
15843
- var G_ = /* @__PURE__ */ V(B_, [["render", W_], ["__scopeId", "data-v-1cb14db0"]]), K_ = {
15888
+ var U_ = /* @__PURE__ */ V(R_, [["render", H_], ["__scopeId", "data-v-1cb14db0"]]), W_ = {
15844
15889
  name: "ecs-selection-grid",
15845
15890
  emits: ["update:modelValue"],
15846
15891
  components: {
@@ -15891,12 +15936,12 @@ var G_ = /* @__PURE__ */ V(B_, [["render", W_], ["__scopeId", "data-v-1cb14db0"]
15891
15936
  }
15892
15937
  }
15893
15938
  }
15894
- }, q_ = ["role"], J_ = [
15939
+ }, G_ = ["role"], K_ = [
15895
15940
  "onClick",
15896
15941
  "role",
15897
15942
  "aria-checked"
15898
15943
  ];
15899
- function Y_(t, n, r, i, a, l) {
15944
+ function q_(t, n, r, i, a, l) {
15900
15945
  let u = A("ecs-icon"), p = A("ecs-file-icon"), m = A("ecs-text-v2"), h = A("ecs-flex-row");
15901
15946
  return T(), c("div", {
15902
15947
  class: "ecs-selection-grid",
@@ -15933,14 +15978,14 @@ function Y_(t, n, r, i, a, l) {
15933
15978
  _: 2
15934
15979
  }, 1024)) : s("", !0)]),
15935
15980
  _: 2
15936
- }, 1024)], 10, J_))), 128))], 12, q_);
15981
+ }, 1024)], 10, K_))), 128))], 12, G_);
15937
15982
  }
15938
- var X_ = /* @__PURE__ */ V(K_, [["render", Y_], ["__scopeId", "data-v-8b0a7154"]]), Z_ = {
15983
+ var J_ = /* @__PURE__ */ V(W_, [["render", q_], ["__scopeId", "data-v-8b0a7154"]]), Y_ = {
15939
15984
  name: "ecs-select-tile",
15940
15985
  emits: ["click"],
15941
15986
  components: {
15942
15987
  EcsFocusRing: U,
15943
- EcsIllustration: bp
15988
+ EcsIllustration: vp
15944
15989
  },
15945
15990
  props: {
15946
15991
  label: {
@@ -15973,14 +16018,14 @@ var X_ = /* @__PURE__ */ V(K_, [["render", Y_], ["__scopeId", "data-v-8b0a7154"]
15973
16018
  default: !1
15974
16019
  }
15975
16020
  }
15976
- }, Q_ = ["aria-checked", "tabindex"], $_ = {
16021
+ }, X_ = ["aria-checked", "tabindex"], Z_ = {
15977
16022
  key: 1,
15978
16023
  class: "label"
15979
- }, ev = {
16024
+ }, Q_ = {
15980
16025
  key: 2,
15981
16026
  class: "help"
15982
16027
  };
15983
- function tv(e, t, n, r, i, a) {
16028
+ function $_(e, t, n, r, i, a) {
15984
16029
  let u = A("ecs-illustration"), d = A("ecs-focus-ring");
15985
16030
  return T(), c("div", {
15986
16031
  onClick: t[0] ||= (t) => e.$emit("click", t),
@@ -15995,23 +16040,23 @@ function tv(e, t, n, r, i, a) {
15995
16040
  key: 0,
15996
16041
  type: n.illustration
15997
16042
  }, null, 8, ["type"])) : s("", !0),
15998
- n.label ? (T(), c("div", $_, N(n.label), 1)) : s("", !0),
15999
- n.helpText ? (T(), c("div", ev, N(n.helpText), 1)) : s("", !0),
16043
+ n.label ? (T(), c("div", Z_, N(n.label), 1)) : s("", !0),
16044
+ n.helpText ? (T(), c("div", Q_, N(n.helpText), 1)) : s("", !0),
16000
16045
  f(d, {
16001
16046
  inset: -6,
16002
16047
  radius: 12
16003
16048
  })
16004
- ], 42, Q_);
16049
+ ], 42, X_);
16005
16050
  }
16006
- var nv = /* @__PURE__ */ V(Z_, [["render", tv], ["__scopeId", "data-v-a5e9bd1b"]]), rv = { name: "ecs-sequence-map" }, iv = {
16051
+ var ev = /* @__PURE__ */ V(Y_, [["render", $_], ["__scopeId", "data-v-a5e9bd1b"]]), tv = { name: "ecs-sequence-map" }, nv = {
16007
16052
  class: "ecs-sequence-map",
16008
16053
  role: "navigation",
16009
16054
  "aria-label": "Steps"
16010
16055
  };
16011
- function av(e, t, n, r, i, a) {
16012
- return T(), c("div", iv, [k(e.$slots, "default", {}, void 0, !0)]);
16056
+ function rv(e, t, n, r, i, a) {
16057
+ return T(), c("div", nv, [k(e.$slots, "default", {}, void 0, !0)]);
16013
16058
  }
16014
- var ov = /* @__PURE__ */ V(rv, [["render", av], ["__scopeId", "data-v-69c3c73d"]]), sv = {
16059
+ var iv = /* @__PURE__ */ V(tv, [["render", rv], ["__scopeId", "data-v-69c3c73d"]]), av = {
16015
16060
  name: "ecs-sequence-map-button",
16016
16061
  emits: ["click"],
16017
16062
  components: {
@@ -16040,8 +16085,8 @@ var ov = /* @__PURE__ */ V(rv, [["render", av], ["__scopeId", "data-v-69c3c73d"]
16040
16085
  default: !1
16041
16086
  }
16042
16087
  }
16043
- }, cv = ["aria-busy"], lv = { class: "count" };
16044
- function uv(e, t, n, r, i, a) {
16088
+ }, ov = ["aria-busy"], sv = { class: "count" };
16089
+ function cv(e, t, n, r, i, a) {
16045
16090
  let u = A("ecs-icon"), p = A("ecs-focus-ring");
16046
16091
  return T(), c("button", {
16047
16092
  onClick: t[0] ||= (t) => e.$emit("click", t),
@@ -16053,7 +16098,7 @@ function uv(e, t, n, r, i, a) {
16053
16098
  ]]),
16054
16099
  "aria-busy": n.loading || null
16055
16100
  }, [
16056
- l("span", lv, [d(N(n.step) + " ", 1), n.loading ? (T(), o(u, {
16101
+ l("span", sv, [d(N(n.step) + " ", 1), n.loading ? (T(), o(u, {
16057
16102
  key: 0,
16058
16103
  type: "loading",
16059
16104
  class: "loading",
@@ -16062,9 +16107,9 @@ function uv(e, t, n, r, i, a) {
16062
16107
  k(e.$slots, "default", {}, void 0, !0),
16063
16108
  f(p, { inset: 4 }),
16064
16109
  t[1] ||= l("div", { class: "step-indicator" }, null, -1)
16065
- ], 10, cv);
16110
+ ], 10, ov);
16066
16111
  }
16067
- var dv = /* @__PURE__ */ V(sv, [["render", uv], ["__scopeId", "data-v-397f53f1"]]), fv = {
16112
+ var lv = /* @__PURE__ */ V(av, [["render", cv], ["__scopeId", "data-v-397f53f1"]]), uv = {
16068
16113
  name: "ecs-tab-bar",
16069
16114
  props: {
16070
16115
  type: {
@@ -16102,30 +16147,30 @@ var dv = /* @__PURE__ */ V(sv, [["render", uv], ["__scopeId", "data-v-397f53f1"]
16102
16147
  if (this.type === "standard" && this.direction === "column" || this.type === "sidebar") return "vertical";
16103
16148
  }
16104
16149
  }
16105
- }, pv = ["aria-orientation", "data-orientation"];
16106
- function mv(e, t, n, r, i, a) {
16150
+ }, dv = ["aria-orientation", "data-orientation"];
16151
+ function fv(e, t, n, r, i, a) {
16107
16152
  return T(), c("div", {
16108
16153
  class: b(["ecs-tab-bar", [a.typeClass, a.directionClass]]),
16109
16154
  role: "tablist",
16110
16155
  "aria-orientation": a.tabOrientation,
16111
16156
  "data-orientation": a.tabOrientation
16112
- }, [k(e.$slots, "default", {}, void 0, !0)], 10, pv);
16157
+ }, [k(e.$slots, "default", {}, void 0, !0)], 10, dv);
16113
16158
  }
16114
- var hv = /* @__PURE__ */ V(fv, [["render", mv], ["__scopeId", "data-v-d3452fc7"]]), gv = {
16159
+ var pv = /* @__PURE__ */ V(uv, [["render", fv], ["__scopeId", "data-v-d3452fc7"]]), mv = {
16115
16160
  name: "ecs-tabs",
16116
16161
  props: { fill: {
16117
16162
  type: Boolean,
16118
16163
  default: !1
16119
16164
  } }
16120
16165
  };
16121
- function _v(e, t, n, r, i, a) {
16166
+ function hv(e, t, n, r, i, a) {
16122
16167
  return T(), c("div", { class: b(["ecs-tab-content", [n.fill ? "ecs-tab-content-fill" : ""]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2);
16123
16168
  }
16124
- var vv = /* @__PURE__ */ V(gv, [["render", _v], ["__scopeId", "data-v-0fe19168"]]), yv = {
16169
+ var gv = /* @__PURE__ */ V(mv, [["render", hv], ["__scopeId", "data-v-0fe19168"]]), _v = {
16125
16170
  name: "ecs-sidebar",
16126
16171
  components: {
16127
- EcsTabBar: hv,
16128
- EcsTabs: vv
16172
+ EcsTabBar: pv,
16173
+ EcsTabs: gv
16129
16174
  },
16130
16175
  props: {
16131
16176
  expanded: {
@@ -16159,13 +16204,13 @@ var vv = /* @__PURE__ */ V(gv, [["render", _v], ["__scopeId", "data-v-0fe19168"]
16159
16204
  return this.expanded ? "height: calc(100% - 10px)" : "height:" + (2 + 36 * this.tabCount) + "px";
16160
16205
  }
16161
16206
  }
16162
- }, bv = { class: "ecs-sidebar-tabs" };
16163
- function xv(e, t, n, r, i, a) {
16207
+ }, vv = { class: "ecs-sidebar-tabs" };
16208
+ function yv(e, t, n, r, i, a) {
16164
16209
  let o = A("ecs-tab-bar"), s = A("ecs-tabs");
16165
16210
  return T(), c("aside", {
16166
16211
  class: b(["ecs-sidebar", [a.sizeClass, a.expandClass]]),
16167
16212
  style: S(a.height)
16168
- }, [l("div", bv, [f(o, { type: "sidebar" }, {
16213
+ }, [l("div", vv, [f(o, { type: "sidebar" }, {
16169
16214
  default: I(() => [k(e.$slots, "tab-buttons", {}, void 0, !0)]),
16170
16215
  _: 3
16171
16216
  })]), f(s, null, {
@@ -16173,7 +16218,7 @@ function xv(e, t, n, r, i, a) {
16173
16218
  _: 3
16174
16219
  })], 6);
16175
16220
  }
16176
- var Sv = /* @__PURE__ */ V(yv, [["render", xv], ["__scopeId", "data-v-55f62417"]]), Cv = {
16221
+ var bv = /* @__PURE__ */ V(_v, [["render", yv], ["__scopeId", "data-v-55f62417"]]), xv = {
16177
16222
  name: "ecs-sidebar-content",
16178
16223
  props: {
16179
16224
  indent: {
@@ -16186,17 +16231,17 @@ var Sv = /* @__PURE__ */ V(yv, [["render", xv], ["__scopeId", "data-v-55f62417"]
16186
16231
  }
16187
16232
  }
16188
16233
  };
16189
- function wv(e, t, n, r, i, a) {
16234
+ function Sv(e, t, n, r, i, a) {
16190
16235
  return T(), c("div", { class: b(["ecs-sidebar-content scrollbar", [n.indent ? "ecs-sidebar-content-indent" : "", n.blockContent ? "blocked" : ""]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2);
16191
16236
  }
16192
- var Tv = /* @__PURE__ */ V(Cv, [["render", wv], ["__scopeId", "data-v-197087d5"]]), Ev = {
16237
+ var Cv = /* @__PURE__ */ V(xv, [["render", Sv], ["__scopeId", "data-v-197087d5"]]), wv = {
16193
16238
  name: "ecs-sidebar-footer",
16194
16239
  props: { condensed: {
16195
16240
  type: Boolean,
16196
16241
  default: !1
16197
16242
  } }
16198
16243
  };
16199
- function Dv(e, t, n, r, i, a) {
16244
+ function Tv(e, t, n, r, i, a) {
16200
16245
  return T(), c("footer", { class: b(["ecs-sidebar-footer", [e.$slots.extension ? "has-extension" : ""]]) }, [
16201
16246
  k(e.$slots, "alert", {}, void 0, !0),
16202
16247
  e.$slots.extension ? (T(), c("div", {
@@ -16206,7 +16251,7 @@ function Dv(e, t, n, r, i, a) {
16206
16251
  l("div", { class: b(["ecs-sidebar-footer-inner", [n.condensed ? "ecs-sidebar-footer-inner-condensed" : ""]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2)
16207
16252
  ], 2);
16208
16253
  }
16209
- var Ov = /* @__PURE__ */ V(Ev, [["render", Dv], ["__scopeId", "data-v-0c35a678"]]), kv = {
16254
+ var Ev = /* @__PURE__ */ V(wv, [["render", Tv], ["__scopeId", "data-v-0c35a678"]]), Dv = {
16210
16255
  name: "ecs-sidebar-header",
16211
16256
  props: {
16212
16257
  subHeaderExpanded: {
@@ -16222,40 +16267,40 @@ var Ov = /* @__PURE__ */ V(Ev, [["render", Dv], ["__scopeId", "data-v-0c35a678"]
16222
16267
  default: !1
16223
16268
  }
16224
16269
  }
16225
- }, Av = { class: "ecs-sidebar-header" }, jv = {
16270
+ }, Ov = { class: "ecs-sidebar-header" }, kv = {
16226
16271
  key: 0,
16227
16272
  class: "ecs-sidebar-header-row"
16228
- }, Mv = { class: "ecs-sidebar-header-title" }, Nv = {
16273
+ }, Av = { class: "ecs-sidebar-header-title" }, jv = {
16229
16274
  key: 0,
16230
16275
  class: "ecs-sidebar-header-controls"
16231
- }, Pv = {
16276
+ }, Mv = {
16232
16277
  key: 0,
16233
16278
  class: "ecs-sidebar-header-row sub-header"
16234
- }, Fv = {
16279
+ }, Nv = {
16235
16280
  key: 0,
16236
16281
  class: "ecs-sidebar-header-row sub-header"
16237
16282
  };
16238
- function Iv(e, t, n, i, a, o) {
16239
- return T(), c("header", Av, [
16240
- n.hidePrimaryHeader ? s("", !0) : (T(), c("div", jv, [l("div", Mv, [k(e.$slots, "default", {}, void 0, !0)]), e.$slots["primary-controls"] ? (T(), c("div", Nv, [k(e.$slots, "primary-controls", {}, void 0, !0)])) : s("", !0)])),
16283
+ function Pv(e, t, n, i, a, o) {
16284
+ return T(), c("header", Ov, [
16285
+ n.hidePrimaryHeader ? s("", !0) : (T(), c("div", kv, [l("div", Av, [k(e.$slots, "default", {}, void 0, !0)]), e.$slots["primary-controls"] ? (T(), c("div", jv, [k(e.$slots, "primary-controls", {}, void 0, !0)])) : s("", !0)])),
16241
16286
  f(r, { name: "expansion" }, {
16242
- default: I(() => [n.subHeaderExpanded && e.$slots.subheader ? (T(), c("div", Pv, [k(e.$slots, "subheader", {}, void 0, !0)])) : s("", !0)]),
16287
+ default: I(() => [n.subHeaderExpanded && e.$slots.subheader ? (T(), c("div", Mv, [k(e.$slots, "subheader", {}, void 0, !0)])) : s("", !0)]),
16243
16288
  _: 3
16244
16289
  }),
16245
16290
  f(r, { name: "expansion" }, {
16246
- default: I(() => [n.tertiaryHeaderExpanded && e.$slots.tertiaryheader ? (T(), c("div", Fv, [k(e.$slots, "tertiaryheader", {}, void 0, !0)])) : s("", !0)]),
16291
+ default: I(() => [n.tertiaryHeaderExpanded && e.$slots.tertiaryheader ? (T(), c("div", Nv, [k(e.$slots, "tertiaryheader", {}, void 0, !0)])) : s("", !0)]),
16247
16292
  _: 3
16248
16293
  })
16249
16294
  ]);
16250
16295
  }
16251
- var Lv = /* @__PURE__ */ V(kv, [["render", Iv], ["__scopeId", "data-v-54e7aa5c"]]), Rv = { name: "ecs-sidebar-list" }, zv = {
16296
+ var Fv = /* @__PURE__ */ V(Dv, [["render", Pv], ["__scopeId", "data-v-54e7aa5c"]]), Iv = { name: "ecs-sidebar-list" }, Lv = {
16252
16297
  class: "ecs-sidebar-list",
16253
16298
  role: "list"
16254
16299
  };
16255
- function Bv(e, t, n, r, i, a) {
16256
- return T(), c("div", zv, [k(e.$slots, "default", {}, void 0, !0)]);
16300
+ function Rv(e, t, n, r, i, a) {
16301
+ return T(), c("div", Lv, [k(e.$slots, "default", {}, void 0, !0)]);
16257
16302
  }
16258
- var Vv = /* @__PURE__ */ V(Rv, [["render", Bv], ["__scopeId", "data-v-81bc3c0a"]]), Hv = {
16303
+ var zv = /* @__PURE__ */ V(Iv, [["render", Rv], ["__scopeId", "data-v-81bc3c0a"]]), Bv = {
16259
16304
  name: "ecs-sidebar-list-item",
16260
16305
  emits: ["click", "select"],
16261
16306
  components: {
@@ -16355,16 +16400,16 @@ var Vv = /* @__PURE__ */ V(Rv, [["render", Bv], ["__scopeId", "data-v-81bc3c0a"]
16355
16400
  });
16356
16401
  }
16357
16402
  }
16358
- }, Uv = {
16403
+ }, Vv = {
16359
16404
  class: "ecs-sidebar-list-item",
16360
16405
  role: "listitem"
16361
- }, Wv = ["tabindex"], Gv = { class: "ecs-sidebar-list-item-content" }, Kv = { class: "ecs-sidebar-list-item-label" }, qv = { class: "ecs-sidebar-list-item-label-text" }, Jv = { class: "ecs-sidebar-list-item-subline" }, Yv = {
16406
+ }, Hv = ["tabindex"], Uv = { class: "ecs-sidebar-list-item-content" }, Wv = { class: "ecs-sidebar-list-item-label" }, Gv = { class: "ecs-sidebar-list-item-label-text" }, Kv = { class: "ecs-sidebar-list-item-subline" }, qv = {
16362
16407
  key: 0,
16363
16408
  class: "ecs-sidebar-list-item-subline secondary"
16364
16409
  };
16365
- function Xv(t, n, r, i, a, u) {
16410
+ function Jv(t, n, r, i, a, u) {
16366
16411
  let p = A("ecs-checkbox"), m = A("ecs-skeleton-loader"), h = A("ecs-avatar"), g = A("ecs-icon"), _ = A("ecs-flex-row");
16367
- return T(), c("div", Uv, [l("div", {
16412
+ return T(), c("div", Vv, [l("div", {
16368
16413
  onClick: n[1] ||= (...e) => u.handleClick && u.handleClick(...e),
16369
16414
  onKeydown: [n[2] ||= L((...e) => u.handleClick && u.handleClick(...e), ["enter"]), n[3] ||= L(R((...e) => u.handleClick && u.handleClick(...e), ["prevent"]), ["space"])],
16370
16415
  class: b(["ecs-sidebar-list-item-state", {
@@ -16421,12 +16466,12 @@ function Xv(t, n, r, i, a, u) {
16421
16466
  size: "30",
16422
16467
  color: r.iconColor
16423
16468
  }, null, 8, ["type", "color"])) : s("", !0),
16424
- l("div", Gv, [l("span", Kv, [r.loading ? (T(), o(m, {
16469
+ l("div", Uv, [l("span", Wv, [r.loading ? (T(), o(m, {
16425
16470
  key: 0,
16426
16471
  type: "single",
16427
16472
  "line-height": 4,
16428
16473
  width: "random"
16429
- })) : (T(), c(e, { key: 1 }, [l("span", qv, [k(t.$slots, "default", {}, void 0, !0)]), r.ai ? (T(), o(g, {
16474
+ })) : (T(), c(e, { key: 1 }, [l("span", Gv, [k(t.$slots, "default", {}, void 0, !0)]), r.ai ? (T(), o(g, {
16430
16475
  key: 0,
16431
16476
  type: "ecai-icon",
16432
16477
  size: "16",
@@ -16437,12 +16482,12 @@ function Xv(t, n, r, i, a, u) {
16437
16482
  gap: 8,
16438
16483
  justify: "between"
16439
16484
  }, {
16440
- default: I(() => [l("span", Jv, [r.loading ? (T(), o(m, {
16485
+ default: I(() => [l("span", Kv, [r.loading ? (T(), o(m, {
16441
16486
  key: 0,
16442
16487
  type: "single",
16443
16488
  "line-height": 2,
16444
16489
  width: "random"
16445
- })) : r.subline ? (T(), c(e, { key: 1 }, [d(N(r.subline), 1)], 64)) : s("", !0)]), r.sublineSecondary || r.loading ? (T(), c("span", Yv, [l("span", { class: b({ "on-hover": r.sublineSecondaryHover }) }, [r.loading ? (T(), o(m, {
16490
+ })) : r.subline ? (T(), c(e, { key: 1 }, [d(N(r.subline), 1)], 64)) : s("", !0)]), r.sublineSecondary || r.loading ? (T(), c("span", qv, [l("span", { class: b({ "on-hover": r.sublineSecondaryHover }) }, [r.loading ? (T(), o(m, {
16446
16491
  key: 0,
16447
16492
  type: "single",
16448
16493
  "line-height": 2,
@@ -16452,9 +16497,9 @@ function Xv(t, n, r, i, a, u) {
16452
16497
  _: 1
16453
16498
  })) : s("", !0)]),
16454
16499
  r.loading ? s("", !0) : k(t.$slots, "meta", { key: 4 }, void 0, !0)
16455
- ], 42, Wv)]);
16500
+ ], 42, Hv)]);
16456
16501
  }
16457
- var Zv = /* @__PURE__ */ V(Hv, [["render", Xv], ["__scopeId", "data-v-66eb2ab6"]]), Qv = {
16502
+ var Yv = /* @__PURE__ */ V(Bv, [["render", Jv], ["__scopeId", "data-v-66eb2ab6"]]), Xv = {
16458
16503
  name: "ecs-structured-content",
16459
16504
  components: {
16460
16505
  EcsClickableArea: vr,
@@ -16524,14 +16569,14 @@ var Zv = /* @__PURE__ */ V(Hv, [["render", Xv], ["__scopeId", "data-v-66eb2ab6"]
16524
16569
  this.internalCollapse = !this.internalCollapse, this.$emit("toggleCollapse", this.internalCollapse);
16525
16570
  }
16526
16571
  }
16527
- }, $v = {
16572
+ }, Zv = {
16528
16573
  key: 1,
16529
16574
  class: "ecs-structured-content-left"
16530
- }, ey = {
16575
+ }, Qv = {
16531
16576
  key: 2,
16532
16577
  class: "ecs-structured-content-right"
16533
- }, ty = { class: "ecs-structured-content-collapse-inner" }, ny = { class: "ecs-structured-content-collapse-content" };
16534
- function ry(e, t, n, r, i, a) {
16578
+ }, $v = { class: "ecs-structured-content-collapse-inner" }, ey = { class: "ecs-structured-content-collapse-content" };
16579
+ function ty(e, t, n, r, i, a) {
16535
16580
  let u = A("ecs-skeleton-loader");
16536
16581
  return T(), c("div", { class: b(["ecs-structured-content", [
16537
16582
  { clickable: n.clickable },
@@ -16554,7 +16599,7 @@ function ry(e, t, n, r, i, a) {
16554
16599
  key: 0,
16555
16600
  type: "single",
16556
16601
  width: "random"
16557
- })) : (T(), c("div", $v, [k(e.$slots, "default", {}, void 0, !0)])), e.$slots.extend && !n.loading ? (T(), c("div", ey, [k(e.$slots, "extend", {}, void 0, !0)])) : s("", !0)]),
16602
+ })) : (T(), c("div", Zv, [k(e.$slots, "default", {}, void 0, !0)])), e.$slots.extend && !n.loading ? (T(), c("div", Qv, [k(e.$slots, "extend", {}, void 0, !0)])) : s("", !0)]),
16558
16603
  _: 3
16559
16604
  }, 8, [
16560
16605
  "onClick",
@@ -16569,12 +16614,12 @@ function ry(e, t, n, r, i, a) {
16569
16614
  collapsed: i.internalCollapse,
16570
16615
  expanded: i.internalCollapse === !1
16571
16616
  }])
16572
- }, [l("div", ty, [l("div", ny, [n.loading ? (T(), o(u, {
16617
+ }, [l("div", $v, [l("div", ey, [n.loading ? (T(), o(u, {
16573
16618
  key: 0,
16574
16619
  type: "multi"
16575
16620
  })) : k(e.$slots, "collapse", { key: 1 }, void 0, !0)])])], 2))], 2);
16576
16621
  }
16577
- var iy = /* @__PURE__ */ V(Qv, [["render", ry], ["__scopeId", "data-v-823ad344"]]), ay = {
16622
+ var ny = /* @__PURE__ */ V(Xv, [["render", ty], ["__scopeId", "data-v-823ad344"]]), ry = {
16578
16623
  name: "ecs-swatches-picker",
16579
16624
  emits: ["update:modelValue"],
16580
16625
  props: {
@@ -16622,14 +16667,14 @@ var iy = /* @__PURE__ */ V(Qv, [["render", ry], ["__scopeId", "data-v-823ad344"]
16622
16667
  this.selectedTitle = this.swatches[this.swatches.findIndex((e) => e.hex === this.selectedColor)].title;
16623
16668
  }
16624
16669
  }
16625
- }, oy = [
16670
+ }, iy = [
16626
16671
  "onClick",
16627
16672
  "onKeydown",
16628
16673
  "title",
16629
16674
  "aria-label",
16630
16675
  "aria-checked"
16631
16676
  ];
16632
- function sy(t, n, r, i, a, o) {
16677
+ function ay(t, n, r, i, a, o) {
16633
16678
  return T(), c("div", {
16634
16679
  class: b(["ecs-swatches", o.sizeClass]),
16635
16680
  role: "radiogroup"
@@ -16647,9 +16692,9 @@ function sy(t, n, r, i, a, o) {
16647
16692
  backgroundColor: e.hex,
16648
16693
  color: e.hex
16649
16694
  })
16650
- }, null, 46, oy))), 128))], 2);
16695
+ }, null, 46, iy))), 128))], 2);
16651
16696
  }
16652
- var cy = /* @__PURE__ */ V(ay, [["render", sy], ["__scopeId", "data-v-9c0b74cb"]]), ly = {
16697
+ var oy = /* @__PURE__ */ V(ry, [["render", ay], ["__scopeId", "data-v-9c0b74cb"]]), sy = {
16653
16698
  name: "ecs-tab",
16654
16699
  props: {
16655
16700
  show: {
@@ -16678,8 +16723,8 @@ var cy = /* @__PURE__ */ V(ay, [["render", sy], ["__scopeId", "data-v-9c0b74cb"]
16678
16723
  mounted() {
16679
16724
  !this.ariaLabeledBy || this.ariaLabeledBy.trim();
16680
16725
  }
16681
- }, uy = ["aria-labelledby"];
16682
- function dy(e, t, n, r, i, a) {
16726
+ }, cy = ["aria-labelledby"];
16727
+ function ly(e, t, n, r, i, a) {
16683
16728
  return T(), c("div", {
16684
16729
  class: b(["ecs-tab-pane", [
16685
16730
  n.show ? "show" : "",
@@ -16688,9 +16733,9 @@ function dy(e, t, n, r, i, a) {
16688
16733
  ]]),
16689
16734
  role: "tabpanel",
16690
16735
  "aria-labelledby": n.ariaLabeledBy
16691
- }, [k(e.$slots, "default", {}, void 0, !0)], 10, uy);
16736
+ }, [k(e.$slots, "default", {}, void 0, !0)], 10, cy);
16692
16737
  }
16693
- var fy = /* @__PURE__ */ V(ly, [["render", dy], ["__scopeId", "data-v-2c119fff"]]), py = {
16738
+ var uy = /* @__PURE__ */ V(sy, [["render", ly], ["__scopeId", "data-v-2c119fff"]]), dy = {
16694
16739
  name: "ecs-tab-button",
16695
16740
  emits: ["click", "tabNavigation"],
16696
16741
  components: {
@@ -16773,16 +16818,16 @@ var fy = /* @__PURE__ */ V(ly, [["render", dy], ["__scopeId", "data-v-2c119fff"]
16773
16818
  });
16774
16819
  }
16775
16820
  }
16776
- }, my = [
16821
+ }, fy = [
16777
16822
  "disabled",
16778
16823
  "aria-selected",
16779
16824
  "aria-controls",
16780
16825
  "aria-label"
16781
- ], hy = {
16826
+ ], py = {
16782
16827
  key: 2,
16783
16828
  class: "shortcut"
16784
16829
  };
16785
- function gy(e, t, n, r, i, a) {
16830
+ function my(e, t, n, r, i, a) {
16786
16831
  let u = A("ecs-icon"), d = A("ecs-sticker"), p = A("ecs-focus-ring");
16787
16832
  return T(), c("button", {
16788
16833
  class: b(["ecs-tab-button", [
@@ -16810,12 +16855,12 @@ function gy(e, t, n, r, i, a) {
16810
16855
  type: n.sticker
16811
16856
  }, null, 8, ["type"])) : s("", !0),
16812
16857
  k(e.$slots, "default", {}, void 0, !0),
16813
- n.shortcut ? (T(), c("span", hy, N(n.shortcut), 1)) : s("", !0),
16858
+ n.shortcut ? (T(), c("span", py, N(n.shortcut), 1)) : s("", !0),
16814
16859
  f(p, { inset: 0 }),
16815
16860
  t[2] ||= l("span", { class: "hover" }, null, -1)
16816
- ], 42, my);
16861
+ ], 42, fy);
16817
16862
  }
16818
- var _y = /* @__PURE__ */ V(py, [["render", gy], ["__scopeId", "data-v-e723f4d5"]]), vy = {
16863
+ var hy = /* @__PURE__ */ V(dy, [["render", my], ["__scopeId", "data-v-e723f4d5"]]), gy = {
16819
16864
  name: "ecs-tag",
16820
16865
  emits: ["click"],
16821
16866
  components: {
@@ -16898,11 +16943,11 @@ var _y = /* @__PURE__ */ V(py, [["render", gy], ["__scopeId", "data-v-e723f4d5"]
16898
16943
  methods: { handleClick(e) {
16899
16944
  this.$emit("click", e);
16900
16945
  } }
16901
- }, yy = ["title"], by = {
16946
+ }, _y = ["title"], vy = {
16902
16947
  key: 1,
16903
16948
  class: "count"
16904
16949
  };
16905
- function xy(e, t, n, r, i, a) {
16950
+ function yy(e, t, n, r, i, a) {
16906
16951
  let l = A("ecs-skeleton-loader"), u = A("ecs-focus-ring");
16907
16952
  return T(), o(M(n.hover ? "button" : "span"), {
16908
16953
  class: b(["ecs-tag", [
@@ -16921,9 +16966,9 @@ function xy(e, t, n, r, i, a) {
16921
16966
  key: 0,
16922
16967
  class: "path",
16923
16968
  title: n.path
16924
- }, "../", 8, yy)) : s("", !0),
16969
+ }, "../", 8, _y)) : s("", !0),
16925
16970
  k(e.$slots, "default", {}, void 0, !0),
16926
- n.count ? (T(), c("span", by, N(n.count), 1)) : s("", !0),
16971
+ n.count ? (T(), c("span", vy, N(n.count), 1)) : s("", !0),
16927
16972
  n.loading ? (T(), o(l, {
16928
16973
  key: 2,
16929
16974
  type: "single",
@@ -16941,14 +16986,14 @@ function xy(e, t, n, r, i, a) {
16941
16986
  "disabled"
16942
16987
  ]);
16943
16988
  }
16944
- var Sy = /* @__PURE__ */ V(vy, [["render", xy], ["__scopeId", "data-v-569d32e3"]]), Cy = { name: "ecs-tag-cloud" }, wy = {
16989
+ var by = /* @__PURE__ */ V(gy, [["render", yy], ["__scopeId", "data-v-569d32e3"]]), xy = { name: "ecs-tag-cloud" }, Sy = {
16945
16990
  class: "ecs-tag-cloud",
16946
16991
  role: "list"
16947
16992
  };
16948
- function Ty(e, t, n, r, i, a) {
16949
- return T(), c("div", wy, [k(e.$slots, "default", {}, void 0, !0)]);
16993
+ function Cy(e, t, n, r, i, a) {
16994
+ return T(), c("div", Sy, [k(e.$slots, "default", {}, void 0, !0)]);
16950
16995
  }
16951
- var Ey = /* @__PURE__ */ V(Cy, [["render", Ty], ["__scopeId", "data-v-4334fe7e"]]), Dy = {
16996
+ var wy = /* @__PURE__ */ V(xy, [["render", Cy], ["__scopeId", "data-v-4334fe7e"]]), Ty = {
16952
16997
  name: "ecs-toast",
16953
16998
  emits: ["action"],
16954
16999
  components: { EcsFocusRing: U },
@@ -16971,7 +17016,7 @@ var Ey = /* @__PURE__ */ V(Cy, [["render", Ty], ["__scopeId", "data-v-4334fe7e"]
16971
17016
  return this.theme;
16972
17017
  } }
16973
17018
  };
16974
- function Oy(e, t, n, r, i, a) {
17019
+ function Ey(e, t, n, r, i, a) {
16975
17020
  let o = A("ecs-focus-ring");
16976
17021
  return T(), c("div", {
16977
17022
  class: b(["ecs-toast", a.typeClass]),
@@ -16987,32 +17032,32 @@ function Oy(e, t, n, r, i, a) {
16987
17032
  radius: 6
16988
17033
  })])) : s("", !0)], 2);
16989
17034
  }
16990
- var ky = /* @__PURE__ */ V(Dy, [["render", Oy], ["__scopeId", "data-v-61082fed"]]), Ay = { name: "ecs-toasts" }, jy = {
17035
+ var Dy = /* @__PURE__ */ V(Ty, [["render", Ey], ["__scopeId", "data-v-61082fed"]]), Oy = { name: "ecs-toasts" }, ky = {
16991
17036
  class: "ecs-toasts",
16992
17037
  "aria-live": "polite"
16993
17038
  };
16994
- function My(e, t, n, r, a, o) {
16995
- return T(), c("div", jy, [f(i, { name: "transition-toast" }, {
17039
+ function Ay(e, t, n, r, a, o) {
17040
+ return T(), c("div", ky, [f(i, { name: "transition-toast" }, {
16996
17041
  default: I(() => [k(e.$slots, "default", {}, void 0, !0)]),
16997
17042
  _: 3
16998
17043
  })]);
16999
17044
  }
17000
- var Ny = /* @__PURE__ */ V(Ay, [["render", My], ["__scopeId", "data-v-451fee48"]]), Py = {
17045
+ var jy = /* @__PURE__ */ V(Oy, [["render", Ay], ["__scopeId", "data-v-451fee48"]]), My = {
17001
17046
  name: "ecs-toolbar",
17002
17047
  props: { type: {
17003
17048
  type: String,
17004
17049
  validator: (e) => ["viewer", "index"].includes(e),
17005
17050
  default: "index"
17006
17051
  } }
17007
- }, Fy = {
17052
+ }, Ny = {
17008
17053
  class: "ecs-toolbar",
17009
17054
  role: "toolbar",
17010
17055
  "aria-label": "Main"
17011
17056
  };
17012
- function Iy(e, t, n, r, i, a) {
17013
- return T(), c("div", Fy, [k(e.$slots, "default", {}, void 0, !0)]);
17057
+ function Py(e, t, n, r, i, a) {
17058
+ return T(), c("div", Ny, [k(e.$slots, "default", {}, void 0, !0)]);
17014
17059
  }
17015
- var Ly = /* @__PURE__ */ V(Py, [["render", Iy], ["__scopeId", "data-v-e0681f01"]]), Ry = {
17060
+ var Fy = /* @__PURE__ */ V(My, [["render", Py], ["__scopeId", "data-v-e0681f01"]]), Iy = {
17016
17061
  name: "ecs-transcript-state",
17017
17062
  emits: ["click"],
17018
17063
  components: {
@@ -17038,17 +17083,17 @@ var Ly = /* @__PURE__ */ V(Py, [["render", Iy], ["__scopeId", "data-v-e0681f01"]
17038
17083
  default: !1
17039
17084
  }
17040
17085
  }
17041
- }, zy = ["aria-busy"], By = {
17086
+ }, Ly = ["aria-busy"], Ry = {
17042
17087
  key: 0,
17043
17088
  class: "healthy"
17044
- }, Vy = {
17089
+ }, zy = {
17045
17090
  key: 1,
17046
17091
  class: "corrupted"
17047
- }, Hy = {
17092
+ }, By = {
17048
17093
  key: 2,
17049
17094
  class: "loading"
17050
17095
  };
17051
- function Uy(t, n, r, i, a, u) {
17096
+ function Vy(t, n, r, i, a, u) {
17052
17097
  let d = A("ecs-skeleton-loader"), p = A("ecs-icon");
17053
17098
  return T(), c("div", {
17054
17099
  onClick: n[0] ||= (e) => t.$emit("click", e),
@@ -17061,16 +17106,16 @@ function Uy(t, n, r, i, a, u) {
17061
17106
  height: 32
17062
17107
  })) : (T(), c(e, { key: 1 }, [
17063
17108
  n[1] ||= l("div", { class: "background" }, null, -1),
17064
- r.state == "healthy" ? (T(), c("div", By)) : s("", !0),
17065
- r.state == "corrupted" ? (T(), c("div", Vy)) : s("", !0),
17066
- r.state == "loading" ? (T(), c("span", Hy, [f(p, {
17109
+ r.state == "healthy" ? (T(), c("div", Ry)) : s("", !0),
17110
+ r.state == "corrupted" ? (T(), c("div", zy)) : s("", !0),
17111
+ r.state == "loading" ? (T(), c("span", By, [f(p, {
17067
17112
  type: "loading",
17068
17113
  size: "18px",
17069
17114
  color: "#202127"
17070
17115
  })])) : s("", !0)
17071
- ], 64))], 10, zy);
17116
+ ], 64))], 10, Ly);
17072
17117
  }
17073
- var Wy = /* @__PURE__ */ V(Ry, [["render", Uy], ["__scopeId", "data-v-8f3aef8d"]]), Gy = {
17118
+ var Hy = /* @__PURE__ */ V(Iy, [["render", Vy], ["__scopeId", "data-v-8f3aef8d"]]), Uy = {
17074
17119
  name: "ecs-tree-list",
17075
17120
  props: {
17076
17121
  id: { type: String },
@@ -17084,15 +17129,15 @@ var Wy = /* @__PURE__ */ V(Ry, [["render", Uy], ["__scopeId", "data-v-8f3aef8d"]
17084
17129
  default: !1
17085
17130
  }
17086
17131
  }
17087
- }, Ky = ["id", "role"];
17088
- function qy(e, t, n, r, i, a) {
17132
+ }, Wy = ["id", "role"];
17133
+ function Gy(e, t, n, r, i, a) {
17089
17134
  return T(), c("div", {
17090
17135
  class: b(["ecs-tree-view-list", { "ecs-tree-view-list-indent": n.indent }]),
17091
17136
  id: n.id,
17092
17137
  role: n.role
17093
- }, [k(e.$slots, "default", {}, void 0, !0)], 10, Ky);
17138
+ }, [k(e.$slots, "default", {}, void 0, !0)], 10, Wy);
17094
17139
  }
17095
- var Jy = /* @__PURE__ */ V(Gy, [["render", qy], ["__scopeId", "data-v-6af94f50"]]), Yy = {
17140
+ var Ky = /* @__PURE__ */ V(Uy, [["render", Gy], ["__scopeId", "data-v-6af94f50"]]), qy = {
17096
17141
  name: "ecs-tree-list-item",
17097
17142
  emits: ["click", "toggled"],
17098
17143
  components: {
@@ -17242,17 +17287,17 @@ var Jy = /* @__PURE__ */ V(Gy, [["render", qy], ["__scopeId", "data-v-6af94f50"]
17242
17287
  created() {
17243
17288
  this.expandId = this.generateUniqueId();
17244
17289
  }
17245
- }, Xy = ["tabindex"], Zy = {
17290
+ }, Jy = ["tabindex"], Yy = {
17246
17291
  key: 1,
17247
17292
  class: "icon-container"
17248
- }, Qy = {
17293
+ }, Xy = {
17249
17294
  key: 2,
17250
17295
  class: "ecs-tree-view-entry-control"
17251
- }, $y = ["disabled"], eb = {
17296
+ }, Zy = ["disabled"], Qy = {
17252
17297
  key: 4,
17253
17298
  class: "ecs-tree-view-entry-actions"
17254
- }, tb = ["id", "aria-hidden"];
17255
- function nb(e, t, n, r, i, a) {
17299
+ }, $y = ["id", "aria-hidden"];
17300
+ function eb(e, t, n, r, i, a) {
17256
17301
  let u = A("ecs-button-collapse"), d = A("ecs-icon"), p = A("ecs-sticker"), m = A("ecs-focus-ring");
17257
17302
  return T(), c("div", null, [l("div", {
17258
17303
  onKeydown: [t[2] ||= L(R((...e) => a.focusPrevious && a.focusPrevious(...e), ["prevent"]), ["up"]), t[3] ||= L(R((...e) => a.focusNext && a.focusNext(...e), ["prevent"]), ["down"])],
@@ -17289,7 +17334,7 @@ function nb(e, t, n, r, i, a) {
17289
17334
  "aria-busy",
17290
17335
  "onClick"
17291
17336
  ])) : s("", !0),
17292
- n.icon ? (T(), c("div", Zy, [f(d, {
17337
+ n.icon ? (T(), c("div", Yy, [f(d, {
17293
17338
  type: n.icon,
17294
17339
  color: n.iconColor,
17295
17340
  size: a.iconSize
@@ -17307,37 +17352,37 @@ function nb(e, t, n, r, i, a) {
17307
17352
  "color",
17308
17353
  "style"
17309
17354
  ])) : s("", !0)])) : s("", !0),
17310
- e.$slots.control ? (T(), c("div", Qy, [k(e.$slots, "control", {}, void 0, !0)])) : s("", !0),
17355
+ e.$slots.control ? (T(), c("div", Xy, [k(e.$slots, "control", {}, void 0, !0)])) : s("", !0),
17311
17356
  l("span", {
17312
17357
  disabled: n.disabled,
17313
17358
  onClick: t[0] ||= (t) => !n.disabled && e.$emit("click", t),
17314
17359
  class: b(["title", [n.titleOverflow ? "overflow" : "", n.disabled ? "disabled" : ""]])
17315
- }, [k(e.$slots, "default", {}, void 0, !0)], 10, $y),
17360
+ }, [k(e.$slots, "default", {}, void 0, !0)], 10, Zy),
17316
17361
  n.afterLabel ? (T(), c("span", {
17317
17362
  key: 3,
17318
17363
  onClick: t[1] ||= (t) => !n.disabled && e.$emit("click", t),
17319
17364
  class: "after-label"
17320
17365
  }, N(n.afterLabel), 1)) : s("", !0),
17321
- e.$slots.actions ? (T(), c("div", eb, [k(e.$slots, "actions", {}, void 0, !0)])) : s("", !0),
17366
+ e.$slots.actions ? (T(), c("div", Qy, [k(e.$slots, "actions", {}, void 0, !0)])) : s("", !0),
17322
17367
  a.isSelectable ? (T(), o(m, { key: 5 })) : s("", !0)
17323
- ], 42, Xy), e.$slots.collapse ? (T(), c("div", {
17368
+ ], 42, Jy), e.$slots.collapse ? (T(), c("div", {
17324
17369
  key: 0,
17325
17370
  class: b([i.isVisible ? "collapse-show" : "collapse-hide", "collapsable"]),
17326
17371
  id: i.expandId,
17327
17372
  "aria-hidden": i.isVisible ? "false" : "true"
17328
- }, [k(e.$slots, "collapse", {}, void 0, !0)], 10, tb)) : s("", !0)]);
17373
+ }, [k(e.$slots, "collapse", {}, void 0, !0)], 10, $y)) : s("", !0)]);
17329
17374
  }
17330
- var rb = /* @__PURE__ */ V(Yy, [["render", nb], ["__scopeId", "data-v-81e7629c"]]), ib = { name: "ecs-tree-list-headline" }, ab = { class: "ecs-tree-view-headline" };
17331
- function ob(e, t, n, r, i, a) {
17332
- return T(), c("div", ab, [k(e.$slots, "default", {}, void 0, !0)]);
17375
+ var tb = /* @__PURE__ */ V(qy, [["render", eb], ["__scopeId", "data-v-81e7629c"]]), nb = { name: "ecs-tree-list-headline" }, rb = { class: "ecs-tree-view-headline" };
17376
+ function ib(e, t, n, r, i, a) {
17377
+ return T(), c("div", rb, [k(e.$slots, "default", {}, void 0, !0)]);
17333
17378
  }
17334
- var sb = /* @__PURE__ */ V(ib, [["render", ob], ["__scopeId", "data-v-a5153e06"]]), cb = {
17379
+ var ab = /* @__PURE__ */ V(nb, [["render", ib], ["__scopeId", "data-v-a5153e06"]]), ob = {
17335
17380
  name: "EcsTypeConfirmation",
17336
17381
  emits: ["update:modelValue", "bypassConfirm"],
17337
17382
  components: {
17338
17383
  EcsInput: kd,
17339
17384
  EcsAlert: we,
17340
- EcsFormGroup: ep,
17385
+ EcsFormGroup: Qf,
17341
17386
  EcsCheckbox: Er
17342
17387
  },
17343
17388
  mixins: [J],
@@ -17407,15 +17452,15 @@ var sb = /* @__PURE__ */ V(ib, [["render", ob], ["__scopeId", "data-v-a5153e06"]
17407
17452
  mounted() {
17408
17453
  this.uniqueId = "input-" + this.generateUniqueId(), this.bypassActive && this.alertType !== "none" && this.$emit("update:modelValue", !0);
17409
17454
  }
17410
- }, lb = ["for"], ub = { class: "ecs-type-confirmation-verb" }, db = ["for"], fb = { class: "ecs-type-confirmation-verb" };
17411
- function pb(e, t, n, r, i, a) {
17455
+ }, sb = ["for"], cb = { class: "ecs-type-confirmation-verb" }, lb = ["for"], ub = { class: "ecs-type-confirmation-verb" };
17456
+ function db(e, t, n, r, i, a) {
17412
17457
  let c = A("ecs-input"), u = A("ecs-form-group"), p = A("ecs-checkbox"), m = A("ecs-alert");
17413
17458
  return n.alertType == "none" ? (T(), o(u, {
17414
17459
  key: 1,
17415
17460
  class: "ecs-type-confirmation-input"
17416
17461
  }, {
17417
17462
  default: I(() => [
17418
- l("label", { for: i.uniqueId }, N(a.text), 9, db),
17463
+ l("label", { for: i.uniqueId }, N(a.text), 9, lb),
17419
17464
  f(c, {
17420
17465
  modelValue: i.inputValue,
17421
17466
  "onUpdate:modelValue": t[2] ||= (e) => i.inputValue = e,
@@ -17429,7 +17474,7 @@ function pb(e, t, n, r, i, a) {
17429
17474
  "error",
17430
17475
  "id"
17431
17476
  ]),
17432
- l("span", fb, N(a.upperCaseVerb), 1)
17477
+ l("span", ub, N(a.upperCaseVerb), 1)
17433
17478
  ]),
17434
17479
  _: 1
17435
17480
  })) : (T(), o(m, {
@@ -17444,7 +17489,7 @@ function pb(e, t, n, r, i, a) {
17444
17489
  class: "ecs-type-confirmation-input"
17445
17490
  }, {
17446
17491
  default: I(() => [
17447
- l("label", { for: i.uniqueId }, N(a.text), 9, lb),
17492
+ l("label", { for: i.uniqueId }, N(a.text), 9, sb),
17448
17493
  f(c, {
17449
17494
  modelValue: i.inputValue,
17450
17495
  "onUpdate:modelValue": t[0] ||= (e) => i.inputValue = e,
@@ -17458,7 +17503,7 @@ function pb(e, t, n, r, i, a) {
17458
17503
  "error",
17459
17504
  "id"
17460
17505
  ]),
17461
- l("span", ub, N(a.upperCaseVerb), 1)
17506
+ l("span", cb, N(a.upperCaseVerb), 1)
17462
17507
  ]),
17463
17508
  _: 1
17464
17509
  })),
@@ -17475,7 +17520,7 @@ function pb(e, t, n, r, i, a) {
17475
17520
  _: 3
17476
17521
  }, 8, ["headline", "type"]));
17477
17522
  }
17478
- var mb = /* @__PURE__ */ V(cb, [["render", pb], ["__scopeId", "data-v-1e0fa905"]]), hb = {
17523
+ var fb = /* @__PURE__ */ V(ob, [["render", db], ["__scopeId", "data-v-1e0fa905"]]), pb = {
17479
17524
  name: "ecs-video",
17480
17525
  props: {
17481
17526
  posterImage: {
@@ -17499,14 +17544,14 @@ var mb = /* @__PURE__ */ V(cb, [["render", pb], ["__scopeId", "data-v-1e0fa905"]
17499
17544
  default: null
17500
17545
  }
17501
17546
  }
17502
- }, gb = [
17547
+ }, mb = [
17503
17548
  "poster",
17504
17549
  "autoplay",
17505
17550
  "loop",
17506
17551
  "controls",
17507
17552
  "src"
17508
17553
  ];
17509
- function _b(e, t, n, r, i, a) {
17554
+ function hb(e, t, n, r, i, a) {
17510
17555
  return T(), c("video", {
17511
17556
  poster: n.posterImage,
17512
17557
  autoplay: n.autoplay,
@@ -17514,9 +17559,9 @@ function _b(e, t, n, r, i, a) {
17514
17559
  controls: n.controls,
17515
17560
  class: "ecs-video",
17516
17561
  src: n.mp4Source
17517
- }, null, 8, gb);
17562
+ }, null, 8, mb);
17518
17563
  }
17519
- var vb = /* @__PURE__ */ V(hb, [["render", _b], ["__scopeId", "data-v-ce84fcb3"]]), yb = {
17564
+ var gb = /* @__PURE__ */ V(pb, [["render", hb], ["__scopeId", "data-v-ce84fcb3"]]), _b = {
17520
17565
  name: "ecs-window",
17521
17566
  components: {
17522
17567
  EcsButton: Y,
@@ -17687,11 +17732,11 @@ var vb = /* @__PURE__ */ V(hb, [["render", _b], ["__scopeId", "data-v-ce84fcb3"]
17687
17732
  this.isFocused = !1, this.$emit("blur");
17688
17733
  }
17689
17734
  }
17690
- }, bb = { class: "ecs-window-content scrollbar scrollbar-sml" }, xb = {
17735
+ }, vb = { class: "ecs-window-content scrollbar scrollbar-sml" }, yb = {
17691
17736
  key: 1,
17692
17737
  class: "ecs-window-footer"
17693
17738
  };
17694
- function Sb(t, n, r, i, a, o) {
17739
+ function bb(t, n, r, i, a, o) {
17695
17740
  let u = A("ecs-text-v2"), p = A("ecs-button");
17696
17741
  return r.show ? (T(), c("div", {
17697
17742
  key: 0,
@@ -17728,8 +17773,8 @@ function Sb(t, n, r, i, a, o) {
17728
17773
  "aria-label": "Close window",
17729
17774
  title: "Close"
17730
17775
  })], 32)) : s("", !0),
17731
- l("div", bb, [k(t.$slots, "default", {}, void 0, !0)]),
17732
- t.$slots.footer ? (T(), c("div", xb, [k(t.$slots, "footer", {}, void 0, !0)])) : s("", !0),
17776
+ l("div", vb, [k(t.$slots, "default", {}, void 0, !0)]),
17777
+ t.$slots.footer ? (T(), c("div", yb, [k(t.$slots, "footer", {}, void 0, !0)])) : s("", !0),
17733
17778
  r.resizable ? (T(), c(e, { key: 2 }, [
17734
17779
  l("div", {
17735
17780
  onMousedown: n[2] ||= (e) => o.startResize("right"),
@@ -17748,6 +17793,6 @@ function Sb(t, n, r, i, a, o) {
17748
17793
  ], 64)) : s("", !0)
17749
17794
  ], 38)) : s("", !0);
17750
17795
  }
17751
- var Cb = /* @__PURE__ */ V(yb, [["render", Sb], ["__scopeId", "data-v-1c653eb3"]]);
17796
+ var xb = /* @__PURE__ */ V(_b, [["render", bb], ["__scopeId", "data-v-1c653eb3"]]);
17752
17797
  //#endregion
17753
- export { Ae as EcsActionToolbar, we as EcsAlert, Ie as EcsAudio, Ke as EcsAvatar, Ye as EcsBanner, Qe as EcsBreadcrumb, nt as EcsBreadcrumbButton, ot as EcsBreadcrumbTitle, Ni as EcsBulkSelector, Y as EcsButton, Vi as EcsButtonCollapse, ka as EcsButtonContext, Na as EcsButtonContextGroup, La as EcsButtonDialog, Li as EcsButtonGroup, Va as EcsButtonMore, Ka as EcsButtonTable, Ei as EcsButtonToolbar, Xa as EcsButtonToolbarGroup, no as EcsCard, uo as EcsChatConversation, Co as EcsChatMessage, Er as EcsCheckbox, oo as EcsCitationLine, vr as EcsClickableArea, zo as EcsCollapse, qo as EcsCollectionControl, vc as EcsColorPicker, xc as EcsColorPickerInput, ls as EcsComment, ps as EcsCommentList, Ao as EcsContextMenu, jc as EcsDataCard, Fc as EcsDataCardList, qc as EcsDataCardRow, $c as EcsDataGrid, Kl as EcsDataGridCell, zl as EcsDataGridGroup, Fl as EcsDataGridHeadCell, rl as EcsDataGridRow, cl as EcsDataGridRowGroup, Xl as EcsDataList, ru as EcsDataListItem, su as EcsDialog, pu as EcsDialogHeader, bu as EcsDirectoryEntry, ku as EcsDocumentState, Lu as EcsDonutChart, rd as EcsDropzone, od as EcsEcaiWrapper, Uu as EcsEmptyState, pd as EcsEntryLink, wd as EcsExcerptSnippet, sf as EcsExhibitStickerEditor, mu as EcsFavicon, Wr as EcsFileIcon, ff as EcsFileList, kf as EcsFileListItem, cf as EcsFillIcon, jf as EcsFlag, Pf as EcsFlexCol, G as EcsFlexRow, U as EcsFocusRing, Zf as EcsFolderSelector, hr as EcsFormCheck, ep as EcsFormGroup, op as EcsFormHeadline, mp as EcsFormSet, Zo as EcsFormatted, _p as EcsHighlight, H as EcsIcon, bp as EcsIllustration, Ip as EcsIndexListItem, kp as EcsIndexToolbar, zp as EcsInfoTooltip, om as EcsInplace, kd as EcsInput, Hp as EcsInputAddon, zf as EcsInputClear, Kp as EcsInputConnector, Qp as EcsInputFloat, tm as EcsInputGroup, Uf as EcsInputSearch, dm as EcsJumperDocument, vm as EcsJumperIndex, Nm as EcsJumperPage, dh as EcsLayoutDataTable, Qm as EcsLayoutDirectory, Wm as EcsLayoutIndex, yh as EcsLegendItem, Eh as EcsLogMessage, jh as EcsMap, Lh as EcsModal, Yh as EcsModalFooter, Uh as EcsModalHeader, dg as EcsMultiselectOption, ng as EcsMultiselectSearchToken, ag as EcsMultiselectToken, kg as EcsOverlay, Lg as EcsPagination, Im as EcsPane, zc as EcsPartyEntry, lr as EcsPopover, Gg as EcsPopoverHeader, fr as EcsPopoverList, Nd as EcsPopoverListHeadline, xi as EcsPopoverListItem, qu as EcsProgress, b_ as EcsQuicklink, jr as EcsRadiobutton, E_ as EcsRange, t_ as EcsRatingFavorability, Xg as EcsRatingStarRead, F_ as EcsRatingStarWrite, Kf as EcsScrollContainer, z_ as EcsSection, G_ as EcsSegment, _l as EcsSelect, nv as EcsSelectTile, X_ as EcsSelectionGrid, ki as EcsSeparator, ov as EcsSequenceMap, dv as EcsSequenceMapButton, mo as EcsShinyText, Sv as EcsSidebar, Tv as EcsSidebarContent, Ov as EcsSidebarFooter, Lv as EcsSidebarHeader, Vv as EcsSidebarList, Zv as EcsSidebarListItem, W as EcsSkeletonLoader, Hr as EcsSortbutton, Lm as EcsSplitpanes, cu as EcsStateIcon, Re as EcsSticker, iy as EcsStructuredContent, cy as EcsSwatchesPicker, zr as EcsSwitch, fy as EcsTab, hv as EcsTabBar, _y as EcsTabButton, vv as EcsTabs, Sy as EcsTag, Ey as EcsTagCloud, xr as EcsTextV2, ky as EcsToast, Ny as EcsToasts, Ly as EcsToolbar, Wy as EcsTranscriptState, Jy as EcsTreeList, sb as EcsTreeListHeadline, rb as EcsTreeListItem, mb as EcsTypeConfirmation, vb as EcsVideo, Cb as EcsWindow };
17798
+ export { Ae as EcsActionToolbar, we as EcsAlert, Ie as EcsAudio, Ke as EcsAvatar, Ye as EcsBanner, Qe as EcsBreadcrumb, nt as EcsBreadcrumbButton, ot as EcsBreadcrumbTitle, Ni as EcsBulkSelector, Y as EcsButton, Vi as EcsButtonCollapse, ka as EcsButtonContext, Na as EcsButtonContextGroup, La as EcsButtonDialog, Li as EcsButtonGroup, Va as EcsButtonMore, Ka as EcsButtonTable, Ei as EcsButtonToolbar, Xa as EcsButtonToolbarGroup, no as EcsCard, uo as EcsChatConversation, Co as EcsChatMessage, Er as EcsCheckbox, oo as EcsCitationLine, vr as EcsClickableArea, zo as EcsCollapse, qo as EcsCollectionControl, vc as EcsColorPicker, xc as EcsColorPickerInput, ls as EcsComment, ps as EcsCommentList, Ao as EcsContextMenu, jc as EcsDataCard, Fc as EcsDataCardList, qc as EcsDataCardRow, $c as EcsDataGrid, Kl as EcsDataGridCell, zl as EcsDataGridGroup, Fl as EcsDataGridHeadCell, rl as EcsDataGridRow, cl as EcsDataGridRowGroup, Xl as EcsDataList, ru as EcsDataListItem, su as EcsDialog, pu as EcsDialogHeader, bu as EcsDirectoryEntry, ku as EcsDocumentState, Lu as EcsDonutChart, rd as EcsDropzone, od as EcsEcaiWrapper, Uu as EcsEmptyState, pd as EcsEntryLink, wd as EcsExcerptSnippet, af as EcsExhibitStickerEditor, mu as EcsFavicon, Wr as EcsFileIcon, uf as EcsFileList, Df as EcsFileListItem, of as EcsFillIcon, kf as EcsFlag, Mf as EcsFlexCol, G as EcsFlexRow, U as EcsFocusRing, Yf as EcsFolderSelector, hr as EcsFormCheck, Qf as EcsFormGroup, ip as EcsFormHeadline, fp as EcsFormSet, Zo as EcsFormatted, hp as EcsHighlight, H as EcsIcon, vp as EcsIllustration, Pp as EcsIndexListItem, Dp as EcsIndexToolbar, Lp as EcsInfoTooltip, im as EcsInplace, kd as EcsInput, Bp as EcsInputAddon, Lf as EcsInputClear, Wp as EcsInputConnector, Xp as EcsInputFloat, $p as EcsInputGroup, Vf as EcsInputSearch, lm as EcsJumperDocument, gm as EcsJumperIndex, jm as EcsJumperPage, lh as EcsLayoutDataTable, Xm as EcsLayoutDirectory, Hm as EcsLayoutIndex, _h as EcsLegendItem, wh as EcsLogMessage, kh as EcsMap, Fh as EcsModal, qh as EcsModalFooter, Vh as EcsModalHeader, lg as EcsMultiselectOption, eg as EcsMultiselectSearchToken, rg as EcsMultiselectToken, Dg as EcsOverlay, Fg as EcsPagination, Pm as EcsPane, zc as EcsPartyEntry, lr as EcsPopover, Ug as EcsPopoverHeader, fr as EcsPopoverList, Nd as EcsPopoverListHeadline, xi as EcsPopoverListItem, qu as EcsProgress, v_ as EcsQuicklink, jr as EcsRadiobutton, w_ as EcsRange, $g as EcsRatingFavorability, Jg as EcsRatingStarRead, N_ as EcsRatingStarWrite, Wf as EcsScrollContainer, L_ as EcsSection, U_ as EcsSegment, _l as EcsSelect, ev as EcsSelectTile, J_ as EcsSelectionGrid, ki as EcsSeparator, iv as EcsSequenceMap, lv as EcsSequenceMapButton, mo as EcsShinyText, bv as EcsSidebar, Cv as EcsSidebarContent, Ev as EcsSidebarFooter, Fv as EcsSidebarHeader, zv as EcsSidebarList, Yv as EcsSidebarListItem, W as EcsSkeletonLoader, Hr as EcsSortbutton, Fm as EcsSplitpanes, cu as EcsStateIcon, Re as EcsSticker, ny as EcsStructuredContent, oy as EcsSwatchesPicker, zr as EcsSwitch, uy as EcsTab, pv as EcsTabBar, hy as EcsTabButton, gv as EcsTabs, by as EcsTag, wy as EcsTagCloud, xr as EcsTextV2, Dy as EcsToast, jy as EcsToasts, Fy as EcsToolbar, Hy as EcsTranscriptState, Ky as EcsTreeList, ab as EcsTreeListHeadline, tb as EcsTreeListItem, fb as EcsTypeConfirmation, gb as EcsVideo, xb as EcsWindow };