@everchron/ec-shards 19.10.0 → 19.10.2
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.css +1 -1
- package/dist/ec-shards.js +875 -826
- package/dist/ec-shards.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/ec-shards.js
CHANGED
|
@@ -6305,14 +6305,28 @@ var qo = /*#__PURE__*/ H(Bo, [["render", Ko], ["__scopeId", "data-v-95f66a3d"]])
|
|
|
6305
6305
|
expandedWidth: {
|
|
6306
6306
|
type: String,
|
|
6307
6307
|
default: "100%"
|
|
6308
|
+
},
|
|
6309
|
+
hideFooterOnExpand: {
|
|
6310
|
+
type: Boolean,
|
|
6311
|
+
default: !1
|
|
6312
|
+
},
|
|
6313
|
+
beforeExpand: {
|
|
6314
|
+
type: Function,
|
|
6315
|
+
default: null
|
|
6316
|
+
},
|
|
6317
|
+
loading: {
|
|
6318
|
+
type: Boolean,
|
|
6319
|
+
default: !1
|
|
6308
6320
|
}
|
|
6309
6321
|
},
|
|
6310
6322
|
data() {
|
|
6311
6323
|
return {
|
|
6312
6324
|
isSelected: this.selected,
|
|
6313
6325
|
isExpanded: this.expanded,
|
|
6326
|
+
isLoading: !1,
|
|
6314
6327
|
expandHeight: 0,
|
|
6315
6328
|
sidebarWidth: 0,
|
|
6329
|
+
footerHeight: 0,
|
|
6316
6330
|
expandId: ""
|
|
6317
6331
|
};
|
|
6318
6332
|
},
|
|
@@ -6329,6 +6343,18 @@ var qo = /*#__PURE__*/ H(Bo, [["render", Ko], ["__scopeId", "data-v-95f66a3d"]])
|
|
|
6329
6343
|
showHover() {
|
|
6330
6344
|
return this.hover || !!this.expandMode;
|
|
6331
6345
|
},
|
|
6346
|
+
cardExpanded() {
|
|
6347
|
+
return this.isExpanded && !!this.expandMode;
|
|
6348
|
+
},
|
|
6349
|
+
expandLoading() {
|
|
6350
|
+
return this.loading || this.isLoading;
|
|
6351
|
+
},
|
|
6352
|
+
footerHidden() {
|
|
6353
|
+
return this.hideFooterOnExpand && this.isExpanded;
|
|
6354
|
+
},
|
|
6355
|
+
footerStyle() {
|
|
6356
|
+
return this.hideFooterOnExpand ? this.isExpanded ? { height: "0px" } : this.footerHeight ? { height: this.footerHeight + "px" } : { height: "auto" } : null;
|
|
6357
|
+
},
|
|
6332
6358
|
hasSidebar() {
|
|
6333
6359
|
return !!this.$slots.sidebar;
|
|
6334
6360
|
},
|
|
@@ -6390,14 +6416,30 @@ var qo = /*#__PURE__*/ H(Bo, [["render", Ko], ["__scopeId", "data-v-95f66a3d"]])
|
|
|
6390
6416
|
this.isSelected = !!e, this.$emit("update:selected", this.isSelected);
|
|
6391
6417
|
},
|
|
6392
6418
|
toggleExpand() {
|
|
6393
|
-
this.setExpanded(!this.
|
|
6419
|
+
this.isExpanded ? this.setExpanded(!1) : this.requestExpand();
|
|
6394
6420
|
},
|
|
6395
6421
|
expand() {
|
|
6396
|
-
this.
|
|
6422
|
+
this.requestExpand();
|
|
6397
6423
|
},
|
|
6398
6424
|
collapse() {
|
|
6399
6425
|
this.setExpanded(!1);
|
|
6400
6426
|
},
|
|
6427
|
+
requestExpand() {
|
|
6428
|
+
if (!(this.isExpanded || this.isLoading)) {
|
|
6429
|
+
if (typeof this.beforeExpand == "function") {
|
|
6430
|
+
let e = this.beforeExpand();
|
|
6431
|
+
if (e && typeof e.then == "function") {
|
|
6432
|
+
this.isLoading = !0, e.then(() => {
|
|
6433
|
+
this.isLoading = !1, this.$nextTick(() => this.setExpanded(!0));
|
|
6434
|
+
}).catch(() => {
|
|
6435
|
+
this.isLoading = !1;
|
|
6436
|
+
});
|
|
6437
|
+
return;
|
|
6438
|
+
}
|
|
6439
|
+
}
|
|
6440
|
+
this.setExpanded(!0);
|
|
6441
|
+
}
|
|
6442
|
+
},
|
|
6401
6443
|
setExpanded(e) {
|
|
6402
6444
|
let t = !!e;
|
|
6403
6445
|
this.isExpanded !== t && (this.measure(), this.isExpanded = t, this.$emit("update:expanded", this.isExpanded));
|
|
@@ -6410,7 +6452,8 @@ var qo = /*#__PURE__*/ H(Bo, [["render", Ko], ["__scopeId", "data-v-95f66a3d"]])
|
|
|
6410
6452
|
this._observed = this._observed || {};
|
|
6411
6453
|
let e = {
|
|
6412
6454
|
expand: this.$refs.expandInner,
|
|
6413
|
-
sidebar: this.$refs.sidebarInner
|
|
6455
|
+
sidebar: this.$refs.sidebarInner,
|
|
6456
|
+
footer: this.$refs.footerInner
|
|
6414
6457
|
};
|
|
6415
6458
|
Object.keys(e).forEach((t) => {
|
|
6416
6459
|
let n = e[t];
|
|
@@ -6418,26 +6461,26 @@ var qo = /*#__PURE__*/ H(Bo, [["render", Ko], ["__scopeId", "data-v-95f66a3d"]])
|
|
|
6418
6461
|
});
|
|
6419
6462
|
},
|
|
6420
6463
|
measure() {
|
|
6421
|
-
this.$refs.expandInner && (this.expandHeight = this.$refs.expandInner.offsetHeight), this.$refs.sidebarInner && (this.sidebarWidth = this.$refs.sidebarInner.offsetWidth);
|
|
6464
|
+
this.$refs.expandInner && (this.expandHeight = this.$refs.expandInner.offsetHeight), this.$refs.sidebarInner && (this.sidebarWidth = this.$refs.sidebarInner.offsetWidth), this.$refs.footerInner && (this.footerHeight = this.$refs.footerInner.offsetHeight);
|
|
6422
6465
|
}
|
|
6423
6466
|
}
|
|
6424
|
-
}, Yo = { class: "ecs-content-card-timeline-inner" }, Xo = { class: "ecs-content-card-body" }, Zo = { class: "ecs-content-card-
|
|
6467
|
+
}, Yo = { class: "ecs-content-card-timeline-inner" }, Xo = { class: "ecs-content-card-body" }, Zo = { class: "ecs-content-card-columns" }, Qo = { class: "ecs-content-card-main" }, $o = {
|
|
6425
6468
|
key: 0,
|
|
6426
6469
|
class: "ecs-content-card-header"
|
|
6427
|
-
},
|
|
6470
|
+
}, es = {
|
|
6428
6471
|
key: 1,
|
|
6429
6472
|
class: "ecs-content-card-header-content"
|
|
6430
|
-
},
|
|
6473
|
+
}, ts = { class: "ecs-content-card-content" }, ns = ["id", "aria-hidden"], rs = {
|
|
6431
6474
|
ref: "expandInner",
|
|
6432
6475
|
class: "ecs-content-card-expand-inner"
|
|
6433
|
-
}, rs = {
|
|
6434
|
-
key: 2,
|
|
6435
|
-
class: "ecs-content-card-footer"
|
|
6436
6476
|
}, is = ["aria-hidden"], as = {
|
|
6437
6477
|
ref: "sidebarInner",
|
|
6438
6478
|
class: "ecs-content-card-sidebar-inner"
|
|
6479
|
+
}, os = ["aria-hidden"], ss = {
|
|
6480
|
+
ref: "footerInner",
|
|
6481
|
+
class: "ecs-content-card-footer-inner"
|
|
6439
6482
|
};
|
|
6440
|
-
function
|
|
6483
|
+
function cs(e, t, n, r, i, a) {
|
|
6441
6484
|
let u = A("ecs-checkbox"), d = A("ecs-button"), p = A("ecs-card");
|
|
6442
6485
|
return T(), c("div", {
|
|
6443
6486
|
style: S(a.rootStyle),
|
|
@@ -6478,14 +6521,14 @@ function os(e, t, n, r, i, a) {
|
|
|
6478
6521
|
onDblclick: a.onCardDblclick,
|
|
6479
6522
|
id: n.id,
|
|
6480
6523
|
selected: i.isSelected,
|
|
6481
|
-
expanded:
|
|
6524
|
+
expanded: a.cardExpanded,
|
|
6482
6525
|
hover: a.showHover,
|
|
6483
6526
|
progress: n.progress,
|
|
6484
6527
|
disabled: n.disabled,
|
|
6485
6528
|
class: "ecs-content-card-card"
|
|
6486
6529
|
}, {
|
|
6487
|
-
default: I(() => [l("div", Xo, [l("div", Zo, [
|
|
6488
|
-
a.hasHeader ? (T(), c("div",
|
|
6530
|
+
default: I(() => [l("div", Xo, [l("div", Zo, [l("div", Qo, [
|
|
6531
|
+
a.hasHeader ? (T(), c("div", $o, [
|
|
6489
6532
|
n.selectable ? (T(), c("div", {
|
|
6490
6533
|
key: 0,
|
|
6491
6534
|
onClick: t[0] ||= R(() => {}, ["stop"]),
|
|
@@ -6499,7 +6542,7 @@ function os(e, t, n, r, i, a) {
|
|
|
6499
6542
|
"value",
|
|
6500
6543
|
"disabled"
|
|
6501
6544
|
])])) : s("", !0),
|
|
6502
|
-
e.$slots.header ? (T(), c("div",
|
|
6545
|
+
e.$slots.header ? (T(), c("div", es, [k(e.$slots, "header", {}, void 0, !0)])) : s("", !0),
|
|
6503
6546
|
a.showExpandButton ? (T(), o(d, {
|
|
6504
6547
|
key: 2,
|
|
6505
6548
|
onClick: R(a.toggleExpand, ["stop"]),
|
|
@@ -6507,6 +6550,7 @@ function os(e, t, n, r, i, a) {
|
|
|
6507
6550
|
"icon-only": "",
|
|
6508
6551
|
size: "sml",
|
|
6509
6552
|
icon: i.isExpanded ? "collapse" : "expand",
|
|
6553
|
+
loading: a.expandLoading,
|
|
6510
6554
|
active: i.isExpanded || null,
|
|
6511
6555
|
disabled: n.disabled,
|
|
6512
6556
|
"aria-controls": i.expandId,
|
|
@@ -6516,6 +6560,7 @@ function os(e, t, n, r, i, a) {
|
|
|
6516
6560
|
}, null, 8, [
|
|
6517
6561
|
"onClick",
|
|
6518
6562
|
"icon",
|
|
6563
|
+
"loading",
|
|
6519
6564
|
"active",
|
|
6520
6565
|
"disabled",
|
|
6521
6566
|
"aria-controls",
|
|
@@ -6528,21 +6573,25 @@ function os(e, t, n, r, i, a) {
|
|
|
6528
6573
|
class: "ecs-content-card-actions"
|
|
6529
6574
|
}, [k(e.$slots, "actions", {}, void 0, !0)])) : s("", !0)
|
|
6530
6575
|
])) : s("", !0),
|
|
6531
|
-
l("div",
|
|
6576
|
+
l("div", ts, [k(e.$slots, "default", {}, void 0, !0)]),
|
|
6532
6577
|
e.$slots.contentExpand ? (T(), c("div", {
|
|
6533
6578
|
key: 1,
|
|
6534
6579
|
id: i.expandId,
|
|
6535
6580
|
style: S({ height: i.isExpanded ? i.expandHeight + "px" : "0px" }),
|
|
6536
6581
|
"aria-hidden": i.isExpanded ? "false" : "true",
|
|
6537
6582
|
class: "ecs-content-card-expand"
|
|
6538
|
-
}, [l("div",
|
|
6539
|
-
e.$slots.footer ? (T(), c("div", rs, [k(e.$slots, "footer", {}, void 0, !0)])) : s("", !0)
|
|
6583
|
+
}, [l("div", rs, [k(e.$slots, "contentExpand", {}, void 0, !0)], 512)], 12, ns)) : s("", !0)
|
|
6540
6584
|
]), e.$slots.sidebar ? (T(), c("div", {
|
|
6541
6585
|
key: 0,
|
|
6542
6586
|
style: S({ width: i.isExpanded ? "300px" : "0px" }),
|
|
6543
6587
|
"aria-hidden": i.isExpanded ? "false" : "true",
|
|
6544
6588
|
class: "ecs-content-card-sidebar"
|
|
6545
|
-
}, [l("div", as, [k(e.$slots, "sidebar", {}, void 0, !0)], 512)], 12, is)) : s("", !0)])
|
|
6589
|
+
}, [l("div", as, [k(e.$slots, "sidebar", {}, void 0, !0)], 512)], 12, is)) : s("", !0)]), e.$slots.footer ? (T(), c("div", {
|
|
6590
|
+
key: 0,
|
|
6591
|
+
style: S(a.footerStyle),
|
|
6592
|
+
"aria-hidden": a.footerHidden ? "true" : "false",
|
|
6593
|
+
class: b(["ecs-content-card-footer", { "is-collapsing": n.hideFooterOnExpand }])
|
|
6594
|
+
}, [l("div", ss, [k(e.$slots, "footer", {}, void 0, !0)], 512)], 14, os)) : s("", !0)])]),
|
|
6546
6595
|
_: 3
|
|
6547
6596
|
}, 8, [
|
|
6548
6597
|
"onClick",
|
|
@@ -6555,7 +6604,7 @@ function os(e, t, n, r, i, a) {
|
|
|
6555
6604
|
"disabled"
|
|
6556
6605
|
])], 6);
|
|
6557
6606
|
}
|
|
6558
|
-
var
|
|
6607
|
+
var ls = /*#__PURE__*/ H(Jo, [["render", cs], ["__scopeId", "data-v-dacbc11c"]]), us = {
|
|
6559
6608
|
name: "ecs-formatted",
|
|
6560
6609
|
components: { EcsSkeletonLoader: G },
|
|
6561
6610
|
mixins: [Y],
|
|
@@ -6584,8 +6633,8 @@ var ss = /*#__PURE__*/ H(Jo, [["render", os], ["__scopeId", "data-v-14ef76c7"]])
|
|
|
6584
6633
|
}
|
|
6585
6634
|
});
|
|
6586
6635
|
}
|
|
6587
|
-
},
|
|
6588
|
-
function
|
|
6636
|
+
}, ds = ["id"];
|
|
6637
|
+
function fs(e, t, n, r, i, a) {
|
|
6589
6638
|
let s = A("ecs-skeleton-loader");
|
|
6590
6639
|
return T(), c("div", {
|
|
6591
6640
|
class: b(["ecs-formatted", [n.small ? "ecs-formatted-sml" : ""]]),
|
|
@@ -6598,15 +6647,15 @@ function us(e, t, n, r, i, a) {
|
|
|
6598
6647
|
}, null, 8, ["line-height", "count"])) : k(e.$slots, "default", {
|
|
6599
6648
|
key: 0,
|
|
6600
6649
|
ref: "slot"
|
|
6601
|
-
})], 10,
|
|
6650
|
+
})], 10, ds);
|
|
6602
6651
|
}
|
|
6603
|
-
var
|
|
6652
|
+
var ps = /*#__PURE__*/ H(us, [["render", fs]]), ms = {
|
|
6604
6653
|
name: "ecs-comment",
|
|
6605
6654
|
emits: ["edit", "delete"],
|
|
6606
6655
|
components: {
|
|
6607
6656
|
EcsAvatar: Ge,
|
|
6608
6657
|
EcsButton: X,
|
|
6609
|
-
EcsFormatted:
|
|
6658
|
+
EcsFormatted: ps,
|
|
6610
6659
|
EcsSkeletonLoader: G
|
|
6611
6660
|
},
|
|
6612
6661
|
props: {
|
|
@@ -6627,26 +6676,26 @@ var ds = /*#__PURE__*/ H(cs, [["render", us]]), fs = {
|
|
|
6627
6676
|
default: !1
|
|
6628
6677
|
}
|
|
6629
6678
|
}
|
|
6630
|
-
},
|
|
6679
|
+
}, hs = ["aria-busy"], gs = { class: "ecs-comment-header" }, _s = { class: "ecs-comment-autor" }, vs = {
|
|
6631
6680
|
key: 2,
|
|
6632
6681
|
class: "ecs-comment-meta"
|
|
6633
|
-
},
|
|
6682
|
+
}, ys = { class: "ecs-comment-meta-name" }, bs = { class: "ecs-comment-meta-time" }, xs = {
|
|
6634
6683
|
key: 3,
|
|
6635
6684
|
class: "ecs-comment-meta loading"
|
|
6636
|
-
},
|
|
6685
|
+
}, Ss = {
|
|
6637
6686
|
key: 0,
|
|
6638
6687
|
class: "ecs-comment-actions"
|
|
6639
|
-
},
|
|
6688
|
+
}, Cs = {
|
|
6640
6689
|
key: 2,
|
|
6641
6690
|
class: "ecs-comment-edit"
|
|
6642
6691
|
};
|
|
6643
|
-
function
|
|
6692
|
+
function ws(e, t, n, r, i, a) {
|
|
6644
6693
|
let u = A("ecs-skeleton-loader"), d = A("ecs-avatar"), p = A("ecs-button"), m = A("ecs-formatted");
|
|
6645
6694
|
return T(), c("div", {
|
|
6646
6695
|
class: "ecs-comment",
|
|
6647
6696
|
role: "comment",
|
|
6648
6697
|
"aria-busy": n.loading || null
|
|
6649
|
-
}, [l("div",
|
|
6698
|
+
}, [l("div", gs, [l("div", _s, [n.loading ? (T(), o(u, {
|
|
6650
6699
|
key: 0,
|
|
6651
6700
|
type: "circle",
|
|
6652
6701
|
width: 32,
|
|
@@ -6657,7 +6706,7 @@ function Ss(e, t, n, r, i, a) {
|
|
|
6657
6706
|
image: n.userImage,
|
|
6658
6707
|
size: 32,
|
|
6659
6708
|
rounded: ""
|
|
6660
|
-
}, null, 8, ["name", "image"])), n.loading ? (T(), c("div",
|
|
6709
|
+
}, null, 8, ["name", "image"])), n.loading ? (T(), c("div", xs, [f(u, {
|
|
6661
6710
|
type: "single",
|
|
6662
6711
|
"line-height": 3,
|
|
6663
6712
|
width: 50
|
|
@@ -6665,7 +6714,7 @@ function Ss(e, t, n, r, i, a) {
|
|
|
6665
6714
|
type: "single",
|
|
6666
6715
|
"line-height": 2,
|
|
6667
6716
|
width: 60
|
|
6668
|
-
})])) : (T(), c("div",
|
|
6717
|
+
})])) : (T(), c("div", vs, [l("span", ys, N(n.userName), 1), l("span", bs, [k(e.$slots, "commentdate", {}, void 0, !0)])]))]), n.canEdit ? (T(), c("div", Ss, [f(p, {
|
|
6669
6718
|
onClick: t[0] ||= (t) => e.$emit("edit", t),
|
|
6670
6719
|
type: "secondary",
|
|
6671
6720
|
size: "sml",
|
|
@@ -6690,16 +6739,16 @@ function Ss(e, t, n, r, i, a) {
|
|
|
6690
6739
|
type: "multi",
|
|
6691
6740
|
count: 2,
|
|
6692
6741
|
class: "ecs-comment-body"
|
|
6693
|
-
})) : (T(), c("div",
|
|
6742
|
+
})) : (T(), c("div", Cs, [k(e.$slots, "editform", {}, void 0, !0)]))], 8, hs);
|
|
6694
6743
|
}
|
|
6695
|
-
var
|
|
6696
|
-
function
|
|
6697
|
-
return T(), c("div",
|
|
6744
|
+
var Ts = /*#__PURE__*/ H(ms, [["render", ws], ["__scopeId", "data-v-b792bd83"]]), Es = {}, Ds = { class: "ecs-comment-list" };
|
|
6745
|
+
function Os(e, t) {
|
|
6746
|
+
return T(), c("div", Ds, [k(e.$slots, "default")]);
|
|
6698
6747
|
}
|
|
6699
|
-
var
|
|
6748
|
+
var ks = /*#__PURE__*/ H(Es, [["render", Os]]);
|
|
6700
6749
|
//#endregion
|
|
6701
6750
|
//#region src/components/color-picker/mixin/color.js
|
|
6702
|
-
function
|
|
6751
|
+
function As(e = {}, t = 0) {
|
|
6703
6752
|
let n = e && e.a, r;
|
|
6704
6753
|
r = e && e.hsl ? Z(e.hsl) : e && e.hex && e.hex.length > 0 ? Z(e.hex) : e && e.hsv ? Z(e.hsv) : e && e.rgba ? Z(e.rgba) : e && e.rgb ? Z(e.rgb) : Z(e), r && (r._a === void 0 || r._a === null) && r.setAlpha(n || 1);
|
|
6705
6754
|
let i = r.toHsl(), a = r.toHsv();
|
|
@@ -6714,10 +6763,10 @@ function Os(e = {}, t = 0) {
|
|
|
6714
6763
|
a: e.a || r.getAlpha()
|
|
6715
6764
|
};
|
|
6716
6765
|
}
|
|
6717
|
-
var
|
|
6766
|
+
var js = {
|
|
6718
6767
|
props: ["modelValue"],
|
|
6719
6768
|
data() {
|
|
6720
|
-
return { val:
|
|
6769
|
+
return { val: As(this.modelValue) };
|
|
6721
6770
|
},
|
|
6722
6771
|
computed: { colors: {
|
|
6723
6772
|
get() {
|
|
@@ -6728,11 +6777,11 @@ var ks = {
|
|
|
6728
6777
|
}
|
|
6729
6778
|
} },
|
|
6730
6779
|
watch: { modelValue(e) {
|
|
6731
|
-
this.val =
|
|
6780
|
+
this.val = As(e);
|
|
6732
6781
|
} },
|
|
6733
6782
|
methods: {
|
|
6734
6783
|
colorChange(e, t) {
|
|
6735
|
-
this.oldHue = this.colors.hsl.h, this.colors =
|
|
6784
|
+
this.oldHue = this.colors.hsl.h, this.colors = As(e, t || this.oldHue);
|
|
6736
6785
|
},
|
|
6737
6786
|
isValidHex(e) {
|
|
6738
6787
|
return Z(e).isValid();
|
|
@@ -6761,7 +6810,7 @@ var ks = {
|
|
|
6761
6810
|
return Z(e).getAlpha() === 0;
|
|
6762
6811
|
}
|
|
6763
6812
|
}
|
|
6764
|
-
},
|
|
6813
|
+
}, Ms = {
|
|
6765
6814
|
name: "editableInput",
|
|
6766
6815
|
props: {
|
|
6767
6816
|
label: String,
|
|
@@ -6808,9 +6857,9 @@ var ks = {
|
|
|
6808
6857
|
}
|
|
6809
6858
|
}
|
|
6810
6859
|
}
|
|
6811
|
-
},
|
|
6812
|
-
function
|
|
6813
|
-
return T(), c("div",
|
|
6860
|
+
}, Ns = { class: "ecs-editable-input" }, Ps = ["aria-labelledby"], Fs = ["for", "id"], Is = { class: "ecs-input__desc" };
|
|
6861
|
+
function Ls(e, t, n, r, i, a) {
|
|
6862
|
+
return T(), c("div", Ns, [
|
|
6814
6863
|
se(l("input", {
|
|
6815
6864
|
"aria-labelledby": a.labelId,
|
|
6816
6865
|
class: "ecs-input__input",
|
|
@@ -6818,53 +6867,53 @@ function Fs(e, t, n, r, i, a) {
|
|
|
6818
6867
|
onKeydown: t[1] ||= (...e) => a.handleKeyDown && a.handleKeyDown(...e),
|
|
6819
6868
|
onInput: t[2] ||= (...e) => a.update && a.update(...e),
|
|
6820
6869
|
ref: "input"
|
|
6821
|
-
}, null, 40,
|
|
6870
|
+
}, null, 40, Ps), [[ie, a.val]]),
|
|
6822
6871
|
l("span", {
|
|
6823
6872
|
for: n.label,
|
|
6824
6873
|
class: "ecs-input__label",
|
|
6825
6874
|
id: a.labelId
|
|
6826
|
-
}, N(a.labelSpanText), 9,
|
|
6827
|
-
l("span",
|
|
6875
|
+
}, N(a.labelSpanText), 9, Fs),
|
|
6876
|
+
l("span", Is, N(n.desc), 1)
|
|
6828
6877
|
]);
|
|
6829
6878
|
}
|
|
6830
|
-
var
|
|
6879
|
+
var Rs = /*#__PURE__*/ H(Ms, [["render", Ls]]), zs = /* @__PURE__ */ z(((e, t) => {
|
|
6831
6880
|
t.exports = n;
|
|
6832
6881
|
function n(e, t, n) {
|
|
6833
6882
|
return t < n ? e < t ? t : e > n ? n : e : e < n ? n : e > t ? t : e;
|
|
6834
6883
|
}
|
|
6835
|
-
})),
|
|
6884
|
+
})), Bs = /* @__PURE__ */ z(((e, t) => {
|
|
6836
6885
|
function n(e) {
|
|
6837
6886
|
var t = typeof e;
|
|
6838
6887
|
return e != null && (t == "object" || t == "function");
|
|
6839
6888
|
}
|
|
6840
6889
|
t.exports = n;
|
|
6841
|
-
})),
|
|
6890
|
+
})), Vs = /* @__PURE__ */ z(((e, t) => {
|
|
6842
6891
|
t.exports = typeof global == "object" && global && global.Object === Object && global;
|
|
6843
|
-
})),
|
|
6844
|
-
var n =
|
|
6892
|
+
})), Hs = /* @__PURE__ */ z(((e, t) => {
|
|
6893
|
+
var n = Vs(), r = typeof self == "object" && self && self.Object === Object && self;
|
|
6845
6894
|
t.exports = n || r || Function("return this")();
|
|
6846
|
-
})),
|
|
6847
|
-
var n =
|
|
6895
|
+
})), Us = /* @__PURE__ */ z(((e, t) => {
|
|
6896
|
+
var n = Hs();
|
|
6848
6897
|
t.exports = function() {
|
|
6849
6898
|
return n.Date.now();
|
|
6850
6899
|
};
|
|
6851
|
-
})),
|
|
6900
|
+
})), Ws = /* @__PURE__ */ z(((e, t) => {
|
|
6852
6901
|
var n = /\s/;
|
|
6853
6902
|
function r(e) {
|
|
6854
6903
|
for (var t = e.length; t-- && n.test(e.charAt(t)););
|
|
6855
6904
|
return t;
|
|
6856
6905
|
}
|
|
6857
6906
|
t.exports = r;
|
|
6858
|
-
})),
|
|
6859
|
-
var n =
|
|
6907
|
+
})), Gs = /* @__PURE__ */ z(((e, t) => {
|
|
6908
|
+
var n = Ws(), r = /^\s+/;
|
|
6860
6909
|
function i(e) {
|
|
6861
6910
|
return e && e.slice(0, n(e) + 1).replace(r, "");
|
|
6862
6911
|
}
|
|
6863
6912
|
t.exports = i;
|
|
6864
|
-
})),
|
|
6865
|
-
t.exports =
|
|
6866
|
-
})),
|
|
6867
|
-
var n =
|
|
6913
|
+
})), Ks = /* @__PURE__ */ z(((e, t) => {
|
|
6914
|
+
t.exports = Hs().Symbol;
|
|
6915
|
+
})), qs = /* @__PURE__ */ z(((e, t) => {
|
|
6916
|
+
var n = Ks(), r = Object.prototype, i = r.hasOwnProperty, a = r.toString, o = n ? n.toStringTag : void 0;
|
|
6868
6917
|
function s(e) {
|
|
6869
6918
|
var t = i.call(e, o), n = e[o];
|
|
6870
6919
|
try {
|
|
@@ -6875,31 +6924,31 @@ var Is = /*#__PURE__*/ H(As, [["render", Fs]]), Ls = /* @__PURE__ */ z(((e, t) =
|
|
|
6875
6924
|
return r && (t ? e[o] = n : delete e[o]), s;
|
|
6876
6925
|
}
|
|
6877
6926
|
t.exports = s;
|
|
6878
|
-
})),
|
|
6927
|
+
})), Js = /* @__PURE__ */ z(((e, t) => {
|
|
6879
6928
|
var n = Object.prototype.toString;
|
|
6880
6929
|
function r(e) {
|
|
6881
6930
|
return n.call(e);
|
|
6882
6931
|
}
|
|
6883
6932
|
t.exports = r;
|
|
6884
|
-
})),
|
|
6885
|
-
var n =
|
|
6933
|
+
})), Ys = /* @__PURE__ */ z(((e, t) => {
|
|
6934
|
+
var n = Ks(), r = qs(), i = Js(), a = "[object Null]", o = "[object Undefined]", s = n ? n.toStringTag : void 0;
|
|
6886
6935
|
function c(e) {
|
|
6887
6936
|
return e == null ? e === void 0 ? o : a : s && s in Object(e) ? r(e) : i(e);
|
|
6888
6937
|
}
|
|
6889
6938
|
t.exports = c;
|
|
6890
|
-
})),
|
|
6939
|
+
})), Xs = /* @__PURE__ */ z(((e, t) => {
|
|
6891
6940
|
function n(e) {
|
|
6892
6941
|
return typeof e == "object" && !!e;
|
|
6893
6942
|
}
|
|
6894
6943
|
t.exports = n;
|
|
6895
|
-
})),
|
|
6896
|
-
var n =
|
|
6944
|
+
})), Zs = /* @__PURE__ */ z(((e, t) => {
|
|
6945
|
+
var n = Ys(), r = Xs(), i = "[object Symbol]";
|
|
6897
6946
|
function a(e) {
|
|
6898
6947
|
return typeof e == "symbol" || r(e) && n(e) == i;
|
|
6899
6948
|
}
|
|
6900
6949
|
t.exports = a;
|
|
6901
|
-
})),
|
|
6902
|
-
var n =
|
|
6950
|
+
})), Qs = /* @__PURE__ */ z(((e, t) => {
|
|
6951
|
+
var n = Gs(), r = Bs(), i = Zs(), a = NaN, o = /^[-+]0x[0-9a-f]+$/i, s = /^0b[01]+$/i, c = /^0o[0-7]+$/i, l = parseInt;
|
|
6903
6952
|
function u(e) {
|
|
6904
6953
|
if (typeof e == "number") return e;
|
|
6905
6954
|
if (i(e)) return a;
|
|
@@ -6913,8 +6962,8 @@ var Is = /*#__PURE__*/ H(As, [["render", Fs]]), Ls = /* @__PURE__ */ z(((e, t) =
|
|
|
6913
6962
|
return u || c.test(e) ? l(e.slice(2), u ? 2 : 8) : o.test(e) ? a : +e;
|
|
6914
6963
|
}
|
|
6915
6964
|
t.exports = u;
|
|
6916
|
-
})),
|
|
6917
|
-
var n =
|
|
6965
|
+
})), $s = /* @__PURE__ */ z(((e, t) => {
|
|
6966
|
+
var n = Bs(), r = Us(), i = Qs(), a = "Expected a function", o = Math.max, s = Math.min;
|
|
6918
6967
|
function c(e, t, c) {
|
|
6919
6968
|
var l, u, d, f, p, m, h = 0, g = !1, _ = !1, v = !0;
|
|
6920
6969
|
if (typeof e != "function") throw TypeError(a);
|
|
@@ -6959,8 +7008,8 @@ var Is = /*#__PURE__*/ H(As, [["render", Fs]]), Ls = /* @__PURE__ */ z(((e, t) =
|
|
|
6959
7008
|
return D.cancel = T, D.flush = E, D;
|
|
6960
7009
|
}
|
|
6961
7010
|
t.exports = c;
|
|
6962
|
-
})),
|
|
6963
|
-
var n =
|
|
7011
|
+
})), ec = /* @__PURE__ */ z(((e, t) => {
|
|
7012
|
+
var n = $s(), r = Bs(), i = "Expected a function";
|
|
6964
7013
|
function a(e, t, a) {
|
|
6965
7014
|
var o = !0, s = !0;
|
|
6966
7015
|
if (typeof e != "function") throw TypeError(i);
|
|
@@ -6971,7 +7020,7 @@ var Is = /*#__PURE__*/ H(As, [["render", Fs]]), Ls = /* @__PURE__ */ z(((e, t) =
|
|
|
6971
7020
|
});
|
|
6972
7021
|
}
|
|
6973
7022
|
t.exports = a;
|
|
6974
|
-
})),
|
|
7023
|
+
})), tc = /* @__PURE__ */ V(zs()), nc = /* @__PURE__ */ V(ec()), rc = {
|
|
6975
7024
|
name: "Saturation",
|
|
6976
7025
|
props: {
|
|
6977
7026
|
modelValue: Object,
|
|
@@ -6992,7 +7041,7 @@ var Is = /*#__PURE__*/ H(As, [["render", Fs]]), Ls = /* @__PURE__ */ z(((e, t) =
|
|
|
6992
7041
|
}
|
|
6993
7042
|
},
|
|
6994
7043
|
methods: {
|
|
6995
|
-
throttle: (0,
|
|
7044
|
+
throttle: (0, nc.default)((e, t) => {
|
|
6996
7045
|
e(t);
|
|
6997
7046
|
}, 20, {
|
|
6998
7047
|
leading: !0,
|
|
@@ -7002,7 +7051,7 @@ var Is = /*#__PURE__*/ H(As, [["render", Fs]]), Ls = /* @__PURE__ */ z(((e, t) =
|
|
|
7002
7051
|
!t && e.preventDefault();
|
|
7003
7052
|
let n = this.$refs.container;
|
|
7004
7053
|
if (!n) return;
|
|
7005
|
-
let r = n.clientWidth, i = n.clientHeight, a = n.getBoundingClientRect().left + window.pageXOffset, o = n.getBoundingClientRect().top + window.pageYOffset, s = e.pageX || (e.touches ? e.touches[0].pageX : 0), c = e.pageY || (e.touches ? e.touches[0].pageY : 0), l = (0,
|
|
7054
|
+
let r = n.clientWidth, i = n.clientHeight, a = n.getBoundingClientRect().left + window.pageXOffset, o = n.getBoundingClientRect().top + window.pageYOffset, s = e.pageX || (e.touches ? e.touches[0].pageX : 0), c = e.pageY || (e.touches ? e.touches[0].pageY : 0), l = (0, tc.default)(s - a, 0, r), u = this.preventUnusable ? (0, tc.default)(c - o, i * .1, i * .85) : (0, tc.default)(c - o, 0, i), d = l / r, f = (0, tc.default)(-(u / i) + 1, 0, 1);
|
|
7006
7055
|
this.throttle(this.onChange, {
|
|
7007
7056
|
h: this.colors.hsv.h,
|
|
7008
7057
|
s: d,
|
|
@@ -7025,7 +7074,7 @@ var Is = /*#__PURE__*/ H(As, [["render", Fs]]), Ls = /* @__PURE__ */ z(((e, t) =
|
|
|
7025
7074
|
}
|
|
7026
7075
|
}
|
|
7027
7076
|
};
|
|
7028
|
-
function
|
|
7077
|
+
function ic(e, t, n, r, i, a) {
|
|
7029
7078
|
return T(), c("div", {
|
|
7030
7079
|
class: "ecs-saturation",
|
|
7031
7080
|
style: S({ background: a.bgColor }),
|
|
@@ -7045,7 +7094,7 @@ function nc(e, t, n, r, i, a) {
|
|
|
7045
7094
|
}, [...t[3] ||= [l("div", { class: "ecs-saturation-circle" }, null, -1)]], 4)
|
|
7046
7095
|
], 36);
|
|
7047
7096
|
}
|
|
7048
|
-
var
|
|
7097
|
+
var ac = /*#__PURE__*/ H(rc, [["render", ic]]), oc = {
|
|
7049
7098
|
name: "Hue",
|
|
7050
7099
|
props: {
|
|
7051
7100
|
modelValue: Object,
|
|
@@ -7108,8 +7157,8 @@ var rc = /*#__PURE__*/ H(tc, [["render", nc]]), ic = {
|
|
|
7108
7157
|
window.removeEventListener("mousemove", this.handleChange), window.removeEventListener("mouseup", this.handleMouseUp);
|
|
7109
7158
|
}
|
|
7110
7159
|
}
|
|
7111
|
-
},
|
|
7112
|
-
function
|
|
7160
|
+
}, sc = ["aria-valuenow"];
|
|
7161
|
+
function cc(e, t, n, r, i, a) {
|
|
7113
7162
|
return T(), c("div", { class: b(["ecs-hue", a.directionClass]) }, [l("div", {
|
|
7114
7163
|
class: "ecs-hue-container",
|
|
7115
7164
|
role: "slider",
|
|
@@ -7127,9 +7176,9 @@ function oc(e, t, n, r, i, a) {
|
|
|
7127
7176
|
left: a.pointerLeft
|
|
7128
7177
|
}),
|
|
7129
7178
|
role: "presentation"
|
|
7130
|
-
}, [...t[3] ||= [l("div", { class: "ecs-hue-picker" }, null, -1)]], 4)], 40,
|
|
7179
|
+
}, [...t[3] ||= [l("div", { class: "ecs-hue-picker" }, null, -1)]], 4)], 40, sc)], 2);
|
|
7131
7180
|
}
|
|
7132
|
-
var
|
|
7181
|
+
var lc = /*#__PURE__*/ H(oc, [["render", cc]]), uc = {}, dc = {
|
|
7133
7182
|
name: "Checkboard",
|
|
7134
7183
|
props: {
|
|
7135
7184
|
size: {
|
|
@@ -7146,37 +7195,37 @@ var sc = /*#__PURE__*/ H(ic, [["render", oc]]), cc = {}, lc = {
|
|
|
7146
7195
|
}
|
|
7147
7196
|
},
|
|
7148
7197
|
computed: { bgStyle() {
|
|
7149
|
-
return { "background-image": "url(" +
|
|
7198
|
+
return { "background-image": "url(" + pc(this.white, this.grey, this.size) + ")" };
|
|
7150
7199
|
} }
|
|
7151
7200
|
};
|
|
7152
|
-
function
|
|
7201
|
+
function fc(e, t, n) {
|
|
7153
7202
|
if (typeof document > "u") return null;
|
|
7154
7203
|
let r = document.createElement("canvas");
|
|
7155
7204
|
r.width = r.height = n * 2;
|
|
7156
7205
|
let i = r.getContext("2d");
|
|
7157
7206
|
return i ? (i.fillStyle = e, i.fillRect(0, 0, r.width, r.height), i.fillStyle = t, i.fillRect(0, 0, n, n), i.translate(n, n), i.fillRect(0, 0, n, n), r.toDataURL()) : null;
|
|
7158
7207
|
}
|
|
7159
|
-
function
|
|
7208
|
+
function pc(e, t, n) {
|
|
7160
7209
|
let r = e + "," + t + "," + n;
|
|
7161
|
-
if (
|
|
7210
|
+
if (uc[r]) return uc[r];
|
|
7162
7211
|
{
|
|
7163
|
-
let i =
|
|
7164
|
-
return
|
|
7212
|
+
let i = fc(e, t, n);
|
|
7213
|
+
return uc[r] = i, i;
|
|
7165
7214
|
}
|
|
7166
7215
|
}
|
|
7167
|
-
function
|
|
7216
|
+
function mc(e, t, n, r, i, a) {
|
|
7168
7217
|
return T(), c("div", {
|
|
7169
7218
|
class: "ecs-checkerboard",
|
|
7170
7219
|
style: S(a.bgStyle)
|
|
7171
7220
|
}, null, 4);
|
|
7172
7221
|
}
|
|
7173
|
-
var
|
|
7222
|
+
var hc = /*#__PURE__*/ H(dc, [["render", mc]]), gc = {
|
|
7174
7223
|
name: "Alpha",
|
|
7175
7224
|
props: {
|
|
7176
7225
|
modelValue: Object,
|
|
7177
7226
|
onChange: Function
|
|
7178
7227
|
},
|
|
7179
|
-
components: { checkboard:
|
|
7228
|
+
components: { checkboard: hc },
|
|
7180
7229
|
computed: {
|
|
7181
7230
|
colors() {
|
|
7182
7231
|
return this.modelValue;
|
|
@@ -7214,11 +7263,11 @@ var pc = /*#__PURE__*/ H(lc, [["render", fc]]), mc = {
|
|
|
7214
7263
|
window.removeEventListener("mousemove", this.handleChange), window.removeEventListener("mouseup", this.handleMouseUp);
|
|
7215
7264
|
}
|
|
7216
7265
|
}
|
|
7217
|
-
},
|
|
7218
|
-
function
|
|
7266
|
+
}, _c = { class: "ecs-alpha" }, vc = { class: "ecs-alpha-checkboard-wrap" };
|
|
7267
|
+
function yc(e, t, n, r, i, a) {
|
|
7219
7268
|
let o = A("checkboard");
|
|
7220
|
-
return T(), c("div",
|
|
7221
|
-
l("div",
|
|
7269
|
+
return T(), c("div", _c, [
|
|
7270
|
+
l("div", vc, [f(o)]),
|
|
7222
7271
|
l("div", {
|
|
7223
7272
|
class: "ecs-alpha-gradient",
|
|
7224
7273
|
style: S({ background: a.gradientColor })
|
|
@@ -7237,15 +7286,15 @@ function _c(e, t, n, r, i, a) {
|
|
|
7237
7286
|
}
|
|
7238
7287
|
//#endregion
|
|
7239
7288
|
//#region src/components/color-picker/color-picker.vue
|
|
7240
|
-
var
|
|
7289
|
+
var bc = {
|
|
7241
7290
|
name: "ecs-color-picker",
|
|
7242
|
-
mixins: [
|
|
7291
|
+
mixins: [js],
|
|
7243
7292
|
components: {
|
|
7244
|
-
saturation:
|
|
7245
|
-
hue:
|
|
7246
|
-
alpha: /* @__PURE__ */ H(
|
|
7247
|
-
"ed-in":
|
|
7248
|
-
checkboard:
|
|
7293
|
+
saturation: ac,
|
|
7294
|
+
hue: lc,
|
|
7295
|
+
alpha: /* @__PURE__ */ H(gc, [["render", yc]]),
|
|
7296
|
+
"ed-in": Rs,
|
|
7297
|
+
checkboard: hc
|
|
7249
7298
|
},
|
|
7250
7299
|
props: {
|
|
7251
7300
|
swatches: {
|
|
@@ -7338,32 +7387,32 @@ var vc = {
|
|
|
7338
7387
|
return n > .1 && n < .9;
|
|
7339
7388
|
}
|
|
7340
7389
|
}
|
|
7341
|
-
},
|
|
7390
|
+
}, xc = {
|
|
7342
7391
|
key: 0,
|
|
7343
7392
|
class: "ecs-color-picker-saturation-wrap"
|
|
7344
|
-
},
|
|
7393
|
+
}, Sc = {
|
|
7345
7394
|
key: 1,
|
|
7346
7395
|
class: "ecs-color-picker-controls"
|
|
7347
|
-
},
|
|
7396
|
+
}, Cc = { class: "ecs-color-picker-sliders" }, wc = { class: "ecs-color-picker-hue-wrap" }, Tc = {
|
|
7348
7397
|
key: 0,
|
|
7349
7398
|
class: "ecs-color-picker-alpha-wrap"
|
|
7350
|
-
},
|
|
7399
|
+
}, Ec = {
|
|
7351
7400
|
key: 2,
|
|
7352
7401
|
class: "ecs-color-picker-field"
|
|
7353
|
-
},
|
|
7402
|
+
}, Dc = { class: "ecs-color-picker-field--double" }, Oc = { class: "ecs-color-picker-field--single" }, kc = { class: "ecs-color-picker-field--single" }, Ac = { class: "ecs-color-picker-field--single" }, jc = {
|
|
7354
7403
|
key: 0,
|
|
7355
7404
|
class: "ecs-color-picker-field--single"
|
|
7356
|
-
},
|
|
7405
|
+
}, Mc = [
|
|
7357
7406
|
"aria-label",
|
|
7358
7407
|
"aria-selected",
|
|
7359
7408
|
"title",
|
|
7360
7409
|
"onClick"
|
|
7361
|
-
],
|
|
7410
|
+
], Nc = [
|
|
7362
7411
|
"aria-label",
|
|
7363
7412
|
"title",
|
|
7364
7413
|
"onClick"
|
|
7365
7414
|
];
|
|
7366
|
-
function
|
|
7415
|
+
function Pc(t, n, r, i, a, o) {
|
|
7367
7416
|
let u = A("saturation"), d = A("hue"), p = A("alpha"), m = A("ed-in"), h = A("checkboard");
|
|
7368
7417
|
return T(), c("div", {
|
|
7369
7418
|
role: "application",
|
|
@@ -7374,7 +7423,7 @@ function Mc(t, n, r, i, a, o) {
|
|
|
7374
7423
|
width: 216 + 2 * r.padding + "px"
|
|
7375
7424
|
})
|
|
7376
7425
|
}, [
|
|
7377
|
-
r.disableCustom ? s("", !0) : (T(), c("div",
|
|
7426
|
+
r.disableCustom ? s("", !0) : (T(), c("div", xc, [f(u, {
|
|
7378
7427
|
modelValue: t.colors,
|
|
7379
7428
|
"onUpdate:modelValue": n[0] ||= (e) => t.colors = e,
|
|
7380
7429
|
onChange: o.childChange,
|
|
@@ -7384,37 +7433,37 @@ function Mc(t, n, r, i, a, o) {
|
|
|
7384
7433
|
"onChange",
|
|
7385
7434
|
"prevent-unusable"
|
|
7386
7435
|
])])),
|
|
7387
|
-
r.disableCustom ? s("", !0) : (T(), c("div",
|
|
7436
|
+
r.disableCustom ? s("", !0) : (T(), c("div", Sc, [l("div", Cc, [l("div", wc, [f(d, {
|
|
7388
7437
|
modelValue: t.colors,
|
|
7389
7438
|
"onUpdate:modelValue": n[1] ||= (e) => t.colors = e,
|
|
7390
7439
|
onChange: o.childChange
|
|
7391
|
-
}, null, 8, ["modelValue", "onChange"])]), r.disableAlpha ? s("", !0) : (T(), c("div",
|
|
7440
|
+
}, null, 8, ["modelValue", "onChange"])]), r.disableAlpha ? s("", !0) : (T(), c("div", Tc, [f(p, {
|
|
7392
7441
|
modelValue: t.colors,
|
|
7393
7442
|
"onUpdate:modelValue": n[2] ||= (e) => t.colors = e,
|
|
7394
7443
|
onChange: o.childChange
|
|
7395
7444
|
}, null, 8, ["modelValue", "onChange"])]))])])),
|
|
7396
|
-
!r.disableFields && !r.disableCustom ? (T(), c("div",
|
|
7397
|
-
l("div",
|
|
7445
|
+
!r.disableFields && !r.disableCustom ? (T(), c("div", Ec, [
|
|
7446
|
+
l("div", Dc, [f(m, {
|
|
7398
7447
|
label: "hex",
|
|
7399
7448
|
modelValue: o.hex,
|
|
7400
7449
|
onChange: o.inputChange
|
|
7401
7450
|
}, null, 8, ["modelValue", "onChange"])]),
|
|
7402
|
-
l("div",
|
|
7451
|
+
l("div", Oc, [f(m, {
|
|
7403
7452
|
label: "r",
|
|
7404
7453
|
modelValue: t.colors.rgba.r,
|
|
7405
7454
|
onChange: o.inputChange
|
|
7406
7455
|
}, null, 8, ["modelValue", "onChange"])]),
|
|
7407
|
-
l("div",
|
|
7456
|
+
l("div", kc, [f(m, {
|
|
7408
7457
|
label: "g",
|
|
7409
7458
|
modelValue: t.colors.rgba.g,
|
|
7410
7459
|
onChange: o.inputChange
|
|
7411
7460
|
}, null, 8, ["modelValue", "onChange"])]),
|
|
7412
|
-
l("div",
|
|
7461
|
+
l("div", Ac, [f(m, {
|
|
7413
7462
|
label: "b",
|
|
7414
7463
|
modelValue: t.colors.rgba.b,
|
|
7415
7464
|
onChange: o.inputChange
|
|
7416
7465
|
}, null, 8, ["modelValue", "onChange"])]),
|
|
7417
|
-
r.disableAlpha ? s("", !0) : (T(), c("div",
|
|
7466
|
+
r.disableAlpha ? s("", !0) : (T(), c("div", jc, [f(m, {
|
|
7418
7467
|
label: "a",
|
|
7419
7468
|
modelValue: t.colors.a,
|
|
7420
7469
|
"arrow-offset": .01,
|
|
@@ -7433,7 +7482,7 @@ function Mc(t, n, r, i, a, o) {
|
|
|
7433
7482
|
title: n.title,
|
|
7434
7483
|
class: "ecs-color-picker-presets-color",
|
|
7435
7484
|
onClick: (e) => o.handlePreset(n.hex)
|
|
7436
|
-
}, [f(h)], 8,
|
|
7485
|
+
}, [f(h)], 8, Nc)) : (T(), c("div", {
|
|
7437
7486
|
class: b(["ecs-color-picker-presets-color", { active: t.colors.hex === n.hex }]),
|
|
7438
7487
|
"aria-label": n.title,
|
|
7439
7488
|
key: "if-" + n.id,
|
|
@@ -7441,7 +7490,7 @@ function Mc(t, n, r, i, a, o) {
|
|
|
7441
7490
|
"aria-selected": t.colors.hex === n.hex ? "true" : "false",
|
|
7442
7491
|
title: n.title,
|
|
7443
7492
|
onClick: (e) => o.handlePreset(n.hex)
|
|
7444
|
-
}, null, 14,
|
|
7493
|
+
}, null, 14, Mc))], 64))), 256)), r.swatches.some((e) => e.hex === t.colors.hex) ? s("", !0) : (T(), c("div", {
|
|
7445
7494
|
key: 0,
|
|
7446
7495
|
class: b(["ecs-color-picker-presets-color active", o.isActiveColorDark ? "dark" : "light"]),
|
|
7447
7496
|
"aria-label": "Custom color",
|
|
@@ -7450,11 +7499,11 @@ function Mc(t, n, r, i, a, o) {
|
|
|
7450
7499
|
}, null, 6))], 4)
|
|
7451
7500
|
], 6);
|
|
7452
7501
|
}
|
|
7453
|
-
var
|
|
7502
|
+
var Fc = /*#__PURE__*/ H(bc, [["render", Pc]]), Ic = {
|
|
7454
7503
|
name: "ecs-color-picker-input",
|
|
7455
7504
|
emits: ["update:modelValue"],
|
|
7456
7505
|
components: {
|
|
7457
|
-
EcsColorPicker:
|
|
7506
|
+
EcsColorPicker: Fc,
|
|
7458
7507
|
EcsPopover: cr
|
|
7459
7508
|
},
|
|
7460
7509
|
props: {
|
|
@@ -7503,7 +7552,7 @@ var Nc = /*#__PURE__*/ H(vc, [["render", Mc]]), Pc = {
|
|
|
7503
7552
|
}
|
|
7504
7553
|
}
|
|
7505
7554
|
};
|
|
7506
|
-
function
|
|
7555
|
+
function Lc(e, t, n, r, i, a) {
|
|
7507
7556
|
let s = A("ecs-color-picker"), c = A("ecs-popover");
|
|
7508
7557
|
return T(), o(c, { class: "ecs-color-picker-input" }, {
|
|
7509
7558
|
content: I(() => [f(s, {
|
|
@@ -7530,7 +7579,7 @@ function Fc(e, t, n, r, i, a) {
|
|
|
7530
7579
|
_: 1
|
|
7531
7580
|
});
|
|
7532
7581
|
}
|
|
7533
|
-
var
|
|
7582
|
+
var Rc = /*#__PURE__*/ H(Ic, [["render", Lc], ["__scopeId", "data-v-08aaa823"]]), zc = {
|
|
7534
7583
|
name: "ecs-data-card",
|
|
7535
7584
|
components: {
|
|
7536
7585
|
EcsIcon: U,
|
|
@@ -7610,14 +7659,14 @@ var Ic = /*#__PURE__*/ H(Pc, [["render", Fc], ["__scopeId", "data-v-08aaa823"]])
|
|
|
7610
7659
|
created() {
|
|
7611
7660
|
this.expandId = this.generateUniqueId();
|
|
7612
7661
|
}
|
|
7613
|
-
},
|
|
7662
|
+
}, Bc = ["aria-busy", "tabindex"], Vc = {
|
|
7614
7663
|
key: 0,
|
|
7615
7664
|
class: "control"
|
|
7616
|
-
},
|
|
7665
|
+
}, Hc = { class: "ecs-data-card-inner" }, Uc = { class: "ecs-data-card-inner-content" }, Wc = {
|
|
7617
7666
|
key: 0,
|
|
7618
7667
|
class: "ecs-data-card-inner-content"
|
|
7619
|
-
},
|
|
7620
|
-
function
|
|
7668
|
+
}, Gc = ["id", "aria-hidden"], Kc = { class: "ecs-data-card-expand-inner" };
|
|
7669
|
+
function qc(e, t, n, r, i, a) {
|
|
7621
7670
|
let u = A("ecs-icon"), d = A("ecs-skeleton-loader"), f = A("ecs-button"), p = A("ecs-button-table"), m = A("ecs-focus-ring");
|
|
7622
7671
|
return T(), c("div", {
|
|
7623
7672
|
class: b(["ecs-data-card", [
|
|
@@ -7631,7 +7680,7 @@ function Gc(e, t, n, r, i, a) {
|
|
|
7631
7680
|
"aria-busy": a.isLoading || null,
|
|
7632
7681
|
tabindex: n.hover ? "0" : "-1"
|
|
7633
7682
|
}, [
|
|
7634
|
-
n.control && e.$slots.control ? (T(), c("div",
|
|
7683
|
+
n.control && e.$slots.control ? (T(), c("div", Vc, [k(e.$slots, "control", {}, void 0, !0)])) : s("", !0),
|
|
7635
7684
|
n.icon ? (T(), o(u, {
|
|
7636
7685
|
key: 1,
|
|
7637
7686
|
type: n.icon,
|
|
@@ -7650,8 +7699,8 @@ function Gc(e, t, n, r, i, a) {
|
|
|
7650
7699
|
height: 24,
|
|
7651
7700
|
ai: a.isAiLoading
|
|
7652
7701
|
}, null, 8, ["ai"])) : s("", !0),
|
|
7653
|
-
l("div",
|
|
7654
|
-
l("div",
|
|
7702
|
+
l("div", Hc, [
|
|
7703
|
+
l("div", Uc, [
|
|
7655
7704
|
n.expandable && n.expandPosition === "left" ? (T(), o(f, {
|
|
7656
7705
|
key: 0,
|
|
7657
7706
|
onClick: t[0] ||= (e) => i.isExpanded = !i.isExpanded,
|
|
@@ -7702,7 +7751,7 @@ function Gc(e, t, n, r, i, a) {
|
|
|
7702
7751
|
"label"
|
|
7703
7752
|
])) : s("", !0)
|
|
7704
7753
|
]),
|
|
7705
|
-
e.$slots.meta ? (T(), c("div",
|
|
7754
|
+
e.$slots.meta ? (T(), c("div", Wc, [k(e.$slots, "meta", {}, void 0, !0), a.isLoading ? (T(), o(d, {
|
|
7706
7755
|
key: 0,
|
|
7707
7756
|
type: "single",
|
|
7708
7757
|
width: a.skeletonWidth(15, 30),
|
|
@@ -7713,23 +7762,23 @@ function Gc(e, t, n, r, i, a) {
|
|
|
7713
7762
|
id: i.expandId,
|
|
7714
7763
|
"aria-hidden": i.isExpanded ? "false" : "true",
|
|
7715
7764
|
class: "ecs-data-card-expand"
|
|
7716
|
-
}, [l("div",
|
|
7765
|
+
}, [l("div", Kc, [k(e.$slots, "expand", {}, void 0, !0)])], 8, Gc)), [[ae, i.isExpanded]]) : s("", !0)
|
|
7717
7766
|
]),
|
|
7718
7767
|
n.hover ? (T(), o(m, {
|
|
7719
7768
|
key: 3,
|
|
7720
7769
|
inset: 0,
|
|
7721
7770
|
radius: 0
|
|
7722
7771
|
})) : s("", !0)
|
|
7723
|
-
], 10,
|
|
7772
|
+
], 10, Bc);
|
|
7724
7773
|
}
|
|
7725
|
-
var
|
|
7774
|
+
var Jc = /*#__PURE__*/ H(zc, [["render", qc], ["__scopeId", "data-v-0b29bd50"]]), Yc = { name: "ecs-data-card-list" }, Xc = {
|
|
7726
7775
|
class: "ecs-data-card-list",
|
|
7727
7776
|
role: "list"
|
|
7728
7777
|
};
|
|
7729
|
-
function
|
|
7730
|
-
return T(), c("div",
|
|
7778
|
+
function Zc(e, t, n, r, i, a) {
|
|
7779
|
+
return T(), c("div", Xc, [k(e.$slots, "default")]);
|
|
7731
7780
|
}
|
|
7732
|
-
var
|
|
7781
|
+
var Qc = /*#__PURE__*/ H(Yc, [["render", Zc]]), $c = {
|
|
7733
7782
|
name: "ecs-party-entry",
|
|
7734
7783
|
components: {
|
|
7735
7784
|
EcsIcon: U,
|
|
@@ -7794,11 +7843,11 @@ var Xc = /*#__PURE__*/ H(qc, [["render", Yc]]), Zc = {
|
|
|
7794
7843
|
}
|
|
7795
7844
|
}
|
|
7796
7845
|
}
|
|
7797
|
-
},
|
|
7846
|
+
}, el = {
|
|
7798
7847
|
key: 2,
|
|
7799
7848
|
class: "ecs-party-entry-background"
|
|
7800
7849
|
};
|
|
7801
|
-
function
|
|
7850
|
+
function tl(e, t, n, r, i, a) {
|
|
7802
7851
|
let u = A("ecs-icon"), d = A("ecs-sticker");
|
|
7803
7852
|
return T(), c("div", {
|
|
7804
7853
|
class: b(["ecs-party-entry", [n.party, n.color && n.background ? "ecs-party-entry-colored" : ""]]),
|
|
@@ -7839,15 +7888,15 @@ function $c(e, t, n, r, i, a) {
|
|
|
7839
7888
|
type: n.badge,
|
|
7840
7889
|
size: n.badgeSize
|
|
7841
7890
|
}, null, 8, ["type", "size"])) : s("", !0)], 4)) : s("", !0),
|
|
7842
|
-
n.background ? (T(), c("div",
|
|
7891
|
+
n.background ? (T(), c("div", el)) : s("", !0)
|
|
7843
7892
|
], 6);
|
|
7844
7893
|
}
|
|
7845
|
-
var
|
|
7894
|
+
var nl = /*#__PURE__*/ H($c, [["render", tl], ["__scopeId", "data-v-4f34cac7"]]), rl = {
|
|
7846
7895
|
name: "ecs-data-card-row",
|
|
7847
7896
|
components: {
|
|
7848
7897
|
EcsIcon: U,
|
|
7849
7898
|
EcsButton: X,
|
|
7850
|
-
EcsPartyEntry:
|
|
7899
|
+
EcsPartyEntry: nl,
|
|
7851
7900
|
EcsButtonTable: Ka
|
|
7852
7901
|
},
|
|
7853
7902
|
emits: [
|
|
@@ -7940,16 +7989,16 @@ var el = /*#__PURE__*/ H(Zc, [["render", $c], ["__scopeId", "data-v-4f34cac7"]])
|
|
|
7940
7989
|
this.checkTruncation(this.$refs.pillText), this.checkTruncation(this.$refs.titleText), this.checkTruncation(this.$refs.metaText);
|
|
7941
7990
|
});
|
|
7942
7991
|
}
|
|
7943
|
-
},
|
|
7992
|
+
}, il = { class: "ecs-data-card-row" }, al = { class: "ecs-data-card-row-title-container" }, ol = { class: "text" }, sl = {
|
|
7944
7993
|
key: 2,
|
|
7945
7994
|
class: "border"
|
|
7946
|
-
},
|
|
7995
|
+
}, cl = {
|
|
7947
7996
|
key: 1,
|
|
7948
7997
|
class: "ecs-data-card-row-meta-pills-container"
|
|
7949
7998
|
};
|
|
7950
|
-
function
|
|
7999
|
+
function ll(e, t, n, r, i, a) {
|
|
7951
8000
|
let u = A("ecs-button"), f = A("ecs-party-entry"), p = A("ecs-icon"), m = A("ecs-button-table");
|
|
7952
|
-
return T(), c("div",
|
|
8001
|
+
return T(), c("div", il, [a.computedOpenButton ? (T(), o(u, {
|
|
7953
8002
|
key: 0,
|
|
7954
8003
|
onClick: a.openButtonClick,
|
|
7955
8004
|
type: "secondary",
|
|
@@ -7968,7 +8017,7 @@ function sl(e, t, n, r, i, a) {
|
|
|
7968
8017
|
"aria-label",
|
|
7969
8018
|
"title"
|
|
7970
8019
|
])) : s("", !0), l("div", { class: b(["ecs-data-card-row-inner", { wrap: n.wrap === "wrap-text" || n.wrap === "wrap-row" }]) }, [
|
|
7971
|
-
l("div",
|
|
8020
|
+
l("div", al, [a.hasPill && n.pill?.party ? (T(), o(f, {
|
|
7972
8021
|
key: 0,
|
|
7973
8022
|
onClick: a.pillClick,
|
|
7974
8023
|
onMouseenter: t[0] ||= (e) => a.handleHover(!0),
|
|
@@ -8016,13 +8065,13 @@ function sl(e, t, n, r, i, a) {
|
|
|
8016
8065
|
color: a.pillIconColor,
|
|
8017
8066
|
size: "20px"
|
|
8018
8067
|
}, null, 8, ["type", "color"])) : s("", !0),
|
|
8019
|
-
l("span",
|
|
8068
|
+
l("span", ol, N(n.pill.text), 1),
|
|
8020
8069
|
n.pill.background ? (T(), c("span", {
|
|
8021
8070
|
key: 1,
|
|
8022
8071
|
class: "background",
|
|
8023
8072
|
style: S(a.getPillBackgroundStyle)
|
|
8024
8073
|
}, null, 4)) : s("", !0),
|
|
8025
|
-
n.pill.border && n.pill.background ? (T(), c("span",
|
|
8074
|
+
n.pill.border && n.pill.background ? (T(), c("span", sl)) : s("", !0)
|
|
8026
8075
|
], 38)) : s("", !0), n.title ? (T(), c("span", {
|
|
8027
8076
|
key: 2,
|
|
8028
8077
|
class: b(["ecs-data-card-row-title", { ai: n.title.ai }])
|
|
@@ -8057,7 +8106,7 @@ function sl(e, t, n, r, i, a) {
|
|
|
8057
8106
|
}, "ecs-data-card-row-meta-container"]),
|
|
8058
8107
|
ref: "metaText"
|
|
8059
8108
|
}, [d(N(n.meta?.text) + " ", 1), k(e.$slots, "customMeta", {}, void 0, !0)], 2)) : s("", !0),
|
|
8060
|
-
n.count || n.designation ? (T(), c("div",
|
|
8109
|
+
n.count || n.designation ? (T(), c("div", cl, [n.designation ? (T(), o(f, {
|
|
8061
8110
|
key: 0,
|
|
8062
8111
|
party: n.designation.party,
|
|
8063
8112
|
color: n.designation.color,
|
|
@@ -8095,7 +8144,7 @@ function sl(e, t, n, r, i, a) {
|
|
|
8095
8144
|
])) : s("", !0)])) : s("", !0)
|
|
8096
8145
|
], 2)]);
|
|
8097
8146
|
}
|
|
8098
|
-
var
|
|
8147
|
+
var ul = /*#__PURE__*/ H(rl, [["render", ll], ["__scopeId", "data-v-78507101"]]), dl = {
|
|
8099
8148
|
name: "ecs-data-grid",
|
|
8100
8149
|
emits: ["tableScroll"],
|
|
8101
8150
|
props: {
|
|
@@ -8128,14 +8177,14 @@ var cl = /*#__PURE__*/ H(tl, [["render", sl], ["__scopeId", "data-v-78507101"]])
|
|
|
8128
8177
|
let e = 100 * ((this.$refs.dataGridScroller.scrollTop + this.$refs.dataGridScroller.clientHeight) / this.$refs.dataGridScroller.scrollHeight);
|
|
8129
8178
|
this.$emit("tableScroll", e);
|
|
8130
8179
|
} }
|
|
8131
|
-
},
|
|
8180
|
+
}, fl = ["aria-disabled"], pl = {
|
|
8132
8181
|
key: 0,
|
|
8133
8182
|
class: "ecs-data-grid-empty"
|
|
8134
|
-
},
|
|
8183
|
+
}, ml = {
|
|
8135
8184
|
key: 2,
|
|
8136
8185
|
class: "ecs-data-grid-pagination"
|
|
8137
8186
|
};
|
|
8138
|
-
function
|
|
8187
|
+
function hl(e, t, n, r, i, a) {
|
|
8139
8188
|
return T(), c("div", {
|
|
8140
8189
|
onScroll: t[0] ||= (...e) => a.tableScroll && a.tableScroll(...e),
|
|
8141
8190
|
ref: "dataGridScroller",
|
|
@@ -8152,7 +8201,7 @@ function pl(e, t, n, r, i, a) {
|
|
|
8152
8201
|
class: b(["ecs-data-grid-head", n.sidebarOverlay ? "sidebar-space" : ""]),
|
|
8153
8202
|
role: "row"
|
|
8154
8203
|
}, [k(e.$slots, "head", {}, void 0, !0)], 2),
|
|
8155
|
-
e.$slots.empty ? (T(), c("div",
|
|
8204
|
+
e.$slots.empty ? (T(), c("div", pl, [k(e.$slots, "empty", {}, void 0, !0)])) : (T(), c("div", {
|
|
8156
8205
|
key: 1,
|
|
8157
8206
|
class: b(["ecs-data-grid-rows", [
|
|
8158
8207
|
n.striped ? "striped" : "",
|
|
@@ -8160,10 +8209,10 @@ function pl(e, t, n, r, i, a) {
|
|
|
8160
8209
|
n.disabled ? "disabled" : ""
|
|
8161
8210
|
]])
|
|
8162
8211
|
}, [k(e.$slots, "default", {}, void 0, !0)], 2)),
|
|
8163
|
-
e.$slots.pagination ? (T(), c("div",
|
|
8164
|
-
], 42,
|
|
8212
|
+
e.$slots.pagination ? (T(), c("div", ml, [k(e.$slots, "pagination", {}, void 0, !0)])) : s("", !0)
|
|
8213
|
+
], 42, fl);
|
|
8165
8214
|
}
|
|
8166
|
-
var
|
|
8215
|
+
var gl = /*#__PURE__*/ H(dl, [["render", hl], ["__scopeId", "data-v-60369c9b"]]), _l = {
|
|
8167
8216
|
name: "ecs-data-grid-row",
|
|
8168
8217
|
emits: [
|
|
8169
8218
|
"rowdrop",
|
|
@@ -8236,11 +8285,11 @@ var ml = /*#__PURE__*/ H(ll, [["render", pl], ["__scopeId", "data-v-60369c9b"]])
|
|
|
8236
8285
|
this.$refs.grid_row.removeEventListener(e, this.handleRowClick);
|
|
8237
8286
|
}) : this.$refs.grid_row.removeEventListener(this.mouseEvent, this.handleRowClick));
|
|
8238
8287
|
}
|
|
8239
|
-
},
|
|
8288
|
+
}, vl = {
|
|
8240
8289
|
key: 1,
|
|
8241
8290
|
class: "ecs-data-grid-row-block"
|
|
8242
8291
|
};
|
|
8243
|
-
function
|
|
8292
|
+
function yl(e, t, n, r, i, a) {
|
|
8244
8293
|
return T(), c("div", {
|
|
8245
8294
|
class: b(["ecs-data-grid-row", [
|
|
8246
8295
|
n.state,
|
|
@@ -8258,14 +8307,14 @@ function _l(e, t, n, r, i, a) {
|
|
|
8258
8307
|
onClick: t[0] ||= (...e) => a.handleDropzoneClick && a.handleDropzoneClick(...e),
|
|
8259
8308
|
class: "ecs-data-grid-row-drop-zone"
|
|
8260
8309
|
})) : s("", !0),
|
|
8261
|
-
n.state == "disabled" ? (T(), c("div",
|
|
8310
|
+
n.state == "disabled" ? (T(), c("div", vl)) : s("", !0),
|
|
8262
8311
|
k(e.$slots, "default", {}, void 0, !0)
|
|
8263
8312
|
], 6);
|
|
8264
8313
|
}
|
|
8265
|
-
var
|
|
8314
|
+
var bl = /*#__PURE__*/ H(_l, [["render", yl], ["__scopeId", "data-v-3c635dc6"]]), xl = {
|
|
8266
8315
|
name: "ecs-data-grid-row-group",
|
|
8267
8316
|
emits: ["toggle"],
|
|
8268
|
-
components: { EcsDataGridRow:
|
|
8317
|
+
components: { EcsDataGridRow: bl },
|
|
8269
8318
|
props: {
|
|
8270
8319
|
headerRowType: {
|
|
8271
8320
|
type: String,
|
|
@@ -8286,13 +8335,13 @@ var vl = /*#__PURE__*/ H(hl, [["render", _l], ["__scopeId", "data-v-3c635dc6"]])
|
|
|
8286
8335
|
watch: { collapsed(e) {
|
|
8287
8336
|
this.isCollapsed = e;
|
|
8288
8337
|
} }
|
|
8289
|
-
},
|
|
8338
|
+
}, Sl = {
|
|
8290
8339
|
class: "ecs-data-grid-row-group",
|
|
8291
8340
|
role: "rowgroup"
|
|
8292
|
-
},
|
|
8293
|
-
function
|
|
8341
|
+
}, Cl = ["aria-hidden"];
|
|
8342
|
+
function wl(e, t, n, r, i, a) {
|
|
8294
8343
|
let o = A("ecs-data-grid-row");
|
|
8295
|
-
return T(), c("div",
|
|
8344
|
+
return T(), c("div", Sl, [f(o, {
|
|
8296
8345
|
type: n.headerRowType,
|
|
8297
8346
|
onCollapse: a.handleCollapse
|
|
8298
8347
|
}, {
|
|
@@ -8301,17 +8350,17 @@ function Sl(e, t, n, r, i, a) {
|
|
|
8301
8350
|
}, 8, ["type", "onCollapse"]), l("div", {
|
|
8302
8351
|
class: b(["ecs-data-grid-row-group-rows", i.isCollapsed ? "collapsed" : "expanded"]),
|
|
8303
8352
|
"aria-hidden": i.isCollapsed || null
|
|
8304
|
-
}, [k(e.$slots, "rows", {}, void 0, !0)], 10,
|
|
8353
|
+
}, [k(e.$slots, "rows", {}, void 0, !0)], 10, Cl)]);
|
|
8305
8354
|
}
|
|
8306
|
-
var
|
|
8355
|
+
var Tl = /*#__PURE__*/ H(xl, [["render", wl], ["__scopeId", "data-v-c6e97366"]]), El = () => h("selectedcontent"), Dl = [
|
|
8307
8356
|
0,
|
|
8308
8357
|
50,
|
|
8309
8358
|
150
|
|
8310
|
-
],
|
|
8359
|
+
], Ol = {
|
|
8311
8360
|
name: "ecs-select",
|
|
8312
8361
|
components: {
|
|
8313
8362
|
EcsIcon: U,
|
|
8314
|
-
SelectedContent:
|
|
8363
|
+
SelectedContent: El
|
|
8315
8364
|
},
|
|
8316
8365
|
emits: [
|
|
8317
8366
|
"focus",
|
|
@@ -8393,7 +8442,7 @@ var Cl = /*#__PURE__*/ H(yl, [["render", Sl], ["__scopeId", "data-v-c6e97366"]])
|
|
|
8393
8442
|
},
|
|
8394
8443
|
mounted() {
|
|
8395
8444
|
this.placeholder && (this.hasPlaceholder = !0), this.$nextTick(() => {
|
|
8396
|
-
this.applySelectValue(), this.syncSelectedContent(), this.scheduleDelayedSync(
|
|
8445
|
+
this.applySelectValue(), this.syncSelectedContent(), this.scheduleDelayedSync(Dl);
|
|
8397
8446
|
});
|
|
8398
8447
|
},
|
|
8399
8448
|
beforeUnmount() {
|
|
@@ -8426,25 +8475,25 @@ var Cl = /*#__PURE__*/ H(yl, [["render", Sl], ["__scopeId", "data-v-c6e97366"]])
|
|
|
8426
8475
|
let n = e ?? "";
|
|
8427
8476
|
n !== this.currentValue && (this.currentValue = n), this.$nextTick(() => this.syncSelectedContent());
|
|
8428
8477
|
} }
|
|
8429
|
-
},
|
|
8478
|
+
}, kl = [
|
|
8430
8479
|
"disabled",
|
|
8431
8480
|
"required",
|
|
8432
8481
|
"id",
|
|
8433
8482
|
"name"
|
|
8434
|
-
],
|
|
8483
|
+
], Al = { ref: "selectButton" }, jl = {
|
|
8435
8484
|
key: 0,
|
|
8436
8485
|
value: "",
|
|
8437
8486
|
disabled: "",
|
|
8438
8487
|
selected: "",
|
|
8439
8488
|
hidden: ""
|
|
8440
|
-
},
|
|
8489
|
+
}, Ml = {
|
|
8441
8490
|
key: 0,
|
|
8442
8491
|
value: "",
|
|
8443
8492
|
disabled: "",
|
|
8444
8493
|
selected: "",
|
|
8445
8494
|
hidden: ""
|
|
8446
8495
|
};
|
|
8447
|
-
function
|
|
8496
|
+
function Nl(t, n, r, i, a, o) {
|
|
8448
8497
|
let u = A("SelectedContent"), d = A("ecs-icon");
|
|
8449
8498
|
return T(), c("div", { class: b(["ecs-form-select", o.selectClasses]) }, [
|
|
8450
8499
|
l("select", v({
|
|
@@ -8462,7 +8511,7 @@ function jl(t, n, r, i, a, o) {
|
|
|
8462
8511
|
id: r.id,
|
|
8463
8512
|
name: r.name,
|
|
8464
8513
|
style: { paddingRight: r.fitWidth ? o.chevronPadding : "var(--spacing-10)" }
|
|
8465
|
-
}), [o.supportsBaseSelect ? (T(), c(e, { key: 0 }, [l("button",
|
|
8514
|
+
}), [o.supportsBaseSelect ? (T(), c(e, { key: 0 }, [l("button", Al, [f(u)], 512), l("div", null, [r.placeholder ? (T(), c("option", jl)) : s("", !0), k(t.$slots, "default", {}, void 0, !0)])], 64)) : (T(), c(e, { key: 1 }, [r.placeholder ? (T(), c("option", Ml)) : s("", !0), k(t.$slots, "default", {}, void 0, !0)], 64))], 16, kl),
|
|
8466
8515
|
r.placeholder && a.currentValue == "" ? (T(), c("span", {
|
|
8467
8516
|
key: 0,
|
|
8468
8517
|
class: b(["placeholder", r.size])
|
|
@@ -8473,7 +8522,7 @@ function jl(t, n, r, i, a, o) {
|
|
|
8473
8522
|
}, null, 8, ["size"])
|
|
8474
8523
|
], 2);
|
|
8475
8524
|
}
|
|
8476
|
-
var
|
|
8525
|
+
var Pl = /*#__PURE__*/ H(Ol, [["render", Nl], ["__scopeId", "data-v-9b975df8"]]), Fl = (e) => e == null, Il = {
|
|
8477
8526
|
name: "ecs-data-grid-head-cell",
|
|
8478
8527
|
emits: [
|
|
8479
8528
|
"resizedWidth",
|
|
@@ -8482,7 +8531,7 @@ var Ml = /*#__PURE__*/ H(El, [["render", jl], ["__scopeId", "data-v-9b975df8"]])
|
|
|
8482
8531
|
],
|
|
8483
8532
|
components: {
|
|
8484
8533
|
EcsIcon: U,
|
|
8485
|
-
EcsSelect:
|
|
8534
|
+
EcsSelect: Pl,
|
|
8486
8535
|
EcsFocusRing: W
|
|
8487
8536
|
},
|
|
8488
8537
|
props: {
|
|
@@ -8660,7 +8709,7 @@ var Ml = /*#__PURE__*/ H(El, [["render", jl], ["__scopeId", "data-v-9b975df8"]])
|
|
|
8660
8709
|
let e = document.querySelectorAll(".ecs-data-grid-head-cell-inner"), t;
|
|
8661
8710
|
for (let n = 0; n < e.length; n++) if (e[n]) {
|
|
8662
8711
|
if (e[n].attributes["data-column"].value == this.computedId) t = n;
|
|
8663
|
-
else if (!
|
|
8712
|
+
else if (!Fl(e[n].__vueParentComponent) && !isNaN(t) && n > t && e[n].__vueParentComponent.ctx.fixedLeft && e[n].__vueParentComponent.ctx.cellFixedLeftOffset) {
|
|
8664
8713
|
let t = e[n - 1].offsetWidth;
|
|
8665
8714
|
e[n - 1].__vueParentComponent.ctx.cellFixedLeftOffset && (t += e[n - 1].__vueParentComponent.ctx.cellFixedLeftOffset), e[n].__vueParentComponent.ctx.setFixedLeftOffset(t), document.querySelectorAll("[data-column=\"" + e[n].__vueParentComponent.ctx.normalizedId.toLowerCase() + "-column-cell\"]").forEach((e) => {
|
|
8666
8715
|
e.__vueParentComponent.ctx.setFixedLeftOffset(t);
|
|
@@ -8697,37 +8746,37 @@ var Ml = /*#__PURE__*/ H(El, [["render", jl], ["__scopeId", "data-v-9b975df8"]])
|
|
|
8697
8746
|
unmounted() {
|
|
8698
8747
|
this.resizeObserver && this.resizeObserver.disconnect();
|
|
8699
8748
|
}
|
|
8700
|
-
},
|
|
8749
|
+
}, Ll = ["aria-sort", "aria-label"], Rl = {
|
|
8701
8750
|
key: 0,
|
|
8702
8751
|
class: "shadow left"
|
|
8703
|
-
},
|
|
8752
|
+
}, zl = ["data-column", "data-test"], Bl = {
|
|
8704
8753
|
key: 0,
|
|
8705
8754
|
class: "first-cell-spacer"
|
|
8706
|
-
},
|
|
8755
|
+
}, Vl = {
|
|
8707
8756
|
key: 1,
|
|
8708
8757
|
class: "ecs-data-grid-head-cell-prefix"
|
|
8709
|
-
},
|
|
8758
|
+
}, Hl = ["title"], Ul = ["selected", "value"], Wl = ["title"], Gl = ["title"], Kl = {
|
|
8710
8759
|
width: "14",
|
|
8711
8760
|
height: "20",
|
|
8712
8761
|
viewBox: "0 0 14 20",
|
|
8713
8762
|
fill: "none",
|
|
8714
8763
|
xmlns: "http://www.w3.org/2000/svg"
|
|
8715
|
-
},
|
|
8764
|
+
}, ql = [
|
|
8716
8765
|
"stroke",
|
|
8717
8766
|
"stroke-width",
|
|
8718
8767
|
"opacity"
|
|
8719
|
-
],
|
|
8768
|
+
], Jl = [
|
|
8720
8769
|
"stroke",
|
|
8721
8770
|
"stroke-width",
|
|
8722
8771
|
"opacity"
|
|
8723
|
-
],
|
|
8772
|
+
], Yl = {
|
|
8724
8773
|
key: 6,
|
|
8725
8774
|
class: "ecs-data-grid-head-cell-suffix"
|
|
8726
|
-
},
|
|
8775
|
+
}, Xl = {
|
|
8727
8776
|
key: 1,
|
|
8728
8777
|
class: "shadow right"
|
|
8729
8778
|
};
|
|
8730
|
-
function
|
|
8779
|
+
function Zl(t, n, r, i, a, u) {
|
|
8731
8780
|
let d = A("ecs-icon"), p = A("ecs-select"), m = A("ecs-focus-ring");
|
|
8732
8781
|
return T(), c("div", {
|
|
8733
8782
|
class: b(["ecs-data-grid-head-cell", [
|
|
@@ -8740,7 +8789,7 @@ function Yl(t, n, r, i, a, u) {
|
|
|
8740
8789
|
"aria-sort": u.ariaSort,
|
|
8741
8790
|
"aria-label": r.icon ? r.name : null
|
|
8742
8791
|
}, [
|
|
8743
|
-
r.fixedRight ? (T(), c("div",
|
|
8792
|
+
r.fixedRight ? (T(), c("div", Rl)) : s("", !0),
|
|
8744
8793
|
l("div", {
|
|
8745
8794
|
ref: "resizer",
|
|
8746
8795
|
class: b(["ecs-data-grid-head-cell-inner", r.resizable ? "resizable" : ""]),
|
|
@@ -8753,8 +8802,8 @@ function Yl(t, n, r, i, a, u) {
|
|
|
8753
8802
|
"data-column": u.computedId,
|
|
8754
8803
|
"data-test": u.computedId
|
|
8755
8804
|
}, [
|
|
8756
|
-
r.firstNonStaticCell ? (T(), c("div",
|
|
8757
|
-
t.$slots.prefix ? (T(), c("div",
|
|
8805
|
+
r.firstNonStaticCell ? (T(), c("div", Bl)) : s("", !0),
|
|
8806
|
+
t.$slots.prefix ? (T(), c("div", Vl, [k(t.$slots, "prefix", {}, void 0, !0)])) : s("", !0),
|
|
8758
8807
|
r.icon ? (T(), c("div", {
|
|
8759
8808
|
key: 2,
|
|
8760
8809
|
title: r.name,
|
|
@@ -8763,7 +8812,7 @@ function Yl(t, n, r, i, a, u) {
|
|
|
8763
8812
|
type: r.icon,
|
|
8764
8813
|
size: "20",
|
|
8765
8814
|
color: "#202127"
|
|
8766
|
-
}, null, 8, ["type"])], 8,
|
|
8815
|
+
}, null, 8, ["type"])], 8, Hl)) : r.select ? (T(), o(p, {
|
|
8767
8816
|
key: 3,
|
|
8768
8817
|
modelValue: a.selectCellValue,
|
|
8769
8818
|
"onUpdate:modelValue": n[0] ||= (e) => a.selectCellValue = e,
|
|
@@ -8775,40 +8824,40 @@ function Yl(t, n, r, i, a, u) {
|
|
|
8775
8824
|
key: t,
|
|
8776
8825
|
selected: e.selected,
|
|
8777
8826
|
value: e.value
|
|
8778
|
-
}, N(e.name), 9,
|
|
8827
|
+
}, N(e.name), 9, Ul))), 128))]),
|
|
8779
8828
|
_: 1
|
|
8780
8829
|
}, 8, ["modelValue", "disabled"])) : r.empty ? s("", !0) : (T(), c("div", {
|
|
8781
8830
|
key: 4,
|
|
8782
8831
|
class: "ecs-data-grid-head-cell-text",
|
|
8783
8832
|
title: r.name
|
|
8784
|
-
}, N(r.name), 9,
|
|
8833
|
+
}, N(r.name), 9, Wl)),
|
|
8785
8834
|
k(t.$slots, "default", {}, void 0, !0),
|
|
8786
8835
|
r.sortable ? (T(), c("button", {
|
|
8787
8836
|
key: 5,
|
|
8788
8837
|
onClick: n[2] ||= (...e) => u.sortBy && u.sortBy(...e),
|
|
8789
8838
|
class: b(["sort-button", r.sorting]),
|
|
8790
8839
|
title: u.sortTitle
|
|
8791
|
-
}, [(T(), c("svg",
|
|
8840
|
+
}, [(T(), c("svg", Kl, [l("path", {
|
|
8792
8841
|
d: "M3.99023 11.802L6.76923 14.722L9.54823 11.802",
|
|
8793
8842
|
stroke: r.sorting == "desc" ? "#157EFB" : "#B9BCC2",
|
|
8794
8843
|
"stroke-width": r.sorting == "desc" ? "1.5" : "1",
|
|
8795
8844
|
opacity: r.sorting == "desc" || r.sorting == "none" ? "1" : "0.5",
|
|
8796
8845
|
"stroke-linecap": "round",
|
|
8797
8846
|
"stroke-linejoin": "round"
|
|
8798
|
-
}, null, 8,
|
|
8847
|
+
}, null, 8, ql), l("path", {
|
|
8799
8848
|
d: "M3.99023 8.722L6.76923 5.802L9.54823 8.722",
|
|
8800
8849
|
stroke: r.sorting == "asc" ? "#157EFB" : "#B9BCC2",
|
|
8801
8850
|
"stroke-width": r.sorting == "asc" ? "1.5" : "1",
|
|
8802
8851
|
opacity: r.sorting == "asc" || r.sorting == "none" ? "1" : "0.5",
|
|
8803
8852
|
"stroke-linecap": "round",
|
|
8804
8853
|
"stroke-linejoin": "round"
|
|
8805
|
-
}, null, 8,
|
|
8806
|
-
t.$slots.suffix ? (T(), c("div",
|
|
8807
|
-
], 14,
|
|
8808
|
-
r.fixedLeftLast ? (T(), c("div",
|
|
8809
|
-
], 14,
|
|
8854
|
+
}, null, 8, Jl)])), f(m)], 10, Gl)) : s("", !0),
|
|
8855
|
+
t.$slots.suffix ? (T(), c("div", Yl, [k(t.$slots, "suffix", {}, void 0, !0)])) : s("", !0)
|
|
8856
|
+
], 14, zl),
|
|
8857
|
+
r.fixedLeftLast ? (T(), c("div", Xl)) : s("", !0)
|
|
8858
|
+
], 14, Ll);
|
|
8810
8859
|
}
|
|
8811
|
-
var
|
|
8860
|
+
var Ql = /*#__PURE__*/ H(Il, [["render", Zl], ["__scopeId", "data-v-c771ce56"]]), $l = {
|
|
8812
8861
|
name: "ecs-data-grid-group",
|
|
8813
8862
|
props: {
|
|
8814
8863
|
show: {
|
|
@@ -8817,15 +8866,15 @@ var Xl = /*#__PURE__*/ H(Pl, [["render", Yl], ["__scopeId", "data-v-c771ce56"]])
|
|
|
8817
8866
|
},
|
|
8818
8867
|
ariaLabeledBy: { type: String }
|
|
8819
8868
|
}
|
|
8820
|
-
},
|
|
8821
|
-
function
|
|
8869
|
+
}, eu = ["aria-labeled-by"];
|
|
8870
|
+
function tu(e, t, n, r, i, a) {
|
|
8822
8871
|
return se((T(), c("div", {
|
|
8823
8872
|
class: "ecs-data-grid-group",
|
|
8824
8873
|
role: "tabpanel",
|
|
8825
8874
|
"aria-labeled-by": n.ariaLabeledBy
|
|
8826
|
-
}, [n.show ? k(e.$slots, "default", { key: 0 }, void 0, !0) : s("", !0)], 8,
|
|
8875
|
+
}, [n.show ? k(e.$slots, "default", { key: 0 }, void 0, !0) : s("", !0)], 8, eu)), [[ae, n.show]]);
|
|
8827
8876
|
}
|
|
8828
|
-
var
|
|
8877
|
+
var nu = /*#__PURE__*/ H($l, [["render", tu], ["__scopeId", "data-v-ee025ab5"]]), ru = {
|
|
8829
8878
|
name: "ecs-data-grid-cell",
|
|
8830
8879
|
emits: ["collapse"],
|
|
8831
8880
|
components: { EcsButtonCollapse: Bi },
|
|
@@ -8943,17 +8992,17 @@ var eu = /*#__PURE__*/ H(Zl, [["render", $l], ["__scopeId", "data-v-ee025ab5"]])
|
|
|
8943
8992
|
created() {
|
|
8944
8993
|
this.cellWidth = this.width, this.cellFixedLeftOffset = this.fixedLeftOffset;
|
|
8945
8994
|
}
|
|
8946
|
-
},
|
|
8995
|
+
}, iu = {
|
|
8947
8996
|
key: 0,
|
|
8948
8997
|
class: "shadow left"
|
|
8949
|
-
},
|
|
8998
|
+
}, au = ["data-column", "data-test"], ou = {
|
|
8950
8999
|
key: 0,
|
|
8951
9000
|
class: "first-cell-spacer"
|
|
8952
|
-
},
|
|
9001
|
+
}, su = {
|
|
8953
9002
|
key: 1,
|
|
8954
9003
|
class: "shadow right"
|
|
8955
9004
|
};
|
|
8956
|
-
function
|
|
9005
|
+
function cu(e, t, n, r, i, a) {
|
|
8957
9006
|
let u = A("ecs-button-collapse");
|
|
8958
9007
|
return T(), c("div", {
|
|
8959
9008
|
class: b(["ecs-data-grid-cell", [
|
|
@@ -8964,7 +9013,7 @@ function ou(e, t, n, r, i, a) {
|
|
|
8964
9013
|
style: S([a.widthType === "string" ? a.widthStyles : {}, a.fixedStyles]),
|
|
8965
9014
|
role: "cell"
|
|
8966
9015
|
}, [
|
|
8967
|
-
n.fixedRight ? (T(), c("div",
|
|
9016
|
+
n.fixedRight ? (T(), c("div", iu)) : s("", !0),
|
|
8968
9017
|
l("div", {
|
|
8969
9018
|
class: b(["ecs-data-grid-cell-inner", { focus: n.focus }]),
|
|
8970
9019
|
style: S([
|
|
@@ -8975,7 +9024,7 @@ function ou(e, t, n, r, i, a) {
|
|
|
8975
9024
|
"data-column": a.computedId,
|
|
8976
9025
|
"data-test": a.computedId
|
|
8977
9026
|
}, [
|
|
8978
|
-
n.firstNonStaticCell ? (T(), c("div",
|
|
9027
|
+
n.firstNonStaticCell ? (T(), c("div", ou)) : s("", !0),
|
|
8979
9028
|
t[0] ||= l("div", { class: "group-spacer" }, null, -1),
|
|
8980
9029
|
n.hasCollapse ? (T(), o(u, {
|
|
8981
9030
|
key: 1,
|
|
@@ -8984,18 +9033,18 @@ function ou(e, t, n, r, i, a) {
|
|
|
8984
9033
|
type: "chevron"
|
|
8985
9034
|
}, null, 8, ["onClick", "collapsed"])) : s("", !0),
|
|
8986
9035
|
k(e.$slots, "default", {}, void 0, !0)
|
|
8987
|
-
], 14,
|
|
8988
|
-
n.fixedLeftLast ? (T(), c("div",
|
|
9036
|
+
], 14, au),
|
|
9037
|
+
n.fixedLeftLast ? (T(), c("div", su)) : s("", !0)
|
|
8989
9038
|
], 6);
|
|
8990
9039
|
}
|
|
8991
|
-
var
|
|
9040
|
+
var lu = /*#__PURE__*/ H(ru, [["render", cu], ["__scopeId", "data-v-7d18b84f"]]), uu = { name: "ecs-data-list" }, du = {
|
|
8992
9041
|
class: "ecs-data-list",
|
|
8993
9042
|
role: "list"
|
|
8994
9043
|
};
|
|
8995
|
-
function
|
|
8996
|
-
return T(), c("div",
|
|
9044
|
+
function fu(e, t, n, r, i, a) {
|
|
9045
|
+
return T(), c("div", du, [k(e.$slots, "default")]);
|
|
8997
9046
|
}
|
|
8998
|
-
var
|
|
9047
|
+
var pu = /*#__PURE__*/ H(uu, [["render", fu]]), mu = {
|
|
8999
9048
|
name: "ecs-data-list-item",
|
|
9000
9049
|
emits: ["toggled"],
|
|
9001
9050
|
components: {
|
|
@@ -9103,8 +9152,8 @@ var du = /*#__PURE__*/ H(cu, [["render", uu]]), fu = {
|
|
|
9103
9152
|
created() {
|
|
9104
9153
|
this.expandId = this.generateUniqueId(), this.definitionId = this.generateUniqueId();
|
|
9105
9154
|
}
|
|
9106
|
-
},
|
|
9107
|
-
function
|
|
9155
|
+
}, hu = ["id"], gu = ["aria-busy", "aria-labelledby"], _u = ["aria-valuenow"], vu = ["id", "aria-hidden"];
|
|
9156
|
+
function yu(e, t, n, r, i, a) {
|
|
9108
9157
|
let u = A("ecs-button-more"), f = A("ecs-skeleton-loader");
|
|
9109
9158
|
return T(), c("div", null, [l("div", {
|
|
9110
9159
|
class: b(["ecs-data-list-item", [
|
|
@@ -9135,7 +9184,7 @@ function _u(e, t, n, r, i, a) {
|
|
|
9135
9184
|
"aria-controls",
|
|
9136
9185
|
"aria-expanded",
|
|
9137
9186
|
"onClick"
|
|
9138
|
-
])) : s("", !0)], 12,
|
|
9187
|
+
])) : s("", !0)], 12, hu)) : s("", !0), l("div", {
|
|
9139
9188
|
class: b(["ecs-data-list-data", [
|
|
9140
9189
|
n.escape ? "ecs-data-list-data-escape" : "",
|
|
9141
9190
|
n.error ? "ecs-data-list-data-error" : "",
|
|
@@ -9154,15 +9203,15 @@ function _u(e, t, n, r, i, a) {
|
|
|
9154
9203
|
role: "progressbar",
|
|
9155
9204
|
style: S({ width: n.progress + "%" }),
|
|
9156
9205
|
"aria-valuenow": n.progress
|
|
9157
|
-
}, null, 12,
|
|
9206
|
+
}, null, 12, _u)) : s("", !0)], 10, gu)], 2), e.$slots.collapse ? (T(), c("div", {
|
|
9158
9207
|
key: 0,
|
|
9159
9208
|
class: b(i.isVisible ? "collapse-show" : "collapse-hide"),
|
|
9160
9209
|
role: "list",
|
|
9161
9210
|
id: i.expandId,
|
|
9162
9211
|
"aria-hidden": i.isVisible ? "false" : "true"
|
|
9163
|
-
}, [k(e.$slots, "collapse", {}, void 0, !0)], 10,
|
|
9212
|
+
}, [k(e.$slots, "collapse", {}, void 0, !0)], 10, vu)) : s("", !0)]);
|
|
9164
9213
|
}
|
|
9165
|
-
var
|
|
9214
|
+
var bu = /*#__PURE__*/ H(mu, [["render", yu], ["__scopeId", "data-v-133b00b9"]]), xu = {
|
|
9166
9215
|
name: "ecs-dialog",
|
|
9167
9216
|
emits: ["toggled", "cancel"],
|
|
9168
9217
|
props: {
|
|
@@ -9260,19 +9309,19 @@ var vu = /*#__PURE__*/ H(fu, [["render", _u], ["__scopeId", "data-v-133b00b9"]])
|
|
|
9260
9309
|
this.$refs.dialog.showModal ? this.$refs.dialog.showModal() : this.$refs.dialog.setAttribute("open", ""), await new Promise((e) => setTimeout(e, 0)), this.focusFirstElement(), document.addEventListener("keyup", this.keyUpHandler), this.setFocusableElements();
|
|
9261
9310
|
}));
|
|
9262
9311
|
}
|
|
9263
|
-
},
|
|
9264
|
-
function
|
|
9312
|
+
}, Su = { class: "ecs-dialog-body scrollbar scrollbar-sml" };
|
|
9313
|
+
function Cu(e, t, n, r, i, a) {
|
|
9265
9314
|
return i.lazyLoad ? (T(), c("dialog", {
|
|
9266
9315
|
key: 0,
|
|
9267
9316
|
ref: "dialog",
|
|
9268
9317
|
class: b(["ecs-dialog-" + n.size, "ecs-dialog"]),
|
|
9269
9318
|
onKeydown: t[0] ||= (...e) => a.handleKeyDown && a.handleKeyDown(...e)
|
|
9270
|
-
}, [l("div",
|
|
9319
|
+
}, [l("div", Su, [k(e.$slots, "default")]), e.$slots.actions ? (T(), c("div", {
|
|
9271
9320
|
key: 0,
|
|
9272
9321
|
class: b(["ecs-dialog-footer", [n.stackedFooter ? "ecs-dialog-footer-stacked" : ""]])
|
|
9273
9322
|
}, [k(e.$slots, "actions")], 2)) : s("", !0)], 34)) : s("", !0);
|
|
9274
9323
|
}
|
|
9275
|
-
var
|
|
9324
|
+
var wu = /*#__PURE__*/ H(xu, [["render", Cu]]), Tu = /*#__PURE__*/ H({
|
|
9276
9325
|
__name: "state-icon",
|
|
9277
9326
|
props: {
|
|
9278
9327
|
type: {
|
|
@@ -9374,9 +9423,9 @@ var Su = /*#__PURE__*/ H(yu, [["render", xu]]), Cu = /*#__PURE__*/ H({
|
|
|
9374
9423
|
"data-test-icon-type"
|
|
9375
9424
|
]))], 6));
|
|
9376
9425
|
}
|
|
9377
|
-
}, [["__scopeId", "data-v-e2fbdf1b"]]),
|
|
9426
|
+
}, [["__scopeId", "data-v-e2fbdf1b"]]), Eu = {
|
|
9378
9427
|
name: "ecs-dialog-header",
|
|
9379
|
-
components: { EcsStateIcon:
|
|
9428
|
+
components: { EcsStateIcon: Tu },
|
|
9380
9429
|
props: {
|
|
9381
9430
|
icon: {
|
|
9382
9431
|
type: String,
|
|
@@ -9392,21 +9441,21 @@ var Su = /*#__PURE__*/ H(yu, [["render", xu]]), Cu = /*#__PURE__*/ H({
|
|
|
9392
9441
|
default: "neutral"
|
|
9393
9442
|
}
|
|
9394
9443
|
}
|
|
9395
|
-
},
|
|
9444
|
+
}, Du = {
|
|
9396
9445
|
key: 0,
|
|
9397
9446
|
class: "ecs-dialog-headline"
|
|
9398
|
-
},
|
|
9447
|
+
}, Ou = {
|
|
9399
9448
|
key: 1,
|
|
9400
9449
|
class: "ecs-dialog-headline-plain"
|
|
9401
9450
|
};
|
|
9402
|
-
function
|
|
9451
|
+
function ku(e, t, n, r, i, a) {
|
|
9403
9452
|
let o = A("ecs-state-icon");
|
|
9404
|
-
return T(), c("div", null, [n.icon ? (T(), c("h3",
|
|
9453
|
+
return T(), c("div", null, [n.icon ? (T(), c("h3", Du, [f(o, {
|
|
9405
9454
|
type: n.icon,
|
|
9406
9455
|
"icon-color": n.iconColor
|
|
9407
|
-
}, null, 8, ["type", "icon-color"]), k(e.$slots, "default", {}, void 0, !0)])) : (T(), c("h3",
|
|
9456
|
+
}, null, 8, ["type", "icon-color"]), k(e.$slots, "default", {}, void 0, !0)])) : (T(), c("h3", Ou, [k(e.$slots, "default", {}, void 0, !0)]))]);
|
|
9408
9457
|
}
|
|
9409
|
-
var
|
|
9458
|
+
var Au = /*#__PURE__*/ H(Eu, [["render", ku], ["__scopeId", "data-v-6e05c98b"]]), ju = {
|
|
9410
9459
|
__name: "favicon",
|
|
9411
9460
|
props: { website: {
|
|
9412
9461
|
type: String,
|
|
@@ -9474,12 +9523,12 @@ var Ou = /*#__PURE__*/ H(wu, [["render", Du], ["__scopeId", "data-v-6e05c98b"]])
|
|
|
9474
9523
|
viewBox: "0 0 20 20"
|
|
9475
9524
|
}, null, 8, ["alt"]));
|
|
9476
9525
|
}
|
|
9477
|
-
},
|
|
9526
|
+
}, Mu = {
|
|
9478
9527
|
name: "ecs-directory-entry",
|
|
9479
9528
|
emits: ["click"],
|
|
9480
9529
|
components: {
|
|
9481
9530
|
EcsIcon: U,
|
|
9482
|
-
EcsFavicon:
|
|
9531
|
+
EcsFavicon: ju,
|
|
9483
9532
|
EcsAvatar: Ge,
|
|
9484
9533
|
EcsSkeletonLoader: G,
|
|
9485
9534
|
EcsFocusRing: W
|
|
@@ -9526,11 +9575,11 @@ var Ou = /*#__PURE__*/ H(wu, [["render", Du], ["__scopeId", "data-v-6e05c98b"]])
|
|
|
9526
9575
|
mounted() {
|
|
9527
9576
|
!this.icon && !this.favicon && !this.isValidAvatar && !this.legendColor && console.warn("Icon, Favicon, or Avatar prop is required for ecs-directory-entry component");
|
|
9528
9577
|
}
|
|
9529
|
-
},
|
|
9578
|
+
}, Nu = { class: "ecs-directory-entry-type" }, Pu = {
|
|
9530
9579
|
key: 4,
|
|
9531
9580
|
class: "legend-color"
|
|
9532
|
-
},
|
|
9533
|
-
function
|
|
9581
|
+
}, Fu = { class: "items" };
|
|
9582
|
+
function Iu(e, t, n, r, i, a) {
|
|
9534
9583
|
let u = A("ecs-focus-ring"), d = A("ecs-skeleton-loader"), f = A("ecs-icon"), p = A("ecs-avatar"), m = A("ecs-favicon");
|
|
9535
9584
|
return T(), o(M(n.hover ? "button" : "div"), {
|
|
9536
9585
|
onClick: t[0] ||= (t) => e.$emit("click", t),
|
|
@@ -9539,7 +9588,7 @@ function Pu(e, t, n, r, i, a) {
|
|
|
9539
9588
|
}, {
|
|
9540
9589
|
default: I(() => [
|
|
9541
9590
|
n.hover ? (T(), o(u, { key: 0 })) : s("", !0),
|
|
9542
|
-
l("div",
|
|
9591
|
+
l("div", Nu, [n.loading ? (T(), o(d, {
|
|
9543
9592
|
key: 0,
|
|
9544
9593
|
type: n.legendColor ? "circle" : "rect",
|
|
9545
9594
|
width: 20
|
|
@@ -9569,7 +9618,7 @@ function Pu(e, t, n, r, i, a) {
|
|
|
9569
9618
|
])) : n.favicon ? (T(), o(m, {
|
|
9570
9619
|
key: 3,
|
|
9571
9620
|
website: n.favicon
|
|
9572
|
-
}, null, 8, ["website"])) : n.legendColor ? (T(), c("div",
|
|
9621
|
+
}, null, 8, ["website"])) : n.legendColor ? (T(), c("div", Pu, [l("div", {
|
|
9573
9622
|
class: "legend-color-dot",
|
|
9574
9623
|
style: S("background-color:" + n.legendColor)
|
|
9575
9624
|
}, null, 4)])) : s("", !0), n.indicator && !n.loading ? (T(), c("div", {
|
|
@@ -9577,7 +9626,7 @@ function Pu(e, t, n, r, i, a) {
|
|
|
9577
9626
|
class: "indicator",
|
|
9578
9627
|
style: S("background-color:" + n.indicator)
|
|
9579
9628
|
}, null, 4)) : s("", !0)]),
|
|
9580
|
-
l("div",
|
|
9629
|
+
l("div", Fu, [n.loading ? (T(), o(d, {
|
|
9581
9630
|
key: 0,
|
|
9582
9631
|
"line-height": 3,
|
|
9583
9632
|
width: "random"
|
|
@@ -9593,7 +9642,7 @@ function Pu(e, t, n, r, i, a) {
|
|
|
9593
9642
|
_: 3
|
|
9594
9643
|
}, 8, ["class", "role"]);
|
|
9595
9644
|
}
|
|
9596
|
-
var
|
|
9645
|
+
var Lu = /*#__PURE__*/ H(Mu, [["render", Iu], ["__scopeId", "data-v-95408541"]]), Ru = {
|
|
9597
9646
|
name: "ecs-document-state",
|
|
9598
9647
|
components: {
|
|
9599
9648
|
EcsIcon: U,
|
|
@@ -9627,23 +9676,23 @@ var Fu = /*#__PURE__*/ H(Au, [["render", Pu], ["__scopeId", "data-v-95408541"]])
|
|
|
9627
9676
|
default: !1
|
|
9628
9677
|
}
|
|
9629
9678
|
}
|
|
9630
|
-
},
|
|
9679
|
+
}, zu = ["aria-busy"], Bu = {
|
|
9631
9680
|
key: 0,
|
|
9632
9681
|
class: "txt"
|
|
9633
|
-
},
|
|
9682
|
+
}, Vu = {
|
|
9634
9683
|
key: 1,
|
|
9635
9684
|
class: "no-txt"
|
|
9636
|
-
},
|
|
9685
|
+
}, Hu = {
|
|
9637
9686
|
key: 2,
|
|
9638
9687
|
class: "instant"
|
|
9639
|
-
},
|
|
9688
|
+
}, Uu = {
|
|
9640
9689
|
key: 3,
|
|
9641
9690
|
class: "no-instant"
|
|
9642
|
-
},
|
|
9691
|
+
}, Wu = {
|
|
9643
9692
|
key: 4,
|
|
9644
9693
|
class: "loading"
|
|
9645
9694
|
};
|
|
9646
|
-
function
|
|
9695
|
+
function Gu(e, t, n, r, i, a) {
|
|
9647
9696
|
let l = A("ecs-skeleton-loader"), u = A("ecs-icon"), d = A("ecs-sticker");
|
|
9648
9697
|
return n.loading ? (T(), o(l, {
|
|
9649
9698
|
key: 0,
|
|
@@ -9656,9 +9705,9 @@ function Uu(e, t, n, r, i, a) {
|
|
|
9656
9705
|
class: b(["ecs-document-state", n.type]),
|
|
9657
9706
|
"aria-busy": n.processing || null
|
|
9658
9707
|
}, [
|
|
9659
|
-
n.ocr && n.type == "document" ? (T(), c("div",
|
|
9660
|
-
n.instantView ? (T(), c("div",
|
|
9661
|
-
n.processing ? (T(), c("span",
|
|
9708
|
+
n.ocr && n.type == "document" ? (T(), c("div", Bu)) : n.type == "document" ? (T(), c("div", Vu)) : s("", !0),
|
|
9709
|
+
n.instantView ? (T(), c("div", Hu)) : (T(), c("div", Uu)),
|
|
9710
|
+
n.processing ? (T(), c("span", Wu, [f(u, {
|
|
9662
9711
|
type: "loading",
|
|
9663
9712
|
size: "16",
|
|
9664
9713
|
color: "#202127"
|
|
@@ -9669,24 +9718,24 @@ function Uu(e, t, n, r, i, a) {
|
|
|
9669
9718
|
class: "warning",
|
|
9670
9719
|
size: 12
|
|
9671
9720
|
})) : s("", !0)
|
|
9672
|
-
], 10,
|
|
9721
|
+
], 10, zu));
|
|
9673
9722
|
}
|
|
9674
|
-
var
|
|
9723
|
+
var Ku = /*#__PURE__*/ H(Ru, [["render", Gu], ["__scopeId", "data-v-5557beff"]]);
|
|
9675
9724
|
//#endregion
|
|
9676
9725
|
//#region src/components/donut-chart.vue
|
|
9677
|
-
function
|
|
9726
|
+
function qu(e) {
|
|
9678
9727
|
return typeof e == "number";
|
|
9679
9728
|
}
|
|
9680
|
-
function
|
|
9729
|
+
function Ju(e) {
|
|
9681
9730
|
return Array.isArray(e);
|
|
9682
9731
|
}
|
|
9683
|
-
var
|
|
9732
|
+
var Yu = {
|
|
9684
9733
|
props: {
|
|
9685
9734
|
value: {
|
|
9686
9735
|
type: [Number, Array],
|
|
9687
9736
|
required: !0,
|
|
9688
9737
|
validator(e) {
|
|
9689
|
-
return
|
|
9738
|
+
return qu(e) ? e >= 0 && e <= 100 : Ju(e) ? e.length > 0 && e.every((e) => typeof e == "number" && e >= 0) : !1;
|
|
9690
9739
|
}
|
|
9691
9740
|
},
|
|
9692
9741
|
color: {
|
|
@@ -9727,11 +9776,11 @@ var qu = {
|
|
|
9727
9776
|
},
|
|
9728
9777
|
segments() {
|
|
9729
9778
|
let e = this.value, t = this.color;
|
|
9730
|
-
if (
|
|
9779
|
+
if (qu(e)) return [{
|
|
9731
9780
|
value: e,
|
|
9732
|
-
color: typeof t == "string" ? t :
|
|
9781
|
+
color: typeof t == "string" ? t : Ju(t) && t[0] ? t[0] : DEFAULT_COLOR
|
|
9733
9782
|
}];
|
|
9734
|
-
let n = e.slice(), r = n.reduce((e, t) => e + t, 0), i = r > 0 ? n.map((e) => e / r * 100) : n.map(() => 0), a = typeof t == "string" ? n.map(() => t) :
|
|
9783
|
+
let n = e.slice(), r = n.reduce((e, t) => e + t, 0), i = r > 0 ? n.map((e) => e / r * 100) : n.map(() => 0), a = typeof t == "string" ? n.map(() => t) : Ju(t) ? t.slice() : [], o = typeof t == "string" ? t : a[a.length - 1] ?? DEFAULT_COLOR;
|
|
9735
9784
|
return i.map((e, t) => ({
|
|
9736
9785
|
value: e,
|
|
9737
9786
|
color: a[t] == null ? o : a[t]
|
|
@@ -9750,11 +9799,11 @@ var qu = {
|
|
|
9750
9799
|
});
|
|
9751
9800
|
}
|
|
9752
9801
|
}
|
|
9753
|
-
},
|
|
9802
|
+
}, Xu = [
|
|
9754
9803
|
"height",
|
|
9755
9804
|
"width",
|
|
9756
9805
|
"viewBox"
|
|
9757
|
-
],
|
|
9806
|
+
], Zu = [
|
|
9758
9807
|
"cx",
|
|
9759
9808
|
"cy",
|
|
9760
9809
|
"r",
|
|
@@ -9763,7 +9812,7 @@ var qu = {
|
|
|
9763
9812
|
"stroke-dasharray",
|
|
9764
9813
|
"stroke-dashoffset",
|
|
9765
9814
|
"transform"
|
|
9766
|
-
],
|
|
9815
|
+
], Qu = [
|
|
9767
9816
|
"cx",
|
|
9768
9817
|
"cy",
|
|
9769
9818
|
"r",
|
|
@@ -9773,7 +9822,7 @@ var qu = {
|
|
|
9773
9822
|
"stroke-dashoffset",
|
|
9774
9823
|
"transform"
|
|
9775
9824
|
];
|
|
9776
|
-
function
|
|
9825
|
+
function $u(t, n, r, i, a, o) {
|
|
9777
9826
|
return T(), c("div", {
|
|
9778
9827
|
class: "ecs-donut-chart",
|
|
9779
9828
|
style: S(o.wrapperPadding)
|
|
@@ -9793,7 +9842,7 @@ function Zu(t, n, r, i, a, o) {
|
|
|
9793
9842
|
"stroke-dashoffset": t.dashOffset,
|
|
9794
9843
|
fill: "transparent",
|
|
9795
9844
|
transform: o.transform
|
|
9796
|
-
}, null, 8,
|
|
9845
|
+
}, null, 8, Zu)) : s("", !0), l("circle", {
|
|
9797
9846
|
cx: o.center,
|
|
9798
9847
|
cy: o.center,
|
|
9799
9848
|
r: o.radius,
|
|
@@ -9803,9 +9852,9 @@ function Zu(t, n, r, i, a, o) {
|
|
|
9803
9852
|
"stroke-dashoffset": t.dashOffset,
|
|
9804
9853
|
fill: "transparent",
|
|
9805
9854
|
transform: o.transform
|
|
9806
|
-
}, null, 8,
|
|
9855
|
+
}, null, 8, Qu)], 64))), 128))])], 8, Xu))], 4);
|
|
9807
9856
|
}
|
|
9808
|
-
var
|
|
9857
|
+
var ed = /*#__PURE__*/ H(Yu, [["render", $u], ["__scopeId", "data-v-f4c81ffd"]]), td = {
|
|
9809
9858
|
name: "ecs-empty-state",
|
|
9810
9859
|
components: { EcsIcon: U },
|
|
9811
9860
|
props: {
|
|
@@ -9826,14 +9875,14 @@ var Qu = /*#__PURE__*/ H(qu, [["render", Zu], ["__scopeId", "data-v-f4c81ffd"]])
|
|
|
9826
9875
|
computed: { iconSize() {
|
|
9827
9876
|
return this.size == "sml" ? "100px" : "200px";
|
|
9828
9877
|
} }
|
|
9829
|
-
},
|
|
9878
|
+
}, nd = ["aria-busy"], rd = {
|
|
9830
9879
|
key: 1,
|
|
9831
9880
|
class: "ecs-empty-state-loading"
|
|
9832
|
-
},
|
|
9881
|
+
}, id = {
|
|
9833
9882
|
key: 3,
|
|
9834
9883
|
class: "ecs-empty-state-actions"
|
|
9835
9884
|
};
|
|
9836
|
-
function
|
|
9885
|
+
function ad(e, t, n, r, i, a) {
|
|
9837
9886
|
let l = A("ecs-icon");
|
|
9838
9887
|
return T(), c("div", {
|
|
9839
9888
|
class: "ecs-empty-state",
|
|
@@ -9848,15 +9897,15 @@ function rd(e, t, n, r, i, a) {
|
|
|
9848
9897
|
"type",
|
|
9849
9898
|
"color",
|
|
9850
9899
|
"size"
|
|
9851
|
-
])) : n.type == "loading" ? (T(), c("div",
|
|
9900
|
+
])) : n.type == "loading" ? (T(), c("div", rd)) : s("", !0),
|
|
9852
9901
|
n.type == "loading" ? s("", !0) : (T(), c("div", {
|
|
9853
9902
|
key: 2,
|
|
9854
9903
|
class: b(["ecs-empty-state-message", n.size])
|
|
9855
9904
|
}, [k(e.$slots, "default", {}, void 0, !0)], 2)),
|
|
9856
|
-
e.$slots.actions ? (T(), c("div",
|
|
9857
|
-
], 8,
|
|
9905
|
+
e.$slots.actions ? (T(), c("div", id, [k(e.$slots, "actions", {}, void 0, !0)])) : s("", !0)
|
|
9906
|
+
], 8, nd);
|
|
9858
9907
|
}
|
|
9859
|
-
var
|
|
9908
|
+
var od = /*#__PURE__*/ H(td, [["render", ad], ["__scopeId", "data-v-60265995"]]), sd = {
|
|
9860
9909
|
props: {
|
|
9861
9910
|
value: {
|
|
9862
9911
|
type: Number,
|
|
@@ -9878,8 +9927,8 @@ var id = /*#__PURE__*/ H($u, [["render", rd], ["__scopeId", "data-v-60265995"]])
|
|
|
9878
9927
|
return this.max === null ? 100 * (this.value / this.computedMax) : this.value;
|
|
9879
9928
|
}
|
|
9880
9929
|
}
|
|
9881
|
-
},
|
|
9882
|
-
function
|
|
9930
|
+
}, cd = ["aria-valuenow", "aria-valuemax"];
|
|
9931
|
+
function ld(e, t, n, r, i, a) {
|
|
9883
9932
|
return T(), c("div", {
|
|
9884
9933
|
class: "ecs-progress",
|
|
9885
9934
|
role: "progressbar",
|
|
@@ -9894,15 +9943,15 @@ function sd(e, t, n, r, i, a) {
|
|
|
9894
9943
|
n.cancelled ? "ecs-progress-cancelled" : ""
|
|
9895
9944
|
]]),
|
|
9896
9945
|
style: S({ width: 100 * (n.value / a.computedMax) + "%" })
|
|
9897
|
-
}, null, 6)], 8,
|
|
9946
|
+
}, null, 6)], 8, cd);
|
|
9898
9947
|
}
|
|
9899
|
-
var
|
|
9948
|
+
var ud = /*#__PURE__*/ H(sd, [["render", ld], ["__scopeId", "data-v-1b81f485"]]), dd = {
|
|
9900
9949
|
name: "ecs-dropzone",
|
|
9901
9950
|
emits: ["onFileDrop", "cancel"],
|
|
9902
9951
|
components: {
|
|
9903
|
-
EcsEmptyState:
|
|
9952
|
+
EcsEmptyState: od,
|
|
9904
9953
|
EcsSkeletonLoader: G,
|
|
9905
|
-
EcsProgress:
|
|
9954
|
+
EcsProgress: ud,
|
|
9906
9955
|
EcsButton: X,
|
|
9907
9956
|
EcsFocusRing: W,
|
|
9908
9957
|
EcsFlexRow: K,
|
|
@@ -10044,14 +10093,14 @@ var cd = /*#__PURE__*/ H(ad, [["render", sd], ["__scopeId", "data-v-1b81f485"]])
|
|
|
10044
10093
|
beforeUnmount() {
|
|
10045
10094
|
document.removeEventListener("dragenter", this.show);
|
|
10046
10095
|
}
|
|
10047
|
-
},
|
|
10096
|
+
}, fd = ["aria-busy", "aria-invalid"], pd = ["multiple"], md = { key: 1 }, hd = { key: 1 }, gd = {
|
|
10048
10097
|
key: 2,
|
|
10049
10098
|
class: "ecs-dropzone-hint"
|
|
10050
|
-
},
|
|
10099
|
+
}, _d = {
|
|
10051
10100
|
key: 3,
|
|
10052
10101
|
class: "ecs-dropzone-stats"
|
|
10053
|
-
},
|
|
10054
|
-
function
|
|
10102
|
+
}, vd = ["innerHTML"];
|
|
10103
|
+
function yd(t, n, r, i, a, u) {
|
|
10055
10104
|
let p = A("ecs-skeleton-loader"), m = A("ecs-focus-ring"), h = A("ecs-text-v2"), g = A("ecs-sticker"), _ = A("ecs-flex-row"), v = A("ecs-progress"), y = A("ecs-empty-state"), x = A("ecs-button");
|
|
10056
10105
|
return T(), c("div", {
|
|
10057
10106
|
class: b(["ecs-dropzone", [
|
|
@@ -10071,7 +10120,7 @@ function _d(t, n, r, i, a, u) {
|
|
|
10071
10120
|
type: "file",
|
|
10072
10121
|
multiple: r.multiple || null,
|
|
10073
10122
|
ref: "file"
|
|
10074
|
-
}, null, 40,
|
|
10123
|
+
}, null, 40, pd),
|
|
10075
10124
|
f(y, {
|
|
10076
10125
|
type: u.iconType,
|
|
10077
10126
|
iconColor: u.iconColor
|
|
@@ -10081,7 +10130,7 @@ function _d(t, n, r, i, a, u) {
|
|
|
10081
10130
|
type: "single",
|
|
10082
10131
|
width: 100,
|
|
10083
10132
|
class: "ecs-dropzone-skeleton"
|
|
10084
|
-
})) : (T(), c("div",
|
|
10133
|
+
})) : (T(), c("div", md, [
|
|
10085
10134
|
t.$slots.customlabel ? s("", !0) : (T(), c(e, { key: 0 }, [
|
|
10086
10135
|
d(" Drag and drop your " + N(r.fileTypeLabel) + " or ", 1),
|
|
10087
10136
|
l("i", {
|
|
@@ -10091,9 +10140,9 @@ function _d(t, n, r, i, a, u) {
|
|
|
10091
10140
|
}, [n[7] ||= d("browse", -1), f(m)], 32),
|
|
10092
10141
|
n[8] ||= d(" to upload. ", -1)
|
|
10093
10142
|
], 64)),
|
|
10094
|
-
t.$slots.customlabel ? (T(), c("div",
|
|
10095
|
-
t.$slots.hint && !r.uploadStats.show ? (T(), c("div",
|
|
10096
|
-
r.uploadStats.show ? (T(), c("div",
|
|
10143
|
+
t.$slots.customlabel ? (T(), c("div", hd, [k(t.$slots, "customlabel", {}, void 0, !0)])) : s("", !0),
|
|
10144
|
+
t.$slots.hint && !r.uploadStats.show ? (T(), c("div", gd, [k(t.$slots, "hint", {}, void 0, !0)])) : s("", !0),
|
|
10145
|
+
r.uploadStats.show ? (T(), c("div", _d, [f(_, {
|
|
10097
10146
|
gap: 8,
|
|
10098
10147
|
justify: "center"
|
|
10099
10148
|
}, {
|
|
@@ -10128,7 +10177,7 @@ function _d(t, n, r, i, a, u) {
|
|
|
10128
10177
|
key: 4,
|
|
10129
10178
|
innerHTML: r.errorMessage,
|
|
10130
10179
|
class: "ecs-dropzone-error-message"
|
|
10131
|
-
}, null, 8,
|
|
10180
|
+
}, null, 8, vd)) : s("", !0)
|
|
10132
10181
|
])), r.loading || r.progress ? (T(), o(v, {
|
|
10133
10182
|
key: 2,
|
|
10134
10183
|
infinite: !r.progress,
|
|
@@ -10151,9 +10200,9 @@ function _d(t, n, r, i, a, u) {
|
|
|
10151
10200
|
default: I(() => [d(N(u.cancelButtonOptions.label), 1)]),
|
|
10152
10201
|
_: 1
|
|
10153
10202
|
}, 8, ["onClick", "icon"])) : s("", !0)
|
|
10154
|
-
], 42,
|
|
10203
|
+
], 42, fd);
|
|
10155
10204
|
}
|
|
10156
|
-
var
|
|
10205
|
+
var bd = /*#__PURE__*/ H(dd, [["render", yd], ["__scopeId", "data-v-2c790ae4"]]), xd = {
|
|
10157
10206
|
name: "ecs-ecai-wrapper",
|
|
10158
10207
|
components: { EcsIcon: U },
|
|
10159
10208
|
props: {
|
|
@@ -10187,7 +10236,7 @@ var vd = /*#__PURE__*/ H(ld, [["render", _d], ["__scopeId", "data-v-2c790ae4"]])
|
|
|
10187
10236
|
}
|
|
10188
10237
|
}
|
|
10189
10238
|
};
|
|
10190
|
-
function
|
|
10239
|
+
function Sd(e, t, n, r, i, a) {
|
|
10191
10240
|
let l = A("ecs-icon");
|
|
10192
10241
|
return T(), c("div", {
|
|
10193
10242
|
class: b(["ecs-ecai-wrapper", { border: a.hasBorder }]),
|
|
@@ -10203,7 +10252,7 @@ function bd(e, t, n, r, i, a) {
|
|
|
10203
10252
|
k(e.$slots, "default", {}, void 0, !0)
|
|
10204
10253
|
], 6);
|
|
10205
10254
|
}
|
|
10206
|
-
var
|
|
10255
|
+
var Cd = /*#__PURE__*/ H(xd, [["render", Sd], ["__scopeId", "data-v-75522cea"]]), wd = {
|
|
10207
10256
|
name: "ecs-entry-link",
|
|
10208
10257
|
emits: [
|
|
10209
10258
|
"linkClick",
|
|
@@ -10251,14 +10300,14 @@ var xd = /*#__PURE__*/ H(yd, [["render", bd], ["__scopeId", "data-v-75522cea"]])
|
|
|
10251
10300
|
this.$emit("moreClick", e);
|
|
10252
10301
|
}
|
|
10253
10302
|
}
|
|
10254
|
-
},
|
|
10303
|
+
}, Td = ["title"], Ed = {
|
|
10255
10304
|
key: 1,
|
|
10256
10305
|
class: "prepend"
|
|
10257
|
-
},
|
|
10306
|
+
}, Dd = ["title"], Od = {
|
|
10258
10307
|
key: 2,
|
|
10259
10308
|
class: "append"
|
|
10260
10309
|
};
|
|
10261
|
-
function
|
|
10310
|
+
function kd(e, t, n, r, i, a) {
|
|
10262
10311
|
let u = A("ecs-icon"), d = A("ecs-sticker"), p = A("ecs-focus-ring"), m = A("ecs-button-more");
|
|
10263
10312
|
return T(), c("div", {
|
|
10264
10313
|
onClick: t[0] ||= R((...e) => a.handleClick && a.handleClick(...e), ["stop"]),
|
|
@@ -10278,13 +10327,13 @@ function Dd(e, t, n, r, i, a) {
|
|
|
10278
10327
|
}, null, 8, ["type", "color"])) : s("", !0), n.sticker ? (T(), o(d, {
|
|
10279
10328
|
key: 1,
|
|
10280
10329
|
type: n.sticker
|
|
10281
|
-
}, null, 8, ["type"])) : s("", !0)], 8,
|
|
10282
|
-
e.$slots.prepender ? (T(), c("div",
|
|
10330
|
+
}, null, 8, ["type"])) : s("", !0)], 8, Td)) : s("", !0),
|
|
10331
|
+
e.$slots.prepender ? (T(), c("div", Ed, [k(e.$slots, "prepender", {}, void 0, !0)])) : s("", !0),
|
|
10283
10332
|
l("div", {
|
|
10284
10333
|
class: b(["ecs-entry-link-label", n.emphasized ? "emphasized" : ""]),
|
|
10285
10334
|
title: n.linkTitle
|
|
10286
|
-
}, N(n.label), 11,
|
|
10287
|
-
e.$slots.appender ? (T(), c("div",
|
|
10335
|
+
}, N(n.label), 11, Dd),
|
|
10336
|
+
e.$slots.appender ? (T(), c("div", Od, [k(e.$slots, "appender", {}, void 0, !0)])) : s("", !0),
|
|
10288
10337
|
n.ai ? (T(), o(u, {
|
|
10289
10338
|
key: 3,
|
|
10290
10339
|
type: "ai-single-star-filled",
|
|
@@ -10309,12 +10358,12 @@ function Dd(e, t, n, r, i, a) {
|
|
|
10309
10358
|
])) : s("", !0)
|
|
10310
10359
|
], 2);
|
|
10311
10360
|
}
|
|
10312
|
-
var
|
|
10361
|
+
var Ad = /*#__PURE__*/ H(wd, [["render", kd], ["__scopeId", "data-v-5d452b89"]]), jd = {
|
|
10313
10362
|
name: "ecs-excerpt-snippet",
|
|
10314
10363
|
components: {
|
|
10315
10364
|
EcsIcon: U,
|
|
10316
10365
|
EcsSkeletonLoader: G,
|
|
10317
|
-
EcsFormatted:
|
|
10366
|
+
EcsFormatted: ps
|
|
10318
10367
|
},
|
|
10319
10368
|
props: {
|
|
10320
10369
|
type: {
|
|
@@ -10362,22 +10411,22 @@ var Od = /*#__PURE__*/ H(Sd, [["render", Dd], ["__scopeId", "data-v-5d452b89"]])
|
|
|
10362
10411
|
if (this.maxHeight) return `max-height: ${this.maxHeight}; overflow: auto;`;
|
|
10363
10412
|
}
|
|
10364
10413
|
}
|
|
10365
|
-
},
|
|
10414
|
+
}, Md = { class: "ecs-excerpt-title" }, Nd = { class: "ecs-excerpt-title-headline" }, Pd = { key: 3 }, Fd = {
|
|
10366
10415
|
key: 0,
|
|
10367
10416
|
class: "ecs-excerpt-title-cite"
|
|
10368
|
-
},
|
|
10417
|
+
}, Id = { key: 1 }, Ld = {
|
|
10369
10418
|
key: 1,
|
|
10370
10419
|
class: "ecs-excerpt-content-transcript"
|
|
10371
|
-
},
|
|
10420
|
+
}, Rd = {
|
|
10372
10421
|
key: 2,
|
|
10373
10422
|
class: "ecs-excerpt-content-rectangle"
|
|
10374
|
-
},
|
|
10423
|
+
}, zd = {
|
|
10375
10424
|
key: 3,
|
|
10376
10425
|
class: "ecs-excerpt-content-regular"
|
|
10377
10426
|
};
|
|
10378
|
-
function
|
|
10427
|
+
function Bd(t, n, r, i, a, u) {
|
|
10379
10428
|
let d = A("ecs-skeleton-loader"), f = A("ecs-icon"), p = A("ecs-formatted");
|
|
10380
|
-
return T(), c("div", { class: b(["ecs-excerpt-snippet", u.sizeClass]) }, [l("div",
|
|
10429
|
+
return T(), c("div", { class: b(["ecs-excerpt-snippet", u.sizeClass]) }, [l("div", Md, [l("div", Nd, [
|
|
10381
10430
|
r.icon && r.loading ? (T(), o(d, {
|
|
10382
10431
|
key: 0,
|
|
10383
10432
|
type: "rect",
|
|
@@ -10393,12 +10442,12 @@ function Rd(t, n, r, i, a, u) {
|
|
|
10393
10442
|
key: 2,
|
|
10394
10443
|
type: "single",
|
|
10395
10444
|
width: 20
|
|
10396
|
-
})) : (T(), c("span",
|
|
10397
|
-
]), r.cite ? (T(), c("div",
|
|
10445
|
+
})) : (T(), c("span", Pd, N(r.headline), 1))
|
|
10446
|
+
]), r.cite ? (T(), c("div", Fd, [r.loading ? (T(), o(d, {
|
|
10398
10447
|
key: 0,
|
|
10399
10448
|
type: "single",
|
|
10400
10449
|
width: 100
|
|
10401
|
-
})) : (T(), c("span",
|
|
10450
|
+
})) : (T(), c("span", Id, N(r.cite), 1))])) : s("", !0)]), l("div", {
|
|
10402
10451
|
class: "ecs-excerpt-content scrollbar scrollbar-sml",
|
|
10403
10452
|
style: S(u.maxHeightStyles)
|
|
10404
10453
|
}, [r.loading ? (T(), o(d, {
|
|
@@ -10411,9 +10460,9 @@ function Rd(t, n, r, i, a, u) {
|
|
|
10411
10460
|
}, {
|
|
10412
10461
|
default: I(() => [k(t.$slots, "default", {}, void 0, !0)]),
|
|
10413
10462
|
_: 3
|
|
10414
|
-
}, 8, ["small"])) : r.type == "transcript" ? (T(), c("div",
|
|
10463
|
+
}, 8, ["small"])) : r.type == "transcript" ? (T(), c("div", Ld, [k(t.$slots, "default", {}, void 0, !0)])) : r.type == "rectangle" ? (T(), c("div", Rd, [l("span", { style: S("color:" + r.annotationColor) }, "Rectangle Annotation", 4), l("div", { style: S("background-color:" + r.annotationColor) }, null, 4)])) : (T(), c("div", zd, [k(t.$slots, "default", {}, void 0, !0)]))], 64))], 4)], 2);
|
|
10415
10464
|
}
|
|
10416
|
-
var
|
|
10465
|
+
var Vd = /*#__PURE__*/ H(jd, [["render", Bd], ["__scopeId", "data-v-1c058d79"]]), Hd = {
|
|
10417
10466
|
name: "ecs-input",
|
|
10418
10467
|
emits: [
|
|
10419
10468
|
"update:modelValue",
|
|
@@ -10534,7 +10583,7 @@ var zd = /*#__PURE__*/ H(kd, [["render", Rd], ["__scopeId", "data-v-1c058d79"]])
|
|
|
10534
10583
|
return this.subtle ? "ecs-form-control-subtle" : this.variant === "default" ? null : `ecs-form-control-${this.variant}`;
|
|
10535
10584
|
}
|
|
10536
10585
|
}
|
|
10537
|
-
},
|
|
10586
|
+
}, Ud = [
|
|
10538
10587
|
"value",
|
|
10539
10588
|
"type",
|
|
10540
10589
|
"name",
|
|
@@ -10548,7 +10597,7 @@ var zd = /*#__PURE__*/ H(kd, [["render", Rd], ["__scopeId", "data-v-1c058d79"]])
|
|
|
10548
10597
|
"step",
|
|
10549
10598
|
"id",
|
|
10550
10599
|
"data-1p-ignore"
|
|
10551
|
-
],
|
|
10600
|
+
], Wd = [
|
|
10552
10601
|
"value",
|
|
10553
10602
|
"name",
|
|
10554
10603
|
"disabled",
|
|
@@ -10558,7 +10607,7 @@ var zd = /*#__PURE__*/ H(kd, [["render", Rd], ["__scopeId", "data-v-1c058d79"]])
|
|
|
10558
10607
|
"id",
|
|
10559
10608
|
"data-1p-ignore"
|
|
10560
10609
|
];
|
|
10561
|
-
function
|
|
10610
|
+
function Gd(e, t, n, r, i, a) {
|
|
10562
10611
|
return n.type == "textarea" ? (T(), c("textarea", v({
|
|
10563
10612
|
key: 1,
|
|
10564
10613
|
class: ["ecs-form-control", [
|
|
@@ -10585,7 +10634,7 @@ function Ud(e, t, n, r, i, a) {
|
|
|
10585
10634
|
ref: n.refr,
|
|
10586
10635
|
id: n.refr,
|
|
10587
10636
|
"data-1p-ignore": a.disabled1Password
|
|
10588
|
-
}), null, 16,
|
|
10637
|
+
}), null, 16, Wd)) : (T(), c("input", v({
|
|
10589
10638
|
key: 0,
|
|
10590
10639
|
class: ["ecs-form-control", [
|
|
10591
10640
|
a.sizeClass,
|
|
@@ -10615,9 +10664,9 @@ function Ud(e, t, n, r, i, a) {
|
|
|
10615
10664
|
ref: n.refr,
|
|
10616
10665
|
id: n.refr,
|
|
10617
10666
|
"data-1p-ignore": a.disabled1Password
|
|
10618
|
-
}), null, 16,
|
|
10667
|
+
}), null, 16, Ud));
|
|
10619
10668
|
}
|
|
10620
|
-
var
|
|
10669
|
+
var Kd = /*#__PURE__*/ H(Hd, [["render", Gd], ["__scopeId", "data-v-2ba8d276"]]), qd = {
|
|
10621
10670
|
name: "EcsPopoverListHeadline",
|
|
10622
10671
|
components: { EcsButtonCollapse: Bi },
|
|
10623
10672
|
props: {
|
|
@@ -10649,11 +10698,11 @@ var Wd = /*#__PURE__*/ H(Bd, [["render", Ud], ["__scopeId", "data-v-2ba8d276"]])
|
|
|
10649
10698
|
methods: { handleCollapse() {
|
|
10650
10699
|
this.isCollapsed = !this.isCollapsed, this.$emit("toggle", this.isCollapsed);
|
|
10651
10700
|
} }
|
|
10652
|
-
},
|
|
10701
|
+
}, Jd = {
|
|
10653
10702
|
key: 1,
|
|
10654
10703
|
class: "ecs-popover-list-title-controls"
|
|
10655
10704
|
};
|
|
10656
|
-
function
|
|
10705
|
+
function Yd(e, t, n, r, i, a) {
|
|
10657
10706
|
let u = A("ecs-button-collapse");
|
|
10658
10707
|
return T(), c("li", {
|
|
10659
10708
|
class: b(["ecs-popover-list-title", [
|
|
@@ -10675,10 +10724,10 @@ function qd(e, t, n, r, i, a) {
|
|
|
10675
10724
|
"aria-controls"
|
|
10676
10725
|
])) : s("", !0),
|
|
10677
10726
|
l("span", null, [k(e.$slots, "default", {}, void 0, !0)]),
|
|
10678
|
-
e.$slots.controls ? (T(), c("div",
|
|
10727
|
+
e.$slots.controls ? (T(), c("div", Jd, [k(e.$slots, "controls", {}, void 0, !0)])) : s("", !0)
|
|
10679
10728
|
], 2);
|
|
10680
10729
|
}
|
|
10681
|
-
var
|
|
10730
|
+
var Xd = /*#__PURE__*/ H(qd, [["render", Yd], ["__scopeId", "data-v-442eb0eb"]]), Zd = {
|
|
10682
10731
|
roundedRect: {
|
|
10683
10732
|
label: "roundedRect",
|
|
10684
10733
|
styles: {
|
|
@@ -10701,13 +10750,13 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
10701
10750
|
label: "square",
|
|
10702
10751
|
styles: { aspectRatio: "1 / 1" }
|
|
10703
10752
|
}
|
|
10704
|
-
},
|
|
10753
|
+
}, Qd = (e = "") => ({
|
|
10705
10754
|
content: e,
|
|
10706
10755
|
size: 14,
|
|
10707
10756
|
bold: !1,
|
|
10708
10757
|
italic: !1,
|
|
10709
10758
|
underline: !1
|
|
10710
|
-
}),
|
|
10759
|
+
}), $d = (e) => typeof e == "string" && /^#([0-9A-Fa-f]{3}){1,2}$/.test(e), ef = (e) => Object.keys(Zd).includes(e), tf = (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", nf = (e) => e == null ? !0 : $d(e.color) && ef(e.shape) && Array.isArray(e.text) && e.text.length >= 1 && e.text.length <= 6 && e.text.every(tf), rf = () => {
|
|
10711
10760
|
let e = document.createElement("canvas").getContext("2d");
|
|
10712
10761
|
return {
|
|
10713
10762
|
getTextWidth: (t, n) => {
|
|
@@ -10716,7 +10765,7 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
10716
10765
|
},
|
|
10717
10766
|
escapeHtml: (e) => e.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'")
|
|
10718
10767
|
};
|
|
10719
|
-
},
|
|
10768
|
+
}, af = {
|
|
10720
10769
|
name: "ecs-exhibit-sticker-editor",
|
|
10721
10770
|
emits: ["update:modelValue"],
|
|
10722
10771
|
components: {
|
|
@@ -10724,12 +10773,12 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
10724
10773
|
EcsButton: X,
|
|
10725
10774
|
EcsTextV2: br,
|
|
10726
10775
|
EcsSeparator: Oi,
|
|
10727
|
-
EcsInput:
|
|
10776
|
+
EcsInput: Kd,
|
|
10728
10777
|
EcsPopover: cr,
|
|
10729
|
-
EcsPopoverListHeadline:
|
|
10778
|
+
EcsPopoverListHeadline: Xd,
|
|
10730
10779
|
EcsPopoverList: dr,
|
|
10731
10780
|
EcsPopoverListItem: bi,
|
|
10732
|
-
EcsColorPicker:
|
|
10781
|
+
EcsColorPicker: Fc
|
|
10733
10782
|
},
|
|
10734
10783
|
props: {
|
|
10735
10784
|
readOnly: {
|
|
@@ -10739,7 +10788,7 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
10739
10788
|
modelValue: {
|
|
10740
10789
|
type: Object,
|
|
10741
10790
|
required: !1,
|
|
10742
|
-
validator:
|
|
10791
|
+
validator: nf
|
|
10743
10792
|
},
|
|
10744
10793
|
variables: {
|
|
10745
10794
|
type: Array,
|
|
@@ -10766,11 +10815,11 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
10766
10815
|
localSticker: this.modelValue ? JSON.parse(JSON.stringify(this.modelValue)) : {
|
|
10767
10816
|
color: "#F9DF00",
|
|
10768
10817
|
shape: "roundedRect",
|
|
10769
|
-
text: [
|
|
10818
|
+
text: [Qd()]
|
|
10770
10819
|
},
|
|
10771
10820
|
focusedLineIndex: null,
|
|
10772
10821
|
lineInputs: [],
|
|
10773
|
-
textProcessing:
|
|
10822
|
+
textProcessing: rf(),
|
|
10774
10823
|
colorPickerValue: "#F9DF00",
|
|
10775
10824
|
swatches: [
|
|
10776
10825
|
{
|
|
@@ -10861,7 +10910,7 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
10861
10910
|
}
|
|
10862
10911
|
},
|
|
10863
10912
|
stickerShapeStyles() {
|
|
10864
|
-
return Object.fromEntries(Object.entries(
|
|
10913
|
+
return Object.fromEntries(Object.entries(Zd).map(([e, t]) => [e, t.styles]));
|
|
10865
10914
|
},
|
|
10866
10915
|
focusedLine() {
|
|
10867
10916
|
return this.focusedLineIndex === null ? null : this.localSticker.text[this.focusedLineIndex];
|
|
@@ -10922,7 +10971,7 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
10922
10971
|
this.localSticker = e ? JSON.parse(JSON.stringify(e)) : {
|
|
10923
10972
|
color: "#000000",
|
|
10924
10973
|
shape: "roundedRect",
|
|
10925
|
-
text: [
|
|
10974
|
+
text: [Qd()]
|
|
10926
10975
|
}, this.colorPickerValue = this.localSticker.color, this.$nextTick(() => {
|
|
10927
10976
|
this.lineInputs.forEach((e, t) => this.adjustTextToFit(t));
|
|
10928
10977
|
});
|
|
@@ -11051,7 +11100,7 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
11051
11100
|
}), this.emitChange());
|
|
11052
11101
|
},
|
|
11053
11102
|
addLine() {
|
|
11054
|
-
this.localSticker.text.length < 6 && (this.localSticker.text.push(
|
|
11103
|
+
this.localSticker.text.length < 6 && (this.localSticker.text.push(Qd()), this.focusedLineIndex = this.localSticker.text.length - 1, this.emitChange(), this.$nextTick(() => {
|
|
11055
11104
|
let e = this.lineInputs[this.localSticker.text.length - 1];
|
|
11056
11105
|
e && (this.adjustTextToFit(this.localSticker.text.length - 1), e.focus());
|
|
11057
11106
|
}));
|
|
@@ -11101,18 +11150,18 @@ var Jd = /*#__PURE__*/ H(Gd, [["render", qd], ["__scopeId", "data-v-442eb0eb"]])
|
|
|
11101
11150
|
});
|
|
11102
11151
|
}
|
|
11103
11152
|
}
|
|
11104
|
-
},
|
|
11153
|
+
}, of = { class: "ecs-exhibit-sticker-editor" }, sf = ["aria-checked"], cf = ["aria-checked"], lf = ["aria-checked"], uf = ["aria-checked"], df = { class: "ecs-exhibit-sticker-editor-content" }, ff = { class: "ecs-exhibit-sticker-editor-preview" }, pf = {
|
|
11105
11154
|
key: 0,
|
|
11106
11155
|
class: "page-preview"
|
|
11107
|
-
},
|
|
11156
|
+
}, mf = { class: "sticker-content" }, hf = { class: "line-controls line-controls-left" }, gf = { class: "line-input" }, _f = [
|
|
11108
11157
|
"value",
|
|
11109
11158
|
"onInput",
|
|
11110
11159
|
"onFocus",
|
|
11111
11160
|
"onKeydown"
|
|
11112
|
-
],
|
|
11113
|
-
function
|
|
11161
|
+
], vf = ["innerHTML"], yf = { class: "line-controls line-controls-right" }, bf = { class: "line-input" }, xf = ["innerHTML"], Sf = { style: { width: "240px" } };
|
|
11162
|
+
function Cf(t, n, r, i, a, u) {
|
|
11114
11163
|
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");
|
|
11115
|
-
return T(), c("div",
|
|
11164
|
+
return T(), c("div", of, [r.readOnly ? s("", !0) : (T(), o(m, {
|
|
11116
11165
|
key: 0,
|
|
11117
11166
|
direction: "column",
|
|
11118
11167
|
gap: 4,
|
|
@@ -11141,7 +11190,7 @@ function xf(t, n, r, i, a, u) {
|
|
|
11141
11190
|
backgroundColor: a.localSticker.color,
|
|
11142
11191
|
borderColor: u.stickerBorderColor
|
|
11143
11192
|
})
|
|
11144
|
-
}, null, 4)], 10,
|
|
11193
|
+
}, null, 4)], 10, sf),
|
|
11145
11194
|
l("button", {
|
|
11146
11195
|
role: "radio",
|
|
11147
11196
|
class: b(["shape-preview-button", { active: a.localSticker.shape === "rect" }]),
|
|
@@ -11155,7 +11204,7 @@ function xf(t, n, r, i, a, u) {
|
|
|
11155
11204
|
backgroundColor: a.localSticker.color,
|
|
11156
11205
|
borderColor: u.stickerBorderColor
|
|
11157
11206
|
})
|
|
11158
|
-
}, null, 4)], 10,
|
|
11207
|
+
}, null, 4)], 10, cf),
|
|
11159
11208
|
l("button", {
|
|
11160
11209
|
role: "radio",
|
|
11161
11210
|
class: b(["shape-preview-button", { active: a.localSticker.shape === "roundedSquare" }]),
|
|
@@ -11169,7 +11218,7 @@ function xf(t, n, r, i, a, u) {
|
|
|
11169
11218
|
backgroundColor: a.localSticker.color,
|
|
11170
11219
|
borderColor: u.stickerBorderColor
|
|
11171
11220
|
})
|
|
11172
|
-
}, null, 4)], 10,
|
|
11221
|
+
}, null, 4)], 10, lf),
|
|
11173
11222
|
l("button", {
|
|
11174
11223
|
role: "radio",
|
|
11175
11224
|
class: b(["shape-preview-button", { active: a.localSticker.shape === "square" }]),
|
|
@@ -11183,12 +11232,12 @@ function xf(t, n, r, i, a, u) {
|
|
|
11183
11232
|
backgroundColor: a.localSticker.color,
|
|
11184
11233
|
borderColor: u.stickerBorderColor
|
|
11185
11234
|
})
|
|
11186
|
-
}, null, 4)], 10,
|
|
11235
|
+
}, null, 4)], 10, uf)
|
|
11187
11236
|
]),
|
|
11188
11237
|
_: 1
|
|
11189
11238
|
})]),
|
|
11190
11239
|
_: 1
|
|
11191
|
-
})), l("div",
|
|
11240
|
+
})), l("div", df, [
|
|
11192
11241
|
r.readOnly ? s("", !0) : (T(), o(p, {
|
|
11193
11242
|
key: 0,
|
|
11194
11243
|
preset: "label-1"
|
|
@@ -11196,7 +11245,7 @@ function xf(t, n, r, i, a, u) {
|
|
|
11196
11245
|
default: I(() => [...n[11] ||= [d("Edit content and formatting", -1)]]),
|
|
11197
11246
|
_: 1
|
|
11198
11247
|
})),
|
|
11199
|
-
l("div",
|
|
11248
|
+
l("div", ff, [r.pagePosition ? (T(), c("div", pf, [l("div", {
|
|
11200
11249
|
class: "page-position-indicator",
|
|
11201
11250
|
style: S(u.pagePositionIndicatorStyles)
|
|
11202
11251
|
}, [
|
|
@@ -11236,11 +11285,11 @@ function xf(t, n, r, i, a, u) {
|
|
|
11236
11285
|
}, [l("div", { class: b(["sticker-content", { "read-only": r.readOnly }]) }, [(T(!0), c(e, null, O(a.localSticker.text, (e, t) => (T(), c("div", {
|
|
11237
11286
|
key: t,
|
|
11238
11287
|
class: "line"
|
|
11239
|
-
}, [l("div",
|
|
11288
|
+
}, [l("div", bf, [l("span", {
|
|
11240
11289
|
class: "line-preview",
|
|
11241
11290
|
style: S(u.getLineStyle(e)),
|
|
11242
11291
|
innerHTML: u.processTextContent(e.content)
|
|
11243
|
-
}, null, 12,
|
|
11292
|
+
}, null, 12, xf)])]))), 128))], 2)], 4)) : (T(), c("div", {
|
|
11244
11293
|
key: 1,
|
|
11245
11294
|
class: "sticker",
|
|
11246
11295
|
style: S({
|
|
@@ -11249,13 +11298,13 @@ function xf(t, n, r, i, a, u) {
|
|
|
11249
11298
|
color: u.stickerTextColor,
|
|
11250
11299
|
...u.stickerShapeStyles[a.localSticker.shape]
|
|
11251
11300
|
})
|
|
11252
|
-
}, [l("div",
|
|
11301
|
+
}, [l("div", mf, [(T(!0), c(e, null, O(a.localSticker.text, (e, t) => (T(), c("div", {
|
|
11253
11302
|
key: t,
|
|
11254
11303
|
class: b(["line editable", { focused: u.isLineFocused(t) }]),
|
|
11255
11304
|
ref_for: !0,
|
|
11256
11305
|
ref: `line-${t}`
|
|
11257
11306
|
}, [
|
|
11258
|
-
l("div",
|
|
11307
|
+
l("div", hf, [f(h, {
|
|
11259
11308
|
type: "secondary",
|
|
11260
11309
|
size: "sml",
|
|
11261
11310
|
"icon-only": "",
|
|
@@ -11284,7 +11333,7 @@ function xf(t, n, r, i, a, u) {
|
|
|
11284
11333
|
"disabled",
|
|
11285
11334
|
"tabindex"
|
|
11286
11335
|
])]),
|
|
11287
|
-
l("div",
|
|
11336
|
+
l("div", gf, [l("input", {
|
|
11288
11337
|
type: "text",
|
|
11289
11338
|
value: e.content,
|
|
11290
11339
|
onInput: (e) => u.updateLine(t, "content", e.target.value),
|
|
@@ -11296,12 +11345,12 @@ function xf(t, n, r, i, a, u) {
|
|
|
11296
11345
|
ref: (e) => {
|
|
11297
11346
|
e && (a.lineInputs[t] = e);
|
|
11298
11347
|
}
|
|
11299
|
-
}, null, 44,
|
|
11348
|
+
}, null, 44, _f), l("span", {
|
|
11300
11349
|
class: "line-preview",
|
|
11301
11350
|
style: S(u.getLineStyle(e)),
|
|
11302
11351
|
innerHTML: u.processTextContent(e.content)
|
|
11303
|
-
}, null, 12,
|
|
11304
|
-
l("div",
|
|
11352
|
+
}, null, 12, vf)]),
|
|
11353
|
+
l("div", yf, [f(h, {
|
|
11305
11354
|
type: "secondary",
|
|
11306
11355
|
size: "sml",
|
|
11307
11356
|
"icon-only": "",
|
|
@@ -11430,7 +11479,7 @@ function xf(t, n, r, i, a, u) {
|
|
|
11430
11479
|
key: 1,
|
|
11431
11480
|
disabled: a.focusedLineIndex === null
|
|
11432
11481
|
}, {
|
|
11433
|
-
content: I(() => [l("div",
|
|
11482
|
+
content: I(() => [l("div", Sf, [f(w, null, {
|
|
11434
11483
|
default: I(() => [f(x, null, {
|
|
11435
11484
|
default: I(() => [...n[12] ||= [d("Insert Field Value", -1)]]),
|
|
11436
11485
|
_: 1
|
|
@@ -11475,7 +11524,7 @@ function xf(t, n, r, i, a, u) {
|
|
|
11475
11524
|
})) : s("", !0)
|
|
11476
11525
|
])]);
|
|
11477
11526
|
}
|
|
11478
|
-
var
|
|
11527
|
+
var wf = /*#__PURE__*/ H(af, [["render", Cf], ["__scopeId", "data-v-acfa8b96"]]), Tf = {
|
|
11479
11528
|
__name: "fill-icon",
|
|
11480
11529
|
props: {
|
|
11481
11530
|
type: {
|
|
@@ -11523,14 +11572,14 @@ var Sf = /*#__PURE__*/ H(nf, [["render", xf], ["__scopeId", "data-v-acfa8b96"]])
|
|
|
11523
11572
|
width: e.width
|
|
11524
11573
|
}, null, 8, ["height", "width"]));
|
|
11525
11574
|
}
|
|
11526
|
-
},
|
|
11575
|
+
}, Ef = { name: "ecs-file-list" }, Df = {
|
|
11527
11576
|
class: "ecs-file-list",
|
|
11528
11577
|
role: "list"
|
|
11529
11578
|
};
|
|
11530
|
-
function
|
|
11531
|
-
return T(), c("div",
|
|
11579
|
+
function Of(e, t, n, r, i, a) {
|
|
11580
|
+
return T(), c("div", Df, [k(e.$slots, "default")]);
|
|
11532
11581
|
}
|
|
11533
|
-
var
|
|
11582
|
+
var kf = /*#__PURE__*/ H(Ef, [["render", Of]]), Af = {
|
|
11534
11583
|
name: "ecs-file-list-item",
|
|
11535
11584
|
emits: [
|
|
11536
11585
|
"click",
|
|
@@ -11673,23 +11722,23 @@ var Df = /*#__PURE__*/ H(wf, [["render", Ef]]), Of = {
|
|
|
11673
11722
|
created() {
|
|
11674
11723
|
this.expandId = this.generateUniqueId(), this.errorId = this.generateUniqueId(), this.warningId = this.generateUniqueId(), this.editId = this.generateUniqueId();
|
|
11675
11724
|
}
|
|
11676
|
-
},
|
|
11725
|
+
}, jf = ["tabindex"], Mf = {
|
|
11677
11726
|
key: 0,
|
|
11678
11727
|
class: "ecs-file-list-entry-inner"
|
|
11679
|
-
},
|
|
11728
|
+
}, Nf = ["aria-errormessage"], Pf = { class: "ecs-file-list-entry-controls" }, Ff = {
|
|
11680
11729
|
key: 0,
|
|
11681
11730
|
class: "ecs-file-list-entry-meta"
|
|
11682
|
-
},
|
|
11731
|
+
}, If = ["aria-valuenow"], Lf = ["id"], Rf = {
|
|
11683
11732
|
key: 0,
|
|
11684
11733
|
class: "list"
|
|
11685
|
-
},
|
|
11734
|
+
}, zf = ["id"], Bf = {
|
|
11686
11735
|
key: 0,
|
|
11687
11736
|
class: "list"
|
|
11688
|
-
},
|
|
11737
|
+
}, Vf = ["id", "aria-hidden"], Hf = ["id"], Uf = {
|
|
11689
11738
|
ref: "edit",
|
|
11690
11739
|
class: "ecs-file-list-entry-edit"
|
|
11691
11740
|
};
|
|
11692
|
-
function
|
|
11741
|
+
function Wf(t, n, i, a, u, p) {
|
|
11693
11742
|
let m = A("ecs-focus-ring"), h = A("ecs-icon"), g = A("ecs-file-icon"), _ = A("ecs-sticker"), v = A("ecs-button"), y = A("ecs-button-table");
|
|
11694
11743
|
return T(), c("div", {
|
|
11695
11744
|
onClick: n[8] ||= (e) => t.$emit("click", e),
|
|
@@ -11704,7 +11753,7 @@ function Hf(t, n, i, a, u, p) {
|
|
|
11704
11753
|
}, [
|
|
11705
11754
|
i.hover ? (T(), o(m, { key: 0 })) : s("", !0),
|
|
11706
11755
|
f(r, { name: "title" }, {
|
|
11707
|
-
default: I(() => [i.showTitleEdit || !i.edit ? (T(), c("div",
|
|
11756
|
+
default: I(() => [i.showTitleEdit || !i.edit ? (T(), c("div", Mf, [
|
|
11708
11757
|
i.icon ? (T(), o(h, {
|
|
11709
11758
|
key: 0,
|
|
11710
11759
|
onClick: n[0] ||= (e) => t.$emit("title-click", e),
|
|
@@ -11745,9 +11794,9 @@ function Hf(t, n, i, a, u, p) {
|
|
|
11745
11794
|
}, [l("div", {
|
|
11746
11795
|
class: "title",
|
|
11747
11796
|
"aria-errormessage": i.error ? u.errorId : null
|
|
11748
|
-
}, [k(t.$slots, "default", {}, void 0, !0)], 8,
|
|
11749
|
-
l("div",
|
|
11750
|
-
t.$slots.meta ? (T(), c("div",
|
|
11797
|
+
}, [k(t.$slots, "default", {}, void 0, !0)], 8, Nf)], 32),
|
|
11798
|
+
l("div", Pf, [
|
|
11799
|
+
t.$slots.meta ? (T(), c("div", Ff, [k(t.$slots, "meta", {}, void 0, !0)])) : s("", !0),
|
|
11751
11800
|
k(t.$slots, "controls", {}, void 0, !0),
|
|
11752
11801
|
t.$slots.collapse ? (T(), o(v, {
|
|
11753
11802
|
key: 1,
|
|
@@ -11783,7 +11832,7 @@ function Hf(t, n, i, a, u, p) {
|
|
|
11783
11832
|
style: S({ width: i.progress + "%" }),
|
|
11784
11833
|
role: "progressbar",
|
|
11785
11834
|
"aria-valuenow": i.progress
|
|
11786
|
-
}, null, 12,
|
|
11835
|
+
}, null, 12, If)) : s("", !0)
|
|
11787
11836
|
])) : s("", !0)]),
|
|
11788
11837
|
_: 3
|
|
11789
11838
|
}),
|
|
@@ -11791,29 +11840,29 @@ function Hf(t, n, i, a, u, p) {
|
|
|
11791
11840
|
key: 1,
|
|
11792
11841
|
class: "error",
|
|
11793
11842
|
id: u.errorId
|
|
11794
|
-
}, [p.errorIsArray ? (T(), c("ul",
|
|
11843
|
+
}, [p.errorIsArray ? (T(), c("ul", Rf, [(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, Lf)) : s("", !0),
|
|
11795
11844
|
p.showWarningMessage ? (T(), c("div", {
|
|
11796
11845
|
key: 2,
|
|
11797
11846
|
class: "warning",
|
|
11798
11847
|
id: u.warningId
|
|
11799
|
-
}, [p.warningIsArray ? (T(), c("ul",
|
|
11848
|
+
}, [p.warningIsArray ? (T(), c("ul", Bf, [(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, zf)) : s("", !0),
|
|
11800
11849
|
t.$slots.collapse ? (T(), c("div", {
|
|
11801
11850
|
key: 3,
|
|
11802
11851
|
class: b(u.isVisible ? "collapse-show" : "collapse-hide"),
|
|
11803
11852
|
id: u.expandId,
|
|
11804
11853
|
"aria-hidden": u.isVisible ? "false" : "true"
|
|
11805
|
-
}, [k(t.$slots, "collapse", {}, void 0, !0)], 10,
|
|
11854
|
+
}, [k(t.$slots, "collapse", {}, void 0, !0)], 10, Vf)) : s("", !0),
|
|
11806
11855
|
f(r, { name: "edit" }, {
|
|
11807
11856
|
default: I(() => [t.$slots.edit && i.edit ? (T(), c("div", {
|
|
11808
11857
|
key: 0,
|
|
11809
11858
|
style: S({ maxHeight: u.editHeight + "px" }),
|
|
11810
11859
|
id: u.editId
|
|
11811
|
-
}, [l("div",
|
|
11860
|
+
}, [l("div", Uf, [k(t.$slots, "edit", {}, void 0, !0)], 512)], 12, Hf)) : s("", !0)]),
|
|
11812
11861
|
_: 3
|
|
11813
11862
|
})
|
|
11814
|
-
], 10,
|
|
11863
|
+
], 10, jf);
|
|
11815
11864
|
}
|
|
11816
|
-
var
|
|
11865
|
+
var Gf = /*#__PURE__*/ H(Af, [["render", Wf], ["__scopeId", "data-v-a36f1ec9"]]), Kf = { class: "ecs-flag" }, qf = /*#__PURE__*/ H({
|
|
11817
11866
|
__name: "flag",
|
|
11818
11867
|
props: { code: {
|
|
11819
11868
|
type: String,
|
|
@@ -12362,12 +12411,12 @@ var Uf = /*#__PURE__*/ H(Of, [["render", Hf], ["__scopeId", "data-v-a36f1ec9"]])
|
|
|
12362
12411
|
"../assets/icons/flags/ZM.svg": () => import("./ZM-Dkb7wa7k.js"),
|
|
12363
12412
|
"../assets/icons/flags/ZW.svg": () => import("./ZW-DEbzCAdU.js")
|
|
12364
12413
|
}), `../assets/icons/flags/${e.toUpperCase()}.svg`, 5)));
|
|
12365
|
-
}), (t, i) => (T(), c("div",
|
|
12414
|
+
}), (t, i) => (T(), c("div", Kf, [e.code ? (T(), o(M(P(r)), {
|
|
12366
12415
|
key: 0,
|
|
12367
12416
|
alt: n.value
|
|
12368
12417
|
}, null, 8, ["alt"])) : s("", !0)]));
|
|
12369
12418
|
}
|
|
12370
|
-
}, [["__scopeId", "data-v-98c0431b"]]),
|
|
12419
|
+
}, [["__scopeId", "data-v-98c0431b"]]), Jf = {
|
|
12371
12420
|
name: "ecs-flex-col",
|
|
12372
12421
|
props: {
|
|
12373
12422
|
columns: { type: Number },
|
|
@@ -12407,7 +12456,7 @@ var Uf = /*#__PURE__*/ H(Of, [["render", Hf], ["__scopeId", "data-v-a36f1ec9"]])
|
|
|
12407
12456
|
}
|
|
12408
12457
|
}
|
|
12409
12458
|
};
|
|
12410
|
-
function
|
|
12459
|
+
function Yf(e, t, n, r, i, a) {
|
|
12411
12460
|
return T(), c("div", { class: b(["ecs-flex-col", [
|
|
12412
12461
|
a.columnClass,
|
|
12413
12462
|
a.growClass,
|
|
@@ -12415,7 +12464,7 @@ function qf(e, t, n, r, i, a) {
|
|
|
12415
12464
|
a.autoMarginClass
|
|
12416
12465
|
]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2);
|
|
12417
12466
|
}
|
|
12418
|
-
var
|
|
12467
|
+
var Xf = /*#__PURE__*/ H(Jf, [["render", Yf], ["__scopeId", "data-v-1d2ad846"]]), Zf = {
|
|
12419
12468
|
name: "ecs-input-clear",
|
|
12420
12469
|
emits: ["click"],
|
|
12421
12470
|
components: {
|
|
@@ -12432,8 +12481,8 @@ var Jf = /*#__PURE__*/ H(Kf, [["render", qf], ["__scopeId", "data-v-1d2ad846"]])
|
|
|
12432
12481
|
computed: { title() {
|
|
12433
12482
|
return this.tooltip || "Clear";
|
|
12434
12483
|
} }
|
|
12435
|
-
},
|
|
12436
|
-
function
|
|
12484
|
+
}, Qf = ["aria-busy"], $f = ["title"];
|
|
12485
|
+
function ep(e, t, n, r, i, a) {
|
|
12437
12486
|
let u = A("ecs-focus-ring"), d = A("ecs-icon");
|
|
12438
12487
|
return T(), c("div", {
|
|
12439
12488
|
class: "ecs-input-clear",
|
|
@@ -12444,20 +12493,20 @@ function Qf(e, t, n, r, i, a) {
|
|
|
12444
12493
|
title: a.title,
|
|
12445
12494
|
class: "ecs-input-clear-button",
|
|
12446
12495
|
"aria-label": "Clear"
|
|
12447
|
-
}, [f(u, { radius: 24 })], 40,
|
|
12496
|
+
}, [f(u, { radius: 24 })], 40, $f), n.loading ? (T(), o(d, {
|
|
12448
12497
|
key: 0,
|
|
12449
12498
|
type: "loading",
|
|
12450
12499
|
size: "32",
|
|
12451
12500
|
spinning: "",
|
|
12452
12501
|
color: "#AEB1B9"
|
|
12453
|
-
})) : s("", !0)], 8,
|
|
12502
|
+
})) : s("", !0)], 8, Qf);
|
|
12454
12503
|
}
|
|
12455
|
-
var
|
|
12504
|
+
var tp = /*#__PURE__*/ H(Zf, [["render", ep], ["__scopeId", "data-v-65544544"]]), np = {
|
|
12456
12505
|
name: "ecs-input-search",
|
|
12457
12506
|
emits: ["update:modelValue", "change"],
|
|
12458
12507
|
components: {
|
|
12459
12508
|
EcsIcon: U,
|
|
12460
|
-
EcsInputClear:
|
|
12509
|
+
EcsInputClear: tp
|
|
12461
12510
|
},
|
|
12462
12511
|
props: {
|
|
12463
12512
|
placeholder: {
|
|
@@ -12542,14 +12591,14 @@ var $f = /*#__PURE__*/ H(Yf, [["render", Qf], ["__scopeId", "data-v-65544544"]])
|
|
|
12542
12591
|
mounted() {
|
|
12543
12592
|
this.modelValue && this.setValue(this.modelValue);
|
|
12544
12593
|
}
|
|
12545
|
-
},
|
|
12594
|
+
}, rp = [
|
|
12546
12595
|
"name",
|
|
12547
12596
|
"disabled",
|
|
12548
12597
|
"placeholder",
|
|
12549
12598
|
"autocomplete",
|
|
12550
12599
|
"value"
|
|
12551
12600
|
];
|
|
12552
|
-
function
|
|
12601
|
+
function ip(e, t, n, r, i, a) {
|
|
12553
12602
|
let u = A("ecs-icon"), d = A("ecs-input-clear");
|
|
12554
12603
|
return T(), c("div", { class: b(["ecs-search-group", a.groupSizeClass]) }, [
|
|
12555
12604
|
f(u, {
|
|
@@ -12572,7 +12621,7 @@ function np(e, t, n, r, i, a) {
|
|
|
12572
12621
|
a.sizeClass,
|
|
12573
12622
|
a.typeClass
|
|
12574
12623
|
]
|
|
12575
|
-
}), null, 16,
|
|
12624
|
+
}), null, 16, rp),
|
|
12576
12625
|
n.showClear ? (T(), o(d, {
|
|
12577
12626
|
key: 0,
|
|
12578
12627
|
onClick: a.clearSearch,
|
|
@@ -12580,7 +12629,7 @@ function np(e, t, n, r, i, a) {
|
|
|
12580
12629
|
}, null, 8, ["onClick", "loading"])) : s("", !0)
|
|
12581
12630
|
], 2);
|
|
12582
12631
|
}
|
|
12583
|
-
var
|
|
12632
|
+
var ap = /*#__PURE__*/ H(np, [["render", ip], ["__scopeId", "data-v-5f9bc8e4"]]), op = {
|
|
12584
12633
|
name: "ecs-scroll-container",
|
|
12585
12634
|
props: {
|
|
12586
12635
|
height: {
|
|
@@ -12601,7 +12650,7 @@ var rp = /*#__PURE__*/ H(ep, [["render", np], ["__scopeId", "data-v-5f9bc8e4"]])
|
|
|
12601
12650
|
}
|
|
12602
12651
|
}
|
|
12603
12652
|
};
|
|
12604
|
-
function
|
|
12653
|
+
function sp(e, t, n, r, i, a) {
|
|
12605
12654
|
return T(), c("div", {
|
|
12606
12655
|
class: b(["ecs-scroll-container scrollbar scrollbar-sml vertical", [n.borderless ? "" : "ecs-scroll-container-border", n.hideShadows ? "" : "ecs-scroll-container-shadows"]]),
|
|
12607
12656
|
style: S({
|
|
@@ -12610,7 +12659,7 @@ function ap(e, t, n, r, i, a) {
|
|
|
12610
12659
|
})
|
|
12611
12660
|
}, [k(e.$slots, "default", {}, void 0, !0)], 6);
|
|
12612
12661
|
}
|
|
12613
|
-
var
|
|
12662
|
+
var cp = /*#__PURE__*/ H(op, [["render", sp], ["__scopeId", "data-v-d87a8075"]]), lp = {
|
|
12614
12663
|
name: "ecs-folder-selector",
|
|
12615
12664
|
emits: [
|
|
12616
12665
|
"search",
|
|
@@ -12618,10 +12667,10 @@ var op = /*#__PURE__*/ H(ip, [["render", ap], ["__scopeId", "data-v-d87a8075"]])
|
|
|
12618
12667
|
"refresh"
|
|
12619
12668
|
],
|
|
12620
12669
|
components: {
|
|
12621
|
-
EcsInputSearch:
|
|
12622
|
-
EcsScrollContainer:
|
|
12670
|
+
EcsInputSearch: ap,
|
|
12671
|
+
EcsScrollContainer: cp,
|
|
12623
12672
|
EcsButton: X,
|
|
12624
|
-
EcsEmptyState:
|
|
12673
|
+
EcsEmptyState: od,
|
|
12625
12674
|
EcsTextV2: br
|
|
12626
12675
|
},
|
|
12627
12676
|
props: {
|
|
@@ -12692,19 +12741,19 @@ var op = /*#__PURE__*/ H(ip, [["render", ap], ["__scopeId", "data-v-d87a8075"]])
|
|
|
12692
12741
|
this.$emit("add");
|
|
12693
12742
|
}
|
|
12694
12743
|
}
|
|
12695
|
-
},
|
|
12744
|
+
}, up = {
|
|
12696
12745
|
key: 0,
|
|
12697
12746
|
class: "ecs-folder-selector-header"
|
|
12698
|
-
},
|
|
12747
|
+
}, dp = {
|
|
12699
12748
|
key: 2,
|
|
12700
12749
|
class: "empty-list"
|
|
12701
12750
|
};
|
|
12702
|
-
function
|
|
12751
|
+
function fp(e, t, n, r, i, a) {
|
|
12703
12752
|
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");
|
|
12704
12753
|
return T(), c("div", {
|
|
12705
12754
|
class: b(["ecs-folder-selector", [n.framed ? "ecs-folder-selector-border" : ""]]),
|
|
12706
12755
|
style: S({ height: a.selectorHeight })
|
|
12707
|
-
}, [n.searchable || n.create || n.refreshable || n.title ? (T(), c("div",
|
|
12756
|
+
}, [n.searchable || n.create || n.refreshable || n.title ? (T(), c("div", up, [
|
|
12708
12757
|
n.title && !n.searchable ? (T(), o(l, {
|
|
12709
12758
|
key: 0,
|
|
12710
12759
|
preset: "headline-5",
|
|
@@ -12754,11 +12803,11 @@ function up(e, t, n, r, i, a) {
|
|
|
12754
12803
|
default: I(() => [n.loading ? (T(), o(m, {
|
|
12755
12804
|
key: 0,
|
|
12756
12805
|
type: "loading"
|
|
12757
|
-
})) : e.$slots.default ? k(e.$slots, "default", { key: 1 }, void 0, !0) : (T(), c("div",
|
|
12806
|
+
})) : e.$slots.default ? k(e.$slots, "default", { key: 1 }, void 0, !0) : (T(), c("div", dp, N(n.emptyMessage), 1))]),
|
|
12758
12807
|
_: 3
|
|
12759
12808
|
}, 8, ["style", "padding"])], 6);
|
|
12760
12809
|
}
|
|
12761
|
-
var
|
|
12810
|
+
var pp = /*#__PURE__*/ H(lp, [["render", fp], ["__scopeId", "data-v-e8fd70d2"]]), mp = {
|
|
12762
12811
|
name: "ecs-form-group",
|
|
12763
12812
|
components: { EcsTextV2: br },
|
|
12764
12813
|
props: {
|
|
@@ -12788,7 +12837,7 @@ var dp = /*#__PURE__*/ H(sp, [["render", up], ["__scopeId", "data-v-e8fd70d2"]])
|
|
|
12788
12837
|
}
|
|
12789
12838
|
}
|
|
12790
12839
|
};
|
|
12791
|
-
function
|
|
12840
|
+
function hp(e, t, n, r, i, a) {
|
|
12792
12841
|
let l = A("ecs-text-v2");
|
|
12793
12842
|
return T(), c("div", { class: b(["ecs-form-group", {
|
|
12794
12843
|
error: n.error,
|
|
@@ -12820,14 +12869,14 @@ function pp(e, t, n, r, i, a) {
|
|
|
12820
12869
|
}, null, 8, ["innerHTML"])) : s("", !0)
|
|
12821
12870
|
], 2);
|
|
12822
12871
|
}
|
|
12823
|
-
var
|
|
12872
|
+
var gp = /*#__PURE__*/ H(mp, [["render", hp], ["__scopeId", "data-v-b5eb6ae4"]]), _p = {}, vp = { class: "ecs-form-headline" }, yp = { class: "ecs-form-headline-main" }, bp = {
|
|
12824
12873
|
key: 0,
|
|
12825
12874
|
class: "ecs-form-headline-controls"
|
|
12826
12875
|
};
|
|
12827
|
-
function
|
|
12828
|
-
return T(), c("div",
|
|
12876
|
+
function xp(e, t) {
|
|
12877
|
+
return T(), c("div", vp, [l("h2", yp, [k(e.$slots, "default", {}, void 0, !0)]), e.$slots.controls ? (T(), c("div", bp, [k(e.$slots, "controls", {}, void 0, !0)])) : s("", !0)]);
|
|
12829
12878
|
}
|
|
12830
|
-
var
|
|
12879
|
+
var Sp = /*#__PURE__*/ H(_p, [["render", xp], ["__scopeId", "data-v-16833f69"]]), Cp = {
|
|
12831
12880
|
name: "ecs-form-set",
|
|
12832
12881
|
components: { EcsButtonMore: Va },
|
|
12833
12882
|
props: {
|
|
@@ -12860,22 +12909,22 @@ var bp = /*#__PURE__*/ H(hp, [["render", yp], ["__scopeId", "data-v-16833f69"]])
|
|
|
12860
12909
|
this.isTransitioning = !1;
|
|
12861
12910
|
}, 200);
|
|
12862
12911
|
} }
|
|
12863
|
-
},
|
|
12864
|
-
function
|
|
12912
|
+
}, wp = ["aria-invalid"], Tp = { class: "ecs-form-set-title" }, Ep = { class: "ecs-form-set-content" }, Dp = { class: "ecs-form-set-content-inner" }, Op = { class: "ecs-form-set-expand-content-inner" };
|
|
12913
|
+
function kp(t, n, r, i, a, o) {
|
|
12865
12914
|
let u = A("ecs-button-more");
|
|
12866
12915
|
return T(), c("fieldset", {
|
|
12867
12916
|
class: b(["ecs-form-set", [r.type, r.error ? "error" : ""]]),
|
|
12868
12917
|
"aria-invalid": r.error || null
|
|
12869
|
-
}, [l("legend",
|
|
12918
|
+
}, [l("legend", Tp, N(r.title), 1), l("div", Ep, [l("div", Dp, [k(t.$slots, "default", {}, void 0, !0)]), t.$slots.expand ? (T(), c(e, { key: 0 }, [f(u, {
|
|
12870
12919
|
type: "expand",
|
|
12871
12920
|
active: a.expanded,
|
|
12872
12921
|
onClick: o.toggleExpand
|
|
12873
12922
|
}, {
|
|
12874
12923
|
default: I(() => [d(N(r.expandButtonText), 1)]),
|
|
12875
12924
|
_: 1
|
|
12876
|
-
}, 8, ["active", "onClick"]), l("div", { class: b(["ecs-form-set-expand-content", [a.expanded ? "collapse-show" : "collapse-hide", a.isTransitioning ? "collapse-transitioning" : ""]]) }, [l("div",
|
|
12925
|
+
}, 8, ["active", "onClick"]), l("div", { class: b(["ecs-form-set-expand-content", [a.expanded ? "collapse-show" : "collapse-hide", a.isTransitioning ? "collapse-transitioning" : ""]]) }, [l("div", Op, [k(t.$slots, "expand", {}, void 0, !0)])], 2)], 64)) : s("", !0)])], 10, wp);
|
|
12877
12926
|
}
|
|
12878
|
-
var
|
|
12927
|
+
var Ap = /*#__PURE__*/ H(Cp, [["render", kp], ["__scopeId", "data-v-1085541e"]]), jp = {
|
|
12879
12928
|
name: "ecs-highlight",
|
|
12880
12929
|
props: {
|
|
12881
12930
|
show: {
|
|
@@ -12928,7 +12977,7 @@ var Op = /*#__PURE__*/ H(xp, [["render", Dp], ["__scopeId", "data-v-1085541e"]])
|
|
|
12928
12977
|
}
|
|
12929
12978
|
}
|
|
12930
12979
|
};
|
|
12931
|
-
function
|
|
12980
|
+
function Mp(e, t, n, i, a, l) {
|
|
12932
12981
|
return T(), o(r, {
|
|
12933
12982
|
name: "fade",
|
|
12934
12983
|
appear: ""
|
|
@@ -12945,7 +12994,7 @@ function Ap(e, t, n, i, a, l) {
|
|
|
12945
12994
|
_: 3
|
|
12946
12995
|
});
|
|
12947
12996
|
}
|
|
12948
|
-
var
|
|
12997
|
+
var Np = /*#__PURE__*/ H(jp, [["render", Mp], ["__scopeId", "data-v-ad0ca7b9"]]), Pp = {
|
|
12949
12998
|
name: "EcsIllustration",
|
|
12950
12999
|
props: {
|
|
12951
13000
|
type: {
|
|
@@ -12993,7 +13042,7 @@ var jp = /*#__PURE__*/ H(kp, [["render", Ap], ["__scopeId", "data-v-ad0ca7b9"]])
|
|
|
12993
13042
|
}), `../assets/images/select-tile/${e}.svg`, 5)));
|
|
12994
13043
|
} }
|
|
12995
13044
|
};
|
|
12996
|
-
function
|
|
13045
|
+
function Fp(e, t, n, r, i, a) {
|
|
12997
13046
|
return T(), o(M(i.illustrationComponent), {
|
|
12998
13047
|
class: "ecs-illustration",
|
|
12999
13048
|
width: n.size,
|
|
@@ -13006,7 +13055,7 @@ function Np(e, t, n, r, i, a) {
|
|
|
13006
13055
|
"data-test-illustration-type"
|
|
13007
13056
|
]);
|
|
13008
13057
|
}
|
|
13009
|
-
var
|
|
13058
|
+
var Ip = /*#__PURE__*/ H(Pp, [["render", Fp], ["__scopeId", "data-v-ff7cc16f"]]), Lp = {
|
|
13010
13059
|
name: "ecs-index-toolbar",
|
|
13011
13060
|
components: { EcsFlexRow: K },
|
|
13012
13061
|
props: { showActionbar: {
|
|
@@ -13017,30 +13066,30 @@ var Pp = /*#__PURE__*/ H(Mp, [["render", Np], ["__scopeId", "data-v-ff7cc16f"]])
|
|
|
13017
13066
|
data() {
|
|
13018
13067
|
return {};
|
|
13019
13068
|
}
|
|
13020
|
-
},
|
|
13069
|
+
}, Rp = { class: "ecs-toolbar" }, zp = { class: "ecs-toolbar-search" }, Bp = {
|
|
13021
13070
|
key: 0,
|
|
13022
13071
|
class: "ecs-toolbar-controls"
|
|
13023
|
-
},
|
|
13072
|
+
}, Vp = {
|
|
13024
13073
|
key: 0,
|
|
13025
13074
|
class: "ecs-toolbar-controls-secondary"
|
|
13026
|
-
},
|
|
13075
|
+
}, Hp = {
|
|
13027
13076
|
key: 1,
|
|
13028
13077
|
class: "ecs-toolbar-controls-primary"
|
|
13029
|
-
},
|
|
13078
|
+
}, Up = {
|
|
13030
13079
|
key: 0,
|
|
13031
13080
|
class: "ecs-toolbar-action-bar"
|
|
13032
13081
|
};
|
|
13033
|
-
function
|
|
13082
|
+
function Wp(e, t, n, r, i, a) {
|
|
13034
13083
|
let o = A("ecs-flex-row");
|
|
13035
|
-
return T(), c("div",
|
|
13084
|
+
return T(), c("div", Rp, [f(o, {
|
|
13036
13085
|
gap: 24,
|
|
13037
13086
|
class: "ecs-toolbar-content"
|
|
13038
13087
|
}, {
|
|
13039
|
-
default: I(() => [l("div",
|
|
13088
|
+
default: I(() => [l("div", zp, [k(e.$slots, "search", {}, void 0, !0)]), e.$slots.secondary || e.$slots.primary ? (T(), c("div", Bp, [e.$slots.secondary ? (T(), c("div", Vp, [k(e.$slots, "secondary", {}, void 0, !0)])) : s("", !0), e.$slots.primary ? (T(), c("div", Hp, [k(e.$slots, "primary", {}, void 0, !0)])) : s("", !0)])) : s("", !0)]),
|
|
13040
13089
|
_: 3
|
|
13041
|
-
}), e.$slots.actionbar && n.showActionbar ? (T(), c("div",
|
|
13090
|
+
}), e.$slots.actionbar && n.showActionbar ? (T(), c("div", Up, [k(e.$slots, "actionbar", {}, void 0, !0)])) : s("", !0)]);
|
|
13042
13091
|
}
|
|
13043
|
-
var
|
|
13092
|
+
var Gp = /*#__PURE__*/ H(Lp, [["render", Wp], ["__scopeId", "data-v-9021ef06"]]), Kp = {
|
|
13044
13093
|
name: "ecs-index-list-item",
|
|
13045
13094
|
emits: ["click", "toggled"],
|
|
13046
13095
|
mixins: [Y],
|
|
@@ -13097,13 +13146,13 @@ var Up = /*#__PURE__*/ H(Fp, [["render", Hp], ["__scopeId", "data-v-9021ef06"]])
|
|
|
13097
13146
|
watch: { expanded(e) {
|
|
13098
13147
|
this.isExpanded = e;
|
|
13099
13148
|
} }
|
|
13100
|
-
},
|
|
13149
|
+
}, qp = [
|
|
13101
13150
|
"aria-expanded",
|
|
13102
13151
|
"aria-controls",
|
|
13103
13152
|
"aria-disabled",
|
|
13104
13153
|
"tabindex"
|
|
13105
|
-
],
|
|
13106
|
-
function
|
|
13154
|
+
], Jp = { class: "ecs-index-list-item-content" }, Yp = { class: "ecs-index-list-item-actions" }, Xp = ["id", "aria-labelledby"];
|
|
13155
|
+
function Zp(e, t, n, r, i, a) {
|
|
13107
13156
|
let o = A("ecs-focus-ring");
|
|
13108
13157
|
return T(), c("div", {
|
|
13109
13158
|
onClick: t[1] ||= (t) => e.$emit("click", t),
|
|
@@ -13122,9 +13171,9 @@ function Yp(e, t, n, r, i, a) {
|
|
|
13122
13171
|
"aria-disabled": e.$slots.expand ? n.disabled : void 0,
|
|
13123
13172
|
tabindex: e.$slots.expand && !n.disabled ? 0 : void 0,
|
|
13124
13173
|
class: "ecs-index-list-item-expand-button"
|
|
13125
|
-
}, [f(o)], 8,
|
|
13126
|
-
l("div",
|
|
13127
|
-
l("div",
|
|
13174
|
+
}, [f(o)], 8, qp)) : s("", !0),
|
|
13175
|
+
l("div", Jp, [k(e.$slots, "default", {}, void 0, !0)]),
|
|
13176
|
+
l("div", Yp, [k(e.$slots, "actions", {}, void 0, !0)]),
|
|
13128
13177
|
a.showProgress ? (T(), c("div", {
|
|
13129
13178
|
key: 1,
|
|
13130
13179
|
class: "progress",
|
|
@@ -13140,9 +13189,9 @@ function Yp(e, t, n, r, i, a) {
|
|
|
13140
13189
|
id: `${a.itemId}-content`,
|
|
13141
13190
|
role: "region",
|
|
13142
13191
|
"aria-labelledby": a.itemId
|
|
13143
|
-
}, [k(e.$slots, "expand", {}, void 0, !0)], 10,
|
|
13192
|
+
}, [k(e.$slots, "expand", {}, void 0, !0)], 10, Xp)) : s("", !0)], 2);
|
|
13144
13193
|
}
|
|
13145
|
-
var
|
|
13194
|
+
var Qp = /*#__PURE__*/ H(Kp, [["render", Zp], ["__scopeId", "data-v-3fb03d5e"]]), $p = {
|
|
13146
13195
|
name: "ecs-info-tooltip",
|
|
13147
13196
|
emits: ["click"],
|
|
13148
13197
|
components: { EcsIcon: U },
|
|
@@ -13168,7 +13217,7 @@ var Xp = /*#__PURE__*/ H(Wp, [["render", Yp], ["__scopeId", "data-v-3fb03d5e"]])
|
|
|
13168
13217
|
this.$emit("click", e);
|
|
13169
13218
|
} }
|
|
13170
13219
|
};
|
|
13171
|
-
function
|
|
13220
|
+
function em(e, t, n, r, i, a) {
|
|
13172
13221
|
let o = A("ecs-icon");
|
|
13173
13222
|
return T(), c("i", {
|
|
13174
13223
|
class: b(["ecs-info-tooltip", { "hover-color": a.shouldShowHover }]),
|
|
@@ -13179,7 +13228,7 @@ function Qp(e, t, n, r, i, a) {
|
|
|
13179
13228
|
size: "20"
|
|
13180
13229
|
}, null, 8, ["type"])], 6);
|
|
13181
13230
|
}
|
|
13182
|
-
var
|
|
13231
|
+
var tm = /*#__PURE__*/ H($p, [["render", em], ["__scopeId", "data-v-f66945cb"]]), nm = wo.default.default || wo.default, rm = {
|
|
13183
13232
|
name: "ecs-inline-edit",
|
|
13184
13233
|
emits: [
|
|
13185
13234
|
"save",
|
|
@@ -13191,7 +13240,7 @@ var $p = /*#__PURE__*/ H(Zp, [["render", Qp], ["__scopeId", "data-v-f66945cb"]])
|
|
|
13191
13240
|
EcsButton: X,
|
|
13192
13241
|
EcsClickableArea: _r
|
|
13193
13242
|
},
|
|
13194
|
-
directives: { clickOutSide:
|
|
13243
|
+
directives: { clickOutSide: nm },
|
|
13195
13244
|
props: {
|
|
13196
13245
|
editing: {
|
|
13197
13246
|
type: Boolean,
|
|
@@ -13286,11 +13335,11 @@ var $p = /*#__PURE__*/ H(Zp, [["render", Qp], ["__scopeId", "data-v-f66945cb"]])
|
|
|
13286
13335
|
this.closeTimeout &&= (clearTimeout(this.closeTimeout), null);
|
|
13287
13336
|
}
|
|
13288
13337
|
}
|
|
13289
|
-
},
|
|
13338
|
+
}, im = {
|
|
13290
13339
|
ref: "editContent",
|
|
13291
13340
|
class: "ecs-inline-edit-content"
|
|
13292
|
-
},
|
|
13293
|
-
function
|
|
13341
|
+
}, am = ["aria-label"];
|
|
13342
|
+
function om(e, t, n, i, a, s) {
|
|
13294
13343
|
let u = A("ecs-clickable-area"), p = A("ecs-button"), m = j("click-out-side");
|
|
13295
13344
|
return se((T(), c("div", { class: b(["ecs-inline-edit", [
|
|
13296
13345
|
a.isEditing ? "is-editing" : "is-viewing",
|
|
@@ -13304,7 +13353,7 @@ function im(e, t, n, i, a, s) {
|
|
|
13304
13353
|
key: "edit",
|
|
13305
13354
|
class: "ecs-inline-edit-edit",
|
|
13306
13355
|
onKeydown: t[0] ||= L(R((...e) => s.cancel && s.cancel(...e), ["stop"]), ["esc"])
|
|
13307
|
-
}, [l("div",
|
|
13356
|
+
}, [l("div", im, [k(e.$slots, "edit", {}, void 0, !0)], 512), l("div", {
|
|
13308
13357
|
class: "ecs-inline-edit-actions",
|
|
13309
13358
|
role: "group",
|
|
13310
13359
|
"aria-label": s.actionsLabel
|
|
@@ -13337,7 +13386,7 @@ function im(e, t, n, i, a, s) {
|
|
|
13337
13386
|
}, {
|
|
13338
13387
|
default: I(() => [d(N(e.cancelLabel), 1)]),
|
|
13339
13388
|
_: 1
|
|
13340
|
-
}, 8, ["onClick", "disabled"])], 8,
|
|
13389
|
+
}, 8, ["onClick", "disabled"])], 8, am)], 32)) : (T(), o(u, {
|
|
13341
13390
|
key: "view",
|
|
13342
13391
|
class: "ecs-inline-edit-view",
|
|
13343
13392
|
disabled: n.disabled || !n.triggerOnClick,
|
|
@@ -13355,7 +13404,7 @@ function im(e, t, n, i, a, s) {
|
|
|
13355
13404
|
_: 3
|
|
13356
13405
|
}, 8, ["onAfterEnter"])], 2)), [[m, s.onClickOutside]]);
|
|
13357
13406
|
}
|
|
13358
|
-
var
|
|
13407
|
+
var sm = /*#__PURE__*/ H(rm, [["render", om], ["__scopeId", "data-v-b03fa198"]]), cm = {
|
|
13359
13408
|
name: "ecs-input-group-addon",
|
|
13360
13409
|
components: { EcsIcon: U },
|
|
13361
13410
|
props: {
|
|
@@ -13369,7 +13418,7 @@ var am = /*#__PURE__*/ H(tm, [["render", im], ["__scopeId", "data-v-b03fa198"]])
|
|
|
13369
13418
|
return this.icon && this.icon !== "" ? "has-icon" : this.icon;
|
|
13370
13419
|
} }
|
|
13371
13420
|
};
|
|
13372
|
-
function
|
|
13421
|
+
function lm(e, t, n, r, i, a) {
|
|
13373
13422
|
let l = A("ecs-icon");
|
|
13374
13423
|
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, {
|
|
13375
13424
|
key: 0,
|
|
@@ -13378,11 +13427,11 @@ function sm(e, t, n, r, i, a) {
|
|
|
13378
13427
|
color: "var(--color-gray-8)"
|
|
13379
13428
|
}, null, 8, ["type"])) : s("", !0)], 2);
|
|
13380
13429
|
}
|
|
13381
|
-
var
|
|
13382
|
-
function
|
|
13383
|
-
return T(), c("span",
|
|
13430
|
+
var um = /*#__PURE__*/ H(cm, [["render", lm]]), dm = { name: "ecs-input-connector" }, fm = { class: "ecs-input-group-addon connector" };
|
|
13431
|
+
function pm(e, t, n, r, i, a) {
|
|
13432
|
+
return T(), c("span", fm);
|
|
13384
13433
|
}
|
|
13385
|
-
var
|
|
13434
|
+
var mm = /*#__PURE__*/ H(dm, [["render", pm]]), hm = {
|
|
13386
13435
|
name: "ecs-input-float",
|
|
13387
13436
|
emits: ["input"],
|
|
13388
13437
|
mixins: [Y],
|
|
@@ -13448,7 +13497,7 @@ var fm = /*#__PURE__*/ H(lm, [["render", dm]]), pm = {
|
|
|
13448
13497
|
created() {
|
|
13449
13498
|
this.uniqueId = this.generateUniqueId();
|
|
13450
13499
|
}
|
|
13451
|
-
},
|
|
13500
|
+
}, gm = { class: "form-group has-float-label" }, _m = [
|
|
13452
13501
|
"id",
|
|
13453
13502
|
"type",
|
|
13454
13503
|
"name",
|
|
@@ -13458,9 +13507,9 @@ var fm = /*#__PURE__*/ H(lm, [["render", dm]]), pm = {
|
|
|
13458
13507
|
"placeholder",
|
|
13459
13508
|
"autocomplete",
|
|
13460
13509
|
"value"
|
|
13461
|
-
],
|
|
13462
|
-
function
|
|
13463
|
-
return T(), c("div",
|
|
13510
|
+
], vm = ["for"];
|
|
13511
|
+
function ym(e, t, n, r, i, a) {
|
|
13512
|
+
return T(), c("div", gm, [l("input", v({
|
|
13464
13513
|
class: ["form-control", [a.sizeClass, n.subtle ? "form-control-subtle" : null]],
|
|
13465
13514
|
id: i.uniqueId,
|
|
13466
13515
|
type: n.type,
|
|
@@ -13472,16 +13521,16 @@ function _m(e, t, n, r, i, a) {
|
|
|
13472
13521
|
autocomplete: n.autocomplete,
|
|
13473
13522
|
value: n.value,
|
|
13474
13523
|
onInput: t[0] ||= (...e) => a.changeValue && a.changeValue(...e)
|
|
13475
|
-
}, e.$attrs), null, 16,
|
|
13524
|
+
}, e.$attrs), null, 16, _m), l("label", { for: i.uniqueId }, N(n.label), 9, vm)]);
|
|
13476
13525
|
}
|
|
13477
|
-
var
|
|
13526
|
+
var bm = /*#__PURE__*/ H(hm, [["render", ym], ["__scopeId", "data-v-dfa713b3"]]), xm = { props: { singleInput: {
|
|
13478
13527
|
type: Boolean,
|
|
13479
13528
|
default: !1
|
|
13480
13529
|
} } };
|
|
13481
|
-
function
|
|
13530
|
+
function Sm(e, t, n, r, i, a) {
|
|
13482
13531
|
return T(), c("div", { class: b(["ecs-input-group", n.singleInput ? "ecs-input-group-single" : ""]) }, [k(e.$slots, "default")], 2);
|
|
13483
13532
|
}
|
|
13484
|
-
var
|
|
13533
|
+
var Cm = /*#__PURE__*/ H(xm, [["render", Sm]]), wm = {
|
|
13485
13534
|
name: "ecs-inplace",
|
|
13486
13535
|
emits: ["update:index"],
|
|
13487
13536
|
data() {
|
|
@@ -13537,9 +13586,9 @@ var xm = /*#__PURE__*/ H(ym, [["render", bm]]), Sm = {
|
|
|
13537
13586
|
t && (this.slotHeights[this.currentSlot] = t.scrollHeight, e.style.height = `${this.slotHeights[this.currentSlot]}px`);
|
|
13538
13587
|
}
|
|
13539
13588
|
}
|
|
13540
|
-
},
|
|
13541
|
-
function
|
|
13542
|
-
return T(), c("div",
|
|
13589
|
+
}, Tm = { class: "ecs-inplace" }, Em = ["data-slot"];
|
|
13590
|
+
function Dm(e, t, n, r, a, o) {
|
|
13591
|
+
return T(), c("div", Tm, [f(i, {
|
|
13543
13592
|
name: "slide",
|
|
13544
13593
|
tag: "div",
|
|
13545
13594
|
class: "inplace-container",
|
|
@@ -13549,11 +13598,11 @@ function Tm(e, t, n, r, a, o) {
|
|
|
13549
13598
|
key: a.currentIndex,
|
|
13550
13599
|
class: "inplace-item",
|
|
13551
13600
|
"data-slot": o.currentSlot
|
|
13552
|
-
}, [k(e.$slots, o.currentSlot)], 8,
|
|
13601
|
+
}, [k(e.$slots, o.currentSlot)], 8, Em)) : s("", !0)]),
|
|
13553
13602
|
_: 3
|
|
13554
13603
|
}, 8, ["onEnter"])]);
|
|
13555
13604
|
}
|
|
13556
|
-
var
|
|
13605
|
+
var Om = /*#__PURE__*/ H(wm, [["render", Dm]]), km = {
|
|
13557
13606
|
name: "ecs-jumper-document",
|
|
13558
13607
|
emits: [
|
|
13559
13608
|
"goToPrev",
|
|
@@ -13615,11 +13664,11 @@ var Em = /*#__PURE__*/ H(Sm, [["render", Tm]]), Dm = {
|
|
|
13615
13664
|
methods: { indexPosKeyPressed(e) {
|
|
13616
13665
|
this.$emit("indexPosKeyPressed", e), e.stopPropagation(), e.key == "Enter" && e.preventDefault();
|
|
13617
13666
|
} }
|
|
13618
|
-
},
|
|
13667
|
+
}, Am = {
|
|
13619
13668
|
key: 0,
|
|
13620
13669
|
class: "ecs-viewer-toolbar-jumper-inputs"
|
|
13621
|
-
},
|
|
13622
|
-
function
|
|
13670
|
+
}, jm = ["contenteditable", "disabled"];
|
|
13671
|
+
function Mm(e, t, n, r, i, a) {
|
|
13623
13672
|
let u = A("ecs-button-toolbar"), p = A("ecs-button-toolbar-group");
|
|
13624
13673
|
return T(), o(p, { class: "ecs-viewer-toolbar-jumper" }, {
|
|
13625
13674
|
default: I(() => [
|
|
@@ -13635,7 +13684,7 @@ function Am(e, t, n, r, i, a) {
|
|
|
13635
13684
|
"title",
|
|
13636
13685
|
"aria-label"
|
|
13637
13686
|
]),
|
|
13638
|
-
n.showCount ? (T(), c("div",
|
|
13687
|
+
n.showCount ? (T(), c("div", Am, [
|
|
13639
13688
|
l("div", {
|
|
13640
13689
|
onClick: t[1] ||= (t) => e.$emit("selectCurEntryText"),
|
|
13641
13690
|
onKeydown: t[2] ||= (...e) => a.indexPosKeyPressed && a.indexPosKeyPressed(...e),
|
|
@@ -13644,7 +13693,7 @@ function Am(e, t, n, r, i, a) {
|
|
|
13644
13693
|
class: b(["ecs-viewer-toolbar-jumper-input", { disabled: n.disabled }]),
|
|
13645
13694
|
disabled: n.navigating || n.disabled,
|
|
13646
13695
|
id: "currEntry"
|
|
13647
|
-
}, N(n.currentEntry), 43,
|
|
13696
|
+
}, N(n.currentEntry), 43, jm),
|
|
13648
13697
|
t[5] ||= d(" /\xA0 ", -1),
|
|
13649
13698
|
l("div", null, N(n.totalEntries), 1)
|
|
13650
13699
|
])) : s("", !0),
|
|
@@ -13664,7 +13713,7 @@ function Am(e, t, n, r, i, a) {
|
|
|
13664
13713
|
_: 1
|
|
13665
13714
|
});
|
|
13666
13715
|
}
|
|
13667
|
-
var
|
|
13716
|
+
var Nm = /*#__PURE__*/ H(km, [["render", Mm], ["__scopeId", "data-v-f854b4ab"]]), Pm = {
|
|
13668
13717
|
name: "ecs-jumper-index",
|
|
13669
13718
|
emits: [
|
|
13670
13719
|
"nextSearchResult",
|
|
@@ -13735,14 +13784,14 @@ var jm = /*#__PURE__*/ H(Dm, [["render", Am], ["__scopeId", "data-v-f854b4ab"]])
|
|
|
13735
13784
|
this.$emit("setSearchResultCount", e), e.stopPropagation(), e.key == "Enter" && e.preventDefault();
|
|
13736
13785
|
}
|
|
13737
13786
|
}
|
|
13738
|
-
},
|
|
13787
|
+
}, Fm = {
|
|
13739
13788
|
key: 0,
|
|
13740
13789
|
class: "ecs-jumper-count"
|
|
13741
|
-
},
|
|
13790
|
+
}, Im = { class: "ecs-jumper-count-current" }, Lm = { class: "ecs-jumper-count-total" }, Rm = {
|
|
13742
13791
|
key: 1,
|
|
13743
13792
|
class: "ecs-jumper-count-inputs"
|
|
13744
13793
|
};
|
|
13745
|
-
function
|
|
13794
|
+
function zm(e, t, n, r, i, a) {
|
|
13746
13795
|
let u = A("ecs-button-toolbar"), p = A("ecs-button-toolbar-group");
|
|
13747
13796
|
return T(), o(p, { class: "ecs-jumper" }, {
|
|
13748
13797
|
default: I(() => [
|
|
@@ -13758,8 +13807,8 @@ function Lm(e, t, n, r, i, a) {
|
|
|
13758
13807
|
"title",
|
|
13759
13808
|
"aria-label"
|
|
13760
13809
|
]),
|
|
13761
|
-
n.showCount && !n.inputPagination ? (T(), c("div",
|
|
13762
|
-
n.inputPagination ? (T(), c("div",
|
|
13810
|
+
n.showCount && !n.inputPagination ? (T(), c("div", Fm, [l("span", Im, N(a.currentPosition), 1), l("span", Lm, "/" + N(n.maxCount), 1)])) : s("", !0),
|
|
13811
|
+
n.inputPagination ? (T(), c("div", Rm, [
|
|
13763
13812
|
l("div", {
|
|
13764
13813
|
onClick: t[0] ||= (...e) => a.selectSearchResultCount && a.selectSearchResultCount(...e),
|
|
13765
13814
|
onKeydown: t[1] ||= (...e) => a.setSearchResultCount && a.setSearchResultCount(...e),
|
|
@@ -13785,7 +13834,7 @@ function Lm(e, t, n, r, i, a) {
|
|
|
13785
13834
|
_: 1
|
|
13786
13835
|
});
|
|
13787
13836
|
}
|
|
13788
|
-
var
|
|
13837
|
+
var Bm = /*#__PURE__*/ H(Pm, [["render", zm], ["__scopeId", "data-v-d7f79667"]]), Vm = {
|
|
13789
13838
|
name: "ecs-jumper-page",
|
|
13790
13839
|
emits: [
|
|
13791
13840
|
"selectCurPageText",
|
|
@@ -13836,16 +13885,16 @@ var Rm = /*#__PURE__*/ H(Mm, [["render", Lm], ["__scopeId", "data-v-d7f79667"]])
|
|
|
13836
13885
|
methods: { pageKeyPressed(e, t) {
|
|
13837
13886
|
this.$emit("currentPageKeyPressed", e), e.stopPropagation(), e.key == "Enter" && e.preventDefault();
|
|
13838
13887
|
} }
|
|
13839
|
-
},
|
|
13888
|
+
}, Hm = { class: "ecs-viewer-pages" }, Um = { class: "ecs-viewer-pages-inner" }, Wm = { class: "ecs-viewer-pages-pagination" }, Gm = ["contenteditable"], Km = { class: "total-pages" }, qm = {
|
|
13840
13889
|
key: 0,
|
|
13841
13890
|
class: "page-missing-gaps",
|
|
13842
13891
|
title: "This transcript has missing page gaps"
|
|
13843
|
-
},
|
|
13892
|
+
}, Jm = { class: "ecs-viewer-pages-pagination" }, Ym = { class: "total-pages-relative" }, Xm = { class: "total-pages-relative" }, Zm = {
|
|
13844
13893
|
key: 1,
|
|
13845
13894
|
class: "ecs-viewer-pages-pagination"
|
|
13846
|
-
},
|
|
13847
|
-
function
|
|
13848
|
-
return T(), c("div",
|
|
13895
|
+
}, Qm = ["innerHTML"], $m = { class: "total-pages" };
|
|
13896
|
+
function eh(t, n, r, i, a, o) {
|
|
13897
|
+
return T(), c("div", Hm, [l("div", Um, [o.showAltPageNumbers ? (T(), c(e, { key: 0 }, [l("div", Wm, [
|
|
13849
13898
|
l("div", {
|
|
13850
13899
|
onClick: n[0] ||= (e) => t.$emit("selectCurPageText"),
|
|
13851
13900
|
onKeydown: n[1] ||= (e) => o.pageKeyPressed(e, "relative"),
|
|
@@ -13853,10 +13902,10 @@ function Qm(t, n, r, i, a, o) {
|
|
|
13853
13902
|
contenteditable: !r.disabled,
|
|
13854
13903
|
class: b(["current-page", { disabled: r.disabled }]),
|
|
13855
13904
|
id: "currPage"
|
|
13856
|
-
}, N(r.currentPage), 43,
|
|
13857
|
-
l("div",
|
|
13858
|
-
r.isTranscriptMissingPages ? (T(), c("span",
|
|
13859
|
-
]), l("div",
|
|
13905
|
+
}, N(r.currentPage), 43, Gm),
|
|
13906
|
+
l("div", Km, "of " + N(r.lastPage), 1),
|
|
13907
|
+
r.isTranscriptMissingPages ? (T(), c("span", qm, "*")) : s("", !0)
|
|
13908
|
+
]), l("div", Jm, [l("div", Ym, N(o.altPageNumber) + "\xA0", 1), l("div", Xm, "of " + N(r.pageCount), 1)])], 64)) : (T(), c("div", Zm, [l("div", {
|
|
13860
13909
|
innerHTML: r.currentPage,
|
|
13861
13910
|
onClick: n[3] ||= (e) => t.$emit("selectCurPageText"),
|
|
13862
13911
|
onKeydown: n[4] ||= (e) => o.pageKeyPressed(e),
|
|
@@ -13864,9 +13913,9 @@ function Qm(t, n, r, i, a, o) {
|
|
|
13864
13913
|
contenteditable: !0,
|
|
13865
13914
|
class: "current-page",
|
|
13866
13915
|
id: "currPage"
|
|
13867
|
-
}, null, 40,
|
|
13916
|
+
}, null, 40, Qm), l("div", $m, "of " + N(r.pageCount), 1)]))])]);
|
|
13868
13917
|
}
|
|
13869
|
-
var
|
|
13918
|
+
var th = /*#__PURE__*/ H(Vm, [["render", eh], ["__scopeId", "data-v-5c8f8c17"]]), nh = {
|
|
13870
13919
|
name: "ecs-pane",
|
|
13871
13920
|
inject: [
|
|
13872
13921
|
"requestUpdate",
|
|
@@ -13930,14 +13979,14 @@ var $m = /*#__PURE__*/ H(zm, [["render", Qm], ["__scopeId", "data-v-5c8f8c17"]])
|
|
|
13930
13979
|
}
|
|
13931
13980
|
}
|
|
13932
13981
|
};
|
|
13933
|
-
function
|
|
13982
|
+
function rh(e, t, n, r, i, a) {
|
|
13934
13983
|
return T(), c("div", {
|
|
13935
13984
|
class: "ecs-pane",
|
|
13936
13985
|
onClick: t[0] ||= (t) => a.onPaneClick(t, e._.uid),
|
|
13937
13986
|
style: S(e.style)
|
|
13938
13987
|
}, [k(e.$slots, "default")], 4);
|
|
13939
13988
|
}
|
|
13940
|
-
var
|
|
13989
|
+
var ih = /*#__PURE__*/ H(nh, [["render", rh]]), ah = {
|
|
13941
13990
|
name: "ecs-splitpanes",
|
|
13942
13991
|
emits: [
|
|
13943
13992
|
"ready",
|
|
@@ -14248,12 +14297,12 @@ var nh = /*#__PURE__*/ H(eh, [["render", th]]), rh = {
|
|
|
14248
14297
|
]
|
|
14249
14298
|
}, this.$slots.default());
|
|
14250
14299
|
}
|
|
14251
|
-
},
|
|
14300
|
+
}, oh = {
|
|
14252
14301
|
name: "ecs-layout-index",
|
|
14253
14302
|
emits: ["resized"],
|
|
14254
14303
|
components: {
|
|
14255
|
-
EcsPane:
|
|
14256
|
-
EcsSplitpanes:
|
|
14304
|
+
EcsPane: ih,
|
|
14305
|
+
EcsSplitpanes: ah
|
|
14257
14306
|
},
|
|
14258
14307
|
props: {
|
|
14259
14308
|
overlaySidebar: {
|
|
@@ -14323,14 +14372,14 @@ var nh = /*#__PURE__*/ H(eh, [["render", th]]), rh = {
|
|
|
14323
14372
|
this.currentPanes = e, this.$emit("resized", e);
|
|
14324
14373
|
}
|
|
14325
14374
|
}
|
|
14326
|
-
},
|
|
14375
|
+
}, sh = ["data-pane"], ch = { class: "ecs-index-layout-contents" }, lh = {
|
|
14327
14376
|
key: 0,
|
|
14328
14377
|
class: "ecs-index-layout-table scrollbar"
|
|
14329
|
-
},
|
|
14378
|
+
}, uh = {
|
|
14330
14379
|
key: 2,
|
|
14331
14380
|
class: "ecs-index-layout-pagination"
|
|
14332
14381
|
};
|
|
14333
|
-
function
|
|
14382
|
+
function dh(e, t, n, r, i, a) {
|
|
14334
14383
|
let u = A("ecs-pane"), d = A("ecs-splitpanes");
|
|
14335
14384
|
return T(), c("div", {
|
|
14336
14385
|
class: b(["ecs-index-layout", [n.backgroundWhite ? "background-white" : ""]]),
|
|
@@ -14338,7 +14387,7 @@ function lh(e, t, n, r, i, a) {
|
|
|
14338
14387
|
}, [
|
|
14339
14388
|
k(e.$slots, "toolbar", {}, void 0, !0),
|
|
14340
14389
|
k(e.$slots, "action-toolbar", {}, void 0, !0),
|
|
14341
|
-
l("div", { class: b(["ecs-index-layout-wrap", [n.indent ? "indent" : ""]]) }, [l("main",
|
|
14390
|
+
l("div", { class: b(["ecs-index-layout-wrap", [n.indent ? "indent" : ""]]) }, [l("main", ch, [n.splitPane ? (T(), o(d, {
|
|
14342
14391
|
key: 1,
|
|
14343
14392
|
onResized: a.onPanesResized,
|
|
14344
14393
|
onPaneAdd: a.onPaneAdd,
|
|
@@ -14395,38 +14444,38 @@ function lh(e, t, n, r, i, a) {
|
|
|
14395
14444
|
"onResized",
|
|
14396
14445
|
"onPaneAdd",
|
|
14397
14446
|
"onPaneRemove"
|
|
14398
|
-
])) : (T(), c("div",
|
|
14447
|
+
])) : (T(), c("div", lh, [k(e.$slots, "default", {}, void 0, !0)])), e.$slots.pagination ? (T(), c("div", uh, [k(e.$slots, "pagination", {}, void 0, !0)])) : s("", !0)]), e.$slots.sidebar ? (T(), c("div", {
|
|
14399
14448
|
key: 0,
|
|
14400
14449
|
class: b(["ecs-index-layout-sidebar", [n.overlaySidebar ? "overlay" : ""]]),
|
|
14401
14450
|
style: S(a.sidebarPosition)
|
|
14402
14451
|
}, [k(e.$slots, "sidebar", {}, void 0, !0)], 6)) : s("", !0)], 2)
|
|
14403
|
-
], 10,
|
|
14452
|
+
], 10, sh);
|
|
14404
14453
|
}
|
|
14405
|
-
var
|
|
14454
|
+
var fh = /*#__PURE__*/ H(oh, [["render", dh], ["__scopeId", "data-v-4e83743f"]]), ph = {
|
|
14406
14455
|
name: "ecs-layout-directory",
|
|
14407
14456
|
props: { indent: {
|
|
14408
14457
|
type: Boolean,
|
|
14409
14458
|
default: !1
|
|
14410
14459
|
} }
|
|
14411
|
-
},
|
|
14460
|
+
}, mh = { class: "ecs-directory-layout" }, hh = { class: "ecs-directory-layout-wrap" }, gh = { class: "ecs-directory-layout-contents" }, _h = {
|
|
14412
14461
|
key: 0,
|
|
14413
14462
|
class: "ecs-directory-layout-directory"
|
|
14414
|
-
},
|
|
14463
|
+
}, vh = {
|
|
14415
14464
|
key: 1,
|
|
14416
14465
|
class: "ecs-directory-layout-sidebar"
|
|
14417
14466
|
};
|
|
14418
|
-
function
|
|
14419
|
-
return T(), c("div",
|
|
14467
|
+
function yh(e, t, n, r, i, a) {
|
|
14468
|
+
return T(), c("div", mh, [
|
|
14420
14469
|
k(e.$slots, "toolbar", {}, void 0, !0),
|
|
14421
14470
|
k(e.$slots, "action-toolbar", {}, void 0, !0),
|
|
14422
|
-
l("div",
|
|
14423
|
-
e.$slots.directory ? (T(), c("aside",
|
|
14471
|
+
l("div", hh, [l("div", gh, [
|
|
14472
|
+
e.$slots.directory ? (T(), c("aside", _h, [k(e.$slots, "directory", {}, void 0, !0)])) : s("", !0),
|
|
14424
14473
|
l("main", { class: b(["ecs-directory-layout-entry scrollbar", [e.$slots.sidebar ? "has-sidebar" : ""]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2),
|
|
14425
|
-
e.$slots.sidebar ? (T(), c("div",
|
|
14474
|
+
e.$slots.sidebar ? (T(), c("div", vh, [k(e.$slots, "sidebar", {}, void 0, !0)])) : s("", !0)
|
|
14426
14475
|
])])
|
|
14427
14476
|
]);
|
|
14428
14477
|
}
|
|
14429
|
-
var
|
|
14478
|
+
var bh = /*#__PURE__*/ H(ph, [["render", yh], ["__scopeId", "data-v-f5afc4e6"]]), xh = {
|
|
14430
14479
|
name: "ecs-layout-data-table",
|
|
14431
14480
|
components: {
|
|
14432
14481
|
EcsActionToolbar: ke,
|
|
@@ -14477,24 +14526,24 @@ var vh = /*#__PURE__*/ H(dh, [["render", _h], ["__scopeId", "data-v-f5afc4e6"]])
|
|
|
14477
14526
|
created() {
|
|
14478
14527
|
this.showStatistics = localStorage.getItem("showStatistics") !== "false", this.statisticsId = this.generateUniqueId();
|
|
14479
14528
|
}
|
|
14480
|
-
},
|
|
14529
|
+
}, Sh = () => {
|
|
14481
14530
|
ne((e) => ({ v25931314: e.statisticsHeight }));
|
|
14482
|
-
},
|
|
14483
|
-
|
|
14484
|
-
var
|
|
14531
|
+
}, Ch = xh.setup;
|
|
14532
|
+
xh.setup = Ch ? (e, t) => (Sh(), Ch(e, t)) : Sh;
|
|
14533
|
+
var wh = { class: "ecs-data-layout-content" }, Th = {
|
|
14485
14534
|
key: 0,
|
|
14486
14535
|
role: "toolbar",
|
|
14487
14536
|
"aria-label": "Main",
|
|
14488
14537
|
class: "ecs-data-layout-toolbar"
|
|
14489
|
-
},
|
|
14538
|
+
}, Eh = ["id"], Dh = { class: "ecs-data-layout-data" }, Oh = { class: "ecs-data-layout-sidebar-inner" }, kh = {
|
|
14490
14539
|
key: 0,
|
|
14491
14540
|
class: "ecs-data-layout-sidebar-header"
|
|
14492
|
-
},
|
|
14493
|
-
function
|
|
14541
|
+
}, Ah = { class: "ecs-data-layout-sidebar-content scrollbar scrollbar-sml" }, jh = { class: "ecs-data-layout-overlay-sidebar-panel" };
|
|
14542
|
+
function Mh(e, t, n, i, a, u) {
|
|
14494
14543
|
let d = A("ecs-button"), p = A("ecs-action-toolbar");
|
|
14495
14544
|
return T(), c("div", { class: b(["ecs-data-layout", n.leftBorder ? "left-border" : ""]) }, [
|
|
14496
|
-
l("main",
|
|
14497
|
-
e.$slots.toolbar ? (T(), c("div",
|
|
14545
|
+
l("main", wh, [
|
|
14546
|
+
e.$slots.toolbar ? (T(), c("div", Th, [k(e.$slots, "toolbar", {}, void 0, !0), e.$slots.statistics ? (T(), o(d, {
|
|
14498
14547
|
key: 0,
|
|
14499
14548
|
onClick: u.toggleStatistics,
|
|
14500
14549
|
type: a.showStatistics ? "primary" : "secondary",
|
|
@@ -14520,7 +14569,7 @@ function Ah(e, t, n, i, a, u) {
|
|
|
14520
14569
|
class: "ecs-data-layout-statistics scrollbar scrollbar-sml vertical",
|
|
14521
14570
|
id: a.statisticsId,
|
|
14522
14571
|
style: S({ height: `${n.statisticsHeight}px` })
|
|
14523
|
-
}, [k(e.$slots, "statistics", {}, void 0, !0)], 12,
|
|
14572
|
+
}, [k(e.$slots, "statistics", {}, void 0, !0)], 12, Eh)) : s("", !0)]),
|
|
14524
14573
|
_: 3
|
|
14525
14574
|
}, 8, ["name"]),
|
|
14526
14575
|
e.$slots.actionbar ? se((T(), o(p, {
|
|
@@ -14530,20 +14579,20 @@ function Ah(e, t, n, i, a, u) {
|
|
|
14530
14579
|
default: I(() => [k(e.$slots, "actionbar", {}, void 0, !0)]),
|
|
14531
14580
|
_: 3
|
|
14532
14581
|
}, 8, ["padding"])), [[ae, n.showActionbar]]) : s("", !0),
|
|
14533
|
-
l("div",
|
|
14582
|
+
l("div", Dh, [k(e.$slots, "default", {}, void 0, !0)])
|
|
14534
14583
|
]),
|
|
14535
14584
|
e.$slots.sidebarcontent || e.$slots.sidebarheader ? (T(), c("aside", {
|
|
14536
14585
|
key: 0,
|
|
14537
14586
|
class: b(["ecs-data-layout-sidebar", n.sidebarExpanded ? "expanded" : ""])
|
|
14538
|
-
}, [l("div",
|
|
14587
|
+
}, [l("div", Oh, [e.$slots.sidebarheader ? (T(), c("div", kh, [k(e.$slots, "sidebarheader", {}, void 0, !0)])) : s("", !0), l("div", Ah, [k(e.$slots, "sidebarcontent", {}, void 0, !0)])])], 2)) : s("", !0),
|
|
14539
14588
|
e.$slots.overlaysidebar ? (T(), c("aside", {
|
|
14540
14589
|
key: 1,
|
|
14541
14590
|
class: b(["ecs-data-layout-overlay-sidebar", n.overlaySidebarExpanded ? "expanded" : ""]),
|
|
14542
14591
|
"data-test": "overlay-sidebar"
|
|
14543
|
-
}, [t[0] ||= l("div", { class: "ecs-data-layout-overlay-sidebar-backdrop" }, null, -1), l("div",
|
|
14592
|
+
}, [t[0] ||= l("div", { class: "ecs-data-layout-overlay-sidebar-backdrop" }, null, -1), l("div", jh, [k(e.$slots, "overlaysidebar", {}, void 0, !0)])], 2)) : s("", !0)
|
|
14544
14593
|
], 2);
|
|
14545
14594
|
}
|
|
14546
|
-
var
|
|
14595
|
+
var Nh = /*#__PURE__*/ H(xh, [["render", Mh], ["__scopeId", "data-v-f2f03b2c"]]), Ph = {
|
|
14547
14596
|
name: "ecs-legend-item",
|
|
14548
14597
|
emits: ["click"],
|
|
14549
14598
|
components: {
|
|
@@ -14585,17 +14634,17 @@ var jh = /*#__PURE__*/ H(yh, [["render", Ah], ["__scopeId", "data-v-f2f03b2c"]])
|
|
|
14585
14634
|
return `ecs-legend-item-${this.size}`;
|
|
14586
14635
|
}
|
|
14587
14636
|
}
|
|
14588
|
-
},
|
|
14637
|
+
}, Fh = { class: "ecs-legend-item-label-container" }, Ih = { class: "ecs-legend-item-label" }, Lh = {
|
|
14589
14638
|
key: 0,
|
|
14590
14639
|
class: "ecs-legend-item-custom-label"
|
|
14591
|
-
},
|
|
14640
|
+
}, Rh = {
|
|
14592
14641
|
key: 0,
|
|
14593
14642
|
class: "ecs-legend-item-count"
|
|
14594
|
-
},
|
|
14643
|
+
}, zh = {
|
|
14595
14644
|
key: 1,
|
|
14596
14645
|
class: "ecs-legend-item-percentage"
|
|
14597
14646
|
};
|
|
14598
|
-
function
|
|
14647
|
+
function Bh(e, t, n, r, i, a) {
|
|
14599
14648
|
let u = A("ecs-focus-ring"), d = A("ecs-flex-row");
|
|
14600
14649
|
return T(), o(d, {
|
|
14601
14650
|
onClick: t[0] ||= (t) => e.$emit("click", t),
|
|
@@ -14613,9 +14662,9 @@ function Rh(e, t, n, r, i, a) {
|
|
|
14613
14662
|
class: b(["ecs-legend-item-color", n.type]),
|
|
14614
14663
|
style: S({ backgroundColor: n.color })
|
|
14615
14664
|
}, null, 6),
|
|
14616
|
-
l("div",
|
|
14617
|
-
n.count ? (T(), c("div",
|
|
14618
|
-
n.percentage ? (T(), c("div",
|
|
14665
|
+
l("div", Fh, [l("div", Ih, N(n.label), 1), e.$slots.label ? (T(), c("div", Lh, [k(e.$slots, "label", {}, void 0, !0)])) : s("", !0)]),
|
|
14666
|
+
n.count ? (T(), c("div", Rh, N(n.count), 1)) : s("", !0),
|
|
14667
|
+
n.percentage ? (T(), c("div", zh, N(a.percentageLabel), 1)) : s("", !0),
|
|
14619
14668
|
n.highlight || n.hover ? (T(), c("div", {
|
|
14620
14669
|
key: 2,
|
|
14621
14670
|
class: "ecs-legend-item-highlight",
|
|
@@ -14630,7 +14679,7 @@ function Rh(e, t, n, r, i, a) {
|
|
|
14630
14679
|
"class"
|
|
14631
14680
|
]);
|
|
14632
14681
|
}
|
|
14633
|
-
var
|
|
14682
|
+
var Vh = /*#__PURE__*/ H(Ph, [["render", Bh], ["__scopeId", "data-v-31e7ba6e"]]), Hh = {
|
|
14634
14683
|
name: "ecs-log-message",
|
|
14635
14684
|
components: {
|
|
14636
14685
|
EcsFlexRow: K,
|
|
@@ -14683,14 +14732,14 @@ var zh = /*#__PURE__*/ H(Mh, [["render", Rh], ["__scopeId", "data-v-31e7ba6e"]])
|
|
|
14683
14732
|
return ["warning", "error"].includes(this.type) ? "alert" : null;
|
|
14684
14733
|
}
|
|
14685
14734
|
}
|
|
14686
|
-
},
|
|
14735
|
+
}, Uh = {
|
|
14687
14736
|
key: 0,
|
|
14688
14737
|
class: "ecs-log-message-indicator"
|
|
14689
|
-
},
|
|
14738
|
+
}, Wh = { class: "ecs-log-message-content" }, Gh = {
|
|
14690
14739
|
key: 3,
|
|
14691
14740
|
class: "ecs-log-message-meta"
|
|
14692
|
-
},
|
|
14693
|
-
function
|
|
14741
|
+
}, Kh = { class: "ecs-log-message-meta-text" };
|
|
14742
|
+
function qh(e, t, n, r, i, a) {
|
|
14694
14743
|
let u = A("ecs-skeleton-loader"), d = A("ecs-sticker"), f = A("ecs-flex-row");
|
|
14695
14744
|
return T(), o(f, {
|
|
14696
14745
|
class: b(["ecs-log-message", [n.type, n.variant]]),
|
|
@@ -14701,7 +14750,7 @@ function Gh(e, t, n, r, i, a) {
|
|
|
14701
14750
|
style: S(a.padding)
|
|
14702
14751
|
}, {
|
|
14703
14752
|
default: I(() => [
|
|
14704
|
-
n.variant === "indicator" ? (T(), c("div",
|
|
14753
|
+
n.variant === "indicator" ? (T(), c("div", Uh)) : s("", !0),
|
|
14705
14754
|
n.loading && n.type != "blank" ? (T(), o(u, {
|
|
14706
14755
|
key: 1,
|
|
14707
14756
|
type: "rect",
|
|
@@ -14711,7 +14760,7 @@ function Gh(e, t, n, r, i, a) {
|
|
|
14711
14760
|
key: 2,
|
|
14712
14761
|
type: n.type
|
|
14713
14762
|
}, null, 8, ["type"])),
|
|
14714
|
-
l("div",
|
|
14763
|
+
l("div", Wh, [n.loading ? (T(), o(u, {
|
|
14715
14764
|
key: 0,
|
|
14716
14765
|
type: "single",
|
|
14717
14766
|
width: 40,
|
|
@@ -14720,11 +14769,11 @@ function Gh(e, t, n, r, i, a) {
|
|
|
14720
14769
|
key: 2,
|
|
14721
14770
|
class: b(["ecs-log-message-collapse", { expanded: i.expanded }])
|
|
14722
14771
|
}, [k(e.$slots, "collapse", {}, void 0, !0)], 2)) : s("", !0)]),
|
|
14723
|
-
(n.meta || e.$slots.collapse) && !n.loading ? (T(), c("div",
|
|
14772
|
+
(n.meta || e.$slots.collapse) && !n.loading ? (T(), c("div", Gh, [e.$slots.collapse ? (T(), c("button", {
|
|
14724
14773
|
key: 0,
|
|
14725
14774
|
onClick: t[0] ||= (e) => i.expanded = !i.expanded,
|
|
14726
14775
|
class: "ecs-log-message-collapse-button"
|
|
14727
|
-
}, N(n.collapseButtonText), 1)) : s("", !0), l("div",
|
|
14776
|
+
}, N(n.collapseButtonText), 1)) : s("", !0), l("div", Kh, N(n.meta), 1)])) : s("", !0)
|
|
14728
14777
|
]),
|
|
14729
14778
|
_: 3
|
|
14730
14779
|
}, 8, [
|
|
@@ -14734,7 +14783,7 @@ function Gh(e, t, n, r, i, a) {
|
|
|
14734
14783
|
"style"
|
|
14735
14784
|
]);
|
|
14736
14785
|
}
|
|
14737
|
-
var
|
|
14786
|
+
var Jh = /*#__PURE__*/ H(Hh, [["render", qh], ["__scopeId", "data-v-e0610fe5"]]), Yh = {
|
|
14738
14787
|
name: "ecs-map",
|
|
14739
14788
|
components: { EcsFocusRing: W },
|
|
14740
14789
|
props: {
|
|
@@ -14759,8 +14808,8 @@ var Kh = /*#__PURE__*/ H(Bh, [["render", Gh], ["__scopeId", "data-v-e0610fe5"]])
|
|
|
14759
14808
|
return `https://maps.googleapis.com/maps/api/staticmap?maptype=terrain&sensor=false&format=png&zoom=13&key=${this.apiKey}&visual_refresh=true&scale=2&size=320x220&style=feature:poi|visibility:off¢er=${this.address}`;
|
|
14760
14809
|
}
|
|
14761
14810
|
}
|
|
14762
|
-
},
|
|
14763
|
-
function
|
|
14811
|
+
}, Xh = ["href"], Zh = ["src", "alt"];
|
|
14812
|
+
function Qh(e, t, n, r, i, a) {
|
|
14764
14813
|
let o = A("ecs-focus-ring");
|
|
14765
14814
|
return T(), c("div", { class: b(["ecs-map", [n.marker ? "ecs-map-marker" : ""]]) }, [l("a", {
|
|
14766
14815
|
target: "_blank",
|
|
@@ -14769,12 +14818,12 @@ function Xh(e, t, n, r, i, a) {
|
|
|
14769
14818
|
}, [l("img", {
|
|
14770
14819
|
src: a.mapImageUrl,
|
|
14771
14820
|
alt: "Map of " + n.address
|
|
14772
|
-
}, null, 8,
|
|
14821
|
+
}, null, 8, Zh), f(o, {
|
|
14773
14822
|
inset: 0,
|
|
14774
14823
|
radius: 4
|
|
14775
|
-
})], 8,
|
|
14824
|
+
})], 8, Xh)], 2);
|
|
14776
14825
|
}
|
|
14777
|
-
var
|
|
14826
|
+
var $h = /*#__PURE__*/ H(Yh, [["render", Qh], ["__scopeId", "data-v-81e2d377"]]), eg = {
|
|
14778
14827
|
name: "ecs-modal",
|
|
14779
14828
|
props: {
|
|
14780
14829
|
show: {
|
|
@@ -14819,14 +14868,14 @@ var Zh = /*#__PURE__*/ H(qh, [["render", Xh], ["__scopeId", "data-v-81e2d377"]])
|
|
|
14819
14868
|
mounted() {
|
|
14820
14869
|
this.show && (this.isShown = !0);
|
|
14821
14870
|
}
|
|
14822
|
-
},
|
|
14871
|
+
}, tg = {
|
|
14823
14872
|
key: 0,
|
|
14824
14873
|
class: "ecs-modal-header-wrap"
|
|
14825
|
-
},
|
|
14874
|
+
}, ng = { class: "ecs-modal-content-wrap scrollbar" }, rg = {
|
|
14826
14875
|
key: 1,
|
|
14827
14876
|
class: "ecs-modal-footer-wrap"
|
|
14828
14877
|
};
|
|
14829
|
-
function
|
|
14878
|
+
function ig(e, t, n, i, a, u) {
|
|
14830
14879
|
return T(), o(r, { name: "dialog-fade" }, {
|
|
14831
14880
|
default: I(() => [a.isShown ? (T(), c("div", {
|
|
14832
14881
|
key: 0,
|
|
@@ -14835,14 +14884,14 @@ function ng(e, t, n, i, a, u) {
|
|
|
14835
14884
|
class: "ecs-modal-dialog ecs-modal-sheet",
|
|
14836
14885
|
style: S([u.fixedHeightStyle, u.widthStyle])
|
|
14837
14886
|
}, [
|
|
14838
|
-
e.$slots.header ? (T(), c("div",
|
|
14839
|
-
l("div",
|
|
14840
|
-
e.$slots.footer ? (T(), c("div",
|
|
14887
|
+
e.$slots.header ? (T(), c("div", tg, [k(e.$slots, "header", {}, void 0, !0)])) : s("", !0),
|
|
14888
|
+
l("div", ng, [k(e.$slots, "default", {}, void 0, !0)]),
|
|
14889
|
+
e.$slots.footer ? (T(), c("div", rg, [k(e.$slots, "footer", {}, void 0, !0)])) : s("", !0)
|
|
14841
14890
|
], 4), t[0] ||= l("div", { class: "ecs-modal-backdrop ecs-modal-sheet-backdrop" }, null, -1)], 2)) : s("", !0)]),
|
|
14842
14891
|
_: 3
|
|
14843
14892
|
});
|
|
14844
14893
|
}
|
|
14845
|
-
var
|
|
14894
|
+
var ag = /*#__PURE__*/ H(eg, [["render", ig], ["__scopeId", "data-v-317f069f"]]), og = {
|
|
14846
14895
|
name: "ecs-modal-header",
|
|
14847
14896
|
emits: ["close"],
|
|
14848
14897
|
components: {
|
|
@@ -14876,17 +14925,17 @@ var rg = /*#__PURE__*/ H(Qh, [["render", ng], ["__scopeId", "data-v-317f069f"]])
|
|
|
14876
14925
|
e && (e.focus(), e.click());
|
|
14877
14926
|
}
|
|
14878
14927
|
} }
|
|
14879
|
-
},
|
|
14928
|
+
}, sg = {
|
|
14880
14929
|
class: "ecs-modal-header-main",
|
|
14881
14930
|
ref: "firstFocusable",
|
|
14882
14931
|
tabindex: "0"
|
|
14883
|
-
},
|
|
14932
|
+
}, cg = { class: "ecs-modal-header-main-inner" }, lg = {
|
|
14884
14933
|
key: 0,
|
|
14885
14934
|
class: "ecs-modal-header-extended"
|
|
14886
14935
|
};
|
|
14887
|
-
function
|
|
14936
|
+
function ug(e, t, n, r, i, a) {
|
|
14888
14937
|
let o = A("ecs-button");
|
|
14889
|
-
return T(), c("div", { class: b(["ecs-modal-header", a.typeClass]) }, [l("div",
|
|
14938
|
+
return T(), c("div", { class: b(["ecs-modal-header", a.typeClass]) }, [l("div", sg, [l("div", cg, [k(e.$slots, "default", {}, void 0, !0)]), f(o, {
|
|
14890
14939
|
onClick: t[0] ||= (t) => e.$emit("close"),
|
|
14891
14940
|
title: "Close",
|
|
14892
14941
|
"aria-label": "Close",
|
|
@@ -14897,16 +14946,16 @@ function cg(e, t, n, r, i, a) {
|
|
|
14897
14946
|
"focus-inset": -1,
|
|
14898
14947
|
"data-close-button": "",
|
|
14899
14948
|
"data-test": "close-modal-button"
|
|
14900
|
-
})], 512), e.$slots.extension ? (T(), c("div",
|
|
14949
|
+
})], 512), e.$slots.extension ? (T(), c("div", lg, [k(e.$slots, "extension", {}, void 0, !0)])) : s("", !0)], 2);
|
|
14901
14950
|
}
|
|
14902
|
-
var
|
|
14951
|
+
var dg = /*#__PURE__*/ H(og, [["render", ug], ["__scopeId", "data-v-7d67bede"]]), fg = { name: "ecs-modal-footer" }, pg = { class: "ecs-modal-footer" }, mg = {
|
|
14903
14952
|
key: 0,
|
|
14904
14953
|
class: "ecs-modal-footer-secondary"
|
|
14905
|
-
},
|
|
14906
|
-
function
|
|
14907
|
-
return T(), c("div",
|
|
14954
|
+
}, hg = { class: "ecs-modal-footer-main" };
|
|
14955
|
+
function gg(e, t, n, r, i, a) {
|
|
14956
|
+
return T(), c("div", pg, [e.$slots.secondary ? (T(), c("div", mg, [k(e.$slots, "secondary", {}, void 0, !0)])) : s("", !0), l("div", hg, [k(e.$slots, "default", {}, void 0, !0)])]);
|
|
14908
14957
|
}
|
|
14909
|
-
var
|
|
14958
|
+
var _g = /*#__PURE__*/ H(fg, [["render", gg], ["__scopeId", "data-v-05db6a92"]]), vg = {
|
|
14910
14959
|
name: "ecs-multiselect-search-token",
|
|
14911
14960
|
emits: [
|
|
14912
14961
|
"remove",
|
|
@@ -14949,29 +14998,29 @@ var hg = /*#__PURE__*/ H(ug, [["render", mg], ["__scopeId", "data-v-05db6a92"]])
|
|
|
14949
14998
|
this.$emit("editToken", e);
|
|
14950
14999
|
}
|
|
14951
15000
|
}
|
|
14952
|
-
},
|
|
15001
|
+
}, yg = {
|
|
14953
15002
|
key: 0,
|
|
14954
15003
|
class: "symbol"
|
|
14955
|
-
},
|
|
15004
|
+
}, bg = {
|
|
14956
15005
|
key: 0,
|
|
14957
15006
|
class: "operator"
|
|
14958
|
-
},
|
|
15007
|
+
}, xg = { class: "query" }, Sg = {
|
|
14959
15008
|
key: 0,
|
|
14960
15009
|
class: "descriptor"
|
|
14961
15010
|
};
|
|
14962
|
-
function
|
|
15011
|
+
function Cg(e, t, n, r, i, a) {
|
|
14963
15012
|
let o = A("ecs-icon"), u = A("ecs-focus-ring");
|
|
14964
15013
|
return T(), c("div", {
|
|
14965
15014
|
class: b(["ecs-multiselect-search-token", [a.typeClass, { editable: n.editable }]]),
|
|
14966
15015
|
tabindex: "0",
|
|
14967
15016
|
onKeydown: t[5] ||= L((t) => e.$emit("remove", t), ["delete"])
|
|
14968
|
-
}, [n.icon || n.operator || n.operatorSwitch ? (T(), c("div",
|
|
15017
|
+
}, [n.icon || n.operator || n.operatorSwitch ? (T(), c("div", yg, [
|
|
14969
15018
|
f(o, {
|
|
14970
15019
|
type: n.icon,
|
|
14971
15020
|
size: "20",
|
|
14972
15021
|
color: "var(--color-white)"
|
|
14973
15022
|
}, null, 8, ["type"]),
|
|
14974
|
-
n.operator && !n.operatorSwitch ? (T(), c("div",
|
|
15023
|
+
n.operator && !n.operatorSwitch ? (T(), c("div", bg, N(n.operator), 1)) : s("", !0),
|
|
14975
15024
|
n.operatorSwitch ? (T(), c("button", {
|
|
14976
15025
|
key: 1,
|
|
14977
15026
|
onClick: t[0] ||= (...e) => a.handleOperatorToggle && a.handleOperatorToggle(...e),
|
|
@@ -14993,8 +15042,8 @@ function xg(e, t, n, r, i, a) {
|
|
|
14993
15042
|
}, null, 8, ["class"]),
|
|
14994
15043
|
f(u, { radius: 12 })
|
|
14995
15044
|
], 2)) : s("", !0)
|
|
14996
|
-
])) : s("", !0), l("div",
|
|
14997
|
-
n.descriptor ? (T(), c("div",
|
|
15045
|
+
])) : s("", !0), l("div", xg, [
|
|
15046
|
+
n.descriptor ? (T(), c("div", Sg, N(n.descriptor), 1)) : s("", !0),
|
|
14998
15047
|
n.editable ? (T(), c("button", {
|
|
14999
15048
|
key: 1,
|
|
15000
15049
|
onClick: t[1] ||= (...e) => a.handleEditToken && a.handleEditToken(...e),
|
|
@@ -15024,7 +15073,7 @@ function xg(e, t, n, r, i, a) {
|
|
|
15024
15073
|
}), f(u, { radius: 12 })], 32)
|
|
15025
15074
|
])], 34);
|
|
15026
15075
|
}
|
|
15027
|
-
var
|
|
15076
|
+
var wg = /*#__PURE__*/ H(vg, [["render", Cg], ["__scopeId", "data-v-41602e43"]]), Tg = {
|
|
15028
15077
|
name: "ecs-multiselect-token",
|
|
15029
15078
|
emits: ["remove"],
|
|
15030
15079
|
components: {
|
|
@@ -15032,7 +15081,7 @@ var Sg = /*#__PURE__*/ H(gg, [["render", xg], ["__scopeId", "data-v-41602e43"]])
|
|
|
15032
15081
|
EcsFocusRing: W
|
|
15033
15082
|
}
|
|
15034
15083
|
};
|
|
15035
|
-
function
|
|
15084
|
+
function Eg(e, t, n, r, i, a) {
|
|
15036
15085
|
let o = A("ecs-icon"), s = A("ecs-focus-ring");
|
|
15037
15086
|
return T(), c("div", {
|
|
15038
15087
|
class: "ecs-multiselect-token",
|
|
@@ -15047,7 +15096,7 @@ function wg(e, t, n, r, i, a) {
|
|
|
15047
15096
|
color: "#FFF"
|
|
15048
15097
|
}), f(s, { radius: 12 })])], 32);
|
|
15049
15098
|
}
|
|
15050
|
-
var
|
|
15099
|
+
var Dg = /*#__PURE__*/ H(Tg, [["render", Eg], ["__scopeId", "data-v-daa501d2"]]), Og = {
|
|
15051
15100
|
name: "ecs-multiselect-option",
|
|
15052
15101
|
components: {
|
|
15053
15102
|
EcsIcon: U,
|
|
@@ -15095,14 +15144,14 @@ var Tg = /*#__PURE__*/ H(Cg, [["render", wg], ["__scopeId", "data-v-daa501d2"]])
|
|
|
15095
15144
|
return this.isPlainTextSlotContent ? { display: "block" } : { display: "flex" };
|
|
15096
15145
|
}
|
|
15097
15146
|
}
|
|
15098
|
-
},
|
|
15147
|
+
}, kg = ["role"], Ag = {
|
|
15099
15148
|
key: 1,
|
|
15100
15149
|
class: "color"
|
|
15101
|
-
},
|
|
15150
|
+
}, jg = {
|
|
15102
15151
|
key: 2,
|
|
15103
15152
|
class: "ecs-multiselect-option-content-count"
|
|
15104
15153
|
};
|
|
15105
|
-
function
|
|
15154
|
+
function Mg(e, t, n, r, i, a) {
|
|
15106
15155
|
let u = A("ecs-icon"), p = A("ecs-flex-row"), m = A("ecs-text-v2");
|
|
15107
15156
|
return T(), c("div", {
|
|
15108
15157
|
class: b(["ecs-multiselect-option", [a.typeClass, n.highlighted ? "highlighted" : ""]]),
|
|
@@ -15116,7 +15165,7 @@ function Ag(e, t, n, r, i, a) {
|
|
|
15116
15165
|
key: 0,
|
|
15117
15166
|
type: n.icon,
|
|
15118
15167
|
size: "20"
|
|
15119
|
-
}, null, 8, ["type"])) : n.color ? (T(), c("div",
|
|
15168
|
+
}, null, 8, ["type"])) : n.color ? (T(), c("div", Ag, [l("div", {
|
|
15120
15169
|
class: "color-dot",
|
|
15121
15170
|
style: S({ backgroundColor: n.color })
|
|
15122
15171
|
}, null, 4)])) : s("", !0),
|
|
@@ -15124,7 +15173,7 @@ function Ag(e, t, n, r, i, a) {
|
|
|
15124
15173
|
class: "ecs-multiselect-option-content-text",
|
|
15125
15174
|
style: S(a.slotContentStyle)
|
|
15126
15175
|
}, [k(e.$slots, "default", {}, void 0, !0)], 4),
|
|
15127
|
-
n.count ? (T(), c("span",
|
|
15176
|
+
n.count ? (T(), c("span", jg, N(n.count), 1)) : s("", !0)
|
|
15128
15177
|
]),
|
|
15129
15178
|
_: 3
|
|
15130
15179
|
}), n.help ? (T(), c("div", {
|
|
@@ -15133,9 +15182,9 @@ function Ag(e, t, n, r, i, a) {
|
|
|
15133
15182
|
}, [f(m, { preset: "form" }, {
|
|
15134
15183
|
default: I(() => [d(N(n.help), 1)]),
|
|
15135
15184
|
_: 1
|
|
15136
|
-
})], 2)) : s("", !0)], 10,
|
|
15185
|
+
})], 2)) : s("", !0)], 10, kg);
|
|
15137
15186
|
}
|
|
15138
|
-
var
|
|
15187
|
+
var Ng = /*#__PURE__*/ H(Og, [["render", Mg], ["__scopeId", "data-v-28659eb6"]]), Pg = {
|
|
15139
15188
|
name: "ecs-overlay",
|
|
15140
15189
|
emits: ["close", "toggled"],
|
|
15141
15190
|
components: {
|
|
@@ -15253,38 +15302,38 @@ var jg = /*#__PURE__*/ H(Eg, [["render", Ag], ["__scopeId", "data-v-28659eb6"]])
|
|
|
15253
15302
|
this.isShown && this.setScrollPaddings();
|
|
15254
15303
|
}, 10);
|
|
15255
15304
|
} }
|
|
15256
|
-
},
|
|
15305
|
+
}, Fg = { class: "ecs-overlay-titles" }, Ig = { class: "title" }, Lg = {
|
|
15257
15306
|
key: 0,
|
|
15258
15307
|
class: "emphasized"
|
|
15259
|
-
},
|
|
15308
|
+
}, Rg = {
|
|
15260
15309
|
key: 0,
|
|
15261
15310
|
class: "subline"
|
|
15262
|
-
},
|
|
15311
|
+
}, zg = {
|
|
15263
15312
|
key: 0,
|
|
15264
15313
|
class: "ecs-overlay-header-controls"
|
|
15265
|
-
},
|
|
15314
|
+
}, Bg = ["aria-busy"], Vg = {
|
|
15266
15315
|
key: 0,
|
|
15267
15316
|
class: "ecs-overlay-tabs scrollbar scrollbar-sml"
|
|
15268
|
-
},
|
|
15317
|
+
}, Hg = {
|
|
15269
15318
|
key: 0,
|
|
15270
15319
|
class: "ecs-overlay-sidebar ecs-overlay-sidebar-static"
|
|
15271
|
-
},
|
|
15320
|
+
}, Ug = { class: "ecs-overlay-sidebar ecs-overlay-sidebar-float scrollbar scrollbar-sml" }, Wg = {
|
|
15272
15321
|
key: 1,
|
|
15273
15322
|
class: "ecs-overlay-content-block"
|
|
15274
|
-
},
|
|
15323
|
+
}, Gg = {
|
|
15275
15324
|
key: 1,
|
|
15276
15325
|
class: "ecs-overlay-footer"
|
|
15277
|
-
},
|
|
15326
|
+
}, Kg = {
|
|
15278
15327
|
key: 0,
|
|
15279
15328
|
class: "spacer-tabs"
|
|
15280
|
-
},
|
|
15329
|
+
}, qg = { class: "ecs-overlay-footer-content" }, Jg = {
|
|
15281
15330
|
key: 0,
|
|
15282
15331
|
class: "spacer-sidebar"
|
|
15283
|
-
},
|
|
15332
|
+
}, Yg = {
|
|
15284
15333
|
key: 1,
|
|
15285
15334
|
class: "spacer-scrollbar"
|
|
15286
15335
|
};
|
|
15287
|
-
function
|
|
15336
|
+
function Xg(e, t, n, i, a, u) {
|
|
15288
15337
|
let p = A("ecs-icon"), m = A("ecs-button-toolbar"), h = A("ecs-alert");
|
|
15289
15338
|
return T(), o(r, {
|
|
15290
15339
|
name: "fade",
|
|
@@ -15302,13 +15351,13 @@ function Jg(e, t, n, i, a, u) {
|
|
|
15302
15351
|
class: "ecs-overlay-header",
|
|
15303
15352
|
style: S(e.$slots.alert ? "" : "border-bottom: 1px solid var(--color-gray-4);")
|
|
15304
15353
|
}, [
|
|
15305
|
-
l("div",
|
|
15354
|
+
l("div", Fg, [n.icon ? (T(), o(p, {
|
|
15306
15355
|
key: 0,
|
|
15307
15356
|
type: n.icon,
|
|
15308
15357
|
size: "40",
|
|
15309
15358
|
color: "#B9BCC2"
|
|
15310
|
-
}, null, 8, ["type"])) : s("", !0), l("div", null, [l("span",
|
|
15311
|
-
e.$slots.headercontrols ? (T(), c("div",
|
|
15359
|
+
}, null, 8, ["type"])) : s("", !0), l("div", null, [l("span", Ig, [n.headerTitleEmphasized ? (T(), c("span", Lg, N(n.headerTitleEmphasized), 1)) : s("", !0), d(" " + N(n.headerTitle), 1)]), n.headerTitleSubline ? (T(), c("span", Rg, N(n.headerTitleSubline), 1)) : s("", !0)])]),
|
|
15360
|
+
e.$slots.headercontrols ? (T(), c("div", zg, [k(e.$slots, "headercontrols", {}, void 0, !0)])) : s("", !0),
|
|
15312
15361
|
e.$slots.sidebar && a.width <= 1500 ? (T(), o(m, {
|
|
15313
15362
|
key: 1,
|
|
15314
15363
|
onClick: u.sidebarToggle,
|
|
@@ -15357,7 +15406,7 @@ function Jg(e, t, n, i, a, u) {
|
|
|
15357
15406
|
class: "ecs-overlay-content",
|
|
15358
15407
|
"aria-busy": n.blockContent || null
|
|
15359
15408
|
}, [
|
|
15360
|
-
e.$slots.tabs ? (T(), c("div",
|
|
15409
|
+
e.$slots.tabs ? (T(), c("div", Vg, [k(e.$slots, "tabs", {}, void 0, !0)])) : s("", !0),
|
|
15361
15410
|
l("div", {
|
|
15362
15411
|
ref: "innerContent",
|
|
15363
15412
|
class: b(["ecs-overlay-content-inner scrollbar", u.sidebarOpenClass])
|
|
@@ -15372,15 +15421,15 @@ function Jg(e, t, n, i, a, u) {
|
|
|
15372
15421
|
paddingRight: u.contentPadding
|
|
15373
15422
|
})
|
|
15374
15423
|
}, [k(e.$slots, "default", {}, void 0, !0)], 6),
|
|
15375
|
-
e.$slots.sidebar && a.width > 1500 ? (T(), c("div",
|
|
15424
|
+
e.$slots.sidebar && a.width > 1500 ? (T(), c("div", Hg, [k(e.$slots, "sidebar", {}, void 0, !0)])) : s("", !0),
|
|
15376
15425
|
f(r, { name: "slide" }, {
|
|
15377
|
-
default: I(() => [se(l("div",
|
|
15426
|
+
default: I(() => [se(l("div", Ug, [k(e.$slots, "sidebar", {}, void 0, !0)], 512), [[ae, e.$slots.sidebar && a.width <= 1500 && a.showSidebar]])]),
|
|
15378
15427
|
_: 3
|
|
15379
15428
|
})
|
|
15380
15429
|
], 2),
|
|
15381
|
-
n.blockContent ? (T(), c("div",
|
|
15382
|
-
], 8,
|
|
15383
|
-
e.$slots.footer ? (T(), c("footer",
|
|
15430
|
+
n.blockContent ? (T(), c("div", Wg)) : s("", !0)
|
|
15431
|
+
], 8, Bg),
|
|
15432
|
+
e.$slots.footer ? (T(), c("footer", Gg, [e.$slots.tabs ? (T(), c("div", Kg)) : s("", !0), l("div", qg, [
|
|
15384
15433
|
l("div", {
|
|
15385
15434
|
class: "ecs-overlay-footer-content-inner",
|
|
15386
15435
|
style: S({
|
|
@@ -15391,14 +15440,14 @@ function Jg(e, t, n, i, a, u) {
|
|
|
15391
15440
|
paddingRight: u.contentPadding
|
|
15392
15441
|
})
|
|
15393
15442
|
}, [k(e.$slots, "footer", {}, void 0, !0)], 4),
|
|
15394
|
-
e.$slots.sidebar && a.width > 1500 ? (T(), c("div",
|
|
15395
|
-
a.footerScrollSpacer ? (T(), c("div",
|
|
15443
|
+
e.$slots.sidebar && a.width > 1500 ? (T(), c("div", Jg)) : s("", !0),
|
|
15444
|
+
a.footerScrollSpacer ? (T(), c("div", Yg)) : s("", !0)
|
|
15396
15445
|
])])) : s("", !0)
|
|
15397
15446
|
], 4)) : s("", !0)]),
|
|
15398
15447
|
_: 3
|
|
15399
15448
|
});
|
|
15400
15449
|
}
|
|
15401
|
-
var
|
|
15450
|
+
var Zg = /*#__PURE__*/ H(Pg, [["render", Xg], ["__scopeId", "data-v-acdd9118"]]), Qg = {
|
|
15402
15451
|
name: "ecs-pagination",
|
|
15403
15452
|
emits: [
|
|
15404
15453
|
"firstPage",
|
|
@@ -15410,7 +15459,7 @@ var Yg = /*#__PURE__*/ H(Mg, [["render", Jg], ["__scopeId", "data-v-acdd9118"]])
|
|
|
15410
15459
|
],
|
|
15411
15460
|
components: {
|
|
15412
15461
|
EcsButton: X,
|
|
15413
|
-
EcsSelect:
|
|
15462
|
+
EcsSelect: Pl,
|
|
15414
15463
|
EcsFlexRow: K,
|
|
15415
15464
|
EcsIcon: U
|
|
15416
15465
|
},
|
|
@@ -15492,14 +15541,14 @@ var Yg = /*#__PURE__*/ H(Mg, [["render", Jg], ["__scopeId", "data-v-acdd9118"]])
|
|
|
15492
15541
|
this.$emit("updatePage", Number(e));
|
|
15493
15542
|
}
|
|
15494
15543
|
}
|
|
15495
|
-
},
|
|
15544
|
+
}, $g = ["value", "selected"], e_ = {
|
|
15496
15545
|
key: 0,
|
|
15497
15546
|
class: "total"
|
|
15498
|
-
},
|
|
15547
|
+
}, t_ = {
|
|
15499
15548
|
key: 1,
|
|
15500
15549
|
class: "ecs-pagination-range"
|
|
15501
|
-
},
|
|
15502
|
-
function
|
|
15550
|
+
}, n_ = { class: "ecs-pagination-tabs" }, r_ = ["value", "selected"];
|
|
15551
|
+
function i_(t, n, r, i, a, u) {
|
|
15503
15552
|
let p = A("ecs-button"), m = A("ecs-flex-row"), h = A("ecs-select");
|
|
15504
15553
|
return T(), c("div", {
|
|
15505
15554
|
class: b(["ecs-pagination", [r.theme === "bordered" ? "ecs-pagination-bordered" : "", r.theme === "floating" ? "ecs-pagination-floating" : ""]]),
|
|
@@ -15547,10 +15596,10 @@ function n_(t, n, r, i, a, u) {
|
|
|
15547
15596
|
key: e,
|
|
15548
15597
|
value: e,
|
|
15549
15598
|
selected: e === r.currentPage
|
|
15550
|
-
}, N(e), 9,
|
|
15599
|
+
}, N(e), 9, $g))), 128))]),
|
|
15551
15600
|
_: 1
|
|
15552
15601
|
}, 8, ["modelValue", "disabled"]),
|
|
15553
|
-
r.totalPages ? (T(), c("span",
|
|
15602
|
+
r.totalPages ? (T(), c("span", e_, "of " + N(r.totalPages), 1)) : s("", !0)
|
|
15554
15603
|
]),
|
|
15555
15604
|
_: 1
|
|
15556
15605
|
}),
|
|
@@ -15576,7 +15625,7 @@ function n_(t, n, r, i, a, u) {
|
|
|
15576
15625
|
}, null, 8, ["disabled"])]),
|
|
15577
15626
|
_: 1
|
|
15578
15627
|
})
|
|
15579
|
-
], 64)) : u.hasRange ? (T(), c("span",
|
|
15628
|
+
], 64)) : u.hasRange ? (T(), c("span", t_, [
|
|
15580
15629
|
n[8] ||= d("Showing entries ", -1),
|
|
15581
15630
|
l("span", null, N(r.itemRangeFrom) + " to " + N(r.itemRangeTo), 1),
|
|
15582
15631
|
n[9] ||= d(" of ", -1),
|
|
@@ -15584,7 +15633,7 @@ function n_(t, n, r, i, a, u) {
|
|
|
15584
15633
|
])) : s("", !0)]),
|
|
15585
15634
|
_: 1
|
|
15586
15635
|
}, 8, ["style"]),
|
|
15587
|
-
l("div",
|
|
15636
|
+
l("div", n_, [k(t.$slots, "tabs", {}, void 0, !0)]),
|
|
15588
15637
|
r.showItemsPerPage && r.type == "paginated" ? (T(), o(m, {
|
|
15589
15638
|
key: 0,
|
|
15590
15639
|
gap: 4,
|
|
@@ -15601,7 +15650,7 @@ function n_(t, n, r, i, a, u) {
|
|
|
15601
15650
|
key: e,
|
|
15602
15651
|
value: e,
|
|
15603
15652
|
selected: e === r.itemsPerPageSelected
|
|
15604
|
-
}, N(e), 9,
|
|
15653
|
+
}, N(e), 9, r_))), 128))]),
|
|
15605
15654
|
_: 1
|
|
15606
15655
|
}, 8, ["modelValue", "disabled"])]),
|
|
15607
15656
|
_: 1
|
|
@@ -15616,7 +15665,7 @@ function n_(t, n, r, i, a, u) {
|
|
|
15616
15665
|
})) : s("", !0)
|
|
15617
15666
|
], 2);
|
|
15618
15667
|
}
|
|
15619
|
-
var
|
|
15668
|
+
var a_ = /*#__PURE__*/ H(Qg, [["render", i_], ["__scopeId", "data-v-6741fbf9"]]), o_ = {
|
|
15620
15669
|
name: "ecs-popover-header",
|
|
15621
15670
|
components: {
|
|
15622
15671
|
EcsIcon: U,
|
|
@@ -15635,19 +15684,19 @@ var r_ = /*#__PURE__*/ H(Xg, [["render", n_], ["__scopeId", "data-v-6741fbf9"]])
|
|
|
15635
15684
|
computed: { hasControls() {
|
|
15636
15685
|
return !!this.$slots.default;
|
|
15637
15686
|
} }
|
|
15638
|
-
},
|
|
15687
|
+
}, s_ = { class: "ecs-popover-header" }, c_ = { class: "ecs-popover-header-title" }, l_ = {
|
|
15639
15688
|
key: 1,
|
|
15640
15689
|
class: "ecs-popover-header-title-content"
|
|
15641
|
-
},
|
|
15690
|
+
}, u_ = {
|
|
15642
15691
|
key: 2,
|
|
15643
15692
|
class: "ecs-popover-header-title-controls"
|
|
15644
|
-
},
|
|
15693
|
+
}, d_ = {
|
|
15645
15694
|
key: 0,
|
|
15646
15695
|
class: "ecs-popover-header-actions"
|
|
15647
15696
|
};
|
|
15648
|
-
function
|
|
15697
|
+
function f_(e, t, n, r, i, a) {
|
|
15649
15698
|
let u = A("ecs-icon"), p = A("ecs-text-v2");
|
|
15650
|
-
return T(), c("header",
|
|
15699
|
+
return T(), c("header", s_, [l("div", c_, [
|
|
15651
15700
|
n.icon ? (T(), o(u, {
|
|
15652
15701
|
key: 0,
|
|
15653
15702
|
type: n.icon,
|
|
@@ -15655,15 +15704,15 @@ function u_(e, t, n, r, i, a) {
|
|
|
15655
15704
|
class: "icon",
|
|
15656
15705
|
color: "#B4B9BE"
|
|
15657
15706
|
}, null, 8, ["type"])) : s("", !0),
|
|
15658
|
-
e.$slots.title ? (T(), c("div",
|
|
15707
|
+
e.$slots.title ? (T(), c("div", l_, [k(e.$slots, "title", {}, void 0, !0)])) : s("", !0),
|
|
15659
15708
|
f(p, { preset: "headline-4" }, {
|
|
15660
15709
|
default: I(() => [d(N(n.title), 1)]),
|
|
15661
15710
|
_: 1
|
|
15662
15711
|
}),
|
|
15663
|
-
e.$slots.titleControls ? (T(), c("div",
|
|
15664
|
-
]), a.hasControls ? (T(), c("div",
|
|
15712
|
+
e.$slots.titleControls ? (T(), c("div", u_, [k(e.$slots, "titleControls", {}, void 0, !0)])) : s("", !0)
|
|
15713
|
+
]), a.hasControls ? (T(), c("div", d_, [k(e.$slots, "default", {}, void 0, !0)])) : s("", !0)]);
|
|
15665
15714
|
}
|
|
15666
|
-
var
|
|
15715
|
+
var p_ = /*#__PURE__*/ H(o_, [["render", f_], ["__scopeId", "data-v-0c73e09d"]]), m_ = {
|
|
15667
15716
|
name: "ecs-rating-star-read",
|
|
15668
15717
|
components: { EcsSkeletonLoader: G },
|
|
15669
15718
|
props: {
|
|
@@ -15688,8 +15737,8 @@ var d_ = /*#__PURE__*/ H(i_, [["render", u_], ["__scopeId", "data-v-0c73e09d"]])
|
|
|
15688
15737
|
computed: { sizeClass() {
|
|
15689
15738
|
return this.size && this.size !== "" ? `ecs-rating-read-${this.size}` : this.size;
|
|
15690
15739
|
} }
|
|
15691
|
-
},
|
|
15692
|
-
function
|
|
15740
|
+
}, h_ = ["aria-busy", "aria-label"], g_ = ["data-maximum", "data-rating"];
|
|
15741
|
+
function __(e, t, n, r, i, a) {
|
|
15693
15742
|
let s = A("ecs-skeleton-loader");
|
|
15694
15743
|
return T(), c("div", {
|
|
15695
15744
|
class: b(["ecs-rating-read", [a.sizeClass]]),
|
|
@@ -15705,9 +15754,9 @@ function h_(e, t, n, r, i, a) {
|
|
|
15705
15754
|
class: "ecs-stars-read",
|
|
15706
15755
|
"data-maximum": n.maximum,
|
|
15707
15756
|
"data-rating": n.rating
|
|
15708
|
-
}, null, 8,
|
|
15757
|
+
}, null, 8, g_))], 10, h_);
|
|
15709
15758
|
}
|
|
15710
|
-
var
|
|
15759
|
+
var v_ = /*#__PURE__*/ H(m_, [["render", __], ["__scopeId", "data-v-7e609016"]]), y_ = {
|
|
15711
15760
|
name: "ecs-rating-favorability",
|
|
15712
15761
|
emits: ["click"],
|
|
15713
15762
|
components: {
|
|
@@ -15779,8 +15828,8 @@ var g_ = /*#__PURE__*/ H(f_, [["render", h_], ["__scopeId", "data-v-7e609016"]])
|
|
|
15779
15828
|
methods: { handleClick(e) {
|
|
15780
15829
|
this.disabled || this.$emit("click", e);
|
|
15781
15830
|
} }
|
|
15782
|
-
},
|
|
15783
|
-
function
|
|
15831
|
+
}, b_ = ["aria-busy"], x_ = ["title"];
|
|
15832
|
+
function S_(e, t, n, r, i, a) {
|
|
15784
15833
|
let u = A("ecs-icon"), d = A("ecs-skeleton-loader");
|
|
15785
15834
|
return T(), c("div", {
|
|
15786
15835
|
onClick: t[0] ||= (...e) => a.handleClick && a.handleClick(...e),
|
|
@@ -15790,7 +15839,7 @@ function b_(e, t, n, r, i, a) {
|
|
|
15790
15839
|
l("div", {
|
|
15791
15840
|
class: b(["ecs-favorability-button", [a.css, n.loading ? "loading" : ""]]),
|
|
15792
15841
|
title: a.labelText
|
|
15793
|
-
}, [f(u, { type: a.iconType }, null, 8, ["type"])], 10,
|
|
15842
|
+
}, [f(u, { type: a.iconType }, null, 8, ["type"])], 10, x_),
|
|
15794
15843
|
n.label ? (T(), c("span", {
|
|
15795
15844
|
key: 0,
|
|
15796
15845
|
class: b(["label", n.loading ? "loading" : ""])
|
|
@@ -15807,9 +15856,9 @@ function b_(e, t, n, r, i, a) {
|
|
|
15807
15856
|
width: 100,
|
|
15808
15857
|
style: { width: "calc(100% - 30px)" }
|
|
15809
15858
|
})) : s("", !0)
|
|
15810
|
-
], 10,
|
|
15859
|
+
], 10, b_);
|
|
15811
15860
|
}
|
|
15812
|
-
var
|
|
15861
|
+
var C_ = /*#__PURE__*/ H(y_, [["render", S_], ["__scopeId", "data-v-a6e15633"]]), w_ = {
|
|
15813
15862
|
name: "ecs-quicklinks-link",
|
|
15814
15863
|
emits: [
|
|
15815
15864
|
"click",
|
|
@@ -15819,8 +15868,8 @@ var x_ = /*#__PURE__*/ H(__, [["render", b_], ["__scopeId", "data-v-a6e15633"]])
|
|
|
15819
15868
|
],
|
|
15820
15869
|
components: {
|
|
15821
15870
|
EcsCheckbox: Tr,
|
|
15822
|
-
EcsRatingStarRead:
|
|
15823
|
-
EcsRatingFavorability:
|
|
15871
|
+
EcsRatingStarRead: v_,
|
|
15872
|
+
EcsRatingFavorability: C_,
|
|
15824
15873
|
EcsSwitch: Rr,
|
|
15825
15874
|
EcsIcon: U,
|
|
15826
15875
|
EcsFocusRing: W,
|
|
@@ -15963,21 +16012,21 @@ var x_ = /*#__PURE__*/ H(__, [["render", b_], ["__scopeId", "data-v-a6e15633"]])
|
|
|
15963
16012
|
created() {
|
|
15964
16013
|
this.updateVolumes(this.volumes);
|
|
15965
16014
|
}
|
|
15966
|
-
},
|
|
16015
|
+
}, T_ = { class: "filter-description" }, E_ = {
|
|
15967
16016
|
key: 0,
|
|
15968
16017
|
class: "meta"
|
|
15969
|
-
},
|
|
16018
|
+
}, D_ = { key: 0 }, O_ = ["title"], k_ = { style: { "margin-left": "12px" } }, A_ = { class: "static-label" }, j_ = {
|
|
15970
16019
|
key: 0,
|
|
15971
16020
|
class: "meta"
|
|
15972
|
-
},
|
|
16021
|
+
}, M_ = { key: 0 }, N_ = ["title"], P_ = { class: "persona-label" }, F_ = { key: 3 }, I_ = [
|
|
15973
16022
|
"onClick",
|
|
15974
16023
|
"title",
|
|
15975
16024
|
"aria-label"
|
|
15976
|
-
],
|
|
16025
|
+
], L_ = ["aria-label"], R_ = {
|
|
15977
16026
|
key: 5,
|
|
15978
16027
|
class: "meta"
|
|
15979
|
-
},
|
|
15980
|
-
function
|
|
16028
|
+
}, z_ = { key: 0 }, B_ = ["title"];
|
|
16029
|
+
function V_(t, n, r, i, a, u) {
|
|
15981
16030
|
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");
|
|
15982
16031
|
return T(), c("li", { class: b(["ecs-quicklinks-link", [
|
|
15983
16032
|
u.typeClass,
|
|
@@ -15990,11 +16039,11 @@ function z_(t, n, r, i, a, u) {
|
|
|
15990
16039
|
role: "button"
|
|
15991
16040
|
}, [
|
|
15992
16041
|
f(p, { type: r.icon }, null, 8, ["type"]),
|
|
15993
|
-
l("span",
|
|
15994
|
-
r.count || r.meta ? (T(), c("small",
|
|
16042
|
+
l("span", T_, N(r.label), 1),
|
|
16043
|
+
r.count || r.meta ? (T(), c("small", E_, [r.count ? (T(), c("span", D_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
|
|
15995
16044
|
key: 1,
|
|
15996
16045
|
title: r.metaTitle
|
|
15997
|
-
}, N(r.meta), 9,
|
|
16046
|
+
}, N(r.meta), 9, O_)) : s("", !0)])) : s("", !0),
|
|
15998
16047
|
f(m)
|
|
15999
16048
|
])) : r.type === "favorability" ? (T(), c("div", {
|
|
16000
16049
|
key: 1,
|
|
@@ -16013,11 +16062,11 @@ function z_(t, n, r, i, a, u) {
|
|
|
16013
16062
|
"rating",
|
|
16014
16063
|
"disabled"
|
|
16015
16064
|
]),
|
|
16016
|
-
l("label",
|
|
16017
|
-
r.count || r.meta ? (T(), c("small",
|
|
16065
|
+
l("label", k_, [l("span", A_, N(r.label), 1)]),
|
|
16066
|
+
r.count || r.meta ? (T(), c("small", j_, [r.count ? (T(), c("span", M_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
|
|
16018
16067
|
key: 1,
|
|
16019
16068
|
title: r.metaTitle
|
|
16020
|
-
}, N(r.meta), 9,
|
|
16069
|
+
}, N(r.meta), 9, N_)) : s("", !0)])) : s("", !0),
|
|
16021
16070
|
f(m)
|
|
16022
16071
|
])) : (T(), o(w, {
|
|
16023
16072
|
key: 2,
|
|
@@ -16053,7 +16102,7 @@ function z_(t, n, r, i, a, u) {
|
|
|
16053
16102
|
"name",
|
|
16054
16103
|
"relevant-badge",
|
|
16055
16104
|
"backgroundColor"
|
|
16056
|
-
]), l("span",
|
|
16105
|
+
]), l("span", P_, N(r.label || r.persona.name), 1)], 64)) : (T(), c("span", F_, N(r.label), 1)),
|
|
16057
16106
|
a.localVolumes.length ? (T(), o(C, {
|
|
16058
16107
|
key: 4,
|
|
16059
16108
|
gap: 2,
|
|
@@ -16065,7 +16114,7 @@ function z_(t, n, r, i, a, u) {
|
|
|
16065
16114
|
onClick: (t) => u.toggleVolume(e.id),
|
|
16066
16115
|
title: `${e.name} (${e.date})`,
|
|
16067
16116
|
"aria-label": `Volume ${e.id}${e.active ? " active" : ""}`
|
|
16068
|
-
}, N(e.id), 11,
|
|
16117
|
+
}, N(e.id), 11, I_))), 128)), a.localVolumes.length > 3 ? (T(), o(S, {
|
|
16069
16118
|
key: 0,
|
|
16070
16119
|
disabled: r.disabled || null
|
|
16071
16120
|
}, {
|
|
@@ -16094,15 +16143,15 @@ function z_(t, n, r, i, a, u) {
|
|
|
16094
16143
|
}, [f(p, {
|
|
16095
16144
|
type: "more",
|
|
16096
16145
|
size: "18"
|
|
16097
|
-
})], 10,
|
|
16146
|
+
})], 10, L_)]),
|
|
16098
16147
|
_: 1
|
|
16099
16148
|
}, 8, ["disabled"])) : s("", !0)]),
|
|
16100
16149
|
_: 1
|
|
16101
16150
|
})) : s("", !0),
|
|
16102
|
-
r.count || r.meta ? (T(), c("small",
|
|
16151
|
+
r.count || r.meta ? (T(), c("small", R_, [r.count ? (T(), c("span", z_, N(r.count), 1)) : s("", !0), r.meta ? (T(), c("span", {
|
|
16103
16152
|
key: 1,
|
|
16104
16153
|
title: r.metaTitle
|
|
16105
|
-
}, N(r.meta), 9,
|
|
16154
|
+
}, N(r.meta), 9, B_)) : s("", !0)])) : s("", !0)
|
|
16106
16155
|
]),
|
|
16107
16156
|
_: 1
|
|
16108
16157
|
}, 8, [
|
|
@@ -16113,7 +16162,7 @@ function z_(t, n, r, i, a, u) {
|
|
|
16113
16162
|
"indeterminate"
|
|
16114
16163
|
]))], 2);
|
|
16115
16164
|
}
|
|
16116
|
-
var
|
|
16165
|
+
var H_ = /*#__PURE__*/ H(w_, [["render", V_], ["__scopeId", "data-v-bafc258b"]]), U_ = {
|
|
16117
16166
|
name: "ecs-range",
|
|
16118
16167
|
mixins: [Y],
|
|
16119
16168
|
emits: ["update:modelValue"],
|
|
@@ -16173,21 +16222,21 @@ var B_ = /*#__PURE__*/ H(S_, [["render", z_], ["__scopeId", "data-v-bafc258b"]])
|
|
|
16173
16222
|
watch: { modelValue(e) {
|
|
16174
16223
|
this.updateProgress(e);
|
|
16175
16224
|
} }
|
|
16176
|
-
},
|
|
16225
|
+
}, W_ = [
|
|
16177
16226
|
"id",
|
|
16178
16227
|
"disabled",
|
|
16179
16228
|
"min",
|
|
16180
16229
|
"max",
|
|
16181
16230
|
"value",
|
|
16182
16231
|
"step"
|
|
16183
|
-
],
|
|
16232
|
+
], G_ = {
|
|
16184
16233
|
key: 0,
|
|
16185
16234
|
class: "ecs-range-markers"
|
|
16186
|
-
},
|
|
16235
|
+
}, K_ = {
|
|
16187
16236
|
key: 1,
|
|
16188
16237
|
class: "ecs-range-labels"
|
|
16189
16238
|
};
|
|
16190
|
-
function
|
|
16239
|
+
function q_(t, n, r, i, a, o) {
|
|
16191
16240
|
return T(), c("div", { class: b(["ecs-range", { "has-list": r.list }]) }, [
|
|
16192
16241
|
l("input", {
|
|
16193
16242
|
ref: "rangeInput",
|
|
@@ -16200,18 +16249,18 @@ function G_(t, n, r, i, a, o) {
|
|
|
16200
16249
|
value: r.modelValue,
|
|
16201
16250
|
step: r.step === "any" ? "any" : r.step,
|
|
16202
16251
|
class: "ecs-range-input"
|
|
16203
|
-
}, null, 40,
|
|
16204
|
-
o.shouldShowMarkers ? (T(), c("div",
|
|
16252
|
+
}, null, 40, W_),
|
|
16253
|
+
o.shouldShowMarkers ? (T(), c("div", G_, [(T(!0), c(e, null, O(o.stepCount, (e, t) => (T(), c("span", {
|
|
16205
16254
|
key: t,
|
|
16206
16255
|
class: "ecs-range-marker"
|
|
16207
16256
|
}))), 128))])) : s("", !0),
|
|
16208
|
-
r.list ? (T(), c("div",
|
|
16257
|
+
r.list ? (T(), c("div", K_, [(T(!0), c(e, null, O(r.list, (e, t) => (T(), c("span", {
|
|
16209
16258
|
key: t,
|
|
16210
16259
|
class: "ecs-range-label"
|
|
16211
16260
|
}, N(e), 1))), 128))])) : s("", !0)
|
|
16212
16261
|
], 2);
|
|
16213
16262
|
}
|
|
16214
|
-
var
|
|
16263
|
+
var J_ = /*#__PURE__*/ H(U_, [["render", q_], ["__scopeId", "data-v-b6f3e6b0"]]), Y_ = {
|
|
16215
16264
|
name: "ecs-rating-star-write",
|
|
16216
16265
|
emits: ["click", "reset"],
|
|
16217
16266
|
props: {
|
|
@@ -16232,15 +16281,15 @@ var K_ = /*#__PURE__*/ H(V_, [["render", G_], ["__scopeId", "data-v-b6f3e6b0"]])
|
|
|
16232
16281
|
default: !1
|
|
16233
16282
|
}
|
|
16234
16283
|
}
|
|
16235
|
-
},
|
|
16236
|
-
function
|
|
16284
|
+
}, X_ = ["disabled"], Z_ = { class: "ecs-rating-write" }, Q_ = ["checked", "disabled"], $_ = ["checked", "disabled"], ev = ["checked", "disabled"], tv = ["checked", "disabled"];
|
|
16285
|
+
function nv(e, t, n, r, i, a) {
|
|
16237
16286
|
return T(), c("div", { class: b(["ecs-rating-form", [n.large ? "ecs-rating-form-lg" : ""]]) }, [n.unrated ? (T(), c("button", {
|
|
16238
16287
|
key: 0,
|
|
16239
16288
|
onClick: t[0] ||= (t) => e.$emit("reset"),
|
|
16240
16289
|
disabled: n.disabled,
|
|
16241
16290
|
class: b(["ecs-rating-reset", { active: n.value == 0 }]),
|
|
16242
16291
|
"aria-label": "Reset Rating"
|
|
16243
|
-
}, [...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,
|
|
16292
|
+
}, [...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, X_)) : s("", !0), l("div", Z_, [
|
|
16244
16293
|
l("input", {
|
|
16245
16294
|
type: "radio",
|
|
16246
16295
|
value: "1",
|
|
@@ -16248,7 +16297,7 @@ function ev(e, t, n, r, i, a) {
|
|
|
16248
16297
|
onClick: t[1] ||= (t) => e.$emit("click", t),
|
|
16249
16298
|
checked: n.value == 1 || null,
|
|
16250
16299
|
disabled: n.disabled
|
|
16251
|
-
}, null, 8,
|
|
16300
|
+
}, null, 8, Q_),
|
|
16252
16301
|
t[6] ||= l("i", null, null, -1),
|
|
16253
16302
|
l("input", {
|
|
16254
16303
|
type: "radio",
|
|
@@ -16257,7 +16306,7 @@ function ev(e, t, n, r, i, a) {
|
|
|
16257
16306
|
onClick: t[2] ||= (t) => e.$emit("click", t),
|
|
16258
16307
|
checked: n.value == 2 || null,
|
|
16259
16308
|
disabled: n.disabled
|
|
16260
|
-
}, null, 8,
|
|
16309
|
+
}, null, 8, $_),
|
|
16261
16310
|
t[7] ||= l("i", null, null, -1),
|
|
16262
16311
|
l("input", {
|
|
16263
16312
|
type: "radio",
|
|
@@ -16266,7 +16315,7 @@ function ev(e, t, n, r, i, a) {
|
|
|
16266
16315
|
onClick: t[3] ||= (t) => e.$emit("click", t),
|
|
16267
16316
|
checked: n.value == 3 || null,
|
|
16268
16317
|
disabled: n.disabled
|
|
16269
|
-
}, null, 8,
|
|
16318
|
+
}, null, 8, ev),
|
|
16270
16319
|
t[8] ||= l("i", null, null, -1),
|
|
16271
16320
|
l("input", {
|
|
16272
16321
|
type: "radio",
|
|
@@ -16275,11 +16324,11 @@ function ev(e, t, n, r, i, a) {
|
|
|
16275
16324
|
onClick: t[4] ||= (t) => e.$emit("click", t),
|
|
16276
16325
|
checked: n.value == 4 || null,
|
|
16277
16326
|
disabled: n.disabled
|
|
16278
|
-
}, null, 8,
|
|
16327
|
+
}, null, 8, tv),
|
|
16279
16328
|
t[9] ||= l("i", null, null, -1)
|
|
16280
16329
|
])], 2);
|
|
16281
16330
|
}
|
|
16282
|
-
var
|
|
16331
|
+
var rv = /*#__PURE__*/ H(Y_, [["render", nv], ["__scopeId", "data-v-0d4c1ecb"]]), iv = {
|
|
16283
16332
|
name: "ecs-section",
|
|
16284
16333
|
props: {
|
|
16285
16334
|
title: { type: String },
|
|
@@ -16325,11 +16374,11 @@ var tv = /*#__PURE__*/ H(q_, [["render", ev], ["__scopeId", "data-v-0d4c1ecb"]])
|
|
|
16325
16374
|
return `ecs-section-content-padding-${this.contentPadding}`;
|
|
16326
16375
|
}
|
|
16327
16376
|
}
|
|
16328
|
-
},
|
|
16377
|
+
}, av = {
|
|
16329
16378
|
key: 0,
|
|
16330
16379
|
class: "ecs-section-controls"
|
|
16331
16380
|
};
|
|
16332
|
-
function
|
|
16381
|
+
function ov(e, t, n, r, i, a) {
|
|
16333
16382
|
return T(), c("div", { class: b(["ecs-section", [
|
|
16334
16383
|
n.borderTop ? "ecs-section-border-top" : "",
|
|
16335
16384
|
n.borderBottom ? "ecs-section-border-bottom" : "",
|
|
@@ -16338,9 +16387,9 @@ function iv(e, t, n, r, i, a) {
|
|
|
16338
16387
|
]]) }, [n.title ? (T(), c("h3", {
|
|
16339
16388
|
key: 0,
|
|
16340
16389
|
class: b(["ecs-section-headline", [n.headlineBold ? "ecs-headline-section-bold" : "ecs-headline-section", e.$slots.controls ? "has-buttons" : ""]])
|
|
16341
|
-
}, [d(N(n.title) + " ", 1), e.$slots.controls ? (T(), c("div",
|
|
16390
|
+
}, [d(N(n.title) + " ", 1), e.$slots.controls ? (T(), c("div", av, [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);
|
|
16342
16391
|
}
|
|
16343
|
-
var
|
|
16392
|
+
var sv = /*#__PURE__*/ H(iv, [["render", ov], ["__scopeId", "data-v-cdcc0680"]]), cv = {
|
|
16344
16393
|
name: "ecs-segments",
|
|
16345
16394
|
emits: ["click"],
|
|
16346
16395
|
components: { EcsIcon: U },
|
|
@@ -16366,15 +16415,15 @@ var av = /*#__PURE__*/ H(nv, [["render", iv], ["__scopeId", "data-v-cdcc0680"]])
|
|
|
16366
16415
|
default: !1
|
|
16367
16416
|
}
|
|
16368
16417
|
}
|
|
16369
|
-
},
|
|
16418
|
+
}, lv = ["for", "disabled"], uv = [
|
|
16370
16419
|
"name",
|
|
16371
16420
|
"value",
|
|
16372
16421
|
"id",
|
|
16373
16422
|
"checked",
|
|
16374
16423
|
"disabled",
|
|
16375
16424
|
"onClick"
|
|
16376
|
-
],
|
|
16377
|
-
function
|
|
16425
|
+
], dv = ["title"];
|
|
16426
|
+
function fv(t, n, r, i, a, u) {
|
|
16378
16427
|
let f = A("ecs-icon");
|
|
16379
16428
|
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", {
|
|
16380
16429
|
key: e.id,
|
|
@@ -16388,7 +16437,7 @@ function uv(t, n, r, i, a, u) {
|
|
|
16388
16437
|
checked: r.value.toLowerCase() == e.id.toLowerCase() || null,
|
|
16389
16438
|
disabled: e.disabled || r.disabled,
|
|
16390
16439
|
onClick: (n) => t.$emit("click", e.id)
|
|
16391
|
-
}, null, 8,
|
|
16440
|
+
}, null, 8, uv), l("span", {
|
|
16392
16441
|
class: "ecs-segment",
|
|
16393
16442
|
title: e.title
|
|
16394
16443
|
}, [e.icon ? (T(), o(f, {
|
|
@@ -16397,9 +16446,9 @@ function uv(t, n, r, i, a, u) {
|
|
|
16397
16446
|
type: e.icon,
|
|
16398
16447
|
size: "20",
|
|
16399
16448
|
color: "#2F333C"
|
|
16400
|
-
}, null, 8, ["class", "type"])) : s("", !0), d(" " + N(e.label), 1)], 8,
|
|
16449
|
+
}, null, 8, ["class", "type"])) : s("", !0), d(" " + N(e.label), 1)], 8, dv)], 8, lv))), 128))], 2);
|
|
16401
16450
|
}
|
|
16402
|
-
var
|
|
16451
|
+
var pv = /*#__PURE__*/ H(cv, [["render", fv], ["__scopeId", "data-v-1cb14db0"]]), mv = {
|
|
16403
16452
|
name: "ecs-selection-grid",
|
|
16404
16453
|
emits: ["update:modelValue"],
|
|
16405
16454
|
components: {
|
|
@@ -16450,12 +16499,12 @@ var dv = /*#__PURE__*/ H(ov, [["render", uv], ["__scopeId", "data-v-1cb14db0"]])
|
|
|
16450
16499
|
}
|
|
16451
16500
|
}
|
|
16452
16501
|
}
|
|
16453
|
-
},
|
|
16502
|
+
}, hv = ["role"], gv = [
|
|
16454
16503
|
"onClick",
|
|
16455
16504
|
"role",
|
|
16456
16505
|
"aria-checked"
|
|
16457
16506
|
];
|
|
16458
|
-
function
|
|
16507
|
+
function _v(t, n, r, i, a, l) {
|
|
16459
16508
|
let u = A("ecs-icon"), p = A("ecs-file-icon"), m = A("ecs-text-v2"), h = A("ecs-flex-row");
|
|
16460
16509
|
return T(), c("div", {
|
|
16461
16510
|
class: "ecs-selection-grid",
|
|
@@ -16492,14 +16541,14 @@ function hv(t, n, r, i, a, l) {
|
|
|
16492
16541
|
_: 2
|
|
16493
16542
|
}, 1024)) : s("", !0)]),
|
|
16494
16543
|
_: 2
|
|
16495
|
-
}, 1024)], 10,
|
|
16544
|
+
}, 1024)], 10, gv))), 128))], 12, hv);
|
|
16496
16545
|
}
|
|
16497
|
-
var
|
|
16546
|
+
var vv = /*#__PURE__*/ H(mv, [["render", _v], ["__scopeId", "data-v-8b0a7154"]]), yv = {
|
|
16498
16547
|
name: "ecs-select-tile",
|
|
16499
16548
|
emits: ["click"],
|
|
16500
16549
|
components: {
|
|
16501
16550
|
EcsFocusRing: W,
|
|
16502
|
-
EcsIllustration:
|
|
16551
|
+
EcsIllustration: Ip
|
|
16503
16552
|
},
|
|
16504
16553
|
props: {
|
|
16505
16554
|
label: {
|
|
@@ -16532,14 +16581,14 @@ var gv = /*#__PURE__*/ H(fv, [["render", hv], ["__scopeId", "data-v-8b0a7154"]])
|
|
|
16532
16581
|
default: !1
|
|
16533
16582
|
}
|
|
16534
16583
|
}
|
|
16535
|
-
},
|
|
16584
|
+
}, bv = ["aria-checked", "tabindex"], xv = {
|
|
16536
16585
|
key: 1,
|
|
16537
16586
|
class: "label"
|
|
16538
|
-
},
|
|
16587
|
+
}, Sv = {
|
|
16539
16588
|
key: 2,
|
|
16540
16589
|
class: "help"
|
|
16541
16590
|
};
|
|
16542
|
-
function
|
|
16591
|
+
function Cv(e, t, n, r, i, a) {
|
|
16543
16592
|
let u = A("ecs-illustration"), d = A("ecs-focus-ring");
|
|
16544
16593
|
return T(), c("div", {
|
|
16545
16594
|
onClick: t[0] ||= (t) => e.$emit("click", t),
|
|
@@ -16554,23 +16603,23 @@ function xv(e, t, n, r, i, a) {
|
|
|
16554
16603
|
key: 0,
|
|
16555
16604
|
type: n.illustration
|
|
16556
16605
|
}, null, 8, ["type"])) : s("", !0),
|
|
16557
|
-
n.label ? (T(), c("div",
|
|
16558
|
-
n.helpText ? (T(), c("div",
|
|
16606
|
+
n.label ? (T(), c("div", xv, N(n.label), 1)) : s("", !0),
|
|
16607
|
+
n.helpText ? (T(), c("div", Sv, N(n.helpText), 1)) : s("", !0),
|
|
16559
16608
|
f(d, {
|
|
16560
16609
|
inset: -6,
|
|
16561
16610
|
radius: 12
|
|
16562
16611
|
})
|
|
16563
|
-
], 42,
|
|
16612
|
+
], 42, bv);
|
|
16564
16613
|
}
|
|
16565
|
-
var
|
|
16614
|
+
var wv = /*#__PURE__*/ H(yv, [["render", Cv], ["__scopeId", "data-v-a5e9bd1b"]]), Tv = { name: "ecs-sequence-map" }, Ev = {
|
|
16566
16615
|
class: "ecs-sequence-map",
|
|
16567
16616
|
role: "navigation",
|
|
16568
16617
|
"aria-label": "Steps"
|
|
16569
16618
|
};
|
|
16570
|
-
function
|
|
16571
|
-
return T(), c("div",
|
|
16619
|
+
function Dv(e, t, n, r, i, a) {
|
|
16620
|
+
return T(), c("div", Ev, [k(e.$slots, "default", {}, void 0, !0)]);
|
|
16572
16621
|
}
|
|
16573
|
-
var
|
|
16622
|
+
var Ov = /*#__PURE__*/ H(Tv, [["render", Dv], ["__scopeId", "data-v-69c3c73d"]]), kv = {
|
|
16574
16623
|
name: "ecs-sequence-map-button",
|
|
16575
16624
|
emits: ["click"],
|
|
16576
16625
|
components: {
|
|
@@ -16599,8 +16648,8 @@ var Ev = /*#__PURE__*/ H(Cv, [["render", Tv], ["__scopeId", "data-v-69c3c73d"]])
|
|
|
16599
16648
|
default: !1
|
|
16600
16649
|
}
|
|
16601
16650
|
}
|
|
16602
|
-
},
|
|
16603
|
-
function
|
|
16651
|
+
}, Av = ["aria-busy"], jv = { class: "count" };
|
|
16652
|
+
function Mv(e, t, n, r, i, a) {
|
|
16604
16653
|
let u = A("ecs-icon"), p = A("ecs-focus-ring");
|
|
16605
16654
|
return T(), c("button", {
|
|
16606
16655
|
onClick: t[0] ||= (t) => e.$emit("click", t),
|
|
@@ -16612,7 +16661,7 @@ function Av(e, t, n, r, i, a) {
|
|
|
16612
16661
|
]]),
|
|
16613
16662
|
"aria-busy": n.loading || null
|
|
16614
16663
|
}, [
|
|
16615
|
-
l("span",
|
|
16664
|
+
l("span", jv, [d(N(n.step) + " ", 1), n.loading ? (T(), o(u, {
|
|
16616
16665
|
key: 0,
|
|
16617
16666
|
type: "loading",
|
|
16618
16667
|
class: "loading",
|
|
@@ -16621,9 +16670,9 @@ function Av(e, t, n, r, i, a) {
|
|
|
16621
16670
|
k(e.$slots, "default", {}, void 0, !0),
|
|
16622
16671
|
f(p, { inset: 4 }),
|
|
16623
16672
|
t[1] ||= l("div", { class: "step-indicator" }, null, -1)
|
|
16624
|
-
], 10,
|
|
16673
|
+
], 10, Av);
|
|
16625
16674
|
}
|
|
16626
|
-
var
|
|
16675
|
+
var Nv = /*#__PURE__*/ H(kv, [["render", Mv], ["__scopeId", "data-v-397f53f1"]]), Pv = {
|
|
16627
16676
|
name: "ecs-tab-bar",
|
|
16628
16677
|
props: {
|
|
16629
16678
|
type: {
|
|
@@ -16661,30 +16710,30 @@ var jv = /*#__PURE__*/ H(Dv, [["render", Av], ["__scopeId", "data-v-397f53f1"]])
|
|
|
16661
16710
|
if (this.type === "standard" && this.direction === "column" || this.type === "sidebar") return "vertical";
|
|
16662
16711
|
}
|
|
16663
16712
|
}
|
|
16664
|
-
},
|
|
16665
|
-
function
|
|
16713
|
+
}, Fv = ["aria-orientation", "data-orientation"];
|
|
16714
|
+
function Iv(e, t, n, r, i, a) {
|
|
16666
16715
|
return T(), c("div", {
|
|
16667
16716
|
class: b(["ecs-tab-bar", [a.typeClass, a.directionClass]]),
|
|
16668
16717
|
role: "tablist",
|
|
16669
16718
|
"aria-orientation": a.tabOrientation,
|
|
16670
16719
|
"data-orientation": a.tabOrientation
|
|
16671
|
-
}, [k(e.$slots, "default", {}, void 0, !0)], 10,
|
|
16720
|
+
}, [k(e.$slots, "default", {}, void 0, !0)], 10, Fv);
|
|
16672
16721
|
}
|
|
16673
|
-
var
|
|
16722
|
+
var Lv = /*#__PURE__*/ H(Pv, [["render", Iv], ["__scopeId", "data-v-d3452fc7"]]), Rv = {
|
|
16674
16723
|
name: "ecs-tabs",
|
|
16675
16724
|
props: { fill: {
|
|
16676
16725
|
type: Boolean,
|
|
16677
16726
|
default: !1
|
|
16678
16727
|
} }
|
|
16679
16728
|
};
|
|
16680
|
-
function
|
|
16729
|
+
function zv(e, t, n, r, i, a) {
|
|
16681
16730
|
return T(), c("div", { class: b(["ecs-tab-content", [n.fill ? "ecs-tab-content-fill" : ""]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2);
|
|
16682
16731
|
}
|
|
16683
|
-
var
|
|
16732
|
+
var Bv = /*#__PURE__*/ H(Rv, [["render", zv], ["__scopeId", "data-v-0fe19168"]]), Vv = {
|
|
16684
16733
|
name: "ecs-sidebar",
|
|
16685
16734
|
components: {
|
|
16686
|
-
EcsTabBar:
|
|
16687
|
-
EcsTabs:
|
|
16735
|
+
EcsTabBar: Lv,
|
|
16736
|
+
EcsTabs: Bv
|
|
16688
16737
|
},
|
|
16689
16738
|
props: {
|
|
16690
16739
|
expanded: {
|
|
@@ -16718,13 +16767,13 @@ var Rv = /*#__PURE__*/ H(Iv, [["render", Lv], ["__scopeId", "data-v-0fe19168"]])
|
|
|
16718
16767
|
return this.expanded ? "height: calc(100% - 10px)" : "height:" + (2 + 36 * this.tabCount) + "px";
|
|
16719
16768
|
}
|
|
16720
16769
|
}
|
|
16721
|
-
},
|
|
16722
|
-
function
|
|
16770
|
+
}, Hv = { class: "ecs-sidebar-tabs" };
|
|
16771
|
+
function Uv(e, t, n, r, i, a) {
|
|
16723
16772
|
let o = A("ecs-tab-bar"), s = A("ecs-tabs");
|
|
16724
16773
|
return T(), c("aside", {
|
|
16725
16774
|
class: b(["ecs-sidebar", [a.sizeClass, a.expandClass]]),
|
|
16726
16775
|
style: S(a.height)
|
|
16727
|
-
}, [l("div",
|
|
16776
|
+
}, [l("div", Hv, [f(o, { type: "sidebar" }, {
|
|
16728
16777
|
default: I(() => [k(e.$slots, "tab-buttons", {}, void 0, !0)]),
|
|
16729
16778
|
_: 3
|
|
16730
16779
|
})]), f(s, null, {
|
|
@@ -16732,7 +16781,7 @@ function Vv(e, t, n, r, i, a) {
|
|
|
16732
16781
|
_: 3
|
|
16733
16782
|
})], 6);
|
|
16734
16783
|
}
|
|
16735
|
-
var
|
|
16784
|
+
var Wv = /*#__PURE__*/ H(Vv, [["render", Uv], ["__scopeId", "data-v-55f62417"]]), Gv = {
|
|
16736
16785
|
name: "ecs-sidebar-content",
|
|
16737
16786
|
props: {
|
|
16738
16787
|
indent: {
|
|
@@ -16745,17 +16794,17 @@ var Hv = /*#__PURE__*/ H(zv, [["render", Vv], ["__scopeId", "data-v-55f62417"]])
|
|
|
16745
16794
|
}
|
|
16746
16795
|
}
|
|
16747
16796
|
};
|
|
16748
|
-
function
|
|
16797
|
+
function Kv(e, t, n, r, i, a) {
|
|
16749
16798
|
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);
|
|
16750
16799
|
}
|
|
16751
|
-
var
|
|
16800
|
+
var qv = /*#__PURE__*/ H(Gv, [["render", Kv], ["__scopeId", "data-v-197087d5"]]), Jv = {
|
|
16752
16801
|
name: "ecs-sidebar-footer",
|
|
16753
16802
|
props: { condensed: {
|
|
16754
16803
|
type: Boolean,
|
|
16755
16804
|
default: !1
|
|
16756
16805
|
} }
|
|
16757
16806
|
};
|
|
16758
|
-
function
|
|
16807
|
+
function Yv(e, t, n, r, i, a) {
|
|
16759
16808
|
return T(), c("footer", { class: b(["ecs-sidebar-footer", [e.$slots.extension ? "has-extension" : ""]]) }, [
|
|
16760
16809
|
k(e.$slots, "alert", {}, void 0, !0),
|
|
16761
16810
|
e.$slots.extension ? (T(), c("div", {
|
|
@@ -16765,7 +16814,7 @@ function qv(e, t, n, r, i, a) {
|
|
|
16765
16814
|
l("div", { class: b(["ecs-sidebar-footer-inner", [n.condensed ? "ecs-sidebar-footer-inner-condensed" : ""]]) }, [k(e.$slots, "default", {}, void 0, !0)], 2)
|
|
16766
16815
|
], 2);
|
|
16767
16816
|
}
|
|
16768
|
-
var
|
|
16817
|
+
var Xv = /*#__PURE__*/ H(Jv, [["render", Yv], ["__scopeId", "data-v-0c35a678"]]), Zv = {
|
|
16769
16818
|
name: "ecs-sidebar-header",
|
|
16770
16819
|
props: {
|
|
16771
16820
|
subHeaderExpanded: {
|
|
@@ -16781,40 +16830,40 @@ var Jv = /*#__PURE__*/ H(Kv, [["render", qv], ["__scopeId", "data-v-0c35a678"]])
|
|
|
16781
16830
|
default: !1
|
|
16782
16831
|
}
|
|
16783
16832
|
}
|
|
16784
|
-
},
|
|
16833
|
+
}, Qv = { class: "ecs-sidebar-header" }, $v = {
|
|
16785
16834
|
key: 0,
|
|
16786
16835
|
class: "ecs-sidebar-header-row"
|
|
16787
|
-
},
|
|
16836
|
+
}, ey = { class: "ecs-sidebar-header-title" }, ty = {
|
|
16788
16837
|
key: 0,
|
|
16789
16838
|
class: "ecs-sidebar-header-controls"
|
|
16790
|
-
},
|
|
16839
|
+
}, ny = {
|
|
16791
16840
|
key: 0,
|
|
16792
16841
|
class: "ecs-sidebar-header-row sub-header"
|
|
16793
|
-
},
|
|
16842
|
+
}, ry = {
|
|
16794
16843
|
key: 0,
|
|
16795
16844
|
class: "ecs-sidebar-header-row sub-header"
|
|
16796
16845
|
};
|
|
16797
|
-
function
|
|
16798
|
-
return T(), c("header",
|
|
16799
|
-
n.hidePrimaryHeader ? s("", !0) : (T(), c("div",
|
|
16846
|
+
function iy(e, t, n, i, a, o) {
|
|
16847
|
+
return T(), c("header", Qv, [
|
|
16848
|
+
n.hidePrimaryHeader ? s("", !0) : (T(), c("div", $v, [l("div", ey, [k(e.$slots, "default", {}, void 0, !0)]), e.$slots["primary-controls"] ? (T(), c("div", ty, [k(e.$slots, "primary-controls", {}, void 0, !0)])) : s("", !0)])),
|
|
16800
16849
|
f(r, { name: "expansion" }, {
|
|
16801
|
-
default: I(() => [n.subHeaderExpanded && e.$slots.subheader ? (T(), c("div",
|
|
16850
|
+
default: I(() => [n.subHeaderExpanded && e.$slots.subheader ? (T(), c("div", ny, [k(e.$slots, "subheader", {}, void 0, !0)])) : s("", !0)]),
|
|
16802
16851
|
_: 3
|
|
16803
16852
|
}),
|
|
16804
16853
|
f(r, { name: "expansion" }, {
|
|
16805
|
-
default: I(() => [n.tertiaryHeaderExpanded && e.$slots.tertiaryheader ? (T(), c("div",
|
|
16854
|
+
default: I(() => [n.tertiaryHeaderExpanded && e.$slots.tertiaryheader ? (T(), c("div", ry, [k(e.$slots, "tertiaryheader", {}, void 0, !0)])) : s("", !0)]),
|
|
16806
16855
|
_: 3
|
|
16807
16856
|
})
|
|
16808
16857
|
]);
|
|
16809
16858
|
}
|
|
16810
|
-
var
|
|
16859
|
+
var ay = /*#__PURE__*/ H(Zv, [["render", iy], ["__scopeId", "data-v-54e7aa5c"]]), oy = { name: "ecs-sidebar-list" }, sy = {
|
|
16811
16860
|
class: "ecs-sidebar-list",
|
|
16812
16861
|
role: "list"
|
|
16813
16862
|
};
|
|
16814
|
-
function
|
|
16815
|
-
return T(), c("div",
|
|
16863
|
+
function cy(e, t, n, r, i, a) {
|
|
16864
|
+
return T(), c("div", sy, [k(e.$slots, "default", {}, void 0, !0)]);
|
|
16816
16865
|
}
|
|
16817
|
-
var
|
|
16866
|
+
var ly = /*#__PURE__*/ H(oy, [["render", cy], ["__scopeId", "data-v-81bc3c0a"]]), uy = {
|
|
16818
16867
|
name: "ecs-sidebar-list-item",
|
|
16819
16868
|
emits: ["click", "select"],
|
|
16820
16869
|
components: {
|
|
@@ -16914,16 +16963,16 @@ var sy = /*#__PURE__*/ H(iy, [["render", oy], ["__scopeId", "data-v-81bc3c0a"]])
|
|
|
16914
16963
|
});
|
|
16915
16964
|
}
|
|
16916
16965
|
}
|
|
16917
|
-
},
|
|
16966
|
+
}, dy = {
|
|
16918
16967
|
class: "ecs-sidebar-list-item",
|
|
16919
16968
|
role: "listitem"
|
|
16920
|
-
},
|
|
16969
|
+
}, fy = ["tabindex"], py = { class: "ecs-sidebar-list-item-content" }, my = { class: "ecs-sidebar-list-item-label" }, hy = { class: "ecs-sidebar-list-item-label-text" }, gy = { class: "ecs-sidebar-list-item-subline" }, _y = {
|
|
16921
16970
|
key: 0,
|
|
16922
16971
|
class: "ecs-sidebar-list-item-subline secondary"
|
|
16923
16972
|
};
|
|
16924
|
-
function
|
|
16973
|
+
function vy(t, n, r, i, a, u) {
|
|
16925
16974
|
let p = A("ecs-checkbox"), m = A("ecs-skeleton-loader"), h = A("ecs-avatar"), g = A("ecs-icon"), _ = A("ecs-flex-row");
|
|
16926
|
-
return T(), c("div",
|
|
16975
|
+
return T(), c("div", dy, [l("div", {
|
|
16927
16976
|
onClick: n[1] ||= (...e) => u.handleClick && u.handleClick(...e),
|
|
16928
16977
|
onKeydown: [n[2] ||= L((...e) => u.handleClick && u.handleClick(...e), ["enter"]), n[3] ||= L(R((...e) => u.handleClick && u.handleClick(...e), ["prevent"]), ["space"])],
|
|
16929
16978
|
class: b(["ecs-sidebar-list-item-state", {
|
|
@@ -16980,12 +17029,12 @@ function gy(t, n, r, i, a, u) {
|
|
|
16980
17029
|
size: "30",
|
|
16981
17030
|
color: r.iconColor
|
|
16982
17031
|
}, null, 8, ["type", "color"])) : s("", !0),
|
|
16983
|
-
l("div",
|
|
17032
|
+
l("div", py, [l("span", my, [r.loading ? (T(), o(m, {
|
|
16984
17033
|
key: 0,
|
|
16985
17034
|
type: "single",
|
|
16986
17035
|
"line-height": 4,
|
|
16987
17036
|
width: "random"
|
|
16988
|
-
})) : (T(), c(e, { key: 1 }, [l("span",
|
|
17037
|
+
})) : (T(), c(e, { key: 1 }, [l("span", hy, [k(t.$slots, "default", {}, void 0, !0)]), r.ai ? (T(), o(g, {
|
|
16989
17038
|
key: 0,
|
|
16990
17039
|
type: "ecai-icon",
|
|
16991
17040
|
size: "16",
|
|
@@ -16996,12 +17045,12 @@ function gy(t, n, r, i, a, u) {
|
|
|
16996
17045
|
gap: 8,
|
|
16997
17046
|
justify: "between"
|
|
16998
17047
|
}, {
|
|
16999
|
-
default: I(() => [l("span",
|
|
17048
|
+
default: I(() => [l("span", gy, [r.loading ? (T(), o(m, {
|
|
17000
17049
|
key: 0,
|
|
17001
17050
|
type: "single",
|
|
17002
17051
|
"line-height": 2,
|
|
17003
17052
|
width: "random"
|
|
17004
|
-
})) : r.subline ? (T(), c(e, { key: 1 }, [d(N(r.subline), 1)], 64)) : s("", !0)]), r.sublineSecondary || r.loading ? (T(), c("span",
|
|
17053
|
+
})) : r.subline ? (T(), c(e, { key: 1 }, [d(N(r.subline), 1)], 64)) : s("", !0)]), r.sublineSecondary || r.loading ? (T(), c("span", _y, [l("span", { class: b({ "on-hover": r.sublineSecondaryHover }) }, [r.loading ? (T(), o(m, {
|
|
17005
17054
|
key: 0,
|
|
17006
17055
|
type: "single",
|
|
17007
17056
|
"line-height": 2,
|
|
@@ -17011,9 +17060,9 @@ function gy(t, n, r, i, a, u) {
|
|
|
17011
17060
|
_: 1
|
|
17012
17061
|
})) : s("", !0)]),
|
|
17013
17062
|
r.loading ? s("", !0) : k(t.$slots, "meta", { key: 4 }, void 0, !0)
|
|
17014
|
-
], 42,
|
|
17063
|
+
], 42, fy)]);
|
|
17015
17064
|
}
|
|
17016
|
-
var
|
|
17065
|
+
var yy = /*#__PURE__*/ H(uy, [["render", vy], ["__scopeId", "data-v-66eb2ab6"]]), by = {
|
|
17017
17066
|
name: "ecs-structured-content",
|
|
17018
17067
|
components: {
|
|
17019
17068
|
EcsClickableArea: _r,
|
|
@@ -17083,14 +17132,14 @@ var _y = /*#__PURE__*/ H(cy, [["render", gy], ["__scopeId", "data-v-66eb2ab6"]])
|
|
|
17083
17132
|
this.internalCollapse = !this.internalCollapse, this.$emit("toggleCollapse", this.internalCollapse);
|
|
17084
17133
|
}
|
|
17085
17134
|
}
|
|
17086
|
-
},
|
|
17135
|
+
}, xy = {
|
|
17087
17136
|
key: 1,
|
|
17088
17137
|
class: "ecs-structured-content-left"
|
|
17089
|
-
},
|
|
17138
|
+
}, Sy = {
|
|
17090
17139
|
key: 2,
|
|
17091
17140
|
class: "ecs-structured-content-right"
|
|
17092
|
-
},
|
|
17093
|
-
function
|
|
17141
|
+
}, Cy = { class: "ecs-structured-content-collapse-inner" }, wy = { class: "ecs-structured-content-collapse-content" };
|
|
17142
|
+
function Ty(e, t, n, r, i, a) {
|
|
17094
17143
|
let u = A("ecs-skeleton-loader");
|
|
17095
17144
|
return T(), c("div", { class: b(["ecs-structured-content", [
|
|
17096
17145
|
{ clickable: n.clickable },
|
|
@@ -17113,7 +17162,7 @@ function Cy(e, t, n, r, i, a) {
|
|
|
17113
17162
|
key: 0,
|
|
17114
17163
|
type: "single",
|
|
17115
17164
|
width: "random"
|
|
17116
|
-
})) : (T(), c("div",
|
|
17165
|
+
})) : (T(), c("div", xy, [k(e.$slots, "default", {}, void 0, !0)])), e.$slots.extend && !n.loading ? (T(), c("div", Sy, [k(e.$slots, "extend", {}, void 0, !0)])) : s("", !0)]),
|
|
17117
17166
|
_: 3
|
|
17118
17167
|
}, 8, [
|
|
17119
17168
|
"onClick",
|
|
@@ -17128,12 +17177,12 @@ function Cy(e, t, n, r, i, a) {
|
|
|
17128
17177
|
collapsed: i.internalCollapse,
|
|
17129
17178
|
expanded: i.internalCollapse === !1
|
|
17130
17179
|
}])
|
|
17131
|
-
}, [l("div",
|
|
17180
|
+
}, [l("div", Cy, [l("div", wy, [n.loading ? (T(), o(u, {
|
|
17132
17181
|
key: 0,
|
|
17133
17182
|
type: "multi"
|
|
17134
17183
|
})) : k(e.$slots, "collapse", { key: 1 }, void 0, !0)])])], 2))], 2);
|
|
17135
17184
|
}
|
|
17136
|
-
var
|
|
17185
|
+
var Ey = /*#__PURE__*/ H(by, [["render", Ty], ["__scopeId", "data-v-823ad344"]]), Dy = {
|
|
17137
17186
|
name: "ecs-swatches-picker",
|
|
17138
17187
|
emits: ["update:modelValue"],
|
|
17139
17188
|
props: {
|
|
@@ -17181,14 +17230,14 @@ var wy = /*#__PURE__*/ H(vy, [["render", Cy], ["__scopeId", "data-v-823ad344"]])
|
|
|
17181
17230
|
this.selectedTitle = this.swatches[this.swatches.findIndex((e) => e.hex === this.selectedColor)].title;
|
|
17182
17231
|
}
|
|
17183
17232
|
}
|
|
17184
|
-
},
|
|
17233
|
+
}, Oy = [
|
|
17185
17234
|
"onClick",
|
|
17186
17235
|
"onKeydown",
|
|
17187
17236
|
"title",
|
|
17188
17237
|
"aria-label",
|
|
17189
17238
|
"aria-checked"
|
|
17190
17239
|
];
|
|
17191
|
-
function
|
|
17240
|
+
function ky(t, n, r, i, a, o) {
|
|
17192
17241
|
return T(), c("div", {
|
|
17193
17242
|
class: b(["ecs-swatches", o.sizeClass]),
|
|
17194
17243
|
role: "radiogroup"
|
|
@@ -17206,9 +17255,9 @@ function Dy(t, n, r, i, a, o) {
|
|
|
17206
17255
|
backgroundColor: e.hex,
|
|
17207
17256
|
color: e.hex
|
|
17208
17257
|
})
|
|
17209
|
-
}, null, 46,
|
|
17258
|
+
}, null, 46, Oy))), 128))], 2);
|
|
17210
17259
|
}
|
|
17211
|
-
var
|
|
17260
|
+
var Ay = /*#__PURE__*/ H(Dy, [["render", ky], ["__scopeId", "data-v-9c0b74cb"]]), jy = {
|
|
17212
17261
|
name: "ecs-tab",
|
|
17213
17262
|
props: {
|
|
17214
17263
|
show: {
|
|
@@ -17237,8 +17286,8 @@ var Oy = /*#__PURE__*/ H(Ty, [["render", Dy], ["__scopeId", "data-v-9c0b74cb"]])
|
|
|
17237
17286
|
mounted() {
|
|
17238
17287
|
!this.ariaLabeledBy || this.ariaLabeledBy.trim();
|
|
17239
17288
|
}
|
|
17240
|
-
},
|
|
17241
|
-
function
|
|
17289
|
+
}, My = ["aria-labelledby"];
|
|
17290
|
+
function Ny(e, t, n, r, i, a) {
|
|
17242
17291
|
return T(), c("div", {
|
|
17243
17292
|
class: b(["ecs-tab-pane", [
|
|
17244
17293
|
n.show ? "show" : "",
|
|
@@ -17247,9 +17296,9 @@ function jy(e, t, n, r, i, a) {
|
|
|
17247
17296
|
]]),
|
|
17248
17297
|
role: "tabpanel",
|
|
17249
17298
|
"aria-labelledby": n.ariaLabeledBy
|
|
17250
|
-
}, [k(e.$slots, "default", {}, void 0, !0)], 10,
|
|
17299
|
+
}, [k(e.$slots, "default", {}, void 0, !0)], 10, My);
|
|
17251
17300
|
}
|
|
17252
|
-
var
|
|
17301
|
+
var Py = /*#__PURE__*/ H(jy, [["render", Ny], ["__scopeId", "data-v-2c119fff"]]), Fy = {
|
|
17253
17302
|
name: "ecs-tab-button",
|
|
17254
17303
|
emits: ["click", "tabNavigation"],
|
|
17255
17304
|
components: {
|
|
@@ -17332,16 +17381,16 @@ var My = /*#__PURE__*/ H(ky, [["render", jy], ["__scopeId", "data-v-2c119fff"]])
|
|
|
17332
17381
|
});
|
|
17333
17382
|
}
|
|
17334
17383
|
}
|
|
17335
|
-
},
|
|
17384
|
+
}, Iy = [
|
|
17336
17385
|
"disabled",
|
|
17337
17386
|
"aria-selected",
|
|
17338
17387
|
"aria-controls",
|
|
17339
17388
|
"aria-label"
|
|
17340
|
-
],
|
|
17389
|
+
], Ly = {
|
|
17341
17390
|
key: 2,
|
|
17342
17391
|
class: "shortcut"
|
|
17343
17392
|
};
|
|
17344
|
-
function
|
|
17393
|
+
function Ry(e, t, n, r, i, a) {
|
|
17345
17394
|
let u = A("ecs-icon"), d = A("ecs-sticker"), p = A("ecs-focus-ring");
|
|
17346
17395
|
return T(), c("button", {
|
|
17347
17396
|
class: b(["ecs-tab-button", [
|
|
@@ -17369,12 +17418,12 @@ function Iy(e, t, n, r, i, a) {
|
|
|
17369
17418
|
type: n.sticker
|
|
17370
17419
|
}, null, 8, ["type"])) : s("", !0),
|
|
17371
17420
|
k(e.$slots, "default", {}, void 0, !0),
|
|
17372
|
-
n.shortcut ? (T(), c("span",
|
|
17421
|
+
n.shortcut ? (T(), c("span", Ly, N(n.shortcut), 1)) : s("", !0),
|
|
17373
17422
|
f(p, { inset: 0 }),
|
|
17374
17423
|
t[2] ||= l("span", { class: "hover" }, null, -1)
|
|
17375
|
-
], 42,
|
|
17424
|
+
], 42, Iy);
|
|
17376
17425
|
}
|
|
17377
|
-
var
|
|
17426
|
+
var zy = /*#__PURE__*/ H(Fy, [["render", Ry], ["__scopeId", "data-v-e723f4d5"]]), By = {
|
|
17378
17427
|
name: "ecs-tag",
|
|
17379
17428
|
emits: ["click"],
|
|
17380
17429
|
components: {
|
|
@@ -17457,11 +17506,11 @@ var Ly = /*#__PURE__*/ H(Ny, [["render", Iy], ["__scopeId", "data-v-e723f4d5"]])
|
|
|
17457
17506
|
methods: { handleClick(e) {
|
|
17458
17507
|
this.$emit("click", e);
|
|
17459
17508
|
} }
|
|
17460
|
-
},
|
|
17509
|
+
}, Vy = ["title"], Hy = {
|
|
17461
17510
|
key: 1,
|
|
17462
17511
|
class: "count"
|
|
17463
17512
|
};
|
|
17464
|
-
function
|
|
17513
|
+
function Uy(e, t, n, r, i, a) {
|
|
17465
17514
|
let l = A("ecs-skeleton-loader"), u = A("ecs-focus-ring");
|
|
17466
17515
|
return T(), o(M(n.hover ? "button" : "span"), {
|
|
17467
17516
|
class: b(["ecs-tag", [
|
|
@@ -17480,9 +17529,9 @@ function Vy(e, t, n, r, i, a) {
|
|
|
17480
17529
|
key: 0,
|
|
17481
17530
|
class: "path",
|
|
17482
17531
|
title: n.path
|
|
17483
|
-
}, "../", 8,
|
|
17532
|
+
}, "../", 8, Vy)) : s("", !0),
|
|
17484
17533
|
k(e.$slots, "default", {}, void 0, !0),
|
|
17485
|
-
n.count ? (T(), c("span",
|
|
17534
|
+
n.count ? (T(), c("span", Hy, N(n.count), 1)) : s("", !0),
|
|
17486
17535
|
n.loading ? (T(), o(l, {
|
|
17487
17536
|
key: 2,
|
|
17488
17537
|
type: "single",
|
|
@@ -17500,14 +17549,14 @@ function Vy(e, t, n, r, i, a) {
|
|
|
17500
17549
|
"disabled"
|
|
17501
17550
|
]);
|
|
17502
17551
|
}
|
|
17503
|
-
var
|
|
17552
|
+
var Wy = /*#__PURE__*/ H(By, [["render", Uy], ["__scopeId", "data-v-569d32e3"]]), Gy = { name: "ecs-tag-cloud" }, Ky = {
|
|
17504
17553
|
class: "ecs-tag-cloud",
|
|
17505
17554
|
role: "list"
|
|
17506
17555
|
};
|
|
17507
|
-
function
|
|
17508
|
-
return T(), c("div",
|
|
17556
|
+
function qy(e, t, n, r, i, a) {
|
|
17557
|
+
return T(), c("div", Ky, [k(e.$slots, "default", {}, void 0, !0)]);
|
|
17509
17558
|
}
|
|
17510
|
-
var
|
|
17559
|
+
var Jy = /*#__PURE__*/ H(Gy, [["render", qy], ["__scopeId", "data-v-4334fe7e"]]), Yy = {
|
|
17511
17560
|
name: "ecs-toast",
|
|
17512
17561
|
emits: ["action"],
|
|
17513
17562
|
components: { EcsFocusRing: W },
|
|
@@ -17530,7 +17579,7 @@ var Ky = /*#__PURE__*/ H(Uy, [["render", Gy], ["__scopeId", "data-v-4334fe7e"]])
|
|
|
17530
17579
|
return this.theme;
|
|
17531
17580
|
} }
|
|
17532
17581
|
};
|
|
17533
|
-
function
|
|
17582
|
+
function Xy(e, t, n, r, i, a) {
|
|
17534
17583
|
let o = A("ecs-focus-ring");
|
|
17535
17584
|
return T(), c("div", {
|
|
17536
17585
|
class: b(["ecs-toast", a.typeClass]),
|
|
@@ -17546,32 +17595,32 @@ function Jy(e, t, n, r, i, a) {
|
|
|
17546
17595
|
radius: 6
|
|
17547
17596
|
})])) : s("", !0)], 2);
|
|
17548
17597
|
}
|
|
17549
|
-
var
|
|
17598
|
+
var Zy = /*#__PURE__*/ H(Yy, [["render", Xy], ["__scopeId", "data-v-61082fed"]]), Qy = { name: "ecs-toasts" }, $y = {
|
|
17550
17599
|
class: "ecs-toasts",
|
|
17551
17600
|
"aria-live": "polite"
|
|
17552
17601
|
};
|
|
17553
|
-
function
|
|
17554
|
-
return T(), c("div",
|
|
17602
|
+
function eb(e, t, n, r, a, o) {
|
|
17603
|
+
return T(), c("div", $y, [f(i, { name: "transition-toast" }, {
|
|
17555
17604
|
default: I(() => [k(e.$slots, "default", {}, void 0, !0)]),
|
|
17556
17605
|
_: 3
|
|
17557
17606
|
})]);
|
|
17558
17607
|
}
|
|
17559
|
-
var
|
|
17608
|
+
var tb = /*#__PURE__*/ H(Qy, [["render", eb], ["__scopeId", "data-v-451fee48"]]), nb = {
|
|
17560
17609
|
name: "ecs-toolbar",
|
|
17561
17610
|
props: { type: {
|
|
17562
17611
|
type: String,
|
|
17563
17612
|
validator: (e) => ["viewer", "index"].includes(e),
|
|
17564
17613
|
default: "index"
|
|
17565
17614
|
} }
|
|
17566
|
-
},
|
|
17615
|
+
}, rb = {
|
|
17567
17616
|
class: "ecs-toolbar",
|
|
17568
17617
|
role: "toolbar",
|
|
17569
17618
|
"aria-label": "Main"
|
|
17570
17619
|
};
|
|
17571
|
-
function
|
|
17572
|
-
return T(), c("div",
|
|
17620
|
+
function ib(e, t, n, r, i, a) {
|
|
17621
|
+
return T(), c("div", rb, [k(e.$slots, "default", {}, void 0, !0)]);
|
|
17573
17622
|
}
|
|
17574
|
-
var
|
|
17623
|
+
var ab = /*#__PURE__*/ H(nb, [["render", ib], ["__scopeId", "data-v-e0681f01"]]), ob = {
|
|
17575
17624
|
name: "ecs-transcript-state",
|
|
17576
17625
|
emits: ["click"],
|
|
17577
17626
|
components: {
|
|
@@ -17597,17 +17646,17 @@ var rb = /*#__PURE__*/ H(eb, [["render", nb], ["__scopeId", "data-v-e0681f01"]])
|
|
|
17597
17646
|
default: !1
|
|
17598
17647
|
}
|
|
17599
17648
|
}
|
|
17600
|
-
},
|
|
17649
|
+
}, sb = ["aria-busy"], cb = {
|
|
17601
17650
|
key: 0,
|
|
17602
17651
|
class: "healthy"
|
|
17603
|
-
},
|
|
17652
|
+
}, lb = {
|
|
17604
17653
|
key: 1,
|
|
17605
17654
|
class: "corrupted"
|
|
17606
|
-
},
|
|
17655
|
+
}, ub = {
|
|
17607
17656
|
key: 2,
|
|
17608
17657
|
class: "loading"
|
|
17609
17658
|
};
|
|
17610
|
-
function
|
|
17659
|
+
function db(t, n, r, i, a, u) {
|
|
17611
17660
|
let d = A("ecs-skeleton-loader"), p = A("ecs-icon");
|
|
17612
17661
|
return T(), c("div", {
|
|
17613
17662
|
onClick: n[0] ||= (e) => t.$emit("click", e),
|
|
@@ -17620,16 +17669,16 @@ function lb(t, n, r, i, a, u) {
|
|
|
17620
17669
|
height: 32
|
|
17621
17670
|
})) : (T(), c(e, { key: 1 }, [
|
|
17622
17671
|
n[1] ||= l("div", { class: "background" }, null, -1),
|
|
17623
|
-
r.state == "healthy" ? (T(), c("div",
|
|
17624
|
-
r.state == "corrupted" ? (T(), c("div",
|
|
17625
|
-
r.state == "loading" ? (T(), c("span",
|
|
17672
|
+
r.state == "healthy" ? (T(), c("div", cb)) : s("", !0),
|
|
17673
|
+
r.state == "corrupted" ? (T(), c("div", lb)) : s("", !0),
|
|
17674
|
+
r.state == "loading" ? (T(), c("span", ub, [f(p, {
|
|
17626
17675
|
type: "loading",
|
|
17627
17676
|
size: "18px",
|
|
17628
17677
|
color: "#202127"
|
|
17629
17678
|
})])) : s("", !0)
|
|
17630
|
-
], 64))], 10,
|
|
17679
|
+
], 64))], 10, sb);
|
|
17631
17680
|
}
|
|
17632
|
-
var
|
|
17681
|
+
var fb = /*#__PURE__*/ H(ob, [["render", db], ["__scopeId", "data-v-8f3aef8d"]]), pb = {
|
|
17633
17682
|
name: "ecs-tree-list",
|
|
17634
17683
|
props: {
|
|
17635
17684
|
id: { type: String },
|
|
@@ -17643,15 +17692,15 @@ var ub = /*#__PURE__*/ H(ib, [["render", lb], ["__scopeId", "data-v-8f3aef8d"]])
|
|
|
17643
17692
|
default: !1
|
|
17644
17693
|
}
|
|
17645
17694
|
}
|
|
17646
|
-
},
|
|
17647
|
-
function
|
|
17695
|
+
}, mb = ["id", "role"];
|
|
17696
|
+
function hb(e, t, n, r, i, a) {
|
|
17648
17697
|
return T(), c("div", {
|
|
17649
17698
|
class: b(["ecs-tree-view-list", { "ecs-tree-view-list-indent": n.indent }]),
|
|
17650
17699
|
id: n.id,
|
|
17651
17700
|
role: n.role
|
|
17652
|
-
}, [k(e.$slots, "default", {}, void 0, !0)], 10,
|
|
17701
|
+
}, [k(e.$slots, "default", {}, void 0, !0)], 10, mb);
|
|
17653
17702
|
}
|
|
17654
|
-
var
|
|
17703
|
+
var gb = /*#__PURE__*/ H(pb, [["render", hb], ["__scopeId", "data-v-6af94f50"]]), _b = {
|
|
17655
17704
|
name: "ecs-tree-list-item",
|
|
17656
17705
|
emits: ["click", "toggled"],
|
|
17657
17706
|
components: {
|
|
@@ -17801,17 +17850,17 @@ var mb = /*#__PURE__*/ H(db, [["render", pb], ["__scopeId", "data-v-6af94f50"]])
|
|
|
17801
17850
|
created() {
|
|
17802
17851
|
this.expandId = this.generateUniqueId();
|
|
17803
17852
|
}
|
|
17804
|
-
},
|
|
17853
|
+
}, vb = ["tabindex"], yb = {
|
|
17805
17854
|
key: 1,
|
|
17806
17855
|
class: "icon-container"
|
|
17807
|
-
},
|
|
17856
|
+
}, bb = {
|
|
17808
17857
|
key: 2,
|
|
17809
17858
|
class: "ecs-tree-view-entry-control"
|
|
17810
|
-
},
|
|
17859
|
+
}, xb = ["disabled"], Sb = {
|
|
17811
17860
|
key: 4,
|
|
17812
17861
|
class: "ecs-tree-view-entry-actions"
|
|
17813
|
-
},
|
|
17814
|
-
function
|
|
17862
|
+
}, Cb = ["id", "aria-hidden"];
|
|
17863
|
+
function wb(e, t, n, r, i, a) {
|
|
17815
17864
|
let u = A("ecs-button-collapse"), d = A("ecs-icon"), p = A("ecs-sticker"), m = A("ecs-focus-ring");
|
|
17816
17865
|
return T(), c("div", null, [l("div", {
|
|
17817
17866
|
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"])],
|
|
@@ -17848,7 +17897,7 @@ function Sb(e, t, n, r, i, a) {
|
|
|
17848
17897
|
"aria-busy",
|
|
17849
17898
|
"onClick"
|
|
17850
17899
|
])) : s("", !0),
|
|
17851
|
-
n.icon ? (T(), c("div",
|
|
17900
|
+
n.icon ? (T(), c("div", yb, [f(d, {
|
|
17852
17901
|
type: n.icon,
|
|
17853
17902
|
color: n.iconColor,
|
|
17854
17903
|
size: a.iconSize
|
|
@@ -17866,37 +17915,37 @@ function Sb(e, t, n, r, i, a) {
|
|
|
17866
17915
|
"color",
|
|
17867
17916
|
"style"
|
|
17868
17917
|
])) : s("", !0)])) : s("", !0),
|
|
17869
|
-
e.$slots.control ? (T(), c("div",
|
|
17918
|
+
e.$slots.control ? (T(), c("div", bb, [k(e.$slots, "control", {}, void 0, !0)])) : s("", !0),
|
|
17870
17919
|
l("span", {
|
|
17871
17920
|
disabled: n.disabled,
|
|
17872
17921
|
onClick: t[0] ||= (t) => !n.disabled && e.$emit("click", t),
|
|
17873
17922
|
class: b(["title", [n.titleOverflow ? "overflow" : "", n.disabled ? "disabled" : ""]])
|
|
17874
|
-
}, [k(e.$slots, "default", {}, void 0, !0)], 10,
|
|
17923
|
+
}, [k(e.$slots, "default", {}, void 0, !0)], 10, xb),
|
|
17875
17924
|
n.afterLabel ? (T(), c("span", {
|
|
17876
17925
|
key: 3,
|
|
17877
17926
|
onClick: t[1] ||= (t) => !n.disabled && e.$emit("click", t),
|
|
17878
17927
|
class: "after-label"
|
|
17879
17928
|
}, N(n.afterLabel), 1)) : s("", !0),
|
|
17880
|
-
e.$slots.actions ? (T(), c("div",
|
|
17929
|
+
e.$slots.actions ? (T(), c("div", Sb, [k(e.$slots, "actions", {}, void 0, !0)])) : s("", !0),
|
|
17881
17930
|
a.isSelectable ? (T(), o(m, { key: 5 })) : s("", !0)
|
|
17882
|
-
], 42,
|
|
17931
|
+
], 42, vb), e.$slots.collapse ? (T(), c("div", {
|
|
17883
17932
|
key: 0,
|
|
17884
17933
|
class: b([i.isVisible ? "collapse-show" : "collapse-hide", "collapsable"]),
|
|
17885
17934
|
id: i.expandId,
|
|
17886
17935
|
"aria-hidden": i.isVisible ? "false" : "true"
|
|
17887
|
-
}, [k(e.$slots, "collapse", {}, void 0, !0)], 10,
|
|
17936
|
+
}, [k(e.$slots, "collapse", {}, void 0, !0)], 10, Cb)) : s("", !0)]);
|
|
17888
17937
|
}
|
|
17889
|
-
var
|
|
17890
|
-
function
|
|
17891
|
-
return T(), c("div",
|
|
17938
|
+
var Tb = /*#__PURE__*/ H(_b, [["render", wb], ["__scopeId", "data-v-81e7629c"]]), Eb = { name: "ecs-tree-list-headline" }, Db = { class: "ecs-tree-view-headline" };
|
|
17939
|
+
function Ob(e, t, n, r, i, a) {
|
|
17940
|
+
return T(), c("div", Db, [k(e.$slots, "default", {}, void 0, !0)]);
|
|
17892
17941
|
}
|
|
17893
|
-
var
|
|
17942
|
+
var kb = /*#__PURE__*/ H(Eb, [["render", Ob], ["__scopeId", "data-v-a5153e06"]]), Ab = {
|
|
17894
17943
|
name: "EcsTypeConfirmation",
|
|
17895
17944
|
emits: ["update:modelValue", "bypassConfirm"],
|
|
17896
17945
|
components: {
|
|
17897
|
-
EcsInput:
|
|
17946
|
+
EcsInput: Kd,
|
|
17898
17947
|
EcsAlert: Ce,
|
|
17899
|
-
EcsFormGroup:
|
|
17948
|
+
EcsFormGroup: gp,
|
|
17900
17949
|
EcsCheckbox: Tr
|
|
17901
17950
|
},
|
|
17902
17951
|
mixins: [Y],
|
|
@@ -17966,15 +18015,15 @@ var Db = /*#__PURE__*/ H(wb, [["render", Eb], ["__scopeId", "data-v-a5153e06"]])
|
|
|
17966
18015
|
mounted() {
|
|
17967
18016
|
this.uniqueId = "input-" + this.generateUniqueId(), this.bypassActive && this.alertType !== "none" && this.$emit("update:modelValue", !0);
|
|
17968
18017
|
}
|
|
17969
|
-
},
|
|
17970
|
-
function
|
|
18018
|
+
}, jb = ["for"], Mb = { class: "ecs-type-confirmation-verb" }, Nb = ["for"], Pb = { class: "ecs-type-confirmation-verb" };
|
|
18019
|
+
function Fb(e, t, n, r, i, a) {
|
|
17971
18020
|
let c = A("ecs-input"), u = A("ecs-form-group"), p = A("ecs-checkbox"), m = A("ecs-alert");
|
|
17972
18021
|
return n.alertType == "none" ? (T(), o(u, {
|
|
17973
18022
|
key: 1,
|
|
17974
18023
|
class: "ecs-type-confirmation-input"
|
|
17975
18024
|
}, {
|
|
17976
18025
|
default: I(() => [
|
|
17977
|
-
l("label", { for: i.uniqueId }, N(a.text), 9,
|
|
18026
|
+
l("label", { for: i.uniqueId }, N(a.text), 9, Nb),
|
|
17978
18027
|
f(c, {
|
|
17979
18028
|
modelValue: i.inputValue,
|
|
17980
18029
|
"onUpdate:modelValue": t[2] ||= (e) => i.inputValue = e,
|
|
@@ -17988,7 +18037,7 @@ function Nb(e, t, n, r, i, a) {
|
|
|
17988
18037
|
"error",
|
|
17989
18038
|
"id"
|
|
17990
18039
|
]),
|
|
17991
|
-
l("span",
|
|
18040
|
+
l("span", Pb, N(a.upperCaseVerb), 1)
|
|
17992
18041
|
]),
|
|
17993
18042
|
_: 1
|
|
17994
18043
|
})) : (T(), o(m, {
|
|
@@ -18003,7 +18052,7 @@ function Nb(e, t, n, r, i, a) {
|
|
|
18003
18052
|
class: "ecs-type-confirmation-input"
|
|
18004
18053
|
}, {
|
|
18005
18054
|
default: I(() => [
|
|
18006
|
-
l("label", { for: i.uniqueId }, N(a.text), 9,
|
|
18055
|
+
l("label", { for: i.uniqueId }, N(a.text), 9, jb),
|
|
18007
18056
|
f(c, {
|
|
18008
18057
|
modelValue: i.inputValue,
|
|
18009
18058
|
"onUpdate:modelValue": t[0] ||= (e) => i.inputValue = e,
|
|
@@ -18017,7 +18066,7 @@ function Nb(e, t, n, r, i, a) {
|
|
|
18017
18066
|
"error",
|
|
18018
18067
|
"id"
|
|
18019
18068
|
]),
|
|
18020
|
-
l("span",
|
|
18069
|
+
l("span", Mb, N(a.upperCaseVerb), 1)
|
|
18021
18070
|
]),
|
|
18022
18071
|
_: 1
|
|
18023
18072
|
})),
|
|
@@ -18034,7 +18083,7 @@ function Nb(e, t, n, r, i, a) {
|
|
|
18034
18083
|
_: 3
|
|
18035
18084
|
}, 8, ["headline", "type"]));
|
|
18036
18085
|
}
|
|
18037
|
-
var
|
|
18086
|
+
var Ib = /*#__PURE__*/ H(Ab, [["render", Fb], ["__scopeId", "data-v-1e0fa905"]]), Lb = {
|
|
18038
18087
|
name: "ecs-video",
|
|
18039
18088
|
props: {
|
|
18040
18089
|
posterImage: {
|
|
@@ -18058,14 +18107,14 @@ var Pb = /*#__PURE__*/ H(Ob, [["render", Nb], ["__scopeId", "data-v-1e0fa905"]])
|
|
|
18058
18107
|
default: null
|
|
18059
18108
|
}
|
|
18060
18109
|
}
|
|
18061
|
-
},
|
|
18110
|
+
}, Rb = [
|
|
18062
18111
|
"poster",
|
|
18063
18112
|
"autoplay",
|
|
18064
18113
|
"loop",
|
|
18065
18114
|
"controls",
|
|
18066
18115
|
"src"
|
|
18067
18116
|
];
|
|
18068
|
-
function
|
|
18117
|
+
function zb(e, t, n, r, i, a) {
|
|
18069
18118
|
return T(), c("video", {
|
|
18070
18119
|
poster: n.posterImage,
|
|
18071
18120
|
autoplay: n.autoplay,
|
|
@@ -18073,9 +18122,9 @@ function Lb(e, t, n, r, i, a) {
|
|
|
18073
18122
|
controls: n.controls,
|
|
18074
18123
|
class: "ecs-video",
|
|
18075
18124
|
src: n.mp4Source
|
|
18076
|
-
}, null, 8,
|
|
18125
|
+
}, null, 8, Rb);
|
|
18077
18126
|
}
|
|
18078
|
-
var
|
|
18127
|
+
var Bb = /*#__PURE__*/ H(Lb, [["render", zb], ["__scopeId", "data-v-ce84fcb3"]]), Vb = {
|
|
18079
18128
|
name: "ecs-window",
|
|
18080
18129
|
components: {
|
|
18081
18130
|
EcsButton: X,
|
|
@@ -18246,11 +18295,11 @@ var Rb = /*#__PURE__*/ H(Fb, [["render", Lb], ["__scopeId", "data-v-ce84fcb3"]])
|
|
|
18246
18295
|
this.isFocused = !1, this.$emit("blur");
|
|
18247
18296
|
}
|
|
18248
18297
|
}
|
|
18249
|
-
},
|
|
18298
|
+
}, Hb = { class: "ecs-window-content scrollbar scrollbar-sml" }, Ub = {
|
|
18250
18299
|
key: 1,
|
|
18251
18300
|
class: "ecs-window-footer"
|
|
18252
18301
|
};
|
|
18253
|
-
function
|
|
18302
|
+
function Wb(t, n, r, i, a, o) {
|
|
18254
18303
|
let u = A("ecs-text-v2"), p = A("ecs-button");
|
|
18255
18304
|
return r.show ? (T(), c("div", {
|
|
18256
18305
|
key: 0,
|
|
@@ -18287,8 +18336,8 @@ function Hb(t, n, r, i, a, o) {
|
|
|
18287
18336
|
"aria-label": "Close window",
|
|
18288
18337
|
title: "Close"
|
|
18289
18338
|
})], 32)) : s("", !0),
|
|
18290
|
-
l("div",
|
|
18291
|
-
t.$slots.footer ? (T(), c("div",
|
|
18339
|
+
l("div", Hb, [k(t.$slots, "default", {}, void 0, !0)]),
|
|
18340
|
+
t.$slots.footer ? (T(), c("div", Ub, [k(t.$slots, "footer", {}, void 0, !0)])) : s("", !0),
|
|
18292
18341
|
r.resizable ? (T(), c(e, { key: 2 }, [
|
|
18293
18342
|
l("div", {
|
|
18294
18343
|
onMousedown: n[2] ||= (e) => o.startResize("right"),
|
|
@@ -18307,6 +18356,6 @@ function Hb(t, n, r, i, a, o) {
|
|
|
18307
18356
|
], 64)) : s("", !0)
|
|
18308
18357
|
], 38)) : s("", !0);
|
|
18309
18358
|
}
|
|
18310
|
-
var
|
|
18359
|
+
var Gb = /*#__PURE__*/ H(Vb, [["render", Wb], ["__scopeId", "data-v-1c653eb3"]]);
|
|
18311
18360
|
//#endregion
|
|
18312
|
-
export { ke as EcsActionToolbar, Ce as EcsAlert, Fe as EcsAudio, Ge as EcsAvatar, Je as EcsBanner, Ze as EcsBreadcrumb, tt as EcsBreadcrumbButton, at as EcsBreadcrumbTitle, Mi as EcsBulkSelector, X as EcsButton, Bi as EcsButtonCollapse, ka as EcsButtonContext, Na as EcsButtonContextGroup, La as EcsButtonDialog, Ii as EcsButtonGroup, Va as EcsButtonMore, Ka as EcsButtonTable, Ti as EcsButtonToolbar, Xa as EcsButtonToolbarGroup, no as EcsCard, uo as EcsChatConversation, Co as EcsChatMessage, Tr as EcsCheckbox, oo as EcsCitationLine, _r as EcsClickableArea, zo as EcsCollapse, qo as EcsCollectionControl,
|
|
18361
|
+
export { ke as EcsActionToolbar, Ce as EcsAlert, Fe as EcsAudio, Ge as EcsAvatar, Je as EcsBanner, Ze as EcsBreadcrumb, tt as EcsBreadcrumbButton, at as EcsBreadcrumbTitle, Mi as EcsBulkSelector, X as EcsButton, Bi as EcsButtonCollapse, ka as EcsButtonContext, Na as EcsButtonContextGroup, La as EcsButtonDialog, Ii as EcsButtonGroup, Va as EcsButtonMore, Ka as EcsButtonTable, Ti as EcsButtonToolbar, Xa as EcsButtonToolbarGroup, no as EcsCard, uo as EcsChatConversation, Co as EcsChatMessage, Tr as EcsCheckbox, oo as EcsCitationLine, _r as EcsClickableArea, zo as EcsCollapse, qo as EcsCollectionControl, Fc as EcsColorPicker, Rc as EcsColorPickerInput, Ts as EcsComment, ks as EcsCommentList, ls as EcsContentCard, Ao as EcsContextMenu, Jc as EcsDataCard, Qc as EcsDataCardList, ul as EcsDataCardRow, gl as EcsDataGrid, lu as EcsDataGridCell, nu as EcsDataGridGroup, Ql as EcsDataGridHeadCell, bl as EcsDataGridRow, Tl as EcsDataGridRowGroup, pu as EcsDataList, bu as EcsDataListItem, wu as EcsDialog, Au as EcsDialogHeader, Lu as EcsDirectoryEntry, Ku as EcsDocumentState, ed as EcsDonutChart, bd as EcsDropzone, Cd as EcsEcaiWrapper, od as EcsEmptyState, Ad as EcsEntryLink, Vd as EcsExcerptSnippet, wf as EcsExhibitStickerEditor, ju as EcsFavicon, Ur as EcsFileIcon, kf as EcsFileList, Gf as EcsFileListItem, Tf as EcsFillIcon, qf as EcsFlag, Xf as EcsFlexCol, K as EcsFlexRow, W as EcsFocusRing, pp as EcsFolderSelector, mr as EcsFormCheck, gp as EcsFormGroup, Sp as EcsFormHeadline, Ap as EcsFormSet, ps as EcsFormatted, Np as EcsHighlight, U as EcsIcon, Ip as EcsIllustration, Qp as EcsIndexListItem, Gp as EcsIndexToolbar, tm as EcsInfoTooltip, sm as EcsInlineEdit, Om as EcsInplace, Kd as EcsInput, um as EcsInputAddon, tp as EcsInputClear, mm as EcsInputConnector, bm as EcsInputFloat, Cm as EcsInputGroup, ap as EcsInputSearch, Nm as EcsJumperDocument, Bm as EcsJumperIndex, th as EcsJumperPage, Nh as EcsLayoutDataTable, bh as EcsLayoutDirectory, fh as EcsLayoutIndex, Vh as EcsLegendItem, Jh as EcsLogMessage, $h as EcsMap, ag as EcsModal, _g as EcsModalFooter, dg as EcsModalHeader, Ng as EcsMultiselectOption, wg as EcsMultiselectSearchToken, Dg as EcsMultiselectToken, Zg as EcsOverlay, a_ as EcsPagination, ih as EcsPane, nl as EcsPartyEntry, cr as EcsPopover, p_ as EcsPopoverHeader, dr as EcsPopoverList, Xd as EcsPopoverListHeadline, bi as EcsPopoverListItem, ud as EcsProgress, H_ as EcsQuicklink, Ar as EcsRadiobutton, J_ as EcsRange, C_ as EcsRatingFavorability, v_ as EcsRatingStarRead, rv as EcsRatingStarWrite, cp as EcsScrollContainer, sv as EcsSection, pv as EcsSegment, Pl as EcsSelect, wv as EcsSelectTile, vv as EcsSelectionGrid, Oi as EcsSeparator, Ov as EcsSequenceMap, Nv as EcsSequenceMapButton, mo as EcsShinyText, Wv as EcsSidebar, qv as EcsSidebarContent, Xv as EcsSidebarFooter, ay as EcsSidebarHeader, ly as EcsSidebarList, yy as EcsSidebarListItem, G as EcsSkeletonLoader, Vr as EcsSortbutton, ah as EcsSplitpanes, Tu as EcsStateIcon, Le as EcsSticker, Ey as EcsStructuredContent, Ay as EcsSwatchesPicker, Rr as EcsSwitch, Py as EcsTab, Lv as EcsTabBar, zy as EcsTabButton, Bv as EcsTabs, Wy as EcsTag, Jy as EcsTagCloud, br as EcsTextV2, Zy as EcsToast, tb as EcsToasts, ab as EcsToolbar, fb as EcsTranscriptState, gb as EcsTreeList, kb as EcsTreeListHeadline, Tb as EcsTreeListItem, Ib as EcsTypeConfirmation, Bb as EcsVideo, Gb as EcsWindow };
|