anentrypoint-design 0.0.414 → 0.0.415

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.
Files changed (102) hide show
  1. package/dist/247420.js +62 -12
  2. package/dist/app-shell.css +40 -594
  3. package/dist/colors_and_type.css +607 -47
  4. package/dist/index.html +227 -277
  5. package/dist/preview/buttons.html +39 -28
  6. package/dist/preview/colors-core.html +18 -8
  7. package/dist/preview/colors-lore.html +26 -17
  8. package/dist/preview/colors-semantic.html +24 -18
  9. package/dist/preview/dateline.html +6 -5
  10. package/dist/preview/dropzone.html +4 -3
  11. package/dist/preview/file-grid.html +10 -9
  12. package/dist/preview/file-row.html +14 -13
  13. package/dist/preview/file-toolbar.html +4 -3
  14. package/dist/preview/file-viewer.html +4 -3
  15. package/dist/preview/header.html +26 -24
  16. package/dist/preview/icons-unicode.html +8 -5
  17. package/dist/preview/index-row.html +17 -9
  18. package/dist/preview/inputs.html +4 -3
  19. package/dist/preview/manifesto.html +34 -17
  20. package/dist/preview/motion-default.js +77 -57
  21. package/dist/preview/rules.html +4 -3
  22. package/dist/preview/spacing.html +13 -12
  23. package/dist/preview/stamps-lore.html +5 -4
  24. package/dist/preview/stamps.html +4 -3
  25. package/dist/preview/theme-ink.html +7 -6
  26. package/dist/preview/type-display.html +14 -5
  27. package/dist/preview/type-mono.html +6 -5
  28. package/dist/preview/type-prose.html +12 -10
  29. package/dist/preview/type-scale.html +4 -3
  30. package/dist/preview/wordmarks.html +10 -7
  31. package/dist/site/content/globals/site.yaml +5 -3
  32. package/dist/site/content/pages/freddie.yaml +2 -2
  33. package/dist/site/content/pages/home.yaml +55 -55
  34. package/dist/site/theme.mjs +96 -348
  35. package/dist/slides/index.html +13 -13
  36. package/dist/src/bootstrap.js +10 -1
  37. package/dist/src/components/chat.js +43 -195
  38. package/dist/src/components/community.js +18 -166
  39. package/dist/src/components/content.js +30 -210
  40. package/dist/src/components/files-modals.js +14 -106
  41. package/dist/src/components/files.js +15 -116
  42. package/dist/src/components/freddie/helpers.js +53 -8
  43. package/dist/src/components/freddie.js +35 -25
  44. package/dist/src/components/shell.js +16 -114
  45. package/dist/src/components/theme-toggle.js +69 -25
  46. package/dist/src/components.js +92 -13
  47. package/dist/src/deck-stage.js +6 -4
  48. package/dist/src/highlight.js +51 -7
  49. package/dist/src/index.js +58 -12
  50. package/dist/src/kits/os/about-app.js +2 -3
  51. package/dist/src/kits/os/app-panes.css +46 -70
  52. package/dist/src/kits/os/browser-app.js +28 -1
  53. package/dist/src/kits/os/files-app.js +7 -0
  54. package/dist/src/kits/os/freddie/pages-chat.js +90 -75
  55. package/dist/src/kits/os/freddie/pages-core.js +9 -9
  56. package/dist/src/kits/os/freddie/pages-os.js +8 -8
  57. package/dist/src/kits/os/freddie/pages-tools.js +14 -14
  58. package/dist/src/kits/os/freddie/routes.js +21 -19
  59. package/dist/src/kits/os/freddie-dashboard.css +42 -21
  60. package/dist/src/kits/os/freddie-dashboard.js +6 -6
  61. package/dist/src/kits/os/icons.js +38 -16
  62. package/dist/src/kits/os/index.js +11 -0
  63. package/dist/src/kits/os/launcher.css +26 -10
  64. package/dist/src/kits/os/launcher.js +3 -0
  65. package/dist/src/kits/os/shell.js +72 -108
  66. package/dist/src/kits/os/terminal-app.js +1 -1
  67. package/dist/src/kits/os/theme.css +1330 -150
  68. package/dist/src/kits/os/wm.css +68 -15
  69. package/dist/src/kits/os/wm.js +93 -17
  70. package/dist/src/markdown.js +121 -12
  71. package/dist/src/motion.js +18 -2
  72. package/dist/src/page-html.js +62 -134
  73. package/dist/src/theme.js +106 -13
  74. package/dist/src/web-components/ds-chat.js +80 -9
  75. package/dist/ui_kits/aicat/app.js +54 -6
  76. package/dist/ui_kits/aicat/index.html +2 -0
  77. package/dist/ui_kits/blog/index.html +33 -17
  78. package/dist/ui_kits/chat/app.js +90 -22
  79. package/dist/ui_kits/chat/index.html +2 -0
  80. package/dist/ui_kits/community/app.js +86 -24
  81. package/dist/ui_kits/community/index.html +1 -0
  82. package/dist/ui_kits/dashboard/app.js +123 -34
  83. package/dist/ui_kits/dashboard/index.html +1 -0
  84. package/dist/ui_kits/docs/index.html +43 -33
  85. package/dist/ui_kits/error_404/app.js +78 -23
  86. package/dist/ui_kits/file_browser/README.md +1 -1
  87. package/dist/ui_kits/file_browser/app.js +45 -10
  88. package/dist/ui_kits/file_browser/index.html +1 -0
  89. package/dist/ui_kits/gallery/app.js +130 -51
  90. package/dist/ui_kits/homepage/app.js +156 -138
  91. package/dist/ui_kits/project_page/app.js +142 -125
  92. package/dist/ui_kits/project_page/index.html +2 -1
  93. package/dist/ui_kits/search/app.js +52 -15
  94. package/dist/ui_kits/settings/app.js +166 -39
  95. package/dist/ui_kits/signin/app.js +175 -49
  96. package/dist/ui_kits/signin/index.html +1 -0
  97. package/dist/ui_kits/slide_deck/app.js +83 -49
  98. package/dist/ui_kits/system_primer/app.js +57 -40
  99. package/dist/ui_kits/terminal/app.js +160 -43
  100. package/package.json +1 -1
  101. package/src/page-html/client-script.js +40 -11
  102. package/src/page-html/page-styles.js +22 -1
@@ -3,8 +3,8 @@ title: Home
3
3
 
4
4
  hero:
5
5
  heading: "design"
6
- subheading: "247420 design system"
7
- body: "the visual paradigm. layered surfaces, monospace labels, loud content inside quiet chrome. consumed by every 247420 surface."
6
+ subheading: "the 247420 design system"
7
+ body: "acid editorial. oversized display type, one electric green, print texture over glow. every 247420 surface runs on it."
8
8
  badges:
9
9
  - { label: "design-system" }
10
10
  - { label: "tokens" }
@@ -16,50 +16,50 @@ hero:
16
16
  sidebar:
17
17
  fab:
18
18
  label: "open"
19
- glyph: ""
19
+ glyph: "+"
20
20
  href: "./ui_kits/homepage/"
21
21
  bins:
22
- - { glyph: "▣", label: "everything", href: "#all", count: 23, active: true }
23
- - { glyph: "★", label: "starred", href: "#starred", count: 5 }
24
- - { glyph: "◐", label: "shipped", href: "#shipped", count: 12 }
25
- - { glyph: "◌", label: "drafts", href: "#drafts", count: 6 }
22
+ - { label: "everything", href: "#all", count: 23, active: true }
23
+ - { label: "pinned", href: "#kits", count: 5 }
24
+ - { label: "shipped", href: "#previews", count: 12 }
25
+ - { label: "drafts", href: "#decks", count: 6 }
26
26
  labels_group: "labels"
27
27
  labels:
28
- - { glyph: "●", label: "ui kits", href: "#kits", count: 4, color: "var(--panel-accent)" }
29
- - { glyph: "●", label: "decks", href: "#decks", count: 1, color: "var(--mascot,#e0a200)" }
30
- - { glyph: "●", label: "previews", href: "#previews", count: 20, color: "var(--purple,#8856b3)" }
31
- - { glyph: "●", label: "docs", href: "#docs", count: 3, color: "var(--panel-text-3)" }
28
+ - { label: "ui kits", href: "#kits", count: 4 }
29
+ - { label: "decks", href: "#decks", count: 1 }
30
+ - { label: "previews", href: "#previews", count: 20 }
31
+ - { label: "docs", href: "#docs", count: 3 }
32
32
  more_group: "more"
33
33
  more:
34
- - { glyph: "§", label: "readme", href: "https://github.com/AnEntrypoint/design/blob/main/README.md" }
35
- - { glyph: "§", label: "skill", href: "https://github.com/AnEntrypoint/design/blob/main/SKILL.md" }
36
- - { glyph: "⌘", label: "tokens", href: "https://github.com/AnEntrypoint/design/blob/main/colors_and_type.css" }
37
- - { glyph: "↗", label: "source", href: "https://github.com/AnEntrypoint/design" }
34
+ - { label: "readme", href: "https://github.com/AnEntrypoint/design/blob/main/README.md" }
35
+ - { label: "skill", href: "https://github.com/AnEntrypoint/design/blob/main/SKILL.md" }
36
+ - { label: "tokens", href: "https://github.com/AnEntrypoint/design/blob/main/colors_and_type.css" }
37
+ - { label: "source", href: "https://github.com/AnEntrypoint/design" }
38
38
 
39
39
  tabs:
40
- - { glyph: "▣", label: "everything", href: "#all", active: true }
41
- - { glyph: "◎", label: "kits", href: "#kits" }
42
- - { glyph: "▰", label: "decks", href: "#decks" }
43
- - { glyph: "§", label: "previews", href: "#previews" }
40
+ - { label: "everything", href: "#all", active: true }
41
+ - { label: "kits", href: "#kits" }
42
+ - { label: "decks", href: "#decks" }
43
+ - { label: "previews", href: "#previews" }
44
44
 
45
45
  kits:
46
46
  heading: "ui kits"
47
47
  count: "14 surfaces"
48
48
  items:
49
49
  - { code: "01", title: "homepage", sub: "marquee + works grid", desc: "editorial banner over a quiet shell", href: "./ui_kits/homepage/" }
50
- - { code: "02", title: "project page", sub: "hero · receipt · install · changelog", desc: "shippable case-study template", href: "./ui_kits/project_page/" }
50
+ - { code: "02", title: "project page", sub: "hero receipt install changelog", desc: "shippable case-study template", href: "./ui_kits/project_page/" }
51
51
  - { code: "03", title: "docs", sub: "long-form prose chrome", desc: "sidebar nav, mono headings, code blocks", href: "./ui_kits/docs/" }
52
52
  - { code: "04", title: "blog", sub: "dated index + reading view", desc: "typographic, no clutter", href: "./ui_kits/blog/" }
53
53
  - { code: "05", title: "chat", sub: "message thread + composer", desc: "pill bubbles, monospace timestamps, room sidebar", href: "./ui_kits/chat/" }
54
54
  - { code: "06", title: "aicat", sub: "ai assistant with cat persona", desc: "ascii portrait, thinking dots, mood-swapping face", href: "./ui_kits/aicat/" }
55
- - { code: "07", title: "file browser", sub: "rails by file type · drop · preview", desc: "static demo wired to fsbrowse — every file-row primitive in one surface", href: "./ui_kits/file_browser/" }
56
- - { code: "08", title: "dashboard", sub: "kpis · tables · receipts · changelog", desc: "every content primitive in one operations surface", href: "./ui_kits/dashboard/" }
57
- - { code: "09", title: "terminal", sub: "cli prompt · command lines · log view", desc: "five line kinds cmt cmd out ok warn over a tonal panel", href: "./ui_kits/terminal/" }
58
- - { code: "10", title: "settings", sub: "sectioned forms · toggles · save bar", desc: "every input primitive — fields, segmented buttons, danger panel", href: "./ui_kits/settings/" }
59
- - { code: "11", title: "signin", sub: "auth · providers · magic link", desc: "narrow shell + tone-on-tone form, no shadows, no spinners", href: "./ui_kits/signin/" }
60
- - { code: "12", title: "search", sub: "topbar query · faceted filters · rows", desc: "ranked results reuse the same RowLink primitive every list does", href: "./ui_kits/search/" }
61
- - { code: "13", title: "404", sub: "empty-state hero · suggested routes", desc: "narrow shell, oversized mono code, three CTAs", href: "./ui_kits/error_404/" }
62
- - { code: "14", title: "gallery", sub: "visual grid · tonal cards · lightbox", desc: "tiles share the panel tokens; lightbox reuses the same surface", href: "./ui_kits/gallery/" }
55
+ - { code: "07", title: "file browser", sub: "rails by file type drop preview", desc: "static demo wired to fsbrowse — every file-row primitive in one surface", href: "./ui_kits/file_browser/" }
56
+ - { code: "08", title: "dashboard", sub: "kpis tables receipts changelog", desc: "every content primitive in one operations surface", href: "./ui_kits/dashboard/" }
57
+ - { code: "09", title: "terminal", sub: "cli prompt command lines log view", desc: "five line kinds (cmt cmd out ok warn) over a tonal panel", href: "./ui_kits/terminal/" }
58
+ - { code: "10", title: "settings", sub: "sectioned forms toggles save bar", desc: "every input primitive — fields, segmented buttons, danger panel", href: "./ui_kits/settings/" }
59
+ - { code: "11", title: "signin", sub: "auth providers magic link", desc: "narrow shell + tone-on-tone form, no shadows, no spinners", href: "./ui_kits/signin/" }
60
+ - { code: "12", title: "search", sub: "topbar query faceted filters rows", desc: "ranked results reuse the same RowLink primitive every list does", href: "./ui_kits/search/" }
61
+ - { code: "13", title: "404", sub: "empty-state hero suggested routes", desc: "narrow shell, oversized mono code, three CTAs", href: "./ui_kits/error_404/" }
62
+ - { code: "14", title: "gallery", sub: "visual grid tonal cards lightbox", desc: "tiles share the panel tokens; lightbox reuses the same surface", href: "./ui_kits/gallery/" }
63
63
 
64
64
  decks:
65
65
  heading: "decks"
@@ -70,7 +70,7 @@ docs:
70
70
  heading: "docs"
71
71
  items:
72
72
  - { code: "md", title: "readme", sub: "overview, manifesto, conventions", desc: "start here", href: "https://github.com/AnEntrypoint/design/blob/main/README.md" }
73
- - { code: "md", title: "skill", sub: "authoring rules for the agent", desc: "editorial · zine · surface modes", href: "https://github.com/AnEntrypoint/design/blob/main/SKILL.md" }
73
+ - { code: "md", title: "skill", sub: "authoring rules for the agent", desc: "editorial zine surface modes", href: "https://github.com/AnEntrypoint/design/blob/main/SKILL.md" }
74
74
  - { code: "css", title: "tokens", sub: "colors, type, panel surface tokens", desc: "canonical source of truth", href: "https://github.com/AnEntrypoint/design/blob/main/colors_and_type.css" }
75
75
 
76
76
  previews:
@@ -107,13 +107,13 @@ file_browser:
107
107
  heading: "file browser"
108
108
  count: "primitives"
109
109
  items:
110
- - { code: "fb", title: "file_browser kit", sub: "drop, list, preview, dialogs", desc: "the full surface, working with mock data", href: "./ui_kits/file_browser/", cta: "open kit" }
111
- - { code: "fb", title: "FileRow", sub: "rail · icon · name · meta", desc: "data-file-type drives the rail color — never apply rail-* manually", href: "./preview/file-row.html", cta: "preview" }
112
- - { code: "fb", title: "FileGrid", sub: "stack of rows in a panel", desc: "directories sort first; selected row gets the mint .active tone", href: "./preview/file-grid.html", cta: "preview" }
113
- - { code: "fb", title: "DropZone", sub: "tonal upload target", desc: "swap to --panel-select on dragover; preventDefault on document, not just zone", href: "./preview/dropzone.html", cta: "preview" }
114
- - { code: "fb", title: "FileViewer", sub: "modal preview · keyed head", desc: "head + body both carry data-file-type so rails propagate inside the modal", href: "./preview/file-viewer.html", cta: "preview" }
115
- - { code: "fb", title: "FileToolbar", sub: "actions · breadcrumb · upload", desc: "left-aligned actions, right-aligned count; UploadProgress sits underneath", href: "./preview/file-toolbar.html", cta: "preview" }
116
- - { code: "fb", title: "fsbrowse", sub: "Express + busboy backend", desc: "canonical real-world wiring — same SDK, real filesystem operations", href: "https://github.com/AnEntrypoint/fsbrowse", cta: "source" }
110
+ - { code: "fb", title: "file_browser kit", sub: "drop, list, preview, dialogs", desc: "the full surface, working with mock data", href: "./ui_kits/file_browser/", cta: "open kit" }
111
+ - { code: "fb", title: "FileRow", sub: "rail icon name meta", desc: "data-file-type drives the rail color — never apply rail-* manually", href: "./preview/file-row.html", cta: "preview" }
112
+ - { code: "fb", title: "FileGrid", sub: "stack of rows in a panel", desc: "directories sort first; selected row gets the mint .active tone", href: "./preview/file-grid.html", cta: "preview" }
113
+ - { code: "fb", title: "DropZone", sub: "tonal upload target", desc: "swap to --panel-select on dragover; preventDefault on document, not just zone", href: "./preview/dropzone.html", cta: "preview" }
114
+ - { code: "fb", title: "FileViewer", sub: "modal preview keyed head", desc: "head + body both carry data-file-type so rails propagate inside the modal", href: "./preview/file-viewer.html", cta: "preview" }
115
+ - { code: "fb", title: "FileToolbar", sub: "actions breadcrumb upload", desc: "left-aligned actions, right-aligned count; UploadProgress sits underneath", href: "./preview/file-toolbar.html", cta: "preview" }
116
+ - { code: "fb", title: "fsbrowse", sub: "Express + busboy backend", desc: "canonical real-world wiring — same SDK, real filesystem operations", href: "https://github.com/AnEntrypoint/fsbrowse", cta: "source" }
117
117
 
118
118
  quickstart:
119
119
  heading: "quick start"
@@ -127,31 +127,31 @@ desktop_os:
127
127
  heading: "desktop os shell"
128
128
  count: "in-page wm"
129
129
  items:
130
- - { code: "os", title: "createDesktopShell", sub: "menubar · apps launcher · taskbar · window manager", desc: "in-page desktop OS chrome — mount any app registry into a draggable wm", href: "https://github.com/AnEntrypoint/design/blob/main/src/desktop/shell.js", cta: "shell.js" }
131
- - { code: "os", title: "icons set", sub: "svg glyphs for menubar + taskbar", desc: "home, apps, search, settings — used by the shell and exposed for apps", href: "https://github.com/AnEntrypoint/design/blob/main/src/desktop/icons.js", cta: "icons.js" }
132
- - { code: "os", title: "theme.css", sub: "os chrome tokens · menubar · launcher · wm", desc: "scoped css module loaded by the shell — keeps desktop visuals isolated", href: "https://github.com/AnEntrypoint/design/blob/main/src/desktop/theme.css", cta: "theme.css" }
133
- - { code: "os", title: "import path", sub: "anentrypoint-design/desktop", desc: "subpath export; no bundler needed — pulls icons + createDesktopShell", href: "https://github.com/AnEntrypoint/design/blob/main/package.json", cta: "exports" }
130
+ - { code: "os", title: "createDesktopShell", sub: "menubar apps launcher taskbar window manager", desc: "in-page desktop OS chrome — mount any app registry into a draggable wm", href: "https://github.com/AnEntrypoint/design/blob/main/src/desktop/shell.js", cta: "shell.js" }
131
+ - { code: "os", title: "icons set", sub: "svg glyphs for menubar + taskbar", desc: "home, apps, search, settings — used by the shell and exposed for apps", href: "https://github.com/AnEntrypoint/design/blob/main/src/desktop/icons.js", cta: "icons.js" }
132
+ - { code: "os", title: "theme.css", sub: "os chrome tokens menubar launcher wm", desc: "scoped css module loaded by the shell — keeps desktop visuals isolated", href: "https://github.com/AnEntrypoint/design/blob/main/src/desktop/theme.css", cta: "theme.css" }
133
+ - { code: "os", title: "import path", sub: "anentrypoint-design/desktop", desc: "subpath export; no bundler needed — pulls icons + createDesktopShell", href: "https://github.com/AnEntrypoint/design/blob/main/package.json", cta: "exports" }
134
134
 
135
135
  web_components:
136
136
  heading: "web components"
137
137
  count: "1 element"
138
138
  items:
139
- - { code: "wc", title: "<ds-chat>", sub: "auto-registers when the sdk loads in a browser", desc: "set el.messages = [...] or pass json via attribute; listen for 'send' event", href: "https://github.com/AnEntrypoint/design/blob/main/src/web-components/ds-chat.js", cta: "ds-chat.js" }
140
- - { code: "wc", title: "registerChatElement", sub: "manual register helper", desc: "exported from the sdk root for ssr / late-mount when customElements is gated", href: "https://github.com/AnEntrypoint/design/blob/main/src/index.js", cta: "source" }
139
+ - { code: "wc", title: "<ds-chat>", sub: "auto-registers when the sdk loads in a browser", desc: "set el.messages = [...] or pass json via attribute; listen for 'send' event", href: "https://github.com/AnEntrypoint/design/blob/main/src/web-components/ds-chat.js", cta: "ds-chat.js" }
140
+ - { code: "wc", title: "registerChatElement", sub: "manual register helper", desc: "exported from the sdk root for ssr / late-mount when customElements is gated", href: "https://github.com/AnEntrypoint/design/blob/main/src/index.js", cta: "source" }
141
141
 
142
142
  api_exports:
143
143
  heading: "public api"
144
144
  count: "sdk surface"
145
145
  items:
146
- - { code: "api", title: "h / applyDiff", sub: "webjsx createElement + diff", desc: "build vnodes with h(), render with applyDiff(root, [vnode]) — no jsx pragma needed", href: "https://github.com/AnEntrypoint/design/blob/main/src/index.js", cta: "index.js" }
147
- - { code: "api", title: "installStyles / scope", sub: "ds-247420 css scope + bootstrap", desc: "installStyles() injects the prefixed css; scope = '.ds-247420' for selector composition", href: "https://github.com/AnEntrypoint/design/blob/main/src/styles.js", cta: "styles.js" }
148
- - { code: "api", title: "loadCss", sub: "fetch the bundled css string", desc: "useful for shadow roots or custom style injection paths", href: "https://github.com/AnEntrypoint/design/blob/main/src/styles.js", cta: "styles.js" }
149
- - { code: "api", title: "mount / mountKit", sub: "ds shell + ui_kit bootstrap", desc: "mount(root, viewFn) wires applyDiff + motion; mountKit({root,view,screen}) wires a kit", href: "https://github.com/AnEntrypoint/design/blob/main/src/bootstrap.js", cta: "bootstrap.js" }
150
- - { code: "api", title: "registerDeckStage / getDeckStage", sub: "16:9 deck stage api", desc: "register custom deck stages and fetch the active stage for slide transitions", href: "https://github.com/AnEntrypoint/design/blob/main/src/deck-stage.js", cta: "deck-stage.js" }
151
- - { code: "api", title: "renderMarkdown", sub: "marked v15 + dompurify lazy stack", desc: "lazy-loads marked + dompurify from jsdelivr; only xss gate for chat html", href: "https://github.com/AnEntrypoint/design/blob/main/src/markdown.js", cta: "markdown.js" }
152
- - { code: "api", title: "ensurePrism / highlightAllUnder", sub: "prism core + per-language", desc: "injects prism on first use; CodeNode ref-callback highlights inside any subtree", href: "https://github.com/AnEntrypoint/design/blob/main/src/highlight.js", cta: "highlight.js" }
153
- - { code: "api", title: "renderPageHtml", sub: "static page html template", desc: "shared head/body wrapper for kit pages — meta, importmap, ds-247420 scope", href: "https://github.com/AnEntrypoint/design/blob/main/src/page-html.js", cta: "page-html.js" }
154
- - { code: "api", title: "components / motion / debug", sub: "namespaces from the default export", desc: "components.* are the C.* primitives; motion.animateTree, debug.window.__debug registry", href: "https://github.com/AnEntrypoint/design/blob/main/src/components.js", cta: "components.js" }
146
+ - { code: "api", title: "h / applyDiff", sub: "webjsx createElement + diff", desc: "build vnodes with h(), render with applyDiff(root, [vnode]) — no jsx pragma needed", href: "https://github.com/AnEntrypoint/design/blob/main/src/index.js", cta: "index.js" }
147
+ - { code: "api", title: "installStyles / scope", sub: "ds-247420 css scope + bootstrap", desc: "installStyles() injects the prefixed css; scope = '.ds-247420' for selector composition", href: "https://github.com/AnEntrypoint/design/blob/main/src/styles.js", cta: "styles.js" }
148
+ - { code: "api", title: "loadCss", sub: "fetch the bundled css string", desc: "useful for shadow roots or custom style injection paths", href: "https://github.com/AnEntrypoint/design/blob/main/src/styles.js", cta: "styles.js" }
149
+ - { code: "api", title: "mount / mountKit", sub: "ds shell + ui_kit bootstrap", desc: "mount(root, viewFn) wires applyDiff + motion; mountKit({root,view,screen}) wires a kit", href: "https://github.com/AnEntrypoint/design/blob/main/src/bootstrap.js", cta: "bootstrap.js" }
150
+ - { code: "api", title: "registerDeckStage / getDeckStage", sub: "16:9 deck stage api", desc: "register custom deck stages and fetch the active stage for slide transitions", href: "https://github.com/AnEntrypoint/design/blob/main/src/deck-stage.js", cta: "deck-stage.js" }
151
+ - { code: "api", title: "renderMarkdown", sub: "marked v15 + dompurify lazy stack", desc: "lazy-loads marked + dompurify from jsdelivr; only xss gate for chat html", href: "https://github.com/AnEntrypoint/design/blob/main/src/markdown.js", cta: "markdown.js" }
152
+ - { code: "api", title: "ensurePrism / highlightAllUnder", sub: "prism core + per-language", desc: "injects prism on first use; CodeNode ref-callback highlights inside any subtree", href: "https://github.com/AnEntrypoint/design/blob/main/src/highlight.js", cta: "highlight.js" }
153
+ - { code: "api", title: "renderPageHtml", sub: "static page html template", desc: "shared head/body wrapper for kit pages — meta, importmap, ds-247420 scope", href: "https://github.com/AnEntrypoint/design/blob/main/src/page-html.js", cta: "page-html.js" }
154
+ - { code: "api", title: "components / motion / debug", sub: "namespaces from the default export", desc: "components.* are the C.* primitives; motion.animateTree, debug.window.__debug registry", href: "https://github.com/AnEntrypoint/design/blob/main/src/components.js", cta: "components.js" }
155
155
 
156
156
  features:
157
157
  heading: "why design"
@@ -183,8 +183,8 @@ examples:
183
183
 
184
184
  status_left:
185
185
  - "main"
186
- - "utf-8"
187
- - "lf"
186
+ - "utf-8"
187
+ - "lf"
188
188
  status_right:
189
- - "247420 / mmxxvi"
190
- - "probably emerging"
189
+ - "247420 · mmxxvi"
190
+ - "probably emerging"