@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260810072737 → 0.8.1-dev.20260810100746
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.
|
@@ -52,8 +52,7 @@ import { jsx as jsx2 } from "react/jsx-runtime";
|
|
|
52
52
|
var IframeClient = ({
|
|
53
53
|
src,
|
|
54
54
|
width,
|
|
55
|
-
height
|
|
56
|
-
allowFullScreen
|
|
55
|
+
height
|
|
57
56
|
}) => {
|
|
58
57
|
const iframeRef = useRef(null);
|
|
59
58
|
const [iframeHeight, setIframeHeight] = useState("100%");
|
|
@@ -99,7 +98,6 @@ var IframeClient = ({
|
|
|
99
98
|
width: width != null ? `${width}px` : "100%",
|
|
100
99
|
height: height != null ? `${height}px` : iframeHeight
|
|
101
100
|
},
|
|
102
|
-
allowFullScreen,
|
|
103
101
|
onLoad: handleIframeLoad
|
|
104
102
|
}
|
|
105
103
|
) }) });
|
|
@@ -50,8 +50,7 @@ import { jsx as jsx2 } from "react/jsx-runtime";
|
|
|
50
50
|
var IframeClient = ({
|
|
51
51
|
src,
|
|
52
52
|
width,
|
|
53
|
-
height
|
|
54
|
-
allowFullScreen
|
|
53
|
+
height
|
|
55
54
|
}) => {
|
|
56
55
|
const iframeRef = useRef(null);
|
|
57
56
|
const [iframeHeight, setIframeHeight] = useState("100%");
|
|
@@ -97,7 +96,6 @@ var IframeClient = ({
|
|
|
97
96
|
width: width != null ? `${width}px` : "100%",
|
|
98
97
|
height: height != null ? `${height}px` : iframeHeight
|
|
99
98
|
},
|
|
100
|
-
allowFullScreen,
|
|
101
99
|
onLoad: handleIframeLoad
|
|
102
100
|
}
|
|
103
101
|
) }) });
|
package/dist/index.js
CHANGED
|
@@ -3999,8 +3999,7 @@ var init_IframeClient = __esm({
|
|
|
3999
3999
|
IframeClient = ({
|
|
4000
4000
|
src,
|
|
4001
4001
|
width,
|
|
4002
|
-
height
|
|
4003
|
-
allowFullScreen
|
|
4002
|
+
height
|
|
4004
4003
|
}) => {
|
|
4005
4004
|
const iframeRef = (0, import_react53.useRef)(null);
|
|
4006
4005
|
const [iframeHeight, setIframeHeight] = (0, import_react53.useState)("100%");
|
|
@@ -4046,7 +4045,6 @@ var init_IframeClient = __esm({
|
|
|
4046
4045
|
width: width != null ? `${width}px` : "100%",
|
|
4047
4046
|
height: height != null ? `${height}px` : iframeHeight
|
|
4048
4047
|
},
|
|
4049
|
-
allowFullScreen,
|
|
4050
4048
|
onLoad: handleIframeLoad
|
|
4051
4049
|
}
|
|
4052
4050
|
) }) });
|
|
@@ -7074,8 +7072,7 @@ var GoogleMapNode = (props) => {
|
|
|
7074
7072
|
{
|
|
7075
7073
|
src,
|
|
7076
7074
|
width: props.node.width,
|
|
7077
|
-
height: props.node.height
|
|
7078
|
-
allowFullScreen: props.node.allowFullScreen
|
|
7075
|
+
height: props.node.height
|
|
7079
7076
|
}
|
|
7080
7077
|
) });
|
|
7081
7078
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -1202,7 +1202,7 @@ import React22 from "react";
|
|
|
1202
1202
|
// src/components/pageRenderingEngine/nodes/EmbedNode.tsx
|
|
1203
1203
|
import dynamic9 from "next/dynamic";
|
|
1204
1204
|
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
1205
|
-
var IframeClient = dynamic9(() => import("./IframeClient-
|
|
1205
|
+
var IframeClient = dynamic9(() => import("./IframeClient-WF2KLXZB.mjs"), {
|
|
1206
1206
|
ssr: false
|
|
1207
1207
|
});
|
|
1208
1208
|
var EmbedNode = (props) => {
|
|
@@ -2287,7 +2287,7 @@ var DocumentNode_default = DocumentNode;
|
|
|
2287
2287
|
// src/components/pageRenderingEngine/nodes/GoogleMapNode.tsx
|
|
2288
2288
|
import dynamic11 from "next/dynamic";
|
|
2289
2289
|
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2290
|
-
var IframeClient2 = dynamic11(() => import("./IframeClient-
|
|
2290
|
+
var IframeClient2 = dynamic11(() => import("./IframeClient-WF2KLXZB.mjs"), {
|
|
2291
2291
|
ssr: false
|
|
2292
2292
|
});
|
|
2293
2293
|
var GoogleMapNode = (props) => {
|
|
@@ -2297,8 +2297,7 @@ var GoogleMapNode = (props) => {
|
|
|
2297
2297
|
{
|
|
2298
2298
|
src,
|
|
2299
2299
|
width: props.node.width,
|
|
2300
|
-
height: props.node.height
|
|
2301
|
-
allowFullScreen: props.node.allowFullScreen
|
|
2300
|
+
height: props.node.height
|
|
2302
2301
|
}
|
|
2303
2302
|
) });
|
|
2304
2303
|
};
|
package/dist/server.js
CHANGED
|
@@ -1769,8 +1769,7 @@ var init_IframeClient = __esm({
|
|
|
1769
1769
|
IframeClient = ({
|
|
1770
1770
|
src,
|
|
1771
1771
|
width,
|
|
1772
|
-
height
|
|
1773
|
-
allowFullScreen
|
|
1772
|
+
height
|
|
1774
1773
|
}) => {
|
|
1775
1774
|
const iframeRef = (0, import_react31.useRef)(null);
|
|
1776
1775
|
const [iframeHeight, setIframeHeight] = (0, import_react31.useState)("100%");
|
|
@@ -1816,7 +1815,6 @@ var init_IframeClient = __esm({
|
|
|
1816
1815
|
width: width != null ? `${width}px` : "100%",
|
|
1817
1816
|
height: height != null ? `${height}px` : iframeHeight
|
|
1818
1817
|
},
|
|
1819
|
-
allowFullScreen,
|
|
1820
1818
|
onLoad: handleIframeLoad
|
|
1821
1819
|
}
|
|
1822
1820
|
) }) });
|
|
@@ -4924,8 +4922,7 @@ var GoogleMapNode = (props) => {
|
|
|
4924
4922
|
{
|
|
4925
4923
|
src,
|
|
4926
4924
|
width: props.node.width,
|
|
4927
|
-
height: props.node.height
|
|
4928
|
-
allowFullScreen: props.node.allowFullScreen
|
|
4925
|
+
height: props.node.height
|
|
4929
4926
|
}
|
|
4930
4927
|
) });
|
|
4931
4928
|
};
|
package/dist/server.mjs
CHANGED
|
@@ -1183,7 +1183,7 @@ import React22 from "react";
|
|
|
1183
1183
|
// src/components/pageRenderingEngine/nodes/EmbedNode.tsx
|
|
1184
1184
|
import dynamic8 from "next/dynamic";
|
|
1185
1185
|
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
1186
|
-
var IframeClient = dynamic8(() => import("./IframeClient-
|
|
1186
|
+
var IframeClient = dynamic8(() => import("./IframeClient-XEWQLGUQ.mjs"), {
|
|
1187
1187
|
ssr: false
|
|
1188
1188
|
});
|
|
1189
1189
|
var EmbedNode = (props) => {
|
|
@@ -2268,7 +2268,7 @@ var DocumentNode_default = DocumentNode;
|
|
|
2268
2268
|
// src/components/pageRenderingEngine/nodes/GoogleMapNode.tsx
|
|
2269
2269
|
import dynamic10 from "next/dynamic";
|
|
2270
2270
|
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2271
|
-
var IframeClient2 = dynamic10(() => import("./IframeClient-
|
|
2271
|
+
var IframeClient2 = dynamic10(() => import("./IframeClient-XEWQLGUQ.mjs"), {
|
|
2272
2272
|
ssr: false
|
|
2273
2273
|
});
|
|
2274
2274
|
var GoogleMapNode = (props) => {
|
|
@@ -2278,8 +2278,7 @@ var GoogleMapNode = (props) => {
|
|
|
2278
2278
|
{
|
|
2279
2279
|
src,
|
|
2280
2280
|
width: props.node.width,
|
|
2281
|
-
height: props.node.height
|
|
2282
|
-
allowFullScreen: props.node.allowFullScreen
|
|
2281
|
+
height: props.node.height
|
|
2283
2282
|
}
|
|
2284
2283
|
) });
|
|
2285
2284
|
};
|