xertica-ui 2.1.2 → 2.1.3
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/CHANGELOG.md +31 -0
- package/README.md +1 -1
- package/assets/xertica-logo.svg +37 -37
- package/assets/xertica-x-logo.svg +20 -20
- package/bin/cli.ts +1 -1
- package/bin/generate-tokens.ts +13 -7
- package/components/assistant/index.ts +6 -6
- package/components/assistant/xertica-assistant/index.ts +2 -0
- package/components/assistant/xertica-assistant/use-assistant.ts +564 -0
- package/components/assistant/xertica-assistant/xertica-assistant.stories.tsx +200 -0
- package/components/assistant/xertica-assistant/xertica-assistant.tsx +183 -474
- package/components/blocks/card-patterns/ActivityCard.tsx +72 -72
- package/components/blocks/card-patterns/FeatureCard.tsx +100 -100
- package/components/blocks/card-patterns/NotificationCard.tsx +127 -127
- package/components/blocks/card-patterns/ProfileCard.tsx +84 -84
- package/components/blocks/card-patterns/ProjectCard.tsx +89 -89
- package/components/blocks/card-patterns/QuickActionCard.tsx +62 -62
- package/components/blocks/card-patterns/card-patterns.stories.tsx +445 -445
- package/components/blocks/card-patterns/index.ts +17 -17
- package/components/blocks/index.ts +1 -1
- package/components/brand/index.ts +6 -6
- package/components/brand/xertica-provider/XerticaProvider.tsx +48 -48
- package/components/brand/xertica-provider/xertica-provider.mdx +61 -61
- package/components/brand/xertica-provider/xertica-provider.test.tsx +52 -52
- package/components/examples/MapExamples.tsx +282 -282
- package/components/examples/SimpleFilterableMap.tsx +191 -191
- package/components/examples/index.ts +51 -51
- package/components/figma/ImageWithFallback.tsx +27 -27
- package/components/hooks/index.ts +7 -7
- package/components/index.ts +5 -5
- package/components/layout/header/header.test.tsx +8 -8
- package/components/layout/header/header.tsx +4 -4
- package/components/layout/index.ts +2 -2
- package/components/layout/sidebar/index.ts +2 -0
- package/components/layout/sidebar/sidebar.mdx +1 -1
- package/components/layout/sidebar/sidebar.stories.tsx +160 -8
- package/components/layout/sidebar/sidebar.test.tsx +11 -11
- package/components/layout/sidebar/sidebar.tsx +610 -471
- package/components/layout/sidebar/use-sidebar.ts +113 -0
- package/components/media/FloatingMediaWrapper.tsx +11 -11
- package/components/media/audio-player/AudioPlayer.tsx +22 -22
- package/components/media/index.ts +3 -3
- package/components/pages/home-content/HomeContent.tsx +7 -7
- package/components/pages/home-content/home-content.mdx +62 -62
- package/components/pages/home-page/HomePage.stories.tsx +39 -39
- package/components/pages/home-page/HomePage.tsx +1 -1
- package/components/pages/home-page/home-page.mdx +53 -53
- package/components/pages/index.ts +8 -8
- package/components/pages/template-content/TemplateContent.tsx +5 -5
- package/components/pages/template-content/template-content.mdx +61 -61
- package/components/pages/template-page/TemplatePage.stories.tsx +39 -39
- package/components/pages/template-page/TemplatePage.tsx +5 -5
- package/components/pages/template-page/template-page.mdx +53 -53
- package/components/public-api-smoke.test.tsx +52 -52
- package/components/shared/assistant-utils.ts +43 -43
- package/components/shared/layout-constants.ts +1 -1
- package/components/ui/accordion/accordion.mdx +8 -8
- package/components/ui/accordion/accordion.stories.tsx +53 -53
- package/components/ui/alert/alert.mdx +8 -8
- package/components/ui/alert-dialog/alert-dialog.mdx +8 -8
- package/components/ui/aspect-ratio/aspect-ratio.mdx +8 -8
- package/components/ui/assistant-chart/assistant-chart.mdx +8 -8
- package/components/ui/avatar/avatar.mdx +8 -8
- package/components/ui/badge/badge.mdx +8 -8
- package/components/ui/badge/badge.tsx +9 -9
- package/components/ui/breadcrumb/breadcrumb.mdx +8 -8
- package/components/ui/button/button.mdx +8 -8
- package/components/ui/calendar/calendar.mdx +8 -8
- package/components/ui/calendar/calendar.tsx +258 -258
- package/components/ui/card/card.mdx +8 -8
- package/components/ui/card/card.stories.tsx +245 -245
- package/components/ui/carousel/carousel.mdx +8 -8
- package/components/ui/chart/chart.mdx +8 -8
- package/components/ui/chart/chart.stories.tsx +1303 -344
- package/components/ui/chart/chart.test.tsx +154 -154
- package/components/ui/chart/chart.tsx +2367 -1494
- package/components/ui/checkbox/checkbox.mdx +8 -8
- package/components/ui/checkbox/checkbox.stories.tsx +20 -20
- package/components/ui/collapsible/collapsible.mdx +8 -8
- package/components/ui/command/command.mdx +8 -8
- package/components/ui/context-menu/context-menu.mdx +8 -8
- package/components/ui/dialog/dialog.mdx +8 -8
- package/components/ui/drawer/drawer.mdx +8 -8
- package/components/ui/dropdown-menu/dropdown-menu.mdx +8 -8
- package/components/ui/empty/empty.mdx +8 -8
- package/components/ui/file-upload/file-upload.mdx +8 -8
- package/components/ui/file-upload/file-upload.stories.tsx +100 -0
- package/components/ui/file-upload/file-upload.tsx +14 -74
- package/components/ui/file-upload/index.ts +1 -0
- package/components/ui/file-upload/use-file-upload.ts +181 -0
- package/components/ui/google-maps-loader/google-maps-loader.tsx +2 -2
- package/components/ui/hover-card/hover-card.mdx +8 -8
- package/components/ui/input/input.mdx +8 -8
- package/components/ui/input-otp/input-otp.mdx +8 -8
- package/components/ui/input-otp/input-otp.stories.tsx +6 -6
- package/components/ui/label/label.mdx +8 -8
- package/components/ui/map/map.mdx +8 -8
- package/components/ui/map/map.stories.tsx +51 -51
- package/components/ui/map/map.tsx +2 -2
- package/components/ui/menubar/menubar.mdx +8 -8
- package/components/ui/navigation-menu/navigation-menu.mdx +8 -8
- package/components/ui/notification-badge/notification-badge.mdx +8 -8
- package/components/ui/pagination/index.ts +2 -0
- package/components/ui/pagination/pagination.mdx +8 -8
- package/components/ui/pagination/pagination.stories.tsx +94 -0
- package/components/ui/pagination/use-pagination.ts +194 -0
- package/components/ui/popover/popover.mdx +8 -8
- package/components/ui/progress/progress.mdx +8 -8
- package/components/ui/progress/progress.tsx +68 -68
- package/components/ui/radio-group/radio-group.mdx +8 -8
- package/components/ui/rating/rating.mdx +8 -8
- package/components/ui/resizable/resizable.mdx +8 -8
- package/components/ui/rich-text-editor/index.ts +2 -0
- package/components/ui/rich-text-editor/rich-text-editor.stories.tsx +129 -1
- package/components/ui/rich-text-editor/rich-text-editor.tsx +86 -305
- package/components/ui/rich-text-editor/use-rich-text-editor.ts +439 -0
- package/components/ui/route-map/route-map.mdx +8 -8
- package/components/ui/route-map/route-map.stories.tsx +54 -54
- package/components/ui/route-map/route-map.tsx +2 -2
- package/components/ui/scroll-area/scroll-area.mdx +8 -8
- package/components/ui/search/search.mdx +8 -8
- package/components/ui/select/select.mdx +8 -8
- package/components/ui/select/select.stories.tsx +9 -9
- package/components/ui/separator/separator.mdx +8 -8
- package/components/ui/sheet/sheet.mdx +8 -8
- package/components/ui/sheet/sheet.stories.tsx +95 -95
- package/components/ui/simple-map/simple-map.mdx +8 -8
- package/components/ui/simple-map/simple-map.stories.tsx +48 -48
- package/components/ui/skeleton/skeleton.mdx +8 -8
- package/components/ui/slider/slider.mdx +8 -8
- package/components/ui/sonner/sonner.mdx +8 -8
- package/components/ui/stats-card/stats-card.mdx +8 -8
- package/components/ui/stepper/index.ts +3 -1
- package/components/ui/stepper/stepper.mdx +8 -8
- package/components/ui/stepper/stepper.stories.tsx +116 -0
- package/components/ui/stepper/stepper.tsx +4 -4
- package/components/ui/stepper/use-stepper.ts +137 -0
- package/components/ui/switch/switch.mdx +8 -8
- package/components/ui/switch/switch.stories.tsx +20 -20
- package/components/ui/table/table.mdx +8 -8
- package/components/ui/tabs/tabs.mdx +8 -8
- package/components/ui/tabs/tabs.stories.tsx +26 -26
- package/components/ui/textarea/textarea.mdx +8 -8
- package/components/ui/timeline/timeline.mdx +8 -8
- package/components/ui/toggle/toggle.mdx +8 -8
- package/components/ui/toggle-group/toggle-group.mdx +8 -8
- package/components/ui/tooltip/tooltip.mdx +8 -8
- package/components/ui/tree-view/index.ts +4 -1
- package/components/ui/tree-view/tree-view.mdx +8 -8
- package/components/ui/tree-view/tree-view.stories.tsx +110 -4
- package/components/ui/tree-view/tree-view.tsx +17 -125
- package/components/ui/tree-view/use-tree-view.ts +229 -0
- package/components.json +1512 -1512
- package/contexts/ApiKeyContext.tsx +72 -72
- package/contexts/BrandColorsContext.tsx +26 -26
- package/contexts/LanguageContext.tsx +13 -13
- package/contexts/LayoutContext.test.tsx +11 -11
- package/contexts/LayoutContext.tsx +29 -29
- package/contexts/ThemeContext.tsx +26 -26
- package/contexts/theme-data.ts +4 -4
- package/dist/{AssistantChart-CVzmmhx4.js → AssistantChart-C_hwFRRr.js} +4 -4
- package/dist/{AssistantChart-BAx9VQvb.cjs → AssistantChart-CldVCVDe.cjs} +311 -94
- package/dist/{AssistantChart-CVko2A1W.js → AssistantChart-Cu3m7RBo.js} +314 -97
- package/dist/{AssistantChart-9w31gdAb.cjs → AssistantChart-DoZCyS5r.cjs} +4 -4
- package/dist/AudioPlayer-B1lt5cPl.cjs +989 -0
- package/dist/AudioPlayer-BZ7bibzU.cjs +982 -0
- package/dist/AudioPlayer-C12BjQBV.cjs +997 -0
- package/dist/AudioPlayer-DMcG_c7L.js +990 -0
- package/dist/AudioPlayer-DcFKRJE_.js +998 -0
- package/dist/AudioPlayer-e8LfNoqO.js +983 -0
- package/dist/{xertica-assistant-Qp3ydksa.cjs → CodeBlock-7TTgmdGG.cjs} +263 -51
- package/dist/{xertica-assistant-gnCJdcZY.js → CodeBlock-BeSt1h5P.js} +219 -7
- package/dist/CodeBlock-BgfYL_rD.cjs +2094 -0
- package/dist/CodeBlock-BlcqlA9M.cjs +2094 -0
- package/dist/CodeBlock-Bnmeu5ez.cjs +2094 -0
- package/dist/CodeBlock-BtfPlbAI.js +2078 -0
- package/dist/CodeBlock-CIySIuYr.js +2078 -0
- package/dist/CodeBlock-CuPtUM-7.cjs +2094 -0
- package/dist/CodeBlock-D6ffWXgc.js +2078 -0
- package/dist/CodeBlock-D8dcwbit.cjs +2094 -0
- package/dist/CodeBlock-DMZrFnlw.cjs +2094 -0
- package/dist/CodeBlock-DlBehYN8.js +2078 -0
- package/dist/CodeBlock-DnYNI8rQ.js +2078 -0
- package/dist/CodeBlock-DvKWbSnE.cjs +2094 -0
- package/dist/CodeBlock-DwMCfkFY.js +2078 -0
- package/dist/CodeBlock-Dy6CNYyj.js +2078 -0
- package/dist/CodeBlock-U1pPOQI7.cjs +2094 -0
- package/dist/CodeBlock-f_GpNhEB.js +2078 -0
- package/dist/CodeBlock-oB6u8nI1.js +2078 -0
- package/dist/CodeBlock-tZC31B73.cjs +2094 -0
- package/dist/ImageWithFallback-CGtidP6B.cjs +4542 -0
- package/dist/ImageWithFallback-lsg3pdFg.js +4508 -0
- package/dist/LanguageSelector-B5YfbHra.js +231 -0
- package/dist/LanguageSelector-D6uacAIM.cjs +230 -0
- package/dist/LayoutContext-BAql6ZRY.js +97 -0
- package/dist/LayoutContext-BvK-ggDa.cjs +96 -0
- package/dist/ThemeContext-BoH4NLfN.js +734 -0
- package/dist/{ThemeContext-BbBNoFTG.js → ThemeContext-C2EwAPDt.js} +2 -2
- package/dist/ThemeContext-r69W20Xg.cjs +733 -0
- package/dist/{ThemeContext-Cmr8Ex8H.cjs → ThemeContext-vTjumZeM.cjs} +2 -2
- package/dist/{VerifyEmailPage-BE-L9mB7.js → VerifyEmailPage-C0c2e5n0.js} +7 -7
- package/dist/{VerifyEmailPage-DMBh4NM9.cjs → VerifyEmailPage-CYXtbKi3.cjs} +1 -1
- package/dist/{VerifyEmailPage-CR7kb5df.cjs → VerifyEmailPage-Cwi3kbol.cjs} +7 -7
- package/dist/{VerifyEmailPage-CdYPSJoO.js → VerifyEmailPage-DvMLZgFt.js} +1 -1
- package/dist/XerticaOrbe-KL1RBHzw.cjs +1354 -0
- package/dist/XerticaOrbe-zwS1p2a8.js +1355 -0
- package/dist/XerticaProvider-6btlAlzc.js +17 -0
- package/dist/XerticaProvider-BNoNOxQ5.cjs +16 -0
- package/dist/XerticaProvider-BlY2limY.cjs +38 -0
- package/dist/{XerticaProvider-BITjgC5p.js → XerticaProvider-CEoWMTxu.js} +2 -2
- package/dist/{XerticaProvider-By8q3Roe.cjs → XerticaProvider-CllrbMEJ.cjs} +2 -2
- package/dist/XerticaProvider-DDuiIcKo.js +39 -0
- package/dist/XerticaProvider-cI9hSs27.cjs +38 -0
- package/dist/XerticaProvider-hSwhNQex.js +39 -0
- package/dist/{alert-dialog-yckpaOpy.cjs → alert-dialog-DSKByiKZ.cjs} +3 -3
- package/dist/{alert-dialog-iDe5VE5o.js → alert-dialog-s-vmNkJ_.js} +3 -3
- package/dist/assistant.cjs.js +2 -1
- package/dist/assistant.es.js +3 -2
- package/dist/brand.cjs.js +1 -1
- package/dist/brand.es.js +1 -1
- package/dist/breadcrumb-CqJ7bHY5.js +161 -0
- package/dist/breadcrumb-m9Hb2_XN.cjs +177 -0
- package/dist/cli.js +14 -8
- package/dist/components/assistant/xertica-assistant/index.d.ts +2 -0
- package/dist/components/assistant/xertica-assistant/use-assistant.d.ts +126 -0
- package/dist/components/assistant/xertica-assistant/xertica-assistant.d.ts +7 -2
- package/dist/components/blocks/audio-player/AudioPlayer.d.ts +35 -0
- package/dist/components/blocks/audio-player/index.d.ts +1 -0
- package/dist/components/blocks/document-editor/DocumentEditor.d.ts +26 -0
- package/dist/components/blocks/document-editor/index.d.ts +1 -0
- package/dist/components/blocks/podcast-player/PodcastPlayer.d.ts +41 -0
- package/dist/components/blocks/podcast-player/index.d.ts +1 -0
- package/dist/components/layout/sidebar/index.d.ts +2 -0
- package/dist/components/layout/sidebar/sidebar.d.ts +80 -0
- package/dist/components/layout/sidebar/use-sidebar.d.ts +22 -0
- package/dist/components/shared/layout-constants.d.ts +1 -1
- package/dist/components/ui/button/button.d.ts +1 -1
- package/dist/components/ui/chart/chart.d.ts +162 -5
- package/dist/components/ui/file-upload/file-upload.d.ts +2 -0
- package/dist/components/ui/file-upload/index.d.ts +1 -0
- package/dist/components/ui/file-upload/use-file-upload.d.ts +49 -0
- package/dist/components/ui/pagination/index.d.ts +2 -0
- package/dist/components/ui/pagination/use-pagination.d.ts +78 -0
- package/dist/components/ui/rich-text-editor/index.d.ts +2 -0
- package/dist/components/ui/rich-text-editor/use-rich-text-editor.d.ts +107 -0
- package/dist/components/ui/stepper/index.d.ts +3 -1
- package/dist/components/ui/stepper/stepper.d.ts +2 -2
- package/dist/components/ui/stepper/use-stepper.d.ts +60 -0
- package/dist/components/ui/tree-view/index.d.ts +4 -1
- package/dist/components/ui/tree-view/tree-view.d.ts +4 -6
- package/dist/components/ui/tree-view/use-tree-view.d.ts +60 -0
- package/dist/dropdown-menu-BDB5CmQs.cjs +247 -0
- package/dist/dropdown-menu-DQidbKBD.js +231 -0
- package/dist/google-maps-loader-BFWp6VPd.js +287 -0
- package/dist/{google-maps-loader-t2IlYBzw.js → google-maps-loader-CTYySAun.js} +4 -0
- package/dist/{google-maps-loader-BqsYL48U.cjs → google-maps-loader-Y-QkD-Li.cjs} +5 -0
- package/dist/google-maps-loader-eS3uQ5TA.cjs +287 -0
- package/dist/header-Cgy6vYPk.cjs +731 -0
- package/dist/header-DRlT4jgI.js +715 -0
- package/dist/header-Dux00SI4.cjs +731 -0
- package/dist/header-EkGKXPsD.js +715 -0
- package/dist/header-WfEywpyc.cjs +731 -0
- package/dist/header-tifNQn2U.js +715 -0
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +1 -1
- package/dist/index-BhapVLVj.js +8 -0
- package/dist/{index-D3RLKRAs.cjs → index-COtD8bRW.cjs} +1 -1
- package/dist/index-D6fxYEY8.cjs +7 -0
- package/dist/index-DW5tYe26.js +8 -0
- package/dist/index.cjs.js +19 -8
- package/dist/index.es.js +39 -28
- package/dist/index.umd.js +1043 -470
- package/dist/input-2R4loU86.js +127 -0
- package/dist/input-DWANSKGb.cjs +145 -0
- package/dist/layout.cjs.js +89 -1
- package/dist/layout.es.js +90 -2
- package/dist/pages.cjs.js +1 -1
- package/dist/pages.es.js +1 -1
- package/dist/rich-text-editor-0mraWT5y.cjs +2376 -0
- package/dist/rich-text-editor-B6jMRLzk.cjs +1939 -0
- package/dist/rich-text-editor-B8_oYcIR.js +1730 -0
- package/dist/rich-text-editor-B9UbSXNb.js +1203 -0
- package/dist/rich-text-editor-BYuRBNBU.js +2373 -0
- package/dist/rich-text-editor-Bb9pySTs.cjs +2374 -0
- package/dist/rich-text-editor-BcL6L3cm.cjs +2374 -0
- package/dist/rich-text-editor-BoVZYtTs.cjs +2391 -0
- package/dist/rich-text-editor-CPV1lEPH.cjs +1748 -0
- package/dist/rich-text-editor-CoKqbCtu.cjs +1799 -0
- package/dist/rich-text-editor-Cw56T_mB.js +2356 -0
- package/dist/rich-text-editor-Cyt8qs2b.js +1921 -0
- package/dist/rich-text-editor-D6H84OcX.cjs +1220 -0
- package/dist/rich-text-editor-D76gD-QI.js +2328 -0
- package/dist/rich-text-editor-DKkokOnA.js +1781 -0
- package/dist/rich-text-editor-DNsdpN64.cjs +2359 -0
- package/dist/rich-text-editor-DfG8bCyY.js +2358 -0
- package/dist/rich-text-editor-DgF8s7xW.js +2949 -0
- package/dist/rich-text-editor-Dxjw31Z4.js +2341 -0
- package/dist/rich-text-editor-DzP0Epmb.js +2356 -0
- package/dist/rich-text-editor-mWoaSCE4.cjs +2966 -0
- package/dist/rich-text-editor-skplNlBM.cjs +2345 -0
- package/dist/select-Bkbr0f-Z.cjs +162 -0
- package/dist/select-CvIVdX2n.js +145 -0
- package/dist/sidebar-CK_0ZQHj.cjs +803 -0
- package/dist/sidebar-CUuOvYhK.js +787 -0
- package/dist/slider-Bc5Hd0y1.js +56 -0
- package/dist/slider-N7hFFj6X.cjs +73 -0
- package/dist/tooltip-Ded96neP.cjs +137 -0
- package/dist/tooltip-HDOoD2-0.js +120 -0
- package/dist/ui.cjs.js +14 -4
- package/dist/ui.es.js +26 -16
- package/dist/use-mobile-B0hNy_Y6.cjs +4303 -0
- package/dist/use-mobile-BXuYROXM.js +4202 -0
- package/dist/use-mobile-Bbd51ASU.cjs +4392 -0
- package/dist/use-mobile-Bk6CX-TC.js +4359 -0
- package/dist/use-mobile-BvYdisLP.js +4202 -0
- package/dist/use-mobile-BzuxjzNX.cjs +4392 -0
- package/dist/use-mobile-CG2-SdXV.cjs +4235 -0
- package/dist/use-mobile-CKb5pqTs.js +4269 -0
- package/dist/use-mobile-CYuAuGDl.js +4202 -0
- package/dist/use-mobile-CaENcqm-.js +4508 -0
- package/dist/use-mobile-CbrYgJGJ.js +4203 -0
- package/dist/use-mobile-DMOvImGQ.cjs +4542 -0
- package/dist/use-mobile-DRB3BQgD.cjs +4235 -0
- package/dist/use-mobile-DZvv7QMR.js +4359 -0
- package/dist/use-mobile-DdI_TXam.cjs +4235 -0
- package/dist/use-mobile-DlceKf8a.js +4359 -0
- package/dist/use-mobile-DsOnow1o.cjs +4236 -0
- package/dist/use-mobile-Kcj6jSnK.cjs +4392 -0
- package/dist/use-mobile-bnKcua_i.js +4202 -0
- package/dist/use-mobile-ncXBeE2z.cjs +4235 -0
- package/dist/{xertica-assistant-B1IaHXnB.cjs → xertica-assistant-dyP7KHM5.cjs} +533 -392
- package/dist/{xertica-assistant-DPsESB6t.js → xertica-assistant-yX1CFBBo.js} +535 -394
- package/dist/xertica-ui.css +2 -2
- package/docs/ai-usage.md +28 -10
- package/docs/architecture.md +76 -0
- package/docs/components/assistant.md +159 -0
- package/docs/components/calendar.md +154 -154
- package/docs/components/card-patterns.md +337 -337
- package/docs/components/card.md +235 -235
- package/docs/components/chart.md +354 -39
- package/docs/components/file-upload.md +119 -2
- package/docs/components/map.md +84 -84
- package/docs/components/pagination.md +187 -0
- package/docs/components/rich-text-editor.md +164 -0
- package/docs/components/sidebar.md +153 -4
- package/docs/components/stepper.md +157 -12
- package/docs/components/tree-view.md +164 -6
- package/docs/components/xertica-provider.md +24 -24
- package/docs/decision-tree.md +287 -287
- package/docs/getting-started.md +1 -1
- package/docs/guidelines.md +14 -8
- package/docs/layout.md +2 -2
- package/docs/llms.md +4 -4
- package/guidelines/Guidelines.md +252 -250
- package/hooks/useTheme.ts +3 -3
- package/imports/Podcast.tsx +388 -388
- package/imports/XerticaAi.tsx +45 -45
- package/imports/XerticaX.tsx +19 -19
- package/imports/svg-aueiaqngck.ts +11 -11
- package/imports/svg-v9krss1ozd.ts +16 -16
- package/imports/svg-vhrdofe3qe.ts +5 -5
- package/llms-compact.txt +327 -327
- package/llms.txt +160 -160
- package/package.json +203 -203
- package/styles/xertica/app-overrides/chat.css +61 -61
- package/styles/xertica/app-overrides/scrollbar.css +33 -33
- package/styles/xertica/integrations/google-maps.css +76 -76
- package/styles/xertica/integrations/sonner.css +73 -73
- package/styles/xertica/tokens.css +41 -12
- package/templates/CLAUDE.md +182 -172
- package/templates/guidelines/Guidelines.md +325 -313
- package/templates/package.json +3 -3
- package/templates/src/features/auth/index.ts +4 -4
- package/templates/src/features/auth/ui/AuthPageShell.tsx +34 -34
- package/templates/src/features/auth/ui/ForgotPasswordContent.tsx +70 -70
- package/templates/src/features/auth/ui/LoginContent.tsx +90 -90
- package/templates/src/features/auth/ui/ResetPasswordContent.tsx +151 -151
- package/templates/src/features/auth/ui/SocialLoginButtons.tsx +59 -59
- package/templates/src/features/auth/ui/VerifyEmailContent.tsx +82 -82
- package/templates/src/features/home/index.ts +1 -1
- package/templates/src/features/home/ui/HomeContent.tsx +100 -100
- package/templates/src/features/template/index.ts +5 -5
- package/templates/src/features/template/ui/CrudTemplate.tsx +3 -3
- package/templates/src/features/template/ui/DashboardTemplate.tsx +3 -3
- package/templates/src/features/template/ui/FormTemplate.tsx +120 -120
- package/templates/src/features/template/ui/LoginTemplate.tsx +3 -3
- package/templates/src/pages/AssistantPage.tsx +328 -328
- package/templates/src/pages/ForgotPasswordPage.tsx +6 -6
- package/templates/src/pages/HomePage.tsx +57 -57
- package/templates/src/pages/LoginPage.tsx +10 -10
- package/templates/src/pages/ResetPasswordPage.tsx +6 -6
- package/templates/src/pages/TemplatePage.tsx +30 -30
- package/templates/src/pages/VerifyEmailPage.tsx +6 -6
- package/templates/src/shared/config/navigation.ts +20 -20
- package/templates/src/shared/lib/auth.ts +20 -20
- package/templates/src/shared/types/auth.ts +3 -3
- package/templates/src/styles/xertica/tokens.css +39 -10
- package/templates/tsconfig.json +5 -5
- package/utils/gemini.ts +140 -140
- package/dist/VerifyEmailPage-Bae2cBXT.cjs +0 -2827
- package/dist/VerifyEmailPage-CbgjOF0v.js +0 -2828
- package/dist/index-CkTUgOwX.js +0 -8
package/dist/hooks.cjs.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const LayoutContext = require("./LayoutContext-CwT5KLiW.cjs");
|
|
4
|
-
const ThemeContext = require("./ThemeContext-
|
|
4
|
+
const ThemeContext = require("./ThemeContext-vTjumZeM.cjs");
|
|
5
5
|
const useMobile = require("./use-mobile-Dlf74ufz.cjs");
|
|
6
6
|
exports.LayoutProvider = LayoutContext.LayoutProvider;
|
|
7
7
|
exports.useLayout = LayoutContext.useLayout;
|
package/dist/hooks.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { L, u, a } from "./LayoutContext-DVLCsoQn.js";
|
|
2
|
-
import { A, a as a2, B, L as L2, T, u as u2, b, c, d, e } from "./ThemeContext-
|
|
2
|
+
import { A, a as a2, B, L as L2, T, u as u2, b, c, d, e } from "./ThemeContext-C2EwAPDt.js";
|
|
3
3
|
import { u as u3, a as a3 } from "./use-mobile-CNwiBNxu.js";
|
|
4
4
|
export {
|
|
5
5
|
A as ApiKeyProvider,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const googleMapsLoader = require("./google-maps-loader-
|
|
3
|
+
const googleMapsLoader = require("./google-maps-loader-Y-QkD-Li.cjs");
|
|
4
4
|
exports.GoogleMapsLoaderProvider = googleMapsLoader.GoogleMapsLoaderProvider;
|
|
5
5
|
exports.GoogleMapsProvider = googleMapsLoader.GoogleMapsProvider;
|
|
6
6
|
exports.reloadGoogleMaps = googleMapsLoader.reloadGoogleMaps;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const googleMapsLoader = require("./google-maps-loader-eS3uQ5TA.cjs");
|
|
4
|
+
exports.GoogleMapsLoaderProvider = googleMapsLoader.GoogleMapsLoaderProvider;
|
|
5
|
+
exports.GoogleMapsProvider = googleMapsLoader.GoogleMapsProvider;
|
|
6
|
+
exports.reloadGoogleMaps = googleMapsLoader.reloadGoogleMaps;
|
|
7
|
+
exports.useGoogleMapsLoader = googleMapsLoader.useGoogleMapsLoader;
|
package/dist/index.cjs.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const xerticaAssistant = require("./xertica-assistant-
|
|
4
|
-
const XerticaProvider = require("./XerticaProvider-
|
|
5
|
-
const VerifyEmailPage = require("./VerifyEmailPage-
|
|
3
|
+
const xerticaAssistant = require("./xertica-assistant-dyP7KHM5.cjs");
|
|
4
|
+
const XerticaProvider = require("./XerticaProvider-CllrbMEJ.cjs");
|
|
5
|
+
const VerifyEmailPage = require("./VerifyEmailPage-Cwi3kbol.cjs");
|
|
6
6
|
const button = require("./button-0CXwCRTm.cjs");
|
|
7
7
|
const card = require("./card-DJTsYhLL.cjs");
|
|
8
|
-
const alertDialog = require("./alert-dialog-
|
|
9
|
-
const AssistantChart = require("./AssistantChart-
|
|
8
|
+
const alertDialog = require("./alert-dialog-DSKByiKZ.cjs");
|
|
9
|
+
const AssistantChart = require("./AssistantChart-CldVCVDe.cjs");
|
|
10
10
|
const breadcrumb = require("./breadcrumb-DnDlQFg2.cjs");
|
|
11
11
|
const input = require("./input-CPl84zAx.cjs");
|
|
12
|
-
const richTextEditor = require("./rich-text-editor-
|
|
12
|
+
const richTextEditor = require("./rich-text-editor-mWoaSCE4.cjs");
|
|
13
13
|
const slider = require("./slider-CPmwzm_3.cjs");
|
|
14
14
|
const select = require("./select-DT7Zjn42.cjs");
|
|
15
15
|
const tooltip = require("./tooltip-CNtsL5cB.cjs");
|
|
@@ -17,13 +17,14 @@ const dropdownMenu = require("./dropdown-menu-Ze1YZFyc.cjs");
|
|
|
17
17
|
const progress = require("./progress-BLwqortq.cjs");
|
|
18
18
|
const sonner = require("./sonner-DeUIj0Zg.cjs");
|
|
19
19
|
const avatar = require("./avatar-Cq5_E8r9.cjs");
|
|
20
|
-
const googleMapsLoader = require("./google-maps-loader-
|
|
20
|
+
const googleMapsLoader = require("./google-maps-loader-Y-QkD-Li.cjs");
|
|
21
21
|
const useMobile = require("./use-mobile-Dlf74ufz.cjs");
|
|
22
22
|
const FeatureCard = require("./FeatureCard-CkPd2psQ.cjs");
|
|
23
23
|
const CodeBlock = require("./CodeBlock-POVYONvC.cjs");
|
|
24
24
|
const XerticaXLogo = require("./XerticaXLogo-xWbElCZj.cjs");
|
|
25
25
|
const XerticaOrbe = require("./XerticaOrbe-FWGjBj0U.cjs");
|
|
26
|
-
const sidebar = require("./sidebar-
|
|
26
|
+
const sidebar = require("./sidebar-CK_0ZQHj.cjs");
|
|
27
|
+
require("react");
|
|
27
28
|
const LayoutContext = require("./LayoutContext-CwT5KLiW.cjs");
|
|
28
29
|
const AudioPlayer = require("./AudioPlayer-CbZId7cj.cjs");
|
|
29
30
|
exports.FormattedDocument = xerticaAssistant.FormattedDocument;
|
|
@@ -209,8 +210,12 @@ exports.ToggleGroupItem = AssistantChart.ToggleGroupItem;
|
|
|
209
210
|
exports.TreeView = AssistantChart.TreeView;
|
|
210
211
|
exports.navigationMenuTriggerStyle = AssistantChart.navigationMenuTriggerStyle;
|
|
211
212
|
exports.toggleVariants = AssistantChart.toggleVariants;
|
|
213
|
+
exports.useFileUpload = AssistantChart.useFileUpload;
|
|
212
214
|
exports.useFormField = AssistantChart.useFormField;
|
|
215
|
+
exports.usePagination = AssistantChart.usePagination;
|
|
213
216
|
exports.useStepper = AssistantChart.useStepper;
|
|
217
|
+
exports.useStepperContext = AssistantChart.useStepperContext;
|
|
218
|
+
exports.useTreeView = AssistantChart.useTreeView;
|
|
214
219
|
exports.Breadcrumb = breadcrumb.Breadcrumb;
|
|
215
220
|
exports.BreadcrumbEllipsis = breadcrumb.BreadcrumbEllipsis;
|
|
216
221
|
exports.BreadcrumbItem = breadcrumb.BreadcrumbItem;
|
|
@@ -256,10 +261,15 @@ exports.EmptyDescription = richTextEditor.EmptyDescription;
|
|
|
256
261
|
exports.EmptyIcon = richTextEditor.EmptyIcon;
|
|
257
262
|
exports.EmptyImage = richTextEditor.EmptyImage;
|
|
258
263
|
exports.EmptyTitle = richTextEditor.EmptyTitle;
|
|
264
|
+
exports.GaugeChart = richTextEditor.GaugeChart;
|
|
259
265
|
exports.HorizontalBarChart = richTextEditor.HorizontalBarChart;
|
|
260
266
|
exports.InteractiveTimeSeriesChart = richTextEditor.InteractiveTimeSeriesChart;
|
|
267
|
+
exports.PieMetricChart = richTextEditor.PieMetricChart;
|
|
268
|
+
exports.RadarMetricChart = richTextEditor.RadarMetricChart;
|
|
269
|
+
exports.RadialBarMetricChart = richTextEditor.RadialBarMetricChart;
|
|
261
270
|
exports.RichTextEditor = richTextEditor.RichTextEditor;
|
|
262
271
|
exports.Skeleton = richTextEditor.Skeleton;
|
|
272
|
+
exports.SparklineChart = richTextEditor.SparklineChart;
|
|
263
273
|
exports.Table = richTextEditor.Table;
|
|
264
274
|
exports.TableBody = richTextEditor.TableBody;
|
|
265
275
|
exports.TableCaption = richTextEditor.TableCaption;
|
|
@@ -270,6 +280,7 @@ exports.TableHeader = richTextEditor.TableHeader;
|
|
|
270
280
|
exports.TableRow = richTextEditor.TableRow;
|
|
271
281
|
exports.Textarea = richTextEditor.Textarea;
|
|
272
282
|
exports.useChart = richTextEditor.useChart;
|
|
283
|
+
exports.useRichTextEditor = richTextEditor.useRichTextEditor;
|
|
273
284
|
exports.Slider = slider.Slider;
|
|
274
285
|
exports.Select = select.Select;
|
|
275
286
|
exports.SelectContent = select.SelectContent;
|
package/dist/index.es.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { F, M, a, X, g, g as g2 } from "./xertica-assistant-
|
|
2
|
-
import { X as X2 } from "./XerticaProvider-
|
|
3
|
-
import { F as F2, H, a as a2, L, R, T, b, V } from "./VerifyEmailPage-
|
|
1
|
+
import { F, M, a, X, g, g as g2 } from "./xertica-assistant-yX1CFBBo.js";
|
|
2
|
+
import { X as X2 } from "./XerticaProvider-CEoWMTxu.js";
|
|
3
|
+
import { F as F2, H, a as a2, L, R, T, b, V } from "./VerifyEmailPage-C0c2e5n0.js";
|
|
4
4
|
import { B, b as b2, c } from "./button-qkz7Icqf.js";
|
|
5
5
|
import { C, a as a3, b as b3, c as c2, d, e, f } from "./card-fi8zAN-I.js";
|
|
6
|
-
import { A, a as a4, b as b4, c as c3, d as d2, e as e2, f as f2, g as g3, h, i, j, C as C2, I, L as L2, M as M2, P, k, l, R as R2, m, S, n, T as T2, o, p, q, u } from "./alert-dialog-
|
|
7
|
-
import { A as A2, a as a5, b as b5, c as c4, d as d3, e as e3, C as C3, f as f3, g as g4, h as h2, i as i2, j as j2, k as k2, l as l2, m as m2, n as n2, o as o2, p as p2, q as q2, r, s, t, u as u2, v, w, x, y, z, B as B2, D, E, F as F3, G, H as H2, I as I2, J, K, L as L3, M as M3, N, O, P as P2, Q, R as R3, S as S2, T as T3, U, V as V2, W, X as X3, Y, Z, _, $, a0, a1, a2 as a22, a3 as a32, a4 as a42, a5 as a52, a6, a7, a8, a9, aa, ab, ac, ad, ae, af, ag, ah, ai, aj, ak, al, am, an, ao, ap, aq, ar, as, at, au, av, aw, ax, ay, az, aA, aB, aC, aD, aE, aF, aG, aH, aI, aJ, aK, aL, aM, aN, aO, aP, aQ, aR, aS, aT, aU, aV, aW, aX, aY, aZ, a_, a$, b0, b1, b2 as b22, b3 as b32, b4 as b42, b5 as b52, b6, b7, b8, b9, ba, bb, bc, bd, be } from "./AssistantChart-
|
|
6
|
+
import { A, a as a4, b as b4, c as c3, d as d2, e as e2, f as f2, g as g3, h, i, j, C as C2, I, L as L2, M as M2, P, k, l, R as R2, m, S, n, T as T2, o, p, q, u } from "./alert-dialog-s-vmNkJ_.js";
|
|
7
|
+
import { A as A2, a as a5, b as b5, c as c4, d as d3, e as e3, C as C3, f as f3, g as g4, h as h2, i as i2, j as j2, k as k2, l as l2, m as m2, n as n2, o as o2, p as p2, q as q2, r, s, t, u as u2, v, w, x, y, z, B as B2, D, E, F as F3, G, H as H2, I as I2, J, K, L as L3, M as M3, N, O, P as P2, Q, R as R3, S as S2, T as T3, U, V as V2, W, X as X3, Y, Z, _, $, a0, a1, a2 as a22, a3 as a32, a4 as a42, a5 as a52, a6, a7, a8, a9, aa, ab, ac, ad, ae, af, ag, ah, ai, aj, ak, al, am, an, ao, ap, aq, ar, as, at, au, av, aw, ax, ay, az, aA, aB, aC, aD, aE, aF, aG, aH, aI, aJ, aK, aL, aM, aN, aO, aP, aQ, aR, aS, aT, aU, aV, aW, aX, aY, aZ, a_, a$, b0, b1, b2 as b22, b3 as b32, b4 as b42, b5 as b52, b6, b7, b8, b9, ba, bb, bc, bd, be, bf, bg, bh, bi } from "./AssistantChart-Cu3m7RBo.js";
|
|
8
8
|
import { B as B3, a as a10, b as b10, c as c5, d as d4, e as e4, f as f4 } from "./breadcrumb-CVzzzqfo.js";
|
|
9
9
|
import { I as I3, P as P3, a as a11, b as b11, c as c6, S as S3, d as d5 } from "./input-D-6IsAca.js";
|
|
10
|
-
import { A as A3, a as a12, b as b12, C as C4, c as c7, d as d6, e as e5, f as f5, g as g5, h as h3, i as i3, D as D2, j as j3, k as k3, l as l3, m as m3, n as n3, o as o3, p as p3, q as q3, r as r2, s as s2, t as t2, u as u3, v as v2, E as E2, w as w2, x as x2, y as y2, z as z2, B as B4,
|
|
10
|
+
import { A as A3, a as a12, b as b12, C as C4, c as c7, d as d6, e as e5, f as f5, g as g5, h as h3, i as i3, D as D2, j as j3, k as k3, l as l3, m as m3, n as n3, o as o3, p as p3, q as q3, r as r2, s as s2, t as t2, u as u3, v as v2, E as E2, w as w2, x as x2, y as y2, z as z2, B as B4, G as G2, H as H3, I as I4, P as P4, R as R4, F as F4, J as J2, S as S4, K as K2, T as T4, L as L4, M as M4, N as N2, O as O2, Q as Q2, U as U2, V as V3, W as W2, X as X4, Y as Y2 } from "./rich-text-editor-DgF8s7xW.js";
|
|
11
11
|
import { S as S5 } from "./slider-C0JKA9k3.js";
|
|
12
12
|
import { S as S6, a as a13, b as b13, c as c8, d as d7, e as e6, f as f6, g as g6, h as h4, i as i4 } from "./select-En8DkoaQ.js";
|
|
13
13
|
import { T as T5, a as a14, b as b14, c as c9 } from "./tooltip-CTyZCD8h.js";
|
|
@@ -15,15 +15,16 @@ import { D as D3, a as a15, b as b15, c as c10, d as d8, e as e7, f as f7, g as
|
|
|
15
15
|
import { B as B5, P as P5, b as b16 } from "./progress-D9mtsf6j.js";
|
|
16
16
|
import { T as T6 } from "./sonner-g9RIfi35.js";
|
|
17
17
|
import { A as A4, a as a16, b as b17 } from "./avatar-DSBfJMRJ.js";
|
|
18
|
-
import { G as G3, a as a17, b as b18, c as c11, r as r3, u as u4 } from "./google-maps-loader-
|
|
18
|
+
import { G as G3, a as a17, b as b18, c as c11, r as r3, u as u4 } from "./google-maps-loader-CTYySAun.js";
|
|
19
19
|
import { u as u5, a as a18 } from "./use-mobile-CNwiBNxu.js";
|
|
20
|
-
import { A as A5, F as F5, N as N3, P as P6, a as a19, Q as
|
|
20
|
+
import { A as A5, F as F5, N as N3, P as P6, a as a19, Q as Q3 } from "./FeatureCard-Bcb3Zi54.js";
|
|
21
21
|
import { C as C5 } from "./CodeBlock-DuxdtN-l.js";
|
|
22
|
-
import { L as L5, T as T7, X as
|
|
23
|
-
import { X as
|
|
24
|
-
import { H as H4, S as S7 } from "./sidebar-
|
|
22
|
+
import { L as L5, T as T7, X as X5, a as a20 } from "./XerticaXLogo-DzXKZBtG.js";
|
|
23
|
+
import { X as X6 } from "./XerticaOrbe-BGIB1CTK.js";
|
|
24
|
+
import { H as H4, S as S7 } from "./sidebar-CUuOvYhK.js";
|
|
25
|
+
import "react";
|
|
25
26
|
import { L as L6, u as u6, a as a21 } from "./LayoutContext-DVLCsoQn.js";
|
|
26
|
-
import { A as A6, F as F6, V as
|
|
27
|
+
import { A as A6, F as F6, V as V4 } from "./AudioPlayer-DU8zt8-z.js";
|
|
27
28
|
export {
|
|
28
29
|
A2 as Accordion,
|
|
29
30
|
a5 as AccordionContent,
|
|
@@ -170,6 +171,7 @@ export {
|
|
|
170
171
|
F as FormattedDocument,
|
|
171
172
|
G3 as GOOGLE_MAPS_ID,
|
|
172
173
|
a17 as GOOGLE_MAPS_LIBRARIES,
|
|
174
|
+
G2 as GaugeChart,
|
|
173
175
|
b18 as GoogleMapsLoaderProvider,
|
|
174
176
|
c11 as GoogleMapsProvider,
|
|
175
177
|
H4 as Header,
|
|
@@ -229,6 +231,7 @@ export {
|
|
|
229
231
|
aF as PaginationLink,
|
|
230
232
|
aG as PaginationNext,
|
|
231
233
|
aH as PaginationPrevious,
|
|
234
|
+
P4 as PieMetricChart,
|
|
232
235
|
P3 as Popover,
|
|
233
236
|
a11 as PopoverAnchor,
|
|
234
237
|
b11 as PopoverContent,
|
|
@@ -236,7 +239,9 @@ export {
|
|
|
236
239
|
P6 as ProfileCard,
|
|
237
240
|
P5 as Progress,
|
|
238
241
|
a19 as ProjectCard,
|
|
239
|
-
|
|
242
|
+
Q3 as QuickActionCard,
|
|
243
|
+
R4 as RadarMetricChart,
|
|
244
|
+
F4 as RadialBarMetricChart,
|
|
240
245
|
R2 as RadioGroup,
|
|
241
246
|
m as RadioGroupItem,
|
|
242
247
|
aI as Rating,
|
|
@@ -244,7 +249,7 @@ export {
|
|
|
244
249
|
aJ as ResizableHandle,
|
|
245
250
|
aK as ResizablePanel,
|
|
246
251
|
aL as ResizablePanelGroup,
|
|
247
|
-
|
|
252
|
+
J2 as RichTextEditor,
|
|
248
253
|
aM as RouteMap,
|
|
249
254
|
S3 as ScrollArea,
|
|
250
255
|
d5 as ScrollBar,
|
|
@@ -274,25 +279,26 @@ export {
|
|
|
274
279
|
aY as SimpleMap,
|
|
275
280
|
S4 as Skeleton,
|
|
276
281
|
S5 as Slider,
|
|
282
|
+
K2 as SparklineChart,
|
|
277
283
|
aZ as StatsCard,
|
|
278
284
|
a_ as Step,
|
|
279
285
|
a$ as Stepper,
|
|
280
286
|
n as Switch,
|
|
281
287
|
T4 as Table,
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
288
|
+
L4 as TableBody,
|
|
289
|
+
M4 as TableCaption,
|
|
290
|
+
N2 as TableCell,
|
|
291
|
+
O2 as TableFooter,
|
|
292
|
+
Q2 as TableHead,
|
|
293
|
+
U2 as TableHeader,
|
|
294
|
+
V3 as TableRow,
|
|
289
295
|
T2 as Tabs,
|
|
290
296
|
o as TabsContent,
|
|
291
297
|
p as TabsList,
|
|
292
298
|
q as TabsTrigger,
|
|
293
299
|
T as TemplateContent,
|
|
294
300
|
b as TemplatePage,
|
|
295
|
-
|
|
301
|
+
W2 as Textarea,
|
|
296
302
|
T7 as ThemeToggle,
|
|
297
303
|
b0 as Timeline,
|
|
298
304
|
b1 as TimelineContent,
|
|
@@ -311,10 +317,10 @@ export {
|
|
|
311
317
|
c9 as TooltipTrigger,
|
|
312
318
|
ba as TreeView,
|
|
313
319
|
V as VerifyEmailPage,
|
|
314
|
-
|
|
320
|
+
V4 as VideoPlayer,
|
|
315
321
|
X as XerticaAssistant,
|
|
316
|
-
|
|
317
|
-
|
|
322
|
+
X5 as XerticaLogo,
|
|
323
|
+
X6 as XerticaOrbe,
|
|
318
324
|
X2 as XerticaProvider,
|
|
319
325
|
a20 as XerticaXLogo,
|
|
320
326
|
b16 as badgeVariants,
|
|
@@ -325,13 +331,18 @@ export {
|
|
|
325
331
|
bb as navigationMenuTriggerStyle,
|
|
326
332
|
r3 as reloadGoogleMaps,
|
|
327
333
|
bc as toggleVariants,
|
|
328
|
-
|
|
329
|
-
bd as
|
|
334
|
+
X4 as useChart,
|
|
335
|
+
bd as useFileUpload,
|
|
336
|
+
be as useFormField,
|
|
330
337
|
u4 as useGoogleMapsLoader,
|
|
331
338
|
u5 as useIsMobile,
|
|
332
339
|
u6 as useLayout,
|
|
333
340
|
u as useMapLayers,
|
|
334
341
|
a18 as useMobile,
|
|
335
342
|
a21 as useOptionalLayout,
|
|
336
|
-
|
|
343
|
+
bf as usePagination,
|
|
344
|
+
Y2 as useRichTextEditor,
|
|
345
|
+
bg as useStepper,
|
|
346
|
+
bh as useStepperContext,
|
|
347
|
+
bi as useTreeView
|
|
337
348
|
};
|