@breadstone/mosaik-elements-svelte 0.1.2 → 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.
- package/CHANGELOG.md +4 -0
- package/index.mjs +437 -265
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 0.1.3 (2026-05-29)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
1
5
|
## 0.1.2 (2026-05-28)
|
|
2
6
|
|
|
3
7
|
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
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
|
-
|
|
71520
|
+
P({ type: String }),
|
|
71521
71521
|
ZF("design:type", String),
|
|
71522
71522
|
ZF("design:paramtypes", [String])
|
|
71523
71523
|
], QF.prototype, "title", null), XF([
|
|
71524
|
-
|
|
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
|
-
<
|
|
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
|
-
</
|
|
72361
|
-
<
|
|
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
|
-
</
|
|
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="
|
|
72476
|
-
|
|
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="
|
|
72589
|
-
|
|
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="
|
|
72722
|
-
|
|
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
|
|
@@ -112573,7 +112594,7 @@ function CG(e) {
|
|
|
112573
112594
|
function wG(e) {
|
|
112574
112595
|
return V`
|
|
112575
112596
|
<div part="root">
|
|
112576
|
-
<svg
|
|
112597
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
112577
112598
|
<line x1="${e.orientation === K.Vertical ? "50%" : "0"}"
|
|
112578
112599
|
y1="${e.orientation === K.Vertical ? "0" : "50%"}"
|
|
112579
112600
|
x2="${e.orientation === K.Vertical ? "50%" : "100%"}"
|
|
@@ -112660,6 +112681,7 @@ function TG() {
|
|
|
112660
112681
|
width: 100%;
|
|
112661
112682
|
height: 100%;
|
|
112662
112683
|
position: absolute;
|
|
112684
|
+
translate: -50%;
|
|
112663
112685
|
}
|
|
112664
112686
|
|
|
112665
112687
|
:host [part="root"] svg line {
|
|
@@ -112755,6 +112777,7 @@ function EG() {
|
|
|
112755
112777
|
width: 100%;
|
|
112756
112778
|
height: 100%;
|
|
112757
112779
|
position: absolute;
|
|
112780
|
+
translate: -50%;
|
|
112758
112781
|
}
|
|
112759
112782
|
|
|
112760
112783
|
:host [part="root"] svg line {
|
|
@@ -112854,6 +112877,7 @@ function DG() {
|
|
|
112854
112877
|
width: 100%;
|
|
112855
112878
|
height: 100%;
|
|
112856
112879
|
position: absolute;
|
|
112880
|
+
translate: -50%;
|
|
112857
112881
|
}
|
|
112858
112882
|
|
|
112859
112883
|
:host [part="root"] svg line {
|
|
@@ -151839,7 +151863,10 @@ function wme(e) {
|
|
|
151839
151863
|
<div part="messages">
|
|
151840
151864
|
<slot name="message"></slot>
|
|
151841
151865
|
${U(e.scrollToEnd, () => V`
|
|
151842
|
-
<mosaik-back-top
|
|
151866
|
+
<mosaik-back-top part="backTop"
|
|
151867
|
+
.dir="${e.dir}"
|
|
151868
|
+
.lang="${e.lang}"
|
|
151869
|
+
.to="${"bottom"}"></mosaik-back-top>
|
|
151843
151870
|
`)}
|
|
151844
151871
|
</div>
|
|
151845
151872
|
</div>
|
|
@@ -152155,7 +152182,8 @@ V$ = kme([H({
|
|
|
152155
152182
|
//#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/ChatHeaderElementTemplate.js
|
|
152156
152183
|
function jme(e) {
|
|
152157
152184
|
return V`
|
|
152158
|
-
<mosaik-title-layout
|
|
152185
|
+
<mosaik-title-layout part="root"
|
|
152186
|
+
.dir="${e.dir}"
|
|
152159
152187
|
.lang="${e.lang}">
|
|
152160
152188
|
<slot name="before"
|
|
152161
152189
|
slot="start"></slot>
|
|
@@ -152165,7 +152193,8 @@ function jme(e) {
|
|
|
152165
152193
|
.title="${e.title}"
|
|
152166
152194
|
.subTitle="${e.subTitle}"
|
|
152167
152195
|
.formatter="${e.formatter}"
|
|
152168
|
-
.appearance="${"plain"}"
|
|
152196
|
+
.appearance="${"plain"}"
|
|
152197
|
+
.fit="${"both"}"></mosaik-toolbar>
|
|
152169
152198
|
<slot name="after"
|
|
152170
152199
|
slot="end"></slot>
|
|
152171
152200
|
</mosaik-title-layout>
|
|
@@ -152516,34 +152545,30 @@ function zme(e) {
|
|
|
152516
152545
|
function Bme(e) {
|
|
152517
152546
|
return V`
|
|
152518
152547
|
${Yb(e.files, (e) => e.name, (t) => V`
|
|
152519
|
-
<!-- <mosaik-chip part="attachment"
|
|
152520
|
-
.closeable="${!0}"
|
|
152521
|
-
@closed="${() => e.removeAttachment(t)}"
|
|
152522
|
-
@click="${() => window.open(URL.createObjectURL(t))}">
|
|
152523
|
-
<mosaik-thumbnail slot="icon"
|
|
152524
|
-
.preview="${{
|
|
152525
|
-
url: URL.createObjectURL(t),
|
|
152526
|
-
type: t.type
|
|
152527
|
-
}}"></mosaik-thumbnail>
|
|
152528
|
-
<mosaik-text slot="label"
|
|
152529
|
-
.text="${t.name}"
|
|
152530
|
-
.maxLength="${20}"
|
|
152531
|
-
.truncate="${!0}"></mosaik-text>
|
|
152532
|
-
</mosaik-chip> -->
|
|
152533
|
-
|
|
152534
152548
|
<mosaik-box part="attachment"
|
|
152535
152549
|
.cornered="${!0}"
|
|
152550
|
+
.lang="${e.lang}"
|
|
152551
|
+
.dir="${e.dir}"
|
|
152536
152552
|
@click="${() => window.open(URL.createObjectURL(t))}">
|
|
152537
|
-
<mosaik-dismiss
|
|
152553
|
+
<mosaik-dismiss part="dismiss"
|
|
152554
|
+
slot="dismiss"
|
|
152538
152555
|
.size="${"tiny"}"
|
|
152556
|
+
.lang="${e.lang}"
|
|
152557
|
+
.dir="${e.dir}"
|
|
152539
152558
|
@click="${(n) => e.onDismiss(n, t)}"></mosaik-dismiss>
|
|
152540
152559
|
<mosaik-thumbnail part="thumbnail"
|
|
152560
|
+
.lang="${e.lang}"
|
|
152561
|
+
.dir="${e.dir}"
|
|
152541
152562
|
.preview="${Fme(t)}"></mosaik-thumbnail>
|
|
152542
152563
|
<div part="content">
|
|
152543
152564
|
<mosaik-text part="label"
|
|
152565
|
+
.lang="${e.lang}"
|
|
152566
|
+
.dir="${e.dir}"
|
|
152544
152567
|
.text="${t.name}"
|
|
152545
152568
|
.truncate="${!0}"></mosaik-text>
|
|
152546
152569
|
<mosaik-text part="type"
|
|
152570
|
+
.lang="${e.lang}"
|
|
152571
|
+
.dir="${e.dir}"
|
|
152547
152572
|
.text="${t.type}"
|
|
152548
152573
|
.truncate="${!0}"></mosaik-text>
|
|
152549
152574
|
</div>
|
|
@@ -153470,6 +153495,7 @@ var Y$ = function(e, t, n, r) {
|
|
|
153470
153495
|
}, X$ = function(e, t) {
|
|
153471
153496
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
153472
153497
|
}, Z$ = class extends F(z(J(R(Y(j))))) {
|
|
153498
|
+
_inheritance = zx(this, { context: G$ });
|
|
153473
153499
|
_attachmentsElement;
|
|
153474
153500
|
_submitted;
|
|
153475
153501
|
_transformer;
|
|
@@ -153508,6 +153534,18 @@ var Y$ = function(e, t, n, r) {
|
|
|
153508
153534
|
get attachmentsElement() {
|
|
153509
153535
|
return this._attachmentsElement;
|
|
153510
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
|
+
}
|
|
153511
153549
|
send(e, t) {
|
|
153512
153550
|
let n = this._transformer({
|
|
153513
153551
|
text: e,
|
|
@@ -153593,11 +153631,8 @@ Y$([
|
|
|
153593
153631
|
function Jme(e) {
|
|
153594
153632
|
return V`
|
|
153595
153633
|
${U(e.isSticky, () => V`
|
|
153596
|
-
<mosaik-sticky>
|
|
153597
|
-
<
|
|
153598
|
-
.orientation="${K.Horizontal}"
|
|
153599
|
-
.verticalAlignment="${fx.Center}"
|
|
153600
|
-
.gap="${"16px"}">
|
|
153634
|
+
<mosaik-sticky part="sticky">
|
|
153635
|
+
<div part="root">
|
|
153601
153636
|
<mosaik-divider part="divider"
|
|
153602
153637
|
.dir="${e.dir}"
|
|
153603
153638
|
.orientation="${K.Horizontal}"
|
|
@@ -153613,13 +153648,10 @@ function Jme(e) {
|
|
|
153613
153648
|
.dir="${e.dir}"
|
|
153614
153649
|
.orientation="${K.Horizontal}"
|
|
153615
153650
|
.thickness="${e.thickness}"></mosaik-divider>
|
|
153616
|
-
</
|
|
153651
|
+
</div>
|
|
153617
153652
|
</mosaik-sticky>
|
|
153618
153653
|
`, () => V`
|
|
153619
|
-
<
|
|
153620
|
-
.orientation="${K.Horizontal}"
|
|
153621
|
-
.verticalAlignment="${fx.Center}"
|
|
153622
|
-
.gap="${"16px"}">
|
|
153654
|
+
<div part="root">
|
|
153623
153655
|
<mosaik-divider part="divider"
|
|
153624
153656
|
.dir="${e.dir}"
|
|
153625
153657
|
.orientation="${K.Horizontal}"
|
|
@@ -153635,7 +153667,7 @@ function Jme(e) {
|
|
|
153635
153667
|
.dir="${e.dir}"
|
|
153636
153668
|
.orientation="${K.Horizontal}"
|
|
153637
153669
|
.thickness="${e.thickness}"></mosaik-divider>
|
|
153638
|
-
</
|
|
153670
|
+
</div>
|
|
153639
153671
|
`)}
|
|
153640
153672
|
`;
|
|
153641
153673
|
}
|
|
@@ -153720,6 +153752,19 @@ function Yme() {
|
|
|
153720
153752
|
display: flex;
|
|
153721
153753
|
}
|
|
153722
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
|
+
|
|
153723
153768
|
:host [part="text"] {
|
|
153724
153769
|
flex-shrink: 0;
|
|
153725
153770
|
}
|
|
@@ -153807,6 +153852,19 @@ function Xme() {
|
|
|
153807
153852
|
display: flex;
|
|
153808
153853
|
}
|
|
153809
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
|
+
|
|
153810
153868
|
:host [part="text"] {
|
|
153811
153869
|
flex-shrink: 0;
|
|
153812
153870
|
}
|
|
@@ -153894,6 +153952,19 @@ function Zme() {
|
|
|
153894
153952
|
display: flex;
|
|
153895
153953
|
}
|
|
153896
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
|
+
|
|
153897
153968
|
:host [part="text"] {
|
|
153898
153969
|
flex-shrink: 0;
|
|
153899
153970
|
}
|
|
@@ -154205,6 +154276,7 @@ var t1 = function(e, t, n, r) {
|
|
|
154205
154276
|
}, n1 = function(e, t) {
|
|
154206
154277
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
154207
154278
|
}, r1 = class extends F(J(z(R(j)))) {
|
|
154279
|
+
_inheritance = zx(this, { context: G$ });
|
|
154208
154280
|
_text;
|
|
154209
154281
|
_icon;
|
|
154210
154282
|
_src;
|
|
@@ -154232,6 +154304,18 @@ var t1 = function(e, t, n, r) {
|
|
|
154232
154304
|
set src(e) {
|
|
154233
154305
|
this._src !== e && (this._src = e, this.requestUpdate("src"));
|
|
154234
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
|
+
}
|
|
154235
154319
|
};
|
|
154236
154320
|
t1([
|
|
154237
154321
|
P({ type: String }),
|
|
@@ -154260,10 +154344,7 @@ t1([
|
|
|
154260
154344
|
//#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/ChatMessageElementTemplate.js
|
|
154261
154345
|
function nhe(e) {
|
|
154262
154346
|
return V`
|
|
154263
|
-
<
|
|
154264
|
-
.dir="${e.dir}"
|
|
154265
|
-
.orientation="${K.Horizontal}"
|
|
154266
|
-
.reverse="${!e.reply}">
|
|
154347
|
+
<div part="root">
|
|
154267
154348
|
<slot name="avatar"
|
|
154268
154349
|
@slotchange="${(t) => e.onSlotChange(t)}"></slot>
|
|
154269
154350
|
<div part="content">
|
|
@@ -154310,7 +154391,7 @@ function nhe(e) {
|
|
|
154310
154391
|
</div>
|
|
154311
154392
|
<slot name="attachment"></slot>
|
|
154312
154393
|
</div>
|
|
154313
|
-
</
|
|
154394
|
+
</div>
|
|
154314
154395
|
<div part="reactions">
|
|
154315
154396
|
<slot name="reaction"></slot>
|
|
154316
154397
|
</div>
|
|
@@ -154384,7 +154465,11 @@ function rhe() {
|
|
|
154384
154465
|
}
|
|
154385
154466
|
|
|
154386
154467
|
:host [part="root"] {
|
|
154468
|
+
justify-content: stretch;
|
|
154469
|
+
align-items: stretch;
|
|
154387
154470
|
gap: var(--chat-message-gap);
|
|
154471
|
+
flex-direction: row-reverse;
|
|
154472
|
+
display: flex;
|
|
154388
154473
|
}
|
|
154389
154474
|
|
|
154390
154475
|
:host [part="root"] [part="content"] {
|
|
@@ -154464,6 +154549,10 @@ function rhe() {
|
|
|
154464
154549
|
margin-right: var(--chat-message-white-space);
|
|
154465
154550
|
}
|
|
154466
154551
|
|
|
154552
|
+
:host([reply]) [part="root"] {
|
|
154553
|
+
flex-direction: row;
|
|
154554
|
+
}
|
|
154555
|
+
|
|
154467
154556
|
:host([reply]) [part="root"] [part="content"] {
|
|
154468
154557
|
align-items: flex-start;
|
|
154469
154558
|
}
|
|
@@ -154553,7 +154642,11 @@ function ihe() {
|
|
|
154553
154642
|
}
|
|
154554
154643
|
|
|
154555
154644
|
:host [part="root"] {
|
|
154645
|
+
justify-content: stretch;
|
|
154646
|
+
align-items: stretch;
|
|
154556
154647
|
gap: var(--chat-message-gap);
|
|
154648
|
+
flex-direction: row-reverse;
|
|
154649
|
+
display: flex;
|
|
154557
154650
|
}
|
|
154558
154651
|
|
|
154559
154652
|
:host [part="root"] [part="content"] {
|
|
@@ -154633,6 +154726,10 @@ function ihe() {
|
|
|
154633
154726
|
margin-right: var(--chat-message-white-space);
|
|
154634
154727
|
}
|
|
154635
154728
|
|
|
154729
|
+
:host([reply]) [part="root"] {
|
|
154730
|
+
flex-direction: row;
|
|
154731
|
+
}
|
|
154732
|
+
|
|
154636
154733
|
:host([reply]) [part="root"] [part="content"] {
|
|
154637
154734
|
align-items: flex-start;
|
|
154638
154735
|
}
|
|
@@ -154797,7 +154894,11 @@ function ahe() {
|
|
|
154797
154894
|
}
|
|
154798
154895
|
|
|
154799
154896
|
:host [part="root"] {
|
|
154897
|
+
justify-content: stretch;
|
|
154898
|
+
align-items: stretch;
|
|
154800
154899
|
gap: var(--chat-message-gap);
|
|
154900
|
+
flex-direction: row-reverse;
|
|
154901
|
+
display: flex;
|
|
154801
154902
|
}
|
|
154802
154903
|
|
|
154803
154904
|
:host [part="root"] [part="content"] {
|
|
@@ -154877,6 +154978,10 @@ function ahe() {
|
|
|
154877
154978
|
margin-right: var(--chat-message-white-space);
|
|
154878
154979
|
}
|
|
154879
154980
|
|
|
154981
|
+
:host([reply]) [part="root"] {
|
|
154982
|
+
flex-direction: row;
|
|
154983
|
+
}
|
|
154984
|
+
|
|
154880
154985
|
:host([reply]) [part="root"] [part="content"] {
|
|
154881
154986
|
align-items: flex-start;
|
|
154882
154987
|
}
|
|
@@ -154950,30 +155055,19 @@ var i1 = function(e, t, n, r) {
|
|
|
154950
155055
|
set at(e) {
|
|
154951
155056
|
this._at !== e && (this._at = e, this.requestUpdate("at"));
|
|
154952
155057
|
}
|
|
154953
|
-
|
|
154954
|
-
|
|
154955
|
-
this.hasUpdated && t.forEach((e) => {
|
|
154956
|
-
e.variant = this.variant, e.appearance = this.appearance, e.disabled = this.disabled;
|
|
154957
|
-
});
|
|
155058
|
+
get variant() {
|
|
155059
|
+
return this._inheritance.get("variant", super.variant);
|
|
154958
155060
|
}
|
|
154959
|
-
|
|
154960
|
-
|
|
154961
|
-
t && n.forEach((e) => {
|
|
154962
|
-
e.variant = t;
|
|
154963
|
-
});
|
|
155061
|
+
set variant(e) {
|
|
155062
|
+
this._inheritance.markExplicit("variant"), super.variant = e;
|
|
154964
155063
|
}
|
|
154965
|
-
|
|
154966
|
-
|
|
154967
|
-
t && n.forEach((e) => {
|
|
154968
|
-
e.appearance = t;
|
|
154969
|
-
});
|
|
155064
|
+
get appearance() {
|
|
155065
|
+
return this._inheritance.get("appearance", super.appearance);
|
|
154970
155066
|
}
|
|
154971
|
-
|
|
154972
|
-
|
|
154973
|
-
t !== void 0 && n.forEach((e) => {
|
|
154974
|
-
e.disabled = t;
|
|
154975
|
-
});
|
|
155067
|
+
set appearance(e) {
|
|
155068
|
+
this._inheritance.markExplicit("appearance"), super.appearance = e;
|
|
154976
155069
|
}
|
|
155070
|
+
onSlotChange(e) {}
|
|
154977
155071
|
};
|
|
154978
155072
|
i1([
|
|
154979
155073
|
P({ type: String }),
|
|
@@ -154998,22 +155092,7 @@ i1([
|
|
|
154998
155092
|
P({ type: String }),
|
|
154999
155093
|
a1("design:type", String),
|
|
155000
155094
|
a1("design:paramtypes", [String])
|
|
155001
|
-
], o1.prototype, "at", null), i1([
|
|
155002
|
-
L("variant"),
|
|
155003
|
-
a1("design:type", Function),
|
|
155004
|
-
a1("design:paramtypes", [String, String]),
|
|
155005
|
-
a1("design:returntype", void 0)
|
|
155006
|
-
], o1.prototype, "onVariantPropertyChanged", null), i1([
|
|
155007
|
-
L("appearance"),
|
|
155008
|
-
a1("design:type", Function),
|
|
155009
|
-
a1("design:paramtypes", [String, String]),
|
|
155010
|
-
a1("design:returntype", void 0)
|
|
155011
|
-
], o1.prototype, "onAppearancePropertyChanged", null), i1([
|
|
155012
|
-
L("disabled"),
|
|
155013
|
-
a1("design:type", Function),
|
|
155014
|
-
a1("design:paramtypes", [Boolean, Boolean]),
|
|
155015
|
-
a1("design:returntype", void 0)
|
|
155016
|
-
], o1.prototype, "onDisabledPropertyChanged", null), o1 = i1([H({
|
|
155095
|
+
], o1.prototype, "at", null), o1 = i1([H({
|
|
155017
155096
|
selector: "mosaik-chat-message",
|
|
155018
155097
|
template: nhe,
|
|
155019
155098
|
themes: {
|
|
@@ -155481,18 +155560,18 @@ var c1 = function(e, t, n, r) {
|
|
|
155481
155560
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
155482
155561
|
}, u1 = class extends F(Ek(J(z(Y(j))))) {
|
|
155483
155562
|
_intl;
|
|
155484
|
-
_provider = XS(this, {
|
|
155485
|
-
context: G$,
|
|
155486
|
-
values: () => ({
|
|
155487
|
-
variant: this.variant,
|
|
155488
|
-
appearance: this.appearance
|
|
155489
|
-
})
|
|
155490
|
-
});
|
|
155491
155563
|
_scrollToEnd;
|
|
155492
155564
|
_begin;
|
|
155493
155565
|
_inputElement;
|
|
155494
155566
|
constructor() {
|
|
155495
|
-
super(), this._intl = new TI(this, { factory: () => new s1() }), this
|
|
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;
|
|
155496
155575
|
}
|
|
155497
155576
|
static get is() {
|
|
155498
155577
|
return "mosaik-chat";
|
|
@@ -155576,11 +155655,7 @@ function lhe(e) {
|
|
|
155576
155655
|
return V`
|
|
155577
155656
|
${U(e.isSticky, () => V`
|
|
155578
155657
|
<mosaik-sticky>
|
|
155579
|
-
<
|
|
155580
|
-
.verticalAlignment="${fx.Center}"
|
|
155581
|
-
.horizontalAlignment="${dx.Center}"
|
|
155582
|
-
.orientation="${e.orientation}"
|
|
155583
|
-
.gap="${"8px"}">
|
|
155658
|
+
<div part="root">
|
|
155584
155659
|
${U(e.icon, () => V`
|
|
155585
155660
|
<mosaik-icon part="icon"
|
|
155586
155661
|
.dir="${e.dir}"
|
|
@@ -155595,16 +155670,13 @@ function lhe(e) {
|
|
|
155595
155670
|
.alignment="${Bb.Center}"
|
|
155596
155671
|
.wrap="${!0}"></mosaik-text>
|
|
155597
155672
|
</slot>
|
|
155598
|
-
</
|
|
155673
|
+
</div>
|
|
155599
155674
|
</mosaik-sticky>
|
|
155600
155675
|
`, () => V`
|
|
155601
|
-
<
|
|
155602
|
-
.verticalAlignment="${fx.Center}"
|
|
155603
|
-
.horizontalAlignment="${dx.Center}"
|
|
155604
|
-
.orientation="${e.orientation}"
|
|
155605
|
-
.gap="${"8px"}">
|
|
155676
|
+
<div part="root">
|
|
155606
155677
|
${U(e.icon, () => V`
|
|
155607
|
-
<mosaik-icon
|
|
155678
|
+
<mosaik-icon part="icon"
|
|
155679
|
+
.dir="${e.dir}"
|
|
155608
155680
|
.size="${G.Tiny}"
|
|
155609
155681
|
.data="${e.icon}"></mosaik-icon>
|
|
155610
155682
|
`)}
|
|
@@ -155616,14 +155688,120 @@ function lhe(e) {
|
|
|
155616
155688
|
.alignment="${Bb.Center}"
|
|
155617
155689
|
.wrap="${!0}"></mosaik-text>
|
|
155618
155690
|
</slot>
|
|
155619
|
-
</
|
|
155691
|
+
</div>
|
|
155620
155692
|
`)}
|
|
155621
155693
|
`;
|
|
155622
155694
|
}
|
|
155623
155695
|
//#endregion
|
|
155624
|
-
//#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.
|
|
155696
|
+
//#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Cosmopolitan.js
|
|
155625
155697
|
function uhe() {
|
|
155626
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`
|
|
155627
155805
|
:host {
|
|
155628
155806
|
--chat-marker-background-color: var(--joy-scheme-background);
|
|
155629
155807
|
--chat-marker-border-color: var(--joy-scheme-highlight);
|
|
@@ -155700,7 +155878,14 @@ function uhe() {
|
|
|
155700
155878
|
padding-right: var(--chat-marker-padding-right);
|
|
155701
155879
|
padding-bottom: var(--chat-marker-padding-bottom);
|
|
155702
155880
|
padding-left: var(--chat-marker-padding-left);
|
|
155881
|
+
}
|
|
155882
|
+
|
|
155883
|
+
:host [part="root"] {
|
|
155884
|
+
justify-content: center;
|
|
155885
|
+
align-items: center;
|
|
155703
155886
|
gap: var(--chat-marker-gap);
|
|
155887
|
+
flex-direction: column;
|
|
155888
|
+
display: inline-flex;
|
|
155704
155889
|
}
|
|
155705
155890
|
|
|
155706
155891
|
:host [part="text"] {
|
|
@@ -155963,7 +156148,7 @@ function uhe() {
|
|
|
155963
156148
|
}
|
|
155964
156149
|
//#endregion
|
|
155965
156150
|
//#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Memphis.js
|
|
155966
|
-
function
|
|
156151
|
+
function fhe() {
|
|
155967
156152
|
return B`
|
|
155968
156153
|
:host {
|
|
155969
156154
|
--chat-marker-background-color: var(--memphis-scheme-background);
|
|
@@ -156041,106 +156226,14 @@ function dhe() {
|
|
|
156041
156226
|
padding-right: var(--chat-marker-padding-right);
|
|
156042
156227
|
padding-bottom: var(--chat-marker-padding-bottom);
|
|
156043
156228
|
padding-left: var(--chat-marker-padding-left);
|
|
156044
|
-
gap: var(--chat-marker-gap);
|
|
156045
156229
|
}
|
|
156046
156230
|
|
|
156047
|
-
:host [part="
|
|
156048
|
-
|
|
156049
|
-
|
|
156050
|
-
line-height: inherit;
|
|
156051
|
-
font-weight: inherit;
|
|
156052
|
-
letter-spacing: inherit;
|
|
156053
|
-
text-decoration: inherit;
|
|
156054
|
-
text-transform: inherit;
|
|
156055
|
-
}
|
|
156056
|
-
|
|
156057
|
-
:host [part="icon"] {
|
|
156058
|
-
flex-shrink: 0;
|
|
156059
|
-
}
|
|
156060
|
-
|
|
156061
|
-
`;
|
|
156062
|
-
}
|
|
156063
|
-
//#endregion
|
|
156064
|
-
//#region ../mosaik-elements-foundation/dist/Controls/Components/Media/Chat/Themes/ChatMarkerElement.Cosmopolitan.js
|
|
156065
|
-
function fhe() {
|
|
156066
|
-
return B`
|
|
156067
|
-
:host {
|
|
156068
|
-
--chat-marker-background-color: unset;
|
|
156069
|
-
--chat-marker-border-color: unset;
|
|
156070
|
-
--chat-marker-border-radius: unset;
|
|
156071
|
-
--chat-marker-border-style: unset;
|
|
156072
|
-
--chat-marker-border-width: unset;
|
|
156073
|
-
--chat-marker-font-family: unset;
|
|
156074
|
-
--chat-marker-font-letter-spacing: unset;
|
|
156075
|
-
--chat-marker-font-line-height: unset;
|
|
156076
|
-
--chat-marker-font-size: unset;
|
|
156077
|
-
--chat-marker-font-text-decoration: unset;
|
|
156078
|
-
--chat-marker-font-text-transform: unset;
|
|
156079
|
-
--chat-marker-font-weight: unset;
|
|
156080
|
-
--chat-marker-foreground-color: unset;
|
|
156081
|
-
--chat-marker-gap: unset;
|
|
156082
|
-
--chat-marker-padding-bottom: unset;
|
|
156083
|
-
--chat-marker-padding-left: unset;
|
|
156084
|
-
--chat-marker-padding-right: unset;
|
|
156085
|
-
--chat-marker-padding-top: unset;
|
|
156086
|
-
--chat-marker-shadow: unset unset unset unset unset;
|
|
156087
|
-
--chat-marker-shadow-blur: unset;
|
|
156088
|
-
--chat-marker-shadow-color: unset;
|
|
156089
|
-
--chat-marker-shadow-offset-x: unset;
|
|
156090
|
-
--chat-marker-shadow-offset-y: unset;
|
|
156091
|
-
--chat-marker-shadow-spread: unset;
|
|
156092
|
-
--chat-marker-transition-duration: unset;
|
|
156093
|
-
--chat-marker-transition-mode: unset;
|
|
156094
|
-
--chat-marker-transition-property: unset;
|
|
156095
|
-
--chat-marker-translate: none;
|
|
156096
|
-
}
|
|
156097
|
-
|
|
156098
|
-
@media screen and (prefers-reduced-motion: reduce) {
|
|
156099
|
-
:host {
|
|
156100
|
-
transition-duration: .01ms;
|
|
156101
|
-
}
|
|
156102
|
-
}
|
|
156103
|
-
|
|
156104
|
-
:host {
|
|
156105
|
-
box-sizing: border-box;
|
|
156106
|
-
display: block;
|
|
156107
|
-
position: relative;
|
|
156108
|
-
}
|
|
156109
|
-
|
|
156110
|
-
:host *, :host :before, :host :after {
|
|
156111
|
-
box-sizing: border-box;
|
|
156112
|
-
background-repeat: no-repeat;
|
|
156113
|
-
}
|
|
156114
|
-
|
|
156115
|
-
:host :before, :host :after {
|
|
156116
|
-
text-decoration: inherit;
|
|
156117
|
-
vertical-align: inherit;
|
|
156118
|
-
}
|
|
156119
|
-
|
|
156120
|
-
:host([hidden]) {
|
|
156121
|
-
display: none !important;
|
|
156122
|
-
}
|
|
156123
|
-
|
|
156124
|
-
:host {
|
|
156125
|
-
font-family: var(--chat-marker-font-family);
|
|
156126
|
-
font-size: var(--chat-marker-font-size);
|
|
156127
|
-
line-height: var(--chat-marker-font-line-height);
|
|
156128
|
-
font-weight: var(--chat-marker-font-weight);
|
|
156129
|
-
letter-spacing: var(--chat-marker-font-letter-spacing);
|
|
156130
|
-
-webkit-text-decoration: var(--chat-marker-font-text-decoration);
|
|
156131
|
-
text-decoration: var(--chat-marker-font-text-decoration);
|
|
156132
|
-
text-transform: var(--chat-marker-font-text-transform);
|
|
156133
|
-
border-width: var(--chat-marker-border-width);
|
|
156134
|
-
border-radius: var(--chat-marker-border-radius);
|
|
156135
|
-
border-style: var(--chat-marker-border-style);
|
|
156136
|
-
background-color: var(--chat-marker-background-color);
|
|
156137
|
-
border-color: var(--chat-marker-border-color);
|
|
156138
|
-
color: var(--chat-marker-foreground-color);
|
|
156139
|
-
padding-top: var(--chat-marker-padding-top);
|
|
156140
|
-
padding-right: var(--chat-marker-padding-right);
|
|
156141
|
-
padding-bottom: var(--chat-marker-padding-bottom);
|
|
156142
|
-
padding-left: var(--chat-marker-padding-left);
|
|
156231
|
+
:host [part="root"] {
|
|
156232
|
+
justify-content: center;
|
|
156233
|
+
align-items: center;
|
|
156143
156234
|
gap: var(--chat-marker-gap);
|
|
156235
|
+
flex-direction: column;
|
|
156236
|
+
display: inline-flex;
|
|
156144
156237
|
}
|
|
156145
156238
|
|
|
156146
156239
|
:host [part="text"] {
|
|
@@ -156169,6 +156262,7 @@ var d1 = function(e, t, n, r) {
|
|
|
156169
156262
|
}, f1 = function(e, t) {
|
|
156170
156263
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
156171
156264
|
}, p1 = class extends F(z(Ax(hx(IU(Rb(J(j))))))) {
|
|
156265
|
+
_inheritance = zx(this, { context: G$ });
|
|
156172
156266
|
_text;
|
|
156173
156267
|
_icon;
|
|
156174
156268
|
constructor() {
|
|
@@ -156189,6 +156283,18 @@ var d1 = function(e, t, n, r) {
|
|
|
156189
156283
|
set icon(e) {
|
|
156190
156284
|
this._icon !== e && (this._icon = e, this.requestUpdate("icon"));
|
|
156191
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
|
+
}
|
|
156192
156298
|
};
|
|
156193
156299
|
d1([
|
|
156194
156300
|
P({ type: String }),
|
|
@@ -156202,9 +156308,9 @@ d1([
|
|
|
156202
156308
|
selector: "mosaik-chat-marker",
|
|
156203
156309
|
template: lhe,
|
|
156204
156310
|
themes: {
|
|
156205
|
-
joy:
|
|
156206
|
-
memphis:
|
|
156207
|
-
cosmopolitan:
|
|
156311
|
+
joy: dhe,
|
|
156312
|
+
memphis: fhe,
|
|
156313
|
+
cosmopolitan: uhe
|
|
156208
156314
|
},
|
|
156209
156315
|
host: {
|
|
156210
156316
|
role: "listitem",
|
|
@@ -224541,7 +224647,7 @@ function yEe(e) {
|
|
|
224541
224647
|
<mosaik-progress-ring part="symbol"
|
|
224542
224648
|
.radius="${"26px"}"
|
|
224543
224649
|
.isIndeterminate="${!0}"></mosaik-progress-ring>
|
|
224544
|
-
<
|
|
224650
|
+
<div part="root">
|
|
224545
224651
|
${U(e.header, () => V`
|
|
224546
224652
|
<mosaik-text part="header"
|
|
224547
224653
|
.readonly="${!0}"
|
|
@@ -224559,11 +224665,10 @@ function yEe(e) {
|
|
|
224559
224665
|
.formatter="${e.formatter}"></mosaik-text>
|
|
224560
224666
|
`)}
|
|
224561
224667
|
<slot></slot>
|
|
224562
|
-
</
|
|
224563
|
-
<
|
|
224564
|
-
?hidden="${!e.hasSlotContent("actions")}">
|
|
224668
|
+
</div>
|
|
224669
|
+
<div part="actions" ?hidden="${!e.hasSlotContent("actions")}">
|
|
224565
224670
|
<slot name="actions"></slot>
|
|
224566
|
-
</
|
|
224671
|
+
</div>
|
|
224567
224672
|
`;
|
|
224568
224673
|
}
|
|
224569
224674
|
//#endregion
|
|
@@ -224673,8 +224778,17 @@ function bEe() {
|
|
|
224673
224778
|
text-transform: var(--busy-state-content-font-text-transform);
|
|
224674
224779
|
}
|
|
224675
224780
|
|
|
224676
|
-
:host [part="
|
|
224677
|
-
|
|
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;
|
|
224678
224792
|
}
|
|
224679
224793
|
|
|
224680
224794
|
`;
|
|
@@ -224786,8 +224900,17 @@ function xEe() {
|
|
|
224786
224900
|
text-transform: var(--busy-state-content-font-text-transform);
|
|
224787
224901
|
}
|
|
224788
224902
|
|
|
224789
|
-
:host [part="
|
|
224790
|
-
|
|
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;
|
|
224791
224914
|
}
|
|
224792
224915
|
|
|
224793
224916
|
:host [part="header"] {
|
|
@@ -224919,8 +225042,17 @@ function SEe() {
|
|
|
224919
225042
|
text-transform: var(--busy-state-content-font-text-transform);
|
|
224920
225043
|
}
|
|
224921
225044
|
|
|
224922
|
-
:host [part="
|
|
224923
|
-
|
|
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;
|
|
224924
225056
|
}
|
|
224925
225057
|
|
|
224926
225058
|
:host [part="header"] {
|
|
@@ -224992,11 +225124,7 @@ q7([
|
|
|
224992
225124
|
memphis: SEe,
|
|
224993
225125
|
cosmopolitan: bEe
|
|
224994
225126
|
},
|
|
224995
|
-
imports: [
|
|
224996
|
-
NS,
|
|
224997
|
-
W,
|
|
224998
|
-
sS
|
|
224999
|
-
]
|
|
225127
|
+
imports: [NS, W]
|
|
225000
225128
|
}), J7("design:paramtypes", [])], Y7);
|
|
225001
225129
|
//#endregion
|
|
225002
225130
|
//#region ../mosaik-elements-foundation/dist/Controls/Components/States/Error/ErrorStateElementTemplate.js
|
|
@@ -225006,7 +225134,7 @@ function CEe(e) {
|
|
|
225006
225134
|
.size="${G.Giant}"
|
|
225007
225135
|
.data="${e.icon.trim().length > 0 ? e.icon : X.errorCircle}"
|
|
225008
225136
|
.variant="${ib.Danger}"></mosaik-icon>
|
|
225009
|
-
<
|
|
225137
|
+
<div part="root">
|
|
225010
225138
|
${U(e.header, () => V`
|
|
225011
225139
|
<mosaik-text part="header"
|
|
225012
225140
|
.readonly="${!0}"
|
|
@@ -225032,11 +225160,10 @@ function CEe(e) {
|
|
|
225032
225160
|
.formatter="${e.formatter}"></mosaik-text>
|
|
225033
225161
|
`)}
|
|
225034
225162
|
<slot></slot>
|
|
225035
|
-
</
|
|
225036
|
-
<
|
|
225037
|
-
?hidden="${!e.hasSlotContent("actions")}">
|
|
225163
|
+
</div>
|
|
225164
|
+
<div part="actions" ?hidden="${!e.hasSlotContent("actions")}">
|
|
225038
225165
|
<slot name="actions"></slot>
|
|
225039
|
-
</
|
|
225166
|
+
</div>
|
|
225040
225167
|
`;
|
|
225041
225168
|
}
|
|
225042
225169
|
//#endregion
|
|
@@ -225141,8 +225268,17 @@ function wEe() {
|
|
|
225141
225268
|
text-transform: var(--error-state-content-font-text-transform);
|
|
225142
225269
|
}
|
|
225143
225270
|
|
|
225144
|
-
:host [part="
|
|
225145
|
-
|
|
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;
|
|
225146
225282
|
}
|
|
225147
225283
|
|
|
225148
225284
|
`;
|
|
@@ -225248,8 +225384,17 @@ function TEe() {
|
|
|
225248
225384
|
text-transform: var(--error-state-content-font-text-transform);
|
|
225249
225385
|
}
|
|
225250
225386
|
|
|
225251
|
-
:host [part="
|
|
225252
|
-
|
|
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;
|
|
225253
225398
|
}
|
|
225254
225399
|
|
|
225255
225400
|
:host [part="header"] {
|
|
@@ -225376,8 +225521,17 @@ function EEe() {
|
|
|
225376
225521
|
text-transform: var(--error-state-content-font-text-transform);
|
|
225377
225522
|
}
|
|
225378
225523
|
|
|
225379
|
-
:host [part="
|
|
225380
|
-
|
|
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;
|
|
225381
225535
|
}
|
|
225382
225536
|
|
|
225383
225537
|
:host [part="header"] {
|
|
@@ -225460,11 +225614,7 @@ X7([
|
|
|
225460
225614
|
memphis: EEe,
|
|
225461
225615
|
cosmopolitan: wEe
|
|
225462
225616
|
},
|
|
225463
|
-
imports: [
|
|
225464
|
-
_S,
|
|
225465
|
-
W,
|
|
225466
|
-
sS
|
|
225467
|
-
]
|
|
225617
|
+
imports: [_S, W]
|
|
225468
225618
|
}), Z7("design:paramtypes", [])], Q7);
|
|
225469
225619
|
//#endregion
|
|
225470
225620
|
//#region ../mosaik-elements-foundation/dist/Controls/Components/States/Success/SuccessStateElementTemplate.js
|
|
@@ -225474,7 +225624,7 @@ function DEe(e) {
|
|
|
225474
225624
|
.size="${G.Giant}"
|
|
225475
225625
|
.data="${e.icon.trim().length > 0 ? e.icon : X.successCircle}"
|
|
225476
225626
|
.variant="${ib.Success}"></mosaik-icon>
|
|
225477
|
-
<
|
|
225627
|
+
<div part="root">
|
|
225478
225628
|
${U(e.header, () => V`
|
|
225479
225629
|
<mosaik-text part="header"
|
|
225480
225630
|
.readonly="${!0}"
|
|
@@ -225492,11 +225642,10 @@ function DEe(e) {
|
|
|
225492
225642
|
.formatter="${e.formatter}"></mosaik-text>
|
|
225493
225643
|
`)}
|
|
225494
225644
|
<slot></slot>
|
|
225495
|
-
</
|
|
225496
|
-
<
|
|
225497
|
-
?hidden="${!e.hasSlotContent("actions")}">
|
|
225645
|
+
</div>
|
|
225646
|
+
<div part="actions" ?hidden="${!e.hasSlotContent("actions")}">
|
|
225498
225647
|
<slot name="actions"></slot>
|
|
225499
|
-
</
|
|
225648
|
+
</div>
|
|
225500
225649
|
`;
|
|
225501
225650
|
}
|
|
225502
225651
|
//#endregion
|
|
@@ -225601,8 +225750,17 @@ function OEe() {
|
|
|
225601
225750
|
text-transform: var(--success-state-content-font-text-transform);
|
|
225602
225751
|
}
|
|
225603
225752
|
|
|
225604
|
-
:host [part="
|
|
225605
|
-
|
|
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;
|
|
225606
225764
|
}
|
|
225607
225765
|
|
|
225608
225766
|
`;
|
|
@@ -225708,8 +225866,17 @@ function kEe() {
|
|
|
225708
225866
|
text-transform: var(--success-state-content-font-text-transform);
|
|
225709
225867
|
}
|
|
225710
225868
|
|
|
225711
|
-
:host [part="
|
|
225712
|
-
|
|
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;
|
|
225713
225880
|
}
|
|
225714
225881
|
|
|
225715
225882
|
:host [part="header"] {
|
|
@@ -225836,8 +226003,17 @@ function AEe() {
|
|
|
225836
226003
|
text-transform: var(--success-state-content-font-text-transform);
|
|
225837
226004
|
}
|
|
225838
226005
|
|
|
225839
|
-
:host [part="
|
|
225840
|
-
|
|
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;
|
|
225841
226017
|
}
|
|
225842
226018
|
|
|
225843
226019
|
:host [part="header"] {
|
|
@@ -225909,11 +226085,7 @@ $7([
|
|
|
225909
226085
|
memphis: AEe,
|
|
225910
226086
|
cosmopolitan: OEe
|
|
225911
226087
|
},
|
|
225912
|
-
imports: [
|
|
225913
|
-
_S,
|
|
225914
|
-
W,
|
|
225915
|
-
sS
|
|
225916
|
-
]
|
|
226088
|
+
imports: [_S, W]
|
|
225917
226089
|
}), e9("design:paramtypes", [])], t9);
|
|
225918
226090
|
//#endregion
|
|
225919
226091
|
//#region ../mosaik-elements-foundation/dist/Accessability/Platform.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@breadstone/mosaik-elements": "0.1.
|
|
15
|
-
"@breadstone/mosaik-elements-foundation": "0.1.
|
|
14
|
+
"@breadstone/mosaik-elements": "0.1.3",
|
|
15
|
+
"@breadstone/mosaik-elements-foundation": "0.1.3",
|
|
16
16
|
"tslib": "2.8.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|