@design-ai/cli 4.55.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 (529) hide show
  1. package/.claude-plugin/plugin.json +164 -0
  2. package/AGENTS.ko.md +126 -0
  3. package/AGENTS.md +182 -0
  4. package/CHANGELOG.md +6883 -0
  5. package/CLAUDE.md +39 -0
  6. package/LICENSE +21 -0
  7. package/README.ko.md +245 -0
  8. package/README.md +277 -0
  9. package/agents/README.md +14 -0
  10. package/agents/a11y-reviewer.md +121 -0
  11. package/agents/component-architect.md +57 -0
  12. package/agents/design-critic.md +46 -0
  13. package/agents/token-extractor.md +63 -0
  14. package/cli/bin/design-ai-mcp.mjs +6 -0
  15. package/cli/bin/design-ai.mjs +40 -0
  16. package/cli/commands/audit.mjs +111 -0
  17. package/cli/commands/check.mjs +226 -0
  18. package/cli/commands/doctor.mjs +141 -0
  19. package/cli/commands/examples.mjs +58 -0
  20. package/cli/commands/help.mjs +271 -0
  21. package/cli/commands/install.mjs +161 -0
  22. package/cli/commands/learn.mjs +1871 -0
  23. package/cli/commands/list.mjs +143 -0
  24. package/cli/commands/mcp.mjs +27 -0
  25. package/cli/commands/pack.mjs +211 -0
  26. package/cli/commands/prompt.mjs +199 -0
  27. package/cli/commands/route.mjs +247 -0
  28. package/cli/commands/search.mjs +60 -0
  29. package/cli/commands/show.mjs +52 -0
  30. package/cli/commands/site.mjs +558 -0
  31. package/cli/commands/status.mjs +161 -0
  32. package/cli/commands/uninstall.mjs +119 -0
  33. package/cli/commands/update.mjs +184 -0
  34. package/cli/commands/version.mjs +94 -0
  35. package/cli/commands/workspace.mjs +176 -0
  36. package/cli/lib/brief.mjs +52 -0
  37. package/cli/lib/check.mjs +642 -0
  38. package/cli/lib/dispatch.mjs +109 -0
  39. package/cli/lib/doctor.mjs +505 -0
  40. package/cli/lib/examples.mjs +258 -0
  41. package/cli/lib/exec.mjs +63 -0
  42. package/cli/lib/help-flags.mjs +5 -0
  43. package/cli/lib/learn.mjs +3694 -0
  44. package/cli/lib/log.mjs +47 -0
  45. package/cli/lib/mcp-server.mjs +426 -0
  46. package/cli/lib/output.mjs +101 -0
  47. package/cli/lib/pack.mjs +599 -0
  48. package/cli/lib/paths.mjs +63 -0
  49. package/cli/lib/prompt.mjs +603 -0
  50. package/cli/lib/route.mjs +740 -0
  51. package/cli/lib/search.mjs +158 -0
  52. package/cli/lib/show.mjs +161 -0
  53. package/cli/lib/signals.mjs +2337 -0
  54. package/cli/lib/site.mjs +6617 -0
  55. package/cli/lib/skill-proposals.mjs +2046 -0
  56. package/cli/lib/suggest.mjs +66 -0
  57. package/cli/lib/workspace.mjs +1056 -0
  58. package/commands/README.md +25 -0
  59. package/commands/component-spec.md +34 -0
  60. package/commands/conversational.md +44 -0
  61. package/commands/design-from-brief.md +141 -0
  62. package/commands/design-review.md +62 -0
  63. package/commands/document-from-brief.md +47 -0
  64. package/commands/extract-tokens.md +38 -0
  65. package/commands/game-ui.md +40 -0
  66. package/commands/illustration.md +37 -0
  67. package/commands/iterate.md +167 -0
  68. package/commands/motion-design.md +54 -0
  69. package/commands/palette-from-brand.md +50 -0
  70. package/commands/print.md +49 -0
  71. package/commands/slide-deck.md +46 -0
  72. package/commands/spatial.md +47 -0
  73. package/commands/stability-review.md +74 -0
  74. package/commands/video.md +42 -0
  75. package/commands/website-improvement.md +77 -0
  76. package/docs/AGENT-DEVELOPMENT.md +658 -0
  77. package/docs/AI-LEARNING.md +429 -0
  78. package/docs/AIDER-INTEGRATION.md +224 -0
  79. package/docs/ARCHITECTURE.ko.md +183 -0
  80. package/docs/ARCHITECTURE.md +105 -0
  81. package/docs/CODEX-INTEGRATION.md +311 -0
  82. package/docs/COMPANY-WEBSITE-DOGFOOD.ko.md +144 -0
  83. package/docs/COMPANY-WEBSITE-DOGFOOD.md +150 -0
  84. package/docs/COMPANY-WEBSITE-INTAKE-TEMPLATE.ko.md +153 -0
  85. package/docs/COMPANY-WEBSITE-INTAKE-TEMPLATE.md +154 -0
  86. package/docs/CONTRIBUTING.ko.md +203 -0
  87. package/docs/CONTRIBUTING.md +242 -0
  88. package/docs/CURSOR-INTEGRATION.md +220 -0
  89. package/docs/DISTRIBUTION.ko.md +248 -0
  90. package/docs/DISTRIBUTION.md +253 -0
  91. package/docs/DOGFOOD-FINDINGS.md +180 -0
  92. package/docs/DOGFOOD-V4-FINDINGS.md +139 -0
  93. package/docs/DOGFOOD-V4-MKDOCS-FINDINGS.md +233 -0
  94. package/docs/DOGFOOD-V4-NPM-FINDINGS.md +157 -0
  95. package/docs/DOGFOOD-V4-VSCODE-FINDINGS.md +135 -0
  96. package/docs/FIGMA-INTEGRATION.md +222 -0
  97. package/docs/MCP-INTEGRATION.md +243 -0
  98. package/docs/MIGRATION-v4.md +121 -0
  99. package/docs/PLUGIN-PACKAGING.md +240 -0
  100. package/docs/PRODUCT-READINESS.md +66 -0
  101. package/docs/QUICKSTART.ko.md +178 -0
  102. package/docs/QUICKSTART.md +179 -0
  103. package/docs/RELEASE-CHECKLIST.md +292 -0
  104. package/docs/ROADMAP.md +19495 -0
  105. package/docs/SESSION-LOG.md +940 -0
  106. package/docs/TOKEN-SYNC.md +237 -0
  107. package/docs/USING.ko.md +206 -0
  108. package/docs/USING.md +218 -0
  109. package/docs/WEBSITE-IMPROVEMENT.ko.md +75 -0
  110. package/docs/WEBSITE-IMPROVEMENT.md +89 -0
  111. package/docs/announcements/README.md +56 -0
  112. package/docs/announcements/dev-to-korea.md +206 -0
  113. package/docs/announcements/hashnode-post.ko.md +232 -0
  114. package/docs/announcements/okky-post.ko.md +158 -0
  115. package/docs/announcements/press-kit.md +101 -0
  116. package/docs/announcements/reddit-r-korea.md +196 -0
  117. package/docs/announcements/show-hn.md +114 -0
  118. package/docs/announcements/twitter-thread.md +255 -0
  119. package/docs/external-status.md +34 -0
  120. package/docs/integrations/aider-walkthrough.ko.md +275 -0
  121. package/docs/integrations/aider-walkthrough.md +274 -0
  122. package/docs/integrations/codex-walkthrough.ko.md +297 -0
  123. package/docs/integrations/codex-walkthrough.md +297 -0
  124. package/docs/integrations/cursor-walkthrough.ko.md +281 -0
  125. package/docs/integrations/cursor-walkthrough.md +284 -0
  126. package/docs/integrations/design-ai-mcp-server.md +169 -0
  127. package/docs/integrations/figma-mcp.md +149 -0
  128. package/docs/integrations/github-mcp.md +178 -0
  129. package/docs/integrations/linear-mcp.md +215 -0
  130. package/docs/integrations/notion-mcp.md +174 -0
  131. package/docs/integrations/sdk-walkthrough.ko.md +375 -0
  132. package/docs/integrations/sdk-walkthrough.md +375 -0
  133. package/docs/integrations/slack-mcp.md +208 -0
  134. package/docs/integrations/vscode-walkthrough.ko.md +202 -0
  135. package/docs/integrations/vscode-walkthrough.md +205 -0
  136. package/docs/requirements.txt +16 -0
  137. package/docs/site-overrides/extra.css +83 -0
  138. package/docs/site-overrides/favicon.svg +4 -0
  139. package/docs/site-overrides/logo.svg +10 -0
  140. package/docs/site-overrides/main.html +18 -0
  141. package/docs/website-console/app.js +2540 -0
  142. package/docs/website-console/index.html +24 -0
  143. package/docs/website-console/styles.css +975 -0
  144. package/examples/README.md +252 -0
  145. package/examples/cases/dogfood-v4-korean-hr-onboarding.md +356 -0
  146. package/examples/component-accordion-actions.md +153 -0
  147. package/examples/component-accordion-details.md +147 -0
  148. package/examples/component-accordion-summary.md +180 -0
  149. package/examples/component-accordion.md +229 -0
  150. package/examples/component-account-card.md +284 -0
  151. package/examples/component-address-input.md +260 -0
  152. package/examples/component-affix.md +190 -0
  153. package/examples/component-alert-dialog.md +210 -0
  154. package/examples/component-alert-title.md +77 -0
  155. package/examples/component-alert.md +192 -0
  156. package/examples/component-amount-input.md +278 -0
  157. package/examples/component-anchor.md +198 -0
  158. package/examples/component-app-bar.md +249 -0
  159. package/examples/component-aspect-ratio.md +156 -0
  160. package/examples/component-auto-complete.md +199 -0
  161. package/examples/component-avatar-group.md +170 -0
  162. package/examples/component-avatar.md +191 -0
  163. package/examples/component-back-top.md +123 -0
  164. package/examples/component-backdrop.md +148 -0
  165. package/examples/component-badge.md +181 -0
  166. package/examples/component-banner.md +237 -0
  167. package/examples/component-biometric-gate.md +281 -0
  168. package/examples/component-blockquote.md +153 -0
  169. package/examples/component-border-beam.md +207 -0
  170. package/examples/component-bottom-navigation.md +226 -0
  171. package/examples/component-box.md +112 -0
  172. package/examples/component-breadcrumb.md +222 -0
  173. package/examples/component-button-base.md +190 -0
  174. package/examples/component-button-group.md +117 -0
  175. package/examples/component-button.md +213 -0
  176. package/examples/component-calendar.md +280 -0
  177. package/examples/component-callout.md +131 -0
  178. package/examples/component-card-actions.md +101 -0
  179. package/examples/component-card-content.md +90 -0
  180. package/examples/component-card-header.md +122 -0
  181. package/examples/component-card-media.md +79 -0
  182. package/examples/component-card.md +233 -0
  183. package/examples/component-carousel.md +266 -0
  184. package/examples/component-cascader.md +135 -0
  185. package/examples/component-category-picker.md +271 -0
  186. package/examples/component-chart.md +237 -0
  187. package/examples/component-chat-interface.md +399 -0
  188. package/examples/component-checkbox.md +149 -0
  189. package/examples/component-click-away-listener.md +87 -0
  190. package/examples/component-code.md +213 -0
  191. package/examples/component-collapsible.md +219 -0
  192. package/examples/component-color-picker.md +110 -0
  193. package/examples/component-combobox.md +267 -0
  194. package/examples/component-command.md +299 -0
  195. package/examples/component-config-provider.md +190 -0
  196. package/examples/component-context-menu.md +179 -0
  197. package/examples/component-css-baseline.md +148 -0
  198. package/examples/component-date-picker.md +249 -0
  199. package/examples/component-descriptions.md +242 -0
  200. package/examples/component-dialog-actions.md +111 -0
  201. package/examples/component-dialog-content-text.md +76 -0
  202. package/examples/component-dialog-content.md +105 -0
  203. package/examples/component-dialog-title.md +104 -0
  204. package/examples/component-dialog.md +176 -0
  205. package/examples/component-divider.md +182 -0
  206. package/examples/component-doc-page.md +217 -0
  207. package/examples/component-drawer.md +257 -0
  208. package/examples/component-dropdown.md +220 -0
  209. package/examples/component-email-layout.md +253 -0
  210. package/examples/component-empty-state.md +269 -0
  211. package/examples/component-empty.md +172 -0
  212. package/examples/component-fade.md +87 -0
  213. package/examples/component-feature-grid.md +201 -0
  214. package/examples/component-field.md +266 -0
  215. package/examples/component-filled-input.md +114 -0
  216. package/examples/component-flex.md +117 -0
  217. package/examples/component-float-button.md +214 -0
  218. package/examples/component-form-control-label.md +134 -0
  219. package/examples/component-form-control.md +113 -0
  220. package/examples/component-form-controls.md +251 -0
  221. package/examples/component-form-group.md +86 -0
  222. package/examples/component-form-helper-text.md +95 -0
  223. package/examples/component-form-label.md +98 -0
  224. package/examples/component-form.md +291 -0
  225. package/examples/component-game-hud.md +362 -0
  226. package/examples/component-game-menu.md +327 -0
  227. package/examples/component-grid.md +140 -0
  228. package/examples/component-grow.md +79 -0
  229. package/examples/component-hero-block.md +252 -0
  230. package/examples/component-hover-card.md +211 -0
  231. package/examples/component-icon-button.md +142 -0
  232. package/examples/component-icon.md +102 -0
  233. package/examples/component-illustration.md +280 -0
  234. package/examples/component-image-list.md +107 -0
  235. package/examples/component-image.md +282 -0
  236. package/examples/component-input-adornment.md +101 -0
  237. package/examples/component-input-base.md +134 -0
  238. package/examples/component-input-number.md +141 -0
  239. package/examples/component-input-otp.md +271 -0
  240. package/examples/component-input.md +213 -0
  241. package/examples/component-item.md +243 -0
  242. package/examples/component-kbd.md +197 -0
  243. package/examples/component-krw-amount.md +219 -0
  244. package/examples/component-label.md +118 -0
  245. package/examples/component-layout.md +217 -0
  246. package/examples/component-link.md +223 -0
  247. package/examples/component-list-item-avatar.md +72 -0
  248. package/examples/component-list-item-button.md +139 -0
  249. package/examples/component-list-item-icon.md +82 -0
  250. package/examples/component-list-item-text.md +98 -0
  251. package/examples/component-list-item.md +116 -0
  252. package/examples/component-list-subheader.md +70 -0
  253. package/examples/component-list.md +198 -0
  254. package/examples/component-loading-button.md +125 -0
  255. package/examples/component-loading-sequence.md +254 -0
  256. package/examples/component-lottie-player.md +279 -0
  257. package/examples/component-masonry.md +191 -0
  258. package/examples/component-mentions.md +189 -0
  259. package/examples/component-menu-item.md +102 -0
  260. package/examples/component-menu-list.md +98 -0
  261. package/examples/component-menu.md +139 -0
  262. package/examples/component-menubar.md +259 -0
  263. package/examples/component-message.md +162 -0
  264. package/examples/component-mobile-stepper.md +155 -0
  265. package/examples/component-modal.md +220 -0
  266. package/examples/component-navigation-menu.md +295 -0
  267. package/examples/component-notification.md +166 -0
  268. package/examples/component-otp-countdown.md +245 -0
  269. package/examples/component-outlined-input.md +145 -0
  270. package/examples/component-page-transition.md +281 -0
  271. package/examples/component-pagination.md +226 -0
  272. package/examples/component-paper.md +199 -0
  273. package/examples/component-pass-auth.md +265 -0
  274. package/examples/component-payment-brand-button.md +253 -0
  275. package/examples/component-payment-method-selector.md +272 -0
  276. package/examples/component-payment-receipt.md +277 -0
  277. package/examples/component-popconfirm.md +144 -0
  278. package/examples/component-popover.md +239 -0
  279. package/examples/component-popper.md +129 -0
  280. package/examples/component-pricing-cards.md +247 -0
  281. package/examples/component-progress.md +195 -0
  282. package/examples/component-qr-code.md +201 -0
  283. package/examples/component-radio.md +167 -0
  284. package/examples/component-rate.md +202 -0
  285. package/examples/component-resizable.md +163 -0
  286. package/examples/component-result.md +270 -0
  287. package/examples/component-scroll-area.md +199 -0
  288. package/examples/component-scroll-reveal.md +320 -0
  289. package/examples/component-segmented.md +178 -0
  290. package/examples/component-select.md +258 -0
  291. package/examples/component-separator.md +177 -0
  292. package/examples/component-sheet.md +277 -0
  293. package/examples/component-sidebar.md +257 -0
  294. package/examples/component-skeleton.md +178 -0
  295. package/examples/component-slide.md +89 -0
  296. package/examples/component-slider.md +208 -0
  297. package/examples/component-snackbar-content.md +92 -0
  298. package/examples/component-snackbar.md +121 -0
  299. package/examples/component-sonner.md +165 -0
  300. package/examples/component-space.md +125 -0
  301. package/examples/component-spatial-locomotion.md +373 -0
  302. package/examples/component-spatial-panel.md +330 -0
  303. package/examples/component-speed-dial-action.md +78 -0
  304. package/examples/component-speed-dial.md +177 -0
  305. package/examples/component-spin.md +173 -0
  306. package/examples/component-spinner.md +204 -0
  307. package/examples/component-splitter.md +210 -0
  308. package/examples/component-stack.md +130 -0
  309. package/examples/component-statistic.md +282 -0
  310. package/examples/component-step-button.md +157 -0
  311. package/examples/component-step-connector.md +157 -0
  312. package/examples/component-step-content.md +121 -0
  313. package/examples/component-step-icon.md +115 -0
  314. package/examples/component-step-label.md +101 -0
  315. package/examples/component-step.md +84 -0
  316. package/examples/component-steps.md +264 -0
  317. package/examples/component-stock-chart.md +251 -0
  318. package/examples/component-swipeable-drawer.md +149 -0
  319. package/examples/component-switch.md +99 -0
  320. package/examples/component-tab-scroll-button.md +180 -0
  321. package/examples/component-tab.md +120 -0
  322. package/examples/component-table-body.md +82 -0
  323. package/examples/component-table-cell.md +118 -0
  324. package/examples/component-table-container.md +75 -0
  325. package/examples/component-table-footer.md +72 -0
  326. package/examples/component-table-head.md +78 -0
  327. package/examples/component-table-pagination.md +137 -0
  328. package/examples/component-table-row.md +113 -0
  329. package/examples/component-table-sort-label.md +109 -0
  330. package/examples/component-table.md +202 -0
  331. package/examples/component-tabs.md +184 -0
  332. package/examples/component-tag-badge.md +309 -0
  333. package/examples/component-tag.md +102 -0
  334. package/examples/component-testimonial-carousel.md +218 -0
  335. package/examples/component-textarea-autosize.md +114 -0
  336. package/examples/component-textarea.md +173 -0
  337. package/examples/component-time-picker.md +205 -0
  338. package/examples/component-timeline.md +170 -0
  339. package/examples/component-toast.md +224 -0
  340. package/examples/component-toggle-button.md +129 -0
  341. package/examples/component-toggle.md +220 -0
  342. package/examples/component-toolbar.md +104 -0
  343. package/examples/component-tooltip.md +178 -0
  344. package/examples/component-tour.md +176 -0
  345. package/examples/component-transaction-list-item.md +243 -0
  346. package/examples/component-transfer.md +156 -0
  347. package/examples/component-tree-select.md +202 -0
  348. package/examples/component-tree.md +297 -0
  349. package/examples/component-typography.md +215 -0
  350. package/examples/component-upload.md +295 -0
  351. package/examples/component-video-hero.md +409 -0
  352. package/examples/component-video-player.md +340 -0
  353. package/examples/component-voice-input.md +408 -0
  354. package/examples/component-watermark.md +217 -0
  355. package/examples/component-zoom.md +92 -0
  356. package/examples/doc-explanation-example.md +196 -0
  357. package/examples/doc-how-to-example.md +205 -0
  358. package/examples/doc-tutorial-example.md +162 -0
  359. package/examples/dogfood-korean-fintech-system.md +433 -0
  360. package/examples/email-transactional-example.md +259 -0
  361. package/examples/palette-saas-violet.md +235 -0
  362. package/examples/print-business-card-spec.md +205 -0
  363. package/examples/print-packaging-spec.md +285 -0
  364. package/examples/report-example.md +228 -0
  365. package/examples/slide-deck-example.md +237 -0
  366. package/examples/website-improvement-report.md +128 -0
  367. package/examples/website-improvement-workspace.json +126 -0
  368. package/install.sh +189 -0
  369. package/knowledge/COVERAGE.md +740 -0
  370. package/knowledge/PRINCIPLES.md +108 -0
  371. package/knowledge/a11y/contrast.md +70 -0
  372. package/knowledge/a11y/keyboard-and-focus.md +108 -0
  373. package/knowledge/colors/color-theory.md +90 -0
  374. package/knowledge/colors/mui-palette-structure.md +105 -0
  375. package/knowledge/colors/palettes-by-product-type.md +876 -0
  376. package/knowledge/components/INDEX.md +231 -0
  377. package/knowledge/components/index.json +1470 -0
  378. package/knowledge/components/shadcn-registry.md +159 -0
  379. package/knowledge/conversational/ai-chat-interfaces.md +323 -0
  380. package/knowledge/conversational/chatbot-design.md +312 -0
  381. package/knowledge/conversational/conversational-ui-fundamentals.md +299 -0
  382. package/knowledge/conversational/korean-voice-conventions.md +281 -0
  383. package/knowledge/conversational/voice-ui-patterns.md +297 -0
  384. package/knowledge/design-tokens/ant-design.md +124 -0
  385. package/knowledge/design-tokens/material-3.md +235 -0
  386. package/knowledge/design-tokens/polaris-and-carbon.md +231 -0
  387. package/knowledge/design-tokens/tailwind-v4.md +284 -0
  388. package/knowledge/game-ui/game-accessibility.md +317 -0
  389. package/knowledge/game-ui/game-ui-fundamentals.md +281 -0
  390. package/knowledge/game-ui/hud-design.md +324 -0
  391. package/knowledge/game-ui/korean-gaming-conventions.md +312 -0
  392. package/knowledge/game-ui/menu-systems.md +388 -0
  393. package/knowledge/i18n/korean-app-store-visual.md +223 -0
  394. package/knowledge/i18n/korean-document-style.md +301 -0
  395. package/knowledge/i18n/korean-payments.md +211 -0
  396. package/knowledge/i18n/korean-product-conventions.md +96 -0
  397. package/knowledge/i18n/korean-publishing.md +139 -0
  398. package/knowledge/i18n/korean-typography.md +123 -0
  399. package/knowledge/icons/curated-sets.md +225 -0
  400. package/knowledge/illustration/hero-illustrations.md +234 -0
  401. package/knowledge/illustration/illustration-systems.md +221 -0
  402. package/knowledge/illustration/mascot-design.md +208 -0
  403. package/knowledge/illustration/spot-illustrations.md +246 -0
  404. package/knowledge/illustration/svg-optimization.md +308 -0
  405. package/knowledge/layout/spacing-and-grid.md +119 -0
  406. package/knowledge/motion/app-loading-sequences.md +277 -0
  407. package/knowledge/motion/choreography-depth.md +297 -0
  408. package/knowledge/motion/marketing-motion.md +223 -0
  409. package/knowledge/motion/micro-interactions.md +266 -0
  410. package/knowledge/motion/motion-tools.md +281 -0
  411. package/knowledge/motion/principles.md +126 -0
  412. package/knowledge/patterns/auth-flow-design.md +316 -0
  413. package/knowledge/patterns/b2b-onboarding-flows.md +182 -0
  414. package/knowledge/patterns/brand-identity.md +238 -0
  415. package/knowledge/patterns/brand-references.md +97 -0
  416. package/knowledge/patterns/chart-color-encoding.md +269 -0
  417. package/knowledge/patterns/chart-types.md +344 -0
  418. package/knowledge/patterns/dashboard-composition.md +299 -0
  419. package/knowledge/patterns/design-system-qa.md +356 -0
  420. package/knowledge/patterns/document-typography.md +248 -0
  421. package/knowledge/patterns/email-design.md +338 -0
  422. package/knowledge/patterns/empty-states.md +263 -0
  423. package/knowledge/patterns/error-states.md +318 -0
  424. package/knowledge/patterns/form-design.md +237 -0
  425. package/knowledge/patterns/information-architecture.md +341 -0
  426. package/knowledge/patterns/landing-hero-design.md +283 -0
  427. package/knowledge/patterns/landing-page-patterns.md +681 -0
  428. package/knowledge/patterns/list-and-feed.md +371 -0
  429. package/knowledge/patterns/mobile-navigation.md +278 -0
  430. package/knowledge/patterns/money-and-amount.md +301 -0
  431. package/knowledge/patterns/onboarding.md +300 -0
  432. package/knowledge/patterns/pricing-page-design.md +261 -0
  433. package/knowledge/patterns/realtime-data.md +280 -0
  434. package/knowledge/patterns/report-design.md +330 -0
  435. package/knowledge/patterns/search-ux.md +373 -0
  436. package/knowledge/patterns/settings-page.md +325 -0
  437. package/knowledge/patterns/slide-deck-design.md +316 -0
  438. package/knowledge/patterns/styles-catalog.md +2599 -0
  439. package/knowledge/patterns/technical-writing.md +306 -0
  440. package/knowledge/patterns/ui-reasoning.md +1853 -0
  441. package/knowledge/patterns/ux-guidelines.md +1454 -0
  442. package/knowledge/platforms/react-native.md +395 -0
  443. package/knowledge/print/brochures-and-flyers.md +276 -0
  444. package/knowledge/print/korean-print-conventions.md +284 -0
  445. package/knowledge/print/packaging.md +321 -0
  446. package/knowledge/print/print-fundamentals.md +238 -0
  447. package/knowledge/print/signage-and-posters.md +235 -0
  448. package/knowledge/print/stationery.md +262 -0
  449. package/knowledge/spatial/ar-patterns.md +253 -0
  450. package/knowledge/spatial/comfort-and-accessibility.md +245 -0
  451. package/knowledge/spatial/spatial-design-fundamentals.md +346 -0
  452. package/knowledge/spatial/spatial-ui-elements.md +343 -0
  453. package/knowledge/spatial/vr-patterns.md +302 -0
  454. package/knowledge/typography/font-pairings.md +332 -0
  455. package/knowledge/typography/mui-type-scale.md +57 -0
  456. package/knowledge/typography/type-scale-fundamentals.md +105 -0
  457. package/knowledge/video/in-product-video.md +277 -0
  458. package/knowledge/video/korean-video-conventions.md +247 -0
  459. package/knowledge/video/marketing-video.md +258 -0
  460. package/knowledge/video/social-and-short-form.md +257 -0
  461. package/knowledge/video/video-fundamentals.md +296 -0
  462. package/package.json +106 -0
  463. package/skills/README.md +39 -0
  464. package/skills/color-palette/PLAYBOOK.md +175 -0
  465. package/skills/color-palette/SKILL.md +6 -0
  466. package/skills/color-palette/TEMPLATE.md +103 -0
  467. package/skills/component-spec-writer/PLAYBOOK.md +169 -0
  468. package/skills/component-spec-writer/SKILL.md +6 -0
  469. package/skills/component-spec-writer/TEMPLATE.md +115 -0
  470. package/skills/conversational-ui-designer/PLAYBOOK.md +231 -0
  471. package/skills/conversational-ui-designer/SKILL.md +6 -0
  472. package/skills/design-broadcast/PLAYBOOK.md +146 -0
  473. package/skills/design-broadcast/SKILL.md +6 -0
  474. package/skills/design-critique/PLAYBOOK.md +137 -0
  475. package/skills/design-critique/SKILL.md +6 -0
  476. package/skills/design-pr-review/PLAYBOOK.md +171 -0
  477. package/skills/design-pr-review/SKILL.md +6 -0
  478. package/skills/design-system-builder/PLAYBOOK.md +218 -0
  479. package/skills/design-system-builder/SKILL.md +6 -0
  480. package/skills/design-system-qa/PLAYBOOK.md +163 -0
  481. package/skills/design-system-qa/SKILL.md +6 -0
  482. package/skills/document-author/PLAYBOOK.md +167 -0
  483. package/skills/document-author/SKILL.md +6 -0
  484. package/skills/figma-token-sync/PLAYBOOK.md +149 -0
  485. package/skills/figma-token-sync/SKILL.md +6 -0
  486. package/skills/game-ui-designer/PLAYBOOK.md +209 -0
  487. package/skills/game-ui-designer/SKILL.md +6 -0
  488. package/skills/handoff-spec/PLAYBOOK.md +170 -0
  489. package/skills/handoff-spec/SKILL.md +6 -0
  490. package/skills/illustration-designer/PLAYBOOK.md +166 -0
  491. package/skills/illustration-designer/SKILL.md +6 -0
  492. package/skills/motion-designer/PLAYBOOK.md +223 -0
  493. package/skills/motion-designer/SKILL.md +6 -0
  494. package/skills/print-designer/PLAYBOOK.md +209 -0
  495. package/skills/print-designer/SKILL.md +6 -0
  496. package/skills/slide-deck-author/PLAYBOOK.md +198 -0
  497. package/skills/slide-deck-author/SKILL.md +6 -0
  498. package/skills/spatial-designer/PLAYBOOK.md +238 -0
  499. package/skills/spatial-designer/SKILL.md +6 -0
  500. package/skills/ux-audit/PLAYBOOK.md +142 -0
  501. package/skills/ux-audit/SKILL.md +6 -0
  502. package/skills/video-designer/PLAYBOOK.md +240 -0
  503. package/skills/video-designer/SKILL.md +6 -0
  504. package/skills/website-improvement/PLAYBOOK.md +118 -0
  505. package/skills/website-improvement/SKILL.md +6 -0
  506. package/skills/website-improvement/TEMPLATE.md +103 -0
  507. package/tools/audit/changelog-generate.py +176 -0
  508. package/tools/audit/check-coverage.py +483 -0
  509. package/tools/audit/doctor_assertions.py +256 -0
  510. package/tools/audit/example-qa.py +108 -0
  511. package/tools/audit/frontmatter-check.py +199 -0
  512. package/tools/audit/integration-check.py +95 -0
  513. package/tools/audit/korean-copy-check.py +161 -0
  514. package/tools/audit/link-check.py +146 -0
  515. package/tools/audit/local-ci.py +558 -0
  516. package/tools/audit/package-contents.py +723 -0
  517. package/tools/audit/package-smoke.py +22443 -0
  518. package/tools/audit/raw-hex-check.py +252 -0
  519. package/tools/audit/registry-smoke.py +8188 -0
  520. package/tools/audit/release-metadata.py +9832 -0
  521. package/tools/audit/run-all.py +351 -0
  522. package/tools/audit/smoke_assertions.py +12742 -0
  523. package/tools/audit/stability-review.py +332 -0
  524. package/tools/audit/stale-check.py +156 -0
  525. package/tools/migrations/add-version-frontmatter.py +132 -0
  526. package/tools/migrations/bump-last-updated.py +131 -0
  527. package/tools/migrations/promote-stability.py +172 -0
  528. package/tools/preview/README.md +58 -0
  529. package/tools/preview/render-tokens.py +454 -0
@@ -0,0 +1,1470 @@
1
+ {
2
+ "_registry": {
3
+ "shadcn": {
4
+ "name": "_registry",
5
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/_registry.ts"
6
+ }
7
+ },
8
+ "accordion": {
9
+ "ant": {
10
+ "name": "collapse",
11
+ "path": "refs/ant-design/components/collapse"
12
+ },
13
+ "mui": {
14
+ "name": "Collapse",
15
+ "path": "refs/mui/packages/mui-material/src/Collapse"
16
+ },
17
+ "shadcn": {
18
+ "name": "accordion",
19
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/accordion.tsx"
20
+ }
21
+ },
22
+ "accordion-actions": {
23
+ "mui": {
24
+ "name": "AccordionActions",
25
+ "path": "refs/mui/packages/mui-material/src/AccordionActions"
26
+ }
27
+ },
28
+ "accordion-details": {
29
+ "mui": {
30
+ "name": "AccordionDetails",
31
+ "path": "refs/mui/packages/mui-material/src/AccordionDetails"
32
+ }
33
+ },
34
+ "accordion-summary": {
35
+ "mui": {
36
+ "name": "AccordionSummary",
37
+ "path": "refs/mui/packages/mui-material/src/AccordionSummary"
38
+ }
39
+ },
40
+ "affix": {
41
+ "ant": {
42
+ "name": "affix",
43
+ "path": "refs/ant-design/components/affix"
44
+ }
45
+ },
46
+ "alert": {
47
+ "ant": {
48
+ "name": "alert",
49
+ "path": "refs/ant-design/components/alert"
50
+ },
51
+ "mui": {
52
+ "name": "Alert",
53
+ "path": "refs/mui/packages/mui-material/src/Alert"
54
+ },
55
+ "shadcn": {
56
+ "name": "alert",
57
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/alert.tsx"
58
+ }
59
+ },
60
+ "alert-dialog": {
61
+ "shadcn": {
62
+ "name": "alert-dialog",
63
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/alert-dialog.tsx"
64
+ }
65
+ },
66
+ "alert-title": {
67
+ "mui": {
68
+ "name": "AlertTitle",
69
+ "path": "refs/mui/packages/mui-material/src/AlertTitle"
70
+ }
71
+ },
72
+ "anchor": {
73
+ "ant": {
74
+ "name": "anchor",
75
+ "path": "refs/ant-design/components/anchor"
76
+ }
77
+ },
78
+ "app": {
79
+ "ant": {
80
+ "name": "app",
81
+ "path": "refs/ant-design/components/app"
82
+ }
83
+ },
84
+ "app-bar": {
85
+ "mui": {
86
+ "name": "AppBar",
87
+ "path": "refs/mui/packages/mui-material/src/AppBar"
88
+ }
89
+ },
90
+ "aspect-ratio": {
91
+ "shadcn": {
92
+ "name": "aspect-ratio",
93
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/aspect-ratio.tsx"
94
+ }
95
+ },
96
+ "auto-complete": {
97
+ "ant": {
98
+ "name": "auto-complete",
99
+ "path": "refs/ant-design/components/auto-complete"
100
+ },
101
+ "mui": {
102
+ "name": "Autocomplete",
103
+ "path": "refs/mui/packages/mui-material/src/Autocomplete"
104
+ }
105
+ },
106
+ "avatar": {
107
+ "ant": {
108
+ "name": "avatar",
109
+ "path": "refs/ant-design/components/avatar"
110
+ },
111
+ "mui": {
112
+ "name": "Avatar",
113
+ "path": "refs/mui/packages/mui-material/src/Avatar"
114
+ },
115
+ "shadcn": {
116
+ "name": "avatar",
117
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/avatar.tsx"
118
+ }
119
+ },
120
+ "avatar-group": {
121
+ "mui": {
122
+ "name": "AvatarGroup",
123
+ "path": "refs/mui/packages/mui-material/src/AvatarGroup"
124
+ }
125
+ },
126
+ "back-top": {
127
+ "ant": {
128
+ "name": "back-top",
129
+ "path": "refs/ant-design/components/back-top"
130
+ },
131
+ "mui": {
132
+ "name": "Fab",
133
+ "path": "refs/mui/packages/mui-material/src/Fab"
134
+ }
135
+ },
136
+ "backdrop": {
137
+ "mui": {
138
+ "name": "Backdrop",
139
+ "path": "refs/mui/packages/mui-material/src/Backdrop"
140
+ }
141
+ },
142
+ "badge": {
143
+ "ant": {
144
+ "name": "badge",
145
+ "path": "refs/ant-design/components/badge"
146
+ },
147
+ "mui": {
148
+ "name": "Badge",
149
+ "path": "refs/mui/packages/mui-material/src/Badge"
150
+ },
151
+ "shadcn": {
152
+ "name": "badge",
153
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/badge.tsx"
154
+ }
155
+ },
156
+ "border-beam": {
157
+ "ant": {
158
+ "name": "border-beam",
159
+ "path": "refs/ant-design/components/border-beam"
160
+ }
161
+ },
162
+ "bottom-navigation": {
163
+ "mui": {
164
+ "name": "BottomNavigation",
165
+ "path": "refs/mui/packages/mui-material/src/BottomNavigation"
166
+ }
167
+ },
168
+ "bottom-navigation-action": {
169
+ "mui": {
170
+ "name": "BottomNavigationAction",
171
+ "path": "refs/mui/packages/mui-material/src/BottomNavigationAction"
172
+ }
173
+ },
174
+ "box": {
175
+ "mui": {
176
+ "name": "Box",
177
+ "path": "refs/mui/packages/mui-material/src/Box"
178
+ }
179
+ },
180
+ "breadcrumb": {
181
+ "ant": {
182
+ "name": "breadcrumb",
183
+ "path": "refs/ant-design/components/breadcrumb"
184
+ },
185
+ "mui": {
186
+ "name": "Breadcrumbs",
187
+ "path": "refs/mui/packages/mui-material/src/Breadcrumbs"
188
+ },
189
+ "shadcn": {
190
+ "name": "breadcrumb",
191
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/breadcrumb.tsx"
192
+ }
193
+ },
194
+ "button": {
195
+ "ant": {
196
+ "name": "button",
197
+ "path": "refs/ant-design/components/button"
198
+ },
199
+ "mui": {
200
+ "name": "Button",
201
+ "path": "refs/mui/packages/mui-material/src/Button"
202
+ },
203
+ "shadcn": {
204
+ "name": "button",
205
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/button.tsx"
206
+ }
207
+ },
208
+ "button-base": {
209
+ "mui": {
210
+ "name": "ButtonBase",
211
+ "path": "refs/mui/packages/mui-material/src/ButtonBase"
212
+ }
213
+ },
214
+ "button-group": {
215
+ "mui": {
216
+ "name": "ButtonGroup",
217
+ "path": "refs/mui/packages/mui-material/src/ButtonGroup"
218
+ },
219
+ "shadcn": {
220
+ "name": "button-group",
221
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/button-group.tsx"
222
+ }
223
+ },
224
+ "card": {
225
+ "ant": {
226
+ "name": "card",
227
+ "path": "refs/ant-design/components/card"
228
+ },
229
+ "mui": {
230
+ "name": "Card",
231
+ "path": "refs/mui/packages/mui-material/src/Card"
232
+ },
233
+ "shadcn": {
234
+ "name": "card",
235
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/card.tsx"
236
+ }
237
+ },
238
+ "card-action-area": {
239
+ "mui": {
240
+ "name": "CardActionArea",
241
+ "path": "refs/mui/packages/mui-material/src/CardActionArea"
242
+ }
243
+ },
244
+ "card-actions": {
245
+ "mui": {
246
+ "name": "CardActions",
247
+ "path": "refs/mui/packages/mui-material/src/CardActions"
248
+ }
249
+ },
250
+ "card-content": {
251
+ "mui": {
252
+ "name": "CardContent",
253
+ "path": "refs/mui/packages/mui-material/src/CardContent"
254
+ }
255
+ },
256
+ "card-header": {
257
+ "mui": {
258
+ "name": "CardHeader",
259
+ "path": "refs/mui/packages/mui-material/src/CardHeader"
260
+ }
261
+ },
262
+ "card-media": {
263
+ "mui": {
264
+ "name": "CardMedia",
265
+ "path": "refs/mui/packages/mui-material/src/CardMedia"
266
+ }
267
+ },
268
+ "carousel": {
269
+ "ant": {
270
+ "name": "carousel",
271
+ "path": "refs/ant-design/components/carousel"
272
+ },
273
+ "shadcn": {
274
+ "name": "carousel",
275
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/carousel.tsx"
276
+ }
277
+ },
278
+ "cascader": {
279
+ "ant": {
280
+ "name": "cascader",
281
+ "path": "refs/ant-design/components/cascader"
282
+ }
283
+ },
284
+ "chart": {
285
+ "shadcn": {
286
+ "name": "chart",
287
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/chart.tsx"
288
+ }
289
+ },
290
+ "checkbox": {
291
+ "ant": {
292
+ "name": "checkbox",
293
+ "path": "refs/ant-design/components/checkbox"
294
+ },
295
+ "mui": {
296
+ "name": "Checkbox",
297
+ "path": "refs/mui/packages/mui-material/src/Checkbox"
298
+ },
299
+ "shadcn": {
300
+ "name": "checkbox",
301
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/checkbox.tsx"
302
+ }
303
+ },
304
+ "class-name": {
305
+ "mui": {
306
+ "name": "className",
307
+ "path": "refs/mui/packages/mui-material/src/className"
308
+ }
309
+ },
310
+ "click-away-listener": {
311
+ "mui": {
312
+ "name": "ClickAwayListener",
313
+ "path": "refs/mui/packages/mui-material/src/ClickAwayListener"
314
+ }
315
+ },
316
+ "col": {
317
+ "ant": {
318
+ "name": "col",
319
+ "path": "refs/ant-design/components/col"
320
+ }
321
+ },
322
+ "collapsible": {
323
+ "shadcn": {
324
+ "name": "collapsible",
325
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/collapsible.tsx"
326
+ }
327
+ },
328
+ "color-picker": {
329
+ "ant": {
330
+ "name": "color-picker",
331
+ "path": "refs/ant-design/components/color-picker"
332
+ }
333
+ },
334
+ "colors": {
335
+ "mui": {
336
+ "name": "colors",
337
+ "path": "refs/mui/packages/mui-material/src/colors"
338
+ }
339
+ },
340
+ "combobox": {
341
+ "shadcn": {
342
+ "name": "combobox",
343
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/combobox.tsx"
344
+ }
345
+ },
346
+ "command": {
347
+ "shadcn": {
348
+ "name": "command",
349
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/command.tsx"
350
+ }
351
+ },
352
+ "config-provider": {
353
+ "ant": {
354
+ "name": "config-provider",
355
+ "path": "refs/ant-design/components/config-provider"
356
+ }
357
+ },
358
+ "context-menu": {
359
+ "shadcn": {
360
+ "name": "context-menu",
361
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/context-menu.tsx"
362
+ }
363
+ },
364
+ "css-baseline": {
365
+ "mui": {
366
+ "name": "CssBaseline",
367
+ "path": "refs/mui/packages/mui-material/src/CssBaseline"
368
+ }
369
+ },
370
+ "dark-scrollbar": {
371
+ "mui": {
372
+ "name": "darkScrollbar",
373
+ "path": "refs/mui/packages/mui-material/src/darkScrollbar"
374
+ }
375
+ },
376
+ "date-picker": {
377
+ "ant": {
378
+ "name": "date-picker",
379
+ "path": "refs/ant-design/components/date-picker"
380
+ },
381
+ "shadcn": {
382
+ "name": "calendar",
383
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/calendar.tsx"
384
+ }
385
+ },
386
+ "descriptions": {
387
+ "ant": {
388
+ "name": "descriptions",
389
+ "path": "refs/ant-design/components/descriptions"
390
+ }
391
+ },
392
+ "dialog-actions": {
393
+ "mui": {
394
+ "name": "DialogActions",
395
+ "path": "refs/mui/packages/mui-material/src/DialogActions"
396
+ }
397
+ },
398
+ "dialog-content": {
399
+ "mui": {
400
+ "name": "DialogContent",
401
+ "path": "refs/mui/packages/mui-material/src/DialogContent"
402
+ }
403
+ },
404
+ "dialog-content-text": {
405
+ "mui": {
406
+ "name": "DialogContentText",
407
+ "path": "refs/mui/packages/mui-material/src/DialogContentText"
408
+ }
409
+ },
410
+ "dialog-title": {
411
+ "mui": {
412
+ "name": "DialogTitle",
413
+ "path": "refs/mui/packages/mui-material/src/DialogTitle"
414
+ }
415
+ },
416
+ "direction": {
417
+ "shadcn": {
418
+ "name": "direction",
419
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/direction.tsx"
420
+ }
421
+ },
422
+ "divider": {
423
+ "ant": {
424
+ "name": "divider",
425
+ "path": "refs/ant-design/components/divider"
426
+ },
427
+ "mui": {
428
+ "name": "Divider",
429
+ "path": "refs/mui/packages/mui-material/src/Divider"
430
+ }
431
+ },
432
+ "drawer": {
433
+ "ant": {
434
+ "name": "drawer",
435
+ "path": "refs/ant-design/components/drawer"
436
+ },
437
+ "mui": {
438
+ "name": "Drawer",
439
+ "path": "refs/mui/packages/mui-material/src/Drawer"
440
+ },
441
+ "shadcn": {
442
+ "name": "drawer",
443
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/drawer.tsx"
444
+ }
445
+ },
446
+ "dropdown": {
447
+ "ant": {
448
+ "name": "dropdown",
449
+ "path": "refs/ant-design/components/dropdown"
450
+ }
451
+ },
452
+ "empty": {
453
+ "ant": {
454
+ "name": "empty",
455
+ "path": "refs/ant-design/components/empty"
456
+ },
457
+ "shadcn": {
458
+ "name": "empty",
459
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/empty.tsx"
460
+ }
461
+ },
462
+ "fade": {
463
+ "mui": {
464
+ "name": "Fade",
465
+ "path": "refs/mui/packages/mui-material/src/Fade"
466
+ }
467
+ },
468
+ "field": {
469
+ "shadcn": {
470
+ "name": "field",
471
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/field.tsx"
472
+ }
473
+ },
474
+ "filled-input": {
475
+ "mui": {
476
+ "name": "FilledInput",
477
+ "path": "refs/mui/packages/mui-material/src/FilledInput"
478
+ }
479
+ },
480
+ "flex": {
481
+ "ant": {
482
+ "name": "flex",
483
+ "path": "refs/ant-design/components/flex"
484
+ }
485
+ },
486
+ "float-button": {
487
+ "ant": {
488
+ "name": "float-button",
489
+ "path": "refs/ant-design/components/float-button"
490
+ }
491
+ },
492
+ "form": {
493
+ "ant": {
494
+ "name": "form",
495
+ "path": "refs/ant-design/components/form"
496
+ },
497
+ "shadcn": {
498
+ "name": "form",
499
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/form.tsx"
500
+ }
501
+ },
502
+ "form-control": {
503
+ "mui": {
504
+ "name": "FormControl",
505
+ "path": "refs/mui/packages/mui-material/src/FormControl"
506
+ }
507
+ },
508
+ "form-control-label": {
509
+ "mui": {
510
+ "name": "FormControlLabel",
511
+ "path": "refs/mui/packages/mui-material/src/FormControlLabel"
512
+ }
513
+ },
514
+ "form-group": {
515
+ "mui": {
516
+ "name": "FormGroup",
517
+ "path": "refs/mui/packages/mui-material/src/FormGroup"
518
+ }
519
+ },
520
+ "form-helper-text": {
521
+ "mui": {
522
+ "name": "FormHelperText",
523
+ "path": "refs/mui/packages/mui-material/src/FormHelperText"
524
+ }
525
+ },
526
+ "form-label": {
527
+ "mui": {
528
+ "name": "FormLabel",
529
+ "path": "refs/mui/packages/mui-material/src/FormLabel"
530
+ }
531
+ },
532
+ "generate-utility-classes": {
533
+ "mui": {
534
+ "name": "generateUtilityClasses",
535
+ "path": "refs/mui/packages/mui-material/src/generateUtilityClasses"
536
+ }
537
+ },
538
+ "grid": {
539
+ "ant": {
540
+ "name": "grid",
541
+ "path": "refs/ant-design/components/grid"
542
+ },
543
+ "mui": {
544
+ "name": "Grid",
545
+ "path": "refs/mui/packages/mui-material/src/Grid"
546
+ }
547
+ },
548
+ "grow": {
549
+ "mui": {
550
+ "name": "Grow",
551
+ "path": "refs/mui/packages/mui-material/src/Grow"
552
+ }
553
+ },
554
+ "hover-card": {
555
+ "shadcn": {
556
+ "name": "hover-card",
557
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/hover-card.tsx"
558
+ }
559
+ },
560
+ "icon": {
561
+ "ant": {
562
+ "name": "icon",
563
+ "path": "refs/ant-design/components/icon"
564
+ },
565
+ "mui": {
566
+ "name": "Icon",
567
+ "path": "refs/mui/packages/mui-material/src/Icon"
568
+ }
569
+ },
570
+ "icon-button": {
571
+ "mui": {
572
+ "name": "IconButton",
573
+ "path": "refs/mui/packages/mui-material/src/IconButton"
574
+ }
575
+ },
576
+ "image": {
577
+ "ant": {
578
+ "name": "image",
579
+ "path": "refs/ant-design/components/image"
580
+ }
581
+ },
582
+ "image-list": {
583
+ "mui": {
584
+ "name": "ImageList",
585
+ "path": "refs/mui/packages/mui-material/src/ImageList"
586
+ }
587
+ },
588
+ "image-list-item": {
589
+ "mui": {
590
+ "name": "ImageListItem",
591
+ "path": "refs/mui/packages/mui-material/src/ImageListItem"
592
+ }
593
+ },
594
+ "image-list-item-bar": {
595
+ "mui": {
596
+ "name": "ImageListItemBar",
597
+ "path": "refs/mui/packages/mui-material/src/ImageListItemBar"
598
+ }
599
+ },
600
+ "input": {
601
+ "ant": {
602
+ "name": "input",
603
+ "path": "refs/ant-design/components/input"
604
+ },
605
+ "mui": {
606
+ "name": "TextField",
607
+ "path": "refs/mui/packages/mui-material/src/TextField"
608
+ },
609
+ "shadcn": {
610
+ "name": "input",
611
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/input.tsx"
612
+ }
613
+ },
614
+ "input-adornment": {
615
+ "mui": {
616
+ "name": "InputAdornment",
617
+ "path": "refs/mui/packages/mui-material/src/InputAdornment"
618
+ }
619
+ },
620
+ "input-base": {
621
+ "mui": {
622
+ "name": "InputBase",
623
+ "path": "refs/mui/packages/mui-material/src/InputBase"
624
+ }
625
+ },
626
+ "input-group": {
627
+ "shadcn": {
628
+ "name": "input-group",
629
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/input-group.tsx"
630
+ }
631
+ },
632
+ "input-label": {
633
+ "mui": {
634
+ "name": "InputLabel",
635
+ "path": "refs/mui/packages/mui-material/src/InputLabel"
636
+ }
637
+ },
638
+ "input-number": {
639
+ "ant": {
640
+ "name": "input-number",
641
+ "path": "refs/ant-design/components/input-number"
642
+ }
643
+ },
644
+ "input-otp": {
645
+ "shadcn": {
646
+ "name": "input-otp",
647
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/input-otp.tsx"
648
+ }
649
+ },
650
+ "item": {
651
+ "shadcn": {
652
+ "name": "item",
653
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/item.tsx"
654
+ }
655
+ },
656
+ "kbd": {
657
+ "shadcn": {
658
+ "name": "kbd",
659
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/kbd.tsx"
660
+ }
661
+ },
662
+ "label": {
663
+ "shadcn": {
664
+ "name": "label",
665
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/label.tsx"
666
+ }
667
+ },
668
+ "layout": {
669
+ "ant": {
670
+ "name": "layout",
671
+ "path": "refs/ant-design/components/layout"
672
+ },
673
+ "mui": {
674
+ "name": "Container",
675
+ "path": "refs/mui/packages/mui-material/src/Container"
676
+ }
677
+ },
678
+ "link": {
679
+ "mui": {
680
+ "name": "Link",
681
+ "path": "refs/mui/packages/mui-material/src/Link"
682
+ }
683
+ },
684
+ "list": {
685
+ "ant": {
686
+ "name": "list",
687
+ "path": "refs/ant-design/components/list"
688
+ },
689
+ "mui": {
690
+ "name": "List",
691
+ "path": "refs/mui/packages/mui-material/src/List"
692
+ }
693
+ },
694
+ "list-item": {
695
+ "mui": {
696
+ "name": "ListItem",
697
+ "path": "refs/mui/packages/mui-material/src/ListItem"
698
+ }
699
+ },
700
+ "list-item-avatar": {
701
+ "mui": {
702
+ "name": "ListItemAvatar",
703
+ "path": "refs/mui/packages/mui-material/src/ListItemAvatar"
704
+ }
705
+ },
706
+ "list-item-button": {
707
+ "mui": {
708
+ "name": "ListItemButton",
709
+ "path": "refs/mui/packages/mui-material/src/ListItemButton"
710
+ }
711
+ },
712
+ "list-item-icon": {
713
+ "mui": {
714
+ "name": "ListItemIcon",
715
+ "path": "refs/mui/packages/mui-material/src/ListItemIcon"
716
+ }
717
+ },
718
+ "list-item-secondary-action": {
719
+ "mui": {
720
+ "name": "ListItemSecondaryAction",
721
+ "path": "refs/mui/packages/mui-material/src/ListItemSecondaryAction"
722
+ }
723
+ },
724
+ "list-item-text": {
725
+ "mui": {
726
+ "name": "ListItemText",
727
+ "path": "refs/mui/packages/mui-material/src/ListItemText"
728
+ }
729
+ },
730
+ "list-subheader": {
731
+ "mui": {
732
+ "name": "ListSubheader",
733
+ "path": "refs/mui/packages/mui-material/src/ListSubheader"
734
+ }
735
+ },
736
+ "locale": {
737
+ "ant": {
738
+ "name": "locale",
739
+ "path": "refs/ant-design/components/locale"
740
+ },
741
+ "mui": {
742
+ "name": "locale",
743
+ "path": "refs/mui/packages/mui-material/src/locale"
744
+ }
745
+ },
746
+ "masonry": {
747
+ "ant": {
748
+ "name": "masonry",
749
+ "path": "refs/ant-design/components/masonry"
750
+ }
751
+ },
752
+ "mentions": {
753
+ "ant": {
754
+ "name": "mentions",
755
+ "path": "refs/ant-design/components/mentions"
756
+ }
757
+ },
758
+ "menu": {
759
+ "ant": {
760
+ "name": "menu",
761
+ "path": "refs/ant-design/components/menu"
762
+ },
763
+ "mui": {
764
+ "name": "Menu",
765
+ "path": "refs/mui/packages/mui-material/src/Menu"
766
+ },
767
+ "shadcn": {
768
+ "name": "navigation-menu",
769
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/navigation-menu.tsx"
770
+ }
771
+ },
772
+ "menu-item": {
773
+ "mui": {
774
+ "name": "MenuItem",
775
+ "path": "refs/mui/packages/mui-material/src/MenuItem"
776
+ }
777
+ },
778
+ "menu-list": {
779
+ "mui": {
780
+ "name": "MenuList",
781
+ "path": "refs/mui/packages/mui-material/src/MenuList"
782
+ }
783
+ },
784
+ "menubar": {
785
+ "shadcn": {
786
+ "name": "menubar",
787
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/menubar.tsx"
788
+ }
789
+ },
790
+ "message": {
791
+ "ant": {
792
+ "name": "message",
793
+ "path": "refs/ant-design/components/message"
794
+ }
795
+ },
796
+ "mobile-stepper": {
797
+ "mui": {
798
+ "name": "MobileStepper",
799
+ "path": "refs/mui/packages/mui-material/src/MobileStepper"
800
+ }
801
+ },
802
+ "modal": {
803
+ "ant": {
804
+ "name": "modal",
805
+ "path": "refs/ant-design/components/modal"
806
+ },
807
+ "mui": {
808
+ "name": "Dialog",
809
+ "path": "refs/mui/packages/mui-material/src/Dialog"
810
+ },
811
+ "shadcn": {
812
+ "name": "dialog",
813
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/dialog.tsx"
814
+ }
815
+ },
816
+ "native-select": {
817
+ "mui": {
818
+ "name": "NativeSelect",
819
+ "path": "refs/mui/packages/mui-material/src/NativeSelect"
820
+ },
821
+ "shadcn": {
822
+ "name": "native-select",
823
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/native-select.tsx"
824
+ }
825
+ },
826
+ "no-ssr": {
827
+ "mui": {
828
+ "name": "NoSsr",
829
+ "path": "refs/mui/packages/mui-material/src/NoSsr"
830
+ }
831
+ },
832
+ "notification": {
833
+ "ant": {
834
+ "name": "notification",
835
+ "path": "refs/ant-design/components/notification"
836
+ }
837
+ },
838
+ "outlined-input": {
839
+ "mui": {
840
+ "name": "OutlinedInput",
841
+ "path": "refs/mui/packages/mui-material/src/OutlinedInput"
842
+ }
843
+ },
844
+ "overridable-component": {
845
+ "mui": {
846
+ "name": "OverridableComponent",
847
+ "path": "refs/mui/packages/mui-material/src/OverridableComponent"
848
+ }
849
+ },
850
+ "overview": {
851
+ "ant": {
852
+ "name": "overview",
853
+ "path": "refs/ant-design/components/overview"
854
+ }
855
+ },
856
+ "pagination": {
857
+ "ant": {
858
+ "name": "pagination",
859
+ "path": "refs/ant-design/components/pagination"
860
+ },
861
+ "mui": {
862
+ "name": "Pagination",
863
+ "path": "refs/mui/packages/mui-material/src/Pagination"
864
+ },
865
+ "shadcn": {
866
+ "name": "pagination",
867
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/pagination.tsx"
868
+ }
869
+ },
870
+ "pagination-item": {
871
+ "mui": {
872
+ "name": "PaginationItem",
873
+ "path": "refs/mui/packages/mui-material/src/PaginationItem"
874
+ }
875
+ },
876
+ "paper": {
877
+ "mui": {
878
+ "name": "Paper",
879
+ "path": "refs/mui/packages/mui-material/src/Paper"
880
+ }
881
+ },
882
+ "popconfirm": {
883
+ "ant": {
884
+ "name": "popconfirm",
885
+ "path": "refs/ant-design/components/popconfirm"
886
+ }
887
+ },
888
+ "popover": {
889
+ "ant": {
890
+ "name": "popover",
891
+ "path": "refs/ant-design/components/popover"
892
+ },
893
+ "mui": {
894
+ "name": "Popover",
895
+ "path": "refs/mui/packages/mui-material/src/Popover"
896
+ },
897
+ "shadcn": {
898
+ "name": "popover",
899
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/popover.tsx"
900
+ }
901
+ },
902
+ "popper": {
903
+ "mui": {
904
+ "name": "Popper",
905
+ "path": "refs/mui/packages/mui-material/src/Popper"
906
+ }
907
+ },
908
+ "progress": {
909
+ "ant": {
910
+ "name": "progress",
911
+ "path": "refs/ant-design/components/progress"
912
+ },
913
+ "mui": {
914
+ "name": "LinearProgress",
915
+ "path": "refs/mui/packages/mui-material/src/LinearProgress"
916
+ },
917
+ "shadcn": {
918
+ "name": "progress",
919
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/progress.tsx"
920
+ }
921
+ },
922
+ "qr-code": {
923
+ "ant": {
924
+ "name": "qr-code",
925
+ "path": "refs/ant-design/components/qr-code"
926
+ }
927
+ },
928
+ "qrcode": {
929
+ "ant": {
930
+ "name": "qrcode",
931
+ "path": "refs/ant-design/components/qrcode"
932
+ }
933
+ },
934
+ "radio": {
935
+ "ant": {
936
+ "name": "radio",
937
+ "path": "refs/ant-design/components/radio"
938
+ },
939
+ "mui": {
940
+ "name": "RadioGroup",
941
+ "path": "refs/mui/packages/mui-material/src/RadioGroup"
942
+ },
943
+ "shadcn": {
944
+ "name": "radio-group",
945
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/radio-group.tsx"
946
+ }
947
+ },
948
+ "rate": {
949
+ "ant": {
950
+ "name": "rate",
951
+ "path": "refs/ant-design/components/rate"
952
+ },
953
+ "mui": {
954
+ "name": "Rating",
955
+ "path": "refs/mui/packages/mui-material/src/Rating"
956
+ }
957
+ },
958
+ "resizable": {
959
+ "shadcn": {
960
+ "name": "resizable",
961
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/resizable.tsx"
962
+ }
963
+ },
964
+ "result": {
965
+ "ant": {
966
+ "name": "result",
967
+ "path": "refs/ant-design/components/result"
968
+ }
969
+ },
970
+ "row": {
971
+ "ant": {
972
+ "name": "row",
973
+ "path": "refs/ant-design/components/row"
974
+ }
975
+ },
976
+ "scroll-area": {
977
+ "shadcn": {
978
+ "name": "scroll-area",
979
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/scroll-area.tsx"
980
+ }
981
+ },
982
+ "segmented": {
983
+ "ant": {
984
+ "name": "segmented",
985
+ "path": "refs/ant-design/components/segmented"
986
+ },
987
+ "mui": {
988
+ "name": "ToggleButtonGroup",
989
+ "path": "refs/mui/packages/mui-material/src/ToggleButtonGroup"
990
+ }
991
+ },
992
+ "select": {
993
+ "ant": {
994
+ "name": "select",
995
+ "path": "refs/ant-design/components/select"
996
+ },
997
+ "mui": {
998
+ "name": "Select",
999
+ "path": "refs/mui/packages/mui-material/src/Select"
1000
+ },
1001
+ "shadcn": {
1002
+ "name": "select",
1003
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/select.tsx"
1004
+ }
1005
+ },
1006
+ "separator": {
1007
+ "shadcn": {
1008
+ "name": "separator",
1009
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/separator.tsx"
1010
+ }
1011
+ },
1012
+ "sheet": {
1013
+ "shadcn": {
1014
+ "name": "sheet",
1015
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/sheet.tsx"
1016
+ }
1017
+ },
1018
+ "sidebar": {
1019
+ "shadcn": {
1020
+ "name": "sidebar",
1021
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/sidebar.tsx"
1022
+ }
1023
+ },
1024
+ "skeleton": {
1025
+ "ant": {
1026
+ "name": "skeleton",
1027
+ "path": "refs/ant-design/components/skeleton"
1028
+ },
1029
+ "mui": {
1030
+ "name": "Skeleton",
1031
+ "path": "refs/mui/packages/mui-material/src/Skeleton"
1032
+ },
1033
+ "shadcn": {
1034
+ "name": "skeleton",
1035
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/skeleton.tsx"
1036
+ }
1037
+ },
1038
+ "slide": {
1039
+ "mui": {
1040
+ "name": "Slide",
1041
+ "path": "refs/mui/packages/mui-material/src/Slide"
1042
+ }
1043
+ },
1044
+ "slider": {
1045
+ "ant": {
1046
+ "name": "slider",
1047
+ "path": "refs/ant-design/components/slider"
1048
+ },
1049
+ "mui": {
1050
+ "name": "Slider",
1051
+ "path": "refs/mui/packages/mui-material/src/Slider"
1052
+ },
1053
+ "shadcn": {
1054
+ "name": "slider",
1055
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/slider.tsx"
1056
+ }
1057
+ },
1058
+ "snackbar": {
1059
+ "mui": {
1060
+ "name": "Snackbar",
1061
+ "path": "refs/mui/packages/mui-material/src/Snackbar"
1062
+ }
1063
+ },
1064
+ "snackbar-content": {
1065
+ "mui": {
1066
+ "name": "SnackbarContent",
1067
+ "path": "refs/mui/packages/mui-material/src/SnackbarContent"
1068
+ }
1069
+ },
1070
+ "sonner": {
1071
+ "shadcn": {
1072
+ "name": "sonner",
1073
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/sonner.tsx"
1074
+ }
1075
+ },
1076
+ "space": {
1077
+ "ant": {
1078
+ "name": "space",
1079
+ "path": "refs/ant-design/components/space"
1080
+ },
1081
+ "mui": {
1082
+ "name": "Stack",
1083
+ "path": "refs/mui/packages/mui-material/src/Stack"
1084
+ }
1085
+ },
1086
+ "speed-dial": {
1087
+ "mui": {
1088
+ "name": "SpeedDial",
1089
+ "path": "refs/mui/packages/mui-material/src/SpeedDial"
1090
+ }
1091
+ },
1092
+ "speed-dial-action": {
1093
+ "mui": {
1094
+ "name": "SpeedDialAction",
1095
+ "path": "refs/mui/packages/mui-material/src/SpeedDialAction"
1096
+ }
1097
+ },
1098
+ "speed-dial-icon": {
1099
+ "mui": {
1100
+ "name": "SpeedDialIcon",
1101
+ "path": "refs/mui/packages/mui-material/src/SpeedDialIcon"
1102
+ }
1103
+ },
1104
+ "spin": {
1105
+ "ant": {
1106
+ "name": "spin",
1107
+ "path": "refs/ant-design/components/spin"
1108
+ }
1109
+ },
1110
+ "spinner": {
1111
+ "shadcn": {
1112
+ "name": "spinner",
1113
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/spinner.tsx"
1114
+ }
1115
+ },
1116
+ "splitter": {
1117
+ "ant": {
1118
+ "name": "splitter",
1119
+ "path": "refs/ant-design/components/splitter"
1120
+ }
1121
+ },
1122
+ "statistic": {
1123
+ "ant": {
1124
+ "name": "statistic",
1125
+ "path": "refs/ant-design/components/statistic"
1126
+ }
1127
+ },
1128
+ "step": {
1129
+ "mui": {
1130
+ "name": "Step",
1131
+ "path": "refs/mui/packages/mui-material/src/Step"
1132
+ }
1133
+ },
1134
+ "step-button": {
1135
+ "mui": {
1136
+ "name": "StepButton",
1137
+ "path": "refs/mui/packages/mui-material/src/StepButton"
1138
+ }
1139
+ },
1140
+ "step-connector": {
1141
+ "mui": {
1142
+ "name": "StepConnector",
1143
+ "path": "refs/mui/packages/mui-material/src/StepConnector"
1144
+ }
1145
+ },
1146
+ "step-content": {
1147
+ "mui": {
1148
+ "name": "StepContent",
1149
+ "path": "refs/mui/packages/mui-material/src/StepContent"
1150
+ }
1151
+ },
1152
+ "step-icon": {
1153
+ "mui": {
1154
+ "name": "StepIcon",
1155
+ "path": "refs/mui/packages/mui-material/src/StepIcon"
1156
+ }
1157
+ },
1158
+ "step-label": {
1159
+ "mui": {
1160
+ "name": "StepLabel",
1161
+ "path": "refs/mui/packages/mui-material/src/StepLabel"
1162
+ }
1163
+ },
1164
+ "steps": {
1165
+ "ant": {
1166
+ "name": "steps",
1167
+ "path": "refs/ant-design/components/steps"
1168
+ },
1169
+ "mui": {
1170
+ "name": "Stepper",
1171
+ "path": "refs/mui/packages/mui-material/src/Stepper"
1172
+ }
1173
+ },
1174
+ "style": {
1175
+ "ant": {
1176
+ "name": "style",
1177
+ "path": "refs/ant-design/components/style"
1178
+ }
1179
+ },
1180
+ "svg-icon": {
1181
+ "mui": {
1182
+ "name": "SvgIcon",
1183
+ "path": "refs/mui/packages/mui-material/src/SvgIcon"
1184
+ }
1185
+ },
1186
+ "swipeable-drawer": {
1187
+ "mui": {
1188
+ "name": "SwipeableDrawer",
1189
+ "path": "refs/mui/packages/mui-material/src/SwipeableDrawer"
1190
+ }
1191
+ },
1192
+ "switch": {
1193
+ "ant": {
1194
+ "name": "switch",
1195
+ "path": "refs/ant-design/components/switch"
1196
+ },
1197
+ "mui": {
1198
+ "name": "Switch",
1199
+ "path": "refs/mui/packages/mui-material/src/Switch"
1200
+ },
1201
+ "shadcn": {
1202
+ "name": "switch",
1203
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/switch.tsx"
1204
+ }
1205
+ },
1206
+ "tab": {
1207
+ "mui": {
1208
+ "name": "Tab",
1209
+ "path": "refs/mui/packages/mui-material/src/Tab"
1210
+ }
1211
+ },
1212
+ "tab-scroll-button": {
1213
+ "mui": {
1214
+ "name": "TabScrollButton",
1215
+ "path": "refs/mui/packages/mui-material/src/TabScrollButton"
1216
+ }
1217
+ },
1218
+ "table": {
1219
+ "ant": {
1220
+ "name": "table",
1221
+ "path": "refs/ant-design/components/table"
1222
+ },
1223
+ "mui": {
1224
+ "name": "Table",
1225
+ "path": "refs/mui/packages/mui-material/src/Table"
1226
+ },
1227
+ "shadcn": {
1228
+ "name": "table",
1229
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/table.tsx"
1230
+ }
1231
+ },
1232
+ "table-body": {
1233
+ "mui": {
1234
+ "name": "TableBody",
1235
+ "path": "refs/mui/packages/mui-material/src/TableBody"
1236
+ }
1237
+ },
1238
+ "table-cell": {
1239
+ "mui": {
1240
+ "name": "TableCell",
1241
+ "path": "refs/mui/packages/mui-material/src/TableCell"
1242
+ }
1243
+ },
1244
+ "table-container": {
1245
+ "mui": {
1246
+ "name": "TableContainer",
1247
+ "path": "refs/mui/packages/mui-material/src/TableContainer"
1248
+ }
1249
+ },
1250
+ "table-footer": {
1251
+ "mui": {
1252
+ "name": "TableFooter",
1253
+ "path": "refs/mui/packages/mui-material/src/TableFooter"
1254
+ }
1255
+ },
1256
+ "table-head": {
1257
+ "mui": {
1258
+ "name": "TableHead",
1259
+ "path": "refs/mui/packages/mui-material/src/TableHead"
1260
+ }
1261
+ },
1262
+ "table-pagination": {
1263
+ "mui": {
1264
+ "name": "TablePagination",
1265
+ "path": "refs/mui/packages/mui-material/src/TablePagination"
1266
+ }
1267
+ },
1268
+ "table-pagination-actions": {
1269
+ "mui": {
1270
+ "name": "TablePaginationActions",
1271
+ "path": "refs/mui/packages/mui-material/src/TablePaginationActions"
1272
+ }
1273
+ },
1274
+ "table-row": {
1275
+ "mui": {
1276
+ "name": "TableRow",
1277
+ "path": "refs/mui/packages/mui-material/src/TableRow"
1278
+ }
1279
+ },
1280
+ "table-sort-label": {
1281
+ "mui": {
1282
+ "name": "TableSortLabel",
1283
+ "path": "refs/mui/packages/mui-material/src/TableSortLabel"
1284
+ }
1285
+ },
1286
+ "tabs": {
1287
+ "ant": {
1288
+ "name": "tabs",
1289
+ "path": "refs/ant-design/components/tabs"
1290
+ },
1291
+ "mui": {
1292
+ "name": "Tabs",
1293
+ "path": "refs/mui/packages/mui-material/src/Tabs"
1294
+ },
1295
+ "shadcn": {
1296
+ "name": "tabs",
1297
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/tabs.tsx"
1298
+ }
1299
+ },
1300
+ "tag": {
1301
+ "ant": {
1302
+ "name": "tag",
1303
+ "path": "refs/ant-design/components/tag"
1304
+ },
1305
+ "mui": {
1306
+ "name": "Chip",
1307
+ "path": "refs/mui/packages/mui-material/src/Chip"
1308
+ }
1309
+ },
1310
+ "textarea": {
1311
+ "shadcn": {
1312
+ "name": "textarea",
1313
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/textarea.tsx"
1314
+ }
1315
+ },
1316
+ "textarea-autosize": {
1317
+ "mui": {
1318
+ "name": "TextareaAutosize",
1319
+ "path": "refs/mui/packages/mui-material/src/TextareaAutosize"
1320
+ }
1321
+ },
1322
+ "theme": {
1323
+ "ant": {
1324
+ "name": "theme",
1325
+ "path": "refs/ant-design/components/theme"
1326
+ }
1327
+ },
1328
+ "time-picker": {
1329
+ "ant": {
1330
+ "name": "time-picker",
1331
+ "path": "refs/ant-design/components/time-picker"
1332
+ }
1333
+ },
1334
+ "timeline": {
1335
+ "ant": {
1336
+ "name": "timeline",
1337
+ "path": "refs/ant-design/components/timeline"
1338
+ }
1339
+ },
1340
+ "toggle": {
1341
+ "shadcn": {
1342
+ "name": "toggle",
1343
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/toggle.tsx"
1344
+ }
1345
+ },
1346
+ "toggle-button": {
1347
+ "mui": {
1348
+ "name": "ToggleButton",
1349
+ "path": "refs/mui/packages/mui-material/src/ToggleButton"
1350
+ }
1351
+ },
1352
+ "toggle-group": {
1353
+ "shadcn": {
1354
+ "name": "toggle-group",
1355
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/toggle-group.tsx"
1356
+ }
1357
+ },
1358
+ "toolbar": {
1359
+ "mui": {
1360
+ "name": "Toolbar",
1361
+ "path": "refs/mui/packages/mui-material/src/Toolbar"
1362
+ }
1363
+ },
1364
+ "tooltip": {
1365
+ "ant": {
1366
+ "name": "tooltip",
1367
+ "path": "refs/ant-design/components/tooltip"
1368
+ },
1369
+ "mui": {
1370
+ "name": "Tooltip",
1371
+ "path": "refs/mui/packages/mui-material/src/Tooltip"
1372
+ },
1373
+ "shadcn": {
1374
+ "name": "tooltip",
1375
+ "path": "refs/shadcn-ui/apps/v4/registry/new-york-v4/ui/tooltip.tsx"
1376
+ }
1377
+ },
1378
+ "tour": {
1379
+ "ant": {
1380
+ "name": "tour",
1381
+ "path": "refs/ant-design/components/tour"
1382
+ }
1383
+ },
1384
+ "transfer": {
1385
+ "ant": {
1386
+ "name": "transfer",
1387
+ "path": "refs/ant-design/components/transfer"
1388
+ }
1389
+ },
1390
+ "tree": {
1391
+ "ant": {
1392
+ "name": "tree",
1393
+ "path": "refs/ant-design/components/tree"
1394
+ }
1395
+ },
1396
+ "tree-select": {
1397
+ "ant": {
1398
+ "name": "tree-select",
1399
+ "path": "refs/ant-design/components/tree-select"
1400
+ }
1401
+ },
1402
+ "types": {
1403
+ "mui": {
1404
+ "name": "types",
1405
+ "path": "refs/mui/packages/mui-material/src/types"
1406
+ }
1407
+ },
1408
+ "typography": {
1409
+ "ant": {
1410
+ "name": "typography",
1411
+ "path": "refs/ant-design/components/typography"
1412
+ },
1413
+ "mui": {
1414
+ "name": "Typography",
1415
+ "path": "refs/mui/packages/mui-material/src/Typography"
1416
+ }
1417
+ },
1418
+ "unstable_-trap-focus": {
1419
+ "mui": {
1420
+ "name": "Unstable_TrapFocus",
1421
+ "path": "refs/mui/packages/mui-material/src/Unstable_TrapFocus"
1422
+ }
1423
+ },
1424
+ "upload": {
1425
+ "ant": {
1426
+ "name": "upload",
1427
+ "path": "refs/ant-design/components/upload"
1428
+ }
1429
+ },
1430
+ "use-lazy-ripple": {
1431
+ "mui": {
1432
+ "name": "useLazyRipple",
1433
+ "path": "refs/mui/packages/mui-material/src/useLazyRipple"
1434
+ }
1435
+ },
1436
+ "utils": {
1437
+ "mui": {
1438
+ "name": "utils",
1439
+ "path": "refs/mui/packages/mui-material/src/utils"
1440
+ }
1441
+ },
1442
+ "version": {
1443
+ "ant": {
1444
+ "name": "version",
1445
+ "path": "refs/ant-design/components/version"
1446
+ },
1447
+ "mui": {
1448
+ "name": "version",
1449
+ "path": "refs/mui/packages/mui-material/src/version"
1450
+ }
1451
+ },
1452
+ "watermark": {
1453
+ "ant": {
1454
+ "name": "watermark",
1455
+ "path": "refs/ant-design/components/watermark"
1456
+ }
1457
+ },
1458
+ "zero-styled": {
1459
+ "mui": {
1460
+ "name": "zero-styled",
1461
+ "path": "refs/mui/packages/mui-material/src/zero-styled"
1462
+ }
1463
+ },
1464
+ "zoom": {
1465
+ "mui": {
1466
+ "name": "Zoom",
1467
+ "path": "refs/mui/packages/mui-material/src/Zoom"
1468
+ }
1469
+ }
1470
+ }