@getflip/swirl-components-angular 0.404.0 → 0.405.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.
@@ -20,5 +20,5 @@ Built Angular Package
20
20
  - to: /home/runner/work/swirl/swirl/packages/swirl-components-angular/dist/component-library
21
21
  ------------------------------------------------------------------------------
22
22
 
23
- Build at: 2025-11-05T15:12:17.180Z - Time: 13493ms
23
+ Build at: 2025-11-05T15:33:11.742Z - Time: 13675ms
24
24
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @getflip/swirl-components-angular
2
2
 
3
+ ## 0.405.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1303](https://github.com/getflip/swirl/pull/1303)
8
+ [`0ac43717c`](https://github.com/getflip/swirl/commit/0ac43717c4418298a4f818ecb83ac2837292e44c)
9
+ Thanks [@joseabernardes](https://github.com/joseabernardes)! - Replace isPromo
10
+ prop with intent and trigger in swirl-tooltip
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+ [[`0ac43717c`](https://github.com/getflip/swirl/commit/0ac43717c4418298a4f818ecb83ac2837292e44c)]:
16
+ - @getflip/swirl-components@0.405.0
17
+
3
18
  ## 0.404.0
4
19
 
5
20
  ### Minor Changes
@@ -12507,11 +12507,12 @@ let SwirlTooltip = class SwirlTooltip {
12507
12507
  this.el = r.nativeElement;
12508
12508
  }
12509
12509
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
12510
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlTooltip, isStandalone: false, selector: "swirl-tooltip", inputs: { active: "active", content: "content", delay: "delay", isPromo: "isPromo", position: "position", positioning: "positioning" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
12510
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.3", type: SwirlTooltip, isStandalone: false, selector: "swirl-tooltip", inputs: { active: "active", content: "content", delay: "delay", intent: "intent", position: "position", positioning: "positioning", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
12511
12511
  };
12512
12512
  SwirlTooltip = __decorate([
12513
12513
  ProxyCmp({
12514
- inputs: ['active', 'content', 'delay', 'isPromo', 'position', 'positioning']
12514
+ inputs: ['active', 'content', 'delay', 'intent', 'position', 'positioning', 'trigger'],
12515
+ methods: ['show', 'hide']
12515
12516
  })
12516
12517
  ], SwirlTooltip);
12517
12518
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImport: i0, type: SwirlTooltip, decorators: [{
@@ -12521,7 +12522,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.3", ngImpor
12521
12522
  changeDetection: ChangeDetectionStrategy.OnPush,
12522
12523
  template: '<ng-content></ng-content>',
12523
12524
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
12524
- inputs: ['active', { name: 'content', required: true }, 'delay', 'isPromo', 'position', 'positioning'],
12525
+ inputs: ['active', { name: 'content', required: true }, 'delay', 'intent', 'position', 'positioning', 'trigger'],
12525
12526
  standalone: false
12526
12527
  }]
12527
12528
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });