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,1038 @@
1
+ {
2
+ "$schema": "https://noecosystem.com/schema/component-audit.json",
3
+ "generatedNote": "Canonical NOE public-component inventory. status=available requires a public export, a Storybook story at storyId, and (where distributable) a registry entry. Do not mark an item available without all three. (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json) (derived from manifest.json)",
4
+ "items": [
5
+ {
6
+ "id": "bidi-text",
7
+ "package": "@noe/ui",
8
+ "category": "Foundations / Direction & Bidi",
9
+ "status": "available",
10
+ "storyId": "catalog-foundations-bidi-text--default",
11
+ "registryItem": "bidi-text"
12
+ },
13
+ {
14
+ "id": "direction-provider",
15
+ "package": "@noe/ui",
16
+ "category": "Foundations / Direction & Bidi",
17
+ "status": "available",
18
+ "storyId": "catalog-foundations-direction-provider--default",
19
+ "registryItem": "direction-provider"
20
+ },
21
+ {
22
+ "id": "code-and-terminal",
23
+ "package": "@noe/ui",
24
+ "category": "Foundations / Technical Content",
25
+ "status": "available",
26
+ "storyId": "catalog-foundations-code-and-terminal--default",
27
+ "registryItem": "code-block"
28
+ },
29
+ {
30
+ "id": "icon-system",
31
+ "package": "@noe/icons",
32
+ "category": "Foundations / Icons",
33
+ "status": "available",
34
+ "storyId": "catalog-foundations-icon-system--default",
35
+ "registryItem": "icon-system"
36
+ },
37
+ {
38
+ "id": "button",
39
+ "package": "@noe/ui",
40
+ "category": "Primitives / Actions",
41
+ "status": "available",
42
+ "storyId": "catalog-primitives-button--default",
43
+ "registryItem": "button"
44
+ },
45
+ {
46
+ "id": "input",
47
+ "package": "@noe/ui",
48
+ "category": "Primitives / Forms",
49
+ "status": "available",
50
+ "storyId": "catalog-primitives-input--default",
51
+ "registryItem": "input"
52
+ },
53
+ {
54
+ "id": "field",
55
+ "package": "@noe/ui",
56
+ "category": "Primitives / Forms",
57
+ "status": "available",
58
+ "storyId": "catalog-primitives-field--default",
59
+ "registryItem": "input"
60
+ },
61
+ {
62
+ "id": "textarea",
63
+ "package": "@noe/ui",
64
+ "category": "Primitives / Forms",
65
+ "status": "available",
66
+ "storyId": "catalog-primitives-textarea--default",
67
+ "registryItem": "textarea"
68
+ },
69
+ {
70
+ "id": "card",
71
+ "package": "@noe/ui",
72
+ "category": "Primitives / Layout",
73
+ "status": "available",
74
+ "storyId": "catalog-primitives-card--default",
75
+ "registryItem": "card"
76
+ },
77
+ {
78
+ "id": "alert",
79
+ "package": "@noe/ui",
80
+ "category": "Feedback",
81
+ "status": "available",
82
+ "storyId": "catalog-feedback-alert--default",
83
+ "registryItem": "alert"
84
+ },
85
+ {
86
+ "id": "badge",
87
+ "package": "@noe/ui",
88
+ "category": "Feedback",
89
+ "status": "available",
90
+ "storyId": "catalog-feedback-badge--default",
91
+ "registryItem": "badge"
92
+ },
93
+ {
94
+ "id": "skeleton",
95
+ "package": "@noe/ui",
96
+ "category": "Feedback",
97
+ "status": "available",
98
+ "storyId": "catalog-feedback-skeleton--default",
99
+ "registryItem": "skeleton"
100
+ },
101
+ {
102
+ "id": "spinner",
103
+ "package": "@noe/ui",
104
+ "category": "Feedback",
105
+ "status": "available",
106
+ "storyId": "catalog-feedback-spinner--default",
107
+ "registryItem": "spinner"
108
+ },
109
+ {
110
+ "id": "empty-state",
111
+ "package": "@noe/ui",
112
+ "category": "Feedback",
113
+ "status": "available",
114
+ "storyId": "catalog-feedback-empty-state--default",
115
+ "registryItem": "empty-state"
116
+ },
117
+ {
118
+ "id": "error-state",
119
+ "package": "@noe/ui",
120
+ "category": "Feedback",
121
+ "status": "available",
122
+ "storyId": "catalog-feedback-error-state--default",
123
+ "registryItem": "error-state"
124
+ },
125
+ {
126
+ "id": "dialog",
127
+ "package": "@noe/ui",
128
+ "category": "Overlays",
129
+ "status": "available",
130
+ "storyId": "catalog-overlays-dialog--default",
131
+ "registryItem": "dialog"
132
+ },
133
+ {
134
+ "id": "drawer",
135
+ "package": "@noe/ui",
136
+ "category": "Overlays",
137
+ "status": "available",
138
+ "storyId": "catalog-overlays-drawer--default",
139
+ "registryItem": "drawer"
140
+ },
141
+ {
142
+ "id": "menu",
143
+ "package": "@noe/ui",
144
+ "category": "Overlays",
145
+ "status": "available",
146
+ "storyId": "catalog-overlays-menu--default",
147
+ "registryItem": "menu"
148
+ },
149
+ {
150
+ "id": "tooltip",
151
+ "package": "@noe/ui",
152
+ "category": "Overlays",
153
+ "status": "available",
154
+ "storyId": "catalog-overlays-tooltip--default",
155
+ "registryItem": "tooltip"
156
+ },
157
+ {
158
+ "id": "tabs",
159
+ "package": "@noe/ui",
160
+ "category": "Navigation",
161
+ "status": "available",
162
+ "storyId": "catalog-navigation-tabs--default",
163
+ "registryItem": "tabs"
164
+ },
165
+ {
166
+ "id": "data-table",
167
+ "package": "@noe/data-ui",
168
+ "category": "Data",
169
+ "status": "available",
170
+ "storyId": "catalog-data-data-table--default",
171
+ "registryItem": "data-table"
172
+ },
173
+ {
174
+ "id": "metric-card",
175
+ "package": "@noe/data-ui",
176
+ "category": "Data",
177
+ "status": "available",
178
+ "storyId": "catalog-data-metric-card--default",
179
+ "registryItem": "metric-card"
180
+ },
181
+ {
182
+ "id": "chart-frame",
183
+ "package": "@noe/data-ui",
184
+ "category": "Data",
185
+ "status": "available",
186
+ "storyId": "catalog-data-chart-frame--default",
187
+ "registryItem": "chart-frame"
188
+ },
189
+ {
190
+ "id": "agent-composer",
191
+ "package": "@noe/ai-ui",
192
+ "category": "Agentic",
193
+ "status": "available",
194
+ "storyId": "catalog-agentic-agent-composer--default",
195
+ "registryItem": "agent-composer"
196
+ },
197
+ {
198
+ "id": "agent-message",
199
+ "package": "@noe/ai-ui",
200
+ "category": "Agentic",
201
+ "status": "available",
202
+ "storyId": "catalog-agentic-agent-message--default",
203
+ "registryItem": "agent-message"
204
+ },
205
+ {
206
+ "id": "agent-plan",
207
+ "package": "@noe/ai-ui",
208
+ "category": "Agentic",
209
+ "status": "available",
210
+ "storyId": "catalog-agentic-agent-plan--default",
211
+ "registryItem": "agent-plan"
212
+ },
213
+ {
214
+ "id": "run-inspector",
215
+ "package": "@noe/ai-ui",
216
+ "category": "Agentic",
217
+ "status": "available",
218
+ "storyId": "catalog-agentic-run-inspector--default",
219
+ "registryItem": "run-inspector"
220
+ },
221
+ {
222
+ "id": "tool-call",
223
+ "package": "@noe/ai-ui",
224
+ "category": "Agentic",
225
+ "status": "available",
226
+ "storyId": "catalog-agentic-tool-call--default",
227
+ "registryItem": "tool-call"
228
+ },
229
+ {
230
+ "id": "approval-request",
231
+ "package": "@noe/ai-ui",
232
+ "category": "Agentic",
233
+ "status": "available",
234
+ "storyId": "catalog-agentic-approval-request--default",
235
+ "registryItem": "approval-request"
236
+ },
237
+ {
238
+ "id": "workflow-canvas",
239
+ "package": "@noe/workflow-ui",
240
+ "category": "Workflow",
241
+ "status": "available",
242
+ "storyId": "catalog-workflow-workflow-canvas--default",
243
+ "registryItem": "workflow-canvas"
244
+ },
245
+ {
246
+ "id": "workflow-node",
247
+ "package": "@noe/workflow-ui",
248
+ "category": "Workflow",
249
+ "status": "available",
250
+ "storyId": "catalog-workflow-workflow-node--default",
251
+ "registryItem": "workflow-node"
252
+ },
253
+ {
254
+ "id": "page-header",
255
+ "package": "@noe/ui",
256
+ "category": "Patterns / Application",
257
+ "status": "available",
258
+ "storyId": "catalog-patterns-application-page-header--default",
259
+ "registryItem": "page-header"
260
+ },
261
+ {
262
+ "id": "sidebar-navigation",
263
+ "package": "@noe/ui",
264
+ "category": "Patterns / Application",
265
+ "status": "available",
266
+ "storyId": "catalog-patterns-application-sidebar-navigation--default",
267
+ "registryItem": "sidebar-navigation"
268
+ },
269
+ {
270
+ "id": "agent-workspace",
271
+ "package": "@noe/ai-ui",
272
+ "category": "Patterns / Pages",
273
+ "status": "available",
274
+ "storyId": "catalog-patterns-pages-agent-workspace--default",
275
+ "registryItem": "agent-workspace"
276
+ },
277
+ {
278
+ "id": "section-header",
279
+ "package": "@noe/ui",
280
+ "category": "Patterns / Application",
281
+ "status": "available",
282
+ "storyId": "catalog-patterns-application-section-header--default",
283
+ "registryItem": "section-header"
284
+ },
285
+ {
286
+ "id": "filter-bar",
287
+ "package": "@noe/data-ui",
288
+ "category": "Patterns / Data",
289
+ "status": "available",
290
+ "storyId": "catalog-patterns-data-filter-bar--default",
291
+ "registryItem": "filter-bar"
292
+ },
293
+ {
294
+ "id": "pagination",
295
+ "package": "@noe/data-ui",
296
+ "category": "Patterns / Data",
297
+ "status": "available",
298
+ "storyId": "catalog-patterns-data-pagination--default",
299
+ "registryItem": "pagination"
300
+ },
301
+ {
302
+ "id": "activity-feed",
303
+ "package": "@noe/ai-ui",
304
+ "category": "Patterns / Application",
305
+ "status": "available",
306
+ "storyId": "catalog-patterns-application-activity-feed--default",
307
+ "registryItem": "activity-feed"
308
+ },
309
+ {
310
+ "id": "sign-in-form",
311
+ "package": "@noe/ui",
312
+ "category": "Patterns / Pages",
313
+ "status": "available",
314
+ "storyId": "catalog-patterns-pages-sign-in-form--default",
315
+ "registryItem": "sign-in-form"
316
+ },
317
+ {
318
+ "id": "header-navigation",
319
+ "package": "@noe/ui",
320
+ "category": "Patterns / Application",
321
+ "status": "available",
322
+ "storyId": "catalog-patterns-application-header-navigation--default",
323
+ "registryItem": "header-navigation"
324
+ },
325
+ {
326
+ "id": "app-frame",
327
+ "package": "@noe/ui",
328
+ "category": "Patterns / Pages",
329
+ "status": "available",
330
+ "storyId": "catalog-patterns-pages-app-frame--default",
331
+ "registryItem": "app-frame"
332
+ },
333
+ {
334
+ "id": "bottom-navigation",
335
+ "package": "@noe/ui",
336
+ "category": "Patterns / Application",
337
+ "status": "available",
338
+ "storyId": "catalog-patterns-application-bottom-navigation--default",
339
+ "registryItem": "bottom-navigation"
340
+ },
341
+ {
342
+ "id": "dashboard-shell",
343
+ "package": "@noe/data-ui",
344
+ "category": "Patterns / Pages",
345
+ "status": "available",
346
+ "storyId": "catalog-patterns-pages-dashboard-shell--default",
347
+ "registryItem": "dashboard-shell"
348
+ },
349
+ {
350
+ "id": "settings-page",
351
+ "package": "@noe/ui",
352
+ "category": "Patterns / Pages",
353
+ "status": "available",
354
+ "storyId": "catalog-patterns-pages-settings-page--default",
355
+ "registryItem": "settings-page"
356
+ },
357
+ {
358
+ "id": "data-list",
359
+ "package": "@noe/ui",
360
+ "category": "Patterns / Mobile",
361
+ "status": "available",
362
+ "storyId": "catalog-patterns-mobile-data-list--default",
363
+ "registryItem": "data-list"
364
+ },
365
+ {
366
+ "id": "fab",
367
+ "package": "@noe/ui",
368
+ "category": "Patterns / Mobile",
369
+ "status": "available",
370
+ "storyId": "catalog-patterns-mobile-floating-action-button--default",
371
+ "registryItem": "fab"
372
+ },
373
+ {
374
+ "id": "mobile-screen",
375
+ "package": "@noe/ui",
376
+ "category": "Patterns / Pages",
377
+ "status": "available",
378
+ "storyId": "catalog-patterns-pages-mobile-screen--default",
379
+ "registryItem": "mobile-screen"
380
+ },
381
+ {
382
+ "id": "featured-icon",
383
+ "package": "@noe/ui",
384
+ "category": "Foundations / Icons",
385
+ "status": "available",
386
+ "storyId": "catalog-foundations-featured-icon--default",
387
+ "registryItem": "featured-icon"
388
+ },
389
+ {
390
+ "id": "utility-button",
391
+ "package": "@noe/ui",
392
+ "category": "Primitives / Actions",
393
+ "status": "available",
394
+ "storyId": "catalog-primitives-utility-button--default",
395
+ "registryItem": "utility-button"
396
+ },
397
+ {
398
+ "id": "context-menu",
399
+ "package": "@noe/ui",
400
+ "category": "Overlays",
401
+ "status": "available",
402
+ "storyId": "catalog-overlays-context-menu--default",
403
+ "registryItem": "context-menu"
404
+ },
405
+ {
406
+ "id": "dropdown",
407
+ "package": "@noe/ui",
408
+ "category": "Overlays",
409
+ "status": "available",
410
+ "storyId": "catalog-overlays-dropdown--default",
411
+ "registryItem": "dropdown"
412
+ },
413
+ {
414
+ "id": "login-page",
415
+ "package": "@noe/ui",
416
+ "category": "Shared / Auth",
417
+ "status": "available",
418
+ "storyId": "catalog-pages-login-page--default",
419
+ "registryItem": "login-page"
420
+ },
421
+ {
422
+ "id": "not-found",
423
+ "package": "@noe/ui",
424
+ "category": "Shared / Auth",
425
+ "status": "available",
426
+ "storyId": "catalog-pages-not-found--default",
427
+ "registryItem": "not-found"
428
+ },
429
+ {
430
+ "id": "chart",
431
+ "package": "@noe/data-ui",
432
+ "category": "Data / Visualization",
433
+ "status": "available",
434
+ "storyId": "catalog-data-chart--default",
435
+ "registryItem": "chart"
436
+ },
437
+ {
438
+ "id": "messaging",
439
+ "package": "@noe/ui",
440
+ "category": "Communication / Messaging",
441
+ "status": "available",
442
+ "storyId": "catalog-communication-messaging--default",
443
+ "registryItem": "messaging"
444
+ },
445
+ {
446
+ "id": "progress-steps",
447
+ "package": "@noe/ui",
448
+ "category": "Navigation / Progress",
449
+ "status": "available",
450
+ "storyId": "catalog-navigation-progress-steps--default",
451
+ "registryItem": "progress-steps"
452
+ },
453
+ {
454
+ "id": "dashboard-01",
455
+ "package": "@noe/data-ui",
456
+ "category": "Application Examples",
457
+ "status": "available",
458
+ "storyId": "catalog-examples-dashboard-01--default",
459
+ "registryItem": "dashboard-01"
460
+ },
461
+ {
462
+ "id": "dashboard-02",
463
+ "package": "@noe/data-ui",
464
+ "category": "Application Examples",
465
+ "status": "available",
466
+ "storyId": "catalog-examples-dashboard-02--default",
467
+ "registryItem": "dashboard-02"
468
+ },
469
+ {
470
+ "id": "settings-01",
471
+ "package": "@noe/ui",
472
+ "category": "Application Examples",
473
+ "status": "available",
474
+ "storyId": "catalog-pages-settings-01--default",
475
+ "registryItem": "settings-01"
476
+ },
477
+ {
478
+ "id": "settings-02",
479
+ "package": "@noe/ui",
480
+ "category": "Application Examples",
481
+ "status": "available",
482
+ "storyId": "catalog-pages-settings-02--default",
483
+ "registryItem": "settings-02"
484
+ },
485
+ {
486
+ "id": "hero-header",
487
+ "package": "@noe/ui",
488
+ "category": "Marketing / Hero",
489
+ "status": "available",
490
+ "storyId": "catalog-marketing-hero-header--default",
491
+ "registryItem": "hero-header"
492
+ },
493
+ {
494
+ "id": "marketing-header",
495
+ "package": "@noe/ui",
496
+ "category": "Marketing / Header",
497
+ "status": "available",
498
+ "storyId": "catalog-marketing-marketing-header--default",
499
+ "registryItem": "marketing-header"
500
+ },
501
+ {
502
+ "id": "landing-page",
503
+ "package": "@noe/ui",
504
+ "category": "Marketing / Pages",
505
+ "status": "available",
506
+ "storyId": "catalog-pages-landing-page--default",
507
+ "registryItem": "landing-page"
508
+ },
509
+ {
510
+ "id": "avatar",
511
+ "package": "@noe/ui",
512
+ "category": "Base / Identity",
513
+ "status": "planned",
514
+ "storyId": "catalog-base-identity-avatar--default",
515
+ "registryItem": null
516
+ },
517
+ {
518
+ "id": "badge-group",
519
+ "package": "@noe/ui",
520
+ "category": "Base / Identity",
521
+ "status": "planned",
522
+ "storyId": "catalog-base-identity-badge-group--default",
523
+ "registryItem": null
524
+ },
525
+ {
526
+ "id": "button-group",
527
+ "package": "@noe/ui",
528
+ "category": "Base / Actions",
529
+ "status": "planned",
530
+ "storyId": "catalog-base-actions-button-group--default",
531
+ "registryItem": null
532
+ },
533
+ {
534
+ "id": "checkbox",
535
+ "package": "@noe/ui",
536
+ "category": "Base / Forms",
537
+ "status": "planned",
538
+ "storyId": "catalog-base-forms-checkbox--default",
539
+ "registryItem": null
540
+ },
541
+ {
542
+ "id": "radio-group",
543
+ "package": "@noe/ui",
544
+ "category": "Base / Forms",
545
+ "status": "planned",
546
+ "storyId": "catalog-base-forms-radio-group--default",
547
+ "registryItem": null
548
+ },
549
+ {
550
+ "id": "toggle",
551
+ "package": "@noe/ui",
552
+ "category": "Base / Forms",
553
+ "status": "planned",
554
+ "storyId": "catalog-base-forms-toggle--default",
555
+ "registryItem": null
556
+ },
557
+ {
558
+ "id": "select",
559
+ "package": "@noe/ui",
560
+ "category": "Base / Forms",
561
+ "status": "planned",
562
+ "storyId": "catalog-base-forms-select--default",
563
+ "registryItem": null
564
+ },
565
+ {
566
+ "id": "multi-select",
567
+ "package": "@noe/ui",
568
+ "category": "Base / Forms",
569
+ "status": "planned",
570
+ "storyId": "catalog-base-forms-multi-select--default",
571
+ "registryItem": null
572
+ },
573
+ {
574
+ "id": "slider",
575
+ "package": "@noe/ui",
576
+ "category": "Base / Forms",
577
+ "status": "planned",
578
+ "storyId": "catalog-base-forms-slider--default",
579
+ "registryItem": null
580
+ },
581
+ {
582
+ "id": "tags",
583
+ "package": "@noe/ui",
584
+ "category": "Base / Forms",
585
+ "status": "planned",
586
+ "storyId": "catalog-base-forms-tags--default",
587
+ "registryItem": null
588
+ },
589
+ {
590
+ "id": "verification-code",
591
+ "package": "@noe/ui",
592
+ "category": "Base / Forms",
593
+ "status": "planned",
594
+ "storyId": "catalog-base-forms-verification-code--default",
595
+ "registryItem": null
596
+ },
597
+ {
598
+ "id": "calendar",
599
+ "package": "@noe/ui",
600
+ "category": "Base / Pickers",
601
+ "status": "partial",
602
+ "storyId": "catalog-base-pickers-calendar--default",
603
+ "registryItem": "calendar"
604
+ },
605
+ {
606
+ "id": "date-picker",
607
+ "package": "@noe/ui",
608
+ "category": "Base / Pickers",
609
+ "status": "partial",
610
+ "storyId": "catalog-base-pickers-date-picker--default",
611
+ "registryItem": "date-picker"
612
+ },
613
+ {
614
+ "id": "color-picker",
615
+ "package": "@noe/ui",
616
+ "category": "Base / Pickers",
617
+ "status": "planned",
618
+ "storyId": "catalog-base-pickers-color-picker--default",
619
+ "registryItem": null
620
+ },
621
+ {
622
+ "id": "file-uploader",
623
+ "package": "@noe/ui",
624
+ "category": "Base / Pickers",
625
+ "status": "planned",
626
+ "storyId": "catalog-base-pickers-file-uploader--default",
627
+ "registryItem": null
628
+ },
629
+ {
630
+ "id": "rich-text-editor",
631
+ "package": "@noe/ui",
632
+ "category": "Base / Pickers",
633
+ "status": "planned",
634
+ "storyId": "catalog-base-pickers-rich-text-editor--default",
635
+ "registryItem": null
636
+ },
637
+ {
638
+ "id": "command-menu",
639
+ "package": "@noe/ui",
640
+ "category": "Overlays / Navigation",
641
+ "status": "planned",
642
+ "storyId": "catalog-overlays-navigation-command-menu--default",
643
+ "registryItem": null
644
+ },
645
+ {
646
+ "id": "tree-view",
647
+ "package": "@noe/ui",
648
+ "category": "Navigation / Disclosure",
649
+ "status": "planned",
650
+ "storyId": "catalog-navigation-disclosure-tree-view--default",
651
+ "registryItem": null
652
+ },
653
+ {
654
+ "id": "carousel",
655
+ "package": "@noe/ui",
656
+ "category": "Navigation / Disclosure",
657
+ "status": "planned",
658
+ "storyId": "catalog-navigation-disclosure-carousel--default",
659
+ "registryItem": null
660
+ },
661
+ {
662
+ "id": "content-divider",
663
+ "package": "@noe/ui",
664
+ "category": "Primitives / Layout",
665
+ "status": "planned",
666
+ "storyId": "catalog-primitives-layout-content-divider--default",
667
+ "registryItem": null
668
+ },
669
+ {
670
+ "id": "section-footer",
671
+ "package": "@noe/ui",
672
+ "category": "Patterns / Application",
673
+ "status": "planned",
674
+ "storyId": "catalog-patterns-application-section-footer--default",
675
+ "registryItem": null
676
+ },
677
+ {
678
+ "id": "notification",
679
+ "package": "@noe/ui",
680
+ "category": "Feedback / Notifications",
681
+ "status": "planned",
682
+ "storyId": "catalog-feedback-notifications-notification--default",
683
+ "registryItem": null
684
+ },
685
+ {
686
+ "id": "activity-gauge",
687
+ "package": "@noe/data-ui",
688
+ "category": "Data / Visualization",
689
+ "status": "planned",
690
+ "storyId": "catalog-data-visualization-activity-gauge--default",
691
+ "registryItem": null
692
+ },
693
+ {
694
+ "id": "pie-chart",
695
+ "package": "@noe/data-ui",
696
+ "category": "Data / Visualization",
697
+ "status": "planned",
698
+ "storyId": "catalog-data-visualization-pie-chart--default",
699
+ "registryItem": null
700
+ },
701
+ {
702
+ "id": "radar-chart",
703
+ "package": "@noe/data-ui",
704
+ "category": "Data / Visualization",
705
+ "status": "planned",
706
+ "storyId": "catalog-data-visualization-radar-chart--default",
707
+ "registryItem": null
708
+ },
709
+ {
710
+ "id": "credit-card",
711
+ "package": "@noe/ui",
712
+ "category": "Base / Identity",
713
+ "status": "planned",
714
+ "storyId": "catalog-base-identity-credit-card--default",
715
+ "registryItem": null
716
+ },
717
+ {
718
+ "id": "qr-code",
719
+ "package": "@noe/ui",
720
+ "category": "Base / Identity",
721
+ "status": "planned",
722
+ "storyId": "catalog-base-identity-qr-code--default",
723
+ "registryItem": null
724
+ },
725
+ {
726
+ "id": "rating",
727
+ "package": "@noe/ui",
728
+ "category": "Base / Identity",
729
+ "status": "planned",
730
+ "storyId": "catalog-base-identity-rating--default",
731
+ "registryItem": null
732
+ },
733
+ {
734
+ "id": "video-player",
735
+ "package": "@noe/ui",
736
+ "category": "Base / Media",
737
+ "status": "planned",
738
+ "storyId": "catalog-base-media-video-player--default",
739
+ "registryItem": null
740
+ },
741
+ {
742
+ "id": "illustration",
743
+ "package": "@noe/ui",
744
+ "category": "Base / Media",
745
+ "status": "planned",
746
+ "storyId": "catalog-base-media-illustration--default",
747
+ "registryItem": null
748
+ },
749
+ {
750
+ "id": "store-button",
751
+ "package": "@noe/ui",
752
+ "category": "Base / Identity",
753
+ "status": "planned",
754
+ "storyId": "catalog-base-identity-store-button--default",
755
+ "registryItem": null
756
+ },
757
+ {
758
+ "id": "social-button",
759
+ "package": "@noe/ui",
760
+ "category": "Base / Identity",
761
+ "status": "planned",
762
+ "storyId": "catalog-base-identity-social-button--default",
763
+ "registryItem": null
764
+ },
765
+ {
766
+ "id": "progress-indicator",
767
+ "package": "@noe/ui",
768
+ "category": "Base / Feedback",
769
+ "status": "planned",
770
+ "storyId": "catalog-base-feedback-progress-indicator--default",
771
+ "registryItem": null
772
+ },
773
+ {
774
+ "id": "sign-up-page",
775
+ "package": "@noe/ui",
776
+ "category": "Shared / Auth",
777
+ "status": "planned",
778
+ "storyId": "catalog-shared-auth-sign-up-page--default",
779
+ "registryItem": null
780
+ },
781
+ {
782
+ "id": "verification-page",
783
+ "package": "@noe/ui",
784
+ "category": "Shared / Auth",
785
+ "status": "planned",
786
+ "storyId": "catalog-shared-auth-verification-page--default",
787
+ "registryItem": null
788
+ },
789
+ {
790
+ "id": "forgot-password-page",
791
+ "package": "@noe/ui",
792
+ "category": "Shared / Auth",
793
+ "status": "planned",
794
+ "storyId": "catalog-shared-auth-forgot-password-page--default",
795
+ "registryItem": null
796
+ },
797
+ {
798
+ "id": "email-template",
799
+ "package": "@noe/ui",
800
+ "category": "Shared / Auth",
801
+ "status": "planned",
802
+ "storyId": "catalog-shared-auth-email-template--default",
803
+ "registryItem": null
804
+ },
805
+ {
806
+ "id": "informational-page-01",
807
+ "package": "@noe/ui",
808
+ "category": "Application Examples",
809
+ "status": "planned",
810
+ "storyId": "catalog-application-examples-informational-page-01--default",
811
+ "registryItem": null
812
+ },
813
+ {
814
+ "id": "informational-page-02",
815
+ "package": "@noe/ui",
816
+ "category": "Application Examples",
817
+ "status": "planned",
818
+ "storyId": "catalog-application-examples-informational-page-02--default",
819
+ "registryItem": null
820
+ },
821
+ {
822
+ "id": "banner",
823
+ "package": "@noe/ui",
824
+ "category": "Marketing / Banner",
825
+ "status": "planned",
826
+ "storyId": "catalog-marketing-banner-banner--default",
827
+ "registryItem": null
828
+ },
829
+ {
830
+ "id": "blog-section",
831
+ "package": "@noe/ui",
832
+ "category": "Marketing / Blog",
833
+ "status": "planned",
834
+ "storyId": "catalog-marketing-blog-blog-section--default",
835
+ "registryItem": null
836
+ },
837
+ {
838
+ "id": "careers-section",
839
+ "package": "@noe/ui",
840
+ "category": "Marketing / Careers",
841
+ "status": "planned",
842
+ "storyId": "catalog-marketing-careers-careers-section--default",
843
+ "registryItem": null
844
+ },
845
+ {
846
+ "id": "contact-section",
847
+ "package": "@noe/ui",
848
+ "category": "Marketing / Contact",
849
+ "status": "planned",
850
+ "storyId": "catalog-marketing-contact-contact-section--default",
851
+ "registryItem": null
852
+ },
853
+ {
854
+ "id": "content-section",
855
+ "package": "@noe/ui",
856
+ "category": "Marketing / Content",
857
+ "status": "planned",
858
+ "storyId": "catalog-marketing-content-content-section--default",
859
+ "registryItem": null
860
+ },
861
+ {
862
+ "id": "cta-section",
863
+ "package": "@noe/ui",
864
+ "category": "Marketing / CTA",
865
+ "status": "planned",
866
+ "storyId": "catalog-marketing-cta-cta-section--default",
867
+ "registryItem": null
868
+ },
869
+ {
870
+ "id": "faq-section",
871
+ "package": "@noe/ui",
872
+ "category": "Marketing / FAQ",
873
+ "status": "planned",
874
+ "storyId": "catalog-marketing-faq-faq-section--default",
875
+ "registryItem": null
876
+ },
877
+ {
878
+ "id": "feature-section",
879
+ "package": "@noe/ui",
880
+ "category": "Marketing / Features",
881
+ "status": "planned",
882
+ "storyId": "catalog-marketing-features-feature-section--default",
883
+ "registryItem": null
884
+ },
885
+ {
886
+ "id": "footer",
887
+ "package": "@noe/ui",
888
+ "category": "Marketing / Footer",
889
+ "status": "planned",
890
+ "storyId": "catalog-marketing-footer-footer--default",
891
+ "registryItem": null
892
+ },
893
+ {
894
+ "id": "metrics-section",
895
+ "package": "@noe/ui",
896
+ "category": "Marketing / Metrics",
897
+ "status": "planned",
898
+ "storyId": "catalog-marketing-metrics-metrics-section--default",
899
+ "registryItem": null
900
+ },
901
+ {
902
+ "id": "newsletter",
903
+ "package": "@noe/ui",
904
+ "category": "Marketing / Newsletter",
905
+ "status": "planned",
906
+ "storyId": "catalog-marketing-newsletter-newsletter--default",
907
+ "registryItem": null
908
+ },
909
+ {
910
+ "id": "pricing-section",
911
+ "package": "@noe/ui",
912
+ "category": "Marketing / Pricing",
913
+ "status": "planned",
914
+ "storyId": "catalog-marketing-pricing-pricing-section--default",
915
+ "registryItem": null
916
+ },
917
+ {
918
+ "id": "social-proof",
919
+ "package": "@noe/ui",
920
+ "category": "Marketing / Social",
921
+ "status": "planned",
922
+ "storyId": "catalog-marketing-social-social-proof--default",
923
+ "registryItem": null
924
+ },
925
+ {
926
+ "id": "team-section",
927
+ "package": "@noe/ui",
928
+ "category": "Marketing / Team",
929
+ "status": "planned",
930
+ "storyId": "catalog-marketing-team-team-section--default",
931
+ "registryItem": null
932
+ },
933
+ {
934
+ "id": "testimonial-section",
935
+ "package": "@noe/ui",
936
+ "category": "Marketing / Testimonial",
937
+ "status": "planned",
938
+ "storyId": "catalog-marketing-testimonial-testimonial-section--default",
939
+ "registryItem": null
940
+ },
941
+ {
942
+ "id": "about-page",
943
+ "package": "@noe/ui",
944
+ "category": "Marketing / Pages",
945
+ "status": "planned",
946
+ "storyId": "catalog-marketing-pages-about-page--default",
947
+ "registryItem": null
948
+ },
949
+ {
950
+ "id": "blog-post-page",
951
+ "package": "@noe/ui",
952
+ "category": "Marketing / Pages",
953
+ "status": "planned",
954
+ "storyId": "catalog-marketing-pages-blog-post-page--default",
955
+ "registryItem": null
956
+ },
957
+ {
958
+ "id": "blog-index-page",
959
+ "package": "@noe/ui",
960
+ "category": "Marketing / Pages",
961
+ "status": "planned",
962
+ "storyId": "catalog-marketing-pages-blog-index-page--default",
963
+ "registryItem": null
964
+ },
965
+ {
966
+ "id": "contact-page",
967
+ "package": "@noe/ui",
968
+ "category": "Marketing / Pages",
969
+ "status": "planned",
970
+ "storyId": "catalog-marketing-pages-contact-page--default",
971
+ "registryItem": null
972
+ },
973
+ {
974
+ "id": "faq-page",
975
+ "package": "@noe/ui",
976
+ "category": "Marketing / Pages",
977
+ "status": "planned",
978
+ "storyId": "catalog-marketing-pages-faq-page--default",
979
+ "registryItem": null
980
+ },
981
+ {
982
+ "id": "legal-page",
983
+ "package": "@noe/ui",
984
+ "category": "Marketing / Pages",
985
+ "status": "planned",
986
+ "storyId": "catalog-marketing-pages-legal-page--default",
987
+ "registryItem": null
988
+ },
989
+ {
990
+ "id": "pricing-page",
991
+ "package": "@noe/ui",
992
+ "category": "Marketing / Pages",
993
+ "status": "planned",
994
+ "storyId": "catalog-marketing-pages-pricing-page--default",
995
+ "registryItem": null
996
+ },
997
+ {
998
+ "id": "team-page",
999
+ "package": "@noe/ui",
1000
+ "category": "Marketing / Pages",
1001
+ "status": "planned",
1002
+ "storyId": "catalog-marketing-pages-team-page--default",
1003
+ "registryItem": null
1004
+ },
1005
+ {
1006
+ "id": "marketing-404-page",
1007
+ "package": "@noe/ui",
1008
+ "category": "Marketing / Pages",
1009
+ "status": "planned",
1010
+ "storyId": "catalog-marketing-pages-marketing-404-page--default",
1011
+ "registryItem": null
1012
+ },
1013
+ {
1014
+ "id": "gradient-picker",
1015
+ "package": "@noe/ui",
1016
+ "category": "Application Components",
1017
+ "status": "available",
1018
+ "storyId": "catalog-application-gradient-picker--default",
1019
+ "registryItem": "gradient-picker"
1020
+ },
1021
+ {
1022
+ "id": "image-picker",
1023
+ "package": "@noe/ui",
1024
+ "category": "Application Components",
1025
+ "status": "available",
1026
+ "storyId": "catalog-application-image-picker--default",
1027
+ "registryItem": "image-picker"
1028
+ },
1029
+ {
1030
+ "id": "inline-cta",
1031
+ "package": "@noe/ui",
1032
+ "category": "Application Components",
1033
+ "status": "available",
1034
+ "storyId": "catalog-application-inline-cta--default",
1035
+ "registryItem": "inline-cta"
1036
+ }
1037
+ ]
1038
+ }