@tiptap/core 2.2.0-rc.5 → 2.2.0-rc.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tiptap/core",
3
3
  "description": "headless rich text editor",
4
- "version": "2.2.0-rc.5",
4
+ "version": "2.2.0-rc.7",
5
5
  "homepage": "https://tiptap.dev",
6
6
  "keywords": [
7
7
  "tiptap",
@@ -32,7 +32,7 @@
32
32
  "dist"
33
33
  ],
34
34
  "devDependencies": {
35
- "@tiptap/pm": "^2.2.0-rc.5"
35
+ "@tiptap/pm": "^2.2.0-rc.7"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "@tiptap/pm": "^2.0.0"
package/src/Extension.ts CHANGED
@@ -297,7 +297,7 @@ export class Extension<Options = any, Storage = any> {
297
297
 
298
298
  config: ExtensionConfig = {
299
299
  name: this.name,
300
- defaultOptions: {},
300
+ defaultOptions: undefined,
301
301
  }
302
302
 
303
303
  constructor(config: Partial<ExtensionConfig<Options, Storage>> = {}) {
package/src/Mark.ts CHANGED
@@ -429,7 +429,7 @@ export class Mark<Options = any, Storage = any> {
429
429
 
430
430
  config: MarkConfig = {
431
431
  name: this.name,
432
- defaultOptions: {},
432
+ defaultOptions: undefined,
433
433
  }
434
434
 
435
435
  constructor(config: Partial<MarkConfig<Options, Storage>> = {}) {
package/src/Node.ts CHANGED
@@ -538,7 +538,7 @@ export class Node<Options = any, Storage = any> {
538
538
 
539
539
  config: NodeConfig = {
540
540
  name: this.name,
541
- defaultOptions: {},
541
+ defaultOptions: undefined,
542
542
  }
543
543
 
544
544
  constructor(config: Partial<NodeConfig<Options, Storage>> = {}) {