@mottosports/motto-video-player 1.0.1-rc.5 → 1.0.1-rc.7
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 +1 -13
- package/dist/index.d.ts +1 -13
- package/dist/index.js +121 -173
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +94 -144
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -332,12 +332,6 @@ interface MuxAnalyticsConfig {
|
|
|
332
332
|
|
|
333
333
|
declare const Player: React__default.ForwardRefExoticComponent<PlayerProps & React__default.RefAttributes<HTMLVideoElement>>;
|
|
334
334
|
|
|
335
|
-
/**
|
|
336
|
-
* Client-only wrapper for the Player component to prevent SSR issues.
|
|
337
|
-
* This component only renders the Player on the client side after hydration.
|
|
338
|
-
*/
|
|
339
|
-
declare const ClientOnlyPlayer: React__default.ForwardRefExoticComponent<PlayerProps & React__default.RefAttributes<HTMLVideoElement>>;
|
|
340
|
-
|
|
341
335
|
interface VideoData {
|
|
342
336
|
id: string;
|
|
343
337
|
name?: string;
|
|
@@ -514,12 +508,6 @@ interface CreativeWorkProps extends Omit<PlayerProps, 'src'> {
|
|
|
514
508
|
}
|
|
515
509
|
declare const CreativeWork: React__default.FC<CreativeWorkProps>;
|
|
516
510
|
|
|
517
|
-
/**
|
|
518
|
-
* Client-side wrapper for the Event component to prevent SSR issues
|
|
519
|
-
* This component ensures that Event is only rendered on the client-side
|
|
520
|
-
*/
|
|
521
|
-
declare const ClientSideEvent: React__default.FC<EventProps>;
|
|
522
|
-
|
|
523
511
|
interface QueryProviderProps {
|
|
524
512
|
children: React__default.ReactNode;
|
|
525
513
|
}
|
|
@@ -529,4 +517,4 @@ declare const _default: {
|
|
|
529
517
|
Player: React.ForwardRefExoticComponent<PlayerProps & React.RefAttributes<HTMLVideoElement>>;
|
|
530
518
|
};
|
|
531
519
|
|
|
532
|
-
export {
|
|
520
|
+
export { CreativeWork, type CreativeWorkData, type CreativeWorkProps, CreativeWorksSortDirection, Event, type EventData, type EventProps, EventsSortDirection, type MuxAnalyticsConfig, type MuxDataUpdatePayload, type MuxErrorTranslator, type MuxMetadata, Player, type PlayerEvents, type PlayerProps, QueryProvider, type SeekbarConfig, Video, type VideoData, type VideoListItem, type VideoProps, _default as default, fetchCreativeWorkData, fetchEventData, fetchVideoData, fetchVideosList };
|
package/dist/index.d.ts
CHANGED
|
@@ -332,12 +332,6 @@ interface MuxAnalyticsConfig {
|
|
|
332
332
|
|
|
333
333
|
declare const Player: React__default.ForwardRefExoticComponent<PlayerProps & React__default.RefAttributes<HTMLVideoElement>>;
|
|
334
334
|
|
|
335
|
-
/**
|
|
336
|
-
* Client-only wrapper for the Player component to prevent SSR issues.
|
|
337
|
-
* This component only renders the Player on the client side after hydration.
|
|
338
|
-
*/
|
|
339
|
-
declare const ClientOnlyPlayer: React__default.ForwardRefExoticComponent<PlayerProps & React__default.RefAttributes<HTMLVideoElement>>;
|
|
340
|
-
|
|
341
335
|
interface VideoData {
|
|
342
336
|
id: string;
|
|
343
337
|
name?: string;
|
|
@@ -514,12 +508,6 @@ interface CreativeWorkProps extends Omit<PlayerProps, 'src'> {
|
|
|
514
508
|
}
|
|
515
509
|
declare const CreativeWork: React__default.FC<CreativeWorkProps>;
|
|
516
510
|
|
|
517
|
-
/**
|
|
518
|
-
* Client-side wrapper for the Event component to prevent SSR issues
|
|
519
|
-
* This component ensures that Event is only rendered on the client-side
|
|
520
|
-
*/
|
|
521
|
-
declare const ClientSideEvent: React__default.FC<EventProps>;
|
|
522
|
-
|
|
523
511
|
interface QueryProviderProps {
|
|
524
512
|
children: React__default.ReactNode;
|
|
525
513
|
}
|
|
@@ -529,4 +517,4 @@ declare const _default: {
|
|
|
529
517
|
Player: React.ForwardRefExoticComponent<PlayerProps & React.RefAttributes<HTMLVideoElement>>;
|
|
530
518
|
};
|
|
531
519
|
|
|
532
|
-
export {
|
|
520
|
+
export { CreativeWork, type CreativeWorkData, type CreativeWorkProps, CreativeWorksSortDirection, Event, type EventData, type EventProps, EventsSortDirection, type MuxAnalyticsConfig, type MuxDataUpdatePayload, type MuxErrorTranslator, type MuxMetadata, Player, type PlayerEvents, type PlayerProps, QueryProvider, type SeekbarConfig, Video, type VideoData, type VideoListItem, type VideoProps, _default as default, fetchCreativeWorkData, fetchEventData, fetchVideoData, fetchVideosList };
|