@getflip/swirl-components-angular 0.74.0 → 0.76.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 +28 -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
|
@@ -1603,7 +1603,7 @@ export declare class SwirlImageGridItem {
|
|
|
1603
1603
|
protected el: HTMLElement;
|
|
1604
1604
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1605
1605
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlImageGridItem, never>;
|
|
1606
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlImageGridItem, "swirl-image-grid-item", never, { "alt": "alt"; "interactive": "interactive"; "overlay": "overlay"; "src": "src"; }, {}, never, ["*"], false>;
|
|
1606
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlImageGridItem, "swirl-image-grid-item", never, { "alt": "alt"; "icon": "icon"; "interactive": "interactive"; "overlay": "overlay"; "src": "src"; }, {}, never, ["*"], false>;
|
|
1607
1607
|
}
|
|
1608
1608
|
export declare interface SwirlInlineError extends Components.SwirlInlineError {
|
|
1609
1609
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.76.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.77.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.11.4"
|
|
@@ -3628,13 +3628,13 @@ export declare interface SwirlImageGridItem extends Components.SwirlImageGridIte
|
|
|
3628
3628
|
|
|
3629
3629
|
@ProxyCmp({
|
|
3630
3630
|
defineCustomElementFn: undefined,
|
|
3631
|
-
inputs: ['alt', 'interactive', 'overlay', 'src']
|
|
3631
|
+
inputs: ['alt', 'icon', 'interactive', 'overlay', 'src']
|
|
3632
3632
|
})
|
|
3633
3633
|
@Component({
|
|
3634
3634
|
selector: 'swirl-image-grid-item',
|
|
3635
3635
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
3636
3636
|
template: '<ng-content></ng-content>',
|
|
3637
|
-
inputs: ['alt', 'interactive', 'overlay', 'src']
|
|
3637
|
+
inputs: ['alt', 'icon', 'interactive', 'overlay', 'src']
|
|
3638
3638
|
})
|
|
3639
3639
|
export class SwirlImageGridItem {
|
|
3640
3640
|
protected el: HTMLElement;
|