@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/index.js
CHANGED
|
@@ -1943,10 +1943,10 @@ function Video({
|
|
|
1943
1943
|
opacity: clickIcon ? 1 : 0,
|
|
1944
1944
|
transition: clickIcon ? "opacity 0.08s ease-in" : "opacity 0.45s ease-out"
|
|
1945
1945
|
},
|
|
1946
|
-
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-
|
|
1946
|
+
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(
|
|
1947
1947
|
Play,
|
|
1948
1948
|
{
|
|
1949
|
-
className: "ml-0.5 size-
|
|
1949
|
+
className: "ml-0.5 size-7 @sm:size-9 @lg:size-11",
|
|
1950
1950
|
fill: "white"
|
|
1951
1951
|
}
|
|
1952
1952
|
) })
|
|
@@ -2112,7 +2112,7 @@ function Video({
|
|
|
2112
2112
|
/* @__PURE__ */ jsx(
|
|
2113
2113
|
"svg",
|
|
2114
2114
|
{
|
|
2115
|
-
className: `size-4 shrink-0${selectedQuality === quality.id ? "text-white" : "text-transparent"}`,
|
|
2115
|
+
className: `size-4 shrink-0 ${selectedQuality === quality.id ? "text-white" : "text-transparent"}`,
|
|
2116
2116
|
viewBox: "0 0 16 16",
|
|
2117
2117
|
fill: "none",
|
|
2118
2118
|
children: /* @__PURE__ */ jsx(
|
|
@@ -2192,7 +2192,7 @@ function Video({
|
|
|
2192
2192
|
/* @__PURE__ */ jsx(
|
|
2193
2193
|
"svg",
|
|
2194
2194
|
{
|
|
2195
|
-
className: `size-4 shrink-0${subtitleStyle.track === s.srclang ? "text-white" : "text-transparent"}`,
|
|
2195
|
+
className: `size-4 shrink-0 ${subtitleStyle.track === s.srclang ? "text-white" : "text-transparent"}`,
|
|
2196
2196
|
viewBox: "0 0 16 16",
|
|
2197
2197
|
fill: "none",
|
|
2198
2198
|
children: /* @__PURE__ */ jsx(
|
|
@@ -2375,7 +2375,7 @@ function Video({
|
|
|
2375
2375
|
/* @__PURE__ */ jsx(
|
|
2376
2376
|
"svg",
|
|
2377
2377
|
{
|
|
2378
|
-
className: `size-4 shrink-0${selectedAudio === track.id ? "text-white" : "text-transparent"}`,
|
|
2378
|
+
className: `size-4 shrink-0 ${selectedAudio === track.id ? "text-white" : "text-transparent"}`,
|
|
2379
2379
|
viewBox: "0 0 16 16",
|
|
2380
2380
|
fill: "none",
|
|
2381
2381
|
children: /* @__PURE__ */ jsx(
|
|
@@ -2446,7 +2446,7 @@ function Video({
|
|
|
2446
2446
|
/* @__PURE__ */ jsx(
|
|
2447
2447
|
"svg",
|
|
2448
2448
|
{
|
|
2449
|
-
className: `size-4 shrink-0${playbackRate === speed ? "text-white" : "text-transparent"}`,
|
|
2449
|
+
className: `size-4 shrink-0 ${playbackRate === speed ? "text-white" : "text-transparent"}`,
|
|
2450
2450
|
viewBox: "0 0 16 16",
|
|
2451
2451
|
fill: "none",
|
|
2452
2452
|
children: /* @__PURE__ */ jsx(
|