react-on-rails-pro 16.4.0 → 16.5.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 +5 -5
- package/lib/ClientSideRenderer.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -83,14 +83,14 @@ Or use the generator for automated setup:
|
|
|
83
83
|
rails generate react_on_rails:install --pro
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
See the [full installation guide](https://
|
|
86
|
+
See the [full installation guide](https://reactonrails.com/docs/pro/installation).
|
|
87
87
|
|
|
88
88
|
## Documentation
|
|
89
89
|
|
|
90
|
-
- [Installation Guide](https://
|
|
91
|
-
- [Configuration Reference](https://
|
|
92
|
-
- [React Server Components Tutorial](https://
|
|
93
|
-
- [React on Rails Pro Overview](https://
|
|
90
|
+
- [Installation Guide](https://reactonrails.com/docs/pro/installation)
|
|
91
|
+
- [Configuration Reference](https://reactonrails.com/docs/configuration/configuration-pro)
|
|
92
|
+
- [React Server Components Tutorial](https://reactonrails.com/docs/pro/react-server-components/tutorial)
|
|
93
|
+
- [React on Rails Pro Overview](https://pro.reactonrails.com/)
|
|
94
94
|
|
|
95
95
|
## License
|
|
96
96
|
|
|
@@ -22,7 +22,7 @@ import * as StoreRegistry from "./StoreRegistry.js";
|
|
|
22
22
|
import * as ComponentRegistry from "./ComponentRegistry.js";
|
|
23
23
|
const REACT_ON_RAILS_STORE_ATTRIBUTE = 'data-js-react-on-rails-store';
|
|
24
24
|
const IMMEDIATE_HYDRATION_PRO_WARNING = "[REACT ON RAILS] The 'immediate_hydration' feature requires the React on Rails Pro gem to be installed on the server. " +
|
|
25
|
-
'Please visit https://
|
|
25
|
+
'Please visit https://pro.reactonrails.com/ for installation details.';
|
|
26
26
|
async function delegateToRenderer(componentObj, props, railsContext, domNodeId, trace) {
|
|
27
27
|
const { name, component, isRenderer } = componentObj;
|
|
28
28
|
if (isRenderer) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-on-rails-pro",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.5.0",
|
|
4
4
|
"description": "React on Rails Pro package with React Server Components support",
|
|
5
5
|
"main": "lib/ReactOnRails.full.js",
|
|
6
6
|
"type": "module",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"./ServerComponentFetchError": "./lib/ServerComponentFetchError.js"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"react-on-rails": "16.
|
|
50
|
+
"react-on-rails": "16.5.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"react": ">= 16",
|