luxe-edit 0.1.0 → 0.1.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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
#
|
|
1
|
+
# luxe-edit
|
|
2
2
|
|
|
3
3
|
A beautiful, customizable rich text editor for React built on Lexical with customizable toolbars and floating toolbar support.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install
|
|
8
|
+
npm install luxe-edit
|
|
9
9
|
# or
|
|
10
|
-
yarn add
|
|
10
|
+
yarn add luxe-edit
|
|
11
11
|
# or
|
|
12
|
-
pnpm add
|
|
12
|
+
pnpm add luxe-edit
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Quick Start
|
|
16
16
|
|
|
17
17
|
```tsx
|
|
18
|
-
import { LuxeEditor } from '
|
|
19
|
-
import '
|
|
18
|
+
import { LuxeEditor } from 'luxe-edit';
|
|
19
|
+
import 'luxe-edit/index.css';
|
|
20
20
|
|
|
21
21
|
function App() {
|
|
22
22
|
return (
|
package/package.json
CHANGED