@bendyline/docblocks-react 2.2.1 → 2.3.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 +7 -2
- package/THIRD_PARTY_NOTICES.txt +11972 -0
- package/dist/{ExportToolbarControls-2VB43ITO.js → ExportToolbarControls-6MO4NX6H.js} +142 -73
- package/dist/{GitToolbarControl-FW3BZFXV.js → GitToolbarControl-VJVK2B4X.js} +4 -3
- package/dist/{GitUI-GMH3PAYL.js → GitUI-CAKFVKWY.js} +4 -3
- package/dist/chunk-APC4KI4B.js +0 -0
- package/dist/{chunk-BPGEBGAN.js → chunk-JDJVRDOP.js} +23 -0
- package/dist/{chunk-TFMO7EVO.js → chunk-MRUK56JS.js} +23 -4
- package/dist/chunk-VRRL6VTD.js +606 -0
- package/dist/editor.d.ts +12 -1
- package/dist/editor.js +9 -3
- package/dist/index.d.ts +72 -8
- package/dist/index.js +2251 -806
- package/dist/settings/index.d.ts +34 -2
- package/dist/settings/index.js +9 -3
- package/package.json +19 -9
- package/src/styles/docblocks.css +540 -5
- package/dist/chunk-3QSZY74C.js +0 -255
package/README.md
CHANGED
|
@@ -5,10 +5,15 @@ React components for DocBlocks — the complete editor shell (file explorer, wor
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install @bendyline/docblocks-react
|
|
8
|
+
npm install @bendyline/docblocks-react react react-dom
|
|
9
|
+
npm install --save-dev @types/react @types/react-dom
|
|
9
10
|
```
|
|
10
11
|
|
|
11
|
-
**Peer dependencies:** React 18 or 19.
|
|
12
|
+
**Peer dependencies:** React 18 or 19. TypeScript consumers must install the
|
|
13
|
+
matching `@types/react` major (and normally `@types/react-dom`); the React type
|
|
14
|
+
peer is optional so JavaScript-only consumers do not need type packages. The
|
|
15
|
+
DocBlocks core (`@bendyline/docblocks`) and the Squisq editor packages are
|
|
16
|
+
regular dependencies and install automatically.
|
|
12
17
|
|
|
13
18
|
## Usage
|
|
14
19
|
|