@getflip/swirl-components-angular 0.233.0 → 0.233.1

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.
@@ -3221,7 +3221,10 @@ export declare class SwirlTreeView {
3221
3221
  static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTreeView, "swirl-tree-view", never, { "initiallyExpandedItemIds": { "alias": "initiallyExpandedItemIds"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
3222
3222
  }
3223
3223
  export declare interface SwirlTreeView extends Components.SwirlTreeView {
3224
- expandedItemsChanged: EventEmitter<CustomEvent<string[]>>;
3224
+ itemExpansionChanged: EventEmitter<CustomEvent<{
3225
+ itemId: string;
3226
+ expanded: boolean;
3227
+ }>>;
3225
3228
  }
3226
3229
  export declare class SwirlTreeViewItem {
3227
3230
  protected z: NgZone;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.233.0",
3
+ "version": "0.233.1",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -14,7 +14,7 @@
14
14
  "@angular/platform-browser": "^16.2.12",
15
15
  "@angular/platform-browser-dynamic": "^16.2.12",
16
16
  "@angular/router": "^16.2.12",
17
- "@getflip/swirl-components": "^0.233.0",
17
+ "@getflip/swirl-components": "^0.233.1",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.13.3"
@@ -7925,14 +7925,14 @@ export class SwirlTreeView {
7925
7925
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
7926
7926
  c.detach();
7927
7927
  this.el = r.nativeElement;
7928
- proxyOutputs(this, this.el, ['expandedItemsChanged']);
7928
+ proxyOutputs(this, this.el, ['itemExpansionChanged']);
7929
7929
  }
7930
7930
  }
7931
7931
 
7932
7932
 
7933
7933
  export declare interface SwirlTreeView extends Components.SwirlTreeView {
7934
7934
 
7935
- expandedItemsChanged: EventEmitter<CustomEvent<string[]>>;
7935
+ itemExpansionChanged: EventEmitter<CustomEvent<{ itemId: string; expanded: boolean; }>>;
7936
7936
  }
7937
7937
 
7938
7938