@breadstone/mosaik-elements-svelte 0.1.39 → 0.1.41
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 +97 -20
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.1.41 (2026-07-02)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.1.40 (2026-07-02)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- **color-swatch:** add handleClick method to ColorSwatchElement class ([a148cc032d](https://github.com/RueDeRennes/mosaik/commit/a148cc032d))
|
|
10
|
+
|
|
1
11
|
## 0.1.39 (2026-06-29)
|
|
2
12
|
|
|
3
13
|
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
|
@@ -108096,17 +108096,21 @@ function JU(e) {
|
|
|
108096
108096
|
${U(e.isSticky, () => V`
|
|
108097
108097
|
<mosaik-sticky part="sticky">
|
|
108098
108098
|
<slot name="header">
|
|
108099
|
+
${U(e.header.trim(), () => V`
|
|
108099
108100
|
<mosaik-text part="header"
|
|
108100
108101
|
.text="${e.header}"
|
|
108101
108102
|
.truncate="${!0}"></mosaik-text>
|
|
108103
|
+
`)}
|
|
108102
108104
|
</slot>
|
|
108103
108105
|
<slot></slot>
|
|
108104
108106
|
</mosaik-sticky>
|
|
108105
108107
|
`, () => V`
|
|
108106
108108
|
<slot name="header">
|
|
108109
|
+
${U(e.header.trim(), () => V`
|
|
108107
108110
|
<mosaik-text part="header"
|
|
108108
108111
|
.text="${e.header}"
|
|
108109
108112
|
.truncate="${!0}"></mosaik-text>
|
|
108113
|
+
`)}
|
|
108110
108114
|
</slot>
|
|
108111
108115
|
<slot></slot>
|
|
108112
108116
|
`)}
|
|
@@ -108191,13 +108195,39 @@ function YU() {
|
|
|
108191
108195
|
|
|
108192
108196
|
:host [part="header"] {
|
|
108193
108197
|
text-transform: uppercase;
|
|
108194
|
-
letter-spacing: .5px;
|
|
108195
|
-
color: var(--joy-color-neutral-500);
|
|
108196
|
-
padding: 16px;
|
|
108197
|
-
font-size: 10px;
|
|
108198
108198
|
font-weight: 700;
|
|
108199
108199
|
}
|
|
108200
108200
|
|
|
108201
|
+
:host slot[name="header"] {
|
|
108202
|
+
font-family: var(--list-item-group-overline-font-family);
|
|
108203
|
+
font-size: var(--list-item-group-overline-font-size);
|
|
108204
|
+
line-height: var(--list-item-group-overline-font-line-height);
|
|
108205
|
+
letter-spacing: var(--list-item-group-overline-font-letter-spacing);
|
|
108206
|
+
-webkit-text-decoration: var(--list-item-group-overline-font-text-decoration);
|
|
108207
|
+
text-decoration: var(--list-item-group-overline-font-text-decoration);
|
|
108208
|
+
text-transform: uppercase;
|
|
108209
|
+
padding-bottom: var(--joy-layout-space);
|
|
108210
|
+
padding-left: calc(var(--joy-layout-space) * 2);
|
|
108211
|
+
padding-right: calc(var(--joy-layout-space) * 2);
|
|
108212
|
+
padding-top: var(--joy-layout-space);
|
|
108213
|
+
font-weight: 700;
|
|
108214
|
+
}
|
|
108215
|
+
|
|
108216
|
+
:host slot[name="header"] mosaik-text {
|
|
108217
|
+
font-family: inherit;
|
|
108218
|
+
font-size: inherit;
|
|
108219
|
+
line-height: inherit;
|
|
108220
|
+
font-weight: inherit;
|
|
108221
|
+
letter-spacing: inherit;
|
|
108222
|
+
text-decoration: inherit;
|
|
108223
|
+
text-transform: inherit;
|
|
108224
|
+
padding: inherit;
|
|
108225
|
+
}
|
|
108226
|
+
|
|
108227
|
+
:host [part="header"] {
|
|
108228
|
+
color: var(--joy-color-neutral-500);
|
|
108229
|
+
}
|
|
108230
|
+
|
|
108201
108231
|
`;
|
|
108202
108232
|
}
|
|
108203
108233
|
//#endregion
|
|
@@ -108279,12 +108309,35 @@ function XU() {
|
|
|
108279
108309
|
|
|
108280
108310
|
:host [part="header"] {
|
|
108281
108311
|
text-transform: uppercase;
|
|
108282
|
-
letter-spacing: .5px;
|
|
108283
|
-
padding: 16px;
|
|
108284
|
-
font-size: 10px;
|
|
108285
108312
|
font-weight: 700;
|
|
108286
108313
|
}
|
|
108287
108314
|
|
|
108315
|
+
:host slot[name="header"] {
|
|
108316
|
+
font-family: var(--list-item-group-overline-font-family);
|
|
108317
|
+
font-size: var(--list-item-group-overline-font-size);
|
|
108318
|
+
line-height: var(--list-item-group-overline-font-line-height);
|
|
108319
|
+
letter-spacing: var(--list-item-group-overline-font-letter-spacing);
|
|
108320
|
+
-webkit-text-decoration: var(--list-item-group-overline-font-text-decoration);
|
|
108321
|
+
text-decoration: var(--list-item-group-overline-font-text-decoration);
|
|
108322
|
+
text-transform: uppercase;
|
|
108323
|
+
padding-bottom: var(--joy-layout-space);
|
|
108324
|
+
padding-left: calc(var(--joy-layout-space) * 2);
|
|
108325
|
+
padding-right: calc(var(--joy-layout-space) * 2);
|
|
108326
|
+
padding-top: var(--joy-layout-space);
|
|
108327
|
+
font-weight: 700;
|
|
108328
|
+
}
|
|
108329
|
+
|
|
108330
|
+
:host slot[name="header"] mosaik-text {
|
|
108331
|
+
font-family: inherit;
|
|
108332
|
+
font-size: inherit;
|
|
108333
|
+
line-height: inherit;
|
|
108334
|
+
font-weight: inherit;
|
|
108335
|
+
letter-spacing: inherit;
|
|
108336
|
+
text-decoration: inherit;
|
|
108337
|
+
text-transform: inherit;
|
|
108338
|
+
padding: inherit;
|
|
108339
|
+
}
|
|
108340
|
+
|
|
108288
108341
|
`;
|
|
108289
108342
|
}
|
|
108290
108343
|
//#endregion
|
|
@@ -108366,12 +108419,35 @@ function ZU() {
|
|
|
108366
108419
|
|
|
108367
108420
|
:host [part="header"] {
|
|
108368
108421
|
text-transform: uppercase;
|
|
108369
|
-
letter-spacing: .5px;
|
|
108370
|
-
padding: 16px;
|
|
108371
|
-
font-size: 10px;
|
|
108372
108422
|
font-weight: 700;
|
|
108373
108423
|
}
|
|
108374
108424
|
|
|
108425
|
+
:host slot[name="header"] {
|
|
108426
|
+
font-family: var(--list-item-group-overline-font-family);
|
|
108427
|
+
font-size: var(--list-item-group-overline-font-size);
|
|
108428
|
+
line-height: var(--list-item-group-overline-font-line-height);
|
|
108429
|
+
letter-spacing: var(--list-item-group-overline-font-letter-spacing);
|
|
108430
|
+
-webkit-text-decoration: var(--list-item-group-overline-font-text-decoration);
|
|
108431
|
+
text-decoration: var(--list-item-group-overline-font-text-decoration);
|
|
108432
|
+
text-transform: uppercase;
|
|
108433
|
+
padding-bottom: var(--joy-layout-space);
|
|
108434
|
+
padding-left: calc(var(--joy-layout-space) * 2);
|
|
108435
|
+
padding-right: calc(var(--joy-layout-space) * 2);
|
|
108436
|
+
padding-top: var(--joy-layout-space);
|
|
108437
|
+
font-weight: 700;
|
|
108438
|
+
}
|
|
108439
|
+
|
|
108440
|
+
:host slot[name="header"] mosaik-text {
|
|
108441
|
+
font-family: inherit;
|
|
108442
|
+
font-size: inherit;
|
|
108443
|
+
line-height: inherit;
|
|
108444
|
+
font-weight: inherit;
|
|
108445
|
+
letter-spacing: inherit;
|
|
108446
|
+
text-decoration: inherit;
|
|
108447
|
+
text-transform: inherit;
|
|
108448
|
+
padding: inherit;
|
|
108449
|
+
}
|
|
108450
|
+
|
|
108375
108451
|
`;
|
|
108376
108452
|
}
|
|
108377
108453
|
//#endregion
|
|
@@ -152244,7 +152320,8 @@ function Ume(e) {
|
|
|
152244
152320
|
`)}
|
|
152245
152321
|
${U(e.label.trim(), () => V`
|
|
152246
152322
|
<mosaik-text part="label"
|
|
152247
|
-
.text="${e.label}"
|
|
152323
|
+
.text="${e.label}"
|
|
152324
|
+
.truncate="${!0}"></mosaik-text>
|
|
152248
152325
|
`)}
|
|
152249
152326
|
`;
|
|
152250
152327
|
}
|
|
@@ -160763,20 +160840,20 @@ function oge() {
|
|
|
160763
160840
|
border-style: var(--chip-group-border-style);
|
|
160764
160841
|
box-shadow: var(--chip-group-shadow);
|
|
160765
160842
|
flex-direction: row;
|
|
160843
|
+
justify-content: flex-start;
|
|
160766
160844
|
align-items: flex-start;
|
|
160767
160845
|
display: flex;
|
|
160768
160846
|
}
|
|
160769
160847
|
|
|
160770
160848
|
:host [part="root"] {
|
|
160771
160849
|
flex-direction: inherit;
|
|
160772
|
-
align-items: flex-start;
|
|
160773
160850
|
gap: inherit;
|
|
160774
160851
|
scrollbar-width: none;
|
|
160775
160852
|
scrollbar-color: transparent;
|
|
160853
|
+
align-items: inherit;
|
|
160776
160854
|
flex-wrap: nowrap;
|
|
160777
|
-
align-items: center;
|
|
160778
160855
|
display: inline-flex;
|
|
160779
|
-
overflow:
|
|
160856
|
+
overflow-x: auto;
|
|
160780
160857
|
}
|
|
160781
160858
|
|
|
160782
160859
|
:host [part="root"] ::slotted(mosaik-chip) {
|
|
@@ -160877,20 +160954,20 @@ function sge() {
|
|
|
160877
160954
|
border-style: var(--chip-group-border-style);
|
|
160878
160955
|
box-shadow: var(--chip-group-shadow);
|
|
160879
160956
|
flex-direction: row;
|
|
160957
|
+
justify-content: flex-start;
|
|
160880
160958
|
align-items: flex-start;
|
|
160881
160959
|
display: flex;
|
|
160882
160960
|
}
|
|
160883
160961
|
|
|
160884
160962
|
:host [part="root"] {
|
|
160885
160963
|
flex-direction: inherit;
|
|
160886
|
-
align-items: flex-start;
|
|
160887
160964
|
gap: inherit;
|
|
160888
160965
|
scrollbar-width: none;
|
|
160889
160966
|
scrollbar-color: transparent;
|
|
160967
|
+
align-items: inherit;
|
|
160890
160968
|
flex-wrap: nowrap;
|
|
160891
|
-
align-items: center;
|
|
160892
160969
|
display: inline-flex;
|
|
160893
|
-
overflow:
|
|
160970
|
+
overflow-x: auto;
|
|
160894
160971
|
}
|
|
160895
160972
|
|
|
160896
160973
|
:host [part="root"] ::slotted(mosaik-chip) {
|
|
@@ -160991,20 +161068,20 @@ function cge() {
|
|
|
160991
161068
|
border-style: var(--chip-group-border-style);
|
|
160992
161069
|
box-shadow: var(--chip-group-shadow);
|
|
160993
161070
|
flex-direction: row;
|
|
161071
|
+
justify-content: flex-start;
|
|
160994
161072
|
align-items: flex-start;
|
|
160995
161073
|
display: flex;
|
|
160996
161074
|
}
|
|
160997
161075
|
|
|
160998
161076
|
:host [part="root"] {
|
|
160999
161077
|
flex-direction: inherit;
|
|
161000
|
-
align-items: flex-start;
|
|
161001
161078
|
gap: inherit;
|
|
161002
161079
|
scrollbar-width: none;
|
|
161003
161080
|
scrollbar-color: transparent;
|
|
161081
|
+
align-items: inherit;
|
|
161004
161082
|
flex-wrap: nowrap;
|
|
161005
|
-
align-items: center;
|
|
161006
161083
|
display: inline-flex;
|
|
161007
|
-
overflow:
|
|
161084
|
+
overflow-x: auto;
|
|
161008
161085
|
}
|
|
161009
161086
|
|
|
161010
161087
|
:host [part="root"] ::slotted(mosaik-chip) {
|
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.41",
|
|
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.41",
|
|
15
|
+
"@breadstone/mosaik-elements-foundation": "0.1.41",
|
|
16
16
|
"tslib": "2.8.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|