@pnkx-lib/ui 1.9.358 → 1.9.359
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/es/ui/ErrorBoundary.js +0 -15
- package/package.json +1 -1
package/es/ui/ErrorBoundary.js
CHANGED
|
@@ -64,21 +64,6 @@ class ErrorBoundaryClass extends Component {
|
|
|
64
64
|
errorInfo?.componentStack && /* @__PURE__ */ jsxs("div", { children: [
|
|
65
65
|
/* @__PURE__ */ jsx("strong", { children: "Component Stack:" }),
|
|
66
66
|
/* @__PURE__ */ jsx("pre", { style: styles.stackTrace, children: errorInfo.componentStack })
|
|
67
|
-
] }),
|
|
68
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
69
|
-
/* @__PURE__ */ jsx("strong", { children: "Environment:" }),
|
|
70
|
-
" ",
|
|
71
|
-
process.env.NODE_ENV
|
|
72
|
-
] }),
|
|
73
|
-
/* @__PURE__ */ jsxs("div", { children: [
|
|
74
|
-
/* @__PURE__ */ jsx("strong", { children: "Crypto API Available:" }),
|
|
75
|
-
" ",
|
|
76
|
-
typeof crypto !== "undefined" ? "Yes" : "No"
|
|
77
|
-
] }),
|
|
78
|
-
typeof crypto !== "undefined" && /* @__PURE__ */ jsxs("div", { children: [
|
|
79
|
-
/* @__PURE__ */ jsx("strong", { children: "randomUUID Available:" }),
|
|
80
|
-
" ",
|
|
81
|
-
typeof crypto.randomUUID === "function" ? "Yes" : "No"
|
|
82
67
|
] })
|
|
83
68
|
] })
|
|
84
69
|
] })
|