@getflip/swirl-components-angular 0.196.0 → 0.197.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/esm2022/lib/stencil-generated/components.mjs +4 -4
- 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
|
@@ -189,7 +189,7 @@ export declare class SwirlBanner {
|
|
|
189
189
|
protected el: HTMLElement;
|
|
190
190
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
191
191
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlBanner, never>;
|
|
192
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlBanner, "swirl-banner", never, { "actionLabel": { "alias": "actionLabel"; "required": false; }; "content": { "alias": "content"; "required": false; }; "dismissLabel": { "alias": "dismissLabel"; "required": false; }; "dismissable": { "alias": "dismissable"; "required": false; }; "importance": { "alias": "importance"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
192
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlBanner, "swirl-banner", never, { "actionLabel": { "alias": "actionLabel"; "required": false; }; "content": { "alias": "content"; "required": false; }; "dismissLabel": { "alias": "dismissLabel"; "required": false; }; "dismissable": { "alias": "dismissable"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "importance": { "alias": "importance"; "required": false; }; "intent": { "alias": "intent"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
193
193
|
}
|
|
194
194
|
export declare interface SwirlBox extends Components.SwirlBox {
|
|
195
195
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.197.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"ng": "ng",
|
|
6
6
|
"build": "ng build"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@angular/platform-browser": "^16.2.12",
|
|
15
15
|
"@angular/platform-browser-dynamic": "^16.2.12",
|
|
16
16
|
"@angular/router": "^16.2.12",
|
|
17
|
-
"@getflip/swirl-components": "^0.
|
|
17
|
+
"@getflip/swirl-components": "^0.197.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -362,13 +362,13 @@ export declare interface SwirlBanner extends Components.SwirlBanner {
|
|
|
362
362
|
|
|
363
363
|
@ProxyCmp({
|
|
364
364
|
defineCustomElementFn: undefined,
|
|
365
|
-
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon', 'size']
|
|
365
|
+
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'icon', 'importance', 'intent', 'showIcon', 'size']
|
|
366
366
|
})
|
|
367
367
|
@Component({
|
|
368
368
|
selector: 'swirl-banner',
|
|
369
369
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
370
370
|
template: '<ng-content></ng-content>',
|
|
371
|
-
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'importance', 'intent', 'showIcon', 'size']
|
|
371
|
+
inputs: ['actionLabel', 'content', 'dismissLabel', 'dismissable', 'icon', 'importance', 'intent', 'showIcon', 'size']
|
|
372
372
|
})
|
|
373
373
|
export class SwirlBanner {
|
|
374
374
|
protected el: HTMLElement;
|