@getflip/swirl-components-angular 0.524.0 → 0.525.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.
@@ -4890,10 +4890,11 @@ export declare class SwirlTag {
4890
4890
  protected el: HTMLSwirlTagElement;
4891
4891
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
4892
4892
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTag, never>;
4893
- 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>;
4893
+ 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; }; "interactive": { "alias": "interactive"; "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>;
4894
4894
  }
4895
4895
  export declare interface SwirlTag extends Components.SwirlTag {
4896
4896
  remove: EventEmitter<CustomEvent<MouseEvent>>;
4897
+ tagClick: EventEmitter<CustomEvent<MouseEvent>>;
4897
4898
  }
4898
4899
  export declare class SwirlText {
4899
4900
  protected z: NgZone;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.524.0",
3
+ "version": "0.525.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/getflip/swirl"
@@ -26,7 +26,7 @@
26
26
  "@angular/platform-browser": "19.2.23",
27
27
  "@angular/platform-browser-dynamic": "19.2.23",
28
28
  "@angular/router": "19.2.23",
29
- "@getflip/swirl-components": "0.524.0",
29
+ "@getflip/swirl-components": "0.525.0",
30
30
  "rxjs": "7.8.2",
31
31
  "tslib": "2.4.0",
32
32
  "zone.js": "0.15.0"
@@ -12474,14 +12474,14 @@ export declare interface SwirlTabs extends Components.SwirlTabs {
12474
12474
 
12475
12475
 
12476
12476
  @ProxyCmp({
12477
- inputs: ['bordered', 'hideLabel', 'icon', 'iconPosition', 'intent', 'label', 'removable', 'removalButtonLabel', 'size', 'variant']
12477
+ inputs: ['bordered', 'hideLabel', 'icon', 'iconPosition', 'intent', 'interactive', 'label', 'removable', 'removalButtonLabel', 'size', 'variant']
12478
12478
  })
12479
12479
  @Component({
12480
12480
  selector: 'swirl-tag',
12481
12481
  changeDetection: ChangeDetectionStrategy.OnPush,
12482
12482
  template: '<ng-content></ng-content>',
12483
12483
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
12484
- inputs: ['bordered', 'hideLabel', 'icon', 'iconPosition', 'intent', { name: 'label', required: true }, 'removable', 'removalButtonLabel', 'size', 'variant'],
12484
+ inputs: ['bordered', 'hideLabel', 'icon', 'iconPosition', 'intent', 'interactive', { name: 'label', required: true }, 'removable', 'removalButtonLabel', 'size', 'variant'],
12485
12485
  standalone: false
12486
12486
  })
12487
12487
  export class SwirlTag {
@@ -12489,7 +12489,7 @@ export class SwirlTag {
12489
12489
  constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
12490
12490
  c.detach();
12491
12491
  this.el = r.nativeElement;
12492
- proxyOutputs(this, this.el, ['remove']);
12492
+ proxyOutputs(this, this.el, ['remove', 'tagClick']);
12493
12493
  }
12494
12494
  }
12495
12495
 
@@ -12497,6 +12497,8 @@ export class SwirlTag {
12497
12497
  export declare interface SwirlTag extends Components.SwirlTag {
12498
12498
 
12499
12499
  remove: EventEmitter<CustomEvent<MouseEvent>>;
12500
+
12501
+ tagClick: EventEmitter<CustomEvent<MouseEvent>>;
12500
12502
  }
12501
12503
 
12502
12504