@getflip/swirl-components-angular 0.215.0 → 0.216.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 +1 -1
- package/CHANGELOG.md +26 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +2 -1
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +1 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +5 -1
|
@@ -2125,6 +2125,7 @@ export declare class SwirlLightbox {
|
|
|
2125
2125
|
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlLightbox, "swirl-lightbox", never, { "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; "downloadButtonEnabled": { "alias": "downloadButtonEnabled"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; "hideMenu": { "alias": "hideMenu"; "required": false; }; "label": { "alias": "label"; "required": false; }; "menuLabel": { "alias": "menuLabel"; "required": false; }; "menuTriggerLabel": { "alias": "menuTriggerLabel"; "required": false; }; "nextSlideButtonLabel": { "alias": "nextSlideButtonLabel"; "required": false; }; "previousSlideButtonLabel": { "alias": "previousSlideButtonLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2126
2126
|
}
|
|
2127
2127
|
export declare interface SwirlLightbox extends Components.SwirlLightbox {
|
|
2128
|
+
activeSlideChange: EventEmitter<CustomEvent<number>>;
|
|
2128
2129
|
}
|
|
2129
2130
|
export declare class SwirlLink {
|
|
2130
2131
|
protected z: NgZone;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.216.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.
|
|
17
|
+
"@getflip/swirl-components": "^0.216.1",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -5226,11 +5226,15 @@ export class SwirlLightbox {
|
|
|
5226
5226
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
5227
5227
|
c.detach();
|
|
5228
5228
|
this.el = r.nativeElement;
|
|
5229
|
+
proxyOutputs(this, this.el, ['activeSlideChange']);
|
|
5229
5230
|
}
|
|
5230
5231
|
}
|
|
5231
5232
|
|
|
5232
5233
|
|
|
5233
|
-
export declare interface SwirlLightbox extends Components.SwirlLightbox {
|
|
5234
|
+
export declare interface SwirlLightbox extends Components.SwirlLightbox {
|
|
5235
|
+
|
|
5236
|
+
activeSlideChange: EventEmitter<CustomEvent<number>>;
|
|
5237
|
+
}
|
|
5234
5238
|
|
|
5235
5239
|
|
|
5236
5240
|
@ProxyCmp({
|