@getflip/swirl-components-angular 0.302.0 → 0.304.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/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
|
@@ -205,7 +205,7 @@ export declare class SwirlCarouselSlide {
|
|
|
205
205
|
protected el: HTMLElement;
|
|
206
206
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
207
207
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlCarouselSlide, never>;
|
|
208
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlCarouselSlide, "swirl-carousel-slide", never, { "label": { "alias": "label"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
208
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlCarouselSlide, "swirl-carousel-slide", never, { "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "label": { "alias": "label"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
209
209
|
}
|
|
210
210
|
export declare interface SwirlCarouselSlide extends Components.SwirlCarouselSlide {
|
|
211
211
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.304.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.304.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -491,14 +491,14 @@ export declare interface SwirlCarousel extends Components.SwirlCarousel {
|
|
|
491
491
|
|
|
492
492
|
|
|
493
493
|
@ProxyCmp({
|
|
494
|
-
inputs: ['label', 'minHeight', 'width']
|
|
494
|
+
inputs: ['aspectRatio', 'label', 'minHeight', 'width']
|
|
495
495
|
})
|
|
496
496
|
@Component({
|
|
497
497
|
selector: 'swirl-carousel-slide',
|
|
498
498
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
499
499
|
template: '<ng-content></ng-content>',
|
|
500
500
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
501
|
-
inputs: ['label', 'minHeight', 'width'],
|
|
501
|
+
inputs: ['aspectRatio', 'label', 'minHeight', 'width'],
|
|
502
502
|
})
|
|
503
503
|
export class SwirlCarouselSlide {
|
|
504
504
|
protected el: HTMLElement;
|