@uniformdev/canvas-next-rsc 19.206.0 → 19.207.1-alpha.20

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/component.js CHANGED
@@ -134,10 +134,16 @@ var AssetRichTextNode = ({ node }) => {
134
134
  if (__asset === void 0) {
135
135
  return null;
136
136
  }
137
- if (__asset.type !== "image") {
138
- return null;
137
+ if (__asset.type === "image") {
138
+ return /* @__PURE__ */ import_react2.default.createElement("figure", null, /* @__PURE__ */ import_react2.default.createElement("img", { src: __asset.fields.url.value, alt: (_a = __asset.fields.title) == null ? void 0 : _a.value }), ((_b = __asset.fields.description) == null ? void 0 : _b.value) ? /* @__PURE__ */ import_react2.default.createElement("figcaption", null, __asset.fields.description.value) : null);
139
+ }
140
+ if (__asset.type === "video") {
141
+ return /* @__PURE__ */ import_react2.default.createElement("video", { src: __asset.fields.url.value, controls: true });
142
+ }
143
+ if (__asset.type === "audio") {
144
+ return /* @__PURE__ */ import_react2.default.createElement("audio", { src: __asset.fields.url.value, controls: true });
139
145
  }
140
- return /* @__PURE__ */ import_react2.default.createElement("figure", null, /* @__PURE__ */ import_react2.default.createElement("img", { src: __asset.fields.url.value, alt: (_a = __asset.fields.title) == null ? void 0 : _a.value }), ((_b = __asset.fields.description) == null ? void 0 : _b.value) ? /* @__PURE__ */ import_react2.default.createElement("figcaption", null, __asset.fields.description.value) : null);
146
+ return null;
141
147
  };
142
148
 
143
149
  // src/components/nodes/HeadingRichTextNode.tsx
@@ -95,10 +95,16 @@ var AssetRichTextNode = ({ node }) => {
95
95
  if (__asset === void 0) {
96
96
  return null;
97
97
  }
98
- if (__asset.type !== "image") {
99
- return null;
98
+ if (__asset.type === "image") {
99
+ return /* @__PURE__ */ React2.createElement("figure", null, /* @__PURE__ */ React2.createElement("img", { src: __asset.fields.url.value, alt: (_a = __asset.fields.title) == null ? void 0 : _a.value }), ((_b = __asset.fields.description) == null ? void 0 : _b.value) ? /* @__PURE__ */ React2.createElement("figcaption", null, __asset.fields.description.value) : null);
100
+ }
101
+ if (__asset.type === "video") {
102
+ return /* @__PURE__ */ React2.createElement("video", { src: __asset.fields.url.value, controls: true });
103
+ }
104
+ if (__asset.type === "audio") {
105
+ return /* @__PURE__ */ React2.createElement("audio", { src: __asset.fields.url.value, controls: true });
100
106
  }
101
- return /* @__PURE__ */ React2.createElement("figure", null, /* @__PURE__ */ React2.createElement("img", { src: __asset.fields.url.value, alt: (_a = __asset.fields.title) == null ? void 0 : _a.value }), ((_b = __asset.fields.description) == null ? void 0 : _b.value) ? /* @__PURE__ */ React2.createElement("figcaption", null, __asset.fields.description.value) : null);
107
+ return null;
102
108
  };
103
109
 
104
110
  // src/components/nodes/HeadingRichTextNode.tsx
package/dist/handler.js CHANGED
@@ -91,6 +91,7 @@ var createPreviewGETRouteHandler = (options) => {
91
91
  const secret = getQueryParam(request, import_canvas.SECRET_QUERY_STRING_PARAM);
92
92
  const referer = request.headers.get("referer");
93
93
  const isUniformContextualEditing = getQueryParam(request, import_canvas.IN_CONTEXT_EDITOR_QUERY_STRING_PARAM) === "true" && (0, import_canvas.isAllowedReferrer)(referer || void 0);
94
+ const releaseId = getQueryParam(request, "releaseId");
94
95
  if (typeof pathToRedirectTo === "undefined") {
95
96
  const resolveFullPath = (options == null ? void 0 : options.resolveFullPath) || resolveFullPathDefault;
96
97
  pathToRedirectTo = resolveFullPath({ id, slug, path, locale });
@@ -113,6 +114,9 @@ var createPreviewGETRouteHandler = (options) => {
113
114
  if (isPlayground || (options == null ? void 0 : options.playgroundPath) && pathToRedirectTo === options.playgroundPath) {
114
115
  redirectionUrl.searchParams.set("id", searchParams.get("id") || "");
115
116
  }
117
+ if (releaseId) {
118
+ redirectionUrl.searchParams.set("releaseId", releaseId);
119
+ }
116
120
  if (!isUniformContextualEditing) {
117
121
  contextualEditingQueryParams.forEach((param) => {
118
122
  redirectionUrl.searchParams.delete(param);
package/dist/handler.mjs CHANGED
@@ -58,6 +58,7 @@ var createPreviewGETRouteHandler = (options) => {
58
58
  const secret = getQueryParam(request, SECRET_QUERY_STRING_PARAM);
59
59
  const referer = request.headers.get("referer");
60
60
  const isUniformContextualEditing = getQueryParam(request, IN_CONTEXT_EDITOR_QUERY_STRING_PARAM) === "true" && isAllowedReferrer(referer || void 0);
61
+ const releaseId = getQueryParam(request, "releaseId");
61
62
  if (typeof pathToRedirectTo === "undefined") {
62
63
  const resolveFullPath = (options == null ? void 0 : options.resolveFullPath) || resolveFullPathDefault;
63
64
  pathToRedirectTo = resolveFullPath({ id, slug, path, locale });
@@ -80,6 +81,9 @@ var createPreviewGETRouteHandler = (options) => {
80
81
  if (isPlayground || (options == null ? void 0 : options.playgroundPath) && pathToRedirectTo === options.playgroundPath) {
81
82
  redirectionUrl.searchParams.set("id", searchParams.get("id") || "");
82
83
  }
84
+ if (releaseId) {
85
+ redirectionUrl.searchParams.set("releaseId", releaseId);
86
+ }
83
87
  if (!isUniformContextualEditing) {
84
88
  contextualEditingQueryParams.forEach((param) => {
85
89
  redirectionUrl.searchParams.delete(param);
package/dist/index.esm.js CHANGED
@@ -441,7 +441,10 @@ import { createElement as createElement3, Fragment as Fragment3, Suspense } from
441
441
  import {
442
442
  createUniformContext
443
443
  } from "@uniformdev/canvas-next-rsc-shared";
444
- import { UNIFORM_DEFAULT_COOKIE_NAME } from "@uniformdev/context";
444
+ import {
445
+ UNIFORM_DEFAULT_COOKIE_NAME,
446
+ UNIFORM_DEFAULT_QUIRK_COOKIE_NAME
447
+ } from "@uniformdev/context";
445
448
  import { cookies } from "next/headers";
446
449
  var createServerUniformContext = async (options) => {
447
450
  const manifest = await getManifest(options);
@@ -452,10 +455,13 @@ var createServerUniformContext = async (options) => {
452
455
  return context;
453
456
  };
454
457
  var createServerUniformContextFromManifest = async (options) => {
455
- var _a;
458
+ var _a, _b, _c;
459
+ const quirksEnabled = (_a = getServerConfig().experimental) == null ? void 0 : _a.quirkSerialization;
456
460
  const context = createUniformContext({
457
461
  ...options || {},
458
- serverCookieValue: (_a = cookies().get(UNIFORM_DEFAULT_COOKIE_NAME)) == null ? void 0 : _a.value
462
+ serverCookieValue: (_b = cookies().get(UNIFORM_DEFAULT_COOKIE_NAME)) == null ? void 0 : _b.value,
463
+ experimental_quirksEnabled: quirksEnabled,
464
+ quirkCookieValue: quirksEnabled ? (_c = cookies().get(UNIFORM_DEFAULT_QUIRK_COOKIE_NAME)) == null ? void 0 : _c.value : void 0
459
465
  });
460
466
  return context;
461
467
  };
@@ -533,12 +539,17 @@ var retrieveRoute = async ({ params, searchParams, skipPrefetch }, fetchOptions)
533
539
  let result;
534
540
  for (let i = 0; i < states.length; i++) {
535
541
  const state = states[i];
542
+ const releaseId = determineReleaseId({
543
+ searchParams,
544
+ state
545
+ });
536
546
  try {
537
547
  result = await retrieveRouteByPath({
538
548
  path: value,
539
549
  state,
540
550
  searchParams,
541
- fetchOptions
551
+ fetchOptions,
552
+ releaseId
542
553
  });
543
554
  } catch (e) {
544
555
  console.warn(`Failed to retrieve route by path: ${value} with state ${state}`, e);
@@ -555,7 +566,8 @@ var retrieveRouteByPath = async ({
555
566
  path,
556
567
  state,
557
568
  searchParams,
558
- fetchOptions
569
+ fetchOptions,
570
+ releaseId
559
571
  }) => {
560
572
  var _a;
561
573
  const client = getDefaultRouteClient({
@@ -580,7 +592,8 @@ var retrieveRouteByPath = async ({
580
592
  state,
581
593
  dataSourceVariant: getDataSourceVariantFromRouteGetParams(fetchOptions != null ? fetchOptions : {}, state),
582
594
  withComponentIDs: true,
583
- withContentSourceMap: isOnVercelPreviewEnvironment() && ((_a = getServerConfig().experimental) == null ? void 0 : _a.vercelVisualEditing)
595
+ withContentSourceMap: isOnVercelPreviewEnvironment() && ((_a = getServerConfig().experimental) == null ? void 0 : _a.vercelVisualEditing),
596
+ releaseId
584
597
  });
585
598
  };
586
599
  var resolveRedirectHref = (resolveResult, path) => {
@@ -604,6 +617,16 @@ var determineState = ({ searchParams }) => {
604
617
  }
605
618
  return states;
606
619
  };
620
+ var determineReleaseId = ({
621
+ searchParams,
622
+ state
623
+ }) => {
624
+ const draftMode2 = isDraftModeEnabled({ searchParams });
625
+ if (!draftMode2 || state === CANVAS_PUBLISHED_STATE) {
626
+ return void 0;
627
+ }
628
+ return searchParams == null ? void 0 : searchParams.releaseId;
629
+ };
607
630
 
608
631
  // src/components/ContextUpdateTrigger.tsx
609
632
  import { ClientContextUpdate } from "@uniformdev/canvas-next-rsc-client";
@@ -1051,7 +1074,7 @@ var UniformContext = async ({
1051
1074
  clientContextComponent,
1052
1075
  children
1053
1076
  }) => {
1054
- var _a;
1077
+ var _a, _b;
1055
1078
  const manifest = await getManifest({
1056
1079
  searchParams: {}
1057
1080
  });
@@ -1059,12 +1082,14 @@ var UniformContext = async ({
1059
1082
  const serverConfig2 = getServerConfig();
1060
1083
  const disableDevTools = ((_a = serverConfig2.context) == null ? void 0 : _a.disableDevTools) || false;
1061
1084
  const defaultConsent = serverConfig2.defaultConsent || false;
1085
+ const experimentalQuirkSerialization = ((_b = serverConfig2.experimental) == null ? void 0 : _b.quirkSerialization) || false;
1062
1086
  return /* @__PURE__ */ React7.createElement(React7.Fragment, null, children, /* @__PURE__ */ React7.createElement(
1063
1087
  ContextComponent,
1064
1088
  {
1065
1089
  manifest,
1066
1090
  disableDevTools,
1067
- defaultConsent
1091
+ defaultConsent,
1092
+ experimentalQuirkSerialization
1068
1093
  }
1069
1094
  ), /* @__PURE__ */ React7.createElement(Suspense2, { fallback: /* @__PURE__ */ React7.createElement(React7.Fragment, null) }, /* @__PURE__ */ React7.createElement(UniformScript, null)));
1070
1095
  };
package/dist/index.js CHANGED
@@ -492,10 +492,13 @@ var createServerUniformContext = async (options) => {
492
492
  return context;
493
493
  };
494
494
  var createServerUniformContextFromManifest = async (options) => {
495
- var _a;
495
+ var _a, _b, _c;
496
+ const quirksEnabled = (_a = getServerConfig().experimental) == null ? void 0 : _a.quirkSerialization;
496
497
  const context = (0, import_canvas_next_rsc_shared.createUniformContext)({
497
498
  ...options || {},
498
- serverCookieValue: (_a = (0, import_headers2.cookies)().get(import_context.UNIFORM_DEFAULT_COOKIE_NAME)) == null ? void 0 : _a.value
499
+ serverCookieValue: (_b = (0, import_headers2.cookies)().get(import_context.UNIFORM_DEFAULT_COOKIE_NAME)) == null ? void 0 : _b.value,
500
+ experimental_quirksEnabled: quirksEnabled,
501
+ quirkCookieValue: quirksEnabled ? (_c = (0, import_headers2.cookies)().get(import_context.UNIFORM_DEFAULT_QUIRK_COOKIE_NAME)) == null ? void 0 : _c.value : void 0
499
502
  });
500
503
  return context;
501
504
  };
@@ -568,12 +571,17 @@ var retrieveRoute = async ({ params, searchParams, skipPrefetch }, fetchOptions)
568
571
  let result;
569
572
  for (let i = 0; i < states.length; i++) {
570
573
  const state = states[i];
574
+ const releaseId = determineReleaseId({
575
+ searchParams,
576
+ state
577
+ });
571
578
  try {
572
579
  result = await retrieveRouteByPath({
573
580
  path: value,
574
581
  state,
575
582
  searchParams,
576
- fetchOptions
583
+ fetchOptions,
584
+ releaseId
577
585
  });
578
586
  } catch (e) {
579
587
  console.warn(`Failed to retrieve route by path: ${value} with state ${state}`, e);
@@ -590,7 +598,8 @@ var retrieveRouteByPath = async ({
590
598
  path,
591
599
  state,
592
600
  searchParams,
593
- fetchOptions
601
+ fetchOptions,
602
+ releaseId
594
603
  }) => {
595
604
  var _a;
596
605
  const client = getDefaultRouteClient({
@@ -615,7 +624,8 @@ var retrieveRouteByPath = async ({
615
624
  state,
616
625
  dataSourceVariant: (0, import_canvas4.getDataSourceVariantFromRouteGetParams)(fetchOptions != null ? fetchOptions : {}, state),
617
626
  withComponentIDs: true,
618
- withContentSourceMap: isOnVercelPreviewEnvironment() && ((_a = getServerConfig().experimental) == null ? void 0 : _a.vercelVisualEditing)
627
+ withContentSourceMap: isOnVercelPreviewEnvironment() && ((_a = getServerConfig().experimental) == null ? void 0 : _a.vercelVisualEditing),
628
+ releaseId
619
629
  });
620
630
  };
621
631
  var resolveRedirectHref = (resolveResult, path) => {
@@ -639,6 +649,16 @@ var determineState = ({ searchParams }) => {
639
649
  }
640
650
  return states;
641
651
  };
652
+ var determineReleaseId = ({
653
+ searchParams,
654
+ state
655
+ }) => {
656
+ const draftMode2 = isDraftModeEnabled({ searchParams });
657
+ if (!draftMode2 || state === import_canvas4.CANVAS_PUBLISHED_STATE) {
658
+ return void 0;
659
+ }
660
+ return searchParams == null ? void 0 : searchParams.releaseId;
661
+ };
642
662
 
643
663
  // src/components/ContextUpdateTrigger.tsx
644
664
  var import_canvas_next_rsc_client2 = require("@uniformdev/canvas-next-rsc-client");
@@ -1078,7 +1098,7 @@ var UniformContext = async ({
1078
1098
  clientContextComponent,
1079
1099
  children
1080
1100
  }) => {
1081
- var _a;
1101
+ var _a, _b;
1082
1102
  const manifest = await getManifest({
1083
1103
  searchParams: {}
1084
1104
  });
@@ -1086,12 +1106,14 @@ var UniformContext = async ({
1086
1106
  const serverConfig2 = getServerConfig();
1087
1107
  const disableDevTools = ((_a = serverConfig2.context) == null ? void 0 : _a.disableDevTools) || false;
1088
1108
  const defaultConsent = serverConfig2.defaultConsent || false;
1109
+ const experimentalQuirkSerialization = ((_b = serverConfig2.experimental) == null ? void 0 : _b.quirkSerialization) || false;
1089
1110
  return /* @__PURE__ */ import_react11.default.createElement(import_react11.default.Fragment, null, children, /* @__PURE__ */ import_react11.default.createElement(
1090
1111
  ContextComponent,
1091
1112
  {
1092
1113
  manifest,
1093
1114
  disableDevTools,
1094
- defaultConsent
1115
+ defaultConsent,
1116
+ experimentalQuirkSerialization
1095
1117
  }
1096
1118
  ), /* @__PURE__ */ import_react11.default.createElement(import_react10.Suspense, { fallback: /* @__PURE__ */ import_react11.default.createElement(import_react11.default.Fragment, null) }, /* @__PURE__ */ import_react11.default.createElement(import_canvas_next_rsc_client8.UniformScript, null)));
1097
1119
  };
package/dist/index.mjs CHANGED
@@ -441,7 +441,10 @@ import { createElement as createElement3, Fragment as Fragment3, Suspense } from
441
441
  import {
442
442
  createUniformContext
443
443
  } from "@uniformdev/canvas-next-rsc-shared";
444
- import { UNIFORM_DEFAULT_COOKIE_NAME } from "@uniformdev/context";
444
+ import {
445
+ UNIFORM_DEFAULT_COOKIE_NAME,
446
+ UNIFORM_DEFAULT_QUIRK_COOKIE_NAME
447
+ } from "@uniformdev/context";
445
448
  import { cookies } from "next/headers";
446
449
  var createServerUniformContext = async (options) => {
447
450
  const manifest = await getManifest(options);
@@ -452,10 +455,13 @@ var createServerUniformContext = async (options) => {
452
455
  return context;
453
456
  };
454
457
  var createServerUniformContextFromManifest = async (options) => {
455
- var _a;
458
+ var _a, _b, _c;
459
+ const quirksEnabled = (_a = getServerConfig().experimental) == null ? void 0 : _a.quirkSerialization;
456
460
  const context = createUniformContext({
457
461
  ...options || {},
458
- serverCookieValue: (_a = cookies().get(UNIFORM_DEFAULT_COOKIE_NAME)) == null ? void 0 : _a.value
462
+ serverCookieValue: (_b = cookies().get(UNIFORM_DEFAULT_COOKIE_NAME)) == null ? void 0 : _b.value,
463
+ experimental_quirksEnabled: quirksEnabled,
464
+ quirkCookieValue: quirksEnabled ? (_c = cookies().get(UNIFORM_DEFAULT_QUIRK_COOKIE_NAME)) == null ? void 0 : _c.value : void 0
459
465
  });
460
466
  return context;
461
467
  };
@@ -533,12 +539,17 @@ var retrieveRoute = async ({ params, searchParams, skipPrefetch }, fetchOptions)
533
539
  let result;
534
540
  for (let i = 0; i < states.length; i++) {
535
541
  const state = states[i];
542
+ const releaseId = determineReleaseId({
543
+ searchParams,
544
+ state
545
+ });
536
546
  try {
537
547
  result = await retrieveRouteByPath({
538
548
  path: value,
539
549
  state,
540
550
  searchParams,
541
- fetchOptions
551
+ fetchOptions,
552
+ releaseId
542
553
  });
543
554
  } catch (e) {
544
555
  console.warn(`Failed to retrieve route by path: ${value} with state ${state}`, e);
@@ -555,7 +566,8 @@ var retrieveRouteByPath = async ({
555
566
  path,
556
567
  state,
557
568
  searchParams,
558
- fetchOptions
569
+ fetchOptions,
570
+ releaseId
559
571
  }) => {
560
572
  var _a;
561
573
  const client = getDefaultRouteClient({
@@ -580,7 +592,8 @@ var retrieveRouteByPath = async ({
580
592
  state,
581
593
  dataSourceVariant: getDataSourceVariantFromRouteGetParams(fetchOptions != null ? fetchOptions : {}, state),
582
594
  withComponentIDs: true,
583
- withContentSourceMap: isOnVercelPreviewEnvironment() && ((_a = getServerConfig().experimental) == null ? void 0 : _a.vercelVisualEditing)
595
+ withContentSourceMap: isOnVercelPreviewEnvironment() && ((_a = getServerConfig().experimental) == null ? void 0 : _a.vercelVisualEditing),
596
+ releaseId
584
597
  });
585
598
  };
586
599
  var resolveRedirectHref = (resolveResult, path) => {
@@ -604,6 +617,16 @@ var determineState = ({ searchParams }) => {
604
617
  }
605
618
  return states;
606
619
  };
620
+ var determineReleaseId = ({
621
+ searchParams,
622
+ state
623
+ }) => {
624
+ const draftMode2 = isDraftModeEnabled({ searchParams });
625
+ if (!draftMode2 || state === CANVAS_PUBLISHED_STATE) {
626
+ return void 0;
627
+ }
628
+ return searchParams == null ? void 0 : searchParams.releaseId;
629
+ };
607
630
 
608
631
  // src/components/ContextUpdateTrigger.tsx
609
632
  import { ClientContextUpdate } from "@uniformdev/canvas-next-rsc-client";
@@ -1051,7 +1074,7 @@ var UniformContext = async ({
1051
1074
  clientContextComponent,
1052
1075
  children
1053
1076
  }) => {
1054
- var _a;
1077
+ var _a, _b;
1055
1078
  const manifest = await getManifest({
1056
1079
  searchParams: {}
1057
1080
  });
@@ -1059,12 +1082,14 @@ var UniformContext = async ({
1059
1082
  const serverConfig2 = getServerConfig();
1060
1083
  const disableDevTools = ((_a = serverConfig2.context) == null ? void 0 : _a.disableDevTools) || false;
1061
1084
  const defaultConsent = serverConfig2.defaultConsent || false;
1085
+ const experimentalQuirkSerialization = ((_b = serverConfig2.experimental) == null ? void 0 : _b.quirkSerialization) || false;
1062
1086
  return /* @__PURE__ */ React7.createElement(React7.Fragment, null, children, /* @__PURE__ */ React7.createElement(
1063
1087
  ContextComponent,
1064
1088
  {
1065
1089
  manifest,
1066
1090
  disableDevTools,
1067
- defaultConsent
1091
+ defaultConsent,
1092
+ experimentalQuirkSerialization
1068
1093
  }
1069
1094
  ), /* @__PURE__ */ React7.createElement(Suspense2, { fallback: /* @__PURE__ */ React7.createElement(React7.Fragment, null) }, /* @__PURE__ */ React7.createElement(UniformScript, null)));
1070
1095
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-next-rsc",
3
- "version": "19.206.0",
3
+ "version": "19.207.1-alpha.20+9dc4b12464",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "scripts": {
6
6
  "build": "tsup",
@@ -61,15 +61,15 @@
61
61
  "react-dom": "18.3.1"
62
62
  },
63
63
  "dependencies": {
64
- "@uniformdev/canvas": "19.206.0",
65
- "@uniformdev/canvas-next-rsc-client": "^19.206.0",
66
- "@uniformdev/canvas-next-rsc-shared": "^19.206.0",
67
- "@uniformdev/canvas-react": "19.206.0",
68
- "@uniformdev/context": "19.206.0",
69
- "@uniformdev/project-map": "19.206.0",
70
- "@uniformdev/redirect": "19.206.0",
71
- "@uniformdev/richtext": "19.206.0",
72
- "@uniformdev/webhooks": "19.206.0",
64
+ "@uniformdev/canvas": "19.207.1-alpha.20+9dc4b12464",
65
+ "@uniformdev/canvas-next-rsc-client": "^19.207.1-alpha.20+9dc4b12464",
66
+ "@uniformdev/canvas-next-rsc-shared": "^19.207.1-alpha.20+9dc4b12464",
67
+ "@uniformdev/canvas-react": "19.207.1-alpha.20+9dc4b12464",
68
+ "@uniformdev/context": "19.207.1-alpha.20+9dc4b12464",
69
+ "@uniformdev/project-map": "19.207.1-alpha.20+9dc4b12464",
70
+ "@uniformdev/redirect": "19.207.1-alpha.20+9dc4b12464",
71
+ "@uniformdev/richtext": "19.207.1-alpha.20+9dc4b12464",
72
+ "@uniformdev/webhooks": "19.207.1-alpha.20+9dc4b12464",
73
73
  "@vercel/edge-config": "^0.4.0",
74
74
  "encoding": "^0.1.13",
75
75
  "server-only": "^0.0.1",
@@ -86,5 +86,5 @@
86
86
  "publishConfig": {
87
87
  "access": "public"
88
88
  },
89
- "gitHead": "1053420353bc9a7ec6930f9e65e18089c6497977"
89
+ "gitHead": "9dc4b1246494bc273e86dd22cd4818aa4ebd1c24"
90
90
  }