@tiptap/core 3.11.0 → 3.11.1
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.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/Mark.ts +1 -1
- package/src/Node.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/core",
|
|
3
3
|
"description": "headless rich text editor",
|
|
4
|
-
"version": "3.11.
|
|
4
|
+
"version": "3.11.1",
|
|
5
5
|
"homepage": "https://tiptap.dev",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tiptap",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"jsx-dev-runtime"
|
|
53
53
|
],
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@tiptap/pm": "^3.11.
|
|
55
|
+
"@tiptap/pm": "^3.11.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
|
-
"@tiptap/pm": "^3.11.
|
|
58
|
+
"@tiptap/pm": "^3.11.1"
|
|
59
59
|
},
|
|
60
60
|
"repository": {
|
|
61
61
|
"type": "git",
|
package/src/Mark.ts
CHANGED
|
@@ -191,7 +191,7 @@ export class Mark<Options = any, Storage = any> extends Extendable<Options, Stor
|
|
|
191
191
|
extend<
|
|
192
192
|
ExtendedOptions = Options,
|
|
193
193
|
ExtendedStorage = Storage,
|
|
194
|
-
ExtendedConfig = MarkConfig<ExtendedOptions, ExtendedStorage>,
|
|
194
|
+
ExtendedConfig extends MarkConfig<ExtendedOptions, ExtendedStorage> = MarkConfig<ExtendedOptions, ExtendedStorage>,
|
|
195
195
|
>(
|
|
196
196
|
extendedConfig?:
|
|
197
197
|
| (() => Partial<ExtendedConfig>)
|
package/src/Node.ts
CHANGED
|
@@ -357,7 +357,7 @@ export class Node<Options = any, Storage = any> extends Extendable<Options, Stor
|
|
|
357
357
|
extend<
|
|
358
358
|
ExtendedOptions = Options,
|
|
359
359
|
ExtendedStorage = Storage,
|
|
360
|
-
ExtendedConfig = NodeConfig<ExtendedOptions, ExtendedStorage>,
|
|
360
|
+
ExtendedConfig extends NodeConfig<ExtendedOptions, ExtendedStorage> = NodeConfig<ExtendedOptions, ExtendedStorage>,
|
|
361
361
|
>(
|
|
362
362
|
extendedConfig?:
|
|
363
363
|
| (() => Partial<ExtendedConfig>)
|