@markweave/vue2 0.5.3 → 0.6.0
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/README.md +4 -0
- package/dist/index.js +981 -879
- package/dist/types/MarkweaveEditor.d.ts +8 -1
- package/dist/types/MarkweaveEditor.d.ts.map +1 -1
- package/dist/types/create-editor-extensions.d.ts +3 -4
- package/dist/types/create-editor-extensions.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,3 +38,7 @@ Version 0.5.0 exposes lazy selection snapshots plus explicit selection, block, a
|
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
The callback receives a controller after editor creation and `null` before teardown or recreation. See the full integration guide for `captureSelection`, cumulative streaming, default/headless controls, conflicts, acceptance, and error handling.
|
|
41
|
+
|
|
42
|
+
## Command Registry And Host Extensions
|
|
43
|
+
|
|
44
|
+
Version 0.6.0 adds `:command-groups`, `:commands`, `:builtin-commands`, `:editor-extensions`, `:on-command-controller-change`, and `:on-command-error`. Vue 2 keeps callback props rather than a second emit contract. Registry updates preserve the Editor; Extension schema updates require a keyed replacement. The Vue CLI 4 / Webpack 4 playground verifies this path.
|