@geekapps/silo-elements-nextjs 0.2.41 → 0.2.42
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/VideoPlayer.js +6 -6
- package/dist/VideoPlayer.js.map +1 -1
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/styles.css +1 -1
package/dist/VideoPlayer.js
CHANGED
|
@@ -816,10 +816,10 @@ function Video({
|
|
|
816
816
|
opacity: clickIcon ? 1 : 0,
|
|
817
817
|
transition: clickIcon ? "opacity 0.08s ease-in" : "opacity 0.45s ease-out"
|
|
818
818
|
},
|
|
819
|
-
children: /* @__PURE__ */ jsx("span", { className: "grid size-10 place-items-center text-white drop-shadow-[0_2px_12px_rgba(0,0,0,0.8)] @sm:size-14 @lg:size-16", children: clickIcon === "pause" ? /* @__PURE__ */ jsx(Pause, { className: "size-
|
|
819
|
+
children: /* @__PURE__ */ jsx("span", { className: "grid size-10 place-items-center text-white drop-shadow-[0_2px_12px_rgba(0,0,0,0.8)] @sm:size-14 @lg:size-16", children: clickIcon === "pause" ? /* @__PURE__ */ jsx(Pause, { className: "size-7 @sm:size-9 @lg:size-11", fill: "white" }) : /* @__PURE__ */ jsx(
|
|
820
820
|
Play,
|
|
821
821
|
{
|
|
822
|
-
className: "ml-0.5 size-
|
|
822
|
+
className: "ml-0.5 size-7 @sm:size-9 @lg:size-11",
|
|
823
823
|
fill: "white"
|
|
824
824
|
}
|
|
825
825
|
) })
|
|
@@ -985,7 +985,7 @@ function Video({
|
|
|
985
985
|
/* @__PURE__ */ jsx(
|
|
986
986
|
"svg",
|
|
987
987
|
{
|
|
988
|
-
className: `size-4 shrink-0${selectedQuality === quality.id ? "text-white" : "text-transparent"}`,
|
|
988
|
+
className: `size-4 shrink-0 ${selectedQuality === quality.id ? "text-white" : "text-transparent"}`,
|
|
989
989
|
viewBox: "0 0 16 16",
|
|
990
990
|
fill: "none",
|
|
991
991
|
children: /* @__PURE__ */ jsx(
|
|
@@ -1065,7 +1065,7 @@ function Video({
|
|
|
1065
1065
|
/* @__PURE__ */ jsx(
|
|
1066
1066
|
"svg",
|
|
1067
1067
|
{
|
|
1068
|
-
className: `size-4 shrink-0${subtitleStyle.track === s.srclang ? "text-white" : "text-transparent"}`,
|
|
1068
|
+
className: `size-4 shrink-0 ${subtitleStyle.track === s.srclang ? "text-white" : "text-transparent"}`,
|
|
1069
1069
|
viewBox: "0 0 16 16",
|
|
1070
1070
|
fill: "none",
|
|
1071
1071
|
children: /* @__PURE__ */ jsx(
|
|
@@ -1248,7 +1248,7 @@ function Video({
|
|
|
1248
1248
|
/* @__PURE__ */ jsx(
|
|
1249
1249
|
"svg",
|
|
1250
1250
|
{
|
|
1251
|
-
className: `size-4 shrink-0${selectedAudio === track.id ? "text-white" : "text-transparent"}`,
|
|
1251
|
+
className: `size-4 shrink-0 ${selectedAudio === track.id ? "text-white" : "text-transparent"}`,
|
|
1252
1252
|
viewBox: "0 0 16 16",
|
|
1253
1253
|
fill: "none",
|
|
1254
1254
|
children: /* @__PURE__ */ jsx(
|
|
@@ -1319,7 +1319,7 @@ function Video({
|
|
|
1319
1319
|
/* @__PURE__ */ jsx(
|
|
1320
1320
|
"svg",
|
|
1321
1321
|
{
|
|
1322
|
-
className: `size-4 shrink-0${playbackRate === speed ? "text-white" : "text-transparent"}`,
|
|
1322
|
+
className: `size-4 shrink-0 ${playbackRate === speed ? "text-white" : "text-transparent"}`,
|
|
1323
1323
|
viewBox: "0 0 16 16",
|
|
1324
1324
|
fill: "none",
|
|
1325
1325
|
children: /* @__PURE__ */ jsx(
|