@getflip/swirl-components-angular 0.146.0 → 0.147.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 +15 -0
- package/dist/component-library/esm2020/lib/stencil-generated/components.mjs +4 -4
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2015/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/fesm2020/getflip-swirl-components-angular.mjs +3 -3
- package/dist/component-library/fesm2020/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 +2 -2
|
@@ -3127,7 +3127,7 @@ export declare class SwirlTooltip {
|
|
|
3127
3127
|
protected el: HTMLElement;
|
|
3128
3128
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
3129
3129
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTooltip, never>;
|
|
3130
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTooltip, "swirl-tooltip", never, { "content": "content"; "delay": "delay"; "position": "position"; }, {}, never, ["*"], false>;
|
|
3130
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTooltip, "swirl-tooltip", never, { "content": "content"; "delay": "delay"; "position": "position"; "positioning": "positioning"; }, {}, never, ["*"], false>;
|
|
3131
3131
|
}
|
|
3132
3132
|
export declare interface SwirlTreeNavigationItem extends Components.SwirlTreeNavigationItem {
|
|
3133
3133
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.147.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^14.1.0",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^14.1.0",
|
|
16
16
|
"@angular/router": "^14.1.0",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.147.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -6972,13 +6972,13 @@ export declare interface SwirlTooltip extends Components.SwirlTooltip {}
|
|
|
6972
6972
|
|
|
6973
6973
|
@ProxyCmp({
|
|
6974
6974
|
defineCustomElementFn: undefined,
|
|
6975
|
-
inputs: ['content', 'delay', 'position']
|
|
6975
|
+
inputs: ['content', 'delay', 'position', 'positioning']
|
|
6976
6976
|
})
|
|
6977
6977
|
@Component({
|
|
6978
6978
|
selector: 'swirl-tooltip',
|
|
6979
6979
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
6980
6980
|
template: '<ng-content></ng-content>',
|
|
6981
|
-
inputs: ['content', 'delay', 'position']
|
|
6981
|
+
inputs: ['content', 'delay', 'position', 'positioning']
|
|
6982
6982
|
})
|
|
6983
6983
|
export class SwirlTooltip {
|
|
6984
6984
|
protected el: HTMLElement;
|