@supernova-studio/client 0.47.41 → 0.47.42
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.js
CHANGED
|
@@ -7051,6 +7051,7 @@ function serializeTableNode(node) {
|
|
|
7051
7051
|
id: node.id,
|
|
7052
7052
|
props: {
|
|
7053
7053
|
image: {
|
|
7054
|
+
caption: node.caption,
|
|
7054
7055
|
value: node.value
|
|
7055
7056
|
}
|
|
7056
7057
|
}
|
|
@@ -9240,7 +9241,8 @@ function parseAsTableNode(prosemirrorNode) {
|
|
|
9240
9241
|
return {
|
|
9241
9242
|
type: "Image",
|
|
9242
9243
|
id,
|
|
9243
|
-
value: imagePropertyValueParseResult.data.value
|
|
9244
|
+
value: imagePropertyValueParseResult.data.value,
|
|
9245
|
+
caption: imagePropertyValueParseResult.data.caption
|
|
9244
9246
|
};
|
|
9245
9247
|
default:
|
|
9246
9248
|
return null;
|