@uniformdev/next-app-router-shared 20.55.0 → 20.55.1-alpha.1

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/dist/index.esm.js CHANGED
@@ -312,7 +312,7 @@ var deserializeV2 = (input) => {
312
312
  );
313
313
  }
314
314
  const routePath = fromBase64Url(fields[2]);
315
- const components = /* @__PURE__ */ Object.create(null);
315
+ const components = {};
316
316
  const componentsStr = (_a = fields[3]) != null ? _a : "";
317
317
  if (componentsStr) {
318
318
  componentsStr.split(V2_ENTRY_SEP).forEach((entry) => {
@@ -336,7 +336,7 @@ var deserializeV2 = (input) => {
336
336
  const rulesStr = (_b = fields[4]) != null ? _b : "";
337
337
  let rules;
338
338
  if (rulesStr) {
339
- rules = /* @__PURE__ */ Object.create(null);
339
+ rules = {};
340
340
  rulesStr.split(V2_ENTRY_SEP).forEach((entry) => {
341
341
  const sepIdx = entry.indexOf(V2_KV_SEP);
342
342
  if (sepIdx !== -1) {
@@ -349,7 +349,7 @@ var deserializeV2 = (input) => {
349
349
  });
350
350
  }
351
351
  const keysStr = (_c = fields[5]) != null ? _c : "";
352
- const keys = /* @__PURE__ */ Object.create(null);
352
+ const keys = {};
353
353
  if (keysStr) {
354
354
  keysStr.split(V2_ENTRY_SEP).forEach((entry) => {
355
355
  const sepIdx = entry.indexOf(V2_KV_SEP);
package/dist/index.js CHANGED
@@ -347,7 +347,7 @@ var deserializeV2 = (input) => {
347
347
  );
348
348
  }
349
349
  const routePath = fromBase64Url(fields[2]);
350
- const components = /* @__PURE__ */ Object.create(null);
350
+ const components = {};
351
351
  const componentsStr = (_a = fields[3]) != null ? _a : "";
352
352
  if (componentsStr) {
353
353
  componentsStr.split(V2_ENTRY_SEP).forEach((entry) => {
@@ -371,7 +371,7 @@ var deserializeV2 = (input) => {
371
371
  const rulesStr = (_b = fields[4]) != null ? _b : "";
372
372
  let rules;
373
373
  if (rulesStr) {
374
- rules = /* @__PURE__ */ Object.create(null);
374
+ rules = {};
375
375
  rulesStr.split(V2_ENTRY_SEP).forEach((entry) => {
376
376
  const sepIdx = entry.indexOf(V2_KV_SEP);
377
377
  if (sepIdx !== -1) {
@@ -384,7 +384,7 @@ var deserializeV2 = (input) => {
384
384
  });
385
385
  }
386
386
  const keysStr = (_c = fields[5]) != null ? _c : "";
387
- const keys = /* @__PURE__ */ Object.create(null);
387
+ const keys = {};
388
388
  if (keysStr) {
389
389
  keysStr.split(V2_ENTRY_SEP).forEach((entry) => {
390
390
  const sepIdx = entry.indexOf(V2_KV_SEP);
package/dist/index.mjs CHANGED
@@ -312,7 +312,7 @@ var deserializeV2 = (input) => {
312
312
  );
313
313
  }
314
314
  const routePath = fromBase64Url(fields[2]);
315
- const components = /* @__PURE__ */ Object.create(null);
315
+ const components = {};
316
316
  const componentsStr = (_a = fields[3]) != null ? _a : "";
317
317
  if (componentsStr) {
318
318
  componentsStr.split(V2_ENTRY_SEP).forEach((entry) => {
@@ -336,7 +336,7 @@ var deserializeV2 = (input) => {
336
336
  const rulesStr = (_b = fields[4]) != null ? _b : "";
337
337
  let rules;
338
338
  if (rulesStr) {
339
- rules = /* @__PURE__ */ Object.create(null);
339
+ rules = {};
340
340
  rulesStr.split(V2_ENTRY_SEP).forEach((entry) => {
341
341
  const sepIdx = entry.indexOf(V2_KV_SEP);
342
342
  if (sepIdx !== -1) {
@@ -349,7 +349,7 @@ var deserializeV2 = (input) => {
349
349
  });
350
350
  }
351
351
  const keysStr = (_c = fields[5]) != null ? _c : "";
352
- const keys = /* @__PURE__ */ Object.create(null);
352
+ const keys = {};
353
353
  if (keysStr) {
354
354
  keysStr.split(V2_ENTRY_SEP).forEach((entry) => {
355
355
  const sepIdx = entry.indexOf(V2_KV_SEP);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/next-app-router-shared",
3
- "version": "20.55.0",
3
+ "version": "20.55.1-alpha.1+1000cac1ff",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "scripts": {
6
6
  "build": "tsup",
@@ -36,8 +36,8 @@
36
36
  "vitest": "3.2.4"
37
37
  },
38
38
  "dependencies": {
39
- "@uniformdev/canvas": "20.55.0",
40
- "@uniformdev/context": "20.55.0",
39
+ "@uniformdev/canvas": "20.55.1-alpha.1+1000cac1ff",
40
+ "@uniformdev/context": "20.55.1-alpha.1+1000cac1ff",
41
41
  "uuid": "9.0.1"
42
42
  },
43
43
  "engines": {
@@ -51,5 +51,5 @@
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "gitHead": "ef21541bd262e454318a30372f90d22a06183b82"
54
+ "gitHead": "1000cac1ff81da9389888840d3a3b2b1c3dcc10f"
55
55
  }