@breadstone/mosaik-elements-svelte 0.1.1 → 0.1.3

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/index.mjs +1179 -1009
  3. package/package.json +3 -3
package/index.mjs CHANGED
@@ -71458,10 +71458,10 @@ function YF(e) {
71458
71458
  <div part="root">
71459
71459
  <slot name="start"></slot>
71460
71460
  <div part="main"
71461
- ?hidden="${!DM(e, "has-main", e.hasSlotContent("") || e.hasSlotContent("title") || e.hasSlotContent("subTitle"))}">
71461
+ ?hidden="${!DM(e, "has-main", e.hasSlotContent("") || e.hasSlotContent("title") || e.hasSlotContent("subTitle") || e.title.trim().length > 0 || e.subTitle.trim().length > 0)}">
71462
71462
  <slot></slot>
71463
71463
  <div part="title"
71464
- ?hidden="${!DM(e, "has-title", e.hasSlotContent("title"))}">
71464
+ ?hidden="${!DM(e, "has-title", e.hasSlotContent("title") || e.title.trim().length > 0)}">
71465
71465
  <slot name="title">
71466
71466
  ${U(e.title.trim(), () => V`
71467
71467
  <mosaik-text .text="${e.title}"
@@ -71471,7 +71471,7 @@ function YF(e) {
71471
71471
  </slot>
71472
71472
  </div>
71473
71473
  <div part="subTitle"
71474
- ?hidden="${!DM(e, "has-sub-title", e.hasSlotContent("subTitle"))}">
71474
+ ?hidden="${!DM(e, "has-sub-title", e.hasSlotContent("subTitle") || e.subTitle.trim().length > 0)}">
71475
71475
  <slot name="subTitle">
71476
71476
  ${U(e.subTitle.trim(), () => V`
71477
71477
  <mosaik-text .text="${e.subTitle}"
@@ -71517,11 +71517,11 @@ var XF = function(e, t, n, r) {
71517
71517
  }
71518
71518
  };
71519
71519
  XF([
71520
- A({ type: String }),
71520
+ P({ type: String }),
71521
71521
  ZF("design:type", String),
71522
71522
  ZF("design:paramtypes", [String])
71523
71523
  ], QF.prototype, "title", null), XF([
71524
- A({ type: String }),
71524
+ P({ type: String }),
71525
71525
  ZF("design:type", String),
71526
71526
  ZF("design:paramtypes", [String])
71527
71527
  ], QF.prototype, "subTitle", null), QF = XF([H({
@@ -72339,7 +72339,7 @@ function RI(e) {
72339
72339
  .size="${G.Giant}"
72340
72340
  .data="${e.icon.trim() ? e.icon : X.glasses}"
72341
72341
  .variant="${"neutral"}"></mosaik-icon>
72342
- <mosaik-stack .orientation="${K.Vertical}">
72342
+ <div part="root">
72343
72343
  ${U(e.header, () => V`
72344
72344
  <mosaik-text part="header"
72345
72345
  .readonly="${!0}"
@@ -72357,12 +72357,10 @@ function RI(e) {
72357
72357
  .formatter="${e.formatter}"></mosaik-text>
72358
72358
  `)}
72359
72359
  <slot></slot>
72360
- </mosaik-stack>
72361
- <mosaik-stack part="innerStack"
72362
- .orientation="${K.Horizontal}"
72363
- ?hidden="${!e.hasSlotContent("actions")}">
72360
+ </div>
72361
+ <div part="actions" ?hidden="${!e.hasSlotContent("actions")}">
72364
72362
  <slot name="actions"></slot>
72365
- </mosaik-stack>
72363
+ </div>
72366
72364
  `;
72367
72365
  }
72368
72366
  //#endregion
@@ -72472,8 +72470,17 @@ function zI() {
72472
72470
  text-transform: var(--empty-state-content-font-text-transform);
72473
72471
  }
72474
72472
 
72475
- :host [part="innerStack"] {
72476
- --stack-gap: var(--empty-state-gap);
72473
+ :host [part="root"] {
72474
+ flex-direction: column;
72475
+ align-items: center;
72476
+ display: flex;
72477
+ }
72478
+
72479
+ :host [part="actions"] {
72480
+ align-items: center;
72481
+ gap: var(--empty-state-gap);
72482
+ flex-direction: row;
72483
+ display: flex;
72477
72484
  }
72478
72485
 
72479
72486
  `;
@@ -72585,8 +72592,17 @@ function BI() {
72585
72592
  text-transform: var(--empty-state-content-font-text-transform);
72586
72593
  }
72587
72594
 
72588
- :host [part="innerStack"] {
72589
- --stack-gap: var(--empty-state-gap);
72595
+ :host [part="root"] {
72596
+ flex-direction: column;
72597
+ align-items: center;
72598
+ display: flex;
72599
+ }
72600
+
72601
+ :host [part="actions"] {
72602
+ align-items: center;
72603
+ gap: var(--empty-state-gap);
72604
+ flex-direction: row;
72605
+ display: flex;
72590
72606
  }
72591
72607
 
72592
72608
  :host [part="header"] {
@@ -72718,8 +72734,17 @@ function VI() {
72718
72734
  text-transform: var(--empty-state-content-font-text-transform);
72719
72735
  }
72720
72736
 
72721
- :host [part="innerStack"] {
72722
- --stack-gap: var(--empty-state-gap);
72737
+ :host [part="root"] {
72738
+ flex-direction: column;
72739
+ align-items: center;
72740
+ display: flex;
72741
+ }
72742
+
72743
+ :host [part="actions"] {
72744
+ align-items: center;
72745
+ gap: var(--empty-state-gap);
72746
+ flex-direction: row;
72747
+ display: flex;
72723
72748
  }
72724
72749
 
72725
72750
  :host [part="header"] {
@@ -72791,11 +72816,7 @@ HI([
72791
72816
  memphis: VI,
72792
72817
  cosmopolitan: zI
72793
72818
  },
72794
- imports: [
72795
- _S,
72796
- W,
72797
- sS
72798
- ]
72819
+ imports: [_S, W]
72799
72820
  }), UI("design:paramtypes", [])], WI);
72800
72821
  //#endregion
72801
72822
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/Abstracts/Selector/SelectorItemElement.js
@@ -72858,15 +72879,8 @@ GI([
72858
72879
  KI("design:paramtypes", [])
72859
72880
  ], qI.prototype, "deselected", null);
72860
72881
  //#endregion
72861
- //#region ../mosaik-elements-foundation/dist/Controls/Types/CheckType.js
72862
- var JI = {
72863
- Bullet: "bullet",
72864
- Hook: "hook",
72865
- Switch: "switch"
72866
- };
72867
- //#endregion
72868
72882
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Select/SelectItemElementTemplate.js
72869
- function YI(e) {
72883
+ function JI(e) {
72870
72884
  return V`
72871
72885
  ${U(!e.disabled, () => V`
72872
72886
  <mosaik-focus-ring part="focusRing"
@@ -72880,20 +72894,11 @@ function YI(e) {
72880
72894
  .variant="${e.variant}"
72881
72895
  @connected="${(t) => t.target.attach(e)}"></mosaik-ripple>
72882
72896
  `)}
72883
- ${U(e.isActive, () => V`
72884
- <mosaik-checkmark part="checkmark"
72885
- .appearance="${q.Plain}"
72886
- .variant="${e.variant}"
72887
- .type="${JI.Hook}"
72888
- ?checked="${e.isActive}"
72889
- ?disabled="${e.disabled}"></mosaik-checkmark>
72890
- `)}
72891
72897
  <slot name="start"></slot>
72892
72898
  <slot name="icon">
72893
72899
  ${U(e.icon, () => V`
72894
- <mosaik-icon .size="${G.Small}"
72900
+ <mosaik-icon .size="${"small"}"
72895
72901
  .data="${e.icon}"
72896
- ?inline="${!0}"
72897
72902
  ?disabled="${e.disabled}"></mosaik-icon>
72898
72903
  `)}
72899
72904
  </slot>
@@ -72904,12 +72909,22 @@ function YI(e) {
72904
72909
  ?truncate="${!0}"></mosaik-text>
72905
72910
  `)}
72906
72911
  </slot>
72912
+ <slot name="checkmark">
72913
+ ${U(e.isActive, () => V`
72914
+ <mosaik-checkmark part="checkmark"
72915
+ .appearance="${"plain"}"
72916
+ .variant="${e.variant}"
72917
+ .type="${"hook"}"
72918
+ ?checked="${e.isActive}"
72919
+ ?disabled="${e.disabled}"></mosaik-checkmark>
72920
+ `)}
72921
+ </slot>
72907
72922
  <slot name="end"></slot>
72908
72923
  `;
72909
72924
  }
72910
72925
  //#endregion
72911
72926
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Select/Themes/SelectItemElement.Cosmopolitan.js
72912
- function XI() {
72927
+ function YI() {
72913
72928
  return B`
72914
72929
  :host {
72915
72930
  --select-item-background-color: unset;
@@ -73027,7 +73042,7 @@ function XI() {
73027
73042
  }
73028
73043
  //#endregion
73029
73044
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Select/Themes/SelectItemElement.Joy.js
73030
- function ZI() {
73045
+ function XI() {
73031
73046
  return B`
73032
73047
  :host {
73033
73048
  --select-item-background-color: var(--joy-scheme-background);
@@ -73047,7 +73062,7 @@ function ZI() {
73047
73062
  --select-item-font-text-transform: var(--joy-typography-body2-text-transform);
73048
73063
  --select-item-font-weight: normal;
73049
73064
  --select-item-foreground-color: var(--joy-scheme-foreground);
73050
- --select-item-gap: var(--joy-layout-space);
73065
+ --select-item-gap: calc(var(--joy-layout-space) * 3);
73051
73066
  --select-item-padding-bottom: var(--joy-layout-space);
73052
73067
  --select-item-padding-left: calc(var(--joy-layout-space) * 2);
73053
73068
  --select-item-padding-right: calc(var(--joy-layout-space) * 2);
@@ -73153,7 +73168,7 @@ function ZI() {
73153
73168
  }
73154
73169
  //#endregion
73155
73170
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Select/Themes/SelectItemElement.Memphis.js
73156
- function QI() {
73171
+ function ZI() {
73157
73172
  return B`
73158
73173
  :host {
73159
73174
  --select-item-background-color: var(--memphis-scheme-background);
@@ -73286,14 +73301,14 @@ function QI() {
73286
73301
  }
73287
73302
  //#endregion
73288
73303
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Select/SelectItemElement.js
73289
- var $I = function(e, t, n, r) {
73304
+ var QI = function(e, t, n, r) {
73290
73305
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
73291
73306
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
73292
73307
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
73293
73308
  return i > 3 && a && Object.defineProperty(t, n, a), a;
73294
- }, eL = function(e, t) {
73309
+ }, $I = function(e, t) {
73295
73310
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
73296
- }, tL = class extends F(zS(R(ES(z(IS(nb(qI))))))) {
73311
+ }, eL = class extends F(zS(R(ES(z(IS(nb(qI))))))) {
73297
73312
  _icon;
73298
73313
  _isActive;
73299
73314
  constructor() {
@@ -73328,35 +73343,35 @@ var $I = function(e, t, n, r) {
73328
73343
  this.tabIndex = this.isActive ? 0 : -1, this.isActive && this.focus();
73329
73344
  }
73330
73345
  };
73331
- $I([
73346
+ QI([
73332
73347
  P({ type: String }),
73333
- eL("design:type", String),
73334
- eL("design:paramtypes", [String])
73335
- ], tL.prototype, "icon", null), $I([
73348
+ $I("design:type", String),
73349
+ $I("design:paramtypes", [String])
73350
+ ], eL.prototype, "icon", null), QI([
73336
73351
  A({
73337
73352
  type: Boolean,
73338
73353
  useDefault: !0
73339
73354
  }),
73340
- eL("design:type", Boolean),
73341
- eL("design:paramtypes", [Boolean])
73342
- ], tL.prototype, "isActive", null), $I([
73355
+ $I("design:type", Boolean),
73356
+ $I("design:paramtypes", [Boolean])
73357
+ ], eL.prototype, "isActive", null), QI([
73343
73358
  L("isSelected"),
73344
- eL("design:type", Function),
73345
- eL("design:paramtypes", []),
73346
- eL("design:returntype", void 0)
73347
- ], tL.prototype, "onSelectedPropertyChange", null), $I([
73359
+ $I("design:type", Function),
73360
+ $I("design:paramtypes", []),
73361
+ $I("design:returntype", void 0)
73362
+ ], eL.prototype, "onSelectedPropertyChange", null), QI([
73348
73363
  L("isActive"),
73349
- eL("design:type", Function),
73350
- eL("design:paramtypes", []),
73351
- eL("design:returntype", void 0)
73352
- ], tL.prototype, "onIsActivePropertyChange", null), tL = $I([H({
73364
+ $I("design:type", Function),
73365
+ $I("design:paramtypes", []),
73366
+ $I("design:returntype", void 0)
73367
+ ], eL.prototype, "onIsActivePropertyChange", null), eL = QI([H({
73353
73368
  selector: "mosaik-select-item",
73354
73369
  themes: {
73355
- joy: ZI,
73356
- memphis: QI,
73357
- cosmopolitan: XI
73370
+ joy: XI,
73371
+ memphis: ZI,
73372
+ cosmopolitan: YI
73358
73373
  },
73359
- template: YI,
73374
+ template: JI,
73360
73375
  host: {
73361
73376
  tabIndex: "0",
73362
73377
  role: "option",
@@ -73368,10 +73383,10 @@ $I([
73368
73383
  Gx,
73369
73384
  _S
73370
73385
  ]
73371
- }), eL("design:paramtypes", [])], tL);
73386
+ }), $I("design:paramtypes", [])], eL);
73372
73387
  //#endregion
73373
73388
  //#region ../mosaik-elements-foundation/dist/Intl/Abstracts/ElementIntlBase.js
73374
- var nL = class {
73389
+ var tL = class {
73375
73390
  _changed;
73376
73391
  _locale;
73377
73392
  constructor(e) {
@@ -73386,7 +73401,7 @@ var nL = class {
73386
73401
  get changes() {
73387
73402
  return this._changed;
73388
73403
  }
73389
- }, rL = class extends nL {
73404
+ }, nL = class extends tL {
73390
73405
  _noResults;
73391
73406
  _loading;
73392
73407
  _searchPlaceholder;
@@ -73414,7 +73429,7 @@ var nL = class {
73414
73429
  };
73415
73430
  //#endregion
73416
73431
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElementTemplate.js
73417
- function iL(e) {
73432
+ function rL(e) {
73418
73433
  return V`
73419
73434
  <mosaik-textbox part="input"
73420
73435
  id="${e.inputId}"
@@ -73516,7 +73531,7 @@ function iL(e) {
73516
73531
  }
73517
73532
  //#endregion
73518
73533
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/AutoCompleteBox/Themes/AutoCompleteBoxElement.Cosmopolitan.js
73519
- function aL() {
73534
+ function iL() {
73520
73535
  return B`
73521
73536
  :host {
73522
73537
  --autocompletebox-background-color: unset;
@@ -73668,7 +73683,7 @@ function aL() {
73668
73683
  }
73669
73684
  //#endregion
73670
73685
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/AutoCompleteBox/Themes/AutoCompleteBoxElement.Joy.js
73671
- function oL() {
73686
+ function aL() {
73672
73687
  return B`
73673
73688
  :host {
73674
73689
  --autocompletebox-background-color: var(--joy-scheme-background);
@@ -73873,7 +73888,7 @@ function oL() {
73873
73888
  }
73874
73889
  //#endregion
73875
73890
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/AutoCompleteBox/Themes/AutoCompleteBoxElement.Memphis.js
73876
- function sL() {
73891
+ function oL() {
73877
73892
  return B`
73878
73893
  :host {
73879
73894
  --autocompletebox-background-color: var(--memphis-scheme-background);
@@ -74070,16 +74085,16 @@ function sL() {
74070
74085
  }
74071
74086
  //#endregion
74072
74087
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/AutoCompleteBox/AutoCompleteBoxElement.js
74073
- var cL = function(e, t, n, r) {
74088
+ var sL = function(e, t, n, r) {
74074
74089
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
74075
74090
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
74076
74091
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
74077
74092
  return i > 3 && a && Object.defineProperty(t, n, a), a;
74078
- }, lL = function(e, t) {
74093
+ }, cL = function(e, t) {
74079
74094
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
74080
- }, uL, dL = class extends Y(lC(J(z(nb(SA(KT(R(ES(F(MI(PA))))))))))) {
74095
+ }, lL, uL = class extends Y(lC(J(z(nb(SA(KT(R(ES(F(MI(PA))))))))))) {
74081
74096
  static {
74082
- uL = this;
74097
+ lL = this;
74083
74098
  }
74084
74099
  static _idCounter = 0;
74085
74100
  _inputElement;
@@ -74101,11 +74116,11 @@ var cL = function(e, t, n, r) {
74101
74116
  _highlightedIndex;
74102
74117
  _renderItem;
74103
74118
  constructor() {
74104
- super(), this._inputId = `mosaik-autocomplete-input-${++uL._idCounter}`, this._listboxId = `mosaik-autocomplete-list-${uL._idCounter}`, this._filterInputId = `mosaik-autocomplete-filter-${uL._idCounter}`, this._text = "", this._placeholder = "", this._filterPlaceholder = "", this._filterText = "", this._required = !1, this._readonly = !1, this._textAlign = Bb.Left, this._dropDownSync = Nw.Width, this._highlightedIndex = -1, this._renderItem = null, this.dropDownPlacement = iC.BottomStart, this.dropDownStrategy = aC.Fixed, this.dropDownDistance = 8, this.dropDownSkidding = 0, this.dropDownMaxHeight = "280px", this._clickOutsideController = new uC(this, {
74119
+ super(), this._inputId = `mosaik-autocomplete-input-${++lL._idCounter}`, this._listboxId = `mosaik-autocomplete-list-${lL._idCounter}`, this._filterInputId = `mosaik-autocomplete-filter-${lL._idCounter}`, this._text = "", this._placeholder = "", this._filterPlaceholder = "", this._filterText = "", this._required = !1, this._readonly = !1, this._textAlign = Bb.Left, this._dropDownSync = Nw.Width, this._highlightedIndex = -1, this._renderItem = null, this.dropDownPlacement = iC.BottomStart, this.dropDownStrategy = aC.Fixed, this.dropDownDistance = 8, this.dropDownSkidding = 0, this.dropDownMaxHeight = "280px", this._clickOutsideController = new uC(this, {
74105
74120
  ignored: () => [this._floatingElement],
74106
74121
  skipInitial: !0,
74107
74122
  callback: () => this.close()
74108
- }), this._intlController = new TI(this, { factory: () => new rL() }), this._keyboardController = new EA(this);
74123
+ }), this._intlController = new TI(this, { factory: () => new nL() }), this._keyboardController = new EA(this);
74109
74124
  }
74110
74125
  static get is() {
74111
74126
  return "mosaik-autocompletebox";
@@ -74290,69 +74305,69 @@ var cL = function(e, t, n, r) {
74290
74305
  this._highlightedIndex !== t && (this._highlightedIndex = t, this.requestUpdate(), this.renderRoot.querySelector(`#${this.getOptionId(t)}`)?.scrollIntoView({ block: "nearest" }));
74291
74306
  }
74292
74307
  };
74293
- cL([
74308
+ sL([
74294
74309
  A({ type: String }),
74295
- lL("design:type", String),
74296
- lL("design:paramtypes", [String])
74297
- ], dL.prototype, "text", null), cL([
74310
+ cL("design:type", String),
74311
+ cL("design:paramtypes", [String])
74312
+ ], uL.prototype, "text", null), sL([
74298
74313
  A({ type: String }),
74299
- lL("design:type", String),
74300
- lL("design:paramtypes", [String])
74301
- ], dL.prototype, "placeholder", null), cL([
74314
+ cL("design:type", String),
74315
+ cL("design:paramtypes", [String])
74316
+ ], uL.prototype, "placeholder", null), sL([
74302
74317
  A({ type: String }),
74303
- lL("design:type", String),
74304
- lL("design:paramtypes", [String])
74305
- ], dL.prototype, "filterPlaceholder", null), cL([
74318
+ cL("design:type", String),
74319
+ cL("design:paramtypes", [String])
74320
+ ], uL.prototype, "filterPlaceholder", null), sL([
74306
74321
  A({ type: String }),
74307
- lL("design:type", String),
74308
- lL("design:paramtypes", [String])
74309
- ], dL.prototype, "filterText", null), cL([
74322
+ cL("design:type", String),
74323
+ cL("design:paramtypes", [String])
74324
+ ], uL.prototype, "filterText", null), sL([
74310
74325
  A({
74311
74326
  type: Boolean,
74312
74327
  useDefault: !0
74313
74328
  }),
74314
- lL("design:type", Boolean),
74315
- lL("design:paramtypes", [Boolean])
74316
- ], dL.prototype, "required", null), cL([
74329
+ cL("design:type", Boolean),
74330
+ cL("design:paramtypes", [Boolean])
74331
+ ], uL.prototype, "required", null), sL([
74317
74332
  A({
74318
74333
  type: Boolean,
74319
74334
  useDefault: !0
74320
74335
  }),
74321
- lL("design:type", Boolean),
74322
- lL("design:paramtypes", [Boolean])
74323
- ], dL.prototype, "readonly", null), cL([
74336
+ cL("design:type", Boolean),
74337
+ cL("design:paramtypes", [Boolean])
74338
+ ], uL.prototype, "readonly", null), sL([
74324
74339
  A({ type: Bb }),
74325
- lL("design:type", String),
74326
- lL("design:paramtypes", [String])
74327
- ], dL.prototype, "textAlign", null), cL([
74340
+ cL("design:type", String),
74341
+ cL("design:paramtypes", [String])
74342
+ ], uL.prototype, "textAlign", null), sL([
74328
74343
  A({ type: Nw }),
74329
- lL("design:type", String),
74330
- lL("design:paramtypes", [String])
74331
- ], dL.prototype, "dropDownSync", null), cL([
74344
+ cL("design:type", String),
74345
+ cL("design:paramtypes", [String])
74346
+ ], uL.prototype, "dropDownSync", null), sL([
74332
74347
  P({ type: Object }),
74333
- lL("design:type", rL),
74334
- lL("design:paramtypes", [rL])
74335
- ], dL.prototype, "intl", null), cL([
74348
+ cL("design:type", nL),
74349
+ cL("design:paramtypes", [nL])
74350
+ ], uL.prototype, "intl", null), sL([
74336
74351
  P({ type: Function }),
74337
- lL("design:type", Object),
74338
- lL("design:paramtypes", [Object])
74339
- ], dL.prototype, "renderItem", null), cL([
74352
+ cL("design:type", Object),
74353
+ cL("design:paramtypes", [Object])
74354
+ ], uL.prototype, "renderItem", null), sL([
74340
74355
  L("isDropDownOpen", { waitUntilFirstUpdate: !0 }),
74341
- lL("design:type", Function),
74342
- lL("design:paramtypes", [Boolean, Boolean]),
74343
- lL("design:returntype", void 0)
74344
- ], dL.prototype, "onDropDownOpenChanged", null), cL([
74356
+ cL("design:type", Function),
74357
+ cL("design:paramtypes", [Boolean, Boolean]),
74358
+ cL("design:returntype", void 0)
74359
+ ], uL.prototype, "onDropDownOpenChanged", null), sL([
74345
74360
  L("disabled"),
74346
- lL("design:type", Function),
74347
- lL("design:paramtypes", [Boolean, Boolean]),
74348
- lL("design:returntype", void 0)
74349
- ], dL.prototype, "onDisabledChanged", null), dL = uL = cL([H({
74361
+ cL("design:type", Function),
74362
+ cL("design:paramtypes", [Boolean, Boolean]),
74363
+ cL("design:returntype", void 0)
74364
+ ], uL.prototype, "onDisabledChanged", null), uL = lL = sL([H({
74350
74365
  selector: "mosaik-autocompletebox",
74351
- template: iL,
74366
+ template: rL,
74352
74367
  themes: {
74353
- joy: oL,
74354
- memphis: sL,
74355
- cosmopolitan: aL
74368
+ joy: aL,
74369
+ memphis: oL,
74370
+ cosmopolitan: iL
74356
74371
  },
74357
74372
  host: { tabIndex: "0" },
74358
74373
  options: {
@@ -74365,24 +74380,24 @@ cL([
74365
74380
  tT,
74366
74381
  zw,
74367
74382
  bS,
74368
- tL,
74383
+ eL,
74369
74384
  WI
74370
74385
  ]
74371
- }), lL("design:paramtypes", [])], dL);
74386
+ }), cL("design:paramtypes", [])], uL);
74372
74387
  //#endregion
74373
74388
  //#region ../mosaik-elements-foundation/dist/Controls/Behaviors/Localeable.js
74374
- var fL = function(e, t, n, r) {
74389
+ var dL = function(e, t, n, r) {
74375
74390
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
74376
74391
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
74377
74392
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
74378
74393
  return i > 3 && a && Object.defineProperty(t, n, a), a;
74379
- }, pL = function(e, t) {
74394
+ }, fL = function(e, t) {
74380
74395
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
74381
- }, mL = (e) => {
74396
+ }, pL = (e) => {
74382
74397
  class t extends e {
74383
74398
  _locale;
74384
74399
  constructor(...e) {
74385
- super(e), this._locale = hL.DEFAULTS.locale;
74400
+ super(e), this._locale = mL.DEFAULTS.locale;
74386
74401
  }
74387
74402
  get locale() {
74388
74403
  return this._locale;
@@ -74391,22 +74406,22 @@ var fL = function(e, t, n, r) {
74391
74406
  this._locale !== e && (this._locale = e, this.requestUpdate("locale"));
74392
74407
  }
74393
74408
  }
74394
- return fL([
74409
+ return dL([
74395
74410
  P({ type: String }),
74396
- pL("design:type", String),
74397
- pL("design:paramtypes", [String])
74411
+ fL("design:type", String),
74412
+ fL("design:paramtypes", [String])
74398
74413
  ], t.prototype, "locale", null), t;
74399
- }, hL;
74414
+ }, mL;
74400
74415
  (function(e) {
74401
74416
  e.DEFAULTS = { locale: "default" };
74402
- })(hL ||= {});
74417
+ })(mL ||= {});
74403
74418
  //#endregion
74404
74419
  //#region ../mosaik-elements-foundation/dist/Controls/Types/CalendarView.js
74405
- var gL = {
74420
+ var hL = {
74406
74421
  Day: "day",
74407
74422
  Month: "month",
74408
74423
  Year: "year"
74409
- }, _L = {
74424
+ }, gL = {
74410
74425
  Sunday: 0,
74411
74426
  Monday: 1,
74412
74427
  Tuesday: 2,
@@ -74414,31 +74429,31 @@ var gL = {
74414
74429
  Thursday: 4,
74415
74430
  Friday: 5,
74416
74431
  Saturday: 6
74417
- }, vL = {
74432
+ }, _L = {
74418
74433
  None: "none",
74419
74434
  Single: "single",
74420
74435
  Multiple: "multiple",
74421
74436
  Range: "range"
74422
- }, yL = {
74437
+ }, vL = {
74423
74438
  None: "none",
74424
74439
  Single: "single",
74425
74440
  Multiple: "multiple"
74426
74441
  };
74427
74442
  //#endregion
74428
74443
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarElementTemplate.js
74429
- function bL(e, t, n) {
74444
+ function yL(e, t, n) {
74430
74445
  if (!e || n <= 1) return e ? [new Date(e)] : [/* @__PURE__ */ new Date()];
74431
74446
  let r = [];
74432
74447
  for (let i = 0; i < n; i++) {
74433
74448
  let n = new Date(e);
74434
74449
  switch (t) {
74435
- case gL.Year:
74450
+ case hL.Year:
74436
74451
  n.setFullYear(e.getFullYear() + i * 13);
74437
74452
  break;
74438
- case gL.Month:
74453
+ case hL.Month:
74439
74454
  n.setFullYear(e.getFullYear() + i);
74440
74455
  break;
74441
- case gL.Day:
74456
+ case hL.Day:
74442
74457
  default:
74443
74458
  n.setMonth(e.getMonth() + i);
74444
74459
  break;
@@ -74447,8 +74462,8 @@ function bL(e, t, n) {
74447
74462
  }
74448
74463
  return r;
74449
74464
  }
74450
- function xL(e, t, n) {
74451
- return e.view === gL.Day ? V`
74465
+ function bL(e, t, n) {
74466
+ return e.view === hL.Day ? V`
74452
74467
  <mosaik-calendar-days-view part="daysView"
74453
74468
  data-sheet-index="${n}"
74454
74469
  .dir="${e.dir}"
@@ -74496,7 +74511,7 @@ function xL(e, t, n) {
74496
74511
  </div>
74497
74512
  ` : ""}
74498
74513
  </mosaik-calendar-days-view>
74499
- ` : e.view === gL.Month ? V`
74514
+ ` : e.view === hL.Month ? V`
74500
74515
  <mosaik-calendar-months-view part="monthView"
74501
74516
  data-sheet-index="${n}"
74502
74517
  .dir="${e.dir}"
@@ -74586,8 +74601,8 @@ function xL(e, t, n) {
74586
74601
  </mosaik-calendar-years-view>
74587
74602
  `;
74588
74603
  }
74589
- function SL(e) {
74590
- let t = bL(e.displayDate, e.view, e.sheets), n = e.sheets > 1;
74604
+ function xL(e) {
74605
+ let t = yL(e.displayDate, e.view, e.sheets), n = e.sheets > 1;
74591
74606
  return V`
74592
74607
  <mosaik-stack .dir="${e.dir}"
74593
74608
  .lang="${e.lang}"
@@ -74605,12 +74620,12 @@ function SL(e) {
74605
74620
  ${t.map((t, n) => V`
74606
74621
  <div part="sheet"
74607
74622
  data-sheet-index="${n}">
74608
- ${xL(e, t, n)}
74623
+ ${bL(e, t, n)}
74609
74624
  </div>
74610
74625
  `)}
74611
74626
  </mosaik-stack>
74612
74627
  ` : V`
74613
- ${xL(e, t[0], 0)}
74628
+ ${bL(e, t[0], 0)}
74614
74629
  `}
74615
74630
  </div>
74616
74631
  <div part="footer"
@@ -74622,7 +74637,7 @@ function SL(e) {
74622
74637
  }
74623
74638
  //#endregion
74624
74639
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarHeaderElementTemplate.js
74625
- function CL(e) {
74640
+ function SL(e) {
74626
74641
  return V`
74627
74642
  <slot name="header">
74628
74643
  <mosaik-text .dir="${e.dir}"
@@ -74634,7 +74649,7 @@ function CL(e) {
74634
74649
  }
74635
74650
  //#endregion
74636
74651
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarHeaderElement.Joy.js
74637
- function wL() {
74652
+ function CL() {
74638
74653
  return B`
74639
74654
  :host {
74640
74655
  --calendar-header-background-color: var(--joy-scheme-background);
@@ -74731,7 +74746,7 @@ function wL() {
74731
74746
  }
74732
74747
  //#endregion
74733
74748
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarHeaderElement.Memphis.js
74734
- function TL() {
74749
+ function wL() {
74735
74750
  return B`
74736
74751
  :host {
74737
74752
  --calendar-header-background-color: var(--memphis-scheme-background);
@@ -74828,7 +74843,7 @@ function TL() {
74828
74843
  }
74829
74844
  //#endregion
74830
74845
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarHeaderElement.Cosmopolitan.js
74831
- function EL() {
74846
+ function TL() {
74832
74847
  return B`
74833
74848
  :host {
74834
74849
  --calendar-header-background-color: var(--cosmopolitan-scheme-background);
@@ -74925,14 +74940,14 @@ function EL() {
74925
74940
  }
74926
74941
  //#endregion
74927
74942
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarHeaderElement.js
74928
- var DL = function(e, t, n, r) {
74943
+ var EL = function(e, t, n, r) {
74929
74944
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
74930
74945
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
74931
74946
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
74932
74947
  return i > 3 && a && Object.defineProperty(t, n, a), a;
74933
- }, OL = function(e, t) {
74948
+ }, DL = function(e, t) {
74934
74949
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
74935
- }, kL = class extends F(R(j)) {
74950
+ }, OL = class extends F(R(j)) {
74936
74951
  _text;
74937
74952
  constructor() {
74938
74953
  super(), this._text = "";
@@ -74947,30 +74962,30 @@ var DL = function(e, t, n, r) {
74947
74962
  this._text !== e && (this._text = e, this.requestUpdate("text"));
74948
74963
  }
74949
74964
  };
74950
- DL([
74965
+ EL([
74951
74966
  A({ type: String }),
74952
- OL("design:type", String),
74953
- OL("design:paramtypes", [String])
74954
- ], kL.prototype, "text", null), kL = DL([H({
74967
+ DL("design:type", String),
74968
+ DL("design:paramtypes", [String])
74969
+ ], OL.prototype, "text", null), OL = EL([H({
74955
74970
  selector: "mosaik-calendar-header",
74956
- template: CL,
74971
+ template: SL,
74957
74972
  themes: {
74958
- joy: wL,
74959
- memphis: TL,
74960
- cosmopolitan: EL
74973
+ joy: CL,
74974
+ memphis: wL,
74975
+ cosmopolitan: TL
74961
74976
  },
74962
74977
  imports: [W]
74963
- }), OL("design:paramtypes", [])], kL);
74978
+ }), DL("design:paramtypes", [])], OL);
74964
74979
  //#endregion
74965
74980
  //#region ../mosaik-elements-foundation/dist/Controls/Types/DotFill.js
74966
- var AL = {
74981
+ var kL = {
74967
74982
  Empty: "empty",
74968
74983
  Half: "half",
74969
74984
  Full: "full"
74970
74985
  };
74971
74986
  //#endregion
74972
74987
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Dot/DotElementTemplate.js
74973
- function jL(e) {
74988
+ function AL(e) {
74974
74989
  return V`
74975
74990
  <div part="container">
74976
74991
  <div part="fill"></div>
@@ -74979,7 +74994,7 @@ function jL(e) {
74979
74994
  }
74980
74995
  //#endregion
74981
74996
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Dot/DotGroupInheritanceContext.js
74982
- var ML = Lx(Symbol.for("mosaik:dot-group:inheritance")), NL;
74997
+ var jL = Lx(Symbol.for("mosaik:dot-group:inheritance")), ML;
74983
74998
  (function(e) {
74984
74999
  e.DEFAULTS = {
74985
75000
  ...$y.DEFAULTS,
@@ -74987,10 +75002,10 @@ var ML = Lx(Symbol.for("mosaik:dot-group:inheritance")), NL;
74987
75002
  ...pS.DEFAULTS,
74988
75003
  fill: "full"
74989
75004
  };
74990
- })(NL ||= {});
75005
+ })(ML ||= {});
74991
75006
  //#endregion
74992
75007
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Dot/Themes/DotElement.Cosmopolitan.js
74993
- function PL() {
75008
+ function NL() {
74994
75009
  return B`
74995
75010
  :host {
74996
75011
  --dot-background-color: unset;
@@ -75134,7 +75149,7 @@ function PL() {
75134
75149
  }
75135
75150
  //#endregion
75136
75151
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Dot/Themes/DotElement.Joy.js
75137
- function FL() {
75152
+ function PL() {
75138
75153
  return B`
75139
75154
  :host {
75140
75155
  --dot-background-color: var(--joy-color-neutral-500);
@@ -75338,7 +75353,7 @@ function FL() {
75338
75353
  }
75339
75354
  //#endregion
75340
75355
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Dot/Themes/DotElement.Memphis.js
75341
- function IL() {
75356
+ function FL() {
75342
75357
  return B`
75343
75358
  :host {
75344
75359
  --dot-background-color: var(--memphis-color-neutral-500);
@@ -75527,18 +75542,18 @@ function IL() {
75527
75542
  }
75528
75543
  //#endregion
75529
75544
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Dot/DotElement.js
75530
- var LL = function(e, t, n, r) {
75545
+ var IL = function(e, t, n, r) {
75531
75546
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
75532
75547
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
75533
75548
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
75534
75549
  return i > 3 && a && Object.defineProperty(t, n, a), a;
75535
- }, RL = function(e, t) {
75550
+ }, LL = function(e, t) {
75536
75551
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
75537
- }, zL = class extends F(fS(z(R(j)))) {
75538
- _inheritance = zx(this, { context: ML });
75552
+ }, RL = class extends F(fS(z(R(j)))) {
75553
+ _inheritance = zx(this, { context: jL });
75539
75554
  _fill;
75540
75555
  constructor() {
75541
- super(), this._fill = NL.DEFAULTS.fill;
75556
+ super(), this._fill = ML.DEFAULTS.fill;
75542
75557
  }
75543
75558
  static get is() {
75544
75559
  return "mosaik-dot";
@@ -75556,23 +75571,23 @@ var LL = function(e, t, n, r) {
75556
75571
  this._fill !== e && (this._fill = e, this.requestUpdate("fill"));
75557
75572
  }
75558
75573
  };
75559
- LL([
75560
- A({ type: AL }),
75561
- RL("design:type", String),
75562
- RL("design:paramtypes", [String])
75563
- ], zL.prototype, "fill", null), zL = LL([H({
75574
+ IL([
75575
+ A({ type: kL }),
75576
+ LL("design:type", String),
75577
+ LL("design:paramtypes", [String])
75578
+ ], RL.prototype, "fill", null), RL = IL([H({
75564
75579
  selector: "mosaik-dot",
75565
- template: jL,
75580
+ template: AL,
75566
75581
  themes: {
75567
- joy: FL,
75568
- memphis: IL,
75569
- cosmopolitan: PL
75582
+ joy: PL,
75583
+ memphis: FL,
75584
+ cosmopolitan: NL
75570
75585
  },
75571
75586
  imports: []
75572
- }), RL("design:paramtypes", [])], zL);
75587
+ }), LL("design:paramtypes", [])], RL);
75573
75588
  //#endregion
75574
75589
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarItemElementTemplate.js
75575
- function BL(e) {
75590
+ function zL(e) {
75576
75591
  let t = e.markers ?? [], n = t.length > 3 ? t.slice(0, 3) : t, r = t.length - 3;
75577
75592
  return V`
75578
75593
  ${U(!e.disabled && !e.isBlackout, () => V`
@@ -75611,7 +75626,7 @@ function BL(e) {
75611
75626
  }
75612
75627
  //#endregion
75613
75628
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarItemElement.Cosmopolitan.js
75614
- function VL() {
75629
+ function BL() {
75615
75630
  return B`
75616
75631
  :host {
75617
75632
  --calendar-item-background-color: var(--cosmopolitan-scheme-background);
@@ -75848,7 +75863,7 @@ function VL() {
75848
75863
  }
75849
75864
  //#endregion
75850
75865
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarItemElement.Joy.js
75851
- function HL() {
75866
+ function VL() {
75852
75867
  return B`
75853
75868
  :host {
75854
75869
  --calendar-item-background-color: var(--joy-scheme-background);
@@ -76119,7 +76134,7 @@ function HL() {
76119
76134
  }
76120
76135
  //#endregion
76121
76136
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarItemElement.Memphis.js
76122
- function UL() {
76137
+ function HL() {
76123
76138
  return B`
76124
76139
  :host {
76125
76140
  --calendar-item-background-color: var(--memphis-scheme-background);
@@ -76365,14 +76380,14 @@ function UL() {
76365
76380
  }
76366
76381
  //#endregion
76367
76382
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarItemElement.js
76368
- var WL = function(e, t, n, r) {
76383
+ var UL = function(e, t, n, r) {
76369
76384
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
76370
76385
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
76371
76386
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
76372
76387
  return i > 3 && a && Object.defineProperty(t, n, a), a;
76373
- }, GL = function(e, t) {
76388
+ }, WL = function(e, t) {
76374
76389
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
76375
- }, KL = class extends F(zS(J(z(R(ES(IS(j))))))) {
76390
+ }, GL = class extends F(zS(J(z(R(ES(IS(j))))))) {
76376
76391
  _text;
76377
76392
  _value;
76378
76393
  _isSelected;
@@ -76474,11 +76489,11 @@ var WL = function(e, t, n, r) {
76474
76489
  this.disabled && (e.preventDefault(), e.stopPropagation());
76475
76490
  }
76476
76491
  };
76477
- WL([
76492
+ UL([
76478
76493
  A({ type: String }),
76479
- GL("design:type", String),
76480
- GL("design:paramtypes", [String])
76481
- ], KL.prototype, "text", null), WL([
76494
+ WL("design:type", String),
76495
+ WL("design:paramtypes", [String])
76496
+ ], GL.prototype, "text", null), UL([
76482
76497
  A({
76483
76498
  type: Date,
76484
76499
  converter: {
@@ -76486,106 +76501,106 @@ WL([
76486
76501
  toAttribute: (e) => e?.toISOString()
76487
76502
  }
76488
76503
  }),
76489
- GL("design:type", Object),
76490
- GL("design:paramtypes", [Object])
76491
- ], KL.prototype, "value", null), WL([
76504
+ WL("design:type", Object),
76505
+ WL("design:paramtypes", [Object])
76506
+ ], GL.prototype, "value", null), UL([
76492
76507
  A({
76493
76508
  type: Boolean,
76494
76509
  useDefault: !0
76495
76510
  }),
76496
- GL("design:type", Boolean),
76497
- GL("design:paramtypes", [Boolean])
76498
- ], KL.prototype, "isSelected", null), WL([
76511
+ WL("design:type", Boolean),
76512
+ WL("design:paramtypes", [Boolean])
76513
+ ], GL.prototype, "isSelected", null), UL([
76499
76514
  A({
76500
76515
  type: Boolean,
76501
76516
  useDefault: !0
76502
76517
  }),
76503
- GL("design:type", Boolean),
76504
- GL("design:paramtypes", [Boolean])
76505
- ], KL.prototype, "isBlackout", null), WL([
76518
+ WL("design:type", Boolean),
76519
+ WL("design:paramtypes", [Boolean])
76520
+ ], GL.prototype, "isBlackout", null), UL([
76506
76521
  A({
76507
76522
  type: Boolean,
76508
76523
  useDefault: !0
76509
76524
  }),
76510
- GL("design:type", Boolean),
76511
- GL("design:paramtypes", [Boolean])
76512
- ], KL.prototype, "isSpecial", null), WL([
76525
+ WL("design:type", Boolean),
76526
+ WL("design:paramtypes", [Boolean])
76527
+ ], GL.prototype, "isSpecial", null), UL([
76513
76528
  A({
76514
76529
  type: Boolean,
76515
76530
  useDefault: !0
76516
76531
  }),
76517
- GL("design:type", Boolean),
76518
- GL("design:paramtypes", [Boolean])
76519
- ], KL.prototype, "isToday", null), WL([
76532
+ WL("design:type", Boolean),
76533
+ WL("design:paramtypes", [Boolean])
76534
+ ], GL.prototype, "isToday", null), UL([
76520
76535
  A({
76521
76536
  type: Boolean,
76522
76537
  useDefault: !0
76523
76538
  }),
76524
- GL("design:type", Boolean),
76525
- GL("design:paramtypes", [Boolean])
76526
- ], KL.prototype, "isWeekend", null), WL([
76539
+ WL("design:type", Boolean),
76540
+ WL("design:paramtypes", [Boolean])
76541
+ ], GL.prototype, "isWeekend", null), UL([
76527
76542
  A({
76528
76543
  type: Boolean,
76529
76544
  useDefault: !0
76530
76545
  }),
76531
- GL("design:type", Boolean),
76532
- GL("design:paramtypes", [Boolean])
76533
- ], KL.prototype, "isAdjacent", null), WL([
76546
+ WL("design:type", Boolean),
76547
+ WL("design:paramtypes", [Boolean])
76548
+ ], GL.prototype, "isAdjacent", null), UL([
76534
76549
  P({ type: Array }),
76535
- GL("design:type", Object),
76536
- GL("design:paramtypes", [Object])
76537
- ], KL.prototype, "markers", null), WL([
76550
+ WL("design:type", Object),
76551
+ WL("design:paramtypes", [Object])
76552
+ ], GL.prototype, "markers", null), UL([
76538
76553
  A({
76539
76554
  type: Boolean,
76540
76555
  useDefault: !0
76541
76556
  }),
76542
- GL("design:type", Boolean),
76543
- GL("design:paramtypes", [Boolean])
76544
- ], KL.prototype, "isRangeStart", null), WL([
76557
+ WL("design:type", Boolean),
76558
+ WL("design:paramtypes", [Boolean])
76559
+ ], GL.prototype, "isRangeStart", null), UL([
76545
76560
  A({
76546
76561
  type: Boolean,
76547
76562
  useDefault: !0
76548
76563
  }),
76549
- GL("design:type", Boolean),
76550
- GL("design:paramtypes", [Boolean])
76551
- ], KL.prototype, "isRangeMiddle", null), WL([
76564
+ WL("design:type", Boolean),
76565
+ WL("design:paramtypes", [Boolean])
76566
+ ], GL.prototype, "isRangeMiddle", null), UL([
76552
76567
  A({
76553
76568
  type: Boolean,
76554
76569
  useDefault: !0
76555
76570
  }),
76556
- GL("design:type", Boolean),
76557
- GL("design:paramtypes", [Boolean])
76558
- ], KL.prototype, "isRangeEnd", null), WL([
76571
+ WL("design:type", Boolean),
76572
+ WL("design:paramtypes", [Boolean])
76573
+ ], GL.prototype, "isRangeEnd", null), UL([
76559
76574
  A({
76560
76575
  type: Boolean,
76561
76576
  useDefault: !0
76562
76577
  }),
76563
- GL("design:type", Boolean),
76564
- GL("design:paramtypes", [Boolean])
76565
- ], KL.prototype, "isRangePreview", null), WL([
76578
+ WL("design:type", Boolean),
76579
+ WL("design:paramtypes", [Boolean])
76580
+ ], GL.prototype, "isRangePreview", null), UL([
76566
76581
  Xy("click"),
76567
- GL("design:type", Function),
76568
- GL("design:paramtypes", [Event]),
76569
- GL("design:returntype", void 0)
76570
- ], KL.prototype, "onClick", null), KL = WL([H({
76582
+ WL("design:type", Function),
76583
+ WL("design:paramtypes", [Event]),
76584
+ WL("design:returntype", void 0)
76585
+ ], GL.prototype, "onClick", null), GL = UL([H({
76571
76586
  selector: "mosaik-calendar-item",
76572
- template: BL,
76587
+ template: zL,
76573
76588
  themes: {
76574
- joy: HL,
76575
- memphis: UL,
76576
- cosmopolitan: VL
76589
+ joy: VL,
76590
+ memphis: HL,
76591
+ cosmopolitan: BL
76577
76592
  },
76578
76593
  imports: [
76579
76594
  W,
76580
76595
  bS,
76581
76596
  Gx,
76582
- zL,
76597
+ RL,
76583
76598
  sS
76584
76599
  ]
76585
- }), GL("design:paramtypes", [])], KL);
76600
+ }), WL("design:paramtypes", [])], GL);
76586
76601
  //#endregion
76587
76602
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarSubHeaderElementTemplate.js
76588
- function qL(e) {
76603
+ function KL(e) {
76589
76604
  return V`
76590
76605
  <slot name="subHeader">
76591
76606
  <mosaik-text .text="${e.text}"
@@ -76597,7 +76612,7 @@ function qL(e) {
76597
76612
  }
76598
76613
  //#endregion
76599
76614
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarSubHeaderElement.Joy.js
76600
- function JL() {
76615
+ function qL() {
76601
76616
  return B`
76602
76617
  :host {
76603
76618
  --calendar-sub-header-background-color: var(--joy-scheme-background);
@@ -76703,7 +76718,7 @@ function JL() {
76703
76718
  }
76704
76719
  //#endregion
76705
76720
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarSubHeaderElement.Memphis.js
76706
- function YL() {
76721
+ function JL() {
76707
76722
  return B`
76708
76723
  :host {
76709
76724
  --calendar-sub-header-background-color: var(--memphis-scheme-background);
@@ -76809,7 +76824,7 @@ function YL() {
76809
76824
  }
76810
76825
  //#endregion
76811
76826
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarSubHeaderElement.Cosmopolitan.js
76812
- function XL() {
76827
+ function YL() {
76813
76828
  return B`
76814
76829
  :host {
76815
76830
  --calendar-sub-header-background-color: var(--cosmopolitan-scheme-background);
@@ -76915,14 +76930,14 @@ function XL() {
76915
76930
  }
76916
76931
  //#endregion
76917
76932
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarSubHeaderElement.js
76918
- var ZL = function(e, t, n, r) {
76933
+ var XL = function(e, t, n, r) {
76919
76934
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
76920
76935
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
76921
76936
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
76922
76937
  return i > 3 && a && Object.defineProperty(t, n, a), a;
76923
- }, QL = function(e, t) {
76938
+ }, ZL = function(e, t) {
76924
76939
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
76925
- }, $L = class extends F(R(j)) {
76940
+ }, QL = class extends F(R(j)) {
76926
76941
  _text;
76927
76942
  constructor() {
76928
76943
  super(), this._text = "";
@@ -76937,23 +76952,23 @@ var ZL = function(e, t, n, r) {
76937
76952
  this._text !== e && (this._text = e, this.requestUpdate("text"));
76938
76953
  }
76939
76954
  };
76940
- ZL([
76955
+ XL([
76941
76956
  A({ type: String }),
76942
- QL("design:type", String),
76943
- QL("design:paramtypes", [String])
76944
- ], $L.prototype, "text", null), $L = ZL([H({
76957
+ ZL("design:type", String),
76958
+ ZL("design:paramtypes", [String])
76959
+ ], QL.prototype, "text", null), QL = XL([H({
76945
76960
  selector: "mosaik-calendar-sub-header",
76946
- template: qL,
76961
+ template: KL,
76947
76962
  themes: {
76948
- joy: JL,
76949
- memphis: YL,
76950
- cosmopolitan: XL
76963
+ joy: qL,
76964
+ memphis: JL,
76965
+ cosmopolitan: YL
76951
76966
  },
76952
76967
  imports: [W]
76953
- }), QL("design:paramtypes", [])], $L);
76968
+ }), ZL("design:paramtypes", [])], QL);
76954
76969
  //#endregion
76955
76970
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Intl/CalendarElementIntl.js
76956
- var eR = class extends nL {
76971
+ var $L = class extends tL {
76957
76972
  _todayLabel;
76958
76973
  _weekNumberLabel;
76959
76974
  _sundayLabel;
@@ -77029,7 +77044,7 @@ var eR = class extends nL {
77029
77044
  };
77030
77045
  //#endregion
77031
77046
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarElement.Cosmopolitan.js
77032
- function tR() {
77047
+ function eR() {
77033
77048
  return B`
77034
77049
  :host {
77035
77050
  --calendar-background-color: var(--cosmopolitan-scheme-background);
@@ -77235,7 +77250,7 @@ function tR() {
77235
77250
  }
77236
77251
  //#endregion
77237
77252
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarElement.Joy.js
77238
- function nR() {
77253
+ function tR() {
77239
77254
  return B`
77240
77255
  :host {
77241
77256
  --calendar-background-color: var(--joy-scheme-background);
@@ -77441,7 +77456,7 @@ function nR() {
77441
77456
  }
77442
77457
  //#endregion
77443
77458
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Themes/CalendarElement.Memphis.js
77444
- function rR() {
77459
+ function nR() {
77445
77460
  return B`
77446
77461
  :host {
77447
77462
  --calendar-background-color: var(--memphis-scheme-background);
@@ -77652,14 +77667,14 @@ function rR() {
77652
77667
  }
77653
77668
  //#endregion
77654
77669
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Abstracts/CalendarViewBase.js
77655
- var iR = function(e, t, n, r) {
77670
+ var rR = function(e, t, n, r) {
77656
77671
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
77657
77672
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
77658
77673
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
77659
77674
  return i > 3 && a && Object.defineProperty(t, n, a), a;
77660
- }, aR = function(e, t) {
77675
+ }, iR = function(e, t) {
77661
77676
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
77662
- }, oR = class extends R(mL(j)) {
77677
+ }, aR = class extends R(pL(j)) {
77663
77678
  _valueChanged;
77664
77679
  _viewChanged;
77665
77680
  _displayChanged;
@@ -77675,10 +77690,10 @@ var iR = function(e, t, n, r) {
77675
77690
  _intl;
77676
77691
  _allowedViews;
77677
77692
  constructor() {
77678
- super(), this._displayDate = null, this._displayDateStart = null, this._displayDateEnd = null, this.locale = "en", this._value = void 0, this._values = void 0, this._selection = vL.Single, this._blackoutDates = [], this._specialDates = [], this._markerHandler = () => [], this._intl = null, this._allowedViews = [
77679
- gL.Day,
77680
- gL.Month,
77681
- gL.Year
77693
+ super(), this._displayDate = null, this._displayDateStart = null, this._displayDateEnd = null, this.locale = "en", this._value = void 0, this._values = void 0, this._selection = _L.Single, this._blackoutDates = [], this._specialDates = [], this._markerHandler = () => [], this._intl = null, this._allowedViews = [
77694
+ hL.Day,
77695
+ hL.Month,
77696
+ hL.Year
77682
77697
  ], this._valueChanged = new E(this, "valueChanged"), this._viewChanged = new E(this, "viewChanged"), this._displayChanged = new E(this, "displayChanged");
77683
77698
  }
77684
77699
  get displayDate() {
@@ -77769,7 +77784,7 @@ var iR = function(e, t, n, r) {
77769
77784
  this._displayChanged.emit(e);
77770
77785
  }
77771
77786
  };
77772
- iR([
77787
+ rR([
77773
77788
  A({
77774
77789
  type: Date,
77775
77790
  converter: {
@@ -77777,9 +77792,9 @@ iR([
77777
77792
  toAttribute: (e) => e ? e.toISOString() : ""
77778
77793
  }
77779
77794
  }),
77780
- aR("design:type", Object),
77781
- aR("design:paramtypes", [Object])
77782
- ], oR.prototype, "displayDate", null), iR([
77795
+ iR("design:type", Object),
77796
+ iR("design:paramtypes", [Object])
77797
+ ], aR.prototype, "displayDate", null), rR([
77783
77798
  A({
77784
77799
  type: Date,
77785
77800
  converter: {
@@ -77787,9 +77802,9 @@ iR([
77787
77802
  toAttribute: (e) => e ? e.toISOString() : ""
77788
77803
  }
77789
77804
  }),
77790
- aR("design:type", Object),
77791
- aR("design:paramtypes", [Object])
77792
- ], oR.prototype, "displayDateStart", null), iR([
77805
+ iR("design:type", Object),
77806
+ iR("design:paramtypes", [Object])
77807
+ ], aR.prototype, "displayDateStart", null), rR([
77793
77808
  A({
77794
77809
  type: Date,
77795
77810
  converter: {
@@ -77797,9 +77812,9 @@ iR([
77797
77812
  toAttribute: (e) => e ? e.toISOString() : ""
77798
77813
  }
77799
77814
  }),
77800
- aR("design:type", Object),
77801
- aR("design:paramtypes", [Object])
77802
- ], oR.prototype, "displayDateEnd", null), iR([
77815
+ iR("design:type", Object),
77816
+ iR("design:paramtypes", [Object])
77817
+ ], aR.prototype, "displayDateEnd", null), rR([
77803
77818
  A({
77804
77819
  type: Date,
77805
77820
  converter: {
@@ -77807,9 +77822,9 @@ iR([
77807
77822
  toAttribute: (e) => e ? e.toISOString() : ""
77808
77823
  }
77809
77824
  }),
77810
- aR("design:type", Object),
77811
- aR("design:paramtypes", [Object])
77812
- ], oR.prototype, "value", null), iR([
77825
+ iR("design:type", Object),
77826
+ iR("design:paramtypes", [Object])
77827
+ ], aR.prototype, "value", null), rR([
77813
77828
  A({
77814
77829
  type: Array,
77815
77830
  converter: {
@@ -77817,51 +77832,51 @@ iR([
77817
77832
  toAttribute: (e) => e.map((e) => e.toISOString()).join(" ")
77818
77833
  }
77819
77834
  }),
77820
- aR("design:type", Object),
77821
- aR("design:paramtypes", [Object])
77822
- ], oR.prototype, "values", null), iR([
77835
+ iR("design:type", Object),
77836
+ iR("design:paramtypes", [Object])
77837
+ ], aR.prototype, "values", null), rR([
77823
77838
  A({ type: String }),
77824
- aR("design:type", String),
77825
- aR("design:paramtypes", [String])
77826
- ], oR.prototype, "selection", null), iR([
77839
+ iR("design:type", String),
77840
+ iR("design:paramtypes", [String])
77841
+ ], aR.prototype, "selection", null), rR([
77827
77842
  P({ type: Array }),
77828
- aR("design:type", Array),
77829
- aR("design:paramtypes", [Array])
77830
- ], oR.prototype, "blackoutDates", null), iR([
77843
+ iR("design:type", Array),
77844
+ iR("design:paramtypes", [Array])
77845
+ ], aR.prototype, "blackoutDates", null), rR([
77831
77846
  P({
77832
77847
  type: Array,
77833
77848
  attribute: !1
77834
77849
  }),
77835
- aR("design:type", Array),
77836
- aR("design:paramtypes", [Array])
77837
- ], oR.prototype, "specialDates", null), iR([
77850
+ iR("design:type", Array),
77851
+ iR("design:paramtypes", [Array])
77852
+ ], aR.prototype, "specialDates", null), rR([
77838
77853
  P({ type: Function }),
77839
- aR("design:type", Function),
77840
- aR("design:paramtypes", [Function])
77841
- ], oR.prototype, "markerHandler", null), iR([
77842
- P({ type: eR }),
77843
- aR("design:type", Object),
77844
- aR("design:paramtypes", [Object])
77845
- ], oR.prototype, "intl", null), iR([
77854
+ iR("design:type", Function),
77855
+ iR("design:paramtypes", [Function])
77856
+ ], aR.prototype, "markerHandler", null), rR([
77857
+ P({ type: $L }),
77858
+ iR("design:type", Object),
77859
+ iR("design:paramtypes", [Object])
77860
+ ], aR.prototype, "intl", null), rR([
77846
77861
  P({ type: Array }),
77847
- aR("design:type", Array),
77848
- aR("design:paramtypes", [Array])
77849
- ], oR.prototype, "allowedViews", null), iR([
77862
+ iR("design:type", Array),
77863
+ iR("design:paramtypes", [Array])
77864
+ ], aR.prototype, "allowedViews", null), rR([
77850
77865
  k({ eventName: "valueChanged" }),
77851
- aR("design:type", Object),
77852
- aR("design:paramtypes", [])
77853
- ], oR.prototype, "valueChanged", null), iR([
77866
+ iR("design:type", Object),
77867
+ iR("design:paramtypes", [])
77868
+ ], aR.prototype, "valueChanged", null), rR([
77854
77869
  k({ eventName: "viewChanged" }),
77855
- aR("design:type", Object),
77856
- aR("design:paramtypes", [])
77857
- ], oR.prototype, "viewChanged", null), iR([
77870
+ iR("design:type", Object),
77871
+ iR("design:paramtypes", [])
77872
+ ], aR.prototype, "viewChanged", null), rR([
77858
77873
  k({ eventName: "displayChanged" }),
77859
- aR("design:type", Object),
77860
- aR("design:paramtypes", [])
77861
- ], oR.prototype, "displayChanged", null);
77874
+ iR("design:type", Object),
77875
+ iR("design:paramtypes", [])
77876
+ ], aR.prototype, "displayChanged", null);
77862
77877
  //#endregion
77863
77878
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/CalendarDaysViewElementTemplate.js
77864
- function sR(e) {
77879
+ function oR(e) {
77865
77880
  let t = e.displayDate ?? /* @__PURE__ */ new Date(), n = t.getMonth(), r = t.getFullYear(), i = new Date(r, n + 1, 0).getDate(), a = (new Date(r, n, 1).getDay() - e.firstDayOfWeek + 7) % 7, o = (7 - (a + i) % 7) % 7, s = e.intl ? [
77866
77881
  e.intl.sundayLabel,
77867
77882
  e.intl.mondayLabel,
@@ -77898,19 +77913,19 @@ function sR(e) {
77898
77913
  style="display: flex; flex: 1;">
77899
77914
  <mosaik-button-group .dir="${e.dir}"
77900
77915
  .appearance="${q.Plain}">
77901
- ${U(e.allowedViews.includes(gL.Month), () => V`
77916
+ ${U(e.allowedViews.includes(hL.Month), () => V`
77902
77917
  <mosaik-button part="month"
77903
77918
  .label="${e.displayDate?.toLocaleString(e.locale, { month: "long" }) ?? ""}"
77904
- @click="${() => e.setView(gL.Month)}"></mosaik-button>
77919
+ @click="${() => e.setView(hL.Month)}"></mosaik-button>
77905
77920
  `, () => V`
77906
77921
  <mosaik-button part="month"
77907
77922
  .label="${e.displayDate?.toLocaleString(e.locale, { month: "long" }) ?? ""}"
77908
77923
  ?disabled="${!0}"></mosaik-button>
77909
77924
  `)}
77910
- ${U(e.allowedViews.includes(gL.Year), () => V`
77925
+ ${U(e.allowedViews.includes(hL.Year), () => V`
77911
77926
  <mosaik-button part="year"
77912
77927
  .label="${e.displayDate?.toLocaleString(e.locale, { year: "numeric" }) ?? ""}"
77913
- @click="${() => e.setView(gL.Year)}"></mosaik-button>
77928
+ @click="${() => e.setView(hL.Year)}"></mosaik-button>
77914
77929
  `, () => V`
77915
77930
  <mosaik-button part="year"
77916
77931
  .label="${e.displayDate?.toLocaleString(e.locale, { year: "numeric" }) ?? ""}"
@@ -78047,7 +78062,7 @@ function sR(e) {
78047
78062
  }
78048
78063
  //#endregion
78049
78064
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarDaysViewElement.Cosmopolitan.js
78050
- function cR() {
78065
+ function sR() {
78051
78066
  return B`
78052
78067
  :host {
78053
78068
  --calendar-days-view-font-family: unset;
@@ -78182,7 +78197,7 @@ function cR() {
78182
78197
  }
78183
78198
  //#endregion
78184
78199
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarDaysViewElement.Joy.js
78185
- function lR() {
78200
+ function cR() {
78186
78201
  return B`
78187
78202
  :host {
78188
78203
  --calendar-days-view-font-family: unset;
@@ -78317,7 +78332,7 @@ function lR() {
78317
78332
  }
78318
78333
  //#endregion
78319
78334
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarDaysViewElement.Memphis.js
78320
- function uR() {
78335
+ function lR() {
78321
78336
  return B`
78322
78337
  :host {
78323
78338
  --calendar-days-view-font-family: unset;
@@ -78452,14 +78467,14 @@ function uR() {
78452
78467
  }
78453
78468
  //#endregion
78454
78469
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/CalendarDaysViewElement.js
78455
- var dR = function(e, t, n, r) {
78470
+ var uR = function(e, t, n, r) {
78456
78471
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
78457
78472
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
78458
78473
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
78459
78474
  return i > 3 && a && Object.defineProperty(t, n, a), a;
78460
- }, fR = function(e, t) {
78475
+ }, dR = function(e, t) {
78461
78476
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
78462
- }, pR = class extends F(J(z(oR))) {
78477
+ }, fR = class extends F(J(z(aR))) {
78463
78478
  _previewDateChange;
78464
78479
  _showAdjacent;
78465
78480
  _showWeekNumbers;
@@ -78468,7 +78483,7 @@ var dR = function(e, t, n, r) {
78468
78483
  _isWeekendHighlighted;
78469
78484
  _rangePreviewDate;
78470
78485
  constructor() {
78471
- super(), this._showWeekNumbers = !1, this._firstDayOfWeek = _L.Sunday, this._showAdjacent = !1, this._isTodayHighlighted = !0, this._isWeekendHighlighted = !0, this._rangePreviewDate = null, this._previewDateChange = new E(this, "previewDateChange");
78486
+ super(), this._showWeekNumbers = !1, this._firstDayOfWeek = gL.Sunday, this._showAdjacent = !1, this._isTodayHighlighted = !0, this._isWeekendHighlighted = !0, this._rangePreviewDate = null, this._previewDateChange = new E(this, "previewDateChange");
78472
78487
  }
78473
78488
  static get is() {
78474
78489
  return "mosaik-calendar-days-view";
@@ -78521,12 +78536,12 @@ var dR = function(e, t, n, r) {
78521
78536
  }
78522
78537
  selectDay(e) {
78523
78538
  let t = cI(e);
78524
- if (this._rangePreviewDate && this.setRangePreviewDate(null), !oI(t, this.blackoutDates) && this.selection !== vL.None) {
78525
- if (this.selection === vL.Single && (this.value = t, this.values = [t]), this.selection === vL.Multiple) {
78539
+ if (this._rangePreviewDate && this.setRangePreviewDate(null), !oI(t, this.blackoutDates) && this.selection !== _L.None) {
78540
+ if (this.selection === _L.Single && (this.value = t, this.values = [t]), this.selection === _L.Multiple) {
78526
78541
  let e = this.values ?? [], n = [];
78527
78542
  e.every((e) => e.getTime() !== t.getTime()) ? n.push(t) : e = e.filter((e) => e.getTime() !== t.getTime()), n.length > 0 && (e = e.concat(n)), e.sort((e, t) => e.valueOf() - t.valueOf()), this.values = [...e];
78528
78543
  }
78529
- if (this.selection === vL.Range) {
78544
+ if (this.selection === _L.Range) {
78530
78545
  let e = this.values ?? [];
78531
78546
  if (e.length === 0) e = [t];
78532
78547
  else if (e.length === 1) if (e[0].getTime() === t.getTime()) e = [];
@@ -78563,7 +78578,7 @@ var dR = function(e, t, n, r) {
78563
78578
  this.onViewChanged({ view: e });
78564
78579
  }
78565
78580
  changeRangePreview(e) {
78566
- this.selection === vL.Range && this.values && this.values.length === 1 && !iI(this.values[0], e) && this.setRangePreviewDate(e);
78581
+ this.selection === _L.Range && this.values && this.values.length === 1 && !iI(this.values[0], e) && this.setRangePreviewDate(e);
78567
78582
  }
78568
78583
  clearRangePreview() {
78569
78584
  this.rangePreviewDate && this.setRangePreviewDate(null);
@@ -78580,74 +78595,74 @@ var dR = function(e, t, n, r) {
78580
78595
  return n;
78581
78596
  }
78582
78597
  };
78583
- dR([
78598
+ uR([
78584
78599
  A({
78585
78600
  type: Boolean,
78586
78601
  useDefault: !0
78587
78602
  }),
78588
- fR("design:type", Boolean),
78589
- fR("design:paramtypes", [Boolean])
78590
- ], pR.prototype, "showAdjacent", null), dR([
78603
+ dR("design:type", Boolean),
78604
+ dR("design:paramtypes", [Boolean])
78605
+ ], fR.prototype, "showAdjacent", null), uR([
78591
78606
  A({
78592
78607
  type: Boolean,
78593
78608
  useDefault: !0
78594
78609
  }),
78595
- fR("design:type", Boolean),
78596
- fR("design:paramtypes", [Boolean])
78597
- ], pR.prototype, "showWeekNumbers", null), dR([
78598
- A({ type: _L }),
78599
- fR("design:type", Number),
78600
- fR("design:paramtypes", [Number])
78601
- ], pR.prototype, "firstDayOfWeek", null), dR([
78610
+ dR("design:type", Boolean),
78611
+ dR("design:paramtypes", [Boolean])
78612
+ ], fR.prototype, "showWeekNumbers", null), uR([
78613
+ A({ type: gL }),
78614
+ dR("design:type", Number),
78615
+ dR("design:paramtypes", [Number])
78616
+ ], fR.prototype, "firstDayOfWeek", null), uR([
78602
78617
  A({
78603
78618
  type: Boolean,
78604
78619
  useDefault: !0
78605
78620
  }),
78606
- fR("design:type", Boolean),
78607
- fR("design:paramtypes", [Boolean])
78608
- ], pR.prototype, "isTodayHighlighted", null), dR([
78621
+ dR("design:type", Boolean),
78622
+ dR("design:paramtypes", [Boolean])
78623
+ ], fR.prototype, "isTodayHighlighted", null), uR([
78609
78624
  A({
78610
78625
  type: Boolean,
78611
78626
  useDefault: !0
78612
78627
  }),
78613
- fR("design:type", Boolean),
78614
- fR("design:paramtypes", [Boolean])
78615
- ], pR.prototype, "isWeekendHighlighted", null), dR([
78628
+ dR("design:type", Boolean),
78629
+ dR("design:paramtypes", [Boolean])
78630
+ ], fR.prototype, "isWeekendHighlighted", null), uR([
78616
78631
  P({ type: Date }),
78617
- fR("design:type", Object),
78618
- fR("design:paramtypes", [Object])
78619
- ], pR.prototype, "rangePreviewDate", null), dR([
78632
+ dR("design:type", Object),
78633
+ dR("design:paramtypes", [Object])
78634
+ ], fR.prototype, "rangePreviewDate", null), uR([
78620
78635
  k({ eventName: "previewDateChange" }),
78621
- fR("design:type", Object),
78622
- fR("design:paramtypes", [])
78623
- ], pR.prototype, "previewDateChange", null), pR = dR([H({
78636
+ dR("design:type", Object),
78637
+ dR("design:paramtypes", [])
78638
+ ], fR.prototype, "previewDateChange", null), fR = uR([H({
78624
78639
  selector: "mosaik-calendar-days-view",
78625
- template: sR,
78640
+ template: oR,
78626
78641
  themes: {
78627
- joy: lR,
78628
- memphis: uR,
78629
- cosmopolitan: cR
78642
+ joy: cR,
78643
+ memphis: lR,
78644
+ cosmopolitan: sR
78630
78645
  },
78631
78646
  imports: [
78632
78647
  W,
78633
78648
  qS,
78634
78649
  eC,
78635
- KL
78650
+ GL
78636
78651
  ]
78637
- }), fR("design:paramtypes", [])], pR);
78652
+ }), dR("design:paramtypes", [])], fR);
78638
78653
  //#endregion
78639
78654
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/CalendarMonthsViewElementTemplate.js
78640
- function mR(e) {
78655
+ function pR(e) {
78641
78656
  let t = e.displayDate ?? /* @__PURE__ */ new Date();
78642
78657
  return V`
78643
78658
  <div part="heading"
78644
78659
  style="display: flex; flex: 1;">
78645
78660
  <mosaik-button-group .dir="${e.dir}"
78646
78661
  .appearance="${q.Plain}">
78647
- ${U(e.allowedViews.includes(gL.Year), () => V`
78662
+ ${U(e.allowedViews.includes(hL.Year), () => V`
78648
78663
  <mosaik-button part="month"
78649
78664
  .label="${e.displayDate?.toLocaleString(e.locale, { year: "numeric" }) ?? ""}"
78650
- @click="${() => e.setView(gL.Year)}"></mosaik-button>
78665
+ @click="${() => e.setView(hL.Year)}"></mosaik-button>
78651
78666
  `, () => V`
78652
78667
  <mosaik-button part="month"
78653
78668
  .label="${e.displayDate?.toLocaleString(e.locale, { year: "numeric" }) ?? ""}"
@@ -78674,7 +78689,7 @@ function mR(e) {
78674
78689
  }
78675
78690
  //#endregion
78676
78691
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarMonthsViewElement.Cosmopolitan.js
78677
- function hR() {
78692
+ function mR() {
78678
78693
  return B`
78679
78694
  :host {
78680
78695
  --calendar-months-view-font-family: unset;
@@ -78751,7 +78766,7 @@ function hR() {
78751
78766
  }
78752
78767
  //#endregion
78753
78768
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarMonthsViewElement.Joy.js
78754
- function gR() {
78769
+ function hR() {
78755
78770
  return B`
78756
78771
  :host {
78757
78772
  --calendar-months-view-font-family: unset;
@@ -78828,7 +78843,7 @@ function gR() {
78828
78843
  }
78829
78844
  //#endregion
78830
78845
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarMonthsViewElement.Memphis.js
78831
- function _R() {
78846
+ function gR() {
78832
78847
  return B`
78833
78848
  :host {
78834
78849
  --calendar-months-view-font-family: unset;
@@ -78905,14 +78920,14 @@ function _R() {
78905
78920
  }
78906
78921
  //#endregion
78907
78922
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/CalendarMonthsViewElement.js
78908
- var vR = function(e, t, n, r) {
78923
+ var _R = function(e, t, n, r) {
78909
78924
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
78910
78925
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
78911
78926
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
78912
78927
  return i > 3 && a && Object.defineProperty(t, n, a), a;
78913
- }, yR = function(e, t) {
78928
+ }, vR = function(e, t) {
78914
78929
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
78915
- }, bR = class extends F(J(z(oR))) {
78930
+ }, yR = class extends F(J(z(aR))) {
78916
78931
  _format;
78917
78932
  constructor() {
78918
78933
  super(), this._format = "short";
@@ -78946,31 +78961,31 @@ var vR = function(e, t, n, r) {
78946
78961
  isToday: iI(e, /* @__PURE__ */ new Date()),
78947
78962
  isWeekend: e.getDay() === 0 || e.getDay() === 6
78948
78963
  }))
78949
- }), this.allowedViews.includes(gL.Day) && this.setView(gL.Day);
78964
+ }), this.allowedViews.includes(hL.Day) && this.setView(hL.Day);
78950
78965
  }
78951
78966
  setView(e) {
78952
78967
  this.onViewChanged({ view: e });
78953
78968
  }
78954
78969
  };
78955
- vR([
78970
+ _R([
78956
78971
  A({ type: String }),
78957
- yR("design:type", Object),
78958
- yR("design:paramtypes", [Object])
78959
- ], bR.prototype, "format", null), bR = vR([H({
78972
+ vR("design:type", Object),
78973
+ vR("design:paramtypes", [Object])
78974
+ ], yR.prototype, "format", null), yR = _R([H({
78960
78975
  selector: "mosaik-calendar-months-view",
78961
- template: mR,
78976
+ template: pR,
78962
78977
  themes: {
78963
- joy: gR,
78964
- memphis: _R,
78965
- cosmopolitan: hR
78978
+ joy: hR,
78979
+ memphis: gR,
78980
+ cosmopolitan: mR
78966
78981
  },
78967
78982
  imports: [
78968
78983
  W,
78969
78984
  qS,
78970
- KL
78985
+ GL
78971
78986
  ]
78972
- }), yR("design:paramtypes", [])], bR);
78973
- var xR = hb(class extends bb {
78987
+ }), vR("design:paramtypes", [])], yR);
78988
+ var bR = hb(class extends bb {
78974
78989
  constructor(e) {
78975
78990
  if (super(e), e.type !== mb.PROPERTY) throw Error("The interpolate directive can only be used in property bindings.");
78976
78991
  }
@@ -78992,20 +79007,20 @@ var xR = hb(class extends bb {
78992
79007
  });
78993
79008
  //#endregion
78994
79009
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/CalendarYearsViewElementTemplate.js
78995
- function SR(e) {
79010
+ function xR(e) {
78996
79011
  let t = e.displayDate ?? /* @__PURE__ */ new Date(), n = (e.displayDate?.getFullYear() ?? 0) - 12 / 2, r = (e.displayDate?.getFullYear() ?? 0) + 12 / 2;
78997
79012
  return V`
78998
79013
  <div part="heading"
78999
79014
  style="display: flex; flex: 1;">
79000
79015
  <mosaik-button-group .dir="${e.dir}"
79001
79016
  .appearance="${q.Plain}">
79002
- ${U(e.allowedViews.includes(gL.Month), () => V`
79017
+ ${U(e.allowedViews.includes(hL.Month), () => V`
79003
79018
  <mosaik-button part="year"
79004
- .label="${xR("{0} - {1}", n, r)}"
79005
- @click="${() => e.setView(gL.Month)}"></mosaik-button>
79019
+ .label="${bR("{0} - {1}", n, r)}"
79020
+ @click="${() => e.setView(hL.Month)}"></mosaik-button>
79006
79021
  `, () => V`
79007
79022
  <mosaik-button part="year"
79008
- .label="${xR("{0} - {1}", n, r)}"
79023
+ .label="${bR("{0} - {1}", n, r)}"
79009
79024
  ?disabled="${!0}"></mosaik-button>
79010
79025
  `)}
79011
79026
  </mosaik-button-group>
@@ -79028,7 +79043,7 @@ function SR(e) {
79028
79043
  }
79029
79044
  //#endregion
79030
79045
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarYearsViewElement.Cosmopolitan.js
79031
- function CR() {
79046
+ function SR() {
79032
79047
  return B`
79033
79048
  :host {
79034
79049
  --calendar-years-view-font-family: unset;
@@ -79117,7 +79132,7 @@ function CR() {
79117
79132
  }
79118
79133
  //#endregion
79119
79134
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarYearsViewElement.Joy.js
79120
- function wR() {
79135
+ function CR() {
79121
79136
  return B`
79122
79137
  :host {
79123
79138
  --calendar-years-view-font-family: unset;
@@ -79206,7 +79221,7 @@ function wR() {
79206
79221
  }
79207
79222
  //#endregion
79208
79223
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/Themes/CalendarYearsViewElement.Memphis.js
79209
- function TR() {
79224
+ function wR() {
79210
79225
  return B`
79211
79226
  :host {
79212
79227
  --calendar-years-view-font-family: unset;
@@ -79295,14 +79310,14 @@ function TR() {
79295
79310
  }
79296
79311
  //#endregion
79297
79312
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/Views/CalendarYearsViewElement.js
79298
- var ER = function(e, t, n, r) {
79313
+ var TR = function(e, t, n, r) {
79299
79314
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
79300
79315
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
79301
79316
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
79302
79317
  return i > 3 && a && Object.defineProperty(t, n, a), a;
79303
- }, DR = function(e, t) {
79318
+ }, ER = function(e, t) {
79304
79319
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
79305
- }, OR = class extends F(J(z(oR))) {
79320
+ }, DR = class extends F(J(z(aR))) {
79306
79321
  constructor() {
79307
79322
  super();
79308
79323
  }
@@ -79329,36 +79344,36 @@ var ER = function(e, t, n, r) {
79329
79344
  isToday: iI(e, /* @__PURE__ */ new Date()),
79330
79345
  isWeekend: e.getDay() === 0 || e.getDay() === 6
79331
79346
  }))
79332
- }), this.allowedViews.includes(gL.Month) ? this.setView(gL.Month) : this.allowedViews.includes(gL.Day) && this.setView(gL.Day);
79347
+ }), this.allowedViews.includes(hL.Month) ? this.setView(hL.Month) : this.allowedViews.includes(hL.Day) && this.setView(hL.Day);
79333
79348
  }
79334
79349
  setView(e) {
79335
79350
  this.onViewChanged({ view: e });
79336
79351
  }
79337
79352
  };
79338
- OR = ER([H({
79353
+ DR = TR([H({
79339
79354
  selector: "mosaik-calendar-years-view",
79340
- template: SR,
79355
+ template: xR,
79341
79356
  themes: {
79342
- joy: wR,
79343
- memphis: TR,
79344
- cosmopolitan: CR
79357
+ joy: CR,
79358
+ memphis: wR,
79359
+ cosmopolitan: SR
79345
79360
  },
79346
79361
  imports: [
79347
79362
  W,
79348
79363
  qS,
79349
- KL
79364
+ GL
79350
79365
  ]
79351
- }), DR("design:paramtypes", [])], OR);
79366
+ }), ER("design:paramtypes", [])], DR);
79352
79367
  //#endregion
79353
79368
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Calendar/CalendarElement.js
79354
- var kR = function(e, t, n, r) {
79369
+ var OR = function(e, t, n, r) {
79355
79370
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
79356
79371
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
79357
79372
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
79358
79373
  return i > 3 && a && Object.defineProperty(t, n, a), a;
79359
- }, AR = function(e, t) {
79374
+ }, kR = function(e, t) {
79360
79375
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
79361
- }, jR = class extends F(mL(J(R(KT(ES(Ax(z(yx(Y(j)))))))))) {
79376
+ }, AR = class extends F(pL(J(R(KT(ES(Ax(z(yx(Y(j)))))))))) {
79362
79377
  _dateChanged;
79363
79378
  _intl;
79364
79379
  _displayDate;
@@ -79382,10 +79397,10 @@ var kR = function(e, t, n, r) {
79382
79397
  _allowedViews;
79383
79398
  _showNavigation;
79384
79399
  constructor() {
79385
- super(), this._intl = new TI(this, { factory: () => new eR(this.locale) }), this._displayDate = null, this._displayDateStart = null, this._displayDateEnd = null, this._value = null, this._values = [], this._view = gL.Day, this._selectionMode = vL.Single, this._blackoutDates = [], this._specialDates = [], this._minDate = null, this._maxDate = null, this._firstDayOfWeek = _L.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (e) => [], this._showAdjacent = !1, this._sheets = 1, this._allowedViews = [
79386
- gL.Day,
79387
- gL.Month,
79388
- gL.Year
79400
+ super(), this._intl = new TI(this, { factory: () => new $L(this.locale) }), this._displayDate = null, this._displayDateStart = null, this._displayDateEnd = null, this._value = null, this._values = [], this._view = hL.Day, this._selectionMode = _L.Single, this._blackoutDates = [], this._specialDates = [], this._minDate = null, this._maxDate = null, this._firstDayOfWeek = gL.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (e) => [], this._showAdjacent = !1, this._sheets = 1, this._allowedViews = [
79401
+ hL.Day,
79402
+ hL.Month,
79403
+ hL.Year
79389
79404
  ], this._showNavigation = !0, this._dateChanged = new E(this, "dateChanged");
79390
79405
  }
79391
79406
  static get is() {
@@ -79529,10 +79544,10 @@ var kR = function(e, t, n, r) {
79529
79544
  navigatePrevious() {
79530
79545
  if (this.displayDate) {
79531
79546
  let e = new Date(this.displayDate), t = 1;
79532
- if (this.sheets > 1 && (t = this.sheets), this.view === gL.Year) {
79547
+ if (this.sheets > 1 && (t = this.sheets), this.view === hL.Year) {
79533
79548
  let n = e.getFullYear() - 13 * t;
79534
79549
  e.setFullYear(n);
79535
- } else if (this.view === gL.Month) {
79550
+ } else if (this.view === hL.Month) {
79536
79551
  let n = e.getFullYear() - t;
79537
79552
  e.setFullYear(n);
79538
79553
  } else {
@@ -79545,10 +79560,10 @@ var kR = function(e, t, n, r) {
79545
79560
  navigateNext() {
79546
79561
  if (this.displayDate) {
79547
79562
  let e = new Date(this.displayDate), t = 1;
79548
- if (this.sheets > 1 && (t = this.sheets), this.view === gL.Year) {
79563
+ if (this.sheets > 1 && (t = this.sheets), this.view === hL.Year) {
79549
79564
  let n = e.getFullYear() + 13 * t;
79550
79565
  e.setFullYear(n);
79551
- } else if (this.view === gL.Month) {
79566
+ } else if (this.view === hL.Month) {
79552
79567
  let n = e.getFullYear() + t;
79553
79568
  e.setFullYear(n);
79554
79569
  } else {
@@ -79559,7 +79574,7 @@ var kR = function(e, t, n, r) {
79559
79574
  }
79560
79575
  }
79561
79576
  navigateToday() {
79562
- this.view = gL.Day, this.displayDate = cI(/* @__PURE__ */ new Date());
79577
+ this.view = hL.Day, this.displayDate = cI(/* @__PURE__ */ new Date());
79563
79578
  }
79564
79579
  onLocalePropertyChanged(e, t) {
79565
79580
  this._intl.setLocale(t);
@@ -79577,7 +79592,7 @@ var kR = function(e, t, n, r) {
79577
79592
  this._dateChanged.emit(e);
79578
79593
  }
79579
79594
  };
79580
- kR([
79595
+ OR([
79581
79596
  A({
79582
79597
  type: Date,
79583
79598
  converter: {
@@ -79585,9 +79600,9 @@ kR([
79585
79600
  toAttribute: (e) => e ? e.toISOString() : ""
79586
79601
  }
79587
79602
  }),
79588
- AR("design:type", Object),
79589
- AR("design:paramtypes", [Object])
79590
- ], jR.prototype, "displayDate", null), kR([
79603
+ kR("design:type", Object),
79604
+ kR("design:paramtypes", [Object])
79605
+ ], AR.prototype, "displayDate", null), OR([
79591
79606
  A({
79592
79607
  type: Date,
79593
79608
  converter: {
@@ -79595,9 +79610,9 @@ kR([
79595
79610
  toAttribute: (e) => e ? e.toISOString() : ""
79596
79611
  }
79597
79612
  }),
79598
- AR("design:type", Object),
79599
- AR("design:paramtypes", [Object])
79600
- ], jR.prototype, "displayDateStart", null), kR([
79613
+ kR("design:type", Object),
79614
+ kR("design:paramtypes", [Object])
79615
+ ], AR.prototype, "displayDateStart", null), OR([
79601
79616
  A({
79602
79617
  type: Date,
79603
79618
  converter: {
@@ -79605,9 +79620,9 @@ kR([
79605
79620
  toAttribute: (e) => e ? e.toISOString() : ""
79606
79621
  }
79607
79622
  }),
79608
- AR("design:type", Object),
79609
- AR("design:paramtypes", [Object])
79610
- ], jR.prototype, "displayDateEnd", null), kR([
79623
+ kR("design:type", Object),
79624
+ kR("design:paramtypes", [Object])
79625
+ ], AR.prototype, "displayDateEnd", null), OR([
79611
79626
  A({
79612
79627
  type: Date,
79613
79628
  converter: {
@@ -79615,9 +79630,9 @@ kR([
79615
79630
  toAttribute: (e) => e?.toISOString()
79616
79631
  }
79617
79632
  }),
79618
- AR("design:type", Object),
79619
- AR("design:paramtypes", [Object])
79620
- ], jR.prototype, "value", null), kR([
79633
+ kR("design:type", Object),
79634
+ kR("design:paramtypes", [Object])
79635
+ ], AR.prototype, "value", null), OR([
79621
79636
  A({
79622
79637
  type: Array,
79623
79638
  converter: {
@@ -79625,25 +79640,25 @@ kR([
79625
79640
  toAttribute: (e) => e.map((e) => e.toISOString()).join(" ")
79626
79641
  }
79627
79642
  }),
79628
- AR("design:type", Array),
79629
- AR("design:paramtypes", [Array])
79630
- ], jR.prototype, "values", null), kR([
79631
- A({ type: gL }),
79632
- AR("design:type", String),
79633
- AR("design:paramtypes", [String])
79634
- ], jR.prototype, "view", null), kR([
79635
- A({ type: yL }),
79636
- AR("design:type", String),
79637
- AR("design:paramtypes", [String])
79638
- ], jR.prototype, "selectionMode", null), kR([
79643
+ kR("design:type", Array),
79644
+ kR("design:paramtypes", [Array])
79645
+ ], AR.prototype, "values", null), OR([
79646
+ A({ type: hL }),
79647
+ kR("design:type", String),
79648
+ kR("design:paramtypes", [String])
79649
+ ], AR.prototype, "view", null), OR([
79650
+ A({ type: vL }),
79651
+ kR("design:type", String),
79652
+ kR("design:paramtypes", [String])
79653
+ ], AR.prototype, "selectionMode", null), OR([
79639
79654
  A({ type: Array }),
79640
- AR("design:type", Array),
79641
- AR("design:paramtypes", [Array])
79642
- ], jR.prototype, "blackoutDates", null), kR([
79655
+ kR("design:type", Array),
79656
+ kR("design:paramtypes", [Array])
79657
+ ], AR.prototype, "blackoutDates", null), OR([
79643
79658
  A({ type: Array }),
79644
- AR("design:type", Array),
79645
- AR("design:paramtypes", [Array])
79646
- ], jR.prototype, "specialDates", null), kR([
79659
+ kR("design:type", Array),
79660
+ kR("design:paramtypes", [Array])
79661
+ ], AR.prototype, "specialDates", null), OR([
79647
79662
  A({
79648
79663
  type: Date,
79649
79664
  converter: {
@@ -79651,9 +79666,9 @@ kR([
79651
79666
  toAttribute: (e) => e ? e.toISOString() : ""
79652
79667
  }
79653
79668
  }),
79654
- AR("design:type", Object),
79655
- AR("design:paramtypes", [Object])
79656
- ], jR.prototype, "minDate", null), kR([
79669
+ kR("design:type", Object),
79670
+ kR("design:paramtypes", [Object])
79671
+ ], AR.prototype, "minDate", null), OR([
79657
79672
  A({
79658
79673
  type: Date,
79659
79674
  converter: {
@@ -79661,114 +79676,114 @@ kR([
79661
79676
  toAttribute: (e) => e ? e.toISOString() : ""
79662
79677
  }
79663
79678
  }),
79664
- AR("design:type", Object),
79665
- AR("design:paramtypes", [Object])
79666
- ], jR.prototype, "maxDate", null), kR([
79667
- A({ type: _L }),
79668
- AR("design:type", Number),
79669
- AR("design:paramtypes", [Number])
79670
- ], jR.prototype, "firstDayOfWeek", null), kR([
79679
+ kR("design:type", Object),
79680
+ kR("design:paramtypes", [Object])
79681
+ ], AR.prototype, "maxDate", null), OR([
79682
+ A({ type: gL }),
79683
+ kR("design:type", Number),
79684
+ kR("design:paramtypes", [Number])
79685
+ ], AR.prototype, "firstDayOfWeek", null), OR([
79671
79686
  A({
79672
79687
  type: Boolean,
79673
79688
  useDefault: !0
79674
79689
  }),
79675
- AR("design:type", Boolean),
79676
- AR("design:paramtypes", [Boolean])
79677
- ], jR.prototype, "isTodayHighlighted", null), kR([
79690
+ kR("design:type", Boolean),
79691
+ kR("design:paramtypes", [Boolean])
79692
+ ], AR.prototype, "isTodayHighlighted", null), OR([
79678
79693
  A({
79679
79694
  type: Boolean,
79680
79695
  useDefault: !0
79681
79696
  }),
79682
- AR("design:type", Boolean),
79683
- AR("design:paramtypes", [Boolean])
79684
- ], jR.prototype, "isWeekendHighlighted", null), kR([
79697
+ kR("design:type", Boolean),
79698
+ kR("design:paramtypes", [Boolean])
79699
+ ], AR.prototype, "isWeekendHighlighted", null), OR([
79685
79700
  A({
79686
79701
  type: Boolean,
79687
79702
  useDefault: !0
79688
79703
  }),
79689
- AR("design:type", Boolean),
79690
- AR("design:paramtypes", [Boolean])
79691
- ], jR.prototype, "showWeekNumbers", null), kR([
79704
+ kR("design:type", Boolean),
79705
+ kR("design:paramtypes", [Boolean])
79706
+ ], AR.prototype, "showWeekNumbers", null), OR([
79692
79707
  P({ type: Function }),
79693
- AR("design:type", Function),
79694
- AR("design:paramtypes", [Function])
79695
- ], jR.prototype, "markerHandler", null), kR([
79708
+ kR("design:type", Function),
79709
+ kR("design:paramtypes", [Function])
79710
+ ], AR.prototype, "markerHandler", null), OR([
79696
79711
  A({
79697
79712
  type: Boolean,
79698
79713
  useDefault: !0
79699
79714
  }),
79700
- AR("design:type", Boolean),
79701
- AR("design:paramtypes", [Boolean])
79702
- ], jR.prototype, "showAdjacent", null), kR([
79715
+ kR("design:type", Boolean),
79716
+ kR("design:paramtypes", [Boolean])
79717
+ ], AR.prototype, "showAdjacent", null), OR([
79703
79718
  A({
79704
79719
  type: Number,
79705
79720
  useDefault: !0
79706
79721
  }),
79707
- AR("design:type", Number),
79708
- AR("design:paramtypes", [Number])
79709
- ], jR.prototype, "sheets", null), kR([
79722
+ kR("design:type", Number),
79723
+ kR("design:paramtypes", [Number])
79724
+ ], AR.prototype, "sheets", null), OR([
79710
79725
  P({ type: Array }),
79711
- AR("design:type", Object),
79712
- AR("design:paramtypes", [Object])
79713
- ], jR.prototype, "allowedViews", null), kR([
79726
+ kR("design:type", Object),
79727
+ kR("design:paramtypes", [Object])
79728
+ ], AR.prototype, "allowedViews", null), OR([
79714
79729
  A({
79715
79730
  type: Boolean,
79716
79731
  useDefault: !0
79717
79732
  }),
79718
- AR("design:type", Boolean),
79719
- AR("design:paramtypes", [Boolean])
79720
- ], jR.prototype, "showNavigation", null), kR([
79733
+ kR("design:type", Boolean),
79734
+ kR("design:paramtypes", [Boolean])
79735
+ ], AR.prototype, "showNavigation", null), OR([
79721
79736
  P({ type: Object }),
79722
- AR("design:type", eR),
79723
- AR("design:paramtypes", [eR])
79724
- ], jR.prototype, "intl", null), kR([
79737
+ kR("design:type", $L),
79738
+ kR("design:paramtypes", [$L])
79739
+ ], AR.prototype, "intl", null), OR([
79725
79740
  k({ eventName: "dateChanged" }),
79726
- AR("design:type", Object),
79727
- AR("design:paramtypes", [])
79728
- ], jR.prototype, "dateChanged", null), kR([
79741
+ kR("design:type", Object),
79742
+ kR("design:paramtypes", [])
79743
+ ], AR.prototype, "dateChanged", null), OR([
79729
79744
  L("locale"),
79730
- AR("design:type", Function),
79731
- AR("design:paramtypes", [String, String]),
79732
- AR("design:returntype", void 0)
79733
- ], jR.prototype, "onLocalePropertyChanged", null), kR([
79745
+ kR("design:type", Function),
79746
+ kR("design:paramtypes", [String, String]),
79747
+ kR("design:returntype", void 0)
79748
+ ], AR.prototype, "onLocalePropertyChanged", null), OR([
79734
79749
  L("value"),
79735
- AR("design:type", Function),
79736
- AR("design:paramtypes", [Date, Date]),
79737
- AR("design:returntype", void 0)
79738
- ], jR.prototype, "onValuePropertyChanged", null), jR = kR([H({
79750
+ kR("design:type", Function),
79751
+ kR("design:paramtypes", [Date, Date]),
79752
+ kR("design:returntype", void 0)
79753
+ ], AR.prototype, "onValuePropertyChanged", null), AR = OR([H({
79739
79754
  selector: "mosaik-calendar",
79740
- template: SL,
79755
+ template: xL,
79741
79756
  themes: {
79742
- joy: nR,
79743
- memphis: rR,
79744
- cosmopolitan: tR
79757
+ joy: tR,
79758
+ memphis: nR,
79759
+ cosmopolitan: eR
79745
79760
  },
79746
79761
  imports: [
79747
- kL,
79748
- $L,
79749
- KL,
79750
- OR,
79751
- bR,
79752
- pR,
79762
+ OL,
79763
+ QL,
79764
+ GL,
79765
+ DR,
79766
+ yR,
79767
+ fR,
79753
79768
  qS,
79754
79769
  eC,
79755
79770
  sS,
79756
79771
  W
79757
79772
  ]
79758
- }), AR("design:paramtypes", [])], jR);
79773
+ }), kR("design:paramtypes", [])], AR);
79759
79774
  //#endregion
79760
79775
  //#region ../mosaik-elements-foundation/dist/Controls/Types/LabelPosition.js
79761
- var MR = {
79776
+ var jR = {
79762
79777
  Before: "before",
79763
79778
  After: "after"
79764
- }, NR = function(e, t, n, r) {
79779
+ }, MR = function(e, t, n, r) {
79765
79780
  var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
79766
79781
  if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
79767
79782
  else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
79768
79783
  return i > 3 && a && Object.defineProperty(t, n, a), a;
79769
- }, PR = function(e, t) {
79784
+ }, NR = function(e, t) {
79770
79785
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
79771
- }, FR = class extends IS(j) {
79786
+ }, PR = class extends IS(j) {
79772
79787
  _checked;
79773
79788
  _unchecked;
79774
79789
  _indeterminate;
@@ -79836,33 +79851,40 @@ var MR = {
79836
79851
  return t;
79837
79852
  }
79838
79853
  };
79839
- NR([
79854
+ MR([
79840
79855
  A({
79841
79856
  type: Boolean,
79842
79857
  useDefault: !0
79843
79858
  }),
79844
- PR("design:type", Object),
79845
- PR("design:paramtypes", [Object])
79846
- ], FR.prototype, "isChecked", null), NR([
79859
+ NR("design:type", Object),
79860
+ NR("design:paramtypes", [Object])
79861
+ ], PR.prototype, "isChecked", null), MR([
79847
79862
  A({
79848
79863
  type: Boolean,
79849
79864
  useDefault: !0
79850
79865
  }),
79851
- PR("design:type", Boolean),
79852
- PR("design:paramtypes", [Boolean])
79853
- ], FR.prototype, "isThreeState", null), NR([
79866
+ NR("design:type", Boolean),
79867
+ NR("design:paramtypes", [Boolean])
79868
+ ], PR.prototype, "isThreeState", null), MR([
79854
79869
  k({ eventName: "checked" }),
79855
- PR("design:type", Object),
79856
- PR("design:paramtypes", [])
79857
- ], FR.prototype, "checked", null), NR([
79870
+ NR("design:type", Object),
79871
+ NR("design:paramtypes", [])
79872
+ ], PR.prototype, "checked", null), MR([
79858
79873
  k({ eventName: "unchecked" }),
79859
- PR("design:type", Object),
79860
- PR("design:paramtypes", [])
79861
- ], FR.prototype, "unchecked", null), NR([
79874
+ NR("design:type", Object),
79875
+ NR("design:paramtypes", [])
79876
+ ], PR.prototype, "unchecked", null), MR([
79862
79877
  k({ eventName: "indeterminate" }),
79863
- PR("design:type", Object),
79864
- PR("design:paramtypes", [])
79865
- ], FR.prototype, "indeterminate", null);
79878
+ NR("design:type", Object),
79879
+ NR("design:paramtypes", [])
79880
+ ], PR.prototype, "indeterminate", null);
79881
+ //#endregion
79882
+ //#region ../mosaik-elements-foundation/dist/Controls/Types/CheckType.js
79883
+ var FR = {
79884
+ Bullet: "bullet",
79885
+ Hook: "hook",
79886
+ Switch: "switch"
79887
+ };
79866
79888
  //#endregion
79867
79889
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Checkmark/CheckmarkElementTemplate.js
79868
79890
  function IR(e) {
@@ -81593,7 +81615,7 @@ BR([
81593
81615
  VR("design:type", Object),
81594
81616
  VR("design:paramtypes", [Object])
81595
81617
  ], HR.prototype, "checked", null), BR([
81596
- A({ type: JI }),
81618
+ A({ type: FR }),
81597
81619
  VR("design:type", Object),
81598
81620
  VR("design:paramtypes", [Object])
81599
81621
  ], HR.prototype, "type", null), BR([
@@ -81639,7 +81661,7 @@ function UR(e) {
81639
81661
  <mosaik-checkmark part="checkmark"
81640
81662
  .variant="${e.variant}"
81641
81663
  .appearance="${e.appearance}"
81642
- .type="${JI.Hook}"
81664
+ .type="${FR.Hook}"
81643
81665
  ?checked="${e.isChecked}"
81644
81666
  ?is-three-state="${e.isThreeState}"
81645
81667
  ?disabled="${e.disabled}"></mosaik-checkmark>
@@ -82091,14 +82113,14 @@ var JR = function(e, t, n, r) {
82091
82113
  return i > 3 && a && Object.defineProperty(t, n, a), a;
82092
82114
  }, YR = function(e, t) {
82093
82115
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
82094
- }, XR = class extends F(KT(ES(z(J(R(nb(Rb(FR)))))))) {
82116
+ }, XR = class extends F(KT(ES(z(J(R(nb(Rb(PR)))))))) {
82095
82117
  _inheritance = zx(this, { context: WR });
82096
82118
  _inputElement;
82097
82119
  _labelPosition;
82098
82120
  _required;
82099
82121
  _name;
82100
82122
  constructor() {
82101
- super(), this._labelPosition = MR.After, this._required = !1, this._name = "";
82123
+ super(), this._labelPosition = jR.After, this._required = !1, this._name = "";
82102
82124
  }
82103
82125
  static get is() {
82104
82126
  return "mosaik-checkbox";
@@ -82170,7 +82192,7 @@ var JR = function(e, t, n, r) {
82170
82192
  }
82171
82193
  };
82172
82194
  JR([
82173
- A({ type: MR }),
82195
+ A({ type: jR }),
82174
82196
  YR("design:type", String),
82175
82197
  YR("design:paramtypes", [String])
82176
82198
  ], XR.prototype, "labelPosition", null), JR([
@@ -82614,7 +82636,7 @@ function az(e) {
82614
82636
  .dir="${e.dir}"
82615
82637
  .appearance="${q.Plain}"
82616
82638
  .variant="${e.variant}"
82617
- .type="${JI.Hook}"
82639
+ .type="${FR.Hook}"
82618
82640
  ?checked="${e.isChecked}"
82619
82641
  ?disabled="${e.disabled}"></mosaik-checkmark>
82620
82642
  </slot>
@@ -85129,7 +85151,7 @@ function xz(e) {
85129
85151
  <slot name="checkmark">
85130
85152
  <mosaik-checkmark .variant="${e.variant}"
85131
85153
  .appearance="${e.appearance}"
85132
- .type="${JI.Hook}"
85154
+ .type="${FR.Hook}"
85133
85155
  ?checked="${e.isChecked}"
85134
85156
  ?disabled="${e.disabled}"></mosaik-checkmark>
85135
85157
  </slot>
@@ -85606,7 +85628,7 @@ var Ez = function(e, t, n, r) {
85606
85628
  return i > 3 && a && Object.defineProperty(t, n, a), a;
85607
85629
  }, Dz = function(e, t) {
85608
85630
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
85609
- }, Oz = class extends F(zS(KT(R(J(z(nb(ES(Rb(FR))))))))) {
85631
+ }, Oz = class extends F(zS(KT(R(J(z(nb(ES(Rb(PR))))))))) {
85610
85632
  _inheritance = zx(this, { context: Sz });
85611
85633
  _inputElement;
85612
85634
  _name;
@@ -98065,7 +98087,7 @@ var oH = function(e, t, n, r) {
98065
98087
  return i > 3 && a && Object.defineProperty(t, n, a), a;
98066
98088
  }, sH = function(e, t) {
98067
98089
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
98068
- }, cH, lH = cH = class extends F(Y(SA(mL(R(KT(ES(z(J(lC(nb(PA))))))))))) {
98090
+ }, cH, lH = cH = class extends F(Y(SA(pL(R(KT(ES(z(J(lC(nb(PA))))))))))) {
98069
98091
  _inputElement;
98070
98092
  _clickOutsideController;
98071
98093
  _keyboardController;
@@ -98097,10 +98119,10 @@ var oH = function(e, t, n, r) {
98097
98119
  _invalidInput;
98098
98120
  _textAlign;
98099
98121
  constructor() {
98100
- super(), 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 = [], this._view = gL.Day, this._selectionMode = vL.Single, this._blackoutDates = [], this._specialDates = [], this._minDate = null, this._maxDate = null, this._firstDayOfWeek = _L.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (e) => [], this._showAdjacent = !1, this._allowedViews = [
98101
- gL.Day,
98102
- gL.Month,
98103
- gL.Year
98122
+ super(), 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 = [], this._view = hL.Day, this._selectionMode = _L.Single, this._blackoutDates = [], this._specialDates = [], this._minDate = null, this._maxDate = null, this._firstDayOfWeek = gL.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (e) => [], this._showAdjacent = !1, this._allowedViews = [
98123
+ hL.Day,
98124
+ hL.Month,
98125
+ hL.Year
98104
98126
  ], this._showNavigation = !0, this._format = "yyyy-MM-dd", this._invalidInput = !1, this._textAlign = Bb.Left, this._clickOutsideController = new uC(this, {
98105
98127
  skipInitial: !0,
98106
98128
  ignored: () => {
@@ -98441,7 +98463,7 @@ oH([
98441
98463
  sH("design:type", Array),
98442
98464
  sH("design:paramtypes", [Array])
98443
98465
  ], lH.prototype, "values", null), oH([
98444
- A({ type: gL }),
98466
+ A({ type: hL }),
98445
98467
  sH("design:type", String),
98446
98468
  sH("design:paramtypes", [String])
98447
98469
  ], lH.prototype, "view", null), oH([
@@ -98456,7 +98478,7 @@ oH([
98456
98478
  sH("design:type", Boolean),
98457
98479
  sH("design:paramtypes", [Boolean])
98458
98480
  ], lH.prototype, "showNavigation", null), oH([
98459
- A({ type: yL }),
98481
+ A({ type: vL }),
98460
98482
  sH("design:type", String),
98461
98483
  sH("design:paramtypes", [String])
98462
98484
  ], lH.prototype, "selectionMode", null), oH([
@@ -98488,7 +98510,7 @@ oH([
98488
98510
  sH("design:type", Object),
98489
98511
  sH("design:paramtypes", [Object])
98490
98512
  ], lH.prototype, "maxDate", null), oH([
98491
- A({ type: _L }),
98513
+ A({ type: gL }),
98492
98514
  sH("design:type", Number),
98493
98515
  sH("design:paramtypes", [Number])
98494
98516
  ], lH.prototype, "firstDayOfWeek", null), oH([
@@ -98581,7 +98603,7 @@ oH([
98581
98603
  imports: [
98582
98604
  _S,
98583
98605
  tH,
98584
- jR,
98606
+ AR,
98585
98607
  bS,
98586
98608
  zw,
98587
98609
  qS,
@@ -99290,7 +99312,7 @@ function yH(e) {
99290
99312
  .markerHandler="${e.markerHandler}"
99291
99313
  .maxDate="${EM(e.maxDate)}"
99292
99314
  .minDate="${EM(e.minDate)}"
99293
- .selectionMode="${vL.Single}"
99315
+ .selectionMode="${_L.Single}"
99294
99316
  .showAdjacent="${e.showAdjacent}"
99295
99317
  .showWeekNumbers="${e.showWeekNumbers}"
99296
99318
  .specialDates="${e.specialDates}"
@@ -100344,7 +100366,7 @@ var CH = function(e, t, n, r) {
100344
100366
  return i > 3 && a && Object.defineProperty(t, n, a), a;
100345
100367
  }, wH = function(e, t) {
100346
100368
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
100347
- }, TH, EH = TH = class extends F(Y(SA(mL(R(KT(ES(z(J(lC(nb(PA))))))))))) {
100369
+ }, TH, EH = TH = class extends F(Y(SA(pL(R(KT(ES(z(J(lC(nb(PA))))))))))) {
100348
100370
  _inputElement;
100349
100371
  _clickOutsideController;
100350
100372
  _keyboardController;
@@ -100377,10 +100399,10 @@ var CH = function(e, t, n, r) {
100377
100399
  _selectedHour;
100378
100400
  _selectedMinute;
100379
100401
  constructor() {
100380
- super(), 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 = [], this._view = gL.Day, this._blackoutDates = [], this._specialDates = [], this._minDate = null, this._maxDate = null, this._firstDayOfWeek = _L.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (e) => [], this._showAdjacent = !1, this._allowedViews = [
100381
- gL.Day,
100382
- gL.Month,
100383
- gL.Year
100402
+ super(), 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 = [], this._view = hL.Day, this._blackoutDates = [], this._specialDates = [], this._minDate = null, this._maxDate = null, this._firstDayOfWeek = gL.Sunday, this._isTodayHighlighted = !1, this._isWeekendHighlighted = !1, this._showWeekNumbers = !1, this._markerHandler = (e) => [], this._showAdjacent = !1, this._allowedViews = [
100403
+ hL.Day,
100404
+ hL.Month,
100405
+ hL.Year
100384
100406
  ], this._showNavigation = !0, this._format = "yyyy-MM-dd HH:mm:ss", this._invalidInput = !1, this._textAlign = Bb.Left, this._selectedHour = (/* @__PURE__ */ new Date()).getHours(), this._selectedMinute = (/* @__PURE__ */ new Date()).getMinutes(), this._clickOutsideController = new uC(this, {
100385
100407
  skipInitial: !0,
100386
100408
  ignored: () => {
@@ -100653,12 +100675,12 @@ var CH = function(e, t, n, r) {
100653
100675
  }
100654
100676
  onDateChanged(e, t) {
100655
100677
  let n = t?.view ?? this._view;
100656
- if (n === gL.Year) {
100657
- this.view = gL.Month;
100678
+ if (n === hL.Year) {
100679
+ this.view = hL.Month;
100658
100680
  return;
100659
100681
  }
100660
- if (n === gL.Month) {
100661
- this.view = gL.Day;
100682
+ if (n === hL.Month) {
100683
+ this.view = hL.Day;
100662
100684
  return;
100663
100685
  }
100664
100686
  let r = e.value?.date ?? null;
@@ -100780,7 +100802,7 @@ CH([
100780
100802
  wH("design:type", Array),
100781
100803
  wH("design:paramtypes", [Array])
100782
100804
  ], EH.prototype, "values", null), CH([
100783
- A({ type: gL }),
100805
+ A({ type: hL }),
100784
100806
  wH("design:type", String),
100785
100807
  wH("design:paramtypes", [String])
100786
100808
  ], EH.prototype, "view", null), CH([
@@ -100823,7 +100845,7 @@ CH([
100823
100845
  wH("design:type", Object),
100824
100846
  wH("design:paramtypes", [Object])
100825
100847
  ], EH.prototype, "maxDate", null), CH([
100826
- A({ type: _L }),
100848
+ A({ type: gL }),
100827
100849
  wH("design:type", Number),
100828
100850
  wH("design:paramtypes", [Number])
100829
100851
  ], EH.prototype, "firstDayOfWeek", null), CH([
@@ -100916,7 +100938,7 @@ CH([
100916
100938
  imports: [
100917
100939
  _S,
100918
100940
  tH,
100919
- jR,
100941
+ AR,
100920
100942
  bS,
100921
100943
  zw,
100922
100944
  tT,
@@ -105087,7 +105109,7 @@ xU([
105087
105109
  ], CU.prototype, "itemsChanged", null);
105088
105110
  //#endregion
105089
105111
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/List/ListElementIntl.js
105090
- var wU = class extends nL {
105112
+ var wU = class extends tL {
105091
105113
  _empty;
105092
105114
  _filterPlaceholder;
105093
105115
  constructor(e) {
@@ -105160,15 +105182,15 @@ function DU(e) {
105160
105182
  <slot></slot>
105161
105183
  </div>
105162
105184
  ${Vb(e.parent.selectionMode, [
105163
- [yL.None, () => V`
105185
+ [vL.None, () => V`
105164
105186
  `],
105165
- [yL.Single, () => V`
105187
+ [vL.Single, () => V`
105166
105188
  `],
105167
- [yL.Multiple, () => V`
105189
+ [vL.Multiple, () => V`
105168
105190
  <mosaik-checkmark part="checkmark"
105169
105191
  .appearance="${q.Outline}"
105170
105192
  .variant="${e.variant}"
105171
- .type="${JI.Hook}"
105193
+ .type="${FR.Hook}"
105172
105194
  ?checked="${e.isChecked}"
105173
105195
  ?disabled="${e.disabled}"></mosaik-checkmark>
105174
105196
  `]
@@ -105616,7 +105638,7 @@ var jU = function(e, t, n, r) {
105616
105638
  return O.current.findAncestor(this, rW.is, { strict: !0 });
105617
105639
  }
105618
105640
  onClick(e) {
105619
- this.disabled || this === e.currentTarget && (this.parent.selectionMode === yL.Single || this.parent.selectionMode === yL.None || (this.isChecked = !this._isChecked));
105641
+ this.disabled || this === e.currentTarget && (this.parent.selectionMode === vL.Single || this.parent.selectionMode === vL.None || (this.isChecked = !this._isChecked));
105620
105642
  }
105621
105643
  };
105622
105644
  jU([
@@ -106698,7 +106720,7 @@ var tW = function(e, t, n, r) {
106698
106720
  _selectionMode;
106699
106721
  _value;
106700
106722
  constructor() {
106701
- super(), this._selectionMode = yL.Single, this._value = null, this._itemsClickSubscriptions = [], this._intlController = new TI(this, { factory: () => new wU() }), Object.assign(this, { orientation: K.Vertical });
106723
+ super(), this._selectionMode = vL.Single, this._value = null, this._itemsClickSubscriptions = [], this._intlController = new TI(this, { factory: () => new wU() }), Object.assign(this, { orientation: K.Vertical });
106702
106724
  }
106703
106725
  static get is() {
106704
106726
  return "mosaik-list";
@@ -106746,7 +106768,7 @@ var tW = function(e, t, n, r) {
106746
106768
  onSelectItem(e) {}
106747
106769
  };
106748
106770
  tW([
106749
- A({ type: yL }),
106771
+ A({ type: vL }),
106750
106772
  nW("design:type", String),
106751
106773
  nW("design:paramtypes", [String])
106752
106774
  ], rW.prototype, "selectionMode", null), tW([
@@ -106799,7 +106821,7 @@ var iW = {
106799
106821
  }, aW = {
106800
106822
  Row: "row",
106801
106823
  Cell: "cell"
106802
- }, oW = class extends nL {
106824
+ }, oW = class extends tL {
106803
106825
  _sortAscendingLabel;
106804
106826
  _sortDescendingLabel;
106805
106827
  _clearSortingLabel;
@@ -108222,7 +108244,7 @@ bW([
108222
108244
  }), xW("design:paramtypes", [])], SW);
108223
108245
  //#endregion
108224
108246
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/FileUpload/Intl/FileUploadElementIntl.js
108225
- var CW = class extends nL {
108247
+ var CW = class extends tL {
108226
108248
  _dropLabel;
108227
108249
  constructor(e) {
108228
108250
  super(e), this._dropLabel = "Drop files here or click to upload.";
@@ -110784,7 +110806,7 @@ function qW(e) {
110784
110806
  <mosaik-checkmark part="checkmark"
110785
110807
  .variant="${e.variant}"
110786
110808
  .appearance="${e.appearance}"
110787
- .type="${JI.Bullet}"
110809
+ .type="${FR.Bullet}"
110788
110810
  ?checked="${e.isChecked}"
110789
110811
  ?disabled="${e.disabled}"></mosaik-checkmark>
110790
110812
  </slot>
@@ -111255,14 +111277,14 @@ var QW = function(e, t, n, r) {
111255
111277
  return i > 3 && a && Object.defineProperty(t, n, a), a;
111256
111278
  }, $W = function(e, t) {
111257
111279
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
111258
- }, eG = class extends F(KT(ES(z(J(R(nb(Rb(FR)))))))) {
111280
+ }, eG = class extends F(KT(ES(z(J(R(nb(Rb(PR)))))))) {
111259
111281
  _inheritance = zx(this, { context: JW });
111260
111282
  _inputElement;
111261
111283
  _labelPosition;
111262
111284
  _required;
111263
111285
  _name;
111264
111286
  constructor() {
111265
- super(), this._labelPosition = MR.After, this._required = !1, this._name = "";
111287
+ super(), this._labelPosition = jR.After, this._required = !1, this._name = "";
111266
111288
  }
111267
111289
  static get is() {
111268
111290
  return "mosaik-radio";
@@ -111334,7 +111356,7 @@ var QW = function(e, t, n, r) {
111334
111356
  }
111335
111357
  };
111336
111358
  QW([
111337
- A({ type: MR }),
111359
+ A({ type: jR }),
111338
111360
  $W("design:type", String),
111339
111361
  $W("design:paramtypes", [String])
111340
111362
  ], eG.prototype, "labelPosition", null), QW([
@@ -112470,7 +112492,7 @@ var _G = class {
112470
112492
  execute() {
112471
112493
  return this.contentEditable ? this.toggleFormatting("s", "~") : (console.error("StrikethroughCommand is not attached to any contenteditable element."), !1);
112472
112494
  }
112473
- }, SG = class extends nL {
112495
+ }, SG = class extends tL {
112474
112496
  _italicLabel;
112475
112497
  _boldLabel;
112476
112498
  _strikethroughLabel;
@@ -112572,7 +112594,7 @@ function CG(e) {
112572
112594
  function wG(e) {
112573
112595
  return V`
112574
112596
  <div part="root">
112575
- <svg xmlns="http://www.w3.org/2000/svg">
112597
+ <svg xmlns="http://www.w3.org/2000/svg">
112576
112598
  <line x1="${e.orientation === K.Vertical ? "50%" : "0"}"
112577
112599
  y1="${e.orientation === K.Vertical ? "0" : "50%"}"
112578
112600
  x2="${e.orientation === K.Vertical ? "50%" : "100%"}"
@@ -112659,6 +112681,7 @@ function TG() {
112659
112681
  width: 100%;
112660
112682
  height: 100%;
112661
112683
  position: absolute;
112684
+ translate: -50%;
112662
112685
  }
112663
112686
 
112664
112687
  :host [part="root"] svg line {
@@ -112754,6 +112777,7 @@ function EG() {
112754
112777
  width: 100%;
112755
112778
  height: 100%;
112756
112779
  position: absolute;
112780
+ translate: -50%;
112757
112781
  }
112758
112782
 
112759
112783
  :host [part="root"] svg line {
@@ -112853,6 +112877,7 @@ function DG() {
112853
112877
  width: 100%;
112854
112878
  height: 100%;
112855
112879
  position: absolute;
112880
+ translate: -50%;
112856
112881
  }
112857
112882
 
112858
112883
  :host [part="root"] svg line {
@@ -114607,7 +114632,7 @@ var WG = class {
114607
114632
  TimeGrid: "timeGrid",
114608
114633
  Month: "month",
114609
114634
  Agenda: "agenda"
114610
- }, qG = class extends nL {
114635
+ }, qG = class extends tL {
114611
114636
  _allDayLabel;
114612
114637
  _todayLabel;
114613
114638
  _moreEventsLabel;
@@ -114664,7 +114689,7 @@ var WG = class {
114664
114689
  monthDayFormat: "MMM d",
114665
114690
  appearance: lS.DEFAULTS.appearance,
114666
114691
  variant: ob.DEFAULTS.variant,
114667
- locale: hL.DEFAULTS.locale,
114692
+ locale: mL.DEFAULTS.locale,
114668
114693
  themeName: qy.DEFAULTS.themeName,
114669
114694
  size: pS.DEFAULTS.size,
114670
114695
  disabled: $y.DEFAULTS.disabled
@@ -117044,7 +117069,7 @@ var OK = function(e, t, n, r) {
117044
117069
  return i > 3 && a && Object.defineProperty(t, n, a), a;
117045
117070
  }, kK = function(e, t) {
117046
117071
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
117047
- }, AK = class extends F(mL(j)) {
117072
+ }, AK = class extends F(pL(j)) {
117048
117073
  _hourStart;
117049
117074
  _hourEnd;
117050
117075
  _stepMinutes;
@@ -118208,7 +118233,7 @@ var zK = function(e, t, n, r) {
118208
118233
  return i > 3 && a && Object.defineProperty(t, n, a), a;
118209
118234
  }, BK = function(e, t) {
118210
118235
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
118211
- }, VK = class extends F(mL(j)) {
118236
+ }, VK = class extends F(pL(j)) {
118212
118237
  _items;
118213
118238
  constructor() {
118214
118239
  super(), this._items = PK.DEFAULTS.items;
@@ -118249,7 +118274,7 @@ var HK = function(e, t, n, r) {
118249
118274
  (function(e) {
118250
118275
  e.DEFAULTS = {
118251
118276
  startDate: null,
118252
- firstDayOfWeek: _L.Sunday,
118277
+ firstDayOfWeek: gL.Sunday,
118253
118278
  blackoutDates: [],
118254
118279
  specialDates: [],
118255
118280
  isTodayHighlighted: !1,
@@ -118257,7 +118282,7 @@ var HK = function(e, t, n, r) {
118257
118282
  collectedEvents: [],
118258
118283
  appearance: lS.DEFAULTS.appearance,
118259
118284
  variant: ob.DEFAULTS.variant,
118260
- locale: hL.DEFAULTS.locale,
118285
+ locale: mL.DEFAULTS.locale,
118261
118286
  themeName: qy.DEFAULTS.themeName,
118262
118287
  size: pS.DEFAULTS.size,
118263
118288
  disabled: $y.DEFAULTS.disabled,
@@ -118267,7 +118292,7 @@ var HK = function(e, t, n, r) {
118267
118292
  monthDayFormat: JG.DEFAULTS.monthDayFormat
118268
118293
  };
118269
118294
  })(WK ||= {});
118270
- var GK = class extends F(fS(J(z(mL(R(j)))))) {
118295
+ var GK = class extends F(fS(J(z(pL(R(j)))))) {
118271
118296
  _inheritance;
118272
118297
  _schedulerBeforeEventActivate;
118273
118298
  _schedulerEventActivate;
@@ -118474,7 +118499,7 @@ HK([
118474
118499
  UK("design:type", Object),
118475
118500
  UK("design:paramtypes", [Object])
118476
118501
  ], GK.prototype, "startDate", null), HK([
118477
- A({ type: _L }),
118502
+ A({ type: gL }),
118478
118503
  UK("design:type", Number),
118479
118504
  UK("design:paramtypes", [Number])
118480
118505
  ], GK.prototype, "firstDayOfWeek", null), HK([
@@ -119380,7 +119405,7 @@ function tq(e) {
119380
119405
  `)}
119381
119406
  ${U(t.events.length > 3, () => V`
119382
119407
  <mosaik-hint part="more-events"
119383
- .text="${xR(e.intl?.moreEventsLabel ?? "", t.events.length - 3)}"></mosaik-hint>
119408
+ .text="${bR(e.intl?.moreEventsLabel ?? "", t.events.length - 3)}"></mosaik-hint>
119384
119409
  `)}
119385
119410
  </div>
119386
119411
  </div>
@@ -121976,7 +122001,7 @@ var _q = function(e, t, n, r) {
121976
122001
  return i > 3 && a && Object.defineProperty(t, n, a), a;
121977
122002
  }, vq = function(e, t) {
121978
122003
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
121979
- }, yq = class extends F(J(z(mL(fS(Y(R(j))))))) {
122004
+ }, yq = class extends F(J(z(pL(fS(Y(R(j))))))) {
121980
122005
  _intl;
121981
122006
  _schedulerBeforeEventActivate;
121982
122007
  _schedulerEventActivate;
@@ -122491,7 +122516,7 @@ _q([
122491
122516
  vq("design:type", Array),
122492
122517
  vq("design:paramtypes", [Array])
122493
122518
  ], yq.prototype, "specialDates", null), _q([
122494
- A({ type: _L }),
122519
+ A({ type: gL }),
122495
122520
  vq("design:type", Number),
122496
122521
  vq("design:paramtypes", [Number])
122497
122522
  ], yq.prototype, "firstDayOfWeek", null), _q([
@@ -123688,7 +123713,7 @@ var Oq = class {
123688
123713
  kq.set(new Oq());
123689
123714
  //#endregion
123690
123715
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Inputs/Select/SelectElementIntl.js
123691
- var Aq = class extends nL {
123716
+ var Aq = class extends tL {
123692
123717
  _empty;
123693
123718
  _filterPlaceholder;
123694
123719
  constructor(e) {
@@ -124104,7 +124129,7 @@ var Iq = function(e, t, n, r) {
124104
124129
  return this.items.length;
124105
124130
  }
124106
124131
  get items() {
124107
- return Array.from(this.children).filter((e) => e instanceof tL);
124132
+ return Array.from(this.children).filter((e) => e instanceof eL);
124108
124133
  }
124109
124134
  };
124110
124135
  Iq([
@@ -124711,7 +124736,7 @@ var Hq = function(e, t, n, r) {
124711
124736
  this._textAlign !== e && (this._textAlign = e, this.requestUpdate("textAlign"));
124712
124737
  }
124713
124738
  get items() {
124714
- return this._projectionController.elements.flatMap((e) => e instanceof Rq ? e.items : e).filter((e) => e instanceof tL);
124739
+ return this._projectionController.elements.flatMap((e) => e instanceof Rq ? e.items : e).filter((e) => e instanceof eL);
124715
124740
  }
124716
124741
  get intl() {
124717
124742
  return this._intlController.intl;
@@ -124866,7 +124891,7 @@ Hq([
124866
124891
  delegatesFocus: !0
124867
124892
  },
124868
124893
  imports: [
124869
- tL,
124894
+ eL,
124870
124895
  Rq,
124871
124896
  HA,
124872
124897
  qS,
@@ -126745,7 +126770,7 @@ function _J() {
126745
126770
  --menu-item-font-text-transform: var(--joy-typography-body1-text-transform);
126746
126771
  --menu-item-font-weight: var(--joy-typography-body1-font-weight);
126747
126772
  --menu-item-foreground-color: var(--joy-scheme-foreground);
126748
- --menu-item-gap: calc(var(--joy-layout-space) * 2);
126773
+ --menu-item-gap: calc(var(--joy-layout-space) * 3);
126749
126774
  --menu-item-height: 48px;
126750
126775
  --menu-item-indent-color: var(--joy-scheme-highlight);
126751
126776
  --menu-item-indent-offset: calc(var(--joy-layout-space) * 2);
@@ -128606,7 +128631,7 @@ var DJ = function(e, t, n, r) {
128606
128631
  return i > 3 && a && Object.defineProperty(t, n, a), a;
128607
128632
  }, OJ = function(e, t) {
128608
128633
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
128609
- }, kJ, AJ = kJ = class extends F(Y(SA(mL(R(KT(ES(z(J(lC(nb(PA))))))))))) {
128634
+ }, kJ, AJ = kJ = class extends F(Y(SA(pL(R(KT(ES(z(J(lC(nb(PA))))))))))) {
128610
128635
  _clickOutsideController;
128611
128636
  _keyboardController;
128612
128637
  _projectionController;
@@ -129326,7 +129351,7 @@ function FJ(e) {
129326
129351
  <mosaik-checkmark part="checkmark"
129327
129352
  .variant="${e.variant}"
129328
129353
  .appearance="${e.appearance}"
129329
- .type="${JI.Switch}"
129354
+ .type="${FR.Switch}"
129330
129355
  ?checked="${e.isChecked}"
129331
129356
  ?disabled="${e.disabled}"></mosaik-checkmark>
129332
129357
  </slot>
@@ -129350,13 +129375,13 @@ var IJ = function(e, t, n, r) {
129350
129375
  return i > 3 && a && Object.defineProperty(t, n, a), a;
129351
129376
  }, LJ = function(e, t) {
129352
129377
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
129353
- }, RJ = class extends F(KT(ES(z(J(R(nb(Rb(FR)))))))) {
129378
+ }, RJ = class extends F(KT(ES(z(J(R(nb(Rb(PR)))))))) {
129354
129379
  _inputElement;
129355
129380
  _labelPosition;
129356
129381
  _required;
129357
129382
  _name;
129358
129383
  constructor() {
129359
- super(), this._labelPosition = MR.After, this._required = !1, this._name = "";
129384
+ super(), this._labelPosition = jR.After, this._required = !1, this._name = "";
129360
129385
  }
129361
129386
  static get is() {
129362
129387
  return "mosaik-toggle-switch";
@@ -129404,7 +129429,7 @@ var IJ = function(e, t, n, r) {
129404
129429
  }
129405
129430
  };
129406
129431
  IJ([
129407
- A({ type: MR }),
129432
+ A({ type: jR }),
129408
129433
  LJ("design:type", String),
129409
129434
  LJ("design:paramtypes", [String])
129410
129435
  ], RJ.prototype, "labelPosition", null), IJ([
@@ -151838,7 +151863,10 @@ function wme(e) {
151838
151863
  <div part="messages">
151839
151864
  <slot name="message"></slot>
151840
151865
  ${U(e.scrollToEnd, () => V`
151841
- <mosaik-back-top .to="${"bottom"}"></mosaik-back-top>
151866
+ <mosaik-back-top part="backTop"
151867
+ .dir="${e.dir}"
151868
+ .lang="${e.lang}"
151869
+ .to="${"bottom"}"></mosaik-back-top>
151842
151870
  `)}
151843
151871
  </div>
151844
151872
  </div>
@@ -152154,7 +152182,8 @@ V$ = kme([H({
152154
152182
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/ChatHeaderElementTemplate.js
152155
152183
  function jme(e) {
152156
152184
  return V`
152157
- <mosaik-title-layout .dir="${e.dir}"
152185
+ <mosaik-title-layout part="root"
152186
+ .dir="${e.dir}"
152158
152187
  .lang="${e.lang}">
152159
152188
  <slot name="before"
152160
152189
  slot="start"></slot>
@@ -152164,7 +152193,8 @@ function jme(e) {
152164
152193
  .title="${e.title}"
152165
152194
  .subTitle="${e.subTitle}"
152166
152195
  .formatter="${e.formatter}"
152167
- .appearance="${"plain"}"></mosaik-toolbar>
152196
+ .appearance="${"plain"}"
152197
+ .fit="${"both"}"></mosaik-toolbar>
152168
152198
  <slot name="after"
152169
152199
  slot="end"></slot>
152170
152200
  </mosaik-title-layout>
@@ -152515,34 +152545,30 @@ function zme(e) {
152515
152545
  function Bme(e) {
152516
152546
  return V`
152517
152547
  ${Yb(e.files, (e) => e.name, (t) => V`
152518
- <!-- <mosaik-chip part="attachment"
152519
- .closeable="${!0}"
152520
- @closed="${() => e.removeAttachment(t)}"
152521
- @click="${() => window.open(URL.createObjectURL(t))}">
152522
- <mosaik-thumbnail slot="icon"
152523
- .preview="${{
152524
- url: URL.createObjectURL(t),
152525
- type: t.type
152526
- }}"></mosaik-thumbnail>
152527
- <mosaik-text slot="label"
152528
- .text="${t.name}"
152529
- .maxLength="${20}"
152530
- .truncate="${!0}"></mosaik-text>
152531
- </mosaik-chip> -->
152532
-
152533
152548
  <mosaik-box part="attachment"
152534
152549
  .cornered="${!0}"
152550
+ .lang="${e.lang}"
152551
+ .dir="${e.dir}"
152535
152552
  @click="${() => window.open(URL.createObjectURL(t))}">
152536
- <mosaik-dismiss slot="dismiss"
152553
+ <mosaik-dismiss part="dismiss"
152554
+ slot="dismiss"
152537
152555
  .size="${"tiny"}"
152556
+ .lang="${e.lang}"
152557
+ .dir="${e.dir}"
152538
152558
  @click="${(n) => e.onDismiss(n, t)}"></mosaik-dismiss>
152539
152559
  <mosaik-thumbnail part="thumbnail"
152560
+ .lang="${e.lang}"
152561
+ .dir="${e.dir}"
152540
152562
  .preview="${Fme(t)}"></mosaik-thumbnail>
152541
152563
  <div part="content">
152542
152564
  <mosaik-text part="label"
152565
+ .lang="${e.lang}"
152566
+ .dir="${e.dir}"
152543
152567
  .text="${t.name}"
152544
152568
  .truncate="${!0}"></mosaik-text>
152545
152569
  <mosaik-text part="type"
152570
+ .lang="${e.lang}"
152571
+ .dir="${e.dir}"
152546
152572
  .text="${t.type}"
152547
152573
  .truncate="${!0}"></mosaik-text>
152548
152574
  </div>
@@ -153469,6 +153495,7 @@ var Y$ = function(e, t, n, r) {
153469
153495
  }, X$ = function(e, t) {
153470
153496
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
153471
153497
  }, Z$ = class extends F(z(J(R(Y(j))))) {
153498
+ _inheritance = zx(this, { context: G$ });
153472
153499
  _attachmentsElement;
153473
153500
  _submitted;
153474
153501
  _transformer;
@@ -153507,6 +153534,18 @@ var Y$ = function(e, t, n, r) {
153507
153534
  get attachmentsElement() {
153508
153535
  return this._attachmentsElement;
153509
153536
  }
153537
+ get variant() {
153538
+ return this._inheritance.get("variant", super.variant);
153539
+ }
153540
+ set variant(e) {
153541
+ this._inheritance.markExplicit("variant"), super.variant = e;
153542
+ }
153543
+ get appearance() {
153544
+ return this._inheritance.get("appearance", super.appearance);
153545
+ }
153546
+ set appearance(e) {
153547
+ this._inheritance.markExplicit("appearance"), super.appearance = e;
153548
+ }
153510
153549
  send(e, t) {
153511
153550
  let n = this._transformer({
153512
153551
  text: e,
@@ -153592,11 +153631,8 @@ Y$([
153592
153631
  function Jme(e) {
153593
153632
  return V`
153594
153633
  ${U(e.isSticky, () => V`
153595
- <mosaik-sticky>
153596
- <mosaik-stack .dir="${e.dir}"
153597
- .orientation="${K.Horizontal}"
153598
- .verticalAlignment="${fx.Center}"
153599
- .gap="${"16px"}">
153634
+ <mosaik-sticky part="sticky">
153635
+ <div part="root">
153600
153636
  <mosaik-divider part="divider"
153601
153637
  .dir="${e.dir}"
153602
153638
  .orientation="${K.Horizontal}"
@@ -153612,13 +153648,10 @@ function Jme(e) {
153612
153648
  .dir="${e.dir}"
153613
153649
  .orientation="${K.Horizontal}"
153614
153650
  .thickness="${e.thickness}"></mosaik-divider>
153615
- </mosaik-stack>
153651
+ </div>
153616
153652
  </mosaik-sticky>
153617
153653
  `, () => V`
153618
- <mosaik-stack .dir="${e.dir}"
153619
- .orientation="${K.Horizontal}"
153620
- .verticalAlignment="${fx.Center}"
153621
- .gap="${"16px"}">
153654
+ <div part="root">
153622
153655
  <mosaik-divider part="divider"
153623
153656
  .dir="${e.dir}"
153624
153657
  .orientation="${K.Horizontal}"
@@ -153634,7 +153667,7 @@ function Jme(e) {
153634
153667
  .dir="${e.dir}"
153635
153668
  .orientation="${K.Horizontal}"
153636
153669
  .thickness="${e.thickness}"></mosaik-divider>
153637
- </mosaik-stack>
153670
+ </div>
153638
153671
  `)}
153639
153672
  `;
153640
153673
  }
@@ -153719,6 +153752,19 @@ function Yme() {
153719
153752
  display: flex;
153720
153753
  }
153721
153754
 
153755
+ :host [part="sticky"] {
153756
+ width: 100%;
153757
+ }
153758
+
153759
+ :host [part="root"] {
153760
+ justify-content: center;
153761
+ align-items: center;
153762
+ gap: var(--chat-message-divider-gap);
153763
+ flex-direction: row;
153764
+ width: 100%;
153765
+ display: inline-flex;
153766
+ }
153767
+
153722
153768
  :host [part="text"] {
153723
153769
  flex-shrink: 0;
153724
153770
  }
@@ -153806,6 +153852,19 @@ function Xme() {
153806
153852
  display: flex;
153807
153853
  }
153808
153854
 
153855
+ :host [part="sticky"] {
153856
+ width: 100%;
153857
+ }
153858
+
153859
+ :host [part="root"] {
153860
+ justify-content: center;
153861
+ align-items: center;
153862
+ gap: var(--chat-message-divider-gap);
153863
+ flex-direction: row;
153864
+ width: 100%;
153865
+ display: inline-flex;
153866
+ }
153867
+
153809
153868
  :host [part="text"] {
153810
153869
  flex-shrink: 0;
153811
153870
  }
@@ -153893,6 +153952,19 @@ function Zme() {
153893
153952
  display: flex;
153894
153953
  }
153895
153954
 
153955
+ :host [part="sticky"] {
153956
+ width: 100%;
153957
+ }
153958
+
153959
+ :host [part="root"] {
153960
+ justify-content: center;
153961
+ align-items: center;
153962
+ gap: var(--chat-message-divider-gap);
153963
+ flex-direction: row;
153964
+ width: 100%;
153965
+ display: inline-flex;
153966
+ }
153967
+
153896
153968
  :host [part="text"] {
153897
153969
  flex-shrink: 0;
153898
153970
  }
@@ -154204,6 +154276,7 @@ var t1 = function(e, t, n, r) {
154204
154276
  }, n1 = function(e, t) {
154205
154277
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
154206
154278
  }, r1 = class extends F(J(z(R(j)))) {
154279
+ _inheritance = zx(this, { context: G$ });
154207
154280
  _text;
154208
154281
  _icon;
154209
154282
  _src;
@@ -154231,6 +154304,18 @@ var t1 = function(e, t, n, r) {
154231
154304
  set src(e) {
154232
154305
  this._src !== e && (this._src = e, this.requestUpdate("src"));
154233
154306
  }
154307
+ get variant() {
154308
+ return this._inheritance.get("variant", super.variant);
154309
+ }
154310
+ set variant(e) {
154311
+ this._inheritance.markExplicit("variant"), super.variant = e;
154312
+ }
154313
+ get appearance() {
154314
+ return this._inheritance.get("appearance", super.appearance);
154315
+ }
154316
+ set appearance(e) {
154317
+ this._inheritance.markExplicit("appearance"), super.appearance = e;
154318
+ }
154234
154319
  };
154235
154320
  t1([
154236
154321
  P({ type: String }),
@@ -154259,10 +154344,7 @@ t1([
154259
154344
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/ChatMessageElementTemplate.js
154260
154345
  function nhe(e) {
154261
154346
  return V`
154262
- <mosaik-stack part="root"
154263
- .dir="${e.dir}"
154264
- .orientation="${K.Horizontal}"
154265
- .reverse="${!e.reply}">
154347
+ <div part="root">
154266
154348
  <slot name="avatar"
154267
154349
  @slotchange="${(t) => e.onSlotChange(t)}"></slot>
154268
154350
  <div part="content">
@@ -154309,7 +154391,7 @@ function nhe(e) {
154309
154391
  </div>
154310
154392
  <slot name="attachment"></slot>
154311
154393
  </div>
154312
- </mosaik-stack>
154394
+ </div>
154313
154395
  <div part="reactions">
154314
154396
  <slot name="reaction"></slot>
154315
154397
  </div>
@@ -154383,7 +154465,11 @@ function rhe() {
154383
154465
  }
154384
154466
 
154385
154467
  :host [part="root"] {
154468
+ justify-content: stretch;
154469
+ align-items: stretch;
154386
154470
  gap: var(--chat-message-gap);
154471
+ flex-direction: row-reverse;
154472
+ display: flex;
154387
154473
  }
154388
154474
 
154389
154475
  :host [part="root"] [part="content"] {
@@ -154463,6 +154549,10 @@ function rhe() {
154463
154549
  margin-right: var(--chat-message-white-space);
154464
154550
  }
154465
154551
 
154552
+ :host([reply]) [part="root"] {
154553
+ flex-direction: row;
154554
+ }
154555
+
154466
154556
  :host([reply]) [part="root"] [part="content"] {
154467
154557
  align-items: flex-start;
154468
154558
  }
@@ -154552,7 +154642,11 @@ function ihe() {
154552
154642
  }
154553
154643
 
154554
154644
  :host [part="root"] {
154645
+ justify-content: stretch;
154646
+ align-items: stretch;
154555
154647
  gap: var(--chat-message-gap);
154648
+ flex-direction: row-reverse;
154649
+ display: flex;
154556
154650
  }
154557
154651
 
154558
154652
  :host [part="root"] [part="content"] {
@@ -154632,6 +154726,10 @@ function ihe() {
154632
154726
  margin-right: var(--chat-message-white-space);
154633
154727
  }
154634
154728
 
154729
+ :host([reply]) [part="root"] {
154730
+ flex-direction: row;
154731
+ }
154732
+
154635
154733
  :host([reply]) [part="root"] [part="content"] {
154636
154734
  align-items: flex-start;
154637
154735
  }
@@ -154796,7 +154894,11 @@ function ahe() {
154796
154894
  }
154797
154895
 
154798
154896
  :host [part="root"] {
154897
+ justify-content: stretch;
154898
+ align-items: stretch;
154799
154899
  gap: var(--chat-message-gap);
154900
+ flex-direction: row-reverse;
154901
+ display: flex;
154800
154902
  }
154801
154903
 
154802
154904
  :host [part="root"] [part="content"] {
@@ -154876,6 +154978,10 @@ function ahe() {
154876
154978
  margin-right: var(--chat-message-white-space);
154877
154979
  }
154878
154980
 
154981
+ :host([reply]) [part="root"] {
154982
+ flex-direction: row;
154983
+ }
154984
+
154879
154985
  :host([reply]) [part="root"] [part="content"] {
154880
154986
  align-items: flex-start;
154881
154987
  }
@@ -154949,30 +155055,19 @@ var i1 = function(e, t, n, r) {
154949
155055
  set at(e) {
154950
155056
  this._at !== e && (this._at = e, this.requestUpdate("at"));
154951
155057
  }
154952
- onSlotChange(e) {
154953
- let t = this.getSlotAssignmentsOf("avatar", r1);
154954
- this.hasUpdated && t.forEach((e) => {
154955
- e.variant = this.variant, e.appearance = this.appearance, e.disabled = this.disabled;
154956
- });
155058
+ get variant() {
155059
+ return this._inheritance.get("variant", super.variant);
154957
155060
  }
154958
- onVariantPropertyChanged(e, t) {
154959
- let n = this.getSlotAssignmentsOf("avatar", r1);
154960
- t && n.forEach((e) => {
154961
- e.variant = t;
154962
- });
155061
+ set variant(e) {
155062
+ this._inheritance.markExplicit("variant"), super.variant = e;
154963
155063
  }
154964
- onAppearancePropertyChanged(e, t) {
154965
- let n = this.getSlotAssignmentsOf("avatar", r1);
154966
- t && n.forEach((e) => {
154967
- e.appearance = t;
154968
- });
155064
+ get appearance() {
155065
+ return this._inheritance.get("appearance", super.appearance);
154969
155066
  }
154970
- onDisabledPropertyChanged(e, t) {
154971
- let n = this.getSlotAssignmentsOf("avatar", r1);
154972
- t !== void 0 && n.forEach((e) => {
154973
- e.disabled = t;
154974
- });
155067
+ set appearance(e) {
155068
+ this._inheritance.markExplicit("appearance"), super.appearance = e;
154975
155069
  }
155070
+ onSlotChange(e) {}
154976
155071
  };
154977
155072
  i1([
154978
155073
  P({ type: String }),
@@ -154997,22 +155092,7 @@ i1([
154997
155092
  P({ type: String }),
154998
155093
  a1("design:type", String),
154999
155094
  a1("design:paramtypes", [String])
155000
- ], o1.prototype, "at", null), i1([
155001
- L("variant"),
155002
- a1("design:type", Function),
155003
- a1("design:paramtypes", [String, String]),
155004
- a1("design:returntype", void 0)
155005
- ], o1.prototype, "onVariantPropertyChanged", null), i1([
155006
- L("appearance"),
155007
- a1("design:type", Function),
155008
- a1("design:paramtypes", [String, String]),
155009
- a1("design:returntype", void 0)
155010
- ], o1.prototype, "onAppearancePropertyChanged", null), i1([
155011
- L("disabled"),
155012
- a1("design:type", Function),
155013
- a1("design:paramtypes", [Boolean, Boolean]),
155014
- a1("design:returntype", void 0)
155015
- ], o1.prototype, "onDisabledPropertyChanged", null), o1 = i1([H({
155095
+ ], o1.prototype, "at", null), o1 = i1([H({
155016
155096
  selector: "mosaik-chat-message",
155017
155097
  template: nhe,
155018
155098
  themes: {
@@ -155033,7 +155113,7 @@ i1([
155033
155113
  }), a1("design:paramtypes", [])], o1);
155034
155114
  //#endregion
155035
155115
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Intl/ChatElementIntl.js
155036
- var s1 = class extends nL {
155116
+ var s1 = class extends tL {
155037
155117
  _inputPlaceholder;
155038
155118
  constructor(e) {
155039
155119
  super(e), this._inputPlaceholder = "Type a message...";
@@ -155480,18 +155560,18 @@ var c1 = function(e, t, n, r) {
155480
155560
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
155481
155561
  }, u1 = class extends F(Ek(J(z(Y(j))))) {
155482
155562
  _intl;
155483
- _provider = XS(this, {
155484
- context: G$,
155485
- values: () => ({
155486
- variant: this.variant,
155487
- appearance: this.appearance
155488
- })
155489
- });
155490
155563
  _scrollToEnd;
155491
155564
  _begin;
155492
155565
  _inputElement;
155493
155566
  constructor() {
155494
- super(), this._intl = new TI(this, { factory: () => new s1() }), this._scrollToEnd = !1, this._begin = L$.Start;
155567
+ super(), this._intl = new TI(this, { factory: () => new s1() }), XS(this, {
155568
+ context: G$,
155569
+ values: () => ({
155570
+ variant: this.variant,
155571
+ appearance: this.appearance,
155572
+ intl: this.intl
155573
+ })
155574
+ }), this._scrollToEnd = !1, this._begin = L$.Start;
155495
155575
  }
155496
155576
  static get is() {
155497
155577
  return "mosaik-chat";
@@ -155575,11 +155655,7 @@ function lhe(e) {
155575
155655
  return V`
155576
155656
  ${U(e.isSticky, () => V`
155577
155657
  <mosaik-sticky>
155578
- <mosaik-stack .dir="${e.dir}"
155579
- .verticalAlignment="${fx.Center}"
155580
- .horizontalAlignment="${dx.Center}"
155581
- .orientation="${e.orientation}"
155582
- .gap="${"8px"}">
155658
+ <div part="root">
155583
155659
  ${U(e.icon, () => V`
155584
155660
  <mosaik-icon part="icon"
155585
155661
  .dir="${e.dir}"
@@ -155594,16 +155670,13 @@ function lhe(e) {
155594
155670
  .alignment="${Bb.Center}"
155595
155671
  .wrap="${!0}"></mosaik-text>
155596
155672
  </slot>
155597
- </mosaik-stack>
155673
+ </div>
155598
155674
  </mosaik-sticky>
155599
155675
  `, () => V`
155600
- <mosaik-stack .dir="${e.dir}"
155601
- .verticalAlignment="${fx.Center}"
155602
- .horizontalAlignment="${dx.Center}"
155603
- .orientation="${e.orientation}"
155604
- .gap="${"8px"}">
155676
+ <div part="root">
155605
155677
  ${U(e.icon, () => V`
155606
- <mosaik-icon .dir="${e.dir}"
155678
+ <mosaik-icon part="icon"
155679
+ .dir="${e.dir}"
155607
155680
  .size="${G.Tiny}"
155608
155681
  .data="${e.icon}"></mosaik-icon>
155609
155682
  `)}
@@ -155615,14 +155688,120 @@ function lhe(e) {
155615
155688
  .alignment="${Bb.Center}"
155616
155689
  .wrap="${!0}"></mosaik-text>
155617
155690
  </slot>
155618
- </mosaik-stack>
155691
+ </div>
155619
155692
  `)}
155620
155693
  `;
155621
155694
  }
155622
155695
  //#endregion
155623
- //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Joy.js
155696
+ //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Cosmopolitan.js
155624
155697
  function uhe() {
155625
155698
  return B`
155699
+ :host {
155700
+ --chat-marker-background-color: unset;
155701
+ --chat-marker-border-color: unset;
155702
+ --chat-marker-border-radius: unset;
155703
+ --chat-marker-border-style: unset;
155704
+ --chat-marker-border-width: unset;
155705
+ --chat-marker-font-family: unset;
155706
+ --chat-marker-font-letter-spacing: unset;
155707
+ --chat-marker-font-line-height: unset;
155708
+ --chat-marker-font-size: unset;
155709
+ --chat-marker-font-text-decoration: unset;
155710
+ --chat-marker-font-text-transform: unset;
155711
+ --chat-marker-font-weight: unset;
155712
+ --chat-marker-foreground-color: unset;
155713
+ --chat-marker-gap: unset;
155714
+ --chat-marker-padding-bottom: unset;
155715
+ --chat-marker-padding-left: unset;
155716
+ --chat-marker-padding-right: unset;
155717
+ --chat-marker-padding-top: unset;
155718
+ --chat-marker-shadow: unset unset unset unset unset;
155719
+ --chat-marker-shadow-blur: unset;
155720
+ --chat-marker-shadow-color: unset;
155721
+ --chat-marker-shadow-offset-x: unset;
155722
+ --chat-marker-shadow-offset-y: unset;
155723
+ --chat-marker-shadow-spread: unset;
155724
+ --chat-marker-transition-duration: unset;
155725
+ --chat-marker-transition-mode: unset;
155726
+ --chat-marker-transition-property: unset;
155727
+ --chat-marker-translate: none;
155728
+ }
155729
+
155730
+ @media screen and (prefers-reduced-motion: reduce) {
155731
+ :host {
155732
+ transition-duration: .01ms;
155733
+ }
155734
+ }
155735
+
155736
+ :host {
155737
+ box-sizing: border-box;
155738
+ display: block;
155739
+ position: relative;
155740
+ }
155741
+
155742
+ :host *, :host :before, :host :after {
155743
+ box-sizing: border-box;
155744
+ background-repeat: no-repeat;
155745
+ }
155746
+
155747
+ :host :before, :host :after {
155748
+ text-decoration: inherit;
155749
+ vertical-align: inherit;
155750
+ }
155751
+
155752
+ :host([hidden]) {
155753
+ display: none !important;
155754
+ }
155755
+
155756
+ :host {
155757
+ font-family: var(--chat-marker-font-family);
155758
+ font-size: var(--chat-marker-font-size);
155759
+ line-height: var(--chat-marker-font-line-height);
155760
+ font-weight: var(--chat-marker-font-weight);
155761
+ letter-spacing: var(--chat-marker-font-letter-spacing);
155762
+ -webkit-text-decoration: var(--chat-marker-font-text-decoration);
155763
+ text-decoration: var(--chat-marker-font-text-decoration);
155764
+ text-transform: var(--chat-marker-font-text-transform);
155765
+ border-width: var(--chat-marker-border-width);
155766
+ border-radius: var(--chat-marker-border-radius);
155767
+ border-style: var(--chat-marker-border-style);
155768
+ background-color: var(--chat-marker-background-color);
155769
+ border-color: var(--chat-marker-border-color);
155770
+ color: var(--chat-marker-foreground-color);
155771
+ padding-top: var(--chat-marker-padding-top);
155772
+ padding-right: var(--chat-marker-padding-right);
155773
+ padding-bottom: var(--chat-marker-padding-bottom);
155774
+ padding-left: var(--chat-marker-padding-left);
155775
+ }
155776
+
155777
+ :host [part="root"] {
155778
+ justify-content: center;
155779
+ align-items: center;
155780
+ gap: var(--chat-marker-gap);
155781
+ flex-direction: column;
155782
+ display: inline-flex;
155783
+ }
155784
+
155785
+ :host [part="text"] {
155786
+ font-family: inherit;
155787
+ font-size: inherit;
155788
+ line-height: inherit;
155789
+ font-weight: inherit;
155790
+ letter-spacing: inherit;
155791
+ text-decoration: inherit;
155792
+ text-transform: inherit;
155793
+ }
155794
+
155795
+ :host [part="icon"] {
155796
+ flex-shrink: 0;
155797
+ }
155798
+
155799
+ `;
155800
+ }
155801
+ //#endregion
155802
+ //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Joy.js
155803
+ function dhe() {
155804
+ return B`
155626
155805
  :host {
155627
155806
  --chat-marker-background-color: var(--joy-scheme-background);
155628
155807
  --chat-marker-border-color: var(--joy-scheme-highlight);
@@ -155699,7 +155878,14 @@ function uhe() {
155699
155878
  padding-right: var(--chat-marker-padding-right);
155700
155879
  padding-bottom: var(--chat-marker-padding-bottom);
155701
155880
  padding-left: var(--chat-marker-padding-left);
155881
+ }
155882
+
155883
+ :host [part="root"] {
155884
+ justify-content: center;
155885
+ align-items: center;
155702
155886
  gap: var(--chat-marker-gap);
155887
+ flex-direction: column;
155888
+ display: inline-flex;
155703
155889
  }
155704
155890
 
155705
155891
  :host [part="text"] {
@@ -155962,7 +156148,7 @@ function uhe() {
155962
156148
  }
155963
156149
  //#endregion
155964
156150
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Memphis.js
155965
- function dhe() {
156151
+ function fhe() {
155966
156152
  return B`
155967
156153
  :host {
155968
156154
  --chat-marker-background-color: var(--memphis-scheme-background);
@@ -156040,106 +156226,14 @@ function dhe() {
156040
156226
  padding-right: var(--chat-marker-padding-right);
156041
156227
  padding-bottom: var(--chat-marker-padding-bottom);
156042
156228
  padding-left: var(--chat-marker-padding-left);
156043
- gap: var(--chat-marker-gap);
156044
- }
156045
-
156046
- :host [part="text"] {
156047
- font-family: inherit;
156048
- font-size: inherit;
156049
- line-height: inherit;
156050
- font-weight: inherit;
156051
- letter-spacing: inherit;
156052
- text-decoration: inherit;
156053
- text-transform: inherit;
156054
- }
156055
-
156056
- :host [part="icon"] {
156057
- flex-shrink: 0;
156058
- }
156059
-
156060
- `;
156061
- }
156062
- //#endregion
156063
- //#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Cosmopolitan.js
156064
- function fhe() {
156065
- return B`
156066
- :host {
156067
- --chat-marker-background-color: unset;
156068
- --chat-marker-border-color: unset;
156069
- --chat-marker-border-radius: unset;
156070
- --chat-marker-border-style: unset;
156071
- --chat-marker-border-width: unset;
156072
- --chat-marker-font-family: unset;
156073
- --chat-marker-font-letter-spacing: unset;
156074
- --chat-marker-font-line-height: unset;
156075
- --chat-marker-font-size: unset;
156076
- --chat-marker-font-text-decoration: unset;
156077
- --chat-marker-font-text-transform: unset;
156078
- --chat-marker-font-weight: unset;
156079
- --chat-marker-foreground-color: unset;
156080
- --chat-marker-gap: unset;
156081
- --chat-marker-padding-bottom: unset;
156082
- --chat-marker-padding-left: unset;
156083
- --chat-marker-padding-right: unset;
156084
- --chat-marker-padding-top: unset;
156085
- --chat-marker-shadow: unset unset unset unset unset;
156086
- --chat-marker-shadow-blur: unset;
156087
- --chat-marker-shadow-color: unset;
156088
- --chat-marker-shadow-offset-x: unset;
156089
- --chat-marker-shadow-offset-y: unset;
156090
- --chat-marker-shadow-spread: unset;
156091
- --chat-marker-transition-duration: unset;
156092
- --chat-marker-transition-mode: unset;
156093
- --chat-marker-transition-property: unset;
156094
- --chat-marker-translate: none;
156095
- }
156096
-
156097
- @media screen and (prefers-reduced-motion: reduce) {
156098
- :host {
156099
- transition-duration: .01ms;
156100
- }
156101
- }
156102
-
156103
- :host {
156104
- box-sizing: border-box;
156105
- display: block;
156106
- position: relative;
156107
- }
156108
-
156109
- :host *, :host :before, :host :after {
156110
- box-sizing: border-box;
156111
- background-repeat: no-repeat;
156112
156229
  }
156113
156230
 
156114
- :host :before, :host :after {
156115
- text-decoration: inherit;
156116
- vertical-align: inherit;
156117
- }
156118
-
156119
- :host([hidden]) {
156120
- display: none !important;
156121
- }
156122
-
156123
- :host {
156124
- font-family: var(--chat-marker-font-family);
156125
- font-size: var(--chat-marker-font-size);
156126
- line-height: var(--chat-marker-font-line-height);
156127
- font-weight: var(--chat-marker-font-weight);
156128
- letter-spacing: var(--chat-marker-font-letter-spacing);
156129
- -webkit-text-decoration: var(--chat-marker-font-text-decoration);
156130
- text-decoration: var(--chat-marker-font-text-decoration);
156131
- text-transform: var(--chat-marker-font-text-transform);
156132
- border-width: var(--chat-marker-border-width);
156133
- border-radius: var(--chat-marker-border-radius);
156134
- border-style: var(--chat-marker-border-style);
156135
- background-color: var(--chat-marker-background-color);
156136
- border-color: var(--chat-marker-border-color);
156137
- color: var(--chat-marker-foreground-color);
156138
- padding-top: var(--chat-marker-padding-top);
156139
- padding-right: var(--chat-marker-padding-right);
156140
- padding-bottom: var(--chat-marker-padding-bottom);
156141
- padding-left: var(--chat-marker-padding-left);
156231
+ :host [part="root"] {
156232
+ justify-content: center;
156233
+ align-items: center;
156142
156234
  gap: var(--chat-marker-gap);
156235
+ flex-direction: column;
156236
+ display: inline-flex;
156143
156237
  }
156144
156238
 
156145
156239
  :host [part="text"] {
@@ -156168,6 +156262,7 @@ var d1 = function(e, t, n, r) {
156168
156262
  }, f1 = function(e, t) {
156169
156263
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
156170
156264
  }, p1 = class extends F(z(Ax(hx(IU(Rb(J(j))))))) {
156265
+ _inheritance = zx(this, { context: G$ });
156171
156266
  _text;
156172
156267
  _icon;
156173
156268
  constructor() {
@@ -156188,6 +156283,18 @@ var d1 = function(e, t, n, r) {
156188
156283
  set icon(e) {
156189
156284
  this._icon !== e && (this._icon = e, this.requestUpdate("icon"));
156190
156285
  }
156286
+ get variant() {
156287
+ return this._inheritance.get("variant", super.variant);
156288
+ }
156289
+ set variant(e) {
156290
+ this._inheritance.markExplicit("variant"), super.variant = e;
156291
+ }
156292
+ get appearance() {
156293
+ return this._inheritance.get("appearance", super.appearance);
156294
+ }
156295
+ set appearance(e) {
156296
+ this._inheritance.markExplicit("appearance"), super.appearance = e;
156297
+ }
156191
156298
  };
156192
156299
  d1([
156193
156300
  P({ type: String }),
@@ -156201,9 +156308,9 @@ d1([
156201
156308
  selector: "mosaik-chat-marker",
156202
156309
  template: lhe,
156203
156310
  themes: {
156204
- joy: uhe,
156205
- memphis: dhe,
156206
- cosmopolitan: fhe
156311
+ joy: dhe,
156312
+ memphis: fhe,
156313
+ cosmopolitan: uhe
156207
156314
  },
156208
156315
  host: {
156209
156316
  role: "listitem",
@@ -157871,7 +157978,7 @@ var N1 = function(e, t, n, r) {
157871
157978
  name: this.name,
157872
157979
  dir: this.dir
157873
157980
  })
157874
- }), this._name = Bw.next(F1.is), this._required = !1, this._selectionMode = yL.Single, this._wrap = !1, this._chipChanged = new E(this, "chipChanged"), this._eventSubscriptions = [];
157981
+ }), this._name = Bw.next(F1.is), this._required = !1, this._selectionMode = vL.Single, this._wrap = !1, this._chipChanged = new E(this, "chipChanged"), this._eventSubscriptions = [];
157875
157982
  }
157876
157983
  static get is() {
157877
157984
  return "mosaik-chip-group";
@@ -157906,16 +158013,16 @@ var N1 = function(e, t, n, r) {
157906
158013
  onSlotChanges() {
157907
158014
  this.clearEvents();
157908
158015
  let e = this.getSlotAssignments("").filter((e) => e instanceof fz);
157909
- for (let [t, n] of e.entries()) n.isCheckable = this._selectionMode !== yL.None, (n.value === void 0 || n.value === null || n.value === "") && (n.value = n.label || `chip-${t}`), this._selectionMode === yL.Single ? n.isChecked = this.value === n.value : n.isChecked = (Array.isArray(this.value) ? this.value : []).includes(n.value), n.classList.add("chip-group-chip"), n.classList.toggle("first", t === 0), n.classList.toggle("inner", t > 0 && t < e.length - 1), n.classList.toggle("last", t === e.length - 1), this._eventSubscriptions.push(n.on("checked", (e) => this.onChipCheckChanged(e), { passive: !0 }), n.on("unchecked", (e) => this.onChipUncheckChanged(e), { passive: !0 }));
158016
+ for (let [t, n] of e.entries()) n.isCheckable = this._selectionMode !== vL.None, (n.value === void 0 || n.value === null || n.value === "") && (n.value = n.label || `chip-${t}`), this._selectionMode === vL.Single ? n.isChecked = this.value === n.value : n.isChecked = (Array.isArray(this.value) ? this.value : []).includes(n.value), n.classList.add("chip-group-chip"), n.classList.toggle("first", t === 0), n.classList.toggle("inner", t > 0 && t < e.length - 1), n.classList.toggle("last", t === e.length - 1), this._eventSubscriptions.push(n.on("checked", (e) => this.onChipCheckChanged(e), { passive: !0 }), n.on("unchecked", (e) => this.onChipUncheckChanged(e), { passive: !0 }));
157910
158017
  }
157911
158018
  checkValidity() {
157912
158019
  return this.getSlotAssignments("").filter((e) => e instanceof fz).filter((e) => e.isChecked).length > 0;
157913
158020
  }
157914
158021
  reset() {
157915
- this.getSlotAssignments("").filter((e) => e instanceof fz).forEach((e) => e.uncheck()), this._selectionMode === yL.Single ? this.value = void 0 : this.value = [], this.invalid = !1;
158022
+ this.getSlotAssignments("").filter((e) => e instanceof fz).forEach((e) => e.uncheck()), this._selectionMode === vL.Single ? this.value = void 0 : this.value = [], this.invalid = !1;
157916
158023
  }
157917
158024
  selectAll() {
157918
- this._selectionMode === yL.Multiple && (this.getSlotAssignments("").filter((e) => e instanceof fz).forEach((e) => e.check()), this.updateValue());
158025
+ this._selectionMode === vL.Multiple && (this.getSlotAssignments("").filter((e) => e instanceof fz).forEach((e) => e.check()), this.updateValue());
157919
158026
  }
157920
158027
  deselectAll() {
157921
158028
  this.getSlotAssignments("").filter((e) => e instanceof fz).forEach((e) => e.uncheck()), this.updateValue();
@@ -157925,29 +158032,29 @@ var N1 = function(e, t, n, r) {
157925
158032
  }
157926
158033
  onSelectionModePropertyChange(e, t) {
157927
158034
  let n = this.getSlotAssignments("").filter((e) => e instanceof fz);
157928
- t === yL.None ? (n.forEach((e) => {
158035
+ t === vL.None ? (n.forEach((e) => {
157929
158036
  e.uncheck(), e.isCheckable = !1;
157930
158037
  }), this.value = void 0) : n.forEach((e) => e.isCheckable = !0);
157931
158038
  }
157932
158039
  onValuePropertyChange(e, t) {
157933
158040
  let n = this.getSlotAssignments("").filter((e) => e instanceof fz);
157934
- if (this._selectionMode === yL.Single) n.forEach((e) => e.isChecked = t === e.value);
158041
+ if (this._selectionMode === vL.Single) n.forEach((e) => e.isChecked = t === e.value);
157935
158042
  else {
157936
158043
  let e = Array.isArray(t) ? t : [];
157937
158044
  n.forEach((t) => t.isChecked = e.includes(t.value));
157938
158045
  }
157939
158046
  }
157940
158047
  onChipCheckChanged(e) {
157941
- if (this._selectionMode === yL.None) return;
158048
+ if (this._selectionMode === vL.None) return;
157942
158049
  let t = e.target;
157943
- this._selectionMode === yL.Single ? (this.getSlotAssignments("").filter((e) => e instanceof fz).filter((e) => e !== t).forEach((e) => e.uncheck()), this.value = t.value, this.onChipChanged({ value: t.value })) : this.updateValue();
158050
+ this._selectionMode === vL.Single ? (this.getSlotAssignments("").filter((e) => e instanceof fz).filter((e) => e !== t).forEach((e) => e.uncheck()), this.value = t.value, this.onChipChanged({ value: t.value })) : this.updateValue();
157944
158051
  }
157945
158052
  onChipUncheckChanged(e) {
157946
- this._selectionMode !== yL.None && (this._selectionMode === yL.Multiple ? this.updateValue() : (this.value = void 0, this.onChipChanged({ value: void 0 })));
158053
+ this._selectionMode !== vL.None && (this._selectionMode === vL.Multiple ? this.updateValue() : (this.value = void 0, this.onChipChanged({ value: void 0 })));
157947
158054
  }
157948
158055
  updateValue() {
157949
158056
  let e = this.getSlotAssignments("").filter((e) => e instanceof fz).filter((e) => e.isChecked).map((e) => e.value);
157950
- this._selectionMode === yL.Single ? (this.value = e[0], this.onChipChanged({ value: e[0] })) : (this.value = e, this.onChipChanged({
158057
+ this._selectionMode === vL.Single ? (this.value = e[0], this.onChipChanged({ value: e[0] })) : (this.value = e, this.onChipChanged({
157951
158058
  value: e,
157952
158059
  values: e
157953
158060
  }));
@@ -157969,7 +158076,7 @@ N1([
157969
158076
  P1("design:paramtypes", [Boolean])
157970
158077
  ], I1.prototype, "required", null), N1([
157971
158078
  A({
157972
- type: yL,
158079
+ type: vL,
157973
158080
  attribute: "selection-mode"
157974
158081
  }),
157975
158082
  P1("design:type", String),
@@ -169267,7 +169374,7 @@ function l_e(e) {
169267
169374
  }
169268
169375
  //#endregion
169269
169376
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Misc/CookieConsent/Intl/CookiesConsentElementIntl.js
169270
- var z0 = class extends nL {
169377
+ var z0 = class extends tL {
169271
169378
  _messageLabel;
169272
169379
  _dismissLabel;
169273
169380
  _acceptLabel;
@@ -177415,7 +177522,7 @@ var Y2 = {
177415
177522
  OKCancel: "okCancel",
177416
177523
  YesNoCancel: "yesNoCancel",
177417
177524
  YesNo: "yesNo"
177418
- }, Z2 = class extends nL {
177525
+ }, Z2 = class extends tL {
177419
177526
  _okLabel;
177420
177527
  _cancelLabel;
177421
177528
  _yesLabel;
@@ -184568,7 +184675,7 @@ var ibe = function(e, t, n, r) {
184568
184675
  }, Z4 = class extends F(R(fS(z(J(j))))) {
184569
184676
  constructor() {
184570
184677
  super(), XS(this, {
184571
- context: ML,
184678
+ context: jL,
184572
184679
  values: () => ({ size: this.size })
184573
184680
  });
184574
184681
  }
@@ -184584,7 +184691,7 @@ Z4 = ibe([H({
184584
184691
  memphis: nbe,
184585
184692
  cosmopolitan: ebe
184586
184693
  },
184587
- imports: [zL]
184694
+ imports: [RL]
184588
184695
  }), abe("design:paramtypes", [])], Z4);
184589
184696
  //#endregion
184590
184697
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Flip/FlipElementTemplate.js
@@ -193445,7 +193552,7 @@ var n6;
193445
193552
  })(n6 ||= {});
193446
193553
  //#endregion
193447
193554
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Primitives/Paginator/PaginatorElementIntl.js
193448
- var r6 = class extends nL {
193555
+ var r6 = class extends tL {
193449
193556
  _rangeLabel;
193450
193557
  _firstPageLabel;
193451
193558
  _lastPageLabel;
@@ -193585,7 +193692,7 @@ function Oxe(e) {
193585
193692
  <mosaik-text part="range"
193586
193693
  .lang="${e.lang}"
193587
193694
  .dir="${e.dir}"
193588
- .text="${xR(e.intl.rangeLabel, e.rangeStart, e.rangeEnd, e.total)}"></mosaik-text>
193695
+ .text="${bR(e.intl.rangeLabel, e.rangeStart, e.rangeEnd, e.total)}"></mosaik-text>
193589
193696
  </mosaik-stack>
193590
193697
  `;
193591
193698
  }
@@ -205993,7 +206100,7 @@ _Ce([
205993
206100
  ], O8.prototype, "selectedItems", null);
205994
206101
  //#endregion
205995
206102
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/Combo/ComboElementIntl.js
205996
- var k8 = class extends nL {
206103
+ var k8 = class extends tL {
205997
206104
  _empty;
205998
206105
  constructor(e) {
205999
206106
  super(e), this._empty = "No items";
@@ -206084,37 +206191,40 @@ function yCe(e) {
206084
206191
  .variant="${e.variant}"
206085
206192
  @connected="${(t) => t.target.attach(e)}"></mosaik-ripple>
206086
206193
  `)}
206087
- ${Vb(e.parent.selectionMode, [
206088
- [yL.None, () => V`
206089
- `],
206090
- [yL.Single, () => V`
206091
- `],
206092
- [yL.Multiple, () => V`
206093
- ${U(e.isChecked, () => V`
206094
- <mosaik-checkmark part="checkmark"
206095
- .appearance="${q.Plain}"
206096
- .variant="${e.variant}"
206097
- .type="${JI.Hook}"
206098
- ?checked="${e.isChecked}"
206099
- ?disabled="${e.disabled}"></mosaik-checkmark>
206100
- `)}
206101
- `]
206102
- ])}
206194
+ <slot name="start"></slot>
206103
206195
  <slot name="icon">
206104
206196
  ${U(e.icon, () => V`
206105
- <mosaik-icon .size="${G.Small}"
206197
+ <mosaik-icon .size="${"small"}"
206106
206198
  .data="${e.icon}"
206107
- ?inline="${!0}"
206108
206199
  ?disabled="${e.disabled}"></mosaik-icon>
206109
206200
  `)}
206110
206201
  </slot>
206111
206202
  <slot name="label">
206112
206203
  ${U(e.label, () => V`
206113
206204
  <mosaik-text .text="${e.label}"
206114
- ?disabled="${e.disabled}"></mosaik-text>
206205
+ ?disabled="${e.disabled}"
206206
+ ?truncate="${!0}"></mosaik-text>
206115
206207
  `)}
206116
206208
  </slot>
206117
- <slot></slot>
206209
+ <slot name="checkmark">
206210
+ ${Vb(e.parent.selectionMode, [
206211
+ ["none", () => V`
206212
+ `],
206213
+ ["single", () => V`
206214
+ `],
206215
+ ["multiple", () => V`
206216
+ ${U(e.isChecked, () => V`
206217
+ <mosaik-checkmark part="checkmark"
206218
+ .appearance="${"plain"}"
206219
+ .variant="${e.variant}"
206220
+ .type="${"hook"}"
206221
+ ?checked="${e.isChecked}"
206222
+ ?disabled="${e.disabled}"></mosaik-checkmark>
206223
+ `)}
206224
+ `]
206225
+ ])}
206226
+ </slot>
206227
+ <slot name="end"></slot>
206118
206228
  `;
206119
206229
  }
206120
206230
  //#endregion
@@ -206242,7 +206352,7 @@ function xCe() {
206242
206352
  --combo-item-font-text-transform: var(--joy-typography-body1-text-transform);
206243
206353
  --combo-item-font-weight: var(--joy-typography-body1-font-weight);
206244
206354
  --combo-item-foreground-color: var(--joy-scheme-foreground);
206245
- --combo-item-gap: var(--joy-layout-space);
206355
+ --combo-item-gap: calc(var(--joy-layout-space) * 3);
206246
206356
  --combo-item-padding-bottom: var(--joy-layout-space);
206247
206357
  --combo-item-padding-left: var(--joy-layout-space);
206248
206358
  --combo-item-padding-right: var(--joy-layout-space);
@@ -206505,7 +206615,7 @@ var j8 = function(e, t, n, r) {
206505
206615
  return O.current.findShadowDomHost(e.portal, { strict: !0 });
206506
206616
  }
206507
206617
  onClick(e) {
206508
- this.disabled || this === e.currentTarget && (this.parent.selectionMode === yL.Single || this.parent.selectionMode === yL.None || (this.isChecked = !this._isChecked));
206618
+ this.disabled || this === e.currentTarget && (this.parent.selectionMode === vL.Single || this.parent.selectionMode === vL.None || (this.isChecked = !this._isChecked));
206509
206619
  }
206510
206620
  };
206511
206621
  j8([
@@ -206885,7 +206995,7 @@ var P8 = function(e, t, n, r) {
206885
206995
  _required;
206886
206996
  _textAlign;
206887
206997
  constructor() {
206888
- super(), this._selectionMode = yL.Single, this._value = null, this._placeholder = "", this._required = !1, this._textAlign = Bb.Left, this._itemsClickSubscriptions = [], this._clickOutsideController = new uC(this, {
206998
+ super(), this._selectionMode = vL.Single, this._value = null, this._placeholder = "", this._required = !1, this._textAlign = Bb.Left, this._itemsClickSubscriptions = [], this._clickOutsideController = new uC(this, {
206889
206999
  ignored: () => [this._floatingElement],
206890
207000
  skipInitial: !0,
206891
207001
  callback: () => this.close()
@@ -207013,7 +207123,7 @@ var P8 = function(e, t, n, r) {
207013
207123
  }
207014
207124
  }
207015
207125
  onSelectItem(e, t) {
207016
- this.selectionMode === yL.Single && e.isActive && !t ? this.deselectItem(e) : this.select(e), this.requestUpdate(), this.close();
207126
+ this.selectionMode === vL.Single && e.isActive && !t ? this.deselectItem(e) : this.select(e), this.requestUpdate(), this.close();
207017
207127
  }
207018
207128
  deselectItem(e) {
207019
207129
  e.isActive = !1, e.isChecked = !1;
@@ -207040,7 +207150,7 @@ var P8 = function(e, t, n, r) {
207040
207150
  }
207041
207151
  };
207042
207152
  P8([
207043
- A({ type: yL }),
207153
+ A({ type: vL }),
207044
207154
  F8("design:type", String),
207045
207155
  F8("design:paramtypes", [String])
207046
207156
  ], L8.prototype, "selectionMode", null), P8([
@@ -207452,7 +207562,7 @@ H8([
207452
207562
  }), U8("design:paramtypes", [])], W8);
207453
207563
  //#endregion
207454
207564
  //#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/Table/editor/intl/TableColumnEditorElementIntl.js
207455
- var G8 = class extends nL {
207565
+ var G8 = class extends tL {
207456
207566
  _header;
207457
207567
  _searchPlaceholder;
207458
207568
  _allColumnsLabel;
@@ -212229,7 +212339,7 @@ var Swe = function(e, t, n, r) {
212229
212339
  return i > 3 && a && Object.defineProperty(t, n, a), a;
212230
212340
  }, Cwe = function(e, t) {
212231
212341
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
212232
- }, _5 = class extends mL(ES(z(J(R(nb(j)))))) {
212342
+ }, _5 = class extends pL(ES(z(J(R(nb(j)))))) {
212233
212343
  constructor() {
212234
212344
  super();
212235
212345
  }
@@ -213035,7 +213145,7 @@ var S5 = function(e, t, n, r) {
213035
213145
  return i > 3 && a && Object.defineProperty(t, n, a), a;
213036
213146
  }, C5 = function(e, t) {
213037
213147
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
213038
- }, w5 = class extends lU(mL(nK(z(J(R(IS(ES(j)))))))) {
213148
+ }, w5 = class extends lU(pL(nK(z(J(R(IS(ES(j)))))))) {
213039
213149
  _keyboardController;
213040
213150
  _inlineStyleController;
213041
213151
  _boardElement;
@@ -213290,7 +213400,7 @@ var T5 = function(e, t, n, r) {
213290
213400
  return i > 3 && a && Object.defineProperty(t, n, a), a;
213291
213401
  }, E5 = function(e, t) {
213292
213402
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
213293
- }, D5 = class extends mL(R(z(J(j)))) {
213403
+ }, D5 = class extends pL(R(z(J(j)))) {
213294
213404
  _inlineStyleController;
213295
213405
  _dayWidth;
213296
213406
  _hourWidth;
@@ -213394,7 +213504,7 @@ var O5 = function(e, t, n, r) {
213394
213504
  return i > 3 && a && Object.defineProperty(t, n, a), a;
213395
213505
  }, k5 = function(e, t) {
213396
213506
  if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
213397
- }, A5, j5 = class extends cU(nK(mL(J(z(R(j)))))) {
213507
+ }, A5, j5 = class extends cU(nK(pL(J(z(R(j)))))) {
213398
213508
  static {
213399
213509
  A5 = this;
213400
213510
  }
@@ -222008,13 +222118,13 @@ function QTe(e) {
222008
222118
  .lang="${e.lang}"></mosaik-text>
222009
222119
  </slot>
222010
222120
  ${Vb(e.parent.selectionMode, [
222011
- [yL.None, () => V.nothing],
222012
- [yL.Single, () => V.nothing],
222013
- [yL.Multiple, () => V`
222121
+ [vL.None, () => V.nothing],
222122
+ [vL.Single, () => V.nothing],
222123
+ [vL.Multiple, () => V`
222014
222124
  <mosaik-checkmark part="checkmark"
222015
222125
  .appearance="${q.Outline}"
222016
222126
  .variant="${e.variant}"
222017
- .type="${JI.Hook}"
222127
+ .type="${FR.Hook}"
222018
222128
  .dir="${e.dir}"
222019
222129
  .lang="${e.lang}"
222020
222130
  ?checked="${e.isChecked}"
@@ -222098,7 +222208,7 @@ var C7 = function(e, t, n, r) {
222098
222208
  e === "" && (this.hasChildren = this.hasSlotContent(""));
222099
222209
  }
222100
222210
  onClick(e) {
222101
- this.disabled || this === e.currentTarget && (this.parent.selectionMode === yL.Single || this.parent.selectionMode === yL.None || (this.isChecked = !this._isChecked));
222211
+ this.disabled || this === e.currentTarget && (this.parent.selectionMode === vL.Single || this.parent.selectionMode === vL.None || (this.isChecked = !this._isChecked));
222102
222212
  }
222103
222213
  };
222104
222214
  C7([
@@ -222162,7 +222272,7 @@ var E7 = function(e, t, n, r) {
222162
222272
  _itemsClickSubscriptions;
222163
222273
  _selectionMode;
222164
222274
  constructor() {
222165
- super(), this._selectionMode = yL.Single, this._itemsClickSubscriptions = [];
222275
+ super(), this._selectionMode = vL.Single, this._itemsClickSubscriptions = [];
222166
222276
  }
222167
222277
  static get is() {
222168
222278
  return "mosaik-tree";
@@ -222189,7 +222299,7 @@ var E7 = function(e, t, n, r) {
222189
222299
  onSelectItem(e) {}
222190
222300
  };
222191
222301
  E7([
222192
- A({ type: yL }),
222302
+ A({ type: vL }),
222193
222303
  D7("design:type", String),
222194
222304
  D7("design:paramtypes", [String])
222195
222305
  ], O7.prototype, "selectionMode", null), E7([
@@ -224129,135 +224239,131 @@ function gEe() {
224129
224239
  }
224130
224240
 
224131
224241
  :host [part="content"] [part="main"] {
224132
- height: calc(100% - var(--app-content-offset-top));
224133
- flex: 1;
224134
- width: 100%;
224135
- overflow: auto;
224136
- }
224137
-
224138
- :host [part="content"] [part="rail"] {
224139
- height: calc(100% - var(--app-content-offset-top));
224140
- overflow: auto;
224141
- }
224142
-
224143
- :host [part="nav"] {
224144
- height: 100%;
224145
- width: var(--app-drawer-width);
224146
- flex-direction: column;
224147
- flex: 1;
224148
- display: flex;
224149
- overflow: auto;
224150
- }
224151
-
224152
- `;
224153
- }
224154
- //#endregion
224155
- //#region ../mosaik-elements-foundation/dist/Controls/Components/Shell/Themes/AppElement.Joy.js
224156
- function _Ee() {
224157
- return B`
224158
- :host {
224159
- --app-background-color: var(--joy-scheme-background);
224160
- --app-border-radius: none;
224161
- --app-content-offset-top: none;
224162
- --app-drawer-height: 100%;
224163
- --app-drawer-width: 320px;
224164
- --app-font-family: var(--joy-typography-body1-font-family);
224165
- --app-font-letter-spacing: var(--joy-typography-body1-letter-spacing);
224166
- --app-font-line-height: var(--joy-typography-body1-line-height);
224167
- --app-font-size: var(--joy-typography-body1-font-size);
224168
- --app-font-text-decoration: var(--joy-typography-body1-text-decoration);
224169
- --app-font-text-transform: var(--joy-typography-body1-text-transform);
224170
- --app-font-weight: var(--joy-typography-body1-font-weight);
224171
- --app-foreground-color: var(--joy-scheme-foreground);
224172
- --app-gap: var(--joy-layout-space);
224173
- --app-line-thickness: var(--joy-layout-thickness);
224174
- --app-padding-bottom: unset;
224175
- --app-padding-left: unset;
224176
- --app-padding-right: unset;
224177
- --app-padding-top: unset;
224178
- --app-shadow: unset unset unset unset unset;
224179
- --app-shadow-blur: unset;
224180
- --app-shadow-color: unset;
224181
- --app-shadow-offset-x: unset;
224182
- --app-shadow-offset-y: unset;
224183
- --app-shadow-spread: unset;
224184
- --app-transition-duration: var(--joy-duration-short);
224185
- --app-transition-mode: ease;
224186
- --app-transition-property: background-color, color, border-color, opacity, box-shadow, translate;
224187
- --app-translate: none;
224188
- }
224189
-
224190
- @media screen and (prefers-reduced-motion: reduce) {
224191
- :host {
224192
- transition-duration: .01ms;
224193
- }
224194
- }
224195
-
224196
- :host {
224197
- box-sizing: border-box;
224198
- display: block;
224199
- position: relative;
224200
- }
224201
-
224202
- :host *, :host :before, :host :after {
224203
- box-sizing: border-box;
224204
- background-repeat: no-repeat;
224205
- }
224206
-
224207
- :host :before, :host :after {
224208
- text-decoration: inherit;
224209
- vertical-align: inherit;
224210
- }
224211
-
224212
- :host([hidden]) {
224213
- display: none !important;
224214
- }
224215
-
224216
- :host {
224217
- font-family: var(--app-font-family);
224218
- font-size: var(--app-font-size);
224219
- line-height: var(--app-font-line-height);
224220
- font-weight: var(--app-font-weight);
224221
- letter-spacing: var(--app-font-letter-spacing);
224222
- -webkit-text-decoration: var(--app-font-text-decoration);
224223
- text-decoration: var(--app-font-text-decoration);
224224
- text-transform: var(--app-font-text-transform);
224225
- transition-duration: var(--app-transition-duration);
224226
- transition-timing-function: var(--app-transition-mode);
224227
- transition-property: var(--app-transition-property);
224228
- background-color: var(--app-background-color);
224229
- color: var(--app-foreground-color);
224230
- border-radius: var(--app-border-radius);
224231
- width: 100vw;
224232
- height: 100vh;
224233
- display: block;
224234
- position: absolute;
224235
- inset: 0;
224236
- overflow: clip;
224237
- }
224238
-
224239
- :host [part="drawer"] {
224240
- --drawer-width: var(--app-drawer-width);
224241
- --drawer-height: var(--app-drawer-height);
224242
- --drawer-viewport-inset: 0px;
224243
- }
224244
-
224245
- :host [part="content"] {
224246
- height: calc(100% - var(--app-content-offset-top));
224247
- flex-direction: row;
224248
- width: 100%;
224249
- display: flex;
224250
- }
224251
-
224252
- :host [part="content"] [part="main"] {
224253
- height: calc(100% - var(--app-content-offset-top));
224254
224242
  flex: 1;
224255
224243
  width: 100%;
224256
224244
  overflow: auto;
224257
224245
  }
224258
224246
 
224259
224247
  :host [part="content"] [part="rail"] {
224248
+ overflow: auto;
224249
+ }
224250
+
224251
+ :host [part="nav"] {
224252
+ height: 100%;
224253
+ width: var(--app-drawer-width);
224254
+ flex-direction: column;
224255
+ flex: 1;
224256
+ display: flex;
224257
+ overflow: auto;
224258
+ }
224259
+
224260
+ `;
224261
+ }
224262
+ //#endregion
224263
+ //#region ../mosaik-elements-foundation/dist/Controls/Components/Shell/Themes/AppElement.Joy.js
224264
+ function _Ee() {
224265
+ return B`
224266
+ :host {
224267
+ --app-background-color: var(--joy-scheme-background);
224268
+ --app-border-radius: none;
224269
+ --app-content-offset-top: none;
224270
+ --app-drawer-height: 100%;
224271
+ --app-drawer-width: 320px;
224272
+ --app-font-family: var(--joy-typography-body1-font-family);
224273
+ --app-font-letter-spacing: var(--joy-typography-body1-letter-spacing);
224274
+ --app-font-line-height: var(--joy-typography-body1-line-height);
224275
+ --app-font-size: var(--joy-typography-body1-font-size);
224276
+ --app-font-text-decoration: var(--joy-typography-body1-text-decoration);
224277
+ --app-font-text-transform: var(--joy-typography-body1-text-transform);
224278
+ --app-font-weight: var(--joy-typography-body1-font-weight);
224279
+ --app-foreground-color: var(--joy-scheme-foreground);
224280
+ --app-gap: var(--joy-layout-space);
224281
+ --app-line-thickness: var(--joy-layout-thickness);
224282
+ --app-padding-bottom: unset;
224283
+ --app-padding-left: unset;
224284
+ --app-padding-right: unset;
224285
+ --app-padding-top: unset;
224286
+ --app-shadow: unset unset unset unset unset;
224287
+ --app-shadow-blur: unset;
224288
+ --app-shadow-color: unset;
224289
+ --app-shadow-offset-x: unset;
224290
+ --app-shadow-offset-y: unset;
224291
+ --app-shadow-spread: unset;
224292
+ --app-transition-duration: var(--joy-duration-short);
224293
+ --app-transition-mode: ease;
224294
+ --app-transition-property: background-color, color, border-color, opacity, box-shadow, translate;
224295
+ --app-translate: none;
224296
+ }
224297
+
224298
+ @media screen and (prefers-reduced-motion: reduce) {
224299
+ :host {
224300
+ transition-duration: .01ms;
224301
+ }
224302
+ }
224303
+
224304
+ :host {
224305
+ box-sizing: border-box;
224306
+ display: block;
224307
+ position: relative;
224308
+ }
224309
+
224310
+ :host *, :host :before, :host :after {
224311
+ box-sizing: border-box;
224312
+ background-repeat: no-repeat;
224313
+ }
224314
+
224315
+ :host :before, :host :after {
224316
+ text-decoration: inherit;
224317
+ vertical-align: inherit;
224318
+ }
224319
+
224320
+ :host([hidden]) {
224321
+ display: none !important;
224322
+ }
224323
+
224324
+ :host {
224325
+ font-family: var(--app-font-family);
224326
+ font-size: var(--app-font-size);
224327
+ line-height: var(--app-font-line-height);
224328
+ font-weight: var(--app-font-weight);
224329
+ letter-spacing: var(--app-font-letter-spacing);
224330
+ -webkit-text-decoration: var(--app-font-text-decoration);
224331
+ text-decoration: var(--app-font-text-decoration);
224332
+ text-transform: var(--app-font-text-transform);
224333
+ transition-duration: var(--app-transition-duration);
224334
+ transition-timing-function: var(--app-transition-mode);
224335
+ transition-property: var(--app-transition-property);
224336
+ background-color: var(--app-background-color);
224337
+ color: var(--app-foreground-color);
224338
+ border-radius: var(--app-border-radius);
224339
+ width: 100vw;
224340
+ height: 100vh;
224341
+ display: block;
224342
+ position: absolute;
224343
+ inset: 0;
224344
+ overflow: clip;
224345
+ }
224346
+
224347
+ :host [part="drawer"] {
224348
+ --drawer-width: var(--app-drawer-width);
224349
+ --drawer-height: var(--app-drawer-height);
224350
+ --drawer-viewport-inset: 0px;
224351
+ }
224352
+
224353
+ :host [part="content"] {
224260
224354
  height: calc(100% - var(--app-content-offset-top));
224355
+ flex-direction: row;
224356
+ width: 100%;
224357
+ display: flex;
224358
+ }
224359
+
224360
+ :host [part="content"] [part="main"] {
224361
+ flex: 1;
224362
+ width: 100%;
224363
+ overflow: auto;
224364
+ }
224365
+
224366
+ :host [part="content"] [part="rail"] {
224261
224367
  overflow: auto;
224262
224368
  }
224263
224369
 
@@ -224375,14 +224481,12 @@ function vEe() {
224375
224481
  }
224376
224482
 
224377
224483
  :host [part="content"] [part="main"] {
224378
- height: calc(100% - var(--app-content-offset-top));
224379
224484
  flex: 1;
224380
224485
  width: 100%;
224381
224486
  overflow: auto;
224382
224487
  }
224383
224488
 
224384
224489
  :host [part="content"] [part="rail"] {
224385
- height: calc(100% - var(--app-content-offset-top));
224386
224490
  overflow: auto;
224387
224491
  }
224388
224492
 
@@ -224543,7 +224647,7 @@ function yEe(e) {
224543
224647
  <mosaik-progress-ring part="symbol"
224544
224648
  .radius="${"26px"}"
224545
224649
  .isIndeterminate="${!0}"></mosaik-progress-ring>
224546
- <mosaik-stack .orientation="${K.Vertical}">
224650
+ <div part="root">
224547
224651
  ${U(e.header, () => V`
224548
224652
  <mosaik-text part="header"
224549
224653
  .readonly="${!0}"
@@ -224561,11 +224665,10 @@ function yEe(e) {
224561
224665
  .formatter="${e.formatter}"></mosaik-text>
224562
224666
  `)}
224563
224667
  <slot></slot>
224564
- </mosaik-stack>
224565
- <mosaik-stack part="innerStack" .orientation="${K.Horizontal}"
224566
- ?hidden="${!e.hasSlotContent("actions")}">
224668
+ </div>
224669
+ <div part="actions" ?hidden="${!e.hasSlotContent("actions")}">
224567
224670
  <slot name="actions"></slot>
224568
- </mosaik-stack>
224671
+ </div>
224569
224672
  `;
224570
224673
  }
224571
224674
  //#endregion
@@ -224675,8 +224778,17 @@ function bEe() {
224675
224778
  text-transform: var(--busy-state-content-font-text-transform);
224676
224779
  }
224677
224780
 
224678
- :host [part="innerStack"] {
224679
- --stack-gap: var(--busy-state-gap);
224781
+ :host [part="root"] {
224782
+ flex-direction: column;
224783
+ align-items: center;
224784
+ display: flex;
224785
+ }
224786
+
224787
+ :host [part="actions"] {
224788
+ align-items: center;
224789
+ gap: var(--busy-state-gap);
224790
+ flex-direction: row;
224791
+ display: flex;
224680
224792
  }
224681
224793
 
224682
224794
  `;
@@ -224788,8 +224900,17 @@ function xEe() {
224788
224900
  text-transform: var(--busy-state-content-font-text-transform);
224789
224901
  }
224790
224902
 
224791
- :host [part="innerStack"] {
224792
- --stack-gap: var(--busy-state-gap);
224903
+ :host [part="root"] {
224904
+ flex-direction: column;
224905
+ align-items: center;
224906
+ display: flex;
224907
+ }
224908
+
224909
+ :host [part="actions"] {
224910
+ align-items: center;
224911
+ gap: var(--busy-state-gap);
224912
+ flex-direction: row;
224913
+ display: flex;
224793
224914
  }
224794
224915
 
224795
224916
  :host [part="header"] {
@@ -224921,8 +225042,17 @@ function SEe() {
224921
225042
  text-transform: var(--busy-state-content-font-text-transform);
224922
225043
  }
224923
225044
 
224924
- :host [part="innerStack"] {
224925
- --stack-gap: var(--busy-state-gap);
225045
+ :host [part="root"] {
225046
+ flex-direction: column;
225047
+ align-items: center;
225048
+ display: flex;
225049
+ }
225050
+
225051
+ :host [part="actions"] {
225052
+ align-items: center;
225053
+ gap: var(--busy-state-gap);
225054
+ flex-direction: row;
225055
+ display: flex;
224926
225056
  }
224927
225057
 
224928
225058
  :host [part="header"] {
@@ -224994,11 +225124,7 @@ q7([
224994
225124
  memphis: SEe,
224995
225125
  cosmopolitan: bEe
224996
225126
  },
224997
- imports: [
224998
- NS,
224999
- W,
225000
- sS
225001
- ]
225127
+ imports: [NS, W]
225002
225128
  }), J7("design:paramtypes", [])], Y7);
225003
225129
  //#endregion
225004
225130
  //#region ../mosaik-elements-foundation/dist/Controls/Components/States/Error/ErrorStateElementTemplate.js
@@ -225008,7 +225134,7 @@ function CEe(e) {
225008
225134
  .size="${G.Giant}"
225009
225135
  .data="${e.icon.trim().length > 0 ? e.icon : X.errorCircle}"
225010
225136
  .variant="${ib.Danger}"></mosaik-icon>
225011
- <mosaik-stack .orientation="${K.Vertical}">
225137
+ <div part="root">
225012
225138
  ${U(e.header, () => V`
225013
225139
  <mosaik-text part="header"
225014
225140
  .readonly="${!0}"
@@ -225034,11 +225160,10 @@ function CEe(e) {
225034
225160
  .formatter="${e.formatter}"></mosaik-text>
225035
225161
  `)}
225036
225162
  <slot></slot>
225037
- </mosaik-stack>
225038
- <mosaik-stack part="innerStack" .orientation="${K.Horizontal}"
225039
- ?hidden="${!e.hasSlotContent("actions")}">
225163
+ </div>
225164
+ <div part="actions" ?hidden="${!e.hasSlotContent("actions")}">
225040
225165
  <slot name="actions"></slot>
225041
- </mosaik-stack>
225166
+ </div>
225042
225167
  `;
225043
225168
  }
225044
225169
  //#endregion
@@ -225143,8 +225268,17 @@ function wEe() {
225143
225268
  text-transform: var(--error-state-content-font-text-transform);
225144
225269
  }
225145
225270
 
225146
- :host [part="innerStack"] {
225147
- --stack-gap: var(--error-state-gap);
225271
+ :host [part="root"] {
225272
+ flex-direction: column;
225273
+ align-items: center;
225274
+ display: flex;
225275
+ }
225276
+
225277
+ :host [part="actions"] {
225278
+ align-items: center;
225279
+ gap: var(--error-state-gap);
225280
+ flex-direction: row;
225281
+ display: flex;
225148
225282
  }
225149
225283
 
225150
225284
  `;
@@ -225250,8 +225384,17 @@ function TEe() {
225250
225384
  text-transform: var(--error-state-content-font-text-transform);
225251
225385
  }
225252
225386
 
225253
- :host [part="innerStack"] {
225254
- --stack-gap: var(--error-state-gap);
225387
+ :host [part="root"] {
225388
+ flex-direction: column;
225389
+ align-items: center;
225390
+ display: flex;
225391
+ }
225392
+
225393
+ :host [part="actions"] {
225394
+ align-items: center;
225395
+ gap: var(--error-state-gap);
225396
+ flex-direction: row;
225397
+ display: flex;
225255
225398
  }
225256
225399
 
225257
225400
  :host [part="header"] {
@@ -225378,8 +225521,17 @@ function EEe() {
225378
225521
  text-transform: var(--error-state-content-font-text-transform);
225379
225522
  }
225380
225523
 
225381
- :host [part="innerStack"] {
225382
- --stack-gap: var(--error-state-gap);
225524
+ :host [part="root"] {
225525
+ flex-direction: column;
225526
+ align-items: center;
225527
+ display: flex;
225528
+ }
225529
+
225530
+ :host [part="actions"] {
225531
+ align-items: center;
225532
+ gap: var(--error-state-gap);
225533
+ flex-direction: row;
225534
+ display: flex;
225383
225535
  }
225384
225536
 
225385
225537
  :host [part="header"] {
@@ -225462,11 +225614,7 @@ X7([
225462
225614
  memphis: EEe,
225463
225615
  cosmopolitan: wEe
225464
225616
  },
225465
- imports: [
225466
- _S,
225467
- W,
225468
- sS
225469
- ]
225617
+ imports: [_S, W]
225470
225618
  }), Z7("design:paramtypes", [])], Q7);
225471
225619
  //#endregion
225472
225620
  //#region ../mosaik-elements-foundation/dist/Controls/Components/States/Success/SuccessStateElementTemplate.js
@@ -225476,7 +225624,7 @@ function DEe(e) {
225476
225624
  .size="${G.Giant}"
225477
225625
  .data="${e.icon.trim().length > 0 ? e.icon : X.successCircle}"
225478
225626
  .variant="${ib.Success}"></mosaik-icon>
225479
- <mosaik-stack .orientation="${K.Vertical}">
225627
+ <div part="root">
225480
225628
  ${U(e.header, () => V`
225481
225629
  <mosaik-text part="header"
225482
225630
  .readonly="${!0}"
@@ -225494,11 +225642,10 @@ function DEe(e) {
225494
225642
  .formatter="${e.formatter}"></mosaik-text>
225495
225643
  `)}
225496
225644
  <slot></slot>
225497
- </mosaik-stack>
225498
- <mosaik-stack part="innerStack" .orientation="${K.Horizontal}"
225499
- ?hidden="${!e.hasSlotContent("actions")}">
225645
+ </div>
225646
+ <div part="actions" ?hidden="${!e.hasSlotContent("actions")}">
225500
225647
  <slot name="actions"></slot>
225501
- </mosaik-stack>
225648
+ </div>
225502
225649
  `;
225503
225650
  }
225504
225651
  //#endregion
@@ -225603,8 +225750,17 @@ function OEe() {
225603
225750
  text-transform: var(--success-state-content-font-text-transform);
225604
225751
  }
225605
225752
 
225606
- :host [part="innerStack"] {
225607
- --stack-gap: var(--success-state-gap);
225753
+ :host [part="root"] {
225754
+ flex-direction: column;
225755
+ align-items: center;
225756
+ display: flex;
225757
+ }
225758
+
225759
+ :host [part="actions"] {
225760
+ align-items: center;
225761
+ gap: var(--success-state-gap);
225762
+ flex-direction: row;
225763
+ display: flex;
225608
225764
  }
225609
225765
 
225610
225766
  `;
@@ -225710,8 +225866,17 @@ function kEe() {
225710
225866
  text-transform: var(--success-state-content-font-text-transform);
225711
225867
  }
225712
225868
 
225713
- :host [part="innerStack"] {
225714
- --stack-gap: var(--success-state-gap);
225869
+ :host [part="root"] {
225870
+ flex-direction: column;
225871
+ align-items: center;
225872
+ display: flex;
225873
+ }
225874
+
225875
+ :host [part="actions"] {
225876
+ align-items: center;
225877
+ gap: var(--success-state-gap);
225878
+ flex-direction: row;
225879
+ display: flex;
225715
225880
  }
225716
225881
 
225717
225882
  :host [part="header"] {
@@ -225838,8 +226003,17 @@ function AEe() {
225838
226003
  text-transform: var(--success-state-content-font-text-transform);
225839
226004
  }
225840
226005
 
225841
- :host [part="innerStack"] {
225842
- --stack-gap: var(--success-state-gap);
226006
+ :host [part="root"] {
226007
+ flex-direction: column;
226008
+ align-items: center;
226009
+ display: flex;
226010
+ }
226011
+
226012
+ :host [part="actions"] {
226013
+ align-items: center;
226014
+ gap: var(--success-state-gap);
226015
+ flex-direction: row;
226016
+ display: flex;
225843
226017
  }
225844
226018
 
225845
226019
  :host [part="header"] {
@@ -225911,11 +226085,7 @@ $7([
225911
226085
  memphis: AEe,
225912
226086
  cosmopolitan: OEe
225913
226087
  },
225914
- imports: [
225915
- _S,
225916
- W,
225917
- sS
225918
- ]
226088
+ imports: [_S, W]
225919
226089
  }), e9("design:paramtypes", [])], t9);
225920
226090
  //#endregion
225921
226091
  //#region ../mosaik-elements-foundation/dist/Accessability/Platform.js