@getflip/swirl-components-angular 0.307.0 → 0.309.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 +2 -2
- package/CHANGELOG.md +28 -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
|
@@ -2283,7 +2283,7 @@ export declare class SwirlImageGrid {
|
|
|
2283
2283
|
protected el: HTMLElement;
|
|
2284
2284
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
2285
2285
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlImageGrid, never>;
|
|
2286
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlImageGrid, "swirl-image-grid", never, { "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2286
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlImageGrid, "swirl-image-grid", never, { "aspectRatio": { "alias": "aspectRatio"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2287
2287
|
}
|
|
2288
2288
|
export declare interface SwirlImageGrid extends Components.SwirlImageGrid {
|
|
2289
2289
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.309.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.309.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -5596,14 +5596,14 @@ export declare interface SwirlIconWork extends Components.SwirlIconWork {}
|
|
|
5596
5596
|
|
|
5597
5597
|
|
|
5598
5598
|
@ProxyCmp({
|
|
5599
|
-
inputs: ['aspectRatio', 'label']
|
|
5599
|
+
inputs: ['aspectRatio', 'borderRadius', 'label']
|
|
5600
5600
|
})
|
|
5601
5601
|
@Component({
|
|
5602
5602
|
selector: 'swirl-image-grid',
|
|
5603
5603
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5604
5604
|
template: '<ng-content></ng-content>',
|
|
5605
5605
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
5606
|
-
inputs: ['aspectRatio', 'label'],
|
|
5606
|
+
inputs: ['aspectRatio', 'borderRadius', 'label'],
|
|
5607
5607
|
})
|
|
5608
5608
|
export class SwirlImageGrid {
|
|
5609
5609
|
protected el: HTMLElement;
|