@getflip/swirl-components-angular 0.342.0 → 0.342.1
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 +3 -3
- package/CHANGELOG.md +13 -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
|
@@ -382,7 +382,7 @@ export declare class SwirlEmptyState {
|
|
|
382
382
|
protected el: HTMLElement;
|
|
383
383
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
384
384
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlEmptyState, never>;
|
|
385
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlEmptyState, "swirl-empty-state", never, { "heading": { "alias": "heading"; "required": false; }; "illustration": { "alias": "illustration"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
385
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlEmptyState, "swirl-empty-state", never, { "heading": { "alias": "heading"; "required": false; }; "headingLevel": { "alias": "headingLevel"; "required": false; }; "illustration": { "alias": "illustration"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
386
386
|
}
|
|
387
387
|
export declare interface SwirlEmptyState extends Components.SwirlEmptyState {
|
|
388
388
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.342.
|
|
3
|
+
"version": "0.342.1",
|
|
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.342.
|
|
17
|
+
"@getflip/swirl-components": "^0.342.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -932,14 +932,14 @@ export declare interface SwirlEmojiThumbsUp extends Components.SwirlEmojiThumbsU
|
|
|
932
932
|
|
|
933
933
|
|
|
934
934
|
@ProxyCmp({
|
|
935
|
-
inputs: ['heading', 'illustration']
|
|
935
|
+
inputs: ['heading', 'headingLevel', 'illustration']
|
|
936
936
|
})
|
|
937
937
|
@Component({
|
|
938
938
|
selector: 'swirl-empty-state',
|
|
939
939
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
940
940
|
template: '<ng-content></ng-content>',
|
|
941
941
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
942
|
-
inputs: ['heading', 'illustration'],
|
|
942
|
+
inputs: ['heading', 'headingLevel', 'illustration'],
|
|
943
943
|
})
|
|
944
944
|
export class SwirlEmptyState {
|
|
945
945
|
protected el: HTMLElement;
|