@supernova-studio/client 0.4.4 → 0.4.5
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 +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/docs-editor/prosemirror/schema.ts +6 -0
package/package.json
CHANGED
|
@@ -144,6 +144,9 @@ const newSchema = {
|
|
|
144
144
|
content: "(paragraph|image)+",
|
|
145
145
|
isolating: true,
|
|
146
146
|
attrs: {
|
|
147
|
+
id: {
|
|
148
|
+
default: null,
|
|
149
|
+
},
|
|
147
150
|
textAlign: {
|
|
148
151
|
default: "left",
|
|
149
152
|
},
|
|
@@ -204,6 +207,9 @@ const newSchema = {
|
|
|
204
207
|
content: "(paragraph|image)+",
|
|
205
208
|
isolating: true,
|
|
206
209
|
attrs: {
|
|
210
|
+
id: {
|
|
211
|
+
default: null,
|
|
212
|
+
},
|
|
207
213
|
textAlign: {
|
|
208
214
|
default: "left",
|
|
209
215
|
},
|