@mottosports/motto-video-player 1.0.1-rc.31 → 1.0.1-rc.33
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.mts +3 -9
- package/dist/index.d.ts +3 -9
- package/dist/index.js +423 -42
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +424 -43
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -259,21 +259,15 @@ interface PlayerProps extends Omit<HTMLAttributes<HTMLVideoElement>, 'src' | 'on
|
|
|
259
259
|
nonLinearAdSlotHeight?: number;
|
|
260
260
|
};
|
|
261
261
|
/**
|
|
262
|
-
* Chromecast configuration
|
|
262
|
+
* Chromecast configuration (optional)
|
|
263
|
+
* Chromecast is always enabled by default. This config allows customization.
|
|
263
264
|
*/
|
|
264
265
|
chromecastConfig?: {
|
|
265
|
-
/**
|
|
266
|
-
* Whether to enable Chromecast support
|
|
267
|
-
*/
|
|
268
|
-
enabled?: boolean;
|
|
269
266
|
/**
|
|
270
267
|
* Custom receiver application ID
|
|
268
|
+
* Defaults to 'CC1AD845' (Google's default media receiver)
|
|
271
269
|
*/
|
|
272
270
|
receiverApplicationId?: string;
|
|
273
|
-
/**
|
|
274
|
-
* Whether to auto-join cast sessions
|
|
275
|
-
*/
|
|
276
|
-
autoJoinPolicy?: string;
|
|
277
271
|
};
|
|
278
272
|
/**
|
|
279
273
|
* Quality selection configuration
|
package/dist/index.d.ts
CHANGED
|
@@ -259,21 +259,15 @@ interface PlayerProps extends Omit<HTMLAttributes<HTMLVideoElement>, 'src' | 'on
|
|
|
259
259
|
nonLinearAdSlotHeight?: number;
|
|
260
260
|
};
|
|
261
261
|
/**
|
|
262
|
-
* Chromecast configuration
|
|
262
|
+
* Chromecast configuration (optional)
|
|
263
|
+
* Chromecast is always enabled by default. This config allows customization.
|
|
263
264
|
*/
|
|
264
265
|
chromecastConfig?: {
|
|
265
|
-
/**
|
|
266
|
-
* Whether to enable Chromecast support
|
|
267
|
-
*/
|
|
268
|
-
enabled?: boolean;
|
|
269
266
|
/**
|
|
270
267
|
* Custom receiver application ID
|
|
268
|
+
* Defaults to 'CC1AD845' (Google's default media receiver)
|
|
271
269
|
*/
|
|
272
270
|
receiverApplicationId?: string;
|
|
273
|
-
/**
|
|
274
|
-
* Whether to auto-join cast sessions
|
|
275
|
-
*/
|
|
276
|
-
autoJoinPolicy?: string;
|
|
277
271
|
};
|
|
278
272
|
/**
|
|
279
273
|
* Quality selection configuration
|