@getflip/swirl-components-angular 0.177.1 → 0.179.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.1",
3
+ "version": "0.179.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.1",
17
+ "@getflip/swirl-components": "^0.179.0",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.11.4"
@@ -447,7 +447,8 @@ export declare interface SwirlCard extends Components.SwirlCard {}
447
447
 
448
448
  @ProxyCmp({
449
449
  defineCustomElementFn: undefined,
450
- inputs: ['as', 'borderRadius', 'elevated', 'elevationLevel', 'height', 'highlighted', 'href', 'imageAspectRatio', 'intent', 'interactive', 'isBorderless', 'justifyContent', 'linkTarget', 'overflow', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'swirlAriaLabel', 'swirlAriaLabelledby']
450
+ inputs: ['as', 'borderRadius', 'elevated', 'elevationLevel', 'height', 'highlighted', 'href', 'imageAspectRatio', 'intent', 'interactive', 'isBorderless', 'justifyContent', 'linkTarget', 'overflow', 'padding', 'paddingBlockEnd', 'paddingBlockStart', 'paddingInlineEnd', 'paddingInlineStart', 'swirlAriaLabel', 'swirlAriaLabelledby'],
451
+ methods: ['flash']
451
452
  })
452
453
  @Component({
453
454
  selector: 'swirl-card',
@@ -761,6 +762,14 @@ export class SwirlDescriptionListItem {
761
762
 
762
763
 
763
764
  export declare interface SwirlDialog extends Components.SwirlDialog {
765
+ /**
766
+ *
767
+ */
768
+ dialogClose: EventEmitter<CustomEvent<void>>;
769
+ /**
770
+ *
771
+ */
772
+ dialogOpen: EventEmitter<CustomEvent<void>>;
764
773
  /**
765
774
  *
766
775
  */
@@ -788,7 +797,7 @@ export class SwirlDialog {
788
797
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
789
798
  c.detach();
790
799
  this.el = r.nativeElement;
791
- proxyOutputs(this, this.el, ['primaryAction', 'secondaryAction']);
800
+ proxyOutputs(this, this.el, ['dialogClose', 'dialogOpen', 'primaryAction', 'secondaryAction']);
792
801
  }
793
802
  }
794
803