@getflip/swirl-components-angular 0.506.0 → 0.507.0-beta-20260622113310
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 +8 -0
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs +1 -1
- package/dist/component-library/fesm2022/getflip-swirl-components-angular.mjs.map +1 -1
- package/dist/component-library/lib/stencil-generated/components.d.ts +9 -0
- package/package.json +2 -2
- package/projects/component-library/src/lib/stencil-generated/components.ts +18 -1
|
@@ -4,6 +4,8 @@ import type { SwirlAppLayoutMobileView as ISwirlAppLayoutSwirlAppLayoutMobileVie
|
|
|
4
4
|
import type { SwirlAppLayoutNavigationExpansionState as ISwirlAppLayoutSwirlAppLayoutNavigationExpansionState } from '@getflip/swirl-components';
|
|
5
5
|
import type { SwirlAutocompleteValue as ISwirlAutocompleteSwirlAutocompleteValue } from '@getflip/swirl-components';
|
|
6
6
|
import type { SwirlDialogToggleEvent as ISwirlDialogSwirlDialogToggleEvent } from '@getflip/swirl-components';
|
|
7
|
+
import type { SwirlFileViewerVideoPlaybackDetail as ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail } from '@getflip/swirl-components';
|
|
8
|
+
import type { SwirlFileViewerVideoPlaybackRateChangeDetail as ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackRateChangeDetail } from '@getflip/swirl-components';
|
|
7
9
|
import type { SwirlDialogToggleEvent as ISwirlModalSwirlDialogToggleEvent } from '@getflip/swirl-components';
|
|
8
10
|
import type { ComputePositionReturn as ISwirlPopoverComputePositionReturn } from '@getflip/swirl-components';
|
|
9
11
|
import type { SwirlTableDropRowEvent as ISwirlTableSwirlTableDropRowEvent } from '@getflip/swirl-components';
|
|
@@ -504,6 +506,13 @@ export declare class SwirlFileViewerVideo {
|
|
|
504
506
|
}
|
|
505
507
|
export declare interface SwirlFileViewerVideo extends Components.SwirlFileViewerVideo {
|
|
506
508
|
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
509
|
+
playbackPlay: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
510
|
+
playbackPause: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
511
|
+
playbackTimeUpdate: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
512
|
+
playbackSeeked: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
513
|
+
playbackRateChange: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackRateChangeDetail>>;
|
|
514
|
+
playbackEnded: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
515
|
+
playbackTeardown: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
507
516
|
}
|
|
508
517
|
export declare class SwirlFormControl {
|
|
509
518
|
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.507.0-beta-20260622113310",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/getflip/swirl"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@angular/platform-browser": "19.2.19",
|
|
27
27
|
"@angular/platform-browser-dynamic": "19.2.19",
|
|
28
28
|
"@angular/router": "19.2.19",
|
|
29
|
-
"@getflip/swirl-components": "0.
|
|
29
|
+
"@getflip/swirl-components": "0.507.0-beta-20260622113310",
|
|
30
30
|
"rxjs": "7.8.2",
|
|
31
31
|
"tslib": "2.4.0",
|
|
32
32
|
"zone.js": "0.15.0"
|
|
@@ -1300,14 +1300,31 @@ 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']);
|
|
1303
|
+
proxyOutputs(this, this.el, ['activate', 'playbackPlay', 'playbackPause', 'playbackTimeUpdate', 'playbackSeeked', 'playbackRateChange', 'playbackEnded', 'playbackTeardown']);
|
|
1304
1304
|
}
|
|
1305
1305
|
}
|
|
1306
1306
|
|
|
1307
1307
|
|
|
1308
|
+
import type { SwirlFileViewerVideoPlaybackDetail as ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail } from '@getflip/swirl-components';
|
|
1309
|
+
import type { SwirlFileViewerVideoPlaybackRateChangeDetail as ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackRateChangeDetail } from '@getflip/swirl-components';
|
|
1310
|
+
|
|
1308
1311
|
export declare interface SwirlFileViewerVideo extends Components.SwirlFileViewerVideo {
|
|
1309
1312
|
|
|
1310
1313
|
activate: EventEmitter<CustomEvent<HTMLElement>>;
|
|
1314
|
+
|
|
1315
|
+
playbackPlay: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1316
|
+
|
|
1317
|
+
playbackPause: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1318
|
+
|
|
1319
|
+
playbackTimeUpdate: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1320
|
+
|
|
1321
|
+
playbackSeeked: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1322
|
+
|
|
1323
|
+
playbackRateChange: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackRateChangeDetail>>;
|
|
1324
|
+
|
|
1325
|
+
playbackEnded: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1326
|
+
|
|
1327
|
+
playbackTeardown: EventEmitter<CustomEvent<ISwirlFileViewerVideoSwirlFileViewerVideoPlaybackDetail>>;
|
|
1311
1328
|
}
|
|
1312
1329
|
|
|
1313
1330
|
|