@clyrex-digital/clyrex-controls-dev 0.8.1-dev.20260810072737 → 0.8.1-dev.20260818060820
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
|
) }) });
|
|
@@ -4854,12 +4852,6 @@ var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
|
4854
4852
|
var BooleanView = (props) => {
|
|
4855
4853
|
const { value, customProps } = props;
|
|
4856
4854
|
const showOnlyTrueIcon = customProps?.showOnlyTrueIcon;
|
|
4857
|
-
console.log("BooleanView Debug:", {
|
|
4858
|
-
value,
|
|
4859
|
-
type: typeof value,
|
|
4860
|
-
customProps,
|
|
4861
|
-
showOnlyTrueIcon
|
|
4862
|
-
});
|
|
4863
4855
|
const booleanValue = (() => {
|
|
4864
4856
|
if (typeof value === "boolean") return value;
|
|
4865
4857
|
if (typeof value === "string") {
|
|
@@ -4979,7 +4971,6 @@ var MediaAsset = (props) => {
|
|
|
4979
4971
|
if (props.value != void 0 && props.value != null && props.value != "") {
|
|
4980
4972
|
try {
|
|
4981
4973
|
assets = JSON.parse(props.value);
|
|
4982
|
-
console.log("Parsed Assets: ", assets);
|
|
4983
4974
|
} catch (error) {
|
|
4984
4975
|
console.error("Error parsing assets:", error);
|
|
4985
4976
|
}
|
|
@@ -6928,7 +6919,6 @@ var getFileDetails = (url) => {
|
|
|
6928
6919
|
var DocumentNode = (props) => {
|
|
6929
6920
|
console.log("DocumentNode rendered");
|
|
6930
6921
|
console.log("props", props);
|
|
6931
|
-
console.log("dataitem", props.dataitem);
|
|
6932
6922
|
console.log("node", props.node);
|
|
6933
6923
|
let documents = [];
|
|
6934
6924
|
if (props.dataitem && props.node.documentKey) {
|
|
@@ -7074,8 +7064,7 @@ var GoogleMapNode = (props) => {
|
|
|
7074
7064
|
{
|
|
7075
7065
|
src,
|
|
7076
7066
|
width: props.node.width,
|
|
7077
|
-
height: props.node.height
|
|
7078
|
-
allowFullScreen: props.node.allowFullScreen
|
|
7067
|
+
height: props.node.height
|
|
7079
7068
|
}
|
|
7080
7069
|
) });
|
|
7081
7070
|
};
|
|
@@ -8248,12 +8237,10 @@ var DataList = (props) => {
|
|
|
8248
8237
|
}) }) }),
|
|
8249
8238
|
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("tbody", { className: "divide-y divide-gray-200 ", children: props.dataset?.result?.map((dataitem, index) => {
|
|
8250
8239
|
let validityClass = "";
|
|
8251
|
-
console.log("dataitem", dataitem);
|
|
8252
8240
|
if (props.recordValidityColumnName && getNestedProperty2(dataitem, props.recordValidityColumnName) == false) {
|
|
8253
8241
|
validityClass = "bg-alert-200";
|
|
8254
8242
|
}
|
|
8255
8243
|
return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("tr", { className: validityClass, children: props?.columns?.map((column, colindex) => {
|
|
8256
|
-
console.log("column", column);
|
|
8257
8244
|
return /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(import_react62.default.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
8258
8245
|
"td",
|
|
8259
8246
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -93,12 +93,6 @@ import { jsx as jsx2 } from "react/jsx-runtime";
|
|
|
93
93
|
var BooleanView = (props) => {
|
|
94
94
|
const { value, customProps } = props;
|
|
95
95
|
const showOnlyTrueIcon = customProps?.showOnlyTrueIcon;
|
|
96
|
-
console.log("BooleanView Debug:", {
|
|
97
|
-
value,
|
|
98
|
-
type: typeof value,
|
|
99
|
-
customProps,
|
|
100
|
-
showOnlyTrueIcon
|
|
101
|
-
});
|
|
102
96
|
const booleanValue = (() => {
|
|
103
97
|
if (typeof value === "boolean") return value;
|
|
104
98
|
if (typeof value === "string") {
|
|
@@ -217,7 +211,6 @@ var MediaAsset = (props) => {
|
|
|
217
211
|
if (props.value != void 0 && props.value != null && props.value != "") {
|
|
218
212
|
try {
|
|
219
213
|
assets = JSON.parse(props.value);
|
|
220
|
-
console.log("Parsed Assets: ", assets);
|
|
221
214
|
} catch (error) {
|
|
222
215
|
console.error("Error parsing assets:", error);
|
|
223
216
|
}
|
|
@@ -1202,7 +1195,7 @@ import React22 from "react";
|
|
|
1202
1195
|
// src/components/pageRenderingEngine/nodes/EmbedNode.tsx
|
|
1203
1196
|
import dynamic9 from "next/dynamic";
|
|
1204
1197
|
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
1205
|
-
var IframeClient = dynamic9(() => import("./IframeClient-
|
|
1198
|
+
var IframeClient = dynamic9(() => import("./IframeClient-WF2KLXZB.mjs"), {
|
|
1206
1199
|
ssr: false
|
|
1207
1200
|
});
|
|
1208
1201
|
var EmbedNode = (props) => {
|
|
@@ -2151,7 +2144,6 @@ var getFileDetails = (url) => {
|
|
|
2151
2144
|
var DocumentNode = (props) => {
|
|
2152
2145
|
console.log("DocumentNode rendered");
|
|
2153
2146
|
console.log("props", props);
|
|
2154
|
-
console.log("dataitem", props.dataitem);
|
|
2155
2147
|
console.log("node", props.node);
|
|
2156
2148
|
let documents = [];
|
|
2157
2149
|
if (props.dataitem && props.node.documentKey) {
|
|
@@ -2287,7 +2279,7 @@ var DocumentNode_default = DocumentNode;
|
|
|
2287
2279
|
// src/components/pageRenderingEngine/nodes/GoogleMapNode.tsx
|
|
2288
2280
|
import dynamic11 from "next/dynamic";
|
|
2289
2281
|
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2290
|
-
var IframeClient2 = dynamic11(() => import("./IframeClient-
|
|
2282
|
+
var IframeClient2 = dynamic11(() => import("./IframeClient-WF2KLXZB.mjs"), {
|
|
2291
2283
|
ssr: false
|
|
2292
2284
|
});
|
|
2293
2285
|
var GoogleMapNode = (props) => {
|
|
@@ -2297,8 +2289,7 @@ var GoogleMapNode = (props) => {
|
|
|
2297
2289
|
{
|
|
2298
2290
|
src,
|
|
2299
2291
|
width: props.node.width,
|
|
2300
|
-
height: props.node.height
|
|
2301
|
-
allowFullScreen: props.node.allowFullScreen
|
|
2292
|
+
height: props.node.height
|
|
2302
2293
|
}
|
|
2303
2294
|
) });
|
|
2304
2295
|
};
|
|
@@ -3440,12 +3431,10 @@ var DataList = (props) => {
|
|
|
3440
3431
|
}) }) }),
|
|
3441
3432
|
/* @__PURE__ */ jsx41("tbody", { className: "divide-y divide-gray-200 ", children: props.dataset?.result?.map((dataitem, index) => {
|
|
3442
3433
|
let validityClass = "";
|
|
3443
|
-
console.log("dataitem", dataitem);
|
|
3444
3434
|
if (props.recordValidityColumnName && getNestedProperty2(dataitem, props.recordValidityColumnName) == false) {
|
|
3445
3435
|
validityClass = "bg-alert-200";
|
|
3446
3436
|
}
|
|
3447
3437
|
return /* @__PURE__ */ jsx41("tr", { className: validityClass, children: props?.columns?.map((column, colindex) => {
|
|
3448
|
-
console.log("column", column);
|
|
3449
3438
|
return /* @__PURE__ */ jsx41(React27.Fragment, { children: /* @__PURE__ */ jsx41(
|
|
3450
3439
|
"td",
|
|
3451
3440
|
{
|
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
|
) }) });
|
|
@@ -3164,12 +3162,6 @@ var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
|
3164
3162
|
var BooleanView = (props) => {
|
|
3165
3163
|
const { value, customProps } = props;
|
|
3166
3164
|
const showOnlyTrueIcon = customProps?.showOnlyTrueIcon;
|
|
3167
|
-
console.log("BooleanView Debug:", {
|
|
3168
|
-
value,
|
|
3169
|
-
type: typeof value,
|
|
3170
|
-
customProps,
|
|
3171
|
-
showOnlyTrueIcon
|
|
3172
|
-
});
|
|
3173
3165
|
const booleanValue = (() => {
|
|
3174
3166
|
if (typeof value === "boolean") return value;
|
|
3175
3167
|
if (typeof value === "string") {
|
|
@@ -3210,7 +3202,6 @@ var MediaAsset = (props) => {
|
|
|
3210
3202
|
if (props.value != void 0 && props.value != null && props.value != "") {
|
|
3211
3203
|
try {
|
|
3212
3204
|
assets = JSON.parse(props.value);
|
|
3213
|
-
console.log("Parsed Assets: ", assets);
|
|
3214
3205
|
} catch (error) {
|
|
3215
3206
|
console.error("Error parsing assets:", error);
|
|
3216
3207
|
}
|
|
@@ -4778,7 +4769,6 @@ var getFileDetails = (url) => {
|
|
|
4778
4769
|
var DocumentNode = (props) => {
|
|
4779
4770
|
console.log("DocumentNode rendered");
|
|
4780
4771
|
console.log("props", props);
|
|
4781
|
-
console.log("dataitem", props.dataitem);
|
|
4782
4772
|
console.log("node", props.node);
|
|
4783
4773
|
let documents = [];
|
|
4784
4774
|
if (props.dataitem && props.node.documentKey) {
|
|
@@ -4924,8 +4914,7 @@ var GoogleMapNode = (props) => {
|
|
|
4924
4914
|
{
|
|
4925
4915
|
src,
|
|
4926
4916
|
width: props.node.width,
|
|
4927
|
-
height: props.node.height
|
|
4928
|
-
allowFullScreen: props.node.allowFullScreen
|
|
4917
|
+
height: props.node.height
|
|
4929
4918
|
}
|
|
4930
4919
|
) });
|
|
4931
4920
|
};
|
package/dist/server.mjs
CHANGED
|
@@ -524,12 +524,6 @@ import { jsx as jsx9 } from "react/jsx-runtime";
|
|
|
524
524
|
var BooleanView = (props) => {
|
|
525
525
|
const { value, customProps } = props;
|
|
526
526
|
const showOnlyTrueIcon = customProps?.showOnlyTrueIcon;
|
|
527
|
-
console.log("BooleanView Debug:", {
|
|
528
|
-
value,
|
|
529
|
-
type: typeof value,
|
|
530
|
-
customProps,
|
|
531
|
-
showOnlyTrueIcon
|
|
532
|
-
});
|
|
533
527
|
const booleanValue = (() => {
|
|
534
528
|
if (typeof value === "boolean") return value;
|
|
535
529
|
if (typeof value === "string") {
|
|
@@ -570,7 +564,6 @@ var MediaAsset = (props) => {
|
|
|
570
564
|
if (props.value != void 0 && props.value != null && props.value != "") {
|
|
571
565
|
try {
|
|
572
566
|
assets = JSON.parse(props.value);
|
|
573
|
-
console.log("Parsed Assets: ", assets);
|
|
574
567
|
} catch (error) {
|
|
575
568
|
console.error("Error parsing assets:", error);
|
|
576
569
|
}
|
|
@@ -1183,7 +1176,7 @@ import React22 from "react";
|
|
|
1183
1176
|
// src/components/pageRenderingEngine/nodes/EmbedNode.tsx
|
|
1184
1177
|
import dynamic8 from "next/dynamic";
|
|
1185
1178
|
import { jsx as jsx30 } from "react/jsx-runtime";
|
|
1186
|
-
var IframeClient = dynamic8(() => import("./IframeClient-
|
|
1179
|
+
var IframeClient = dynamic8(() => import("./IframeClient-XEWQLGUQ.mjs"), {
|
|
1187
1180
|
ssr: false
|
|
1188
1181
|
});
|
|
1189
1182
|
var EmbedNode = (props) => {
|
|
@@ -2132,7 +2125,6 @@ var getFileDetails = (url) => {
|
|
|
2132
2125
|
var DocumentNode = (props) => {
|
|
2133
2126
|
console.log("DocumentNode rendered");
|
|
2134
2127
|
console.log("props", props);
|
|
2135
|
-
console.log("dataitem", props.dataitem);
|
|
2136
2128
|
console.log("node", props.node);
|
|
2137
2129
|
let documents = [];
|
|
2138
2130
|
if (props.dataitem && props.node.documentKey) {
|
|
@@ -2268,7 +2260,7 @@ var DocumentNode_default = DocumentNode;
|
|
|
2268
2260
|
// src/components/pageRenderingEngine/nodes/GoogleMapNode.tsx
|
|
2269
2261
|
import dynamic10 from "next/dynamic";
|
|
2270
2262
|
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
2271
|
-
var IframeClient2 = dynamic10(() => import("./IframeClient-
|
|
2263
|
+
var IframeClient2 = dynamic10(() => import("./IframeClient-XEWQLGUQ.mjs"), {
|
|
2272
2264
|
ssr: false
|
|
2273
2265
|
});
|
|
2274
2266
|
var GoogleMapNode = (props) => {
|
|
@@ -2278,8 +2270,7 @@ var GoogleMapNode = (props) => {
|
|
|
2278
2270
|
{
|
|
2279
2271
|
src,
|
|
2280
2272
|
width: props.node.width,
|
|
2281
|
-
height: props.node.height
|
|
2282
|
-
allowFullScreen: props.node.allowFullScreen
|
|
2273
|
+
height: props.node.height
|
|
2283
2274
|
}
|
|
2284
2275
|
) });
|
|
2285
2276
|
};
|