@vadimcomanescu/nadicode-design-system 4.0.11 → 5.0.1
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.
- package/.agents/skills/seed/SKILL.md +82 -23
- package/.agents/skills/seed/references/animation.md +1 -1
- package/.agents/skills/seed/references/composition.md +1 -1
- package/.agents/skills/seed/references/glass-and-effects.md +16 -21
- package/.agents/skills/seed/references/patterns.md +47 -47
- package/.agents/skills/seed/references/state-machines.md +19 -18
- package/README.md +3 -1
- package/contracts/consumer-intent-map.json +2 -700
- package/contracts/message-catalog-contract.json +20 -20
- package/contracts/release-governance-baseline.json +13 -265
- package/dist/ProfilePage-KJVA3ZQ5.js +87 -0
- package/dist/TeamPage-IYWL6N4I.js +479 -0
- package/dist/catalog/catalog.d.ts +4817 -1885
- package/dist/catalog/catalog.js +22 -2107
- package/dist/catalog/components.d.ts +233 -177
- package/dist/catalog/components.js +217 -288
- package/dist/catalog/definitions/action.d.ts +170 -0
- package/dist/catalog/definitions/action.js +1 -0
- package/dist/catalog/definitions/agent.d.ts +496 -0
- package/dist/catalog/definitions/agent.js +1 -0
- package/dist/catalog/definitions/blocks-agent.d.ts +358 -0
- package/dist/catalog/definitions/blocks-agent.js +1 -0
- package/dist/catalog/definitions/blocks-auth.d.ts +195 -0
- package/dist/catalog/definitions/blocks-auth.js +1 -0
- package/dist/catalog/definitions/blocks-content.d.ts +513 -0
- package/dist/catalog/definitions/blocks-content.js +2 -0
- package/dist/catalog/definitions/blocks-crud.d.ts +505 -0
- package/dist/catalog/definitions/blocks-crud.js +1 -0
- package/dist/catalog/definitions/blocks-data.d.ts +311 -0
- package/dist/catalog/definitions/blocks-data.js +2 -0
- package/dist/catalog/definitions/blocks-marketing.d.ts +389 -0
- package/dist/catalog/definitions/blocks-marketing.js +1 -0
- package/dist/catalog/definitions/blocks-misc.d.ts +108 -0
- package/dist/catalog/definitions/blocks-misc.js +1 -0
- package/dist/catalog/definitions/chart.d.ts +293 -0
- package/dist/catalog/definitions/chart.js +2 -0
- package/dist/catalog/definitions/chat.d.ts +107 -0
- package/dist/catalog/definitions/chat.js +1 -0
- package/dist/catalog/definitions/display.d.ts +575 -0
- package/dist/catalog/definitions/display.js +2 -0
- package/dist/catalog/definitions/effects.d.ts +267 -0
- package/dist/catalog/definitions/effects.js +1 -0
- package/dist/catalog/definitions/form.d.ts +413 -0
- package/dist/catalog/definitions/form.js +2 -0
- package/dist/catalog/definitions/index.d.ts +5324 -0
- package/dist/catalog/definitions/index.js +21 -0
- package/dist/catalog/definitions/layout.d.ts +133 -0
- package/dist/catalog/definitions/layout.js +1 -0
- package/dist/catalog/definitions/navigation.d.ts +121 -0
- package/dist/catalog/definitions/navigation.js +1 -0
- package/dist/catalog/definitions/overlay.d.ts +183 -0
- package/dist/catalog/definitions/overlay.js +1 -0
- package/dist/catalog/definitions/shared.d.ts +31 -0
- package/dist/catalog/definitions/shared.js +1 -0
- package/dist/catalog/definitions/text-effects.d.ts +204 -0
- package/dist/catalog/definitions/text-effects.js +1 -0
- package/dist/catalog/definitions/text.d.ts +38 -0
- package/dist/catalog/definitions/text.js +1 -0
- package/dist/catalog/primitives/action.d.ts +12 -0
- package/dist/{components/ui/AnimatedDialog.js → catalog/primitives/action.js} +42 -33
- package/dist/catalog/primitives/agent.d.ts +18 -0
- package/dist/catalog/primitives/agent.js +32 -0
- package/dist/catalog/primitives/chart.d.ts +12 -0
- package/dist/catalog/primitives/chart.js +17 -0
- package/dist/catalog/primitives/chat.d.ts +10 -0
- package/dist/{components/page-kits/TwoFactorPageKit.js → catalog/primitives/chat.js} +42 -44
- package/dist/catalog/primitives/display.d.ts +34 -0
- package/dist/{components/page-kits/TeamSettingsPageKit.js → catalog/primitives/display.js} +70 -47
- package/dist/catalog/primitives/effects.d.ts +19 -0
- package/dist/catalog/primitives/effects.js +25 -0
- package/dist/catalog/primitives/form.d.ts +22 -0
- package/dist/{components/page-kits/OnboardingPageKit.js → catalog/primitives/form.js} +51 -47
- package/dist/catalog/primitives/index.d.ts +137 -0
- package/dist/{components/page-kits/LandingPageKit.js → catalog/primitives/index.js} +170 -57
- package/dist/catalog/primitives/layout.d.ts +14 -0
- package/dist/{components/blocks/TwoFactorChallengeBlock.js → catalog/primitives/layout.js} +42 -34
- package/dist/catalog/primitives/navigation.d.ts +10 -0
- package/dist/{components/page-kits/NavigationShellPageKit.js → catalog/primitives/navigation.js} +41 -37
- package/dist/catalog/primitives/overlay.d.ts +12 -0
- package/dist/catalog/primitives/overlay.js +130 -0
- package/dist/catalog/primitives/text-effects.d.ts +13 -0
- package/dist/{components/blocks/SocialProofBlock.js → catalog/primitives/text-effects.js} +4 -11
- package/dist/catalog/primitives/text.d.ts +7 -0
- package/dist/catalog/primitives/text.js +7 -0
- package/dist/catalog/primitives/utils.d.ts +8 -0
- package/dist/catalog/primitives/utils.js +1 -0
- package/dist/chunk-2LBEV4YF.js +128 -0
- package/dist/chunk-2NMP3J5R.js +6 -0
- package/dist/chunk-33UWVOQ6.js +227 -0
- package/dist/chunk-34MKVVGB.js +176 -0
- package/dist/{chunk-KFL4YCMI.js → chunk-37LY27CX.js} +1 -1
- package/dist/{chunk-LPED36AD.js → chunk-3BGWXRQC.js} +6 -8
- package/dist/{chunk-I2ZI5RUM.js → chunk-3FJG5MAT.js} +18 -12
- package/dist/chunk-3LROWCZE.js +464 -0
- package/dist/chunk-3QMHVXSQ.js +258 -0
- package/dist/chunk-44NVO477.js +46 -0
- package/dist/{chunk-FF3XUIZO.js → chunk-4DWRAIM2.js} +1 -1
- package/dist/chunk-4EHXVFQY.js +78 -0
- package/dist/chunk-4EOX2S37.js +24 -0
- package/dist/chunk-4GLBFZVI.js +184 -0
- package/dist/chunk-4GQ5EMWR.js +142 -0
- package/dist/chunk-4ZST7OY5.js +153 -0
- package/dist/chunk-5B3GLRX3.js +139 -0
- package/dist/chunk-5KQEGO3O.js +71 -0
- package/dist/{chunk-N3IZNRY2.js → chunk-5RBO2IMZ.js} +17 -20
- package/dist/chunk-5XDYCBR6.js +345 -0
- package/dist/chunk-5ZC3RHXB.js +72 -0
- package/dist/chunk-65CUE2WL.js +257 -0
- package/dist/{chunk-HQKORL27.js → chunk-6LD76RMU.js} +9 -12
- package/dist/{chunk-L3WRHSHM.js → chunk-6NL36QN3.js} +9 -8
- package/dist/chunk-6NND57T2.js +79 -0
- package/dist/{chunk-TBJPLMUE.js → chunk-6OBT3A5O.js} +6 -9
- package/dist/{chunk-4INNXURW.js → chunk-767GZSNJ.js} +6 -9
- package/dist/{chunk-2S4727W3.js → chunk-7AUNUDHM.js} +20 -16
- package/dist/chunk-7IVXTSZK.js +185 -0
- package/dist/chunk-7LYRUSWM.js +77 -0
- package/dist/{chunk-UGIHLU2V.js → chunk-7OOO22KB.js} +10 -15
- package/dist/chunk-7PTI46BS.js +119 -0
- package/dist/chunk-7SOMHO2L.js +181 -0
- package/dist/chunk-7U7XFIP6.js +17 -0
- package/dist/chunk-7X3GXC7C.js +52 -0
- package/dist/chunk-A4QNTJUR.js +292 -0
- package/dist/chunk-A4TQNK7R.js +58 -0
- package/dist/chunk-AP5SGSN7.js +186 -0
- package/dist/chunk-AU2Q7CXZ.js +45 -0
- package/dist/{chunk-326EZJLO.js → chunk-B4373MDA.js} +39 -27
- package/dist/{chunk-BG26NCUY.js → chunk-B4YCI5NM.js} +10 -19
- package/dist/chunk-BHPATKC7.js +116 -0
- package/dist/chunk-BJVCZI2B.js +29 -0
- package/dist/{chunk-TYP2MR3Q.js → chunk-BOWKE7OE.js} +21 -3
- package/dist/{chunk-JPL22322.js → chunk-BVXSAVKY.js} +6 -11
- package/dist/{chunk-3M3QV2EN.js → chunk-BY6LWOHB.js} +11 -9
- package/dist/{chunk-WOYBVPXK.js → chunk-CQ75K2DH.js} +8 -10
- package/dist/chunk-CTVV6JS6.js +6 -0
- package/dist/{chunk-OSNTB6RY.js → chunk-CY3PROVO.js} +88 -26
- package/dist/{chunk-ZURTIIST.js → chunk-D6MFOI3N.js} +20 -20
- package/dist/{chunk-WVHBPPI3.js → chunk-DGSNEGJP.js} +15 -17
- package/dist/{chunk-NTN5DWXV.js → chunk-DSNPOAE6.js} +7 -10
- package/dist/chunk-E4KUPYHE.js +75 -0
- package/dist/chunk-E5E3W2K4.js +6 -0
- package/dist/chunk-EJQ73FJ5.js +383 -0
- package/dist/chunk-F3QIIOOL.js +71 -0
- package/dist/chunk-FAQZPQF7.js +119 -0
- package/dist/chunk-FOXDDL2Z.js +41 -0
- package/dist/{chunk-ZI22L4DD.js → chunk-FSU7ZM5V.js} +13 -14
- package/dist/{chunk-JRLU2VSB.js → chunk-FX3GYS5O.js} +51 -42
- package/dist/chunk-G722PEFL.js +71 -0
- package/dist/chunk-GC7QKZQW.js +20 -0
- package/dist/{chunk-QLL3Z6U6.js → chunk-GE4WUAAE.js} +8 -8
- package/dist/chunk-GQEB425G.js +41 -0
- package/dist/{chunk-XTASI4IY.js → chunk-GVOWGEGX.js} +6 -13
- package/dist/chunk-GXUQFXT7.js +282 -0
- package/dist/chunk-GZ4DTYWM.js +36 -0
- package/dist/{chunk-X4HXVLER.js → chunk-H3KTAHJP.js} +33 -22
- package/dist/{chunk-7XRKBROR.js → chunk-HF2HNDE7.js} +22 -12
- package/dist/{chunk-2BXGWBD4.js → chunk-HX3VXWNJ.js} +20 -13
- package/dist/{chunk-NEECQ3IH.js → chunk-HZTWLK7C.js} +16 -18
- package/dist/chunk-IW36SVOH.js +425 -0
- package/dist/{chunk-F2TNOCXQ.js → chunk-IYK2ABFE.js} +25 -14
- package/dist/{chunk-WSBLCWY7.js → chunk-IZ7A62GI.js} +7 -6
- package/dist/chunk-JDHD4L6N.js +31 -0
- package/dist/chunk-JDLCIPSC.js +18 -0
- package/dist/{chunk-4R7DT2NJ.js → chunk-JPA45CDE.js} +67 -42
- package/dist/chunk-JUAOQFC3.js +32 -0
- package/dist/{chunk-3TZLHB2L.js → chunk-JVQQQS2M.js} +8 -13
- package/dist/chunk-KA44DDCB.js +42 -0
- package/dist/{chunk-O2W6C3K2.js → chunk-KANK5FAG.js} +65 -62
- package/dist/chunk-KKBTPNXT.js +110 -0
- package/dist/chunk-KL43KGCK.js +106 -0
- package/dist/chunk-KMTLCN6S.js +134 -0
- package/dist/{chunk-HOWTYZL5.js → chunk-KPO4PD6C.js} +78 -12
- package/dist/{chunk-4QOH76MI.js → chunk-KWIIKHIB.js} +10 -13
- package/dist/chunk-KXZP6XI2.js +84 -0
- package/dist/chunk-L2IRYY6K.js +230 -0
- package/dist/chunk-L4Q724G2.js +217 -0
- package/dist/chunk-L55GVKLY.js +149 -0
- package/dist/{chunk-DT6XGHB3.js → chunk-L77KWJJB.js} +29 -30
- package/dist/chunk-LH5KBOIA.js +228 -0
- package/dist/chunk-LO3MDQSJ.js +130 -0
- package/dist/chunk-LYI5YMC6.js +125 -0
- package/dist/chunk-MB75U2OV.js +77 -0
- package/dist/{components/ui/AnimatedTabs.js → chunk-MFZYC6QC.js} +41 -24
- package/dist/chunk-MOFWXBTK.js +112 -0
- package/dist/{chunk-X5AEOQAL.js → chunk-MZGGA75L.js} +1 -40
- package/dist/chunk-N334RMNE.js +39 -0
- package/dist/chunk-NBDUZA66.js +235 -0
- package/dist/{chunk-Q3CKH7RH.js → chunk-NDQO7AO6.js} +19 -18
- package/dist/chunk-NF2Y5ERJ.js +186 -0
- package/dist/chunk-NZXZ3PH2.js +56 -0
- package/dist/chunk-OB2KVO7O.js +23 -0
- package/dist/chunk-OLDUGLDM.js +114 -0
- package/dist/{chunk-K4QZ377F.js → chunk-OMGVZWRM.js} +25 -16
- package/dist/{chunk-UIZTZCAU.js → chunk-OS2BLQ2G.js} +9 -14
- package/dist/chunk-OUXJUUCB.js +131 -0
- package/dist/{chunk-QQOWC53X.js → chunk-OWWQP3YW.js} +4 -2
- package/dist/chunk-P5I63ETD.js +691 -0
- package/dist/chunk-P7JS4B7U.js +101 -0
- package/dist/{chunk-FODQX5Q5.js → chunk-PD6WW7E5.js} +8 -10
- package/dist/chunk-PIFVLS5S.js +142 -0
- package/dist/chunk-PJ7DVYWA.js +185 -0
- package/dist/{chunk-OTZIMMPV.js → chunk-PQBVNNEG.js} +18 -18
- package/dist/chunk-PQOL3E2V.js +30 -0
- package/dist/chunk-PY7WBWKH.js +37 -0
- package/dist/{chunk-ALFCQ35A.js → chunk-PYRHNONA.js} +25 -16
- package/dist/{chunk-TBXW5MDR.js → chunk-Q4CRHV5T.js} +25 -17
- package/dist/{chunk-PC6VMNDY.js → chunk-Q7PCHHVJ.js} +0 -8
- package/dist/{chunk-DITD5GBG.js → chunk-QCFDSOTV.js} +25 -39
- package/dist/chunk-QCL76CM6.js +92 -0
- package/dist/chunk-QFXWI2WX.js +40 -0
- package/dist/{chunk-B6HXF3HP.js → chunk-R4SBK6Y5.js} +19 -22
- package/dist/chunk-SEJXMNMK.js +191 -0
- package/dist/{chunk-E6YDGQ2O.js → chunk-SIXPY62Q.js} +17 -16
- package/dist/chunk-STKNMEJA.js +15 -0
- package/dist/chunk-STNVWBJH.js +41 -0
- package/dist/{chunk-73T44TBV.js → chunk-TL5UCQC3.js} +12 -16
- package/dist/chunk-TTA5TLNJ.js +97 -0
- package/dist/chunk-TTDKPZ75.js +45 -0
- package/dist/chunk-TV6CJ5NI.js +57 -0
- package/dist/chunk-TXRGQO5M.js +100 -0
- package/dist/chunk-U3QOFPHD.js +28 -0
- package/dist/{chunk-JXZ4HYXA.js → chunk-U43JTK45.js} +64 -60
- package/dist/{chunk-T5LXQNIP.js → chunk-U5QLJHYN.js} +29 -27
- package/dist/chunk-UAN2YEI5.js +140 -0
- package/dist/chunk-UB6XJTRU.js +45 -0
- package/dist/{chunk-YZK222HJ.js → chunk-UCFR7GLW.js} +14 -8
- package/dist/{chunk-K4ZPHSWL.js → chunk-UMEBNHKR.js} +25 -15
- package/dist/chunk-UPMSE6PQ.js +99 -0
- package/dist/chunk-UQB54LIA.js +228 -0
- package/dist/chunk-UT6MKK2S.js +115 -0
- package/dist/chunk-UXYLA2IV.js +124 -0
- package/dist/{chunk-PDSQC6VE.js → chunk-V5RSV4ZV.js} +5 -2
- package/dist/chunk-VQVWFCHF.js +44 -0
- package/dist/chunk-W4KI424V.js +380 -0
- package/dist/chunk-W7ZGCFTB.js +23 -0
- package/dist/chunk-WAIZR4CR.js +107 -0
- package/dist/chunk-WRBPEZFY.js +80 -0
- package/dist/chunk-XI775QZZ.js +275 -0
- package/dist/chunk-XLIFWBE7.js +117 -0
- package/dist/{chunk-J7F42IR3.js → chunk-XLN4NVKU.js} +20 -28
- package/dist/{chunk-BI3TXPMR.js → chunk-XMGWLDNG.js} +4 -6
- package/dist/chunk-XX4XJJSH.js +230 -0
- package/dist/chunk-XYMFKNKG.js +93 -0
- package/dist/chunk-XZDVTOXJ.js +94 -0
- package/dist/{chunk-OTFIAT6T.js → chunk-YB3J4ZRZ.js} +15 -6
- package/dist/chunk-YCS4MMC3.js +133 -0
- package/dist/chunk-YEAJLVGB.js +276 -0
- package/dist/chunk-YGDO5KDY.js +33 -0
- package/dist/chunk-YMAEXGD2.js +82 -0
- package/dist/chunk-YXRIXTXW.js +32 -0
- package/dist/chunk-ZFCSKVTZ.js +102 -0
- package/dist/{chunk-6Y4UFG7C.js → chunk-ZKA5X3E4.js} +17 -15
- package/dist/chunk-ZL6BPQNN.js +138 -0
- package/dist/chunk-ZLWEBAL6.js +48 -0
- package/dist/chunk-ZSU5ZI4O.js +32 -0
- package/dist/chunk-ZU7MDRCI.js +256 -0
- package/dist/components/blocks/AccountLockedBlock.d.ts +3 -11
- package/dist/components/blocks/AccountLockedBlock.js +2 -2
- package/dist/components/blocks/ActivityFeedBlock.d.ts +3 -14
- package/dist/components/blocks/ActivityFeedBlock.js +2 -2
- package/dist/components/blocks/AgentConversationBlock.d.ts +14 -22
- package/dist/components/blocks/AgentConversationBlock.js +10 -109
- package/dist/components/blocks/AgentProfileGridBlock.d.ts +3 -19
- package/dist/components/blocks/AgentProfileGridBlock.js +2 -2
- package/dist/components/blocks/AgentRunOverviewBlock.d.ts +3 -31
- package/dist/components/blocks/AgentRunOverviewBlock.js +2 -2
- package/dist/components/blocks/AgentWorkbenchBlock.d.ts +7 -26
- package/dist/components/blocks/AgentWorkbenchBlock.js +14 -112
- package/dist/components/blocks/ApiKeysBlock.d.ts +3 -18
- package/dist/components/blocks/ApiKeysBlock.js +35 -35
- package/dist/components/blocks/AuthLayout.d.ts +3 -17
- package/dist/components/blocks/AuthLayout.js +4 -4
- package/dist/components/blocks/AuthSuccessBlock.d.ts +3 -12
- package/dist/components/blocks/AuthSuccessBlock.js +6 -1
- package/dist/components/blocks/BannerBlock.d.ts +3 -9
- package/dist/components/blocks/BannerBlock.js +33 -33
- package/dist/components/blocks/BenchmarksBlock.d.ts +3 -20
- package/dist/components/blocks/BenchmarksBlock.js +1 -1
- package/dist/components/blocks/BlogDetailBlock.d.ts +3 -0
- package/dist/components/{page-kits/SuccessPageKit.js → blocks/BlogDetailBlock.js} +37 -34
- package/dist/components/blocks/BlogIndexBlock.d.ts +3 -0
- package/dist/components/blocks/{EmailVerifiedBlock.js → BlogIndexBlock.js} +3 -3
- package/dist/components/blocks/CallToActionBlock.d.ts +3 -13
- package/dist/components/blocks/CallToActionBlock.js +3 -3
- package/dist/components/blocks/ChangelogBlock.d.ts +3 -16
- package/dist/components/blocks/ChangelogBlock.js +33 -32
- package/dist/components/blocks/ChartBlock.d.ts +3 -16
- package/dist/components/blocks/ChartBlock.js +33 -33
- package/dist/components/blocks/ChartCollectionBlock.d.ts +3 -5
- package/dist/components/blocks/ChartCollectionBlock.js +3 -3
- package/dist/components/blocks/ChatLayout.d.ts +3 -17
- package/dist/components/blocks/ChatLayout.js +33 -33
- package/dist/components/blocks/CheckEmailBlock.d.ts +3 -9
- package/dist/components/blocks/CheckEmailBlock.js +1 -1
- package/dist/components/blocks/CodeBlock.d.ts +3 -7
- package/dist/components/blocks/CodeBlock.js +1 -1
- package/dist/components/blocks/CommandPaletteBlock.d.ts +3 -9
- package/dist/components/blocks/CommandPaletteBlock.js +35 -35
- package/dist/components/blocks/ComparisonBlock.d.ts +3 -13
- package/dist/components/blocks/ComparisonBlock.js +2 -2
- package/dist/components/blocks/ContactBlock.d.ts +3 -17
- package/dist/components/blocks/ContactBlock.js +3 -3
- package/dist/components/blocks/CreateBlock.d.ts +1 -16
- package/dist/components/blocks/CreateBlock.js +32 -33
- package/dist/components/blocks/CrudListBlock.d.ts +3 -0
- package/dist/components/{page-kits/VerifyEmailPageKit.js → blocks/CrudListBlock.js} +40 -33
- package/dist/components/blocks/DashboardBlock.d.ts +3 -0
- package/dist/components/{page-kits/DashboardPageKit.js → blocks/DashboardBlock.js} +47 -48
- package/dist/components/blocks/DataGridBlock.d.ts +3 -10
- package/dist/components/blocks/DataGridBlock.js +35 -36
- package/dist/components/blocks/DirectoryBlock.d.ts +3 -17
- package/dist/components/blocks/DirectoryBlock.js +38 -37
- package/dist/components/blocks/FAQBlock.d.ts +3 -12
- package/dist/components/blocks/FAQBlock.js +33 -33
- package/dist/components/blocks/FeatureBlock.d.ts +3 -23
- package/dist/components/blocks/FeatureBlock.js +32 -32
- package/dist/components/blocks/FooterBlock.d.ts +3 -19
- package/dist/components/blocks/FooterBlock.js +1 -1
- package/dist/components/blocks/FormFieldBlock.d.ts +3 -0
- package/dist/components/{page-kits/MarketingShellPageKit.js → blocks/FormFieldBlock.js} +38 -41
- package/dist/components/blocks/GalleryBlock.d.ts +3 -13
- package/dist/components/blocks/GalleryBlock.js +35 -35
- package/dist/components/blocks/HeaderBlock.d.ts +3 -14
- package/dist/components/blocks/HeaderBlock.js +35 -34
- package/dist/components/blocks/HeatmapChartBlock.d.ts +3 -15
- package/dist/components/blocks/HeatmapChartBlock.js +1 -1
- package/dist/components/blocks/HeroBlock.d.ts +1 -23
- package/dist/components/blocks/HeroBlock.js +35 -35
- package/dist/components/blocks/IntegrationsBlock.d.ts +3 -15
- package/dist/components/blocks/IntegrationsBlock.js +33 -33
- package/dist/components/blocks/InteractiveAreaChartBlock.d.ts +3 -21
- package/dist/components/blocks/InteractiveAreaChartBlock.js +32 -32
- package/dist/components/blocks/LoginBlock.d.ts +3 -41
- package/dist/components/blocks/LoginBlock.js +2 -2
- package/dist/components/blocks/LogoCloud.d.ts +3 -12
- package/dist/components/blocks/LogoCloud.js +6 -2
- package/dist/components/blocks/NewsletterBlock.d.ts +3 -8
- package/dist/components/blocks/NewsletterBlock.js +3 -3
- package/dist/components/blocks/NotFoundBlock.d.ts +3 -9
- package/dist/components/blocks/NotFoundBlock.js +36 -36
- package/dist/components/blocks/OTPBlock.d.ts +3 -10
- package/dist/components/blocks/OTPBlock.js +34 -32
- package/dist/components/blocks/OnboardingBlock.d.ts +1 -14
- package/dist/components/blocks/OnboardingBlock.js +33 -33
- package/dist/components/blocks/OnboardingFlowBlock.d.ts +3 -0
- package/dist/components/blocks/OnboardingFlowBlock.js +127 -0
- package/dist/components/blocks/PasswordRecoveryBlock.d.ts +1 -12
- package/dist/components/blocks/PasswordRecoveryBlock.js +2 -2
- package/dist/components/blocks/PricingBlock.d.ts +1 -19
- package/dist/components/blocks/PricingBlock.js +3 -3
- package/dist/components/blocks/ProcessFlowBlock.d.ts +3 -15
- package/dist/components/blocks/ProcessFlowBlock.js +2 -6
- package/dist/components/blocks/ROICalculatorBlock.d.ts +3 -0
- package/dist/components/blocks/{SavingsCalculatorBlock.js → ROICalculatorBlock.js} +3 -3
- package/dist/components/blocks/ResetPasswordBlock.d.ts +3 -9
- package/dist/components/blocks/ResetPasswordBlock.js +1 -1
- package/dist/components/blocks/SettingsNavBlock.d.ts +3 -0
- package/dist/components/blocks/{SettingsLayout.js → SettingsNavBlock.js} +39 -37
- package/dist/components/blocks/SolutionShowcaseBlock.d.ts +3 -17
- package/dist/components/blocks/SolutionShowcaseBlock.js +2 -2
- package/dist/components/blocks/StatsBlock.d.ts +3 -21
- package/dist/components/blocks/StatsBlock.js +1 -110
- package/dist/components/blocks/StatsMarketingBlock.d.ts +3 -14
- package/dist/components/blocks/StatsMarketingBlock.js +3 -3
- package/dist/components/blocks/TeamBlock.d.ts +3 -16
- package/dist/components/blocks/TeamBlock.js +1 -1
- package/dist/components/blocks/TestimonialsBlock.d.ts +6 -9
- package/dist/components/blocks/TestimonialsBlock.js +15 -2
- package/dist/components/blocks/TimezonePickerBlock.d.ts +3 -11
- package/dist/components/blocks/TimezonePickerBlock.js +35 -35
- package/dist/components/blocks/TwoFactorSetupBlock.d.ts +1 -12
- package/dist/components/blocks/TwoFactorSetupBlock.js +36 -36
- package/dist/components/blocks/UsageDonutBlock.d.ts +3 -16
- package/dist/components/blocks/UsageDonutBlock.js +1 -1
- package/dist/components/blocks/WizardBlock.d.ts +1 -15
- package/dist/components/blocks/WizardBlock.js +32 -32
- package/dist/components/blocks/user/InviteUserModal.d.ts +3 -20
- package/dist/components/blocks/user/InviteUserModal.js +34 -34
- package/dist/components/pages/settings/ProfilePage.d.ts +1 -0
- package/dist/components/pages/settings/TeamPage.d.ts +1 -0
- package/dist/components/ui/Accordion.js +31 -31
- package/dist/components/ui/AgentAvatar.js +2 -72
- package/dist/components/ui/AgentStatus.d.ts +1 -1
- package/dist/components/ui/AgentStatus.js +2 -71
- package/dist/components/ui/AgentTimeline.js +3 -97
- package/dist/components/ui/AlertDialog.js +3 -133
- package/dist/components/ui/AnnouncementBanner.js +4 -46
- package/dist/components/ui/ApprovalCard.js +5 -115
- package/dist/components/ui/AspectRatio.js +1 -5
- package/dist/components/ui/AvatarUpload.js +6 -119
- package/dist/components/ui/BentoGrid.js +4 -28
- package/dist/components/ui/Breadcrumb.js +31 -31
- package/dist/components/ui/ButtonGroup.js +2 -18
- package/dist/components/ui/Calendar.js +31 -31
- package/dist/components/ui/Carousel.js +35 -247
- package/dist/components/ui/ChartCard.js +2 -2
- package/dist/components/ui/ChatActions.js +2 -2
- package/dist/components/ui/ChatGreeting.js +3 -77
- package/dist/components/ui/ChatMessage.d.ts +28 -11
- package/dist/components/ui/ChatMessage.js +3 -95
- package/dist/components/ui/ChatPromptInput.js +4 -191
- package/dist/components/ui/ChatResponse.js +2 -24
- package/dist/components/ui/ChatThinkingMessage.d.ts +25 -6
- package/dist/components/ui/ChatThinkingMessage.js +7 -53
- package/dist/components/ui/ChatToolCall.d.ts +4 -2
- package/dist/components/ui/ChatToolCall.js +13 -190
- package/dist/components/ui/CheckStatus.js +2 -57
- package/dist/components/ui/Checkbox.js +31 -31
- package/dist/components/ui/CheckoutForm.d.ts +3 -7
- package/dist/components/ui/CheckoutForm.js +34 -33
- package/dist/components/ui/CheckoutFormDemo.js +32 -32
- package/dist/components/ui/Combobox.d.ts +2 -1
- package/dist/components/ui/Combobox.js +38 -109
- package/dist/components/ui/Command.js +34 -34
- package/dist/components/ui/ConfettiBurst.js +3 -71
- package/dist/components/ui/ContextMenu.js +34 -215
- package/dist/components/ui/Conversation.js +35 -115
- package/dist/components/ui/DataTable.d.ts +2 -1
- package/dist/components/ui/DataTable.js +33 -33
- package/dist/components/ui/DatePicker.js +31 -31
- package/dist/components/ui/DateRangePicker.js +31 -31
- package/dist/components/ui/Dialog.js +33 -33
- package/dist/components/ui/DiffStat.js +2 -32
- package/dist/components/ui/Drawer.js +3 -116
- package/dist/components/ui/DropdownMenu.js +32 -32
- package/dist/components/ui/FileUpload.js +34 -171
- package/dist/components/ui/FloatingDock.js +3 -100
- package/dist/components/ui/FormWizard.d.ts +5 -14
- package/dist/components/ui/FormWizard.js +1 -1
- package/dist/components/ui/HandoffIndicator.js +4 -42
- package/dist/components/ui/HoverCard.js +2 -23
- package/dist/components/ui/InputGroup.js +2 -36
- package/dist/components/ui/InputOTP.js +31 -31
- package/dist/components/ui/Item.d.ts +1 -1
- package/dist/components/ui/Item.js +2 -176
- package/dist/components/ui/KanbanBoard.d.ts +3 -2
- package/dist/components/ui/KanbanBoard.js +2 -2
- package/dist/components/ui/Kbd.js +2 -17
- package/dist/components/ui/LanguageSwitcher.js +31 -31
- package/dist/components/ui/MagneticElement.js +3 -41
- package/dist/components/ui/MemoryInspector.js +3 -94
- package/dist/components/ui/Menubar.js +34 -257
- package/dist/components/ui/MouseGlow.d.ts +10 -0
- package/dist/components/ui/MouseGlow.js +3 -0
- package/dist/components/ui/{MouseEffect.d.ts → MouseSpotlight.d.ts} +0 -9
- package/dist/components/ui/{MouseEffect.js → MouseSpotlight.js} +1 -1
- package/dist/components/ui/MovingBorder.js +2 -40
- package/dist/components/ui/NavUser.d.ts +4 -0
- package/dist/components/{blocks → ui}/NavUser.js +37 -36
- package/dist/components/ui/NavigationMenu.js +34 -161
- package/dist/components/ui/NotificationCenter.js +34 -136
- package/dist/components/ui/Pagination.js +31 -31
- package/dist/components/ui/ProgressRing.js +4 -128
- package/dist/components/ui/PromoCard.js +4 -41
- package/dist/components/ui/RadioGroup.js +33 -69
- package/dist/components/ui/Resizable.js +34 -68
- package/dist/components/ui/Select.js +31 -31
- package/dist/components/ui/SettingsModal.js +41 -137
- package/dist/components/ui/ShaderBackground.js +4 -71
- package/dist/components/ui/Sheet.d.ts +2 -1
- package/dist/components/ui/Sheet.js +36 -32
- package/dist/components/ui/Sidebar.js +35 -34
- package/dist/components/ui/SourceCitation.js +3 -119
- package/dist/components/ui/SpringHover.js +3 -32
- package/dist/components/ui/StaggeredEntrance.js +2 -23
- package/dist/components/ui/StatusDot.d.ts +1 -1
- package/dist/components/ui/StyleToggle.js +1 -1
- package/dist/components/ui/SuccessCheck.js +3 -52
- package/dist/components/ui/Tabs.d.ts +5 -3
- package/dist/components/ui/Tabs.js +5 -1
- package/dist/components/ui/TagInput.js +35 -132
- package/dist/components/ui/ThemeToggle.d.ts +2 -1
- package/dist/components/ui/ThemeToggle.js +36 -66
- package/dist/components/ui/TiltCard.js +3 -48
- package/dist/components/ui/ToggleGroup.js +3 -56
- package/dist/components/ui/TreeView.js +35 -216
- package/dist/components/ui/Typography.d.ts +1 -1
- package/dist/components/ui/Typography.js +1 -1
- package/dist/components/ui/VoiceAgentCard.d.ts +9 -0
- package/dist/components/{blocks → ui}/VoiceAgentCard.js +2 -2
- package/dist/components/ui/WorkspaceSwitcherBlock.d.ts +3 -0
- package/dist/components/{blocks → ui}/WorkspaceSwitcherBlock.js +36 -35
- package/dist/components/ui/charts/index.js +1 -1
- package/dist/components/ui/icons/index.js +31 -31
- package/dist/components/ui/text-effects/index.js +2 -2
- package/dist/index.js +0 -137
- package/dist/internal/local-image-assets.d.ts +1 -0
- package/dist/lib/json-render/app.d.ts +11 -0
- package/dist/lib/json-render/app.js +7 -0
- package/dist/lib/json-render/catalog.d.ts +1182 -0
- package/dist/lib/json-render/catalog.js +23 -0
- package/dist/lib/json-render/registry.d.ts +1 -0
- package/dist/lib/json-render/registry.js +58 -0
- package/dist/lib/json-render/showcase-spec.d.ts +3 -0
- package/dist/lib/json-render/showcase-spec.js +2 -0
- package/dist/lib/react-utils.d.ts +1 -1
- package/dist/lib/standalone-routes.d.ts +56 -0
- package/dist/lib/standalone-routes.js +1 -0
- package/dist/lib/tool-call-state-map.d.ts +2 -0
- package/dist/lib/tool-call-state-map.js +1 -0
- package/dist/lib-index.d.ts +6 -24
- package/dist/messages/en.js +1 -1
- package/dist/messages/it.js +1 -1
- package/dist/test/PublicSeedTestProvider.js +2 -2
- package/eslint-rules/nadicode/__tests__/rules.test.js +3 -3
- package/eslint-rules/nadicode/data/catalog-names.json +149 -38
- package/eslint-rules/nadicode/rules/__tests__/no-diy-backdrop-blur.test.js +0 -5
- package/eslint-rules/nadicode/rules/__tests__/require-catalog-component.test.js +2 -2
- package/eslint-rules/nadicode/rules/no-diy-backdrop-blur.js +0 -1
- package/eslint-rules/nadicode/rules/no-unregistered-glass.js +4 -6
- package/eslint-rules/nadicode/rules/require-glass-on-floating-ui.js +0 -2
- package/eslint-rules/nadicode/rules/require-metadata-on-page.js +11 -0
- package/eslint-rules/nadicode/rules/require-scroll-containment-on-overlay.js +0 -2
- package/package.json +9 -682
- package/dist/catalog/types.d.ts +0 -4
- package/dist/catalog/types.js +0 -1
- package/dist/chunk-23M6A7EW.js +0 -30
- package/dist/chunk-3A6CFUG4.js +0 -175
- package/dist/chunk-3UG7AY5B.js +0 -75
- package/dist/chunk-46MPJVJ6.js +0 -115
- package/dist/chunk-4IGBBIYW.js +0 -47
- package/dist/chunk-4JJARNWW.js +0 -138
- package/dist/chunk-4WPZ6T7V.js +0 -186
- package/dist/chunk-567EG267.js +0 -130
- package/dist/chunk-5DWVAAP2.js +0 -60
- package/dist/chunk-5USY2AY2.js +0 -72
- package/dist/chunk-5Y4BOIYO.js +0 -121
- package/dist/chunk-6CDHFSOH.js +0 -60
- package/dist/chunk-7IXYIUQ5.js +0 -114
- package/dist/chunk-7LIF2WZX.js +0 -125
- package/dist/chunk-AN5TW4AL.js +0 -50
- package/dist/chunk-BQLHU3KL.js +0 -96
- package/dist/chunk-CCUXLYZX.js +0 -33
- package/dist/chunk-CI2O2OSW.js +0 -168
- package/dist/chunk-E7RCIX5C.js +0 -150
- package/dist/chunk-EHIKO3CD.js +0 -169
- package/dist/chunk-EYWOKTOY.js +0 -58
- package/dist/chunk-FJP5SRCH.js +0 -40
- package/dist/chunk-G4FB7QSY.js +0 -134
- package/dist/chunk-GI6UL27V.js +0 -126
- package/dist/chunk-GICOWV5M.js +0 -30
- package/dist/chunk-I66XWYSS.js +0 -117
- package/dist/chunk-KA47SVMB.js +0 -149
- package/dist/chunk-KCOMDSQ4.js +0 -86
- package/dist/chunk-KKXYZASY.js +0 -94
- package/dist/chunk-LIJYUSSE.js +0 -152
- package/dist/chunk-LNVZNQCZ.js +0 -124
- package/dist/chunk-LPW5LWX7.js +0 -32
- package/dist/chunk-MX7GIO2A.js +0 -83
- package/dist/chunk-NBQKHIAP.js +0 -120
- package/dist/chunk-O3LHOHLI.js +0 -56
- package/dist/chunk-PYLBCISI.js +0 -165
- package/dist/chunk-PYTNUV2K.js +0 -30
- package/dist/chunk-QOHUG6UP.js +0 -145
- package/dist/chunk-R4CRWXEQ.js +0 -86
- package/dist/chunk-RNZM3QJX.js +0 -101
- package/dist/chunk-SBLQB3A2.js +0 -70
- package/dist/chunk-THN674BW.js +0 -269
- package/dist/chunk-TOLHBTIL.js +0 -30
- package/dist/chunk-UMYGE2DM.js +0 -47
- package/dist/chunk-UO5DYAP7.js +0 -35
- package/dist/chunk-UWLSJLKT.js +0 -147
- package/dist/chunk-V2ORH4K3.js +0 -167
- package/dist/chunk-V3FMLBOA.js +0 -105
- package/dist/chunk-VDP7SAKP.js +0 -164
- package/dist/chunk-XTZMFOHK.js +0 -52
- package/dist/chunk-YOGZZMQS.js +0 -60
- package/dist/chunk-YRQBSMGZ.js +0 -42
- package/dist/chunk-YVS2TJ7I.js +0 -32
- package/dist/chunk-YW2KJAC6.js +0 -159
- package/dist/chunk-Z6PIE2PZ.js +0 -36
- package/dist/chunk-ZBQLUB3B.js +0 -110
- package/dist/chunk-ZXGBPUSM.js +0 -28
- package/dist/components/blocks/AudioVisualizerBlock.d.ts +0 -6
- package/dist/components/blocks/AudioVisualizerBlock.js +0 -3
- package/dist/components/blocks/BarChartBlock.d.ts +0 -15
- package/dist/components/blocks/BarChartBlock.js +0 -10
- package/dist/components/blocks/EmailVerifiedBlock.d.ts +0 -10
- package/dist/components/blocks/FeatureGridBlock.d.ts +0 -14
- package/dist/components/blocks/FeatureGridBlock.js +0 -12
- package/dist/components/blocks/ForgotPasswordBlock.d.ts +0 -14
- package/dist/components/blocks/ForgotPasswordBlock.js +0 -15
- package/dist/components/blocks/HeroSectionBlock.d.ts +0 -19
- package/dist/components/blocks/HeroSectionBlock.js +0 -139
- package/dist/components/blocks/KanbanDemoBlock.d.ts +0 -4
- package/dist/components/blocks/KanbanDemoBlock.js +0 -17
- package/dist/components/blocks/MagicLinkBlock.d.ts +0 -12
- package/dist/components/blocks/MagicLinkBlock.js +0 -18
- package/dist/components/blocks/NavUser.d.ts +0 -18
- package/dist/components/blocks/PasswordChangedBlock.d.ts +0 -10
- package/dist/components/blocks/PasswordChangedBlock.js +0 -10
- package/dist/components/blocks/PricingTableBlock.d.ts +0 -19
- package/dist/components/blocks/PricingTableBlock.js +0 -13
- package/dist/components/blocks/SavingsCalculatorBlock.d.ts +0 -30
- package/dist/components/blocks/SettingsLayout.d.ts +0 -16
- package/dist/components/blocks/SignUpBlock.d.ts +0 -11
- package/dist/components/blocks/SignUpBlock.js +0 -14
- package/dist/components/blocks/SocialProofBlock.d.ts +0 -19
- package/dist/components/blocks/TwoFactorChallengeBlock.d.ts +0 -12
- package/dist/components/blocks/VoiceAgentCard.d.ts +0 -19
- package/dist/components/blocks/WorkspaceSwitcherBlock.d.ts +0 -11
- package/dist/components/page-kits/AccountLockedPageKit.d.ts +0 -10
- package/dist/components/page-kits/AccountLockedPageKit.js +0 -11
- package/dist/components/page-kits/AgentsChatPageKit.d.ts +0 -46
- package/dist/components/page-kits/AgentsChatPageKit.js +0 -142
- package/dist/components/page-kits/AnalyticsPageKit.d.ts +0 -49
- package/dist/components/page-kits/AnalyticsPageKit.js +0 -139
- package/dist/components/page-kits/BlogContentPageKit.d.ts +0 -64
- package/dist/components/page-kits/BlogContentPageKit.js +0 -141
- package/dist/components/page-kits/CheckoutPageKit.d.ts +0 -36
- package/dist/components/page-kits/CheckoutPageKit.js +0 -135
- package/dist/components/page-kits/CompanySuitePageKit.d.ts +0 -25
- package/dist/components/page-kits/CompanySuitePageKit.js +0 -153
- package/dist/components/page-kits/CrudFormPageKit.d.ts +0 -54
- package/dist/components/page-kits/CrudFormPageKit.js +0 -138
- package/dist/components/page-kits/CrudListDetailPageKit.d.ts +0 -70
- package/dist/components/page-kits/CrudListDetailPageKit.js +0 -138
- package/dist/components/page-kits/DashboardPageKit.d.ts +0 -39
- package/dist/components/page-kits/ErrorPageKit.d.ts +0 -22
- package/dist/components/page-kits/ErrorPageKit.js +0 -8
- package/dist/components/page-kits/KanbanBoardPageKit.d.ts +0 -31
- package/dist/components/page-kits/KanbanBoardPageKit.js +0 -143
- package/dist/components/page-kits/LandingPageKit.d.ts +0 -29
- package/dist/components/page-kits/LoginPageKit.d.ts +0 -16
- package/dist/components/page-kits/LoginPageKit.js +0 -14
- package/dist/components/page-kits/MarketingShellPageKit.d.ts +0 -21
- package/dist/components/page-kits/NavigationShellPageKit.d.ts +0 -41
- package/dist/components/page-kits/OnboardingPageKit.d.ts +0 -26
- package/dist/components/page-kits/PricingPageKit.d.ts +0 -41
- package/dist/components/page-kits/PricingPageKit.js +0 -153
- package/dist/components/page-kits/ProfileSettingsPageKit.d.ts +0 -50
- package/dist/components/page-kits/ProfileSettingsPageKit.js +0 -17
- package/dist/components/page-kits/RecoveryPageKit.d.ts +0 -17
- package/dist/components/page-kits/RecoveryPageKit.js +0 -19
- package/dist/components/page-kits/ResetPageKit.d.ts +0 -14
- package/dist/components/page-kits/ResetPageKit.js +0 -19
- package/dist/components/page-kits/ServiceSuitePageKit.d.ts +0 -25
- package/dist/components/page-kits/ServiceSuitePageKit.js +0 -156
- package/dist/components/page-kits/SettingsPageKit.d.ts +0 -27
- package/dist/components/page-kits/SettingsPageKit.js +0 -11
- package/dist/components/page-kits/SignupPageKit.d.ts +0 -15
- package/dist/components/page-kits/SignupPageKit.js +0 -14
- package/dist/components/page-kits/SuccessPageKit.d.ts +0 -15
- package/dist/components/page-kits/TeamSettingsPageKit.d.ts +0 -50
- package/dist/components/page-kits/TwoFactorPageKit.d.ts +0 -16
- package/dist/components/page-kits/VerifyEmailPageKit.d.ts +0 -15
- package/dist/components/page-kits/VoiceAgentsPageKit.d.ts +0 -35
- package/dist/components/page-kits/VoiceAgentsPageKit.js +0 -133
- package/dist/components/ui/AgentMessageBubble.d.ts +0 -37
- package/dist/components/ui/AgentMessageBubble.js +0 -115
- package/dist/components/ui/AnimatedDialog.d.ts +0 -30
- package/dist/components/ui/AnimatedSheet.d.ts +0 -26
- package/dist/components/ui/AnimatedSheet.js +0 -264
- package/dist/components/ui/AnimatedTabs.d.ts +0 -16
- package/dist/components/ui/AuroraEffect.d.ts +0 -9
- package/dist/components/ui/AuroraEffect.js +0 -77
- package/dist/components/ui/ChatPromptInputAttachments.d.ts +0 -9
- package/dist/components/ui/ChatPromptInputAttachments.js +0 -145
- package/dist/components/ui/ConversationThread.d.ts +0 -27
- package/dist/components/ui/ConversationThread.js +0 -99
- package/dist/components/ui/PageTransition.d.ts +0 -9
- package/dist/components/ui/PageTransition.js +0 -56
- package/dist/components/ui/SearchCommand.d.ts +0 -33
- package/dist/components/ui/SearchCommand.js +0 -115
- package/dist/components/ui/ThinkingIndicator.d.ts +0 -14
- package/dist/components/ui/ThinkingIndicator.js +0 -9
- package/dist/components/ui/Toast.d.ts +0 -28
- package/dist/components/ui/Toast.js +0 -115
- package/dist/components/ui/Toaster.d.ts +0 -1
- package/dist/components/ui/Toaster.js +0 -136
- package/dist/components/ui/ToolCallCard.d.ts +0 -16
- package/dist/components/ui/ToolCallCard.js +0 -13
- package/dist/components/ui/VisuallyHidden.d.ts +0 -2
- package/dist/components/ui/VisuallyHidden.js +0 -8
- package/dist/hooks/use-toast.d.ts +0 -44
- package/dist/hooks/use-toast.js +0 -2
- package/dist/{chunk-CQEUNASC.js → chunk-ETS5O4ZQ.js} +1 -1
- package/dist/{chunk-C6MJQDPC.js → chunk-KHLMOBAU.js} +1 -1
- package/dist/{chunk-M4XKO45H.js → chunk-MPVYXUOD.js} +8 -8
- package/dist/{chunk-HZPCTOQJ.js → chunk-TKT6WW4E.js} +1 -1
- package/dist/{chunk-EEL4RAPC.js → chunk-V4NBPGED.js} +8 -8
|
@@ -0,0 +1,425 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
|
|
3
|
+
// src/catalog/definitions/blocks-crud.ts
|
|
4
|
+
var blocksCrudDefinitions = {
|
|
5
|
+
ApiKeysBlock: {
|
|
6
|
+
props: z.object({
|
|
7
|
+
keys: z.array(
|
|
8
|
+
z.object({
|
|
9
|
+
id: z.string(),
|
|
10
|
+
name: z.string(),
|
|
11
|
+
prefix: z.string(),
|
|
12
|
+
createdAt: z.string(),
|
|
13
|
+
lastUsedAt: z.string().nullable(),
|
|
14
|
+
revokedAt: z.string().nullable()
|
|
15
|
+
})
|
|
16
|
+
).nullable(),
|
|
17
|
+
title: z.string().nullable(),
|
|
18
|
+
description: z.string().nullable(),
|
|
19
|
+
newKeyName: z.string().nullable()
|
|
20
|
+
}),
|
|
21
|
+
events: ["create", "revoke"],
|
|
22
|
+
description: "API key management block with table display, create dialog, copy-once flow, and revoke functionality.",
|
|
23
|
+
example: {
|
|
24
|
+
keys: [
|
|
25
|
+
{ id: "key_1", name: "Production API", prefix: "sk_live_7x...", createdAt: "2026-01-15T10:00:00Z", lastUsedAt: "2026-03-30T09:22:00Z", revokedAt: null },
|
|
26
|
+
{ id: "key_2", name: "Staging API", prefix: "sk_test_3m...", createdAt: "2026-02-20T14:00:00Z", lastUsedAt: null, revokedAt: "2026-03-01T08:00:00Z" }
|
|
27
|
+
],
|
|
28
|
+
title: "API Keys",
|
|
29
|
+
description: "Manage your API keys for programmatic access.",
|
|
30
|
+
newKeyName: null
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
CreateBlock: {
|
|
34
|
+
props: z.object({
|
|
35
|
+
title: z.string().nullable(),
|
|
36
|
+
description: z.string().nullable(),
|
|
37
|
+
submitLabel: z.string().nullable(),
|
|
38
|
+
username: z.string().nullable(),
|
|
39
|
+
email: z.string().nullable(),
|
|
40
|
+
bio: z.string().nullable()
|
|
41
|
+
}),
|
|
42
|
+
events: ["submit"],
|
|
43
|
+
description: "Profile creation form with username, email, and bio fields.",
|
|
44
|
+
example: { title: "Create Your Profile", description: "Tell us a bit about yourself to get started.", submitLabel: "Create Profile", username: null, email: null, bio: null }
|
|
45
|
+
},
|
|
46
|
+
CrudListBlock: {
|
|
47
|
+
props: z.object({
|
|
48
|
+
title: z.string().nullable(),
|
|
49
|
+
description: z.string().nullable(),
|
|
50
|
+
state: z.enum(["loading", "empty", "filtered", "selected-row", "error", "has-data"]).nullable(),
|
|
51
|
+
columns: z.array(z.object({ id: z.string(), header: z.string() })).nullable(),
|
|
52
|
+
rows: z.array(
|
|
53
|
+
z.object({
|
|
54
|
+
id: z.string(),
|
|
55
|
+
cells: z.record(z.string(), z.string()),
|
|
56
|
+
summaryLabel: z.string().nullable()
|
|
57
|
+
})
|
|
58
|
+
).nullable(),
|
|
59
|
+
selectedRowId: z.string().nullable(),
|
|
60
|
+
filterControls: z.array(
|
|
61
|
+
z.object({
|
|
62
|
+
id: z.string(),
|
|
63
|
+
label: z.string(),
|
|
64
|
+
value: z.string(),
|
|
65
|
+
placeholder: z.string().nullable()
|
|
66
|
+
})
|
|
67
|
+
).nullable(),
|
|
68
|
+
filterValue: z.string().nullable(),
|
|
69
|
+
pagination: z.object({ page: z.number(), totalPages: z.number() }),
|
|
70
|
+
errorMessage: z.string().nullable(),
|
|
71
|
+
emptyTitle: z.string().nullable(),
|
|
72
|
+
emptyDescription: z.string().nullable(),
|
|
73
|
+
className: z.string().nullable()
|
|
74
|
+
}),
|
|
75
|
+
slots: ["detailPanel", "headerActions"],
|
|
76
|
+
events: ["rowSelect", "pageChange", "filterChange"],
|
|
77
|
+
description: "Master-detail CRUD list with data table, filter controls, pagination, row selection, and detail panel slot.",
|
|
78
|
+
example: {
|
|
79
|
+
title: "Customers",
|
|
80
|
+
description: null,
|
|
81
|
+
state: "has-data",
|
|
82
|
+
columns: [
|
|
83
|
+
{ id: "name", header: "Name" },
|
|
84
|
+
{ id: "email", header: "Email" },
|
|
85
|
+
{ id: "status", header: "Status" }
|
|
86
|
+
],
|
|
87
|
+
rows: [
|
|
88
|
+
{ id: "c1", cells: { name: "Acme Corp", email: "billing@acme.com", status: "Active" }, summaryLabel: null },
|
|
89
|
+
{ id: "c2", cells: { name: "TechStart Ltd", email: "info@techstart.io", status: "Trial" }, summaryLabel: null }
|
|
90
|
+
],
|
|
91
|
+
selectedRowId: null,
|
|
92
|
+
filterControls: null,
|
|
93
|
+
filterValue: null,
|
|
94
|
+
pagination: { page: 1, totalPages: 4 },
|
|
95
|
+
errorMessage: null,
|
|
96
|
+
emptyTitle: null,
|
|
97
|
+
emptyDescription: null,
|
|
98
|
+
className: null
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
DirectoryBlock: {
|
|
102
|
+
props: z.object({
|
|
103
|
+
navItems: z.array(
|
|
104
|
+
z.object({
|
|
105
|
+
name: z.string(),
|
|
106
|
+
icon: z.string(),
|
|
107
|
+
isActive: z.boolean().nullable()
|
|
108
|
+
})
|
|
109
|
+
).nullable(),
|
|
110
|
+
projects: z.array(z.object({ name: z.string(), url: z.string() })).nullable()
|
|
111
|
+
}),
|
|
112
|
+
description: "Navigation directory with sidebar items and project listings.",
|
|
113
|
+
example: {
|
|
114
|
+
navItems: [
|
|
115
|
+
{ name: "Dashboard", icon: "LayoutDashboard", isActive: true },
|
|
116
|
+
{ name: "Projects", icon: "Folder", isActive: null }
|
|
117
|
+
],
|
|
118
|
+
projects: [
|
|
119
|
+
{ name: "Marketing Site", url: "/projects/marketing" },
|
|
120
|
+
{ name: "Mobile App", url: "/projects/mobile" }
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
FormFieldBlock: {
|
|
125
|
+
props: z.object({
|
|
126
|
+
title: z.string().nullable(),
|
|
127
|
+
description: z.string().nullable(),
|
|
128
|
+
state: z.enum([
|
|
129
|
+
"pristine",
|
|
130
|
+
"dirty",
|
|
131
|
+
"validating",
|
|
132
|
+
"validation-error",
|
|
133
|
+
"submitting",
|
|
134
|
+
"saved",
|
|
135
|
+
"fatal-error"
|
|
136
|
+
]).nullable(),
|
|
137
|
+
sections: z.array(
|
|
138
|
+
z.object({
|
|
139
|
+
id: z.string(),
|
|
140
|
+
title: z.string(),
|
|
141
|
+
description: z.string().nullable(),
|
|
142
|
+
optional: z.boolean().nullable(),
|
|
143
|
+
fields: z.array(
|
|
144
|
+
z.object({
|
|
145
|
+
id: z.string(),
|
|
146
|
+
label: z.string(),
|
|
147
|
+
value: z.string(),
|
|
148
|
+
type: z.enum(["text", "email", "number", "textarea", "select"]).nullable(),
|
|
149
|
+
placeholder: z.string().nullable(),
|
|
150
|
+
required: z.boolean().nullable(),
|
|
151
|
+
readOnly: z.boolean().nullable(),
|
|
152
|
+
disabled: z.boolean().nullable(),
|
|
153
|
+
errorMessage: z.string().nullable(),
|
|
154
|
+
description: z.string().nullable(),
|
|
155
|
+
options: z.array(z.object({ value: z.string(), label: z.string() })).nullable()
|
|
156
|
+
})
|
|
157
|
+
).nullable()
|
|
158
|
+
})
|
|
159
|
+
).nullable(),
|
|
160
|
+
validationMessage: z.string().nullable(),
|
|
161
|
+
fatalErrorMessage: z.string().nullable(),
|
|
162
|
+
savedMessage: z.string().nullable(),
|
|
163
|
+
actionLabels: z.object({
|
|
164
|
+
primary: z.string().nullable(),
|
|
165
|
+
secondary: z.string().nullable(),
|
|
166
|
+
tertiary: z.string().nullable(),
|
|
167
|
+
destructive: z.string().nullable()
|
|
168
|
+
}).nullable(),
|
|
169
|
+
className: z.string().nullable()
|
|
170
|
+
}),
|
|
171
|
+
events: [
|
|
172
|
+
"fieldChange",
|
|
173
|
+
"primaryAction",
|
|
174
|
+
"secondaryAction",
|
|
175
|
+
"tertiaryAction",
|
|
176
|
+
"destructiveAction"
|
|
177
|
+
],
|
|
178
|
+
description: "Generic form engine with sectioned field layout, field type switch (text/email/number/textarea/select), save-state badges, validation display, and configurable action buttons.",
|
|
179
|
+
example: {
|
|
180
|
+
title: "Company Settings",
|
|
181
|
+
description: null,
|
|
182
|
+
state: "pristine",
|
|
183
|
+
sections: [
|
|
184
|
+
{
|
|
185
|
+
id: "general",
|
|
186
|
+
title: "General",
|
|
187
|
+
description: null,
|
|
188
|
+
optional: null,
|
|
189
|
+
fields: [
|
|
190
|
+
{ id: "companyName", label: "Company Name", value: "Northwind Traders", type: "text", placeholder: null, required: true, readOnly: false, disabled: false, errorMessage: null, description: null, options: null },
|
|
191
|
+
{ id: "industry", label: "Industry", value: "technology", type: "select", placeholder: null, required: false, readOnly: null, disabled: null, errorMessage: null, description: null, options: [{ value: "technology", label: "Technology" }, { value: "finance", label: "Finance" }] }
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
validationMessage: null,
|
|
196
|
+
fatalErrorMessage: null,
|
|
197
|
+
savedMessage: null,
|
|
198
|
+
actionLabels: { primary: "Save", secondary: "Reset", tertiary: null, destructive: null },
|
|
199
|
+
className: null
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
IntegrationsBlock: {
|
|
203
|
+
props: z.object({
|
|
204
|
+
title: z.string().nullable(),
|
|
205
|
+
description: z.string().nullable(),
|
|
206
|
+
integrations: z.array(
|
|
207
|
+
z.object({
|
|
208
|
+
title: z.string(),
|
|
209
|
+
description: z.string(),
|
|
210
|
+
icon: z.string(),
|
|
211
|
+
link: z.string().nullable()
|
|
212
|
+
})
|
|
213
|
+
).nullable()
|
|
214
|
+
}),
|
|
215
|
+
description: "Grid of integration cards with title, description, and optional link.",
|
|
216
|
+
example: {
|
|
217
|
+
title: "Integrations",
|
|
218
|
+
description: "Connect your favorite tools.",
|
|
219
|
+
integrations: [
|
|
220
|
+
{ title: "Slack", description: "Get real-time notifications in your channels.", icon: "MessageSquare", link: "/integrations/slack" },
|
|
221
|
+
{ title: "GitHub", description: "Sync issues and pull requests automatically.", icon: "Github", link: null }
|
|
222
|
+
]
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
InviteUserModal: {
|
|
226
|
+
props: z.object({
|
|
227
|
+
email: z.string().nullable(),
|
|
228
|
+
role: z.enum(["admin", "member", "guest"]).nullable()
|
|
229
|
+
}),
|
|
230
|
+
events: ["submit"],
|
|
231
|
+
description: "Self-contained invite teammate modal triggered by a button. Renders a dialog with email and role (admin/member/guest) fields, Zod validation, and async submission. Use inside team management UIs.",
|
|
232
|
+
example: { email: null, role: null }
|
|
233
|
+
},
|
|
234
|
+
KanbanBoard: {
|
|
235
|
+
props: z.object({
|
|
236
|
+
activationDistance: z.number().nullable(),
|
|
237
|
+
className: z.string().nullable()
|
|
238
|
+
}),
|
|
239
|
+
slots: ["default"],
|
|
240
|
+
events: ["valueChange"],
|
|
241
|
+
description: "Headless drag-and-drop Kanban board primitive. Compose with KanbanColumn, KanbanColumnHeader, KanbanItem, and KanbanHandle sub-components. Controlled via value + onValueChange. Compose with json-render specs for full-page board views.",
|
|
242
|
+
example: { activationDistance: 8, className: null }
|
|
243
|
+
},
|
|
244
|
+
NavUser: {
|
|
245
|
+
props: z.object({
|
|
246
|
+
user: z.object({
|
|
247
|
+
name: z.string(),
|
|
248
|
+
email: z.string(),
|
|
249
|
+
avatar: z.string().nullable()
|
|
250
|
+
}),
|
|
251
|
+
items: z.array(
|
|
252
|
+
z.object({
|
|
253
|
+
label: z.string(),
|
|
254
|
+
href: z.string().nullable()
|
|
255
|
+
})
|
|
256
|
+
).nullable()
|
|
257
|
+
}),
|
|
258
|
+
slots: ["footer"],
|
|
259
|
+
events: ["select"],
|
|
260
|
+
description: "Sidebar user menu button with avatar, name, email, and dropdown actions. Renders inside a SidebarMenu. Used in the sidebar footer of navigation shell layouts.",
|
|
261
|
+
example: {
|
|
262
|
+
user: { name: "Jordan Rivera", email: "jordan@acme.com", avatar: null },
|
|
263
|
+
items: [
|
|
264
|
+
{ label: "Profile", href: "/settings/profile" },
|
|
265
|
+
{ label: "Billing", href: "/settings/billing" },
|
|
266
|
+
{ label: "Sign out", href: null }
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
SettingsModal: {
|
|
271
|
+
props: z.object({
|
|
272
|
+
open: z.boolean().nullable(),
|
|
273
|
+
defaultTab: z.string().nullable(),
|
|
274
|
+
tabs: z.array(
|
|
275
|
+
z.object({
|
|
276
|
+
id: z.string(),
|
|
277
|
+
label: z.string().nullable()
|
|
278
|
+
})
|
|
279
|
+
).nullable(),
|
|
280
|
+
className: z.string().nullable()
|
|
281
|
+
}),
|
|
282
|
+
slots: ["default"],
|
|
283
|
+
events: ["close", "tabChange"],
|
|
284
|
+
description: "Modal settings dialog with tab navigation sidebar. tabs defines the sidebar items. defaultTab selects the initial active tab. Children render as tab content. Fires close on dismiss and tabChange on tab switch.",
|
|
285
|
+
example: {
|
|
286
|
+
open: true,
|
|
287
|
+
defaultTab: "appearance",
|
|
288
|
+
tabs: [
|
|
289
|
+
{ id: "appearance", label: "Appearance" },
|
|
290
|
+
{ id: "notifications", label: "Notifications" },
|
|
291
|
+
{ id: "shortcuts", label: "Keyboard Shortcuts" }
|
|
292
|
+
],
|
|
293
|
+
className: null
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
SettingsNavBlock: {
|
|
297
|
+
props: z.object({
|
|
298
|
+
title: z.string().nullable(),
|
|
299
|
+
subtitle: z.string().nullable(),
|
|
300
|
+
sections: z.array(
|
|
301
|
+
z.object({
|
|
302
|
+
id: z.string(),
|
|
303
|
+
label: z.string(),
|
|
304
|
+
description: z.string().nullable(),
|
|
305
|
+
isAvailable: z.boolean().nullable(),
|
|
306
|
+
unavailableReason: z.string().nullable(),
|
|
307
|
+
badge: z.string().nullable()
|
|
308
|
+
})
|
|
309
|
+
),
|
|
310
|
+
activeSectionId: z.string(),
|
|
311
|
+
saveState: z.enum([
|
|
312
|
+
"default",
|
|
313
|
+
"dirty",
|
|
314
|
+
"saving",
|
|
315
|
+
"saved",
|
|
316
|
+
"validation-error",
|
|
317
|
+
"fatal-error",
|
|
318
|
+
"loading"
|
|
319
|
+
]).nullable(),
|
|
320
|
+
validationMessage: z.string().nullable(),
|
|
321
|
+
fatalErrorMessage: z.string().nullable(),
|
|
322
|
+
savedMessage: z.string().nullable(),
|
|
323
|
+
saveLabel: z.string().nullable(),
|
|
324
|
+
discardLabel: z.string().nullable(),
|
|
325
|
+
className: z.string().nullable()
|
|
326
|
+
}),
|
|
327
|
+
slots: ["sectionContent"],
|
|
328
|
+
events: ["sectionChange", "save", "discard"],
|
|
329
|
+
description: "Settings page with animated sidebar navigation (glass-panel, AnimatePresence transitions), save-state management, section availability gating, and save/discard footer.",
|
|
330
|
+
example: {
|
|
331
|
+
title: "Workspace Settings",
|
|
332
|
+
subtitle: "Manage your workspace configuration.",
|
|
333
|
+
sections: [
|
|
334
|
+
{ id: "general", label: "General", description: "Name, URL, and workspace basics.", isAvailable: true, unavailableReason: null, badge: null },
|
|
335
|
+
{ id: "billing", label: "Billing", description: "Subscription and payment methods.", isAvailable: true, unavailableReason: null, badge: null },
|
|
336
|
+
{ id: "sso", label: "Single Sign-On", description: null, isAvailable: false, unavailableReason: "Available on Enterprise plan", badge: "Enterprise" }
|
|
337
|
+
],
|
|
338
|
+
activeSectionId: "general",
|
|
339
|
+
saveState: "default",
|
|
340
|
+
validationMessage: null,
|
|
341
|
+
fatalErrorMessage: null,
|
|
342
|
+
savedMessage: null,
|
|
343
|
+
saveLabel: "Save",
|
|
344
|
+
discardLabel: "Discard",
|
|
345
|
+
className: null
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
TeamBlock: {
|
|
349
|
+
props: z.object({
|
|
350
|
+
title: z.string().nullable(),
|
|
351
|
+
sections: z.array(
|
|
352
|
+
z.object({
|
|
353
|
+
heading: z.string(),
|
|
354
|
+
members: z.array(
|
|
355
|
+
z.object({
|
|
356
|
+
name: z.string(),
|
|
357
|
+
role: z.string(),
|
|
358
|
+
avatar: z.string()
|
|
359
|
+
})
|
|
360
|
+
)
|
|
361
|
+
})
|
|
362
|
+
).nullable()
|
|
363
|
+
}),
|
|
364
|
+
description: "Team showcase with sectioned member grids showing avatars, names, and roles.",
|
|
365
|
+
example: {
|
|
366
|
+
title: "Our Team",
|
|
367
|
+
sections: [
|
|
368
|
+
{
|
|
369
|
+
heading: "Leadership",
|
|
370
|
+
members: [
|
|
371
|
+
{ name: "Sofia Reyes", role: "CEO", avatar: "https://avatars.githubusercontent.com/u/200" },
|
|
372
|
+
{ name: "Marcus Okonkwo", role: "CTO", avatar: "https://avatars.githubusercontent.com/u/201" }
|
|
373
|
+
]
|
|
374
|
+
}
|
|
375
|
+
]
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
TimezonePickerBlock: {
|
|
379
|
+
props: z.object({
|
|
380
|
+
value: z.string().nullable(),
|
|
381
|
+
groups: z.array(
|
|
382
|
+
z.object({
|
|
383
|
+
region: z.string(),
|
|
384
|
+
timezones: z.array(
|
|
385
|
+
z.object({
|
|
386
|
+
value: z.string(),
|
|
387
|
+
label: z.string(),
|
|
388
|
+
region: z.string(),
|
|
389
|
+
offset: z.string(),
|
|
390
|
+
offsetMinutes: z.number()
|
|
391
|
+
})
|
|
392
|
+
)
|
|
393
|
+
})
|
|
394
|
+
).nullable(),
|
|
395
|
+
name: z.string().nullable()
|
|
396
|
+
}),
|
|
397
|
+
events: ["change"],
|
|
398
|
+
description: "Searchable timezone picker with grouped IANA timezones, offset display, and form integration.",
|
|
399
|
+
example: {
|
|
400
|
+
value: "America/New_York",
|
|
401
|
+
groups: [
|
|
402
|
+
{
|
|
403
|
+
region: "Americas",
|
|
404
|
+
timezones: [
|
|
405
|
+
{ value: "America/New_York", label: "New York", region: "Americas", offset: "UTC-5", offsetMinutes: -300 },
|
|
406
|
+
{ value: "America/Chicago", label: "Chicago", region: "Americas", offset: "UTC-6", offsetMinutes: -360 }
|
|
407
|
+
]
|
|
408
|
+
}
|
|
409
|
+
],
|
|
410
|
+
name: "timezone"
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
WorkspaceSwitcherBlock: {
|
|
414
|
+
props: z.object({
|
|
415
|
+
name: z.string().nullable(),
|
|
416
|
+
plan: z.string().nullable(),
|
|
417
|
+
href: z.string().nullable()
|
|
418
|
+
}),
|
|
419
|
+
events: ["press"],
|
|
420
|
+
description: "Sidebar workspace switcher button with icon, workspace name, and plan label. Renders inside a SidebarMenu.",
|
|
421
|
+
example: { name: "Acme Corp", plan: "Enterprise", href: "/workspaces" }
|
|
422
|
+
}
|
|
423
|
+
};
|
|
424
|
+
|
|
425
|
+
export { blocksCrudDefinitions };
|
|
@@ -6,52 +6,63 @@ import { Replit } from './chunk-DT6DGTVW.js';
|
|
|
6
6
|
import { VSCodium } from './chunk-J5DRK4RF.js';
|
|
7
7
|
import { StaggerChildren } from './chunk-DQPK2XRL.js';
|
|
8
8
|
import { Heading } from './chunk-UXX6HHPS.js';
|
|
9
|
-
import { ScrollFadeIn } from './chunk-I23DDSU7.js';
|
|
10
9
|
import { Card } from './chunk-7UY24UWL.js';
|
|
10
|
+
import { ScrollFadeIn } from './chunk-I23DDSU7.js';
|
|
11
11
|
import { Button } from './chunk-7KIDDF3I.js';
|
|
12
12
|
import { ChevronRightIcon } from './chunk-G24VV5NO.js';
|
|
13
13
|
import Link from 'next/link';
|
|
14
14
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
15
15
|
|
|
16
|
+
var ICON_MAP = {
|
|
17
|
+
Gemini: /* @__PURE__ */ jsx(Gemini, {}),
|
|
18
|
+
Replit: /* @__PURE__ */ jsx(Replit, {}),
|
|
19
|
+
MagicUI: /* @__PURE__ */ jsx(MagicUI, {}),
|
|
20
|
+
VSCodium: /* @__PURE__ */ jsx(VSCodium, {}),
|
|
21
|
+
MediaWiki: /* @__PURE__ */ jsx(MediaWiki, {}),
|
|
22
|
+
GooglePaLM: /* @__PURE__ */ jsx(GooglePaLM, {})
|
|
23
|
+
};
|
|
24
|
+
function resolveIntegrationIcon(iconKey) {
|
|
25
|
+
return ICON_MAP[iconKey] ?? /* @__PURE__ */ jsx("span", { children: iconKey });
|
|
26
|
+
}
|
|
16
27
|
var defaultIntegrations = [
|
|
17
28
|
{
|
|
18
29
|
title: "Google Gemini",
|
|
19
30
|
description: "Advanced multimodal AI for reasoning, code generation, and creative tasks.",
|
|
20
|
-
icon:
|
|
31
|
+
icon: "Gemini"
|
|
21
32
|
},
|
|
22
33
|
{
|
|
23
34
|
title: "Replit",
|
|
24
35
|
description: "Cloud-based IDE with real-time collaboration and instant deployment.",
|
|
25
|
-
icon:
|
|
36
|
+
icon: "Replit"
|
|
26
37
|
},
|
|
27
38
|
{
|
|
28
39
|
title: "Magic UI",
|
|
29
40
|
description: "Beautiful animated components to elevate your interface design.",
|
|
30
|
-
icon:
|
|
41
|
+
icon: "MagicUI"
|
|
31
42
|
},
|
|
32
43
|
{
|
|
33
44
|
title: "VSCodium",
|
|
34
45
|
description: "Open-source code editor with full extension ecosystem support.",
|
|
35
|
-
icon:
|
|
46
|
+
icon: "VSCodium"
|
|
36
47
|
},
|
|
37
48
|
{
|
|
38
49
|
title: "MediaWiki",
|
|
39
50
|
description: "Structured knowledge management with powerful search and versioning.",
|
|
40
|
-
icon:
|
|
51
|
+
icon: "MediaWiki"
|
|
41
52
|
},
|
|
42
53
|
{
|
|
43
54
|
title: "Google PaLM",
|
|
44
55
|
description: "Large language model API for text generation and understanding.",
|
|
45
|
-
icon:
|
|
56
|
+
icon: "GooglePaLM"
|
|
46
57
|
}
|
|
47
58
|
];
|
|
48
59
|
function IntegrationsBlock({
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
return /* @__PURE__ */ jsx(ScrollFadeIn, { children: /* @__PURE__ */ jsx("section", {
|
|
60
|
+
props
|
|
61
|
+
}) {
|
|
62
|
+
const title = props.title ?? "Integrate with your favorite tools";
|
|
63
|
+
const description = props.description ?? "Connect seamlessly with popular platforms and services to enhance your workflow.";
|
|
64
|
+
const integrations = props.integrations ? props.integrations.map((i) => ({ title: i.title, description: i.description, icon: i.icon, link: i.link ?? void 0 })) : defaultIntegrations;
|
|
65
|
+
return /* @__PURE__ */ jsx(ScrollFadeIn, { children: /* @__PURE__ */ jsx("section", { children: /* @__PURE__ */ jsx("div", { className: "py-32", children: /* @__PURE__ */ jsxs("div", { className: "mx-auto max-w-5xl px-6", children: [
|
|
55
66
|
/* @__PURE__ */ jsxs("div", { className: "text-center", children: [
|
|
56
67
|
/* @__PURE__ */ jsx(Heading, { level: 2, size: "section", className: "md:text-4xl", children: title }),
|
|
57
68
|
/* @__PURE__ */ jsx("p", { className: "text-text-tertiary mt-6", children: description })
|
|
@@ -62,7 +73,7 @@ function IntegrationsBlock({
|
|
|
62
73
|
title: integration.title,
|
|
63
74
|
description: integration.description,
|
|
64
75
|
link: integration.link,
|
|
65
|
-
children: integration.icon
|
|
76
|
+
children: resolveIntegrationIcon(integration.icon)
|
|
66
77
|
},
|
|
67
78
|
i
|
|
68
79
|
)) })
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { useSafeTimeout } from './chunk-MDAYDDTC.js';
|
|
2
1
|
import { ScrollArea } from './chunk-GLU236NN.js';
|
|
3
2
|
import { Input } from './chunk-AP3XXYAY.js';
|
|
3
|
+
import { useSafeTimeout } from './chunk-MDAYDDTC.js';
|
|
4
4
|
import { Avatar, AvatarFallback } from './chunk-NAAU5IWU.js';
|
|
5
5
|
import { Button } from './chunk-7KIDDF3I.js';
|
|
6
6
|
import { useMotionConfig, m, motionSpring } from './chunk-PD2YEH3H.js';
|
|
@@ -21,12 +21,13 @@ var defaultInitialMessages = [
|
|
|
21
21
|
}
|
|
22
22
|
];
|
|
23
23
|
function ChatLayout({
|
|
24
|
-
|
|
25
|
-
assistantName = "AI Assistant",
|
|
26
|
-
assistantStatus = "Online",
|
|
27
|
-
placeholder = "Type a message...",
|
|
28
|
-
className
|
|
24
|
+
props
|
|
29
25
|
}) {
|
|
26
|
+
const initialMessages = props.initialMessages ?? defaultInitialMessages;
|
|
27
|
+
const assistantName = props.assistantName ?? "AI Assistant";
|
|
28
|
+
const assistantStatus = props.assistantStatus ?? "Online";
|
|
29
|
+
const placeholder = props.placeholder ?? "Type a message...";
|
|
30
|
+
const className = props.className;
|
|
30
31
|
const t = useTranslations("blocks.chatLayout");
|
|
31
32
|
const motionConfig = useMotionConfig();
|
|
32
33
|
const [messages, setMessages] = React.useState(initialMessages);
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { seedComponentDefinitions } from './chunk-CTVV6JS6.js';
|
|
2
|
+
import { defineCatalog } from '@json-render/core';
|
|
3
|
+
import { schema } from '@json-render/next/server';
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
|
|
6
|
+
var pageComponentDefinitions = {
|
|
7
|
+
AuthLayout: seedComponentDefinitions.AuthLayout,
|
|
8
|
+
PageShell: { props: z.object({ className: z.string().nullable() }), slots: ["default"], description: "Minimal full-page wrapper rendering children" },
|
|
9
|
+
HeaderBlock: seedComponentDefinitions.HeaderBlock,
|
|
10
|
+
HeroBlock: seedComponentDefinitions.HeroBlock,
|
|
11
|
+
LogoCloud: seedComponentDefinitions.LogoCloud,
|
|
12
|
+
FeatureBlock: seedComponentDefinitions.FeatureBlock,
|
|
13
|
+
StatsMarketingBlock: seedComponentDefinitions.StatsMarketingBlock,
|
|
14
|
+
PricingBlock: seedComponentDefinitions.PricingBlock,
|
|
15
|
+
ComparisonBlock: seedComponentDefinitions.ComparisonBlock,
|
|
16
|
+
TestimonialsBlock: seedComponentDefinitions.TestimonialsBlock,
|
|
17
|
+
CallToActionBlock: seedComponentDefinitions.CallToActionBlock,
|
|
18
|
+
FAQBlock: seedComponentDefinitions.FAQBlock,
|
|
19
|
+
NewsletterBlock: seedComponentDefinitions.NewsletterBlock,
|
|
20
|
+
BlogDetailBlock: seedComponentDefinitions.BlogDetailBlock,
|
|
21
|
+
ChangelogBlock: seedComponentDefinitions.ChangelogBlock,
|
|
22
|
+
FooterBlock: seedComponentDefinitions.FooterBlock,
|
|
23
|
+
DashboardBlock: seedComponentDefinitions.DashboardBlock,
|
|
24
|
+
OnboardingFlowBlock: seedComponentDefinitions.OnboardingFlowBlock
|
|
25
|
+
};
|
|
26
|
+
var showcaseCatalog = defineCatalog(schema, {
|
|
27
|
+
components: pageComponentDefinitions,
|
|
28
|
+
actions: { noop: { description: "No-op action for showcase event bindings" } }
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
export { pageComponentDefinitions, showcaseCatalog };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { cn } from './chunk-QYZT24TS.js';
|
|
2
|
+
import { jsx } from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
function ButtonGroup({ className, ref, ...props }) {
|
|
5
|
+
return /* @__PURE__ */ jsx(
|
|
6
|
+
"div",
|
|
7
|
+
{
|
|
8
|
+
ref,
|
|
9
|
+
className: cn(
|
|
10
|
+
"inline-flex -space-x-px rounded-md shadow-sm *:rounded-none first:*:rounded-l-md last:*:rounded-r-md",
|
|
11
|
+
className
|
|
12
|
+
),
|
|
13
|
+
...props
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { ButtonGroup };
|