@breadstone/mosaik-elements-angular 0.0.148 → 0.0.151

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,19 @@
1
+ ## 0.0.151 (2025-09-29)
2
+
3
+ ### 🚀 Features
4
+
5
+ - add wrap property to StackElement for flexible layout handling ([181634aa81](https://github.com/RueDeRennes/mosaik/commit/181634aa81))
6
+
7
+ ## 0.0.150 (2025-09-29)
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - update release script version to 0.0.149 and adjust enum handling in modelClass function ([826e15bdf2](https://github.com/RueDeRennes/mosaik/commit/826e15bdf2))
12
+
13
+ ## 0.0.149 (2025-09-25)
14
+
15
+ This was a version bump only for mosaik-elements-angular to align it with other projects, there were no code changes.
16
+
1
17
  ## 0.0.148 (2025-09-25)
2
18
 
3
19
  ### 🚀 Features
@@ -47521,6 +47521,16 @@ let StackComponent = class StackComponent {
47521
47521
  this._element.verticalAlignment = value;
47522
47522
  });
47523
47523
  }
47524
+ get wrap() {
47525
+ // @ts-ignore - temporary fix for the type error
47526
+ return this._element.wrap;
47527
+ }
47528
+ set wrap(value) {
47529
+ this._zone.runOutsideAngular(() => {
47530
+ // @ts-ignore - temporary fix for the type error
47531
+ this._element.wrap = value;
47532
+ });
47533
+ }
47524
47534
  get themeName() {
47525
47535
  // @ts-ignore - temporary fix for the type error
47526
47536
  return this._element.themeName;
@@ -47622,12 +47632,12 @@ let StackComponent = class StackComponent {
47622
47632
  }
47623
47633
  }
47624
47634
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: StackComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
47625
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: StackComponent, isStandalone: true, selector: "mosaik-stack", inputs: { horizontalAlignment: "horizontalAlignment", verticalAlignment: "verticalAlignment", themeName: "themeName", reverse: "reverse", orientation: "orientation", fit: "fit", gap: "gap", items: "items", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
47635
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: StackComponent, isStandalone: true, selector: "mosaik-stack", inputs: { horizontalAlignment: "horizontalAlignment", verticalAlignment: "verticalAlignment", wrap: "wrap", themeName: "themeName", reverse: "reverse", orientation: "orientation", fit: "fit", gap: "gap", items: "items", dir: "dir", lang: "lang" }, outputs: { connected: "connected", disconnected: "disconnected", changed: "changed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
47626
47636
  };
47627
47637
  StackComponent = __decorate$E([
47628
47638
  ProxyCmp({
47629
47639
  defineCustomElementFn: () => customElements.define('mosaik-stack', StackElement),
47630
- inputs: ['horizontalAlignment', 'verticalAlignment', 'themeName', 'reverse', 'orientation', 'fit', 'gap', 'items', 'dir', 'lang'],
47640
+ inputs: ['horizontalAlignment', 'verticalAlignment', 'wrap', 'themeName', 'reverse', 'orientation', 'fit', 'gap', 'items', 'dir', 'lang'],
47631
47641
  methods: ['adoptStyle', 'on', 'off', 'emit', 'requestUpdate']
47632
47642
  }),
47633
47643
  __metadata$E("design:paramtypes", [])
@@ -47639,13 +47649,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
47639
47649
  standalone: true,
47640
47650
  changeDetection: ChangeDetectionStrategy.OnPush,
47641
47651
  template: '<ng-content></ng-content>',
47642
- inputs: ['horizontalAlignment', 'verticalAlignment', 'themeName', 'reverse', 'orientation', 'fit', 'gap', 'items', 'dir', 'lang'],
47652
+ inputs: ['horizontalAlignment', 'verticalAlignment', 'wrap', 'themeName', 'reverse', 'orientation', 'fit', 'gap', 'items', 'dir', 'lang'],
47643
47653
  outputs: ['connected', 'disconnected', 'changed']
47644
47654
  }]
47645
47655
  }], ctorParameters: () => [], propDecorators: { horizontalAlignment: [{
47646
47656
  type: Input
47647
47657
  }], verticalAlignment: [{
47648
47658
  type: Input
47659
+ }], wrap: [{
47660
+ type: Input
47649
47661
  }], themeName: [{
47650
47662
  type: Input
47651
47663
  }], reverse: [{