@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260708102516 → 0.8.1-dev.20260709115728
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/EnterAnimationClient-2NFKY4B5.mjs +31 -0
- package/dist/EnterAnimationClient-R3GFCNRS.mjs +33 -0
- package/dist/index.js +259 -220
- package/dist/index.mjs +5 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1184,6 +1184,7 @@ var WidgetNode = (props) => {
|
|
|
1184
1184
|
var WidgetNode_default = WidgetNode;
|
|
1185
1185
|
|
|
1186
1186
|
// src/components/pageRenderingEngine/nodes/DivContainer.tsx
|
|
1187
|
+
import dynamic10 from "next/dynamic";
|
|
1187
1188
|
import React22 from "react";
|
|
1188
1189
|
|
|
1189
1190
|
// src/components/pageRenderingEngine/nodes/EmbedNode.tsx
|
|
@@ -1401,9 +1402,6 @@ var NoDataFound = () => {
|
|
|
1401
1402
|
};
|
|
1402
1403
|
var NoDataFound_default = NoDataFound;
|
|
1403
1404
|
|
|
1404
|
-
// src/components/pageRenderingEngine/nodes/DivContainer.tsx
|
|
1405
|
-
import dynamic10 from "next/dynamic";
|
|
1406
|
-
|
|
1407
1405
|
// src/components/pageRenderingEngine/nodes/ImageGalleryNode.tsx
|
|
1408
1406
|
import dynamic9 from "next/dynamic";
|
|
1409
1407
|
import { Fragment as Fragment5, jsx as jsx32, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
@@ -2226,6 +2224,9 @@ var Pagination = dynamic10(() => import("./Pagination-OQT7Q2XO.mjs"), { ssr: tru
|
|
|
2226
2224
|
var Slider = dynamic10(() => import("./Slider-554BKC7N.mjs"), {
|
|
2227
2225
|
ssr: false
|
|
2228
2226
|
});
|
|
2227
|
+
var EnterAnimationClient = dynamic10(() => import("./EnterAnimationClient-R3GFCNRS.mjs"), {
|
|
2228
|
+
ssr: false
|
|
2229
|
+
});
|
|
2229
2230
|
function toCamelCase(str) {
|
|
2230
2231
|
return str.replace(/-([a-z])/g, (_, letter) => letter.toUpperCase());
|
|
2231
2232
|
}
|
|
@@ -2634,7 +2635,7 @@ var DivContainer = async (props) => {
|
|
|
2634
2635
|
dangerouslySetInnerHTML: { __html: cssResult.css + animationCSS }
|
|
2635
2636
|
}
|
|
2636
2637
|
),
|
|
2637
|
-
/* @__PURE__ */ jsx34(
|
|
2638
|
+
/* @__PURE__ */ jsx34(EnterAnimationClient, { hasEnterAnimation: !!props.node.enterAnimation, children: /* @__PURE__ */ jsx34(
|
|
2638
2639
|
Wrapper,
|
|
2639
2640
|
{
|
|
2640
2641
|
id: guid,
|
package/package.json
CHANGED