@glomex/integration-web-component 1.1396.1 → 1.1396.3
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.d.ts +4 -4
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -480,11 +480,11 @@ export declare class IntegrationElement extends HTMLElement implements Integrati
|
|
|
480
480
|
*/
|
|
481
481
|
play(options?: {
|
|
482
482
|
startMethod: Exclude<StartMethod, StartMethod.PRE_CLICK>;
|
|
483
|
-
}): void
|
|
483
|
+
}): Promise<void>;
|
|
484
484
|
/**
|
|
485
485
|
* Pauses the current media playback.
|
|
486
486
|
*/
|
|
487
|
-
pause(): void
|
|
487
|
+
pause(): Promise<void>;
|
|
488
488
|
/**
|
|
489
489
|
* Snapshots current video frame. Requires {@link crossorigin} to be set to `anonymous`.
|
|
490
490
|
*/
|
|
@@ -605,7 +605,7 @@ export declare class IntegrationElement extends HTMLElement implements Integrati
|
|
|
605
605
|
*/
|
|
606
606
|
setPresentationMode(mode: PresentationMode | PresentationModeString, { byUser }?: {
|
|
607
607
|
byUser?: boolean | undefined;
|
|
608
|
-
}): void
|
|
608
|
+
}): Promise<void>;
|
|
609
609
|
/**
|
|
610
610
|
* Exits the current presentation mode.
|
|
611
611
|
*
|
|
@@ -614,7 +614,7 @@ export declare class IntegrationElement extends HTMLElement implements Integrati
|
|
|
614
614
|
*/
|
|
615
615
|
exitCurrentPresentationMode({ byUser }?: {
|
|
616
616
|
byUser?: boolean;
|
|
617
|
-
}): void
|
|
617
|
+
}): Promise<void>;
|
|
618
618
|
}
|
|
619
619
|
|
|
620
620
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glomex/integration-web-component",
|
|
3
|
-
"version": "1.1396.
|
|
3
|
+
"version": "1.1396.3",
|
|
4
4
|
"description": "Web component and types to integrate the glomex player",
|
|
5
5
|
"documentation": "https://docs.glomex.com",
|
|
6
6
|
"homepage": "https://glomex.com",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@biomejs/biome": "^1.9.4",
|
|
33
|
-
"@glomex/integration": "^1.1396.
|
|
33
|
+
"@glomex/integration": "^1.1396.3",
|
|
34
34
|
"@microsoft/api-extractor": "^7.52.10",
|
|
35
35
|
"@rslib/core": "^0.11.2",
|
|
36
36
|
"typescript": "^5.8.3"
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
41
|
"license": "MIT",
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "c374396d1445601914b5f1d3c2dfbfdcc8d55f00"
|
|
43
43
|
}
|