noecosystem-design 0.1.0

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 (653) hide show
  1. package/.editorconfig +12 -0
  2. package/.github/CODEOWNERS +10 -0
  3. package/.github/dependabot.yml +12 -0
  4. package/.github/pull_request_template.md +17 -0
  5. package/.github/workflows/ci.yml +173 -0
  6. package/.github/workflows/security.yml +40 -0
  7. package/.mcp.json +8 -0
  8. package/.node-version +1 -0
  9. package/AGENTS.md +62 -0
  10. package/CONTRIBUTING.md +9 -0
  11. package/README.md +48 -0
  12. package/SECURITY.md +7 -0
  13. package/apps/showcase/index.html +28 -0
  14. package/apps/showcase/package.json +30 -0
  15. package/apps/showcase/src/app.css +8 -0
  16. package/apps/showcase/src/app.tsx +10 -0
  17. package/apps/showcase/src/catalog/agent-composer-preview.tsx +17 -0
  18. package/apps/showcase/src/catalog/catalog-index.tsx +2676 -0
  19. package/apps/showcase/src/catalog/catalog-shell.browser.test.tsx +73 -0
  20. package/apps/showcase/src/catalog/catalog-shell.tsx +506 -0
  21. package/apps/showcase/src/main.tsx +17 -0
  22. package/apps/showcase/tsconfig.json +11 -0
  23. package/apps/showcase/vite.config.ts +15 -0
  24. package/apps/storybook/.storybook/main.ts +21 -0
  25. package/apps/storybook/.storybook/preview.tsx +87 -0
  26. package/apps/storybook/.storybook/vitest.setup.ts +26 -0
  27. package/apps/storybook/README.md +5 -0
  28. package/apps/storybook/package.json +31 -0
  29. package/apps/storybook/stories/AgentStates.stories.tsx +72 -0
  30. package/apps/storybook/stories/Bidi.stories.tsx +31 -0
  31. package/apps/storybook/stories/Button.stories.tsx +19 -0
  32. package/apps/storybook/stories/Surfaces.stories.tsx +28 -0
  33. package/apps/storybook/stories/catalog/about-page.stories.tsx +18 -0
  34. package/apps/storybook/stories/catalog/activity-feed.stories.tsx +50 -0
  35. package/apps/storybook/stories/catalog/activity-gauge.stories.tsx +18 -0
  36. package/apps/storybook/stories/catalog/agent-composer.stories.tsx +49 -0
  37. package/apps/storybook/stories/catalog/agent-message.stories.tsx +37 -0
  38. package/apps/storybook/stories/catalog/agent-plan.stories.tsx +35 -0
  39. package/apps/storybook/stories/catalog/agent-workspace.stories.tsx +60 -0
  40. package/apps/storybook/stories/catalog/alert.stories.tsx +41 -0
  41. package/apps/storybook/stories/catalog/app-frame.stories.tsx +47 -0
  42. package/apps/storybook/stories/catalog/approval-request.stories.tsx +30 -0
  43. package/apps/storybook/stories/catalog/avatar.stories.tsx +18 -0
  44. package/apps/storybook/stories/catalog/badge-group.stories.tsx +18 -0
  45. package/apps/storybook/stories/catalog/badge.stories.tsx +18 -0
  46. package/apps/storybook/stories/catalog/banner.stories.tsx +18 -0
  47. package/apps/storybook/stories/catalog/bidi-text.stories.tsx +47 -0
  48. package/apps/storybook/stories/catalog/blog-index-page.stories.tsx +18 -0
  49. package/apps/storybook/stories/catalog/blog-post-page.stories.tsx +18 -0
  50. package/apps/storybook/stories/catalog/blog-section.stories.tsx +18 -0
  51. package/apps/storybook/stories/catalog/bottom-navigation.stories.tsx +27 -0
  52. package/apps/storybook/stories/catalog/button-group.stories.tsx +18 -0
  53. package/apps/storybook/stories/catalog/button.stories.tsx +27 -0
  54. package/apps/storybook/stories/catalog/calendar.stories.tsx +47 -0
  55. package/apps/storybook/stories/catalog/card.stories.tsx +40 -0
  56. package/apps/storybook/stories/catalog/careers-section.stories.tsx +18 -0
  57. package/apps/storybook/stories/catalog/carousel.stories.tsx +18 -0
  58. package/apps/storybook/stories/catalog/chart-frame.stories.tsx +34 -0
  59. package/apps/storybook/stories/catalog/chart.stories.tsx +43 -0
  60. package/apps/storybook/stories/catalog/checkbox.stories.tsx +18 -0
  61. package/apps/storybook/stories/catalog/code-and-terminal.stories.tsx +39 -0
  62. package/apps/storybook/stories/catalog/color-picker.stories.tsx +18 -0
  63. package/apps/storybook/stories/catalog/command-menu.stories.tsx +18 -0
  64. package/apps/storybook/stories/catalog/contact-page.stories.tsx +18 -0
  65. package/apps/storybook/stories/catalog/contact-section.stories.tsx +18 -0
  66. package/apps/storybook/stories/catalog/content-divider.stories.tsx +18 -0
  67. package/apps/storybook/stories/catalog/content-section.stories.tsx +18 -0
  68. package/apps/storybook/stories/catalog/context-menu.stories.tsx +66 -0
  69. package/apps/storybook/stories/catalog/credit-card.stories.tsx +18 -0
  70. package/apps/storybook/stories/catalog/cta-section.stories.tsx +18 -0
  71. package/apps/storybook/stories/catalog/dashboard-01.stories.tsx +28 -0
  72. package/apps/storybook/stories/catalog/dashboard-02.stories.tsx +28 -0
  73. package/apps/storybook/stories/catalog/dashboard-shell.stories.tsx +65 -0
  74. package/apps/storybook/stories/catalog/data-list.stories.tsx +37 -0
  75. package/apps/storybook/stories/catalog/data-table.stories.tsx +51 -0
  76. package/apps/storybook/stories/catalog/date-picker.stories.tsx +31 -0
  77. package/apps/storybook/stories/catalog/dialog.stories.tsx +68 -0
  78. package/apps/storybook/stories/catalog/direction-provider.stories.tsx +36 -0
  79. package/apps/storybook/stories/catalog/drawer.stories.tsx +58 -0
  80. package/apps/storybook/stories/catalog/dropdown.stories.tsx +67 -0
  81. package/apps/storybook/stories/catalog/email-template.stories.tsx +18 -0
  82. package/apps/storybook/stories/catalog/empty-state.stories.tsx +19 -0
  83. package/apps/storybook/stories/catalog/error-state.stories.tsx +19 -0
  84. package/apps/storybook/stories/catalog/fab.stories.tsx +22 -0
  85. package/apps/storybook/stories/catalog/faq-page.stories.tsx +18 -0
  86. package/apps/storybook/stories/catalog/faq-section.stories.tsx +18 -0
  87. package/apps/storybook/stories/catalog/feature-section.stories.tsx +18 -0
  88. package/apps/storybook/stories/catalog/featured-icon.stories.tsx +45 -0
  89. package/apps/storybook/stories/catalog/field.stories.tsx +35 -0
  90. package/apps/storybook/stories/catalog/file-uploader.stories.tsx +18 -0
  91. package/apps/storybook/stories/catalog/filter-bar.stories.tsx +33 -0
  92. package/apps/storybook/stories/catalog/footer.stories.tsx +18 -0
  93. package/apps/storybook/stories/catalog/forgot-password-page.stories.tsx +18 -0
  94. package/apps/storybook/stories/catalog/gradient-picker.stories.tsx +18 -0
  95. package/apps/storybook/stories/catalog/header-navigation.stories.tsx +46 -0
  96. package/apps/storybook/stories/catalog/hero-header.stories.tsx +36 -0
  97. package/apps/storybook/stories/catalog/icon-system.stories.tsx +48 -0
  98. package/apps/storybook/stories/catalog/illustration.stories.tsx +18 -0
  99. package/apps/storybook/stories/catalog/image-picker.stories.tsx +18 -0
  100. package/apps/storybook/stories/catalog/informational-page-01.stories.tsx +18 -0
  101. package/apps/storybook/stories/catalog/informational-page-02.stories.tsx +18 -0
  102. package/apps/storybook/stories/catalog/inline-cta.stories.tsx +18 -0
  103. package/apps/storybook/stories/catalog/input.stories.tsx +21 -0
  104. package/apps/storybook/stories/catalog/landing-page.stories.tsx +28 -0
  105. package/apps/storybook/stories/catalog/legal-page.stories.tsx +18 -0
  106. package/apps/storybook/stories/catalog/login-page.stories.tsx +42 -0
  107. package/apps/storybook/stories/catalog/marketing-404-page.stories.tsx +18 -0
  108. package/apps/storybook/stories/catalog/marketing-header.stories.tsx +35 -0
  109. package/apps/storybook/stories/catalog/menu.stories.tsx +46 -0
  110. package/apps/storybook/stories/catalog/messaging.stories.tsx +33 -0
  111. package/apps/storybook/stories/catalog/metric-card.stories.tsx +20 -0
  112. package/apps/storybook/stories/catalog/metrics-section.stories.tsx +18 -0
  113. package/apps/storybook/stories/catalog/mobile-screen.stories.tsx +56 -0
  114. package/apps/storybook/stories/catalog/multi-select.stories.tsx +18 -0
  115. package/apps/storybook/stories/catalog/newsletter.stories.tsx +18 -0
  116. package/apps/storybook/stories/catalog/not-found.stories.tsx +30 -0
  117. package/apps/storybook/stories/catalog/notification.stories.tsx +18 -0
  118. package/apps/storybook/stories/catalog/page-header.stories.tsx +37 -0
  119. package/apps/storybook/stories/catalog/pagination.stories.tsx +27 -0
  120. package/apps/storybook/stories/catalog/pie-chart.stories.tsx +18 -0
  121. package/apps/storybook/stories/catalog/pricing-page.stories.tsx +18 -0
  122. package/apps/storybook/stories/catalog/pricing-section.stories.tsx +18 -0
  123. package/apps/storybook/stories/catalog/progress-indicator.stories.tsx +18 -0
  124. package/apps/storybook/stories/catalog/progress-steps.stories.tsx +33 -0
  125. package/apps/storybook/stories/catalog/qr-code.stories.tsx +18 -0
  126. package/apps/storybook/stories/catalog/radar-chart.stories.tsx +18 -0
  127. package/apps/storybook/stories/catalog/radio-group.stories.tsx +18 -0
  128. package/apps/storybook/stories/catalog/rating.stories.tsx +18 -0
  129. package/apps/storybook/stories/catalog/rich-text-editor.stories.tsx +18 -0
  130. package/apps/storybook/stories/catalog/run-inspector.stories.tsx +23 -0
  131. package/apps/storybook/stories/catalog/section-footer.stories.tsx +18 -0
  132. package/apps/storybook/stories/catalog/section-header.stories.tsx +31 -0
  133. package/apps/storybook/stories/catalog/select.stories.tsx +18 -0
  134. package/apps/storybook/stories/catalog/settings-01.stories.tsx +24 -0
  135. package/apps/storybook/stories/catalog/settings-02.stories.tsx +24 -0
  136. package/apps/storybook/stories/catalog/settings-page.stories.tsx +48 -0
  137. package/apps/storybook/stories/catalog/sidebar-navigation.stories.tsx +40 -0
  138. package/apps/storybook/stories/catalog/sign-in-form.stories.tsx +28 -0
  139. package/apps/storybook/stories/catalog/sign-up-page.stories.tsx +18 -0
  140. package/apps/storybook/stories/catalog/skeleton.stories.tsx +21 -0
  141. package/apps/storybook/stories/catalog/slider.stories.tsx +18 -0
  142. package/apps/storybook/stories/catalog/social-button.stories.tsx +18 -0
  143. package/apps/storybook/stories/catalog/social-proof.stories.tsx +18 -0
  144. package/apps/storybook/stories/catalog/spinner.stories.tsx +15 -0
  145. package/apps/storybook/stories/catalog/store-button.stories.tsx +18 -0
  146. package/apps/storybook/stories/catalog/tabs.stories.tsx +38 -0
  147. package/apps/storybook/stories/catalog/tags.stories.tsx +18 -0
  148. package/apps/storybook/stories/catalog/team-page.stories.tsx +18 -0
  149. package/apps/storybook/stories/catalog/team-section.stories.tsx +18 -0
  150. package/apps/storybook/stories/catalog/testimonial-section.stories.tsx +18 -0
  151. package/apps/storybook/stories/catalog/textarea.stories.tsx +22 -0
  152. package/apps/storybook/stories/catalog/toggle.stories.tsx +18 -0
  153. package/apps/storybook/stories/catalog/tool-call.stories.tsx +40 -0
  154. package/apps/storybook/stories/catalog/tooltip.stories.tsx +30 -0
  155. package/apps/storybook/stories/catalog/tree-view.stories.tsx +18 -0
  156. package/apps/storybook/stories/catalog/utility-button.stories.tsx +60 -0
  157. package/apps/storybook/stories/catalog/verification-code.stories.tsx +18 -0
  158. package/apps/storybook/stories/catalog/verification-page.stories.tsx +18 -0
  159. package/apps/storybook/stories/catalog/video-player.stories.tsx +18 -0
  160. package/apps/storybook/stories/catalog/workflow-canvas.stories.tsx +45 -0
  161. package/apps/storybook/stories/catalog/workflow-node.stories.tsx +24 -0
  162. package/apps/storybook/vitest.config.ts +39 -0
  163. package/apps/web/README.md +13 -0
  164. package/apps/web/app.js +483 -0
  165. package/apps/web/favicon.svg +6 -0
  166. package/apps/web/index.html +205 -0
  167. package/apps/web/styles.css +1823 -0
  168. package/artifacts/original-delivery/NOE-Design-System-Delivery/README-FIRST.txt +20 -0
  169. package/artifacts/original-delivery/NOE-Design-System-Delivery/SHA256SUMS.txt +11 -0
  170. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-delivery-metadata.json +25 -0
  171. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-design-system-evidence.zip +0 -0
  172. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-design-system-execution-report.md +60 -0
  173. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-design-system-manifest.json +106 -0
  174. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-design-system-source.tar.gz +0 -0
  175. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-design-system-source.zip +0 -0
  176. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-design-system.bundle +0 -0
  177. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-evidence-index.html +38 -0
  178. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-verification-status.txt +15 -0
  179. package/artifacts/original-delivery/NOE-Design-System-Delivery/noe-visual-contact-sheet.png +0 -0
  180. package/artifacts/original-delivery/noe-design-system-evidence/README.txt +13 -0
  181. package/artifacts/original-delivery/noe-design-system-evidence/evidence/browser-console.json +4 -0
  182. package/artifacts/original-delivery/noe-design-system-evidence/evidence/layout-audit.json +4 -0
  183. package/artifacts/original-delivery/noe-design-system-evidence/evidence/review/contact-sheet.png +0 -0
  184. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-dark-1024.png +0 -0
  185. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-dark-1280.png +0 -0
  186. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-dark-1440.png +0 -0
  187. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-dark-390.png +0 -0
  188. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-dark-768.png +0 -0
  189. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-light-1024.png +0 -0
  190. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-light-1280.png +0 -0
  191. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-light-1440.png +0 -0
  192. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-light-390.png +0 -0
  193. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-en-light-768.png +0 -0
  194. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-dark-1024.png +0 -0
  195. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-dark-1280.png +0 -0
  196. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-dark-1440.png +0 -0
  197. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-dark-390.png +0 -0
  198. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-dark-768.png +0 -0
  199. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-light-1024.png +0 -0
  200. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-light-1280.png +0 -0
  201. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-light-1440.png +0 -0
  202. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-light-390.png +0 -0
  203. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-fa-light-768.png +0 -0
  204. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-pseudo-ltr-1024.png +0 -0
  205. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/agent-pseudo-rtl-1024.png +0 -0
  206. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/consumer-en-light-1440.png +0 -0
  207. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/consumer-fa-dark-1440.png +0 -0
  208. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/dashboard-en-light-1440.png +0 -0
  209. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/dashboard-fa-dark-1440.png +0 -0
  210. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/workflow-en-light-1440.png +0 -0
  211. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots/workflow-fa-dark-1440.png +0 -0
  212. package/artifacts/original-delivery/noe-design-system-evidence/evidence/screenshots-manifest.json +203 -0
  213. package/artifacts/original-delivery/noe-design-system-evidence/evidence/verification-result.json +165 -0
  214. package/artifacts/original-delivery/noe-design-system-evidence/evidence/verification-result.txt +32 -0
  215. package/artifacts/original-delivery/noe-design-system-evidence/evidence/visual-index.html +1 -0
  216. package/artifacts/original-delivery/noe-design-system-evidence/noe-delivery-metadata.json +25 -0
  217. package/artifacts/original-delivery/noe-design-system-evidence/noe-design-system-execution-report.md +60 -0
  218. package/artifacts/original-delivery/noe-design-system-evidence/noe-design-system-manifest.json +106 -0
  219. package/artifacts/original-delivery/noe-design-system-evidence/noe-verification-status.txt +15 -0
  220. package/artifacts/original-delivery/noe-design-system.bundle +0 -0
  221. package/artifacts/original-delivery/source-evidence/verification-result.json +165 -0
  222. package/artifacts/original-delivery/source-evidence/verification-result.txt +32 -0
  223. package/artifacts/registry-consumer-report.json +153 -0
  224. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-Black.woff +0 -0
  225. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-Bold.woff +0 -0
  226. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-DemiBold.woff +0 -0
  227. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-ExtraBlack.woff +0 -0
  228. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-ExtraBold.woff +0 -0
  229. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-Heavy.woff +0 -0
  230. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-Light.woff +0 -0
  231. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-Medium.woff +0 -0
  232. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-Regular.woff +0 -0
  233. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-Thin.woff +0 -0
  234. package/artifacts/source-inputs/persian-fonts/Woff/IRANYekanXFaNum-UltraLight.woff +0 -0
  235. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-Black.woff2 +0 -0
  236. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-Bold.woff2 +0 -0
  237. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-DemiBold.woff2 +0 -0
  238. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-ExtraBlack.woff2 +0 -0
  239. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-ExtraBold.woff2 +0 -0
  240. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-Heavy.woff2 +0 -0
  241. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-Light.woff2 +0 -0
  242. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-Medium.woff2 +0 -0
  243. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-Regular.woff2 +0 -0
  244. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-Thin.woff2 +0 -0
  245. package/artifacts/source-inputs/persian-fonts/Woff2/IRANYekanXFaNum-UltraLight.woff2 +0 -0
  246. package/biome.json +170 -0
  247. package/components.json +23 -0
  248. package/docs/adr/0001-semantic-foundation.md +5 -0
  249. package/docs/adr/0002-locale-direction.md +5 -0
  250. package/docs/adr/0003-registry-mcp.md +5 -0
  251. package/docs/adr/0004-testing-evidence.md +5 -0
  252. package/docs/adr/0005-noe-package-namespace.md +9 -0
  253. package/docs/adr/0006-icons8-icon-policy.md +9 -0
  254. package/docs/adr/0007-registry-publication-contract.md +9 -0
  255. package/docs/adr/0008-capability-library-adapter-boundaries.md +16 -0
  256. package/docs/adr/0009-calendar-system-jalali.md +29 -0
  257. package/docs/adr/0010-canonical-manifest-ownership.md +29 -0
  258. package/docs/adr/0011-palette-graphite-governance.md +27 -0
  259. package/docs/adr/0012-persian-font-gating.md +25 -0
  260. package/docs/adr/0013-cinematic-token-exception.md +32 -0
  261. package/docs/design-system/README.md +16 -0
  262. package/docs/design-system/accessibility.md +20 -0
  263. package/docs/design-system/agent-guide.md +11 -0
  264. package/docs/design-system/agentic-ui.md +21 -0
  265. package/docs/design-system/architecture.md +40 -0
  266. package/docs/design-system/brand.md +59 -0
  267. package/docs/design-system/ci-cd.md +46 -0
  268. package/docs/design-system/components.md +88 -0
  269. package/docs/design-system/contributing.md +7 -0
  270. package/docs/design-system/foundations.md +40 -0
  271. package/docs/design-system/i18n.md +24 -0
  272. package/docs/design-system/inventory.md +389 -0
  273. package/docs/design-system/mcp.md +7 -0
  274. package/docs/design-system/motion.md +7 -0
  275. package/docs/design-system/noe-brand-audit.md +33 -0
  276. package/docs/design-system/registry.md +16 -0
  277. package/docs/design-system/rtl.md +27 -0
  278. package/docs/design-system/security.md +16 -0
  279. package/docs/design-system/testing.md +39 -0
  280. package/docs/design-system/tokens.md +38 -0
  281. package/docs/design-system/visual-qa.md +10 -0
  282. package/docs/superpowers/plans/2026-08-25-noe-design-system-development-ready.md +833 -0
  283. package/docs/superpowers/plans/2026-08-26-noe-complete-catalog.md +422 -0
  284. package/docs/superpowers/specs/2026-08-25-noe-design-system-development-ready-design.md +260 -0
  285. package/docs/superpowers/specs/2026-08-26-noe-complete-catalog-design.md +187 -0
  286. package/llms.txt +20 -0
  287. package/package.json +68 -0
  288. package/packages/ai-ui/package.json +15 -0
  289. package/packages/ai-ui/src/activity-feed.tsx +60 -0
  290. package/packages/ai-ui/src/agent-composer.tsx +54 -0
  291. package/packages/ai-ui/src/agent-message.tsx +50 -0
  292. package/packages/ai-ui/src/agent-plan.tsx +69 -0
  293. package/packages/ai-ui/src/agent-workspace.tsx +63 -0
  294. package/packages/ai-ui/src/approval-request.tsx +93 -0
  295. package/packages/ai-ui/src/index.ts +8 -0
  296. package/packages/ai-ui/src/run-inspector.tsx +54 -0
  297. package/packages/ai-ui/src/tool-call.tsx +71 -0
  298. package/packages/data-ui/package.json +16 -0
  299. package/packages/data-ui/src/activity-gauge.tsx +38 -0
  300. package/packages/data-ui/src/chart-frame.tsx +41 -0
  301. package/packages/data-ui/src/chart.tsx +131 -0
  302. package/packages/data-ui/src/dashboard-01.tsx +39 -0
  303. package/packages/data-ui/src/dashboard-02.tsx +33 -0
  304. package/packages/data-ui/src/dashboard-shell.tsx +56 -0
  305. package/packages/data-ui/src/data-table.tsx +99 -0
  306. package/packages/data-ui/src/filter-bar.tsx +28 -0
  307. package/packages/data-ui/src/index.ts +12 -0
  308. package/packages/data-ui/src/metric-card.tsx +43 -0
  309. package/packages/data-ui/src/pagination.tsx +67 -0
  310. package/packages/data-ui/src/pie-chart.tsx +38 -0
  311. package/packages/data-ui/src/radar-chart.tsx +38 -0
  312. package/packages/design-tokens/package.json +23 -0
  313. package/packages/design-tokens/src/base.css +255 -0
  314. package/packages/design-tokens/src/fonts/IRANYekanXFaNum-Bold.woff2 +0 -0
  315. package/packages/design-tokens/src/fonts/IRANYekanXFaNum-DemiBold.woff2 +0 -0
  316. package/packages/design-tokens/src/fonts/IRANYekanXFaNum-Medium.woff2 +0 -0
  317. package/packages/design-tokens/src/fonts/IRANYekanXFaNum-Regular.woff2 +0 -0
  318. package/packages/design-tokens/src/fonts/IRANYekanXVF.ttf +0 -0
  319. package/packages/design-tokens/src/fonts/README.md +13 -0
  320. package/packages/design-tokens/src/fonts.css +49 -0
  321. package/packages/design-tokens/src/index.test.ts +36 -0
  322. package/packages/design-tokens/src/index.ts +5 -0
  323. package/packages/design-tokens/src/palette.ts +27 -0
  324. package/packages/design-tokens/src/tailwind.css +3 -0
  325. package/packages/design-tokens/src/theme.css +67 -0
  326. package/packages/design-tokens/src/tokens.css +251 -0
  327. package/packages/design-tokens/src/tokens.json +275 -0
  328. package/packages/design-tokens/src/tokens.mjs +276 -0
  329. package/packages/i18n/package.json +13 -0
  330. package/packages/i18n/src/index.ts +17 -0
  331. package/packages/i18n/src/messages/en.json +116 -0
  332. package/packages/i18n/src/messages/fa.json +116 -0
  333. package/packages/i18n/src/runtime.d.mts +42 -0
  334. package/packages/i18n/src/runtime.mjs +113 -0
  335. package/packages/i18n/src/translate.test.ts +50 -0
  336. package/packages/i18n/src/translate.ts +29 -0
  337. package/packages/icons/package.json +12 -0
  338. package/packages/icons/src/adapters.tsx +167 -0
  339. package/packages/icons/src/index.tsx +103 -0
  340. package/packages/registry/README.md +7 -0
  341. package/packages/registry/catalog-index.json +1345 -0
  342. package/packages/registry/component-audit.json +1038 -0
  343. package/packages/registry/coss-adoption.json +281 -0
  344. package/packages/registry/docs-index.json +1881 -0
  345. package/packages/registry/manifest.json +11081 -0
  346. package/packages/registry/manifest.schema.json +135 -0
  347. package/packages/registry/package.json +10 -0
  348. package/packages/registry/r/activity-feed.json +67 -0
  349. package/packages/registry/r/agent-composer.json +79 -0
  350. package/packages/registry/r/agent-message.json +72 -0
  351. package/packages/registry/r/agent-plan.json +67 -0
  352. package/packages/registry/r/agent-workspace.json +67 -0
  353. package/packages/registry/r/alert.json +68 -0
  354. package/packages/registry/r/app-frame.json +67 -0
  355. package/packages/registry/r/approval-request.json +84 -0
  356. package/packages/registry/r/badge.json +68 -0
  357. package/packages/registry/r/bidi-text.json +70 -0
  358. package/packages/registry/r/bottom-navigation.json +67 -0
  359. package/packages/registry/r/button.json +83 -0
  360. package/packages/registry/r/calendar.json +97 -0
  361. package/packages/registry/r/card.json +67 -0
  362. package/packages/registry/r/chart-frame.json +67 -0
  363. package/packages/registry/r/chart.json +67 -0
  364. package/packages/registry/r/code-block.json +67 -0
  365. package/packages/registry/r/context-menu.json +81 -0
  366. package/packages/registry/r/dashboard-01.json +86 -0
  367. package/packages/registry/r/dashboard-02.json +84 -0
  368. package/packages/registry/r/dashboard-shell.json +67 -0
  369. package/packages/registry/r/data-list.json +67 -0
  370. package/packages/registry/r/data-table.json +72 -0
  371. package/packages/registry/r/date-picker.json +117 -0
  372. package/packages/registry/r/dialog.json +84 -0
  373. package/packages/registry/r/direction-provider.json +54 -0
  374. package/packages/registry/r/drawer.json +80 -0
  375. package/packages/registry/r/dropdown.json +78 -0
  376. package/packages/registry/r/empty-state.json +67 -0
  377. package/packages/registry/r/error-state.json +67 -0
  378. package/packages/registry/r/fab.json +80 -0
  379. package/packages/registry/r/featured-icon.json +71 -0
  380. package/packages/registry/r/filter-bar.json +69 -0
  381. package/packages/registry/r/gradient-picker.json +62 -0
  382. package/packages/registry/r/header-navigation.json +67 -0
  383. package/packages/registry/r/hero-header.json +63 -0
  384. package/packages/registry/r/icon-system.json +59 -0
  385. package/packages/registry/r/image-picker.json +62 -0
  386. package/packages/registry/r/inline-cta.json +73 -0
  387. package/packages/registry/r/input.json +73 -0
  388. package/packages/registry/r/landing-page.json +70 -0
  389. package/packages/registry/r/login-page.json +71 -0
  390. package/packages/registry/r/marketing-header.json +63 -0
  391. package/packages/registry/r/menu.json +74 -0
  392. package/packages/registry/r/messaging.json +69 -0
  393. package/packages/registry/r/metric-card.json +67 -0
  394. package/packages/registry/r/mobile-screen.json +67 -0
  395. package/packages/registry/r/not-found.json +63 -0
  396. package/packages/registry/r/page-header.json +67 -0
  397. package/packages/registry/r/pagination.json +91 -0
  398. package/packages/registry/r/progress-steps.json +69 -0
  399. package/packages/registry/r/run-inspector.json +72 -0
  400. package/packages/registry/r/section-header.json +67 -0
  401. package/packages/registry/r/settings-01.json +94 -0
  402. package/packages/registry/r/settings-02.json +99 -0
  403. package/packages/registry/r/settings-page.json +67 -0
  404. package/packages/registry/r/sidebar-navigation.json +67 -0
  405. package/packages/registry/r/sign-in-form.json +89 -0
  406. package/packages/registry/r/skeleton.json +67 -0
  407. package/packages/registry/r/spinner.json +67 -0
  408. package/packages/registry/r/tabs.json +69 -0
  409. package/packages/registry/r/textarea.json +73 -0
  410. package/packages/registry/r/tool-call.json +72 -0
  411. package/packages/registry/r/tooltip.json +73 -0
  412. package/packages/registry/r/utility-button.json +83 -0
  413. package/packages/registry/r/workflow-canvas.json +67 -0
  414. package/packages/registry/r/workflow-node.json +72 -0
  415. package/packages/registry/r-planned-backup/about-page.json +14 -0
  416. package/packages/registry/r-planned-backup/activity-gauge.json +14 -0
  417. package/packages/registry/r-planned-backup/avatar.json +14 -0
  418. package/packages/registry/r-planned-backup/badge-group.json +14 -0
  419. package/packages/registry/r-planned-backup/banner.json +14 -0
  420. package/packages/registry/r-planned-backup/blog-index-page.json +14 -0
  421. package/packages/registry/r-planned-backup/blog-post-page.json +14 -0
  422. package/packages/registry/r-planned-backup/blog-section.json +14 -0
  423. package/packages/registry/r-planned-backup/button-group.json +14 -0
  424. package/packages/registry/r-planned-backup/careers-section.json +14 -0
  425. package/packages/registry/r-planned-backup/carousel.json +14 -0
  426. package/packages/registry/r-planned-backup/checkbox.json +14 -0
  427. package/packages/registry/r-planned-backup/color-picker.json +14 -0
  428. package/packages/registry/r-planned-backup/command-menu.json +14 -0
  429. package/packages/registry/r-planned-backup/contact-page.json +14 -0
  430. package/packages/registry/r-planned-backup/contact-section.json +14 -0
  431. package/packages/registry/r-planned-backup/content-divider.json +14 -0
  432. package/packages/registry/r-planned-backup/content-section.json +14 -0
  433. package/packages/registry/r-planned-backup/credit-card.json +14 -0
  434. package/packages/registry/r-planned-backup/cta-section.json +14 -0
  435. package/packages/registry/r-planned-backup/email-template.json +14 -0
  436. package/packages/registry/r-planned-backup/faq-page.json +14 -0
  437. package/packages/registry/r-planned-backup/faq-section.json +14 -0
  438. package/packages/registry/r-planned-backup/feature-section.json +14 -0
  439. package/packages/registry/r-planned-backup/file-uploader.json +14 -0
  440. package/packages/registry/r-planned-backup/footer.json +14 -0
  441. package/packages/registry/r-planned-backup/forgot-password-page.json +14 -0
  442. package/packages/registry/r-planned-backup/illustration.json +14 -0
  443. package/packages/registry/r-planned-backup/informational-page-01.json +14 -0
  444. package/packages/registry/r-planned-backup/informational-page-02.json +14 -0
  445. package/packages/registry/r-planned-backup/legal-page.json +14 -0
  446. package/packages/registry/r-planned-backup/marketing-404-page.json +14 -0
  447. package/packages/registry/r-planned-backup/metrics-section.json +14 -0
  448. package/packages/registry/r-planned-backup/multi-select.json +14 -0
  449. package/packages/registry/r-planned-backup/newsletter.json +14 -0
  450. package/packages/registry/r-planned-backup/notification.json +14 -0
  451. package/packages/registry/r-planned-backup/pie-chart.json +14 -0
  452. package/packages/registry/r-planned-backup/pricing-page.json +14 -0
  453. package/packages/registry/r-planned-backup/pricing-section.json +14 -0
  454. package/packages/registry/r-planned-backup/progress-indicator.json +14 -0
  455. package/packages/registry/r-planned-backup/qr-code.json +14 -0
  456. package/packages/registry/r-planned-backup/radar-chart.json +14 -0
  457. package/packages/registry/r-planned-backup/radio-group.json +14 -0
  458. package/packages/registry/r-planned-backup/rating.json +14 -0
  459. package/packages/registry/r-planned-backup/rich-text-editor.json +14 -0
  460. package/packages/registry/r-planned-backup/section-footer.json +14 -0
  461. package/packages/registry/r-planned-backup/select.json +14 -0
  462. package/packages/registry/r-planned-backup/sign-up-page.json +14 -0
  463. package/packages/registry/r-planned-backup/slider.json +14 -0
  464. package/packages/registry/r-planned-backup/social-button.json +14 -0
  465. package/packages/registry/r-planned-backup/social-proof.json +14 -0
  466. package/packages/registry/r-planned-backup/store-button.json +14 -0
  467. package/packages/registry/r-planned-backup/tags.json +14 -0
  468. package/packages/registry/r-planned-backup/team-page.json +14 -0
  469. package/packages/registry/r-planned-backup/team-section.json +14 -0
  470. package/packages/registry/r-planned-backup/testimonial-section.json +14 -0
  471. package/packages/registry/r-planned-backup/toggle.json +14 -0
  472. package/packages/registry/r-planned-backup/tree-view.json +14 -0
  473. package/packages/registry/r-planned-backup/verification-code.json +14 -0
  474. package/packages/registry/r-planned-backup/verification-page.json +14 -0
  475. package/packages/registry/r-planned-backup/video-player.json +14 -0
  476. package/packages/registry/registry.json +1997 -0
  477. package/packages/registry/search-index.json +3942 -0
  478. package/packages/testing/package.json +9 -0
  479. package/packages/testing/src/index.mjs +10 -0
  480. package/packages/ui/package.json +26 -0
  481. package/packages/ui/src/about-page.tsx +19 -0
  482. package/packages/ui/src/alert.tsx +67 -0
  483. package/packages/ui/src/app-frame.tsx +63 -0
  484. package/packages/ui/src/avatar.tsx +19 -0
  485. package/packages/ui/src/badge-group.tsx +19 -0
  486. package/packages/ui/src/badge.tsx +35 -0
  487. package/packages/ui/src/banner.tsx +19 -0
  488. package/packages/ui/src/bidi.tsx +80 -0
  489. package/packages/ui/src/blog-index-page.tsx +19 -0
  490. package/packages/ui/src/blog-post-page.tsx +19 -0
  491. package/packages/ui/src/blog-section.tsx +19 -0
  492. package/packages/ui/src/bottom-navigation.tsx +60 -0
  493. package/packages/ui/src/button-group.tsx +19 -0
  494. package/packages/ui/src/button.browser.test.tsx +38 -0
  495. package/packages/ui/src/button.tsx +81 -0
  496. package/packages/ui/src/calendar-system.test.ts +103 -0
  497. package/packages/ui/src/calendar-system.ts +120 -0
  498. package/packages/ui/src/calendar.browser.test.tsx +52 -0
  499. package/packages/ui/src/calendar.tsx +339 -0
  500. package/packages/ui/src/card.tsx +63 -0
  501. package/packages/ui/src/careers-section.tsx +19 -0
  502. package/packages/ui/src/carousel.tsx +19 -0
  503. package/packages/ui/src/checkbox.tsx +17 -0
  504. package/packages/ui/src/cinematic/cinematic.css +2020 -0
  505. package/packages/ui/src/cinematic/ecosystem-motion-showcase.tsx +265 -0
  506. package/packages/ui/src/cinematic/ecosystem-sphere.tsx +627 -0
  507. package/packages/ui/src/cinematic/index.ts +5 -0
  508. package/packages/ui/src/cinematic/kinetic-experience.tsx +207 -0
  509. package/packages/ui/src/cinematic/portfolio.ts +132 -0
  510. package/packages/ui/src/cinematic/system-anatomy.tsx +173 -0
  511. package/packages/ui/src/code.tsx +119 -0
  512. package/packages/ui/src/color-picker.tsx +22 -0
  513. package/packages/ui/src/command-menu.tsx +19 -0
  514. package/packages/ui/src/contact-page.tsx +19 -0
  515. package/packages/ui/src/contact-section.tsx +19 -0
  516. package/packages/ui/src/content-divider.tsx +19 -0
  517. package/packages/ui/src/content-section.tsx +19 -0
  518. package/packages/ui/src/context-menu.tsx +208 -0
  519. package/packages/ui/src/credit-card.tsx +19 -0
  520. package/packages/ui/src/cta-section.tsx +19 -0
  521. package/packages/ui/src/data-list.tsx +81 -0
  522. package/packages/ui/src/date-picker.browser.test.tsx +48 -0
  523. package/packages/ui/src/date-picker.tsx +248 -0
  524. package/packages/ui/src/dialog.browser.test.tsx +32 -0
  525. package/packages/ui/src/dialog.tsx +144 -0
  526. package/packages/ui/src/direction.tsx +46 -0
  527. package/packages/ui/src/drawer.tsx +179 -0
  528. package/packages/ui/src/dropdown.tsx +200 -0
  529. package/packages/ui/src/email-template.tsx +19 -0
  530. package/packages/ui/src/empty-state.tsx +43 -0
  531. package/packages/ui/src/error-state.tsx +44 -0
  532. package/packages/ui/src/fab.tsx +32 -0
  533. package/packages/ui/src/faq-page.tsx +19 -0
  534. package/packages/ui/src/faq-section.tsx +19 -0
  535. package/packages/ui/src/feature-section.tsx +19 -0
  536. package/packages/ui/src/featured-icon.tsx +63 -0
  537. package/packages/ui/src/field.browser.test.tsx +33 -0
  538. package/packages/ui/src/field.tsx +117 -0
  539. package/packages/ui/src/file-uploader.tsx +19 -0
  540. package/packages/ui/src/footer.tsx +19 -0
  541. package/packages/ui/src/forgot-password-page.tsx +19 -0
  542. package/packages/ui/src/gradient-picker.tsx +65 -0
  543. package/packages/ui/src/header-navigation.tsx +71 -0
  544. package/packages/ui/src/hero-header.tsx +57 -0
  545. package/packages/ui/src/illustration.tsx +19 -0
  546. package/packages/ui/src/image-picker.tsx +56 -0
  547. package/packages/ui/src/index.ts +110 -0
  548. package/packages/ui/src/informational-page-01.tsx +19 -0
  549. package/packages/ui/src/informational-page-02.tsx +19 -0
  550. package/packages/ui/src/inline-cta.tsx +29 -0
  551. package/packages/ui/src/input.tsx +44 -0
  552. package/packages/ui/src/landing-page.tsx +56 -0
  553. package/packages/ui/src/legal-page.tsx +19 -0
  554. package/packages/ui/src/lib/cn.ts +6 -0
  555. package/packages/ui/src/lib/i18n-messages.ts +40 -0
  556. package/packages/ui/src/login-page.tsx +78 -0
  557. package/packages/ui/src/marketing-404-page.tsx +19 -0
  558. package/packages/ui/src/marketing-header.tsx +53 -0
  559. package/packages/ui/src/menu.tsx +220 -0
  560. package/packages/ui/src/messaging.tsx +62 -0
  561. package/packages/ui/src/metrics-section.tsx +19 -0
  562. package/packages/ui/src/mobile-screen.tsx +37 -0
  563. package/packages/ui/src/multi-select.tsx +16 -0
  564. package/packages/ui/src/newsletter.tsx +19 -0
  565. package/packages/ui/src/not-found.tsx +60 -0
  566. package/packages/ui/src/notification.tsx +19 -0
  567. package/packages/ui/src/page-header.tsx +80 -0
  568. package/packages/ui/src/pricing-page.tsx +19 -0
  569. package/packages/ui/src/pricing-section.tsx +19 -0
  570. package/packages/ui/src/progress-indicator.tsx +19 -0
  571. package/packages/ui/src/progress-steps.tsx +85 -0
  572. package/packages/ui/src/qr-code.tsx +19 -0
  573. package/packages/ui/src/radio-group.tsx +26 -0
  574. package/packages/ui/src/rating.tsx +19 -0
  575. package/packages/ui/src/rich-text-editor.tsx +18 -0
  576. package/packages/ui/src/section-footer.tsx +19 -0
  577. package/packages/ui/src/section-header.tsx +37 -0
  578. package/packages/ui/src/select.tsx +27 -0
  579. package/packages/ui/src/settings-01.tsx +49 -0
  580. package/packages/ui/src/settings-02.tsx +58 -0
  581. package/packages/ui/src/settings-page.tsx +62 -0
  582. package/packages/ui/src/sidebar-navigation.tsx +77 -0
  583. package/packages/ui/src/sign-in-form.tsx +60 -0
  584. package/packages/ui/src/sign-up-page.tsx +19 -0
  585. package/packages/ui/src/skeleton.tsx +14 -0
  586. package/packages/ui/src/slider.tsx +13 -0
  587. package/packages/ui/src/social-button.tsx +19 -0
  588. package/packages/ui/src/social-proof.tsx +19 -0
  589. package/packages/ui/src/spinner.tsx +26 -0
  590. package/packages/ui/src/store-button.tsx +19 -0
  591. package/packages/ui/src/tabs.browser.test.tsx +33 -0
  592. package/packages/ui/src/tabs.tsx +175 -0
  593. package/packages/ui/src/tags.tsx +11 -0
  594. package/packages/ui/src/team-page.tsx +19 -0
  595. package/packages/ui/src/team-section.tsx +19 -0
  596. package/packages/ui/src/testimonial-section.tsx +19 -0
  597. package/packages/ui/src/textarea.tsx +45 -0
  598. package/packages/ui/src/theme-provider.browser.test.tsx +90 -0
  599. package/packages/ui/src/theme-provider.tsx +417 -0
  600. package/packages/ui/src/theme-toggle.tsx +107 -0
  601. package/packages/ui/src/toggle.tsx +34 -0
  602. package/packages/ui/src/tooltip.tsx +50 -0
  603. package/packages/ui/src/tree-view.tsx +19 -0
  604. package/packages/ui/src/utility-button.tsx +33 -0
  605. package/packages/ui/src/utils.ts +13 -0
  606. package/packages/ui/src/verification-code.tsx +27 -0
  607. package/packages/ui/src/verification-page.tsx +19 -0
  608. package/packages/ui/src/video-player.tsx +19 -0
  609. package/packages/workflow-ui/package.json +15 -0
  610. package/packages/workflow-ui/src/index.ts +2 -0
  611. package/packages/workflow-ui/src/workflow-canvas.tsx +51 -0
  612. package/packages/workflow-ui/src/workflow-node.tsx +61 -0
  613. package/playwright.config.ts +58 -0
  614. package/pnpm-workspace.yaml +5 -0
  615. package/registry.json +216 -0
  616. package/scripts/build-static.mjs +68 -0
  617. package/scripts/capture-visuals.py +106 -0
  618. package/scripts/capture-visuals.sh +10 -0
  619. package/scripts/create-visual-index.mjs +16 -0
  620. package/scripts/enrich-registry-payloads.mjs +83 -0
  621. package/scripts/fix-noe-imports.mjs +134 -0
  622. package/scripts/fix-registry-closure.mjs +110 -0
  623. package/scripts/fix-registry-deps-cleanup.mjs +149 -0
  624. package/scripts/fix-relative-for-registry.mjs +103 -0
  625. package/scripts/generate-design-tokens.mjs +134 -0
  626. package/scripts/generate-inventory.mjs +62 -0
  627. package/scripts/generate-manifest.mjs +1149 -0
  628. package/scripts/generate-phase4.mjs +875 -0
  629. package/scripts/validate-manifest.mjs +477 -0
  630. package/scripts/validate-pngs.mjs +31 -0
  631. package/scripts/verify-registry-consumer.mjs +319 -0
  632. package/scripts/verify-registry-dependencies.mjs +162 -0
  633. package/scripts/verify.mjs +316 -0
  634. package/tests/catalog-audit.test.mjs +156 -0
  635. package/tests/e2e/capture-visuals.mjs +34 -0
  636. package/tests/e2e/catalog-typography.spec.ts +110 -0
  637. package/tests/e2e/catalog.spec.ts +68 -0
  638. package/tests/e2e/direction.spec.ts +60 -0
  639. package/tests/e2e/responsive.spec.ts +30 -0
  640. package/tests/e2e/surfaces.spec.ts +51 -0
  641. package/tests/i18n.test.mjs +36 -0
  642. package/tests/icons.test.mjs +21 -0
  643. package/tests/registry-publication.test.mjs +88 -0
  644. package/tests/registry.test.mjs +51 -0
  645. package/tests/rtl.test.mjs +21 -0
  646. package/tests/static-app.test.mjs +49 -0
  647. package/tests/tokens.test.mjs +24 -0
  648. package/tests/workspace.test.mjs +25 -0
  649. package/tsconfig.base.json +69 -0
  650. package/tsconfig.json +27 -0
  651. package/tsconfig.verify.json +19 -0
  652. package/types/offline-react.d.ts +73 -0
  653. package/vitest.config.ts +91 -0
@@ -0,0 +1,1881 @@
1
+ {
2
+ "generatedAt": "2026-08-28T08:46:14.844Z",
3
+ "items": [
4
+ {
5
+ "id": "bidi-text",
6
+ "title": "Bidi Text",
7
+ "category": "Foundations / Direction & Bidi",
8
+ "examples": [
9
+ {
10
+ "id": "bidi-text--default",
11
+ "description": "Default Bidi Text usage",
12
+ "files": [
13
+ "apps/storybook/stories/catalog/bidi-text.stories.tsx"
14
+ ]
15
+ }
16
+ ]
17
+ },
18
+ {
19
+ "id": "direction-provider",
20
+ "title": "Direction Provider",
21
+ "category": "Foundations / Direction & Bidi",
22
+ "examples": [
23
+ {
24
+ "id": "direction-provider--default",
25
+ "description": "Default Direction Provider usage",
26
+ "files": [
27
+ "apps/storybook/stories/catalog/direction-provider.stories.tsx"
28
+ ]
29
+ }
30
+ ]
31
+ },
32
+ {
33
+ "id": "code-and-terminal",
34
+ "title": "Code And Terminal",
35
+ "category": "Foundations / Technical Content",
36
+ "examples": [
37
+ {
38
+ "id": "code-and-terminal--default",
39
+ "description": "Default Code And Terminal usage",
40
+ "files": [
41
+ "apps/storybook/stories/catalog/code-and-terminal.stories.tsx"
42
+ ]
43
+ }
44
+ ]
45
+ },
46
+ {
47
+ "id": "icon-system",
48
+ "title": "Icon System",
49
+ "category": "Foundations / Icons",
50
+ "examples": [
51
+ {
52
+ "id": "icon-system--default",
53
+ "description": "Default Icon System usage",
54
+ "files": [
55
+ "apps/storybook/stories/catalog/icon-system.stories.tsx"
56
+ ]
57
+ }
58
+ ]
59
+ },
60
+ {
61
+ "id": "button",
62
+ "title": "Button",
63
+ "category": "Primitives / Actions",
64
+ "examples": [
65
+ {
66
+ "id": "button--default",
67
+ "description": "Default Button usage",
68
+ "files": [
69
+ "apps/storybook/stories/catalog/button.stories.tsx"
70
+ ]
71
+ }
72
+ ]
73
+ },
74
+ {
75
+ "id": "input",
76
+ "title": "Input",
77
+ "category": "Primitives / Forms",
78
+ "examples": [
79
+ {
80
+ "id": "input--default",
81
+ "description": "Default Input usage",
82
+ "files": [
83
+ "apps/storybook/stories/catalog/input.stories.tsx"
84
+ ]
85
+ }
86
+ ]
87
+ },
88
+ {
89
+ "id": "field",
90
+ "title": "Field",
91
+ "category": "Primitives / Forms",
92
+ "examples": [
93
+ {
94
+ "id": "field--default",
95
+ "description": "Default Field usage",
96
+ "files": [
97
+ "apps/storybook/stories/catalog/field.stories.tsx"
98
+ ]
99
+ }
100
+ ]
101
+ },
102
+ {
103
+ "id": "textarea",
104
+ "title": "Textarea",
105
+ "category": "Primitives / Forms",
106
+ "examples": [
107
+ {
108
+ "id": "textarea--default",
109
+ "description": "Default Textarea usage",
110
+ "files": [
111
+ "apps/storybook/stories/catalog/textarea.stories.tsx"
112
+ ]
113
+ }
114
+ ]
115
+ },
116
+ {
117
+ "id": "card",
118
+ "title": "Card",
119
+ "category": "Primitives / Layout",
120
+ "examples": [
121
+ {
122
+ "id": "card--default",
123
+ "description": "Default Card usage",
124
+ "files": [
125
+ "apps/storybook/stories/catalog/card.stories.tsx"
126
+ ]
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "id": "alert",
132
+ "title": "Alert",
133
+ "category": "Feedback",
134
+ "examples": [
135
+ {
136
+ "id": "alert--default",
137
+ "description": "Default Alert usage",
138
+ "files": [
139
+ "apps/storybook/stories/catalog/alert.stories.tsx"
140
+ ]
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ "id": "badge",
146
+ "title": "Badge",
147
+ "category": "Feedback",
148
+ "examples": [
149
+ {
150
+ "id": "badge--default",
151
+ "description": "Default Badge usage",
152
+ "files": [
153
+ "apps/storybook/stories/catalog/badge.stories.tsx"
154
+ ]
155
+ }
156
+ ]
157
+ },
158
+ {
159
+ "id": "skeleton",
160
+ "title": "Skeleton",
161
+ "category": "Feedback",
162
+ "examples": [
163
+ {
164
+ "id": "skeleton--default",
165
+ "description": "Default Skeleton usage",
166
+ "files": [
167
+ "apps/storybook/stories/catalog/skeleton.stories.tsx"
168
+ ]
169
+ }
170
+ ]
171
+ },
172
+ {
173
+ "id": "spinner",
174
+ "title": "Spinner",
175
+ "category": "Feedback",
176
+ "examples": [
177
+ {
178
+ "id": "spinner--default",
179
+ "description": "Default Spinner usage",
180
+ "files": [
181
+ "apps/storybook/stories/catalog/spinner.stories.tsx"
182
+ ]
183
+ }
184
+ ]
185
+ },
186
+ {
187
+ "id": "empty-state",
188
+ "title": "Empty State",
189
+ "category": "Feedback",
190
+ "examples": [
191
+ {
192
+ "id": "empty-state--default",
193
+ "description": "Default Empty State usage",
194
+ "files": [
195
+ "apps/storybook/stories/catalog/empty-state.stories.tsx"
196
+ ]
197
+ }
198
+ ]
199
+ },
200
+ {
201
+ "id": "error-state",
202
+ "title": "Error State",
203
+ "category": "Feedback",
204
+ "examples": [
205
+ {
206
+ "id": "error-state--default",
207
+ "description": "Default Error State usage",
208
+ "files": [
209
+ "apps/storybook/stories/catalog/error-state.stories.tsx"
210
+ ]
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "id": "dialog",
216
+ "title": "Dialog",
217
+ "category": "Overlays",
218
+ "examples": [
219
+ {
220
+ "id": "dialog--default",
221
+ "description": "Default Dialog usage",
222
+ "files": [
223
+ "apps/storybook/stories/catalog/dialog.stories.tsx"
224
+ ]
225
+ }
226
+ ]
227
+ },
228
+ {
229
+ "id": "drawer",
230
+ "title": "Drawer",
231
+ "category": "Overlays",
232
+ "examples": [
233
+ {
234
+ "id": "drawer--default",
235
+ "description": "Default Drawer usage",
236
+ "files": [
237
+ "apps/storybook/stories/catalog/drawer.stories.tsx"
238
+ ]
239
+ }
240
+ ]
241
+ },
242
+ {
243
+ "id": "menu",
244
+ "title": "Menu",
245
+ "category": "Overlays",
246
+ "examples": [
247
+ {
248
+ "id": "menu--default",
249
+ "description": "Default Menu usage",
250
+ "files": [
251
+ "apps/storybook/stories/catalog/menu.stories.tsx"
252
+ ]
253
+ }
254
+ ]
255
+ },
256
+ {
257
+ "id": "tooltip",
258
+ "title": "Tooltip",
259
+ "category": "Overlays",
260
+ "examples": [
261
+ {
262
+ "id": "tooltip--default",
263
+ "description": "Default Tooltip usage",
264
+ "files": [
265
+ "apps/storybook/stories/catalog/tooltip.stories.tsx"
266
+ ]
267
+ }
268
+ ]
269
+ },
270
+ {
271
+ "id": "tabs",
272
+ "title": "Tabs",
273
+ "category": "Navigation",
274
+ "examples": [
275
+ {
276
+ "id": "tabs--default",
277
+ "description": "Default Tabs usage",
278
+ "files": [
279
+ "apps/storybook/stories/catalog/tabs.stories.tsx"
280
+ ]
281
+ }
282
+ ]
283
+ },
284
+ {
285
+ "id": "data-table",
286
+ "title": "Data Table",
287
+ "category": "Data",
288
+ "examples": [
289
+ {
290
+ "id": "data-table--default",
291
+ "description": "Default Data Table usage",
292
+ "files": [
293
+ "apps/storybook/stories/catalog/data-table.stories.tsx"
294
+ ]
295
+ }
296
+ ]
297
+ },
298
+ {
299
+ "id": "metric-card",
300
+ "title": "Metric Card",
301
+ "category": "Data",
302
+ "examples": [
303
+ {
304
+ "id": "metric-card--default",
305
+ "description": "Default Metric Card usage",
306
+ "files": [
307
+ "apps/storybook/stories/catalog/metric-card.stories.tsx"
308
+ ]
309
+ }
310
+ ]
311
+ },
312
+ {
313
+ "id": "chart-frame",
314
+ "title": "Chart Frame",
315
+ "category": "Data",
316
+ "examples": [
317
+ {
318
+ "id": "chart-frame--default",
319
+ "description": "Default Chart Frame usage",
320
+ "files": [
321
+ "apps/storybook/stories/catalog/chart-frame.stories.tsx"
322
+ ]
323
+ }
324
+ ]
325
+ },
326
+ {
327
+ "id": "agent-composer",
328
+ "title": "Agent Composer",
329
+ "category": "Agentic",
330
+ "examples": [
331
+ {
332
+ "id": "agent-composer--default",
333
+ "description": "Default Agent Composer usage",
334
+ "files": [
335
+ "apps/storybook/stories/catalog/agent-composer.stories.tsx"
336
+ ]
337
+ }
338
+ ]
339
+ },
340
+ {
341
+ "id": "agent-message",
342
+ "title": "Agent Message",
343
+ "category": "Agentic",
344
+ "examples": [
345
+ {
346
+ "id": "agent-message--default",
347
+ "description": "Default Agent Message usage",
348
+ "files": [
349
+ "apps/storybook/stories/catalog/agent-message.stories.tsx"
350
+ ]
351
+ }
352
+ ]
353
+ },
354
+ {
355
+ "id": "agent-plan",
356
+ "title": "Agent Plan",
357
+ "category": "Agentic",
358
+ "examples": [
359
+ {
360
+ "id": "agent-plan--default",
361
+ "description": "Default Agent Plan usage",
362
+ "files": [
363
+ "apps/storybook/stories/catalog/agent-plan.stories.tsx"
364
+ ]
365
+ }
366
+ ]
367
+ },
368
+ {
369
+ "id": "run-inspector",
370
+ "title": "Run Inspector",
371
+ "category": "Agentic",
372
+ "examples": [
373
+ {
374
+ "id": "run-inspector--default",
375
+ "description": "Default Run Inspector usage",
376
+ "files": [
377
+ "apps/storybook/stories/catalog/run-inspector.stories.tsx"
378
+ ]
379
+ }
380
+ ]
381
+ },
382
+ {
383
+ "id": "tool-call",
384
+ "title": "Tool Call",
385
+ "category": "Agentic",
386
+ "examples": [
387
+ {
388
+ "id": "tool-call--default",
389
+ "description": "Default Tool Call usage",
390
+ "files": [
391
+ "apps/storybook/stories/catalog/tool-call.stories.tsx"
392
+ ]
393
+ }
394
+ ]
395
+ },
396
+ {
397
+ "id": "approval-request",
398
+ "title": "Approval Request",
399
+ "category": "Agentic",
400
+ "examples": [
401
+ {
402
+ "id": "approval-request--default",
403
+ "description": "Default Approval Request usage",
404
+ "files": [
405
+ "apps/storybook/stories/catalog/approval-request.stories.tsx"
406
+ ]
407
+ }
408
+ ]
409
+ },
410
+ {
411
+ "id": "workflow-canvas",
412
+ "title": "Workflow Canvas",
413
+ "category": "Workflow",
414
+ "examples": [
415
+ {
416
+ "id": "workflow-canvas--default",
417
+ "description": "Default Workflow Canvas usage",
418
+ "files": [
419
+ "apps/storybook/stories/catalog/workflow-canvas.stories.tsx"
420
+ ]
421
+ }
422
+ ]
423
+ },
424
+ {
425
+ "id": "workflow-node",
426
+ "title": "Workflow Node",
427
+ "category": "Workflow",
428
+ "examples": [
429
+ {
430
+ "id": "workflow-node--default",
431
+ "description": "Default Workflow Node usage",
432
+ "files": [
433
+ "apps/storybook/stories/catalog/workflow-node.stories.tsx"
434
+ ]
435
+ }
436
+ ]
437
+ },
438
+ {
439
+ "id": "page-header",
440
+ "title": "Page Header",
441
+ "category": "Patterns / Application",
442
+ "examples": [
443
+ {
444
+ "id": "page-header--default",
445
+ "description": "Default Page Header usage",
446
+ "files": [
447
+ "apps/storybook/stories/catalog/page-header.stories.tsx"
448
+ ]
449
+ }
450
+ ]
451
+ },
452
+ {
453
+ "id": "sidebar-navigation",
454
+ "title": "Sidebar Navigation",
455
+ "category": "Patterns / Application",
456
+ "examples": [
457
+ {
458
+ "id": "sidebar-navigation--default",
459
+ "description": "Default Sidebar Navigation usage",
460
+ "files": [
461
+ "apps/storybook/stories/catalog/sidebar-navigation.stories.tsx"
462
+ ]
463
+ }
464
+ ]
465
+ },
466
+ {
467
+ "id": "agent-workspace",
468
+ "title": "Agent Workspace",
469
+ "category": "Patterns / Pages",
470
+ "examples": [
471
+ {
472
+ "id": "agent-workspace--default",
473
+ "description": "Default Agent Workspace usage",
474
+ "files": [
475
+ "apps/storybook/stories/catalog/agent-workspace.stories.tsx"
476
+ ]
477
+ }
478
+ ]
479
+ },
480
+ {
481
+ "id": "section-header",
482
+ "title": "Section Header",
483
+ "category": "Patterns / Application",
484
+ "examples": [
485
+ {
486
+ "id": "section-header--default",
487
+ "description": "Default Section Header usage",
488
+ "files": [
489
+ "apps/storybook/stories/catalog/section-header.stories.tsx"
490
+ ]
491
+ }
492
+ ]
493
+ },
494
+ {
495
+ "id": "filter-bar",
496
+ "title": "Filter Bar",
497
+ "category": "Patterns / Data",
498
+ "examples": [
499
+ {
500
+ "id": "filter-bar--default",
501
+ "description": "Default Filter Bar usage",
502
+ "files": [
503
+ "apps/storybook/stories/catalog/filter-bar.stories.tsx"
504
+ ]
505
+ }
506
+ ]
507
+ },
508
+ {
509
+ "id": "pagination",
510
+ "title": "Pagination",
511
+ "category": "Patterns / Data",
512
+ "examples": [
513
+ {
514
+ "id": "pagination--default",
515
+ "description": "Default Pagination usage",
516
+ "files": [
517
+ "apps/storybook/stories/catalog/pagination.stories.tsx"
518
+ ]
519
+ }
520
+ ]
521
+ },
522
+ {
523
+ "id": "activity-feed",
524
+ "title": "Activity Feed",
525
+ "category": "Patterns / Application",
526
+ "examples": [
527
+ {
528
+ "id": "activity-feed--default",
529
+ "description": "Default Activity Feed usage",
530
+ "files": [
531
+ "apps/storybook/stories/catalog/activity-feed.stories.tsx"
532
+ ]
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "id": "sign-in-form",
538
+ "title": "Sign In Form",
539
+ "category": "Patterns / Pages",
540
+ "examples": [
541
+ {
542
+ "id": "sign-in-form--default",
543
+ "description": "Default Sign In Form usage",
544
+ "files": [
545
+ "apps/storybook/stories/catalog/sign-in-form.stories.tsx"
546
+ ]
547
+ }
548
+ ]
549
+ },
550
+ {
551
+ "id": "header-navigation",
552
+ "title": "Header Navigation",
553
+ "category": "Patterns / Application",
554
+ "examples": [
555
+ {
556
+ "id": "header-navigation--default",
557
+ "description": "Default Header Navigation usage",
558
+ "files": [
559
+ "apps/storybook/stories/catalog/header-navigation.stories.tsx"
560
+ ]
561
+ }
562
+ ]
563
+ },
564
+ {
565
+ "id": "app-frame",
566
+ "title": "App Frame",
567
+ "category": "Patterns / Pages",
568
+ "examples": [
569
+ {
570
+ "id": "app-frame--default",
571
+ "description": "Default App Frame usage",
572
+ "files": [
573
+ "apps/storybook/stories/catalog/app-frame.stories.tsx"
574
+ ]
575
+ }
576
+ ]
577
+ },
578
+ {
579
+ "id": "bottom-navigation",
580
+ "title": "Bottom Navigation",
581
+ "category": "Patterns / Application",
582
+ "examples": [
583
+ {
584
+ "id": "bottom-navigation--default",
585
+ "description": "Default Bottom Navigation usage",
586
+ "files": [
587
+ "apps/storybook/stories/catalog/bottom-navigation.stories.tsx"
588
+ ]
589
+ }
590
+ ]
591
+ },
592
+ {
593
+ "id": "dashboard-shell",
594
+ "title": "Dashboard Shell",
595
+ "category": "Patterns / Pages",
596
+ "examples": [
597
+ {
598
+ "id": "dashboard-shell--default",
599
+ "description": "Default Dashboard Shell usage",
600
+ "files": [
601
+ "apps/storybook/stories/catalog/dashboard-shell.stories.tsx"
602
+ ]
603
+ }
604
+ ]
605
+ },
606
+ {
607
+ "id": "settings-page",
608
+ "title": "Settings Page",
609
+ "category": "Patterns / Pages",
610
+ "examples": [
611
+ {
612
+ "id": "settings-page--default",
613
+ "description": "Default Settings Page usage",
614
+ "files": [
615
+ "apps/storybook/stories/catalog/settings-page.stories.tsx"
616
+ ]
617
+ }
618
+ ]
619
+ },
620
+ {
621
+ "id": "data-list",
622
+ "title": "Data List",
623
+ "category": "Patterns / Mobile",
624
+ "examples": [
625
+ {
626
+ "id": "data-list--default",
627
+ "description": "Default Data List usage",
628
+ "files": [
629
+ "apps/storybook/stories/catalog/data-list.stories.tsx"
630
+ ]
631
+ }
632
+ ]
633
+ },
634
+ {
635
+ "id": "fab",
636
+ "title": "Fab",
637
+ "category": "Patterns / Mobile",
638
+ "examples": [
639
+ {
640
+ "id": "fab--default",
641
+ "description": "Default Fab usage",
642
+ "files": [
643
+ "apps/storybook/stories/catalog/fab.stories.tsx"
644
+ ]
645
+ }
646
+ ]
647
+ },
648
+ {
649
+ "id": "mobile-screen",
650
+ "title": "Mobile Screen",
651
+ "category": "Patterns / Pages",
652
+ "examples": [
653
+ {
654
+ "id": "mobile-screen--default",
655
+ "description": "Default Mobile Screen usage",
656
+ "files": [
657
+ "apps/storybook/stories/catalog/mobile-screen.stories.tsx"
658
+ ]
659
+ }
660
+ ]
661
+ },
662
+ {
663
+ "id": "featured-icon",
664
+ "title": "Featured Icon",
665
+ "category": "Foundations / Icons",
666
+ "examples": [
667
+ {
668
+ "id": "featured-icon--default",
669
+ "description": "Default Featured Icon usage",
670
+ "files": [
671
+ "apps/storybook/stories/catalog/featured-icon.stories.tsx"
672
+ ]
673
+ }
674
+ ]
675
+ },
676
+ {
677
+ "id": "utility-button",
678
+ "title": "Utility Button",
679
+ "category": "Primitives / Actions",
680
+ "examples": [
681
+ {
682
+ "id": "utility-button--default",
683
+ "description": "Default Utility Button usage",
684
+ "files": [
685
+ "apps/storybook/stories/catalog/utility-button.stories.tsx"
686
+ ]
687
+ }
688
+ ]
689
+ },
690
+ {
691
+ "id": "context-menu",
692
+ "title": "Context Menu",
693
+ "category": "Overlays",
694
+ "examples": [
695
+ {
696
+ "id": "context-menu--default",
697
+ "description": "Default Context Menu usage",
698
+ "files": [
699
+ "apps/storybook/stories/catalog/context-menu.stories.tsx"
700
+ ]
701
+ }
702
+ ]
703
+ },
704
+ {
705
+ "id": "dropdown",
706
+ "title": "Dropdown",
707
+ "category": "Overlays",
708
+ "examples": [
709
+ {
710
+ "id": "dropdown--default",
711
+ "description": "Default Dropdown usage",
712
+ "files": [
713
+ "apps/storybook/stories/catalog/dropdown.stories.tsx"
714
+ ]
715
+ }
716
+ ]
717
+ },
718
+ {
719
+ "id": "login-page",
720
+ "title": "Login Page",
721
+ "category": "Shared / Auth",
722
+ "examples": [
723
+ {
724
+ "id": "login-page--default",
725
+ "description": "Default Login Page usage",
726
+ "files": [
727
+ "apps/storybook/stories/catalog/login-page.stories.tsx"
728
+ ]
729
+ }
730
+ ]
731
+ },
732
+ {
733
+ "id": "not-found",
734
+ "title": "Not Found",
735
+ "category": "Shared / Auth",
736
+ "examples": [
737
+ {
738
+ "id": "not-found--default",
739
+ "description": "Default Not Found usage",
740
+ "files": [
741
+ "apps/storybook/stories/catalog/not-found.stories.tsx"
742
+ ]
743
+ }
744
+ ]
745
+ },
746
+ {
747
+ "id": "chart",
748
+ "title": "Chart",
749
+ "category": "Data / Visualization",
750
+ "examples": [
751
+ {
752
+ "id": "chart--default",
753
+ "description": "Default Chart usage",
754
+ "files": [
755
+ "apps/storybook/stories/catalog/chart.stories.tsx"
756
+ ]
757
+ }
758
+ ]
759
+ },
760
+ {
761
+ "id": "messaging",
762
+ "title": "Messaging",
763
+ "category": "Communication / Messaging",
764
+ "examples": [
765
+ {
766
+ "id": "messaging--default",
767
+ "description": "Default Messaging usage",
768
+ "files": [
769
+ "apps/storybook/stories/catalog/messaging.stories.tsx"
770
+ ]
771
+ }
772
+ ]
773
+ },
774
+ {
775
+ "id": "progress-steps",
776
+ "title": "Progress Steps",
777
+ "category": "Navigation / Progress",
778
+ "examples": [
779
+ {
780
+ "id": "progress-steps--default",
781
+ "description": "Default Progress Steps usage",
782
+ "files": [
783
+ "apps/storybook/stories/catalog/progress-steps.stories.tsx"
784
+ ]
785
+ }
786
+ ]
787
+ },
788
+ {
789
+ "id": "dashboard-01",
790
+ "title": "Dashboard 01",
791
+ "category": "Application Examples",
792
+ "examples": [
793
+ {
794
+ "id": "dashboard-01--default",
795
+ "description": "Default Dashboard 01 usage",
796
+ "files": [
797
+ "apps/storybook/stories/catalog/dashboard-01.stories.tsx"
798
+ ]
799
+ }
800
+ ]
801
+ },
802
+ {
803
+ "id": "dashboard-02",
804
+ "title": "Dashboard 02",
805
+ "category": "Application Examples",
806
+ "examples": [
807
+ {
808
+ "id": "dashboard-02--default",
809
+ "description": "Default Dashboard 02 usage",
810
+ "files": [
811
+ "apps/storybook/stories/catalog/dashboard-02.stories.tsx"
812
+ ]
813
+ }
814
+ ]
815
+ },
816
+ {
817
+ "id": "settings-01",
818
+ "title": "Settings 01",
819
+ "category": "Application Examples",
820
+ "examples": [
821
+ {
822
+ "id": "settings-01--default",
823
+ "description": "Default Settings 01 usage",
824
+ "files": [
825
+ "apps/storybook/stories/catalog/settings-01.stories.tsx"
826
+ ]
827
+ }
828
+ ]
829
+ },
830
+ {
831
+ "id": "settings-02",
832
+ "title": "Settings 02",
833
+ "category": "Application Examples",
834
+ "examples": [
835
+ {
836
+ "id": "settings-02--default",
837
+ "description": "Default Settings 02 usage",
838
+ "files": [
839
+ "apps/storybook/stories/catalog/settings-02.stories.tsx"
840
+ ]
841
+ }
842
+ ]
843
+ },
844
+ {
845
+ "id": "hero-header",
846
+ "title": "Hero Header",
847
+ "category": "Marketing / Hero",
848
+ "examples": [
849
+ {
850
+ "id": "hero-header--default",
851
+ "description": "Default Hero Header usage",
852
+ "files": [
853
+ "apps/storybook/stories/catalog/hero-header.stories.tsx"
854
+ ]
855
+ }
856
+ ]
857
+ },
858
+ {
859
+ "id": "marketing-header",
860
+ "title": "Marketing Header",
861
+ "category": "Marketing / Header",
862
+ "examples": [
863
+ {
864
+ "id": "marketing-header--default",
865
+ "description": "Default Marketing Header usage",
866
+ "files": [
867
+ "apps/storybook/stories/catalog/marketing-header.stories.tsx"
868
+ ]
869
+ }
870
+ ]
871
+ },
872
+ {
873
+ "id": "landing-page",
874
+ "title": "Landing Page",
875
+ "category": "Marketing / Pages",
876
+ "examples": [
877
+ {
878
+ "id": "landing-page--default",
879
+ "description": "Default Landing Page usage",
880
+ "files": [
881
+ "apps/storybook/stories/catalog/landing-page.stories.tsx"
882
+ ]
883
+ }
884
+ ]
885
+ },
886
+ {
887
+ "id": "avatar",
888
+ "title": "Avatar",
889
+ "category": "Base / Identity",
890
+ "examples": [
891
+ {
892
+ "id": "avatar--default",
893
+ "description": "Default Avatar usage",
894
+ "files": [
895
+ "apps/storybook/stories/catalog/avatar.stories.tsx"
896
+ ]
897
+ }
898
+ ]
899
+ },
900
+ {
901
+ "id": "badge-group",
902
+ "title": "Badge Group",
903
+ "category": "Base / Identity",
904
+ "examples": [
905
+ {
906
+ "id": "badge-group--default",
907
+ "description": "Default Badge Group usage",
908
+ "files": [
909
+ "apps/storybook/stories/catalog/badge-group.stories.tsx"
910
+ ]
911
+ }
912
+ ]
913
+ },
914
+ {
915
+ "id": "button-group",
916
+ "title": "Button Group",
917
+ "category": "Base / Actions",
918
+ "examples": [
919
+ {
920
+ "id": "button-group--default",
921
+ "description": "Default Button Group usage",
922
+ "files": [
923
+ "apps/storybook/stories/catalog/button-group.stories.tsx"
924
+ ]
925
+ }
926
+ ]
927
+ },
928
+ {
929
+ "id": "checkbox",
930
+ "title": "Checkbox",
931
+ "category": "Base / Forms",
932
+ "examples": [
933
+ {
934
+ "id": "checkbox--default",
935
+ "description": "Default Checkbox usage",
936
+ "files": [
937
+ "apps/storybook/stories/catalog/checkbox.stories.tsx"
938
+ ]
939
+ }
940
+ ]
941
+ },
942
+ {
943
+ "id": "radio-group",
944
+ "title": "Radio Group",
945
+ "category": "Base / Forms",
946
+ "examples": [
947
+ {
948
+ "id": "radio-group--default",
949
+ "description": "Default Radio Group usage",
950
+ "files": [
951
+ "apps/storybook/stories/catalog/radio-group.stories.tsx"
952
+ ]
953
+ }
954
+ ]
955
+ },
956
+ {
957
+ "id": "toggle",
958
+ "title": "Toggle",
959
+ "category": "Base / Forms",
960
+ "examples": [
961
+ {
962
+ "id": "toggle--default",
963
+ "description": "Default Toggle usage",
964
+ "files": [
965
+ "apps/storybook/stories/catalog/toggle.stories.tsx"
966
+ ]
967
+ }
968
+ ]
969
+ },
970
+ {
971
+ "id": "select",
972
+ "title": "Select",
973
+ "category": "Base / Forms",
974
+ "examples": [
975
+ {
976
+ "id": "select--default",
977
+ "description": "Default Select usage",
978
+ "files": [
979
+ "apps/storybook/stories/catalog/select.stories.tsx"
980
+ ]
981
+ }
982
+ ]
983
+ },
984
+ {
985
+ "id": "multi-select",
986
+ "title": "Multi Select",
987
+ "category": "Base / Forms",
988
+ "examples": [
989
+ {
990
+ "id": "multi-select--default",
991
+ "description": "Default Multi Select usage",
992
+ "files": [
993
+ "apps/storybook/stories/catalog/multi-select.stories.tsx"
994
+ ]
995
+ }
996
+ ]
997
+ },
998
+ {
999
+ "id": "slider",
1000
+ "title": "Slider",
1001
+ "category": "Base / Forms",
1002
+ "examples": [
1003
+ {
1004
+ "id": "slider--default",
1005
+ "description": "Default Slider usage",
1006
+ "files": [
1007
+ "apps/storybook/stories/catalog/slider.stories.tsx"
1008
+ ]
1009
+ }
1010
+ ]
1011
+ },
1012
+ {
1013
+ "id": "tags",
1014
+ "title": "Tags",
1015
+ "category": "Base / Forms",
1016
+ "examples": [
1017
+ {
1018
+ "id": "tags--default",
1019
+ "description": "Default Tags usage",
1020
+ "files": [
1021
+ "apps/storybook/stories/catalog/tags.stories.tsx"
1022
+ ]
1023
+ }
1024
+ ]
1025
+ },
1026
+ {
1027
+ "id": "verification-code",
1028
+ "title": "Verification Code",
1029
+ "category": "Base / Forms",
1030
+ "examples": [
1031
+ {
1032
+ "id": "verification-code--default",
1033
+ "description": "Default Verification Code usage",
1034
+ "files": [
1035
+ "apps/storybook/stories/catalog/verification-code.stories.tsx"
1036
+ ]
1037
+ }
1038
+ ]
1039
+ },
1040
+ {
1041
+ "id": "calendar",
1042
+ "title": "Calendar",
1043
+ "category": "Base / Pickers",
1044
+ "examples": [
1045
+ {
1046
+ "id": "calendar--default",
1047
+ "description": "Default Calendar usage",
1048
+ "files": [
1049
+ "apps/storybook/stories/catalog/calendar.stories.tsx"
1050
+ ]
1051
+ }
1052
+ ]
1053
+ },
1054
+ {
1055
+ "id": "date-picker",
1056
+ "title": "Date Picker",
1057
+ "category": "Base / Pickers",
1058
+ "examples": [
1059
+ {
1060
+ "id": "date-picker--default",
1061
+ "description": "Default Date Picker usage",
1062
+ "files": [
1063
+ "apps/storybook/stories/catalog/date-picker.stories.tsx"
1064
+ ]
1065
+ }
1066
+ ]
1067
+ },
1068
+ {
1069
+ "id": "color-picker",
1070
+ "title": "Color Picker",
1071
+ "category": "Base / Pickers",
1072
+ "examples": [
1073
+ {
1074
+ "id": "color-picker--default",
1075
+ "description": "Default Color Picker usage",
1076
+ "files": [
1077
+ "apps/storybook/stories/catalog/color-picker.stories.tsx"
1078
+ ]
1079
+ }
1080
+ ]
1081
+ },
1082
+ {
1083
+ "id": "file-uploader",
1084
+ "title": "File Uploader",
1085
+ "category": "Base / Pickers",
1086
+ "examples": [
1087
+ {
1088
+ "id": "file-uploader--default",
1089
+ "description": "Default File Uploader usage",
1090
+ "files": [
1091
+ "apps/storybook/stories/catalog/file-uploader.stories.tsx"
1092
+ ]
1093
+ }
1094
+ ]
1095
+ },
1096
+ {
1097
+ "id": "rich-text-editor",
1098
+ "title": "Rich Text Editor",
1099
+ "category": "Base / Pickers",
1100
+ "examples": [
1101
+ {
1102
+ "id": "rich-text-editor--default",
1103
+ "description": "Default Rich Text Editor usage",
1104
+ "files": [
1105
+ "apps/storybook/stories/catalog/rich-text-editor.stories.tsx"
1106
+ ]
1107
+ }
1108
+ ]
1109
+ },
1110
+ {
1111
+ "id": "command-menu",
1112
+ "title": "Command Menu",
1113
+ "category": "Overlays / Navigation",
1114
+ "examples": [
1115
+ {
1116
+ "id": "command-menu--default",
1117
+ "description": "Default Command Menu usage",
1118
+ "files": [
1119
+ "apps/storybook/stories/catalog/command-menu.stories.tsx"
1120
+ ]
1121
+ }
1122
+ ]
1123
+ },
1124
+ {
1125
+ "id": "tree-view",
1126
+ "title": "Tree View",
1127
+ "category": "Navigation / Disclosure",
1128
+ "examples": [
1129
+ {
1130
+ "id": "tree-view--default",
1131
+ "description": "Default Tree View usage",
1132
+ "files": [
1133
+ "apps/storybook/stories/catalog/tree-view.stories.tsx"
1134
+ ]
1135
+ }
1136
+ ]
1137
+ },
1138
+ {
1139
+ "id": "carousel",
1140
+ "title": "Carousel",
1141
+ "category": "Navigation / Disclosure",
1142
+ "examples": [
1143
+ {
1144
+ "id": "carousel--default",
1145
+ "description": "Default Carousel usage",
1146
+ "files": [
1147
+ "apps/storybook/stories/catalog/carousel.stories.tsx"
1148
+ ]
1149
+ }
1150
+ ]
1151
+ },
1152
+ {
1153
+ "id": "content-divider",
1154
+ "title": "Content Divider",
1155
+ "category": "Primitives / Layout",
1156
+ "examples": [
1157
+ {
1158
+ "id": "content-divider--default",
1159
+ "description": "Default Content Divider usage",
1160
+ "files": [
1161
+ "apps/storybook/stories/catalog/content-divider.stories.tsx"
1162
+ ]
1163
+ }
1164
+ ]
1165
+ },
1166
+ {
1167
+ "id": "section-footer",
1168
+ "title": "Section Footer",
1169
+ "category": "Patterns / Application",
1170
+ "examples": [
1171
+ {
1172
+ "id": "section-footer--default",
1173
+ "description": "Default Section Footer usage",
1174
+ "files": [
1175
+ "apps/storybook/stories/catalog/section-footer.stories.tsx"
1176
+ ]
1177
+ }
1178
+ ]
1179
+ },
1180
+ {
1181
+ "id": "notification",
1182
+ "title": "Notification",
1183
+ "category": "Feedback / Notifications",
1184
+ "examples": [
1185
+ {
1186
+ "id": "notification--default",
1187
+ "description": "Default Notification usage",
1188
+ "files": [
1189
+ "apps/storybook/stories/catalog/notification.stories.tsx"
1190
+ ]
1191
+ }
1192
+ ]
1193
+ },
1194
+ {
1195
+ "id": "activity-gauge",
1196
+ "title": "Activity Gauge",
1197
+ "category": "Data / Visualization",
1198
+ "examples": [
1199
+ {
1200
+ "id": "activity-gauge--default",
1201
+ "description": "Default Activity Gauge usage",
1202
+ "files": [
1203
+ "apps/storybook/stories/catalog/activity-gauge.stories.tsx"
1204
+ ]
1205
+ }
1206
+ ]
1207
+ },
1208
+ {
1209
+ "id": "pie-chart",
1210
+ "title": "Pie Chart",
1211
+ "category": "Data / Visualization",
1212
+ "examples": [
1213
+ {
1214
+ "id": "pie-chart--default",
1215
+ "description": "Default Pie Chart usage",
1216
+ "files": [
1217
+ "apps/storybook/stories/catalog/pie-chart.stories.tsx"
1218
+ ]
1219
+ }
1220
+ ]
1221
+ },
1222
+ {
1223
+ "id": "radar-chart",
1224
+ "title": "Radar Chart",
1225
+ "category": "Data / Visualization",
1226
+ "examples": [
1227
+ {
1228
+ "id": "radar-chart--default",
1229
+ "description": "Default Radar Chart usage",
1230
+ "files": [
1231
+ "apps/storybook/stories/catalog/radar-chart.stories.tsx"
1232
+ ]
1233
+ }
1234
+ ]
1235
+ },
1236
+ {
1237
+ "id": "credit-card",
1238
+ "title": "Credit Card",
1239
+ "category": "Base / Identity",
1240
+ "examples": [
1241
+ {
1242
+ "id": "credit-card--default",
1243
+ "description": "Default Credit Card usage",
1244
+ "files": [
1245
+ "apps/storybook/stories/catalog/credit-card.stories.tsx"
1246
+ ]
1247
+ }
1248
+ ]
1249
+ },
1250
+ {
1251
+ "id": "qr-code",
1252
+ "title": "Qr Code",
1253
+ "category": "Base / Identity",
1254
+ "examples": [
1255
+ {
1256
+ "id": "qr-code--default",
1257
+ "description": "Default Qr Code usage",
1258
+ "files": [
1259
+ "apps/storybook/stories/catalog/qr-code.stories.tsx"
1260
+ ]
1261
+ }
1262
+ ]
1263
+ },
1264
+ {
1265
+ "id": "rating",
1266
+ "title": "Rating",
1267
+ "category": "Base / Identity",
1268
+ "examples": [
1269
+ {
1270
+ "id": "rating--default",
1271
+ "description": "Default Rating usage",
1272
+ "files": [
1273
+ "apps/storybook/stories/catalog/rating.stories.tsx"
1274
+ ]
1275
+ }
1276
+ ]
1277
+ },
1278
+ {
1279
+ "id": "video-player",
1280
+ "title": "Video Player",
1281
+ "category": "Base / Media",
1282
+ "examples": [
1283
+ {
1284
+ "id": "video-player--default",
1285
+ "description": "Default Video Player usage",
1286
+ "files": [
1287
+ "apps/storybook/stories/catalog/video-player.stories.tsx"
1288
+ ]
1289
+ }
1290
+ ]
1291
+ },
1292
+ {
1293
+ "id": "illustration",
1294
+ "title": "Illustration",
1295
+ "category": "Base / Media",
1296
+ "examples": [
1297
+ {
1298
+ "id": "illustration--default",
1299
+ "description": "Default Illustration usage",
1300
+ "files": [
1301
+ "apps/storybook/stories/catalog/illustration.stories.tsx"
1302
+ ]
1303
+ }
1304
+ ]
1305
+ },
1306
+ {
1307
+ "id": "store-button",
1308
+ "title": "Store Button",
1309
+ "category": "Base / Identity",
1310
+ "examples": [
1311
+ {
1312
+ "id": "store-button--default",
1313
+ "description": "Default Store Button usage",
1314
+ "files": [
1315
+ "apps/storybook/stories/catalog/store-button.stories.tsx"
1316
+ ]
1317
+ }
1318
+ ]
1319
+ },
1320
+ {
1321
+ "id": "social-button",
1322
+ "title": "Social Button",
1323
+ "category": "Base / Identity",
1324
+ "examples": [
1325
+ {
1326
+ "id": "social-button--default",
1327
+ "description": "Default Social Button usage",
1328
+ "files": [
1329
+ "apps/storybook/stories/catalog/social-button.stories.tsx"
1330
+ ]
1331
+ }
1332
+ ]
1333
+ },
1334
+ {
1335
+ "id": "progress-indicator",
1336
+ "title": "Progress Indicator",
1337
+ "category": "Base / Feedback",
1338
+ "examples": [
1339
+ {
1340
+ "id": "progress-indicator--default",
1341
+ "description": "Default Progress Indicator usage",
1342
+ "files": [
1343
+ "apps/storybook/stories/catalog/progress-indicator.stories.tsx"
1344
+ ]
1345
+ }
1346
+ ]
1347
+ },
1348
+ {
1349
+ "id": "sign-up-page",
1350
+ "title": "Sign Up Page",
1351
+ "category": "Shared / Auth",
1352
+ "examples": [
1353
+ {
1354
+ "id": "sign-up-page--default",
1355
+ "description": "Default Sign Up Page usage",
1356
+ "files": [
1357
+ "apps/storybook/stories/catalog/sign-up-page.stories.tsx"
1358
+ ]
1359
+ }
1360
+ ]
1361
+ },
1362
+ {
1363
+ "id": "verification-page",
1364
+ "title": "Verification Page",
1365
+ "category": "Shared / Auth",
1366
+ "examples": [
1367
+ {
1368
+ "id": "verification-page--default",
1369
+ "description": "Default Verification Page usage",
1370
+ "files": [
1371
+ "apps/storybook/stories/catalog/verification-page.stories.tsx"
1372
+ ]
1373
+ }
1374
+ ]
1375
+ },
1376
+ {
1377
+ "id": "forgot-password-page",
1378
+ "title": "Forgot Password Page",
1379
+ "category": "Shared / Auth",
1380
+ "examples": [
1381
+ {
1382
+ "id": "forgot-password-page--default",
1383
+ "description": "Default Forgot Password Page usage",
1384
+ "files": [
1385
+ "apps/storybook/stories/catalog/forgot-password-page.stories.tsx"
1386
+ ]
1387
+ }
1388
+ ]
1389
+ },
1390
+ {
1391
+ "id": "email-template",
1392
+ "title": "Email Template",
1393
+ "category": "Shared / Auth",
1394
+ "examples": [
1395
+ {
1396
+ "id": "email-template--default",
1397
+ "description": "Default Email Template usage",
1398
+ "files": [
1399
+ "apps/storybook/stories/catalog/email-template.stories.tsx"
1400
+ ]
1401
+ }
1402
+ ]
1403
+ },
1404
+ {
1405
+ "id": "informational-page-01",
1406
+ "title": "Informational Page 01",
1407
+ "category": "Application Examples",
1408
+ "examples": [
1409
+ {
1410
+ "id": "informational-page-01--default",
1411
+ "description": "Default Informational Page 01 usage",
1412
+ "files": [
1413
+ "apps/storybook/stories/catalog/informational-page-01.stories.tsx"
1414
+ ]
1415
+ }
1416
+ ]
1417
+ },
1418
+ {
1419
+ "id": "informational-page-02",
1420
+ "title": "Informational Page 02",
1421
+ "category": "Application Examples",
1422
+ "examples": [
1423
+ {
1424
+ "id": "informational-page-02--default",
1425
+ "description": "Default Informational Page 02 usage",
1426
+ "files": [
1427
+ "apps/storybook/stories/catalog/informational-page-02.stories.tsx"
1428
+ ]
1429
+ }
1430
+ ]
1431
+ },
1432
+ {
1433
+ "id": "banner",
1434
+ "title": "Banner",
1435
+ "category": "Marketing / Banner",
1436
+ "examples": [
1437
+ {
1438
+ "id": "banner--default",
1439
+ "description": "Default Banner usage",
1440
+ "files": [
1441
+ "apps/storybook/stories/catalog/banner.stories.tsx"
1442
+ ]
1443
+ }
1444
+ ]
1445
+ },
1446
+ {
1447
+ "id": "blog-section",
1448
+ "title": "Blog Section",
1449
+ "category": "Marketing / Blog",
1450
+ "examples": [
1451
+ {
1452
+ "id": "blog-section--default",
1453
+ "description": "Default Blog Section usage",
1454
+ "files": [
1455
+ "apps/storybook/stories/catalog/blog-section.stories.tsx"
1456
+ ]
1457
+ }
1458
+ ]
1459
+ },
1460
+ {
1461
+ "id": "careers-section",
1462
+ "title": "Careers Section",
1463
+ "category": "Marketing / Careers",
1464
+ "examples": [
1465
+ {
1466
+ "id": "careers-section--default",
1467
+ "description": "Default Careers Section usage",
1468
+ "files": [
1469
+ "apps/storybook/stories/catalog/careers-section.stories.tsx"
1470
+ ]
1471
+ }
1472
+ ]
1473
+ },
1474
+ {
1475
+ "id": "contact-section",
1476
+ "title": "Contact Section",
1477
+ "category": "Marketing / Contact",
1478
+ "examples": [
1479
+ {
1480
+ "id": "contact-section--default",
1481
+ "description": "Default Contact Section usage",
1482
+ "files": [
1483
+ "apps/storybook/stories/catalog/contact-section.stories.tsx"
1484
+ ]
1485
+ }
1486
+ ]
1487
+ },
1488
+ {
1489
+ "id": "content-section",
1490
+ "title": "Content Section",
1491
+ "category": "Marketing / Content",
1492
+ "examples": [
1493
+ {
1494
+ "id": "content-section--default",
1495
+ "description": "Default Content Section usage",
1496
+ "files": [
1497
+ "apps/storybook/stories/catalog/content-section.stories.tsx"
1498
+ ]
1499
+ }
1500
+ ]
1501
+ },
1502
+ {
1503
+ "id": "cta-section",
1504
+ "title": "Cta Section",
1505
+ "category": "Marketing / CTA",
1506
+ "examples": [
1507
+ {
1508
+ "id": "cta-section--default",
1509
+ "description": "Default Cta Section usage",
1510
+ "files": [
1511
+ "apps/storybook/stories/catalog/cta-section.stories.tsx"
1512
+ ]
1513
+ }
1514
+ ]
1515
+ },
1516
+ {
1517
+ "id": "faq-section",
1518
+ "title": "Faq Section",
1519
+ "category": "Marketing / FAQ",
1520
+ "examples": [
1521
+ {
1522
+ "id": "faq-section--default",
1523
+ "description": "Default Faq Section usage",
1524
+ "files": [
1525
+ "apps/storybook/stories/catalog/faq-section.stories.tsx"
1526
+ ]
1527
+ }
1528
+ ]
1529
+ },
1530
+ {
1531
+ "id": "feature-section",
1532
+ "title": "Feature Section",
1533
+ "category": "Marketing / Features",
1534
+ "examples": [
1535
+ {
1536
+ "id": "feature-section--default",
1537
+ "description": "Default Feature Section usage",
1538
+ "files": [
1539
+ "apps/storybook/stories/catalog/feature-section.stories.tsx"
1540
+ ]
1541
+ }
1542
+ ]
1543
+ },
1544
+ {
1545
+ "id": "footer",
1546
+ "title": "Footer",
1547
+ "category": "Marketing / Footer",
1548
+ "examples": [
1549
+ {
1550
+ "id": "footer--default",
1551
+ "description": "Default Footer usage",
1552
+ "files": [
1553
+ "apps/storybook/stories/catalog/footer.stories.tsx"
1554
+ ]
1555
+ }
1556
+ ]
1557
+ },
1558
+ {
1559
+ "id": "metrics-section",
1560
+ "title": "Metrics Section",
1561
+ "category": "Marketing / Metrics",
1562
+ "examples": [
1563
+ {
1564
+ "id": "metrics-section--default",
1565
+ "description": "Default Metrics Section usage",
1566
+ "files": [
1567
+ "apps/storybook/stories/catalog/metrics-section.stories.tsx"
1568
+ ]
1569
+ }
1570
+ ]
1571
+ },
1572
+ {
1573
+ "id": "newsletter",
1574
+ "title": "Newsletter",
1575
+ "category": "Marketing / Newsletter",
1576
+ "examples": [
1577
+ {
1578
+ "id": "newsletter--default",
1579
+ "description": "Default Newsletter usage",
1580
+ "files": [
1581
+ "apps/storybook/stories/catalog/newsletter.stories.tsx"
1582
+ ]
1583
+ }
1584
+ ]
1585
+ },
1586
+ {
1587
+ "id": "pricing-section",
1588
+ "title": "Pricing Section",
1589
+ "category": "Marketing / Pricing",
1590
+ "examples": [
1591
+ {
1592
+ "id": "pricing-section--default",
1593
+ "description": "Default Pricing Section usage",
1594
+ "files": [
1595
+ "apps/storybook/stories/catalog/pricing-section.stories.tsx"
1596
+ ]
1597
+ }
1598
+ ]
1599
+ },
1600
+ {
1601
+ "id": "social-proof",
1602
+ "title": "Social Proof",
1603
+ "category": "Marketing / Social",
1604
+ "examples": [
1605
+ {
1606
+ "id": "social-proof--default",
1607
+ "description": "Default Social Proof usage",
1608
+ "files": [
1609
+ "apps/storybook/stories/catalog/social-proof.stories.tsx"
1610
+ ]
1611
+ }
1612
+ ]
1613
+ },
1614
+ {
1615
+ "id": "team-section",
1616
+ "title": "Team Section",
1617
+ "category": "Marketing / Team",
1618
+ "examples": [
1619
+ {
1620
+ "id": "team-section--default",
1621
+ "description": "Default Team Section usage",
1622
+ "files": [
1623
+ "apps/storybook/stories/catalog/team-section.stories.tsx"
1624
+ ]
1625
+ }
1626
+ ]
1627
+ },
1628
+ {
1629
+ "id": "testimonial-section",
1630
+ "title": "Testimonial Section",
1631
+ "category": "Marketing / Testimonial",
1632
+ "examples": [
1633
+ {
1634
+ "id": "testimonial-section--default",
1635
+ "description": "Default Testimonial Section usage",
1636
+ "files": [
1637
+ "apps/storybook/stories/catalog/testimonial-section.stories.tsx"
1638
+ ]
1639
+ }
1640
+ ]
1641
+ },
1642
+ {
1643
+ "id": "about-page",
1644
+ "title": "About Page",
1645
+ "category": "Marketing / Pages",
1646
+ "examples": [
1647
+ {
1648
+ "id": "about-page--default",
1649
+ "description": "Default About Page usage",
1650
+ "files": [
1651
+ "apps/storybook/stories/catalog/about-page.stories.tsx"
1652
+ ]
1653
+ }
1654
+ ]
1655
+ },
1656
+ {
1657
+ "id": "blog-post-page",
1658
+ "title": "Blog Post Page",
1659
+ "category": "Marketing / Pages",
1660
+ "examples": [
1661
+ {
1662
+ "id": "blog-post-page--default",
1663
+ "description": "Default Blog Post Page usage",
1664
+ "files": [
1665
+ "apps/storybook/stories/catalog/blog-post-page.stories.tsx"
1666
+ ]
1667
+ }
1668
+ ]
1669
+ },
1670
+ {
1671
+ "id": "blog-index-page",
1672
+ "title": "Blog Index Page",
1673
+ "category": "Marketing / Pages",
1674
+ "examples": [
1675
+ {
1676
+ "id": "blog-index-page--default",
1677
+ "description": "Default Blog Index Page usage",
1678
+ "files": [
1679
+ "apps/storybook/stories/catalog/blog-index-page.stories.tsx"
1680
+ ]
1681
+ }
1682
+ ]
1683
+ },
1684
+ {
1685
+ "id": "contact-page",
1686
+ "title": "Contact Page",
1687
+ "category": "Marketing / Pages",
1688
+ "examples": [
1689
+ {
1690
+ "id": "contact-page--default",
1691
+ "description": "Default Contact Page usage",
1692
+ "files": [
1693
+ "apps/storybook/stories/catalog/contact-page.stories.tsx"
1694
+ ]
1695
+ }
1696
+ ]
1697
+ },
1698
+ {
1699
+ "id": "faq-page",
1700
+ "title": "Faq Page",
1701
+ "category": "Marketing / Pages",
1702
+ "examples": [
1703
+ {
1704
+ "id": "faq-page--default",
1705
+ "description": "Default Faq Page usage",
1706
+ "files": [
1707
+ "apps/storybook/stories/catalog/faq-page.stories.tsx"
1708
+ ]
1709
+ }
1710
+ ]
1711
+ },
1712
+ {
1713
+ "id": "legal-page",
1714
+ "title": "Legal Page",
1715
+ "category": "Marketing / Pages",
1716
+ "examples": [
1717
+ {
1718
+ "id": "legal-page--default",
1719
+ "description": "Default Legal Page usage",
1720
+ "files": [
1721
+ "apps/storybook/stories/catalog/legal-page.stories.tsx"
1722
+ ]
1723
+ }
1724
+ ]
1725
+ },
1726
+ {
1727
+ "id": "pricing-page",
1728
+ "title": "Pricing Page",
1729
+ "category": "Marketing / Pages",
1730
+ "examples": [
1731
+ {
1732
+ "id": "pricing-page--default",
1733
+ "description": "Default Pricing Page usage",
1734
+ "files": [
1735
+ "apps/storybook/stories/catalog/pricing-page.stories.tsx"
1736
+ ]
1737
+ }
1738
+ ]
1739
+ },
1740
+ {
1741
+ "id": "team-page",
1742
+ "title": "Team Page",
1743
+ "category": "Marketing / Pages",
1744
+ "examples": [
1745
+ {
1746
+ "id": "team-page--default",
1747
+ "description": "Default Team Page usage",
1748
+ "files": [
1749
+ "apps/storybook/stories/catalog/team-page.stories.tsx"
1750
+ ]
1751
+ }
1752
+ ]
1753
+ },
1754
+ {
1755
+ "id": "marketing-404-page",
1756
+ "title": "Marketing 404 Page",
1757
+ "category": "Marketing / Pages",
1758
+ "examples": [
1759
+ {
1760
+ "id": "marketing-404-page--default",
1761
+ "description": "Default Marketing 404 Page usage",
1762
+ "files": [
1763
+ "apps/storybook/stories/catalog/marketing-404-page.stories.tsx"
1764
+ ]
1765
+ }
1766
+ ]
1767
+ },
1768
+ {
1769
+ "id": "gradient-picker",
1770
+ "title": "Gradient Picker",
1771
+ "category": "Application Components",
1772
+ "examples": [
1773
+ {
1774
+ "id": "gradient-picker--default",
1775
+ "description": "Default Gradient Picker usage",
1776
+ "files": [
1777
+ "apps/storybook/stories/catalog/gradient-picker.stories.tsx"
1778
+ ]
1779
+ }
1780
+ ]
1781
+ },
1782
+ {
1783
+ "id": "image-picker",
1784
+ "title": "Image Picker",
1785
+ "category": "Application Components",
1786
+ "examples": [
1787
+ {
1788
+ "id": "image-picker--default",
1789
+ "description": "Default Image Picker usage",
1790
+ "files": [
1791
+ "apps/storybook/stories/catalog/image-picker.stories.tsx"
1792
+ ]
1793
+ }
1794
+ ]
1795
+ },
1796
+ {
1797
+ "id": "inline-cta",
1798
+ "title": "Inline Cta",
1799
+ "category": "Application Components",
1800
+ "examples": [
1801
+ {
1802
+ "id": "inline-cta--default",
1803
+ "description": "Default Inline Cta usage",
1804
+ "files": [
1805
+ "apps/storybook/stories/catalog/inline-cta.stories.tsx"
1806
+ ]
1807
+ }
1808
+ ]
1809
+ },
1810
+ {
1811
+ "id": "ecosystem-sphere",
1812
+ "title": "Ecosystem Sphere",
1813
+ "category": "Cinematic / 3D System",
1814
+ "examples": [
1815
+ {
1816
+ "id": "ecosystem-sphere--default",
1817
+ "description": "Default sphere",
1818
+ "files": [
1819
+ "packages/ui/src/cinematic/ecosystem-sphere.tsx"
1820
+ ]
1821
+ }
1822
+ ]
1823
+ },
1824
+ {
1825
+ "id": "system-anatomy",
1826
+ "title": "System Anatomy",
1827
+ "category": "Cinematic / 3D System",
1828
+ "examples": [
1829
+ {
1830
+ "id": "system-anatomy--default",
1831
+ "description": "Default",
1832
+ "files": [
1833
+ "packages/ui/src/cinematic/system-anatomy.tsx"
1834
+ ]
1835
+ }
1836
+ ]
1837
+ },
1838
+ {
1839
+ "id": "ecosystem-motion-showcase",
1840
+ "title": "Ecosystem Motion Showcase",
1841
+ "category": "Cinematic / 3D System",
1842
+ "examples": [
1843
+ {
1844
+ "id": "ecosystem-motion-showcase--default",
1845
+ "description": "Default",
1846
+ "files": [
1847
+ "packages/ui/src/cinematic/ecosystem-motion-showcase.tsx"
1848
+ ]
1849
+ }
1850
+ ]
1851
+ },
1852
+ {
1853
+ "id": "kinetic-experience",
1854
+ "title": "Kinetic Experience",
1855
+ "category": "Cinematic / Motion",
1856
+ "examples": [
1857
+ {
1858
+ "id": "kinetic-experience--default",
1859
+ "description": "Default",
1860
+ "files": [
1861
+ "packages/ui/src/cinematic/kinetic-experience.tsx"
1862
+ ]
1863
+ }
1864
+ ]
1865
+ },
1866
+ {
1867
+ "id": "landing-cinematic",
1868
+ "title": "Landing — Cinematic System",
1869
+ "category": "Cinematic / Pages",
1870
+ "examples": [
1871
+ {
1872
+ "id": "landing-cinematic--default",
1873
+ "description": "Default",
1874
+ "files": [
1875
+ "apps/showcase/src/catalog/catalog-index.tsx"
1876
+ ]
1877
+ }
1878
+ ]
1879
+ }
1880
+ ]
1881
+ }