@getflip/swirl-components-angular 0.370.1 → 0.372.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.
@@ -71,7 +71,7 @@ export declare class SwirlAppBar {
71
71
  protected el: HTMLSwirlAppBarElement;
72
72
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
73
73
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlAppBar, never>;
74
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAppBar, "swirl-app-bar", never, { "backButtonLabel": { "alias": "backButtonLabel"; "required": false; }; "closeButtonIcon": { "alias": "closeButtonIcon"; "required": false; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "paddingInlineEnd": { "alias": "paddingInlineEnd"; "required": false; }; "paddingInlineStart": { "alias": "paddingInlineStart"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showStepperControls": { "alias": "showStepperControls"; "required": false; }; "stepDownButtonLabel": { "alias": "stepDownButtonLabel"; "required": false; }; "stepUpButtonLabel": { "alias": "stepUpButtonLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
74
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlAppBar, "swirl-app-bar", never, { "backButtonLabel": { "alias": "backButtonLabel"; "required": false; }; "closeButtonIcon": { "alias": "closeButtonIcon"; "required": false; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "paddingInlineEnd": { "alias": "paddingInlineEnd"; "required": false; }; "paddingInlineStart": { "alias": "paddingInlineStart"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showHeading": { "alias": "showHeading"; "required": false; }; "showStepperControls": { "alias": "showStepperControls"; "required": false; }; "stepDownButtonLabel": { "alias": "stepDownButtonLabel"; "required": false; }; "stepUpButtonLabel": { "alias": "stepUpButtonLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
75
75
  }
76
76
  export declare interface SwirlAppBar extends Components.SwirlAppBar {
77
77
  backButtonClick: EventEmitter<CustomEvent<MouseEvent>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.370.1",
3
+ "version": "0.372.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -22,7 +22,7 @@
22
22
  "@angular/platform-browser": "19.2.3",
23
23
  "@angular/platform-browser-dynamic": "19.2.3",
24
24
  "@angular/router": "19.2.3",
25
- "@getflip/swirl-components": "^0.370.1",
25
+ "@getflip/swirl-components": "^0.372.0",
26
26
  "rxjs": "~7.8.0",
27
27
  "tslib": "^2.3.0",
28
28
  "zone.js": "0.15.0"
@@ -153,14 +153,14 @@ export declare interface SwirlActionListSection extends Components.SwirlActionLi
153
153
 
154
154
 
155
155
  @ProxyCmp({
156
- inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'paddingInlineEnd', 'paddingInlineStart', 'showBackButton', 'showCloseButton', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel']
156
+ inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'paddingInlineEnd', 'paddingInlineStart', 'showBackButton', 'showCloseButton', 'showHeading', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel']
157
157
  })
158
158
  @Component({
159
159
  selector: 'swirl-app-bar',
160
160
  changeDetection: ChangeDetectionStrategy.OnPush,
161
161
  template: '<ng-content></ng-content>',
162
162
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
163
- inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'paddingInlineEnd', 'paddingInlineStart', 'showBackButton', 'showCloseButton', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel'],
163
+ inputs: ['backButtonLabel', 'closeButtonIcon', 'closeButtonLabel', 'paddingInlineEnd', 'paddingInlineStart', 'showBackButton', 'showCloseButton', 'showHeading', 'showStepperControls', 'stepDownButtonLabel', 'stepUpButtonLabel'],
164
164
  standalone: false
165
165
  })
166
166
  export class SwirlAppBar {