@notectl/core 1.0.2 → 1.0.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/README.md +2 -0
- package/dist/notectl-core.js +8 -8
- package/dist/notectl-core.js.map +1 -1
- package/dist/notectl-core.mjs +630 -625
- package/dist/notectl-core.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,7 @@ Most editors bolt formatting on top of `contenteditable` and hope for the best.
|
|
|
28
28
|
- **Immutable state** — predictable updates, time-travel undo/redo, zero mutation bugs
|
|
29
29
|
- **Transaction system** — atomic, invertible steps with middleware support
|
|
30
30
|
- **Zero framework lock-in** — works with React, Vue, Svelte, Angular, or plain JS
|
|
31
|
+
- **Native Angular integration** — available as [`@notectl/angular`](https://www.npmjs.com/package/@notectl/angular) for idiomatic Angular usage
|
|
31
32
|
- **Tiny dependency footprint** — single runtime dependency (DOMPurify)
|
|
32
33
|
|
|
33
34
|
<br />
|
|
@@ -37,6 +38,7 @@ Check out the [live playground](https://samyssmile.github.io/notectl/playground/
|
|
|
37
38
|
|
|
38
39
|
## Wanna see full working example?
|
|
39
40
|
`examples/vanillajs/` is a great place to see everything in action.
|
|
41
|
+
`examples/angular/` shows how to use notectl in Angular with the `@notectl/angular` package.
|
|
40
42
|
|
|
41
43
|
## Quick Start
|
|
42
44
|
|