@getflip/swirl-components-angular 0.404.0 → 0.406.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +30 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +4 -3
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -1
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +3 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -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-
|
|
23
|
+
Build at: 2025-11-06T07:48:13.315Z - Time: 14293ms
|
|
24
24
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @getflip/swirl-components-angular
|
|
2
2
|
|
|
3
|
+
## 0.406.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1307](https://github.com/getflip/swirl/pull/1307)
|
|
8
|
+
[`c23d142b6`](https://github.com/getflip/swirl/commit/c23d142b66f7060adc43148530757604d5888ed7)
|
|
9
|
+
Thanks [@matvlaovi-flip](https://github.com/matvlaovi-flip)! - Fix popovers
|
|
10
|
+
flickering when closed
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
[[`c23d142b6`](https://github.com/getflip/swirl/commit/c23d142b66f7060adc43148530757604d5888ed7)]:
|
|
16
|
+
- @getflip/swirl-components@0.406.0
|
|
17
|
+
|
|
18
|
+
## 0.405.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [#1303](https://github.com/getflip/swirl/pull/1303)
|
|
23
|
+
[`0ac43717c`](https://github.com/getflip/swirl/commit/0ac43717c4418298a4f818ecb83ac2837292e44c)
|
|
24
|
+
Thanks [@joseabernardes](https://github.com/joseabernardes)! - Replace isPromo
|
|
25
|
+
prop with intent and trigger in swirl-tooltip
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
[[`0ac43717c`](https://github.com/getflip/swirl/commit/0ac43717c4418298a4f818ecb83ac2837292e44c)]:
|
|
31
|
+
- @getflip/swirl-components@0.405.0
|
|
32
|
+
|
|
3
33
|
## 0.404.0
|
|
4
34
|
|
|
5
35
|
### 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",
|
|
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', '
|
|
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', '
|
|
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 }] });
|