@breadstone/mosaik-elements-svelte 0.0.122 → 0.0.123
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 +7 -0
- package/index.mjs +123 -99
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 0.0.123 (2025-08-20)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add alignment property to HintComponent for better layout control ([2213e85eb3](https://github.com/RueDeRennes/mosaik/commit/2213e85eb3))
|
|
6
|
+
- add alignment property to HintElement and update template to support it ([985785e116](https://github.com/RueDeRennes/mosaik/commit/985785e116))
|
|
7
|
+
|
|
1
8
|
## 0.0.122 (2025-08-20)
|
|
2
9
|
|
|
3
10
|
### 🩹 Fixes
|
package/index.mjs
CHANGED
|
@@ -6286,7 +6286,7 @@ const Ee = (o) => {
|
|
|
6286
6286
|
Q_("design:type", Object),
|
|
6287
6287
|
Q_("design:paramtypes", [Object])
|
|
6288
6288
|
], t.prototype, "formatter", null), t;
|
|
6289
|
-
},
|
|
6289
|
+
}, $t = {
|
|
6290
6290
|
/**
|
|
6291
6291
|
* `center` - Align element to center.
|
|
6292
6292
|
*/
|
|
@@ -6984,7 +6984,7 @@ let Dn = class extends P(Q(G(Ee(H)))) {
|
|
|
6984
6984
|
super(), this._text = {
|
|
6985
6985
|
rawValue: "",
|
|
6986
6986
|
value: ""
|
|
6987
|
-
}, this._truncate = !1, this._wrap = !1, this._maxLength = null, this._maxLines = null, this._readonly = !1, this._alignment =
|
|
6987
|
+
}, this._truncate = !1, this._wrap = !1, this._maxLength = null, this._maxLines = null, this._readonly = !1, this._alignment = $t.Left, this._marker = null;
|
|
6988
6988
|
}
|
|
6989
6989
|
// #endregion
|
|
6990
6990
|
// #region Properties
|
|
@@ -7132,13 +7132,17 @@ let Dn = class extends P(Q(G(Ee(H)))) {
|
|
|
7132
7132
|
* @protected
|
|
7133
7133
|
*/
|
|
7134
7134
|
onTextPropertyChanged(t, e) {
|
|
7135
|
-
|
|
7135
|
+
const r = this.formatter;
|
|
7136
|
+
this._text.value = this.formatter ? r(this._text.rawValue) : this._text.rawValue;
|
|
7136
7137
|
}
|
|
7137
7138
|
/**
|
|
7138
7139
|
* @protected
|
|
7139
7140
|
*/
|
|
7140
7141
|
onFormatterPropertyChanged(t, e) {
|
|
7141
|
-
|
|
7142
|
+
if (e) {
|
|
7143
|
+
const r = e;
|
|
7144
|
+
this._text.value = r(this._text.rawValue);
|
|
7145
|
+
}
|
|
7142
7146
|
}
|
|
7143
7147
|
/**
|
|
7144
7148
|
* @protected
|
|
@@ -7187,7 +7191,7 @@ za([
|
|
|
7187
7191
|
Pe("design:paramtypes", [Boolean])
|
|
7188
7192
|
], Dn.prototype, "readonly", null);
|
|
7189
7193
|
za([
|
|
7190
|
-
b({ type:
|
|
7194
|
+
b({ type: $t }),
|
|
7191
7195
|
Pe("design:type", String),
|
|
7192
7196
|
Pe("design:paramtypes", [String])
|
|
7193
7197
|
], Dn.prototype, "alignment", null);
|
|
@@ -7205,7 +7209,7 @@ za([
|
|
|
7205
7209
|
za([
|
|
7206
7210
|
D("formatter"),
|
|
7207
7211
|
Pe("design:type", Function),
|
|
7208
|
-
Pe("design:paramtypes", [
|
|
7212
|
+
Pe("design:paramtypes", [Object, Object]),
|
|
7209
7213
|
Pe("design:returntype", void 0)
|
|
7210
7214
|
], Dn.prototype, "onFormatterPropertyChanged", null);
|
|
7211
7215
|
za([
|
|
@@ -11777,7 +11781,7 @@ var f1 = function(o, t, e, r) {
|
|
|
11777
11781
|
}, su = function(o, t) {
|
|
11778
11782
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
11779
11783
|
};
|
|
11780
|
-
const
|
|
11784
|
+
const Ot = (o) => {
|
|
11781
11785
|
class t extends o {
|
|
11782
11786
|
// #region Fields
|
|
11783
11787
|
_value;
|
|
@@ -11839,7 +11843,7 @@ var AS = function(o, t, e, r) {
|
|
|
11839
11843
|
}, Db = function(o, t) {
|
|
11840
11844
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
11841
11845
|
};
|
|
11842
|
-
class al extends CS(
|
|
11846
|
+
class al extends CS(Ot(H)) {
|
|
11843
11847
|
// #region Fields
|
|
11844
11848
|
_valueChanged;
|
|
11845
11849
|
_value;
|
|
@@ -12687,7 +12691,7 @@ var k6 = function(o, t, e, r) {
|
|
|
12687
12691
|
}, b1 = function(o, t) {
|
|
12688
12692
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
12689
12693
|
};
|
|
12690
|
-
class Yr extends Q(pt(Xr(
|
|
12694
|
+
class Yr extends Q(pt(Xr(Ot(G(ar(H)))))) {
|
|
12691
12695
|
// #region Fields
|
|
12692
12696
|
_type;
|
|
12693
12697
|
// #endregion
|
|
@@ -29484,7 +29488,7 @@ var $1 = function(o, t, e, r) {
|
|
|
29484
29488
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
29485
29489
|
};
|
|
29486
29490
|
const Me = (o) => {
|
|
29487
|
-
class t extends
|
|
29491
|
+
class t extends Ot(o) {
|
|
29488
29492
|
// #region Fields
|
|
29489
29493
|
_invalid;
|
|
29490
29494
|
// #endregion
|
|
@@ -29560,7 +29564,7 @@ var Jc = function(o, t, e, r) {
|
|
|
29560
29564
|
}, Jo = function(o, t) {
|
|
29561
29565
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
29562
29566
|
};
|
|
29563
|
-
let Vl = class extends P(Me(G(qt(
|
|
29567
|
+
let Vl = class extends P(Me(G(qt(Ot(pt(Q(Ct(H)))))))) {
|
|
29564
29568
|
// #region Fields
|
|
29565
29569
|
_toggleChanged;
|
|
29566
29570
|
_eventSubscriptions;
|
|
@@ -43249,7 +43253,7 @@ var oj = function(o, t, e, r) {
|
|
|
43249
43253
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
43250
43254
|
};
|
|
43251
43255
|
const qn = (o) => {
|
|
43252
|
-
class t extends
|
|
43256
|
+
class t extends Ot(G(o)) {
|
|
43253
43257
|
// #region Fields
|
|
43254
43258
|
_cleared;
|
|
43255
43259
|
_isClearable;
|
|
@@ -44949,7 +44953,7 @@ var Lo = function(o, t, e, r) {
|
|
|
44949
44953
|
}, Bt = function(o, t) {
|
|
44950
44954
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
44951
44955
|
};
|
|
44952
|
-
let jo = class extends P(Ct(qn(pt(Q(G(Lt(Me(
|
|
44956
|
+
let jo = class extends P(Ct(qn(pt(Q(G(Lt(Me(Ot(mn(Zr)))))))))) {
|
|
44953
44957
|
// #region Fields
|
|
44954
44958
|
_keyboardController;
|
|
44955
44959
|
_inputElement;
|
|
@@ -44976,7 +44980,7 @@ let jo = class extends P(Ct(qn(pt(Q(G(Lt(Me($t(mn(Zr)))))))))) {
|
|
|
44976
44980
|
* @public
|
|
44977
44981
|
*/
|
|
44978
44982
|
constructor() {
|
|
44979
|
-
super(), this._value = "", this._multiline = !1, this._multilineRows = 3, this._multilineMaxRows = null, this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._keyboard = FE.Text, this._type = nv.Text, this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._minlength = null, this._maxlength = null, this._resize = rv.None, this._textAlign =
|
|
44983
|
+
super(), this._value = "", this._multiline = !1, this._multilineRows = 3, this._multilineMaxRows = null, this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._keyboard = FE.Text, this._type = nv.Text, this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._minlength = null, this._maxlength = null, this._resize = rv.None, this._textAlign = $t.Left, this._keyboardController = new yn(this);
|
|
44980
44984
|
}
|
|
44981
44985
|
// #endregion
|
|
44982
44986
|
// #region Properties
|
|
@@ -45453,7 +45457,7 @@ Lo([
|
|
|
45453
45457
|
Bt("design:paramtypes", [String])
|
|
45454
45458
|
], jo.prototype, "resize", null);
|
|
45455
45459
|
Lo([
|
|
45456
|
-
b({ type:
|
|
45460
|
+
b({ type: $t }),
|
|
45457
45461
|
Bt("design:type", String),
|
|
45458
45462
|
Bt("design:paramtypes", [String])
|
|
45459
45463
|
], jo.prototype, "textAlign", null);
|
|
@@ -45911,6 +45915,7 @@ function j8(o) {
|
|
|
45911
45915
|
<mosaik-text .text="${o.text}"
|
|
45912
45916
|
.formatter="${o.formatter}"
|
|
45913
45917
|
.truncate="${o.truncate}"
|
|
45918
|
+
.alignment="${o.alignment}"
|
|
45914
45919
|
?wrap="${o.wrap}"></mosaik-text>
|
|
45915
45920
|
`;
|
|
45916
45921
|
}
|
|
@@ -46152,13 +46157,14 @@ let Zu = class extends P(Ee(H)) {
|
|
|
46152
46157
|
_text;
|
|
46153
46158
|
_wrap;
|
|
46154
46159
|
_truncate;
|
|
46160
|
+
_alignment;
|
|
46155
46161
|
// #endregion
|
|
46156
46162
|
// #region Ctor
|
|
46157
46163
|
/**
|
|
46158
46164
|
* @public
|
|
46159
46165
|
*/
|
|
46160
46166
|
constructor() {
|
|
46161
|
-
super(), this._text = "", this._wrap = !1, this._truncate = !1;
|
|
46167
|
+
super(), this._text = "", this._wrap = !1, this._truncate = !1, this._alignment = $t.Left;
|
|
46162
46168
|
}
|
|
46163
46169
|
// #endregion
|
|
46164
46170
|
// #region Properties
|
|
@@ -46208,6 +46214,24 @@ let Zu = class extends P(Ee(H)) {
|
|
|
46208
46214
|
set truncate(t) {
|
|
46209
46215
|
this._truncate !== t && (this._truncate = t, this.requestUpdate("truncate"));
|
|
46210
46216
|
}
|
|
46217
|
+
/**
|
|
46218
|
+
* Gets or sets the `alignment` property.
|
|
46219
|
+
*
|
|
46220
|
+
* Possible values are:
|
|
46221
|
+
* * `center`
|
|
46222
|
+
* * `justify`
|
|
46223
|
+
* * `left`
|
|
46224
|
+
* * `right`
|
|
46225
|
+
*
|
|
46226
|
+
* @public
|
|
46227
|
+
* @attr
|
|
46228
|
+
*/
|
|
46229
|
+
get alignment() {
|
|
46230
|
+
return this._alignment;
|
|
46231
|
+
}
|
|
46232
|
+
set alignment(t) {
|
|
46233
|
+
this._alignment !== t && (this._alignment = t, this.requestUpdate("alignment"));
|
|
46234
|
+
}
|
|
46211
46235
|
};
|
|
46212
46236
|
iv([
|
|
46213
46237
|
b({ type: String }),
|
|
@@ -60037,7 +60061,7 @@ var bi = function(o, t, e, r) {
|
|
|
60037
60061
|
}, bo = function(o, t) {
|
|
60038
60062
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
60039
60063
|
};
|
|
60040
|
-
let ga = class extends P(pt(Q(G(
|
|
60064
|
+
let ga = class extends P(pt(Q(G(Ot(ar(H)))))) {
|
|
60041
60065
|
// #region Fields
|
|
60042
60066
|
_text;
|
|
60043
60067
|
_value;
|
|
@@ -61192,13 +61216,13 @@ function tW(o) {
|
|
|
61192
61216
|
<mosaik-text part="weekNumberLabel"
|
|
61193
61217
|
.dir="${o.dir}"
|
|
61194
61218
|
.text="${o.intl?.weekNumberLabel}"
|
|
61195
|
-
.alignment="${
|
|
61219
|
+
.alignment="${$t.Center}"></mosaik-text>
|
|
61196
61220
|
`)}
|
|
61197
61221
|
${he(Q7(s, o.firstDayOfWeek), (d) => d, (d) => w`
|
|
61198
61222
|
<mosaik-text part="dayLabel"
|
|
61199
61223
|
.dir="${o.dir}"
|
|
61200
61224
|
.text="${d}"
|
|
61201
|
-
.alignment="${
|
|
61225
|
+
.alignment="${$t.Center}"></mosaik-text>
|
|
61202
61226
|
`)}
|
|
61203
61227
|
</div>
|
|
61204
61228
|
<div part="dayView"
|
|
@@ -63114,7 +63138,7 @@ var vo = function(o, t, e, r) {
|
|
|
63114
63138
|
}, Pt = function(o, t) {
|
|
63115
63139
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
63116
63140
|
};
|
|
63117
|
-
let so = class extends P(hl(pt(G(Me(
|
|
63141
|
+
let so = class extends P(hl(pt(G(Me(Ot(qt(Q(Do(H))))))))) {
|
|
63118
63142
|
// #region Fields
|
|
63119
63143
|
_dateChanged;
|
|
63120
63144
|
_intl;
|
|
@@ -65680,7 +65704,7 @@ var lv = function(o, t, e, r) {
|
|
|
65680
65704
|
}, fc = function(o, t) {
|
|
65681
65705
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
65682
65706
|
};
|
|
65683
|
-
let _r = class extends P(Me(
|
|
65707
|
+
let _r = class extends P(Me(Ot(Q(pt(G(Lt(ul))))))) {
|
|
65684
65708
|
// #region Fields
|
|
65685
65709
|
_inputElement;
|
|
65686
65710
|
_labelPosition;
|
|
@@ -66104,7 +66128,7 @@ var ss = function(o, t, e, r) {
|
|
|
66104
66128
|
}, Ge = function(o, t) {
|
|
66105
66129
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
66106
66130
|
}, Hx;
|
|
66107
|
-
let Ja = Hx = class extends P(Me(G(qt(
|
|
66131
|
+
let Ja = Hx = class extends P(Me(G(qt(Ot(pt(Q(Ct(H)))))))) {
|
|
66108
66132
|
// #region Fields
|
|
66109
66133
|
_checkChanged;
|
|
66110
66134
|
_name;
|
|
@@ -67707,7 +67731,7 @@ var dv = function(o, t, e, r) {
|
|
|
67707
67731
|
}, bc = function(o, t) {
|
|
67708
67732
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
67709
67733
|
};
|
|
67710
|
-
let ag = class extends P(jp(Q(pt(Iw(G(Xr(ar(Lt(Ct(
|
|
67734
|
+
let ag = class extends P(jp(Q(pt(Iw(G(Xr(ar(Lt(Ct(Ot(H))))))))))) {
|
|
67711
67735
|
// #region Fields
|
|
67712
67736
|
_icon;
|
|
67713
67737
|
_isCheckable;
|
|
@@ -68701,7 +68725,7 @@ var ir = function(o, t, e, r) {
|
|
|
68701
68725
|
}, Jt = function(o, t) {
|
|
68702
68726
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
68703
68727
|
};
|
|
68704
|
-
let Uo = class extends P(Ct(qn(G(Me(
|
|
68728
|
+
let Uo = class extends P(Ct(qn(G(Me(Ot(Q(pt(Lt(Zr))))))))) {
|
|
68705
68729
|
// #region Fields
|
|
68706
68730
|
_chipElements;
|
|
68707
68731
|
_inputElement;
|
|
@@ -69726,7 +69750,7 @@ var Pp = function(o, t, e, r) {
|
|
|
69726
69750
|
}, Qa = function(o, t) {
|
|
69727
69751
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
69728
69752
|
};
|
|
69729
|
-
let jr = class extends P(Me(G(pt(Q(Lt(
|
|
69753
|
+
let jr = class extends P(Me(G(pt(Q(Lt(Ot(ul))))))) {
|
|
69730
69754
|
// #region Fields
|
|
69731
69755
|
_inputElement;
|
|
69732
69756
|
_name;
|
|
@@ -70506,7 +70530,7 @@ var ls = function(o, t, e, r) {
|
|
|
70506
70530
|
}, We = function(o, t) {
|
|
70507
70531
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
70508
70532
|
}, Bx;
|
|
70509
|
-
let ti = Bx = class extends P(qt(Me(
|
|
70533
|
+
let ti = Bx = class extends P(qt(Me(Ot(G(pt(Q(Ct(H)))))))) {
|
|
70510
70534
|
// #region Fields
|
|
70511
70535
|
_choiceChanged;
|
|
70512
70536
|
_name;
|
|
@@ -71006,7 +71030,7 @@ var cv = function(o, t, e, r) {
|
|
|
71006
71030
|
}, Os = function(o, t) {
|
|
71007
71031
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
71008
71032
|
};
|
|
71009
|
-
let ig = class extends P(
|
|
71033
|
+
let ig = class extends P(Ot(H)) {
|
|
71010
71034
|
// #region Fields
|
|
71011
71035
|
_inputElement;
|
|
71012
71036
|
_value;
|
|
@@ -71444,7 +71468,7 @@ var hv = function(o, t, e, r) {
|
|
|
71444
71468
|
}, mc = function(o, t) {
|
|
71445
71469
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
71446
71470
|
};
|
|
71447
|
-
let sg = class extends P(
|
|
71471
|
+
let sg = class extends P(Ot(Xr(H))) {
|
|
71448
71472
|
// #region Fields
|
|
71449
71473
|
_name;
|
|
71450
71474
|
_value;
|
|
@@ -72545,7 +72569,7 @@ var xn = function(o, t, e, r) {
|
|
|
72545
72569
|
}, ze = function(o, t) {
|
|
72546
72570
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
72547
72571
|
};
|
|
72548
|
-
let Gr = class extends P(Ct(qn(G(Me(
|
|
72572
|
+
let Gr = class extends P(Ct(qn(G(Me(Ot(Q(pt(hd(Lt(Zr)))))))))) {
|
|
72549
72573
|
// #region Fields
|
|
72550
72574
|
_inputElement;
|
|
72551
72575
|
_colorPickerElement;
|
|
@@ -72570,7 +72594,7 @@ let Gr = class extends P(Ct(qn(G(Me($t(Q(pt(hd(Lt(Zr)))))))))) {
|
|
|
72570
72594
|
// ignored: [this._floatingElement], // TODO: implement
|
|
72571
72595
|
skipInitial: !0,
|
|
72572
72596
|
callback: () => this.close()
|
|
72573
|
-
}), this._pattern = "#([A-Fa-f0-9]{3,4}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{8})", this._swatches = ["#F44336", "#E91E63", "#9C27B0", "#673AB7", "#3F51B5", "#2196F3", "#03A9F4", "#00BCD4", "#009688", "#4CAF50", "#8BC34A", "#CDDC39", "#FFEB3B", "#FFC107", "#FF9800", "#FF5722", "#795548", "#9E9E9E", "#607D8B"], this._textAlign =
|
|
72597
|
+
}), this._pattern = "#([A-Fa-f0-9]{3,4}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{8})", this._swatches = ["#F44336", "#E91E63", "#9C27B0", "#673AB7", "#3F51B5", "#2196F3", "#03A9F4", "#00BCD4", "#009688", "#4CAF50", "#8BC34A", "#CDDC39", "#FFEB3B", "#FFC107", "#FF9800", "#FF5722", "#795548", "#9E9E9E", "#607D8B"], this._textAlign = $t.Right;
|
|
72574
72598
|
}
|
|
72575
72599
|
// #endregion
|
|
72576
72600
|
// #region Properties
|
|
@@ -72876,7 +72900,7 @@ xn([
|
|
|
72876
72900
|
ze("design:paramtypes", [Array])
|
|
72877
72901
|
], Gr.prototype, "swatches", null);
|
|
72878
72902
|
xn([
|
|
72879
|
-
b({ type:
|
|
72903
|
+
b({ type: $t }),
|
|
72880
72904
|
ze("design:type", String),
|
|
72881
72905
|
ze("design:paramtypes", [String])
|
|
72882
72906
|
], Gr.prototype, "textAlign", null);
|
|
@@ -74465,7 +74489,7 @@ var ne = function(o, t, e, r) {
|
|
|
74465
74489
|
}, gt = function(o, t) {
|
|
74466
74490
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
74467
74491
|
}, Fx;
|
|
74468
|
-
let ee = Fx = class extends P(Ct(qn(hl(G(Me(
|
|
74492
|
+
let ee = Fx = class extends P(Ct(qn(hl(G(Me(Ot(Q(pt(hd(Lt(Zr))))))))))) {
|
|
74469
74493
|
// #region Fields
|
|
74470
74494
|
_inputElement;
|
|
74471
74495
|
_clickOutsideController;
|
|
@@ -74501,7 +74525,7 @@ let ee = Fx = class extends P(Ct(qn(hl(G(Me($t(Q(pt(hd(Lt(Zr))))))))))) {
|
|
|
74501
74525
|
* @public
|
|
74502
74526
|
*/
|
|
74503
74527
|
constructor() {
|
|
74504
|
-
super(), Object.assign(this, { maxDropDownHeight: "auto" }), this._value = /* @__PURE__ */ new Date(), this._displayValue = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._placeholder = "", this._autocomplete = !1, this._values = new Array(), this._view = ho.Day, this._selectionMode = ws.Single, this._blackoutDates = new Array(), this._specialDates = new Array(), this._minDate = null, this._maxDate = null, this._firstDayOfWeek = fd.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (t) => [], this._showAdjacent = !1, this._format = "yyyy-MM-dd", this._invalidInput = !1, this._textAlign =
|
|
74528
|
+
super(), Object.assign(this, { maxDropDownHeight: "auto" }), this._value = /* @__PURE__ */ new Date(), this._displayValue = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._placeholder = "", this._autocomplete = !1, this._values = new Array(), this._view = ho.Day, this._selectionMode = ws.Single, this._blackoutDates = new Array(), this._specialDates = new Array(), this._minDate = null, this._maxDate = null, this._firstDayOfWeek = fd.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (t) => [], this._showAdjacent = !1, this._format = "yyyy-MM-dd", this._invalidInput = !1, this._textAlign = $t.Right, this._clickOutsideController = new os(this, {
|
|
74505
74529
|
skipInitial: !0,
|
|
74506
74530
|
callback: () => {
|
|
74507
74531
|
this.close();
|
|
@@ -75204,7 +75228,7 @@ ne([
|
|
|
75204
75228
|
gt("design:paramtypes", [String])
|
|
75205
75229
|
], ee.prototype, "format", null);
|
|
75206
75230
|
ne([
|
|
75207
|
-
b({ type:
|
|
75231
|
+
b({ type: $t }),
|
|
75208
75232
|
gt("design:type", String),
|
|
75209
75233
|
gt("design:paramtypes", [String])
|
|
75210
75234
|
], ee.prototype, "textAlign", null);
|
|
@@ -76245,7 +76269,7 @@ var le = function(o, t, e, r) {
|
|
|
76245
76269
|
}, bt = function(o, t) {
|
|
76246
76270
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
76247
76271
|
}, Yx;
|
|
76248
|
-
let re = Yx = class extends P(Ct(qn(hl(G(Me(
|
|
76272
|
+
let re = Yx = class extends P(Ct(qn(hl(G(Me(Ot(Q(pt(hd(Lt(Zr))))))))))) {
|
|
76249
76273
|
// #region Fields
|
|
76250
76274
|
_inputElement;
|
|
76251
76275
|
_clickOutsideController;
|
|
@@ -76280,7 +76304,7 @@ let re = Yx = class extends P(Ct(qn(hl(G(Me($t(Q(pt(hd(Lt(Zr))))))))))) {
|
|
|
76280
76304
|
* @public
|
|
76281
76305
|
*/
|
|
76282
76306
|
constructor() {
|
|
76283
|
-
super(), Object.assign(this, { maxDropDownHeight: "auto" }), this._value = /* @__PURE__ */ new Date(), this._displayValue = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._placeholder = "", this._autocomplete = !1, this._values = new Array(), this._view = ho.Day, this._blackoutDates = new Array(), this._specialDates = new Array(), this._minDate = null, this._maxDate = null, this._firstDayOfWeek = fd.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (t) => [], this._showAdjacent = !1, this._format = "yyyy-MM-dd HH:mm:ss", this._invalidInput = !1, this._textAlign =
|
|
76307
|
+
super(), Object.assign(this, { maxDropDownHeight: "auto" }), this._value = /* @__PURE__ */ new Date(), this._displayValue = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._placeholder = "", this._autocomplete = !1, this._values = new Array(), this._view = ho.Day, this._blackoutDates = new Array(), this._specialDates = new Array(), this._minDate = null, this._maxDate = null, this._firstDayOfWeek = fd.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (t) => [], this._showAdjacent = !1, this._format = "yyyy-MM-dd HH:mm:ss", this._invalidInput = !1, this._textAlign = $t.Right, this._clickOutsideController = new os(this, {
|
|
76284
76308
|
skipInitial: !0,
|
|
76285
76309
|
callback: () => this.close()
|
|
76286
76310
|
}), this._keyboardController = new yn(this), this._projectionController = new ud(this, {
|
|
@@ -76973,7 +76997,7 @@ le([
|
|
|
76973
76997
|
bt("design:paramtypes", [String])
|
|
76974
76998
|
], re.prototype, "format", null);
|
|
76975
76999
|
le([
|
|
76976
|
-
b({ type:
|
|
77000
|
+
b({ type: $t }),
|
|
76977
77001
|
bt("design:type", String),
|
|
76978
77002
|
bt("design:paramtypes", [String])
|
|
76979
77003
|
], re.prototype, "textAlign", null);
|
|
@@ -78218,7 +78242,7 @@ var pk = function(o, t, e, r) {
|
|
|
78218
78242
|
}, Xh = function(o, t) {
|
|
78219
78243
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
78220
78244
|
};
|
|
78221
|
-
class ds extends
|
|
78245
|
+
class ds extends Ot(H) {
|
|
78222
78246
|
// #region Fields
|
|
78223
78247
|
_selected;
|
|
78224
78248
|
_unselected;
|
|
@@ -78757,7 +78781,7 @@ var uk = function(o, t, e, r) {
|
|
|
78757
78781
|
}, Eh = function(o, t) {
|
|
78758
78782
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
78759
78783
|
};
|
|
78760
|
-
let Kh = class extends P(G(
|
|
78784
|
+
let Kh = class extends P(G(Ot(Q(ar(ds))))) {
|
|
78761
78785
|
// #region Fields
|
|
78762
78786
|
_isChecked;
|
|
78763
78787
|
// #endregion
|
|
@@ -81805,7 +81829,7 @@ var Lr = function(o, t, e, r) {
|
|
|
81805
81829
|
}, se = function(o, t) {
|
|
81806
81830
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
81807
81831
|
};
|
|
81808
|
-
let $o = class extends P(G(pt(Q(Me(
|
|
81832
|
+
let $o = class extends P(G(pt(Q(Me(Ot(H)))))) {
|
|
81809
81833
|
// #region Fields
|
|
81810
81834
|
_fileAdded;
|
|
81811
81835
|
_fileDeleted;
|
|
@@ -84091,7 +84115,7 @@ var Jr = function(o, t, e, r) {
|
|
|
84091
84115
|
}, xe = function(o, t) {
|
|
84092
84116
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
84093
84117
|
};
|
|
84094
|
-
let Or = class extends P(Ct(qn(pt(G(Me(
|
|
84118
|
+
let Or = class extends P(Ct(qn(pt(G(Me(Ot(Q(Lt(mn(bf)))))))))) {
|
|
84095
84119
|
// #region Fields
|
|
84096
84120
|
_inputElement;
|
|
84097
84121
|
_value;
|
|
@@ -84112,7 +84136,7 @@ let Or = class extends P(Ct(qn(pt(G(Me($t(Q(Lt(mn(bf)))))))))) {
|
|
|
84112
84136
|
* @public
|
|
84113
84137
|
*/
|
|
84114
84138
|
constructor() {
|
|
84115
|
-
super(), this._value = null, this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._keyboard = YE.Numeric, this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._spinPosition = uv.After, this._textAlign =
|
|
84139
|
+
super(), this._value = null, this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._keyboard = YE.Numeric, this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._spinPosition = uv.After, this._textAlign = $t.Right, this._spinner = !1;
|
|
84116
84140
|
}
|
|
84117
84141
|
// #endregion
|
|
84118
84142
|
// #region Properties
|
|
@@ -84487,7 +84511,7 @@ Jr([
|
|
|
84487
84511
|
xe("design:paramtypes", [Boolean])
|
|
84488
84512
|
], Or.prototype, "spinner", null);
|
|
84489
84513
|
Jr([
|
|
84490
|
-
b({ type:
|
|
84514
|
+
b({ type: $t }),
|
|
84491
84515
|
xe("design:type", String),
|
|
84492
84516
|
xe("design:paramtypes", [String])
|
|
84493
84517
|
], Or.prototype, "textAlign", null);
|
|
@@ -85403,7 +85427,7 @@ var Ir = function(o, t, e, r) {
|
|
|
85403
85427
|
}, fe = function(o, t) {
|
|
85404
85428
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
85405
85429
|
};
|
|
85406
|
-
let ur = class extends P(Ct(qn(G(Me(
|
|
85430
|
+
let ur = class extends P(Ct(qn(G(Me(Ot(Q(Lt(pt(Zr))))))))) {
|
|
85407
85431
|
// #region Fields
|
|
85408
85432
|
_revealed;
|
|
85409
85433
|
_concealed;
|
|
@@ -85425,7 +85449,7 @@ let ur = class extends P(Ct(qn(G(Me($t(Q(Lt(pt(Zr))))))))) {
|
|
|
85425
85449
|
* @public
|
|
85426
85450
|
*/
|
|
85427
85451
|
constructor() {
|
|
85428
|
-
super(), this._value = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._revealable = !1, this._isReveal = !1, this._textAlign =
|
|
85452
|
+
super(), this._value = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._revealable = !1, this._isReveal = !1, this._textAlign = $t.Left, this._revealed = new it(this, "revealed"), this._concealed = new it(this, "concealed");
|
|
85429
85453
|
}
|
|
85430
85454
|
// #endregion
|
|
85431
85455
|
// #region Properties
|
|
@@ -85819,7 +85843,7 @@ Ir([
|
|
|
85819
85843
|
fe("design:paramtypes", [Boolean])
|
|
85820
85844
|
], ur.prototype, "isReveal", null);
|
|
85821
85845
|
Ir([
|
|
85822
|
-
b({ type:
|
|
85846
|
+
b({ type: $t }),
|
|
85823
85847
|
fe("design:type", String),
|
|
85824
85848
|
fe("design:paramtypes", [String])
|
|
85825
85849
|
], ur.prototype, "textAlign", null);
|
|
@@ -86371,7 +86395,7 @@ var vi = function(o, t, e, r) {
|
|
|
86371
86395
|
}, zo = function(o, t) {
|
|
86372
86396
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
86373
86397
|
};
|
|
86374
|
-
let fa = class extends P(G(Me(
|
|
86398
|
+
let fa = class extends P(G(Me(Ot(Q(pt(Zr)))))) {
|
|
86375
86399
|
// #region Fields
|
|
86376
86400
|
_keyboardController;
|
|
86377
86401
|
_inputElement;
|
|
@@ -87183,7 +87207,7 @@ var fv = function(o, t, e, r) {
|
|
|
87183
87207
|
}, xc = function(o, t) {
|
|
87184
87208
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
87185
87209
|
};
|
|
87186
|
-
let Mr = class extends P(Me(
|
|
87210
|
+
let Mr = class extends P(Me(Ot(Q(pt(G(Lt(ul))))))) {
|
|
87187
87211
|
// #region Fields
|
|
87188
87212
|
_inputElement;
|
|
87189
87213
|
_labelPosition;
|
|
@@ -87608,7 +87632,7 @@ var hs = function(o, t, e, r) {
|
|
|
87608
87632
|
}, Ve = function(o, t) {
|
|
87609
87633
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
87610
87634
|
}, qx;
|
|
87611
|
-
let oi = qx = class extends P(Me(G(qt(
|
|
87635
|
+
let oi = qx = class extends P(Me(G(qt(Ot(pt(Q(Ct(H)))))))) {
|
|
87612
87636
|
// #region Fields
|
|
87613
87637
|
_radioChanged;
|
|
87614
87638
|
_name;
|
|
@@ -88235,7 +88259,7 @@ var Hr = function(o, t, e, r) {
|
|
|
88235
88259
|
}, Mt = function(o, t) {
|
|
88236
88260
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
88237
88261
|
};
|
|
88238
|
-
let gr = class extends P(G(
|
|
88262
|
+
let gr = class extends P(G(Ot(Lt(qt(Xr(Q(H))))))) {
|
|
88239
88263
|
// #region Fields
|
|
88240
88264
|
_ratingElement;
|
|
88241
88265
|
_length;
|
|
@@ -90556,7 +90580,7 @@ var Nr = function(o, t, e, r) {
|
|
|
90556
90580
|
}, be = function(o, t) {
|
|
90557
90581
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
90558
90582
|
};
|
|
90559
|
-
let fr = class extends P(qn(Ct(pt(Q(Me(
|
|
90583
|
+
let fr = class extends P(qn(Ct(pt(Q(Me(Ot(G(Lt(Zr))))))))) {
|
|
90560
90584
|
// #region Fields
|
|
90561
90585
|
_intl;
|
|
90562
90586
|
_commands;
|
|
@@ -91775,7 +91799,7 @@ var Qr = function(o, t, e, r) {
|
|
|
91775
91799
|
}, we = function(o, t) {
|
|
91776
91800
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
91777
91801
|
};
|
|
91778
|
-
let Tr = class extends P(Ct(qn(G(Me(
|
|
91802
|
+
let Tr = class extends P(Ct(qn(G(Me(Ot(Q(mn(pt(Zr))))))))) {
|
|
91779
91803
|
// #region Fields
|
|
91780
91804
|
_keyboardController;
|
|
91781
91805
|
_searched;
|
|
@@ -91798,7 +91822,7 @@ let Tr = class extends P(Ct(qn(G(Me($t(Q(mn(pt(Zr))))))))) {
|
|
|
91798
91822
|
* @public
|
|
91799
91823
|
*/
|
|
91800
91824
|
constructor() {
|
|
91801
|
-
super(), this._value = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._mode = El.Input, this._delay = 0, this._delayTimeoutId = null, this._textAlign =
|
|
91825
|
+
super(), this._value = "", this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._pattern = "", this._placeholder = "", this._autocomplete = !1, this._mode = El.Input, this._delay = 0, this._delayTimeoutId = null, this._textAlign = $t.Left, this._searched = new it(this, "searched"), this._keyboardController = new yn(this);
|
|
91802
91826
|
}
|
|
91803
91827
|
// #endregion
|
|
91804
91828
|
// #region Properties
|
|
@@ -92169,7 +92193,7 @@ Qr([
|
|
|
92169
92193
|
we("design:paramtypes", [Number])
|
|
92170
92194
|
], Tr.prototype, "delay", null);
|
|
92171
92195
|
Qr([
|
|
92172
|
-
b({ type:
|
|
92196
|
+
b({ type: $t }),
|
|
92173
92197
|
we("design:type", String),
|
|
92174
92198
|
we("design:paramtypes", [String])
|
|
92175
92199
|
], Tr.prototype, "textAlign", null);
|
|
@@ -92813,7 +92837,7 @@ var mf = function(o, t, e, r) {
|
|
|
92813
92837
|
}, Ba = function(o, t) {
|
|
92814
92838
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
92815
92839
|
};
|
|
92816
|
-
let od = class extends P(G(
|
|
92840
|
+
let od = class extends P(G(Ot(Q(ar(Lt(ds)))))) {
|
|
92817
92841
|
// #region Fields
|
|
92818
92842
|
_icon;
|
|
92819
92843
|
_isActive;
|
|
@@ -93841,7 +93865,7 @@ function EX(o) {
|
|
|
93841
93865
|
<mosaik-text part="header"
|
|
93842
93866
|
.readonly="${!0}"
|
|
93843
93867
|
.wrap="${!0}"
|
|
93844
|
-
.alignment="${
|
|
93868
|
+
.alignment="${$t.Center}"
|
|
93845
93869
|
.text="${o.header}"
|
|
93846
93870
|
.formatter="${o.formatter}"></mosaik-text>
|
|
93847
93871
|
`)}
|
|
@@ -93849,7 +93873,7 @@ function EX(o) {
|
|
|
93849
93873
|
<mosaik-text part="content"
|
|
93850
93874
|
.readonly="${!0}"
|
|
93851
93875
|
.wrap="${!0}"
|
|
93852
|
-
.alignment="${
|
|
93876
|
+
.alignment="${$t.Center}"
|
|
93853
93877
|
.text="${o.content}"
|
|
93854
93878
|
.formatter="${o.formatter}"></mosaik-text>
|
|
93855
93879
|
`)}
|
|
@@ -94292,7 +94316,7 @@ var yi = function(o, t, e, r) {
|
|
|
94292
94316
|
}, Xe = function(o, t) {
|
|
94293
94317
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
94294
94318
|
}, Jx;
|
|
94295
|
-
let ba = Jx = class extends Ct(hd(pt(Q(Lt(qn(Me(G(
|
|
94319
|
+
let ba = Jx = class extends Ct(hd(pt(Q(Lt(qn(Me(G(Ot(P(dk(Sa))))))))))) {
|
|
94296
94320
|
// #region Fields
|
|
94297
94321
|
_inputElement;
|
|
94298
94322
|
_floatingElement;
|
|
@@ -94312,7 +94336,7 @@ let ba = Jx = class extends Ct(hd(pt(Q(Lt(qn(Me(G($t(P(dk(Sa))))))))))) {
|
|
|
94312
94336
|
* @public
|
|
94313
94337
|
*/
|
|
94314
94338
|
constructor() {
|
|
94315
|
-
super(), this._isEditable = !1, this._isReadOnly = !1, this._value = null, this._placeholder = "", this._required = !1, this._textAlign =
|
|
94339
|
+
super(), this._isEditable = !1, this._isReadOnly = !1, this._value = null, this._placeholder = "", this._required = !1, this._textAlign = $t.Left, this._itemsClickSubscriptions = new Array(), this._clickOutsideController = new os(this, {
|
|
94316
94340
|
ignored: () => [this._floatingElement],
|
|
94317
94341
|
skipInitial: !0,
|
|
94318
94342
|
callback: () => this.close()
|
|
@@ -94608,7 +94632,7 @@ yi([
|
|
|
94608
94632
|
Xe("design:paramtypes", [Boolean])
|
|
94609
94633
|
], ba.prototype, "required", null);
|
|
94610
94634
|
yi([
|
|
94611
|
-
b({ type:
|
|
94635
|
+
b({ type: $t }),
|
|
94612
94636
|
Xe("design:type", String),
|
|
94613
94637
|
Xe("design:paramtypes", [String])
|
|
94614
94638
|
], ba.prototype, "textAlign", null);
|
|
@@ -95426,7 +95450,7 @@ var Je = function(o, t, e, r) {
|
|
|
95426
95450
|
}, _t = function(o, t) {
|
|
95427
95451
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
95428
95452
|
};
|
|
95429
|
-
let Ne = class extends P(qn(G(ar(Q(Me(
|
|
95453
|
+
let Ne = class extends P(qn(G(ar(Q(Me(Ot(Lt(pt(H))))))))) {
|
|
95430
95454
|
// #region Fields
|
|
95431
95455
|
_signStarted;
|
|
95432
95456
|
_signEnded;
|
|
@@ -97352,7 +97376,7 @@ var gl = function(o, t, e, r) {
|
|
|
97352
97376
|
}, br = function(o, t) {
|
|
97353
97377
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
97354
97378
|
};
|
|
97355
|
-
let Hn = class extends P(G(
|
|
97379
|
+
let Hn = class extends P(G(Ot(Q(pt(ar(Ct(Lt(H)))))))) {
|
|
97356
97380
|
// #region Fields
|
|
97357
97381
|
_activated;
|
|
97358
97382
|
_subLabel;
|
|
@@ -98601,7 +98625,7 @@ var Wo = function(o, t, e, r) {
|
|
|
98601
98625
|
}, Ut = function(o, t) {
|
|
98602
98626
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
98603
98627
|
}, Qx;
|
|
98604
|
-
let Po = Qx = class extends P(Ct(qn(hl(G(Me(
|
|
98628
|
+
let Po = Qx = class extends P(Ct(qn(hl(G(Me(Ot(Q(pt(hd(Lt(Zr))))))))))) {
|
|
98605
98629
|
// #region Fields
|
|
98606
98630
|
_clickOutsideController;
|
|
98607
98631
|
_keyboardController;
|
|
@@ -98631,7 +98655,7 @@ let Po = Qx = class extends P(Ct(qn(hl(G(Me($t(Q(pt(hd(Lt(Zr))))))))))) {
|
|
|
98631
98655
|
* @public
|
|
98632
98656
|
*/
|
|
98633
98657
|
constructor() {
|
|
98634
|
-
super(), this._interval = 60, this._value = null, this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._placeholder = "", this._autocomplete = !1, this._isEditable = !1, this._blackoutTimes = [], this._specialTimes = [], this._minTime = null, this._maxTime = null, this._textAlign =
|
|
98658
|
+
super(), this._interval = 60, this._value = null, this._readonly = !1, this._required = !1, this._autofocus = !1, this._name = "", this._placeholder = "", this._autocomplete = !1, this._isEditable = !1, this._blackoutTimes = [], this._specialTimes = [], this._minTime = null, this._maxTime = null, this._textAlign = $t.Left, this._markerHandler = (t) => [], this._clickOutsideController = new os(this, {
|
|
98635
98659
|
ignored: () => [this._floatingElement],
|
|
98636
98660
|
skipInitial: !0,
|
|
98637
98661
|
callback: () => this.close()
|
|
@@ -99081,7 +99105,7 @@ Wo([
|
|
|
99081
99105
|
Ut("design:paramtypes", [Object])
|
|
99082
99106
|
], Po.prototype, "maxTime", null);
|
|
99083
99107
|
Wo([
|
|
99084
|
-
b({ type:
|
|
99108
|
+
b({ type: $t }),
|
|
99085
99109
|
Ut("design:type", String),
|
|
99086
99110
|
Ut("design:paramtypes", [String])
|
|
99087
99111
|
], Po.prototype, "textAlign", null);
|
|
@@ -99545,7 +99569,7 @@ var vv = function(o, t, e, r) {
|
|
|
99545
99569
|
}, kc = function(o, t) {
|
|
99546
99570
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
99547
99571
|
};
|
|
99548
|
-
let cg = class extends P(Me(
|
|
99572
|
+
let cg = class extends P(Me(Ot(Q(pt(G(Lt(ul))))))) {
|
|
99549
99573
|
// #region Fields
|
|
99550
99574
|
_inputElement;
|
|
99551
99575
|
_labelPosition;
|
|
@@ -113359,7 +113383,7 @@ function FJ(o) {
|
|
|
113359
113383
|
<mosaik-text part="text"
|
|
113360
113384
|
.dir="${o.dir}"
|
|
113361
113385
|
.text="${o.text}"
|
|
113362
|
-
.alignment="${
|
|
113386
|
+
.alignment="${$t.Center}"
|
|
113363
113387
|
.truncate="${!0}"></mosaik-text>
|
|
113364
113388
|
</slot>
|
|
113365
113389
|
<mosaik-divider part="divider"
|
|
@@ -113381,7 +113405,7 @@ function FJ(o) {
|
|
|
113381
113405
|
<mosaik-text part="text"
|
|
113382
113406
|
.dir="${o.dir}"
|
|
113383
113407
|
.text="${o.text}"
|
|
113384
|
-
.alignment="${
|
|
113408
|
+
.alignment="${$t.Center}"
|
|
113385
113409
|
.truncate="${!0}"></mosaik-text>
|
|
113386
113410
|
</slot>
|
|
113387
113411
|
<mosaik-divider part="divider"
|
|
@@ -115173,7 +115197,7 @@ function nQ(o) {
|
|
|
115173
115197
|
.dir="${o.dir}"
|
|
115174
115198
|
.text="${o.text}"
|
|
115175
115199
|
.formatter="${o.formatter}"
|
|
115176
|
-
.alignment="${
|
|
115200
|
+
.alignment="${$t.Center}"
|
|
115177
115201
|
.wrap="${!0}"></mosaik-text>
|
|
115178
115202
|
</slot>
|
|
115179
115203
|
</mosaik-stack>
|
|
@@ -115194,7 +115218,7 @@ function nQ(o) {
|
|
|
115194
115218
|
.dir="${o.dir}"
|
|
115195
115219
|
.text="${o.text}"
|
|
115196
115220
|
.formatter="${o.formatter}"
|
|
115197
|
-
.alignment="${
|
|
115221
|
+
.alignment="${$t.Center}"
|
|
115198
115222
|
.wrap="${!0}"></mosaik-text>
|
|
115199
115223
|
</slot>
|
|
115200
115224
|
</mosaik-stack>
|
|
@@ -116970,7 +116994,7 @@ var _f = function(o, t, e, r) {
|
|
|
116970
116994
|
}, Cc = function(o, t) {
|
|
116971
116995
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
116972
116996
|
};
|
|
116973
|
-
let ap = class extends P(G(qt(
|
|
116997
|
+
let ap = class extends P(G(qt(Ot(H)))) {
|
|
116974
116998
|
// #region Fields
|
|
116975
116999
|
_resizeController;
|
|
116976
117000
|
_colorController;
|
|
@@ -133849,7 +133873,7 @@ let wm = class extends P(Ee(H)) {
|
|
|
133849
133873
|
* @public
|
|
133850
133874
|
*/
|
|
133851
133875
|
constructor() {
|
|
133852
|
-
super(), this._text = "", this._alignment =
|
|
133876
|
+
super(), this._text = "", this._alignment = $t.Left;
|
|
133853
133877
|
}
|
|
133854
133878
|
// #endregion
|
|
133855
133879
|
// #region Properties
|
|
@@ -133894,7 +133918,7 @@ Lk([
|
|
|
133894
133918
|
Rg("design:paramtypes", [String])
|
|
133895
133919
|
], wm.prototype, "text", null);
|
|
133896
133920
|
Lk([
|
|
133897
|
-
b({ type:
|
|
133921
|
+
b({ type: $t }),
|
|
133898
133922
|
Rg("design:type", String),
|
|
133899
133923
|
Rg("design:paramtypes", [String])
|
|
133900
133924
|
], wm.prototype, "alignment", null);
|
|
@@ -134181,7 +134205,7 @@ let km = class extends P(Ee(H)) {
|
|
|
134181
134205
|
* @public
|
|
134182
134206
|
*/
|
|
134183
134207
|
constructor() {
|
|
134184
|
-
super(), this._text = "", this._alignment =
|
|
134208
|
+
super(), this._text = "", this._alignment = $t.Left;
|
|
134185
134209
|
}
|
|
134186
134210
|
// #endregion
|
|
134187
134211
|
// #region Properties
|
|
@@ -134226,7 +134250,7 @@ Ik([
|
|
|
134226
134250
|
$g("design:paramtypes", [String])
|
|
134227
134251
|
], km.prototype, "text", null);
|
|
134228
134252
|
Ik([
|
|
134229
|
-
b({ type:
|
|
134253
|
+
b({ type: $t }),
|
|
134230
134254
|
$g("design:type", String),
|
|
134231
134255
|
$g("design:paramtypes", [String])
|
|
134232
134256
|
], km.prototype, "alignment", null);
|
|
@@ -134265,7 +134289,7 @@ let sp = class extends P(pt(Ee(H))) {
|
|
|
134265
134289
|
* @public
|
|
134266
134290
|
*/
|
|
134267
134291
|
constructor() {
|
|
134268
|
-
super(), this._header = "", this._subHeader = "", this._hint = "", this._alignment =
|
|
134292
|
+
super(), this._header = "", this._subHeader = "", this._hint = "", this._alignment = $t.Left;
|
|
134269
134293
|
}
|
|
134270
134294
|
// #endregion
|
|
134271
134295
|
// #region Properties
|
|
@@ -134345,7 +134369,7 @@ Sf([
|
|
|
134345
134369
|
Zs("design:paramtypes", [String])
|
|
134346
134370
|
], sp.prototype, "hint", null);
|
|
134347
134371
|
Sf([
|
|
134348
|
-
b({ type:
|
|
134372
|
+
b({ type: $t }),
|
|
134349
134373
|
Zs("design:type", String),
|
|
134350
134374
|
Zs("design:paramtypes", [String])
|
|
134351
134375
|
], sp.prototype, "alignment", null);
|
|
@@ -134701,7 +134725,7 @@ var qC = function(o, t, e, r) {
|
|
|
134701
134725
|
}, z0 = function(o, t) {
|
|
134702
134726
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
134703
134727
|
};
|
|
134704
|
-
let S0 = class extends P(
|
|
134728
|
+
let S0 = class extends P(Ot(Q(H))) {
|
|
134705
134729
|
// #region Fields
|
|
134706
134730
|
_modifierSymbols = /* @__PURE__ */ new Map([
|
|
134707
134731
|
[Qf.Shift, "⇧"],
|
|
@@ -135713,7 +135737,7 @@ let Ki = class extends P(Q(G(H))) {
|
|
|
135713
135737
|
* @public
|
|
135714
135738
|
*/
|
|
135715
135739
|
constructor() {
|
|
135716
|
-
super(), this._from = 0, this._to = 0, this._duration = "1s", this._readonly = !1, this._alignment =
|
|
135740
|
+
super(), this._from = 0, this._to = 0, this._duration = "1s", this._readonly = !1, this._alignment = $t.Left;
|
|
135717
135741
|
}
|
|
135718
135742
|
// #endregion
|
|
135719
135743
|
// #region Properties
|
|
@@ -135835,7 +135859,7 @@ yl([
|
|
|
135835
135859
|
Oo("design:paramtypes", [Boolean])
|
|
135836
135860
|
], Ki.prototype, "readonly", null);
|
|
135837
135861
|
yl([
|
|
135838
|
-
b({ type:
|
|
135862
|
+
b({ type: $t }),
|
|
135839
135863
|
Oo("design:type", String),
|
|
135840
135864
|
Oo("design:paramtypes", [String])
|
|
135841
135865
|
], Ki.prototype, "alignment", null);
|
|
@@ -136187,7 +136211,7 @@ let Og = class extends P(Q(G(H))) {
|
|
|
136187
136211
|
* @public
|
|
136188
136212
|
*/
|
|
136189
136213
|
constructor() {
|
|
136190
|
-
super(), this._number = null, this._readonly = !1, this._alignment =
|
|
136214
|
+
super(), this._number = null, this._readonly = !1, this._alignment = $t.Left;
|
|
136191
136215
|
}
|
|
136192
136216
|
// #endregion
|
|
136193
136217
|
// #region Properties
|
|
@@ -136254,7 +136278,7 @@ $v([
|
|
|
136254
136278
|
Nc("design:paramtypes", [Boolean])
|
|
136255
136279
|
], Og.prototype, "readonly", null);
|
|
136256
136280
|
$v([
|
|
136257
|
-
b({ type:
|
|
136281
|
+
b({ type: $t }),
|
|
136258
136282
|
Nc("design:type", String),
|
|
136259
136283
|
Nc("design:paramtypes", [String])
|
|
136260
136284
|
], Og.prototype, "alignment", null);
|
|
@@ -143751,7 +143775,7 @@ var ZC = function(o, t, e, r) {
|
|
|
143751
143775
|
}, Em = function(o, t) {
|
|
143752
143776
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
143753
143777
|
};
|
|
143754
|
-
class Bk extends CS(
|
|
143778
|
+
class Bk extends CS(Ot(H)) {
|
|
143755
143779
|
// #region Fields
|
|
143756
143780
|
_valueChanged;
|
|
143757
143781
|
_value;
|
|
@@ -144093,7 +144117,7 @@ var JC = function(o, t, e, r) {
|
|
|
144093
144117
|
}, T0 = function(o, t) {
|
|
144094
144118
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
144095
144119
|
};
|
|
144096
|
-
let P0 = class extends P(G(
|
|
144120
|
+
let P0 = class extends P(G(Ot(ar(Q(al))))) {
|
|
144097
144121
|
// #region Fields
|
|
144098
144122
|
_step;
|
|
144099
144123
|
// #endregion
|
|
@@ -146647,7 +146671,7 @@ var $f = function(o, t, e, r) {
|
|
|
146647
146671
|
}, Ii = function(o, t) {
|
|
146648
146672
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
146649
146673
|
};
|
|
146650
|
-
let Ls = class extends P(G(
|
|
146674
|
+
let Ls = class extends P(G(Ot(Q(ar(Lt(ds)))))) {
|
|
146651
146675
|
// #region Fields
|
|
146652
146676
|
_isChecked;
|
|
146653
146677
|
_icon;
|
|
@@ -147072,7 +147096,7 @@ var ji = function(o, t, e, r) {
|
|
|
147072
147096
|
}, Le = function(o, t) {
|
|
147073
147097
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
147074
147098
|
}, I0;
|
|
147075
|
-
let _a = I0 = class extends Ct(hd(pt(Q(Lt(qn(Me(G(
|
|
147099
|
+
let _a = I0 = class extends Ct(hd(pt(Q(Lt(qn(Me(G(Ot(P(QC)))))))))) {
|
|
147076
147100
|
// #region Fields
|
|
147077
147101
|
_inputElement;
|
|
147078
147102
|
_floatingElement;
|
|
@@ -147091,7 +147115,7 @@ let _a = I0 = class extends Ct(hd(pt(Q(Lt(qn(Me(G($t(P(QC)))))))))) {
|
|
|
147091
147115
|
* @public
|
|
147092
147116
|
*/
|
|
147093
147117
|
constructor() {
|
|
147094
|
-
super(), this._selectionMode = ao.Single, this._value = null, this._placeholder = "", this._required = !1, this._textAlign =
|
|
147118
|
+
super(), this._selectionMode = ao.Single, this._value = null, this._placeholder = "", this._required = !1, this._textAlign = $t.Left, this._itemsClickSubscriptions = new Array(), this._clickOutsideController = new os(this, {
|
|
147095
147119
|
ignored: () => [this._floatingElement],
|
|
147096
147120
|
skipInitial: !0,
|
|
147097
147121
|
callback: () => this.close()
|
|
@@ -147363,7 +147387,7 @@ ji([
|
|
|
147363
147387
|
Le("design:paramtypes", [Boolean])
|
|
147364
147388
|
], _a.prototype, "required", null);
|
|
147365
147389
|
ji([
|
|
147366
|
-
b({ type:
|
|
147390
|
+
b({ type: $t }),
|
|
147367
147391
|
Le("design:type", String),
|
|
147368
147392
|
Le("design:paramtypes", [String])
|
|
147369
147393
|
], _a.prototype, "textAlign", null);
|
|
@@ -151564,7 +151588,7 @@ function pat(o) {
|
|
|
151564
151588
|
${$(o.label, () => w`
|
|
151565
151589
|
<mosaik-text part="label"
|
|
151566
151590
|
.text="${o.label}"
|
|
151567
|
-
.alignment="${
|
|
151591
|
+
.alignment="${$t.Center}"
|
|
151568
151592
|
?disabled="${o.disabled}"></mosaik-text>
|
|
151569
151593
|
`)}
|
|
151570
151594
|
</slot>
|
|
@@ -152230,7 +152254,7 @@ var tA = function(o, t, e, r) {
|
|
|
152230
152254
|
}, M0 = function(o, t) {
|
|
152231
152255
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
152232
152256
|
};
|
|
152233
|
-
let Rh = class extends P(Lt(ts(G(ar(Q(qt(nk(
|
|
152257
|
+
let Rh = class extends P(Lt(ts(G(ar(Q(qt(nk(Ot(H))))))))) {
|
|
152234
152258
|
// #region Fields
|
|
152235
152259
|
_keyboardController;
|
|
152236
152260
|
_placement;
|
|
@@ -154397,7 +154421,7 @@ var Rat = function(o, t, e, r) {
|
|
|
154397
154421
|
}, $at = function(o, t) {
|
|
154398
154422
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
154399
154423
|
};
|
|
154400
|
-
let Rm = class extends P(fi(G(qt(jp(nk(Lt(ts(
|
|
154424
|
+
let Rm = class extends P(fi(G(qt(jp(nk(Lt(ts(Ot(H))))))))) {
|
|
154401
154425
|
// #region Ctor
|
|
154402
154426
|
/**
|
|
154403
154427
|
* Constructs a new instance of the `TabItemElement` class.
|
|
@@ -155657,7 +155681,7 @@ var Kp = function(o, t, e, r) {
|
|
|
155657
155681
|
}, pa = function(o, t) {
|
|
155658
155682
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
155659
155683
|
};
|
|
155660
|
-
let ol = class extends P(G(
|
|
155684
|
+
let ol = class extends P(G(Ot(Q(ar(Ct(mn(ds))))))) {
|
|
155661
155685
|
// #region Fields
|
|
155662
155686
|
_text;
|
|
155663
155687
|
_isExpanded;
|
|
@@ -157211,7 +157235,7 @@ var lit = function(o, t, e, r) {
|
|
|
157211
157235
|
}, dit = function(o, t) {
|
|
157212
157236
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
157213
157237
|
};
|
|
157214
|
-
let B0 = class extends hl(
|
|
157238
|
+
let B0 = class extends hl(Ot(Q(pt(G(Lt(H)))))) {
|
|
157215
157239
|
// #region Fields
|
|
157216
157240
|
// @QuerySlotAll(EpgProgramElement.is)
|
|
157217
157241
|
// private readonly _items!: Array<EpgProgramElement>;
|
|
@@ -158267,7 +158291,7 @@ var Dv = function(o, t, e, r) {
|
|
|
158267
158291
|
}, Nl = function(o, t) {
|
|
158268
158292
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(o, t);
|
|
158269
158293
|
};
|
|
158270
|
-
let Ml = class extends HV(hl(qk(Q(pt(G(ar(
|
|
158294
|
+
let Ml = class extends HV(hl(qk(Q(pt(G(ar(Ot(H)))))))) {
|
|
158271
158295
|
// #region Fields
|
|
158272
158296
|
_keyboardController;
|
|
158273
158297
|
_boardElement;
|
|
@@ -160832,21 +160856,21 @@ function Lit(o) {
|
|
|
160832
160856
|
<mosaik-text part="header"
|
|
160833
160857
|
.readonly="${!0}"
|
|
160834
160858
|
.wrap="${!0}"
|
|
160835
|
-
.alignment="${
|
|
160859
|
+
.alignment="${$t.Center}"
|
|
160836
160860
|
.text="${o.header}"></mosaik-text>
|
|
160837
160861
|
`)}
|
|
160838
160862
|
${$(o.content, () => w`
|
|
160839
160863
|
<mosaik-text part="content"
|
|
160840
160864
|
.readonly="${!0}"
|
|
160841
160865
|
.wrap="${!0}"
|
|
160842
|
-
.alignment="${
|
|
160866
|
+
.alignment="${$t.Center}"
|
|
160843
160867
|
.text="${o.content}"></mosaik-text>
|
|
160844
160868
|
`)}
|
|
160845
160869
|
${$(o.code, () => w`
|
|
160846
160870
|
<mosaik-text part="code"
|
|
160847
160871
|
.readonly="${!0}"
|
|
160848
160872
|
.wrap="${!0}"
|
|
160849
|
-
.alignment="${
|
|
160873
|
+
.alignment="${$t.Center}"
|
|
160850
160874
|
.text="${o.code}"></mosaik-text>
|
|
160851
160875
|
`)}
|
|
160852
160876
|
</div>
|
|
@@ -161298,14 +161322,14 @@ function Mit(o) {
|
|
|
161298
161322
|
<mosaik-text part="header"
|
|
161299
161323
|
.readonly="${!0}"
|
|
161300
161324
|
.wrap="${!0}"
|
|
161301
|
-
.alignment="${
|
|
161325
|
+
.alignment="${$t.Center}"
|
|
161302
161326
|
.text="${o.header}"></mosaik-text>
|
|
161303
161327
|
`)}
|
|
161304
161328
|
${$(o.content, () => w`
|
|
161305
161329
|
<mosaik-text part="content"
|
|
161306
161330
|
.readonly="${!0}"
|
|
161307
161331
|
.wrap="${!0}"
|
|
161308
|
-
.alignment="${
|
|
161332
|
+
.alignment="${$t.Center}"
|
|
161309
161333
|
.text="${o.content}"></mosaik-text>
|
|
161310
161334
|
`)}
|
|
161311
161335
|
<slot></slot>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.123",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"vite": "*"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
19
|
-
"@breadstone/mosaik-elements-foundation": "^0.0.
|
|
18
|
+
"@breadstone/mosaik-elements": "^0.0.123",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.123",
|
|
20
20
|
"tslib": "^2.8.1"
|
|
21
21
|
},
|
|
22
22
|
"exports": {
|