tiptop-editor 1.0.15 → 1.0.16

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -50,7 +50,7 @@ The Tiptop component takes as props all the props from the `UseEditorOptions` fr
50
50
  Anyway, to use the package, just pass your props to `editorOptions` and you're good to go. Customize the Tiptop component will the props you want, as if you were using *EditorContent and passing props to the editor*.
51
51
  ```tsx
52
52
  <TiptopEditor editorOptions={{
53
- immediatelyRender: false
53
+ immediatelyRender: false // If using SSR (ex. a NextJS project) otherwise you can omit it
54
54
  content: '<p>I am the Tiptop Editor</p>'
55
55
  ... // Other props
56
56
  }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiptop-editor",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Notion-like editor built with Tiptap v3 and HeroUI",
5
5
  "type": "module",
6
6
  "main": "./dist/tiptop-editor.umd.js",