@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260507104258 → 0.8.1-dev.20260507110620
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.
|
@@ -284,6 +284,15 @@ var HlsPlayer = React.memo(
|
|
|
284
284
|
]
|
|
285
285
|
}
|
|
286
286
|
),
|
|
287
|
+
/* @__PURE__ */ jsx("style", { children: `
|
|
288
|
+
.hls-play-btn {
|
|
289
|
+
will-change: transform;
|
|
290
|
+
transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
291
|
+
}
|
|
292
|
+
.hls-play-btn:hover {
|
|
293
|
+
transform: scale(1.08);
|
|
294
|
+
}
|
|
295
|
+
` }),
|
|
287
296
|
!isPlayOnHover && /* @__PURE__ */ jsx(
|
|
288
297
|
"div",
|
|
289
298
|
{
|
|
@@ -297,6 +306,7 @@ var HlsPlayer = React.memo(
|
|
|
297
306
|
{
|
|
298
307
|
type: "button",
|
|
299
308
|
"aria-label": isPlaying ? "Pause" : "Play",
|
|
309
|
+
className: "hls-play-btn",
|
|
300
310
|
onClick: (e) => {
|
|
301
311
|
e.stopPropagation();
|
|
302
312
|
handlePlayPause();
|
package/dist/index.js
CHANGED
|
@@ -690,6 +690,15 @@ var init_HlsPlayer = __esm({
|
|
|
690
690
|
]
|
|
691
691
|
}
|
|
692
692
|
),
|
|
693
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("style", { children: `
|
|
694
|
+
.hls-play-btn {
|
|
695
|
+
will-change: transform;
|
|
696
|
+
transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
697
|
+
}
|
|
698
|
+
.hls-play-btn:hover {
|
|
699
|
+
transform: scale(1.08);
|
|
700
|
+
}
|
|
701
|
+
` }),
|
|
693
702
|
!isPlayOnHover && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
694
703
|
"div",
|
|
695
704
|
{
|
|
@@ -703,6 +712,7 @@ var init_HlsPlayer = __esm({
|
|
|
703
712
|
{
|
|
704
713
|
type: "button",
|
|
705
714
|
"aria-label": isPlaying ? "Pause" : "Play",
|
|
715
|
+
className: "hls-play-btn",
|
|
706
716
|
onClick: (e) => {
|
|
707
717
|
e.stopPropagation();
|
|
708
718
|
handlePlayPause();
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HlsPlayer_default
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-JGRYFWF6.mjs";
|
|
4
4
|
import {
|
|
5
5
|
Button_default,
|
|
6
6
|
ClientButton_default,
|
|
@@ -1963,7 +1963,7 @@ var DeviceAssetSelector_default = DeviceAssetSelector;
|
|
|
1963
1963
|
|
|
1964
1964
|
// src/components/pageRenderingEngine/nodes/ImageNode.tsx
|
|
1965
1965
|
import { Fragment as Fragment2, jsx as jsx37 } from "react/jsx-runtime";
|
|
1966
|
-
var HlsPlayer = dynamic2(() => import("./HlsPlayer-
|
|
1966
|
+
var HlsPlayer = dynamic2(() => import("./HlsPlayer-4VB65GYW.mjs"), {
|
|
1967
1967
|
ssr: false
|
|
1968
1968
|
});
|
|
1969
1969
|
var getNestedValue = (obj, path) => {
|
|
@@ -3645,7 +3645,7 @@ var Pagination_default = Pagination;
|
|
|
3645
3645
|
// src/components/pageRenderingEngine/nodes/ImageGalleryNode.tsx
|
|
3646
3646
|
import dynamic6 from "next/dynamic";
|
|
3647
3647
|
import { Fragment as Fragment8, jsx as jsx56, jsxs as jsxs31 } from "react/jsx-runtime";
|
|
3648
|
-
var HlsPlayer2 = dynamic6(() => import("./HlsPlayer-
|
|
3648
|
+
var HlsPlayer2 = dynamic6(() => import("./HlsPlayer-4VB65GYW.mjs"), { ssr: false });
|
|
3649
3649
|
var deviceToMediaQuery = (device) => {
|
|
3650
3650
|
switch (device) {
|
|
3651
3651
|
case "sm":
|
package/package.json
CHANGED