@mottosports/motto-video-player 1.0.1-rc.48 → 1.0.1-rc.49

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.mjs CHANGED
@@ -1176,7 +1176,7 @@ var supportsWidevinePersistentLicenses = () => {
1176
1176
  import initShakaPlayerMux from "@mux/mux-data-shakaplayer";
1177
1177
 
1178
1178
  // package.json
1179
- var version = "1.0.1-rc.48";
1179
+ var version = "1.0.1-rc.49";
1180
1180
 
1181
1181
  // src/utils/licenseCache.ts
1182
1182
  var PERSISTENT_LICENSE_PREFIX = "motto_lic_";
@@ -3762,7 +3762,7 @@ var Player = forwardRef(
3762
3762
  getMuxMonitor: () => null
3763
3763
  }), [getAvailableQualities, setQuality, skipBack, skipForward, updateMuxData]);
3764
3764
  const isResponsive = !width && !height;
3765
- const containerClasses = twMerge2(containerClassName, "motto-video-container bg-black");
3765
+ const containerClasses = twMerge2(containerClassName, "motto-video-container bg-black overflow-hidden md:rounded-2xl");
3766
3766
  const containerStyle = isResponsive ? {
3767
3767
  aspectRatio: aspectRatio.toString()
3768
3768
  } : { width, height };
@@ -4871,12 +4871,12 @@ var CreativeWork = ({
4871
4871
  }
4872
4872
  if (activeVideoId && activePlaylist && !loadingPlaylist) {
4873
4873
  const activeVideo = videosData?.find((video) => video.id === activeVideoId);
4874
- return /* @__PURE__ */ jsx11("div", { className: twMerge5("md:rounded-2xl overflow-hidden aspect-video", className), children: /* @__PURE__ */ jsxs9("div", { className: "relative w-full h-full", children: [
4874
+ return /* @__PURE__ */ jsx11("div", { className: twMerge5("", className), children: /* @__PURE__ */ jsxs9("div", { className: "relative w-full h-full", children: [
4875
4875
  /* @__PURE__ */ jsx11(
4876
4876
  Player,
4877
4877
  {
4878
4878
  ...props,
4879
- className: twMerge5(className, "peer"),
4879
+ className: twMerge5(className, "peer aspect-video"),
4880
4880
  events: {
4881
4881
  ...events
4882
4882
  },