@supernova-studio/client 0.30.1 → 0.32.0

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.
@@ -342,6 +342,9 @@ const newSchema = {
342
342
  id: {
343
343
  default: null,
344
344
  },
345
+ variantId: {
346
+ default: null,
347
+ },
345
348
  },
346
349
  parseDOM: [
347
350
  {
@@ -363,7 +363,7 @@ function parseRichTextAttribute(mark: ProsemirrorMark): PageBlockTextSpanAttribu
363
363
  return { type: "Bold" };
364
364
  case "italic":
365
365
  return { type: "Italic" };
366
- case "strikethrough":
366
+ case "strike":
367
367
  return { type: "Strikethrough" };
368
368
  case "code":
369
369
  return { type: "Code" };