@breadstone/mosaik-elements-svelte 0.1.56 → 0.1.57

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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.57 (2026-07-23)
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.56 (2026-07-23)
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
@@ -216804,6 +216804,7 @@ function DTe() {
216804
216804
  --table-body-cell-font-weight: unset;
216805
216805
  --table-body-cell-foreground-color: unset;
216806
216806
  --table-body-cell-gap: unset;
216807
+ --table-body-cell-height: var(--data-table-cell-height);
216807
216808
  --table-body-cell-padding-bottom: unset;
216808
216809
  --table-body-cell-padding-left: unset;
216809
216810
  --table-body-cell-padding-right: unset;
@@ -216862,11 +216863,13 @@ function DTe() {
216862
216863
  padding-left: var(--table-body-cell-padding-left);
216863
216864
  border-right: var(--table-column-border-width, 0px) var(--table-column-border-style, solid) var(--table-column-border-color, transparent);
216864
216865
  white-space: nowrap;
216866
+ min-width: 0;
216867
+ min-height: var(--table-body-cell-height);
216868
+ max-height: var(--table-body-cell-height);
216865
216869
  content-visibility: auto;
216866
216870
  isolation: isolate;
216867
216871
  flex-direction: row;
216868
216872
  align-items: center;
216869
- min-width: 0;
216870
216873
  display: flex;
216871
216874
  position: relative;
216872
216875
  overflow: hidden;
@@ -216958,6 +216961,7 @@ function OTe() {
216958
216961
  --table-body-cell-font-weight: var(--joy-typography-body1-font-weight);
216959
216962
  --table-body-cell-foreground-color: var(--joy-scheme-foreground);
216960
216963
  --table-body-cell-gap: var(--joy-layout-space);
216964
+ --table-body-cell-height: var(--data-table-cell-height);
216961
216965
  --table-body-cell-padding-bottom: var(--joy-layout-space);
216962
216966
  --table-body-cell-padding-left: calc(var(--joy-layout-space) * 2);
216963
216967
  --table-body-cell-padding-right: calc(var(--joy-layout-space) * 2);
@@ -217016,11 +217020,13 @@ function OTe() {
217016
217020
  padding-left: var(--table-body-cell-padding-left);
217017
217021
  border-right: var(--table-column-border-width, 0px) var(--table-column-border-style, solid) var(--table-column-border-color, transparent);
217018
217022
  white-space: nowrap;
217023
+ min-width: 0;
217024
+ min-height: var(--table-body-cell-height);
217025
+ max-height: var(--table-body-cell-height);
217019
217026
  content-visibility: auto;
217020
217027
  isolation: isolate;
217021
217028
  flex-direction: row;
217022
217029
  align-items: center;
217023
- min-width: 0;
217024
217030
  display: flex;
217025
217031
  position: relative;
217026
217032
  overflow: hidden;
@@ -217113,6 +217119,7 @@ function kTe() {
217113
217119
  --table-body-cell-font-weight: var(--memphis-typography-body1-font-weight);
217114
217120
  --table-body-cell-foreground-color: var(--memphis-color-neutral-50);
217115
217121
  --table-body-cell-gap: var(--memphis-layout-space);
217122
+ --table-body-cell-height: var(--data-table-cell-height);
217116
217123
  --table-body-cell-padding-bottom: 0px;
217117
217124
  --table-body-cell-padding-left: calc(var(--memphis-layout-space) * 2);
217118
217125
  --table-body-cell-padding-right: calc(var(--memphis-layout-space) * 2);
@@ -217171,11 +217178,13 @@ function kTe() {
217171
217178
  padding-left: var(--table-body-cell-padding-left);
217172
217179
  border-right: var(--table-column-border-width, 0px) var(--table-column-border-style, solid) var(--table-column-border-color, transparent);
217173
217180
  white-space: nowrap;
217181
+ min-width: 0;
217182
+ min-height: var(--table-body-cell-height);
217183
+ max-height: var(--table-body-cell-height);
217174
217184
  content-visibility: auto;
217175
217185
  isolation: isolate;
217176
217186
  flex-direction: row;
217177
217187
  align-items: center;
217178
- min-width: 0;
217179
217188
  display: flex;
217180
217189
  position: relative;
217181
217190
  overflow: hidden;
@@ -217268,6 +217277,9 @@ var n5 = function(e, t, n, r) {
217268
217277
  static get is() {
217269
217278
  return "mosaik-table-body-cell";
217270
217279
  }
217280
+ connectedCallback() {
217281
+ super.connectedCallback(), this.updateSelectionClickHandler();
217282
+ }
217271
217283
  disconnectedCallback() {
217272
217284
  super.disconnectedCallback(), this._selectionClickSubscription?.dispose();
217273
217285
  }
@@ -217742,6 +217754,9 @@ var PTe = function(e, t, n, r) {
217742
217754
  static get is() {
217743
217755
  return "mosaik-table-body-row";
217744
217756
  }
217757
+ connectedCallback() {
217758
+ super.connectedCallback(), this.updateSelectionClickHandler();
217759
+ }
217745
217760
  disconnectedCallback() {
217746
217761
  super.disconnectedCallback(), this._clickSubscription?.dispose();
217747
217762
  }
@@ -219612,6 +219627,7 @@ function eEe() {
219612
219627
  return B`
219613
219628
  :host {
219614
219629
  --data-table-border-radius: var(--cosmopolitan-layout-radius);
219630
+ --data-table-cell-height: unset;
219615
219631
  --data-table-font-family: unset;
219616
219632
  --data-table-font-letter-spacing: unset;
219617
219633
  --data-table-font-line-height: unset;
@@ -219724,6 +219740,7 @@ function tEe() {
219724
219740
  return B`
219725
219741
  :host {
219726
219742
  --data-table-border-radius: var(--joy-layout-radius);
219743
+ --data-table-cell-height: 56px;
219727
219744
  --data-table-font-family: unset;
219728
219745
  --data-table-font-letter-spacing: unset;
219729
219746
  --data-table-font-line-height: unset;
@@ -219837,6 +219854,7 @@ function nEe() {
219837
219854
  return B`
219838
219855
  :host {
219839
219856
  --data-table-border-radius: var(--memphis-layout-radius);
219857
+ --data-table-cell-height: unset;
219840
219858
  --data-table-font-family: unset;
219841
219859
  --data-table-font-letter-spacing: unset;
219842
219860
  --data-table-font-line-height: unset;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-elements-svelte",
3
- "version": "0.1.56",
3
+ "version": "0.1.57",
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.56",
15
- "@breadstone/mosaik-elements-foundation": "0.1.56",
14
+ "@breadstone/mosaik-elements": "0.1.57",
15
+ "@breadstone/mosaik-elements-foundation": "0.1.57",
16
16
  "tslib": "2.8.1"
17
17
  },
18
18
  "peerDependencies": {