@getflip/swirl-components-angular 0.405.0 → 0.407.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 +3 -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 +2 -2
|
@@ -4255,7 +4255,7 @@ export declare class SwirlTooltip {
|
|
|
4255
4255
|
protected el: HTMLSwirlTooltipElement;
|
|
4256
4256
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
4257
4257
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlTooltip, never>;
|
|
4258
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTooltip, "swirl-tooltip", never, { "active": { "alias": "active"; "required": false; }; "content": { "alias": "content"; "required": true; }; "delay": { "alias": "delay"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "position": { "alias": "position"; "required": false; }; "positioning": { "alias": "positioning"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
4258
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlTooltip, "swirl-tooltip", never, { "active": { "alias": "active"; "required": false; }; "content": { "alias": "content"; "required": true; }; "delay": { "alias": "delay"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "position": { "alias": "position"; "required": false; }; "positioning": { "alias": "positioning"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
4259
4259
|
}
|
|
4260
4260
|
export declare interface SwirlTooltip extends Components.SwirlTooltip {
|
|
4261
4261
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.407.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.
|
|
25
|
+
"@getflip/swirl-components": "0.407.0",
|
|
26
26
|
"rxjs": "7.8.2",
|
|
27
27
|
"tslib": "2.4.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -10899,7 +10899,7 @@ export declare interface SwirlToolbar extends Components.SwirlToolbar {}
|
|
|
10899
10899
|
|
|
10900
10900
|
|
|
10901
10901
|
@ProxyCmp({
|
|
10902
|
-
inputs: ['active', 'content', 'delay', 'intent', 'position', 'positioning', 'trigger'],
|
|
10902
|
+
inputs: ['active', 'content', 'delay', 'intent', 'maxWidth', 'position', 'positioning', 'trigger'],
|
|
10903
10903
|
methods: ['show', 'hide']
|
|
10904
10904
|
})
|
|
10905
10905
|
@Component({
|
|
@@ -10907,7 +10907,7 @@ export declare interface SwirlToolbar extends Components.SwirlToolbar {}
|
|
|
10907
10907
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
10908
10908
|
template: '<ng-content></ng-content>',
|
|
10909
10909
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
10910
|
-
inputs: ['active', { name: 'content', required: true }, 'delay', 'intent', 'position', 'positioning', 'trigger'],
|
|
10910
|
+
inputs: ['active', { name: 'content', required: true }, 'delay', 'intent', 'maxWidth', 'position', 'positioning', 'trigger'],
|
|
10911
10911
|
standalone: false
|
|
10912
10912
|
})
|
|
10913
10913
|
export class SwirlTooltip {
|