@tiptap/core 2.2.0-rc.6 → 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/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/Extension.ts +1 -1
- package/src/Mark.ts +1 -1
- package/src/Node.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1140,7 +1140,7 @@ class Extension {
|
|
|
1140
1140
|
this.child = null;
|
|
1141
1141
|
this.config = {
|
|
1142
1142
|
name: this.name,
|
|
1143
|
-
defaultOptions:
|
|
1143
|
+
defaultOptions: undefined,
|
|
1144
1144
|
};
|
|
1145
1145
|
this.config = {
|
|
1146
1146
|
...this.config,
|
|
@@ -3943,7 +3943,7 @@ class Mark {
|
|
|
3943
3943
|
this.child = null;
|
|
3944
3944
|
this.config = {
|
|
3945
3945
|
name: this.name,
|
|
3946
|
-
defaultOptions:
|
|
3946
|
+
defaultOptions: undefined,
|
|
3947
3947
|
};
|
|
3948
3948
|
this.config = {
|
|
3949
3949
|
...this.config,
|
|
@@ -4026,7 +4026,7 @@ class Node {
|
|
|
4026
4026
|
this.child = null;
|
|
4027
4027
|
this.config = {
|
|
4028
4028
|
name: this.name,
|
|
4029
|
-
defaultOptions:
|
|
4029
|
+
defaultOptions: undefined,
|
|
4030
4030
|
};
|
|
4031
4031
|
this.config = {
|
|
4032
4032
|
...this.config,
|