@glomex/integration-web-component 1.1496.0 → 1.1496.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.d.ts +4 -15
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -778,21 +778,6 @@ export declare class IntegrationElement extends HTMLElement implements Integrati
|
|
|
778
778
|
* ```
|
|
779
779
|
*/
|
|
780
780
|
get videoTracks(): VideoTrackList | undefined;
|
|
781
|
-
/**
|
|
782
|
-
* Returns the current audio track.
|
|
783
|
-
* @deprecated Use {@link audioTracks} getter instead: `integration.audioTracks?.selected`
|
|
784
|
-
*/
|
|
785
|
-
getCurrentAudioTrack(): AudioTrack | null;
|
|
786
|
-
/**
|
|
787
|
-
* Returns the current text track.
|
|
788
|
-
* @deprecated Use {@link textTracks} getter instead: `integration.textTracks?.selected`
|
|
789
|
-
*/
|
|
790
|
-
getCurrentTextTrack(): TextTrack_2 | null;
|
|
791
|
-
/**
|
|
792
|
-
* Returns the current video track.
|
|
793
|
-
* @deprecated Use {@link videoTracks} getter instead: `integration.videoTracks?.selected`
|
|
794
|
-
*/
|
|
795
|
-
getCurrentVideoTrack(): VideoTrack | null | undefined;
|
|
796
781
|
}
|
|
797
782
|
|
|
798
783
|
/**
|
|
@@ -1250,6 +1235,10 @@ export declare interface IntegrationProperties {
|
|
|
1250
1235
|
playlistId?: string;
|
|
1251
1236
|
/**
|
|
1252
1237
|
* Determines the index of the media item within the playlist that should be or is currently selected.
|
|
1238
|
+
*
|
|
1239
|
+
* This property can be used to:
|
|
1240
|
+
* - **Switch between media items**: Set this property to navigate to a different item in the playlist (zero-based index).
|
|
1241
|
+
* - **Get the current playlist index**: Read this property to determine which media item is currently active in the playlist.
|
|
1253
1242
|
*/
|
|
1254
1243
|
index?: number;
|
|
1255
1244
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glomex/integration-web-component",
|
|
3
|
-
"version": "1.1496.
|
|
3
|
+
"version": "1.1496.1",
|
|
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",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@biomejs/biome": "catalog:",
|
|
35
|
-
"@glomex/integration": "1.1496.
|
|
35
|
+
"@glomex/integration": "1.1496.1",
|
|
36
36
|
"@microsoft/api-extractor": "catalog:",
|
|
37
37
|
"@rslib/core": "catalog:",
|
|
38
38
|
"npm-run-all": "catalog:",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"license": "MIT",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "24affa3b0391e08269ce20e92baf6f31eb3ca7b0"
|
|
46
46
|
}
|