@getflip/swirl-components-angular 0.395.0 → 0.396.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.
@@ -4141,7 +4141,7 @@ export declare class SwirlTag {
4141
4141
  protected el: HTMLSwirlTagElement;
4142
4142
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
4143
4143
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTag, never>;
4144
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTag, "swirl-tag", never, { "bordered": { "alias": "bordered"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": true; }; "removable": { "alias": "removable"; "required": false; }; "removalButtonLabel": { "alias": "removalButtonLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
4144
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTag, "swirl-tag", never, { "bordered": { "alias": "bordered"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "label": { "alias": "label"; "required": true; }; "removable": { "alias": "removable"; "required": false; }; "removalButtonLabel": { "alias": "removalButtonLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
4145
4145
  }
4146
4146
  export declare interface SwirlTag extends Components.SwirlTag {
4147
4147
  remove: EventEmitter<CustomEvent<MouseEvent>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.395.0",
3
+ "version": "0.396.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.395.0",
25
+ "@getflip/swirl-components": "^0.396.0",
26
26
  "rxjs": "~7.8.0",
27
27
  "tslib": "^2.3.0",
28
28
  "zone.js": "0.15.0"
@@ -10597,14 +10597,14 @@ export declare interface SwirlTabs extends Components.SwirlTabs {
10597
10597
 
10598
10598
 
10599
10599
  @ProxyCmp({
10600
- inputs: ['bordered', 'icon', 'iconPosition', 'intent', 'label', 'removable', 'removalButtonLabel', 'size', 'variant']
10600
+ inputs: ['bordered', 'hideLabel', 'icon', 'iconPosition', 'intent', 'label', 'removable', 'removalButtonLabel', 'size', 'variant']
10601
10601
  })
10602
10602
  @Component({
10603
10603
  selector: 'swirl-tag',
10604
10604
  changeDetection: ChangeDetectionStrategy.OnPush,
10605
10605
  template: '<ng-content></ng-content>',
10606
10606
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
10607
- inputs: ['bordered', 'icon', 'iconPosition', 'intent', { name: 'label', required: true }, 'removable', 'removalButtonLabel', 'size', 'variant'],
10607
+ inputs: ['bordered', 'hideLabel', 'icon', 'iconPosition', 'intent', { name: 'label', required: true }, 'removable', 'removalButtonLabel', 'size', 'variant'],
10608
10608
  standalone: false
10609
10609
  })
10610
10610
  export class SwirlTag {