@blocknote/core 0.13.0 → 0.13.2

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 CHANGED
@@ -34,9 +34,10 @@ See our homepage @ [https://www.blocknotejs.org](https://www.blocknotejs.org/) o
34
34
  [![npm version](https://badge.fury.io/js/%40blocknote%2Freact.svg)](https://badge.fury.io/js/%40blocknote%2Freact)
35
35
 
36
36
  ```typescript
37
- import { BlockNoteView, useCreateBlockNote } from "@blocknote/react";
37
+ import { useCreateBlockNote } from "@blocknote/react";
38
+ import { BlockNoteView } from "@blocknote/mantine";
38
39
  import "@blocknote/core/fonts/inter.css";
39
- import "@blocknote/react/style.css";
40
+ import "@blocknote/mantine/style.css";
40
41
 
41
42
  function App() {
42
43
  const editor = useCreateBlockNote();
@@ -95,6 +96,9 @@ Directory structure:
95
96
  blocknote
96
97
  ├── packages/core - The core of the editor
97
98
  ├── packages/react - The main library for use in React apps
99
+ ├── packages/mantine - Mantine (default) implementation of BlockNote UI
100
+ ├── packages/ariakit - AriaKit implementation of BlockNote UI
101
+ ├── packages/shadcn - ShadCN / Tailwind / Radix implementation of BlockNote UI
98
102
  ├── examples - Example apps
99
103
  ├── playground - App to browse the example apps (https://playground.blocknotejs.org)
100
104
  └── tests - Playwright end to end tests