@byomakase/omakase-react-components 1.4.0 → 1.4.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/dist/index.cjs.js +43 -42
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.d.ts +3 -0
- package/dist/index.es.js +4045 -4006
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +31 -30
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
|
@@ -1431,6 +1431,7 @@ export declare interface TamsVideo extends Video {
|
|
|
1431
1431
|
export declare interface TamsVideoApi extends VideoApi {
|
|
1432
1432
|
getVideo: () => TamsVideo | undefined;
|
|
1433
1433
|
isTamsLoaded: () => boolean;
|
|
1434
|
+
getVideoLoadOptions: () => TamsVideoLoadOptions | undefined;
|
|
1434
1435
|
}
|
|
1435
1436
|
|
|
1436
1437
|
export declare interface TamsVideoLoadedEvent extends VideoLoadedEvent {
|
|
@@ -1549,6 +1550,7 @@ export declare class VideoApiProxy {
|
|
|
1549
1550
|
private _proxy;
|
|
1550
1551
|
private _mediaStartTime?;
|
|
1551
1552
|
private _loadOptions?;
|
|
1553
|
+
private _requestedDuration?;
|
|
1552
1554
|
private _onVideoLoaded$;
|
|
1553
1555
|
private _onVideoLoading$;
|
|
1554
1556
|
private _isTamsLoading;
|
|
@@ -1560,6 +1562,7 @@ export declare class VideoApiProxy {
|
|
|
1560
1562
|
get loadOptions(): TamsVideoLoadOptions | undefined;
|
|
1561
1563
|
set loadOptions(loadOptions: TamsVideoLoadOptions | undefined);
|
|
1562
1564
|
set mediaStartTime(mediaStartTime: number | undefined);
|
|
1565
|
+
set requestedDuration(value: number | undefined);
|
|
1563
1566
|
setTamsVideo(tamsVideo: TamsVideo): void;
|
|
1564
1567
|
emitVideoLoadedEvent(): void;
|
|
1565
1568
|
}
|