@fileverse-dev/ddoc 3.0.55-patch-6 → 3.0.55-pill-1
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 +1 -5
- package/dist/index.es.js +39062 -41770
- package/dist/package/components/editor-toolbar.d.ts +1 -6
- package/dist/package/components/editor-utils.d.ts +2 -2
- package/dist/package/components/import-export-button.d.ts +1 -8
- package/dist/package/components/inline-comment/context/comment-context.d.ts +1 -1
- package/dist/package/components/inline-comment/context/types.d.ts +0 -2
- package/dist/package/components/toc/document-outline.d.ts +1 -1
- package/dist/package/components/toc/types.d.ts +2 -25
- package/dist/package/extensions/comment/comment.d.ts +0 -1
- package/dist/package/sync-local/useSyncMachine.d.ts +2 -1
- package/dist/package/types.d.ts +3 -12
- package/dist/package/use-ddoc-editor.d.ts +12 -29
- package/dist/style.css +1 -1
- package/package.json +2 -6
- package/dist/package/components/export-modal.d.ts +0 -22
- package/dist/package/components/preview-export-trigger.d.ts +0 -24
- package/dist/package/components/tabs/confirm-delete-modal.d.ts +0 -19
- package/dist/package/components/tabs/document-mobile-tab-panel.d.ts +0 -27
- package/dist/package/components/tabs/document-tabs-sidebar.d.ts +0 -60
- package/dist/package/components/tabs/tab-emoji-picker.d.ts +0 -16
- package/dist/package/components/tabs/tab-item.d.ts +0 -58
- package/dist/package/components/tabs/utils/tab-utils.d.ts +0 -21
- package/dist/package/components/toc/document-outline-toc-panel.d.ts +0 -5
- package/dist/package/components/toc/memorized-toc.d.ts +0 -3
- package/dist/package/hooks/use-ddoc-export.d.ts +0 -24
- package/dist/package/hooks/use-tab-editor.d.ts +0 -62
- package/dist/package/hooks/use-tab-manager.d.ts +0 -32
- package/dist/package/hooks/use-tab-metadata-history.d.ts +0 -14
- package/dist/package/hooks/use-yjs-setup.d.ts +0 -27
package/README.md
CHANGED
|
@@ -32,19 +32,15 @@ import '@fileverse-dev/ddoc/styles'; // in App.jsx/App.tsx
|
|
|
32
32
|
This package requires the following peer dependencies to be installed in your project:
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
npm install @
|
|
35
|
+
npm install @fileverse/ui @fileverse/crypto viem framer-motion
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
| Package | Version |
|
|
39
39
|
| --- | --- |
|
|
40
|
-
| `@dnd-kit/core` | `>=6.3.1` |
|
|
41
|
-
| `@dnd-kit/sortable` | `>=10.0.0` |
|
|
42
|
-
| `@dnd-kit/utilities` | `>=3.2.2` |
|
|
43
40
|
| `@fileverse/ui` | `>=5.0.0` |
|
|
44
41
|
| `@fileverse/crypto` | `>=0.0.21` |
|
|
45
42
|
| `viem` | `>=2.13.8` |
|
|
46
43
|
| `framer-motion` | `>=11.2.10` |
|
|
47
|
-
| `frimousse` | `>=0.3.0` |
|
|
48
44
|
|
|
49
45
|
These are externalized from the bundle to avoid duplication when your app already uses them. If you don't have them installed, npm (v7+) will auto-install them for you.
|
|
50
46
|
|