@breadstone/mosaik-elements-svelte 0.0.260 → 0.0.262
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 +10 -0
- package/index.mjs +12 -11
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.0.262 (2026-05-10)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **api:** update line numbers and references in documentation for MenuItemGroupElement, ListItemElement, and MenuItemElement ([08cc5bdbf9](https://github.com/RueDeRennes/mosaik/commit/08cc5bdbf9))
|
|
6
|
+
|
|
7
|
+
## 0.0.261 (2026-05-07)
|
|
8
|
+
|
|
9
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
10
|
+
|
|
1
11
|
## 0.0.260 (2026-05-07)
|
|
2
12
|
|
|
3
13
|
### 🚀 Features
|
package/index.mjs
CHANGED
|
@@ -101894,7 +101894,8 @@ function rU(e) {
|
|
|
101894
101894
|
.variant="${e.variant}"
|
|
101895
101895
|
@connected="${(t) => t.target.attach(e)}"></mosaik-ripple>
|
|
101896
101896
|
`)}
|
|
101897
|
-
<div part="prefix"
|
|
101897
|
+
<div part="prefix"
|
|
101898
|
+
?hidden="${!yM(e, "has-prefix", e.hasSlotContent("prefix"))}">
|
|
101898
101899
|
<slot name="prefix"></slot>
|
|
101899
101900
|
</div>
|
|
101900
101901
|
<div part="content">
|
|
@@ -101916,7 +101917,8 @@ function rU(e) {
|
|
|
101916
101917
|
`]
|
|
101917
101918
|
])}
|
|
101918
101919
|
</div>
|
|
101919
|
-
<div part="suffix"
|
|
101920
|
+
<div part="suffix"
|
|
101921
|
+
?hidden="${!yM(e, "has-suffix", e.hasSlotContent("suffix"))}">
|
|
101920
101922
|
<slot name="suffix"></slot>
|
|
101921
101923
|
</div>
|
|
101922
101924
|
`;
|
|
@@ -102029,7 +102031,6 @@ function iU() {
|
|
|
102029
102031
|
flex-direction: column;
|
|
102030
102032
|
flex: auto;
|
|
102031
102033
|
display: flex;
|
|
102032
|
-
overflow: hidden;
|
|
102033
102034
|
}
|
|
102034
102035
|
|
|
102035
102036
|
:host ::slotted(mosaik-text) {
|
|
@@ -102073,7 +102074,7 @@ function aU() {
|
|
|
102073
102074
|
--list-item-font-text-transform: var(--joy-typography-body1-text-transform);
|
|
102074
102075
|
--list-item-font-weight: var(--joy-typography-body1-font-weight);
|
|
102075
102076
|
--list-item-foreground-color: var(--joy-scheme-foreground);
|
|
102076
|
-
--list-item-gap: var(--joy-layout-space);
|
|
102077
|
+
--list-item-gap: calc(var(--joy-layout-space) * 3);
|
|
102077
102078
|
--list-item-padding-bottom: var(--joy-layout-space);
|
|
102078
102079
|
--list-item-padding-left: calc(var(--joy-layout-space) * 2);
|
|
102079
102080
|
--list-item-padding-right: calc(var(--joy-layout-space) * 2);
|
|
@@ -102159,7 +102160,6 @@ function aU() {
|
|
|
102159
102160
|
flex-direction: column;
|
|
102160
102161
|
flex: auto;
|
|
102161
102162
|
display: flex;
|
|
102162
|
-
overflow: hidden;
|
|
102163
102163
|
}
|
|
102164
102164
|
|
|
102165
102165
|
:host ::slotted(mosaik-text) {
|
|
@@ -102302,7 +102302,6 @@ function oU() {
|
|
|
102302
102302
|
flex-direction: column;
|
|
102303
102303
|
flex: auto;
|
|
102304
102304
|
display: flex;
|
|
102305
|
-
overflow: hidden;
|
|
102306
102305
|
}
|
|
102307
102306
|
|
|
102308
102307
|
:host ::slotted(mosaik-text) {
|
|
@@ -102333,11 +102332,10 @@ var sU = function(e, t, n, r) {
|
|
|
102333
102332
|
return i > 3 && a && Object.defineProperty(t, n, a), a;
|
|
102334
102333
|
}, cU = function(e, t) {
|
|
102335
102334
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
102336
|
-
}, lU = class extends F(kS(R(dS(z(TS(zI)))))) {
|
|
102337
|
-
_inheritance = ix(this, { context: nU });
|
|
102335
|
+
}, lU = class extends F(kS(R(dS(z(TS(Y(zI))))))) {
|
|
102338
102336
|
_isChecked;
|
|
102339
102337
|
constructor() {
|
|
102340
|
-
super(), this._isChecked = !1;
|
|
102338
|
+
super(), ix(this, { context: nU }), this._isChecked = !1;
|
|
102341
102339
|
}
|
|
102342
102340
|
static get is() {
|
|
102343
102341
|
return "mosaik-list-item";
|
|
@@ -123287,6 +123285,7 @@ function Kq(e) {
|
|
|
123287
123285
|
<mosaik-text .text="${e.label}"
|
|
123288
123286
|
.dir="${e.dir}"
|
|
123289
123287
|
.lang="${e.lang}"
|
|
123288
|
+
.formatter="${e.formatter}"
|
|
123290
123289
|
?truncate="${e.textOverflow === IA.Truncate}"
|
|
123291
123290
|
?wrap="${e.textOverflow === IA.Wrap}"
|
|
123292
123291
|
?disabled="${e.disabled}"></mosaik-text>
|
|
@@ -123297,6 +123296,7 @@ function Kq(e) {
|
|
|
123297
123296
|
<mosaik-text .text="${e.subLabel}"
|
|
123298
123297
|
.dir="${e.dir}"
|
|
123299
123298
|
.lang="${e.lang}"
|
|
123299
|
+
.formatter="${e.formatter}"
|
|
123300
123300
|
?disabled="${e.disabled}"></mosaik-text>
|
|
123301
123301
|
`)}
|
|
123302
123302
|
</slot>
|
|
@@ -124080,7 +124080,7 @@ var Xq = function(e, t, n, r) {
|
|
|
124080
124080
|
return i > 3 && a && Object.defineProperty(t, n, a), a;
|
|
124081
124081
|
}, Zq = function(e, t) {
|
|
124082
124082
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
124083
|
-
}, Qq, $q = class extends F(kS(R(dS(z(J(TS(Y(Hv(j))))))))) {
|
|
124083
|
+
}, Qq, $q = class extends F(kS(R(dS(z(J(TS(Y(zy(Hv(j)))))))))) {
|
|
124084
124084
|
static {
|
|
124085
124085
|
Qq = this;
|
|
124086
124086
|
}
|
|
@@ -209925,6 +209925,7 @@ function KCe(e) {
|
|
|
209925
209925
|
<slot name="header">
|
|
209926
209926
|
<mosaik-text part="header"
|
|
209927
209927
|
.text="${e.header}"
|
|
209928
|
+
.formatter="${e.formatter}"
|
|
209928
209929
|
?truncate="${e.textOverflow === IA.Truncate}"
|
|
209929
209930
|
?wrap="${e.textOverflow === IA.Wrap}"
|
|
209930
209931
|
.dir="${e.dir}"
|
|
@@ -210226,7 +210227,7 @@ var N5 = function(e, t, n, r) {
|
|
|
210226
210227
|
return i > 3 && a && Object.defineProperty(t, n, a), a;
|
|
210227
210228
|
}, P5 = function(e, t) {
|
|
210228
210229
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
210229
|
-
}, F5 = class extends F(Wb(j)) {
|
|
210230
|
+
}, F5 = class extends F(zy(Wb(j))) {
|
|
210230
210231
|
_header;
|
|
210231
210232
|
_textOverflow;
|
|
210232
210233
|
constructor() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.262",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"vite": "*"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
19
|
-
"@breadstone/mosaik-elements-foundation": "^0.0.
|
|
18
|
+
"@breadstone/mosaik-elements": "^0.0.262",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.262"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|