@rizom/site-rizom-ai 0.2.0-alpha.236 → 0.2.0-alpha.238
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 +3 -4
- package/src/brain.tsx +1 -1
- package/src/foundation.tsx +1 -1
- package/src/home.tsx +1 -1
- package/src/layout.tsx +1 -1
- package/src/shared.tsx +1 -1
- package/src/site.ts +4 -6
- package/src/work.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rizom/site-rizom-ai",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.238",
|
|
4
4
|
"description": "Rizom AI site package for hosted Rover deployments",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -17,9 +17,8 @@
|
|
|
17
17
|
"prepack": "publish-manifest prepare"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@rizom/site": "0.2.0-alpha.
|
|
21
|
-
"@rizom/site-rizom": "0.2.0-alpha.
|
|
22
|
-
"@rizom/site-sections": "1.0.0-alpha.232"
|
|
20
|
+
"@rizom/site": "0.2.0-alpha.233",
|
|
21
|
+
"@rizom/site-rizom": "0.2.0-alpha.238"
|
|
23
22
|
},
|
|
24
23
|
"publishConfig": {
|
|
25
24
|
"access": "public"
|
package/src/brain.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @jsxImportSource preact */
|
|
2
2
|
import type { JSX } from "preact";
|
|
3
3
|
import type { SiteSectionGroup } from "@rizom/site";
|
|
4
|
-
import { defineSection, sectionGroup, z } from "@rizom/site
|
|
4
|
+
import { defineSection, sectionGroup, z } from "@rizom/site";
|
|
5
5
|
import { Section, renderHighlightedText } from "@rizom/site-rizom";
|
|
6
6
|
import {
|
|
7
7
|
Band,
|
package/src/foundation.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @jsxImportSource preact */
|
|
2
2
|
import type { JSX } from "preact";
|
|
3
3
|
import type { SiteSectionGroup } from "@rizom/site";
|
|
4
|
-
import { defineSection, sectionGroup, z } from "@rizom/site
|
|
4
|
+
import { defineSection, sectionGroup, z } from "@rizom/site";
|
|
5
5
|
import { Section, renderHighlightedText } from "@rizom/site-rizom";
|
|
6
6
|
import {
|
|
7
7
|
AliveLine,
|
package/src/home.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @jsxImportSource preact */
|
|
2
2
|
import type { JSX } from "preact";
|
|
3
3
|
import type { SiteSectionGroup } from "@rizom/site";
|
|
4
|
-
import { defineSection, sectionGroup, z } from "@rizom/site
|
|
4
|
+
import { defineSection, sectionGroup, z } from "@rizom/site";
|
|
5
5
|
import { Section, renderHighlightedText } from "@rizom/site-rizom";
|
|
6
6
|
import { GrowthDiagram } from "./growth-diagram";
|
|
7
7
|
import {
|
package/src/layout.tsx
CHANGED
|
@@ -365,7 +365,7 @@ function RizomAiChrome({
|
|
|
365
365
|
const face = activeFace(path);
|
|
366
366
|
const umbrella = isHome(path) || orgIndexActive(path) !== null;
|
|
367
367
|
return (
|
|
368
|
-
<RizomFrame
|
|
368
|
+
<RizomFrame>
|
|
369
369
|
{/* xl:pl matches the mockup's 148px left rail (68 + the 80px
|
|
370
370
|
section gutter) so the mycelium has real room to seep. */}
|
|
371
371
|
<div data-room={face} className="relative xl:pl-[68px]">
|
package/src/shared.tsx
CHANGED
package/src/site.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type
|
|
2
|
-
import { createRizomSite } from "@rizom/site-rizom";
|
|
1
|
+
import { createRizomSite, type SitePackage } from "@rizom/site-rizom";
|
|
3
2
|
import { AiLayout } from "./layout";
|
|
4
3
|
import { homeSections } from "./home";
|
|
5
4
|
import { brainSections } from "./brain";
|
|
@@ -7,11 +6,10 @@ import { workSections } from "./work";
|
|
|
7
6
|
import { foundationSections } from "./foundation";
|
|
8
7
|
import { aiRoutes } from "./routes";
|
|
9
8
|
|
|
10
|
-
export const rizomAiSite:
|
|
9
|
+
export const rizomAiSite: SitePackage = createRizomSite({
|
|
11
10
|
packageName: "@rizom/site-rizom-ai",
|
|
12
|
-
//
|
|
13
|
-
//
|
|
14
|
-
// room accents key off data-room, set by the layout.
|
|
11
|
+
// The rev-5 design draws its own motifs (mycelium rail, growth diagram).
|
|
12
|
+
// The theme's room accents key off data-room, set by the layout.
|
|
15
13
|
layout: AiLayout,
|
|
16
14
|
routes: aiRoutes,
|
|
17
15
|
// Every page is authored schema-first (see ./home, ./brain, ./work,
|
package/src/work.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @jsxImportSource preact */
|
|
2
2
|
import type { JSX } from "preact";
|
|
3
3
|
import type { SiteSectionGroup } from "@rizom/site";
|
|
4
|
-
import { defineSection, sectionGroup, z } from "@rizom/site
|
|
4
|
+
import { defineSection, sectionGroup, z } from "@rizom/site";
|
|
5
5
|
import { Section, renderHighlightedText } from "@rizom/site-rizom";
|
|
6
6
|
import {
|
|
7
7
|
Band,
|