@intlayer/design-system 9.3.3 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/README.md +3 -3
  2. package/dist/esm/api/hooks/analytics.mjs +6 -5
  3. package/dist/esm/api/hooks/analytics.mjs.map +1 -1
  4. package/dist/esm/api/index.mjs +2 -2
  5. package/dist/esm/api/useAuth/useOAuth2.mjs.map +1 -1
  6. package/dist/esm/api/useIntlayerAPI.mjs +1 -3
  7. package/dist/esm/api/useIntlayerAPI.mjs.map +1 -1
  8. package/dist/esm/api/useUser/index.mjs +1 -1
  9. package/dist/esm/components/Accordion/Accordion.mjs +2 -2
  10. package/dist/esm/components/Accordion/Accordion.mjs.map +1 -1
  11. package/dist/esm/components/Carousel/index.mjs +48 -30
  12. package/dist/esm/components/Carousel/index.mjs.map +1 -1
  13. package/dist/esm/components/ExpandCollapse/ExpandCollapse.mjs +1 -1
  14. package/dist/esm/components/ExpandCollapse/ExpandCollapse.mjs.map +1 -1
  15. package/dist/esm/components/Form/elements/OTPElement.mjs +4 -4
  16. package/dist/esm/components/Form/elements/OTPElement.mjs.map +1 -1
  17. package/dist/esm/components/Link/Link.mjs +10 -5
  18. package/dist/esm/components/Link/Link.mjs.map +1 -1
  19. package/dist/esm/components/LocaleSwitcherContentDropDown/LocaleSwitcherContent.mjs +1 -1
  20. package/dist/esm/components/Modal/Modal.mjs +2 -2
  21. package/dist/esm/components/Navbar/MobileNavbar.mjs +25 -3
  22. package/dist/esm/components/Navbar/MobileNavbar.mjs.map +1 -1
  23. package/dist/esm/components/Pagination/Pagination.mjs +4 -4
  24. package/dist/esm/components/Pagination/Pagination.mjs.map +1 -1
  25. package/dist/esm/components/Pattern/GridDistortionPattern.mjs +3 -2
  26. package/dist/esm/components/Pattern/GridDistortionPattern.mjs.map +1 -1
  27. package/dist/esm/components/Popover/dynamic.mjs +68 -24
  28. package/dist/esm/components/Popover/dynamic.mjs.map +1 -1
  29. package/dist/esm/components/RightDrawer/RightDrawer.mjs +34 -10
  30. package/dist/esm/components/RightDrawer/RightDrawer.mjs.map +1 -1
  31. package/dist/esm/components/RightDrawer/index.mjs +2 -2
  32. package/dist/esm/components/RightDrawer/useRightDrawer.mjs +37 -5
  33. package/dist/esm/components/RightDrawer/useRightDrawer.mjs.map +1 -1
  34. package/dist/esm/components/SwitchSelector/useSwitchSelector.mjs +2 -2
  35. package/dist/esm/components/SwitchSelector/useSwitchSelector.mjs.map +1 -1
  36. package/dist/esm/components/Tab/Tab.mjs +21 -4
  37. package/dist/esm/components/Tab/Tab.mjs.map +1 -1
  38. package/dist/esm/components/TabSelector/TabSelector.mjs +2 -2
  39. package/dist/esm/components/TabSelector/TabSelector.mjs.map +1 -1
  40. package/dist/esm/components/TechLogo/TechLogo.mjs +1 -0
  41. package/dist/esm/components/TechLogo/TechLogo.mjs.map +1 -1
  42. package/dist/esm/components/TechLogo/logos/Elysia.mjs +62 -0
  43. package/dist/esm/components/TechLogo/logos/Elysia.mjs.map +1 -0
  44. package/dist/esm/components/TechLogo/techLogos.mjs +3 -1
  45. package/dist/esm/components/TechLogo/techLogos.mjs.map +1 -1
  46. package/dist/esm/components/ThemeSwitcherDropDown/DesktopThemeSwitcher.mjs +10 -18
  47. package/dist/esm/components/ThemeSwitcherDropDown/DesktopThemeSwitcher.mjs.map +1 -1
  48. package/dist/esm/components/ThemeSwitcherDropDown/MobileThemeSwitcher.mjs +14 -13
  49. package/dist/esm/components/ThemeSwitcherDropDown/MobileThemeSwitcher.mjs.map +1 -1
  50. package/dist/esm/components/index.mjs +2 -2
  51. package/dist/esm/hooks/index.mjs +9 -9
  52. package/dist/esm/hooks/useItemSelector.mjs +12 -9
  53. package/dist/esm/hooks/useItemSelector.mjs.map +1 -1
  54. package/dist/esm/hooks/useScrollBlockage/index.mjs +9 -10
  55. package/dist/esm/hooks/useScrollBlockage/index.mjs.map +1 -1
  56. package/dist/esm/hooks/useScrollDetection.mjs +15 -2
  57. package/dist/esm/hooks/useScrollDetection.mjs.map +1 -1
  58. package/dist/esm/hooks/useScrollY.mjs +64 -45
  59. package/dist/esm/hooks/useScrollY.mjs.map +1 -1
  60. package/dist/esm/hooks/useStickToBottom.mjs +69 -0
  61. package/dist/esm/hooks/useStickToBottom.mjs.map +1 -0
  62. package/dist/esm/providers/ThemeProvider.mjs +143 -0
  63. package/dist/esm/providers/ThemeProvider.mjs.map +1 -0
  64. package/dist/esm/providers/index.mjs +2 -1
  65. package/dist/esm/routes.mjs +4 -1
  66. package/dist/esm/routes.mjs.map +1 -1
  67. package/dist/esm/utils/index.mjs +3 -1
  68. package/dist/esm/utils/observeScrollExtent.mjs +39 -0
  69. package/dist/esm/utils/observeScrollExtent.mjs.map +1 -0
  70. package/dist/esm/utils/scheduleFrameTask.mjs +44 -0
  71. package/dist/esm/utils/scheduleFrameTask.mjs.map +1 -0
  72. package/dist/types/api/hooks/analytics.d.ts +5 -3
  73. package/dist/types/api/hooks/analytics.d.ts.map +1 -1
  74. package/dist/types/api/useIntlayerAPI.d.ts +12 -0
  75. package/dist/types/api/useIntlayerAPI.d.ts.map +1 -1
  76. package/dist/types/components/Carousel/index.d.ts.map +1 -1
  77. package/dist/types/components/Navbar/MobileNavbar.d.ts.map +1 -1
  78. package/dist/types/components/Popover/dynamic.d.ts.map +1 -1
  79. package/dist/types/components/RightDrawer/RightDrawer.d.ts.map +1 -1
  80. package/dist/types/components/RightDrawer/index.d.ts +2 -2
  81. package/dist/types/components/RightDrawer/useRightDrawer.d.ts +34 -1
  82. package/dist/types/components/RightDrawer/useRightDrawer.d.ts.map +1 -1
  83. package/dist/types/components/Tab/Tab.d.ts.map +1 -1
  84. package/dist/types/components/TechLogo/TechLogo.d.ts.map +1 -1
  85. package/dist/types/components/TechLogo/logos/Elysia.d.ts +6 -0
  86. package/dist/types/components/TechLogo/logos/Elysia.d.ts.map +1 -0
  87. package/dist/types/components/TechLogo/techLogos.d.ts +3 -2
  88. package/dist/types/components/TechLogo/types.d.ts +1 -1
  89. package/dist/types/components/ThemeSwitcherDropDown/DesktopThemeSwitcher.d.ts +1 -1
  90. package/dist/types/components/ThemeSwitcherDropDown/DesktopThemeSwitcher.d.ts.map +1 -1
  91. package/dist/types/components/ThemeSwitcherDropDown/MobileThemeSwitcher.d.ts +1 -1
  92. package/dist/types/components/ThemeSwitcherDropDown/MobileThemeSwitcher.d.ts.map +1 -1
  93. package/dist/types/components/ThemeSwitcherDropDown/types.d.ts +3 -1
  94. package/dist/types/components/ThemeSwitcherDropDown/types.d.ts.map +1 -1
  95. package/dist/types/components/index.d.ts +2 -2
  96. package/dist/types/hooks/index.d.ts +2 -2
  97. package/dist/types/hooks/useItemSelector.d.ts +2 -0
  98. package/dist/types/hooks/useItemSelector.d.ts.map +1 -1
  99. package/dist/types/hooks/useScrollBlockage/index.d.ts.map +1 -1
  100. package/dist/types/hooks/useScrollDetection.d.ts.map +1 -1
  101. package/dist/types/hooks/useScrollY.d.ts +10 -0
  102. package/dist/types/hooks/useScrollY.d.ts.map +1 -1
  103. package/dist/types/hooks/useStickToBottom.d.ts +41 -0
  104. package/dist/types/hooks/useStickToBottom.d.ts.map +1 -0
  105. package/dist/types/providers/ThemeProvider.d.ts +41 -0
  106. package/dist/types/providers/ThemeProvider.d.ts.map +1 -0
  107. package/dist/types/providers/index.d.ts +2 -1
  108. package/dist/types/routes.d.ts +4 -1
  109. package/dist/types/routes.d.ts.map +1 -1
  110. package/dist/types/utils/index.d.ts +3 -1
  111. package/dist/types/utils/observeScrollExtent.d.ts +22 -0
  112. package/dist/types/utils/observeScrollExtent.d.ts.map +1 -0
  113. package/dist/types/utils/scheduleFrameTask.d.ts +25 -0
  114. package/dist/types/utils/scheduleFrameTask.d.ts.map +1 -0
  115. package/package.json +24 -24
  116. package/dist/esm/hooks/useIsDarkMode.mjs +0 -17
  117. package/dist/esm/hooks/useIsDarkMode.mjs.map +0 -1
  118. package/dist/types/hooks/useIsDarkMode.d.ts +0 -5
  119. package/dist/types/hooks/useIsDarkMode.d.ts.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"routes.mjs","names":[],"sources":["../../src/routes.ts"],"sourcesContent":["// ============================================================\n// Domains\n// ============================================================\nexport const App_Domain = 'app.intlayer.org' as const;\nexport const Website_Domain = 'intlayer.org' as const;\nexport const Showcase_Domain = 'showcase.intlayer.org' as const;\nexport const Backend_Domain = 'back.intlayer.org' as const;\nexport const Mcp_Domain = 'mcp.intlayer.org' as const;\n\n// ============================================================\n// App paths — relative (app.intlayer.org)\n// ============================================================\nexport const App_Home_Path = '/' as const;\nexport const App_NotFound_Path = '/404' as const;\n\nexport const App_Dashboard_Editor_Path = '/editor' as const;\nexport const App_Dashboard_Translate_Path = '/translate' as const;\nexport const App_Dashboard_Dictionaries_Path = '/dictionary' as const;\nexport const App_Dashboard_Projects_Path = '/projects' as const;\nexport const App_Dashboard_Tags_Path = '/tags' as const;\nexport const App_Dashboard_Organization_Path = '/organization' as const;\nexport const App_Dashboard_Profile_Path = '/profile' as const;\nexport const App_Dashboard_IDE_Path = '/ide' as const;\nexport const App_Dashboard_Scanner_Path = '/scanner' as const;\nexport const App_Dashboard_Assets_Path = '/assets' as const;\nexport const App_Dashboard_Analytics_Path = '/analytics' as const;\n\nexport const App_Pricing_Path = '/pricing' as const;\nexport const App_Affiliation_Path = '/affiliation' as const;\n\nexport const App_Demo_Path = '/demo' as const;\nexport const App_Init_Path = '/init' as const;\n\nexport const App_ReviewerMarketplace_Path = '/find-reviewer' as const;\nexport const App_ReviewerMarketplace_Dashboard_Path =\n '/find-reviewer/dashboard' as const;\nexport const App_ReviewerMarketplace_Reviewer_Path =\n '/find-reviewer/$reviewerId' as const;\nexport const App_ReviewerMarketplace_Dashboard_Mission_Path =\n '/find-reviewer/dashboard/mission/$missionId' as const;\n\nexport const getAppReviewerProfileRoute = (reviewerId: string) =>\n `/find-reviewer/${reviewerId}` as const;\nexport const getAppReviewerMissionRoute = (missionId: string) =>\n `/find-reviewer/dashboard/mission/${missionId}` as const;\n\nexport const App_Auth_SignIn_Path = '/auth/login' as const;\nexport const App_Auth_SignUp_Path = '/auth/register' as const;\nexport const App_Auth_TwoFactor_Path = '/auth/2fa' as const;\nexport const App_Auth_Demo_Path = '/auth/demo' as const;\nexport const App_Auth_AskResetPassword_Path =\n '/auth/password/ask-reset' as const;\nexport const App_Auth_ResetPassword_Path = '/auth/password/reset' as const;\nexport const App_Auth_ChangePassword_Path = '/auth/password/change' as const;\n\nexport const App_Admin_Path = '/admin' as const;\nexport const App_Admin_Users_Path = '/admin/users' as const;\nexport const App_Admin_Organizations_Path = '/admin/organizations' as const;\nexport const App_Admin_Projects_Path = '/admin/projects' as const;\nexport const App_Admin_Dashboard_Path = '/admin/dashboard' as const;\nexport const App_Admin_Management_Path = '/admin/management' as const;\nexport const App_Admin_Discussions_Path = '/admin/discussions' as const;\nexport const App_Admin_Affiliate_Path = '/admin/affiliate' as const;\nexport const getAppAdminAffiliateRoute = (id: string) =>\n `${App_Admin_Affiliate_Path}/${id}` as const;\nexport const App_Admin_PromoCodes_Path = '/admin/promo-code' as const;\nexport const getAppAdminPromoCodeRoute = (id: string) =>\n `${App_Admin_PromoCodes_Path}/${id}` as const;\n\nexport const App_Admin_Reviewers_Path = '/admin/reviewers' as const;\nexport const getAppAdminReviewerRoute = (id: string) =>\n `${App_Admin_Reviewers_Path}/${id}` as const;\n\nexport const App_Onboarding_Path = '/onboarding' as const;\n\nexport const getAppAdminUserRoute = (id: string) =>\n `${App_Admin_Users_Path}/${id}` as const;\nexport const getAppAdminOrganizationRoute = (id: string) =>\n `${App_Admin_Organizations_Path}/${id}` as const;\nexport const getAppAdminProjectRoute = (id: string) =>\n `${App_Admin_Projects_Path}/${id}` as const;\nexport const getAppOnboardingFlowRoute = (step: string) =>\n `${App_Onboarding_Path}/${step}` as const;\n\n// ============================================================\n// App absolute URLs — https://app.intlayer.org\n// ============================================================\nexport const App_Dashboard = `https://${App_Domain}` as const;\nexport const App_Dashboard_Editor =\n `https://${App_Domain}${App_Dashboard_Editor_Path}` as const;\nexport const App_Dashboard_Translate =\n `https://${App_Domain}${App_Dashboard_Translate_Path}` as const;\nexport const App_Dashboard_Dictionaries =\n `https://${App_Domain}${App_Dashboard_Dictionaries_Path}` as const;\nexport const App_Dashboard_Projects =\n `https://${App_Domain}${App_Dashboard_Projects_Path}` as const;\nexport const App_Dashboard_Tags =\n `https://${App_Domain}${App_Dashboard_Tags_Path}` as const;\nexport const App_Dashboard_Organization =\n `https://${App_Domain}${App_Dashboard_Organization_Path}` as const;\nexport const App_Dashboard_Profile =\n `https://${App_Domain}${App_Dashboard_Profile_Path}` as const;\nexport const App_Dashboard_IDE =\n `https://${App_Domain}${App_Dashboard_IDE_Path}` as const;\nexport const App_Dashboard_Scanner =\n `https://${App_Domain}${App_Dashboard_Scanner_Path}` as const;\nexport const App_Dashboard_Analytics =\n `https://${App_Domain}${App_Dashboard_Analytics_Path}` as const;\n\nexport const App_Pricing = `https://${App_Domain}${App_Pricing_Path}` as const;\nexport const App_Affiliation =\n `https://${App_Domain}${App_Affiliation_Path}` as const;\nexport const App_Demo = `https://${App_Domain}${App_Demo_Path}` as const;\n\nexport const App_ReviewerMarketplace =\n `https://${App_Domain}${App_ReviewerMarketplace_Path}` as const;\nexport const App_ReviewerMarketplace_Dashboard =\n `https://${App_Domain}${App_ReviewerMarketplace_Dashboard_Path}` as const;\n\nexport const App_Auth_SignIn =\n `https://${App_Domain}${App_Auth_SignIn_Path}` as const;\nexport const App_Auth_SignUp =\n `https://${App_Domain}${App_Auth_SignUp_Path}` as const;\nexport const App_Auth_TwoFactor =\n `https://${App_Domain}${App_Auth_TwoFactor_Path}` as const;\nexport const App_Auth_AskResetPassword =\n `https://${App_Domain}${App_Auth_AskResetPassword_Path}` as const;\nexport const App_Auth_ResetPassword =\n `https://${App_Domain}${App_Auth_ResetPassword_Path}` as const;\nexport const App_Auth_ChangePassword =\n `https://${App_Domain}${App_Auth_ChangePassword_Path}` as const;\n\nexport const App_Admin = `https://${App_Domain}${App_Admin_Path}` as const;\nexport const App_Admin_Users =\n `https://${App_Domain}${App_Admin_Users_Path}` as const;\nexport const App_Admin_Organizations =\n `https://${App_Domain}${App_Admin_Organizations_Path}` as const;\nexport const App_Admin_Projects =\n `https://${App_Domain}${App_Admin_Projects_Path}` as const;\nexport const App_Admin_Dashboard =\n `https://${App_Domain}${App_Admin_Dashboard_Path}` as const;\nexport const App_Admin_Management =\n `https://${App_Domain}${App_Admin_Management_Path}` as const;\nexport const App_Admin_Discussions =\n `https://${App_Domain}${App_Admin_Discussions_Path}` as const;\nexport const App_Admin_Affiliate =\n `https://${App_Domain}${App_Admin_Affiliate_Path}` as const;\nexport const App_Admin_PromoCodes =\n `https://${App_Domain}${App_Admin_PromoCodes_Path}` as const;\nexport const App_Admin_Reviewers =\n `https://${App_Domain}${App_Admin_Reviewers_Path}` as const;\n\nexport const App_Onboarding =\n `https://${App_Domain}${App_Onboarding_Path}` as const;\n\nexport const getAppAdminUserAbsoluteRoute = (id: string) =>\n `https://${App_Domain}${App_Admin_Users_Path}/${id}` as const;\nexport const getAppAdminOrganizationAbsoluteRoute = (id: string) =>\n `https://${App_Domain}${App_Admin_Organizations_Path}/${id}` as const;\nexport const getAppAdminProjectAbsoluteRoute = (id: string) =>\n `https://${App_Domain}${App_Admin_Projects_Path}/${id}` as const;\nexport const getAppOnboardingFlowAbsoluteRoute = (\n step: string,\n plan: string,\n period?: string\n) =>\n period\n ? `https://${App_Domain}${App_Onboarding_Path}/${step}/${plan}/${period}`\n : (`https://${App_Domain}${App_Onboarding_Path}/${step}/${plan}` as const);\n\n// ============================================================\n// Website paths — relative (intlayer.org)\n// ============================================================\nexport const Website_Home_Path = '/' as const;\nexport const Website_CMS_Path = '/cms' as const;\nexport const Website_TMS_Path = '/tms' as const;\nexport const Website_Translate_Path = '/translate' as const;\nexport const Website_Markdown_Preview_Path = '/markdown' as const;\nexport const Website_Demo_Path = '/demo' as const;\nexport const Website_Playground_Path = '/playground' as const;\nexport const Website_NotFound_Path = '/404' as const;\nexport const Website_Changelog_Path = '/changelog' as const;\nexport const Website_Scanner_Path = '/i18n-seo-scanner' as const;\n\nexport const Website_Doc_Root_Path = '/doc' as const;\nexport const Website_Doc_Path = '/doc/get-started' as const;\nexport const Website_Doc_Why_Path = '/doc/why' as const;\nexport const Website_Doc_Search_Path = '/doc/search' as const;\nexport const Website_Doc_Chat_Path = '/doc/chat' as const;\nexport const Website_Doc_IntlayerVisualEditor_Path =\n '/doc/concept/editor' as const;\nexport const Website_Doc_IntlayerCMS_Path = '/doc/concept/cms' as const;\nexport const Website_Doc_SelfHosting_Path = '/doc/self-hosting' as const;\n\nexport const Website_ReleasesV6_Path = '/doc/releases/v6' as const;\nexport const Website_ReleasesV7_Path = '/doc/releases/v7' as const;\nexport const Website_ReleasesV8_Path = '/doc/releases/v8' as const;\nexport const Website_ReleasesV9_Path = '/doc/releases/v9' as const;\nexport const Website_Doc_Environment_NextJS_Path =\n '/doc/environment/nextjs' as const;\nexport const Website_Doc_Environment_NextJS_16_Path =\n '/doc/environment/nextjs' as const;\nexport const Website_Doc_Environment_NextJS_15_Path =\n '/doc/environment/nextjs/15' as const;\nexport const Website_Doc_Environment_NextJS_14_Path =\n '/doc/environment/nextjs/14' as const;\nexport const Website_Doc_Environment_CRA_Path =\n '/doc/environment/create-react-app' as const;\nexport const Website_Doc_Environment_Astro_Path =\n '/doc/environment/astro' as const;\nexport const Website_Doc_Environment_ViteAndReact_Path =\n '/doc/environment/vite-and-react' as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7_Path =\n '/doc/environment/vite-and-react/react-router-v7' as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path =\n '/doc/environment/vite-and-react/react-router-v7-fs-routes' as const;\nexport const Website_Doc_Environment_Tanstack_Path =\n '/doc/environment/tanstack-start' as const;\nexport const Website_Doc_Environment_Lit_Path =\n '/doc/environment/vite-and-lit' as const;\nexport const Website_Doc_Environment_Nodejs_Path = '/doc/concept/cli' as const;\nexport const Website_Doc_Environment_Adonis_Path =\n '/doc/environment/adonisjs' as const;\nexport const Website_Doc_Environment_ViteAndVue_Path =\n '/doc/environment/vite-and-vue' as const;\nexport const Website_Doc_Environment_ViteAndSolid_Path =\n '/doc/environment/vite-and-solid' as const;\nexport const Website_Doc_Environment_ViteAndSvelte_Path =\n '/doc/environment/vite-and-svelte' as const;\nexport const Website_Doc_Environment_ViteAndPreact_Path =\n '/doc/environment/vite-and-preact' as const;\nexport const Website_Doc_Environment_NuxtAndVue_Path =\n '/doc/environment/nuxt-and-vue' as const;\nexport const Website_Doc_Intlayer_with_Lynx_and_React_Path =\n '/doc/environment/lynx-and-react' as const;\nexport const Website_Doc_Environment_Angular_Path =\n '/doc/environment/angular' as const;\nexport const Website_Doc_Environment_ReactNativeAndExpo_Path =\n '/doc/environment/react-native-and-expo' as const;\nexport const Website_Doc_Environment_Lynx_Path =\n '/doc/environment/lynx-and-react' as const;\nexport const Website_Doc_Environment_Express_Path =\n '/doc/environment/express' as const;\nexport const Website_Doc_Environment_NestJS_Path =\n '/doc/environment/nest' as const;\nexport const Website_Doc_Environment_Fastify_Path =\n '/doc/environment/fastify' as const;\nexport const Website_Doc_Environment_Hono_Path =\n '/doc/environment/hono' as const;\n\nexport const Website_Doc_CLI_Fill_Path = '/doc/concept/cli/fill' as const;\nexport const Website_Doc_CLI_Translate_Path =\n '/doc/concept/cli/doc-translate' as const;\nexport const Website_Doc_CLI_Review_Path =\n '/doc/concept/cli/doc-review' as const;\n\nexport const Website_Benchmark_Path = '/doc/benchmark' as const;\nexport const Website_Benchmark_NextJS_Path = '/doc/benchmark/nextjs' as const;\nexport const Website_Benchmark_Tanstack_Path =\n '/doc/benchmark/tanstack' as const;\n\nexport const Website_Doc_MCP_Path = '/doc/mcp-server' as const;\n\nexport const Website_Blog_Root_Path = '/blog' as const;\nexport const Website_Blog_Path = '/blog' as const;\nexport const Website_Blog_Search_Path = '/blog' as const;\nexport const Website_Blog_What_is_i18n_Path =\n '/blog/what-is-internationalization' as const;\n\nexport const Website_FrequentQuestions_Path = '/frequent-questions' as const;\nexport const Website_PrivacyPolicy_Path = '/privacy-notice' as const;\nexport const Website_TermsOfService_Path = '/terms-of-service' as const;\nexport const Website_Contributors_Path = '/contributors' as const;\n\n// ============================================================\n// Website absolute URLs — https://intlayer.org\n// ============================================================\nexport const Website_Home =\n `https://${Website_Domain}${Website_Home_Path}` as const;\nexport const Website_CMS =\n `https://${Website_Domain}${Website_CMS_Path}` as const;\nexport const Website_TMS =\n `https://${Website_Domain}${Website_TMS_Path}` as const;\nexport const Website_Translate =\n `https://${Website_Domain}${Website_Translate_Path}` as const;\nexport const Website_Markdown_Preview =\n `https://${Website_Domain}${Website_Markdown_Preview_Path}` as const;\nexport const Website_Demo =\n `https://${Website_Domain}${Website_Demo_Path}` as const;\nexport const Website_Playground =\n `https://${Website_Domain}${Website_Playground_Path}` as const;\nexport const Website_NotFound =\n `https://${Website_Domain}${Website_NotFound_Path}` as const;\nexport const Website_Changelog =\n `https://${Website_Domain}${Website_Changelog_Path}` as const;\nexport const Website_Scanner =\n `https://${Website_Domain}${Website_Scanner_Path}` as const;\nexport const Website_Benchmark =\n `https://${Website_Domain}${Website_Benchmark_Path}` as const;\nexport const Website_Benchmark_NextJS =\n `https://${Website_Domain}${Website_Benchmark_NextJS_Path}` as const;\nexport const Website_Benchmark_Tanstack =\n `https://${Website_Domain}${Website_Benchmark_Tanstack_Path}` as const;\n\nexport const Website_Doc_Root =\n `https://${Website_Domain}${Website_Doc_Root_Path}` as const;\nexport const Website_Doc =\n `https://${Website_Domain}${Website_Doc_Path}` as const;\nexport const Website_Doc_Why =\n `https://${Website_Domain}${Website_Doc_Why_Path}` as const;\nexport const Website_Doc_Search =\n `https://${Website_Domain}${Website_Doc_Search_Path}` as const;\nexport const Website_Doc_Chat =\n `https://${Website_Domain}${Website_Doc_Chat_Path}` as const;\nexport const Website_Doc_IntlayerVisualEditor =\n `https://${Website_Domain}${Website_Doc_IntlayerVisualEditor_Path}` as const;\nexport const Website_Doc_IntlayerCMS =\n `https://${Website_Domain}${Website_Doc_IntlayerCMS_Path}` as const;\nexport const Website_Doc_SelfHosting =\n `https://${Website_Domain}${Website_Doc_SelfHosting_Path}` as const;\n\nexport const Website_ReleasesV6 =\n `https://${Website_Domain}${Website_ReleasesV6_Path}` as const;\nexport const Website_ReleasesV7 =\n `https://${Website_Domain}${Website_ReleasesV7_Path}` as const;\nexport const Website_ReleasesV8 =\n `https://${Website_Domain}${Website_ReleasesV8_Path}` as const;\nexport const Website_Doc_Environment_NextJS =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_Path}` as const;\nexport const Website_Doc_Environment_NextJS_16 =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_16_Path}` as const;\nexport const Website_Doc_Environment_NextJS_15 =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_15_Path}` as const;\nexport const Website_Doc_Environment_NextJS_14 =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_14_Path}` as const;\nexport const Website_Doc_Environment_CRA =\n `https://${Website_Domain}${Website_Doc_Environment_CRA_Path}` as const;\nexport const Website_Doc_Environment_Astro =\n `https://${Website_Domain}${Website_Doc_Environment_Astro_Path}` as const;\nexport const Website_Doc_Environment_ViteAndReact =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndReact_Path}` as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7 =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndReact_ReactRouterV7_Path}` as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path}` as const;\nexport const Website_Doc_Environment_Tanstack =\n `https://${Website_Domain}${Website_Doc_Environment_Tanstack_Path}` as const;\nexport const Website_Doc_Environment_Lit =\n `https://${Website_Domain}${Website_Doc_Environment_Lit_Path}` as const;\nexport const Website_Doc_Environment_Nodejs =\n `https://${Website_Domain}${Website_Doc_Environment_Nodejs_Path}` as const;\nexport const Website_Doc_Environment_Adonis =\n `https://${Website_Domain}${Website_Doc_Environment_Adonis_Path}` as const;\nexport const Website_Doc_Environment_ViteAndVue =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndVue_Path}` as const;\nexport const Website_Doc_Environment_ViteAndSolid =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndSolid_Path}` as const;\nexport const Website_Doc_Environment_ViteAndSvelte =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndSvelte_Path}` as const;\nexport const Website_Doc_Environment_ViteAndPreact =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndPreact_Path}` as const;\nexport const Website_Doc_Environment_NuxtAndVue =\n `https://${Website_Domain}${Website_Doc_Environment_NuxtAndVue_Path}` as const;\nexport const Website_Doc_Intlayer_with_Lynx_and_React =\n `https://${Website_Domain}${Website_Doc_Intlayer_with_Lynx_and_React_Path}` as const;\nexport const Website_Doc_Environment_Angular =\n `https://${Website_Domain}${Website_Doc_Environment_Angular_Path}` as const;\nexport const Website_Doc_Environment_ReactNativeAndExpo =\n `https://${Website_Domain}${Website_Doc_Environment_ReactNativeAndExpo_Path}` as const;\nexport const Website_Doc_Environment_Lynx =\n `https://${Website_Domain}${Website_Doc_Environment_Lynx_Path}` as const;\nexport const Website_Doc_Environment_Express =\n `https://${Website_Domain}${Website_Doc_Environment_Express_Path}` as const;\nexport const Website_Doc_Environment_NestJS =\n `https://${Website_Domain}${Website_Doc_Environment_NestJS_Path}` as const;\nexport const Website_Doc_Environment_Fastify =\n `https://${Website_Domain}${Website_Doc_Environment_Fastify_Path}` as const;\nexport const Website_Doc_Environment_Hono =\n `https://${Website_Domain}${Website_Doc_Environment_Hono_Path}` as const;\n\nexport const Website_Doc_CLI_Fill =\n `https://${Website_Domain}${Website_Doc_CLI_Fill_Path}` as const;\nexport const Website_Doc_CLI_Translate =\n `https://${Website_Domain}${Website_Doc_CLI_Translate_Path}` as const;\nexport const Website_Doc_CLI_Review =\n `https://${Website_Domain}${Website_Doc_CLI_Review_Path}` as const;\n\nexport const Website_Doc_MCP =\n `https://${Website_Domain}${Website_Doc_MCP_Path}` as const;\n\nexport const Website_Blog_Root =\n `https://${Website_Domain}${Website_Blog_Root_Path}` as const;\nexport const Website_Blog =\n `https://${Website_Domain}${Website_Blog_Path}` as const;\nexport const Website_Blog_Search =\n `https://${Website_Domain}${Website_Blog_Search_Path}` as const;\nexport const Website_Blog_What_is_i18n =\n `https://${Website_Domain}${Website_Blog_What_is_i18n_Path}` as const;\n\nexport const Website_FrequentQuestions =\n `https://${Website_Domain}${Website_FrequentQuestions_Path}` as const;\nexport const Website_PrivacyPolicy =\n `https://${Website_Domain}${Website_PrivacyPolicy_Path}` as const;\nexport const Website_TermsOfService =\n `https://${Website_Domain}${Website_TermsOfService_Path}` as const;\nexport const Website_Contributors =\n `https://${Website_Domain}${Website_Contributors_Path}` as const;\n\n// ============================================================\n// Doc app paths — relative (served under intlayer.org/doc/*)\n// ============================================================\nexport const Doc_Root_Path = '/doc' as const;\nexport const Doc_Path = '/get-started' as const;\nexport const Doc_Why_Path = '/why' as const;\nexport const Doc_Search_Path = '/search' as const;\nexport const Doc_Chat_Path = '/chat' as const;\nexport const Doc_IntlayerVisualEditor_Path = '/concept/editor' as const;\nexport const Doc_IntlayerCMS_Path = '/concept/cms' as const;\n\nexport const Doc_ReleasesV6_Path = '/releases/v6' as const;\nexport const Doc_ReleasesV7_Path = '/releases/v7' as const;\nexport const Doc_ReleasesV8_Path = '/releases/v8' as const;\nexport const Doc_Environment_NextJS_Path = '/environment/nextjs' as const;\nexport const Doc_Environment_NextJS_16_Path = '/environment/nextjs' as const;\nexport const Doc_Environment_NextJS_15_Path = '/environment/nextjs/15' as const;\nexport const Doc_Environment_NextJS_14_Path = '/environment/nextjs/14' as const;\nexport const Doc_Environment_CRA_Path =\n '/environment/create-react-app' as const;\nexport const Doc_Environment_Astro_Path = '/environment/astro' as const;\nexport const Doc_Environment_ViteAndReact_Path =\n '/environment/vite-and-react' as const;\nexport const Doc_Environment_ViteAndReact_ReactRouterV7_Path =\n '/environment/vite-and-react/react-router-v7' as const;\nexport const Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path =\n '/environment/vite-and-react/react-router-v7-fs-routes' as const;\nexport const Doc_Environment_Tanstack_Path =\n '/environment/tanstack-start' as const;\nexport const Doc_Environment_Lit_Path = '/environment/vite-and-lit' as const;\nexport const Doc_Environment_Nodejs_Path = '/concept/cli' as const;\nexport const Doc_Environment_Adonis_Path = '/environment/adonisjs' as const;\nexport const Doc_Environment_ViteAndVue_Path =\n '/environment/vite-and-vue' as const;\nexport const Doc_Environment_ViteAndSolid_Path =\n '/environment/vite-and-solid' as const;\nexport const Doc_Environment_ViteAndSvelte_Path =\n '/environment/vite-and-svelte' as const;\nexport const Doc_Environment_ViteAndPreact_Path =\n '/environment/vite-and-preact' as const;\nexport const Doc_Environment_NuxtAndVue_Path =\n '/environment/nuxt-and-vue' as const;\nexport const Doc_Intlayer_with_Lynx_and_React_Path =\n '/environment/lynx-and-react' as const;\nexport const Doc_Environment_Angular_Path = '/environment/angular' as const;\nexport const Doc_Environment_ReactNativeAndExpo_Path =\n '/environment/react-native-and-expo' as const;\nexport const Doc_Environment_Lynx_Path = '/environment/lynx-and-react' as const;\nexport const Doc_Environment_Express_Path = '/environment/express' as const;\nexport const Doc_Environment_NestJS_Path = '/environment/nest' as const;\nexport const Doc_Environment_Fastify_Path = '/environment/fastify' as const;\nexport const Doc_Environment_Hono_Path = '/environment/hono' as const;\n\nexport const Doc_CLI_Fill_Path = '/concept/cli/fill' as const;\nexport const Doc_CLI_Translate_Path = '/concept/cli/doc-translate' as const;\nexport const Doc_CLI_Review_Path = '/concept/cli/doc-review' as const;\n\nexport const Doc_MCP_Path = '/mcp-server' as const;\n\nexport const Doc_Blog_Root_Path = '/blog' as const;\nexport const Doc_Blog_Path = '/blog' as const;\nexport const Doc_Blog_Search_Path = '/blog' as const;\nexport const Doc_Blog_What_is_i18n_Path =\n '/blog/what-is-internationalization' as const;\n\nexport const Doc_FrequentQuestions_Path = '/frequent-questions' as const;\nexport const Doc_PrivacyPolicy_Path = '/privacy-notice' as const;\nexport const Doc_TermsOfService_Path = '/terms-of-service' as const;\nexport const Doc_Contributors_Path = '/contributors' as const;\nexport const Doc_Showcase_Path = '/' as const;\nexport const Doc_ShowcaseSubmit_Path = '/submit' as const;\n\n// ============================================================\n// Showcase paths — relative (showcase.intlayer.org)\n// ============================================================\nexport const Showcase_Root_Path = '/' as const;\nexport const Showcase_Submit_Path = '/submit' as const;\n\n// ============================================================\n// Showcase absolute URLs — https://showcase.intlayer.org\n// ============================================================\nexport const Showcase_Root = `https://${Showcase_Domain}` as const;\nexport const Showcase_Submit =\n `https://${Showcase_Domain}${Showcase_Submit_Path}` as const;\n\n// ============================================================\n// Backend absolute URLs — https://back.intlayer.org\n// ============================================================\nexport const Backend_Root = `https://${Backend_Domain}` as const;\nexport const Backend_Health = `https://${Backend_Domain}/health` as const;\nexport const Backend_OAuth2_Token =\n `https://${Backend_Domain}/oauth2/token` as const;\n\n// ============================================================\n// MCP absolute URLs — https://mcp.intlayer.org\n// ============================================================\nexport const Mcp_Root = `https://${Mcp_Domain}` as const;\nexport const Mcp_Sse = `https://${Mcp_Domain}/sse` as const;\n\n// ============================================================\n// Agent discovery paths — relative\n//\n// Well-known documents that let AI agents discover the site's APIs,\n// skills and authentication without scraping HTML.\n// ============================================================\nexport const WellKnown_ApiCatalog_Path = '/.well-known/api-catalog' as const;\nexport const WellKnown_OAuthProtectedResource_Path =\n '/.well-known/oauth-protected-resource' as const;\nexport const WellKnown_OAuthAuthorizationServer_Path =\n '/.well-known/oauth-authorization-server' as const;\nexport const WellKnown_McpServerCard_Path =\n '/.well-known/mcp/server-card.json' as const;\nexport const WellKnown_AgentSkills_Path = '/.well-known/agent-skills' as const;\nexport const WellKnown_AgentSkillsIndex_Path =\n `${WellKnown_AgentSkills_Path}/index.json` as const;\nexport const AuthMd_Path = '/auth.md' as const;\nexport const LlmsTxt_Path = '/llms.txt' as const;\n\n// ============================================================\n// External links\n// ============================================================\nexport const External_Github =\n 'https://github.com/aymericzip/intlayer' as const;\n\nexport const External_DockerHub_SelfHost =\n 'https://hub.docker.com/r/aymericzip/intlayer-selfhost' as const;\n\nexport const External_Github_i18n_benchmark =\n 'https://github.com/intlayer-org/benchmark-i18n' as const;\n\nexport const External_Discord = 'https://discord.gg/7uxamYVeCk' as const;\nexport const External_LinkedIn =\n 'https://www.linkedin.com/company/intlayerorg/' as const;\nexport const External_AI_Landing_Page = 'https://ai.intlayer.org' as const;\nexport const External_ShowcaseApp = `https://${Showcase_Domain}` as const;\nexport const External_Examples =\n 'https://github.com/aymericzip/intlayer/tree/main/examples' as const;\nexport const External_ExampleIntlayerWithNextjs =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/nextjs-15-app' as const;\nexport const External_ExampleIntlayerWithReactJS =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/react-app' as const;\nexport const External_ExampleIntlayerWithViteAndReact =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-react-app' as const;\nexport const External_ExampleIntlayerWithViteAndVue =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-vue-app' as const;\nexport const External_ExampleIntlayerWithViteAndSvelte =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-svelte-app' as const;\nexport const External_ExampleIntlayerWithViteAndSolid =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-solid-app' as const;\nexport const External_ExampleIntlayerWithViteAndPreact =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-preact-app' as const;\nexport const External_ExampleIntlayerWithReactNative =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/react-native-app' as const;\nexport const External_ExampleIntlayerWithExpress =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/express-app' as const;\n"],"mappings":"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"}
1
+ {"version":3,"file":"routes.mjs","names":[],"sources":["../../src/routes.ts"],"sourcesContent":["// ============================================================\n// Domains\n// ============================================================\nexport const App_Domain = 'app.intlayer.org' as const;\nexport const Website_Domain = 'intlayer.org' as const;\nexport const Showcase_Domain = 'showcase.intlayer.org' as const;\nexport const Backend_Domain = 'back.intlayer.org' as const;\nexport const Mcp_Domain = 'mcp.intlayer.org' as const;\n\n// ============================================================\n// App paths — relative (app.intlayer.org)\n// ============================================================\nexport const App_Home_Path = '/' as const;\nexport const App_NotFound_Path = '/404' as const;\n\nexport const App_Dashboard_Editor_Path = '/editor' as const;\nexport const App_Dashboard_Translate_Path = '/translate' as const;\nexport const App_Dashboard_Dictionaries_Path = '/dictionary' as const;\nexport const App_Dashboard_Projects_Path = '/projects' as const;\nexport const App_Dashboard_Tags_Path = '/tags' as const;\nexport const App_Dashboard_Organization_Path = '/organization' as const;\nexport const App_Dashboard_Profile_Path = '/profile' as const;\nexport const App_Dashboard_IDE_Path = '/ide' as const;\nexport const App_Dashboard_Scanner_Path = '/scanner' as const;\nexport const App_Dashboard_Assets_Path = '/assets' as const;\nexport const App_Dashboard_Analytics_Path = '/analytics' as const;\n\nexport const App_Pricing_Path = '/pricing' as const;\nexport const App_Affiliation_Path = '/affiliation' as const;\n\nexport const App_Demo_Path = '/demo' as const;\nexport const App_Init_Path = '/init' as const;\n\nexport const App_ReviewerMarketplace_Path = '/find-reviewer' as const;\nexport const App_ReviewerMarketplace_Dashboard_Path =\n '/find-reviewer/dashboard' as const;\nexport const App_ReviewerMarketplace_Reviewer_Path =\n '/find-reviewer/$reviewerId' as const;\nexport const App_ReviewerMarketplace_Dashboard_Mission_Path =\n '/find-reviewer/dashboard/mission/$missionId' as const;\n\nexport const getAppReviewerProfileRoute = (reviewerId: string) =>\n `/find-reviewer/${reviewerId}` as const;\nexport const getAppReviewerMissionRoute = (missionId: string) =>\n `/find-reviewer/dashboard/mission/${missionId}` as const;\n\n/** Root of the authentication section, usable as a `Disallow` prefix. */\nexport const App_Auth_Path = '/auth' as const;\nexport const App_Auth_SignIn_Path = '/auth/login' as const;\nexport const App_Auth_SignUp_Path = '/auth/register' as const;\nexport const App_Auth_TwoFactor_Path = '/auth/2fa' as const;\nexport const App_Auth_Demo_Path = '/auth/demo' as const;\nexport const App_Auth_AskResetPassword_Path =\n '/auth/password/ask-reset' as const;\nexport const App_Auth_ResetPassword_Path = '/auth/password/reset' as const;\nexport const App_Auth_ChangePassword_Path = '/auth/password/change' as const;\n\nexport const App_Admin_Path = '/admin' as const;\nexport const App_Admin_Users_Path = '/admin/users' as const;\nexport const App_Admin_Organizations_Path = '/admin/organizations' as const;\nexport const App_Admin_Projects_Path = '/admin/projects' as const;\nexport const App_Admin_Dashboard_Path = '/admin/dashboard' as const;\nexport const App_Admin_Management_Path = '/admin/management' as const;\nexport const App_Admin_Discussions_Path = '/admin/discussions' as const;\nexport const App_Admin_Affiliate_Path = '/admin/affiliate' as const;\nexport const getAppAdminAffiliateRoute = (id: string) =>\n `${App_Admin_Affiliate_Path}/${id}` as const;\nexport const App_Admin_PromoCodes_Path = '/admin/promo-code' as const;\nexport const getAppAdminPromoCodeRoute = (id: string) =>\n `${App_Admin_PromoCodes_Path}/${id}` as const;\n\nexport const App_Admin_Reviewers_Path = '/admin/reviewers' as const;\nexport const getAppAdminReviewerRoute = (id: string) =>\n `${App_Admin_Reviewers_Path}/${id}` as const;\n\nexport const App_Onboarding_Path = '/onboarding' as const;\n\nexport const getAppAdminUserRoute = (id: string) =>\n `${App_Admin_Users_Path}/${id}` as const;\nexport const getAppAdminOrganizationRoute = (id: string) =>\n `${App_Admin_Organizations_Path}/${id}` as const;\nexport const getAppAdminProjectRoute = (id: string) =>\n `${App_Admin_Projects_Path}/${id}` as const;\nexport const getAppOnboardingFlowRoute = (step: string) =>\n `${App_Onboarding_Path}/${step}` as const;\n\n// ============================================================\n// App absolute URLs — https://app.intlayer.org\n// ============================================================\nexport const App_Dashboard = `https://${App_Domain}` as const;\nexport const App_Dashboard_Editor =\n `https://${App_Domain}${App_Dashboard_Editor_Path}` as const;\nexport const App_Dashboard_Translate =\n `https://${App_Domain}${App_Dashboard_Translate_Path}` as const;\nexport const App_Dashboard_Dictionaries =\n `https://${App_Domain}${App_Dashboard_Dictionaries_Path}` as const;\nexport const App_Dashboard_Projects =\n `https://${App_Domain}${App_Dashboard_Projects_Path}` as const;\nexport const App_Dashboard_Tags =\n `https://${App_Domain}${App_Dashboard_Tags_Path}` as const;\nexport const App_Dashboard_Organization =\n `https://${App_Domain}${App_Dashboard_Organization_Path}` as const;\nexport const App_Dashboard_Profile =\n `https://${App_Domain}${App_Dashboard_Profile_Path}` as const;\nexport const App_Dashboard_IDE =\n `https://${App_Domain}${App_Dashboard_IDE_Path}` as const;\nexport const App_Dashboard_Scanner =\n `https://${App_Domain}${App_Dashboard_Scanner_Path}` as const;\nexport const App_Dashboard_Analytics =\n `https://${App_Domain}${App_Dashboard_Analytics_Path}` as const;\n\nexport const App_Pricing = `https://${App_Domain}${App_Pricing_Path}` as const;\nexport const App_Affiliation =\n `https://${App_Domain}${App_Affiliation_Path}` as const;\nexport const App_Demo = `https://${App_Domain}${App_Demo_Path}` as const;\n\nexport const App_ReviewerMarketplace =\n `https://${App_Domain}${App_ReviewerMarketplace_Path}` as const;\nexport const App_ReviewerMarketplace_Dashboard =\n `https://${App_Domain}${App_ReviewerMarketplace_Dashboard_Path}` as const;\n\nexport const App_Auth_SignIn =\n `https://${App_Domain}${App_Auth_SignIn_Path}` as const;\nexport const App_Auth_SignUp =\n `https://${App_Domain}${App_Auth_SignUp_Path}` as const;\nexport const App_Auth_TwoFactor =\n `https://${App_Domain}${App_Auth_TwoFactor_Path}` as const;\nexport const App_Auth_AskResetPassword =\n `https://${App_Domain}${App_Auth_AskResetPassword_Path}` as const;\nexport const App_Auth_ResetPassword =\n `https://${App_Domain}${App_Auth_ResetPassword_Path}` as const;\nexport const App_Auth_ChangePassword =\n `https://${App_Domain}${App_Auth_ChangePassword_Path}` as const;\n\nexport const App_Admin = `https://${App_Domain}${App_Admin_Path}` as const;\nexport const App_Admin_Users =\n `https://${App_Domain}${App_Admin_Users_Path}` as const;\nexport const App_Admin_Organizations =\n `https://${App_Domain}${App_Admin_Organizations_Path}` as const;\nexport const App_Admin_Projects =\n `https://${App_Domain}${App_Admin_Projects_Path}` as const;\nexport const App_Admin_Dashboard =\n `https://${App_Domain}${App_Admin_Dashboard_Path}` as const;\nexport const App_Admin_Management =\n `https://${App_Domain}${App_Admin_Management_Path}` as const;\nexport const App_Admin_Discussions =\n `https://${App_Domain}${App_Admin_Discussions_Path}` as const;\nexport const App_Admin_Affiliate =\n `https://${App_Domain}${App_Admin_Affiliate_Path}` as const;\nexport const App_Admin_PromoCodes =\n `https://${App_Domain}${App_Admin_PromoCodes_Path}` as const;\nexport const App_Admin_Reviewers =\n `https://${App_Domain}${App_Admin_Reviewers_Path}` as const;\n\nexport const App_Onboarding =\n `https://${App_Domain}${App_Onboarding_Path}` as const;\n\nexport const getAppAdminUserAbsoluteRoute = (id: string) =>\n `https://${App_Domain}${App_Admin_Users_Path}/${id}` as const;\nexport const getAppAdminOrganizationAbsoluteRoute = (id: string) =>\n `https://${App_Domain}${App_Admin_Organizations_Path}/${id}` as const;\nexport const getAppAdminProjectAbsoluteRoute = (id: string) =>\n `https://${App_Domain}${App_Admin_Projects_Path}/${id}` as const;\nexport const getAppOnboardingFlowAbsoluteRoute = (\n step: string,\n plan: string,\n period?: string\n) =>\n period\n ? `https://${App_Domain}${App_Onboarding_Path}/${step}/${plan}/${period}`\n : (`https://${App_Domain}${App_Onboarding_Path}/${step}/${plan}` as const);\n\n// ============================================================\n// Website paths — relative (intlayer.org)\n// ============================================================\nexport const Website_Home_Path = '/' as const;\nexport const Website_CMS_Path = '/cms' as const;\nexport const Website_TMS_Path = '/tms' as const;\nexport const Website_Translate_Path = '/translate' as const;\nexport const Website_Markdown_Preview_Path = '/markdown' as const;\nexport const Website_Demo_Path = '/demo' as const;\nexport const Website_Playground_Path = '/playground' as const;\nexport const Website_NotFound_Path = '/404' as const;\nexport const Website_Changelog_Path = '/changelog' as const;\nexport const Website_Scanner_Path = '/i18n-seo-scanner' as const;\n\nexport const Website_Doc_Root_Path = '/doc' as const;\nexport const Website_Doc_Path = '/doc/get-started' as const;\nexport const Website_Doc_Why_Path = '/doc/why' as const;\nexport const Website_Doc_Search_Path = '/doc/search' as const;\nexport const Website_Doc_Chat_Path = '/doc/chat' as const;\nexport const Website_Doc_IntlayerVisualEditor_Path =\n '/doc/concept/editor' as const;\nexport const Website_Doc_IntlayerCMS_Path = '/doc/concept/cms' as const;\nexport const Website_Doc_SelfHosting_Path = '/doc/self-hosting' as const;\n\nexport const Website_ReleasesV6_Path = '/doc/releases/v6' as const;\nexport const Website_ReleasesV7_Path = '/doc/releases/v7' as const;\nexport const Website_ReleasesV8_Path = '/doc/releases/v8' as const;\nexport const Website_ReleasesV9_Path = '/doc/releases/v9' as const;\nexport const Website_Doc_Environment_NextJS_Path =\n '/doc/environment/nextjs' as const;\nexport const Website_Doc_Environment_NextJS_16_Path =\n '/doc/environment/nextjs' as const;\nexport const Website_Doc_Environment_NextJS_15_Path =\n '/doc/environment/nextjs/15' as const;\nexport const Website_Doc_Environment_NextJS_14_Path =\n '/doc/environment/nextjs/14' as const;\nexport const Website_Doc_Environment_CRA_Path =\n '/doc/environment/create-react-app' as const;\nexport const Website_Doc_Environment_Astro_Path =\n '/doc/environment/astro' as const;\nexport const Website_Doc_Environment_ViteAndReact_Path =\n '/doc/environment/vite-and-react' as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7_Path =\n '/doc/environment/vite-and-react/react-router-v7' as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path =\n '/doc/environment/vite-and-react/react-router-v7-fs-routes' as const;\nexport const Website_Doc_Environment_Tanstack_Path =\n '/doc/environment/tanstack-start' as const;\nexport const Website_Doc_Environment_Lit_Path =\n '/doc/environment/vite-and-lit' as const;\nexport const Website_Doc_Environment_Nodejs_Path = '/doc/concept/cli' as const;\nexport const Website_Doc_Environment_Adonis_Path =\n '/doc/environment/adonisjs' as const;\nexport const Website_Doc_Environment_ViteAndVue_Path =\n '/doc/environment/vite-and-vue' as const;\nexport const Website_Doc_Environment_ViteAndSolid_Path =\n '/doc/environment/vite-and-solid' as const;\nexport const Website_Doc_Environment_ViteAndSvelte_Path =\n '/doc/environment/vite-and-svelte' as const;\nexport const Website_Doc_Environment_ViteAndPreact_Path =\n '/doc/environment/vite-and-preact' as const;\nexport const Website_Doc_Environment_NuxtAndVue_Path =\n '/doc/environment/nuxt-and-vue' as const;\nexport const Website_Doc_Intlayer_with_Lynx_and_React_Path =\n '/doc/environment/lynx-and-react' as const;\nexport const Website_Doc_Environment_Angular_Path =\n '/doc/environment/angular' as const;\nexport const Website_Doc_Environment_ReactNativeAndExpo_Path =\n '/doc/environment/react-native-and-expo' as const;\nexport const Website_Doc_Environment_Lynx_Path =\n '/doc/environment/lynx-and-react' as const;\nexport const Website_Doc_Environment_Express_Path =\n '/doc/environment/express' as const;\nexport const Website_Doc_Environment_NestJS_Path =\n '/doc/environment/nest' as const;\nexport const Website_Doc_Environment_Fastify_Path =\n '/doc/environment/fastify' as const;\nexport const Website_Doc_Environment_Hono_Path =\n '/doc/environment/hono' as const;\n\nexport const Website_Doc_CLI_Fill_Path = '/doc/concept/cli/fill' as const;\nexport const Website_Doc_CLI_Translate_Path =\n '/doc/concept/cli/doc-translate' as const;\nexport const Website_Doc_CLI_Review_Path =\n '/doc/concept/cli/doc-review' as const;\n\nexport const Website_Benchmark_Path = '/doc/benchmark' as const;\nexport const Website_Benchmark_NextJS_Path = '/doc/benchmark/nextjs' as const;\nexport const Website_Benchmark_Tanstack_Path =\n '/doc/benchmark/tanstack' as const;\n\nexport const Website_Doc_MCP_Path = '/doc/mcp-server' as const;\n\nexport const Website_Blog_Root_Path = '/blog' as const;\nexport const Website_Blog_Path = '/blog' as const;\nexport const Website_Blog_Search_Path = '/blog' as const;\nexport const Website_Blog_What_is_i18n_Path =\n '/blog/what-is-internationalization' as const;\n\nexport const Website_FrequentQuestions_Path = '/frequent-questions' as const;\nexport const Website_PrivacyPolicy_Path = '/privacy-notice' as const;\nexport const Website_TermsOfService_Path = '/terms-of-service' as const;\nexport const Website_Contributors_Path = '/contributors' as const;\n\n// ============================================================\n// Website absolute URLs — https://intlayer.org\n// ============================================================\nexport const Website_Home =\n `https://${Website_Domain}${Website_Home_Path}` as const;\nexport const Website_CMS =\n `https://${Website_Domain}${Website_CMS_Path}` as const;\nexport const Website_TMS =\n `https://${Website_Domain}${Website_TMS_Path}` as const;\nexport const Website_Translate =\n `https://${Website_Domain}${Website_Translate_Path}` as const;\nexport const Website_Markdown_Preview =\n `https://${Website_Domain}${Website_Markdown_Preview_Path}` as const;\nexport const Website_Demo =\n `https://${Website_Domain}${Website_Demo_Path}` as const;\nexport const Website_Playground =\n `https://${Website_Domain}${Website_Playground_Path}` as const;\nexport const Website_NotFound =\n `https://${Website_Domain}${Website_NotFound_Path}` as const;\nexport const Website_Changelog =\n `https://${Website_Domain}${Website_Changelog_Path}` as const;\nexport const Website_Scanner =\n `https://${Website_Domain}${Website_Scanner_Path}` as const;\nexport const Website_Benchmark =\n `https://${Website_Domain}${Website_Benchmark_Path}` as const;\nexport const Website_Benchmark_NextJS =\n `https://${Website_Domain}${Website_Benchmark_NextJS_Path}` as const;\nexport const Website_Benchmark_Tanstack =\n `https://${Website_Domain}${Website_Benchmark_Tanstack_Path}` as const;\n\nexport const Website_Doc_Root =\n `https://${Website_Domain}${Website_Doc_Root_Path}` as const;\nexport const Website_Doc =\n `https://${Website_Domain}${Website_Doc_Path}` as const;\nexport const Website_Doc_Why =\n `https://${Website_Domain}${Website_Doc_Why_Path}` as const;\nexport const Website_Doc_Search =\n `https://${Website_Domain}${Website_Doc_Search_Path}` as const;\nexport const Website_Doc_Chat =\n `https://${Website_Domain}${Website_Doc_Chat_Path}` as const;\nexport const Website_Doc_IntlayerVisualEditor =\n `https://${Website_Domain}${Website_Doc_IntlayerVisualEditor_Path}` as const;\nexport const Website_Doc_IntlayerCMS =\n `https://${Website_Domain}${Website_Doc_IntlayerCMS_Path}` as const;\nexport const Website_Doc_SelfHosting =\n `https://${Website_Domain}${Website_Doc_SelfHosting_Path}` as const;\n\nexport const Website_ReleasesV6 =\n `https://${Website_Domain}${Website_ReleasesV6_Path}` as const;\nexport const Website_ReleasesV7 =\n `https://${Website_Domain}${Website_ReleasesV7_Path}` as const;\nexport const Website_ReleasesV8 =\n `https://${Website_Domain}${Website_ReleasesV8_Path}` as const;\nexport const Website_Doc_Environment_NextJS =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_Path}` as const;\nexport const Website_Doc_Environment_NextJS_16 =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_16_Path}` as const;\nexport const Website_Doc_Environment_NextJS_15 =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_15_Path}` as const;\nexport const Website_Doc_Environment_NextJS_14 =\n `https://${Website_Domain}${Website_Doc_Environment_NextJS_14_Path}` as const;\nexport const Website_Doc_Environment_CRA =\n `https://${Website_Domain}${Website_Doc_Environment_CRA_Path}` as const;\nexport const Website_Doc_Environment_Astro =\n `https://${Website_Domain}${Website_Doc_Environment_Astro_Path}` as const;\nexport const Website_Doc_Environment_ViteAndReact =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndReact_Path}` as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7 =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndReact_ReactRouterV7_Path}` as const;\nexport const Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path}` as const;\nexport const Website_Doc_Environment_Tanstack =\n `https://${Website_Domain}${Website_Doc_Environment_Tanstack_Path}` as const;\nexport const Website_Doc_Environment_Lit =\n `https://${Website_Domain}${Website_Doc_Environment_Lit_Path}` as const;\nexport const Website_Doc_Environment_Nodejs =\n `https://${Website_Domain}${Website_Doc_Environment_Nodejs_Path}` as const;\nexport const Website_Doc_Environment_Adonis =\n `https://${Website_Domain}${Website_Doc_Environment_Adonis_Path}` as const;\nexport const Website_Doc_Environment_ViteAndVue =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndVue_Path}` as const;\nexport const Website_Doc_Environment_ViteAndSolid =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndSolid_Path}` as const;\nexport const Website_Doc_Environment_ViteAndSvelte =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndSvelte_Path}` as const;\nexport const Website_Doc_Environment_ViteAndPreact =\n `https://${Website_Domain}${Website_Doc_Environment_ViteAndPreact_Path}` as const;\nexport const Website_Doc_Environment_NuxtAndVue =\n `https://${Website_Domain}${Website_Doc_Environment_NuxtAndVue_Path}` as const;\nexport const Website_Doc_Intlayer_with_Lynx_and_React =\n `https://${Website_Domain}${Website_Doc_Intlayer_with_Lynx_and_React_Path}` as const;\nexport const Website_Doc_Environment_Angular =\n `https://${Website_Domain}${Website_Doc_Environment_Angular_Path}` as const;\nexport const Website_Doc_Environment_ReactNativeAndExpo =\n `https://${Website_Domain}${Website_Doc_Environment_ReactNativeAndExpo_Path}` as const;\nexport const Website_Doc_Environment_Lynx =\n `https://${Website_Domain}${Website_Doc_Environment_Lynx_Path}` as const;\nexport const Website_Doc_Environment_Express =\n `https://${Website_Domain}${Website_Doc_Environment_Express_Path}` as const;\nexport const Website_Doc_Environment_NestJS =\n `https://${Website_Domain}${Website_Doc_Environment_NestJS_Path}` as const;\nexport const Website_Doc_Environment_Fastify =\n `https://${Website_Domain}${Website_Doc_Environment_Fastify_Path}` as const;\nexport const Website_Doc_Environment_Hono =\n `https://${Website_Domain}${Website_Doc_Environment_Hono_Path}` as const;\n\nexport const Website_Doc_CLI_Fill =\n `https://${Website_Domain}${Website_Doc_CLI_Fill_Path}` as const;\nexport const Website_Doc_CLI_Translate =\n `https://${Website_Domain}${Website_Doc_CLI_Translate_Path}` as const;\nexport const Website_Doc_CLI_Review =\n `https://${Website_Domain}${Website_Doc_CLI_Review_Path}` as const;\n\nexport const Website_Doc_MCP =\n `https://${Website_Domain}${Website_Doc_MCP_Path}` as const;\n\nexport const Website_Blog_Root =\n `https://${Website_Domain}${Website_Blog_Root_Path}` as const;\nexport const Website_Blog =\n `https://${Website_Domain}${Website_Blog_Path}` as const;\nexport const Website_Blog_Search =\n `https://${Website_Domain}${Website_Blog_Search_Path}` as const;\nexport const Website_Blog_What_is_i18n =\n `https://${Website_Domain}${Website_Blog_What_is_i18n_Path}` as const;\n\nexport const Website_FrequentQuestions =\n `https://${Website_Domain}${Website_FrequentQuestions_Path}` as const;\nexport const Website_PrivacyPolicy =\n `https://${Website_Domain}${Website_PrivacyPolicy_Path}` as const;\nexport const Website_TermsOfService =\n `https://${Website_Domain}${Website_TermsOfService_Path}` as const;\nexport const Website_Contributors =\n `https://${Website_Domain}${Website_Contributors_Path}` as const;\n\n// ============================================================\n// Doc app paths — relative (served under intlayer.org/doc/*)\n// ============================================================\nexport const Doc_Root_Path = '/doc' as const;\nexport const Doc_Path = '/get-started' as const;\nexport const Doc_Why_Path = '/why' as const;\nexport const Doc_Search_Path = '/search' as const;\nexport const Doc_Chat_Path = '/chat' as const;\nexport const Doc_IntlayerVisualEditor_Path = '/concept/editor' as const;\nexport const Doc_IntlayerCMS_Path = '/concept/cms' as const;\n\nexport const Doc_ReleasesV6_Path = '/releases/v6' as const;\nexport const Doc_ReleasesV7_Path = '/releases/v7' as const;\nexport const Doc_ReleasesV8_Path = '/releases/v8' as const;\nexport const Doc_Environment_NextJS_Path = '/environment/nextjs' as const;\nexport const Doc_Environment_NextJS_16_Path = '/environment/nextjs' as const;\nexport const Doc_Environment_NextJS_15_Path = '/environment/nextjs/15' as const;\nexport const Doc_Environment_NextJS_14_Path = '/environment/nextjs/14' as const;\nexport const Doc_Environment_CRA_Path =\n '/environment/create-react-app' as const;\nexport const Doc_Environment_Astro_Path = '/environment/astro' as const;\nexport const Doc_Environment_ViteAndReact_Path =\n '/environment/vite-and-react' as const;\nexport const Doc_Environment_ViteAndReact_ReactRouterV7_Path =\n '/environment/vite-and-react/react-router-v7' as const;\nexport const Doc_Environment_ViteAndReact_ReactRouterV7_FSRoutes_Path =\n '/environment/vite-and-react/react-router-v7-fs-routes' as const;\nexport const Doc_Environment_Tanstack_Path =\n '/environment/tanstack-start' as const;\nexport const Doc_Environment_Lit_Path = '/environment/vite-and-lit' as const;\nexport const Doc_Environment_Nodejs_Path = '/concept/cli' as const;\nexport const Doc_Environment_Adonis_Path = '/environment/adonisjs' as const;\nexport const Doc_Environment_ViteAndVue_Path =\n '/environment/vite-and-vue' as const;\nexport const Doc_Environment_ViteAndSolid_Path =\n '/environment/vite-and-solid' as const;\nexport const Doc_Environment_ViteAndSvelte_Path =\n '/environment/vite-and-svelte' as const;\nexport const Doc_Environment_ViteAndPreact_Path =\n '/environment/vite-and-preact' as const;\nexport const Doc_Environment_NuxtAndVue_Path =\n '/environment/nuxt-and-vue' as const;\nexport const Doc_Intlayer_with_Lynx_and_React_Path =\n '/environment/lynx-and-react' as const;\nexport const Doc_Environment_Angular_Path = '/environment/angular' as const;\nexport const Doc_Environment_ReactNativeAndExpo_Path =\n '/environment/react-native-and-expo' as const;\nexport const Doc_Environment_Lynx_Path = '/environment/lynx-and-react' as const;\nexport const Doc_Environment_Express_Path = '/environment/express' as const;\nexport const Doc_Environment_NestJS_Path = '/environment/nest' as const;\nexport const Doc_Environment_Fastify_Path = '/environment/fastify' as const;\nexport const Doc_Environment_Hono_Path = '/environment/hono' as const;\n\nexport const Doc_CLI_Fill_Path = '/concept/cli/fill' as const;\nexport const Doc_CLI_Translate_Path = '/concept/cli/doc-translate' as const;\nexport const Doc_CLI_Review_Path = '/concept/cli/doc-review' as const;\n\nexport const Doc_MCP_Path = '/mcp-server' as const;\n\nexport const Doc_Blog_Root_Path = '/blog' as const;\nexport const Doc_Blog_Path = '/blog' as const;\nexport const Doc_Blog_Search_Path = '/blog' as const;\nexport const Doc_Blog_What_is_i18n_Path =\n '/blog/what-is-internationalization' as const;\n\nexport const Doc_FrequentQuestions_Path = '/frequent-questions' as const;\nexport const Doc_PrivacyPolicy_Path = '/privacy-notice' as const;\nexport const Doc_TermsOfService_Path = '/terms-of-service' as const;\nexport const Doc_Contributors_Path = '/contributors' as const;\nexport const Doc_Showcase_Path = '/' as const;\nexport const Doc_ShowcaseSubmit_Path = '/submit' as const;\n\n// ============================================================\n// Showcase paths — relative (showcase.intlayer.org)\n// ============================================================\nexport const Showcase_Root_Path = '/' as const;\nexport const Showcase_Submit_Path = '/submit' as const;\n\n// ============================================================\n// Showcase absolute URLs — https://showcase.intlayer.org\n// ============================================================\nexport const Showcase_Root = `https://${Showcase_Domain}` as const;\nexport const Showcase_Submit =\n `https://${Showcase_Domain}${Showcase_Submit_Path}` as const;\n\n// ============================================================\n// Backend absolute URLs — https://back.intlayer.org\n// ============================================================\nexport const Backend_Root = `https://${Backend_Domain}` as const;\nexport const Backend_Health = `https://${Backend_Domain}/health` as const;\nexport const Backend_OAuth2_Token =\n `https://${Backend_Domain}/oauth2/token` as const;\n\n// ============================================================\n// MCP absolute URLs — https://mcp.intlayer.org\n// ============================================================\nexport const Mcp_Root = `https://${Mcp_Domain}` as const;\nexport const Mcp_Sse = `https://${Mcp_Domain}/sse` as const;\n\n// ============================================================\n// Agent discovery paths — relative\n//\n// Well-known documents that let AI agents discover the site's APIs,\n// skills and authentication without scraping HTML.\n// ============================================================\nexport const WellKnown_ApiCatalog_Path = '/.well-known/api-catalog' as const;\nexport const WellKnown_AiCatalog_Path = '/.well-known/ai-catalog.json' as const;\nexport const WellKnown_OAuthProtectedResource_Path =\n '/.well-known/oauth-protected-resource' as const;\nexport const WellKnown_OAuthAuthorizationServer_Path =\n '/.well-known/oauth-authorization-server' as const;\nexport const WellKnown_McpServerCard_Path =\n '/.well-known/mcp/server-card.json' as const;\nexport const WellKnown_AgentSkills_Path = '/.well-known/agent-skills' as const;\nexport const WellKnown_AgentSkillsIndex_Path =\n `${WellKnown_AgentSkills_Path}/index.json` as const;\nexport const AuthMd_Path = '/auth.md' as const;\nexport const LlmsTxt_Path = '/llms.txt' as const;\n\n// ============================================================\n// External links\n// ============================================================\nexport const External_Github =\n 'https://github.com/aymericzip/intlayer' as const;\n\nexport const External_DockerHub_SelfHost =\n 'https://hub.docker.com/r/aymericzip/intlayer-selfhost' as const;\n\nexport const External_Github_i18n_benchmark =\n 'https://github.com/intlayer-org/benchmark-i18n' as const;\n\nexport const External_Discord = 'https://discord.gg/7uxamYVeCk' as const;\nexport const External_LinkedIn =\n 'https://www.linkedin.com/company/intlayerorg/' as const;\nexport const External_AI_Landing_Page = 'https://ai.intlayer.org' as const;\nexport const External_ShowcaseApp = `https://${Showcase_Domain}` as const;\nexport const External_Examples =\n 'https://github.com/aymericzip/intlayer/tree/main/examples' as const;\nexport const External_ExampleIntlayerWithNextjs =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/nextjs-15-app' as const;\nexport const External_ExampleIntlayerWithReactJS =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/react-app' as const;\nexport const External_ExampleIntlayerWithViteAndReact =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-react-app' as const;\nexport const External_ExampleIntlayerWithViteAndVue =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-vue-app' as const;\nexport const External_ExampleIntlayerWithViteAndSvelte =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-svelte-app' as const;\nexport const External_ExampleIntlayerWithViteAndSolid =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-solid-app' as const;\nexport const External_ExampleIntlayerWithViteAndPreact =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/vite-preact-app' as const;\nexport const External_ExampleIntlayerWithReactNative =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/react-native-app' as const;\nexport const External_ExampleIntlayerWithExpress =\n 'https://github.com/aymericzip/intlayer/tree/main/examples/express-app' as const;\n"],"mappings":"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"}
@@ -1,3 +1,5 @@
1
1
  import { cn } from "./cn.mjs";
2
+ import { observeScrollExtent } from "./observeScrollExtent.mjs";
3
+ import { scheduleFrameTask } from "./scheduleFrameTask.mjs";
2
4
 
3
- export { cn };
5
+ export { cn, observeScrollExtent, scheduleFrameTask };
@@ -0,0 +1,39 @@
1
+ //#region src/utils/observeScrollExtent.ts
2
+ /**
3
+ * Watches everything that changes how far an element can scroll: its own box,
4
+ * and the boxes of the content it scrolls over.
5
+ *
6
+ * A `ResizeObserver` on the scroll container alone stays silent while its
7
+ * content grows — a container with a capped height keeps that height whatever
8
+ * it contains. Observing its children covers the content side, which is the
9
+ * half that actually moves the scroll extent.
10
+ *
11
+ * @param container - The scrolling element.
12
+ * @param onResize - Called when the container or its content is resized, and
13
+ * when children are added to or removed from the container.
14
+ * @returns A function disconnecting the observers.
15
+ *
16
+ * @example
17
+ * const stopObserving = observeScrollExtent(contentElement, invalidateOffsets);
18
+ */
19
+ const observeScrollExtent = (container, onResize) => {
20
+ const resizeObserver = new ResizeObserver(onResize);
21
+ const observeContent = () => {
22
+ resizeObserver.observe(container);
23
+ for (const child of Array.from(container.children)) resizeObserver.observe(child);
24
+ };
25
+ observeContent();
26
+ const mutationObserver = new MutationObserver(() => {
27
+ observeContent();
28
+ onResize();
29
+ });
30
+ mutationObserver.observe(container, { childList: true });
31
+ return () => {
32
+ resizeObserver.disconnect();
33
+ mutationObserver.disconnect();
34
+ };
35
+ };
36
+
37
+ //#endregion
38
+ export { observeScrollExtent };
39
+ //# sourceMappingURL=observeScrollExtent.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"observeScrollExtent.mjs","names":[],"sources":["../../../src/utils/observeScrollExtent.ts"],"sourcesContent":["/**\n * Watches everything that changes how far an element can scroll: its own box,\n * and the boxes of the content it scrolls over.\n *\n * A `ResizeObserver` on the scroll container alone stays silent while its\n * content grows — a container with a capped height keeps that height whatever\n * it contains. Observing its children covers the content side, which is the\n * half that actually moves the scroll extent.\n *\n * @param container - The scrolling element.\n * @param onResize - Called when the container or its content is resized, and\n * when children are added to or removed from the container.\n * @returns A function disconnecting the observers.\n *\n * @example\n * const stopObserving = observeScrollExtent(contentElement, invalidateOffsets);\n */\nexport const observeScrollExtent = (\n container: HTMLElement,\n onResize: () => void\n): (() => void) => {\n const resizeObserver = new ResizeObserver(onResize);\n\n const observeContent = () => {\n resizeObserver.observe(container);\n\n for (const child of Array.from(container.children)) {\n resizeObserver.observe(child);\n }\n };\n\n observeContent();\n\n // Children come and go as the page renders, so the observer follows them.\n const mutationObserver = new MutationObserver(() => {\n observeContent();\n onResize();\n });\n mutationObserver.observe(container, { childList: true });\n\n return () => {\n resizeObserver.disconnect();\n mutationObserver.disconnect();\n };\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;AAiBA,MAAa,uBACX,WACA,aACiB;CACjB,MAAM,iBAAiB,IAAI,eAAe,QAAQ;CAElD,MAAM,uBAAuB;EAC3B,eAAe,QAAQ,SAAS;EAEhC,KAAK,MAAM,SAAS,MAAM,KAAK,UAAU,QAAQ,GAC/C,eAAe,QAAQ,KAAK;CAEhC;CAEA,eAAe;CAGf,MAAM,mBAAmB,IAAI,uBAAuB;EAClD,eAAe;EACf,SAAS;CACX,CAAC;CACD,iBAAiB,QAAQ,WAAW,EAAE,WAAW,KAAK,CAAC;CAEvD,aAAa;EACX,eAAe,WAAW;EAC1B,iBAAiB,WAAW;CAC9B;AACF"}
@@ -0,0 +1,44 @@
1
+ //#region src/utils/scheduleFrameTask.ts
2
+ const pendingTasks = /* @__PURE__ */ new Set();
3
+ let frameRequestId = null;
4
+ const runPendingTasks = () => {
5
+ frameRequestId = null;
6
+ const tasks = [...pendingTasks];
7
+ pendingTasks.clear();
8
+ for (const task of tasks) task();
9
+ };
10
+ /**
11
+ * Queues a layout-reading task, and runs every queued task inside a single
12
+ * animation frame callback.
13
+ *
14
+ * A component reading `offsetTop` or `getBoundingClientRect()` from its own
15
+ * `requestAnimationFrame` makes the browser recompute layout once per
16
+ * component: React flushes the state updates of one callback before the next
17
+ * callback runs, so every read after the first one is a forced reflow. Sharing
18
+ * one callback keeps all the reads in the same batch, and React commits once,
19
+ * after the last measurement.
20
+ *
21
+ * @param task - The measurement to run on the next frame. Queuing the same
22
+ * function twice before the frame runs schedules it once.
23
+ * @returns A function cancelling the task, and the frame itself once nothing
24
+ * else is queued.
25
+ *
26
+ * @example
27
+ * const cancelMeasurement = scheduleFrameTask(() => setWidth(el.offsetWidth));
28
+ */
29
+ const scheduleFrameTask = (task) => {
30
+ if (typeof requestAnimationFrame === "undefined") return () => {};
31
+ pendingTasks.add(task);
32
+ frameRequestId ??= requestAnimationFrame(runPendingTasks);
33
+ return () => {
34
+ pendingTasks.delete(task);
35
+ if (pendingTasks.size === 0 && frameRequestId !== null) {
36
+ cancelAnimationFrame(frameRequestId);
37
+ frameRequestId = null;
38
+ }
39
+ };
40
+ };
41
+
42
+ //#endregion
43
+ export { scheduleFrameTask };
44
+ //# sourceMappingURL=scheduleFrameTask.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scheduleFrameTask.mjs","names":[],"sources":["../../../src/utils/scheduleFrameTask.ts"],"sourcesContent":["type FrameTask = () => void;\n\nconst pendingTasks = new Set<FrameTask>();\nlet frameRequestId: number | null = null;\n\nconst runPendingTasks = () => {\n frameRequestId = null;\n\n // Snapshot first: a task may queue another one, which belongs to the next\n // frame rather than to this loop.\n const tasks = [...pendingTasks];\n pendingTasks.clear();\n\n for (const task of tasks) task();\n};\n\n/**\n * Queues a layout-reading task, and runs every queued task inside a single\n * animation frame callback.\n *\n * A component reading `offsetTop` or `getBoundingClientRect()` from its own\n * `requestAnimationFrame` makes the browser recompute layout once per\n * component: React flushes the state updates of one callback before the next\n * callback runs, so every read after the first one is a forced reflow. Sharing\n * one callback keeps all the reads in the same batch, and React commits once,\n * after the last measurement.\n *\n * @param task - The measurement to run on the next frame. Queuing the same\n * function twice before the frame runs schedules it once.\n * @returns A function cancelling the task, and the frame itself once nothing\n * else is queued.\n *\n * @example\n * const cancelMeasurement = scheduleFrameTask(() => setWidth(el.offsetWidth));\n */\nexport const scheduleFrameTask = (task: FrameTask): (() => void) => {\n if (typeof requestAnimationFrame === 'undefined') return () => {};\n\n pendingTasks.add(task);\n\n frameRequestId ??= requestAnimationFrame(runPendingTasks);\n\n return () => {\n pendingTasks.delete(task);\n\n if (pendingTasks.size === 0 && frameRequestId !== null) {\n cancelAnimationFrame(frameRequestId);\n frameRequestId = null;\n }\n };\n};\n"],"mappings":";AAEA,MAAM,+BAAe,IAAI,IAAe;AACxC,IAAI,iBAAgC;AAEpC,MAAM,wBAAwB;CAC5B,iBAAiB;CAIjB,MAAM,QAAQ,CAAC,GAAG,YAAY;CAC9B,aAAa,MAAM;CAEnB,KAAK,MAAM,QAAQ,OAAO,KAAK;AACjC;;;;;;;;;;;;;;;;;;;;AAqBA,MAAa,qBAAqB,SAAkC;CAClE,IAAI,OAAO,0BAA0B,aAAa,aAAa,CAAC;CAEhE,aAAa,IAAI,IAAI;CAErB,mBAAmB,sBAAsB,eAAe;CAExD,aAAa;EACX,aAAa,OAAO,IAAI;EAExB,IAAI,aAAa,SAAS,KAAK,mBAAmB,MAAM;GACtD,qBAAqB,cAAc;GACnC,iBAAiB;EACnB;CACF;AACF"}
@@ -1,14 +1,16 @@
1
1
  import { UseQueryOptions } from "@tanstack/react-query";
2
+ import { AudienceRange } from "@intlayer/backend";
2
3
  //#region src/api/hooks/analytics.d.ts
3
4
  /**
4
5
  * Fetches the audience report for the active project: distinct visitors
5
- * (today / 7d / window), page views, the daily evolution series, and locale +
6
+ * (today / 7d / window), page views, the evolution series, and locale +
6
7
  * country breakdowns.
7
8
  *
8
- * @param days - Rolling window size in days (default 30).
9
+ * @param range - Rolling window, either a named range (`1h`, `24h`, `7d`,
10
+ * `30d`, `90d`, `6mo`, `1y`, `3y`) or a number of days (default 30).
9
11
  * @param options - Extra react-query options.
10
12
  */
11
- declare const useGetAnalyticsAudience: (days?: number, options?: Partial<UseQueryOptions>) => QueryObserverResult<TData, TError>;
13
+ declare const useGetAnalyticsAudience: (range?: AudienceRange | number, options?: Partial<UseQueryOptions>) => QueryObserverResult<TData, TError>;
12
14
  /**
13
15
  * Fetches per-content exposure totals — "which content is actually shown".
14
16
  *
@@ -1 +1 @@
1
- {"version":3,"file":"analytics.d.ts","names":[],"sources":["../../../../src/api/hooks/analytics.ts"],"mappings":";;;;;;;;;;cAca,0BAAuB,eAAA,UAExB,QAAQ,qBAAgB,oBAAA,OAAA;;;;;;cAmBvB,qBAAkB,UAAc,QAAQ,qBAAgB,oBAAA,OAAA;;;;;;;cAmBxD,0BAAuB,uBACb,UACX,QAAQ,qBAAgB,oBAAA,OAAA"}
1
+ {"version":3,"file":"analytics.d.ts","names":[],"sources":["../../../../src/api/hooks/analytics.ts"],"mappings":";;;;;;;;;;;;cAgBa,0BAAuB,QAC3B,wBAAsB,UACnB,QAAQ,qBAAgB,oBAAA,OAAA;;;;;;cAmBvB,qBAAkB,UAAc,QAAQ,qBAAgB,oBAAA,OAAA;;;;;;;cAmBxD,0BAAuB,uBACb,UACX,QAAQ,qBAAgB,oBAAA,OAAA"}
@@ -26,6 +26,18 @@ import { IntlayerConfig } from "@intlayer/types/config";
26
26
  type UseIntlayerAuthProps = {
27
27
  options?: FetcherOptions;
28
28
  intlayerConfiguration?: IntlayerConfig;
29
+ /**
30
+ * A short-lived token identifying the **signed-in user**, sent as a bearer.
31
+ *
32
+ * Only needed when the session cookie cannot be used — the backend allows
33
+ * credentialed requests for first-party origins only, so an app served from
34
+ * another origin has to carry the user's identity explicitly.
35
+ *
36
+ * The project's `clientId` / `clientSecret` are deliberately not an option
37
+ * here: they authenticate as the *project*, grant write access to all of its
38
+ * content, and must never reach a browser.
39
+ */
40
+ sessionToken?: string;
29
41
  };
30
42
  declare const useIntlayerOAuthOptions: (props?: UseIntlayerAuthProps) => {
31
43
  options: {
@@ -1 +1 @@
1
- {"version":3,"file":"useIntlayerAPI.d.ts","names":[],"sources":["../../../src/api/useIntlayerAPI.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;KAiCY;EACV,UAAU;EACV,wBAAwB;;cAGb,0BAAuB,QAAY;;;;;;;;;;;;;;;;;;;;cAsBnC,mBAAgB,QAAY,yBAAuB;cAKnD,kBAAe,QAAY,yBAAuB;cAMlD,qBAAkB,QACrB,yBACP,kBAAkB;cAKR,gBAAa,QAChB,yBACP,kBAAkB;cAKR,aAAU,QACb,yBACP,kBAAkB;cAKR,cAAW,QACd,yBACP,kBAAkB;cAKR,mBAAgB,QACnB,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,WAAQ,QACX,yBACP,kBAAkB;cAKR,cAAW,QACd,yBACP,kBAAkB;cAKR,kBAAe,QAClB,yBACP,kBAAkB;cAKR,YAAS,QACZ,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,mBAAgB,QACnB,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,kBAAe,QAClB,yBACP,kBAAkB;cAKR,wBAAqB,QACxB,yBACP,kBAAkB;cAKR,kBAAe,QAClB,yBACP,kBAAkB;cAKR,iBAAc,QACjB,yBACP,kBAAkB;cAKR,oBAAiB,QACpB,yBACP,kBAAkB;cAKR,cAAW,QACd,yBACP,kBAAkB"}
1
+ {"version":3,"file":"useIntlayerAPI.d.ts","names":[],"sources":["../../../src/api/useIntlayerAPI.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;KAgCY;EACV,UAAU;EACV,wBAAwB;;;;;;;;;;;;EAYxB;;cAGW,0BAAuB,QAAY;;;;;;;;;;;;;;;;;;;;cAwBnC,mBAAgB,QAAY,yBAAuB;cAKnD,kBAAe,QAAY,yBAAuB;cAMlD,qBAAkB,QACrB,yBACP,kBAAkB;cAKR,gBAAa,QAChB,yBACP,kBAAkB;cAKR,aAAU,QACb,yBACP,kBAAkB;cAKR,cAAW,QACd,yBACP,kBAAkB;cAKR,mBAAgB,QACnB,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,WAAQ,QACX,yBACP,kBAAkB;cAKR,cAAW,QACd,yBACP,kBAAkB;cAKR,kBAAe,QAClB,yBACP,kBAAkB;cAKR,YAAS,QACZ,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,mBAAgB,QACnB,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,eAAY,QACf,yBACP,kBAAkB;cAKR,kBAAe,QAClB,yBACP,kBAAkB;cAKR,wBAAqB,QACxB,yBACP,kBAAkB;cAKR,kBAAe,QAClB,yBACP,kBAAkB;cAKR,iBAAc,QACjB,yBACP,kBAAkB;cAKR,oBAAiB,QACpB,yBACP,kBAAkB;cAKR,cAAW,QACd,yBACP,kBAAkB"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../../../src/components/Carousel/index.tsx"],"mappings":";;KAqGK,oBAAoB,eAAe;EACtC,UAAU;;KAgBP,0BAA0B,eAAe;EAC5C;;KAgHG,gBAAgB,eAAe;EAClC,UAAU;EACV;EACA,iBAAiB;;cAsPN,UAAQ,GAAA;;IAvXyC"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../../../src/components/Carousel/index.tsx"],"mappings":";;KA+GK,oBAAoB,eAAe;EACtC,UAAU;;KAgBP,0BAA0B,eAAe;EAC5C;;KAgHG,gBAAgB,eAAe;EAClC,UAAU;EACV;EACA,iBAAiB;;cA2PN,UAAQ,GAAA;;IA5XyC"}
@@ -1 +1 @@
1
- {"version":3,"file":"MobileNavbar.d.ts","names":[],"sources":["../../../../src/components/Navbar/MobileNavbar.tsx"],"mappings":";;;;;;;;KAeK,kBAAkB,UAAU;;EAE/B,MAAM;;EAEN,cAAc;;EAEd,cAAc,aAAa;;EAE3B,iBAAiB;;EAEjB,iBAAiB,aAAa;;EAE9B,aAAa;;EAEb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqGW,eAAgB,UAAU,wBAAoB,MAAA,aAAA,aAAA,gBAAA,gBAAA,YAAA,YAQxD,kBAAkB,uBAAE,IAAA"}
1
+ {"version":3,"file":"MobileNavbar.d.ts","names":[],"sources":["../../../../src/components/Navbar/MobileNavbar.tsx"],"mappings":";;;;;;;;KAqBK,kBAAkB,UAAU;;EAE/B,MAAM;;EAEN,cAAc;;EAEd,cAAc,aAAa;;EAE3B,iBAAiB;;EAEjB,iBAAiB,aAAa;;EAE9B,aAAa;;EAEb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqGW,eAAgB,UAAU,wBAAoB,MAAA,aAAA,aAAA,gBAAA,gBAAA,YAAA,YAQxD,kBAAkB,uBAAE,IAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"dynamic.d.ts","names":[],"sources":["../../../../src/components/Popover/dynamic.tsx"],"mappings":";;cAwLa,SAAS"}
1
+ {"version":3,"file":"dynamic.d.ts","names":[],"sources":["../../../../src/components/Popover/dynamic.tsx"],"mappings":";;cA2Pa,SAAS"}
@@ -1 +1 @@
1
- {"version":3,"file":"RightDrawer.d.ts","names":[],"sources":["../../../../src/components/RightDrawer/RightDrawer.tsx"],"mappings":";;;;;;;KA6BK;;EAEH;;EAEA;;;;;;;KAQG;;;;EAIH,QAAQ;;;;EAKR;;EAGA,WAAW;;;;EAKX,SAAS;;;;EAKT,SAAS;;;;;EAMT;;;;EAKA,aAAa;;;;EAKb;;;;EAKA;;;;;EAMA,YAAY;;cAGD,aAAa,GAAG"}
1
+ {"version":3,"file":"RightDrawer.d.ts","names":[],"sources":["../../../../src/components/RightDrawer/RightDrawer.tsx"],"mappings":";;;;;;;KA8BK;;EAEH;;EAEA;;;;;;;KAQG;;;;EAIH,QAAQ;;;;EAKR;;EAGA,WAAW;;;;EAKX,SAAS;;;;EAKT,SAAS;;;;;EAMT;;;;EAKA,aAAa;;;;EAKb;;;;EAKA;;;;;EAMA,YAAY;;cAGD,aAAa,GAAG"}
@@ -1,3 +1,3 @@
1
1
  import { RightDrawer } from "./RightDrawer.js";
2
- import { drawerManager, useRightDrawer } from "./useRightDrawer.js";
3
- export { RightDrawer, drawerManager, useRightDrawer };
2
+ import { drawerManager, useIsRightDrawerOpen, useRightDrawer, useRightDrawerActions } from "./useRightDrawer.js";
3
+ export { RightDrawer, drawerManager, useIsRightDrawerOpen, useRightDrawer, useRightDrawerActions };
@@ -5,12 +5,45 @@ declare class DrawerObservable {
5
5
  private drawers;
6
6
  subscribe: (listener: () => void) => () => void;
7
7
  getSnapshot: () => DrawerState;
8
+ isOpen: (key: string) => boolean;
8
9
  open: (key: string) => void;
9
10
  close: (key: string) => void;
10
11
  set: (states: DrawerState) => void;
11
12
  private emit;
12
13
  }
13
14
  declare const drawerManager: DrawerObservable;
15
+ /**
16
+ * Actions to drive any drawer, detached from the store snapshot.
17
+ */
18
+ type RightDrawerActions = {
19
+ open: (key: string) => void;
20
+ close: (key: string) => void;
21
+ set: (states: DrawerState) => void;
22
+ };
23
+ /**
24
+ * Returns the drawer actions without subscribing to the store.
25
+ *
26
+ * Prefer it over {@link useRightDrawer} in components that only need to open,
27
+ * close or set drawers: they then no longer re-render every time an unrelated
28
+ * drawer toggles.
29
+ */
30
+ declare const useRightDrawerActions: () => RightDrawerActions;
31
+ /**
32
+ * Subscribes to the open state of a single drawer.
33
+ *
34
+ * The snapshot is a boolean, so a component only re-renders when its own
35
+ * drawer toggles, instead of on every change of the shared drawer record.
36
+ *
37
+ * @param identifier - Identifier of the drawer to watch
38
+ */
39
+ declare const useIsRightDrawerOpen: (identifier: string) => boolean;
40
+ /**
41
+ * Gives access to the whole drawer record.
42
+ *
43
+ * Any change to any drawer re-renders the consumer. When only one drawer
44
+ * matters, use {@link useIsRightDrawerOpen}; when only the actions matter, use
45
+ * {@link useRightDrawerActions}.
46
+ */
14
47
  declare const useRightDrawer: () => {
15
48
  open: (key: string) => void;
16
49
  close: (key: string) => void;
@@ -18,5 +51,5 @@ declare const useRightDrawer: () => {
18
51
  isOpen: (key: string) => boolean;
19
52
  };
20
53
  //#endregion
21
- export { drawerManager, useRightDrawer };
54
+ export { drawerManager, useIsRightDrawerOpen, useRightDrawer, useRightDrawerActions };
22
55
  //# sourceMappingURL=useRightDrawer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useRightDrawer.d.ts","names":[],"sources":["../../../../src/components/RightDrawer/useRightDrawer.ts"],"mappings":";KAIK,cAAc;cAEb;UACI;UACA;EAER,YAAS;EAOT,mBAAW;EAIX,OAAI;EAMJ,QAAK;EAML,MAAG,QAAY;UAiBP;;cAOG,eAAa;cAEb;EAQT,OAAI;EACJ,QAAK;EACL,MAAG,QApCU;EAqCb,SAAM"}
1
+ {"version":3,"file":"useRightDrawer.d.ts","names":[],"sources":["../../../../src/components/RightDrawer/useRightDrawer.ts"],"mappings":";KAIK,cAAc;cAEb;UACI;UACA;EAER,YAAS;EAOT,mBAAW;EAIX,SAAM;EAEN,OAAI;EAMJ,QAAK;EAML,MAAG,QAAY;UAiBP;;cAOG,eAAa;;;;KAKrB;EACH,OAAO;EACP,QAAQ;EACR,MAAM,QAAQ;;;;;;;;;cAkBH,6BAA4B;;;;;;;;;cAW5B,uBAAoB;;;;;;;;cAoBpB;EAnDL,OAAC;EACA,QAAC;EACH,MAAC,QAAQ;EA0DE,SAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"Tab.d.ts","names":[],"sources":["../../../../src/components/Tab/Tab.tsx"],"mappings":";;;cAuCM,sBAAmB;;;6CAevB;KAEU,WAAW,eAAe,kBACpC,oBAAoB;EAClB;EACA;EACA,UAAU;EACV;EACA;;KAGQ,eAAe,eAAe;EACxC;EACA;EACA;EACA,UAAU;;;;;;cA2BN;KAAmC,aAAA,SAAA,+BAAY,IAAA;;;;;;;;;;;;;;;;;;cAwB/C,iBAAY,YAAA,OAAA,SAAA,UAAA,WAAA,iBAAA,eAAA,SASf,6BAAQ,IAAA;cAmKE,YAAG;eAAA"}
1
+ {"version":3,"file":"Tab.d.ts","names":[],"sources":["../../../../src/components/Tab/Tab.tsx"],"mappings":";;;cA6DM,sBAAmB;;;6CAevB;KAEU,WAAW,eAAe,kBACpC,oBAAoB;EAClB;EACA;EACA,UAAU;EACV;EACA;;KAGQ,eAAe,eAAe;EACxC;EACA;EACA;EACA,UAAU;;;;;;cA2BN;KAAmC,aAAA,SAAA,+BAAY,IAAA;;;;;;;;;;;;;;;;;;cAwB/C,iBAAY,YAAA,OAAA,SAAA,UAAA,WAAA,iBAAA,eAAA,SASf,6BAAQ,IAAA;cAoKE,YAAG;eAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"TechLogo.d.ts","names":[],"sources":["../../../../src/components/TechLogo/TechLogo.tsx"],"mappings":";;;KAIY,gBAAgB,SAAS;EACnC,MAAM;;cAqDK,UAAU,GAAG"}
1
+ {"version":3,"file":"TechLogo.d.ts","names":[],"sources":["../../../../src/components/TechLogo/TechLogo.tsx"],"mappings":";;;KAIY,gBAAgB,SAAS;EACnC,MAAM;;cAsDK,UAAU,GAAG"}
@@ -0,0 +1,6 @@
1
+ import { FC, SVGProps } from "react";
2
+ //#region src/components/TechLogo/logos/Elysia.d.ts
3
+ declare const ElysiaLogo: FC<SVGProps<SVGSVGElement>>;
4
+ //#endregion
5
+ export { ElysiaLogo };
6
+ //# sourceMappingURL=Elysia.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Elysia.d.ts","names":[],"sources":["../../../../../src/components/TechLogo/logos/Elysia.tsx"],"mappings":";;cAEa,YAAY,GAAG,SAAS"}
@@ -11,6 +11,7 @@ import { AtlassianLogo } from "./logos/Atlassian.js";
11
11
  import { ChatGPTLogo } from "./logos/ChatGPT.js";
12
12
  import { ClaudeLogo } from "./logos/Claude.js";
13
13
  import { DeepSeekLogo } from "./logos/DeepSeek.js";
14
+ import { ElysiaLogo } from "./logos/Elysia.js";
14
15
  import { ExpressLogo } from "./logos/Express.js";
15
16
  import { FastifyLogo } from "./logos/Fastify.js";
16
17
  import { GeminiLogo } from "./logos/Gemini.js";
@@ -37,8 +38,8 @@ import { JavaScriptLogo } from "./logos/Vanilla.js";
37
38
  import { ViteLogo } from "./logos/Vitejs.js";
38
39
  import { VuejsLogo } from "./logos/Vuejs.js";
39
40
  declare namespace techLogos_d_exports {
40
- export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, AtlassianLogo as ATLASSIAN, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MicrosoftLogo as MICROSOFT, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE };
41
+ export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, AtlassianLogo as ATLASSIAN, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ElysiaLogo as ELYSIA, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MicrosoftLogo as MICROSOFT, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE };
41
42
  }
42
43
  //#endregion
43
- export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, AtlassianLogo as ATLASSIAN, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MicrosoftLogo as MICROSOFT, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE, techLogos_d_exports };
44
+ export { AdonisLogo as ADONIS, AngularLogo as ANGULAR, AnthropicLogo as ANTHROPIC, AstroLogo as ASTRO, AtlassianLogo as ATLASSIAN, BitbucketLogo as BITBUCKET, ChatGPTLogo as CHATGPT, ClaudeLogo as CLAUDE, DeepSeekLogo as DEEPSEEK, ElysiaLogo as ELYSIA, ExpressLogo as EXPRESS, FastifyLogo as FASTIFY, GeminiLogo as GEMINI, GitHubLogo as GITHUB, GitLabLogo as GITLAB, GoogleLogo as GOOGLE, GoogleAILogo as GOOGLE_AI, GrokLogo as GROK, HonoLogo as HONO, LinkedInLogo as LINKEDIN, LitLogo as LIT, LynxLogo as LYNX, MicrosoftLogo as MICROSOFT, MistralLogo as MISTRAL, NestJSLogo as NESTJS, NextJSLogo as NEXTJS, NodejsLogo as NODE, NuxtLogo as NUXT, OllamaLogo as OLLAMA, OpenAILogo as OPENAI, PerplexityLogo as PERPLEXITY, PreactLogo as PREACT, ReactLogo as REACT, SolidLogo as SOLID, SvelteLogo as SVELTE, TanstackLogo as TANSTACK, JavaScriptLogo as VANILLA, ViteLogo as VITE, VuejsLogo as VUE, techLogos_d_exports };
44
45
  //# sourceMappingURL=techLogos.d.ts.map
@@ -1,5 +1,5 @@
1
1
  //#region src/components/TechLogo/types.d.ts
2
- type TechLogoName = 'adonis' | 'angular' | 'astro' | 'express' | 'fastify' | 'hono' | 'lynx' | 'nestjs' | 'nextjs' | 'node' | 'nuxt' | 'preact' | 'react' | 'solid' | 'svelte' | 'tanstack' | 'vite' | 'vue' | 'lit' | 'vanilla' | 'anthropic' | 'claude' | 'chatgpt' | 'deepseek' | 'gemini' | 'googleai' | 'grok' | 'mistral' | 'ollama' | 'openai' | 'perplexity' | 'github' | 'gitlab' | 'bitbucket' | 'google' | 'linkedin';
2
+ type TechLogoName = 'adonis' | 'angular' | 'astro' | 'elysia' | 'express' | 'fastify' | 'hono' | 'lynx' | 'nestjs' | 'nextjs' | 'node' | 'nuxt' | 'preact' | 'react' | 'solid' | 'svelte' | 'tanstack' | 'vite' | 'vue' | 'lit' | 'vanilla' | 'anthropic' | 'claude' | 'chatgpt' | 'deepseek' | 'gemini' | 'googleai' | 'grok' | 'mistral' | 'ollama' | 'openai' | 'perplexity' | 'github' | 'gitlab' | 'bitbucket' | 'google' | 'linkedin';
3
3
  //#endregion
4
4
  export { TechLogoName };
5
5
  //# sourceMappingURL=types.d.ts.map
@@ -2,9 +2,9 @@ import { Modes } from "./types.js";
2
2
  import { FC } from "react";
3
3
  //#region src/components/ThemeSwitcherDropDown/DesktopThemeSwitcher.d.ts
4
4
  type DesktopThemeSwitcherProps = {
5
+ /** Preference currently persisted — `system` while following the OS. */
5
6
  theme: Modes;
6
7
  setTheme: (theme: Modes) => void;
7
- systemTheme: Modes;
8
8
  };
9
9
  declare const DesktopThemeSwitcher: FC<DesktopThemeSwitcherProps>;
10
10
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"DesktopThemeSwitcher.d.ts","names":[],"sources":["../../../../src/components/ThemeSwitcherDropDown/DesktopThemeSwitcher.tsx"],"mappings":";;;KAwBK;EACH,OAAO;EACP,WAAW,OAAO;EAClB,aAAa;;cAGF,sBAAsB,GAAG"}
1
+ {"version":3,"file":"DesktopThemeSwitcher.d.ts","names":[],"sources":["../../../../src/components/ThemeSwitcherDropDown/DesktopThemeSwitcher.tsx"],"mappings":";;;KAuBK;;EAEH,OAAO;EACP,WAAW,OAAO;;cAGP,sBAAsB,GAAG"}
@@ -2,8 +2,8 @@ import { Modes } from "./types.js";
2
2
  import { FC } from "react";
3
3
  //#region src/components/ThemeSwitcherDropDown/MobileThemeSwitcher.d.ts
4
4
  type MobileThemeSwitcherProps = {
5
+ /** Preference currently persisted — `system` while following the OS. */
5
6
  theme: Modes;
6
- systemTheme: Modes;
7
7
  setTheme: (theme: Modes) => void;
8
8
  };
9
9
  declare const MobileThemeSwitcher: FC<MobileThemeSwitcherProps>;
@@ -1 +1 @@
1
- {"version":3,"file":"MobileThemeSwitcher.d.ts","names":[],"sources":["../../../../src/components/ThemeSwitcherDropDown/MobileThemeSwitcher.tsx"],"mappings":";;;KAOK;EACH,OAAO;EACP,aAAa;EACb,WAAW,OAAO;;cAiBP,qBAAqB,GAAG"}
1
+ {"version":3,"file":"MobileThemeSwitcher.d.ts","names":[],"sources":["../../../../src/components/ThemeSwitcherDropDown/MobileThemeSwitcher.tsx"],"mappings":";;;KAOK;;EAEH,OAAO;EACP,WAAW,OAAO;;cAuBP,qBAAqB,GAAG"}
@@ -1,5 +1,7 @@
1
+ import { Theme } from "../../providers/ThemeProvider.js";
1
2
  //#region src/components/ThemeSwitcherDropDown/types.d.ts
2
- type Modes = 'dark' | 'light' | 'system';
3
+ /** Theme a switcher can select — kept as an alias for the provider's type. */
4
+ type Modes = Theme;
3
5
  //#endregion
4
6
  export { Modes };
5
7
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","names":[],"sources":["../../../../src/components/ThemeSwitcherDropDown/types.ts"],"mappings":";KAAY"}
1
+ {"version":3,"file":"types.d.ts","names":[],"sources":["../../../../src/components/ThemeSwitcherDropDown/types.ts"],"mappings":";;;KAGY,QAAQ"}
@@ -142,7 +142,7 @@ import "./Popover/index.js";
142
142
  import { PressableSpan } from "./PressableSpan/PressableSpan.js";
143
143
  import "./PressableSpan/index.js";
144
144
  import { RightDrawer } from "./RightDrawer/RightDrawer.js";
145
- import { drawerManager, useRightDrawer } from "./RightDrawer/useRightDrawer.js";
145
+ import { drawerManager, useIsRightDrawerOpen, useRightDrawer, useRightDrawerActions } from "./RightDrawer/useRightDrawer.js";
146
146
  import "./RightDrawer/index.js";
147
147
  import "./Select/index.js";
148
148
  import { BitbucketLogo } from "./TechLogo/logos/Bitbucket.js";
@@ -182,4 +182,4 @@ import { reducer, toast, useToast } from "./Toaster/useToast.js";
182
182
  import "./Toaster/index.js";
183
183
  import { WithResizer } from "./WithResizer/index.js";
184
184
  import { MarkdownRenderer, ParsedMarkdown, baseMarkdownComponents, getIntlayerMarkdownOptions } from "./MarkDownRender/MarkDownRender.js";
185
- export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, BitbucketLogo, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Burger, Button, ButtonColor, ButtonProps, ButtonSize, ButtonTextAlign, ButtonVariant, Carousel, Checkbox, CheckboxColor, CheckboxProps, CheckboxSize, ClickOutsideDiv, ClickOutsideDivProps, Code, CodeBlock, CodeBlockProps, CodeCompAttributes, CodeDefault, CodeHighlighted, type CodeLanguage, CollapsibleTable, CollapsibleTableProps, Command, CommandRoot, Container, ContainerBackground, ContainerBorderColor, ContainerGap, ContainerPadding, ContainerProps, ContainerRoundedSize, ContainerSeparator, ContainerTransparency, ContentEditableTextArea, ContentEditableTextAreaHandle, ContentEditableTextAreaProps, ContentEditorInput, ContentEditorInputProps, ContentEditorProps, ContentEditorTextArea, ContentEditorTextAreaProps, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, type CreateEditorUploadFnOptions, DesktopNavbar, DesktopThemeSwitcher, Detail, DetailProps, DictionaryCreationForm, DictionaryEditor, DictionaryFieldEditor, DiscordLogo, DotPattern, DropDown, DropDownAlign, DropDownProps, DropDownType, DropDownYAlign, EditableFieldInput, EditableFieldTextArea, ExpandCollapse, ExpandCollapseProps, FacebookLogo, FileList, FileListProps, Flag, flags_d_exports as Flags, Footer, FooterLink, Form, AutoSizedTextAreaElement as FormAutoSizedTextArea, Button as FormButton, CheckboxElement as FormCheckbox, FormControl, FormDescription, EditableFieldInputElement as FormEditableFieldInput, EditableFieldTextAreaElement as FormEditableFieldTextArea, FormElement, FormField, InputElement as FormInput, InputPasswordElement as FormInputPassword, FormItem, FormLabelLayout as FormLabel, FormMessage, MultiSelectElement as FormMultiSelect, OTPElement as FormOTP, SearchInputElement as FormSearchInput, SelectElement as FormSelect, SwitchSelectorElement as FormSwitchSelector, TextAreaElement as FormTextArea, GitHubLogo, GitLabLogo, GoogleLogo, GridDistortionPattern, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, Hr, IDE, IDEProps, InformationTag, Input, InputIndicator, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPassword, InputProps, InputSize, InputVariant, InstagramLogo, KeyList, KeyPathBreadcrumb, KeyboardScreenAdapter, KeyboardShortcut, KeyboardShortcutProps, KeyboardShortcutType, Label, LabelProps, LanguageBackground, LanguageSection, Link, LinkColor, LinkGroup, LinkProps, LinkRoundedSize, LinkSize, LinkUnderlined, LinkVariant, LinkedInLogo, Loader, LoaderProps, LocaleSwitcher, LocaleSwitcherContent, LocaleSwitcherContentProps, LocaleSwitcherContentProvider, LocaleSwitcherProps, Logo, LogoTextOnly, LogoWithText, LogoWithTextBelow, MarkDownIframe, MarkdownEditor, type MarkdownEditorProps, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileNavbar, MobileThemeSwitcher, Modal, ModalSize, Modes, MultiSelect, Navbar, NumberItemsSelector, NumberItemsSelectorProps, OTPInput, OTPInputContext, OTPInputProps, Pagination, PaginationProps, PaginationSize, PaginationVariant, PanelProps, type ParsedMarkdown, Popover, PopoverProps, PopoverStatic, PopoverType, PopoverXAlign, PopoverYAlign, PressableSpan, ProductHuntLogo, Radio, RadioColor, RadioProps, RadioSize, RenderProps, RightDrawer, SaveForm, SearchInput, Select, SelectContent, SelectContentPosition, SelectLabel, SelectSeparator, ShowingResultsNumberItems, ShowingResultsNumberItemsProps, SlotProps, SmartTable, SocialNetworks, Spotlight, Step, Steps, SwitchSelector, SwitchSelectorBaseProps, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, TableProps, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Td, TechLogo, type TechLogoName, techLogos_d_exports as TechLogos, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, Th, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tr, TriggerProps, type UploadImageFn, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, VerticalSwitchSelector, VerticalSwitchSelectorProps, WithResizer, XLogo, YoutubeLogo, badgeVariants, baseMarkdownComponents, buttonVariants, checkIsExternalLink, checkboxVariants, choiceVariant, containerVariants, createEditorUploadFn, defaultChoices, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, indicatorVariant, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, radioVariants, reducer, shikiWrapperClassName, switchSelectorVariant, toast, toastVariants, traceKeys, useContentEditable, useCopyToClipboard, useForm, useFormField, useLocaleSwitcherContent, usePasswordManagerBadge, usePopoverIds, usePrevious, useRightDrawer, useToast, useVersionSwitcher };
185
+ export { Accordion, AccordionProps, AutoCompleteTextarea, AutoSizedTextArea, AutoSizedTextAreaProps, AutocompleteTextAreaProps, Avatar, AvatarProps, Badge, BadgeColor, BadgeProps, BadgeSize, BadgeVariant, BadgeVariantProps, BitbucketLogo, Breadcrumb, BreadcrumbLink, BreadcrumbProps, Browser, BrowserProps, Burger, Button, ButtonColor, ButtonProps, ButtonSize, ButtonTextAlign, ButtonVariant, Carousel, Checkbox, CheckboxColor, CheckboxProps, CheckboxSize, ClickOutsideDiv, ClickOutsideDivProps, Code, CodeBlock, CodeBlockProps, CodeCompAttributes, CodeDefault, CodeHighlighted, type CodeLanguage, CollapsibleTable, CollapsibleTableProps, Command, CommandRoot, Container, ContainerBackground, ContainerBorderColor, ContainerGap, ContainerPadding, ContainerProps, ContainerRoundedSize, ContainerSeparator, ContainerTransparency, ContentEditableTextArea, ContentEditableTextAreaHandle, ContentEditableTextAreaProps, ContentEditorInput, ContentEditorInputProps, ContentEditorProps, ContentEditorTextArea, ContentEditorTextAreaProps, ContentSelector, CopyButton, CopyToClipboard, CopyToClipboardProps, type CreateEditorUploadFnOptions, DesktopNavbar, DesktopThemeSwitcher, Detail, DetailProps, DictionaryCreationForm, DictionaryEditor, DictionaryFieldEditor, DiscordLogo, DotPattern, DropDown, DropDownAlign, DropDownProps, DropDownType, DropDownYAlign, EditableFieldInput, EditableFieldTextArea, ExpandCollapse, ExpandCollapseProps, FacebookLogo, FileList, FileListProps, Flag, flags_d_exports as Flags, Footer, FooterLink, Form, AutoSizedTextAreaElement as FormAutoSizedTextArea, Button as FormButton, CheckboxElement as FormCheckbox, FormControl, FormDescription, EditableFieldInputElement as FormEditableFieldInput, EditableFieldTextAreaElement as FormEditableFieldTextArea, FormElement, FormField, InputElement as FormInput, InputPasswordElement as FormInputPassword, FormItem, FormLabelLayout as FormLabel, FormMessage, MultiSelectElement as FormMultiSelect, OTPElement as FormOTP, SearchInputElement as FormSearchInput, SelectElement as FormSelect, SwitchSelectorElement as FormSwitchSelector, TextAreaElement as FormTextArea, GitHubLogo, GitLabLogo, GoogleLogo, GridDistortionPattern, GridPattern, H1, H2, H3, H4, H5, H6, HTMLRenderer, HeadingProps, HeightResizer, HideShow, HideShowProps, Hr, IDE, IDEProps, InformationTag, Input, InputIndicator, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPassword, InputProps, InputSize, InputVariant, InstagramLogo, KeyList, KeyPathBreadcrumb, KeyboardScreenAdapter, KeyboardShortcut, KeyboardShortcutProps, KeyboardShortcutType, Label, LabelProps, LanguageBackground, LanguageSection, Link, LinkColor, LinkGroup, LinkProps, LinkRoundedSize, LinkSize, LinkUnderlined, LinkVariant, LinkedInLogo, Loader, LoaderProps, LocaleSwitcher, LocaleSwitcherContent, LocaleSwitcherContentProps, LocaleSwitcherContentProvider, LocaleSwitcherProps, Logo, LogoTextOnly, LogoWithText, LogoWithTextBelow, MarkDownIframe, MarkdownEditor, type MarkdownEditorProps, MarkdownRenderer, MaxHeightSmoother, MaxWidthSmoother, MobileNavbar, MobileThemeSwitcher, Modal, ModalSize, Modes, MultiSelect, Navbar, NumberItemsSelector, NumberItemsSelectorProps, OTPInput, OTPInputContext, OTPInputProps, Pagination, PaginationProps, PaginationSize, PaginationVariant, PanelProps, type ParsedMarkdown, Popover, PopoverProps, PopoverStatic, PopoverType, PopoverXAlign, PopoverYAlign, PressableSpan, ProductHuntLogo, Radio, RadioColor, RadioProps, RadioSize, RenderProps, RightDrawer, SaveForm, SearchInput, Select, SelectContent, SelectContentPosition, SelectLabel, SelectSeparator, ShowingResultsNumberItems, ShowingResultsNumberItemsProps, SlotProps, SmartTable, SocialNetworks, Spotlight, Step, Steps, SwitchSelector, SwitchSelectorBaseProps, SwitchSelectorChoice, SwitchSelectorChoices, SwitchSelectorColor, SwitchSelectorProps, SwitchSelectorSize, Tab, TabItemProps, TabProps, TabSelector, TabSelectorColor, TabSelectorItemProps, TabSelectorProps, Table, TableProps, Tag, TagBackground, TagBorder, TagColor, TagRoundedSize, TagSize, Td, TechLogo, type TechLogoName, techLogos_d_exports as TechLogos, Terminal, TerminalProps, TextArea, TextAreaProps, TextEditor, TextEditorContainer, TextEditorProps, Th, TiktokLogo, Toast, ToastAction, ToastActionElement, ToastClose, ToastDescription, ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tr, TriggerProps, type UploadImageFn, VersionSwitcher, VersionSwitcherProps, VersionSwitcherProvider, VerticalSwitchSelector, VerticalSwitchSelectorProps, WithResizer, XLogo, YoutubeLogo, badgeVariants, baseMarkdownComponents, buttonVariants, checkIsExternalLink, checkboxVariants, choiceVariant, containerVariants, createEditorUploadFn, defaultChoices, drawerManager, getCapitals, getIntlayerHTMLOptions, getIntlayerMarkdownOptions, indicatorVariant, inputSlotVariants, inputVariants, isTextChildren, linkVariants, paginationVariants, radioVariants, reducer, shikiWrapperClassName, switchSelectorVariant, toast, toastVariants, traceKeys, useContentEditable, useCopyToClipboard, useForm, useFormField, useIsRightDrawerOpen, useLocaleSwitcherContent, usePasswordManagerBadge, usePopoverIds, usePrevious, useRightDrawer, useRightDrawerActions, useToast, useVersionSwitcher };