@breadstone/mosaik-elements-svelte 0.0.209 → 0.0.211

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 +18 -18
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.0.211 (2025-12-31)
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.210 (2025-12-31)
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.209 (2025-12-30)
2
10
 
3
11
  ### 🚀 Features
package/index.mjs CHANGED
@@ -88566,7 +88566,7 @@ function Nat(o) {
88566
88566
  <slot name="actions"></slot>
88567
88567
  </mosaik-stack>
88568
88568
  ${O(o.file?.current !== o.file?.total, () => y`
88569
- <mosaik-progress-ring .maximum="${o.file?.total ?? 0}"
88569
+ <mosaik-progress-ring .max="${o.file?.total ?? 0}"
88570
88570
  .value="${o.file?.current ?? 0}"
88571
88571
  .isIndeterminate="${!0}"
88572
88572
  .thickness="${2}"
@@ -138380,7 +138380,6 @@ function vpt() {
138380
138380
  }
138381
138381
 
138382
138382
  :host [part="root"] [part="heading"], :host [part="root"] [part="main"] {
138383
- display: flex;
138384
138383
  overflow: hidden;
138385
138384
  }
138386
138385
 
@@ -138544,7 +138543,6 @@ function ypt() {
138544
138543
  }
138545
138544
 
138546
138545
  :host [part="root"] [part="heading"], :host [part="root"] [part="main"] {
138547
- display: flex;
138548
138546
  overflow: hidden;
138549
138547
  }
138550
138548
 
@@ -138712,7 +138710,6 @@ function xpt() {
138712
138710
  }
138713
138711
 
138714
138712
  :host [part="root"] [part="heading"], :host [part="root"] [part="main"] {
138715
- display: flex;
138716
138713
  overflow: hidden;
138717
138714
  }
138718
138715
 
@@ -139058,11 +139055,11 @@ function Spt() {
139058
139055
  --drawer-content-font-text-decoration: unset;
139059
139056
  --drawer-content-font-text-transform: unset;
139060
139057
  --drawer-content-font-weight: unset;
139061
- --drawer-content-gap: unset;
139062
- --drawer-content-padding-bottom: unset;
139063
- --drawer-content-padding-left: unset;
139064
- --drawer-content-padding-right: unset;
139065
- --drawer-content-padding-top: unset;
139058
+ --drawer-content-gap: var(--joy-layout-space);
139059
+ --drawer-content-padding-bottom: calc(var(--joy-layout-space) * 2);
139060
+ --drawer-content-padding-left: calc(var(--joy-layout-space) * 2);
139061
+ --drawer-content-padding-right: calc(var(--joy-layout-space) * 2);
139062
+ --drawer-content-padding-top: calc(var(--joy-layout-space) * 2);
139066
139063
  --drawer-content-transition-duration: unset;
139067
139064
  --drawer-content-transition-mode: unset;
139068
139065
  --drawer-content-transition-property: unset;
@@ -139098,6 +139095,7 @@ function Spt() {
139098
139095
  :host {
139099
139096
  z-index: 1;
139100
139097
  height: 100%;
139098
+ padding: var(--drawer-content-padding-top) var(--drawer-content-padding-right) var(--drawer-content-padding-bottom) var(--drawer-content-padding-left);
139101
139099
  transition-property: transform, margin-left, margin-right;
139102
139100
  transition-duration: .4s;
139103
139101
  transition-timing-function: cubic-bezier(.25, .8, .25, 1);
@@ -139118,11 +139116,11 @@ function Cpt() {
139118
139116
  --drawer-content-font-text-decoration: unset;
139119
139117
  --drawer-content-font-text-transform: unset;
139120
139118
  --drawer-content-font-weight: unset;
139121
- --drawer-content-gap: unset;
139122
- --drawer-content-padding-bottom: unset;
139123
- --drawer-content-padding-left: unset;
139124
- --drawer-content-padding-right: unset;
139125
- --drawer-content-padding-top: unset;
139119
+ --drawer-content-gap: var(--memphis-layout-space);
139120
+ --drawer-content-padding-bottom: calc(var(--memphis-layout-space) * 2);
139121
+ --drawer-content-padding-left: calc(var(--memphis-layout-space) * 2);
139122
+ --drawer-content-padding-right: calc(var(--memphis-layout-space) * 2);
139123
+ --drawer-content-padding-top: calc(var(--memphis-layout-space) * 2);
139126
139124
  --drawer-content-transition-duration: unset;
139127
139125
  --drawer-content-transition-mode: unset;
139128
139126
  --drawer-content-transition-property: unset;
@@ -139158,6 +139156,7 @@ function Cpt() {
139158
139156
  :host {
139159
139157
  z-index: 1;
139160
139158
  height: 100%;
139159
+ padding: var(--drawer-content-padding-top) var(--drawer-content-padding-right) var(--drawer-content-padding-bottom) var(--drawer-content-padding-left);
139161
139160
  transition-property: transform, margin-left, margin-right;
139162
139161
  transition-duration: .4s;
139163
139162
  transition-timing-function: cubic-bezier(.25, .8, .25, 1);
@@ -139218,6 +139217,7 @@ function Ept() {
139218
139217
  :host {
139219
139218
  z-index: 1;
139220
139219
  height: 100%;
139220
+ padding: var(--drawer-content-padding-top) var(--drawer-content-padding-right) var(--drawer-content-padding-bottom) var(--drawer-content-padding-left);
139221
139221
  transition-property: transform, margin-left, margin-right;
139222
139222
  transition-duration: .4s;
139223
139223
  transition-timing-function: cubic-bezier(.25, .8, .25, 1);
@@ -139280,8 +139280,8 @@ let Gf = class extends D(M) {
139280
139280
  */
139281
139281
  onApplyTemplate() {
139282
139282
  super.onApplyTemplate();
139283
- const t = lt.current.findAncestor(this, Rh, { strict: !0 });
139284
- t.on("contentMarginChanged", (e) => {
139283
+ const t = lt.current.findAncestor(this, Rh, { strict: !1 });
139284
+ t?.on("contentMarginChanged", (e) => {
139285
139285
  F.current.setStyle(this, "margin-left", `${e.detail.left}px`), F.current.setStyle(this, "margin-right", `${e.detail.right}px`), this.opened = t.drawer?.isOpen ?? !1;
139286
139286
  }, { passive: !0 });
139287
139287
  }
@@ -142658,7 +142658,7 @@ function nut(o) {
142658
142658
  <div part="root">
142659
142659
  <mosaik-stack .orientation="${nt.Horizontal}"
142660
142660
  .verticalAlignment="${Ne.Center}"
142661
- gap="${"16px"}">
142661
+ .gap="${"16px"}">
142662
142662
  ${O(o.isBusy, () => y`
142663
142663
  <mosaik-progress-ring part="progressRing"
142664
142664
  .thickness="${"2px"}"
@@ -142686,7 +142686,7 @@ function nut(o) {
142686
142686
  ${O(o.showProgress && o.timeout > 0, () => y`
142687
142687
  <mosaik-progress-bar part="progress"
142688
142688
  .orientation="${nt.Horizontal}"
142689
- .maximum="${o.timeout}"
142689
+ .max="${o.timeout}"
142690
142690
  .value="${o.intervalTick}"
142691
142691
  .variant="${me.Primary}"></mosaik-progress-bar>
142692
142692
  `)}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-elements-svelte",
3
- "version": "0.0.209",
3
+ "version": "0.0.211",
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.209",
19
- "@breadstone/mosaik-elements-foundation": "^0.0.209",
18
+ "@breadstone/mosaik-elements": "^0.0.211",
19
+ "@breadstone/mosaik-elements-foundation": "^0.0.211",
20
20
  "tslib": "^2.8.1"
21
21
  },
22
22
  "exports": {