@reckona/mreact-router 0.0.28 → 0.0.29
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 +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -145,7 +145,7 @@ export type LoaderData = InferLoaderData<typeof loader>;
|
|
|
145
145
|
|
|
146
146
|
## Streaming Await
|
|
147
147
|
|
|
148
|
-
Routes can export `stream = true` and use `<Await>` to flush a shell while async work continues. Build output also infers streaming for route modules that render route-local `<Await>` directly or through app-local server components. `placeholder` renders the early stream content, `placeholderAs` chooses the visible placeholder host element for block-level skeletons, and `catch` renders a route-local error branch when the awaited value rejects.
|
|
148
|
+
Routes can export `stream = true` and use `<Await>` to flush a shell while async work continues. Build output also infers streaming for route modules that render route-local `<Await>` directly or through app-local server components. `placeholder` renders the early stream content, `placeholderAs` chooses the visible placeholder host element for block-level skeletons, and `catch` renders a route-local error branch when the awaited value rejects. Router `Link` components can be rendered inside streamed `<Await>` renderers, including mapped list rows in Cloudflare route modules.
|
|
149
149
|
|
|
150
150
|
```tsx
|
|
151
151
|
function FeedList(props) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reckona/mreact-router",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.29",
|
|
4
4
|
"description": "File-system app router, SSR, actions, and deployment adapters for mreact.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jsx",
|
|
@@ -95,17 +95,17 @@
|
|
|
95
95
|
"access": "public"
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
98
|
-
"@reckona/mreact-compat": "0.0.
|
|
99
|
-
"@reckona/mreact-
|
|
100
|
-
"@reckona/mreact-
|
|
101
|
-
"@reckona/mreact-
|
|
102
|
-
"@reckona/mreact-
|
|
103
|
-
"@reckona/mreact-shared": "0.0.
|
|
98
|
+
"@reckona/mreact-compat": "0.0.29",
|
|
99
|
+
"@reckona/mreact-devtools": "0.0.29",
|
|
100
|
+
"@reckona/mreact-query": "0.0.29",
|
|
101
|
+
"@reckona/mreact-server": "0.0.29",
|
|
102
|
+
"@reckona/mreact-compiler": "0.0.29",
|
|
103
|
+
"@reckona/mreact-shared": "0.0.29"
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
106
106
|
"vite": ">=8 <9"
|
|
107
107
|
},
|
|
108
108
|
"optionalDependencies": {
|
|
109
|
-
"@reckona/mreact-router-native": "0.0.
|
|
109
|
+
"@reckona/mreact-router-native": "0.0.29"
|
|
110
110
|
}
|
|
111
111
|
}
|