@getflip/swirl-components-angular 0.462.0 → 0.464.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.
@@ -4326,7 +4326,7 @@ export declare class SwirlToggleButton {
4326
4326
  protected el: HTMLSwirlToggleButtonElement;
4327
4327
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
4328
4328
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlToggleButton, never>;
4329
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlToggleButton, "swirl-toggle-button", never, { "icon": { "alias": "icon"; "required": false; }; "identifier": { "alias": "identifier"; "required": true; }; "isPressed": { "alias": "isPressed"; "required": false; }; "label": { "alias": "label"; "required": true; }; }, {}, never, ["*"], false, never>;
4329
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlToggleButton, "swirl-toggle-button", never, { "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "identifier": { "alias": "identifier"; "required": true; }; "isPressed": { "alias": "isPressed"; "required": false; }; "label": { "alias": "label"; "required": true; }; }, {}, never, ["*"], false, never>;
4330
4330
  }
4331
4331
  export declare interface SwirlToggleButton extends Components.SwirlToggleButton {
4332
4332
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.462.0",
3
+ "version": "0.464.0",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "build": "ng build"
@@ -22,7 +22,7 @@
22
22
  "@angular/platform-browser": "19.2.19",
23
23
  "@angular/platform-browser-dynamic": "19.2.19",
24
24
  "@angular/router": "19.2.19",
25
- "@getflip/swirl-components": "0.462.0",
25
+ "@getflip/swirl-components": "0.464.0",
26
26
  "rxjs": "7.8.2",
27
27
  "tslib": "2.4.0",
28
28
  "zone.js": "0.15.0"
@@ -11083,14 +11083,14 @@ export declare interface SwirlToastProvider extends Components.SwirlToastProvide
11083
11083
 
11084
11084
 
11085
11085
  @ProxyCmp({
11086
- inputs: ['icon', 'identifier', 'isPressed', 'label']
11086
+ inputs: ['hideLabel', 'icon', 'identifier', 'isPressed', 'label']
11087
11087
  })
11088
11088
  @Component({
11089
11089
  selector: 'swirl-toggle-button',
11090
11090
  changeDetection: ChangeDetectionStrategy.OnPush,
11091
11091
  template: '<ng-content></ng-content>',
11092
11092
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
11093
- inputs: ['icon', { name: 'identifier', required: true }, 'isPressed', { name: 'label', required: true }],
11093
+ inputs: ['hideLabel', 'icon', { name: 'identifier', required: true }, 'isPressed', { name: 'label', required: true }],
11094
11094
  standalone: false
11095
11095
  })
11096
11096
  export class SwirlToggleButton {