@uniformdev/next-app-router 20.66.2 → 20.66.3-alpha.6

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.
@@ -3163,11 +3163,12 @@ function dequal(foo, bar) {
3163
3163
  return foo !== foo && bar !== bar;
3164
3164
  }
3165
3165
 
3166
- // ../../node_modules/.pnpm/js-cookie@3.0.5/node_modules/js-cookie/dist/js.cookie.mjs
3166
+ // ../../node_modules/.pnpm/js-cookie@3.0.7/node_modules/js-cookie/dist/js.cookie.mjs
3167
3167
  function assign(target) {
3168
3168
  for (var i = 1; i < arguments.length; i++) {
3169
3169
  var source = arguments[i];
3170
3170
  for (var key in source) {
3171
+ if (key === "__proto__") continue;
3171
3172
  target[key] = source[key];
3172
3173
  }
3173
3174
  }
@@ -3224,7 +3225,7 @@ function init(converter, defaultAttributes) {
3224
3225
  var value = parts.slice(1).join("=");
3225
3226
  try {
3226
3227
  var found = decodeURIComponent(parts[0]);
3227
- jar[found] = converter.read(value, found);
3228
+ if (!(found in jar)) jar[found] = converter.read(value, found);
3228
3229
  if (name === found) {
3229
3230
  break;
3230
3231
  }
@@ -5899,5 +5900,5 @@ var determinePreviewMode = ({
5899
5900
  /*! Bundled license information:
5900
5901
 
5901
5902
  js-cookie/dist/js.cookie.mjs:
5902
- (*! js-cookie v3.0.5 | MIT *)
5903
+ (*! js-cookie v3.0.7 | MIT *)
5903
5904
  */
@@ -3155,11 +3155,12 @@ function dequal(foo, bar) {
3155
3155
  return foo !== foo && bar !== bar;
3156
3156
  }
3157
3157
 
3158
- // ../../node_modules/.pnpm/js-cookie@3.0.5/node_modules/js-cookie/dist/js.cookie.mjs
3158
+ // ../../node_modules/.pnpm/js-cookie@3.0.7/node_modules/js-cookie/dist/js.cookie.mjs
3159
3159
  function assign(target) {
3160
3160
  for (var i = 1; i < arguments.length; i++) {
3161
3161
  var source = arguments[i];
3162
3162
  for (var key in source) {
3163
+ if (key === "__proto__") continue;
3163
3164
  target[key] = source[key];
3164
3165
  }
3165
3166
  }
@@ -3216,7 +3217,7 @@ function init(converter, defaultAttributes) {
3216
3217
  var value = parts.slice(1).join("=");
3217
3218
  try {
3218
3219
  var found = decodeURIComponent(parts[0]);
3219
- jar[found] = converter.read(value, found);
3220
+ if (!(found in jar)) jar[found] = converter.read(value, found);
3220
3221
  if (name === found) {
3221
3222
  break;
3222
3223
  }
@@ -5890,5 +5891,5 @@ export {
5890
5891
  /*! Bundled license information:
5891
5892
 
5892
5893
  js-cookie/dist/js.cookie.mjs:
5893
- (*! js-cookie v3.0.5 | MIT *)
5894
+ (*! js-cookie v3.0.7 | MIT *)
5894
5895
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/next-app-router",
3
- "version": "20.66.2",
3
+ "version": "20.66.3-alpha.6+99aaadfddb",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "scripts": {
6
6
  "build": "tsup",
@@ -99,12 +99,12 @@
99
99
  "vitest": "3.2.4"
100
100
  },
101
101
  "dependencies": {
102
- "@uniformdev/canvas-react": "20.66.2",
103
- "@uniformdev/next-app-router-client": "20.66.2",
104
- "@uniformdev/next-app-router-shared": "20.66.2",
105
- "@uniformdev/redirect": "20.66.2",
106
- "@uniformdev/richtext": "20.66.2",
107
- "@uniformdev/webhooks": "20.66.2",
102
+ "@uniformdev/canvas-react": "20.66.3-alpha.6+99aaadfddb",
103
+ "@uniformdev/next-app-router-client": "20.66.3-alpha.6+99aaadfddb",
104
+ "@uniformdev/next-app-router-shared": "20.66.3-alpha.6+99aaadfddb",
105
+ "@uniformdev/redirect": "20.66.3-alpha.6+99aaadfddb",
106
+ "@uniformdev/richtext": "20.66.3-alpha.6+99aaadfddb",
107
+ "@uniformdev/webhooks": "20.66.3-alpha.6+99aaadfddb",
108
108
  "@vercel/functions": "^2.2.2",
109
109
  "encoding": "^0.1.13",
110
110
  "server-only": "^0.0.1",
@@ -121,5 +121,5 @@
121
121
  "publishConfig": {
122
122
  "access": "public"
123
123
  },
124
- "gitHead": "f6eff69d7dc3c184f3877abbb783c7177a78209d"
124
+ "gitHead": "99aaadfddbad0e7712ea51517666069915883931"
125
125
  }