@getflip/swirl-components-angular 0.429.0 → 0.431.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
|
@@ -542,7 +542,7 @@ export declare class SwirlIcon {
|
|
|
542
542
|
protected el: HTMLSwirlIconElement;
|
|
543
543
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
544
544
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlIcon, never>;
|
|
545
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlIcon, "swirl-icon", never, { "color": { "alias": "color"; "required": false; }; "glyph": { "alias": "glyph"; "required": true; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
545
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlIcon, "swirl-icon", never, { "color": { "alias": "color"; "required": false; }; "glyph": { "alias": "glyph"; "required": true; }; "size": { "alias": "size"; "required": false; }; "wrapperColor": { "alias": "wrapperColor"; "required": false; }; "wrapperSize": { "alias": "wrapperSize"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
546
546
|
}
|
|
547
547
|
export declare interface SwirlIcon extends Components.SwirlIcon {
|
|
548
548
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.431.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/platform-browser": "19.2.18",
|
|
23
23
|
"@angular/platform-browser-dynamic": "19.2.18",
|
|
24
24
|
"@angular/router": "19.2.18",
|
|
25
|
-
"@getflip/swirl-components": "0.
|
|
25
|
+
"@getflip/swirl-components": "0.431.0",
|
|
26
26
|
"rxjs": "7.8.2",
|
|
27
27
|
"tslib": "2.4.0",
|
|
28
28
|
"zone.js": "0.15.0"
|
|
@@ -1397,14 +1397,14 @@ export declare interface SwirlHeading extends Components.SwirlHeading {}
|
|
|
1397
1397
|
|
|
1398
1398
|
|
|
1399
1399
|
@ProxyCmp({
|
|
1400
|
-
inputs: ['color', 'glyph', 'size']
|
|
1400
|
+
inputs: ['color', 'glyph', 'size', 'wrapperColor', 'wrapperSize']
|
|
1401
1401
|
})
|
|
1402
1402
|
@Component({
|
|
1403
1403
|
selector: 'swirl-icon',
|
|
1404
1404
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1405
1405
|
template: '<ng-content></ng-content>',
|
|
1406
1406
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1407
|
-
inputs: ['color', { name: 'glyph', required: true }, 'size'],
|
|
1407
|
+
inputs: ['color', { name: 'glyph', required: true }, 'size', 'wrapperColor', 'wrapperSize'],
|
|
1408
1408
|
standalone: false
|
|
1409
1409
|
})
|
|
1410
1410
|
export class SwirlIcon {
|