syntaxic-react-editor 1.0.0
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 +36 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +25950 -0
- package/dist/index.umd.cjs +260 -0
- package/package.json +56 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @syntaxic/react-editor
|
|
2
|
+
|
|
3
|
+
A powerful and customizable Microsoft Word-like editor for React.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Rich text editing experience similar to Microsoft Word.
|
|
8
|
+
- Easy integration with React applications.
|
|
9
|
+
- Modular architecture with support for plugins.
|
|
10
|
+
|
|
11
|
+
## Pro Features
|
|
12
|
+
|
|
13
|
+
Unlock advanced features and premium plugins by purchasing the Pro version.
|
|
14
|
+
|
|
15
|
+
Visit [syntaxic.cloud](https://syntaxic.cloud) to explore our Pro offerings and get specialized support.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install @syntaxic/react-editor
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
```jsx
|
|
26
|
+
import { WordEditor } from "@syntaxic/react-editor";
|
|
27
|
+
import "@syntaxic/react-editor/style.css";
|
|
28
|
+
|
|
29
|
+
function App() {
|
|
30
|
+
return <WordEditor />;
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## License
|
|
35
|
+
|
|
36
|
+
MIT © Syntaxic Labs
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|