@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/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.cjs
CHANGED
|
@@ -1144,7 +1144,7 @@ class Extension {
|
|
|
1144
1144
|
this.child = null;
|
|
1145
1145
|
this.config = {
|
|
1146
1146
|
name: this.name,
|
|
1147
|
-
defaultOptions:
|
|
1147
|
+
defaultOptions: undefined,
|
|
1148
1148
|
};
|
|
1149
1149
|
this.config = {
|
|
1150
1150
|
...this.config,
|
|
@@ -3947,7 +3947,7 @@ class Mark {
|
|
|
3947
3947
|
this.child = null;
|
|
3948
3948
|
this.config = {
|
|
3949
3949
|
name: this.name,
|
|
3950
|
-
defaultOptions:
|
|
3950
|
+
defaultOptions: undefined,
|
|
3951
3951
|
};
|
|
3952
3952
|
this.config = {
|
|
3953
3953
|
...this.config,
|
|
@@ -4030,7 +4030,7 @@ class Node {
|
|
|
4030
4030
|
this.child = null;
|
|
4031
4031
|
this.config = {
|
|
4032
4032
|
name: this.name,
|
|
4033
|
-
defaultOptions:
|
|
4033
|
+
defaultOptions: undefined,
|
|
4034
4034
|
};
|
|
4035
4035
|
this.config = {
|
|
4036
4036
|
...this.config,
|