@getflip/swirl-components-angular 0.338.2 → 0.339.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 +3 -3
- package/CHANGELOG.md +15 -0
- package/dist/component-library/esm2022/lib/stencil-generated/components.mjs +8 -8
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +7 -7
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +3 -2
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +7 -5
|
@@ -424,7 +424,7 @@ export declare class SwirlFileViewerAudio {
|
|
|
424
424
|
protected el: HTMLElement;
|
|
425
425
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
426
426
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlFileViewerAudio, never>;
|
|
427
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileViewerAudio, "swirl-file-viewer-audio", never, { "autoplay": { "alias": "autoplay"; "required": false; }; "file": { "alias": "file"; "required": false; };
|
|
427
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileViewerAudio, "swirl-file-viewer-audio", never, { "autoplay": { "alias": "autoplay"; "required": false; }; "file": { "alias": "file"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
428
428
|
}
|
|
429
429
|
export declare interface SwirlFileViewerAudio extends Components.SwirlFileViewerAudio {
|
|
430
430
|
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
@@ -486,7 +486,7 @@ export declare class SwirlFileViewerVideo {
|
|
|
486
486
|
protected el: HTMLElement;
|
|
487
487
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
488
488
|
static ɵfac: i0.ɵɵFactoryDeclaration<SwirlFileViewerVideo, never>;
|
|
489
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileViewerVideo, "swirl-file-viewer-video", never, { "autoplay": { "alias": "autoplay"; "required": false; }; "disableDownload": { "alias": "disableDownload"; "required": false; }; "file": { "alias": "file"; "required": false; };
|
|
489
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwirlFileViewerVideo, "swirl-file-viewer-video", never, { "autoplay": { "alias": "autoplay"; "required": false; }; "disableDownload": { "alias": "disableDownload"; "required": false; }; "file": { "alias": "file"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
490
490
|
}
|
|
491
491
|
export declare interface SwirlFileViewerVideo extends Components.SwirlFileViewerVideo {
|
|
492
492
|
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
@@ -2592,6 +2592,7 @@ export declare class SwirlLightbox {
|
|
|
2592
2592
|
}
|
|
2593
2593
|
export declare interface SwirlLightbox extends Components.SwirlLightbox {
|
|
2594
2594
|
activeSlideChange: EventEmitter<CustomEvent<number>>;
|
|
2595
|
+
lightboxClose: EventEmitter<CustomEvent<void>>;
|
|
2595
2596
|
}
|
|
2596
2597
|
export declare class SwirlLink {
|
|
2597
2598
|
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.339.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.339.0",
|
|
18
18
|
"rxjs": "~7.5.0",
|
|
19
19
|
"tslib": "^2.3.0",
|
|
20
20
|
"zone.js": "~0.13.3"
|
|
@@ -1040,14 +1040,14 @@ export declare interface SwirlFileViewer extends Components.SwirlFileViewer {
|
|
|
1040
1040
|
|
|
1041
1041
|
|
|
1042
1042
|
@ProxyCmp({
|
|
1043
|
-
inputs: ['autoplay', 'file'
|
|
1043
|
+
inputs: ['autoplay', 'file']
|
|
1044
1044
|
})
|
|
1045
1045
|
@Component({
|
|
1046
1046
|
selector: 'swirl-file-viewer-audio',
|
|
1047
1047
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1048
1048
|
template: '<ng-content></ng-content>',
|
|
1049
1049
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1050
|
-
inputs: ['autoplay', 'file'
|
|
1050
|
+
inputs: ['autoplay', 'file'],
|
|
1051
1051
|
})
|
|
1052
1052
|
export class SwirlFileViewerAudio {
|
|
1053
1053
|
protected el: HTMLElement;
|
|
@@ -1202,14 +1202,14 @@ export declare interface SwirlFileViewerText extends Components.SwirlFileViewerT
|
|
|
1202
1202
|
|
|
1203
1203
|
|
|
1204
1204
|
@ProxyCmp({
|
|
1205
|
-
inputs: ['autoplay', 'disableDownload', 'file'
|
|
1205
|
+
inputs: ['autoplay', 'disableDownload', 'file']
|
|
1206
1206
|
})
|
|
1207
1207
|
@Component({
|
|
1208
1208
|
selector: 'swirl-file-viewer-video',
|
|
1209
1209
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1210
1210
|
template: '<ng-content></ng-content>',
|
|
1211
1211
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1212
|
-
inputs: ['autoplay', 'disableDownload', 'file'
|
|
1212
|
+
inputs: ['autoplay', 'disableDownload', 'file'],
|
|
1213
1213
|
})
|
|
1214
1214
|
export class SwirlFileViewerVideo {
|
|
1215
1215
|
protected el: HTMLElement;
|
|
@@ -6358,7 +6358,7 @@ export class SwirlLightbox {
|
|
|
6358
6358
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
6359
6359
|
c.detach();
|
|
6360
6360
|
this.el = r.nativeElement;
|
|
6361
|
-
proxyOutputs(this, this.el, ['activeSlideChange']);
|
|
6361
|
+
proxyOutputs(this, this.el, ['activeSlideChange', 'lightboxClose']);
|
|
6362
6362
|
}
|
|
6363
6363
|
}
|
|
6364
6364
|
|
|
@@ -6366,6 +6366,8 @@ export class SwirlLightbox {
|
|
|
6366
6366
|
export declare interface SwirlLightbox extends Components.SwirlLightbox {
|
|
6367
6367
|
|
|
6368
6368
|
activeSlideChange: EventEmitter<CustomEvent<number>>;
|
|
6369
|
+
|
|
6370
|
+
lightboxClose: EventEmitter<CustomEvent<void>>;
|
|
6369
6371
|
}
|
|
6370
6372
|
|
|
6371
6373
|
|