markupeditor 0.9.1 → 0.9.3
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/markup-editor.js +1 -1
- package/package.json +3 -4
package/dist/markup-editor.js
CHANGED
|
@@ -242,7 +242,7 @@ const _registry = new Registry();
|
|
|
242
242
|
*
|
|
243
243
|
* @returns {object | null} Object containing {"toolbar": ToolbarConfig, "keymap": KeymapConfig, "behavior": BehaviorConfig}.
|
|
244
244
|
*/
|
|
245
|
-
function activeConfig() {_registry.activeConfig.bind(_registry)()
|
|
245
|
+
function activeConfig() {return _registry.activeConfig.bind(_registry)()}
|
|
246
246
|
|
|
247
247
|
/**
|
|
248
248
|
* Return the active editor's `view`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markupeditor",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "A web component and API for WYSIWYG HTML editing.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wysiwyg",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"crelt": "^1.0.6",
|
|
32
|
+
"express": "^5.1.0",
|
|
32
33
|
"prosemirror-commands": "^1.0.0",
|
|
33
34
|
"prosemirror-dropcursor": "^1.8.1",
|
|
34
35
|
"prosemirror-gapcursor": "^1.3.2",
|
|
@@ -48,7 +49,6 @@
|
|
|
48
49
|
"@eslint/js": "^9.35.0",
|
|
49
50
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
50
51
|
"eslint": "^9.35.0",
|
|
51
|
-
"express": "^5.1.0",
|
|
52
52
|
"jsdoc": "^4.0.5",
|
|
53
53
|
"jsdom": "^27.0.1",
|
|
54
54
|
"modern-jsdoc-template": "^1.0.0",
|
|
@@ -63,8 +63,7 @@
|
|
|
63
63
|
"pretest": "npm run build",
|
|
64
64
|
"docs": "node ./docs/index.js",
|
|
65
65
|
"predocs": "sh predocs.sh && jsdoc -c jsdoc.json",
|
|
66
|
-
"analyze": "cem analyze --config custom-elements-manifest.config.js"
|
|
67
|
-
"publish": "npm run build && npm run predocs && npm run analyze && npm publish --access public"
|
|
66
|
+
"analyze": "cem analyze --config custom-elements-manifest.config.js"
|
|
68
67
|
},
|
|
69
68
|
"customElements": "dist/custom-elements.json"
|
|
70
69
|
}
|