@breadstone/mosaik-elements-svelte 0.1.40 → 0.1.42

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 +17 -10
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.1.42 (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.41 (2026-07-02)
6
+
7
+ This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
8
+
1
9
  ## 0.1.40 (2026-07-02)
2
10
 
3
11
  ### 🚀 Features
package/index.mjs CHANGED
@@ -108221,6 +108221,7 @@ function YU() {
108221
108221
  letter-spacing: inherit;
108222
108222
  text-decoration: inherit;
108223
108223
  text-transform: inherit;
108224
+ padding: inherit;
108224
108225
  }
108225
108226
 
108226
108227
  :host [part="header"] {
@@ -108334,6 +108335,7 @@ function XU() {
108334
108335
  letter-spacing: inherit;
108335
108336
  text-decoration: inherit;
108336
108337
  text-transform: inherit;
108338
+ padding: inherit;
108337
108339
  }
108338
108340
 
108339
108341
  `;
@@ -108443,6 +108445,7 @@ function ZU() {
108443
108445
  letter-spacing: inherit;
108444
108446
  text-decoration: inherit;
108445
108447
  text-transform: inherit;
108448
+ padding: inherit;
108446
108449
  }
108447
108450
 
108448
108451
  `;
@@ -152317,7 +152320,8 @@ function Ume(e) {
152317
152320
  `)}
152318
152321
  ${U(e.label.trim(), () => V`
152319
152322
  <mosaik-text part="label"
152320
- .text="${e.label}"></mosaik-text>
152323
+ .text="${e.label}"
152324
+ .truncate="${!0}"></mosaik-text>
152321
152325
  `)}
152322
152326
  `;
152323
152327
  }
@@ -160836,20 +160840,21 @@ function oge() {
160836
160840
  border-style: var(--chip-group-border-style);
160837
160841
  box-shadow: var(--chip-group-shadow);
160838
160842
  flex-direction: row;
160843
+ justify-content: flex-start;
160839
160844
  align-items: flex-start;
160840
160845
  display: flex;
160841
160846
  }
160842
160847
 
160843
160848
  :host [part="root"] {
160844
160849
  flex-direction: inherit;
160845
- align-items: flex-start;
160846
160850
  gap: inherit;
160847
160851
  scrollbar-width: none;
160848
160852
  scrollbar-color: transparent;
160853
+ align-items: inherit;
160854
+ justify-content: inherit;
160849
160855
  flex-wrap: nowrap;
160850
- align-items: center;
160851
160856
  display: inline-flex;
160852
- overflow: scroll;
160857
+ overflow-x: auto;
160853
160858
  }
160854
160859
 
160855
160860
  :host [part="root"] ::slotted(mosaik-chip) {
@@ -160950,20 +160955,21 @@ function sge() {
160950
160955
  border-style: var(--chip-group-border-style);
160951
160956
  box-shadow: var(--chip-group-shadow);
160952
160957
  flex-direction: row;
160958
+ justify-content: flex-start;
160953
160959
  align-items: flex-start;
160954
160960
  display: flex;
160955
160961
  }
160956
160962
 
160957
160963
  :host [part="root"] {
160958
160964
  flex-direction: inherit;
160959
- align-items: flex-start;
160960
160965
  gap: inherit;
160961
160966
  scrollbar-width: none;
160962
160967
  scrollbar-color: transparent;
160968
+ align-items: inherit;
160969
+ justify-content: inherit;
160963
160970
  flex-wrap: nowrap;
160964
- align-items: center;
160965
160971
  display: inline-flex;
160966
- overflow: scroll;
160972
+ overflow-x: auto;
160967
160973
  }
160968
160974
 
160969
160975
  :host [part="root"] ::slotted(mosaik-chip) {
@@ -161064,20 +161070,21 @@ function cge() {
161064
161070
  border-style: var(--chip-group-border-style);
161065
161071
  box-shadow: var(--chip-group-shadow);
161066
161072
  flex-direction: row;
161073
+ justify-content: flex-start;
161067
161074
  align-items: flex-start;
161068
161075
  display: flex;
161069
161076
  }
161070
161077
 
161071
161078
  :host [part="root"] {
161072
161079
  flex-direction: inherit;
161073
- align-items: flex-start;
161074
161080
  gap: inherit;
161075
161081
  scrollbar-width: none;
161076
161082
  scrollbar-color: transparent;
161083
+ align-items: inherit;
161084
+ justify-content: inherit;
161077
161085
  flex-wrap: nowrap;
161078
- align-items: center;
161079
161086
  display: inline-flex;
161080
- overflow: scroll;
161087
+ overflow-x: auto;
161081
161088
  }
161082
161089
 
161083
161090
  :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.40",
3
+ "version": "0.1.42",
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.40",
15
- "@breadstone/mosaik-elements-foundation": "0.1.40",
14
+ "@breadstone/mosaik-elements": "0.1.42",
15
+ "@breadstone/mosaik-elements-foundation": "0.1.42",
16
16
  "tslib": "2.8.1"
17
17
  },
18
18
  "peerDependencies": {