@uniformdev/canvas-next-rsc 19.177.2-alpha.18 → 19.178.2-alpha.25

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.
@@ -34,7 +34,16 @@ type UniformRichTextProps = {
34
34
  resolveRichTextRenderer?: RenderRichTextComponentResolver;
35
35
  /** The component instance. */
36
36
  component: ComponentInstance;
37
- } & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'>;
37
+ context?: Pick<CompositionContext, 'isContextualEditing'>;
38
+ /**
39
+ * Sets the value to show in Canvas editor when the parameter value is empty.
40
+ * Can be a static string, or a function to generate the placeholder out of parameter info.
41
+ * @default undefined
42
+ */
43
+ placeholder?: string | ((parameter: {
44
+ id: string;
45
+ }) => string | undefined);
46
+ } & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children' | 'placeholder'>;
38
47
  /**
39
48
  * Adds rendering support for Uniform Rich Text parameters
40
49
  */
@@ -53,7 +62,16 @@ declare const UniformRichText: React__default.ForwardRefExoticComponent<{
53
62
  resolveRichTextRenderer?: RenderRichTextComponentResolver | undefined;
54
63
  /** The component instance. */
55
64
  component: ComponentInstance;
56
- } & Omit<React__default.HTMLAttributes<HTMLDivElement>, "children"> & React__default.RefAttributes<unknown>>;
65
+ context?: Pick<CompositionContext, "isContextualEditing"> | undefined;
66
+ /**
67
+ * Sets the value to show in Canvas editor when the parameter value is empty.
68
+ * Can be a static string, or a function to generate the placeholder out of parameter info.
69
+ * @default undefined
70
+ */
71
+ placeholder?: string | ((parameter: {
72
+ id: string;
73
+ }) => string | undefined) | undefined;
74
+ } & Omit<React__default.HTMLAttributes<HTMLDivElement>, "placeholder" | "children"> & React__default.RefAttributes<unknown>>;
57
75
 
58
76
  type UniformRichTextNodeProps = {
59
77
  node: RichTextNode;
@@ -34,7 +34,16 @@ type UniformRichTextProps = {
34
34
  resolveRichTextRenderer?: RenderRichTextComponentResolver;
35
35
  /** The component instance. */
36
36
  component: ComponentInstance;
37
- } & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'>;
37
+ context?: Pick<CompositionContext, 'isContextualEditing'>;
38
+ /**
39
+ * Sets the value to show in Canvas editor when the parameter value is empty.
40
+ * Can be a static string, or a function to generate the placeholder out of parameter info.
41
+ * @default undefined
42
+ */
43
+ placeholder?: string | ((parameter: {
44
+ id: string;
45
+ }) => string | undefined);
46
+ } & Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children' | 'placeholder'>;
38
47
  /**
39
48
  * Adds rendering support for Uniform Rich Text parameters
40
49
  */
@@ -53,7 +62,16 @@ declare const UniformRichText: React__default.ForwardRefExoticComponent<{
53
62
  resolveRichTextRenderer?: RenderRichTextComponentResolver | undefined;
54
63
  /** The component instance. */
55
64
  component: ComponentInstance;
56
- } & Omit<React__default.HTMLAttributes<HTMLDivElement>, "children"> & React__default.RefAttributes<unknown>>;
65
+ context?: Pick<CompositionContext, "isContextualEditing"> | undefined;
66
+ /**
67
+ * Sets the value to show in Canvas editor when the parameter value is empty.
68
+ * Can be a static string, or a function to generate the placeholder out of parameter info.
69
+ * @default undefined
70
+ */
71
+ placeholder?: string | ((parameter: {
72
+ id: string;
73
+ }) => string | undefined) | undefined;
74
+ } & Omit<React__default.HTMLAttributes<HTMLDivElement>, "placeholder" | "children"> & React__default.RefAttributes<unknown>>;
57
75
 
58
76
  type UniformRichTextNodeProps = {
59
77
  node: RichTextNode;
package/dist/component.js CHANGED
@@ -48,12 +48,13 @@ var DefaultNotImplementedComponent = ({ component }) => {
48
48
  };
49
49
 
50
50
  // src/components/UniformRichText.tsx
51
- var import_richtext5 = require("@uniformdev/richtext");
52
- var import_react11 = __toESM(require("react"));
51
+ var import_canvas = require("@uniformdev/canvas");
52
+ var import_richtext6 = require("@uniformdev/richtext");
53
+ var import_react12 = __toESM(require("react"));
53
54
 
54
55
  // src/components/UniformRichTextNode.tsx
55
- var import_richtext4 = require("@uniformdev/richtext");
56
- var import_react10 = __toESM(require("react"));
56
+ var import_richtext5 = require("@uniformdev/richtext");
57
+ var import_react11 = __toESM(require("react"));
57
58
 
58
59
  // src/components/nodes/HeadingRichTextNode.tsx
59
60
  var import_react2 = __toESM(require("react"));
@@ -107,25 +108,34 @@ var ParagraphRichTextNode = ({ children, node }) => {
107
108
  );
108
109
  };
109
110
 
110
- // src/components/nodes/TabRichTextNode.tsx
111
+ // src/components/nodes/TableCellRichTextNode.tsx
112
+ var import_richtext3 = require("@uniformdev/richtext");
111
113
  var import_react8 = __toESM(require("react"));
114
+ var TableCellRichTextNode = ({ children, node }) => {
115
+ const { headerState } = node;
116
+ const TableCellTag = (0, import_richtext3.getRichTextTagFromTableCellHeaderState)(headerState);
117
+ return /* @__PURE__ */ import_react8.default.createElement(TableCellTag, null, children);
118
+ };
119
+
120
+ // src/components/nodes/TabRichTextNode.tsx
121
+ var import_react9 = __toESM(require("react"));
112
122
  var TabRichTextNode = () => {
113
- return /* @__PURE__ */ import_react8.default.createElement(import_react8.default.Fragment, null, " ");
123
+ return /* @__PURE__ */ import_react9.default.createElement(import_react9.default.Fragment, null, " ");
114
124
  };
115
125
 
116
126
  // src/components/nodes/TextRichTextNode.tsx
117
- var import_richtext3 = require("@uniformdev/richtext");
118
- var import_react9 = __toESM(require("react"));
127
+ var import_richtext4 = require("@uniformdev/richtext");
128
+ var import_react10 = __toESM(require("react"));
119
129
  var TextRichTextNode = ({ node }) => {
120
130
  const { text, format } = node;
121
- const tags = (0, import_richtext3.getRichTextTagsFromTextFormat)(format);
122
- return /* @__PURE__ */ import_react9.default.createElement(import_react9.default.Fragment, null, tags.length > 0 ? tags.reduceRight((children, Tag) => /* @__PURE__ */ import_react9.default.createElement(Tag, null, children), text) : text);
131
+ const tags = (0, import_richtext4.getRichTextTagsFromTextFormat)(format);
132
+ return /* @__PURE__ */ import_react10.default.createElement(import_react10.default.Fragment, null, tags.length > 0 ? tags.reduceRight((children, Tag) => /* @__PURE__ */ import_react10.default.createElement(Tag, null, children), text) : text);
123
133
  };
124
134
 
125
135
  // src/components/UniformRichTextNode.tsx
126
136
  function UniformRichTextNode({ node, ...props }) {
127
137
  var _a;
128
- if (!(0, import_richtext4.isRichTextNode)(node)) return null;
138
+ if (!(0, import_richtext5.isRichTextNode)(node)) return null;
129
139
  let NodeRenderer = (_a = props.resolveRichTextRenderer) == null ? void 0 : _a.call(props, node);
130
140
  if (typeof NodeRenderer === "undefined") {
131
141
  NodeRenderer = resolveRichTextDefaultRenderer(node);
@@ -133,8 +143,8 @@ function UniformRichTextNode({ node, ...props }) {
133
143
  if (!NodeRenderer) {
134
144
  return null;
135
145
  }
136
- const children = node.children ? node.children.map((childNode, i) => /* @__PURE__ */ import_react10.default.createElement(UniformRichTextNode, { ...props, key: i, node: childNode })) : null;
137
- return /* @__PURE__ */ import_react10.default.createElement(NodeRenderer, { node }, children);
146
+ const children = node.children ? node.children.map((childNode, i) => /* @__PURE__ */ import_react11.default.createElement(UniformRichTextNode, { ...props, key: i, node: childNode })) : null;
147
+ return /* @__PURE__ */ import_react11.default.createElement(NodeRenderer, { node }, children);
138
148
  }
139
149
  var rendererMap = /* @__PURE__ */ new Map([
140
150
  ["heading", HeadingRichTextNode],
@@ -143,26 +153,58 @@ var rendererMap = /* @__PURE__ */ new Map([
143
153
  ["list", ListRichTextNode],
144
154
  ["listitem", ListItemRichTextNode],
145
155
  ["paragraph", ParagraphRichTextNode],
146
- ["quote", ({ children }) => /* @__PURE__ */ import_react10.default.createElement("blockquote", null, children)],
156
+ ["quote", ({ children }) => /* @__PURE__ */ import_react11.default.createElement("blockquote", null, children)],
147
157
  [
148
158
  "code",
149
- ({ children }) => /* @__PURE__ */ import_react10.default.createElement("pre", null, /* @__PURE__ */ import_react10.default.createElement("code", null, children))
159
+ ({ children }) => /* @__PURE__ */ import_react11.default.createElement("pre", null, /* @__PURE__ */ import_react11.default.createElement("code", null, children))
150
160
  ],
151
- ["root", ({ children }) => /* @__PURE__ */ import_react10.default.createElement(import_react10.default.Fragment, null, children)],
161
+ ["root", ({ children }) => /* @__PURE__ */ import_react11.default.createElement(import_react11.default.Fragment, null, children)],
152
162
  ["text", TextRichTextNode],
153
- ["tab", TabRichTextNode]
163
+ ["tab", TabRichTextNode],
164
+ [
165
+ "table",
166
+ ({ children }) => /* @__PURE__ */ import_react11.default.createElement("table", null, /* @__PURE__ */ import_react11.default.createElement("tbody", null, children))
167
+ ],
168
+ ["tablerow", ({ children }) => /* @__PURE__ */ import_react11.default.createElement("tr", null, children)],
169
+ ["tablecell", TableCellRichTextNode]
154
170
  ]);
155
171
  var resolveRichTextDefaultRenderer = (node) => {
156
172
  return rendererMap.get(node.type);
157
173
  };
158
174
 
159
175
  // src/components/UniformRichText.tsx
160
- var UniformRichText = import_react11.default.forwardRef(function UniformRichText2({ parameterId, component, resolveRichTextRenderer, as: Tag = "div", ...props }, ref) {
161
- var _a;
162
- const parameter = (_a = component == null ? void 0 : component.parameters) == null ? void 0 : _a[parameterId];
163
- const value = parameter == null ? void 0 : parameter.value;
164
- if (!value || !(0, import_richtext5.isRichTextValue)(value) || (0, import_richtext5.isRichTextValueConsideredEmpty)(value)) return null;
165
- return Tag === null ? /* @__PURE__ */ import_react11.default.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer }) : /* @__PURE__ */ import_react11.default.createElement(Tag, { ref, ...props }, /* @__PURE__ */ import_react11.default.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer }));
176
+ var UniformRichText = import_react12.default.forwardRef(function UniformRichText2({
177
+ parameterId,
178
+ component,
179
+ resolveRichTextRenderer,
180
+ as: Tag = "div",
181
+ context,
182
+ placeholder,
183
+ ...props
184
+ }, ref) {
185
+ var _a, _b;
186
+ const isContextualEditing = (_a = context == null ? void 0 : context.isContextualEditing) != null ? _a : false;
187
+ const parameter = (_b = component == null ? void 0 : component.parameters) == null ? void 0 : _b[parameterId];
188
+ if (!parameter) {
189
+ return null;
190
+ }
191
+ const computedPlaceholder = typeof placeholder === "function" ? placeholder({ id: parameterId }) : placeholder;
192
+ const value = parameter.value;
193
+ if (!value || !(0, import_richtext6.isRichTextValue)(value)) return null;
194
+ if (!isContextualEditing && (0, import_richtext6.isRichTextValueConsideredEmpty)(value)) return null;
195
+ return Tag === null ? /* @__PURE__ */ import_react12.default.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer }) : /* @__PURE__ */ import_react12.default.createElement(
196
+ Tag,
197
+ {
198
+ ref,
199
+ ...props,
200
+ ...isContextualEditing ? {
201
+ [import_canvas.ATTRIBUTE_COMPONENT_ID]: component._id,
202
+ [import_canvas.ATTRIBUTE_PARAMETER_ID]: parameterId,
203
+ [import_canvas.ATTRIBUTE_PARAMETER_TYPE]: "richText"
204
+ } : {}
205
+ },
206
+ (0, import_richtext6.isRichTextValueConsideredEmpty)(value) ? /* @__PURE__ */ import_react12.default.createElement("p", null, /* @__PURE__ */ import_react12.default.createElement("i", null, computedPlaceholder)) : /* @__PURE__ */ import_react12.default.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer })
207
+ );
166
208
  });
167
209
 
168
210
  // src/components/UniformSlot.tsx
@@ -193,9 +235,9 @@ var UniformSlot = ({ data, slot, children }) => {
193
235
 
194
236
  // src/components/UniformText.tsx
195
237
  var import_core = require("@uniformdev/canvas-react/core");
196
- var import_react12 = __toESM(require("react"));
238
+ var import_react13 = __toESM(require("react"));
197
239
  var UniformText = ({ context, ...rest }) => {
198
- return /* @__PURE__ */ import_react12.default.createElement(
240
+ return /* @__PURE__ */ import_react13.default.createElement(
199
241
  import_core.PureUniformText,
200
242
  {
201
243
  ...rest,
@@ -6,14 +6,16 @@ var DefaultNotImplementedComponent = ({ component }) => {
6
6
 
7
7
  // src/components/UniformRichText.tsx
8
8
  import {
9
- isRichTextValue,
10
- isRichTextValueConsideredEmpty
11
- } from "@uniformdev/richtext";
12
- import React11 from "react";
9
+ ATTRIBUTE_COMPONENT_ID,
10
+ ATTRIBUTE_PARAMETER_ID,
11
+ ATTRIBUTE_PARAMETER_TYPE
12
+ } from "@uniformdev/canvas";
13
+ import { isRichTextValue, isRichTextValueConsideredEmpty } from "@uniformdev/richtext";
14
+ import React12 from "react";
13
15
 
14
16
  // src/components/UniformRichTextNode.tsx
15
17
  import { isRichTextNode } from "@uniformdev/richtext";
16
- import React10 from "react";
18
+ import React11 from "react";
17
19
 
18
20
  // src/components/nodes/HeadingRichTextNode.tsx
19
21
  import React2 from "react";
@@ -67,19 +69,28 @@ var ParagraphRichTextNode = ({ children, node }) => {
67
69
  );
68
70
  };
69
71
 
70
- // src/components/nodes/TabRichTextNode.tsx
72
+ // src/components/nodes/TableCellRichTextNode.tsx
73
+ import { getRichTextTagFromTableCellHeaderState } from "@uniformdev/richtext";
71
74
  import React8 from "react";
75
+ var TableCellRichTextNode = ({ children, node }) => {
76
+ const { headerState } = node;
77
+ const TableCellTag = getRichTextTagFromTableCellHeaderState(headerState);
78
+ return /* @__PURE__ */ React8.createElement(TableCellTag, null, children);
79
+ };
80
+
81
+ // src/components/nodes/TabRichTextNode.tsx
82
+ import React9 from "react";
72
83
  var TabRichTextNode = () => {
73
- return /* @__PURE__ */ React8.createElement(React8.Fragment, null, " ");
84
+ return /* @__PURE__ */ React9.createElement(React9.Fragment, null, " ");
74
85
  };
75
86
 
76
87
  // src/components/nodes/TextRichTextNode.tsx
77
88
  import { getRichTextTagsFromTextFormat } from "@uniformdev/richtext";
78
- import React9 from "react";
89
+ import React10 from "react";
79
90
  var TextRichTextNode = ({ node }) => {
80
91
  const { text, format } = node;
81
92
  const tags = getRichTextTagsFromTextFormat(format);
82
- return /* @__PURE__ */ React9.createElement(React9.Fragment, null, tags.length > 0 ? tags.reduceRight((children, Tag) => /* @__PURE__ */ React9.createElement(Tag, null, children), text) : text);
93
+ return /* @__PURE__ */ React10.createElement(React10.Fragment, null, tags.length > 0 ? tags.reduceRight((children, Tag) => /* @__PURE__ */ React10.createElement(Tag, null, children), text) : text);
83
94
  };
84
95
 
85
96
  // src/components/UniformRichTextNode.tsx
@@ -93,8 +104,8 @@ function UniformRichTextNode({ node, ...props }) {
93
104
  if (!NodeRenderer) {
94
105
  return null;
95
106
  }
96
- const children = node.children ? node.children.map((childNode, i) => /* @__PURE__ */ React10.createElement(UniformRichTextNode, { ...props, key: i, node: childNode })) : null;
97
- return /* @__PURE__ */ React10.createElement(NodeRenderer, { node }, children);
107
+ const children = node.children ? node.children.map((childNode, i) => /* @__PURE__ */ React11.createElement(UniformRichTextNode, { ...props, key: i, node: childNode })) : null;
108
+ return /* @__PURE__ */ React11.createElement(NodeRenderer, { node }, children);
98
109
  }
99
110
  var rendererMap = /* @__PURE__ */ new Map([
100
111
  ["heading", HeadingRichTextNode],
@@ -103,26 +114,58 @@ var rendererMap = /* @__PURE__ */ new Map([
103
114
  ["list", ListRichTextNode],
104
115
  ["listitem", ListItemRichTextNode],
105
116
  ["paragraph", ParagraphRichTextNode],
106
- ["quote", ({ children }) => /* @__PURE__ */ React10.createElement("blockquote", null, children)],
117
+ ["quote", ({ children }) => /* @__PURE__ */ React11.createElement("blockquote", null, children)],
107
118
  [
108
119
  "code",
109
- ({ children }) => /* @__PURE__ */ React10.createElement("pre", null, /* @__PURE__ */ React10.createElement("code", null, children))
120
+ ({ children }) => /* @__PURE__ */ React11.createElement("pre", null, /* @__PURE__ */ React11.createElement("code", null, children))
110
121
  ],
111
- ["root", ({ children }) => /* @__PURE__ */ React10.createElement(React10.Fragment, null, children)],
122
+ ["root", ({ children }) => /* @__PURE__ */ React11.createElement(React11.Fragment, null, children)],
112
123
  ["text", TextRichTextNode],
113
- ["tab", TabRichTextNode]
124
+ ["tab", TabRichTextNode],
125
+ [
126
+ "table",
127
+ ({ children }) => /* @__PURE__ */ React11.createElement("table", null, /* @__PURE__ */ React11.createElement("tbody", null, children))
128
+ ],
129
+ ["tablerow", ({ children }) => /* @__PURE__ */ React11.createElement("tr", null, children)],
130
+ ["tablecell", TableCellRichTextNode]
114
131
  ]);
115
132
  var resolveRichTextDefaultRenderer = (node) => {
116
133
  return rendererMap.get(node.type);
117
134
  };
118
135
 
119
136
  // src/components/UniformRichText.tsx
120
- var UniformRichText = React11.forwardRef(function UniformRichText2({ parameterId, component, resolveRichTextRenderer, as: Tag = "div", ...props }, ref) {
121
- var _a;
122
- const parameter = (_a = component == null ? void 0 : component.parameters) == null ? void 0 : _a[parameterId];
123
- const value = parameter == null ? void 0 : parameter.value;
124
- if (!value || !isRichTextValue(value) || isRichTextValueConsideredEmpty(value)) return null;
125
- return Tag === null ? /* @__PURE__ */ React11.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer }) : /* @__PURE__ */ React11.createElement(Tag, { ref, ...props }, /* @__PURE__ */ React11.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer }));
137
+ var UniformRichText = React12.forwardRef(function UniformRichText2({
138
+ parameterId,
139
+ component,
140
+ resolveRichTextRenderer,
141
+ as: Tag = "div",
142
+ context,
143
+ placeholder,
144
+ ...props
145
+ }, ref) {
146
+ var _a, _b;
147
+ const isContextualEditing = (_a = context == null ? void 0 : context.isContextualEditing) != null ? _a : false;
148
+ const parameter = (_b = component == null ? void 0 : component.parameters) == null ? void 0 : _b[parameterId];
149
+ if (!parameter) {
150
+ return null;
151
+ }
152
+ const computedPlaceholder = typeof placeholder === "function" ? placeholder({ id: parameterId }) : placeholder;
153
+ const value = parameter.value;
154
+ if (!value || !isRichTextValue(value)) return null;
155
+ if (!isContextualEditing && isRichTextValueConsideredEmpty(value)) return null;
156
+ return Tag === null ? /* @__PURE__ */ React12.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer }) : /* @__PURE__ */ React12.createElement(
157
+ Tag,
158
+ {
159
+ ref,
160
+ ...props,
161
+ ...isContextualEditing ? {
162
+ [ATTRIBUTE_COMPONENT_ID]: component._id,
163
+ [ATTRIBUTE_PARAMETER_ID]: parameterId,
164
+ [ATTRIBUTE_PARAMETER_TYPE]: "richText"
165
+ } : {}
166
+ },
167
+ isRichTextValueConsideredEmpty(value) ? /* @__PURE__ */ React12.createElement("p", null, /* @__PURE__ */ React12.createElement("i", null, computedPlaceholder)) : /* @__PURE__ */ React12.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer })
168
+ );
126
169
  });
127
170
 
128
171
  // src/components/UniformSlot.tsx
@@ -153,9 +196,9 @@ var UniformSlot = ({ data, slot, children }) => {
153
196
 
154
197
  // src/components/UniformText.tsx
155
198
  import { PureUniformText } from "@uniformdev/canvas-react/core";
156
- import React12 from "react";
199
+ import React13 from "react";
157
200
  var UniformText = ({ context, ...rest }) => {
158
- return /* @__PURE__ */ React12.createElement(
201
+ return /* @__PURE__ */ React13.createElement(
159
202
  PureUniformText,
160
203
  {
161
204
  ...rest,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-next-rsc",
3
- "version": "19.177.2-alpha.18+f0847a28d4",
3
+ "version": "19.178.2-alpha.25+0f7f53f560",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "scripts": {
6
6
  "build": "tsup",
@@ -14,22 +14,22 @@
14
14
  "exports": {
15
15
  ".": {
16
16
  "require": "./dist/index.js",
17
- "import": "./dist/index.js",
17
+ "import": "./dist/index.esm.js",
18
18
  "types": "./dist/index.d.ts"
19
19
  },
20
20
  "./handler": {
21
21
  "require": "./dist/handler.js",
22
- "import": "./dist/handler.js",
22
+ "import": "./dist/handler.mjs",
23
23
  "types": "./dist/handler.d.ts"
24
24
  },
25
25
  "./config": {
26
26
  "require": "./dist/config.js",
27
- "import": "./dist/config.js",
27
+ "import": "./dist/config.mjs",
28
28
  "types": "./dist/config.d.ts"
29
29
  },
30
30
  "./component": {
31
31
  "require": "./dist/component.js",
32
- "import": "./dist/component.js",
32
+ "import": "./dist/component.mjs",
33
33
  "types": "./dist/component.d.ts"
34
34
  }
35
35
  },
@@ -61,15 +61,15 @@
61
61
  "react-dom": "18.2.0"
62
62
  },
63
63
  "dependencies": {
64
- "@uniformdev/canvas": "19.177.2-alpha.18+f0847a28d4",
65
- "@uniformdev/canvas-next-rsc-client": "^19.177.2-alpha.18+f0847a28d4",
66
- "@uniformdev/canvas-next-rsc-shared": "^19.177.2-alpha.18+f0847a28d4",
67
- "@uniformdev/canvas-react": "19.177.2-alpha.18+f0847a28d4",
68
- "@uniformdev/context": "19.177.2-alpha.18+f0847a28d4",
69
- "@uniformdev/project-map": "19.177.2-alpha.18+f0847a28d4",
70
- "@uniformdev/redirect": "19.177.2-alpha.18+f0847a28d4",
71
- "@uniformdev/richtext": "19.177.2-alpha.18+f0847a28d4",
72
- "@uniformdev/webhooks": "19.177.2-alpha.18+f0847a28d4",
64
+ "@uniformdev/canvas": "19.178.2-alpha.25+0f7f53f560",
65
+ "@uniformdev/canvas-next-rsc-client": "^19.178.2-alpha.25+0f7f53f560",
66
+ "@uniformdev/canvas-next-rsc-shared": "^19.178.2-alpha.25+0f7f53f560",
67
+ "@uniformdev/canvas-react": "19.178.2-alpha.25+0f7f53f560",
68
+ "@uniformdev/context": "19.178.2-alpha.25+0f7f53f560",
69
+ "@uniformdev/project-map": "19.178.2-alpha.25+0f7f53f560",
70
+ "@uniformdev/redirect": "19.178.2-alpha.25+0f7f53f560",
71
+ "@uniformdev/richtext": "19.178.2-alpha.25+0f7f53f560",
72
+ "@uniformdev/webhooks": "19.178.2-alpha.25+0f7f53f560",
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": "f0847a28d4ba83396723d0bb80311184a3143e00"
89
+ "gitHead": "0f7f53f56071a59cee38bf83c9f3bae541846de2"
90
90
  }