@breadstone/mosaik-elements-svelte 0.0.233 → 0.0.235

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 +261 -23
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.0.235 (2026-04-27)
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.0.234 (2026-04-27)
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.0.233 (2026-04-26)
2
10
 
3
11
  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
@@ -16962,7 +16962,6 @@ function bS() {
16962
16962
  z-index: 0;
16963
16963
  text-overflow: ellipsis;
16964
16964
  white-space: nowrap;
16965
- min-height: 40px;
16966
16965
  cursor: inherit;
16967
16966
  pointer-events: inherit;
16968
16967
  padding-top: var(--compound-button-padding-top);
@@ -17204,7 +17203,6 @@ function xS() {
17204
17203
  z-index: 0;
17205
17204
  text-overflow: ellipsis;
17206
17205
  white-space: nowrap;
17207
- min-height: 40px;
17208
17206
  cursor: inherit;
17209
17207
  pointer-events: inherit;
17210
17208
  padding-top: var(--compound-button-padding-top);
@@ -17793,6 +17791,51 @@ function xS() {
17793
17791
  --compound-button-background-color: var(--joy-color-neutral-600);
17794
17792
  }
17795
17793
 
17794
+ :host([size="tiny"]) {
17795
+ --compound-button-font-size: calc(var(--joy-typography-button-font-size) - 4px);
17796
+ --compound-button-font-line-height: calc(var(--joy-typography-button-line-height) - 4px);
17797
+ --compound-button-padding-top: calc(var(--joy-layout-space) - 4px);
17798
+ --compound-button-padding-right: calc(var(--joy-layout-space) - 4px);
17799
+ --compound-button-padding-bottom: calc(var(--joy-layout-space) - 4px);
17800
+ --compound-button-padding-left: calc(var(--joy-layout-space) - 4px);
17801
+ --compound-button-icon-min-width: 24px;
17802
+ --compound-button-icon-min-height: 24px;
17803
+ }
17804
+
17805
+ :host([size="small"]) {
17806
+ --compound-button-font-size: calc(var(--joy-typography-button-font-size) - 2px);
17807
+ --compound-button-font-line-height: calc(var(--joy-typography-button-line-height) - 2px);
17808
+ --compound-button-padding-top: calc(var(--joy-layout-space) - 2px);
17809
+ --compound-button-padding-right: calc(var(--joy-layout-space) - 2px);
17810
+ --compound-button-padding-bottom: calc(var(--joy-layout-space) - 2px);
17811
+ --compound-button-padding-left: calc(var(--joy-layout-space) - 2px);
17812
+ --compound-button-icon-min-width: 24px;
17813
+ --compound-button-icon-min-height: 24px;
17814
+ }
17815
+
17816
+ :host([size="medium"]) {
17817
+ --compound-button-font-size: var(--joy-typography-button-font-size);
17818
+ --compound-button-font-line-height: var(--joy-typography-button-line-height);
17819
+ }
17820
+
17821
+ :host([size="large"]) {
17822
+ --compound-button-font-size: calc(var(--joy-typography-button-font-size) + 2px);
17823
+ --compound-button-font-line-height: calc(var(--joy-typography-button-line-height) + 2px);
17824
+ --compound-button-padding-top: calc(var(--joy-layout-space) + 4px);
17825
+ --compound-button-padding-right: calc(var(--joy-layout-space) + 4px);
17826
+ --compound-button-padding-bottom: calc(var(--joy-layout-space) + 4px);
17827
+ --compound-button-padding-left: calc(var(--joy-layout-space) + 4px);
17828
+ }
17829
+
17830
+ :host([size="giant"]) {
17831
+ --compound-button-font-size: calc(var(--joy-typography-button-font-size) + 4px);
17832
+ --compound-button-font-line-height: calc(var(--joy-typography-button-line-height) + 4px);
17833
+ --compound-button-padding-top: calc(var(--joy-layout-space) + 8px);
17834
+ --compound-button-padding-right: calc(var(--joy-layout-space) + 8px);
17835
+ --compound-button-padding-bottom: calc(var(--joy-layout-space) + 8px);
17836
+ --compound-button-padding-left: calc(var(--joy-layout-space) + 8px);
17837
+ }
17838
+
17796
17839
  `;
17797
17840
  }
17798
17841
  //#endregion
@@ -17939,7 +17982,6 @@ function SS() {
17939
17982
  z-index: 0;
17940
17983
  text-overflow: ellipsis;
17941
17984
  white-space: nowrap;
17942
- min-height: 40px;
17943
17985
  cursor: inherit;
17944
17986
  pointer-events: inherit;
17945
17987
  padding-top: var(--compound-button-padding-top);
@@ -23160,6 +23202,51 @@ function wde() {
23160
23202
  --dropdown-button-background-color: var(--joy-color-neutral-600);
23161
23203
  }
23162
23204
 
23205
+ :host([size="tiny"]) {
23206
+ --dropdown-button-font-size: calc(var(--joy-typography-button-font-size) - 4px);
23207
+ --dropdown-button-font-line-height: calc(var(--joy-typography-button-line-height) - 4px);
23208
+ --dropdown-button-padding-top: calc(var(--joy-layout-space) - 4px);
23209
+ --dropdown-button-padding-right: calc(var(--joy-layout-space) - 4px);
23210
+ --dropdown-button-padding-bottom: calc(var(--joy-layout-space) - 4px);
23211
+ --dropdown-button-padding-left: calc(var(--joy-layout-space) - 4px);
23212
+ --dropdown-button-icon-min-width: 24px;
23213
+ --dropdown-button-icon-min-height: 24px;
23214
+ }
23215
+
23216
+ :host([size="small"]) {
23217
+ --dropdown-button-font-size: calc(var(--joy-typography-button-font-size) - 2px);
23218
+ --dropdown-button-font-line-height: calc(var(--joy-typography-button-line-height) - 2px);
23219
+ --dropdown-button-padding-top: calc(var(--joy-layout-space) - 2px);
23220
+ --dropdown-button-padding-right: calc(var(--joy-layout-space) - 2px);
23221
+ --dropdown-button-padding-bottom: calc(var(--joy-layout-space) - 2px);
23222
+ --dropdown-button-padding-left: calc(var(--joy-layout-space) - 2px);
23223
+ --dropdown-button-icon-min-width: 24px;
23224
+ --dropdown-button-icon-min-height: 24px;
23225
+ }
23226
+
23227
+ :host([size="medium"]) {
23228
+ --dropdown-button-font-size: var(--joy-typography-button-font-size);
23229
+ --dropdown-button-font-line-height: var(--joy-typography-button-line-height);
23230
+ }
23231
+
23232
+ :host([size="large"]) {
23233
+ --dropdown-button-font-size: calc(var(--joy-typography-button-font-size) + 2px);
23234
+ --dropdown-button-font-line-height: calc(var(--joy-typography-button-line-height) + 2px);
23235
+ --dropdown-button-padding-top: calc(var(--joy-layout-space) + 4px);
23236
+ --dropdown-button-padding-right: calc(var(--joy-layout-space) + 4px);
23237
+ --dropdown-button-padding-bottom: calc(var(--joy-layout-space) + 4px);
23238
+ --dropdown-button-padding-left: calc(var(--joy-layout-space) + 4px);
23239
+ }
23240
+
23241
+ :host([size="giant"]) {
23242
+ --dropdown-button-font-size: calc(var(--joy-typography-button-font-size) + 4px);
23243
+ --dropdown-button-font-line-height: calc(var(--joy-typography-button-line-height) + 4px);
23244
+ --dropdown-button-padding-top: calc(var(--joy-layout-space) + 8px);
23245
+ --dropdown-button-padding-right: calc(var(--joy-layout-space) + 8px);
23246
+ --dropdown-button-padding-bottom: calc(var(--joy-layout-space) + 8px);
23247
+ --dropdown-button-padding-left: calc(var(--joy-layout-space) + 8px);
23248
+ }
23249
+
23163
23250
  `;
23164
23251
  }
23165
23252
  //#endregion
@@ -23809,7 +23896,6 @@ function Dde() {
23809
23896
  z-index: 0;
23810
23897
  text-overflow: ellipsis;
23811
23898
  white-space: nowrap;
23812
- min-height: 40px;
23813
23899
  cursor: inherit;
23814
23900
  pointer-events: inherit;
23815
23901
  border-style: solid;
@@ -24085,7 +24171,6 @@ function Ode() {
24085
24171
  z-index: 0;
24086
24172
  text-overflow: ellipsis;
24087
24173
  white-space: nowrap;
24088
- min-height: 40px;
24089
24174
  cursor: inherit;
24090
24175
  pointer-events: inherit;
24091
24176
  border-style: solid;
@@ -24655,6 +24740,51 @@ function Ode() {
24655
24740
  --fab-background-color: var(--joy-color-neutral-600);
24656
24741
  }
24657
24742
 
24743
+ :host([size="tiny"]) {
24744
+ --fab-font-size: calc(var(--joy-typography-button-font-size) - 4px);
24745
+ --fab-font-line-height: calc(var(--joy-typography-button-line-height) - 4px);
24746
+ --fab-padding-top: calc(var(--joy-layout-space) - 4px);
24747
+ --fab-padding-right: calc(var(--joy-layout-space) - 4px);
24748
+ --fab-padding-bottom: calc(var(--joy-layout-space) - 4px);
24749
+ --fab-padding-left: calc(var(--joy-layout-space) - 4px);
24750
+ --fab-icon-min-width: 24px;
24751
+ --fab-icon-min-height: 24px;
24752
+ }
24753
+
24754
+ :host([size="small"]) {
24755
+ --fab-font-size: calc(var(--joy-typography-button-font-size) - 2px);
24756
+ --fab-font-line-height: calc(var(--joy-typography-button-line-height) - 2px);
24757
+ --fab-padding-top: calc(var(--joy-layout-space) - 2px);
24758
+ --fab-padding-right: calc(var(--joy-layout-space) - 2px);
24759
+ --fab-padding-bottom: calc(var(--joy-layout-space) - 2px);
24760
+ --fab-padding-left: calc(var(--joy-layout-space) - 2px);
24761
+ --fab-icon-min-width: 24px;
24762
+ --fab-icon-min-height: 24px;
24763
+ }
24764
+
24765
+ :host([size="medium"]) {
24766
+ --fab-font-size: var(--joy-typography-button-font-size);
24767
+ --fab-font-line-height: var(--joy-typography-button-line-height);
24768
+ }
24769
+
24770
+ :host([size="large"]) {
24771
+ --fab-font-size: calc(var(--joy-typography-button-font-size) + 2px);
24772
+ --fab-font-line-height: calc(var(--joy-typography-button-line-height) + 2px);
24773
+ --fab-padding-top: calc(var(--joy-layout-space) + 4px);
24774
+ --fab-padding-right: calc(var(--joy-layout-space) + 4px);
24775
+ --fab-padding-bottom: calc(var(--joy-layout-space) + 4px);
24776
+ --fab-padding-left: calc(var(--joy-layout-space) + 4px);
24777
+ }
24778
+
24779
+ :host([size="giant"]) {
24780
+ --fab-font-size: calc(var(--joy-typography-button-font-size) + 4px);
24781
+ --fab-font-line-height: calc(var(--joy-typography-button-line-height) + 4px);
24782
+ --fab-padding-top: calc(var(--joy-layout-space) + 8px);
24783
+ --fab-padding-right: calc(var(--joy-layout-space) + 8px);
24784
+ --fab-padding-bottom: calc(var(--joy-layout-space) + 8px);
24785
+ --fab-padding-left: calc(var(--joy-layout-space) + 8px);
24786
+ }
24787
+
24658
24788
  `;
24659
24789
  }
24660
24790
  //#endregion
@@ -24821,7 +24951,6 @@ function kde() {
24821
24951
  z-index: 0;
24822
24952
  text-overflow: ellipsis;
24823
24953
  white-space: nowrap;
24824
- min-height: 40px;
24825
24954
  cursor: inherit;
24826
24955
  pointer-events: inherit;
24827
24956
  border-style: solid;
@@ -26007,7 +26136,6 @@ function bT() {
26007
26136
  z-index: 0;
26008
26137
  text-overflow: ellipsis;
26009
26138
  white-space: nowrap;
26010
- min-height: 40px;
26011
26139
  cursor: inherit;
26012
26140
  pointer-events: inherit;
26013
26141
  border-style: solid;
@@ -26309,7 +26437,6 @@ function xT() {
26309
26437
  z-index: 0;
26310
26438
  text-overflow: ellipsis;
26311
26439
  white-space: nowrap;
26312
- min-height: 40px;
26313
26440
  cursor: inherit;
26314
26441
  pointer-events: inherit;
26315
26442
  border-style: solid;
@@ -27152,7 +27279,6 @@ function ST() {
27152
27279
  z-index: 0;
27153
27280
  text-overflow: ellipsis;
27154
27281
  white-space: nowrap;
27155
- min-height: 40px;
27156
27282
  cursor: inherit;
27157
27283
  pointer-events: inherit;
27158
27284
  border-style: solid;
@@ -27635,7 +27761,6 @@ function DT() {
27635
27761
  z-index: 0;
27636
27762
  text-overflow: ellipsis;
27637
27763
  white-space: nowrap;
27638
- min-height: 40px;
27639
27764
  cursor: inherit;
27640
27765
  pointer-events: inherit;
27641
27766
  border-style: solid;
@@ -27915,7 +28040,6 @@ function OT() {
27915
28040
  z-index: 0;
27916
28041
  text-overflow: ellipsis;
27917
28042
  white-space: nowrap;
27918
- min-height: 40px;
27919
28043
  cursor: inherit;
27920
28044
  pointer-events: inherit;
27921
28045
  border-style: solid;
@@ -28485,6 +28609,51 @@ function OT() {
28485
28609
  --repeat-button-background-color: var(--joy-color-neutral-600);
28486
28610
  }
28487
28611
 
28612
+ :host([size="tiny"]) {
28613
+ --repeat-button-font-size: calc(var(--joy-typography-button-font-size) - 4px);
28614
+ --repeat-button-font-line-height: calc(var(--joy-typography-button-line-height) - 4px);
28615
+ --repeat-button-padding-top: calc(var(--joy-layout-space) - 4px);
28616
+ --repeat-button-padding-right: calc(var(--joy-layout-space) - 4px);
28617
+ --repeat-button-padding-bottom: calc(var(--joy-layout-space) - 4px);
28618
+ --repeat-button-padding-left: calc(var(--joy-layout-space) - 4px);
28619
+ --repeat-button-icon-min-width: 24px;
28620
+ --repeat-button-icon-min-height: 24px;
28621
+ }
28622
+
28623
+ :host([size="small"]) {
28624
+ --repeat-button-font-size: calc(var(--joy-typography-button-font-size) - 2px);
28625
+ --repeat-button-font-line-height: calc(var(--joy-typography-button-line-height) - 2px);
28626
+ --repeat-button-padding-top: calc(var(--joy-layout-space) - 2px);
28627
+ --repeat-button-padding-right: calc(var(--joy-layout-space) - 2px);
28628
+ --repeat-button-padding-bottom: calc(var(--joy-layout-space) - 2px);
28629
+ --repeat-button-padding-left: calc(var(--joy-layout-space) - 2px);
28630
+ --repeat-button-icon-min-width: 24px;
28631
+ --repeat-button-icon-min-height: 24px;
28632
+ }
28633
+
28634
+ :host([size="medium"]) {
28635
+ --repeat-button-font-size: var(--joy-typography-button-font-size);
28636
+ --repeat-button-font-line-height: var(--joy-typography-button-line-height);
28637
+ }
28638
+
28639
+ :host([size="large"]) {
28640
+ --repeat-button-font-size: calc(var(--joy-typography-button-font-size) + 2px);
28641
+ --repeat-button-font-line-height: calc(var(--joy-typography-button-line-height) + 2px);
28642
+ --repeat-button-padding-top: calc(var(--joy-layout-space) + 4px);
28643
+ --repeat-button-padding-right: calc(var(--joy-layout-space) + 4px);
28644
+ --repeat-button-padding-bottom: calc(var(--joy-layout-space) + 4px);
28645
+ --repeat-button-padding-left: calc(var(--joy-layout-space) + 4px);
28646
+ }
28647
+
28648
+ :host([size="giant"]) {
28649
+ --repeat-button-font-size: calc(var(--joy-typography-button-font-size) + 4px);
28650
+ --repeat-button-font-line-height: calc(var(--joy-typography-button-line-height) + 4px);
28651
+ --repeat-button-padding-top: calc(var(--joy-layout-space) + 8px);
28652
+ --repeat-button-padding-right: calc(var(--joy-layout-space) + 8px);
28653
+ --repeat-button-padding-bottom: calc(var(--joy-layout-space) + 8px);
28654
+ --repeat-button-padding-left: calc(var(--joy-layout-space) + 8px);
28655
+ }
28656
+
28488
28657
  `;
28489
28658
  }
28490
28659
  //#endregion
@@ -28655,7 +28824,6 @@ function kT() {
28655
28824
  z-index: 0;
28656
28825
  text-overflow: ellipsis;
28657
28826
  white-space: nowrap;
28658
- min-height: 40px;
28659
28827
  cursor: inherit;
28660
28828
  pointer-events: inherit;
28661
28829
  border-style: solid;
@@ -30533,6 +30701,36 @@ function FT() {
30533
30701
  min-width: 28px;
30534
30702
  }
30535
30703
 
30704
+ :host([size="large"]) [part="buttonSplit"] {
30705
+ min-width: 40px;
30706
+ }
30707
+
30708
+ :host([size="giant"]) [part="buttonSplit"] {
30709
+ min-width: 48px;
30710
+ }
30711
+
30712
+ :host([size="tiny"]) {
30713
+ --split-button-font-size: calc(var(--joy-typography-button-font-size) - 4px);
30714
+ --split-button-font-line-height: calc(var(--joy-typography-button-line-height) - 4px);
30715
+ --split-button-padding-top: calc(var(--joy-layout-space) - 4px);
30716
+ --split-button-padding-right: calc(var(--joy-layout-space) - 4px);
30717
+ --split-button-padding-bottom: calc(var(--joy-layout-space) - 4px);
30718
+ --split-button-padding-left: calc(var(--joy-layout-space) - 4px);
30719
+ --split-button-icon-min-width: 24px;
30720
+ --split-button-icon-min-height: 24px;
30721
+ }
30722
+
30723
+ :host([size="small"]) {
30724
+ --split-button-font-size: calc(var(--joy-typography-button-font-size) - 2px);
30725
+ --split-button-font-line-height: calc(var(--joy-typography-button-line-height) - 2px);
30726
+ --split-button-padding-top: calc(var(--joy-layout-space) - 2px);
30727
+ --split-button-padding-right: calc(var(--joy-layout-space) - 2px);
30728
+ --split-button-padding-bottom: calc(var(--joy-layout-space) - 2px);
30729
+ --split-button-padding-left: calc(var(--joy-layout-space) - 2px);
30730
+ --split-button-icon-min-width: 24px;
30731
+ --split-button-icon-min-height: 24px;
30732
+ }
30733
+
30536
30734
  :host([size="medium"]) {
30537
30735
  --split-button-font-size: var(--joy-typography-button-font-size);
30538
30736
  --split-button-font-line-height: var(--joy-typography-button-line-height);
@@ -30547,10 +30745,6 @@ function FT() {
30547
30745
  --split-button-padding-left: calc(var(--joy-layout-space) + 4px);
30548
30746
  }
30549
30747
 
30550
- :host([size="large"]) [part="buttonSplit"] {
30551
- min-width: 40px;
30552
- }
30553
-
30554
30748
  :host([size="giant"]) {
30555
30749
  --split-button-font-size: calc(var(--joy-typography-button-font-size) + 4px);
30556
30750
  --split-button-font-line-height: calc(var(--joy-typography-button-line-height) + 4px);
@@ -30560,10 +30754,6 @@ function FT() {
30560
30754
  --split-button-padding-left: calc(var(--joy-layout-space) + 8px);
30561
30755
  }
30562
30756
 
30563
- :host([size="giant"]) [part="buttonSplit"] {
30564
- min-width: 48px;
30565
- }
30566
-
30567
30757
  `;
30568
30758
  }
30569
30759
  //#endregion
@@ -32680,7 +32870,6 @@ function QT() {
32680
32870
  z-index: 0;
32681
32871
  text-overflow: ellipsis;
32682
32872
  white-space: nowrap;
32683
- min-height: 40px;
32684
32873
  cursor: inherit;
32685
32874
  pointer-events: inherit;
32686
32875
  border-style: solid;
@@ -32960,7 +33149,6 @@ function $T() {
32960
33149
  z-index: 0;
32961
33150
  text-overflow: ellipsis;
32962
33151
  white-space: nowrap;
32963
- min-height: 40px;
32964
33152
  cursor: inherit;
32965
33153
  pointer-events: inherit;
32966
33154
  border-style: solid;
@@ -33787,6 +33975,51 @@ function $T() {
33787
33975
  --toggle-button-background-color: var(--joy-color-neutral-600);
33788
33976
  }
33789
33977
 
33978
+ :host([size="tiny"]) {
33979
+ --toggle-button-font-size: calc(var(--joy-typography-button-font-size) - 4px);
33980
+ --toggle-button-font-line-height: calc(var(--joy-typography-button-line-height) - 4px);
33981
+ --toggle-button-padding-top: calc(var(--joy-layout-space) - 4px);
33982
+ --toggle-button-padding-right: calc(var(--joy-layout-space) - 4px);
33983
+ --toggle-button-padding-bottom: calc(var(--joy-layout-space) - 4px);
33984
+ --toggle-button-padding-left: calc(var(--joy-layout-space) - 4px);
33985
+ --toggle-button-icon-min-width: 24px;
33986
+ --toggle-button-icon-min-height: 24px;
33987
+ }
33988
+
33989
+ :host([size="small"]) {
33990
+ --toggle-button-font-size: calc(var(--joy-typography-button-font-size) - 2px);
33991
+ --toggle-button-font-line-height: calc(var(--joy-typography-button-line-height) - 2px);
33992
+ --toggle-button-padding-top: calc(var(--joy-layout-space) - 2px);
33993
+ --toggle-button-padding-right: calc(var(--joy-layout-space) - 2px);
33994
+ --toggle-button-padding-bottom: calc(var(--joy-layout-space) - 2px);
33995
+ --toggle-button-padding-left: calc(var(--joy-layout-space) - 2px);
33996
+ --toggle-button-icon-min-width: 24px;
33997
+ --toggle-button-icon-min-height: 24px;
33998
+ }
33999
+
34000
+ :host([size="medium"]) {
34001
+ --toggle-button-font-size: var(--joy-typography-button-font-size);
34002
+ --toggle-button-font-line-height: var(--joy-typography-button-line-height);
34003
+ }
34004
+
34005
+ :host([size="large"]) {
34006
+ --toggle-button-font-size: calc(var(--joy-typography-button-font-size) + 2px);
34007
+ --toggle-button-font-line-height: calc(var(--joy-typography-button-line-height) + 2px);
34008
+ --toggle-button-padding-top: calc(var(--joy-layout-space) + 4px);
34009
+ --toggle-button-padding-right: calc(var(--joy-layout-space) + 4px);
34010
+ --toggle-button-padding-bottom: calc(var(--joy-layout-space) + 4px);
34011
+ --toggle-button-padding-left: calc(var(--joy-layout-space) + 4px);
34012
+ }
34013
+
34014
+ :host([size="giant"]) {
34015
+ --toggle-button-font-size: calc(var(--joy-typography-button-font-size) + 4px);
34016
+ --toggle-button-font-line-height: calc(var(--joy-typography-button-line-height) + 4px);
34017
+ --toggle-button-padding-top: calc(var(--joy-layout-space) + 8px);
34018
+ --toggle-button-padding-right: calc(var(--joy-layout-space) + 8px);
34019
+ --toggle-button-padding-bottom: calc(var(--joy-layout-space) + 8px);
34020
+ --toggle-button-padding-left: calc(var(--joy-layout-space) + 8px);
34021
+ }
34022
+
33790
34023
  `;
33791
34024
  }
33792
34025
  //#endregion
@@ -33935,7 +34168,6 @@ function eE() {
33935
34168
  z-index: 0;
33936
34169
  text-overflow: ellipsis;
33937
34170
  white-space: nowrap;
33938
- min-height: 40px;
33939
34171
  cursor: inherit;
33940
34172
  pointer-events: inherit;
33941
34173
  border-style: solid;
@@ -103143,6 +103375,10 @@ function UU(e) {
103143
103375
  </slot>
103144
103376
  </div>
103145
103377
  <slot></slot>
103378
+ <div part="summary"
103379
+ ?hidden="${!CM(e, "has-summary", e.hasSlotContent("summary"))}">
103380
+ <slot name="summary"></slot>
103381
+ </div>
103146
103382
  `;
103147
103383
  }
103148
103384
  //#endregion
@@ -206552,6 +206788,7 @@ function TCe(e) {
206552
206788
  ?alternating="${e.alternating}"
206553
206789
  @columnsChanged="${e.onColumnsChanged}"
206554
206790
  @tableChooseColumns="${() => e.openEditor()}">
206791
+ <slot name="caption" slot="caption"></slot>
206555
206792
  ${U(e.allColumnsHidden, () => V`
206556
206793
  <mosaik-banner part="banner"
206557
206794
  slot="caption"
@@ -206611,6 +206848,7 @@ function TCe(e) {
206611
206848
  </mosaik-table-body-row>
206612
206849
  `)}
206613
206850
  </mosaik-table-body>
206851
+ <slot name="summary" slot="summary"></slot>
206614
206852
  </mosaik-table>
206615
206853
  <mosaik-backdrop part="editor-panel-backdrop"
206616
206854
  ?hidden="${!e.editorOpened}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-elements-svelte",
3
- "version": "0.0.233",
3
+ "version": "0.0.235",
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.233",
19
- "@breadstone/mosaik-elements-foundation": "^0.0.233"
18
+ "@breadstone/mosaik-elements": "^0.0.235",
19
+ "@breadstone/mosaik-elements-foundation": "^0.0.235"
20
20
  },
21
21
  "exports": {
22
22
  ".": {