@breadstone/mosaik-elements-svelte 0.0.118 → 0.0.119

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 +10 -0
  2. package/index.mjs +33 -15
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 0.0.119 (2025-08-18)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **wizard:** add isFirstStep and isLastStep properties to Wizard component ([b398a839e2](https://github.com/RueDeRennes/mosaik/commit/b398a839e2))
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **release:** update version to 0.0.118 in release script ([4ac4717314](https://github.com/RueDeRennes/mosaik/commit/4ac4717314))
10
+
1
11
  ## 0.0.118 (2025-08-18)
2
12
 
3
13
  ### 🩹 Fixes
package/index.mjs CHANGED
@@ -142347,10 +142347,10 @@ function _rt() {
142347
142347
  --center-width: 3px;
142348
142348
  --tick-gap: 12px;
142349
142349
  --tick-width: 2px;
142350
- --tick-color: #b9bcc2;
142350
+ --tick-color: var(--joy-scheme-highlight);
142351
142351
  --tick-color-strong: #8b8f96;
142352
- --track-bg: #fff;
142353
- --center-color: #e53935;
142352
+ --track-bg: var(--joy-scheme-background);
142353
+ --center-color: var(--joy-color-danger-500);
142354
142354
  --value-font: 700 48px / 1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
142355
142355
  font-family: var(--scrub-slider-font-family);
142356
142356
  font-size: var(--scrub-slider-font-size);
@@ -142417,8 +142417,8 @@ function _rt() {
142417
142417
  pointer-events: none;
142418
142418
  border-radius: 1px;
142419
142419
  position: absolute;
142420
- top: 8px;
142421
- bottom: 8px;
142420
+ top: 0;
142421
+ bottom: 0;
142422
142422
  left: 50%;
142423
142423
  transform: translateX(-50%);
142424
142424
  }
@@ -142573,10 +142573,10 @@ function jrt() {
142573
142573
  --center-width: 3px;
142574
142574
  --tick-gap: 12px;
142575
142575
  --tick-width: 2px;
142576
- --tick-color: #b9bcc2;
142576
+ --tick-color: var(--joy-scheme-highlight);
142577
142577
  --tick-color-strong: #8b8f96;
142578
- --track-bg: #fff;
142579
- --center-color: #e53935;
142578
+ --track-bg: var(--joy-scheme-background);
142579
+ --center-color: var(--joy-color-danger-500);
142580
142580
  --value-font: 700 48px / 1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
142581
142581
  font-family: var(--scrub-slider-font-family);
142582
142582
  font-size: var(--scrub-slider-font-size);
@@ -142643,8 +142643,8 @@ function jrt() {
142643
142643
  pointer-events: none;
142644
142644
  border-radius: 1px;
142645
142645
  position: absolute;
142646
- top: 8px;
142647
- bottom: 8px;
142646
+ top: 0;
142647
+ bottom: 0;
142648
142648
  left: 50%;
142649
142649
  transform: translateX(-50%);
142650
142650
  }
@@ -142799,10 +142799,10 @@ function zrt() {
142799
142799
  --center-width: 3px;
142800
142800
  --tick-gap: 12px;
142801
142801
  --tick-width: 2px;
142802
- --tick-color: #b9bcc2;
142802
+ --tick-color: var(--joy-scheme-highlight);
142803
142803
  --tick-color-strong: #8b8f96;
142804
- --track-bg: #fff;
142805
- --center-color: #e53935;
142804
+ --track-bg: var(--joy-scheme-background);
142805
+ --center-color: var(--joy-color-danger-500);
142806
142806
  --value-font: 700 48px / 1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
142807
142807
  font-family: var(--scrub-slider-font-family);
142808
142808
  font-size: var(--scrub-slider-font-size);
@@ -142869,8 +142869,8 @@ function zrt() {
142869
142869
  pointer-events: none;
142870
142870
  border-radius: 1px;
142871
142871
  position: absolute;
142872
- top: 8px;
142873
- bottom: 8px;
142872
+ top: 0;
142873
+ bottom: 0;
142874
142874
  left: 50%;
142875
142875
  transform: translateX(-50%);
142876
142876
  }
@@ -156417,6 +156417,24 @@ let cp = class extends P(At(qo(W(ja)))) {
156417
156417
  get activeIndex() {
156418
156418
  return this.items.findIndex((t) => t.isActive);
156419
156419
  }
156420
+ /**
156421
+ * Gets the first step of the wizard.
156422
+ *
156423
+ * @public
156424
+ * @readonly
156425
+ */
156426
+ get isFirstStep() {
156427
+ return this.activeIndex === 0;
156428
+ }
156429
+ /**
156430
+ * Gets the last step of the wizard.
156431
+ *
156432
+ * @public
156433
+ * @readonly
156434
+ */
156435
+ get isLastStep() {
156436
+ return this.activeIndex === this.items.length - 1;
156437
+ }
156420
156438
  /**
156421
156439
  * Called when the active step has changed.
156422
156440
  * Provides reference to `{@link IEventDetail}` as event detail.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-elements-svelte",
3
- "version": "0.0.118",
3
+ "version": "0.0.119",
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.118",
19
- "@breadstone/mosaik-elements-foundation": "^0.0.118",
18
+ "@breadstone/mosaik-elements": "^0.0.119",
19
+ "@breadstone/mosaik-elements-foundation": "^0.0.119",
20
20
  "tslib": "^2.8.1"
21
21
  },
22
22
  "exports": {