@reckona/mreact-router 0.0.111 → 0.0.112

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reckona/mreact-router",
3
- "version": "0.0.111",
3
+ "version": "0.0.112",
4
4
  "description": "File-system app router, SSR, actions, and deployment adapters for mreact.",
5
5
  "keywords": [
6
6
  "jsx",
@@ -105,20 +105,20 @@
105
105
  },
106
106
  "dependencies": {
107
107
  "typescript": "^6.0.3",
108
- "@reckona/mreact": "0.0.111",
109
- "@reckona/mreact-compat": "0.0.111",
110
- "@reckona/mreact-devtools": "0.0.111",
111
- "@reckona/mreact-query": "0.0.111",
112
- "@reckona/mreact-reactive-core": "0.0.111",
113
- "@reckona/mreact-compiler": "0.0.111",
114
- "@reckona/mreact-reactive-dom": "0.0.111",
115
- "@reckona/mreact-shared": "0.0.111",
116
- "@reckona/mreact-server": "0.0.111"
108
+ "@reckona/mreact-compat": "0.0.112",
109
+ "@reckona/mreact-query": "0.0.112",
110
+ "@reckona/mreact-devtools": "0.0.112",
111
+ "@reckona/mreact-reactive-core": "0.0.112",
112
+ "@reckona/mreact-compiler": "0.0.112",
113
+ "@reckona/mreact": "0.0.112",
114
+ "@reckona/mreact-reactive-dom": "0.0.112",
115
+ "@reckona/mreact-server": "0.0.112",
116
+ "@reckona/mreact-shared": "0.0.112"
117
117
  },
118
118
  "peerDependencies": {
119
119
  "vite": ">=8 <9"
120
120
  },
121
121
  "optionalDependencies": {
122
- "@reckona/mreact-router-native": "0.0.111"
122
+ "@reckona/mreact-router-native": "0.0.112"
123
123
  }
124
124
  }
package/src/build.ts CHANGED
@@ -2969,10 +2969,9 @@ ${shellModules.join("\n")}
2969
2969
  const pageComponent = selectComponent(pageModule, ${JSON.stringify(options.filename)});
2970
2970
  const shells = [${shellDefinitions.join(", ")}];
2971
2971
  export const slots = pageModule.slots;
2972
- export function App(props) {
2972
+ export default function CloudflareStringRouteComponent(props) {
2973
2973
  return renderCloudflareStringRoute(props);
2974
2974
  }
2975
- export default App;
2976
2975
 
2977
2976
  async function renderCloudflareStringRoute(props) {
2978
2977
  const slotHtml = await renderRouteSlots(pageModule.slots, props);
@@ -3142,10 +3141,9 @@ ${shellImports.join("\n")}
3142
3141
  const pageComponent = selectComponent(pageModule, ${JSON.stringify(options.filename)});
3143
3142
  const shells = [${shellDefinitions.join(", ")}];
3144
3143
  export const slots = pageModule.slots;
3145
- export function App(props) {
3144
+ export default function CloudflareStringRouteComponent(props) {
3146
3145
  return renderCloudflareStringRoute(props);
3147
3146
  }
3148
- export default App;
3149
3147
 
3150
3148
  async function renderCloudflareStringRoute(props) {
3151
3149
  const slotHtml = await renderRouteSlots(pageModule.slots, props);