@cedarjs/web 2.8.1-next.116 → 2.8.1-rc.3

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/is-plain-obj/index.js
2290
+ // ../../node_modules/apollo-upload-client/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/extract-files/extractFiles.mjs
2299
+ // ../../node_modules/apollo-upload-client/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/extract-files/isExtractableFile.mjs
2370
+ // ../../node_modules/apollo-upload-client/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?.message);
132
+ const msg = String(err && 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?.message);
99
+ const msg = String(err && 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.116+784d2c048",
3
+ "version": "2.8.1-rc.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cedarjs/cedar.git",
@@ -144,17 +144,19 @@
144
144
  },
145
145
  "dependencies": {
146
146
  "@apollo/client": "3.13.9",
147
- "@cedarjs/auth": "2.8.1-next.116+784d2c048",
148
- "@cedarjs/server-store": "2.8.1-next.116+784d2c048",
147
+ "@babel/runtime-corejs3": "7.29.0",
148
+ "@cedarjs/auth": "2.8.1-rc.3",
149
+ "@cedarjs/server-store": "2.8.1-rc.3",
149
150
  "@dr.pogodin/react-helmet": "2.0.4",
150
151
  "@whatwg-node/fetch": "0.10.13",
151
152
  "apollo-upload-client": "18.0.1",
152
153
  "cookie": "1.1.1",
154
+ "core-js": "3.48.0",
153
155
  "graphql": "16.13.1",
154
156
  "graphql-sse": "2.6.0",
155
157
  "graphql-tag": "2.12.6",
156
158
  "react-hot-toast": "2.6.0",
157
- "stacktracey": "2.2.0",
159
+ "stacktracey": "2.1.8",
158
160
  "ts-toolbelt": "9.6.0"
159
161
  },
160
162
  "devDependencies": {
@@ -163,9 +165,9 @@
163
165
  "@babel/cli": "7.28.6",
164
166
  "@babel/core": "^7.26.10",
165
167
  "@babel/plugin-transform-runtime": "7.29.0",
166
- "@babel/runtime": "7.29.2",
167
- "@cedarjs/framework-tools": "2.8.1-next.116",
168
- "@cedarjs/internal": "2.8.1-next.116+784d2c048",
168
+ "@babel/runtime": "7.28.6",
169
+ "@cedarjs/framework-tools": "2.8.1-rc.3",
170
+ "@cedarjs/internal": "2.8.1-rc.3",
169
171
  "@rollup/plugin-babel": "6.1.0",
170
172
  "@testing-library/jest-dom": "6.9.1",
171
173
  "@testing-library/react": "14.3.1",
@@ -189,5 +191,5 @@
189
191
  "publishConfig": {
190
192
  "access": "public"
191
193
  },
192
- "gitHead": "784d2c0484936b2d853e5b316d167602bd80d996"
194
+ "gitHead": "f778a5b70b97c0b129246e918083f42c63a6dc0a"
193
195
  }