@cedarjs/web 2.8.1-next.0 → 2.8.1-next.116
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.
|
@@ -2287,7 +2287,7 @@ var selectURI = function(operation, fallbackURI) {
|
|
|
2287
2287
|
}
|
|
2288
2288
|
};
|
|
2289
2289
|
|
|
2290
|
-
// ../../node_modules/
|
|
2290
|
+
// ../../node_modules/is-plain-obj/index.js
|
|
2291
2291
|
function isPlainObject(value) {
|
|
2292
2292
|
if (typeof value !== "object" || value === null) {
|
|
2293
2293
|
return false;
|
|
@@ -2296,7 +2296,7 @@ function isPlainObject(value) {
|
|
|
2296
2296
|
return (prototype2 === null || prototype2 === Object.prototype || Object.getPrototypeOf(prototype2) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
|
|
2297
2297
|
}
|
|
2298
2298
|
|
|
2299
|
-
// ../../node_modules/
|
|
2299
|
+
// ../../node_modules/extract-files/extractFiles.mjs
|
|
2300
2300
|
function extractFiles(value, isExtractable, path = "") {
|
|
2301
2301
|
if (!arguments.length) throw new TypeError("Argument 1 `value` is required.");
|
|
2302
2302
|
if (typeof isExtractable !== "function")
|
|
@@ -2367,7 +2367,7 @@ function formDataAppendFile(formData, fieldName, file) {
|
|
|
2367
2367
|
"name" in file ? formData.append(fieldName, file, file.name) : formData.append(fieldName, file);
|
|
2368
2368
|
}
|
|
2369
2369
|
|
|
2370
|
-
// ../../node_modules/
|
|
2370
|
+
// ../../node_modules/extract-files/isExtractableFile.mjs
|
|
2371
2371
|
function isExtractableFile(value) {
|
|
2372
2372
|
return typeof File !== "undefined" && value instanceof File || typeof Blob !== "undefined" && value instanceof Blob;
|
|
2373
2373
|
}
|
|
@@ -129,7 +129,7 @@ const DevFatalErrorPage = (props) => {
|
|
|
129
129
|
const typeName = String(
|
|
130
130
|
err["type"] || err.constructor?.name || typeof err
|
|
131
131
|
);
|
|
132
|
-
const msg = String(err
|
|
132
|
+
const msg = String(err?.message);
|
|
133
133
|
const FileRef = stack.items[0] ? /* @__PURE__ */ import_react.default.createElement("a", { href: toVSCodeURL(stack.items[0]) }, stack.items[0].fileName) : null;
|
|
134
134
|
const handleCopyAll = async () => {
|
|
135
135
|
const errorText = formatErrorForClipboard(err, stack, typeName, msg, err);
|
|
@@ -96,7 +96,7 @@ const DevFatalErrorPage = (props) => {
|
|
|
96
96
|
const typeName = String(
|
|
97
97
|
err["type"] || err.constructor?.name || typeof err
|
|
98
98
|
);
|
|
99
|
-
const msg = String(err
|
|
99
|
+
const msg = String(err?.message);
|
|
100
100
|
const FileRef = stack.items[0] ? /* @__PURE__ */ React.createElement("a", { href: toVSCodeURL(stack.items[0]) }, stack.items[0].fileName) : null;
|
|
101
101
|
const handleCopyAll = async () => {
|
|
102
102
|
const errorText = formatErrorForClipboard(err, stack, typeName, msg, err);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/web",
|
|
3
|
-
"version": "2.8.1-next.
|
|
3
|
+
"version": "2.8.1-next.116+784d2c048",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -144,19 +144,17 @@
|
|
|
144
144
|
},
|
|
145
145
|
"dependencies": {
|
|
146
146
|
"@apollo/client": "3.13.9",
|
|
147
|
-
"@
|
|
148
|
-
"@cedarjs/
|
|
149
|
-
"@cedarjs/server-store": "2.8.1-next.0+f9966f3d1",
|
|
147
|
+
"@cedarjs/auth": "2.8.1-next.116+784d2c048",
|
|
148
|
+
"@cedarjs/server-store": "2.8.1-next.116+784d2c048",
|
|
150
149
|
"@dr.pogodin/react-helmet": "2.0.4",
|
|
151
150
|
"@whatwg-node/fetch": "0.10.13",
|
|
152
151
|
"apollo-upload-client": "18.0.1",
|
|
153
152
|
"cookie": "1.1.1",
|
|
154
|
-
"core-js": "3.48.0",
|
|
155
153
|
"graphql": "16.13.1",
|
|
156
154
|
"graphql-sse": "2.6.0",
|
|
157
155
|
"graphql-tag": "2.12.6",
|
|
158
156
|
"react-hot-toast": "2.6.0",
|
|
159
|
-
"stacktracey": "2.
|
|
157
|
+
"stacktracey": "2.2.0",
|
|
160
158
|
"ts-toolbelt": "9.6.0"
|
|
161
159
|
},
|
|
162
160
|
"devDependencies": {
|
|
@@ -165,9 +163,9 @@
|
|
|
165
163
|
"@babel/cli": "7.28.6",
|
|
166
164
|
"@babel/core": "^7.26.10",
|
|
167
165
|
"@babel/plugin-transform-runtime": "7.29.0",
|
|
168
|
-
"@babel/runtime": "7.
|
|
169
|
-
"@cedarjs/framework-tools": "2.8.1-next.
|
|
170
|
-
"@cedarjs/internal": "2.8.1-next.
|
|
166
|
+
"@babel/runtime": "7.29.2",
|
|
167
|
+
"@cedarjs/framework-tools": "2.8.1-next.116",
|
|
168
|
+
"@cedarjs/internal": "2.8.1-next.116+784d2c048",
|
|
171
169
|
"@rollup/plugin-babel": "6.1.0",
|
|
172
170
|
"@testing-library/jest-dom": "6.9.1",
|
|
173
171
|
"@testing-library/react": "14.3.1",
|
|
@@ -191,5 +189,5 @@
|
|
|
191
189
|
"publishConfig": {
|
|
192
190
|
"access": "public"
|
|
193
191
|
},
|
|
194
|
-
"gitHead": "
|
|
192
|
+
"gitHead": "784d2c0484936b2d853e5b316d167602bd80d996"
|
|
195
193
|
}
|