@getflip/swirl-components-angular 0.507.0 → 0.509.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 -1
- package/CHANGELOG.md +23 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1529 -1529
- 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 +11 -11
- package/projects/component-library/src/lib/stencil-generated/components.ts +3 -1
|
@@ -510,6 +510,7 @@ export declare interface SwirlFileViewerVideo extends Components.SwirlFileViewer
|
|
|
510
510
|
playbackPause: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
511
511
|
playbackTimeUpdate: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
512
512
|
playbackSeeked: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
513
|
+
playbackSeeking: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
513
514
|
playbackRateChange: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackRateChangeDetail>>;
|
|
514
515
|
playbackEnded: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
515
516
|
playbackTeardown: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getflip/swirl-components-angular",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.509.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/getflip/swirl"
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@angular/animations": "19.2.
|
|
22
|
-
"@angular/common": "19.2.
|
|
23
|
-
"@angular/compiler": "19.2.
|
|
24
|
-
"@angular/core": "19.2.
|
|
25
|
-
"@angular/forms": "19.2.
|
|
26
|
-
"@angular/platform-browser": "19.2.
|
|
27
|
-
"@angular/platform-browser-dynamic": "19.2.
|
|
28
|
-
"@angular/router": "19.2.
|
|
29
|
-
"@getflip/swirl-components": "0.
|
|
21
|
+
"@angular/animations": "19.2.23",
|
|
22
|
+
"@angular/common": "19.2.23",
|
|
23
|
+
"@angular/compiler": "19.2.23",
|
|
24
|
+
"@angular/core": "19.2.23",
|
|
25
|
+
"@angular/forms": "19.2.23",
|
|
26
|
+
"@angular/platform-browser": "19.2.23",
|
|
27
|
+
"@angular/platform-browser-dynamic": "19.2.23",
|
|
28
|
+
"@angular/router": "19.2.23",
|
|
29
|
+
"@getflip/swirl-components": "0.509.0",
|
|
30
30
|
"rxjs": "7.8.2",
|
|
31
31
|
"tslib": "2.4.0",
|
|
32
32
|
"zone.js": "0.15.0"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@angular-devkit/build-angular": "19.2.20",
|
|
36
36
|
"@angular/cli": "19.2.20",
|
|
37
|
-
"@angular/compiler-cli": "19.2.
|
|
37
|
+
"@angular/compiler-cli": "19.2.23",
|
|
38
38
|
"ng-packagr": "19.2.2",
|
|
39
39
|
"typescript": "5.7.3"
|
|
40
40
|
}
|
|
@@ -1300,7 +1300,7 @@ export class SwirlFileViewerVideo {
|
|
|
1300
1300
|
constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
|
|
1301
1301
|
c.detach();
|
|
1302
1302
|
this.el = r.nativeElement;
|
|
1303
|
-
proxyOutputs(this, this.el, ['activate', 'playbackPlay', 'playbackPause', 'playbackTimeUpdate', 'playbackSeeked', 'playbackRateChange', 'playbackEnded', 'playbackTeardown']);
|
|
1303
|
+
proxyOutputs(this, this.el, ['activate', 'playbackPlay', 'playbackPause', 'playbackTimeUpdate', 'playbackSeeked', 'playbackSeeking', 'playbackRateChange', 'playbackEnded', 'playbackTeardown']);
|
|
1304
1304
|
}
|
|
1305
1305
|
}
|
|
1306
1306
|
|
|
@@ -1320,6 +1320,8 @@ export declare interface SwirlFileViewerVideo extends Components.SwirlFileViewer
|
|
|
1320
1320
|
|
|
1321
1321
|
playbackSeeked: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1322
1322
|
|
|
1323
|
+
playbackSeeking: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1324
|
+
|
|
1323
1325
|
playbackRateChange: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackRateChangeDetail>>;
|
|
1324
1326
|
|
|
1325
1327
|
playbackEnded: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|