@getflip/swirl-components-angular 0.293.0 → 0.295.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.
@@ -2301,7 +2301,7 @@ export declare class SwirlInlineNotification {
2301
2301
  protected el: HTMLElement;
2302
2302
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2303
2303
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlInlineNotification, never>;
2304
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlInlineNotification, "swirl-inline-notification", never, { "heading": { "alias": "heading"; "required": false; }; "importance": { "alias": "importance"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; }, {}, never, ["*"], false, never>;
2304
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlInlineNotification, "swirl-inline-notification", never, { "heading": { "alias": "heading"; "required": false; }; "hideHeading": { "alias": "hideHeading"; "required": false; }; "importance": { "alias": "importance"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; }, {}, never, ["*"], false, never>;
2305
2305
  }
2306
2306
  export declare interface SwirlInlineNotification extends Components.SwirlInlineNotification {
2307
2307
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.293.0",
3
+ "version": "0.295.0",
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.293.0",
17
+ "@getflip/swirl-components": "^0.295.0",
18
18
  "rxjs": "~7.5.0",
19
19
  "tslib": "^2.3.0",
20
20
  "zone.js": "~0.13.3"
@@ -5651,14 +5651,14 @@ export declare interface SwirlInlineError extends Components.SwirlInlineError {}
5651
5651
 
5652
5652
 
5653
5653
  @ProxyCmp({
5654
- inputs: ['heading', 'importance', 'intent']
5654
+ inputs: ['heading', 'hideHeading', 'importance', 'intent']
5655
5655
  })
5656
5656
  @Component({
5657
5657
  selector: 'swirl-inline-notification',
5658
5658
  changeDetection: ChangeDetectionStrategy.OnPush,
5659
5659
  template: '<ng-content></ng-content>',
5660
5660
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
5661
- inputs: ['heading', 'importance', 'intent'],
5661
+ inputs: ['heading', 'hideHeading', 'importance', 'intent'],
5662
5662
  })
5663
5663
  export class SwirlInlineNotification {
5664
5664
  protected el: HTMLElement;