@fileverse-dev/ddoc 3.0.89 → 3.0.91
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 -0
- package/dist/index.es.js +78409 -78176
- package/dist/package/hooks/use-tab-editor.d.ts +2 -1
- package/dist/package/types.d.ts +1 -0
- package/dist/package/use-ddoc-editor.d.ts +1 -1
- package/dist/package/utils/handle-print.d.ts +7 -0
- package/dist/package/utils/helpers.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -188,6 +188,7 @@ interface DocumentStyling {
|
|
|
188
188
|
| ------------------- | ------------------------------------------------------------------------ | ----------------------------------------- |
|
|
189
189
|
| `setCharacterCount` | `React.Dispatch<SetStateAction<number>>` | Updates character count |
|
|
190
190
|
| `setWordCount` | `React.Dispatch<SetStateAction<number>>` | Updates word count |
|
|
191
|
+
| `setPageCount` | `React.Dispatch<SetStateAction<number>>` | Updates approx. export page count |
|
|
191
192
|
| `ensResolutionUrl` | `string` | URL for ENS name resolution |
|
|
192
193
|
| `ipfsImageUploadFn` | ` (file: File) => Promise<IpfsImageUploadResponse>` | function for secure image uploads |
|
|
193
194
|
| `ipfsImageFetchFn` | ` (_data: IpfsImageFetchPayload) => Promise<{ url: string;file: File;}>` | function for fetch secure image from IPFS |
|