@moldable-ai/ui 0.2.19 → 0.2.21

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 (464) hide show
  1. package/dist/catalog/catalog-coverage.d.ts +15 -0
  2. package/dist/catalog/catalog-coverage.d.ts.map +1 -0
  3. package/dist/catalog/catalog-coverage.js +44 -0
  4. package/dist/catalog/catalog-manifest.d.ts +6 -0
  5. package/dist/catalog/catalog-manifest.d.ts.map +1 -0
  6. package/dist/catalog/catalog-manifest.js +117 -0
  7. package/dist/catalog/catalog-types.d.ts +64 -0
  8. package/dist/catalog/catalog-types.d.ts.map +1 -0
  9. package/dist/catalog/catalog-types.js +20 -0
  10. package/dist/catalog/component-catalog.d.ts +14 -0
  11. package/dist/catalog/component-catalog.d.ts.map +1 -0
  12. package/dist/catalog/component-catalog.js +49 -0
  13. package/dist/catalog/core-catalog-exclusions.d.ts +8 -0
  14. package/dist/catalog/core-catalog-exclusions.d.ts.map +1 -0
  15. package/dist/catalog/core-catalog-exclusions.js +151 -0
  16. package/dist/catalog/core-catalog.d.ts +2 -0
  17. package/dist/catalog/core-catalog.d.ts.map +1 -0
  18. package/dist/catalog/core-catalog.js +19 -0
  19. package/dist/catalog/core-collection-stories.d.ts +3 -0
  20. package/dist/catalog/core-collection-stories.d.ts.map +1 -0
  21. package/dist/catalog/core-collection-stories.js +42 -0
  22. package/dist/catalog/core-control-stories.d.ts +3 -0
  23. package/dist/catalog/core-control-stories.d.ts.map +1 -0
  24. package/dist/catalog/core-control-stories.js +94 -0
  25. package/dist/catalog/core-feedback-stories.d.ts +3 -0
  26. package/dist/catalog/core-feedback-stories.d.ts.map +1 -0
  27. package/dist/catalog/core-feedback-stories.js +50 -0
  28. package/dist/catalog/core-foundation-stories.d.ts +3 -0
  29. package/dist/catalog/core-foundation-stories.d.ts.map +1 -0
  30. package/dist/catalog/core-foundation-stories.js +53 -0
  31. package/dist/catalog/core-navigation-stories.d.ts +3 -0
  32. package/dist/catalog/core-navigation-stories.d.ts.map +1 -0
  33. package/dist/catalog/core-navigation-stories.js +25 -0
  34. package/dist/catalog/core-overlay-stories.d.ts +3 -0
  35. package/dist/catalog/core-overlay-stories.d.ts.map +1 -0
  36. package/dist/catalog/core-overlay-stories.js +20 -0
  37. package/dist/catalog/index.d.ts +7 -0
  38. package/dist/catalog/index.d.ts.map +1 -0
  39. package/dist/catalog/index.js +6 -0
  40. package/dist/components/app-error-boundary.d.ts +1 -0
  41. package/dist/components/app-error-boundary.d.ts.map +1 -1
  42. package/dist/components/app-error-boundary.js +13 -0
  43. package/dist/components/chat/chat-image-lightbox.d.ts +9 -0
  44. package/dist/components/chat/chat-image-lightbox.d.ts.map +1 -0
  45. package/dist/components/chat/chat-image-lightbox.js +9 -0
  46. package/dist/components/chat/chat-message.d.ts +19 -1
  47. package/dist/components/chat/chat-message.d.ts.map +1 -1
  48. package/dist/components/chat/chat-message.js +66 -16
  49. package/dist/components/chat/chat-messages.d.ts +5 -2
  50. package/dist/components/chat/chat-messages.d.ts.map +1 -1
  51. package/dist/components/chat/chat-messages.js +61 -6
  52. package/dist/components/chat/chat-panel.d.ts +49 -6
  53. package/dist/components/chat/chat-panel.d.ts.map +1 -1
  54. package/dist/components/chat/chat-panel.js +196 -163
  55. package/dist/components/chat/conversation-history.d.ts +39 -5
  56. package/dist/components/chat/conversation-history.d.ts.map +1 -1
  57. package/dist/components/chat/conversation-history.js +192 -26
  58. package/dist/components/chat/index.d.ts +2 -2
  59. package/dist/components/chat/index.d.ts.map +1 -1
  60. package/dist/components/chat/index.js +1 -1
  61. package/dist/components/chat/tool-handlers.d.ts.map +1 -1
  62. package/dist/components/chat/tool-handlers.js +40 -2
  63. package/dist/components/chat/vertical-scroll-fade.d.ts +6 -0
  64. package/dist/components/chat/vertical-scroll-fade.d.ts.map +1 -0
  65. package/dist/components/chat/vertical-scroll-fade.js +12 -0
  66. package/dist/components/native-capabilities/bluetooth-panel-helpers.d.ts +9 -0
  67. package/dist/components/native-capabilities/bluetooth-panel-helpers.d.ts.map +1 -0
  68. package/dist/components/native-capabilities/bluetooth-panel-helpers.js +37 -0
  69. package/dist/components/native-capabilities/bluetooth-panel.d.ts +56 -0
  70. package/dist/components/native-capabilities/bluetooth-panel.d.ts.map +1 -0
  71. package/dist/components/native-capabilities/bluetooth-panel.js +470 -0
  72. package/dist/components/native-capabilities/camera-preview.d.ts +39 -0
  73. package/dist/components/native-capabilities/camera-preview.d.ts.map +1 -0
  74. package/dist/components/native-capabilities/camera-preview.js +228 -0
  75. package/dist/components/native-capabilities/capability-badge.d.ts +23 -0
  76. package/dist/components/native-capabilities/capability-badge.d.ts.map +1 -0
  77. package/dist/components/native-capabilities/capability-badge.js +39 -0
  78. package/dist/components/native-capabilities/capability-matrix.d.ts +14 -0
  79. package/dist/components/native-capabilities/capability-matrix.d.ts.map +1 -0
  80. package/dist/components/native-capabilities/capability-matrix.js +97 -0
  81. package/dist/components/native-capabilities/clipboard-button.d.ts +26 -0
  82. package/dist/components/native-capabilities/clipboard-button.d.ts.map +1 -0
  83. package/dist/components/native-capabilities/clipboard-button.js +99 -0
  84. package/dist/components/native-capabilities/device-io-controls.d.ts +4 -0
  85. package/dist/components/native-capabilities/device-io-controls.d.ts.map +1 -0
  86. package/dist/components/native-capabilities/device-io-controls.js +28 -0
  87. package/dist/components/native-capabilities/device-list.d.ts +20 -0
  88. package/dist/components/native-capabilities/device-list.d.ts.map +1 -0
  89. package/dist/components/native-capabilities/device-list.js +14 -0
  90. package/dist/components/native-capabilities/display-map.d.ts +23 -0
  91. package/dist/components/native-capabilities/display-map.d.ts.map +1 -0
  92. package/dist/components/native-capabilities/display-map.js +114 -0
  93. package/dist/components/native-capabilities/haptic-button.d.ts +26 -0
  94. package/dist/components/native-capabilities/haptic-button.d.ts.map +1 -0
  95. package/dist/components/native-capabilities/haptic-button.js +94 -0
  96. package/dist/components/native-capabilities/hid-panel.d.ts +40 -0
  97. package/dist/components/native-capabilities/hid-panel.d.ts.map +1 -0
  98. package/dist/components/native-capabilities/hid-panel.js +373 -0
  99. package/dist/components/native-capabilities/index.d.ts +27 -0
  100. package/dist/components/native-capabilities/index.d.ts.map +1 -0
  101. package/dist/components/native-capabilities/index.js +26 -0
  102. package/dist/components/native-capabilities/live-indicator.d.ts +15 -0
  103. package/dist/components/native-capabilities/live-indicator.d.ts.map +1 -0
  104. package/dist/components/native-capabilities/live-indicator.js +26 -0
  105. package/dist/components/native-capabilities/local-auth-button.d.ts +33 -0
  106. package/dist/components/native-capabilities/local-auth-button.d.ts.map +1 -0
  107. package/dist/components/native-capabilities/local-auth-button.js +115 -0
  108. package/dist/components/native-capabilities/location-panel.d.ts +29 -0
  109. package/dist/components/native-capabilities/location-panel.d.ts.map +1 -0
  110. package/dist/components/native-capabilities/location-panel.js +146 -0
  111. package/dist/components/native-capabilities/microphone-meter.d.ts +35 -0
  112. package/dist/components/native-capabilities/microphone-meter.d.ts.map +1 -0
  113. package/dist/components/native-capabilities/microphone-meter.js +244 -0
  114. package/dist/components/native-capabilities/midi-monitor.d.ts +54 -0
  115. package/dist/components/native-capabilities/midi-monitor.d.ts.map +1 -0
  116. package/dist/components/native-capabilities/midi-monitor.js +534 -0
  117. package/dist/components/native-capabilities/native-capability-panel.d.ts +11 -0
  118. package/dist/components/native-capabilities/native-capability-panel.d.ts.map +1 -0
  119. package/dist/components/native-capabilities/native-capability-panel.js +28 -0
  120. package/dist/components/native-capabilities/notification-panel.d.ts +24 -0
  121. package/dist/components/native-capabilities/notification-panel.d.ts.map +1 -0
  122. package/dist/components/native-capabilities/notification-panel.js +124 -0
  123. package/dist/components/native-capabilities/power-blocker-controller.d.ts +19 -0
  124. package/dist/components/native-capabilities/power-blocker-controller.d.ts.map +1 -0
  125. package/dist/components/native-capabilities/power-blocker-controller.js +83 -0
  126. package/dist/components/native-capabilities/power-panel.d.ts +67 -0
  127. package/dist/components/native-capabilities/power-panel.d.ts.map +1 -0
  128. package/dist/components/native-capabilities/power-panel.js +309 -0
  129. package/dist/components/native-capabilities/readout.d.ts +10 -0
  130. package/dist/components/native-capabilities/readout.d.ts.map +1 -0
  131. package/dist/components/native-capabilities/readout.js +11 -0
  132. package/dist/components/native-capabilities/screen-share-preview.d.ts +36 -0
  133. package/dist/components/native-capabilities/screen-share-preview.d.ts.map +1 -0
  134. package/dist/components/native-capabilities/screen-share-preview.js +191 -0
  135. package/dist/components/native-capabilities/secure-storage-panel.d.ts +36 -0
  136. package/dist/components/native-capabilities/secure-storage-panel.d.ts.map +1 -0
  137. package/dist/components/native-capabilities/secure-storage-panel.js +193 -0
  138. package/dist/components/native-capabilities/serial-console.d.ts +64 -0
  139. package/dist/components/native-capabilities/serial-console.d.ts.map +1 -0
  140. package/dist/components/native-capabilities/serial-console.js +399 -0
  141. package/dist/components/native-capabilities/shortcut-recorder.d.ts +35 -0
  142. package/dist/components/native-capabilities/shortcut-recorder.d.ts.map +1 -0
  143. package/dist/components/native-capabilities/shortcut-recorder.js +217 -0
  144. package/dist/components/native-capabilities/stream-log.d.ts +35 -0
  145. package/dist/components/native-capabilities/stream-log.d.ts.map +1 -0
  146. package/dist/components/native-capabilities/stream-log.js +65 -0
  147. package/dist/components/native-capabilities/system-audio-monitor.d.ts +34 -0
  148. package/dist/components/native-capabilities/system-audio-monitor.d.ts.map +1 -0
  149. package/dist/components/native-capabilities/system-audio-monitor.js +275 -0
  150. package/dist/components/native-capabilities/usb-panel.d.ts +54 -0
  151. package/dist/components/native-capabilities/usb-panel.d.ts.map +1 -0
  152. package/dist/components/native-capabilities/usb-panel.js +363 -0
  153. package/dist/components/native-capabilities/use-capability.d.ts +20 -0
  154. package/dist/components/native-capabilities/use-capability.d.ts.map +1 -0
  155. package/dist/components/native-capabilities/use-capability.js +61 -0
  156. package/dist/components/ui/alert-dialog.d.ts +7 -3
  157. package/dist/components/ui/alert-dialog.d.ts.map +1 -1
  158. package/dist/components/ui/alert-dialog.js +9 -5
  159. package/dist/components/ui/alert.d.ts +19 -3
  160. package/dist/components/ui/alert.d.ts.map +1 -1
  161. package/dist/components/ui/alert.js +25 -8
  162. package/dist/components/ui/app-frame.d.ts +28 -0
  163. package/dist/components/ui/app-frame.d.ts.map +1 -0
  164. package/dist/components/ui/app-frame.js +95 -0
  165. package/dist/components/ui/button-group.d.ts +1 -1
  166. package/dist/components/ui/button.js +1 -1
  167. package/dist/components/ui/collapsible.d.ts +9 -1
  168. package/dist/components/ui/collapsible.d.ts.map +1 -1
  169. package/dist/components/ui/collapsible.js +13 -2
  170. package/dist/components/ui/collection-navigation.d.ts +8 -0
  171. package/dist/components/ui/collection-navigation.d.ts.map +1 -0
  172. package/dist/components/ui/collection-navigation.js +19 -0
  173. package/dist/components/ui/color-well.d.ts +13 -0
  174. package/dist/components/ui/color-well.d.ts.map +1 -0
  175. package/dist/components/ui/color-well.js +30 -0
  176. package/dist/components/ui/command.d.ts +5 -1
  177. package/dist/components/ui/command.d.ts.map +1 -1
  178. package/dist/components/ui/command.js +13 -1
  179. package/dist/components/ui/confirm-dialog.d.ts +19 -0
  180. package/dist/components/ui/confirm-dialog.d.ts.map +1 -0
  181. package/dist/components/ui/confirm-dialog.js +45 -0
  182. package/dist/components/ui/date-field.d.ts +19 -0
  183. package/dist/components/ui/date-field.d.ts.map +1 -0
  184. package/dist/components/ui/date-field.js +54 -0
  185. package/dist/components/ui/date-picker.d.ts +24 -0
  186. package/dist/components/ui/date-picker.d.ts.map +1 -0
  187. package/dist/components/ui/date-picker.js +92 -0
  188. package/dist/components/ui/dialog.d.ts +4 -2
  189. package/dist/components/ui/dialog.d.ts.map +1 -1
  190. package/dist/components/ui/dialog.js +8 -5
  191. package/dist/components/ui/edge-fade.d.ts +11 -0
  192. package/dist/components/ui/edge-fade.d.ts.map +1 -0
  193. package/dist/components/ui/edge-fade.js +41 -0
  194. package/dist/components/ui/empty.d.ts +7 -2
  195. package/dist/components/ui/empty.d.ts.map +1 -1
  196. package/dist/components/ui/empty.js +20 -7
  197. package/dist/components/ui/field.d.ts +1 -1
  198. package/dist/components/ui/grid.d.ts +24 -0
  199. package/dist/components/ui/grid.d.ts.map +1 -0
  200. package/dist/components/ui/grid.js +258 -0
  201. package/dist/components/ui/icon-button.d.ts +15 -0
  202. package/dist/components/ui/icon-button.d.ts.map +1 -0
  203. package/dist/components/ui/icon-button.js +15 -0
  204. package/dist/components/ui/index.d.ts +23 -0
  205. package/dist/components/ui/index.d.ts.map +1 -1
  206. package/dist/components/ui/index.js +23 -0
  207. package/dist/components/ui/input-group.d.ts +1 -1
  208. package/dist/components/ui/inspector.d.ts +15 -0
  209. package/dist/components/ui/inspector.d.ts.map +1 -0
  210. package/dist/components/ui/inspector.js +26 -0
  211. package/dist/components/ui/kbd.d.ts +1 -1
  212. package/dist/components/ui/list.d.ts +28 -0
  213. package/dist/components/ui/list.d.ts.map +1 -0
  214. package/dist/components/ui/list.js +235 -0
  215. package/dist/components/ui/material.d.ts +34 -0
  216. package/dist/components/ui/material.d.ts.map +1 -0
  217. package/dist/components/ui/material.js +34 -0
  218. package/dist/components/ui/message-scroller-controller.d.ts +162 -0
  219. package/dist/components/ui/message-scroller-controller.d.ts.map +1 -0
  220. package/dist/components/ui/message-scroller-controller.js +888 -0
  221. package/dist/components/ui/message-scroller-layout-stability.d.ts +33 -0
  222. package/dist/components/ui/message-scroller-layout-stability.d.ts.map +1 -0
  223. package/dist/components/ui/message-scroller-layout-stability.js +153 -0
  224. package/dist/components/ui/message-scroller-policy.d.ts +74 -0
  225. package/dist/components/ui/message-scroller-policy.d.ts.map +1 -0
  226. package/dist/components/ui/message-scroller-policy.js +129 -0
  227. package/dist/components/ui/message-scroller-primitive.d.ts +55 -0
  228. package/dist/components/ui/message-scroller-primitive.d.ts.map +1 -0
  229. package/dist/components/ui/message-scroller-primitive.js +226 -0
  230. package/dist/components/ui/message-scroller.d.ts +11 -0
  231. package/dist/components/ui/message-scroller.d.ts.map +1 -0
  232. package/dist/components/ui/message-scroller.js +25 -0
  233. package/dist/components/ui/navigation-button-group.d.ts +16 -0
  234. package/dist/components/ui/navigation-button-group.d.ts.map +1 -0
  235. package/dist/components/ui/navigation-button-group.js +9 -0
  236. package/dist/components/ui/notification-dot.d.ts +4 -0
  237. package/dist/components/ui/notification-dot.d.ts.map +1 -0
  238. package/dist/components/ui/notification-dot.js +7 -0
  239. package/dist/components/ui/number-input.d.ts +16 -0
  240. package/dist/components/ui/number-input.d.ts.map +1 -0
  241. package/dist/components/ui/number-input.js +56 -0
  242. package/dist/components/ui/panel.d.ts +18 -0
  243. package/dist/components/ui/panel.d.ts.map +1 -0
  244. package/dist/components/ui/panel.js +40 -0
  245. package/dist/components/ui/popover.d.ts +9 -2
  246. package/dist/components/ui/popover.d.ts.map +1 -1
  247. package/dist/components/ui/popover.js +14 -4
  248. package/dist/components/ui/scroll-area.d.ts +8 -2
  249. package/dist/components/ui/scroll-area.d.ts.map +1 -1
  250. package/dist/components/ui/scroll-area.js +6 -3
  251. package/dist/components/ui/search-field.d.ts +19 -0
  252. package/dist/components/ui/search-field.d.ts.map +1 -0
  253. package/dist/components/ui/search-field.js +64 -0
  254. package/dist/components/ui/segmented-control.d.ts +21 -0
  255. package/dist/components/ui/segmented-control.d.ts.map +1 -0
  256. package/dist/components/ui/segmented-control.js +62 -0
  257. package/dist/components/ui/sheet.d.ts +4 -2
  258. package/dist/components/ui/sheet.d.ts.map +1 -1
  259. package/dist/components/ui/sheet.js +12 -9
  260. package/dist/components/ui/sidebar.js +1 -1
  261. package/dist/components/ui/sonner.d.ts +4 -3
  262. package/dist/components/ui/sonner.d.ts.map +1 -1
  263. package/dist/components/ui/sonner.js +7 -6
  264. package/dist/components/ui/split-view.d.ts +11 -0
  265. package/dist/components/ui/split-view.d.ts.map +1 -0
  266. package/dist/components/ui/split-view.js +13 -0
  267. package/dist/components/ui/status.d.ts +13 -0
  268. package/dist/components/ui/status.d.ts.map +1 -0
  269. package/dist/components/ui/status.js +36 -0
  270. package/dist/components/ui/table.d.ts +11 -2
  271. package/dist/components/ui/table.d.ts.map +1 -1
  272. package/dist/components/ui/table.js +33 -6
  273. package/dist/components/ui/text.d.ts +17 -0
  274. package/dist/components/ui/text.d.ts.map +1 -0
  275. package/dist/components/ui/text.js +55 -0
  276. package/dist/components/ui/toggle.d.ts +12 -4
  277. package/dist/components/ui/toggle.d.ts.map +1 -1
  278. package/dist/components/ui/toggle.js +13 -2
  279. package/dist/components/ui/toolbar.d.ts +27 -0
  280. package/dist/components/ui/toolbar.d.ts.map +1 -0
  281. package/dist/components/ui/toolbar.js +71 -0
  282. package/dist/components/ui/tooltip.d.ts +8 -3
  283. package/dist/components/ui/tooltip.d.ts.map +1 -1
  284. package/dist/components/ui/tooltip.js +11 -6
  285. package/dist/index.d.ts +2 -2
  286. package/dist/index.d.ts.map +1 -1
  287. package/dist/index.js +4 -4
  288. package/dist/lib/frame-lifecycle.d.ts +29 -0
  289. package/dist/lib/frame-lifecycle.d.ts.map +1 -1
  290. package/dist/lib/frame-lifecycle.js +85 -0
  291. package/dist/lib/native-capabilities/access.d.ts +13 -0
  292. package/dist/lib/native-capabilities/access.d.ts.map +1 -0
  293. package/dist/lib/native-capabilities/access.js +53 -0
  294. package/dist/lib/native-capabilities/bluetooth-access.d.ts +14 -0
  295. package/dist/lib/native-capabilities/bluetooth-access.d.ts.map +1 -0
  296. package/dist/lib/native-capabilities/bluetooth-access.js +43 -0
  297. package/dist/lib/native-capabilities/bluetooth-connection.d.ts +19 -0
  298. package/dist/lib/native-capabilities/bluetooth-connection.d.ts.map +1 -0
  299. package/dist/lib/native-capabilities/bluetooth-connection.js +88 -0
  300. package/dist/lib/native-capabilities/bluetooth-gatt.d.ts +7 -0
  301. package/dist/lib/native-capabilities/bluetooth-gatt.d.ts.map +1 -0
  302. package/dist/lib/native-capabilities/bluetooth-gatt.js +77 -0
  303. package/dist/lib/native-capabilities/bluetooth-internal.d.ts +10 -0
  304. package/dist/lib/native-capabilities/bluetooth-internal.d.ts.map +1 -0
  305. package/dist/lib/native-capabilities/bluetooth-internal.js +105 -0
  306. package/dist/lib/native-capabilities/bluetooth-native-fallback.d.ts +33 -0
  307. package/dist/lib/native-capabilities/bluetooth-native-fallback.d.ts.map +1 -0
  308. package/dist/lib/native-capabilities/bluetooth-native-fallback.js +214 -0
  309. package/dist/lib/native-capabilities/bluetooth-types.d.ts +85 -0
  310. package/dist/lib/native-capabilities/bluetooth-types.d.ts.map +1 -0
  311. package/dist/lib/native-capabilities/bluetooth-types.js +2 -0
  312. package/dist/lib/native-capabilities/bluetooth.d.ts +7 -0
  313. package/dist/lib/native-capabilities/bluetooth.d.ts.map +1 -0
  314. package/dist/lib/native-capabilities/bluetooth.js +4 -0
  315. package/dist/lib/native-capabilities/bridge.d.ts +23 -0
  316. package/dist/lib/native-capabilities/bridge.d.ts.map +1 -0
  317. package/dist/lib/native-capabilities/bridge.js +266 -0
  318. package/dist/lib/native-capabilities/capabilities.d.ts +7 -0
  319. package/dist/lib/native-capabilities/capabilities.d.ts.map +1 -0
  320. package/dist/lib/native-capabilities/capabilities.js +95 -0
  321. package/dist/lib/native-capabilities/clipboard.d.ts +11 -0
  322. package/dist/lib/native-capabilities/clipboard.d.ts.map +1 -0
  323. package/dist/lib/native-capabilities/clipboard.js +58 -0
  324. package/dist/lib/native-capabilities/device-io-errors.d.ts +11 -0
  325. package/dist/lib/native-capabilities/device-io-errors.d.ts.map +1 -0
  326. package/dist/lib/native-capabilities/device-io-errors.js +82 -0
  327. package/dist/lib/native-capabilities/displays.d.ts +38 -0
  328. package/dist/lib/native-capabilities/displays.d.ts.map +1 -0
  329. package/dist/lib/native-capabilities/displays.js +12 -0
  330. package/dist/lib/native-capabilities/global-shortcuts.d.ts +86 -0
  331. package/dist/lib/native-capabilities/global-shortcuts.d.ts.map +1 -0
  332. package/dist/lib/native-capabilities/global-shortcuts.js +351 -0
  333. package/dist/lib/native-capabilities/haptics.d.ts +25 -0
  334. package/dist/lib/native-capabilities/haptics.d.ts.map +1 -0
  335. package/dist/lib/native-capabilities/haptics.js +18 -0
  336. package/dist/lib/native-capabilities/hid-native.d.ts +26 -0
  337. package/dist/lib/native-capabilities/hid-native.d.ts.map +1 -0
  338. package/dist/lib/native-capabilities/hid-native.js +229 -0
  339. package/dist/lib/native-capabilities/hid.d.ts +52 -0
  340. package/dist/lib/native-capabilities/hid.d.ts.map +1 -0
  341. package/dist/lib/native-capabilities/hid.js +163 -0
  342. package/dist/lib/native-capabilities/index.d.ts +40 -0
  343. package/dist/lib/native-capabilities/index.d.ts.map +1 -0
  344. package/dist/lib/native-capabilities/index.js +21 -0
  345. package/dist/lib/native-capabilities/local-authentication.d.ts +32 -0
  346. package/dist/lib/native-capabilities/local-authentication.d.ts.map +1 -0
  347. package/dist/lib/native-capabilities/local-authentication.js +46 -0
  348. package/dist/lib/native-capabilities/location.d.ts +49 -0
  349. package/dist/lib/native-capabilities/location.d.ts.map +1 -0
  350. package/dist/lib/native-capabilities/location.js +114 -0
  351. package/dist/lib/native-capabilities/media-permissions.d.ts +28 -0
  352. package/dist/lib/native-capabilities/media-permissions.d.ts.map +1 -0
  353. package/dist/lib/native-capabilities/media-permissions.js +37 -0
  354. package/dist/lib/native-capabilities/media.d.ts +17 -0
  355. package/dist/lib/native-capabilities/media.d.ts.map +1 -0
  356. package/dist/lib/native-capabilities/media.js +104 -0
  357. package/dist/lib/native-capabilities/midi-access.d.ts +13 -0
  358. package/dist/lib/native-capabilities/midi-access.d.ts.map +1 -0
  359. package/dist/lib/native-capabilities/midi-access.js +68 -0
  360. package/dist/lib/native-capabilities/midi-internal.d.ts +12 -0
  361. package/dist/lib/native-capabilities/midi-internal.d.ts.map +1 -0
  362. package/dist/lib/native-capabilities/midi-internal.js +88 -0
  363. package/dist/lib/native-capabilities/midi-native-fallback.d.ts +27 -0
  364. package/dist/lib/native-capabilities/midi-native-fallback.d.ts.map +1 -0
  365. package/dist/lib/native-capabilities/midi-native-fallback.js +127 -0
  366. package/dist/lib/native-capabilities/midi-ports.d.ts +6 -0
  367. package/dist/lib/native-capabilities/midi-ports.d.ts.map +1 -0
  368. package/dist/lib/native-capabilities/midi-ports.js +115 -0
  369. package/dist/lib/native-capabilities/midi-types.d.ts +25 -0
  370. package/dist/lib/native-capabilities/midi-types.d.ts.map +1 -0
  371. package/dist/lib/native-capabilities/midi-types.js +1 -0
  372. package/dist/lib/native-capabilities/midi.d.ts +6 -0
  373. package/dist/lib/native-capabilities/midi.d.ts.map +1 -0
  374. package/dist/lib/native-capabilities/midi.js +3 -0
  375. package/dist/lib/native-capabilities/native-device-io.d.ts +28 -0
  376. package/dist/lib/native-capabilities/native-device-io.d.ts.map +1 -0
  377. package/dist/lib/native-capabilities/native-device-io.js +91 -0
  378. package/dist/lib/native-capabilities/native-device-lifecycle.d.ts +13 -0
  379. package/dist/lib/native-capabilities/native-device-lifecycle.d.ts.map +1 -0
  380. package/dist/lib/native-capabilities/native-device-lifecycle.js +40 -0
  381. package/dist/lib/native-capabilities/notifications.d.ts +38 -0
  382. package/dist/lib/native-capabilities/notifications.d.ts.map +1 -0
  383. package/dist/lib/native-capabilities/notifications.js +50 -0
  384. package/dist/lib/native-capabilities/power-session.d.ts +113 -0
  385. package/dist/lib/native-capabilities/power-session.d.ts.map +1 -0
  386. package/dist/lib/native-capabilities/power-session.js +264 -0
  387. package/dist/lib/native-capabilities/secure-storage.d.ts +36 -0
  388. package/dist/lib/native-capabilities/secure-storage.d.ts.map +1 -0
  389. package/dist/lib/native-capabilities/secure-storage.js +64 -0
  390. package/dist/lib/native-capabilities/serial-native.d.ts +23 -0
  391. package/dist/lib/native-capabilities/serial-native.d.ts.map +1 -0
  392. package/dist/lib/native-capabilities/serial-native.js +181 -0
  393. package/dist/lib/native-capabilities/serial.d.ts +76 -0
  394. package/dist/lib/native-capabilities/serial.d.ts.map +1 -0
  395. package/dist/lib/native-capabilities/serial.js +215 -0
  396. package/dist/lib/native-capabilities/system-audio.d.ts +127 -0
  397. package/dist/lib/native-capabilities/system-audio.d.ts.map +1 -0
  398. package/dist/lib/native-capabilities/system-audio.js +330 -0
  399. package/dist/lib/native-capabilities/types.d.ts +62 -0
  400. package/dist/lib/native-capabilities/types.d.ts.map +1 -0
  401. package/dist/lib/native-capabilities/types.js +27 -0
  402. package/dist/lib/native-capabilities/usb-native.d.ts +39 -0
  403. package/dist/lib/native-capabilities/usb-native.d.ts.map +1 -0
  404. package/dist/lib/native-capabilities/usb-native.js +217 -0
  405. package/dist/lib/native-capabilities/usb.d.ts +85 -0
  406. package/dist/lib/native-capabilities/usb.d.ts.map +1 -0
  407. package/dist/lib/native-capabilities/usb.js +225 -0
  408. package/dist/lib/theme.d.ts.map +1 -1
  409. package/dist/lib/theme.js +2 -1
  410. package/docs/README.md +39 -0
  411. package/docs/accessibility.md +32 -0
  412. package/docs/adaptive-materials.md +79 -0
  413. package/docs/app-anatomy.md +74 -0
  414. package/docs/component-catalog.md +82 -0
  415. package/docs/component-guide-template.md +37 -0
  416. package/docs/design-tokens.md +185 -0
  417. package/docs/foundations.md +58 -0
  418. package/docs/native-integration.md +33 -0
  419. package/docs/standalone-app-windows.md +136 -0
  420. package/package.json +8 -3
  421. package/src/components/ui/alert-dialog.md +31 -0
  422. package/src/components/ui/alert.md +77 -0
  423. package/src/components/ui/app-frame.md +38 -0
  424. package/src/components/ui/badge.md +57 -0
  425. package/src/components/ui/button.md +76 -0
  426. package/src/components/ui/collapsible.md +52 -0
  427. package/src/components/ui/color-well.md +11 -0
  428. package/src/components/ui/combobox.md +42 -0
  429. package/src/components/ui/command.md +54 -0
  430. package/src/components/ui/date-field.md +32 -0
  431. package/src/components/ui/date-picker.md +55 -0
  432. package/src/components/ui/dialog.md +40 -0
  433. package/src/components/ui/edge-fade.md +7 -0
  434. package/src/components/ui/empty.md +87 -0
  435. package/src/components/ui/field.md +77 -0
  436. package/src/components/ui/grid.md +109 -0
  437. package/src/components/ui/icon-button.md +36 -0
  438. package/src/components/ui/inspector.md +11 -0
  439. package/src/components/ui/item.md +87 -0
  440. package/src/components/ui/list.md +140 -0
  441. package/src/components/ui/material.md +51 -0
  442. package/src/components/ui/navigation-button-group.md +46 -0
  443. package/src/components/ui/notification-dot.md +7 -0
  444. package/src/components/ui/number-input.md +19 -0
  445. package/src/components/ui/panel.md +11 -0
  446. package/src/components/ui/popover.md +31 -0
  447. package/src/components/ui/resizable.md +66 -0
  448. package/src/components/ui/scroll-area.md +72 -0
  449. package/src/components/ui/search-field.md +33 -0
  450. package/src/components/ui/segmented-control.md +36 -0
  451. package/src/components/ui/sheet.md +30 -0
  452. package/src/components/ui/sidebar.md +113 -0
  453. package/src/components/ui/sonner.md +37 -0
  454. package/src/components/ui/split-view.md +15 -0
  455. package/src/components/ui/status.md +12 -0
  456. package/src/components/ui/table.md +37 -0
  457. package/src/components/ui/tabs.md +66 -0
  458. package/src/components/ui/text.md +17 -0
  459. package/src/components/ui/toggle-button.md +48 -0
  460. package/src/components/ui/toggle-group.md +80 -0
  461. package/src/components/ui/toggle.md +73 -0
  462. package/src/components/ui/toolbar.md +26 -0
  463. package/src/components/ui/tooltip.md +31 -0
  464. package/src/styles/index.css +704 -3
@@ -0,0 +1,15 @@
1
+ import type { CatalogManifest } from './catalog-types';
2
+ export interface CatalogCoverageExclusion {
3
+ component: string;
4
+ reason: string;
5
+ }
6
+ export interface CatalogCoverageReport {
7
+ covered: readonly string[];
8
+ excluded: readonly CatalogCoverageExclusion[];
9
+ missing: readonly string[];
10
+ unknownCovered: readonly string[];
11
+ unknownExcluded: readonly string[];
12
+ }
13
+ export declare function getCatalogCoverage(manifest: CatalogManifest, publicComponents: readonly string[], exclusions: readonly CatalogCoverageExclusion[]): CatalogCoverageReport;
14
+ export declare function assertCatalogCoverage(manifest: CatalogManifest, publicComponents: readonly string[], exclusions: readonly CatalogCoverageExclusion[]): CatalogCoverageReport;
15
+ //# sourceMappingURL=catalog-coverage.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog-coverage.d.ts","sourceRoot":"","sources":["../../src/catalog/catalog-coverage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAEtD,MAAM,WAAW,wBAAwB;IACvC,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,MAAM,CAAA;CACf;AAED,MAAM,WAAW,qBAAqB;IACpC,OAAO,EAAE,SAAS,MAAM,EAAE,CAAA;IAC1B,QAAQ,EAAE,SAAS,wBAAwB,EAAE,CAAA;IAC7C,OAAO,EAAE,SAAS,MAAM,EAAE,CAAA;IAC1B,cAAc,EAAE,SAAS,MAAM,EAAE,CAAA;IACjC,eAAe,EAAE,SAAS,MAAM,EAAE,CAAA;CACnC;AAMD,wBAAgB,kBAAkB,CAChC,QAAQ,EAAE,eAAe,EACzB,gBAAgB,EAAE,SAAS,MAAM,EAAE,EACnC,UAAU,EAAE,SAAS,wBAAwB,EAAE,GAC9C,qBAAqB,CA+BvB;AAED,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,eAAe,EACzB,gBAAgB,EAAE,SAAS,MAAM,EAAE,EACnC,UAAU,EAAE,SAAS,wBAAwB,EAAE,yBAoChD"}
@@ -0,0 +1,44 @@
1
+ function sorted(values) {
2
+ return [...values].sort((left, right) => left.localeCompare(right));
3
+ }
4
+ export function getCatalogCoverage(manifest, publicComponents, exclusions) {
5
+ const publicSet = new Set(publicComponents);
6
+ const coveredSet = new Set(manifest.sections.flatMap((section) => section.stories.flatMap((story) => story.components ?? [])));
7
+ const exclusionMap = new Map(exclusions.map((exclusion) => [exclusion.component, exclusion]));
8
+ return {
9
+ covered: sorted([...coveredSet].filter((component) => publicSet.has(component))),
10
+ excluded: [...exclusions].sort((left, right) => left.component.localeCompare(right.component)),
11
+ missing: sorted([...publicSet].filter((component) => !coveredSet.has(component) && !exclusionMap.has(component))),
12
+ unknownCovered: sorted([...coveredSet].filter((component) => !publicSet.has(component))),
13
+ unknownExcluded: sorted([...exclusionMap.keys()].filter((component) => !publicSet.has(component))),
14
+ };
15
+ }
16
+ export function assertCatalogCoverage(manifest, publicComponents, exclusions) {
17
+ const duplicateExclusions = exclusions
18
+ .map((exclusion) => exclusion.component)
19
+ .filter((component, index, components) => components.indexOf(component) !== index);
20
+ const emptyReasons = exclusions
21
+ .filter((exclusion) => exclusion.reason.trim().length === 0)
22
+ .map((exclusion) => exclusion.component);
23
+ const report = getCatalogCoverage(manifest, publicComponents, exclusions);
24
+ const errors = [];
25
+ if (report.missing.length > 0) {
26
+ errors.push(`missing: ${report.missing.join(', ')}`);
27
+ }
28
+ if (report.unknownCovered.length > 0) {
29
+ errors.push(`unknown covered: ${report.unknownCovered.join(', ')}`);
30
+ }
31
+ if (report.unknownExcluded.length > 0) {
32
+ errors.push(`unknown excluded: ${report.unknownExcluded.join(', ')}`);
33
+ }
34
+ if (duplicateExclusions.length > 0) {
35
+ errors.push(`duplicate exclusions: ${sorted(new Set(duplicateExclusions)).join(', ')}`);
36
+ }
37
+ if (emptyReasons.length > 0) {
38
+ errors.push(`empty exclusion reasons: ${sorted(emptyReasons).join(', ')}`);
39
+ }
40
+ if (errors.length > 0) {
41
+ throw new Error(`Catalog coverage is incomplete (${errors.join('; ')}).`);
42
+ }
43
+ return report;
44
+ }
@@ -0,0 +1,6 @@
1
+ import { type CatalogCase, type CatalogCaseFilter, type CatalogManifest, type CatalogSectionDefinition, type CatalogStoryDefinition } from './catalog-types';
2
+ export declare function createCatalogStory(story: CatalogStoryDefinition): CatalogStoryDefinition;
3
+ export declare function createCatalogSection(section: CatalogSectionDefinition): CatalogSectionDefinition;
4
+ export declare function createCatalogManifest(manifest: CatalogManifest): CatalogManifest;
5
+ export declare function buildCatalogCases(manifest: CatalogManifest, filter?: CatalogCaseFilter): CatalogCase[];
6
+ //# sourceMappingURL=catalog-manifest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog-manifest.d.ts","sourceRoot":"","sources":["../../src/catalog/catalog-manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,WAAW,EAEhB,KAAK,iBAAiB,EAGtB,KAAK,eAAe,EACpB,KAAK,wBAAwB,EAC7B,KAAK,sBAAsB,EAM5B,MAAM,iBAAiB,CAAA;AA8BxB,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,sBAAsB,GAC5B,sBAAsB,CAGxB;AAED,wBAAgB,oBAAoB,CAClC,OAAO,EAAE,wBAAwB,GAChC,wBAAwB,CAG1B;AAED,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,eAAe,GACxB,eAAe,CA2BjB;AAmCD,wBAAgB,iBAAiB,CAC/B,QAAQ,EAAE,eAAe,EACzB,MAAM,GAAE,iBAAsB,GAC7B,WAAW,EAAE,CAoEf"}
@@ -0,0 +1,117 @@
1
+ import { catalogDensities, catalogThemes, catalogViewports, } from './catalog-types';
2
+ const catalogIdPattern = /^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/;
3
+ function assertCatalogId(id, kind) {
4
+ if (!catalogIdPattern.test(id)) {
5
+ throw new Error(`Catalog ${kind} id "${id}" must be a lowercase kebab-case identifier.`);
6
+ }
7
+ }
8
+ function uniqueAxes(values, storyId, axis) {
9
+ if (values.length === 0) {
10
+ throw new Error(`Catalog story "${storyId}" has no ${axis} cases.`);
11
+ }
12
+ if (new Set(values).size !== values.length) {
13
+ throw new Error(`Catalog story "${storyId}" contains duplicate ${axis} cases.`);
14
+ }
15
+ return values;
16
+ }
17
+ export function createCatalogStory(story) {
18
+ assertCatalogId(story.id, 'story');
19
+ return story;
20
+ }
21
+ export function createCatalogSection(section) {
22
+ assertCatalogId(section.id, 'section');
23
+ return section;
24
+ }
25
+ export function createCatalogManifest(manifest) {
26
+ const sectionIds = new Set();
27
+ for (const section of manifest.sections) {
28
+ assertCatalogId(section.id, 'section');
29
+ if (sectionIds.has(section.id)) {
30
+ throw new Error(`Duplicate catalog section id "${section.id}".`);
31
+ }
32
+ sectionIds.add(section.id);
33
+ const storyIds = new Set();
34
+ for (const story of section.stories) {
35
+ assertCatalogId(story.id, 'story');
36
+ if (storyIds.has(story.id)) {
37
+ throw new Error(`Duplicate story id "${story.id}" in section "${section.id}".`);
38
+ }
39
+ storyIds.add(story.id);
40
+ for (const component of story.components ?? []) {
41
+ assertCatalogId(component, 'story');
42
+ }
43
+ }
44
+ }
45
+ return manifest;
46
+ }
47
+ function createCaseId(context) {
48
+ const segments = [
49
+ context.sectionId,
50
+ context.storyId,
51
+ context.theme,
52
+ context.density,
53
+ context.viewport,
54
+ context.interaction,
55
+ ];
56
+ if (context.accessibilityMode !== 'standard') {
57
+ segments.push(context.accessibilityMode);
58
+ }
59
+ return segments.join('/');
60
+ }
61
+ function matchesFilter(catalogCase, filter) {
62
+ return ((filter.sectionId === undefined ||
63
+ catalogCase.sectionId === filter.sectionId) &&
64
+ (filter.storyId === undefined || catalogCase.storyId === filter.storyId) &&
65
+ (filter.theme === undefined || catalogCase.theme === filter.theme) &&
66
+ (filter.density === undefined || catalogCase.density === filter.density) &&
67
+ (filter.viewport === undefined ||
68
+ catalogCase.viewport === filter.viewport) &&
69
+ (filter.accessibilityMode === undefined ||
70
+ catalogCase.accessibilityMode === filter.accessibilityMode) &&
71
+ (filter.interaction === undefined ||
72
+ catalogCase.interaction === filter.interaction));
73
+ }
74
+ export function buildCatalogCases(manifest, filter = {}) {
75
+ createCatalogManifest(manifest);
76
+ const cases = [];
77
+ for (const section of manifest.sections) {
78
+ for (const story of section.stories) {
79
+ const themes = uniqueAxes(story.themes ?? catalogThemes, story.id, 'theme');
80
+ const densities = uniqueAxes(story.densities ?? catalogDensities, story.id, 'density');
81
+ const viewports = uniqueAxes(story.viewports ?? catalogViewports, story.id, 'viewport');
82
+ const interactions = uniqueAxes(story.interactions ?? ['rest'], story.id, 'interaction');
83
+ const accessibilityModes = uniqueAxes(story.accessibilityModes ?? ['standard'], story.id, 'accessibility mode');
84
+ for (const theme of themes) {
85
+ for (const density of densities) {
86
+ for (const viewport of viewports) {
87
+ for (const accessibilityMode of accessibilityModes) {
88
+ for (const interaction of interactions) {
89
+ const context = {
90
+ sectionId: section.id,
91
+ storyId: story.id,
92
+ theme,
93
+ density,
94
+ viewport,
95
+ accessibilityMode,
96
+ interaction,
97
+ };
98
+ const catalogCase = {
99
+ ...context,
100
+ caseId: createCaseId(context),
101
+ sectionTitle: section.title,
102
+ storyTitle: story.title,
103
+ storyDescription: story.description,
104
+ render: story.render,
105
+ };
106
+ if (matchesFilter(catalogCase, filter)) {
107
+ cases.push(catalogCase);
108
+ }
109
+ }
110
+ }
111
+ }
112
+ }
113
+ }
114
+ }
115
+ }
116
+ return cases;
117
+ }
@@ -0,0 +1,64 @@
1
+ import type * as React from 'react';
2
+ export declare const catalogThemes: readonly ["light", "dark"];
3
+ export declare const catalogDensities: readonly ["regular", "compact"];
4
+ export declare const catalogViewports: readonly ["wide", "narrow"];
5
+ export declare const catalogAccessibilityModes: readonly ["standard", "reduced-transparency", "increased-contrast", "reduced-motion"];
6
+ export declare const catalogInteractions: readonly ["rest", "hover", "focus-visible", "pressed", "selected", "disabled", "invalid", "loading", "empty"];
7
+ export type CatalogTheme = (typeof catalogThemes)[number];
8
+ export type CatalogDensity = (typeof catalogDensities)[number];
9
+ export type CatalogViewport = (typeof catalogViewports)[number];
10
+ export type CatalogAccessibilityMode = (typeof catalogAccessibilityModes)[number];
11
+ export type CatalogInteraction = (typeof catalogInteractions)[number];
12
+ export interface CatalogCaseContext {
13
+ caseId: string;
14
+ sectionId: string;
15
+ storyId: string;
16
+ theme: CatalogTheme;
17
+ density: CatalogDensity;
18
+ viewport: CatalogViewport;
19
+ accessibilityMode: CatalogAccessibilityMode;
20
+ interaction: CatalogInteraction;
21
+ }
22
+ export interface CatalogStoryDefinition {
23
+ id: string;
24
+ title: string;
25
+ description?: React.ReactNode;
26
+ /**
27
+ * Public visual component module ids exercised by this story. These ids
28
+ * correspond to the kebab-case modules exported from components/ui/index.ts.
29
+ */
30
+ components?: readonly string[];
31
+ themes?: readonly CatalogTheme[];
32
+ densities?: readonly CatalogDensity[];
33
+ viewports?: readonly CatalogViewport[];
34
+ accessibilityModes?: readonly CatalogAccessibilityMode[];
35
+ interactions?: readonly CatalogInteraction[];
36
+ render: (context: CatalogCaseContext) => React.ReactNode;
37
+ }
38
+ export interface CatalogSectionDefinition {
39
+ id: string;
40
+ title: string;
41
+ description?: React.ReactNode;
42
+ stories: readonly CatalogStoryDefinition[];
43
+ }
44
+ export interface CatalogManifest {
45
+ title: string;
46
+ description?: React.ReactNode;
47
+ sections: readonly CatalogSectionDefinition[];
48
+ }
49
+ export interface CatalogCase extends CatalogCaseContext {
50
+ sectionTitle: string;
51
+ storyTitle: string;
52
+ storyDescription?: React.ReactNode;
53
+ render: CatalogStoryDefinition['render'];
54
+ }
55
+ export interface CatalogCaseFilter {
56
+ sectionId?: string;
57
+ storyId?: string;
58
+ theme?: CatalogTheme;
59
+ density?: CatalogDensity;
60
+ viewport?: CatalogViewport;
61
+ accessibilityMode?: CatalogAccessibilityMode;
62
+ interaction?: CatalogInteraction;
63
+ }
64
+ //# sourceMappingURL=catalog-types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog-types.d.ts","sourceRoot":"","sources":["../../src/catalog/catalog-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,KAAK,MAAM,OAAO,CAAA;AAEnC,eAAO,MAAM,aAAa,4BAA6B,CAAA;AACvD,eAAO,MAAM,gBAAgB,iCAAkC,CAAA;AAC/D,eAAO,MAAM,gBAAgB,6BAA8B,CAAA;AAC3D,eAAO,MAAM,yBAAyB,uFAK5B,CAAA;AACV,eAAO,MAAM,mBAAmB,+GAUtB,CAAA;AAEV,MAAM,MAAM,YAAY,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAA;AACzD,MAAM,MAAM,cAAc,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAA;AAC9D,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,gBAAgB,CAAC,CAAC,MAAM,CAAC,CAAA;AAC/D,MAAM,MAAM,wBAAwB,GAClC,CAAC,OAAO,yBAAyB,CAAC,CAAC,MAAM,CAAC,CAAA;AAC5C,MAAM,MAAM,kBAAkB,GAAG,CAAC,OAAO,mBAAmB,CAAC,CAAC,MAAM,CAAC,CAAA;AAErE,MAAM,WAAW,kBAAkB;IACjC,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,YAAY,CAAA;IACnB,OAAO,EAAE,cAAc,CAAA;IACvB,QAAQ,EAAE,eAAe,CAAA;IACzB,iBAAiB,EAAE,wBAAwB,CAAA;IAC3C,WAAW,EAAE,kBAAkB,CAAA;CAChC;AAED,MAAM,WAAW,sBAAsB;IACrC,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC7B;;;OAGG;IACH,UAAU,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;IAC9B,MAAM,CAAC,EAAE,SAAS,YAAY,EAAE,CAAA;IAChC,SAAS,CAAC,EAAE,SAAS,cAAc,EAAE,CAAA;IACrC,SAAS,CAAC,EAAE,SAAS,eAAe,EAAE,CAAA;IACtC,kBAAkB,CAAC,EAAE,SAAS,wBAAwB,EAAE,CAAA;IACxD,YAAY,CAAC,EAAE,SAAS,kBAAkB,EAAE,CAAA;IAC5C,MAAM,EAAE,CAAC,OAAO,EAAE,kBAAkB,KAAK,KAAK,CAAC,SAAS,CAAA;CACzD;AAED,MAAM,WAAW,wBAAwB;IACvC,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC7B,OAAO,EAAE,SAAS,sBAAsB,EAAE,CAAA;CAC3C;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC7B,QAAQ,EAAE,SAAS,wBAAwB,EAAE,CAAA;CAC9C;AAED,MAAM,WAAW,WAAY,SAAQ,kBAAkB;IACrD,YAAY,EAAE,MAAM,CAAA;IACpB,UAAU,EAAE,MAAM,CAAA;IAClB,gBAAgB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAClC,MAAM,EAAE,sBAAsB,CAAC,QAAQ,CAAC,CAAA;CACzC;AAED,MAAM,WAAW,iBAAiB;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,KAAK,CAAC,EAAE,YAAY,CAAA;IACpB,OAAO,CAAC,EAAE,cAAc,CAAA;IACxB,QAAQ,CAAC,EAAE,eAAe,CAAA;IAC1B,iBAAiB,CAAC,EAAE,wBAAwB,CAAA;IAC5C,WAAW,CAAC,EAAE,kBAAkB,CAAA;CACjC"}
@@ -0,0 +1,20 @@
1
+ export const catalogThemes = ['light', 'dark'];
2
+ export const catalogDensities = ['regular', 'compact'];
3
+ export const catalogViewports = ['wide', 'narrow'];
4
+ export const catalogAccessibilityModes = [
5
+ 'standard',
6
+ 'reduced-transparency',
7
+ 'increased-contrast',
8
+ 'reduced-motion',
9
+ ];
10
+ export const catalogInteractions = [
11
+ 'rest',
12
+ 'hover',
13
+ 'focus-visible',
14
+ 'pressed',
15
+ 'selected',
16
+ 'disabled',
17
+ 'invalid',
18
+ 'loading',
19
+ 'empty',
20
+ ];
@@ -0,0 +1,14 @@
1
+ import * as React from 'react';
2
+ import type { CatalogCase, CatalogCaseFilter, CatalogManifest } from './catalog-types';
3
+ export interface ComponentCatalogProps extends Omit<React.ComponentProps<'main'>, 'children'> {
4
+ manifest: CatalogManifest;
5
+ filter?: CatalogCaseFilter;
6
+ showCaseLabels?: boolean;
7
+ }
8
+ export interface CatalogCaseFrameProps extends Omit<React.ComponentProps<'article'>, 'children'> {
9
+ catalogCase: CatalogCase;
10
+ showLabel?: boolean;
11
+ }
12
+ export declare function CatalogCaseFrame({ catalogCase, showLabel, className, ...props }: CatalogCaseFrameProps): import("react/jsx-runtime").JSX.Element;
13
+ export declare function ComponentCatalog({ manifest, filter, showCaseLabels, className, ...props }: ComponentCatalogProps): import("react/jsx-runtime").JSX.Element;
14
+ //# sourceMappingURL=component-catalog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"component-catalog.d.ts","sourceRoot":"","sources":["../../src/catalog/component-catalog.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAG9B,OAAO,KAAK,EACV,WAAW,EACX,iBAAiB,EACjB,eAAe,EAChB,MAAM,iBAAiB,CAAA;AAExB,MAAM,WAAW,qBACf,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,UAAU,CAAC;IACtD,QAAQ,EAAE,eAAe,CAAA;IACzB,MAAM,CAAC,EAAE,iBAAiB,CAAA;IAC1B,cAAc,CAAC,EAAE,OAAO,CAAA;CACzB;AAED,MAAM,WAAW,qBACf,SAAQ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,SAAS,CAAC,EAAE,UAAU,CAAC;IACzD,WAAW,EAAE,WAAW,CAAA;IACxB,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAiBD,wBAAgB,gBAAgB,CAAC,EAC/B,WAAW,EACX,SAAgB,EAChB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,qBAAqB,2CAyDvB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,MAAM,EACN,cAAqB,EACrB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,qBAAqB,2CA0GvB"}
@@ -0,0 +1,49 @@
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import { cn } from '../lib/utils';
4
+ import { buildCatalogCases } from './catalog-manifest';
5
+ function caseLabel(catalogCase) {
6
+ const labels = [
7
+ catalogCase.theme,
8
+ catalogCase.density,
9
+ catalogCase.viewport,
10
+ catalogCase.interaction,
11
+ ];
12
+ if (catalogCase.accessibilityMode !== 'standard') {
13
+ labels.push(catalogCase.accessibilityMode);
14
+ }
15
+ return labels.join(' · ');
16
+ }
17
+ export function CatalogCaseFrame({ catalogCase, showLabel = true, className, ...props }) {
18
+ const isDark = catalogCase.theme === 'dark';
19
+ return (_jsxs("article", { "data-slot": "catalog-case", "data-catalog-case": catalogCase.caseId, "data-theme": catalogCase.theme, "data-density": catalogCase.density, "data-viewport": catalogCase.viewport, "data-accessibility-mode": catalogCase.accessibilityMode, "data-transparency": catalogCase.accessibilityMode === 'reduced-transparency'
20
+ ? 'reduced'
21
+ : undefined, "data-contrast": catalogCase.accessibilityMode === 'increased-contrast'
22
+ ? 'increased'
23
+ : undefined, "data-motion": catalogCase.accessibilityMode === 'reduced-motion'
24
+ ? 'reduced'
25
+ : undefined, "data-interaction": catalogCase.interaction, "aria-label": `${catalogCase.storyTitle}: ${caseLabel(catalogCase)}`, className: cn('bg-background text-foreground border-border isolate overflow-hidden rounded-lg border shadow-sm', catalogCase.viewport === 'narrow'
26
+ ? 'w-full max-w-80'
27
+ : 'w-full max-w-3xl', isDark && 'dark', className), ...props, children: [showLabel ? (_jsx("header", { "data-slot": "catalog-case-label", className: "border-border bg-muted/40 text-muted-foreground border-b px-3 py-2 font-mono text-[11px] leading-4", children: caseLabel(catalogCase) })) : null, _jsx("div", { "data-slot": "catalog-case-stage", className: cn('bg-background text-foreground min-h-24', catalogCase.density === 'compact' ? 'p-2' : 'p-4'), children: catalogCase.render(catalogCase) })] }));
28
+ }
29
+ export function ComponentCatalog({ manifest, filter, showCaseLabels = true, className, ...props }) {
30
+ const cases = buildCatalogCases(manifest, filter);
31
+ const groupedCases = new Map();
32
+ for (const catalogCase of cases) {
33
+ const key = `${catalogCase.sectionId}/${catalogCase.storyId}`;
34
+ const storyCases = groupedCases.get(key) ?? [];
35
+ storyCases.push(catalogCase);
36
+ groupedCases.set(key, storyCases);
37
+ }
38
+ return (_jsxs("main", { "data-slot": "component-catalog", className: cn('bg-muted/20 text-foreground min-h-full p-4 sm:p-6', className), ...props, children: [_jsxs("header", { className: "mx-auto mb-8 max-w-7xl", children: [_jsx("h1", { className: "text-2xl font-semibold tracking-tight", children: manifest.title }), manifest.description ? (_jsx("div", { className: "text-muted-foreground mt-2 max-w-3xl text-sm", children: manifest.description })) : null] }), _jsx("div", { className: "mx-auto grid max-w-7xl gap-10", children: manifest.sections.map((section) => {
39
+ const storyGroups = section.stories
40
+ .map((story) => ({
41
+ story,
42
+ cases: groupedCases.get(`${section.id}/${story.id}`) ?? [],
43
+ }))
44
+ .filter((group) => group.cases.length > 0);
45
+ if (storyGroups.length === 0)
46
+ return null;
47
+ return (_jsxs("section", { "data-slot": "catalog-section", "data-catalog-section": section.id, "aria-labelledby": `catalog-section-${section.id}`, children: [_jsxs("div", { className: "mb-4", children: [_jsx("h2", { id: `catalog-section-${section.id}`, className: "text-lg font-semibold tracking-tight", children: section.title }), section.description ? (_jsx("div", { className: "text-muted-foreground mt-1 max-w-3xl text-sm", children: section.description })) : null] }), _jsx("div", { className: "grid gap-8", children: storyGroups.map(({ story, cases: storyCases }) => (_jsxs("section", { "data-slot": "catalog-story", "data-catalog-story": story.id, "aria-labelledby": `catalog-story-${section.id}-${story.id}`, children: [_jsxs("div", { className: "mb-3", children: [_jsx("h3", { id: `catalog-story-${section.id}-${story.id}`, className: "text-sm font-medium", children: story.title }), story.description ? (_jsx("div", { className: "text-muted-foreground mt-1 text-xs", children: story.description })) : null] }), _jsx("div", { "data-slot": "catalog-case-grid", className: "grid items-start gap-4 xl:grid-cols-2", children: storyCases.map((catalogCase) => (_jsx(CatalogCaseFrame, { catalogCase: catalogCase, showLabel: showCaseLabels }, catalogCase.caseId))) })] }, story.id))) })] }, section.id));
48
+ }) })] }));
49
+ }
@@ -0,0 +1,8 @@
1
+ import type { CatalogCoverageExclusion } from './catalog-coverage';
2
+ /**
3
+ * Intentional gaps in the deterministic core catalog. Keeping this list
4
+ * explicit makes every new public visual module choose between authored
5
+ * coverage and a reviewable, temporary reason for deferral.
6
+ */
7
+ export declare const coreCatalogExclusions: readonly CatalogCoverageExclusion[];
8
+ //# sourceMappingURL=core-catalog-exclusions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core-catalog-exclusions.d.ts","sourceRoot":"","sources":["../../src/catalog/core-catalog-exclusions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,oBAAoB,CAAA;AAElE;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,EAAE,SAAS,wBAAwB,EAiJ3D,CAAA"}
@@ -0,0 +1,151 @@
1
+ /**
2
+ * Intentional gaps in the deterministic core catalog. Keeping this list
3
+ * explicit makes every new public visual module choose between authored
4
+ * coverage and a reviewable, temporary reason for deferral.
5
+ */
6
+ export const coreCatalogExclusions = [
7
+ {
8
+ component: 'accordion',
9
+ reason: 'Needs an authored expanded and collapsed keyboard matrix.',
10
+ },
11
+ {
12
+ component: 'alert-dialog',
13
+ reason: 'Requires isolated portal rendering before open states are stable.',
14
+ },
15
+ {
16
+ component: 'aspect-ratio',
17
+ reason: 'Layout utility is exercised by consumer media compositions.',
18
+ },
19
+ {
20
+ component: 'calendar',
21
+ reason: 'Needs a dedicated date-grid interaction matrix.',
22
+ },
23
+ {
24
+ component: 'carousel',
25
+ reason: 'Needs stable geometry and navigation fixtures.',
26
+ },
27
+ {
28
+ component: 'chart',
29
+ reason: 'Needs deterministic chart data and resize fixtures.',
30
+ },
31
+ {
32
+ component: 'collapsible',
33
+ reason: 'Needs an authored disclosure-state matrix.',
34
+ },
35
+ {
36
+ component: 'combobox',
37
+ reason: 'Requires isolated portal and filtering coverage.',
38
+ },
39
+ {
40
+ component: 'command',
41
+ reason: 'Needs search, selection, empty, and keyboard fixtures.',
42
+ },
43
+ {
44
+ component: 'confirm-dialog',
45
+ reason: 'Requires isolated async portal-state rendering.',
46
+ },
47
+ {
48
+ component: 'context-menu',
49
+ reason: 'Requires isolated pointer-positioned portal rendering.',
50
+ },
51
+ {
52
+ component: 'dialog',
53
+ reason: 'Requires isolated portal rendering before open states are stable.',
54
+ },
55
+ {
56
+ component: 'drawer',
57
+ reason: 'Requires isolated viewport and gesture fixtures.',
58
+ },
59
+ {
60
+ component: 'dropdown-menu',
61
+ reason: 'Requires isolated portal and keyboard coverage.',
62
+ },
63
+ {
64
+ component: 'date-picker',
65
+ reason: 'Requires isolated calendar portal rendering.',
66
+ },
67
+ {
68
+ component: 'edge-fade',
69
+ reason: 'Needs deterministic overflow geometry.',
70
+ },
71
+ {
72
+ component: 'form',
73
+ reason: 'Behavioral adapter is covered through authored field stories.',
74
+ },
75
+ {
76
+ component: 'hover-card',
77
+ reason: 'Requires isolated delayed-hover portal rendering.',
78
+ },
79
+ {
80
+ component: 'input-group',
81
+ reason: 'Needs addon, button, and validation compositions.',
82
+ },
83
+ {
84
+ component: 'input-otp',
85
+ reason: 'Needs input-sequence and paste fixtures.',
86
+ },
87
+ {
88
+ component: 'inspector',
89
+ reason: 'Needs a representative property-editing composition.',
90
+ },
91
+ {
92
+ component: 'label',
93
+ reason: 'Covered indirectly by labeled control compositions.',
94
+ },
95
+ {
96
+ component: 'menubar',
97
+ reason: 'Requires isolated multi-menu portal coverage.',
98
+ },
99
+ {
100
+ component: 'message-scroller',
101
+ reason: 'Needs deterministic overflow and anchoring geometry.',
102
+ },
103
+ {
104
+ component: 'navigation-menu',
105
+ reason: 'Requires isolated viewport and portal coverage.',
106
+ },
107
+ {
108
+ component: 'pagination',
109
+ reason: 'Needs compact and large-page-count compositions.',
110
+ },
111
+ {
112
+ component: 'resizable',
113
+ reason: 'Needs stable browser geometry and drag fixtures.',
114
+ },
115
+ {
116
+ component: 'scroll-area',
117
+ reason: 'Needs deterministic overflow geometry.',
118
+ },
119
+ {
120
+ component: 'select',
121
+ reason: 'Requires isolated portal and keyboard coverage.',
122
+ },
123
+ {
124
+ component: 'separator',
125
+ reason: 'Covered indirectly by toolbar, item, and panel compositions.',
126
+ },
127
+ {
128
+ component: 'sheet',
129
+ reason: 'Requires isolated portal and viewport-edge coverage.',
130
+ },
131
+ {
132
+ component: 'sidebar',
133
+ reason: 'Needs a complete app-shell viewport fixture.',
134
+ },
135
+ {
136
+ component: 'slider',
137
+ reason: 'Needs pointer and keyboard value fixtures.',
138
+ },
139
+ {
140
+ component: 'split-view',
141
+ reason: 'Needs stable browser geometry and drag fixtures.',
142
+ },
143
+ {
144
+ component: 'sonner',
145
+ reason: 'Requires an isolated live toaster host.',
146
+ },
147
+ {
148
+ component: 'tooltip',
149
+ reason: 'Requires isolated delayed portal rendering.',
150
+ },
151
+ ];
@@ -0,0 +1,2 @@
1
+ export declare const coreComponentCatalog: import("./catalog-types").CatalogManifest;
2
+ //# sourceMappingURL=core-catalog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core-catalog.d.ts","sourceRoot":"","sources":["../../src/catalog/core-catalog.tsx"],"names":[],"mappings":"AAQA,eAAO,MAAM,oBAAoB,2CAY/B,CAAA"}
@@ -0,0 +1,19 @@
1
+ import { createCatalogManifest } from './catalog-manifest';
2
+ import { coreCollectionsSection } from './core-collection-stories';
3
+ import { coreControlsSection } from './core-control-stories';
4
+ import { coreFeedbackSection } from './core-feedback-stories';
5
+ import { coreFoundationSection } from './core-foundation-stories';
6
+ import { coreNavigationSection } from './core-navigation-stories';
7
+ import { coreOverlaysSection } from './core-overlay-stories';
8
+ export const coreComponentCatalog = createCatalogManifest({
9
+ title: 'Moldable UI component catalog',
10
+ description: 'Deterministic component cases for review and visual regression coverage.',
11
+ sections: [
12
+ coreFoundationSection,
13
+ coreControlsSection,
14
+ coreCollectionsSection,
15
+ coreNavigationSection,
16
+ coreOverlaysSection,
17
+ coreFeedbackSection,
18
+ ],
19
+ });
@@ -0,0 +1,3 @@
1
+ import type { CatalogSectionDefinition } from './catalog-types';
2
+ export declare const coreCollectionsSection: CatalogSectionDefinition;
3
+ //# sourceMappingURL=core-collection-stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core-collection-stories.d.ts","sourceRoot":"","sources":["../../src/catalog/core-collection-stories.tsx"],"names":[],"mappings":"AAiCA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,iBAAiB,CAAA;AAE/D,eAAO,MAAM,sBAAsB,EAAE,wBAwIpC,CAAA"}
@@ -0,0 +1,42 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { FileTextIcon, MoreHorizontalIcon } from 'lucide-react';
3
+ import { Grid, GridItem, GridItemContent, GridItemDescription, GridItemTitle, } from '../components/ui/grid';
4
+ import { IconButton } from '../components/ui/icon-button';
5
+ import { Item, ItemActions, ItemContent, ItemDescription, ItemGroup, ItemMedia, ItemTitle, } from '../components/ui/item';
6
+ import { List, ListItem, ListItemContent, ListItemDescription, ListItemTitle, } from '../components/ui/list';
7
+ import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from '../components/ui/table';
8
+ export const coreCollectionsSection = {
9
+ id: 'collections',
10
+ title: 'Collections',
11
+ stories: [
12
+ {
13
+ id: 'selectable-list',
14
+ title: 'Selectable list',
15
+ components: ['list'],
16
+ viewports: ['narrow'],
17
+ interactions: ['rest', 'focus-visible', 'selected', 'disabled'],
18
+ render: ({ interaction }) => (_jsxs(List, { "aria-label": "Documents", selectionMode: "single", defaultSelectedValues: interaction === 'selected' ? ['brief'] : undefined, children: [_jsx(ListItem, { "data-catalog-target": true, value: "brief", autoFocus: interaction === 'focus-visible', children: _jsxs(ListItemContent, { children: [_jsx(ListItemTitle, { children: "Project brief" }), _jsx(ListItemDescription, { children: "Edited recently" })] }) }), _jsx(ListItem, { value: "archive", disabled: interaction === 'disabled', children: _jsxs(ListItemContent, { children: [_jsx(ListItemTitle, { children: "Archive" }), _jsx(ListItemDescription, { children: "Local documents" })] }) })] })),
19
+ },
20
+ {
21
+ id: 'selectable-grid',
22
+ title: 'Selectable grid',
23
+ components: ['grid'],
24
+ interactions: ['rest', 'focus-visible', 'selected', 'disabled'],
25
+ render: ({ interaction, viewport }) => (_jsxs(Grid, { "aria-label": "Projects", columns: viewport === 'narrow' ? 1 : 2, selectionMode: "single", defaultSelectedValues: interaction === 'selected' ? ['personal'] : undefined, children: [_jsx(GridItem, { "data-catalog-target": true, value: "personal", autoFocus: interaction === 'focus-visible', children: _jsxs(GridItemContent, { children: [_jsx(GridItemTitle, { children: "Personal" }), _jsx(GridItemDescription, { children: "8 items" })] }) }), _jsx(GridItem, { value: "work", disabled: interaction === 'disabled', children: _jsxs(GridItemContent, { children: [_jsx(GridItemTitle, { children: "Work" }), _jsx(GridItemDescription, { children: "12 items" })] }) })] })),
26
+ },
27
+ {
28
+ id: 'data-table',
29
+ title: 'Dense selectable table',
30
+ components: ['table'],
31
+ interactions: ['rest', 'focus-visible', 'selected', 'disabled', 'empty'],
32
+ render: ({ density, interaction }) => (_jsxs(Table, { density: density === 'compact' ? 'compact' : 'default', children: [_jsx(TableHeader, { children: _jsxs(TableRow, { children: [_jsx(TableHead, { children: "Name" }), _jsx(TableHead, { children: "Status" })] }) }), _jsx(TableBody, { children: interaction === 'empty' ? (_jsx(TableRow, { children: _jsx(TableCell, { colSpan: 2, className: "text-muted-foreground", children: "No projects" }) })) : (_jsxs(_Fragment, { children: [_jsxs(TableRow, { "data-catalog-target": true, selected: interaction === 'selected', disabled: interaction === 'disabled', autoFocus: interaction === 'focus-visible', children: [_jsx(TableCell, { children: "Personal" }), _jsx(TableCell, { children: "Active" })] }), _jsxs(TableRow, { children: [_jsx(TableCell, { children: "Archive" }), _jsx(TableCell, { children: "Local" })] })] })) })] })),
33
+ },
34
+ {
35
+ id: 'item-anatomy',
36
+ title: 'Item anatomy',
37
+ components: ['item'],
38
+ viewports: ['narrow'],
39
+ render: () => (_jsx(ItemGroup, { children: _jsxs(Item, { size: "sm", variant: "outline", children: [_jsx(ItemMedia, { variant: "icon", children: _jsx(FileTextIcon, {}) }), _jsxs(ItemContent, { children: [_jsx(ItemTitle, { children: "Project brief" }), _jsx(ItemDescription, { children: "Edited five minutes ago" })] }), _jsx(ItemActions, { children: _jsx(IconButton, { label: "More actions", size: "sm", variant: "ghost", children: _jsx(MoreHorizontalIcon, {}) }) })] }) })),
40
+ },
41
+ ],
42
+ };
@@ -0,0 +1,3 @@
1
+ import type { CatalogSectionDefinition } from './catalog-types';
2
+ export declare const coreControlsSection: CatalogSectionDefinition;
3
+ //# sourceMappingURL=core-control-stories.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core-control-stories.d.ts","sourceRoot":"","sources":["../../src/catalog/core-control-stories.tsx"],"names":[],"mappings":"AA0BA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,iBAAiB,CAAA;AAM/D,eAAO,MAAM,mBAAmB,EAAE,wBAkPjC,CAAA"}