@vadimcomanescu/nadicode-design-system 4.0.10 → 5.0.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 (685) hide show
  1. package/.agents/skills/seed/SKILL.md +27 -22
  2. package/.agents/skills/seed/references/animation.md +1 -1
  3. package/.agents/skills/seed/references/composition.md +1 -1
  4. package/.agents/skills/seed/references/glass-and-effects.md +16 -21
  5. package/.agents/skills/seed/references/patterns.md +47 -47
  6. package/.agents/skills/seed/references/state-machines.md +19 -18
  7. package/README.md +3 -1
  8. package/contracts/consumer-intent-map.json +2 -700
  9. package/contracts/message-catalog-contract.json +20 -20
  10. package/contracts/release-governance-baseline.json +14 -265
  11. package/css/tokens.css +28 -18
  12. package/dist/ProfilePage-KJVA3ZQ5.js +87 -0
  13. package/dist/TeamPage-BX3RMSZU.js +479 -0
  14. package/dist/catalog/catalog.d.ts +4753 -1883
  15. package/dist/catalog/catalog.js +22 -2107
  16. package/dist/catalog/components.d.ts +234 -177
  17. package/dist/catalog/components.js +218 -289
  18. package/dist/catalog/definitions/action.d.ts +170 -0
  19. package/dist/catalog/definitions/action.js +1 -0
  20. package/dist/catalog/definitions/agent.d.ts +496 -0
  21. package/dist/catalog/definitions/agent.js +1 -0
  22. package/dist/catalog/definitions/blocks-agent.d.ts +359 -0
  23. package/dist/catalog/definitions/blocks-agent.js +1 -0
  24. package/dist/catalog/definitions/blocks-auth.d.ts +179 -0
  25. package/dist/catalog/definitions/blocks-auth.js +1 -0
  26. package/dist/catalog/definitions/blocks-content.d.ts +495 -0
  27. package/dist/catalog/definitions/blocks-content.js +2 -0
  28. package/dist/catalog/definitions/blocks-crud.d.ts +485 -0
  29. package/dist/catalog/definitions/blocks-crud.js +1 -0
  30. package/dist/catalog/definitions/blocks-data.d.ts +309 -0
  31. package/dist/catalog/definitions/blocks-data.js +2 -0
  32. package/dist/catalog/definitions/blocks-marketing.d.ts +381 -0
  33. package/dist/catalog/definitions/blocks-marketing.js +1 -0
  34. package/dist/catalog/definitions/blocks-misc.d.ts +108 -0
  35. package/dist/catalog/definitions/blocks-misc.js +1 -0
  36. package/dist/catalog/definitions/chart.d.ts +293 -0
  37. package/dist/catalog/definitions/chart.js +2 -0
  38. package/dist/catalog/definitions/chat.d.ts +108 -0
  39. package/dist/catalog/definitions/chat.js +1 -0
  40. package/dist/catalog/definitions/display.d.ts +575 -0
  41. package/dist/catalog/definitions/display.js +2 -0
  42. package/dist/catalog/definitions/effects.d.ts +267 -0
  43. package/dist/catalog/definitions/effects.js +1 -0
  44. package/dist/catalog/definitions/form.d.ts +413 -0
  45. package/dist/catalog/definitions/form.js +2 -0
  46. package/dist/catalog/definitions/index.d.ts +5262 -0
  47. package/dist/catalog/definitions/index.js +21 -0
  48. package/dist/catalog/definitions/layout.d.ts +133 -0
  49. package/dist/catalog/definitions/layout.js +1 -0
  50. package/dist/catalog/definitions/navigation.d.ts +121 -0
  51. package/dist/catalog/definitions/navigation.js +1 -0
  52. package/dist/catalog/definitions/overlay.d.ts +183 -0
  53. package/dist/catalog/definitions/overlay.js +1 -0
  54. package/dist/catalog/definitions/shared.d.ts +31 -0
  55. package/dist/catalog/definitions/shared.js +1 -0
  56. package/dist/catalog/definitions/text-effects.d.ts +204 -0
  57. package/dist/catalog/definitions/text-effects.js +1 -0
  58. package/dist/catalog/definitions/text.d.ts +38 -0
  59. package/dist/catalog/definitions/text.js +1 -0
  60. package/dist/catalog/primitives/action.d.ts +12 -0
  61. package/dist/{components/blocks/TwoFactorChallengeBlock.js → catalog/primitives/action.js} +42 -36
  62. package/dist/catalog/primitives/agent.d.ts +18 -0
  63. package/dist/catalog/primitives/agent.js +32 -0
  64. package/dist/catalog/primitives/chart.d.ts +12 -0
  65. package/dist/catalog/primitives/chart.js +17 -0
  66. package/dist/catalog/primitives/chat.d.ts +10 -0
  67. package/dist/{components/page-kits/TwoFactorPageKit.js → catalog/primitives/chat.js} +42 -44
  68. package/dist/catalog/primitives/display.d.ts +34 -0
  69. package/dist/{components/page-kits/TeamSettingsPageKit.js → catalog/primitives/display.js} +71 -48
  70. package/dist/catalog/primitives/effects.d.ts +19 -0
  71. package/dist/catalog/primitives/effects.js +25 -0
  72. package/dist/catalog/primitives/form.d.ts +22 -0
  73. package/dist/{components/page-kits/OnboardingPageKit.js → catalog/primitives/form.js} +51 -47
  74. package/dist/catalog/primitives/index.d.ts +137 -0
  75. package/dist/{components/page-kits/LandingPageKit.js → catalog/primitives/index.js} +171 -58
  76. package/dist/catalog/primitives/layout.d.ts +14 -0
  77. package/dist/catalog/primitives/layout.js +130 -0
  78. package/dist/catalog/primitives/navigation.d.ts +10 -0
  79. package/dist/{components/page-kits/NavigationShellPageKit.js → catalog/primitives/navigation.js} +41 -37
  80. package/dist/catalog/primitives/overlay.d.ts +12 -0
  81. package/dist/catalog/primitives/overlay.js +130 -0
  82. package/dist/catalog/primitives/text-effects.d.ts +13 -0
  83. package/dist/{components/blocks/SocialProofBlock.js → catalog/primitives/text-effects.js} +4 -11
  84. package/dist/catalog/primitives/text.d.ts +7 -0
  85. package/dist/catalog/primitives/text.js +7 -0
  86. package/dist/catalog/primitives/utils.d.ts +8 -0
  87. package/dist/catalog/primitives/utils.js +1 -0
  88. package/dist/catalog/types.d.ts +3 -3
  89. package/dist/chunk-2LBEV4YF.js +128 -0
  90. package/dist/chunk-2NMP3J5R.js +6 -0
  91. package/dist/chunk-34MKVVGB.js +176 -0
  92. package/dist/{chunk-KFL4YCMI.js → chunk-37LY27CX.js} +1 -1
  93. package/dist/{chunk-LPED36AD.js → chunk-3BGWXRQC.js} +6 -8
  94. package/dist/chunk-3QMHVXSQ.js +258 -0
  95. package/dist/{chunk-ZI22L4DD.js → chunk-3TYPQWKD.js} +7 -13
  96. package/dist/chunk-44NVO477.js +46 -0
  97. package/dist/chunk-4ACR6NGQ.js +144 -0
  98. package/dist/{chunk-FF3XUIZO.js → chunk-4DWRAIM2.js} +1 -1
  99. package/dist/chunk-4EHXVFQY.js +78 -0
  100. package/dist/chunk-4EOX2S37.js +24 -0
  101. package/dist/chunk-4GLBFZVI.js +184 -0
  102. package/dist/chunk-4GQ5EMWR.js +142 -0
  103. package/dist/chunk-4TK2PXMJ.js +6 -0
  104. package/dist/chunk-4ZST7OY5.js +153 -0
  105. package/dist/chunk-56TNQ2P4.js +82 -0
  106. package/dist/chunk-5B3GLRX3.js +139 -0
  107. package/dist/chunk-5KQEGO3O.js +71 -0
  108. package/dist/chunk-5L2RFJZR.js +31 -0
  109. package/dist/{chunk-2325VORX.js → chunk-5MLOZVOQ.js} +32 -25
  110. package/dist/chunk-5XDYCBR6.js +345 -0
  111. package/dist/chunk-5ZC3RHXB.js +72 -0
  112. package/dist/chunk-65CUE2WL.js +257 -0
  113. package/dist/chunk-6KRT337C.js +75 -0
  114. package/dist/{chunk-DVU2EABM.js → chunk-6LD76RMU.js} +9 -12
  115. package/dist/{chunk-L3WRHSHM.js → chunk-6NL36QN3.js} +9 -8
  116. package/dist/chunk-6NND57T2.js +79 -0
  117. package/dist/{chunk-TBJPLMUE.js → chunk-6OBT3A5O.js} +6 -9
  118. package/dist/{chunk-ZR7PL5XQ.js → chunk-767GZSNJ.js} +7 -10
  119. package/dist/{chunk-2S4727W3.js → chunk-7AUNUDHM.js} +20 -16
  120. package/dist/chunk-7IVXTSZK.js +185 -0
  121. package/dist/{chunk-N2J3XFR6.js → chunk-7OOO22KB.js} +11 -16
  122. package/dist/chunk-7PTI46BS.js +119 -0
  123. package/dist/chunk-7SOMHO2L.js +181 -0
  124. package/dist/chunk-7SRNVMBY.js +72 -0
  125. package/dist/chunk-7U7XFIP6.js +17 -0
  126. package/dist/{chunk-3HHLJH72.js → chunk-7UY24UWL.js} +1 -1
  127. package/dist/chunk-7X3GXC7C.js +52 -0
  128. package/dist/{chunk-R4CRWXEQ.js → chunk-A44E44UV.js} +35 -27
  129. package/dist/chunk-A4TQNK7R.js +58 -0
  130. package/dist/chunk-AU2Q7CXZ.js +45 -0
  131. package/dist/{chunk-IJ46YEUQ.js → chunk-B4YCI5NM.js} +10 -19
  132. package/dist/{chunk-JXZ4HYXA.js → chunk-BAB6AHOM.js} +64 -60
  133. package/dist/chunk-BHPATKC7.js +116 -0
  134. package/dist/chunk-BJVCZI2B.js +29 -0
  135. package/dist/{chunk-ZTYKDD4V.js → chunk-BVXSAVKY.js} +7 -12
  136. package/dist/chunk-C7LO3JEF.js +195 -0
  137. package/dist/chunk-CAET62YQ.js +228 -0
  138. package/dist/chunk-CPHVCY3M.js +230 -0
  139. package/dist/{chunk-WOYBVPXK.js → chunk-CQ75K2DH.js} +8 -10
  140. package/dist/{chunk-OSNTB6RY.js → chunk-CY3PROVO.js} +88 -26
  141. package/dist/{chunk-FRAGRQOH.js → chunk-D6MFOI3N.js} +20 -20
  142. package/dist/{chunk-D3PKI34R.js → chunk-DGSNEGJP.js} +16 -18
  143. package/dist/{chunk-NTN5DWXV.js → chunk-DSNPOAE6.js} +7 -10
  144. package/dist/chunk-E5E3W2K4.js +6 -0
  145. package/dist/chunk-EJQ73FJ5.js +383 -0
  146. package/dist/chunk-F3QIIOOL.js +71 -0
  147. package/dist/chunk-FAKTXE3F.js +272 -0
  148. package/dist/chunk-FAQZPQF7.js +119 -0
  149. package/dist/chunk-FOXDDL2Z.js +41 -0
  150. package/dist/chunk-G722PEFL.js +71 -0
  151. package/dist/chunk-GC7QKZQW.js +20 -0
  152. package/dist/{chunk-QLL3Z6U6.js → chunk-GE4WUAAE.js} +8 -8
  153. package/dist/chunk-GNKNT52O.js +45 -0
  154. package/dist/chunk-GQEB425G.js +41 -0
  155. package/dist/{chunk-XTASI4IY.js → chunk-GVOWGEGX.js} +6 -13
  156. package/dist/chunk-GXUQFXT7.js +282 -0
  157. package/dist/chunk-GZ4DTYWM.js +36 -0
  158. package/dist/{chunk-7XRKBROR.js → chunk-HF2HNDE7.js} +22 -12
  159. package/dist/chunk-HMN4K4L6.js +44 -0
  160. package/dist/{chunk-XA7VQWCT.js → chunk-HX3VXWNJ.js} +20 -13
  161. package/dist/{chunk-ERYYZSJU.js → chunk-HZTWLK7C.js} +17 -19
  162. package/dist/{chunk-B66BU2S5.js → chunk-ID3N3MHQ.js} +14 -22
  163. package/dist/{chunk-JGEE66UI.js → chunk-IHGZJS7N.js} +12 -12
  164. package/dist/{chunk-N3S6KCXN.js → chunk-IYK2ABFE.js} +25 -14
  165. package/dist/{chunk-WSBLCWY7.js → chunk-IZ7A62GI.js} +7 -6
  166. package/dist/chunk-JDLCIPSC.js +18 -0
  167. package/dist/{chunk-B5HTI43H.js → chunk-JPA45CDE.js} +68 -43
  168. package/dist/{chunk-J7F42IR3.js → chunk-JPNNAU26.js} +7 -3
  169. package/dist/chunk-JUAOQFC3.js +32 -0
  170. package/dist/{chunk-3TZLHB2L.js → chunk-JVQQQS2M.js} +8 -13
  171. package/dist/{chunk-4GSIGQXI.js → chunk-JWWXY7XR.js} +6 -6
  172. package/dist/chunk-KA44DDCB.js +42 -0
  173. package/dist/chunk-KANK5FAG.js +150 -0
  174. package/dist/chunk-KKBTPNXT.js +110 -0
  175. package/dist/chunk-KL43KGCK.js +106 -0
  176. package/dist/chunk-KMTLCN6S.js +134 -0
  177. package/dist/{chunk-HOWTYZL5.js → chunk-KPO4PD6C.js} +78 -12
  178. package/dist/{chunk-TYP2MR3Q.js → chunk-KV726HMK.js} +20 -2
  179. package/dist/{chunk-4QOH76MI.js → chunk-KWIIKHIB.js} +10 -13
  180. package/dist/chunk-KXZP6XI2.js +84 -0
  181. package/dist/chunk-L2IRYY6K.js +230 -0
  182. package/dist/chunk-L4Q724G2.js +217 -0
  183. package/dist/chunk-L55GVKLY.js +149 -0
  184. package/dist/{chunk-5NOH3QLY.js → chunk-L77KWJJB.js} +30 -31
  185. package/dist/chunk-LH5KBOIA.js +228 -0
  186. package/dist/chunk-LO3MDQSJ.js +130 -0
  187. package/dist/chunk-LYI5YMC6.js +125 -0
  188. package/dist/chunk-LZ66ADSL.js +142 -0
  189. package/dist/chunk-MB75U2OV.js +77 -0
  190. package/dist/{components/ui/AnimatedTabs.js → chunk-MFZYC6QC.js} +41 -24
  191. package/dist/chunk-MOFWXBTK.js +112 -0
  192. package/dist/chunk-MT76BPYV.js +30 -0
  193. package/dist/{chunk-X5AEOQAL.js → chunk-MZGGA75L.js} +1 -40
  194. package/dist/chunk-N334RMNE.js +39 -0
  195. package/dist/{chunk-ABV4BQF6.js → chunk-NA6ZPKIK.js} +20 -8
  196. package/dist/chunk-NF2Y5ERJ.js +186 -0
  197. package/dist/{chunk-4CUKPNS5.js → chunk-NVBF4OWT.js} +7 -10
  198. package/dist/chunk-NZXZ3PH2.js +56 -0
  199. package/dist/chunk-OB2KVO7O.js +23 -0
  200. package/dist/chunk-OLDUGLDM.js +114 -0
  201. package/dist/{chunk-HWOGLSB6.js → chunk-OMGVZWRM.js} +26 -17
  202. package/dist/{chunk-X4HXVLER.js → chunk-OMI2LLXM.js} +16 -19
  203. package/dist/{chunk-UIZTZCAU.js → chunk-OS2BLQ2G.js} +9 -14
  204. package/dist/chunk-OUXJUUCB.js +131 -0
  205. package/dist/{chunk-QQOWC53X.js → chunk-OWWQP3YW.js} +4 -2
  206. package/dist/chunk-P5I63ETD.js +691 -0
  207. package/dist/chunk-P7CTBRHO.js +176 -0
  208. package/dist/chunk-P7JS4B7U.js +101 -0
  209. package/dist/{chunk-FODQX5Q5.js → chunk-PD6WW7E5.js} +8 -10
  210. package/dist/chunk-PJ7DVYWA.js +185 -0
  211. package/dist/{chunk-BKWURLHQ.js → chunk-PQBVNNEG.js} +19 -19
  212. package/dist/chunk-PY7WBWKH.js +37 -0
  213. package/dist/{chunk-TBD4VKXH.js → chunk-PYRHNONA.js} +26 -17
  214. package/dist/{chunk-TBXW5MDR.js → chunk-Q4CRHV5T.js} +25 -17
  215. package/dist/{chunk-PC6VMNDY.js → chunk-Q7PCHHVJ.js} +0 -8
  216. package/dist/chunk-QCL76CM6.js +92 -0
  217. package/dist/chunk-QFXWI2WX.js +40 -0
  218. package/dist/{chunk-YZXCW44Y.js → chunk-QLPU2IEO.js} +26 -40
  219. package/dist/{chunk-C4PVGV2F.js → chunk-R4DPHCHJ.js} +22 -15
  220. package/dist/chunk-SEJXMNMK.js +191 -0
  221. package/dist/{chunk-CIDN3ULD.js → chunk-SIXPY62Q.js} +17 -16
  222. package/dist/chunk-STKNMEJA.js +15 -0
  223. package/dist/chunk-STNVWBJH.js +41 -0
  224. package/dist/{chunk-N5QVBOYM.js → chunk-TKT6WW4E.js} +2 -2
  225. package/dist/{chunk-73T44TBV.js → chunk-TL5UCQC3.js} +12 -16
  226. package/dist/{chunk-D4BKRPO4.js → chunk-TNDMBLYP.js} +8 -19
  227. package/dist/chunk-TTA5TLNJ.js +97 -0
  228. package/dist/chunk-TV6CJ5NI.js +57 -0
  229. package/dist/chunk-TXRGQO5M.js +100 -0
  230. package/dist/chunk-U3QOFPHD.js +28 -0
  231. package/dist/chunk-UB6XJTRU.js +45 -0
  232. package/dist/chunk-UGXI4PES.js +415 -0
  233. package/dist/{chunk-YNRO42PX.js → chunk-UIYX2EMT.js} +12 -20
  234. package/dist/chunk-UOUERAB4.js +446 -0
  235. package/dist/chunk-UQB54LIA.js +228 -0
  236. package/dist/chunk-UT6MKK2S.js +115 -0
  237. package/dist/chunk-UXYLA2IV.js +124 -0
  238. package/dist/{chunk-PDSQC6VE.js → chunk-V5RSV4ZV.js} +5 -2
  239. package/dist/chunk-VUNXVYOH.js +129 -0
  240. package/dist/chunk-W4KI424V.js +380 -0
  241. package/dist/chunk-W7ZGCFTB.js +23 -0
  242. package/dist/chunk-WAIZR4CR.js +107 -0
  243. package/dist/{chunk-T5LXQNIP.js → chunk-WHYKEOUV.js} +29 -25
  244. package/dist/chunk-WRBPEZFY.js +80 -0
  245. package/dist/chunk-XI775QZZ.js +275 -0
  246. package/dist/chunk-XLIFWBE7.js +117 -0
  247. package/dist/{chunk-BI3TXPMR.js → chunk-XMGWLDNG.js} +4 -6
  248. package/dist/chunk-XYMFKNKG.js +93 -0
  249. package/dist/chunk-XYYZRQES.js +256 -0
  250. package/dist/chunk-XZDVTOXJ.js +94 -0
  251. package/dist/{chunk-XFQLYQCV.js → chunk-YB3J4ZRZ.js} +16 -7
  252. package/dist/chunk-YCS4MMC3.js +133 -0
  253. package/dist/chunk-YGDO5KDY.js +33 -0
  254. package/dist/{chunk-OMEWVRBK.js → chunk-YNBDA24W.js} +7 -14
  255. package/dist/chunk-YXRIXTXW.js +32 -0
  256. package/dist/chunk-ZFCSKVTZ.js +102 -0
  257. package/dist/chunk-ZLWEBAL6.js +48 -0
  258. package/dist/chunk-ZND7AAWG.js +290 -0
  259. package/dist/{chunk-FAPU77SV.js → chunk-ZNF6S3DQ.js} +21 -39
  260. package/dist/chunk-ZSU5ZI4O.js +32 -0
  261. package/dist/components/blocks/AccountLockedBlock.d.ts +3 -11
  262. package/dist/components/blocks/AccountLockedBlock.js +3 -3
  263. package/dist/components/blocks/ActivityFeedBlock.d.ts +3 -14
  264. package/dist/components/blocks/ActivityFeedBlock.js +2 -2
  265. package/dist/components/blocks/AgentConversationBlock.d.ts +12 -17
  266. package/dist/components/blocks/AgentConversationBlock.js +10 -109
  267. package/dist/components/blocks/AgentProfileGridBlock.d.ts +3 -19
  268. package/dist/components/blocks/AgentProfileGridBlock.js +2 -2
  269. package/dist/components/blocks/AgentRunOverviewBlock.d.ts +3 -31
  270. package/dist/components/blocks/AgentRunOverviewBlock.js +2 -2
  271. package/dist/components/blocks/AgentWorkbenchBlock.d.ts +5 -21
  272. package/dist/components/blocks/AgentWorkbenchBlock.js +14 -112
  273. package/dist/components/blocks/ApiKeysBlock.d.ts +3 -18
  274. package/dist/components/blocks/ApiKeysBlock.js +35 -35
  275. package/dist/components/blocks/AuthLayout.d.ts +3 -17
  276. package/dist/components/blocks/AuthLayout.js +4 -4
  277. package/dist/components/blocks/AuthSuccessBlock.d.ts +3 -12
  278. package/dist/components/blocks/AuthSuccessBlock.js +7 -2
  279. package/dist/components/blocks/BannerBlock.d.ts +3 -9
  280. package/dist/components/blocks/BannerBlock.js +33 -33
  281. package/dist/components/blocks/BenchmarksBlock.d.ts +3 -20
  282. package/dist/components/blocks/BenchmarksBlock.js +2 -2
  283. package/dist/components/blocks/BlogDetailBlock.d.ts +3 -0
  284. package/dist/components/{page-kits/SuccessPageKit.js → blocks/BlogDetailBlock.js} +37 -34
  285. package/dist/components/blocks/BlogIndexBlock.d.ts +3 -0
  286. package/dist/components/blocks/{EmailVerifiedBlock.js → BlogIndexBlock.js} +4 -4
  287. package/dist/components/blocks/CallToActionBlock.d.ts +3 -13
  288. package/dist/components/blocks/CallToActionBlock.js +3 -3
  289. package/dist/components/blocks/ChangelogBlock.d.ts +3 -16
  290. package/dist/components/blocks/ChangelogBlock.js +33 -32
  291. package/dist/components/blocks/ChartBlock.d.ts +3 -16
  292. package/dist/components/blocks/ChartBlock.js +33 -33
  293. package/dist/components/blocks/ChartCollectionBlock.d.ts +3 -5
  294. package/dist/components/blocks/ChartCollectionBlock.js +4 -4
  295. package/dist/components/blocks/ChatLayout.d.ts +3 -17
  296. package/dist/components/blocks/ChatLayout.js +33 -33
  297. package/dist/components/blocks/CheckEmailBlock.d.ts +3 -9
  298. package/dist/components/blocks/CheckEmailBlock.js +2 -2
  299. package/dist/components/blocks/CodeBlock.d.ts +3 -7
  300. package/dist/components/blocks/CodeBlock.js +1 -1
  301. package/dist/components/blocks/CommandPaletteBlock.d.ts +3 -9
  302. package/dist/components/blocks/CommandPaletteBlock.js +35 -35
  303. package/dist/components/blocks/ComparisonBlock.d.ts +3 -13
  304. package/dist/components/blocks/ComparisonBlock.js +2 -2
  305. package/dist/components/blocks/ContactBlock.d.ts +3 -17
  306. package/dist/components/blocks/ContactBlock.js +3 -3
  307. package/dist/components/blocks/CreateBlock.d.ts +1 -16
  308. package/dist/components/blocks/CreateBlock.js +33 -34
  309. package/dist/components/blocks/CrudListBlock.d.ts +3 -0
  310. package/dist/components/{page-kits/VerifyEmailPageKit.js → blocks/CrudListBlock.js} +41 -34
  311. package/dist/components/blocks/DashboardBlock.d.ts +3 -0
  312. package/dist/components/{page-kits/DashboardPageKit.js → blocks/DashboardBlock.js} +49 -50
  313. package/dist/components/blocks/DataGridBlock.d.ts +3 -10
  314. package/dist/components/blocks/DataGridBlock.js +35 -36
  315. package/dist/components/blocks/DirectoryBlock.d.ts +3 -17
  316. package/dist/components/blocks/DirectoryBlock.js +38 -37
  317. package/dist/components/blocks/FAQBlock.d.ts +3 -12
  318. package/dist/components/blocks/FAQBlock.js +33 -33
  319. package/dist/components/blocks/FeatureBlock.d.ts +3 -23
  320. package/dist/components/blocks/FeatureBlock.js +33 -33
  321. package/dist/components/blocks/FooterBlock.d.ts +3 -19
  322. package/dist/components/blocks/FooterBlock.js +1 -1
  323. package/dist/components/blocks/FormFieldBlock.d.ts +3 -0
  324. package/dist/components/{page-kits/MarketingShellPageKit.js → blocks/FormFieldBlock.js} +38 -41
  325. package/dist/components/blocks/GalleryBlock.d.ts +3 -13
  326. package/dist/components/blocks/GalleryBlock.js +35 -35
  327. package/dist/components/blocks/HeaderBlock.d.ts +3 -14
  328. package/dist/components/blocks/HeaderBlock.js +35 -34
  329. package/dist/components/blocks/HeatmapChartBlock.d.ts +3 -15
  330. package/dist/components/blocks/HeatmapChartBlock.js +2 -2
  331. package/dist/components/blocks/HeroBlock.d.ts +4 -2
  332. package/dist/components/blocks/HeroBlock.js +36 -36
  333. package/dist/components/blocks/IntegrationsBlock.d.ts +3 -15
  334. package/dist/components/blocks/IntegrationsBlock.js +33 -33
  335. package/dist/components/blocks/InteractiveAreaChartBlock.d.ts +3 -21
  336. package/dist/components/blocks/InteractiveAreaChartBlock.js +33 -33
  337. package/dist/components/blocks/LoginBlock.d.ts +3 -41
  338. package/dist/components/blocks/LoginBlock.js +2 -2
  339. package/dist/components/blocks/LogoCloud.d.ts +3 -12
  340. package/dist/components/blocks/LogoCloud.js +6 -2
  341. package/dist/components/blocks/NewsletterBlock.d.ts +1 -8
  342. package/dist/components/blocks/NewsletterBlock.js +3 -3
  343. package/dist/components/blocks/NotFoundBlock.d.ts +3 -9
  344. package/dist/components/blocks/NotFoundBlock.js +36 -36
  345. package/dist/components/blocks/OTPBlock.d.ts +3 -10
  346. package/dist/components/blocks/OTPBlock.js +35 -33
  347. package/dist/components/blocks/OnboardingBlock.d.ts +1 -14
  348. package/dist/components/blocks/OnboardingBlock.js +34 -34
  349. package/dist/components/blocks/OnboardingFlowBlock.d.ts +3 -0
  350. package/dist/components/blocks/OnboardingFlowBlock.js +127 -0
  351. package/dist/components/blocks/PasswordRecoveryBlock.d.ts +1 -12
  352. package/dist/components/blocks/PasswordRecoveryBlock.js +3 -3
  353. package/dist/components/blocks/PricingBlock.d.ts +1 -19
  354. package/dist/components/blocks/PricingBlock.js +4 -4
  355. package/dist/components/blocks/ProcessFlowBlock.d.ts +3 -15
  356. package/dist/components/blocks/ProcessFlowBlock.js +2 -6
  357. package/dist/components/blocks/ROICalculatorBlock.d.ts +3 -0
  358. package/dist/components/blocks/{SavingsCalculatorBlock.js → ROICalculatorBlock.js} +4 -4
  359. package/dist/components/blocks/ResetPasswordBlock.d.ts +3 -9
  360. package/dist/components/blocks/ResetPasswordBlock.js +2 -2
  361. package/dist/components/blocks/SettingsNavBlock.d.ts +3 -0
  362. package/dist/components/blocks/{SettingsLayout.js → SettingsNavBlock.js} +39 -37
  363. package/dist/components/blocks/SolutionShowcaseBlock.d.ts +3 -17
  364. package/dist/components/blocks/SolutionShowcaseBlock.js +2 -2
  365. package/dist/components/blocks/StatsBlock.d.ts +3 -21
  366. package/dist/components/blocks/StatsBlock.js +3 -112
  367. package/dist/components/blocks/StatsMarketingBlock.d.ts +3 -14
  368. package/dist/components/blocks/StatsMarketingBlock.js +3 -3
  369. package/dist/components/blocks/TeamBlock.d.ts +3 -16
  370. package/dist/components/blocks/TeamBlock.js +1 -1
  371. package/dist/components/blocks/TestimonialsBlock.d.ts +6 -9
  372. package/dist/components/blocks/TestimonialsBlock.js +16 -3
  373. package/dist/components/blocks/TimezonePickerBlock.d.ts +3 -11
  374. package/dist/components/blocks/TimezonePickerBlock.js +35 -35
  375. package/dist/components/blocks/TwoFactorSetupBlock.d.ts +1 -12
  376. package/dist/components/blocks/TwoFactorSetupBlock.js +37 -37
  377. package/dist/components/blocks/UsageDonutBlock.d.ts +3 -16
  378. package/dist/components/blocks/UsageDonutBlock.js +2 -2
  379. package/dist/components/blocks/WizardBlock.d.ts +1 -15
  380. package/dist/components/blocks/WizardBlock.js +33 -33
  381. package/dist/components/blocks/user/InviteUserModal.d.ts +4 -4
  382. package/dist/components/blocks/user/InviteUserModal.js +34 -34
  383. package/dist/components/pages/settings/ProfilePage.d.ts +1 -0
  384. package/dist/components/pages/settings/TeamPage.d.ts +1 -0
  385. package/dist/components/ui/Accordion.js +31 -31
  386. package/dist/components/ui/AgentAvatar.js +2 -72
  387. package/dist/components/ui/AgentStatus.d.ts +1 -1
  388. package/dist/components/ui/AgentStatus.js +2 -71
  389. package/dist/components/ui/AgentTimeline.js +3 -97
  390. package/dist/components/ui/AlertDialog.js +3 -133
  391. package/dist/components/ui/AnnouncementBanner.js +4 -46
  392. package/dist/components/ui/ApprovalCard.js +5 -115
  393. package/dist/components/ui/AspectRatio.js +1 -5
  394. package/dist/components/ui/AvatarUpload.js +6 -119
  395. package/dist/components/ui/BentoGrid.js +4 -28
  396. package/dist/components/ui/Breadcrumb.js +31 -31
  397. package/dist/components/ui/ButtonGroup.js +2 -18
  398. package/dist/components/ui/Calendar.js +31 -31
  399. package/dist/components/ui/Card.js +1 -1
  400. package/dist/components/ui/Carousel.js +35 -247
  401. package/dist/components/ui/ChartCard.js +3 -3
  402. package/dist/components/ui/ChatActions.js +2 -2
  403. package/dist/components/ui/ChatGreeting.js +3 -77
  404. package/dist/components/ui/ChatMessage.d.ts +26 -5
  405. package/dist/components/ui/ChatMessage.js +3 -95
  406. package/dist/components/ui/ChatPromptInput.js +4 -191
  407. package/dist/components/ui/ChatResponse.js +2 -24
  408. package/dist/components/ui/ChatThinkingMessage.d.ts +25 -6
  409. package/dist/components/ui/ChatThinkingMessage.js +7 -53
  410. package/dist/components/ui/ChatToolCall.d.ts +4 -2
  411. package/dist/components/ui/ChatToolCall.js +13 -190
  412. package/dist/components/ui/CheckStatus.js +2 -57
  413. package/dist/components/ui/Checkbox.js +31 -31
  414. package/dist/components/ui/CheckoutForm.d.ts +3 -7
  415. package/dist/components/ui/CheckoutForm.js +35 -34
  416. package/dist/components/ui/CheckoutFormDemo.js +33 -33
  417. package/dist/components/ui/Combobox.d.ts +2 -1
  418. package/dist/components/ui/Combobox.js +38 -109
  419. package/dist/components/ui/Command.js +34 -34
  420. package/dist/components/ui/ConfettiBurst.js +3 -71
  421. package/dist/components/ui/ContextMenu.js +34 -215
  422. package/dist/components/ui/Conversation.js +35 -115
  423. package/dist/components/ui/DataTable.d.ts +2 -1
  424. package/dist/components/ui/DataTable.js +33 -33
  425. package/dist/components/ui/DatePicker.js +31 -31
  426. package/dist/components/ui/DateRangePicker.js +31 -31
  427. package/dist/components/ui/Dialog.js +33 -33
  428. package/dist/components/ui/DiffStat.js +2 -32
  429. package/dist/components/ui/Drawer.js +3 -116
  430. package/dist/components/ui/DropdownMenu.js +32 -32
  431. package/dist/components/ui/FileUpload.js +34 -171
  432. package/dist/components/ui/FloatingDock.js +3 -100
  433. package/dist/components/ui/FormWizard.d.ts +5 -13
  434. package/dist/components/ui/FormWizard.js +1 -1
  435. package/dist/components/ui/HandoffIndicator.js +4 -42
  436. package/dist/components/ui/HoverCard.js +2 -23
  437. package/dist/components/ui/InputGroup.js +2 -36
  438. package/dist/components/ui/InputOTP.js +31 -31
  439. package/dist/components/ui/Item.d.ts +1 -1
  440. package/dist/components/ui/Item.js +2 -176
  441. package/dist/components/ui/KanbanBoard.d.ts +2 -1
  442. package/dist/components/ui/KanbanBoard.js +2 -2
  443. package/dist/components/ui/Kbd.js +2 -17
  444. package/dist/components/ui/LanguageSwitcher.js +31 -31
  445. package/dist/components/ui/MagneticElement.js +3 -41
  446. package/dist/components/ui/MemoryInspector.js +3 -94
  447. package/dist/components/ui/Menubar.js +34 -257
  448. package/dist/components/ui/MetricCard.js +2 -2
  449. package/dist/components/ui/MouseGlow.d.ts +10 -0
  450. package/dist/components/ui/MouseGlow.js +3 -0
  451. package/dist/components/ui/{MouseEffect.d.ts → MouseSpotlight.d.ts} +0 -9
  452. package/dist/components/ui/{MouseEffect.js → MouseSpotlight.js} +1 -1
  453. package/dist/components/ui/MovingBorder.js +2 -40
  454. package/dist/components/ui/NavUser.d.ts +4 -0
  455. package/dist/components/{blocks → ui}/NavUser.js +37 -36
  456. package/dist/components/ui/NavigationMenu.js +34 -161
  457. package/dist/components/ui/NotificationCenter.js +34 -136
  458. package/dist/components/ui/Pagination.js +31 -31
  459. package/dist/components/ui/ProgressRing.js +4 -128
  460. package/dist/components/ui/PromoCard.js +4 -41
  461. package/dist/components/ui/RadioGroup.js +33 -69
  462. package/dist/components/ui/Resizable.js +34 -68
  463. package/dist/components/ui/Select.js +31 -31
  464. package/dist/components/ui/SettingsModal.js +41 -137
  465. package/dist/components/ui/ShaderBackground.js +4 -71
  466. package/dist/components/ui/Sheet.d.ts +2 -1
  467. package/dist/components/ui/Sheet.js +36 -32
  468. package/dist/components/ui/Sidebar.js +35 -34
  469. package/dist/components/ui/SourceCitation.js +3 -119
  470. package/dist/components/ui/SpringHover.js +3 -32
  471. package/dist/components/ui/StaggeredEntrance.js +2 -23
  472. package/dist/components/ui/StatusDot.d.ts +1 -1
  473. package/dist/components/ui/StyleToggle.js +1 -1
  474. package/dist/components/ui/SuccessCheck.js +3 -52
  475. package/dist/components/ui/Tabs.d.ts +5 -3
  476. package/dist/components/ui/Tabs.js +5 -1
  477. package/dist/components/ui/TagInput.js +35 -132
  478. package/dist/components/ui/ThemeToggle.d.ts +2 -1
  479. package/dist/components/ui/ThemeToggle.js +36 -66
  480. package/dist/components/ui/TiltCard.js +3 -48
  481. package/dist/components/ui/ToggleGroup.js +3 -56
  482. package/dist/components/ui/TreeView.js +35 -216
  483. package/dist/components/ui/Typography.d.ts +1 -1
  484. package/dist/components/ui/Typography.js +1 -1
  485. package/dist/components/ui/VoiceAgentCard.d.ts +9 -0
  486. package/dist/components/{blocks → ui}/VoiceAgentCard.js +2 -2
  487. package/dist/components/ui/WorkspaceSwitcherBlock.d.ts +3 -0
  488. package/dist/components/{blocks → ui}/WorkspaceSwitcherBlock.js +36 -35
  489. package/dist/components/ui/charts/index.js +1 -1
  490. package/dist/components/ui/icons/index.js +31 -31
  491. package/dist/components/ui/text-effects/index.js +2 -2
  492. package/dist/index.js +39 -39
  493. package/dist/internal/local-image-assets.d.ts +1 -0
  494. package/dist/lib/json-render/app.d.ts +11 -0
  495. package/dist/lib/json-render/app.js +7 -0
  496. package/dist/lib/json-render/catalog.d.ts +1154 -0
  497. package/dist/lib/json-render/catalog.js +23 -0
  498. package/dist/lib/json-render/registry.d.ts +1 -0
  499. package/dist/lib/json-render/registry.js +58 -0
  500. package/dist/lib/json-render/showcase-spec.d.ts +3 -0
  501. package/dist/lib/json-render/showcase-spec.js +2 -0
  502. package/dist/lib/react-utils.d.ts +1 -1
  503. package/dist/lib/standalone-routes.d.ts +56 -0
  504. package/dist/lib/standalone-routes.js +1 -0
  505. package/dist/lib/tool-call-state-map.d.ts +2 -0
  506. package/dist/lib/tool-call-state-map.js +1 -0
  507. package/dist/messages/en.js +1 -1
  508. package/dist/messages/it.js +1 -1
  509. package/dist/test/PublicSeedTestProvider.js +2 -2
  510. package/eslint-rules/nadicode/__tests__/rules.test.js +3 -3
  511. package/eslint-rules/nadicode/data/catalog-names.json +149 -38
  512. package/eslint-rules/nadicode/rules/__tests__/no-diy-backdrop-blur.test.js +0 -5
  513. package/eslint-rules/nadicode/rules/__tests__/require-catalog-component.test.js +2 -2
  514. package/eslint-rules/nadicode/rules/no-diy-backdrop-blur.js +0 -1
  515. package/eslint-rules/nadicode/rules/no-unregistered-glass.js +4 -6
  516. package/eslint-rules/nadicode/rules/require-glass-on-floating-ui.js +0 -2
  517. package/eslint-rules/nadicode/rules/require-metadata-on-page.js +11 -0
  518. package/eslint-rules/nadicode/rules/require-scroll-containment-on-overlay.js +0 -2
  519. package/package.json +9 -678
  520. package/src/lib/tokens.config.js +5 -5
  521. package/dist/chunk-2HETVNKL.js +0 -30
  522. package/dist/chunk-2IMMY3XX.js +0 -56
  523. package/dist/chunk-2KTT2AYB.js +0 -101
  524. package/dist/chunk-2WV6RLAC.js +0 -169
  525. package/dist/chunk-2YZZJUJ6.js +0 -70
  526. package/dist/chunk-3QKI6RJX.js +0 -149
  527. package/dist/chunk-3RCDKGEU.js +0 -72
  528. package/dist/chunk-4IGBBIYW.js +0 -47
  529. package/dist/chunk-4QMIT6UE.js +0 -30
  530. package/dist/chunk-4WPZ6T7V.js +0 -186
  531. package/dist/chunk-557WPFT4.js +0 -138
  532. package/dist/chunk-5CXWLUM5.js +0 -75
  533. package/dist/chunk-5Y4BOIYO.js +0 -121
  534. package/dist/chunk-67IG5FCH.js +0 -167
  535. package/dist/chunk-6QNV75XU.js +0 -126
  536. package/dist/chunk-7ANMFY6R.js +0 -36
  537. package/dist/chunk-7LIF2WZX.js +0 -125
  538. package/dist/chunk-7TGOAMCR.js +0 -94
  539. package/dist/chunk-A4UWREN6.js +0 -47
  540. package/dist/chunk-AN5TW4AL.js +0 -50
  541. package/dist/chunk-BPULUURW.js +0 -269
  542. package/dist/chunk-BXH7TNB3.js +0 -28
  543. package/dist/chunk-CCUXLYZX.js +0 -33
  544. package/dist/chunk-CI2O2OSW.js +0 -168
  545. package/dist/chunk-CN3DMZOJ.js +0 -175
  546. package/dist/chunk-EYWOKTOY.js +0 -58
  547. package/dist/chunk-G2YPDV3F.js +0 -130
  548. package/dist/chunk-G4FB7QSY.js +0 -134
  549. package/dist/chunk-G6EQO6QD.js +0 -165
  550. package/dist/chunk-GUSLJ3AL.js +0 -115
  551. package/dist/chunk-GZ6VDBQG.js +0 -42
  552. package/dist/chunk-I66XWYSS.js +0 -117
  553. package/dist/chunk-ILFUTPHO.js +0 -32
  554. package/dist/chunk-JQFECS4H.js +0 -52
  555. package/dist/chunk-K5JBAA4S.js +0 -147
  556. package/dist/chunk-KCOMDSQ4.js +0 -86
  557. package/dist/chunk-KQ672GKM.js +0 -114
  558. package/dist/chunk-L7XRBXDR.js +0 -30
  559. package/dist/chunk-LIJYUSSE.js +0 -152
  560. package/dist/chunk-LNVZNQCZ.js +0 -124
  561. package/dist/chunk-MLLNRFNW.js +0 -60
  562. package/dist/chunk-MO4BC6JT.js +0 -83
  563. package/dist/chunk-NOQKH3IZ.js +0 -150
  564. package/dist/chunk-OXEVIO5Z.js +0 -30
  565. package/dist/chunk-P3IWXUMH.js +0 -60
  566. package/dist/chunk-QLOLLRTD.js +0 -60
  567. package/dist/chunk-QOHUG6UP.js +0 -145
  568. package/dist/chunk-R3OWXU5R.js +0 -40
  569. package/dist/chunk-SBC32M5H.js +0 -164
  570. package/dist/chunk-SNSFT4EZ.js +0 -96
  571. package/dist/chunk-UO5DYAP7.js +0 -35
  572. package/dist/chunk-UWLSJLKT.js +0 -147
  573. package/dist/chunk-V3FMLBOA.js +0 -105
  574. package/dist/chunk-YCSEV2GM.js +0 -159
  575. package/dist/chunk-YVS2TJ7I.js +0 -32
  576. package/dist/chunk-ZBQLUB3B.js +0 -110
  577. package/dist/chunk-ZYWO77BI.js +0 -120
  578. package/dist/components/blocks/AudioVisualizerBlock.d.ts +0 -6
  579. package/dist/components/blocks/AudioVisualizerBlock.js +0 -3
  580. package/dist/components/blocks/BarChartBlock.d.ts +0 -15
  581. package/dist/components/blocks/BarChartBlock.js +0 -10
  582. package/dist/components/blocks/EmailVerifiedBlock.d.ts +0 -10
  583. package/dist/components/blocks/FeatureGridBlock.d.ts +0 -14
  584. package/dist/components/blocks/FeatureGridBlock.js +0 -12
  585. package/dist/components/blocks/ForgotPasswordBlock.d.ts +0 -14
  586. package/dist/components/blocks/ForgotPasswordBlock.js +0 -15
  587. package/dist/components/blocks/HeroSectionBlock.d.ts +0 -19
  588. package/dist/components/blocks/HeroSectionBlock.js +0 -139
  589. package/dist/components/blocks/KanbanDemoBlock.d.ts +0 -4
  590. package/dist/components/blocks/KanbanDemoBlock.js +0 -17
  591. package/dist/components/blocks/MagicLinkBlock.d.ts +0 -12
  592. package/dist/components/blocks/MagicLinkBlock.js +0 -18
  593. package/dist/components/blocks/NavUser.d.ts +0 -18
  594. package/dist/components/blocks/PasswordChangedBlock.d.ts +0 -10
  595. package/dist/components/blocks/PasswordChangedBlock.js +0 -10
  596. package/dist/components/blocks/PricingTableBlock.d.ts +0 -19
  597. package/dist/components/blocks/PricingTableBlock.js +0 -13
  598. package/dist/components/blocks/SavingsCalculatorBlock.d.ts +0 -30
  599. package/dist/components/blocks/SettingsLayout.d.ts +0 -16
  600. package/dist/components/blocks/SignUpBlock.d.ts +0 -11
  601. package/dist/components/blocks/SignUpBlock.js +0 -14
  602. package/dist/components/blocks/SocialProofBlock.d.ts +0 -19
  603. package/dist/components/blocks/TwoFactorChallengeBlock.d.ts +0 -12
  604. package/dist/components/blocks/VoiceAgentCard.d.ts +0 -19
  605. package/dist/components/blocks/WorkspaceSwitcherBlock.d.ts +0 -11
  606. package/dist/components/page-kits/AccountLockedPageKit.d.ts +0 -10
  607. package/dist/components/page-kits/AccountLockedPageKit.js +0 -11
  608. package/dist/components/page-kits/AgentsChatPageKit.d.ts +0 -46
  609. package/dist/components/page-kits/AgentsChatPageKit.js +0 -142
  610. package/dist/components/page-kits/AnalyticsPageKit.d.ts +0 -49
  611. package/dist/components/page-kits/AnalyticsPageKit.js +0 -139
  612. package/dist/components/page-kits/BlogContentPageKit.d.ts +0 -64
  613. package/dist/components/page-kits/BlogContentPageKit.js +0 -141
  614. package/dist/components/page-kits/CheckoutPageKit.d.ts +0 -36
  615. package/dist/components/page-kits/CheckoutPageKit.js +0 -135
  616. package/dist/components/page-kits/CompanySuitePageKit.d.ts +0 -25
  617. package/dist/components/page-kits/CompanySuitePageKit.js +0 -153
  618. package/dist/components/page-kits/CrudFormPageKit.d.ts +0 -54
  619. package/dist/components/page-kits/CrudFormPageKit.js +0 -138
  620. package/dist/components/page-kits/CrudListDetailPageKit.d.ts +0 -70
  621. package/dist/components/page-kits/CrudListDetailPageKit.js +0 -138
  622. package/dist/components/page-kits/DashboardPageKit.d.ts +0 -39
  623. package/dist/components/page-kits/ErrorPageKit.d.ts +0 -22
  624. package/dist/components/page-kits/ErrorPageKit.js +0 -8
  625. package/dist/components/page-kits/KanbanBoardPageKit.d.ts +0 -31
  626. package/dist/components/page-kits/KanbanBoardPageKit.js +0 -143
  627. package/dist/components/page-kits/LandingPageKit.d.ts +0 -29
  628. package/dist/components/page-kits/LoginPageKit.d.ts +0 -16
  629. package/dist/components/page-kits/LoginPageKit.js +0 -14
  630. package/dist/components/page-kits/MarketingShellPageKit.d.ts +0 -21
  631. package/dist/components/page-kits/NavigationShellPageKit.d.ts +0 -41
  632. package/dist/components/page-kits/OnboardingPageKit.d.ts +0 -26
  633. package/dist/components/page-kits/PricingPageKit.d.ts +0 -41
  634. package/dist/components/page-kits/PricingPageKit.js +0 -153
  635. package/dist/components/page-kits/ProfileSettingsPageKit.d.ts +0 -50
  636. package/dist/components/page-kits/ProfileSettingsPageKit.js +0 -17
  637. package/dist/components/page-kits/RecoveryPageKit.d.ts +0 -17
  638. package/dist/components/page-kits/RecoveryPageKit.js +0 -19
  639. package/dist/components/page-kits/ResetPageKit.d.ts +0 -14
  640. package/dist/components/page-kits/ResetPageKit.js +0 -19
  641. package/dist/components/page-kits/ServiceSuitePageKit.d.ts +0 -25
  642. package/dist/components/page-kits/ServiceSuitePageKit.js +0 -156
  643. package/dist/components/page-kits/SettingsPageKit.d.ts +0 -27
  644. package/dist/components/page-kits/SettingsPageKit.js +0 -11
  645. package/dist/components/page-kits/SignupPageKit.d.ts +0 -15
  646. package/dist/components/page-kits/SignupPageKit.js +0 -14
  647. package/dist/components/page-kits/SuccessPageKit.d.ts +0 -15
  648. package/dist/components/page-kits/TeamSettingsPageKit.d.ts +0 -50
  649. package/dist/components/page-kits/TwoFactorPageKit.d.ts +0 -16
  650. package/dist/components/page-kits/VerifyEmailPageKit.d.ts +0 -15
  651. package/dist/components/page-kits/VoiceAgentsPageKit.d.ts +0 -35
  652. package/dist/components/page-kits/VoiceAgentsPageKit.js +0 -133
  653. package/dist/components/ui/AgentMessageBubble.d.ts +0 -37
  654. package/dist/components/ui/AgentMessageBubble.js +0 -115
  655. package/dist/components/ui/AnimatedDialog.d.ts +0 -30
  656. package/dist/components/ui/AnimatedDialog.js +0 -119
  657. package/dist/components/ui/AnimatedSheet.d.ts +0 -26
  658. package/dist/components/ui/AnimatedSheet.js +0 -264
  659. package/dist/components/ui/AnimatedTabs.d.ts +0 -16
  660. package/dist/components/ui/AuroraEffect.d.ts +0 -9
  661. package/dist/components/ui/AuroraEffect.js +0 -77
  662. package/dist/components/ui/ChatPromptInputAttachments.d.ts +0 -9
  663. package/dist/components/ui/ChatPromptInputAttachments.js +0 -145
  664. package/dist/components/ui/ConversationThread.d.ts +0 -27
  665. package/dist/components/ui/ConversationThread.js +0 -99
  666. package/dist/components/ui/PageTransition.d.ts +0 -9
  667. package/dist/components/ui/PageTransition.js +0 -56
  668. package/dist/components/ui/SearchCommand.d.ts +0 -33
  669. package/dist/components/ui/SearchCommand.js +0 -115
  670. package/dist/components/ui/ThinkingIndicator.d.ts +0 -14
  671. package/dist/components/ui/ThinkingIndicator.js +0 -9
  672. package/dist/components/ui/Toast.d.ts +0 -28
  673. package/dist/components/ui/Toast.js +0 -115
  674. package/dist/components/ui/Toaster.d.ts +0 -1
  675. package/dist/components/ui/Toaster.js +0 -136
  676. package/dist/components/ui/ToolCallCard.d.ts +0 -16
  677. package/dist/components/ui/ToolCallCard.js +0 -13
  678. package/dist/components/ui/VisuallyHidden.d.ts +0 -2
  679. package/dist/components/ui/VisuallyHidden.js +0 -8
  680. package/dist/hooks/use-toast.d.ts +0 -44
  681. package/dist/hooks/use-toast.js +0 -2
  682. package/dist/{chunk-CQEUNASC.js → chunk-ETS5O4ZQ.js} +1 -1
  683. package/dist/{chunk-C6MJQDPC.js → chunk-KHLMOBAU.js} +1 -1
  684. package/dist/{chunk-M4XKO45H.js → chunk-MPVYXUOD.js} +8 -8
  685. package/dist/{chunk-EEL4RAPC.js → chunk-V4NBPGED.js} +8 -8
@@ -1,6 +1,6 @@
1
1
  import { useIsMobile } from './chunk-C4SNHMYC.js';
2
2
  import { StatusDot } from './chunk-B5QL76GA.js';
3
- import { Sheet, SheetContent } from './chunk-HOWTYZL5.js';
3
+ import { Sheet, SheetContent } from './chunk-KPO4PD6C.js';
4
4
  import { Separator } from './chunk-CUZJIDU7.js';
5
5
  import { Input } from './chunk-AP3XXYAY.js';
6
6
  import { Skeleton } from './chunk-RASEB2XI.js';
@@ -0,0 +1,78 @@
1
+ import { AnimatedGradientText } from './chunk-XZ3A33GP.js';
2
+ import { Typography } from './chunk-Q7PCHHVJ.js';
3
+ import { MeteorShower } from './chunk-ZU55E4A7.js';
4
+ import { Heading } from './chunk-UXX6HHPS.js';
5
+ import { Button } from './chunk-7KIDDF3I.js';
6
+ import { ArrowLeftIcon } from './chunk-74RKVIBV.js';
7
+ import { cn } from './chunk-QYZT24TS.js';
8
+ import { jsxs, jsx } from 'react/jsx-runtime';
9
+
10
+ function variantLabel(variant) {
11
+ switch (variant) {
12
+ case "not-found":
13
+ return "Not found";
14
+ case "server-error":
15
+ return "Server error";
16
+ case "generic-fallback":
17
+ return "Fallback";
18
+ default:
19
+ return "Page not found";
20
+ }
21
+ }
22
+ function defaultTitle(variant) {
23
+ switch (variant) {
24
+ case "server-error":
25
+ return "500";
26
+ case "generic-fallback":
27
+ return "Error";
28
+ default:
29
+ return "404";
30
+ }
31
+ }
32
+ function NotFoundBlock({ props, emit }) {
33
+ const variant = props.variant ?? "not-found";
34
+ const title = props.title ?? defaultTitle(variant);
35
+ const description = props.description ?? "The page you're looking for doesn't exist or has been moved.";
36
+ const backLabel = props.backLabel ?? "Back home";
37
+ const metadata = props.metadata;
38
+ const supportContent = props.supportContent;
39
+ const className = props.className;
40
+ return /* @__PURE__ */ jsxs("div", { className: cn("relative flex min-h-[60vh] items-center justify-center overflow-hidden", className), children: [
41
+ /* @__PURE__ */ jsx(MeteorShower, { className: "absolute inset-0" }),
42
+ /* @__PURE__ */ jsx("div", { className: "relative z-10 mx-auto max-w-md px-6 text-center", children: /* @__PURE__ */ jsxs("div", { className: "glass-panel rounded-2xl border border-border/50 p-10 shadow-2xl", children: [
43
+ /* @__PURE__ */ jsx(Typography, { variant: "small", className: "uppercase tracking-widest text-text-tertiary", children: variantLabel(variant) }),
44
+ /* @__PURE__ */ jsx(AnimatedGradientText, { className: "text-8xl font-semibold tracking-display sm:text-9xl", children: title }),
45
+ /* @__PURE__ */ jsx(Heading, { level: 3, size: "subsection", className: "mt-4 text-text-primary", children: description }),
46
+ metadata && metadata.length > 0 ? /* @__PURE__ */ jsx("div", { className: "mt-4 grid gap-2 rounded-md border border-border/70 bg-surface/40 p-3 text-sm text-left", children: metadata.map((entry) => /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-3", children: [
47
+ /* @__PURE__ */ jsx("span", { className: "text-text-secondary", children: entry.label }),
48
+ /* @__PURE__ */ jsx("span", { className: "font-medium text-text-primary", children: entry.value })
49
+ ] }, entry.label)) }) : null,
50
+ supportContent ? /* @__PURE__ */ jsx("div", { className: "mt-4 rounded-md border border-border/60 bg-surface/30 px-3 py-2 text-sm text-text-secondary text-left", children: supportContent }) : null,
51
+ /* @__PURE__ */ jsxs("div", { className: "mt-8 flex flex-col items-center gap-3 sm:flex-row sm:justify-center", children: [
52
+ /* @__PURE__ */ jsxs(
53
+ Button,
54
+ {
55
+ size: "lg",
56
+ variant: "accent",
57
+ onClick: () => emit("primaryAction"),
58
+ children: [
59
+ /* @__PURE__ */ jsx(ArrowLeftIcon, { size: 16, className: "mr-2" }),
60
+ backLabel
61
+ ]
62
+ }
63
+ ),
64
+ props.secondaryActionLabel ? /* @__PURE__ */ jsx(
65
+ Button,
66
+ {
67
+ size: "lg",
68
+ variant: "outline",
69
+ onClick: () => emit("secondaryAction"),
70
+ children: props.secondaryActionLabel
71
+ }
72
+ ) : null
73
+ ] })
74
+ ] }) })
75
+ ] });
76
+ }
77
+
78
+ export { NotFoundBlock };
@@ -0,0 +1,24 @@
1
+ import { cn } from './chunk-QYZT24TS.js';
2
+ import { Streamdown } from 'streamdown';
3
+ import { jsx } from 'react/jsx-runtime';
4
+
5
+ function ChatResponse({
6
+ children,
7
+ isStreaming = false,
8
+ className,
9
+ ref,
10
+ ...props
11
+ }) {
12
+ return /* @__PURE__ */ jsx("div", { ref, className: cn("prose prose-sm dark:prose-invert max-w-none [&>*:first-child]:mt-0 [&>*:last-child]:mb-0", className), children: /* @__PURE__ */ jsx(
13
+ Streamdown,
14
+ {
15
+ mode: isStreaming ? "streaming" : "static",
16
+ isAnimating: isStreaming,
17
+ parseIncompleteMarkdown: isStreaming,
18
+ ...props,
19
+ children
20
+ }
21
+ ) });
22
+ }
23
+
24
+ export { ChatResponse };
@@ -0,0 +1,184 @@
1
+ import { nn } from './chunk-2NMP3J5R.js';
2
+ import { TiltCard } from './chunk-ZLWEBAL6.js';
3
+ import { SpringHover } from './chunk-JUAOQFC3.js';
4
+ import { StaggerChildren } from './chunk-DQPK2XRL.js';
5
+ import { StaggeredEntrance } from './chunk-W7ZGCFTB.js';
6
+ import { ShaderBackground } from './chunk-5KQEGO3O.js';
7
+ import { ProgressiveBlur } from './chunk-3UJ3HJZ3.js';
8
+ import { MeteorShower } from './chunk-ZU55E4A7.js';
9
+ import { MouseGlow } from './chunk-MZGGA75L.js';
10
+ import { MovingBorder } from './chunk-QFXWI2WX.js';
11
+ import { MagneticElement } from './chunk-GQEB425G.js';
12
+ import { InfiniteSlider } from './chunk-IFIDWZ5M.js';
13
+ import { ConfettiBurst } from './chunk-G722PEFL.js';
14
+ import { MouseSpotlight } from './chunk-AU2Q7CXZ.js';
15
+ import { ScrollFadeIn } from './chunk-I23DDSU7.js';
16
+ import { AnimatedBackground } from './chunk-4GSFNJAJ.js';
17
+ import { jsx } from 'react/jsx-runtime';
18
+
19
+ var effectsComponents = {
20
+ AnimatedBackground: ({ props }) => {
21
+ return /* @__PURE__ */ jsx(AnimatedBackground, { className: nn(props.className) });
22
+ },
23
+ ConfettiBurst: ({ props }) => {
24
+ return /* @__PURE__ */ jsx(
25
+ ConfettiBurst,
26
+ {
27
+ count: nn(props.count),
28
+ spread: nn(props.spread),
29
+ trigger: nn(props.trigger),
30
+ className: nn(props.className)
31
+ }
32
+ );
33
+ },
34
+ InfiniteSlider: ({ props, children }) => {
35
+ return /* @__PURE__ */ jsx(
36
+ InfiniteSlider,
37
+ {
38
+ gap: nn(props.gap),
39
+ speed: nn(props.speed),
40
+ direction: nn(props.direction),
41
+ reverse: nn(props.reverse),
42
+ className: nn(props.className),
43
+ children
44
+ }
45
+ );
46
+ },
47
+ MeteorShower: ({ props }) => {
48
+ return /* @__PURE__ */ jsx(
49
+ MeteorShower,
50
+ {
51
+ count: nn(props.count),
52
+ className: nn(props.className)
53
+ }
54
+ );
55
+ },
56
+ MouseGlow: ({ props }) => {
57
+ return /* @__PURE__ */ jsx(
58
+ MouseGlow,
59
+ {
60
+ dotColor: nn(props.dotColor),
61
+ overlayColor: nn(props.overlayColor),
62
+ gap: nn(props.gap),
63
+ maskRadius: nn(props.maskRadius),
64
+ overlayRadius: nn(props.overlayRadius),
65
+ className: nn(props.className)
66
+ }
67
+ );
68
+ },
69
+ MouseSpotlight: ({ props, children }) => {
70
+ return /* @__PURE__ */ jsx(
71
+ MouseSpotlight,
72
+ {
73
+ color: nn(props.color),
74
+ size: nn(props.size),
75
+ className: nn(props.className),
76
+ children
77
+ }
78
+ );
79
+ },
80
+ ScrollFadeIn: ({ props, children }) => {
81
+ return /* @__PURE__ */ jsx(
82
+ ScrollFadeIn,
83
+ {
84
+ delay: nn(props.delay),
85
+ direction: nn(props.direction),
86
+ distance: nn(props.distance),
87
+ className: nn(props.className),
88
+ children
89
+ }
90
+ );
91
+ },
92
+ ShaderBackground: ({ props, children }) => {
93
+ return /* @__PURE__ */ jsx(
94
+ ShaderBackground,
95
+ {
96
+ shader: props.shader,
97
+ intent: nn(props.intent),
98
+ opacity: nn(props.opacity),
99
+ static: nn(props.static),
100
+ className: nn(props.className),
101
+ overrides: nn(props.overrides),
102
+ children
103
+ }
104
+ );
105
+ },
106
+ MagneticElement: ({ props, children }) => {
107
+ return /* @__PURE__ */ jsx(
108
+ MagneticElement,
109
+ {
110
+ strength: nn(props.strength),
111
+ className: nn(props.className),
112
+ children
113
+ }
114
+ );
115
+ },
116
+ MovingBorder: ({ props, children }) => {
117
+ return /* @__PURE__ */ jsx(
118
+ MovingBorder,
119
+ {
120
+ duration: nn(props.duration),
121
+ borderRadius: nn(props.borderRadius),
122
+ className: nn(props.className),
123
+ children
124
+ }
125
+ );
126
+ },
127
+ ProgressiveBlur: ({ props }) => {
128
+ return /* @__PURE__ */ jsx(
129
+ ProgressiveBlur,
130
+ {
131
+ direction: nn(props.direction),
132
+ blurIntensity: nn(props.blurIntensity),
133
+ className: nn(props.className)
134
+ }
135
+ );
136
+ },
137
+ SpringHover: ({ props, children }) => {
138
+ return /* @__PURE__ */ jsx(
139
+ SpringHover,
140
+ {
141
+ hoverScale: nn(props.hoverScale),
142
+ pressScale: nn(props.pressScale),
143
+ disabled: nn(props.disabled),
144
+ className: nn(props.className),
145
+ children
146
+ }
147
+ );
148
+ },
149
+ StaggerChildren: ({ props, children }) => {
150
+ return /* @__PURE__ */ jsx(
151
+ StaggerChildren,
152
+ {
153
+ staggerMs: nn(props.staggerMs),
154
+ direction: nn(props.direction),
155
+ distance: nn(props.distance),
156
+ once: nn(props.once),
157
+ className: nn(props.className),
158
+ children
159
+ }
160
+ );
161
+ },
162
+ StaggeredEntrance: ({ props, children }) => {
163
+ return /* @__PURE__ */ jsx(
164
+ StaggeredEntrance,
165
+ {
166
+ delayMs: nn(props.delayMs),
167
+ className: nn(props.className),
168
+ children
169
+ }
170
+ );
171
+ },
172
+ TiltCard: ({ props, children }) => {
173
+ return /* @__PURE__ */ jsx(
174
+ TiltCard,
175
+ {
176
+ maxTilt: nn(props.maxTilt),
177
+ className: nn(props.className),
178
+ children
179
+ }
180
+ );
181
+ }
182
+ };
183
+
184
+ export { effectsComponents };
@@ -0,0 +1,142 @@
1
+ import { FileIcon } from './chunk-5UZDOF6V.js';
2
+ import { UploadIcon } from './chunk-ONGJ7AC2.js';
3
+ import { XIcon } from './chunk-UIUMTURU.js';
4
+ import { cn } from './chunk-QYZT24TS.js';
5
+ import * as React from 'react';
6
+ import { cva } from 'class-variance-authority';
7
+ import { useTranslations } from 'next-intl';
8
+ import { jsxs, jsx } from 'react/jsx-runtime';
9
+
10
+ var fileUploadVariants = cva(
11
+ "relative flex flex-col items-center justify-center rounded-xl border-2 border-dashed transition-colors cursor-pointer",
12
+ {
13
+ variants: {
14
+ variant: {
15
+ default: "border-border bg-surface hover:border-accent/50 hover:bg-surface-hover",
16
+ active: "border-accent bg-accent/5",
17
+ error: "border-destructive bg-destructive/5"
18
+ },
19
+ size: {
20
+ sm: "p-4 gap-2",
21
+ default: "p-8 gap-4",
22
+ lg: "p-12 gap-4"
23
+ }
24
+ },
25
+ defaultVariants: {
26
+ variant: "default",
27
+ size: "default"
28
+ }
29
+ }
30
+ );
31
+ function formatFileSize(bytes) {
32
+ if (bytes < 1024) return `${bytes} B`;
33
+ if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
34
+ return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
35
+ }
36
+ var EMPTY_FILES = [];
37
+ function FileUpload({
38
+ className,
39
+ variant,
40
+ size,
41
+ accept,
42
+ multiple = false,
43
+ maxSize,
44
+ files = EMPTY_FILES,
45
+ onChange,
46
+ onRemove,
47
+ helperText,
48
+ disabled = false,
49
+ ref,
50
+ ...props
51
+ }) {
52
+ const t = useTranslations("components.fileUpload");
53
+ const [isDragOver, setIsDragOver] = React.useState(false);
54
+ const inputRef = React.useRef(null);
55
+ const handleFiles = (fileList) => {
56
+ if (!fileList || disabled) return;
57
+ const selectedFiles = Array.from(fileList);
58
+ onChange?.(selectedFiles);
59
+ };
60
+ const handleDragOver = (e) => {
61
+ e.preventDefault();
62
+ if (!disabled) setIsDragOver(true);
63
+ };
64
+ const handleDragLeave = () => setIsDragOver(false);
65
+ const handleDrop = (e) => {
66
+ e.preventDefault();
67
+ setIsDragOver(false);
68
+ handleFiles(e.dataTransfer.files);
69
+ };
70
+ const resolvedVariant = isDragOver ? "active" : variant;
71
+ return /* @__PURE__ */ jsxs("div", { ref, className: cn("space-y-4", className), ...props, children: [
72
+ /* @__PURE__ */ jsx(
73
+ "input",
74
+ {
75
+ ref: inputRef,
76
+ type: "file",
77
+ className: "hidden",
78
+ accept,
79
+ multiple,
80
+ onChange: (e) => handleFiles(e.target.files),
81
+ disabled,
82
+ "aria-label": t("uploadFiles"),
83
+ tabIndex: -1
84
+ }
85
+ ),
86
+ /* @__PURE__ */ jsxs(
87
+ "div",
88
+ {
89
+ className: cn(
90
+ fileUploadVariants({ variant: resolvedVariant, size }),
91
+ disabled && "opacity-50 cursor-not-allowed"
92
+ ),
93
+ onClick: () => !disabled && inputRef.current?.click(),
94
+ onDragOver: handleDragOver,
95
+ onDragLeave: handleDragLeave,
96
+ onDrop: handleDrop,
97
+ role: "button",
98
+ tabIndex: disabled ? -1 : 0,
99
+ "aria-label": t("uploadFiles"),
100
+ onKeyDown: (e) => {
101
+ if ((e.key === "Enter" || e.key === " ") && !disabled) {
102
+ e.preventDefault();
103
+ inputRef.current?.click();
104
+ }
105
+ },
106
+ children: [
107
+ /* @__PURE__ */ jsx(UploadIcon, { size: 24, className: "text-text-tertiary" }),
108
+ /* @__PURE__ */ jsxs("div", { className: "text-center", children: [
109
+ /* @__PURE__ */ jsx("p", { className: "text-sm text-text-primary", children: t("dragAndDrop") }),
110
+ !!helperText && /* @__PURE__ */ jsx("p", { className: "text-xs text-text-tertiary mt-1.5", children: helperText }),
111
+ !!maxSize && /* @__PURE__ */ jsx("p", { className: "text-xs text-text-tertiary mt-0.5", children: t("maxFileSize", { size: formatFileSize(maxSize) }) })
112
+ ] })
113
+ ]
114
+ }
115
+ ),
116
+ files.length > 0 && /* @__PURE__ */ jsx("ul", { className: "space-y-2", "aria-label": t("uploadedFiles"), children: files.map((file, index) => /* @__PURE__ */ jsxs(
117
+ "li",
118
+ {
119
+ className: "flex items-center gap-4 rounded-lg border border-border bg-surface p-2.5",
120
+ children: [
121
+ /* @__PURE__ */ jsx(FileIcon, { size: 16, className: "shrink-0 text-text-tertiary" }),
122
+ /* @__PURE__ */ jsxs("div", { className: "flex-1 min-w-0", children: [
123
+ /* @__PURE__ */ jsx("p", { className: "text-sm text-text-primary truncate", children: file.name }),
124
+ /* @__PURE__ */ jsx("p", { className: "text-xs text-text-tertiary", children: formatFileSize(file.size) })
125
+ ] }),
126
+ !!onRemove && /* @__PURE__ */ jsx(
127
+ "button",
128
+ {
129
+ onClick: () => onRemove(index),
130
+ className: "shrink-0 rounded p-1.5 text-text-tertiary hover:text-destructive hover:bg-destructive/10 transition-colors touch-target-44",
131
+ "aria-label": t("removeFile", { fileName: file.name }),
132
+ children: /* @__PURE__ */ jsx(XIcon, { size: 14 })
133
+ }
134
+ )
135
+ ]
136
+ },
137
+ `${file.name}-${index}`
138
+ )) })
139
+ ] });
140
+ }
141
+
142
+ export { FileUpload, fileUploadVariants };
@@ -0,0 +1,6 @@
1
+ import { allDefinitions } from './chunk-HMN4K4L6.js';
2
+
3
+ // src/catalog/catalog.ts
4
+ var seedComponentDefinitions = allDefinitions;
5
+
6
+ export { seedComponentDefinitions };
@@ -0,0 +1,153 @@
1
+ import { Typography } from './chunk-Q7PCHHVJ.js';
2
+ import { Card, CardHeader, CardTitle, CardContent } from './chunk-7UY24UWL.js';
3
+ import { Button } from './chunk-7KIDDF3I.js';
4
+ import { Badge } from './chunk-S4JAHKOP.js';
5
+ import { cn } from './chunk-QYZT24TS.js';
6
+ import { jsxs, jsx } from 'react/jsx-runtime';
7
+
8
+ var EMPTY_CATEGORIES = [];
9
+ var EMPTY_ARTICLES = [];
10
+ function BlogIndexBlock({
11
+ props,
12
+ emit
13
+ }) {
14
+ const categories = props.categories ?? EMPTY_CATEGORIES;
15
+ const articles = props.articles ?? EMPTY_ARTICLES;
16
+ const activeCategoryId = props.activeCategoryId ?? null;
17
+ const pagination = props.pagination;
18
+ const state = props.state ?? "has-data";
19
+ const emptyTitle = props.emptyTitle ?? "No content available";
20
+ const emptyDescription = props.emptyDescription ?? "Check back later for new articles.";
21
+ const className = props.className;
22
+ const isLoading = state === "loading";
23
+ const isEmpty = state === "empty" || (state === "filtered" || state === "has-data" || state === "paginated") && articles.length === 0;
24
+ return /* @__PURE__ */ jsxs("section", { "data-testid": "blog-index-block", className: cn("space-y-6", className), children: [
25
+ isLoading ? /* @__PURE__ */ jsx(
26
+ "div",
27
+ {
28
+ role: "status",
29
+ className: "rounded-md border border-border/70 bg-surface/70 px-4 py-3 text-sm text-text-secondary",
30
+ children: "Loading content..."
31
+ }
32
+ ) : null,
33
+ !isLoading && categories.length > 0 ? /* @__PURE__ */ jsxs(
34
+ "div",
35
+ {
36
+ "data-testid": "blog-category-controls",
37
+ className: "flex flex-wrap items-center gap-2",
38
+ children: [
39
+ /* @__PURE__ */ jsx(
40
+ Button,
41
+ {
42
+ type: "button",
43
+ variant: activeCategoryId === null ? "primary" : "outline",
44
+ size: "sm",
45
+ onClick: () => emit("categoryChange"),
46
+ children: "All"
47
+ }
48
+ ),
49
+ categories.map((category) => /* @__PURE__ */ jsxs(
50
+ Button,
51
+ {
52
+ type: "button",
53
+ variant: activeCategoryId === category.id ? "primary" : "outline",
54
+ size: "sm",
55
+ onClick: () => emit("categoryChange"),
56
+ children: [
57
+ category.label,
58
+ typeof category.count === "number" ? ` (${category.count})` : ""
59
+ ]
60
+ },
61
+ category.id
62
+ ))
63
+ ]
64
+ }
65
+ ) : null,
66
+ !isLoading && isEmpty ? /* @__PURE__ */ jsxs(Card, { "data-testid": "blog-empty-state", children: [
67
+ /* @__PURE__ */ jsx(CardHeader, { children: /* @__PURE__ */ jsx(CardTitle, { children: emptyTitle }) }),
68
+ /* @__PURE__ */ jsx(CardContent, { children: /* @__PURE__ */ jsx(Typography, { variant: "muted", children: emptyDescription }) })
69
+ ] }) : null,
70
+ !isLoading && !isEmpty ? /* @__PURE__ */ jsx("div", { className: "grid gap-4", children: articles.map((article) => /* @__PURE__ */ jsxs(Card, { children: [
71
+ /* @__PURE__ */ jsxs(CardHeader, { className: "space-y-3", children: [
72
+ /* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [
73
+ /* @__PURE__ */ jsx(Badge, { variant: "outline", children: article.category }),
74
+ article.readTimeLabel ? /* @__PURE__ */ jsx(
75
+ Typography,
76
+ {
77
+ variant: "small",
78
+ className: "text-text-tertiary",
79
+ children: article.readTimeLabel
80
+ }
81
+ ) : null
82
+ ] }),
83
+ /* @__PURE__ */ jsx(CardTitle, { children: article.title }),
84
+ /* @__PURE__ */ jsx(
85
+ Typography,
86
+ {
87
+ variant: "small",
88
+ className: "text-text-secondary",
89
+ children: article.excerpt
90
+ }
91
+ )
92
+ ] }),
93
+ /* @__PURE__ */ jsxs(CardContent, { className: "flex flex-wrap items-center justify-between gap-3", children: [
94
+ /* @__PURE__ */ jsxs(
95
+ Typography,
96
+ {
97
+ variant: "small",
98
+ className: "text-text-secondary",
99
+ children: [
100
+ article.authorName,
101
+ " \xB7 ",
102
+ article.publishedAt
103
+ ]
104
+ }
105
+ ),
106
+ /* @__PURE__ */ jsx(
107
+ Button,
108
+ {
109
+ type: "button",
110
+ variant: "outline",
111
+ size: "sm",
112
+ onClick: () => emit("articleOpen"),
113
+ children: "Open"
114
+ }
115
+ )
116
+ ] })
117
+ ] }, article.id)) }) : null,
118
+ !isLoading && pagination ? /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between gap-3", children: [
119
+ /* @__PURE__ */ jsxs(Typography, { variant: "small", className: "text-text-secondary", children: [
120
+ "Page ",
121
+ pagination.page,
122
+ " of ",
123
+ pagination.totalPages
124
+ ] }),
125
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
126
+ /* @__PURE__ */ jsx(
127
+ Button,
128
+ {
129
+ type: "button",
130
+ variant: "outline",
131
+ size: "sm",
132
+ disabled: pagination.page <= 1,
133
+ onClick: () => emit("pageChange"),
134
+ children: "Previous page"
135
+ }
136
+ ),
137
+ /* @__PURE__ */ jsx(
138
+ Button,
139
+ {
140
+ type: "button",
141
+ variant: "outline",
142
+ size: "sm",
143
+ disabled: pagination.page >= pagination.totalPages,
144
+ onClick: () => emit("pageChange"),
145
+ children: "Next page"
146
+ }
147
+ )
148
+ ] })
149
+ ] }) : null
150
+ ] });
151
+ }
152
+
153
+ export { BlogIndexBlock };
@@ -0,0 +1,82 @@
1
+ import { nn } from './chunk-2NMP3J5R.js';
2
+ import { Conversation, ConversationContent } from './chunk-KXZP6XI2.js';
3
+ import { ChatResponse } from './chunk-4EOX2S37.js';
4
+ import { ChatToolCall, ChatToolCallHeader, ChatToolCallContent } from './chunk-L2IRYY6K.js';
5
+ import { ChatGreeting } from './chunk-MB75U2OV.js';
6
+ import { ChatMessage, ChatMessageContent } from './chunk-4ACR6NGQ.js';
7
+ import { ChatPromptInput, ChatPromptInputTextarea, ChatPromptInputActions, ChatPromptInputSubmit } from './chunk-SEJXMNMK.js';
8
+ import { jsx, jsxs } from 'react/jsx-runtime';
9
+
10
+ var chatComponents = {
11
+ ChatMessage: ({ props, children }) => {
12
+ return /* @__PURE__ */ jsx(ChatMessage, { role: props.role, children: /* @__PURE__ */ jsx(
13
+ ChatMessageContent,
14
+ {
15
+ isStreaming: nn(props.isStreaming),
16
+ status: nn(props.status),
17
+ children
18
+ }
19
+ ) });
20
+ },
21
+ ChatPromptInput: ({ props, emit }) => {
22
+ return /* @__PURE__ */ jsxs(
23
+ ChatPromptInput,
24
+ {
25
+ status: props.status,
26
+ onSubmit: () => emit("submit"),
27
+ onStop: () => emit("stop"),
28
+ className: nn(props.className),
29
+ children: [
30
+ /* @__PURE__ */ jsx(ChatPromptInputTextarea, { placeholder: nn(props.placeholder) }),
31
+ /* @__PURE__ */ jsx(ChatPromptInputActions, { children: /* @__PURE__ */ jsx(ChatPromptInputSubmit, {}) })
32
+ ]
33
+ }
34
+ );
35
+ },
36
+ Conversation: ({ props, children }) => {
37
+ return /* @__PURE__ */ jsx(Conversation, { className: nn(props.className), children: /* @__PURE__ */ jsx(ConversationContent, { children }) });
38
+ },
39
+ ChatToolCall: ({ props, children }) => {
40
+ return /* @__PURE__ */ jsxs(
41
+ ChatToolCall,
42
+ {
43
+ state: props.state,
44
+ defaultOpen: true,
45
+ className: nn(props.className),
46
+ children: [
47
+ /* @__PURE__ */ jsx(
48
+ ChatToolCallHeader,
49
+ {
50
+ name: nn(props.name),
51
+ summary: nn(props.summary),
52
+ duration: nn(props.duration)
53
+ }
54
+ ),
55
+ /* @__PURE__ */ jsx(ChatToolCallContent, { children })
56
+ ]
57
+ }
58
+ );
59
+ },
60
+ ChatGreeting: ({ props }) => {
61
+ return /* @__PURE__ */ jsx(
62
+ ChatGreeting,
63
+ {
64
+ title: nn(props.title),
65
+ subtitle: nn(props.subtitle),
66
+ className: nn(props.className)
67
+ }
68
+ );
69
+ },
70
+ ChatResponse: ({ props }) => {
71
+ return /* @__PURE__ */ jsx(
72
+ ChatResponse,
73
+ {
74
+ isStreaming: nn(props.isStreaming),
75
+ className: nn(props.className),
76
+ children: props.content
77
+ }
78
+ );
79
+ }
80
+ };
81
+
82
+ export { chatComponents };