@getflip/swirl-components-angular 0.113.0 → 0.114.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 +25 -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
|
@@ -2250,7 +2250,7 @@ export declare class SwirlStack {
|
|
|
2250
2250
|
protected el: HTMLElement;
|
|
2251
2251
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2252
2252
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlStack, never>;
|
|
2253
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlStack, "swirl-stack", never, { "align": "align"; "as": "as"; "justify": "justify"; "orientation": "orientation"; "spacing": "spacing"; "wrap": "wrap"; }, {}, never, ["*"], false>;
|
|
2253
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlStack, "swirl-stack", never, { "align": "align"; "as": "as"; "height": "height"; "justify": "justify"; "orientation": "orientation"; "spacing": "spacing"; "wrap": "wrap"; }, {}, never, ["*"], false>;
|
|
2254
2254
|
}
|
|
2255
2255
|
export declare interface SwirlStatusIndicator extends Components.SwirlStatusIndicator {
|
|
2256
2256
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.114.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.114.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -4992,13 +4992,13 @@ export declare interface SwirlStack extends Components.SwirlStack {}
|
|
|
4992
4992
|
|
|
4993
4993
|
@ProxyCmp({
|
|
4994
4994
|
defineCustomElementFn: undefined,
|
|
4995
|
-
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
4995
|
+
inputs: ['align', 'as', 'height', 'justify', 'orientation', 'spacing', 'wrap']
|
|
4996
4996
|
})
|
|
4997
4997
|
@Component({
|
|
4998
4998
|
selector: 'swirl-stack',
|
|
4999
4999
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5000
5000
|
template: '<ng-content></ng-content>',
|
|
5001
|
-
inputs: ['align', 'as', 'justify', 'orientation', 'spacing', 'wrap']
|
|
5001
|
+
inputs: ['align', 'as', 'height', 'justify', 'orientation', 'spacing', 'wrap']
|
|
5002
5002
|
})
|
|
5003
5003
|
export class SwirlStack {
|
|
5004
5004
|
protected el: HTMLElement;
|