@dotcms/react 26.9.9-1 → 26.9.9-1-next.2665

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 +10 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -104,9 +104,18 @@ For detailed instructions, please refer to the [dotCMS API Documentation - Read-
104
104
  npm install @dotcms/react@latest
105
105
  ```
106
106
 
107
- This will automatically install the required dependencies:
107
+ You also need to install these packages yourself:
108
108
  - `@dotcms/uve`: Enables interaction with the [Universal Visual Editor](https://dev.dotcms.com/docs/uve-headless-config) for real-time content editing
109
109
  - `@dotcms/client`: Provides the core client functionality for fetching and managing dotCMS data
110
+ - `@dotcms/types`: TypeScript definitions used throughout the API
111
+
112
+ ```bash
113
+ npm install @dotcms/uve @dotcms/client @dotcms/types
114
+ ```
115
+
116
+ > npm 7+ and pnpm install these automatically as peer dependencies alongside `@dotcms/react`.
117
+ > **Yarn Classic (1.x) and npm below v7 do not** — they only print a warning if one is missing,
118
+ > so on those package managers you must add them explicitly as shown above.
110
119
 
111
120
  ### dotCMS Client Configuration
112
121
 
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@dotcms/react",
3
- "version": "26.09.09-01",
3
+ "version": "26.9.9-1-next.2665",
4
4
  "peerDependencies": {
5
5
  "react": ">=18",
6
- "react-dom": ">=18"
6
+ "react-dom": ">=18",
7
+ "@dotcms/uve": "26.9.9-1-next.2665",
8
+ "@dotcms/client": "26.9.9-1-next.2665"
7
9
  },
8
10
  "dependencies": {
9
- "@dotcms/uve": "26.09.09-01",
10
- "@dotcms/client": "26.09.09-01",
11
11
  "@tinymce/tinymce-react": "6.2.1"
12
12
  },
13
13
  "devDependencies": {
14
- "@dotcms/types": "latest"
14
+ "@dotcms/types": "26.9.9-1-next.2665"
15
15
  },
16
16
  "description": "Official React Components library to render a dotCMS page.",
17
17
  "repository": {