@getflip/swirl-components-angular 0.177.0 → 0.178.0

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.
@@ -371,6 +371,14 @@ export declare class SwirlDescriptionListItem {
371
371
  static ɵcmp: i0.ɵɵComponentDeclaration<SwirlDescriptionListItem, "swirl-description-list-item", never, { "bordered": "bordered"; "maxWidth": "maxWidth"; "term": "term"; "tooltip": "tooltip"; }, {}, never, ["*"], false>;
372
372
  }
373
373
  export declare interface SwirlDialog extends Components.SwirlDialog {
374
+ /**
375
+ *
376
+ */
377
+ dialogClose: EventEmitter<CustomEvent<void>>;
378
+ /**
379
+ *
380
+ */
381
+ dialogOpen: EventEmitter<CustomEvent<void>>;
374
382
  /**
375
383
  *
376
384
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.177.0",
3
+ "version": "0.178.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -14,7 +14,7 @@
14
14
  "@angular/platform-browser": "^14.1.0",
15
15
  "@angular/platform-browser-dynamic": "^14.1.0",
16
16
  "@angular/router": "^14.1.0",
17
- "@getflip/swirl-components": "^0.177.0",
17
+ "@getflip/swirl-components": "^0.178.0",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.11.4"
@@ -761,6 +761,14 @@ export class SwirlDescriptionListItem {
761
761
 
762
762
 
763
763
  export declare interface SwirlDialog extends Components.SwirlDialog {
764
+ /**
765
+ *
766
+ */
767
+ dialogClose: EventEmitter<CustomEvent<void>>;
768
+ /**
769
+ *
770
+ */
771
+ dialogOpen: EventEmitter<CustomEvent<void>>;
764
772
  /**
765
773
  *
766
774
  */
@@ -788,7 +796,7 @@ export class SwirlDialog {
788
796
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
789
797
  c.detach();
790
798
  this.el = r.nativeElement;
791
- proxyOutputs(this, this.el, ['primaryAction', 'secondaryAction']);
799
+ proxyOutputs(this, this.el, ['dialogClose', 'dialogOpen', 'primaryAction', 'secondaryAction']);
792
800
  }
793
801
  }
794
802