@breadstone/mosaik-elements-svelte 0.1.5 → 0.1.7
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 +13 -0
- package/index.mjs +128 -43
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 0.1.7 (2026-06-10)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **flowboard, scheduler:** add appearance property and show tools functionality ([5e34f86cc0](https://github.com/RueDeRennes/mosaik/commit/5e34f86cc0))
|
|
6
|
+
- **caveman:** add caveman prompt with intensity levels and usage examples ([18f6881aad](https://github.com/RueDeRennes/mosaik/commit/18f6881aad))
|
|
7
|
+
|
|
8
|
+
## 0.1.6 (2026-06-01)
|
|
9
|
+
|
|
10
|
+
### 🚀 Features
|
|
11
|
+
|
|
12
|
+
- **chat:** add minRows and maxRows properties to ChatInputElement and update templates ([f1e2f9ea3d](https://github.com/RueDeRennes/mosaik/commit/f1e2f9ea3d))
|
|
13
|
+
|
|
1
14
|
## 0.1.5 (2026-05-29)
|
|
2
15
|
|
|
3
16
|
### 🩹 Fixes
|
package/index.mjs
CHANGED
|
@@ -105996,7 +105996,7 @@ function GU(e) {
|
|
|
105996
105996
|
<mosaik-sticky part="sticky">
|
|
105997
105997
|
<slot name="header">
|
|
105998
105998
|
<mosaik-text part="header"
|
|
105999
|
-
.text="${e.header}
|
|
105999
|
+
.text="${e.header}"
|
|
106000
106000
|
.truncate="${!0}"></mosaik-text>
|
|
106001
106001
|
</slot>
|
|
106002
106002
|
<slot></slot>
|
|
@@ -106004,7 +106004,7 @@ function GU(e) {
|
|
|
106004
106004
|
`, () => V`
|
|
106005
106005
|
<slot name="header">
|
|
106006
106006
|
<mosaik-text part="header"
|
|
106007
|
-
.text="${e.header}
|
|
106007
|
+
.text="${e.header}"
|
|
106008
106008
|
.truncate="${!0}"></mosaik-text>
|
|
106009
106009
|
</slot>
|
|
106010
106010
|
<slot></slot>
|
|
@@ -112594,8 +112594,10 @@ function CG(e) {
|
|
|
112594
112594
|
function wG(e) {
|
|
112595
112595
|
return V`
|
|
112596
112596
|
<div part="root">
|
|
112597
|
-
<svg
|
|
112598
|
-
|
|
112597
|
+
<svg part="svg"
|
|
112598
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
112599
|
+
<line part="line"
|
|
112600
|
+
x1="${e.orientation === K.Vertical ? "50%" : "0"}"
|
|
112599
112601
|
y1="${e.orientation === K.Vertical ? "0" : "50%"}"
|
|
112600
112602
|
x2="${e.orientation === K.Vertical ? "50%" : "100%"}"
|
|
112601
112603
|
y2="${e.orientation === K.Vertical ? "100%" : "50%"}"/>
|
|
@@ -112677,14 +112679,13 @@ function TG() {
|
|
|
112677
112679
|
overflow: inherit;
|
|
112678
112680
|
}
|
|
112679
112681
|
|
|
112680
|
-
:host [part="root"] svg {
|
|
112682
|
+
:host [part="root"] [part="svg"] {
|
|
112681
112683
|
width: 100%;
|
|
112682
112684
|
height: 100%;
|
|
112683
112685
|
position: absolute;
|
|
112684
|
-
translate: -50%;
|
|
112685
112686
|
}
|
|
112686
112687
|
|
|
112687
|
-
:host [part="root"] svg line {
|
|
112688
|
+
:host [part="root"] [part="svg"] [part="line"] {
|
|
112688
112689
|
stroke: var(--divider-background-color);
|
|
112689
112690
|
stroke-width: var(--divider-thickness);
|
|
112690
112691
|
stroke-dasharray: none;
|
|
@@ -112773,14 +112774,13 @@ function EG() {
|
|
|
112773
112774
|
overflow: inherit;
|
|
112774
112775
|
}
|
|
112775
112776
|
|
|
112776
|
-
:host [part="root"] svg {
|
|
112777
|
+
:host [part="root"] [part="svg"] {
|
|
112777
112778
|
width: 100%;
|
|
112778
112779
|
height: 100%;
|
|
112779
112780
|
position: absolute;
|
|
112780
|
-
translate: -50%;
|
|
112781
112781
|
}
|
|
112782
112782
|
|
|
112783
|
-
:host [part="root"] svg line {
|
|
112783
|
+
:host [part="root"] [part="svg"] [part="line"] {
|
|
112784
112784
|
stroke: var(--divider-background-color);
|
|
112785
112785
|
stroke-width: var(--divider-thickness);
|
|
112786
112786
|
stroke-dasharray: none;
|
|
@@ -112873,14 +112873,13 @@ function DG() {
|
|
|
112873
112873
|
overflow: inherit;
|
|
112874
112874
|
}
|
|
112875
112875
|
|
|
112876
|
-
:host [part="root"] svg {
|
|
112876
|
+
:host [part="root"] [part="svg"] {
|
|
112877
112877
|
width: 100%;
|
|
112878
112878
|
height: 100%;
|
|
112879
112879
|
position: absolute;
|
|
112880
|
-
translate: -50%;
|
|
112881
112880
|
}
|
|
112882
112881
|
|
|
112883
|
-
:host [part="root"] svg line {
|
|
112882
|
+
:host [part="root"] [part="svg"] [part="line"] {
|
|
112884
112883
|
stroke: var(--divider-background-color);
|
|
112885
112884
|
stroke-width: var(--divider-thickness);
|
|
112886
112885
|
stroke-dasharray: none;
|
|
@@ -114687,6 +114686,7 @@ var WG = class {
|
|
|
114687
114686
|
dayFormat: "d",
|
|
114688
114687
|
timeFormat: "HH:mm",
|
|
114689
114688
|
monthDayFormat: "MMM d",
|
|
114689
|
+
showTools: !1,
|
|
114690
114690
|
appearance: lS.DEFAULTS.appearance,
|
|
114691
114691
|
variant: ob.DEFAULTS.variant,
|
|
114692
114692
|
locale: mL.DEFAULTS.locale,
|
|
@@ -114796,11 +114796,12 @@ function QG(e) {
|
|
|
114796
114796
|
function $G(e) {
|
|
114797
114797
|
return V`
|
|
114798
114798
|
<div part="container">
|
|
114799
|
-
|
|
114800
|
-
|
|
114801
|
-
|
|
114802
|
-
|
|
114803
|
-
|
|
114799
|
+
${U(e.showTools, () => V`
|
|
114800
|
+
<mosaik-toolbar part="toolbar"
|
|
114801
|
+
.dir="${e.dir}"
|
|
114802
|
+
.lang="${e.lang}"
|
|
114803
|
+
.appearance="${"plain"}">
|
|
114804
|
+
<mosaik-button-group slot="start"
|
|
114804
114805
|
.dir="${e.dir}"
|
|
114805
114806
|
.lang="${e.lang}"
|
|
114806
114807
|
.appearance="${e.appearance}"
|
|
@@ -114821,6 +114822,7 @@ function $G(e) {
|
|
|
114821
114822
|
</mosaik-button-group>
|
|
114822
114823
|
<slot name="toolbar"></slot>
|
|
114823
114824
|
</mosaik-toolbar>
|
|
114825
|
+
`)}
|
|
114824
114826
|
${e.view === "timeGrid" ? XG(e) : null}
|
|
114825
114827
|
${e.view === "month" ? ZG(e) : null}
|
|
114826
114828
|
${e.view === "agenda" ? QG(e) : null}
|
|
@@ -122034,6 +122036,7 @@ var _q = function(e, t, n, r) {
|
|
|
122034
122036
|
_dayFormat;
|
|
122035
122037
|
_timeFormat;
|
|
122036
122038
|
_monthDayFormat;
|
|
122039
|
+
_showTools;
|
|
122037
122040
|
constructor() {
|
|
122038
122041
|
super(), this._intl = EI(this, { factory: () => new qG(this.locale) }), XS(this, {
|
|
122039
122042
|
context: mK,
|
|
@@ -122060,7 +122063,7 @@ var _q = function(e, t, n, r) {
|
|
|
122060
122063
|
}), XS(this, {
|
|
122061
122064
|
context: oK,
|
|
122062
122065
|
values: () => ({ view: this.view })
|
|
122063
|
-
}), YS(this), this._view = JG.DEFAULTS.view, this._startDate = JG.DEFAULTS.startDate, this._days = JG.DEFAULTS.days, this._hourStart = JG.DEFAULTS.hourStart, this._hourEnd = JG.DEFAULTS.hourEnd, this._stepMinutes = JG.DEFAULTS.stepMinutes, this._timezone = JG.DEFAULTS.timezone, this._blackoutDates = JG.DEFAULTS.blackoutDates, this._specialDates = JG.DEFAULTS.specialDates, this._firstDayOfWeek = JG.DEFAULTS.firstDayOfWeek, this._isTodayHighlighted = JG.DEFAULTS.isTodayHighlighted, this._isWeekendHighlighted = JG.DEFAULTS.isWeekendHighlighted, this._showWeekNumbers = JG.DEFAULTS.showWeekNumbers, this._showAdjacent = JG.DEFAULTS.showAdjacent, this._daysAhead = JG.DEFAULTS.daysAhead, this._allDayVisibility = JG.DEFAULTS.allDayVisibility, this._visibleDates = [], this._collectedEvents = [], this._eventsByDay = /* @__PURE__ */ new Map(), this._allDayEventsByDay = /* @__PURE__ */ new Map(), this._schedulerBeforeEventActivate = new E(this, "schedulerBeforeEventActivate"), this._schedulerEventActivate = new E(this, "schedulerEventActivate"), this._schedulerBeforeSelectRange = new E(this, "schedulerBeforeSelectRange"), this._schedulerSelectRange = new E(this, "schedulerSelectRange"), this._schedulerRangeChange = new E(this, "schedulerRangeChange"), this._mutationObserver = null, this._nowIndicatorIntervalId = null, this._weekdayFormat = JG.DEFAULTS.weekdayFormat, this._dayFormat = JG.DEFAULTS.dayFormat, this._timeFormat = JG.DEFAULTS.timeFormat, this._monthDayFormat = JG.DEFAULTS.monthDayFormat;
|
|
122066
|
+
}), YS(this), this._view = JG.DEFAULTS.view, this._startDate = JG.DEFAULTS.startDate, this._days = JG.DEFAULTS.days, this._hourStart = JG.DEFAULTS.hourStart, this._hourEnd = JG.DEFAULTS.hourEnd, this._stepMinutes = JG.DEFAULTS.stepMinutes, this._timezone = JG.DEFAULTS.timezone, this._blackoutDates = JG.DEFAULTS.blackoutDates, this._specialDates = JG.DEFAULTS.specialDates, this._firstDayOfWeek = JG.DEFAULTS.firstDayOfWeek, this._isTodayHighlighted = JG.DEFAULTS.isTodayHighlighted, this._isWeekendHighlighted = JG.DEFAULTS.isWeekendHighlighted, this._showWeekNumbers = JG.DEFAULTS.showWeekNumbers, this._showAdjacent = JG.DEFAULTS.showAdjacent, this._daysAhead = JG.DEFAULTS.daysAhead, this._allDayVisibility = JG.DEFAULTS.allDayVisibility, this._visibleDates = [], this._collectedEvents = [], this._eventsByDay = /* @__PURE__ */ new Map(), this._allDayEventsByDay = /* @__PURE__ */ new Map(), this._schedulerBeforeEventActivate = new E(this, "schedulerBeforeEventActivate"), this._schedulerEventActivate = new E(this, "schedulerEventActivate"), this._schedulerBeforeSelectRange = new E(this, "schedulerBeforeSelectRange"), this._schedulerSelectRange = new E(this, "schedulerSelectRange"), this._schedulerRangeChange = new E(this, "schedulerRangeChange"), this._mutationObserver = null, this._nowIndicatorIntervalId = null, this._showTools = JG.DEFAULTS.showTools, this._weekdayFormat = JG.DEFAULTS.weekdayFormat, this._dayFormat = JG.DEFAULTS.dayFormat, this._timeFormat = JG.DEFAULTS.timeFormat, this._monthDayFormat = JG.DEFAULTS.monthDayFormat;
|
|
122064
122067
|
}
|
|
122065
122068
|
static get is() {
|
|
122066
122069
|
return "mosaik-scheduler";
|
|
@@ -122188,6 +122191,18 @@ var _q = function(e, t, n, r) {
|
|
|
122188
122191
|
set monthDayFormat(e) {
|
|
122189
122192
|
this._monthDayFormat !== e && (this._monthDayFormat = e, this.requestUpdate("monthDayFormat"));
|
|
122190
122193
|
}
|
|
122194
|
+
get intl() {
|
|
122195
|
+
return this._intl.intl;
|
|
122196
|
+
}
|
|
122197
|
+
set intl(e) {
|
|
122198
|
+
this._intl.provide(e);
|
|
122199
|
+
}
|
|
122200
|
+
get showTools() {
|
|
122201
|
+
return this._showTools;
|
|
122202
|
+
}
|
|
122203
|
+
set showTools(e) {
|
|
122204
|
+
this._showTools !== e && (this._showTools = e, this.requestUpdate("showTools"));
|
|
122205
|
+
}
|
|
122191
122206
|
get visibleDates() {
|
|
122192
122207
|
return this._visibleDates;
|
|
122193
122208
|
}
|
|
@@ -122200,12 +122215,6 @@ var _q = function(e, t, n, r) {
|
|
|
122200
122215
|
get timeSlots() {
|
|
122201
122216
|
return mI(this._hourStart, this._hourEnd, this._stepMinutes, this.locale, (e, t) => WG.format(e, this.timeFormat, t));
|
|
122202
122217
|
}
|
|
122203
|
-
get intl() {
|
|
122204
|
-
return this._intl.intl;
|
|
122205
|
-
}
|
|
122206
|
-
set intl(e) {
|
|
122207
|
-
this._intl.provide(e);
|
|
122208
|
-
}
|
|
122209
122218
|
get schedulerBeforeEventActivate() {
|
|
122210
122219
|
return this._schedulerBeforeEventActivate;
|
|
122211
122220
|
}
|
|
@@ -122588,6 +122597,10 @@ _q([
|
|
|
122588
122597
|
vq("design:type", qG),
|
|
122589
122598
|
vq("design:paramtypes", [qG])
|
|
122590
122599
|
], yq.prototype, "intl", null), _q([
|
|
122600
|
+
P({ type: Boolean }),
|
|
122601
|
+
vq("design:type", Boolean),
|
|
122602
|
+
vq("design:paramtypes", [Boolean])
|
|
122603
|
+
], yq.prototype, "showTools", null), _q([
|
|
122591
122604
|
k({ eventName: "schedulerBeforeEventActivate" }),
|
|
122592
122605
|
vq("design:type", Object),
|
|
122593
122606
|
vq("design:paramtypes", [])
|
|
@@ -134833,7 +134846,8 @@ var VX = Lx(Symbol.for("mosaik:flow-board:inheritance")), HX;
|
|
|
134833
134846
|
e.DEFAULTS = {
|
|
134834
134847
|
columnKey: "",
|
|
134835
134848
|
reorderable: !1,
|
|
134836
|
-
pinned: !1
|
|
134849
|
+
pinned: !1,
|
|
134850
|
+
appearance: lS.DEFAULTS.appearance
|
|
134837
134851
|
};
|
|
134838
134852
|
})(HX ||= {});
|
|
134839
134853
|
//#endregion
|
|
@@ -135162,6 +135176,28 @@ function WX() {
|
|
|
135162
135176
|
outline: 2px dashed;
|
|
135163
135177
|
}
|
|
135164
135178
|
|
|
135179
|
+
:host([appearance="outline"]) {
|
|
135180
|
+
--flow-board-column-shadow: none;
|
|
135181
|
+
--flow-board-column-border-width: var(--joy-layout-thickness);
|
|
135182
|
+
--flow-board-column-background-color: var(--joy-scheme-highlight);
|
|
135183
|
+
}
|
|
135184
|
+
|
|
135185
|
+
:host([appearance="plain"]) {
|
|
135186
|
+
--flow-board-column-shadow: none;
|
|
135187
|
+
--flow-board-column-border-width: 0px;
|
|
135188
|
+
}
|
|
135189
|
+
|
|
135190
|
+
:host([appearance="soft"]) {
|
|
135191
|
+
--flow-board-column-shadow: none;
|
|
135192
|
+
--flow-board-column-border-width: 0px;
|
|
135193
|
+
--flow-board-column-background-color: var(--joy-scheme-highlight);
|
|
135194
|
+
}
|
|
135195
|
+
|
|
135196
|
+
:host([appearance="solid"]) {
|
|
135197
|
+
--flow-board-column-shadow: none;
|
|
135198
|
+
--flow-board-column-border-width: 0px;
|
|
135199
|
+
}
|
|
135200
|
+
|
|
135165
135201
|
`;
|
|
135166
135202
|
}
|
|
135167
135203
|
//#endregion
|
|
@@ -135337,20 +135373,19 @@ var KX = function(e, t, n, r) {
|
|
|
135337
135373
|
return i > 3 && a && Object.defineProperty(t, n, a), a;
|
|
135338
135374
|
}, qX = function(e, t) {
|
|
135339
135375
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
135340
|
-
}, JX, YX = JX = class extends F(Y(j)) {
|
|
135376
|
+
}, JX, YX = JX = class extends F(Y(J(j))) {
|
|
135341
135377
|
_columnKey;
|
|
135342
135378
|
_reorderable;
|
|
135343
135379
|
_pinned;
|
|
135344
135380
|
_hasItems;
|
|
135345
135381
|
_flowBoardBeforeColumnPinChange;
|
|
135346
135382
|
_flowBoardColumnPinChange;
|
|
135347
|
-
_slotController;
|
|
135348
135383
|
_inheritance;
|
|
135349
135384
|
_provider;
|
|
135350
135385
|
_dragCtrl;
|
|
135351
135386
|
_itemDropList;
|
|
135352
135387
|
constructor() {
|
|
135353
|
-
super(), this._columnKey = HX.DEFAULTS.columnKey, this._reorderable = HX.DEFAULTS.reorderable, this._pinned = HX.DEFAULTS.pinned, this._hasItems = !1, this._flowBoardBeforeColumnPinChange = new E(this, "flowBoardBeforeColumnPinChange"), this._flowBoardColumnPinChange = new E(this, "flowBoardColumnPinChange"), this.
|
|
135388
|
+
super(), this._columnKey = HX.DEFAULTS.columnKey, this._reorderable = HX.DEFAULTS.reorderable, this._pinned = HX.DEFAULTS.pinned, this._hasItems = !1, this._flowBoardBeforeColumnPinChange = new E(this, "flowBoardBeforeColumnPinChange"), this._flowBoardColumnPinChange = new E(this, "flowBoardColumnPinChange"), this._inheritance = zx(this, { context: VX }), this._provider = XS(this, {
|
|
135354
135389
|
context: wX,
|
|
135355
135390
|
values: () => ({ columnKey: this._columnKey })
|
|
135356
135391
|
}), this._dragCtrl = new vX(this, { disabled: !0 }), this._itemDropList = new yX(this, {
|
|
@@ -135866,7 +135901,6 @@ var nZ = function(e, t, n, r) {
|
|
|
135866
135901
|
_flowBoardItemMove;
|
|
135867
135902
|
_flowBoardDragStart;
|
|
135868
135903
|
_provider;
|
|
135869
|
-
_slotController;
|
|
135870
135904
|
_inlineStyleController;
|
|
135871
135905
|
_columnDropList;
|
|
135872
135906
|
constructor() {
|
|
@@ -135877,7 +135911,7 @@ var nZ = function(e, t, n, r) {
|
|
|
135877
135911
|
displayMode: this.displayMode,
|
|
135878
135912
|
scrollMode: this.scrollMode
|
|
135879
135913
|
})
|
|
135880
|
-
}), this.
|
|
135914
|
+
}), this._inlineStyleController = new eS(this), this._columnDropList = new yX(this, {
|
|
135881
135915
|
orientation: "horizontal",
|
|
135882
135916
|
disabled: !this._dragdrop
|
|
135883
135917
|
});
|
|
@@ -151860,15 +151894,18 @@ function wme(e) {
|
|
|
151860
151894
|
return V`
|
|
151861
151895
|
<slot name="header"></slot>
|
|
151862
151896
|
<div part="messagesWrapper">
|
|
151863
|
-
<
|
|
151864
|
-
|
|
151865
|
-
|
|
151866
|
-
|
|
151867
|
-
|
|
151868
|
-
|
|
151869
|
-
|
|
151870
|
-
|
|
151871
|
-
|
|
151897
|
+
<mosaik-scroll part="scroll"
|
|
151898
|
+
.orientation="${"vertical"}">
|
|
151899
|
+
<div part="messages">
|
|
151900
|
+
<slot name="message"></slot>
|
|
151901
|
+
${U(e.scrollToEnd, () => V`
|
|
151902
|
+
<mosaik-back-top part="backTop"
|
|
151903
|
+
.dir="${e.dir}"
|
|
151904
|
+
.lang="${e.lang}"
|
|
151905
|
+
.to="${"bottom"}"></mosaik-back-top>
|
|
151906
|
+
`)}
|
|
151907
|
+
</div>
|
|
151908
|
+
</mosaik-scroll>
|
|
151872
151909
|
</div>
|
|
151873
151910
|
<div part="empty">
|
|
151874
151911
|
<slot name="empty"></slot>
|
|
@@ -152989,6 +153026,8 @@ function Wme(e) {
|
|
|
152989
153026
|
.dir="${e.dir}"
|
|
152990
153027
|
.placeholder="${e.placeholder}"
|
|
152991
153028
|
.multiline="${!0}"
|
|
153029
|
+
.multilineRows="${e.minRows}"
|
|
153030
|
+
.multilineMaxRows="${e.maxRows}"
|
|
152992
153031
|
.value="${Wb(e.value.message)}"
|
|
152993
153032
|
.appearance="${q.Plain}"
|
|
152994
153033
|
.variant="${e.variant}"
|
|
@@ -153501,6 +153540,8 @@ var Y$ = function(e, t, n, r) {
|
|
|
153501
153540
|
_transformer;
|
|
153502
153541
|
_value;
|
|
153503
153542
|
_placeholder;
|
|
153543
|
+
_minRows;
|
|
153544
|
+
_maxRows;
|
|
153504
153545
|
constructor() {
|
|
153505
153546
|
super(), this._value = {
|
|
153506
153547
|
message: "",
|
|
@@ -153511,7 +153552,7 @@ var Y$ = function(e, t, n, r) {
|
|
|
153511
153552
|
files: e.files
|
|
153512
153553
|
},
|
|
153513
153554
|
isValid: () => !!e.text.length
|
|
153514
|
-
}), this._submitted = new E(this, "chatSubmit", { bubbles: !1 });
|
|
153555
|
+
}), this._minRows = 1, this._maxRows = 12, this._submitted = new E(this, "chatSubmit", { bubbles: !1 });
|
|
153515
153556
|
}
|
|
153516
153557
|
static get is() {
|
|
153517
153558
|
return "mosaik-chat-input";
|
|
@@ -153522,6 +153563,18 @@ var Y$ = function(e, t, n, r) {
|
|
|
153522
153563
|
set value(e) {
|
|
153523
153564
|
this._value !== e && (this._value = e, this.requestUpdate("value"));
|
|
153524
153565
|
}
|
|
153566
|
+
get minRows() {
|
|
153567
|
+
return this._minRows;
|
|
153568
|
+
}
|
|
153569
|
+
set minRows(e) {
|
|
153570
|
+
this._minRows !== e && (this._minRows = e, this.requestUpdate("minRows"));
|
|
153571
|
+
}
|
|
153572
|
+
get maxRows() {
|
|
153573
|
+
return this._maxRows;
|
|
153574
|
+
}
|
|
153575
|
+
set maxRows(e) {
|
|
153576
|
+
this._maxRows !== e && (this._maxRows = e, this.requestUpdate("maxRows"));
|
|
153577
|
+
}
|
|
153525
153578
|
get placeholder() {
|
|
153526
153579
|
return this._placeholder;
|
|
153527
153580
|
}
|
|
@@ -153597,6 +153650,14 @@ Y$([
|
|
|
153597
153650
|
X$("design:type", Object),
|
|
153598
153651
|
X$("design:paramtypes", [Object])
|
|
153599
153652
|
], Z$.prototype, "value", null), Y$([
|
|
153653
|
+
P({ type: Number }),
|
|
153654
|
+
X$("design:type", Number),
|
|
153655
|
+
X$("design:paramtypes", [Number])
|
|
153656
|
+
], Z$.prototype, "minRows", null), Y$([
|
|
153657
|
+
P({ type: Number }),
|
|
153658
|
+
X$("design:type", Number),
|
|
153659
|
+
X$("design:paramtypes", [Number])
|
|
153660
|
+
], Z$.prototype, "maxRows", null), Y$([
|
|
153600
153661
|
A({ type: String }),
|
|
153601
153662
|
X$("design:type", String),
|
|
153602
153663
|
X$("design:paramtypes", [String])
|
|
@@ -153765,6 +153826,10 @@ function Yme() {
|
|
|
153765
153826
|
display: inline-flex;
|
|
153766
153827
|
}
|
|
153767
153828
|
|
|
153829
|
+
:host [part="divider"]::part(svg) {
|
|
153830
|
+
translate: -50%;
|
|
153831
|
+
}
|
|
153832
|
+
|
|
153768
153833
|
:host [part="text"] {
|
|
153769
153834
|
flex-shrink: 0;
|
|
153770
153835
|
}
|
|
@@ -153865,6 +153930,10 @@ function Xme() {
|
|
|
153865
153930
|
display: inline-flex;
|
|
153866
153931
|
}
|
|
153867
153932
|
|
|
153933
|
+
:host [part="divider"]::part(svg) {
|
|
153934
|
+
translate: -50%;
|
|
153935
|
+
}
|
|
153936
|
+
|
|
153868
153937
|
:host [part="text"] {
|
|
153869
153938
|
flex-shrink: 0;
|
|
153870
153939
|
}
|
|
@@ -153965,6 +154034,10 @@ function Zme() {
|
|
|
153965
154034
|
display: inline-flex;
|
|
153966
154035
|
}
|
|
153967
154036
|
|
|
154037
|
+
:host [part="divider"]::part(svg) {
|
|
154038
|
+
translate: -50%;
|
|
154039
|
+
}
|
|
154040
|
+
|
|
153968
154041
|
:host [part="text"] {
|
|
153969
154042
|
flex-shrink: 0;
|
|
153970
154043
|
}
|
|
@@ -155541,6 +155614,10 @@ function ohe() {
|
|
|
155541
155614
|
overflow: hidden;
|
|
155542
155615
|
}
|
|
155543
155616
|
|
|
155617
|
+
:host [part="scroll"] {
|
|
155618
|
+
height: 100%;
|
|
155619
|
+
}
|
|
155620
|
+
|
|
155544
155621
|
:host [part="messages"] {
|
|
155545
155622
|
padding-top: var(--chat-padding-top);
|
|
155546
155623
|
padding-right: var(--chat-padding-right);
|
|
@@ -155680,6 +155757,10 @@ function she() {
|
|
|
155680
155757
|
overflow: hidden;
|
|
155681
155758
|
}
|
|
155682
155759
|
|
|
155760
|
+
:host [part="scroll"] {
|
|
155761
|
+
height: 100%;
|
|
155762
|
+
}
|
|
155763
|
+
|
|
155683
155764
|
:host [part="messages"] {
|
|
155684
155765
|
padding-top: var(--chat-padding-top);
|
|
155685
155766
|
padding-right: var(--chat-padding-right);
|
|
@@ -155828,6 +155909,10 @@ function che() {
|
|
|
155828
155909
|
overflow: hidden;
|
|
155829
155910
|
}
|
|
155830
155911
|
|
|
155912
|
+
:host [part="scroll"] {
|
|
155913
|
+
height: 100%;
|
|
155914
|
+
}
|
|
155915
|
+
|
|
155831
155916
|
:host [part="messages"] {
|
|
155832
155917
|
padding-top: var(--chat-padding-top);
|
|
155833
155918
|
padding-right: var(--chat-padding-right);
|
|
@@ -208651,7 +208736,7 @@ var FCe = function(e, t, n, r) {
|
|
|
208651
208736
|
e.DEFAULTS = { textOverflow: WA.Truncate };
|
|
208652
208737
|
})(Z8 ||= {});
|
|
208653
208738
|
//#endregion
|
|
208654
|
-
//#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/Table/
|
|
208739
|
+
//#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/Table/Abstracts2/TableCellBaseElement.js
|
|
208655
208740
|
var Q8 = function(e, t, n, r) {
|
|
208656
208741
|
var i = arguments.length, a = i < 3 ? t : r === null ? r = Object.getOwnPropertyDescriptor(t, n) : r, o;
|
|
208657
208742
|
if (typeof Reflect == "object" && typeof Reflect.decorate == "function") a = Reflect.decorate(e, t, n, r);
|
|
@@ -209552,7 +209637,7 @@ n5([
|
|
|
209552
209637
|
imports: [W]
|
|
209553
209638
|
}), r5("design:paramtypes", [])], i5);
|
|
209554
209639
|
//#endregion
|
|
209555
|
-
//#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/Table/
|
|
209640
|
+
//#region ../mosaik-elements-foundation/dist/Controls/Components/Selectors/Table/Abstracts2/TableRowBaseElement.js
|
|
209556
209641
|
var a5 = class extends R(j) {
|
|
209557
209642
|
_columnsChangedSubscription;
|
|
209558
209643
|
_hasTableColumns;
|
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.7",
|
|
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.7",
|
|
15
|
+
"@breadstone/mosaik-elements-foundation": "0.1.7",
|
|
16
16
|
"tslib": "2.8.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|