@dotcms/react 0.0.1-beta.40 → 0.0.1-beta.41

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 +5 -1
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -78,9 +78,13 @@ For detailed instructions, please refer to the [dotCMS API Documentation - Read-
78
78
  ### Install Dependencies
79
79
 
80
80
  ```bash
81
- npm install @dotcms/react@next @dotcms/uve@next @dotcms/client@next @dotcms/types@next @tinymce/tinymce-react
81
+ npm install @dotcms/react@next
82
82
  ```
83
83
 
84
+ This will automatically install the required dependencies:
85
+ - `@dotcms/uve`: Enables interaction with the [Universal Visual Editor](https://dev.dotcms.com/docs/uve-headless-config) for real-time content editing
86
+ - `@dotcms/client`: Provides the core client functionality for fetching and managing dotCMS data
87
+
84
88
  ### dotCMS Client Configuration
85
89
 
86
90
  ```typescript
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@dotcms/react",
3
- "version": "0.0.1-beta.40",
3
+ "version": "0.0.1-beta.41",
4
4
  "peerDependencies": {
5
5
  "react": ">=18",
6
- "react-dom": ">=18",
7
- "@dotcms/client": "0.0.1-beta.40",
8
- "@dotcms/uve": "0.0.1-beta.40",
9
- "@tinymce/tinymce-react": "^6.0.0"
6
+ "react-dom": ">=18"
7
+ },
8
+ "dependencies": {
9
+ "@dotcms/uve": "next",
10
+ "@dotcms/client": "next",
11
+ "@tinymce/tinymce-react": "6.2.1"
10
12
  },
11
13
  "devDependencies": {
12
14
  "@dotcms/types": "next"