@breadstone/mosaik-elements-svelte 0.0.164 → 0.0.165
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/CHANGELOG.md +6 -0
- package/index.mjs +340 -310
- package/package.json +3 -3
package/index.mjs
CHANGED
|
@@ -7568,7 +7568,7 @@ function aF(o) {
|
|
|
7568
7568
|
</ul>
|
|
7569
7569
|
`;
|
|
7570
7570
|
}
|
|
7571
|
-
const
|
|
7571
|
+
const et = {
|
|
7572
7572
|
/**
|
|
7573
7573
|
* `horizontal` - Layout should be horizontally oriented.
|
|
7574
7574
|
*/
|
|
@@ -7579,10 +7579,10 @@ const ot = {
|
|
|
7579
7579
|
Vertical: "vertical"
|
|
7580
7580
|
};
|
|
7581
7581
|
function q_(o) {
|
|
7582
|
-
return o ===
|
|
7582
|
+
return o === et.Horizontal;
|
|
7583
7583
|
}
|
|
7584
7584
|
function G_(o) {
|
|
7585
|
-
return o ===
|
|
7585
|
+
return o === et.Vertical;
|
|
7586
7586
|
}
|
|
7587
7587
|
var iF = function(o, t, e, r) {
|
|
7588
7588
|
var a = arguments.length, n = a < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, e) : r, i;
|
|
@@ -7592,7 +7592,7 @@ var iF = function(o, t, e, r) {
|
|
|
7592
7592
|
}, W_ = function(o, t) {
|
|
7593
7593
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
7594
7594
|
};
|
|
7595
|
-
const
|
|
7595
|
+
const Mt = (o) => {
|
|
7596
7596
|
class t extends o {
|
|
7597
7597
|
// #region Fields
|
|
7598
7598
|
_orientation;
|
|
@@ -7604,7 +7604,7 @@ const Ft = (o) => {
|
|
|
7604
7604
|
* @public
|
|
7605
7605
|
*/
|
|
7606
7606
|
constructor(...r) {
|
|
7607
|
-
super(r), this._orientation =
|
|
7607
|
+
super(r), this._orientation = et.Horizontal;
|
|
7608
7608
|
}
|
|
7609
7609
|
// #endregion
|
|
7610
7610
|
// #region Properties
|
|
@@ -7648,7 +7648,7 @@ const Ft = (o) => {
|
|
|
7648
7648
|
}
|
|
7649
7649
|
}
|
|
7650
7650
|
return iF([
|
|
7651
|
-
b({ type:
|
|
7651
|
+
b({ type: et }),
|
|
7652
7652
|
W_("design:type", String),
|
|
7653
7653
|
W_("design:paramtypes", [String])
|
|
7654
7654
|
], t.prototype, "orientation", null), t;
|
|
@@ -8210,7 +8210,7 @@ var Km = function(o, t, e, r) {
|
|
|
8210
8210
|
}, fc = function(o, t) {
|
|
8211
8211
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
8212
8212
|
};
|
|
8213
|
-
let Nu = class extends P(G(Z(
|
|
8213
|
+
let Nu = class extends P(G(Z(Mt(H)))) {
|
|
8214
8214
|
// #region Fields
|
|
8215
8215
|
_indicated;
|
|
8216
8216
|
_total;
|
|
@@ -8725,9 +8725,9 @@ const ji = (o) => {
|
|
|
8725
8725
|
*/
|
|
8726
8726
|
getFlexDirection() {
|
|
8727
8727
|
switch (this.orientation) {
|
|
8728
|
-
case
|
|
8728
|
+
case et.Horizontal:
|
|
8729
8729
|
return this._reverse ? "row-reverse" : "row";
|
|
8730
|
-
case
|
|
8730
|
+
case et.Vertical:
|
|
8731
8731
|
return this._reverse ? "column-reverse" : "column";
|
|
8732
8732
|
default:
|
|
8733
8733
|
return this._reverse ? "row-reverse" : "row";
|
|
@@ -9971,7 +9971,7 @@ var Qm = function(o, t, e, r) {
|
|
|
9971
9971
|
}, bc = function(o, t) {
|
|
9972
9972
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
9973
9973
|
};
|
|
9974
|
-
let Bu = class extends P(ji(
|
|
9974
|
+
let Bu = class extends P(ji(Mt(Io(Jm(tf))))) {
|
|
9975
9975
|
// #region Fields
|
|
9976
9976
|
_horizontalAlignment;
|
|
9977
9977
|
_verticalAlignment;
|
|
@@ -10066,7 +10066,7 @@ Bu = Qm([
|
|
|
10066
10066
|
}),
|
|
10067
10067
|
bc("design:paramtypes", [])
|
|
10068
10068
|
], Bu);
|
|
10069
|
-
const
|
|
10069
|
+
const ot = {
|
|
10070
10070
|
/**
|
|
10071
10071
|
* `default` - The default appearance style.
|
|
10072
10072
|
* @default
|
|
@@ -10109,7 +10109,7 @@ const ct = (o) => {
|
|
|
10109
10109
|
* @public
|
|
10110
10110
|
*/
|
|
10111
10111
|
constructor(...r) {
|
|
10112
|
-
super(r), this._appearance =
|
|
10112
|
+
super(r), this._appearance = ot.Default;
|
|
10113
10113
|
}
|
|
10114
10114
|
// #endregion
|
|
10115
10115
|
// #region Properties
|
|
@@ -10129,7 +10129,7 @@ const ct = (o) => {
|
|
|
10129
10129
|
}
|
|
10130
10130
|
return _F([
|
|
10131
10131
|
b({
|
|
10132
|
-
type:
|
|
10132
|
+
type: ot,
|
|
10133
10133
|
useDefault: !0
|
|
10134
10134
|
}),
|
|
10135
10135
|
e1("design:type", String),
|
|
@@ -10958,7 +10958,7 @@ let Xh = class extends P(Z(rn(ct(G(H))))) {
|
|
|
10958
10958
|
* @public
|
|
10959
10959
|
*/
|
|
10960
10960
|
constructor() {
|
|
10961
|
-
super(), this._data = "", this._angel = 0, this._inline = !1, this._readonly = !1, Object.assign(this, { appearance:
|
|
10961
|
+
super(), this._data = "", this._angel = 0, this._inline = !1, this._readonly = !1, Object.assign(this, { appearance: ot.Plain });
|
|
10962
10962
|
}
|
|
10963
10963
|
// #endregion
|
|
10964
10964
|
// #region Properties
|
|
@@ -12256,7 +12256,7 @@ var rf = function(o, t, e, r) {
|
|
|
12256
12256
|
}, Wi = function(o, t) {
|
|
12257
12257
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
12258
12258
|
};
|
|
12259
|
-
let Zh = class extends P(Z(
|
|
12259
|
+
let Zh = class extends P(Z(Mt(G(Ht(xl))))) {
|
|
12260
12260
|
// #region Fields
|
|
12261
12261
|
_isIndeterminate;
|
|
12262
12262
|
_thickness;
|
|
@@ -13193,7 +13193,7 @@ function BF(o) {
|
|
|
13193
13193
|
<slot name="icon">
|
|
13194
13194
|
${A(o.icon, () => v`
|
|
13195
13195
|
<mosaik-icon part="icon"
|
|
13196
|
-
.appearance="${
|
|
13196
|
+
.appearance="${ot.Plain}"
|
|
13197
13197
|
.variant="${o.variant}"
|
|
13198
13198
|
.data="${o.icon}"
|
|
13199
13199
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -13231,7 +13231,7 @@ function BF(o) {
|
|
|
13231
13231
|
<slot name="icon">
|
|
13232
13232
|
${A(o.icon, () => v`
|
|
13233
13233
|
<mosaik-icon part="icon"
|
|
13234
|
-
.appearance="${
|
|
13234
|
+
.appearance="${ot.Plain}"
|
|
13235
13235
|
.variant="${o.variant}"
|
|
13236
13236
|
.data="${o.icon}"
|
|
13237
13237
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -14313,7 +14313,7 @@ var $p = function(o, t, e, r) {
|
|
|
14313
14313
|
}, ba = function(o, t) {
|
|
14314
14314
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
14315
14315
|
};
|
|
14316
|
-
let nd = class extends P(ji(
|
|
14316
|
+
let nd = class extends P(ji(Mt(fs(Io(Rn(Ht(bs(bn)))))))) {
|
|
14317
14317
|
// #region Fields
|
|
14318
14318
|
_href;
|
|
14319
14319
|
_download;
|
|
@@ -15492,7 +15492,7 @@ var nf = function(o, t, e, r) {
|
|
|
15492
15492
|
}, Bn = function(o, t) {
|
|
15493
15493
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
15494
15494
|
};
|
|
15495
|
-
let Jh = class extends P(
|
|
15495
|
+
let Jh = class extends P(Mt(G(ct(Z(kt(H)))))) {
|
|
15496
15496
|
// #region Ctor
|
|
15497
15497
|
/**
|
|
15498
15498
|
* @public
|
|
@@ -15617,7 +15617,7 @@ function qF(o) {
|
|
|
15617
15617
|
<slot name="prefix">
|
|
15618
15618
|
${A(o.icon, () => v`
|
|
15619
15619
|
<mosaik-icon part="icon"
|
|
15620
|
-
.appearance="${
|
|
15620
|
+
.appearance="${ot.Plain}"
|
|
15621
15621
|
.variant="${o.variant}"
|
|
15622
15622
|
.data="${o.icon}"
|
|
15623
15623
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -15625,7 +15625,7 @@ function qF(o) {
|
|
|
15625
15625
|
?disabled="${o.disabled}"></mosaik-icon>
|
|
15626
15626
|
`)}
|
|
15627
15627
|
</slot>
|
|
15628
|
-
<mosaik-stack .orientation="${
|
|
15628
|
+
<mosaik-stack .orientation="${et.Vertical}"
|
|
15629
15629
|
.verticalAlignment="${o.verticalContentAlignment}"
|
|
15630
15630
|
.horizontalAlignment="${o.horizontalContentAlignment}"
|
|
15631
15631
|
.gap="${De("--compound-button-gap")}">
|
|
@@ -15652,7 +15652,7 @@ function qF(o) {
|
|
|
15652
15652
|
${A(o.isNavigation, () => v`
|
|
15653
15653
|
<mosaik-icon part="icon nav"
|
|
15654
15654
|
.size="${J.Medium}"
|
|
15655
|
-
.appearance="${
|
|
15655
|
+
.appearance="${ot.Plain}"
|
|
15656
15656
|
.variant="${o.variant}"
|
|
15657
15657
|
.data="${o.dir === Mo.RightToLeft ? ft.chevronLeft : ft.chevronRight}"
|
|
15658
15658
|
.inline="${!0}"
|
|
@@ -16909,7 +16909,7 @@ var kw = function(o, t, e, r) {
|
|
|
16909
16909
|
}, Fu = function(o, t) {
|
|
16910
16910
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
16911
16911
|
};
|
|
16912
|
-
let Fb = class extends P(ji(
|
|
16912
|
+
let Fb = class extends P(ji(Mt(fs(Io(Rn(Ht(bs(bn)))))))) {
|
|
16913
16913
|
// #region Fields
|
|
16914
16914
|
_subLabel;
|
|
16915
16915
|
_isNavigation;
|
|
@@ -20965,7 +20965,7 @@ function sU(o) {
|
|
|
20965
20965
|
<slot name="icon">
|
|
20966
20966
|
${A(o.icon, () => v`
|
|
20967
20967
|
<mosaik-icon part="icon"
|
|
20968
|
-
.appearance="${
|
|
20968
|
+
.appearance="${ot.Plain}"
|
|
20969
20969
|
.variant="${o.variant}"
|
|
20970
20970
|
.data="${o.icon}"
|
|
20971
20971
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -20985,7 +20985,7 @@ function sU(o) {
|
|
|
20985
20985
|
${A(o.caretVisible, () => v`
|
|
20986
20986
|
<mosaik-icon part="iconCaret"
|
|
20987
20987
|
slot="suffix"
|
|
20988
|
-
.appearance="${
|
|
20988
|
+
.appearance="${ot.Plain}"
|
|
20989
20989
|
.variant="${o.variant}"
|
|
20990
20990
|
.size="${J.Small}"
|
|
20991
20991
|
.data="${ft.caretDown}"
|
|
@@ -22848,7 +22848,7 @@ var iy = function(o, t, e, r) {
|
|
|
22848
22848
|
}, Gs = function(o, t) {
|
|
22849
22849
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
22850
22850
|
}, Zv;
|
|
22851
|
-
let Yu = Zv = class extends P(ji(
|
|
22851
|
+
let Yu = Zv = class extends P(ji(Mt(fs(Io(wl(Rn(Ht(bs(bn))))))))) {
|
|
22852
22852
|
// #region Fields
|
|
22853
22853
|
_clickOutsideController;
|
|
22854
22854
|
_projectionController;
|
|
@@ -22995,7 +22995,7 @@ function yU(o) {
|
|
|
22995
22995
|
.variant="${o.variant}"
|
|
22996
22996
|
.for="${"button"}"></mosaik-ripple>
|
|
22997
22997
|
`)}
|
|
22998
|
-
<mosaik-stack .orientation="${
|
|
22998
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
22999
22999
|
.verticalAlignment="${fe.Center}"
|
|
23000
23000
|
.horizontalAlignment="${Or.Center}"
|
|
23001
23001
|
.gap="${De("--fab-gap")}"
|
|
@@ -23003,7 +23003,7 @@ function yU(o) {
|
|
|
23003
23003
|
<slot name="icon">
|
|
23004
23004
|
${A(o.icon, () => v`
|
|
23005
23005
|
<mosaik-icon part="icon"
|
|
23006
|
-
.appearance="${
|
|
23006
|
+
.appearance="${ot.Plain}"
|
|
23007
23007
|
.variant="${o.variant}"
|
|
23008
23008
|
.data="${o.icon}"
|
|
23009
23009
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -24743,7 +24743,7 @@ function CU(o) {
|
|
|
24743
24743
|
<slot name="icon">
|
|
24744
24744
|
${A(o.icon, () => v`
|
|
24745
24745
|
<mosaik-icon part="icon"
|
|
24746
|
-
.appearance="${
|
|
24746
|
+
.appearance="${ot.Plain}"
|
|
24747
24747
|
.variant="${o.variant}"
|
|
24748
24748
|
.data="${o.icon}"
|
|
24749
24749
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -25995,7 +25995,7 @@ var df = function(o, t, e, r) {
|
|
|
25995
25995
|
}, rl = function(o, t) {
|
|
25996
25996
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
25997
25997
|
};
|
|
25998
|
-
let ep = class extends P(ji(
|
|
25998
|
+
let ep = class extends P(ji(Mt(fs(Io(Rn(Ht(bs(bn)))))))) {
|
|
25999
25999
|
// #region Fields
|
|
26000
26000
|
_delay;
|
|
26001
26001
|
_interval;
|
|
@@ -26205,7 +26205,7 @@ function OU(o) {
|
|
|
26205
26205
|
<slot name="icon">
|
|
26206
26206
|
${A(o.icon, () => v`
|
|
26207
26207
|
<mosaik-icon part="icon"
|
|
26208
|
-
.appearance="${
|
|
26208
|
+
.appearance="${ot.Plain}"
|
|
26209
26209
|
.variant="${o.variant}"
|
|
26210
26210
|
.data="${o.icon}"
|
|
26211
26211
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -26247,7 +26247,7 @@ function OU(o) {
|
|
|
26247
26247
|
.inline="${!0}"
|
|
26248
26248
|
.size="${J.Small}"
|
|
26249
26249
|
.data="${ft.caretDown}"
|
|
26250
|
-
.appearance="${
|
|
26250
|
+
.appearance="${ot.Plain}"
|
|
26251
26251
|
.variant="${o.variant}"
|
|
26252
26252
|
?disabled="${o.disabled}"></mosaik-icon>
|
|
26253
26253
|
</button>
|
|
@@ -27587,7 +27587,7 @@ var $w = function(o, t, e, r) {
|
|
|
27587
27587
|
}, cc = function(o, t) {
|
|
27588
27588
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
27589
27589
|
}, Jv;
|
|
27590
|
-
let Vb = Jv = class extends P(ji(
|
|
27590
|
+
let Vb = Jv = class extends P(ji(Mt(fs(Io(wl(Rn(Ht(bs(bn))))))))) {
|
|
27591
27591
|
// #region Fields
|
|
27592
27592
|
_clickOutsideController;
|
|
27593
27593
|
_projectionController;
|
|
@@ -29017,7 +29017,7 @@ function HU(o) {
|
|
|
29017
29017
|
<slot name="icon">
|
|
29018
29018
|
${A(o.icon, () => v`
|
|
29019
29019
|
<mosaik-icon part="icon"
|
|
29020
|
-
.appearance="${
|
|
29020
|
+
.appearance="${ot.Plain}"
|
|
29021
29021
|
.variant="${o.variant}"
|
|
29022
29022
|
.data="${o.icon}"
|
|
29023
29023
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -29312,7 +29312,7 @@ var MU = function(o, t, e, r) {
|
|
|
29312
29312
|
}, BU = function(o, t) {
|
|
29313
29313
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
29314
29314
|
};
|
|
29315
|
-
let qa = class extends P(ji(
|
|
29315
|
+
let qa = class extends P(ji(Mt(fs(Io(Rn(Ow(Ht(bs(bn))))))))) {
|
|
29316
29316
|
// #region Ctor
|
|
29317
29317
|
/**
|
|
29318
29318
|
* @public
|
|
@@ -29445,7 +29445,7 @@ var ch = function(o, t, e, r) {
|
|
|
29445
29445
|
}, Jo = function(o, t) {
|
|
29446
29446
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
29447
29447
|
};
|
|
29448
|
-
let dd = class extends P(Ye(G(
|
|
29448
|
+
let dd = class extends P(Ye(G(Mt(Ot(ct(Z(kt(H)))))))) {
|
|
29449
29449
|
// #region Fields
|
|
29450
29450
|
_toggleChanged;
|
|
29451
29451
|
_eventSubscriptions;
|
|
@@ -44336,7 +44336,7 @@ function Aq(o) {
|
|
|
44336
44336
|
${A(o?.isClearableFn ? o?.isClearableFn() : !o.disabled && !o.readonly && o.value && o.isClearable && !o.isBusy, () => v`
|
|
44337
44337
|
<mosaik-button part="clear"
|
|
44338
44338
|
tabindex="-1"
|
|
44339
|
-
.appearance="${
|
|
44339
|
+
.appearance="${ot.Plain}"
|
|
44340
44340
|
.icon="${ft.clear}"
|
|
44341
44341
|
.size="${J.Small}"
|
|
44342
44342
|
.iconSize="${J.Medium}"
|
|
@@ -44837,7 +44837,7 @@ var Ho = function(o, t, e, r) {
|
|
|
44837
44837
|
if (typeof Reflect == "object" && typeof Reflect.decorate == "function") n = Reflect.decorate(o, t, e, r);
|
|
44838
44838
|
else for (var s = o.length - 1; s >= 0; s--) (i = o[s]) && (n = (a < 3 ? i(n) : a > 3 ? i(t, e, n) : i(t, e)) || n);
|
|
44839
44839
|
return a > 3 && n && Object.defineProperty(t, e, n), n;
|
|
44840
|
-
},
|
|
44840
|
+
}, Ft = function(o, t) {
|
|
44841
44841
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
44842
44842
|
};
|
|
44843
44843
|
let jo = class extends P(kt(ta(ct(Z(G(Ht(Ye(Ot(Rn(sn)))))))))) {
|
|
@@ -45250,119 +45250,119 @@ let jo = class extends P(kt(ta(ct(Z(G(Ht(Ye(Ot(Rn(sn)))))))))) {
|
|
|
45250
45250
|
};
|
|
45251
45251
|
Ho([
|
|
45252
45252
|
T({ type: String }),
|
|
45253
|
-
|
|
45254
|
-
|
|
45253
|
+
Ft("design:type", String),
|
|
45254
|
+
Ft("design:paramtypes", [String])
|
|
45255
45255
|
], jo.prototype, "value", null);
|
|
45256
45256
|
Ho([
|
|
45257
45257
|
b({
|
|
45258
45258
|
type: Boolean,
|
|
45259
45259
|
useDefault: !0
|
|
45260
45260
|
}),
|
|
45261
|
-
|
|
45262
|
-
|
|
45261
|
+
Ft("design:type", Boolean),
|
|
45262
|
+
Ft("design:paramtypes", [Boolean])
|
|
45263
45263
|
], jo.prototype, "multiline", null);
|
|
45264
45264
|
Ho([
|
|
45265
45265
|
b({ type: Number }),
|
|
45266
|
-
|
|
45267
|
-
|
|
45266
|
+
Ft("design:type", Number),
|
|
45267
|
+
Ft("design:paramtypes", [Number])
|
|
45268
45268
|
], jo.prototype, "multilineRows", null);
|
|
45269
45269
|
Ho([
|
|
45270
45270
|
b({ type: Number }),
|
|
45271
|
-
|
|
45272
|
-
|
|
45271
|
+
Ft("design:type", Object),
|
|
45272
|
+
Ft("design:paramtypes", [Object])
|
|
45273
45273
|
], jo.prototype, "multilineMaxRows", null);
|
|
45274
45274
|
Ho([
|
|
45275
45275
|
b({
|
|
45276
45276
|
type: Boolean,
|
|
45277
45277
|
useDefault: !0
|
|
45278
45278
|
}),
|
|
45279
|
-
|
|
45280
|
-
|
|
45279
|
+
Ft("design:type", Boolean),
|
|
45280
|
+
Ft("design:paramtypes", [Boolean])
|
|
45281
45281
|
], jo.prototype, "readonly", null);
|
|
45282
45282
|
Ho([
|
|
45283
45283
|
b({
|
|
45284
45284
|
type: Boolean,
|
|
45285
45285
|
useDefault: !0
|
|
45286
45286
|
}),
|
|
45287
|
-
|
|
45288
|
-
|
|
45287
|
+
Ft("design:type", Boolean),
|
|
45288
|
+
Ft("design:paramtypes", [Boolean])
|
|
45289
45289
|
], jo.prototype, "required", null);
|
|
45290
45290
|
Ho([
|
|
45291
45291
|
b({
|
|
45292
45292
|
type: Boolean,
|
|
45293
45293
|
useDefault: !0
|
|
45294
45294
|
}),
|
|
45295
|
-
|
|
45296
|
-
|
|
45295
|
+
Ft("design:type", Boolean),
|
|
45296
|
+
Ft("design:paramtypes", [Boolean])
|
|
45297
45297
|
], jo.prototype, "autofocus", null);
|
|
45298
45298
|
Ho([
|
|
45299
45299
|
b({ type: String }),
|
|
45300
|
-
|
|
45301
|
-
|
|
45300
|
+
Ft("design:type", String),
|
|
45301
|
+
Ft("design:paramtypes", [String])
|
|
45302
45302
|
], jo.prototype, "name", null);
|
|
45303
45303
|
Ho([
|
|
45304
45304
|
b({ type: xE }),
|
|
45305
|
-
|
|
45306
|
-
|
|
45305
|
+
Ft("design:type", String),
|
|
45306
|
+
Ft("design:paramtypes", [String])
|
|
45307
45307
|
], jo.prototype, "keyboard", null);
|
|
45308
45308
|
Ho([
|
|
45309
45309
|
b({ type: hy }),
|
|
45310
|
-
|
|
45311
|
-
|
|
45310
|
+
Ft("design:type", String),
|
|
45311
|
+
Ft("design:paramtypes", [String])
|
|
45312
45312
|
], jo.prototype, "type", null);
|
|
45313
45313
|
Ho([
|
|
45314
45314
|
b({ type: String }),
|
|
45315
|
-
|
|
45316
|
-
|
|
45315
|
+
Ft("design:type", String),
|
|
45316
|
+
Ft("design:paramtypes", [String])
|
|
45317
45317
|
], jo.prototype, "pattern", null);
|
|
45318
45318
|
Ho([
|
|
45319
45319
|
T({ type: String }),
|
|
45320
|
-
|
|
45321
|
-
|
|
45320
|
+
Ft("design:type", String),
|
|
45321
|
+
Ft("design:paramtypes", [String])
|
|
45322
45322
|
], jo.prototype, "placeholder", null);
|
|
45323
45323
|
Ho([
|
|
45324
45324
|
b({
|
|
45325
45325
|
type: Boolean,
|
|
45326
45326
|
useDefault: !0
|
|
45327
45327
|
}),
|
|
45328
|
-
|
|
45329
|
-
|
|
45328
|
+
Ft("design:type", Boolean),
|
|
45329
|
+
Ft("design:paramtypes", [Boolean])
|
|
45330
45330
|
], jo.prototype, "autocomplete", null);
|
|
45331
45331
|
Ho([
|
|
45332
45332
|
b({ type: Number }),
|
|
45333
|
-
|
|
45334
|
-
|
|
45333
|
+
Ft("design:type", Object),
|
|
45334
|
+
Ft("design:paramtypes", [Object])
|
|
45335
45335
|
], jo.prototype, "minlength", null);
|
|
45336
45336
|
Ho([
|
|
45337
45337
|
b({ type: Number }),
|
|
45338
|
-
|
|
45339
|
-
|
|
45338
|
+
Ft("design:type", Object),
|
|
45339
|
+
Ft("design:paramtypes", [Object])
|
|
45340
45340
|
], jo.prototype, "maxlength", null);
|
|
45341
45341
|
Ho([
|
|
45342
45342
|
b({ type: cy }),
|
|
45343
|
-
|
|
45344
|
-
|
|
45343
|
+
Ft("design:type", String),
|
|
45344
|
+
Ft("design:paramtypes", [String])
|
|
45345
45345
|
], jo.prototype, "resize", null);
|
|
45346
45346
|
Ho([
|
|
45347
45347
|
b({ type: $t }),
|
|
45348
|
-
|
|
45349
|
-
|
|
45348
|
+
Ft("design:type", String),
|
|
45349
|
+
Ft("design:paramtypes", [String])
|
|
45350
45350
|
], jo.prototype, "textAlign", null);
|
|
45351
45351
|
Ho([
|
|
45352
45352
|
b({
|
|
45353
45353
|
type: Boolean,
|
|
45354
45354
|
useDefault: !0
|
|
45355
45355
|
}),
|
|
45356
|
-
|
|
45357
|
-
|
|
45356
|
+
Ft("design:type", Boolean),
|
|
45357
|
+
Ft("design:paramtypes", [])
|
|
45358
45358
|
], jo.prototype, "hasPrefix", null);
|
|
45359
45359
|
Ho([
|
|
45360
45360
|
b({
|
|
45361
45361
|
type: Boolean,
|
|
45362
45362
|
useDefault: !0
|
|
45363
45363
|
}),
|
|
45364
|
-
|
|
45365
|
-
|
|
45364
|
+
Ft("design:type", Boolean),
|
|
45365
|
+
Ft("design:paramtypes", [])
|
|
45366
45366
|
], jo.prototype, "hasSuffix", null);
|
|
45367
45367
|
jo = Ho([
|
|
45368
45368
|
O({
|
|
@@ -45383,7 +45383,7 @@ jo = Ho([
|
|
|
45383
45383
|
delegatesFocus: !0
|
|
45384
45384
|
}
|
|
45385
45385
|
}),
|
|
45386
|
-
|
|
45386
|
+
Ft("design:paramtypes", [])
|
|
45387
45387
|
], jo);
|
|
45388
45388
|
const Tq = Xo([
|
|
45389
45389
|
{
|
|
@@ -46960,12 +46960,12 @@ ur = xx = Nr([
|
|
|
46960
46960
|
], ur);
|
|
46961
46961
|
function Gq(o) {
|
|
46962
46962
|
return v`
|
|
46963
|
-
<mosaik-stack .orientation="${
|
|
46963
|
+
<mosaik-stack .orientation="${et.Vertical}"
|
|
46964
46964
|
.verticalAlignment="${o.verticalContentAlignment}"
|
|
46965
46965
|
.horizontalAlignment="${o.horizontalContentAlignment}"
|
|
46966
46966
|
.gap="${"4px"}">
|
|
46967
46967
|
${A(o.label.trim() || o.info.trim(), () => v`
|
|
46968
|
-
<mosaik-stack .orientation="${
|
|
46968
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
46969
46969
|
.verticalAlignment="${fe.Center}"
|
|
46970
46970
|
.gap="${"8px"}">
|
|
46971
46971
|
<label part="label">
|
|
@@ -46989,7 +46989,7 @@ function Gq(o) {
|
|
|
46989
46989
|
<slot @slotchange="${(t) => o.onSlotChange(t)}"></slot>
|
|
46990
46990
|
${A(o.error.trim() || o.validationMessage.trim() || o.hint.trim(), () => v`
|
|
46991
46991
|
<mosaik-stack part="detail"
|
|
46992
|
-
.orientation="${
|
|
46992
|
+
.orientation="${et.Horizontal}"
|
|
46993
46993
|
.verticalAlignment="${fe.Center}">
|
|
46994
46994
|
${A(o.error.trim().length, () => v`
|
|
46995
46995
|
<mosaik-error part="error"
|
|
@@ -49846,27 +49846,27 @@ function y8() {
|
|
|
49846
49846
|
min-height: 36px;
|
|
49847
49847
|
}
|
|
49848
49848
|
|
|
49849
|
-
[size="giant"] [part="close"] {
|
|
49849
|
+
:host([size="giant"]) [part="close"] {
|
|
49850
49850
|
min-width: 52px;
|
|
49851
49851
|
min-height: 52px;
|
|
49852
49852
|
}
|
|
49853
49853
|
|
|
49854
|
-
[size="large"] [part="close"] {
|
|
49854
|
+
:host([size="large"]) [part="close"] {
|
|
49855
49855
|
min-width: 44px;
|
|
49856
49856
|
min-height: 44px;
|
|
49857
49857
|
}
|
|
49858
49858
|
|
|
49859
|
-
[size="medium"] [part="close"] {
|
|
49859
|
+
:host([size="medium"]) [part="close"] {
|
|
49860
49860
|
min-width: 36px;
|
|
49861
49861
|
min-height: 36px;
|
|
49862
49862
|
}
|
|
49863
49863
|
|
|
49864
|
-
[size="small"] [part="close"] {
|
|
49864
|
+
:host([size="small"]) [part="close"] {
|
|
49865
49865
|
min-width: 28px;
|
|
49866
49866
|
min-height: 28px;
|
|
49867
49867
|
}
|
|
49868
49868
|
|
|
49869
|
-
[size="tiny"] [part="close"] {
|
|
49869
|
+
:host([size="tiny"]) [part="close"] {
|
|
49870
49870
|
min-width: 20px;
|
|
49871
49871
|
min-height: 20px;
|
|
49872
49872
|
}
|
|
@@ -49926,27 +49926,27 @@ function v8() {
|
|
|
49926
49926
|
min-height: 36px;
|
|
49927
49927
|
}
|
|
49928
49928
|
|
|
49929
|
-
[size="giant"] [part="close"] {
|
|
49929
|
+
:host([size="giant"]) [part="close"] {
|
|
49930
49930
|
min-width: 52px;
|
|
49931
49931
|
min-height: 52px;
|
|
49932
49932
|
}
|
|
49933
49933
|
|
|
49934
|
-
[size="large"] [part="close"] {
|
|
49934
|
+
:host([size="large"]) [part="close"] {
|
|
49935
49935
|
min-width: 44px;
|
|
49936
49936
|
min-height: 44px;
|
|
49937
49937
|
}
|
|
49938
49938
|
|
|
49939
|
-
[size="medium"] [part="close"] {
|
|
49939
|
+
:host([size="medium"]) [part="close"] {
|
|
49940
49940
|
min-width: 36px;
|
|
49941
49941
|
min-height: 36px;
|
|
49942
49942
|
}
|
|
49943
49943
|
|
|
49944
|
-
[size="small"] [part="close"] {
|
|
49944
|
+
:host([size="small"]) [part="close"] {
|
|
49945
49945
|
min-width: 28px;
|
|
49946
49946
|
min-height: 28px;
|
|
49947
49947
|
}
|
|
49948
49948
|
|
|
49949
|
-
[size="tiny"] [part="close"] {
|
|
49949
|
+
:host([size="tiny"]) [part="close"] {
|
|
49950
49950
|
min-width: 20px;
|
|
49951
49951
|
min-height: 20px;
|
|
49952
49952
|
}
|
|
@@ -50006,27 +50006,27 @@ function x8() {
|
|
|
50006
50006
|
min-height: 36px;
|
|
50007
50007
|
}
|
|
50008
50008
|
|
|
50009
|
-
[size="giant"] [part="close"] {
|
|
50009
|
+
:host([size="giant"]) [part="close"] {
|
|
50010
50010
|
min-width: 52px;
|
|
50011
50011
|
min-height: 52px;
|
|
50012
50012
|
}
|
|
50013
50013
|
|
|
50014
|
-
[size="large"] [part="close"] {
|
|
50014
|
+
:host([size="large"]) [part="close"] {
|
|
50015
50015
|
min-width: 44px;
|
|
50016
50016
|
min-height: 44px;
|
|
50017
50017
|
}
|
|
50018
50018
|
|
|
50019
|
-
[size="medium"] [part="close"] {
|
|
50019
|
+
:host([size="medium"]) [part="close"] {
|
|
50020
50020
|
min-width: 36px;
|
|
50021
50021
|
min-height: 36px;
|
|
50022
50022
|
}
|
|
50023
50023
|
|
|
50024
|
-
[size="small"] [part="close"] {
|
|
50024
|
+
:host([size="small"]) [part="close"] {
|
|
50025
50025
|
min-width: 28px;
|
|
50026
50026
|
min-height: 28px;
|
|
50027
50027
|
}
|
|
50028
50028
|
|
|
50029
|
-
[size="tiny"] [part="close"] {
|
|
50029
|
+
:host([size="tiny"]) [part="close"] {
|
|
50030
50030
|
min-width: 20px;
|
|
50031
50031
|
min-height: 20px;
|
|
50032
50032
|
}
|
|
@@ -50090,7 +50090,7 @@ var zl = function(o, t, e, r) {
|
|
|
50090
50090
|
}, Oo = function(o, t) {
|
|
50091
50091
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
50092
50092
|
};
|
|
50093
|
-
let zr = class extends P(ny(Dp(G(Z(ct(Io(dh(
|
|
50093
|
+
let zr = class extends P(ny(Dp(G(Z(ct(Io(dh(Mt(fs(ce(kt(H)))))))))))) {
|
|
50094
50094
|
// #region Fields
|
|
50095
50095
|
_actionElements;
|
|
50096
50096
|
_icon;
|
|
@@ -50223,7 +50223,7 @@ let zr = class extends P(ny(Dp(G(Z(ct(Io(dh(Ft(fs(ce(kt(H)))))))))))) {
|
|
|
50223
50223
|
this._actionElements.forEach((r) => r.variant = e ?? ue.Default);
|
|
50224
50224
|
}
|
|
50225
50225
|
onAppearancePropertyChanged(t, e) {
|
|
50226
|
-
this._actionElements.forEach((r) => r.appearance = e ??
|
|
50226
|
+
this._actionElements.forEach((r) => r.appearance = e ?? ot.Default);
|
|
50227
50227
|
}
|
|
50228
50228
|
};
|
|
50229
50229
|
zl([
|
|
@@ -50854,7 +50854,7 @@ var ln = function(o, t, e, r) {
|
|
|
50854
50854
|
}, Zt = function(o, t) {
|
|
50855
50855
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
50856
50856
|
};
|
|
50857
|
-
let Pr = class extends P(
|
|
50857
|
+
let Pr = class extends P(Mt(G(ct(Z(kt(H)))))) {
|
|
50858
50858
|
// #region Fields
|
|
50859
50859
|
_change;
|
|
50860
50860
|
_keyboardController;
|
|
@@ -51013,7 +51013,7 @@ let Pr = class extends P(Ft(G(ct(Z(kt(H)))))) {
|
|
|
51013
51013
|
* @override
|
|
51014
51014
|
*/
|
|
51015
51015
|
connectedCallback() {
|
|
51016
|
-
super.connectedCallback(), this._keyboardController.add(yt.LeftArrow, () => this.previous(), () => !this.disabled && this.canPrev && this.orientation ===
|
|
51016
|
+
super.connectedCallback(), this._keyboardController.add(yt.LeftArrow, () => this.previous(), () => !this.disabled && this.canPrev && this.orientation === et.Horizontal, { preventDefault: !0 }).add(yt.RightArrow, () => this.next(), () => !this.disabled && this.canNext && this.orientation === et.Horizontal, { preventDefault: !0 }).add(yt.UpArrow, () => this.previous(), () => !this.disabled && this.canPrev && this.orientation === et.Vertical, { preventDefault: !0 }).add(yt.DownArrow, () => this.next(), () => !this.disabled && this.canNext && this.orientation === et.Vertical, { preventDefault: !0 }).add(yt.Home, () => this.first(), () => !this.disabled && this.length > 0, { preventDefault: !0 }).add(yt.End, () => this.last(), () => !this.disabled && this.length > 0, { preventDefault: !0 });
|
|
51017
51017
|
}
|
|
51018
51018
|
/**
|
|
51019
51019
|
* Navigates to the previous banner.
|
|
@@ -51826,7 +51826,7 @@ nm = Kw([
|
|
|
51826
51826
|
], nm);
|
|
51827
51827
|
function H8(o) {
|
|
51828
51828
|
return v`
|
|
51829
|
-
<mosaik-stack .orientation="${
|
|
51829
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
51830
51830
|
.verticalAlignment="${fe.Center}"
|
|
51831
51831
|
.gap="${De("--card-actions-gap")}"
|
|
51832
51832
|
.dir="${o.dir}"
|
|
@@ -51835,7 +51835,7 @@ function H8(o) {
|
|
|
51835
51835
|
<slot name="prefix"></slot>
|
|
51836
51836
|
</mosaik-stack>
|
|
51837
51837
|
<mosaik-stack style="flex: 1;"
|
|
51838
|
-
.orientation="${
|
|
51838
|
+
.orientation="${et.Horizontal}"
|
|
51839
51839
|
.verticalAlignment="${fe.Center}"
|
|
51840
51840
|
.horizontalAlignment="${Or.Right}"
|
|
51841
51841
|
.gap="${De("--card-actions-gap")}"
|
|
@@ -51844,7 +51844,7 @@ function H8(o) {
|
|
|
51844
51844
|
?hidden="${!o.hasSlotContent("")}">
|
|
51845
51845
|
<slot></slot>
|
|
51846
51846
|
</mosaik-stack>
|
|
51847
|
-
<mosaik-stack .orientation="${
|
|
51847
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
51848
51848
|
.verticalAlignment="${fe.Center}"
|
|
51849
51849
|
.gap="${De("--card-actions-gap")}"
|
|
51850
51850
|
.dir="${o.dir}"
|
|
@@ -52596,7 +52596,7 @@ Ex = SE([
|
|
|
52596
52596
|
function J8(o) {
|
|
52597
52597
|
const t = (e, r, a) => (a ? F.current.setAttribute(e, r) : F.current.removeAttribute(e, r), a);
|
|
52598
52598
|
return v`
|
|
52599
|
-
${A(!o.disabled && o.appearance !==
|
|
52599
|
+
${A(!o.disabled && o.appearance !== ot.Outline, () => v`
|
|
52600
52600
|
<mosaik-elevation part="elevation"
|
|
52601
52601
|
.weigh="${o.elevation}"
|
|
52602
52602
|
@connected="${(e) => e.target.attach(o)}"></mosaik-elevation>
|
|
@@ -54684,7 +54684,7 @@ var bf = function(o, t, e, r) {
|
|
|
54684
54684
|
}, nl = function(o, t) {
|
|
54685
54685
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
54686
54686
|
};
|
|
54687
|
-
let np = class extends P(dh(ct(Sd(G(Io(
|
|
54687
|
+
let np = class extends P(dh(ct(Sd(G(Io(Mt(ce(kt(Qw(H)))))))))) {
|
|
54688
54688
|
// #region Fields
|
|
54689
54689
|
_header;
|
|
54690
54690
|
_subHeader;
|
|
@@ -54696,7 +54696,7 @@ let np = class extends P(dh(ct(Sd(G(Io(Ft(ce(kt(Qw(H)))))))))) {
|
|
|
54696
54696
|
* @public
|
|
54697
54697
|
*/
|
|
54698
54698
|
constructor() {
|
|
54699
|
-
super(), this._header = "", this._subHeader = "", this._content = "", this._inlineMedia = !1, Object.assign(this, { orientation:
|
|
54699
|
+
super(), this._header = "", this._subHeader = "", this._content = "", this._inlineMedia = !1, Object.assign(this, { orientation: et.Vertical });
|
|
54700
54700
|
}
|
|
54701
54701
|
// #endregion
|
|
54702
54702
|
// #region Properties
|
|
@@ -55354,7 +55354,7 @@ function jG(o) {
|
|
|
55354
55354
|
.lang="${o.lang}"
|
|
55355
55355
|
.dir="${o.dir}"></mosaik-ripple>
|
|
55356
55356
|
`)}
|
|
55357
|
-
<mosaik-stack .orientation="${
|
|
55357
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
55358
55358
|
.verticalAlignment="${fe.Center}"
|
|
55359
55359
|
.gap="${De("--expander-gap")}"
|
|
55360
55360
|
.fit="${Nn.Width}"
|
|
@@ -55388,7 +55388,7 @@ function jG(o) {
|
|
|
55388
55388
|
<mosaik-button part="caret"
|
|
55389
55389
|
.lang="${o.lang}"
|
|
55390
55390
|
.dir="${o.dir}"
|
|
55391
|
-
.appearance="${
|
|
55391
|
+
.appearance="${ot.Plain}"
|
|
55392
55392
|
.icon="${ft.caretDown}"
|
|
55393
55393
|
.size="${J.Small}"
|
|
55394
55394
|
.iconSize="${J.Medium}"></mosaik-button>
|
|
@@ -60345,7 +60345,7 @@ function J1(o, t, e) {
|
|
|
60345
60345
|
${e === 0 ? v`
|
|
60346
60346
|
<div part="navigation" slot="header">
|
|
60347
60347
|
<mosaik-button-group .dir="${o.dir}"
|
|
60348
|
-
.appearance="${
|
|
60348
|
+
.appearance="${ot.Plain}"
|
|
60349
60349
|
?disabled="${o.disabled}">
|
|
60350
60350
|
<mosaik-button part="previous"
|
|
60351
60351
|
.icon="${ft.caretUp}"
|
|
@@ -60388,7 +60388,7 @@ function J1(o, t, e) {
|
|
|
60388
60388
|
${e === 0 ? v`
|
|
60389
60389
|
<div part="navigation" slot="header">
|
|
60390
60390
|
<mosaik-button-group .dir="${o.dir}"
|
|
60391
|
-
.appearance="${
|
|
60391
|
+
.appearance="${ot.Plain}"
|
|
60392
60392
|
?disabled="${o.disabled}">
|
|
60393
60393
|
<mosaik-button part="previous"
|
|
60394
60394
|
.icon="${ft.caretUp}"
|
|
@@ -60431,7 +60431,7 @@ function J1(o, t, e) {
|
|
|
60431
60431
|
${e === 0 ? v`
|
|
60432
60432
|
<div part="navigation" slot="header">
|
|
60433
60433
|
<mosaik-button-group .dir="${o.dir}"
|
|
60434
|
-
.appearance="${
|
|
60434
|
+
.appearance="${ot.Plain}"
|
|
60435
60435
|
?disabled="${o.disabled}">
|
|
60436
60436
|
<mosaik-button part="previous"
|
|
60437
60437
|
.icon="${ft.caretUp}"
|
|
@@ -61247,7 +61247,7 @@ function u7(o) {
|
|
|
61247
61247
|
.disabled="${o.disabled}"></mosaik-text>
|
|
61248
61248
|
${A(o.markers.length, () => v`
|
|
61249
61249
|
<mosaik-stack .dir="${o.dir}"
|
|
61250
|
-
.orientation="${
|
|
61250
|
+
.orientation="${et.Horizontal}"
|
|
61251
61251
|
.verticalAlignment="${fe.Center}"
|
|
61252
61252
|
.gap="${"2px"}">
|
|
61253
61253
|
${le(o.markers, (t) => v`
|
|
@@ -63115,7 +63115,7 @@ function _7(o) {
|
|
|
63115
63115
|
<div part="heading"
|
|
63116
63116
|
style="display: flex; flex: 1;">
|
|
63117
63117
|
<mosaik-button-group .dir="${o.dir}"
|
|
63118
|
-
.appearance="${
|
|
63118
|
+
.appearance="${ot.Plain}">
|
|
63119
63119
|
<mosaik-button part="month"
|
|
63120
63120
|
.label="${o.displayDate?.toLocaleString(o.locale, { month: "long" }) ?? ""}"
|
|
63121
63121
|
@click="${() => o.setView(go.Month)}"></mosaik-button>
|
|
@@ -63920,7 +63920,7 @@ function E7(o) {
|
|
|
63920
63920
|
<div part="heading"
|
|
63921
63921
|
style="display: flex; flex: 1;">
|
|
63922
63922
|
<mosaik-button-group .dir="${o.dir}"
|
|
63923
|
-
.appearance="${
|
|
63923
|
+
.appearance="${ot.Plain}">
|
|
63924
63924
|
<mosaik-button part="month"
|
|
63925
63925
|
.label="${o.displayDate?.toLocaleString(o.locale, { year: "numeric" }) ?? ""}"
|
|
63926
63926
|
@click="${() => o.setView(go.Year)}"></mosaik-button>
|
|
@@ -64282,7 +64282,7 @@ function T7(o) {
|
|
|
64282
64282
|
<div part="heading"
|
|
64283
64283
|
style="display: flex; flex: 1;">
|
|
64284
64284
|
<mosaik-button-group .dir="${o.dir}"
|
|
64285
|
-
.appearance="${
|
|
64285
|
+
.appearance="${ot.Plain}">
|
|
64286
64286
|
<mosaik-button part="year"
|
|
64287
64287
|
.label="${O7("{0} - {1}", r, a)}"
|
|
64288
64288
|
@click="${() => o.setView(go.Month)}"></mosaik-button>
|
|
@@ -65211,7 +65211,7 @@ var co = function(o, t, e, r) {
|
|
|
65211
65211
|
}, Tt = function(o, t) {
|
|
65212
65212
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
65213
65213
|
};
|
|
65214
|
-
let ao = class extends P(Sl(ct(G(Ye(Ot(
|
|
65214
|
+
let ao = class extends P(Sl(ct(G(Ye(Ot(Mt(Z(Io(H))))))))) {
|
|
65215
65215
|
// #region Fields
|
|
65216
65216
|
_dateChanged;
|
|
65217
65217
|
_intl;
|
|
@@ -68226,7 +68226,7 @@ var js = function(o, t, e, r) {
|
|
|
68226
68226
|
}, Xe = function(o, t) {
|
|
68227
68227
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
68228
68228
|
}, Ux;
|
|
68229
|
-
let di = Ux = class extends P(Ye(G(
|
|
68229
|
+
let di = Ux = class extends P(Ye(G(Mt(Ot(ct(Z(kt(H)))))))) {
|
|
68230
68230
|
// #region Fields
|
|
68231
68231
|
_checkChanged;
|
|
68232
68232
|
_name;
|
|
@@ -68866,7 +68866,7 @@ function nW(o) {
|
|
|
68866
68866
|
${A(o.icon, () => v`
|
|
68867
68867
|
<mosaik-icon part="icon"
|
|
68868
68868
|
.size="${J.Small}"
|
|
68869
|
-
.appearance="${
|
|
68869
|
+
.appearance="${ot.Plain}"
|
|
68870
68870
|
.variant="${o.variant}"
|
|
68871
68871
|
.data="${o.icon}"
|
|
68872
68872
|
?disabled="${o.disabled}"></mosaik-icon>
|
|
@@ -68876,7 +68876,7 @@ function nW(o) {
|
|
|
68876
68876
|
name="checkmark">
|
|
68877
68877
|
${A(o.isCheckable && o.isChecked, () => v`
|
|
68878
68878
|
<mosaik-checkmark part="checkmark"
|
|
68879
|
-
.appearance="${
|
|
68879
|
+
.appearance="${ot.Plain}"
|
|
68880
68880
|
.variant="${o.variant}"
|
|
68881
68881
|
.type="${Ci.Hook}"
|
|
68882
68882
|
?checked="${o.isChecked}"
|
|
@@ -68889,7 +68889,7 @@ function nW(o) {
|
|
|
68889
68889
|
${A(o.icon, () => v`
|
|
68890
68890
|
<mosaik-icon part="icon"
|
|
68891
68891
|
.size="${J.Small}"
|
|
68892
|
-
.appearance="${
|
|
68892
|
+
.appearance="${ot.Plain}"
|
|
68893
68893
|
.variant="${o.variant}"
|
|
68894
68894
|
.data="${o.icon}"
|
|
68895
68895
|
?disabled="${o.disabled}"></mosaik-icon>
|
|
@@ -68909,7 +68909,7 @@ function nW(o) {
|
|
|
68909
68909
|
${A(o.closeable && !o.disabled, () => v`
|
|
68910
68910
|
<mosaik-icon part="close"
|
|
68911
68911
|
.size="${J.Small}"
|
|
68912
|
-
.appearance="${
|
|
68912
|
+
.appearance="${ot.Plain}"
|
|
68913
68913
|
.variant="${o.variant}"
|
|
68914
68914
|
.data="${ft.dismissCircle}"
|
|
68915
68915
|
.inline="${!0}"
|
|
@@ -70036,7 +70036,7 @@ function lW(o) {
|
|
|
70036
70036
|
</div>
|
|
70037
70037
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable, () => v`
|
|
70038
70038
|
<mosaik-button part="clear"
|
|
70039
|
-
.appearance="${
|
|
70039
|
+
.appearance="${ot.Plain}"
|
|
70040
70040
|
.icon="${ft.clear}"
|
|
70041
70041
|
.size="${J.Small}"
|
|
70042
70042
|
.iconSize="${J.Medium}"
|
|
@@ -72072,7 +72072,7 @@ ir = qp([
|
|
|
72072
72072
|
function bW(o) {
|
|
72073
72073
|
return v`
|
|
72074
72074
|
<slot name="header"></slot>
|
|
72075
|
-
<div part="root" ${os({ direction: o.orientation ===
|
|
72075
|
+
<div part="root" ${os({ direction: o.orientation === et.Vertical ? "column" : "row" })}>
|
|
72076
72076
|
<slot></slot>
|
|
72077
72077
|
</div>
|
|
72078
72078
|
<slot name="error"></slot>
|
|
@@ -72658,7 +72658,7 @@ var zs = function(o, t, e, r) {
|
|
|
72658
72658
|
}, Ke = function(o, t) {
|
|
72659
72659
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
72660
72660
|
}, Gx;
|
|
72661
|
-
let hi = Gx = class extends P(
|
|
72661
|
+
let hi = Gx = class extends P(Mt(Ye(Ot(G(ct(Z(kt(H)))))))) {
|
|
72662
72662
|
// #region Fields
|
|
72663
72663
|
_choiceChanged;
|
|
72664
72664
|
_name;
|
|
@@ -73770,7 +73770,7 @@ function DW(o) {
|
|
|
73770
73770
|
</div>
|
|
73771
73771
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable, () => v`
|
|
73772
73772
|
<mosaik-button part="clear"
|
|
73773
|
-
.appearance="${
|
|
73773
|
+
.appearance="${ot.Plain}"
|
|
73774
73774
|
.icon="${ft.clear}"
|
|
73775
73775
|
.size="${J.Small}"
|
|
73776
73776
|
.iconSize="${J.Medium}"
|
|
@@ -73801,7 +73801,7 @@ function DW(o) {
|
|
|
73801
73801
|
?active="${o.isDropDownOpen}">
|
|
73802
73802
|
<mosaik-tab .placement="${Mn.Bottom}"
|
|
73803
73803
|
.variant="${o.variant}"
|
|
73804
|
-
.appearance="${
|
|
73804
|
+
.appearance="${ot.Plain}">
|
|
73805
73805
|
<mosaik-tab-item>
|
|
73806
73806
|
<mosaik-color-area></mosaik-color-area>
|
|
73807
73807
|
</mosaik-tab-item>
|
|
@@ -75703,7 +75703,7 @@ function UW(o) {
|
|
|
75703
75703
|
</div>
|
|
75704
75704
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable, () => v`
|
|
75705
75705
|
<mosaik-button part="clear"
|
|
75706
|
-
.appearance="${
|
|
75706
|
+
.appearance="${ot.Plain}"
|
|
75707
75707
|
.icon="${ft.clear}"
|
|
75708
75708
|
.size="${J.Small}"
|
|
75709
75709
|
.iconSize="${J.Medium}"
|
|
@@ -75711,7 +75711,7 @@ function UW(o) {
|
|
|
75711
75711
|
@click="${() => o.clear()}"></mosaik-button>
|
|
75712
75712
|
`)}
|
|
75713
75713
|
<mosaik-button part="picker"
|
|
75714
|
-
.appearance="${
|
|
75714
|
+
.appearance="${ot.Plain}"
|
|
75715
75715
|
.icon="${ft.calendar}"
|
|
75716
75716
|
.size="${J.Small}"
|
|
75717
75717
|
.iconSize="${J.Medium}"
|
|
@@ -75747,7 +75747,7 @@ function UW(o) {
|
|
|
75747
75747
|
.showAdjacent="${o.showAdjacent}"
|
|
75748
75748
|
.showWeekNumbers="${o.showWeekNumbers}"
|
|
75749
75749
|
.specialDates="${o.specialDates}"
|
|
75750
|
-
.orientation="${
|
|
75750
|
+
.orientation="${et.Vertical}"
|
|
75751
75751
|
.view="${o.view}"
|
|
75752
75752
|
.appearance="${o.appearance}"
|
|
75753
75753
|
.variant="${o.variant}"
|
|
@@ -77479,7 +77479,7 @@ function VW(o) {
|
|
|
77479
77479
|
</div>
|
|
77480
77480
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable, () => v`
|
|
77481
77481
|
<mosaik-button part="clear"
|
|
77482
|
-
.appearance="${
|
|
77482
|
+
.appearance="${ot.Plain}"
|
|
77483
77483
|
.icon="${ft.clear}"
|
|
77484
77484
|
.size="${J.Small}"
|
|
77485
77485
|
.iconSize="${J.Medium}"
|
|
@@ -77487,7 +77487,7 @@ function VW(o) {
|
|
|
77487
77487
|
@click="${() => o.clear()}"></mosaik-button>
|
|
77488
77488
|
`)}
|
|
77489
77489
|
<mosaik-button part="picker"
|
|
77490
|
-
.appearance="${
|
|
77490
|
+
.appearance="${ot.Plain}"
|
|
77491
77491
|
.icon="${ft.calendar}"
|
|
77492
77492
|
.size="${J.Small}"
|
|
77493
77493
|
.iconSize="${J.Medium}"
|
|
@@ -77523,7 +77523,7 @@ function VW(o) {
|
|
|
77523
77523
|
.showAdjacent="${o.showAdjacent}"
|
|
77524
77524
|
.showWeekNumbers="${o.showWeekNumbers}"
|
|
77525
77525
|
.specialDates="${o.specialDates}"
|
|
77526
|
-
.orientation="${
|
|
77526
|
+
.orientation="${et.Vertical}"
|
|
77527
77527
|
.view="${o.view}"
|
|
77528
77528
|
.appearance="${o.appearance}"
|
|
77529
77529
|
.variant="${o.variant}"
|
|
@@ -77536,13 +77536,13 @@ function VW(o) {
|
|
|
77536
77536
|
@dateChanged="${(t) => o.onDateChanged(t.detail)}">
|
|
77537
77537
|
<mosaik-stack slot="footer">
|
|
77538
77538
|
<mosaik-text .text="${"Time"}"></mosaik-text>
|
|
77539
|
-
<mosaik-stack .orientation="${
|
|
77539
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
77540
77540
|
.horizontalAlignment="${Or.Right}">
|
|
77541
77541
|
<input type="time"/>
|
|
77542
77542
|
<mosaik-button .label="${"AM"}"
|
|
77543
|
-
.appearance="${
|
|
77543
|
+
.appearance="${ot.Plain}"></mosaik-button>
|
|
77544
77544
|
<mosaik-button .label="${"PM"}"
|
|
77545
|
-
.appearance="${
|
|
77545
|
+
.appearance="${ot.Plain}"></mosaik-button>
|
|
77546
77546
|
</mosaik-stack>
|
|
77547
77547
|
</mosaik-stack>
|
|
77548
77548
|
</mosaik-calendar>
|
|
@@ -80968,7 +80968,7 @@ function c9(o) {
|
|
|
80968
80968
|
`], [so.Single, () => v`
|
|
80969
80969
|
`], [so.Multiple, () => v`
|
|
80970
80970
|
<mosaik-checkmark part="checkmark"
|
|
80971
|
-
.appearance="${
|
|
80971
|
+
.appearance="${ot.Outline}"
|
|
80972
80972
|
.variant="${o.variant}"
|
|
80973
80973
|
.type="${Ci.Hook}"
|
|
80974
80974
|
?checked="${o.isChecked}"
|
|
@@ -82245,6 +82245,16 @@ function k9() {
|
|
|
82245
82245
|
top: 8px;
|
|
82246
82246
|
}
|
|
82247
82247
|
|
|
82248
|
+
:host [part="items"] {
|
|
82249
|
+
gap: var(--list-gap);
|
|
82250
|
+
flex-direction: column;
|
|
82251
|
+
display: flex;
|
|
82252
|
+
}
|
|
82253
|
+
|
|
82254
|
+
:host([orientation="horizontal"]) [part="items"] {
|
|
82255
|
+
flex-flow: wrap;
|
|
82256
|
+
}
|
|
82257
|
+
|
|
82248
82258
|
`;
|
|
82249
82259
|
}
|
|
82250
82260
|
function _9() {
|
|
@@ -82337,6 +82347,16 @@ function _9() {
|
|
|
82337
82347
|
top: 8px;
|
|
82338
82348
|
}
|
|
82339
82349
|
|
|
82350
|
+
:host [part="items"] {
|
|
82351
|
+
gap: var(--list-gap);
|
|
82352
|
+
flex-direction: column;
|
|
82353
|
+
display: flex;
|
|
82354
|
+
}
|
|
82355
|
+
|
|
82356
|
+
:host([orientation="horizontal"]) [part="items"] {
|
|
82357
|
+
flex-flow: wrap;
|
|
82358
|
+
}
|
|
82359
|
+
|
|
82340
82360
|
`;
|
|
82341
82361
|
}
|
|
82342
82362
|
function j9() {
|
|
@@ -82429,6 +82449,16 @@ function j9() {
|
|
|
82429
82449
|
top: 8px;
|
|
82430
82450
|
}
|
|
82431
82451
|
|
|
82452
|
+
:host [part="items"] {
|
|
82453
|
+
gap: var(--list-gap);
|
|
82454
|
+
flex-direction: column;
|
|
82455
|
+
display: flex;
|
|
82456
|
+
}
|
|
82457
|
+
|
|
82458
|
+
:host([orientation="horizontal"]) [part="items"] {
|
|
82459
|
+
flex-flow: wrap;
|
|
82460
|
+
}
|
|
82461
|
+
|
|
82432
82462
|
`;
|
|
82433
82463
|
}
|
|
82434
82464
|
class z9 extends ks {
|
|
@@ -82893,7 +82923,7 @@ var Wp = function(o, t, e, r) {
|
|
|
82893
82923
|
}, wn = function(o, t) {
|
|
82894
82924
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
82895
82925
|
};
|
|
82896
|
-
let fd = class extends P(G(nk(Ha))) {
|
|
82926
|
+
let fd = class extends P(G(nk(Mt(Ha)))) {
|
|
82897
82927
|
// #region Fields
|
|
82898
82928
|
_itemsClickSubscriptions;
|
|
82899
82929
|
_intlController;
|
|
@@ -82907,7 +82937,7 @@ let fd = class extends P(G(nk(Ha))) {
|
|
|
82907
82937
|
constructor() {
|
|
82908
82938
|
super(), this._selectionMode = so.Single, this._value = null, this._itemsClickSubscriptions = new Array(), this._intlController = new Ei(this, {
|
|
82909
82939
|
factory: () => new z9()
|
|
82910
|
-
});
|
|
82940
|
+
}), Object.assign(this, { orientation: et.Vertical });
|
|
82911
82941
|
}
|
|
82912
82942
|
// #endregion
|
|
82913
82943
|
// #region Properties
|
|
@@ -83484,7 +83514,7 @@ function P9(o) {
|
|
|
83484
83514
|
.accept="${o.accept}"
|
|
83485
83515
|
.disabled="${o.disabled}"
|
|
83486
83516
|
@filePicked="${(e) => o.add(e.detail.files)}">
|
|
83487
|
-
<mosaik-button .appearance="${
|
|
83517
|
+
<mosaik-button .appearance="${ot.Plain}"
|
|
83488
83518
|
.variant="${ue.Primary}"
|
|
83489
83519
|
.label="${o.placeholder}"
|
|
83490
83520
|
.icon="${ft.add}"
|
|
@@ -83527,11 +83557,11 @@ function P9(o) {
|
|
|
83527
83557
|
${le(o.value, (e) => e.fullName, (e) => v`
|
|
83528
83558
|
<mosaik-list-item .value="${e}"
|
|
83529
83559
|
.variant="${o.variant}">
|
|
83530
|
-
<mosaik-stack .orientation="${
|
|
83560
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
83531
83561
|
.verticalAlignment="${fe.Center}"
|
|
83532
83562
|
.fit="${Nn.Both}"
|
|
83533
83563
|
.gap="${"16px"}">
|
|
83534
|
-
<mosaik-stack .orientation="${
|
|
83564
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
83535
83565
|
.fit="${Nn.Width}"
|
|
83536
83566
|
.gap="${"8px"}">
|
|
83537
83567
|
<mosaik-text part="name"
|
|
@@ -83544,12 +83574,12 @@ function P9(o) {
|
|
|
83544
83574
|
.text="${t(e.blob?.size ?? 0)}"></mosaik-text>
|
|
83545
83575
|
`)}
|
|
83546
83576
|
</mosaik-stack>
|
|
83547
|
-
<mosaik-stack part="actions" .orientation="${
|
|
83577
|
+
<mosaik-stack part="actions" .orientation="${et.Horizontal}">
|
|
83548
83578
|
${A(o.disabled, () => v`
|
|
83549
|
-
<mosaik-button .appearance="${
|
|
83579
|
+
<mosaik-button .appearance="${ot.Plain}"
|
|
83550
83580
|
.icon="${"M15,9H5V5H15M12,19A3,3 0 0,1 9,16A3,3 0 0,1 12,13A3,3 0 0,1 15,16A3,3 0 0,1 12,19M17,3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V7L17,3Z"}"
|
|
83551
83581
|
@click="${() => o.save(e)}"></mosaik-button>
|
|
83552
|
-
<mosaik-button .appearance="${
|
|
83582
|
+
<mosaik-button .appearance="${ot.Plain}"
|
|
83553
83583
|
.icon="${"M19,4H15.5L14.5,3H9.5L8.5,4H5V6H19M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19Z"}"
|
|
83554
83584
|
@click="${() => o.delete(e)}"></mosaik-button>
|
|
83555
83585
|
`)}
|
|
@@ -83599,9 +83629,9 @@ function D9(o) {
|
|
|
83599
83629
|
return v`
|
|
83600
83630
|
${Rp(o.view, [[qi.Card, () => v`
|
|
83601
83631
|
`], [qi.Chip, () => v`
|
|
83602
|
-
<mosaik-chip .appearance="${
|
|
83632
|
+
<mosaik-chip .appearance="${ot.Outline}"
|
|
83603
83633
|
?closeable="${o.controlled}">
|
|
83604
|
-
<mosaik-stack slot="label" .orientation="${
|
|
83634
|
+
<mosaik-stack slot="label" .orientation="${et.Horizontal}">
|
|
83605
83635
|
<mosaik-text part="name"
|
|
83606
83636
|
.text="${o.file?.name}"
|
|
83607
83637
|
.truncate="${!0}"></mosaik-text>
|
|
@@ -83614,11 +83644,11 @@ function D9(o) {
|
|
|
83614
83644
|
</mosaik-stack>
|
|
83615
83645
|
</mosaik-chip>
|
|
83616
83646
|
`], [qi.List, () => v`
|
|
83617
|
-
<mosaik-stack .orientation="${
|
|
83647
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
83618
83648
|
.verticalAlignment="${fe.Center}"
|
|
83619
83649
|
.fit="${Nn.Both}"
|
|
83620
83650
|
.gap="${"16px"}">
|
|
83621
|
-
<mosaik-stack .orientation="${
|
|
83651
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
83622
83652
|
.fit="${Nn.Width}"
|
|
83623
83653
|
.gap="${"8px"}">
|
|
83624
83654
|
<mosaik-text part="name"
|
|
@@ -83631,12 +83661,12 @@ function D9(o) {
|
|
|
83631
83661
|
.text="${t(o.file?.blob?.size ?? 0)}"></mosaik-text>
|
|
83632
83662
|
`)}
|
|
83633
83663
|
</mosaik-stack>
|
|
83634
|
-
<mosaik-stack part="actions" .orientation="${
|
|
83664
|
+
<mosaik-stack part="actions" .orientation="${et.Horizontal}">
|
|
83635
83665
|
${A(o.controlled, () => v`
|
|
83636
|
-
<mosaik-button .appearance="${
|
|
83666
|
+
<mosaik-button .appearance="${ot.Plain}"
|
|
83637
83667
|
.icon="${"M15,9H5V5H15M12,19A3,3 0 0,1 9,16A3,3 0 0,1 12,13A3,3 0 0,1 15,16A3,3 0 0,1 12,19M17,3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V7L17,3Z"}"
|
|
83638
83668
|
@click="${(e) => o.onSave(e)}"></mosaik-button>
|
|
83639
|
-
<mosaik-button .appearance="${
|
|
83669
|
+
<mosaik-button .appearance="${ot.Plain}"
|
|
83640
83670
|
.icon="${"M19,4H15.5L14.5,3H9.5L8.5,4H5V6H19M6,19A2,2 0 0,0 8,21H16A2,2 0 0,0 18,19V7H6V19Z"}"
|
|
83641
83671
|
@click="${(e) => o.onDelete(e)}"></mosaik-button>
|
|
83642
83672
|
`)}
|
|
@@ -85298,7 +85328,7 @@ var Es = function(o, t, e, r) {
|
|
|
85298
85328
|
}, Wo = function(o, t) {
|
|
85299
85329
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
85300
85330
|
};
|
|
85301
|
-
let kn = class extends P(Z(rn(ct(
|
|
85331
|
+
let kn = class extends P(Z(rn(ct(Mt(G(H)))))) {
|
|
85302
85332
|
// #region Fields
|
|
85303
85333
|
_spinned;
|
|
85304
85334
|
_delay;
|
|
@@ -85782,7 +85812,7 @@ function X9(o) {
|
|
|
85782
85812
|
`)}
|
|
85783
85813
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable && !o.isBusy, () => v`
|
|
85784
85814
|
<mosaik-button part="clear"
|
|
85785
|
-
.appearance="${
|
|
85815
|
+
.appearance="${ot.Plain}"
|
|
85786
85816
|
.icon="${ft.clear}"
|
|
85787
85817
|
.size="${J.Small}"
|
|
85788
85818
|
.iconSize="${J.Medium}"
|
|
@@ -85790,9 +85820,9 @@ function X9(o) {
|
|
|
85790
85820
|
`)}
|
|
85791
85821
|
${A(o.spinner, () => v`
|
|
85792
85822
|
<mosaik-updown-spinner part="spinner"
|
|
85793
|
-
.orientation="${
|
|
85823
|
+
.orientation="${et.Horizontal}"
|
|
85794
85824
|
.size="${J.Small}"
|
|
85795
|
-
.appearance="${
|
|
85825
|
+
.appearance="${ot.Plain}"
|
|
85796
85826
|
.position="${o.spinPosition}"
|
|
85797
85827
|
.disabled="${o.disabled}"></mosaik-updown-spinner>
|
|
85798
85828
|
`)}
|
|
@@ -87193,7 +87223,7 @@ function tV(o) {
|
|
|
87193
87223
|
</div>
|
|
87194
87224
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable, () => v`
|
|
87195
87225
|
<mosaik-button part="clear"
|
|
87196
|
-
.appearance="${
|
|
87226
|
+
.appearance="${ot.Plain}"
|
|
87197
87227
|
.icon="${ft.clear}"
|
|
87198
87228
|
.size="${J.Small}"
|
|
87199
87229
|
.iconSize="${J.Medium}"
|
|
@@ -87201,7 +87231,7 @@ function tV(o) {
|
|
|
87201
87231
|
`)}
|
|
87202
87232
|
${A(!o.disabled && !o.readonly && o.revealable, () => v`
|
|
87203
87233
|
<mosaik-button part="showHide"
|
|
87204
|
-
.appearance="${
|
|
87234
|
+
.appearance="${ot.Plain}"
|
|
87205
87235
|
.icon="${o.isReveal ? ft.eyeHide : ft.eyeShow}"
|
|
87206
87236
|
.size="${J.Small}"
|
|
87207
87237
|
.iconSize="${J.Medium}"
|
|
@@ -90242,7 +90272,7 @@ var Cs = function(o, t, e, r) {
|
|
|
90242
90272
|
}, Ze = function(o, t) {
|
|
90243
90273
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
90244
90274
|
}, Kx;
|
|
90245
|
-
let ui = Kx = class extends P(Ye(G(
|
|
90275
|
+
let ui = Kx = class extends P(Ye(G(Mt(Ot(ct(Z(kt(H)))))))) {
|
|
90246
90276
|
// #region Fields
|
|
90247
90277
|
_radioChanged;
|
|
90248
90278
|
_name;
|
|
@@ -90472,7 +90502,7 @@ function bV(o) {
|
|
|
90472
90502
|
aria-valuemin="${0}"
|
|
90473
90503
|
aria-valuemax="${o.length}"
|
|
90474
90504
|
tabindex="${o.disabled ? "-1" : "0"}">
|
|
90475
|
-
<span ${os({ direction: o.orientation ===
|
|
90505
|
+
<span ${os({ direction: o.orientation === et.Vertical ? "column" : "row" })}
|
|
90476
90506
|
part="symbols">
|
|
90477
90507
|
${le([].constructor(o.length), (t, e) => v`
|
|
90478
90508
|
${A(Number(o.value) > e && Number(o.value) < e + 1, () => v`
|
|
@@ -90869,10 +90899,10 @@ var Ur = function(o, t, e, r) {
|
|
|
90869
90899
|
if (typeof Reflect == "object" && typeof Reflect.decorate == "function") n = Reflect.decorate(o, t, e, r);
|
|
90870
90900
|
else for (var s = o.length - 1; s >= 0; s--) (i = o[s]) && (n = (a < 3 ? i(n) : a > 3 ? i(t, e, n) : i(t, e)) || n);
|
|
90871
90901
|
return a > 3 && n && Object.defineProperty(t, e, n), n;
|
|
90872
|
-
},
|
|
90902
|
+
}, Bt = function(o, t) {
|
|
90873
90903
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
90874
90904
|
};
|
|
90875
|
-
let fr = class extends P(G(Ot(Ht(
|
|
90905
|
+
let fr = class extends P(G(Ot(Ht(Mt(rn(Z(H))))))) {
|
|
90876
90906
|
// #region Fields
|
|
90877
90907
|
_ratingElement;
|
|
90878
90908
|
_length;
|
|
@@ -91102,89 +91132,89 @@ let fr = class extends P(G(Ot(Ht(Ft(rn(Z(H))))))) {
|
|
|
91102
91132
|
};
|
|
91103
91133
|
Ur([
|
|
91104
91134
|
b({ type: Number }),
|
|
91105
|
-
|
|
91106
|
-
|
|
91135
|
+
Bt("design:type", Number),
|
|
91136
|
+
Bt("design:paramtypes", [Number])
|
|
91107
91137
|
], fr.prototype, "length", null);
|
|
91108
91138
|
Ur([
|
|
91109
91139
|
b({ type: Number }),
|
|
91110
|
-
|
|
91111
|
-
|
|
91140
|
+
Bt("design:type", Number),
|
|
91141
|
+
Bt("design:paramtypes", [Number])
|
|
91112
91142
|
], fr.prototype, "precision", null);
|
|
91113
91143
|
Ur([
|
|
91114
91144
|
b({
|
|
91115
91145
|
type: Boolean,
|
|
91116
91146
|
useDefault: !0
|
|
91117
91147
|
}),
|
|
91118
|
-
|
|
91119
|
-
|
|
91148
|
+
Bt("design:type", Boolean),
|
|
91149
|
+
Bt("design:paramtypes", [Boolean])
|
|
91120
91150
|
], fr.prototype, "readonly", null);
|
|
91121
91151
|
Ur([
|
|
91122
91152
|
b({ type: String }),
|
|
91123
|
-
|
|
91124
|
-
|
|
91153
|
+
Bt("design:type", String),
|
|
91154
|
+
Bt("design:paramtypes", [String])
|
|
91125
91155
|
], fr.prototype, "symbol", null);
|
|
91126
91156
|
Ur([
|
|
91127
91157
|
b({ type: Function }),
|
|
91128
|
-
|
|
91129
|
-
|
|
91158
|
+
Bt("design:type", Function),
|
|
91159
|
+
Bt("design:paramtypes", [Function])
|
|
91130
91160
|
], fr.prototype, "symbolAccessor", null);
|
|
91131
91161
|
Ur([
|
|
91132
91162
|
T({ type: Number }),
|
|
91133
|
-
|
|
91134
|
-
|
|
91163
|
+
Bt("design:type", Number),
|
|
91164
|
+
Bt("design:paramtypes", [Number])
|
|
91135
91165
|
], fr.prototype, "hoverValue", null);
|
|
91136
91166
|
Ur([
|
|
91137
91167
|
T({ type: Boolean }),
|
|
91138
|
-
|
|
91139
|
-
|
|
91168
|
+
Bt("design:type", Boolean),
|
|
91169
|
+
Bt("design:paramtypes", [Boolean])
|
|
91140
91170
|
], fr.prototype, "isHovering", null);
|
|
91141
91171
|
Ur([
|
|
91142
91172
|
Vt("click"),
|
|
91143
|
-
|
|
91144
|
-
|
|
91145
|
-
|
|
91173
|
+
Bt("design:type", Function),
|
|
91174
|
+
Bt("design:paramtypes", [MouseEvent]),
|
|
91175
|
+
Bt("design:returntype", void 0)
|
|
91146
91176
|
], fr.prototype, "onClick", null);
|
|
91147
91177
|
Ur([
|
|
91148
91178
|
Vt("keydown"),
|
|
91149
|
-
|
|
91150
|
-
|
|
91151
|
-
|
|
91179
|
+
Bt("design:type", Function),
|
|
91180
|
+
Bt("design:paramtypes", [KeyboardEvent]),
|
|
91181
|
+
Bt("design:returntype", void 0)
|
|
91152
91182
|
], fr.prototype, "onKeyDown", null);
|
|
91153
91183
|
Ur([
|
|
91154
91184
|
Vt("mouseenter"),
|
|
91155
|
-
|
|
91156
|
-
|
|
91157
|
-
|
|
91185
|
+
Bt("design:type", Function),
|
|
91186
|
+
Bt("design:paramtypes", [MouseEvent]),
|
|
91187
|
+
Bt("design:returntype", void 0)
|
|
91158
91188
|
], fr.prototype, "onMouseEnter", null);
|
|
91159
91189
|
Ur([
|
|
91160
91190
|
Vt("mousemove"),
|
|
91161
|
-
|
|
91162
|
-
|
|
91163
|
-
|
|
91191
|
+
Bt("design:type", Function),
|
|
91192
|
+
Bt("design:paramtypes", [MouseEvent]),
|
|
91193
|
+
Bt("design:returntype", void 0)
|
|
91164
91194
|
], fr.prototype, "onMouseMove", null);
|
|
91165
91195
|
Ur([
|
|
91166
91196
|
Vt("mouseleave"),
|
|
91167
|
-
|
|
91168
|
-
|
|
91169
|
-
|
|
91197
|
+
Bt("design:type", Function),
|
|
91198
|
+
Bt("design:paramtypes", []),
|
|
91199
|
+
Bt("design:returntype", void 0)
|
|
91170
91200
|
], fr.prototype, "onMouseLeave", null);
|
|
91171
91201
|
Ur([
|
|
91172
91202
|
Vt("touchstart"),
|
|
91173
|
-
|
|
91174
|
-
|
|
91175
|
-
|
|
91203
|
+
Bt("design:type", Function),
|
|
91204
|
+
Bt("design:paramtypes", [Object]),
|
|
91205
|
+
Bt("design:returntype", void 0)
|
|
91176
91206
|
], fr.prototype, "onTouchStart", null);
|
|
91177
91207
|
Ur([
|
|
91178
91208
|
Vt("touchmove", "self", { passive: !0 }),
|
|
91179
|
-
|
|
91180
|
-
|
|
91181
|
-
|
|
91209
|
+
Bt("design:type", Function),
|
|
91210
|
+
Bt("design:paramtypes", [Object]),
|
|
91211
|
+
Bt("design:returntype", void 0)
|
|
91182
91212
|
], fr.prototype, "onTouchMove", null);
|
|
91183
91213
|
Ur([
|
|
91184
91214
|
Vt("touchend"),
|
|
91185
|
-
|
|
91186
|
-
|
|
91187
|
-
|
|
91215
|
+
Bt("design:type", Function),
|
|
91216
|
+
Bt("design:paramtypes", [Object]),
|
|
91217
|
+
Bt("design:returntype", void 0)
|
|
91188
91218
|
], fr.prototype, "onTouchEnd", null);
|
|
91189
91219
|
fr = Ur([
|
|
91190
91220
|
O({
|
|
@@ -91196,7 +91226,7 @@ fr = Ur([
|
|
|
91196
91226
|
cosmopolitan: vV
|
|
91197
91227
|
}
|
|
91198
91228
|
}),
|
|
91199
|
-
|
|
91229
|
+
Bt("design:paramtypes", [])
|
|
91200
91230
|
], fr);
|
|
91201
91231
|
class _y {
|
|
91202
91232
|
// #region Fields
|
|
@@ -91531,8 +91561,8 @@ function wV(o) {
|
|
|
91531
91561
|
<svg xmlns="http://www.w3.org/2000/svg">
|
|
91532
91562
|
<line x1="0"
|
|
91533
91563
|
y1="0"
|
|
91534
|
-
x2="${o.orientation ===
|
|
91535
|
-
y2="${o.orientation ===
|
|
91564
|
+
x2="${o.orientation === et.Vertical ? "0" : "100%"}"
|
|
91565
|
+
y2="${o.orientation === et.Vertical ? "100%" : "0"}"/>
|
|
91536
91566
|
</svg>
|
|
91537
91567
|
</div>
|
|
91538
91568
|
`;
|
|
@@ -91817,7 +91847,7 @@ var BE = function(o, t, e, r) {
|
|
|
91817
91847
|
}, Jx = function(o, t) {
|
|
91818
91848
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
91819
91849
|
};
|
|
91820
|
-
let Qx = class extends P(
|
|
91850
|
+
let Qx = class extends P(Mt(H)) {
|
|
91821
91851
|
// #region Fields
|
|
91822
91852
|
_thickness;
|
|
91823
91853
|
// #endregion
|
|
@@ -91878,28 +91908,28 @@ function zV(o) {
|
|
|
91878
91908
|
<mosaik-tooltip .content="${o.intl.italicLabel}"
|
|
91879
91909
|
.placement="${Pt.Top}">
|
|
91880
91910
|
<mosaik-button .icon="${"M10.649 18.5h3.847a1 1 0 0 1 0 2h-9.5a.997.997 0 0 1-.996-1c0-.552.445-1 .996-1h3.51L13.332 6H9.997a1 1 0 0 1 0-2H18.5a1 1 0 0 1 0 2h-3.025L10.65 18.5Z"}"
|
|
91881
|
-
.appearance="${
|
|
91911
|
+
.appearance="${ot.Plain}"
|
|
91882
91912
|
@click="${() => o.onAction("italic")}"></mosaik-button>
|
|
91883
91913
|
</mosaik-tooltip>
|
|
91884
91914
|
<mosaik-tooltip .content="${o.intl.boldLabel}"
|
|
91885
91915
|
.placement="${Pt.Top}">
|
|
91886
91916
|
<mosaik-button .icon="${"M6 5.75C6 4.784 6.784 4 7.75 4h4.749c2.823 0 4.751 2.34 4.751 4.75 0 .931-.288 1.852-.803 2.632C17.369 12.239 18 13.47 18 15c0 3.133-2.677 5-5 5H7.75A1.75 1.75 0 0 1 6 18.25V5.75Zm3.5 7.75v3H13c.312 0 .71-.138 1.024-.421.288-.26.476-.615.476-1.079 0-.888-.745-1.5-1.5-1.5H9.5Zm0-3.5h3c.715 0 1.25-.592 1.25-1.25 0-.657-.536-1.25-1.251-1.25H9.5V10Z"}"
|
|
91887
|
-
.appearance="${
|
|
91917
|
+
.appearance="${ot.Plain}"
|
|
91888
91918
|
@click="${() => o.onAction("bold")}"></mosaik-button>
|
|
91889
91919
|
</mosaik-tooltip>
|
|
91890
91920
|
<mosaik-tooltip .content="${o.intl.strikethroughLabel}"
|
|
91891
91921
|
.placement="${Pt.Top}">
|
|
91892
91922
|
<mosaik-button .icon="${"M13.848 11.5H19.5a1 1 0 0 1 0 2h-2.387a4.03 4.03 0 0 1 .998 2.684c0 2.93-3.28 4.915-7.033 4.48-2.328-.271-3.965-1.22-4.827-2.833-.26-.487-.207-1.016.248-1.331.455-.316 1.256-.099 1.516.388.533.998 1.604 1.592 3.294 1.789 2.586.3 4.802-.91 4.802-2.492 0-1.099-.547-1.94-2.107-2.685H5a1 1 0 1 1 0-2H13.848ZM6.987 9.695a5.122 5.122 0 0 1-.298-.51c-.3-.59-.468-1.214-.435-1.835.16-2.965 2.934-4.713 6.602-4.287 2.26.263 3.99 1.084 5.147 2.487a.993.993 0 0 1-.153 1.4c-.426.351-1.049.326-1.4-.1-.813-.985-2.068-1.596-3.825-1.8-2.56-.298-4.371.718-4.371 2.323 0 .714.239 1.22.762 1.81.225.254.647.525 1.265.815H7.192a38.03 38.03 0 0 1-.205-.303Z"}"
|
|
91893
|
-
.appearance="${
|
|
91923
|
+
.appearance="${ot.Plain}"
|
|
91894
91924
|
@click="${() => o.onAction("strikethrough")}"></mosaik-button>
|
|
91895
91925
|
</mosaik-tooltip>
|
|
91896
91926
|
</div>
|
|
91897
|
-
<mosaik-divider part="divider" .orientation="${
|
|
91927
|
+
<mosaik-divider part="divider" .orientation="${et.Vertical}"></mosaik-divider>
|
|
91898
91928
|
<div part="group">
|
|
91899
91929
|
<mosaik-tooltip .content="${o.intl.monospaceLabel}"
|
|
91900
91930
|
.placement="${Pt.Top}">
|
|
91901
91931
|
<mosaik-button .icon="${"m8.086 18.611 5.996-14.004a1 1 0 0 1 1.878.677l-.04.11-5.996 14.004a1 1 0 0 1-1.878-.677l.04-.11 5.996-14.004L8.086 18.61Zm-5.793-7.318 4-4a1 1 0 0 1 1.497 1.32l-.083.094L4.414 12l3.293 3.293a1 1 0 0 1-1.32 1.498l-.094-.084-4-4a1 1 0 0 1-.083-1.32l.083-.094 4-4-4 4Zm14-4.001a1 1 0 0 1 1.32-.083l.093.083 4.001 4.001a1 1 0 0 1 .083 1.32l-.083.095-4.001 3.995a1 1 0 0 1-1.497-1.32l.084-.095L19.584 12l-3.293-3.294a1 1 0 0 1 0-1.414Z"}"
|
|
91902
|
-
.appearance="${
|
|
91932
|
+
.appearance="${ot.Plain}"
|
|
91903
91933
|
@click="${() => o.onAction("monospace")}"></mosaik-button>
|
|
91904
91934
|
</mosaik-tooltip>
|
|
91905
91935
|
</div>
|
|
@@ -93708,7 +93738,7 @@ function OV(o) {
|
|
|
93708
93738
|
<slot name="prefix"></slot>
|
|
93709
93739
|
</div>
|
|
93710
93740
|
<mosaik-icon part="search"
|
|
93711
|
-
.appearance="${
|
|
93741
|
+
.appearance="${ot.Plain}"
|
|
93712
93742
|
.data="${ft.search}"
|
|
93713
93743
|
?inline="${!0}"></mosaik-icon>
|
|
93714
93744
|
<div part="inner" class="${to({ prefix: o.hasPrefix, suffix: o.hasSuffix })}">
|
|
@@ -93742,7 +93772,7 @@ function OV(o) {
|
|
|
93742
93772
|
`)}
|
|
93743
93773
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable && !o.isBusy, () => v`
|
|
93744
93774
|
<mosaik-button part="clear"
|
|
93745
|
-
.appearance="${
|
|
93775
|
+
.appearance="${ot.Plain}"
|
|
93746
93776
|
.icon="${ft.clear}"
|
|
93747
93777
|
.size="${J.Small}"
|
|
93748
93778
|
.iconSize="${J.Medium}"
|
|
@@ -95032,7 +95062,7 @@ function IV(o) {
|
|
|
95032
95062
|
<slot name="suffix" slot="suffix"></slot>
|
|
95033
95063
|
<mosaik-button part="caret"
|
|
95034
95064
|
slot="suffix"
|
|
95035
|
-
.appearance="${
|
|
95065
|
+
.appearance="${ot.Plain}"
|
|
95036
95066
|
.icon="${ft.caretDown}"
|
|
95037
95067
|
.size="${J.Small}"
|
|
95038
95068
|
.iconSize="${J.Medium}"
|
|
@@ -95093,7 +95123,7 @@ function HV(o) {
|
|
|
95093
95123
|
`)}
|
|
95094
95124
|
${A(o.isActive, () => v`
|
|
95095
95125
|
<mosaik-checkmark part="checkmark"
|
|
95096
|
-
.appearance="${
|
|
95126
|
+
.appearance="${ot.Plain}"
|
|
95097
95127
|
.variant="${o.variant}"
|
|
95098
95128
|
.type="${Ci.Hook}"
|
|
95099
95129
|
?checked="${o.isActive}"
|
|
@@ -96493,7 +96523,7 @@ function ZV(o) {
|
|
|
96493
96523
|
.size="${J.Giant}"
|
|
96494
96524
|
.data="${o.icon.trim() ? o.icon : ft.glasses}"
|
|
96495
96525
|
.variant="${"neutral"}"></mosaik-icon>
|
|
96496
|
-
<mosaik-stack .orientation="${
|
|
96526
|
+
<mosaik-stack .orientation="${et.Vertical}">
|
|
96497
96527
|
${A(o.header, () => v`
|
|
96498
96528
|
<mosaik-text part="header"
|
|
96499
96529
|
.readonly="${!0}"
|
|
@@ -96512,7 +96542,7 @@ function ZV(o) {
|
|
|
96512
96542
|
`)}
|
|
96513
96543
|
<slot></slot>
|
|
96514
96544
|
</mosaik-stack>
|
|
96515
|
-
<mosaik-stack .orientation="${
|
|
96545
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
96516
96546
|
.gap="${De("--empty-state-gap")}"
|
|
96517
96547
|
?hidden="${!o.hasSlotContent("actions")}">
|
|
96518
96548
|
<slot name="actions"></slot>
|
|
@@ -97796,7 +97826,7 @@ function aX(o) {
|
|
|
97796
97826
|
`)}
|
|
97797
97827
|
${A(!o.disabled && !o.isEmpty && o.isClearable, () => v`
|
|
97798
97828
|
<mosaik-button part="clear"
|
|
97799
|
-
.appearance="${
|
|
97829
|
+
.appearance="${ot.Plain}"
|
|
97800
97830
|
.icon="${ft.clear}"
|
|
97801
97831
|
.size="${J.Small}"
|
|
97802
97832
|
.iconSize="${J.Medium}"
|
|
@@ -99375,7 +99405,7 @@ function bX(o) {
|
|
|
99375
99405
|
`)}
|
|
99376
99406
|
${A(o.isChecked, () => v`
|
|
99377
99407
|
<mosaik-checkmark part="checkmark"
|
|
99378
|
-
.appearance="${
|
|
99408
|
+
.appearance="${ot.Plain}"
|
|
99379
99409
|
.variant="${o.variant}"
|
|
99380
99410
|
.type="${Ci.Hook}"
|
|
99381
99411
|
.dir="${o.dir}"
|
|
@@ -99394,7 +99424,7 @@ function bX(o) {
|
|
|
99394
99424
|
`)}
|
|
99395
99425
|
</slot>
|
|
99396
99426
|
<mosaik-stack part="text"
|
|
99397
|
-
.orientation="${
|
|
99427
|
+
.orientation="${et.Vertical}"
|
|
99398
99428
|
.dir="${o.dir}"
|
|
99399
99429
|
.lang="${o.lang}">
|
|
99400
99430
|
<slot name="label">
|
|
@@ -99418,7 +99448,7 @@ function bX(o) {
|
|
|
99418
99448
|
</mosaik-stack>
|
|
99419
99449
|
${A(o.hasChildren, () => v`
|
|
99420
99450
|
<mosaik-button part="caret"
|
|
99421
|
-
.appearance="${
|
|
99451
|
+
.appearance="${ot.Plain}"
|
|
99422
99452
|
.icon="${ft.caretDown}"
|
|
99423
99453
|
.size="${J.Small}"
|
|
99424
99454
|
.dir="${o.dir}"
|
|
@@ -100387,7 +100417,7 @@ function xX(o) {
|
|
|
100387
100417
|
</div>
|
|
100388
100418
|
${A(!o.disabled && !o.readonly && o.value && o.isClearable, () => v`
|
|
100389
100419
|
<mosaik-button part="clear"
|
|
100390
|
-
.appearance="${
|
|
100420
|
+
.appearance="${ot.Plain}"
|
|
100391
100421
|
.icon="${ft.clear}"
|
|
100392
100422
|
.size="${J.Small}"
|
|
100393
100423
|
.iconSize="${J.Medium}"
|
|
@@ -100395,7 +100425,7 @@ function xX(o) {
|
|
|
100395
100425
|
@click="${() => o.clear()}"></mosaik-button>
|
|
100396
100426
|
`)}
|
|
100397
100427
|
<mosaik-button part="picker"
|
|
100398
|
-
.appearance="${
|
|
100428
|
+
.appearance="${ot.Plain}"
|
|
100399
100429
|
.icon="${ft.clock}"
|
|
100400
100430
|
.size="${J.Small}"
|
|
100401
100431
|
.iconSize="${J.Medium}"
|
|
@@ -100432,7 +100462,7 @@ function xX(o) {
|
|
|
100432
100462
|
${A(o.markerHandler(t), (e) => v`
|
|
100433
100463
|
<mosaik-stack slot="end"
|
|
100434
100464
|
.dir="${o.dir}"
|
|
100435
|
-
.orientation="${
|
|
100465
|
+
.orientation="${et.Horizontal}"
|
|
100436
100466
|
.verticalAlignment="${fe.Center}"
|
|
100437
100467
|
.gap="${"2px"}">
|
|
100438
100468
|
${le(e, (r) => v`
|
|
@@ -106872,8 +106902,8 @@ function EK(o) {
|
|
|
106872
106902
|
@touchstart=${(a) => o.handleDrag(a)}>
|
|
106873
106903
|
<slot name="thumb">
|
|
106874
106904
|
<mosaik-icon part="thumb"
|
|
106875
|
-
.appearance="${
|
|
106876
|
-
.angel="${o.orientation ===
|
|
106905
|
+
.appearance="${ot.Soft}"
|
|
106906
|
+
.angel="${o.orientation === et.Horizontal ? 0 : 90}"
|
|
106877
106907
|
.data="${"M12 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM12 14a2 2 0 1 1 0-4 2 2 0 0 1 0 4ZM10 18a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z"}"
|
|
106878
106908
|
?disabled="${o.disabled}"></mosaik-icon>
|
|
106879
106909
|
</slot>
|
|
@@ -107336,7 +107366,7 @@ var Na = function(o, t, e, r) {
|
|
|
107336
107366
|
}, Ne = function(o, t) {
|
|
107337
107367
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
107338
107368
|
};
|
|
107339
|
-
let Xn = class extends P(ji(
|
|
107369
|
+
let Xn = class extends P(ji(Mt(G(Io(kt(H)))))) {
|
|
107340
107370
|
// #region Fields
|
|
107341
107371
|
_resizeController;
|
|
107342
107372
|
_splitRepositioned;
|
|
@@ -107497,10 +107527,10 @@ let Xn = class extends P(ji(Ft(G(Io(kt(H)))))) {
|
|
|
107497
107527
|
handleDrag(t) {
|
|
107498
107528
|
this.disabled || (t.cancelable && t.preventDefault(), this.drag(this, {
|
|
107499
107529
|
onMove: (e, r) => {
|
|
107500
|
-
let a = this.orientation ===
|
|
107530
|
+
let a = this.orientation === et.Vertical ? r : e;
|
|
107501
107531
|
this.lock === "end" && (a = this._size - a), this.snaps.forEach((n) => {
|
|
107502
107532
|
let i = null;
|
|
107503
|
-
typeof n == "number" ? i = n : n.endsWith("%") ? i = this._size * (parseFloat(n) / 100) : i = ge.extractValue(n), this.dir === Mo.RightToLeft && this.orientation ===
|
|
107533
|
+
typeof n == "number" ? i = n : n.endsWith("%") ? i = this._size * (parseFloat(n) / 100) : i = ge.extractValue(n), this.dir === Mo.RightToLeft && this.orientation === et.Horizontal && (i = this._size - i), a >= i - this.snapThreshold && a <= i + this.snapThreshold && (a = i);
|
|
107504
107534
|
}), this.position = Zx(this.pixelsToPercentage(a), 0, 100);
|
|
107505
107535
|
},
|
|
107506
107536
|
initialEvent: t
|
|
@@ -107513,7 +107543,7 @@ let Xn = class extends P(ji(Ft(G(Io(kt(H)))))) {
|
|
|
107513
107543
|
if (!this.disabled && ["ArrowLeft", "ArrowRight", "ArrowUp", "ArrowDown", "Home", "End"].includes(t.key)) {
|
|
107514
107544
|
let e = this.position;
|
|
107515
107545
|
const r = (t.shiftKey ? 10 : 1) * (this.lock === "end" ? -1 : 1);
|
|
107516
|
-
t.preventDefault(), (t.key === "ArrowLeft" && this.orientation ===
|
|
107546
|
+
t.preventDefault(), (t.key === "ArrowLeft" && this.orientation === et.Horizontal || t.key === "ArrowUp" && this.orientation === et.Vertical) && (e -= r), (t.key === "ArrowRight" && this.orientation === et.Horizontal || t.key === "ArrowDown" && this.orientation === et.Vertical) && (e += r), t.key === "Home" && (e = this.lock === "end" ? 100 : 0), t.key === "End" && (e = this.lock === "end" ? 0 : 100), this.position = Zx(e, 0, 100);
|
|
107517
107547
|
}
|
|
107518
107548
|
}
|
|
107519
107549
|
/**
|
|
@@ -107547,7 +107577,7 @@ let Xn = class extends P(ji(Ft(G(Io(kt(H)))))) {
|
|
|
107547
107577
|
*/
|
|
107548
107578
|
detectSize() {
|
|
107549
107579
|
const t = this.getBoundingClientRect();
|
|
107550
|
-
this._size = this.orientation ===
|
|
107580
|
+
this._size = this.orientation === et.Vertical ? t.height : t.width;
|
|
107551
107581
|
}
|
|
107552
107582
|
/**
|
|
107553
107583
|
* @private
|
|
@@ -107568,7 +107598,7 @@ let Xn = class extends P(ji(Ft(G(Io(kt(H)))))) {
|
|
|
107568
107598
|
if (t.length === 0)
|
|
107569
107599
|
return;
|
|
107570
107600
|
const e = t[0].contentRect;
|
|
107571
|
-
this._size = this.orientation ===
|
|
107601
|
+
this._size = this.orientation === et.Vertical ? e.height : e.width, this.lock !== g0.None && (this.position = this.pixelsToPercentage(this._cachedPositionInPixels));
|
|
107572
107602
|
}
|
|
107573
107603
|
/**
|
|
107574
107604
|
* @private
|
|
@@ -107685,7 +107715,7 @@ var ZE = function(o, t, e, r) {
|
|
|
107685
107715
|
}, f0 = function(o, t) {
|
|
107686
107716
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
107687
107717
|
}, b0;
|
|
107688
|
-
let m0 = b0 = class extends P(ji(
|
|
107718
|
+
let m0 = b0 = class extends P(ji(Mt(Io(Jm(tf))))) {
|
|
107689
107719
|
// #region Fields
|
|
107690
107720
|
_childResize;
|
|
107691
107721
|
_lastChildFill;
|
|
@@ -109768,7 +109798,7 @@ var Ry = function(o, t, e, r) {
|
|
|
109768
109798
|
}, Js = function(o, t) {
|
|
109769
109799
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
109770
109800
|
};
|
|
109771
|
-
let fg = class extends P(ji(
|
|
109801
|
+
let fg = class extends P(ji(Mt(Io(Jm(tf))))) {
|
|
109772
109802
|
// #region Fields
|
|
109773
109803
|
_columns;
|
|
109774
109804
|
_reverse;
|
|
@@ -115776,7 +115806,7 @@ function XZ(o) {
|
|
|
115776
115806
|
.placeholder="${o.placeholder}"
|
|
115777
115807
|
.multiline="${!0}"
|
|
115778
115808
|
.value="${$r(o.value.message)}"
|
|
115779
|
-
.appearance="${
|
|
115809
|
+
.appearance="${ot.Plain}"
|
|
115780
115810
|
.variant="${o.variant}"
|
|
115781
115811
|
@input="${(t) => o.onInput(t)}"
|
|
115782
115812
|
@keyup="${(t) => o.onKeyup(t)}"></mosaik-textbox>
|
|
@@ -115787,7 +115817,7 @@ function XZ(o) {
|
|
|
115787
115817
|
</div>
|
|
115788
115818
|
<div part="end">
|
|
115789
115819
|
<mosaik-button .dir="${o.dir}"
|
|
115790
|
-
.appearance="${
|
|
115820
|
+
.appearance="${ot.Plain}"
|
|
115791
115821
|
.icon="${ft.send}"
|
|
115792
115822
|
@click="${() => o.send(o.value.message, o.value.files)}"></mosaik-button>
|
|
115793
115823
|
</div>
|
|
@@ -116923,12 +116953,12 @@ function lJ(o) {
|
|
|
116923
116953
|
${A(o.isSticky, () => v`
|
|
116924
116954
|
<mosaik-sticky>
|
|
116925
116955
|
<mosaik-stack .dir="${o.dir}"
|
|
116926
|
-
.orientation="${
|
|
116956
|
+
.orientation="${et.Horizontal}"
|
|
116927
116957
|
.verticalAlignment="${fe.Center}"
|
|
116928
116958
|
.gap="${"16px"}">
|
|
116929
116959
|
<mosaik-divider part="divider"
|
|
116930
116960
|
.dir="${o.dir}"
|
|
116931
|
-
.orientation="${
|
|
116961
|
+
.orientation="${et.Horizontal}"
|
|
116932
116962
|
.thickness="${o.thickness}"></mosaik-divider>
|
|
116933
116963
|
<slot>
|
|
116934
116964
|
<mosaik-text part="text"
|
|
@@ -116939,18 +116969,18 @@ function lJ(o) {
|
|
|
116939
116969
|
</slot>
|
|
116940
116970
|
<mosaik-divider part="divider"
|
|
116941
116971
|
.dir="${o.dir}"
|
|
116942
|
-
.orientation="${
|
|
116972
|
+
.orientation="${et.Horizontal}"
|
|
116943
116973
|
.thickness="${o.thickness}"></mosaik-divider>
|
|
116944
116974
|
</mosaik-stack>
|
|
116945
116975
|
</mosaik-sticky>
|
|
116946
116976
|
`, () => v`
|
|
116947
116977
|
<mosaik-stack .dir="${o.dir}"
|
|
116948
|
-
.orientation="${
|
|
116978
|
+
.orientation="${et.Horizontal}"
|
|
116949
116979
|
.verticalAlignment="${fe.Center}"
|
|
116950
116980
|
.gap="${"16px"}">
|
|
116951
116981
|
<mosaik-divider part="divider"
|
|
116952
116982
|
.dir="${o.dir}"
|
|
116953
|
-
.orientation="${
|
|
116983
|
+
.orientation="${et.Horizontal}"
|
|
116954
116984
|
.thickness="${o.thickness}"></mosaik-divider>
|
|
116955
116985
|
<slot>
|
|
116956
116986
|
<mosaik-text part="text"
|
|
@@ -116961,7 +116991,7 @@ function lJ(o) {
|
|
|
116961
116991
|
</slot>
|
|
116962
116992
|
<mosaik-divider part="divider"
|
|
116963
116993
|
.dir="${o.dir}"
|
|
116964
|
-
.orientation="${
|
|
116994
|
+
.orientation="${et.Horizontal}"
|
|
116965
116995
|
.thickness="${o.thickness}"></mosaik-divider>
|
|
116966
116996
|
</mosaik-stack>
|
|
116967
116997
|
`)}
|
|
@@ -117481,7 +117511,7 @@ function bJ(o) {
|
|
|
117481
117511
|
return v`
|
|
117482
117512
|
<mosaik-stack part="root"
|
|
117483
117513
|
.dir="${o.dir}"
|
|
117484
|
-
.orientation="${
|
|
117514
|
+
.orientation="${et.Horizontal}"
|
|
117485
117515
|
.reverse="${!o.reply}">
|
|
117486
117516
|
<slot name="avatar"
|
|
117487
117517
|
@slotchange="${(t) => o.onSlotChange(t)}"></slot>
|
|
@@ -119336,7 +119366,7 @@ var bk = function(o, t, e, r) {
|
|
|
119336
119366
|
}, kg = function(o, t) {
|
|
119337
119367
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
119338
119368
|
};
|
|
119339
|
-
let vm = class extends P(Z(
|
|
119369
|
+
let vm = class extends P(Z(Mt(fs(dk(ce(ct(H))))))) {
|
|
119340
119370
|
// #region Fields
|
|
119341
119371
|
_text;
|
|
119342
119372
|
_icon;
|
|
@@ -121029,7 +121059,7 @@ var Rf = function(o, t, e, r) {
|
|
|
121029
121059
|
}, Nc = function(o, t) {
|
|
121030
121060
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
121031
121061
|
};
|
|
121032
|
-
let bp = class extends P(G(
|
|
121062
|
+
let bp = class extends P(G(Mt(Ot(H)))) {
|
|
121033
121063
|
// #region Fields
|
|
121034
121064
|
_resizeController;
|
|
121035
121065
|
_colorController;
|
|
@@ -121194,14 +121224,14 @@ let bp = class extends P(G(Ft(Ot(H)))) {
|
|
|
121194
121224
|
calculateHandlePosition(t) {
|
|
121195
121225
|
if (!this._boundingClientRect)
|
|
121196
121226
|
return this._sliderHandlePosition;
|
|
121197
|
-
const e = this._boundingClientRect, r = this.orientation ===
|
|
121198
|
-
return this.orientation ===
|
|
121227
|
+
const e = this._boundingClientRect, r = this.orientation === et.Horizontal ? e.top : e.left, a = this.orientation === et.Horizontal ? t.clientY : t.clientX, n = this.orientation === et.Horizontal ? e.height : e.width, i = Math.max(0, Math.min(1, (a - r) / n));
|
|
121228
|
+
return this.orientation === et.Horizontal || this.dir !== Mo.LeftToRight ? 100 - 100 * i : 100 * i;
|
|
121199
121229
|
}
|
|
121200
121230
|
handleGradientPointerdown(t) {
|
|
121201
121231
|
t.button === 0 && (t.stopPropagation(), t.preventDefault(), this._thumb.dispatchEvent(new PointerEvent("pointerdown", t)), this.handlePointermove(t));
|
|
121202
121232
|
}
|
|
121203
121233
|
get handlePositionStyles() {
|
|
121204
|
-
return `${this.orientation ===
|
|
121234
|
+
return `${this.orientation === et.Vertical ? "inset-block-end" : "inset-inline-start"}: ${this._sliderHandlePosition}%`;
|
|
121205
121235
|
}
|
|
121206
121236
|
};
|
|
121207
121237
|
Rf([
|
|
@@ -121520,17 +121550,17 @@ w0 = iC([
|
|
|
121520
121550
|
function GJ(o) {
|
|
121521
121551
|
return v`
|
|
121522
121552
|
<mosaik-stack .dir="${o.dir}"
|
|
121523
|
-
.orientation="${
|
|
121553
|
+
.orientation="${et.Horizontal}"
|
|
121524
121554
|
.gap="${De("--comment-gap")}">
|
|
121525
121555
|
<div part="avatar">
|
|
121526
121556
|
<slot name="avatar"></slot>
|
|
121527
121557
|
</div>
|
|
121528
121558
|
<mosaik-stack .dir="${o.dir}"
|
|
121529
|
-
.orientation="${
|
|
121559
|
+
.orientation="${et.Horizontal}"
|
|
121530
121560
|
.gap="${De("--comment-gap")}">
|
|
121531
121561
|
<div part="inner">
|
|
121532
121562
|
<mosaik-stack .dir="${o.dir}"
|
|
121533
|
-
.orientation="${
|
|
121563
|
+
.orientation="${et.Horizontal}"
|
|
121534
121564
|
.gap="${De("--comment-inner-gap")}">
|
|
121535
121565
|
<slot name="author">
|
|
121536
121566
|
<mosaik-text part="author"
|
|
@@ -123018,8 +123048,8 @@ function hQ(o) {
|
|
|
123018
123048
|
`)}
|
|
123019
123049
|
</mosaik-avatar>
|
|
123020
123050
|
<!-- > -->
|
|
123021
|
-
<mosaik-stack .orientation="${
|
|
123022
|
-
.horizontalAlignment="${It(o.orientation ===
|
|
123051
|
+
<mosaik-stack .orientation="${et.Vertical}"
|
|
123052
|
+
.horizontalAlignment="${It(o.orientation === et.Vertical ? Or.Center : void 0)}">
|
|
123023
123053
|
${A(o.primaryText.trim() ? o.primaryText.trim() : o.text.trim(), () => v`
|
|
123024
123054
|
<mosaik-text part="primaryText"
|
|
123025
123055
|
.text="${o.primaryText.trim() ? o.primaryText.trim() : o.text.trim()}"
|
|
@@ -123327,7 +123357,7 @@ var Qp = function(o, t, e, r) {
|
|
|
123327
123357
|
}, mi = function(o, t) {
|
|
123328
123358
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
123329
123359
|
};
|
|
123330
|
-
let Fc = class extends P(
|
|
123360
|
+
let Fc = class extends P(Mt(fs(Ea))) {
|
|
123331
123361
|
// #region Fields
|
|
123332
123362
|
_primaryText;
|
|
123333
123363
|
_secondaryText;
|
|
@@ -125307,20 +125337,20 @@ function zQ(o) {
|
|
|
125307
125337
|
.subHeader="${o.intl.messageLabel}"
|
|
125308
125338
|
.icon="${"M12 2c.714 0 1.419.075 2.106.222a.75.75 0 0 1 .374 1.263 2.501 2.501 0 0 0 1.206 4.201.75.75 0 0 1 .577.811 2.5 2.5 0 0 0 4.36 1.908.75.75 0 0 1 1.307.409c.047.39.07.787.07 1.186 0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2Zm3 14a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-7-1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm4-4a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM7 8a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"}"
|
|
125309
125339
|
.elevation="${o.elevation}"
|
|
125310
|
-
.appearance="${
|
|
125340
|
+
.appearance="${ot.Plain}">
|
|
125311
125341
|
<slot name="actions"
|
|
125312
125342
|
slot="actions"></slot>
|
|
125313
125343
|
${A(o.acceptable, () => v`
|
|
125314
125344
|
<mosaik-button slot="actions"
|
|
125315
125345
|
.label="${o.intl.acceptLabel}"
|
|
125316
|
-
.appearance="${
|
|
125346
|
+
.appearance="${ot.Plain}"
|
|
125317
125347
|
.variant="${ue.Primary}"
|
|
125318
125348
|
@click="${() => o.onAccept()}"></mosaik-button>
|
|
125319
125349
|
`)}
|
|
125320
125350
|
${A(o.dismissable, () => v`
|
|
125321
125351
|
<mosaik-button slot="actions"
|
|
125322
125352
|
.label="${o.intl.dismissLabel}"
|
|
125323
|
-
.appearance="${
|
|
125353
|
+
.appearance="${ot.Plain}"
|
|
125324
125354
|
.variant="${ue.Primary}"
|
|
125325
125355
|
@click="${() => o.onDismiss()}"></mosaik-button>
|
|
125326
125356
|
`)}
|
|
@@ -126648,7 +126678,7 @@ function HQ(o) {
|
|
|
126648
126678
|
<mosaik-icon .data="${o.icon}"
|
|
126649
126679
|
.size="${J.Large}"></mosaik-icon>
|
|
126650
126680
|
`)}
|
|
126651
|
-
<mosaik-stack .orientation="${
|
|
126681
|
+
<mosaik-stack .orientation="${et.Vertical}"
|
|
126652
126682
|
.verticalAlignment="${fe.Center}">
|
|
126653
126683
|
<mosaik-text part="headerText"
|
|
126654
126684
|
.text="${o.header}"></mosaik-text>
|
|
@@ -127491,7 +127521,7 @@ class Oh {
|
|
|
127491
127521
|
Oh.set(new UQ());
|
|
127492
127522
|
function YQ(o) {
|
|
127493
127523
|
return v`
|
|
127494
|
-
<mosaik-stack .orientation="${
|
|
127524
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
127495
127525
|
.verticalAlignment="${fe.Center}"
|
|
127496
127526
|
.gap="${De("--dialog-actions-gap")}"
|
|
127497
127527
|
.dir="${o.dir}"
|
|
@@ -127499,7 +127529,7 @@ function YQ(o) {
|
|
|
127499
127529
|
<slot name="prefix"></slot>
|
|
127500
127530
|
</mosaik-stack>
|
|
127501
127531
|
<mosaik-stack style="flex: 1;"
|
|
127502
|
-
.orientation="${
|
|
127532
|
+
.orientation="${et.Horizontal}"
|
|
127503
127533
|
.verticalAlignment="${fe.Center}"
|
|
127504
127534
|
.horizontalAlignment="${Or.Right}"
|
|
127505
127535
|
.gap="${De("--dialog-actions-gap")}"
|
|
@@ -127507,7 +127537,7 @@ function YQ(o) {
|
|
|
127507
127537
|
?hidden="${!o.hasSlotContent("")}">
|
|
127508
127538
|
<slot></slot>
|
|
127509
127539
|
</mosaik-stack>
|
|
127510
|
-
<mosaik-stack .orientation="${
|
|
127540
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
127511
127541
|
.verticalAlignment="${fe.Center}"
|
|
127512
127542
|
.gap="${De("--dialog-actions-gap")}"
|
|
127513
127543
|
.dir="${o.dir}"
|
|
@@ -130637,7 +130667,7 @@ const Ett = {
|
|
|
130637
130667
|
isDraggable: !1,
|
|
130638
130668
|
closeable: !1,
|
|
130639
130669
|
elevation: ol.Bold,
|
|
130640
|
-
appearance:
|
|
130670
|
+
appearance: ot.Default,
|
|
130641
130671
|
enter: lf,
|
|
130642
130672
|
exit: kl,
|
|
130643
130673
|
isFullScreen: !1
|
|
@@ -130922,7 +130952,7 @@ function Ott(o) {
|
|
|
130922
130952
|
.subTitle="${o.subHeader}">
|
|
130923
130953
|
<mosaik-button slot="end"
|
|
130924
130954
|
.icon="${ft.close}"
|
|
130925
|
-
.appearance="${
|
|
130955
|
+
.appearance="${ot.Plain}"
|
|
130926
130956
|
@click="${() => o.close()}"></mosaik-button>
|
|
130927
130957
|
</mosaik-toolbar>
|
|
130928
130958
|
`)}
|
|
@@ -132551,43 +132581,43 @@ function Gtt(o) {
|
|
|
132551
132581
|
<mosaik-button part="actionOk"
|
|
132552
132582
|
.label="${o.labels.ok ?? "OK"}"
|
|
132553
132583
|
.variant="${ue.Primary}"
|
|
132554
|
-
.appearance="${
|
|
132584
|
+
.appearance="${ot.Solid}"
|
|
132555
132585
|
@click="${() => o.onDialogResult("ok")}"></mosaik-button>
|
|
132556
132586
|
`)}
|
|
132557
132587
|
${A(o.buttons === Dh.OKCancel, () => v`
|
|
132558
132588
|
<mosaik-button part="actionOk"
|
|
132559
132589
|
.label="${o.labels.ok ?? "OK"}"
|
|
132560
132590
|
.variant="${ue.Primary}"
|
|
132561
|
-
.appearance="${
|
|
132591
|
+
.appearance="${ot.Solid}"
|
|
132562
132592
|
@click="${() => o.onDialogResult("ok")}"></mosaik-button>
|
|
132563
132593
|
<mosaik-button part="actionCancel"
|
|
132564
132594
|
.label="${o.labels.cancel ?? "Cancel"}"
|
|
132565
132595
|
.variant="${ue.Primary}"
|
|
132566
|
-
.appearance="${
|
|
132596
|
+
.appearance="${ot.Plain}"
|
|
132567
132597
|
@click="${() => o.onDialogResult("cancel")}"></mosaik-button>
|
|
132568
132598
|
`)}
|
|
132569
132599
|
${A(o.buttons === Dh.YesNo, () => v`
|
|
132570
132600
|
<mosaik-button part="actionYes" .label="${o.labels.yes ?? "Yes"}"
|
|
132571
132601
|
.variant="${ue.Primary}"
|
|
132572
|
-
.appearance="${
|
|
132602
|
+
.appearance="${ot.Solid}"
|
|
132573
132603
|
@click="${() => o.onDialogResult("yes")}"></mosaik-button>
|
|
132574
132604
|
<mosaik-button part="actionNo" .label="${o.labels.no ?? "No"}"
|
|
132575
132605
|
.variant="${ue.Primary}"
|
|
132576
|
-
.appearance="${
|
|
132606
|
+
.appearance="${ot.Plain}"
|
|
132577
132607
|
@click="${() => o.onDialogResult("no")}"></mosaik-button>
|
|
132578
132608
|
`)}
|
|
132579
132609
|
${A(o.buttons === Dh.YesNoCancel, () => v`
|
|
132580
132610
|
<mosaik-button part="actionYes" .label="${o.labels.yes ?? "Yes"}"
|
|
132581
132611
|
.variant="${ue.Primary}"
|
|
132582
|
-
.appearance="${
|
|
132612
|
+
.appearance="${ot.Solid}"
|
|
132583
132613
|
@click="${() => o.onDialogResult("yes")}"></mosaik-button>
|
|
132584
132614
|
<mosaik-button part="actionNo" .label="${o.labels.no ?? "No"}"
|
|
132585
132615
|
.variant="${ue.Primary}"
|
|
132586
|
-
.appearance="${
|
|
132616
|
+
.appearance="${ot.Plain}"
|
|
132587
132617
|
@click="${() => o.onDialogResult("no")}"></mosaik-button>
|
|
132588
132618
|
<mosaik-button part="actionCancel" .label="${o.labels.cancel ?? "Cancel"}"
|
|
132589
132619
|
.variant="${ue.Primary}"
|
|
132590
|
-
.appearance="${
|
|
132620
|
+
.appearance="${ot.Plain}"
|
|
132591
132621
|
@click="${() => o.onDialogResult("cancel")}"></mosaik-button>
|
|
132592
132622
|
`)}
|
|
132593
132623
|
</mosaik-dialog-actions>
|
|
@@ -132906,7 +132936,7 @@ const Ktt = {
|
|
|
132906
132936
|
header: "",
|
|
132907
132937
|
subHeader: "",
|
|
132908
132938
|
message: "",
|
|
132909
|
-
appearance:
|
|
132939
|
+
appearance: ot.Default,
|
|
132910
132940
|
variant: ue.Default,
|
|
132911
132941
|
labels: {
|
|
132912
132942
|
ok: "OK",
|
|
@@ -133143,7 +133173,7 @@ function eet(o) {
|
|
|
133143
133173
|
<div class="outer">
|
|
133144
133174
|
<div class="inner">
|
|
133145
133175
|
${A(o.isIndeterminate, () => v`
|
|
133146
|
-
${A(o.orientation ===
|
|
133176
|
+
${A(o.orientation === et.Horizontal, () => v`
|
|
133147
133177
|
<div class="bg indeterminate"
|
|
133148
133178
|
style="${Er({ height: `${ge.tryParse(o.thickness)}` })}">
|
|
133149
133179
|
</div>
|
|
@@ -133153,7 +133183,7 @@ function eet(o) {
|
|
|
133153
133183
|
</div>
|
|
133154
133184
|
`)}
|
|
133155
133185
|
`, () => v`
|
|
133156
|
-
${A(o.orientation ===
|
|
133186
|
+
${A(o.orientation === et.Horizontal, () => v`
|
|
133157
133187
|
<div class="bg"
|
|
133158
133188
|
style="${Er({ height: `${ge.tryParse(o.thickness)}`, width: `${o.value / o.max * 100}%` })}">
|
|
133159
133189
|
</div>
|
|
@@ -133759,7 +133789,7 @@ var $f = function(o, t, e, r) {
|
|
|
133759
133789
|
}, Ki = function(o, t) {
|
|
133760
133790
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
133761
133791
|
};
|
|
133762
|
-
let mp = class extends P(Z(
|
|
133792
|
+
let mp = class extends P(Z(Mt(G(Ht(xl))))) {
|
|
133763
133793
|
// #region Fields
|
|
133764
133794
|
_isIndeterminate;
|
|
133765
133795
|
_thickness;
|
|
@@ -133879,7 +133909,7 @@ function aet(o) {
|
|
|
133879
133909
|
`)}
|
|
133880
133910
|
|
|
133881
133911
|
<div part="root">
|
|
133882
|
-
<mosaik-stack .orientation="${
|
|
133912
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
133883
133913
|
.verticalAlignment="${fe.Center}"
|
|
133884
133914
|
gap="${"16px"}">
|
|
133885
133915
|
${A(o.isBusy, () => v`
|
|
@@ -133889,7 +133919,7 @@ function aet(o) {
|
|
|
133889
133919
|
.variant="${o.variant}"
|
|
133890
133920
|
.isIndeterminate="${!0}"></mosaik-progress-ring>
|
|
133891
133921
|
`)}
|
|
133892
|
-
<mosaik-stack orientation="${
|
|
133922
|
+
<mosaik-stack orientation="${et.Vertical}">
|
|
133893
133923
|
<mosaik-text part="header"
|
|
133894
133924
|
.text="${o.header}"
|
|
133895
133925
|
?truncate="${!0}"></mosaik-text>
|
|
@@ -133901,14 +133931,14 @@ function aet(o) {
|
|
|
133901
133931
|
<slot name="actions"></slot>
|
|
133902
133932
|
${A(o.closeable, () => v`
|
|
133903
133933
|
<mosaik-button .label="${"Close"}"
|
|
133904
|
-
.appearance="${
|
|
133934
|
+
.appearance="${ot.Plain}"
|
|
133905
133935
|
.variant="${o.variant}"
|
|
133906
133936
|
@click="${() => o.close()}"></mosaik-button>
|
|
133907
133937
|
`)}
|
|
133908
133938
|
</mosaik-stack>
|
|
133909
133939
|
${A(o.showProgress && o.timeout > 0, () => v`
|
|
133910
133940
|
<mosaik-progress-bar part="progress"
|
|
133911
|
-
.orientation="${
|
|
133941
|
+
.orientation="${et.Horizontal}"
|
|
133912
133942
|
.maximum="${o.timeout}"
|
|
133913
133943
|
.value="${o.intervalTick}"
|
|
133914
133944
|
.variant="${ue.Primary}"></mosaik-progress-bar>
|
|
@@ -138727,7 +138757,7 @@ function Qet(o) {
|
|
|
138727
138757
|
</div>
|
|
138728
138758
|
${A(o.hint.trim(), () => v`
|
|
138729
138759
|
<mosaik-divider part="divider"
|
|
138730
|
-
.orientation="${
|
|
138760
|
+
.orientation="${et.Horizontal}"
|
|
138731
138761
|
.lang="${o.lang}"
|
|
138732
138762
|
.dir="${o.dir}"></mosaik-divider>
|
|
138733
138763
|
`)}
|
|
@@ -140711,7 +140741,7 @@ var vC = function(o, t, e, r) {
|
|
|
140711
140741
|
}, D0 = function(o, t) {
|
|
140712
140742
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
140713
140743
|
};
|
|
140714
|
-
let L0 = class extends P(ji(
|
|
140744
|
+
let L0 = class extends P(ji(Mt(kt(H)))) {
|
|
140715
140745
|
// #region Fields
|
|
140716
140746
|
_speed;
|
|
140717
140747
|
// #endregion
|
|
@@ -141762,7 +141792,7 @@ function Cot(o) {
|
|
|
141762
141792
|
${le(o.calculatePages(o.total, o.size), (t) => t, (t) => v`
|
|
141763
141793
|
<mosaik-button part="page"
|
|
141764
141794
|
.label="${t.toString()}"
|
|
141765
|
-
.appearance="${
|
|
141795
|
+
.appearance="${ot.Plain}"
|
|
141766
141796
|
.variant="${ue.Default}"></mosaik-button>
|
|
141767
141797
|
`)}
|
|
141768
141798
|
</mosaik-stack>
|
|
@@ -142366,7 +142396,7 @@ function Lot(o) {
|
|
|
142366
142396
|
return v`
|
|
142367
142397
|
<div part="root">
|
|
142368
142398
|
${A(o.icon, () => v`
|
|
142369
|
-
<mosaik-icon .appearance="${
|
|
142399
|
+
<mosaik-icon .appearance="${ot.Plain}"
|
|
142370
142400
|
.variant="${o.variant}"
|
|
142371
142401
|
.data="${o.icon}"
|
|
142372
142402
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -144995,7 +145025,7 @@ var Di = function(o, t, e, r) {
|
|
|
144995
145025
|
}, no = function(o, t) {
|
|
144996
145026
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
144997
145027
|
};
|
|
144998
|
-
let Ta = class extends P(G(
|
|
145028
|
+
let Ta = class extends P(G(Mt(H))) {
|
|
144999
145029
|
// #region Fields
|
|
145000
145030
|
_min;
|
|
145001
145031
|
_max;
|
|
@@ -145936,7 +145966,7 @@ var vh = function(o, t, e, r) {
|
|
|
145936
145966
|
}, zn = function(o, t) {
|
|
145937
145967
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
145938
145968
|
};
|
|
145939
|
-
let wd = class extends P(Z(
|
|
145969
|
+
let wd = class extends P(Z(Mt(G(Ht(xl))))) {
|
|
145940
145970
|
// #region Fields
|
|
145941
145971
|
_thickness;
|
|
145942
145972
|
_high;
|
|
@@ -146378,7 +146408,7 @@ var Id = function(o, t, e, r) {
|
|
|
146378
146408
|
}, Ar = function(o, t) {
|
|
146379
146409
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
146380
146410
|
};
|
|
146381
|
-
let fl = class extends P(Z(
|
|
146411
|
+
let fl = class extends P(Z(Mt(G(Ht(xl))))) {
|
|
146382
146412
|
// #region Fields
|
|
146383
146413
|
_thickness;
|
|
146384
146414
|
_radius;
|
|
@@ -148014,7 +148044,7 @@ var Tl = function(o, t, e, r) {
|
|
|
148014
148044
|
}, yr = function(o, t) {
|
|
148015
148045
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
148016
148046
|
};
|
|
148017
|
-
let ps = class extends P(
|
|
148047
|
+
let ps = class extends P(Mt(G(Z(ct(Vo(Ye(xl))))))) {
|
|
148018
148048
|
// #region Fields
|
|
148019
148049
|
_inputElement;
|
|
148020
148050
|
_step;
|
|
@@ -148965,7 +148995,7 @@ var Li = function(o, t, e, r) {
|
|
|
148965
148995
|
}, Eo = function(o, t) {
|
|
148966
148996
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
148967
148997
|
};
|
|
148968
|
-
let Pa = class extends P(
|
|
148998
|
+
let Pa = class extends P(Mt(G(Z(ct(Vo(Ye(xl))))))) {
|
|
148969
148999
|
// #region Fields
|
|
148970
149000
|
_inputElement;
|
|
148971
149001
|
_step;
|
|
@@ -149862,7 +149892,7 @@ var Lf = function(o, t, e, r) {
|
|
|
149862
149892
|
}, bl = function(o, t) {
|
|
149863
149893
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
149864
149894
|
};
|
|
149865
|
-
let wp = class extends P(
|
|
149895
|
+
let wp = class extends P(Mt(G(Z(ct(kt(Dk)))))) {
|
|
149866
149896
|
// #region Fields
|
|
149867
149897
|
_thickness;
|
|
149868
149898
|
_step;
|
|
@@ -151432,7 +151462,7 @@ let xi = class extends P(kt(Ha)) {
|
|
|
151432
151462
|
* @public
|
|
151433
151463
|
*/
|
|
151434
151464
|
constructor() {
|
|
151435
|
-
super(), this._page = 0, this._numVisible = 1, this._numScroll = 1, this._orientation =
|
|
151465
|
+
super(), this._page = 0, this._numVisible = 1, this._numScroll = 1, this._orientation = et.Horizontal, this._circular = !1, this._showIndicators = !1, this._showNavigators = !1, this._autoplayInterval = 0;
|
|
151436
151466
|
}
|
|
151437
151467
|
// #endregion
|
|
151438
151468
|
// #region Properties
|
|
@@ -151633,7 +151663,7 @@ Pl([
|
|
|
151633
151663
|
vr("design:paramtypes", [Number])
|
|
151634
151664
|
], xi.prototype, "numScroll", null);
|
|
151635
151665
|
Pl([
|
|
151636
|
-
b({ type:
|
|
151666
|
+
b({ type: et }),
|
|
151637
151667
|
vr("design:type", String),
|
|
151638
151668
|
vr("design:paramtypes", [String])
|
|
151639
151669
|
], xi.prototype, "orientation", null);
|
|
@@ -151761,7 +151791,7 @@ function ont(o) {
|
|
|
151761
151791
|
<slot name="suffix" slot="suffix"></slot>
|
|
151762
151792
|
<mosaik-button part="icon"
|
|
151763
151793
|
slot="suffix"
|
|
151764
|
-
.appearance="${
|
|
151794
|
+
.appearance="${ot.Plain}"
|
|
151765
151795
|
.icon="${ft.caretDown}"
|
|
151766
151796
|
.size="${J.Small}"
|
|
151767
151797
|
.iconSize="${J.Medium}"
|
|
@@ -151808,7 +151838,7 @@ function rnt(o) {
|
|
|
151808
151838
|
`], [so.Multiple, () => v`
|
|
151809
151839
|
${A(o.isChecked, () => v`
|
|
151810
151840
|
<mosaik-checkmark part="checkmark"
|
|
151811
|
-
.appearance="${
|
|
151841
|
+
.appearance="${ot.Plain}"
|
|
151812
151842
|
.variant="${o.variant}"
|
|
151813
151843
|
.type="${Ci.Hook}"
|
|
151814
151844
|
?checked="${o.isChecked}"
|
|
@@ -154951,7 +154981,7 @@ var Hk = function(o, t, e, r) {
|
|
|
154951
154981
|
}, Mg = function(o, t) {
|
|
154952
154982
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
154953
154983
|
};
|
|
154954
|
-
let Tm = class extends P(
|
|
154984
|
+
let Tm = class extends P(Mt(H)) {
|
|
154955
154985
|
// #region Fields
|
|
154956
154986
|
_header;
|
|
154957
154987
|
_textOverflow;
|
|
@@ -155548,7 +155578,7 @@ function Wnt(o) {
|
|
|
155548
155578
|
<slot name="icon">
|
|
155549
155579
|
${A(o.icon, () => v`
|
|
155550
155580
|
<mosaik-icon part="icon"
|
|
155551
|
-
.appearance="${
|
|
155581
|
+
.appearance="${ot.Plain}"
|
|
155552
155582
|
.variant="${o.variant}"
|
|
155553
155583
|
.data="${o.icon}"
|
|
155554
155584
|
.size="${o.iconSize ?? o.size}"
|
|
@@ -156125,7 +156155,7 @@ var Nf = function(o, t, e, r) {
|
|
|
156125
156155
|
}, Ji = function(o, t) {
|
|
156126
156156
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
156127
156157
|
};
|
|
156128
|
-
let th = class extends P(
|
|
156158
|
+
let th = class extends P(Mt(Ow(Ht(bn)))) {
|
|
156129
156159
|
// #region Fields
|
|
156130
156160
|
_icon;
|
|
156131
156161
|
_iconPosition;
|
|
@@ -157023,7 +157053,7 @@ function tat(o) {
|
|
|
157023
157053
|
}
|
|
157024
157054
|
})()}"
|
|
157025
157055
|
.variant="${o.variant}"
|
|
157026
|
-
.appearance="${
|
|
157056
|
+
.appearance="${ot.Solid}"
|
|
157027
157057
|
?disabled="${o.disabled}"
|
|
157028
157058
|
?hidden="${!o.hasIndicator}"></mosaik-ink-bar>
|
|
157029
157059
|
</div>
|
|
@@ -157052,7 +157082,7 @@ function eat(o) {
|
|
|
157052
157082
|
<slot name="icon">
|
|
157053
157083
|
${A(o.icon, () => v`
|
|
157054
157084
|
<mosaik-icon part="icon"
|
|
157055
|
-
.appearance="${
|
|
157085
|
+
.appearance="${ot.Plain}"
|
|
157056
157086
|
.data="${o.icon}"
|
|
157057
157087
|
.size="${Ws(o.iconSize)}"
|
|
157058
157088
|
.inline="${!0}"
|
|
@@ -157729,7 +157759,7 @@ var EC = function(o, t, e, r) {
|
|
|
157729
157759
|
}, V0 = function(o, t) {
|
|
157730
157760
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
157731
157761
|
};
|
|
157732
|
-
let qh = class extends P(Ht(bs(G(Vo(Z(
|
|
157762
|
+
let qh = class extends P(Ht(bs(G(Vo(Z(Mt(Qw(Ot(H))))))))) {
|
|
157733
157763
|
// #region Fields
|
|
157734
157764
|
_keyboardController;
|
|
157735
157765
|
_placement;
|
|
@@ -159899,7 +159929,7 @@ var vat = function(o, t, e, r) {
|
|
|
159899
159929
|
}, xat = function(o, t) {
|
|
159900
159930
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
159901
159931
|
};
|
|
159902
|
-
let Pm = class extends P(zi(G(
|
|
159932
|
+
let Pm = class extends P(zi(G(Mt(Dp(Qw(Ht(bs(Ot(H))))))))) {
|
|
159903
159933
|
// #region Ctor
|
|
159904
159934
|
/**
|
|
159905
159935
|
* Constructs a new instance of the `TabItemElement` class.
|
|
@@ -160744,7 +160774,7 @@ function Pat(o) {
|
|
|
160744
160774
|
${A(o.hasChildren && !o.isBusy, () => v`
|
|
160745
160775
|
<div part="prefix-container">
|
|
160746
160776
|
<mosaik-button part="caret"
|
|
160747
|
-
.appearance="${
|
|
160777
|
+
.appearance="${ot.Plain}"
|
|
160748
160778
|
.icon="${ft.caretDown}"
|
|
160749
160779
|
.size="${J.Small}"
|
|
160750
160780
|
.dir="${o.dir}"
|
|
@@ -160771,7 +160801,7 @@ function Pat(o) {
|
|
|
160771
160801
|
</slot>
|
|
160772
160802
|
${Rp(o.parent.selectionMode, [[so.None, () => v.nothing], [so.Single, () => v.nothing], [so.Multiple, () => v`
|
|
160773
160803
|
<mosaik-checkmark part="checkmark"
|
|
160774
|
-
.appearance="${
|
|
160804
|
+
.appearance="${ot.Outline}"
|
|
160775
160805
|
.variant="${o.variant}"
|
|
160776
160806
|
.type="${Ci.Hook}"
|
|
160777
160807
|
.dir="${o.dir}"
|
|
@@ -162779,7 +162809,7 @@ function Qat(o) {
|
|
|
162779
162809
|
<mosaik-toolbar part="toolbar"
|
|
162780
162810
|
.dir="${o.dir}"
|
|
162781
162811
|
.lang="${o.lang}"
|
|
162782
|
-
.appearance="${
|
|
162812
|
+
.appearance="${ot.Plain}">
|
|
162783
162813
|
<mosaik-button slot="start"
|
|
162784
162814
|
.label="${"1x"}"
|
|
162785
162815
|
.appearance="${o.appearance}"
|
|
@@ -162801,7 +162831,7 @@ function Qat(o) {
|
|
|
162801
162831
|
.dir="${o.dir}"
|
|
162802
162832
|
.lang="${o.lang}"
|
|
162803
162833
|
@click=${() => o.zoom = 4}></mosaik-button>
|
|
162804
|
-
<mosaik-divider slot="start" .orientation="${
|
|
162834
|
+
<mosaik-divider slot="start" .orientation="${et.Vertical}"></mosaik-divider>
|
|
162805
162835
|
<mosaik-button slot="start"
|
|
162806
162836
|
.label="${"Jetzt"}"
|
|
162807
162837
|
.appearance="${o.appearance}"
|
|
@@ -162810,7 +162840,7 @@ function Qat(o) {
|
|
|
162810
162840
|
.lang="${o.lang}"
|
|
162811
162841
|
@click=${() => o.scrollToNow(!0)}></mosaik-button>
|
|
162812
162842
|
<mosaik-divider slot="start"
|
|
162813
|
-
.orientation="${
|
|
162843
|
+
.orientation="${et.Vertical}"
|
|
162814
162844
|
.dir="${o.dir}"
|
|
162815
162845
|
.lang="${o.lang}"></mosaik-divider>
|
|
162816
162846
|
<mosaik-button slot="start"
|
|
@@ -162830,7 +162860,7 @@ function Qat(o) {
|
|
|
162830
162860
|
.lang="${o.lang}"
|
|
162831
162861
|
@click="${() => o.zoomOut()}"></mosaik-button>
|
|
162832
162862
|
<mosaik-divider slot="start"
|
|
162833
|
-
.orientation="${
|
|
162863
|
+
.orientation="${et.Vertical}"
|
|
162834
162864
|
.dir="${o.dir}"
|
|
162835
162865
|
.lang="${o.lang}"></mosaik-divider>
|
|
162836
162866
|
<mosaik-button slot="start"
|
|
@@ -163608,7 +163638,7 @@ function lit(o) {
|
|
|
163608
163638
|
.wrap="${!0}"
|
|
163609
163639
|
.lang="${o.lang}"
|
|
163610
163640
|
.dir="${o.dir}"></mosaik-text>
|
|
163611
|
-
<mosaik-stack .orientation="${
|
|
163641
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
163612
163642
|
.gap="${"4px"}">
|
|
163613
163643
|
<mosaik-text part="content"
|
|
163614
163644
|
.text="${K0.format(o.start, "HH:mm", o.locale)} - ${K0.format(o.end, "HH:mm", o.locale)}"
|
|
@@ -165343,7 +165373,7 @@ function yit(o) {
|
|
|
165343
165373
|
<mosaik-progress-bar part="progressBar" .isIndeterminate="${o.isBusy}"></mosaik-progress-bar>
|
|
165344
165374
|
`)}
|
|
165345
165375
|
<mosaik-toolbar part="toolbar"
|
|
165346
|
-
.appearance="${
|
|
165376
|
+
.appearance="${ot.Plain}"
|
|
165347
165377
|
.dir="${o.dir}"
|
|
165348
165378
|
.lang="${o.lang}">
|
|
165349
165379
|
<slot slot="start"
|
|
@@ -166347,7 +166377,7 @@ function zit(o) {
|
|
|
166347
166377
|
.size="${J.Giant}"
|
|
166348
166378
|
.data="${o.icon.trim().length > 0 ? o.icon : ft.errorCircle}"
|
|
166349
166379
|
.variant="${ue.Danger}"></mosaik-icon>
|
|
166350
|
-
<mosaik-stack .orientation="${
|
|
166380
|
+
<mosaik-stack .orientation="${et.Vertical}">
|
|
166351
166381
|
${A(o.header, () => v`
|
|
166352
166382
|
<mosaik-text part="header"
|
|
166353
166383
|
.readonly="${!0}"
|
|
@@ -166374,7 +166404,7 @@ function zit(o) {
|
|
|
166374
166404
|
`)}
|
|
166375
166405
|
<slot></slot>
|
|
166376
166406
|
</mosaik-stack>
|
|
166377
|
-
<mosaik-stack .orientation="${
|
|
166407
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
166378
166408
|
.gap="${De("--error-state-gap")}"
|
|
166379
166409
|
?hidden="${!o.hasSlotContent("actions")}">
|
|
166380
166410
|
<slot name="actions"></slot>
|
|
@@ -166811,7 +166841,7 @@ function Rit(o) {
|
|
|
166811
166841
|
<mosaik-progress-ring part="symbol"
|
|
166812
166842
|
.radius="${De("--busy-state-symbol-size")}"
|
|
166813
166843
|
.isIndeterminate="${!0}"></mosaik-progress-ring>
|
|
166814
|
-
<mosaik-stack .orientation="${
|
|
166844
|
+
<mosaik-stack .orientation="${et.Vertical}">
|
|
166815
166845
|
${A(o.header, () => v`
|
|
166816
166846
|
<mosaik-text part="header"
|
|
166817
166847
|
.readonly="${!0}"
|
|
@@ -166830,7 +166860,7 @@ function Rit(o) {
|
|
|
166830
166860
|
`)}
|
|
166831
166861
|
<slot></slot>
|
|
166832
166862
|
</mosaik-stack>
|
|
166833
|
-
<mosaik-stack .orientation="${
|
|
166863
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
166834
166864
|
.gap="${De("--busy-state-gap")}"
|
|
166835
166865
|
?hidden="${!o.hasSlotContent("actions")}">
|
|
166836
166866
|
<slot name="actions"></slot>
|
|
@@ -167269,7 +167299,7 @@ function Tit(o) {
|
|
|
167269
167299
|
.size="${J.Giant}"
|
|
167270
167300
|
.data="${o.icon.trim().length > 0 ? o.icon : ft.successCircle}"
|
|
167271
167301
|
.variant="${ue.Success}"></mosaik-icon>
|
|
167272
|
-
<mosaik-stack .orientation="${
|
|
167302
|
+
<mosaik-stack .orientation="${et.Vertical}">
|
|
167273
167303
|
${A(o.header, () => v`
|
|
167274
167304
|
<mosaik-text part="header"
|
|
167275
167305
|
.readonly="${!0}"
|
|
@@ -167288,7 +167318,7 @@ function Tit(o) {
|
|
|
167288
167318
|
`)}
|
|
167289
167319
|
<slot></slot>
|
|
167290
167320
|
</mosaik-stack>
|
|
167291
|
-
<mosaik-stack .orientation="${
|
|
167321
|
+
<mosaik-stack .orientation="${et.Horizontal}"
|
|
167292
167322
|
.gap="${De("--success-state-gap")}"
|
|
167293
167323
|
?hidden="${!o.hasSlotContent("actions")}">
|
|
167294
167324
|
<slot name="actions"></slot>
|