@jackuait/blok 0.1.1 → 0.2.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 +16 -0
- package/dist/blok-B0X1AdO9.mjs +24673 -0
- package/dist/blok.mjs +1 -2
- package/dist/blok.umd.js +164 -44
- package/dist/index-BKqZbiWi.mjs +82 -0
- package/dist/vendor.LICENSE.txt +74 -107
- package/package.json +61 -57
- package/types/api/block.d.ts +3 -3
- package/types/api/blocks.d.ts +2 -2
- package/types/api/caret.d.ts +3 -3
- package/types/api/events.d.ts +1 -1
- package/types/api/i18n.d.ts +1 -1
- package/types/api/listeners.d.ts +1 -1
- package/types/api/notifier.d.ts +1 -1
- package/types/api/sanitizer.d.ts +1 -1
- package/types/api/saver.d.ts +2 -2
- package/types/api/styles.d.ts +64 -9
- package/types/api/tools.d.ts +1 -1
- package/types/api/ui.d.ts +4 -4
- package/types/block-tunes/block-tune.d.ts +1 -1
- package/types/configs/{editor-config.d.ts → blok-config.d.ts} +8 -8
- package/types/configs/i18n-dictionary.d.ts +3 -3
- package/types/configs/index.d.ts +1 -1
- package/types/configs/notifier.d.ts +98 -0
- package/types/data-formats/output-data.d.ts +1 -1
- package/types/events/block/BlockAdded.ts +1 -1
- package/types/index.d.ts +8 -8
- package/types/tools/adapters/base-tool-adapter.d.ts +2 -2
- package/types/tools/adapters/block-tool-adapter.d.ts +1 -1
- package/types/tools/block-tool.d.ts +1 -1
- package/types/tools/tool-settings.d.ts +1 -1
- package/types/tools/tool.d.ts +1 -2
- package/types/utils/popover/popover-item.d.ts +34 -3
- package/dist/bundle-6e604287.mjs +0 -340
- package/dist/codex-7de6c88e.mjs +0 -15668
package/README.md
CHANGED
|
@@ -21,3 +21,19 @@ Unlike traditional `contenteditable` solutions that treat text as a single HTML
|
|
|
21
21
|
**🔌 Extensible Plugin System**: Easily create custom blocks (e.g., Kanbans, Embeds, Code Blocks) to fit your specific use case.
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
|
+
|
|
25
|
+
Install the package via NPM or Yarn:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install @jackuait/blok
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
or
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
yarn add @jackuait/blok
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Documentation
|
|
38
|
+
|
|
39
|
+
📚 **Documentation is coming soon!** We're working hard to provide comprehensive guides, API references, and examples. Stay tuned for updates.
|