@reacteditor/core 0.0.10 → 0.0.11
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 +7 -7
- package/dist/{Editor-3COFH5WN.mjs → Editor-GK6JTUPD.mjs} +7 -7
- package/dist/{actions-B8_EA7vy.d.mts → actions-C0LX6bI4.d.mts} +1 -0
- package/dist/{actions-B8_EA7vy.d.ts → actions-C0LX6bI4.d.ts} +1 -0
- package/dist/{chunk-LRFRIIKG.mjs → chunk-56I7ST5F.mjs} +1 -1
- package/dist/{chunk-3IP22OOD.mjs → chunk-74TOLW7F.mjs} +1139 -1118
- package/dist/{chunk-IIRJMJFU.mjs → chunk-ERNSJXVF.mjs} +1 -0
- package/dist/{chunk-PUDWMFBH.mjs → chunk-II42EKFK.mjs} +1 -1
- package/dist/{chunk-AD7BMXAA.mjs → chunk-MJJPWASL.mjs} +1 -1
- package/dist/{chunk-BUR5T7IX.mjs → chunk-TGVAC3JP.mjs} +7 -7
- package/dist/{chunk-FT6UFK7G.mjs → chunk-X4EUZIHA.mjs} +1 -1
- package/dist/{chunk-OIFPBVSF.mjs → chunk-XLVEWZWT.mjs} +1 -1
- package/dist/{chunk-BZ4BQZJR.mjs → chunk-YBG2RYVF.mjs} +3 -3
- package/dist/{full-QT5KXRDP.mjs → full-IUPXFMQP.mjs} +6 -6
- package/dist/{index-JoD48fK_.d.mts → index-DMbFEg8G.d.mts} +1 -1
- package/dist/{index-BrHy0cc_.d.ts → index-DmThy7vE.d.ts} +1 -1
- package/dist/index.css +25 -25
- package/dist/index.d.mts +52 -7
- package/dist/index.d.ts +52 -7
- package/dist/index.js +155 -133
- package/dist/index.mjs +9 -9
- package/dist/internal.d.mts +2 -2
- package/dist/internal.d.ts +2 -2
- package/dist/{loaded-GLBLMTBL.mjs → loaded-BT7NIVEO.mjs} +3 -3
- package/dist/{loaded-O4QHGE26.mjs → loaded-HVOKDVC3.mjs} +3 -3
- package/dist/{loaded-R34BR6I5.mjs → loaded-YFYCF5F4.mjs} +3 -3
- package/dist/no-external.css +25 -25
- package/dist/no-external.d.mts +4 -4
- package/dist/no-external.d.ts +4 -4
- package/dist/no-external.js +155 -133
- package/dist/no-external.mjs +9 -9
- package/dist/rsc.d.mts +2 -2
- package/dist/rsc.d.ts +2 -2
- package/dist/rsc.js +1 -0
- package/dist/rsc.mjs +2 -2
- package/dist/{walk-tree-BR2XIZ0W.d.mts → walk-tree-5oDs6qOL.d.mts} +1 -1
- package/dist/{walk-tree-DpUJ9kDx.d.ts → walk-tree-B1q6t5Jp.d.ts} +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ React Editor is an open-source, visual editor for your react components. You can
|
|
|
4
4
|
|
|
5
5
|
React Editor is a fork from [Puck](https://github.com/puckeditor), which is the foundation for this project.
|
|
6
6
|
|
|
7
|
-
React Editor is [licensed under MIT](https://github.com/
|
|
7
|
+
React Editor is [licensed under MIT](https://github.com/reacteditor/editor?tab=MIT-1-ov-file#readme).
|
|
8
8
|
|
|
9
9
|
## Quick start
|
|
10
10
|
|
|
@@ -63,7 +63,7 @@ export function Page() {
|
|
|
63
63
|
|
|
64
64
|
## Recipes
|
|
65
65
|
|
|
66
|
-
Use `create-react-editor` to quickly spin up a a pre-configured app based on our provided [recipes](https://github.com/
|
|
66
|
+
Use `create-react-editor` to quickly spin up a a pre-configured app based on our provided [recipes](https://github.com/reacteditor/editor/tree/main/recipes):
|
|
67
67
|
|
|
68
68
|
```sh
|
|
69
69
|
npx create-react-editor my-app
|
|
@@ -71,15 +71,15 @@ npx create-react-editor my-app
|
|
|
71
71
|
|
|
72
72
|
Available recipes include:
|
|
73
73
|
|
|
74
|
-
- [**next**](https://github.com/
|
|
75
|
-
- [**remix**](https://github.com/
|
|
76
|
-
- [**react-router**](https://github.com/
|
|
74
|
+
- [**next**](https://github.com/reacteditor/editor/tree/main/recipes/next): Next.js example, using App Router and static page generation
|
|
75
|
+
- [**remix**](https://github.com/reacteditor/editor/tree/main/recipes/remix): Remix Run v2 example, using dynamic routes at root-level
|
|
76
|
+
- [**react-router**](https://github.com/reacteditor/editor/tree/main/recipes/react-router): React Router v7 app example, using dynamic routes to create pages at any level
|
|
77
77
|
|
|
78
78
|
## Get support
|
|
79
79
|
|
|
80
|
-
If you have any questions about React Editor, please open a [GitHub issue](https://github.com/
|
|
80
|
+
If you have any questions about React Editor, please open a [GitHub issue](https://github.com/reacteditor/editor/issues).
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
## License
|
|
84
84
|
|
|
85
|
-
[MIT License](https://github.com/
|
|
85
|
+
[MIT License](https://github.com/reacteditor/editor/license.MD)
|
|
@@ -4,18 +4,18 @@ import {
|
|
|
4
4
|
import {
|
|
5
5
|
EditorInner,
|
|
6
6
|
LoadedRichTextMenu
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
7
|
+
} from "./chunk-YBG2RYVF.mjs";
|
|
8
|
+
import "./chunk-TGVAC3JP.mjs";
|
|
9
|
+
import "./chunk-X4EUZIHA.mjs";
|
|
10
10
|
import "./chunk-6QJ2HF4O.mjs";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-XLVEWZWT.mjs";
|
|
12
|
+
import "./chunk-MJJPWASL.mjs";
|
|
13
13
|
import {
|
|
14
14
|
useAppStore,
|
|
15
15
|
useAppStoreApi
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-56I7ST5F.mjs";
|
|
17
17
|
import "./chunk-M4JDRFYB.mjs";
|
|
18
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-ERNSJXVF.mjs";
|
|
19
19
|
import "./chunk-Y2EFNT5P.mjs";
|
|
20
20
|
import "./chunk-JIXMPJZA.mjs";
|
|
21
21
|
import {
|