docs: update portal for WRNexusJS 0.2.28

This commit is contained in:
2026-07-14 15:19:59 +05:30
parent ba05f50c42
commit 2eee737b06
77 changed files with 545 additions and 523 deletions
+7 -4
View File
@@ -1,4 +1,4 @@
# WRNexusJS documentation 0.2.27
# WRNexusJS documentation 0.2.28
Status: Private Developer Preview. This site documents 26 release-aligned packages.
@@ -281,7 +281,7 @@ wrnexus eject <component> # copy a Wire UI component's .wrn into app/compone
# Installed package documentation
The following README files and declarations come from the installed private 0.2.27 release.
The following README files and declarations come from the installed private 0.2.28 release.
## @wrnexus/ai
@@ -1287,8 +1287,11 @@ interface PropDecl {
}
interface PageAst {
type: "page";
/** `page` (a route) or `component` (a reusable, prop-driven fragment). */
kind: "page" | "component";
/**
* `page` is a route, `component` is a reusable fragment,
* and `layout` is a reusable page wrapper.
*/
kind: "page" | "component" | "layout";
name: string;
/** Name of the page layout (`app/layouts/<layout>.wrn`), if the page sets one. */
layout?: string;