@supernova-studio/client 0.52.7 → 0.52.8
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.d.mts +30 -30
- package/dist/index.d.ts +30 -30
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/yjs/docs-editor/prosemirror-to-blocks.ts +3 -0
package/package.json
CHANGED
|
@@ -21,6 +21,7 @@ import {
|
|
|
21
21
|
PageBlockItemMultiRichTextValue,
|
|
22
22
|
PageBlockItemMultiSelectValue,
|
|
23
23
|
PageBlockItemNumberValue,
|
|
24
|
+
PageBlockItemRichTextEditorValue,
|
|
24
25
|
PageBlockItemRichTextValue,
|
|
25
26
|
PageBlockItemSandboxValue,
|
|
26
27
|
PageBlockItemSingleSelectValue,
|
|
@@ -862,6 +863,8 @@ function valueSchemaForPropertyType(type: PageBlockDefinitionPropertyType) {
|
|
|
862
863
|
return PageBlockItemColorValue;
|
|
863
864
|
case "FigmaComponent":
|
|
864
865
|
return PageBlockItemFigmaComponentValue;
|
|
866
|
+
case "RichTextEditor":
|
|
867
|
+
return PageBlockItemRichTextEditorValue;
|
|
865
868
|
}
|
|
866
869
|
}
|
|
867
870
|
|