@zipify/wysiwyg 1.0.0-dev.87 → 1.0.0-dev.88
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/wysiwyg.mjs +4 -2
- package/lib/Wysiwyg.vue +1 -1
- package/lib/extensions/list/List.js +3 -1
- package/package.json +1 -1
package/dist/wysiwyg.mjs
CHANGED
|
@@ -23752,7 +23752,9 @@ const List = Node$1.create({
|
|
|
23752
23752
|
baseClass: ""
|
|
23753
23753
|
}),
|
|
23754
23754
|
addAttributes: () => ({
|
|
23755
|
-
bullet: {
|
|
23755
|
+
bullet: {
|
|
23756
|
+
default: { type: ListTypes.DISC }
|
|
23757
|
+
}
|
|
23756
23758
|
}),
|
|
23757
23759
|
parseHTML() {
|
|
23758
23760
|
const HTML_TYPES = {
|
|
@@ -25885,7 +25887,7 @@ const __vue2_script = {
|
|
|
25885
25887
|
},
|
|
25886
25888
|
toolbarPlacement: {
|
|
25887
25889
|
type: String,
|
|
25888
|
-
required:
|
|
25890
|
+
required: false,
|
|
25889
25891
|
default: "top-start"
|
|
25890
25892
|
},
|
|
25891
25893
|
baseListClass: {
|
package/lib/Wysiwyg.vue
CHANGED