@yoobic/yobi 7.7.121 → 7.7.125
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/cjs/yoo-videoplayer-videojs.cjs.entry.js +1 -0
- package/dist/collection/components/core/video-player/videoplayer-videojs/videoplayer-videojs.js +1 -0
- package/dist/design-system/design-system.esm.js +1 -1
- package/dist/design-system/{p-ac9dd690.entry.js → p-499ef7cb.entry.js} +1 -1
- package/dist/esm/yoo-videoplayer-videojs.entry.js +1 -0
- package/dist/types/components/core/video-player/videoplayer-videojs/videoplayer-videojs.d.ts +1 -0
- package/package.json +1 -1
|
@@ -64201,6 +64201,7 @@ const YooVideoPlayerVideojsComponent = class {
|
|
|
64201
64201
|
onFixSource(newSrc) {
|
|
64202
64202
|
var _a;
|
|
64203
64203
|
if (((_a = this.player) === null || _a === void 0 ? void 0 : _a.src) && newSrc) {
|
|
64204
|
+
newSrc.withCredentials = true;
|
|
64204
64205
|
this.player.src(newSrc);
|
|
64205
64206
|
this.player.load();
|
|
64206
64207
|
}
|
package/dist/types/components/core/video-player/videoplayer-videojs/videoplayer-videojs.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export declare class YooVideoPlayerVideojsComponent implements IVideoPlayerCoreM
|
|
|
166
166
|
onInitVideoJs(): void;
|
|
167
167
|
onFixSource(newSrc: {
|
|
168
168
|
src: string;
|
|
169
|
+
withCredentials?: boolean;
|
|
169
170
|
}): void;
|
|
170
171
|
onVideoJSError(): void;
|
|
171
172
|
onUpdateVideoJSSource(newURL: string): void;
|