@openeditor/tiptap 0.0.41 → 0.0.44

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # `@openeditor/tiptap`
2
+
3
+ DOM-free Tiptap and ProseMirror schema utilities for OpenEditor.
4
+
5
+ Use `defineOpenEditorTiptapNode` to pair a portable core `BlockSpec` with its
6
+ headless Tiptap node definition. React rendering belongs in `@openeditor/react`,
7
+ not in this package.
8
+
9
+ The package also exposes:
10
+
11
+ - `getOpenEditorTiptapSchema` for the actual schema built from an extension set;
12
+ - `validateOpenEditorTiptapDocument` for server-safe ProseMirror validation;
13
+ - `createOpenEditorTiptapSchemaManifest` for a deterministic JSON-safe schema description.
14
+
15
+ Keep schema ownership here or in `@openeditor/embedded-runtime`; presentation
16
+ adapters must consume those definitions rather than redefine them.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openeditor/tiptap",
3
- "version": "0.0.41",
3
+ "version": "0.0.44",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "./package.json": "./package.json"
25
25
  },
26
26
  "dependencies": {
27
- "@openeditor/core": "0.0.41",
27
+ "@openeditor/core": "0.0.44",
28
28
  "@tiptap/core": "3.29.2",
29
29
  "@tiptap/pm": "3.29.2"
30
30
  }