@vistagenic/vista 0.3.4 → 0.3.5

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.
@@ -431,9 +431,8 @@ async function attachFlightPayload(page, flightData, _cwd) {
431
431
  return;
432
432
  page.flightData = flightData;
433
433
  page.html = injectInlineFlightBootstrap(page.html, flightData);
434
- if (page.shellHtml) {
435
- page.shellHtml = injectInlineFlightBootstrap(page.shellHtml, flightData);
436
- }
434
+ // PPR shells are loading-only. Inlining the full-page Flight would leak
435
+ // resumed content (e.g. ppr-page-content) into the shell response.
437
436
  }
438
437
  function getCSSLinks(cwd) {
439
438
  const links = ['<link rel="stylesheet" href="/styles.css" />'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vistagenic/vista",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "The React Framework for Visionaries - Rust-powered SSR with Server Components",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",