@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260808143630 → 0.8.1-dev.20260810072737
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.
|
@@ -50,7 +50,8 @@ import { jsx as jsx2 } from "react/jsx-runtime";
|
|
|
50
50
|
var IframeClient = ({
|
|
51
51
|
src,
|
|
52
52
|
width,
|
|
53
|
-
height
|
|
53
|
+
height,
|
|
54
|
+
allowFullScreen
|
|
54
55
|
}) => {
|
|
55
56
|
const iframeRef = useRef(null);
|
|
56
57
|
const [iframeHeight, setIframeHeight] = useState("100%");
|
|
@@ -96,6 +97,7 @@ var IframeClient = ({
|
|
|
96
97
|
width: width != null ? `${width}px` : "100%",
|
|
97
98
|
height: height != null ? `${height}px` : iframeHeight
|
|
98
99
|
},
|
|
100
|
+
allowFullScreen,
|
|
99
101
|
onLoad: handleIframeLoad
|
|
100
102
|
}
|
|
101
103
|
) }) });
|
|
@@ -52,7 +52,8 @@ import { jsx as jsx2 } from "react/jsx-runtime";
|
|
|
52
52
|
var IframeClient = ({
|
|
53
53
|
src,
|
|
54
54
|
width,
|
|
55
|
-
height
|
|
55
|
+
height,
|
|
56
|
+
allowFullScreen
|
|
56
57
|
}) => {
|
|
57
58
|
const iframeRef = useRef(null);
|
|
58
59
|
const [iframeHeight, setIframeHeight] = useState("100%");
|
|
@@ -98,6 +99,7 @@ var IframeClient = ({
|
|
|
98
99
|
width: width != null ? `${width}px` : "100%",
|
|
99
100
|
height: height != null ? `${height}px` : iframeHeight
|
|
100
101
|
},
|
|
102
|
+
allowFullScreen,
|
|
101
103
|
onLoad: handleIframeLoad
|
|
102
104
|
}
|
|
103
105
|
) }) });
|
package/dist/index.js
CHANGED
|
@@ -3999,7 +3999,8 @@ var init_IframeClient = __esm({
|
|
|
3999
3999
|
IframeClient = ({
|
|
4000
4000
|
src,
|
|
4001
4001
|
width,
|
|
4002
|
-
height
|
|
4002
|
+
height,
|
|
4003
|
+
allowFullScreen
|
|
4003
4004
|
}) => {
|
|
4004
4005
|
const iframeRef = (0, import_react53.useRef)(null);
|
|
4005
4006
|
const [iframeHeight, setIframeHeight] = (0, import_react53.useState)("100%");
|
|
@@ -4045,6 +4046,7 @@ var init_IframeClient = __esm({
|
|
|
4045
4046
|
width: width != null ? `${width}px` : "100%",
|
|
4046
4047
|
height: height != null ? `${height}px` : iframeHeight
|
|
4047
4048
|
},
|
|
4049
|
+
allowFullScreen,
|
|
4048
4050
|
onLoad: handleIframeLoad
|
|
4049
4051
|
}
|
|
4050
4052
|
) }) });
|
|
@@ -7072,7 +7074,8 @@ var GoogleMapNode = (props) => {
|
|
|
7072
7074
|
{
|
|
7073
7075
|
src,
|
|
7074
7076
|
width: props.node.width,
|
|
7075
|
-
height: props.node.height
|
|
7077
|
+
height: props.node.height,
|
|
7078
|
+
allowFullScreen: props.node.allowFullScreen
|
|
7076
7079
|
}
|
|
7077
7080
|
) });
|
|
7078
7081
|
};
|
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-YIJHMNA4.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-YIJHMNA4.mjs"), {
|
|
2291
2291
|
ssr: false
|
|
2292
2292
|
});
|
|
2293
2293
|
var GoogleMapNode = (props) => {
|
|
@@ -2297,7 +2297,8 @@ var GoogleMapNode = (props) => {
|
|
|
2297
2297
|
{
|
|
2298
2298
|
src,
|
|
2299
2299
|
width: props.node.width,
|
|
2300
|
-
height: props.node.height
|
|
2300
|
+
height: props.node.height,
|
|
2301
|
+
allowFullScreen: props.node.allowFullScreen
|
|
2301
2302
|
}
|
|
2302
2303
|
) });
|
|
2303
2304
|
};
|
package/dist/server.js
CHANGED
|
@@ -1769,7 +1769,8 @@ var init_IframeClient = __esm({
|
|
|
1769
1769
|
IframeClient = ({
|
|
1770
1770
|
src,
|
|
1771
1771
|
width,
|
|
1772
|
-
height
|
|
1772
|
+
height,
|
|
1773
|
+
allowFullScreen
|
|
1773
1774
|
}) => {
|
|
1774
1775
|
const iframeRef = (0, import_react31.useRef)(null);
|
|
1775
1776
|
const [iframeHeight, setIframeHeight] = (0, import_react31.useState)("100%");
|
|
@@ -1815,6 +1816,7 @@ var init_IframeClient = __esm({
|
|
|
1815
1816
|
width: width != null ? `${width}px` : "100%",
|
|
1816
1817
|
height: height != null ? `${height}px` : iframeHeight
|
|
1817
1818
|
},
|
|
1819
|
+
allowFullScreen,
|
|
1818
1820
|
onLoad: handleIframeLoad
|
|
1819
1821
|
}
|
|
1820
1822
|
) }) });
|
|
@@ -4922,7 +4924,8 @@ var GoogleMapNode = (props) => {
|
|
|
4922
4924
|
{
|
|
4923
4925
|
src,
|
|
4924
4926
|
width: props.node.width,
|
|
4925
|
-
height: props.node.height
|
|
4927
|
+
height: props.node.height,
|
|
4928
|
+
allowFullScreen: props.node.allowFullScreen
|
|
4926
4929
|
}
|
|
4927
4930
|
) });
|
|
4928
4931
|
};
|
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-IFVYB76V.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-IFVYB76V.mjs"), {
|
|
2272
2272
|
ssr: false
|
|
2273
2273
|
});
|
|
2274
2274
|
var GoogleMapNode = (props) => {
|
|
@@ -2278,7 +2278,8 @@ var GoogleMapNode = (props) => {
|
|
|
2278
2278
|
{
|
|
2279
2279
|
src,
|
|
2280
2280
|
width: props.node.width,
|
|
2281
|
-
height: props.node.height
|
|
2281
|
+
height: props.node.height,
|
|
2282
|
+
allowFullScreen: props.node.allowFullScreen
|
|
2282
2283
|
}
|
|
2283
2284
|
) });
|
|
2284
2285
|
};
|