@getflip/swirl-components-angular 0.391.0 → 0.393.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.
@@ -4254,7 +4254,7 @@ export declare class SwirlTooltip {
4254
4254
  protected el: HTMLSwirlTooltipElement;
4255
4255
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
4256
4256
  static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTooltip, never>;
4257
- static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTooltip, "swirl-tooltip", never, { "active": { "alias": "active"; "required": false; }; "content": { "alias": "content"; "required": true; }; "delay": { "alias": "delay"; "required": false; }; "position": { "alias": "position"; "required": false; }; "positioning": { "alias": "positioning"; "required": false; }; }, {}, never, ["*"], false, never>;
4257
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTooltip, "swirl-tooltip", never, { "active": { "alias": "active"; "required": false; }; "content": { "alias": "content"; "required": true; }; "delay": { "alias": "delay"; "required": false; }; "isPromo": { "alias": "isPromo"; "required": false; }; "position": { "alias": "position"; "required": false; }; "positioning": { "alias": "positioning"; "required": false; }; }, {}, never, ["*"], false, never>;
4258
4258
  }
4259
4259
  export declare interface SwirlTooltip extends Components.SwirlTooltip {
4260
4260
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-components-angular",
3
- "version": "0.391.0",
3
+ "version": "0.393.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.391.0",
25
+ "@getflip/swirl-components": "^0.393.0",
26
26
  "rxjs": "~7.8.0",
27
27
  "tslib": "^2.3.0",
28
28
  "zone.js": "0.15.0"
@@ -10897,14 +10897,14 @@ export declare interface SwirlToolbar extends Components.SwirlToolbar {}
10897
10897
 
10898
10898
 
10899
10899
  @ProxyCmp({
10900
- inputs: ['active', 'content', 'delay', 'position', 'positioning']
10900
+ inputs: ['active', 'content', 'delay', 'isPromo', 'position', 'positioning']
10901
10901
  })
10902
10902
  @Component({
10903
10903
  selector: 'swirl-tooltip',
10904
10904
  changeDetection: ChangeDetectionStrategy.OnPush,
10905
10905
  template: '<ng-content></ng-content>',
10906
10906
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
10907
- inputs: ['active', { name: 'content', required: true }, 'delay', 'position', 'positioning'],
10907
+ inputs: ['active', { name: 'content', required: true }, 'delay', 'isPromo', 'position', 'positioning'],
10908
10908
  standalone: false
10909
10909
  })
10910
10910
  export class SwirlTooltip {