@breadstone/mosaik-elements-angular 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.
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
@@ -54250,6 +54250,26 @@ let WizardComponent = class WizardComponent {
54250
54250
  this._element.activeIndex = value;
54251
54251
  });
54252
54252
  }
54253
+ get isFirstStep() {
54254
+ // @ts-ignore - temporary fix for the type error
54255
+ return this._element.isFirstStep;
54256
+ }
54257
+ set isFirstStep(value) {
54258
+ this._zone.runOutsideAngular(() => {
54259
+ // @ts-ignore - temporary fix for the type error
54260
+ this._element.isFirstStep = value;
54261
+ });
54262
+ }
54263
+ get isLastStep() {
54264
+ // @ts-ignore - temporary fix for the type error
54265
+ return this._element.isLastStep;
54266
+ }
54267
+ set isLastStep(value) {
54268
+ this._zone.runOutsideAngular(() => {
54269
+ // @ts-ignore - temporary fix for the type error
54270
+ this._element.isLastStep = value;
54271
+ });
54272
+ }
54253
54273
  get themeName() {
54254
54274
  // @ts-ignore - temporary fix for the type error
54255
54275
  return this._element.themeName;
@@ -54350,12 +54370,12 @@ let WizardComponent = class WizardComponent {
54350
54370
  }
54351
54371
  }
54352
54372
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: WizardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54353
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: WizardComponent, isStandalone: true, selector: "mosaik-wizard", inputs: { name: "name", activeIndex: "activeIndex", themeName: "themeName", fit: "fit", disabled: "disabled", items: "items", selectedItem: "selectedItem", dir: "dir", lang: "lang" }, outputs: { activeStepChanged: "activeStepChanged", selectionChanged: "selectionChanged", itemsChanged: "itemsChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
54373
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: WizardComponent, isStandalone: true, selector: "mosaik-wizard", inputs: { name: "name", activeIndex: "activeIndex", isFirstStep: "isFirstStep", isLastStep: "isLastStep", themeName: "themeName", fit: "fit", disabled: "disabled", items: "items", selectedItem: "selectedItem", dir: "dir", lang: "lang" }, outputs: { activeStepChanged: "activeStepChanged", selectionChanged: "selectionChanged", itemsChanged: "itemsChanged", connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
54354
54374
  };
54355
54375
  WizardComponent = __decorate$1([
54356
54376
  ProxyCmp({
54357
54377
  defineCustomElementFn: () => customElements.define('mosaik-wizard', WizardElement),
54358
- inputs: ['name', 'activeIndex', 'themeName', 'fit', 'disabled', 'items', 'selectedItem', 'dir', 'lang'],
54378
+ inputs: ['name', 'activeIndex', 'isFirstStep', 'isLastStep', 'themeName', 'fit', 'disabled', 'items', 'selectedItem', 'dir', 'lang'],
54359
54379
  methods: ['assignToSlot', 'getSlotAssignments', 'getSlotAssignmentsOf', 'hasSlotContent', 'hasSlot', 'onSlotChanges', 'select', 'unselect', 'resetSelection', 'selectNext', 'selectPrevious', 'selectFirst', 'selectLast', 'adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
54360
54380
  }),
54361
54381
  __metadata$1("design:paramtypes", [])
@@ -54367,13 +54387,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
54367
54387
  standalone: true,
54368
54388
  changeDetection: ChangeDetectionStrategy.OnPush,
54369
54389
  template: '<ng-content></ng-content>',
54370
- inputs: ['name', 'activeIndex', 'themeName', 'fit', 'disabled', 'items', 'selectedItem', 'dir', 'lang'],
54390
+ inputs: ['name', 'activeIndex', 'isFirstStep', 'isLastStep', 'themeName', 'fit', 'disabled', 'items', 'selectedItem', 'dir', 'lang'],
54371
54391
  outputs: ['activeStepChanged', 'selectionChanged', 'itemsChanged', 'connected', 'disconnected', 'changed']
54372
54392
  }]
54373
54393
  }], ctorParameters: () => [], propDecorators: { name: [{
54374
54394
  type: Input
54375
54395
  }], activeIndex: [{
54376
54396
  type: Input
54397
+ }], isFirstStep: [{
54398
+ type: Input
54399
+ }], isLastStep: [{
54400
+ type: Input
54377
54401
  }], themeName: [{
54378
54402
  type: Input
54379
54403
  }], fit: [{