@env-hopper/frontend-core 2.0.1-alpha

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 (385) hide show
  1. package/LICENSE +21 -0
  2. package/dist/apple-touch-180x180.png +0 -0
  3. package/dist/disable.well-known/appspecific/com.chrome.devtools.json +6 -0
  4. package/dist/env-hopper-16x16.png +0 -0
  5. package/dist/env-hopper-192x192.png +0 -0
  6. package/dist/env-hopper-32x32.png +0 -0
  7. package/dist/env-hopper-48x48.png +0 -0
  8. package/dist/env-hopper-512x512.png +0 -0
  9. package/dist/env-hopper-square.svg +114 -0
  10. package/dist/esm/App.d.ts +12 -0
  11. package/dist/esm/App.js +12 -0
  12. package/dist/esm/App.js.map +1 -0
  13. package/dist/esm/__tests__/modules/fuzzyMatchLogic/autoCompleteFilter.test.d.ts +1 -0
  14. package/dist/esm/__tests__/modules/fuzzyMatchLogic/features/prefixFracTokenMiddles.test.d.ts +1 -0
  15. package/dist/esm/__tests__/modules/fuzzyMatchLogic/fixLayout.test.d.ts +1 -0
  16. package/dist/esm/__tests__/modules/fuzzyMatchLogic/postFiltration.test.d.ts +1 -0
  17. package/dist/esm/__tests__/modules/fuzzyMatchLogic/testUtils.d.ts +2 -0
  18. package/dist/esm/__tests__/modules/fuzzyMatchLogic/tokenize.test.d.ts +1 -0
  19. package/dist/esm/__tests__/modules/resouceJump/findBestMatchByUrl.test.d.ts +1 -0
  20. package/dist/esm/__tests__/setupTests.d.ts +0 -0
  21. package/dist/esm/__tests__/util/availabilityMatrixUtils.test.d.ts +1 -0
  22. package/dist/esm/api/ApiQueryMagazine.d.ts +12 -0
  23. package/dist/esm/api/ApiQueryMagazine.js +16 -0
  24. package/dist/esm/api/ApiQueryMagazine.js.map +1 -0
  25. package/dist/esm/api/data/useQueryBootstrapConfig.d.ts +3 -0
  26. package/dist/esm/api/data/useQueryBootstrapConfig.js +14 -0
  27. package/dist/esm/api/data/useQueryBootstrapConfig.js.map +1 -0
  28. package/dist/esm/api/infra/createQueryClient.d.ts +7 -0
  29. package/dist/esm/api/infra/createQueryClient.js +23 -0
  30. package/dist/esm/api/infra/createQueryClient.js.map +1 -0
  31. package/dist/esm/api/infra/trpc.d.ts +93 -0
  32. package/dist/esm/api/infra/trpc.js +8 -0
  33. package/dist/esm/api/infra/trpc.js.map +1 -0
  34. package/dist/esm/api/unsorted/indexDataFetcher.d.ts +11 -0
  35. package/dist/esm/api/unsorted/indexDataFetcher.js +35 -0
  36. package/dist/esm/api/unsorted/indexDataFetcher.js.map +1 -0
  37. package/dist/esm/appPropsFactory.d.ts +2 -0
  38. package/dist/esm/appPropsFactory.js +32 -0
  39. package/dist/esm/appPropsFactory.js.map +1 -0
  40. package/dist/esm/assets/env-hopper-logo.svg.js +16 -0
  41. package/dist/esm/assets/env-hopper-logo.svg.js.map +1 -0
  42. package/dist/esm/components/ThemeSwitcher.d.ts +1 -0
  43. package/dist/esm/components/ThemeSwitcher.js +25 -0
  44. package/dist/esm/components/ThemeSwitcher.js.map +1 -0
  45. package/dist/esm/components/theme-provider.d.ts +2 -0
  46. package/dist/esm/components/theme-provider.js +10 -0
  47. package/dist/esm/components/theme-provider.js.map +1 -0
  48. package/dist/esm/components/ui/badge.d.ts +9 -0
  49. package/dist/esm/components/ui/breadcrumb.d.ts +46 -0
  50. package/dist/esm/components/ui/button.d.ts +16 -0
  51. package/dist/esm/components/ui/button.js +52 -0
  52. package/dist/esm/components/ui/button.js.map +1 -0
  53. package/dist/esm/components/ui/card.d.ts +38 -0
  54. package/dist/esm/components/ui/collapsible.d.ts +5 -0
  55. package/dist/esm/components/ui/dialog.d.ts +21 -0
  56. package/dist/esm/components/ui/dropdown-menu.d.ts +25 -0
  57. package/dist/esm/components/ui/input.d.ts +10 -0
  58. package/dist/esm/components/ui/popover.d.ts +7 -0
  59. package/dist/esm/components/ui/popover.js +14 -0
  60. package/dist/esm/components/ui/popover.js.map +1 -0
  61. package/dist/esm/components/ui/scroll-area.d.ts +5 -0
  62. package/dist/esm/components/ui/separator.d.ts +4 -0
  63. package/dist/esm/components/ui/separator.js +27 -0
  64. package/dist/esm/components/ui/separator.js.map +1 -0
  65. package/dist/esm/components/ui/tabs.d.ts +7 -0
  66. package/dist/esm/index.d.ts +3 -0
  67. package/dist/esm/index.js +7 -0
  68. package/dist/esm/index.js.map +1 -0
  69. package/dist/esm/lib/utils.d.ts +2 -0
  70. package/dist/esm/lib/utils.js +9 -0
  71. package/dist/esm/lib/utils.js.map +1 -0
  72. package/dist/esm/main.d.ts +0 -0
  73. package/dist/esm/modules/config/BootstrapConfigContext.d.ts +9 -0
  74. package/dist/esm/modules/config/BootstrapConfigContext.js +25 -0
  75. package/dist/esm/modules/config/BootstrapConfigContext.js.map +1 -0
  76. package/dist/esm/modules/config/GlobalConfigContext.d.ts +14 -0
  77. package/dist/esm/modules/config/GlobalConfigContext.js +21 -0
  78. package/dist/esm/modules/config/GlobalConfigContext.js.map +1 -0
  79. package/dist/esm/modules/environment/ApiQueryMagazineEnvironment.d.ts +12 -0
  80. package/dist/esm/modules/environment/ApiQueryMagazineEnvironment.js +13 -0
  81. package/dist/esm/modules/environment/ApiQueryMagazineEnvironment.js.map +1 -0
  82. package/dist/esm/modules/environment/EnvironmentContext.d.ts +15 -0
  83. package/dist/esm/modules/environment/EnvironmentContext.js +67 -0
  84. package/dist/esm/modules/environment/EnvironmentContext.js.map +1 -0
  85. package/dist/esm/modules/environment/types.d.ts +4 -0
  86. package/dist/esm/modules/environment/ui/EhEnvSelector.d.ts +9 -0
  87. package/dist/esm/modules/environment/ui/EhEnvSelector.js +167 -0
  88. package/dist/esm/modules/environment/ui/EhEnvSelector.js.map +1 -0
  89. package/dist/esm/modules/fuzzyMatchLogic/autoCompleteFilter.d.ts +3 -0
  90. package/dist/esm/modules/fuzzyMatchLogic/autoCompleteFilter.js +43 -0
  91. package/dist/esm/modules/fuzzyMatchLogic/autoCompleteFilter.js.map +1 -0
  92. package/dist/esm/modules/fuzzyMatchLogic/features/prefixFrac.d.ts +1 -0
  93. package/dist/esm/modules/fuzzyMatchLogic/features/prefixFrac.js +12 -0
  94. package/dist/esm/modules/fuzzyMatchLogic/features/prefixFrac.js.map +1 -0
  95. package/dist/esm/modules/fuzzyMatchLogic/features/prefixFracTokenMiddles.d.ts +2 -0
  96. package/dist/esm/modules/fuzzyMatchLogic/fixLayout.d.ts +2 -0
  97. package/dist/esm/modules/fuzzyMatchLogic/postFiltration.d.ts +2 -0
  98. package/dist/esm/modules/fuzzyMatchLogic/scoring.d.ts +2 -0
  99. package/dist/esm/modules/fuzzyMatchLogic/scoring.js +23 -0
  100. package/dist/esm/modules/fuzzyMatchLogic/scoring.js.map +1 -0
  101. package/dist/esm/modules/fuzzyMatchLogic/tokenize.d.ts +3 -0
  102. package/dist/esm/modules/fuzzyMatchLogic/types.d.ts +25 -0
  103. package/dist/esm/modules/fuzzyMatchLogic/utils.d.ts +2 -0
  104. package/dist/esm/modules/fuzzyMatchLogic/utils.js +12 -0
  105. package/dist/esm/modules/fuzzyMatchLogic/utils.js.map +1 -0
  106. package/dist/esm/modules/pluginCore/PluginManagerContext.d.ts +24 -0
  107. package/dist/esm/modules/pluginCore/PluginManagerContext.js +62 -0
  108. package/dist/esm/modules/pluginCore/PluginManagerContext.js.map +1 -0
  109. package/dist/esm/modules/pluginCore/makePluginManagerContext.d.ts +7 -0
  110. package/dist/esm/modules/pluginCore/makePluginManagerContext.js +27 -0
  111. package/dist/esm/modules/pluginCore/makePluginManagerContext.js.map +1 -0
  112. package/dist/esm/modules/pluginCore/types.d.ts +36 -0
  113. package/dist/esm/modules/pluginCore/types.js +7 -0
  114. package/dist/esm/modules/pluginCore/types.js.map +1 -0
  115. package/dist/esm/modules/resourceJump/ApiQueryMagazineResourceJump.d.ts +27 -0
  116. package/dist/esm/modules/resourceJump/ApiQueryMagazineResourceJump.js +26 -0
  117. package/dist/esm/modules/resourceJump/ApiQueryMagazineResourceJump.js.map +1 -0
  118. package/dist/esm/modules/resourceJump/ResourceJumpContext.d.ts +17 -0
  119. package/dist/esm/modules/resourceJump/ResourceJumpContext.js +88 -0
  120. package/dist/esm/modules/resourceJump/ResourceJumpContext.js.map +1 -0
  121. package/dist/esm/modules/resourceJump/buildJumpUrl.d.ts +2 -0
  122. package/dist/esm/modules/resourceJump/buildJumpUrl.js +32 -0
  123. package/dist/esm/modules/resourceJump/buildJumpUrl.js.map +1 -0
  124. package/dist/esm/modules/resourceJump/findBestMatchByUrl.d.ts +17 -0
  125. package/dist/esm/modules/resourceJump/findBestMatchByUrl.js +85 -0
  126. package/dist/esm/modules/resourceJump/findBestMatchByUrl.js.map +1 -0
  127. package/dist/esm/modules/resourceJump/helpers.d.ts +28 -0
  128. package/dist/esm/modules/resourceJump/helpers.js +19 -0
  129. package/dist/esm/modules/resourceJump/helpers.js.map +1 -0
  130. package/dist/esm/modules/resourceJump/routeLoader.d.ts +11 -0
  131. package/dist/esm/modules/resourceJump/routeLoader.js +43 -0
  132. package/dist/esm/modules/resourceJump/routeLoader.js.map +1 -0
  133. package/dist/esm/modules/resourceJump/types.d.ts +18 -0
  134. package/dist/esm/modules/resourceJump/ui/EhJumpResourceSelector.d.ts +20 -0
  135. package/dist/esm/modules/resourceJump/ui/EhJumpResourceSelector.js +209 -0
  136. package/dist/esm/modules/resourceJump/ui/EhJumpResourceSelector.js.map +1 -0
  137. package/dist/esm/modules/resourceJump/ui/JumpALink.d.ts +14 -0
  138. package/dist/esm/modules/resourceJump/ui/JumpALink.js +38 -0
  139. package/dist/esm/modules/resourceJump/ui/JumpALink.js.map +1 -0
  140. package/dist/esm/modules/resourceJump/ui/JumpMainButton.d.ts +5 -0
  141. package/dist/esm/modules/resourceJump/ui/JumpMainButton.js +66 -0
  142. package/dist/esm/modules/resourceJump/ui/JumpMainButton.js.map +1 -0
  143. package/dist/esm/modules/resourceJump/ui/ResouceJumpLayout.d.ts +5 -0
  144. package/dist/esm/modules/resourceJump/ui/ResouceJumpLayout.js +42 -0
  145. package/dist/esm/modules/resourceJump/ui/ResouceJumpLayout.js.map +1 -0
  146. package/dist/esm/plugins/builtin/pageUrl/PageUrlPluginContext.d.ts +9 -0
  147. package/dist/esm/plugins/builtin/pageUrl/PageUrlPluginContext.js +36 -0
  148. package/dist/esm/plugins/builtin/pageUrl/PageUrlPluginContext.js.map +1 -0
  149. package/dist/esm/plugins/builtin/pageUrl/pageUrlAutoCompletePlugin.d.ts +11 -0
  150. package/dist/esm/plugins/builtin/pageUrl/pageUrlAutoCompletePlugin.js +44 -0
  151. package/dist/esm/plugins/builtin/pageUrl/pageUrlAutoCompletePlugin.js.map +1 -0
  152. package/dist/esm/plugins/builtin/pageUrl/pageUrlJumpPlugin.d.ts +7 -0
  153. package/dist/esm/plugins/builtin/pageUrl/pageUrlJumpPlugin.js +29 -0
  154. package/dist/esm/plugins/builtin/pageUrl/pageUrlJumpPlugin.js.map +1 -0
  155. package/dist/esm/plugins/builtin/pageUrl/pageUrlTypes.d.ts +11 -0
  156. package/dist/esm/routeTree.gen.d.ts +142 -0
  157. package/dist/esm/routeTree.gen.js +77 -0
  158. package/dist/esm/routeTree.gen.js.map +1 -0
  159. package/dist/esm/routes/__root.d.ts +2 -0
  160. package/dist/esm/routes/__root.js +22 -0
  161. package/dist/esm/routes/__root.js.map +1 -0
  162. package/dist/esm/routes/_layout/app/$appSlug/sub/$subValue.d.ts +1 -0
  163. package/dist/esm/routes/_layout/app/$appSlug.d.ts +1 -0
  164. package/dist/esm/routes/_layout/app/_appSlug/sub/_subValue.js +18 -0
  165. package/dist/esm/routes/_layout/app/_appSlug/sub/_subValue.js.map +1 -0
  166. package/dist/esm/routes/_layout/app/_appSlug.js +18 -0
  167. package/dist/esm/routes/_layout/app/_appSlug.js.map +1 -0
  168. package/dist/esm/routes/_layout/env/$envSlug/app/$appSlug/sub/$subValue.d.ts +1 -0
  169. package/dist/esm/routes/_layout/env/$envSlug/app/$appSlug.d.ts +1 -0
  170. package/dist/esm/routes/_layout/env/$envSlug/sub/$subValue.d.ts +1 -0
  171. package/dist/esm/routes/_layout/env/$envSlug.d.ts +1 -0
  172. package/dist/esm/routes/_layout/env/_envSlug/app/_appSlug/sub/_subValue.js +20 -0
  173. package/dist/esm/routes/_layout/env/_envSlug/app/_appSlug/sub/_subValue.js.map +1 -0
  174. package/dist/esm/routes/_layout/env/_envSlug/app/_appSlug.js +18 -0
  175. package/dist/esm/routes/_layout/env/_envSlug/app/_appSlug.js.map +1 -0
  176. package/dist/esm/routes/_layout/env/_envSlug/sub/_subValue.js +18 -0
  177. package/dist/esm/routes/_layout/env/_envSlug/sub/_subValue.js.map +1 -0
  178. package/dist/esm/routes/_layout/env/_envSlug.js +18 -0
  179. package/dist/esm/routes/_layout/env/_envSlug.js.map +1 -0
  180. package/dist/esm/routes/_layout/index.d.ts +1 -0
  181. package/dist/esm/routes/_layout/index.js +18 -0
  182. package/dist/esm/routes/_layout/index.js.map +1 -0
  183. package/dist/esm/routes/_layout.d.ts +1 -0
  184. package/dist/esm/routes/_layout.js +12 -0
  185. package/dist/esm/routes/_layout.js.map +1 -0
  186. package/dist/esm/types/ehTypes.d.ts +31 -0
  187. package/dist/esm/types/slateTypes.d.ts +28 -0
  188. package/dist/esm/types/tanstackQuery.d.ts +11 -0
  189. package/dist/esm/types/types.d.ts +16 -0
  190. package/dist/esm/types/userBehaviourTypes.d.ts +76 -0
  191. package/dist/esm/types/utilityTypes.d.ts +1 -0
  192. package/dist/esm/ui/components/ActionCard.d.ts +9 -0
  193. package/dist/esm/ui/components/AppIcon.d.ts +7 -0
  194. package/dist/esm/ui/components/commandInput/EhBaseSelector.d.ts +6 -0
  195. package/dist/esm/ui/components/commandInput/EhBaseSelector.js +22 -0
  196. package/dist/esm/ui/components/commandInput/EhBaseSelector.js.map +1 -0
  197. package/dist/esm/ui/components/commandInput/types.d.ts +13 -0
  198. package/dist/esm/ui/components/contextDebug.d.ts +2 -0
  199. package/dist/esm/ui/components/contextDebug.js +12 -0
  200. package/dist/esm/ui/components/contextDebug.js.map +1 -0
  201. package/dist/esm/ui/components/controlPanel/BaseDropdownSelector.d.ts +11 -0
  202. package/dist/esm/ui/components/controlPanel/env/EnvDropdownContent.d.ts +5 -0
  203. package/dist/esm/ui/components/controlPanel/env/EnvDropdownSelector.d.ts +1 -0
  204. package/dist/esm/ui/components/error/DefaultErrorComponent.d.ts +2 -0
  205. package/dist/esm/ui/components/error/DefaultErrorComponent.js +13 -0
  206. package/dist/esm/ui/components/error/DefaultErrorComponent.js.map +1 -0
  207. package/dist/esm/ui/components/error/RooutErrorPage.d.ts +2 -0
  208. package/dist/esm/ui/components/error/RooutErrorPage.js +12 -0
  209. package/dist/esm/ui/components/error/RooutErrorPage.js.map +1 -0
  210. package/dist/esm/ui/components/footer/Footer.d.ts +1 -0
  211. package/dist/esm/ui/components/footer/Footer.js +38 -0
  212. package/dist/esm/ui/components/footer/Footer.js.map +1 -0
  213. package/dist/esm/ui/components/header/PlaygroundHeader.d.ts +1 -0
  214. package/dist/esm/ui/components/header/PlaygroundHeader.js +23 -0
  215. package/dist/esm/ui/components/header/PlaygroundHeader.js.map +1 -0
  216. package/dist/esm/ui/components/leftPanel/LeftPanel.d.ts +5 -0
  217. package/dist/esm/ui/components/quickBar/EnvQuickJumpBar.d.ts +5 -0
  218. package/dist/esm/ui/components/quickBar/EnvQuickJumpBar.js +52 -0
  219. package/dist/esm/ui/components/quickBar/EnvQuickJumpBar.js.map +1 -0
  220. package/dist/esm/ui/components/quickBar/QuickJumpBar.d.ts +5 -0
  221. package/dist/esm/ui/components/widgetPanel/AddWidgetCard.d.ts +5 -0
  222. package/dist/esm/ui/components/widgetPanel/WidgetGrid.d.ts +6 -0
  223. package/dist/esm/ui/components/widgets/CredentialsWidget.d.ts +11 -0
  224. package/dist/esm/ui/components/widgets/VersionWidget.d.ts +7 -0
  225. package/dist/esm/ui/error/NotFoundError.d.ts +1 -0
  226. package/dist/esm/ui/error/NotFoundError.js +16 -0
  227. package/dist/esm/ui/error/NotFoundError.js.map +1 -0
  228. package/dist/esm/ui/layout/Footer.d.ts +1 -0
  229. package/dist/esm/ui/layout/Header.d.ts +1 -0
  230. package/dist/esm/ui/layout/LoadingScreen.d.ts +4 -0
  231. package/dist/esm/ui/layout/LoadingScreen.js +14 -0
  232. package/dist/esm/ui/layout/LoadingScreen.js.map +1 -0
  233. package/dist/esm/ui/layout/MainLayout.d.ts +5 -0
  234. package/dist/esm/ui/layout/MainLayout.js +18 -0
  235. package/dist/esm/ui/layout/MainLayout.js.map +1 -0
  236. package/dist/esm/ui/layout/SideColumn.d.ts +1 -0
  237. package/dist/esm/ui/layout/TopLevelProviders.d.ts +5 -0
  238. package/dist/esm/ui/layout/TopLevelProviders.js +42 -0
  239. package/dist/esm/ui/layout/TopLevelProviders.js.map +1 -0
  240. package/dist/esm/ui/main/JumpTabContent.d.ts +1 -0
  241. package/dist/esm/ui/main/Tabs.d.ts +4 -0
  242. package/dist/esm/userDb/DbContext.d.ts +9 -0
  243. package/dist/esm/userDb/DbContext.js +18 -0
  244. package/dist/esm/userDb/DbContext.js.map +1 -0
  245. package/dist/esm/userDb/EhDb.d.ts +12 -0
  246. package/dist/esm/userDb/EhDb.js +20 -0
  247. package/dist/esm/userDb/EhDb.js.map +1 -0
  248. package/dist/esm/util/availabilityMatrixUtils.d.ts +12 -0
  249. package/dist/esm/util/availabilityMatrixUtils.js +57 -0
  250. package/dist/esm/util/availabilityMatrixUtils.js.map +1 -0
  251. package/dist/esm/util/createEhRouter.d.ts +7 -0
  252. package/dist/esm/util/createEhRouter.js +16 -0
  253. package/dist/esm/util/createEhRouter.js.map +1 -0
  254. package/dist/esm/util/highlightMatches.d.ts +2 -0
  255. package/dist/esm/util/highlightMatches.js +19 -0
  256. package/dist/esm/util/highlightMatches.js.map +1 -0
  257. package/dist/esm/util/reactQueryUtils.d.ts +6 -0
  258. package/dist/esm/util/reactQueryUtils.js +10 -0
  259. package/dist/esm/util/reactQueryUtils.js.map +1 -0
  260. package/dist/esm/util/route-utils.d.ts +6 -0
  261. package/dist/esm/util/route-utils.js +72 -0
  262. package/dist/esm/util/route-utils.js.map +1 -0
  263. package/dist/favicon.ico +0 -0
  264. package/dist/robots.txt +2 -0
  265. package/package.json +110 -0
  266. package/src/App.tsx +28 -0
  267. package/src/__tests__/modules/fuzzyMatchLogic/autoCompleteFilter.test.ts +185 -0
  268. package/src/__tests__/modules/fuzzyMatchLogic/features/prefixFracTokenMiddles.test.ts +23 -0
  269. package/src/__tests__/modules/fuzzyMatchLogic/fixLayout.test.ts +11 -0
  270. package/src/__tests__/modules/fuzzyMatchLogic/postFiltration.test.ts +15 -0
  271. package/src/__tests__/modules/fuzzyMatchLogic/testUtils.ts +8 -0
  272. package/src/__tests__/modules/fuzzyMatchLogic/tokenize.test.ts +65 -0
  273. package/src/__tests__/modules/resouceJump/findBestMatchByUrl.test.ts +234 -0
  274. package/src/__tests__/setupTests.tsx +0 -0
  275. package/src/__tests__/util/availabilityMatrixUtils.test.ts +61 -0
  276. package/src/api/ApiQueryMagazine.ts +15 -0
  277. package/src/api/data/useQueryBootstrapConfig.ts +17 -0
  278. package/src/api/infra/createQueryClient.ts +25 -0
  279. package/src/api/infra/trpc.ts +6 -0
  280. package/src/api/unsorted/indexDataFetcher.ts +46 -0
  281. package/src/appPropsFactory.ts +35 -0
  282. package/src/assets/env-hopper-logo.svg +114 -0
  283. package/src/components/ThemeSwitcher.tsx +22 -0
  284. package/src/components/theme-provider.tsx +8 -0
  285. package/src/components/ui/badge.tsx +37 -0
  286. package/src/components/ui/breadcrumb.tsx +128 -0
  287. package/src/components/ui/button.tsx +60 -0
  288. package/src/components/ui/card.tsx +95 -0
  289. package/src/components/ui/collapsible.tsx +31 -0
  290. package/src/components/ui/dialog.tsx +182 -0
  291. package/src/components/ui/dropdown-menu.tsx +257 -0
  292. package/src/components/ui/input.tsx +28 -0
  293. package/src/components/ui/popover.tsx +48 -0
  294. package/src/components/ui/scroll-area.tsx +58 -0
  295. package/src/components/ui/separator.tsx +26 -0
  296. package/src/components/ui/tabs.tsx +65 -0
  297. package/src/index.css +211 -0
  298. package/src/index.tsx +3 -0
  299. package/src/lib/utils.ts +7 -0
  300. package/src/main.tsx +53 -0
  301. package/src/modules/config/BootstrapConfigContext.tsx +33 -0
  302. package/src/modules/config/GlobalConfigContext.tsx +42 -0
  303. package/src/modules/environment/ApiQueryMagazineEnvironment.ts +12 -0
  304. package/src/modules/environment/EnvironmentContext.tsx +115 -0
  305. package/src/modules/environment/types.ts +4 -0
  306. package/src/modules/environment/ui/EhEnvSelector.tsx +191 -0
  307. package/src/modules/fuzzyMatchLogic/autoCompleteFilter.ts +186 -0
  308. package/src/modules/fuzzyMatchLogic/features/prefixFrac.ts +13 -0
  309. package/src/modules/fuzzyMatchLogic/features/prefixFracTokenMiddles.ts +29 -0
  310. package/src/modules/fuzzyMatchLogic/fixLayout.ts +24 -0
  311. package/src/modules/fuzzyMatchLogic/postFiltration.ts +35 -0
  312. package/src/modules/fuzzyMatchLogic/scoring.ts +42 -0
  313. package/src/modules/fuzzyMatchLogic/tokenize.ts +32 -0
  314. package/src/modules/fuzzyMatchLogic/types.ts +33 -0
  315. package/src/modules/fuzzyMatchLogic/utils.ts +18 -0
  316. package/src/modules/pluginCore/PluginManagerContext.tsx +107 -0
  317. package/src/modules/pluginCore/makePluginManagerContext.ts +35 -0
  318. package/src/modules/pluginCore/types.ts +54 -0
  319. package/src/modules/resourceJump/ApiQueryMagazineResourceJump.ts +31 -0
  320. package/src/modules/resourceJump/ResourceJumpContext.tsx +142 -0
  321. package/src/modules/resourceJump/buildJumpUrl.ts +40 -0
  322. package/src/modules/resourceJump/findBestMatchByUrl.ts +121 -0
  323. package/src/modules/resourceJump/helpers.ts +117 -0
  324. package/src/modules/resourceJump/routeLoader.ts +58 -0
  325. package/src/modules/resourceJump/types.ts +21 -0
  326. package/src/modules/resourceJump/ui/EhJumpResourceSelector.tsx +259 -0
  327. package/src/modules/resourceJump/ui/JumpALink.tsx +54 -0
  328. package/src/modules/resourceJump/ui/JumpMainButton.tsx +97 -0
  329. package/src/modules/resourceJump/ui/ResouceJumpLayout.tsx +73 -0
  330. package/src/plugins/builtin/pageUrl/PageUrlPluginContext.tsx +55 -0
  331. package/src/plugins/builtin/pageUrl/pageUrlAutoCompletePlugin.ts +66 -0
  332. package/src/plugins/builtin/pageUrl/pageUrlJumpPlugin.ts +36 -0
  333. package/src/plugins/builtin/pageUrl/pageUrlTypes.ts +17 -0
  334. package/src/routeTree.gen.ts +249 -0
  335. package/src/routes/__root.tsx +23 -0
  336. package/src/routes/_layout/app/$appSlug/sub/$subValue.tsx +15 -0
  337. package/src/routes/_layout/app/$appSlug.tsx +15 -0
  338. package/src/routes/_layout/env/$envSlug/app/$appSlug/sub/$subValue.tsx +17 -0
  339. package/src/routes/_layout/env/$envSlug/app/$appSlug.tsx +15 -0
  340. package/src/routes/_layout/env/$envSlug/sub/$subValue.tsx +15 -0
  341. package/src/routes/_layout/env/$envSlug.tsx +15 -0
  342. package/src/routes/_layout/index.tsx +16 -0
  343. package/src/routes/_layout.tsx +9 -0
  344. package/src/types/ehTypes.ts +40 -0
  345. package/src/types/slateTypes.ts +22 -0
  346. package/src/types/tanstackQuery.ts +14 -0
  347. package/src/types/types.ts +20 -0
  348. package/src/types/userBehaviourTypes.ts +100 -0
  349. package/src/types/utilityTypes.ts +1 -0
  350. package/src/types/vite-env.d.ts +1 -0
  351. package/src/ui/components/ActionCard.tsx +30 -0
  352. package/src/ui/components/AppIcon.tsx +48 -0
  353. package/src/ui/components/commandInput/EhBaseSelector.tsx +51 -0
  354. package/src/ui/components/commandInput/types.ts +22 -0
  355. package/src/ui/components/contextDebug.tsx +13 -0
  356. package/src/ui/components/controlPanel/BaseDropdownSelector.tsx +163 -0
  357. package/src/ui/components/controlPanel/env/EnvDropdownContent.tsx +114 -0
  358. package/src/ui/components/controlPanel/env/EnvDropdownSelector.tsx +21 -0
  359. package/src/ui/components/error/DefaultErrorComponent.tsx +38 -0
  360. package/src/ui/components/error/RooutErrorPage.tsx +10 -0
  361. package/src/ui/components/footer/Footer.tsx +32 -0
  362. package/src/ui/components/header/PlaygroundHeader.tsx +26 -0
  363. package/src/ui/components/leftPanel/LeftPanel.tsx +194 -0
  364. package/src/ui/components/quickBar/EnvQuickJumpBar.tsx +65 -0
  365. package/src/ui/components/quickBar/QuickJumpBar.tsx +101 -0
  366. package/src/ui/components/widgetPanel/AddWidgetCard.tsx +17 -0
  367. package/src/ui/components/widgetPanel/WidgetGrid.tsx +18 -0
  368. package/src/ui/components/widgets/CredentialsWidget.tsx +55 -0
  369. package/src/ui/components/widgets/VersionWidget.tsx +29 -0
  370. package/src/ui/error/NotFoundError.tsx +13 -0
  371. package/src/ui/layout/Footer.tsx +16 -0
  372. package/src/ui/layout/Header.tsx +14 -0
  373. package/src/ui/layout/LoadingScreen.tsx +17 -0
  374. package/src/ui/layout/MainLayout.tsx +27 -0
  375. package/src/ui/layout/SideColumn.tsx +3 -0
  376. package/src/ui/layout/TopLevelProviders.tsx +52 -0
  377. package/src/ui/main/JumpTabContent.tsx +12 -0
  378. package/src/ui/main/Tabs.tsx +29 -0
  379. package/src/userDb/DbContext.tsx +22 -0
  380. package/src/userDb/EhDb.ts +22 -0
  381. package/src/util/availabilityMatrixUtils.ts +80 -0
  382. package/src/util/createEhRouter.ts +20 -0
  383. package/src/util/highlightMatches.tsx +29 -0
  384. package/src/util/reactQueryUtils.ts +12 -0
  385. package/src/util/route-utils.ts +71 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Igor Golovin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
Binary file
@@ -0,0 +1,6 @@
1
+ {
2
+ "workspace": {
3
+ "root": "C:/Users/ele/src/other/env-hopper",
4
+ "uuid": "0198b08e-0bc0-7ba9-91eb-e8f7f636d694"
5
+ }
6
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,114 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 27.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 -65 375 375" style="enable-background:new 0 0 375.9 244.9;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{opacity:0.05;}
7
+ .st1{fill:#A78256;}
8
+ .st2{fill:#8BC143;}
9
+ .st3{fill:#25572C;}
10
+ .st4{fill:#367F3D;}
11
+ .st5{clip-path:url(#SVGID_00000004530938209597365300000002644174144295954342_);fill:#FFFFFF;}
12
+ .st6{fill:#D5DA38;}
13
+ .st7{fill:#DCB78B;}
14
+ .st8{fill:#A68356;}
15
+ .st9{fill:none;}
16
+ .st10{fill:#296A35;}
17
+ .st11{fill:#24572C;}
18
+ .st12{fill:#56B347;}
19
+ .st13{fill:#2E753A;}
20
+ .st14{fill:#FFFFFF;}
21
+ .st15{fill:#78983D;}
22
+ .st16{fill:#38803E;}
23
+ </style>
24
+ <g id="Layer_4">
25
+ <path class="st0" d="M348.07,224.58c0,13.58-76.31,16.29-168.48,13.91c-85.51-2.21-167.67-12.7-167.67-26.28
26
+ c0-13.58,75.86-16.6,168-13.55C251.54,201.04,348.07,211,348.07,224.58z"/>
27
+ </g>
28
+ <g id="Layer_5">
29
+ <path class="st1" d="M191.33,63.44c-4.71-1.27-9.7,3.77-11.78,5.44c-22.75,18.26-65.08,108.22-68.32,110.8
30
+ c-2.65,2.11-12.55-4.77-26.06,6.99c-2.28,1.99,17.71-3.94,27.35,4.79c4.31,3.9,22.67-31.3,43.4-74.21
31
+ c7.89-16.33,16.66-28.67,29.37-41.6c3.95-4.02,9.74-6.99,9.13-9.83C194.07,64.16,191.67,63.53,191.33,63.44z"/>
32
+ <path class="st2" d="M315.5,185.71c19.53-4.58,25.95-33.16,23.08-54.88c-3.64-27.61-17.56-34.28-34.67-33.9
33
+ c-19.88,0.44-44.11,22.97-32.88,51.46C277.76,165.5,296.2,190.24,315.5,185.71z"/>
34
+ <path class="st3" d="M317.37,92.95c-1.19,0.17-6.89-0.13-6.55-0.52c16.19-18.5,39.73-46.86,55.69-73.93
35
+ c0.14-0.24,1.75,7.27-24.68,43.19C341.84,61.7,317.94,92.87,317.37,92.95z"/>
36
+ <path class="st4" d="M295.82,101.2c-2.01-0.96,43.56-73.4,51-101.15c0.27-1.02-0.95,15.86-12.52,38.58
37
+ C315.28,76,306.48,92.6,301.71,101.2C301.06,102.37,297.81,102.14,295.82,101.2z"/>
38
+ <g>
39
+ <defs>
40
+ <path id="SVGID_1_" d="M337.53,110.9c4.31-1.33,15.13,4.96,15.29,15.68c0.13,8.83-8.71,15.46-11.6,15.57
41
+ c-1.01,0.04,0.03-4.88-0.72-15.7C340.01,119.23,335.7,111.46,337.53,110.9z"/>
42
+ </defs>
43
+ <use xlink:href="#SVGID_1_" style="overflow:visible;fill:#8BC143;"/>
44
+ <clipPath id="SVGID_00000141425935757089766400000014964260461132888230_">
45
+ <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
46
+ </clipPath>
47
+
48
+ <circle style="clip-path:url(#SVGID_00000141425935757089766400000014964260461132888230_);fill:#FFFFFF;" cx="337.66" cy="125.78" r="12.55"/>
49
+ </g>
50
+ <path class="st4" d="M72,148.17c12.3-16.8,133.34-31.43,144.28-31.28c0.4,0.01,0.69,4.28,22.94,13.64
51
+ c2.33,0.98,10.66,4.72,16.04,13.86c2.43,4.12,4.42,10.67,4.47,15.71c0.01,1.33-56.06,5.28-103.07,4.71
52
+ C96.02,164.07,68.08,153.52,72,148.17z"/>
53
+ <path class="st6" d="M113.86,186.55c-5.06-0.46-27.13-8.1-29.26-21.47c-0.61-3.81,0.35-6.85,0.8-8.08
54
+ c0.59-1.6,23.41,9.72,87.9,8.39c64.06-1.32,85.65-5.83,86.01-5.03C261.99,166.36,217.6,195.93,113.86,186.55z"/>
55
+ <path class="st2" d="M223.03,117.14c0.76-3.5,10.69-5.08,18.2-5.08c8.44,0,13.29-0.15,19.65-0.89c12.74-1.48,18.97-6.96,16.62-4.53
56
+ c-9.94,10.29-9.77,18.79-8.5,32.04c1.43,14.96,14.3,27.99,13.47,28.38c-4.47,2.09-10.28,6.04-15.14,4.32
57
+ c-9.04-3.19-4.77-21.85-13.13-32.7C246.81,129.06,222,121.89,223.03,117.14z"/>
58
+ <path d="M282.17,152.19c-0.5,4.28,0.64,14.39,6.17,20.99c6.21,7.43,5.99,7.21,12.31,9.99c0,0,0.01,0,0.01,0
59
+ c0.38-0.14-16.24-8.73-16.42-31.1C284.23,150.94,282.22,151.73,282.17,152.19z"/>
60
+ <path class="st7" d="M45.22,202.22c6.4-10.37,14.58-24.72,24.79-41.13c0,0,21.09-33.2,24.52-37.55c0,0,3.69-5.56,18.22-23.3
61
+ c0,0,2.49-3.04,9.72-9.39c3.36-2.95,4.91-4.03,7.18-4.42c2.76-0.47,6.2,0.15,8.83,1.99c0.61,0.42,1.07,0.8,1.1,0.88
62
+ c1.06,2.57,1.99,6.55-1.88,7.07c-2.91,0.39-4.38-0.83-6.43-0.18c-7.92,2.5-29.4,29.72-54.03,76.49
63
+ c-3.25,6.17-19.82,35.14-27.33,40.86c-0.17,0.13-0.66,0.66-3.12-0.63c-13.53-7.14-29.12-3.25-29.21-3.95
64
+ c-0.06-0.49,10.19-7.43,18.55-6.93C37.99,202.14,45.53,202.14,45.22,202.22z"/>
65
+ <path class="st7" d="M233.42,187.34c-2.31-1.13-4.34,0.53-5.99,1.85c0,0-6.49,4.43-3.04,9.36c6.54,9.33,19.97,19.12,50.58,34.48
66
+ c6.93,3.48,15.18,1.56,14.55,0.75c-3.2-4.11-39.95-19.08-51.05-29.73c-3.94-3.78-7.05-6.27-6.02-8.78
67
+ c0.66-1.61,2.83-2.06,3.31-3.64C236.28,189.94,235.32,188.95,233.42,187.34z"/>
68
+ <path class="st8" d="M263.01,192.63c-1.5-1.35-2.61-2.35-6.44,2.21c-2.22,2.64-3.78,5.85-3.24,8.5
69
+ c0.99,4.86,21.45,8.27,38.69,13.14c37.25,10.53,37.8,2.69,36.99,1.8c-0.24-0.27-25.47-3.5-49.47-9.42
70
+ c-14.27-3.52-18.08-5.91-17.15-10.56C262.86,195.91,266,195.32,263.01,192.63z"/>
71
+ <path class="st9" d="M71.78,148.17c2.54-10.82,106.81-31.18,144.37-31.18c0.44,0,0.86,0.75,1.89,1.97c2.9,3.43,6.53,4.52,7.57,4.99
72
+ c6.46,2.94,19.64,8.94,26.12,15.55c3.31,3.37,7.27,9.35,8.34,20.49C235.66,168.76,67.45,166.6,71.78,148.17z"/>
73
+ <path class="st10" d="M230.47,186.52c-2.04-2.62,11.48-19.13,25.95-22.56c1.88-0.45,5.96-0.11,7.34,1.93
74
+ c2.6,3.84-1.44,12.39-10.1,17.84c-8.87,5.59-16.41,9.16-17.23,8.33c-1.01-1.01-0.23-2.89-1.77-4.47
75
+ C233.1,185.98,231.17,187.41,230.47,186.52z"/>
76
+ <path class="st11" d="M264.81,194.71c-1.66-0.94-1.79-3.5-3.48-3.59c-2.06-0.11-3.41,3.84-4.91,3.48c-0.82-0.2-1.3-1.54-1.33-2.37
77
+ c-0.22-6.52,3.26-20.26,6.63-23.47c2.17-2.06,3.76,2.9,8.12,3.09c3.75,0.17,11.88-5.24,13.86-3.59c2.65,2.21-2.86,8.62-3.48,9.72
78
+ C275.33,186.72,265.69,195.21,264.81,194.71z"/>
79
+ <path class="st12" d="M228.92,187.2c1.07-0.44-0.94-5.63,7.67-13.25c6.51-5.76,10.78-6.24,11.82-8.56
80
+ c0.72-1.61-20.78-17.36-41.36-21.92c-11.26-2.5-61.01-55.21-63-56.21c-1.79-0.9-13.79,7.06-13.42,10.21
81
+ c0.35,2.92,13.91,9.77,35.89,27C183.86,138.07,211.31,194.44,228.92,187.2z"/>
82
+ <path class="st13" d="M199.73,65.27c0.65-0.11,36.98,40.09,41.89,43.44c0.85,0.58-14.58,2.12-14.94,1.47
83
+ c-7.27-12.72-38.41-29.6-38.98-35.91C187.4,71.04,196.38,65.84,199.73,65.27z"/>
84
+ <path class="st14" d="M313.18,126.49c0,8.27-6.71,14.98-14.98,14.98c-5.19,0-8.11-3.24-8.94-3.95c-0.44-0.38-6.18-4.4-6.04-11.03
85
+ c0.15-7.14,6.13-14.98,14.98-14.98C306.47,111.5,313.18,118.21,313.18,126.49z"/>
86
+ <path d="M339.38,121.61c-0.26-1.14,6.55,3.28,6.55,8.28c0,6.29-4.95,9.39-5.12,6.37C340.64,133.11,341.42,130.66,339.38,121.61z"/>
87
+ <path d="M277.61,148.06c0.1-0.43,2.35,1.42,5.98,1.9c3.27,0.43,5.79-0.08,5.77,0.07c-0.07,0.54-2.51,2.97-6.17,2.54
88
+ C278.34,152,277.5,148.53,277.61,148.06z"/>
89
+ <circle cx="296.71" cy="131.43" r="8.53"/>
90
+ <path d="M290.02,104.95c-4.8,1.75-12.41,8.08-11.71,9.17c1.25,1.95,17.54-5.95,17.02-8.23
91
+ C295.06,104.68,293.99,103.51,290.02,104.95z"/>
92
+ <circle class="st14" cx="297.94" cy="127.11" r="2.21"/>
93
+ <path class="st15" d="M92.76,178.11c-0.22-0.28-0.39-8.02,4-10.96c0.11-0.07,3.48-0.08,3.64-0.03c0.39,0.11-3.98,5.51-4.72,12.58
94
+ C95.63,180.22,92.86,178.23,92.76,178.11z"/>
95
+ <path class="st15" d="M113.67,185.95c-0.22-0.28-1.35-14.46,3.87-15.24c0.97-0.14,3.13-0.09,2.97,0.01
96
+ c-0.35,0.21-3.53,4.43-3.45,15.73C117.06,186.98,113.77,186.07,113.67,185.95z"/>
97
+ <path class="st15" d="M138.4,188.86c-0.22-0.28-3.66-13.37,0.43-15.95c0.83-0.52,3.35-0.99,3.18-0.89
98
+ c-0.35,0.21-0.78,5.37-0.7,16.67C141.32,189.22,138.49,188.98,138.4,188.86z"/>
99
+ <path class="st15" d="M161.4,188.79c-0.35-0.04-5.78-13.76-1.69-16.34c0.8-0.51,3.18-1.24,3.19-1.2c0,0-0.01,0.01-0.01,0.01
100
+ c-0.23,0.15-0.44,1.64-0.63,3.7c-0.11,1.24-0.05,3.87,0.07,4.9c0.77,6.19,2.5,8.5,2.15,8.69
101
+ C163.62,188.99,162.35,188.9,161.4,188.79z"/>
102
+ <path class="st15" d="M180.03,187.6c-0.35-0.04-6.32-13.45-2.23-16.03c0.8-0.51,3.18-1.24,3.19-1.2c0,0-0.5,0.13-0.5,0.13
103
+ c-0.23,0.15-0.32,1.46-0.5,3.52c-0.11,1.24,0.31,3.92,0.44,4.95c0.77,6.19,2.64,8.55,2.38,8.57
104
+ C181.95,187.6,180.97,187.71,180.03,187.6z"/>
105
+ <path class="st15" d="M198.4,185.28c-0.35-0.04-8.12-13.29-4.02-15.87c0.8-0.51,2.21-1.68,2.22-1.64c0,0,0.55,0,0.55,0
106
+ c-0.23,0.15,0.04,3.79,0.14,4.39c0.22,1.23,0.93,4.64,1.74,6.57c2.39,5.76,3.39,6.47,3.13,6.49
107
+ C201.31,185.29,199.35,185.39,198.4,185.28z"/>
108
+ </g>
109
+ <g id="Layer_3">
110
+ <path class="st16" d="M277.43,106.34c1.1-0.86-7.15,2.43-7.98,3.2c-7.37,6.87-7.84,21.06-5.39,31.28
111
+ c3.23,13.47,9.18,28.71,14.36,28.52c0.93-0.03,2.76-0.77,3.31-1.63c0.25-0.39-11.13-8.17-14.05-34.12
112
+ C265.92,117.99,274.28,108.78,277.43,106.34z"/>
113
+ </g>
114
+ </svg>
@@ -0,0 +1,12 @@
1
+ import { TRPCRouter } from '@env-hopper/backend-core';
2
+ import { QueryClient } from '@tanstack/react-query';
3
+ import { TRPCClient } from '@trpc/client';
4
+ import { EhDb } from './userDb/EhDb.js';
5
+ import { createEhRouter } from '~/util/createEhRouter';
6
+ export interface AppProps {
7
+ router: ReturnType<typeof createEhRouter>;
8
+ queryClient: QueryClient;
9
+ trpcClient: TRPCClient<TRPCRouter>;
10
+ db: EhDb;
11
+ }
12
+ export declare function App({ router, queryClient, trpcClient, db }: AppProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { QueryClientProvider } from "@tanstack/react-query";
3
+ import { RouterProvider } from "@tanstack/react-router";
4
+ import { DbProvider } from "./userDb/DbContext.js";
5
+ import { TRPCProvider } from "./api/infra/trpc.js";
6
+ function App({ router, queryClient, trpcClient, db }) {
7
+ return /* @__PURE__ */ jsx(QueryClientProvider, { client: queryClient, children: /* @__PURE__ */ jsx(TRPCProvider, { queryClient, trpcClient, children: /* @__PURE__ */ jsx(DbProvider, { db, children: /* @__PURE__ */ jsx(RouterProvider, { router }) }) }) });
8
+ }
9
+ export {
10
+ App
11
+ };
12
+ //# sourceMappingURL=App.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"App.js","sources":["../../src/App.tsx"],"sourcesContent":["import { QueryClientProvider } from '@tanstack/react-query'\nimport { RouterProvider } from '@tanstack/react-router'\nimport { DbProvider } from './userDb/DbContext'\nimport type { TRPCRouter } from '@env-hopper/backend-core'\nimport type { QueryClient } from '@tanstack/react-query'\nimport type { TRPCClient } from '@trpc/client'\nimport type { EhDb } from './userDb/EhDb'\nimport type { createEhRouter } from '~/util/createEhRouter'\nimport { TRPCProvider } from '~/api/infra/trpc'\n\nexport interface AppProps {\n router: ReturnType<typeof createEhRouter>\n queryClient: QueryClient\n trpcClient: TRPCClient<TRPCRouter>\n db: EhDb\n}\n\nexport function App({ router, queryClient, trpcClient, db }: AppProps) {\n return (\n <QueryClientProvider client={queryClient}>\n <TRPCProvider queryClient={queryClient} trpcClient={trpcClient}>\n <DbProvider db={db}>\n <RouterProvider router={router} />\n </DbProvider>\n </TRPCProvider>\n </QueryClientProvider>\n )\n}\n"],"names":[],"mappings":";;;;;AAiBO,SAAS,IAAI,EAAE,QAAQ,aAAa,YAAY,MAAgB;AACrE,6BACG,qBAAA,EAAoB,QAAQ,aAC3B,UAAA,oBAAC,gBAAa,aAA0B,YACtC,UAAA,oBAAC,YAAA,EAAW,IACV,UAAA,oBAAC,gBAAA,EAAe,OAAA,CAAgB,GAClC,GACF,EAAA,CACF;AAEJ;"}
@@ -0,0 +1,2 @@
1
+ import { FuzzySearchInputEntry } from '~/modules/fuzzyMatchLogic/types';
2
+ export declare function makeInputEntry(displayName: string): FuzzySearchInputEntry;
File without changes
@@ -0,0 +1,12 @@
1
+ import { IndexDataFetcherParams } from './unsorted/indexDataFetcher.js';
2
+ import { BootstrapConfigData } from '@env-hopper/backend-core';
3
+ export declare class ApiQueryMagazine {
4
+ static getConfig(params: IndexDataFetcherParams): import('@tanstack/react-query').OmitKeyof<import('@tanstack/react-query').UseQueryOptions<BootstrapConfigData, Error, BootstrapConfigData, readonly unknown[]>, "queryFn"> & {
5
+ queryFn?: import('@tanstack/react-query').QueryFunction<BootstrapConfigData, readonly unknown[], never> | undefined;
6
+ } & {
7
+ queryKey: readonly unknown[] & {
8
+ [dataTagSymbol]: BootstrapConfigData;
9
+ [dataTagErrorSymbol]: Error;
10
+ };
11
+ };
12
+ }
@@ -0,0 +1,16 @@
1
+ import { queryOptions } from "@tanstack/react-query";
2
+ import { indexDataFetcher } from "./unsorted/indexDataFetcher.js";
3
+ class ApiQueryMagazine {
4
+ static getConfig(params) {
5
+ const queryFn = indexDataFetcher(params);
6
+ return queryOptions({
7
+ queryKey: ["config"],
8
+ queryFn,
9
+ staleTime: 0
10
+ });
11
+ }
12
+ }
13
+ export {
14
+ ApiQueryMagazine
15
+ };
16
+ //# sourceMappingURL=ApiQueryMagazine.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ApiQueryMagazine.js","sources":["../../../src/api/ApiQueryMagazine.ts"],"sourcesContent":["import { queryOptions } from '@tanstack/react-query'\nimport { indexDataFetcher } from './unsorted/indexDataFetcher'\nimport type { IndexDataFetcherParams } from './unsorted/indexDataFetcher'\nimport type { BootstrapConfigData } from '@env-hopper/backend-core'\n\nexport class ApiQueryMagazine {\n static getConfig(params: IndexDataFetcherParams) {\n const queryFn = indexDataFetcher(params)\n return queryOptions<BootstrapConfigData, Error>({\n queryKey: ['config'],\n queryFn,\n staleTime: 0,\n })\n }\n}\n"],"names":[],"mappings":";;AAKO,MAAM,iBAAiB;AAAA,EAC5B,OAAO,UAAU,QAAgC;AAC/C,UAAM,UAAU,iBAAiB,MAAM;AACvC,WAAO,aAAyC;AAAA,MAC9C,UAAU,CAAC,QAAQ;AAAA,MACnB;AAAA,MACA,WAAW;AAAA,IAAA,CACZ;AAAA,EACH;AACF;"}
@@ -0,0 +1,3 @@
1
+ import { QueryKey } from '@tanstack/react-query';
2
+ export declare const shouldPersist: (key: QueryKey) => boolean;
3
+ export declare function useQueryBootstrapConfig(): import('@tanstack/react-query').UseQueryResult<import('@env-hopper/backend-core').BootstrapConfigData, Error>;
@@ -0,0 +1,14 @@
1
+ import { useQueryClient, useQuery } from "@tanstack/react-query";
2
+ import { ApiQueryMagazine } from "../ApiQueryMagazine.js";
3
+ import { useTRPCClient } from "../infra/trpc.js";
4
+ import { useDb } from "../../userDb/DbContext.js";
5
+ function useQueryBootstrapConfig() {
6
+ const trpcClient = useTRPCClient();
7
+ const queryClient = useQueryClient();
8
+ const db = useDb();
9
+ return useQuery(ApiQueryMagazine.getConfig({ trpcClient, queryClient, db }));
10
+ }
11
+ export {
12
+ useQueryBootstrapConfig
13
+ };
14
+ //# sourceMappingURL=useQueryBootstrapConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useQueryBootstrapConfig.js","sources":["../../../../src/api/data/useQueryBootstrapConfig.ts"],"sourcesContent":["import { useQuery, useQueryClient } from '@tanstack/react-query'\nimport { ApiQueryMagazine } from '../ApiQueryMagazine'\nimport type { QueryKey } from '@tanstack/react-query'\nimport { useTRPCClient } from '~/api/infra/trpc'\nimport { useDb } from '~/userDb/DbContext'\n\nexport const shouldPersist = (key: QueryKey) =>\n Array.isArray(key) && key[0] === 'envs'\n\nexport function useQueryBootstrapConfig() {\n // const trpc = useTRPC();\n const trpcClient = useTRPCClient()\n const queryClient = useQueryClient()\n const db = useDb()\n\n return useQuery(ApiQueryMagazine.getConfig({ trpcClient, queryClient, db }))\n}\n"],"names":[],"mappings":";;;;AASO,SAAS,0BAA0B;AAExC,QAAM,aAAa,cAAA;AACnB,QAAM,cAAc,eAAA;AACpB,QAAM,KAAK,MAAA;AAEX,SAAO,SAAS,iBAAiB,UAAU,EAAE,YAAY,aAAa,GAAA,CAAI,CAAC;AAC7E;"}
@@ -0,0 +1,7 @@
1
+ import { QueryClient } from '@tanstack/react-query';
2
+ import { TRPCRouter } from '@env-hopper/backend-core';
3
+ import { TRPCClient } from '@trpc/client';
4
+ export interface CreateQueryParams {
5
+ trpcClient: TRPCClient<TRPCRouter>;
6
+ }
7
+ export declare function createQueryClient({ trpcClient }: CreateQueryParams): QueryClient;
@@ -0,0 +1,23 @@
1
+ import { QueryClient } from "@tanstack/react-query";
2
+ function createQueryClient({ trpcClient }) {
3
+ return new QueryClient({
4
+ defaultOptions: {
5
+ queries: {
6
+ gcTime: 1e3 * 60 * 60 * 24 * 7,
7
+ // 7 days
8
+ meta: {
9
+ trpcClient
10
+ }
11
+ },
12
+ mutations: {
13
+ meta: {
14
+ trpcClient
15
+ }
16
+ }
17
+ }
18
+ });
19
+ }
20
+ export {
21
+ createQueryClient
22
+ };
23
+ //# sourceMappingURL=createQueryClient.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createQueryClient.js","sources":["../../../../src/api/infra/createQueryClient.ts"],"sourcesContent":["import { QueryClient } from '@tanstack/react-query'\nimport type { TRPCRouter } from '@env-hopper/backend-core'\nimport type { TRPCClient } from '@trpc/client'\n\nexport interface CreateQueryParams {\n trpcClient: TRPCClient<TRPCRouter>\n}\n\nexport function createQueryClient({ trpcClient }: CreateQueryParams) {\n return new QueryClient({\n defaultOptions: {\n queries: {\n gcTime: 1000 * 60 * 60 * 24 * 7, // 7 days\n meta: {\n trpcClient,\n },\n },\n mutations: {\n meta: {\n trpcClient,\n },\n },\n },\n })\n}\n"],"names":[],"mappings":";AAQO,SAAS,kBAAkB,EAAE,cAAiC;AACnE,SAAO,IAAI,YAAY;AAAA,IACrB,gBAAgB;AAAA,MACd,SAAS;AAAA,QACP,QAAQ,MAAO,KAAK,KAAK,KAAK;AAAA;AAAA,QAC9B,MAAM;AAAA,UACJ;AAAA,QAAA;AAAA,MACF;AAAA,MAEF,WAAW;AAAA,QACT,MAAM;AAAA,UACJ;AAAA,QAAA;AAAA,MACF;AAAA,IACF;AAAA,EACF,CACD;AACH;"}
@@ -0,0 +1,93 @@
1
+ declare const TRPCProvider: import('react').FC<{
2
+ children: React.ReactNode;
3
+ queryClient: import('@tanstack/react-query').QueryClient;
4
+ trpcClient: import('@trpc/client').TRPCClient<import('@trpc/server').TRPCBuiltRouter<{
5
+ ctx: import('@env-hopper/backend-core').EhTrpcContext;
6
+ meta: {};
7
+ errorShape: import('@trpc/server').TRPCDefaultErrorShape;
8
+ transformer: false;
9
+ }, import('@trpc/server').TRPCDecorateCreateRouterOptions<{
10
+ bootstrap: import('@trpc/server').TRPCQueryProcedure<{
11
+ input: void;
12
+ output: import('@env-hopper/backend-core').BootstrapConfigData;
13
+ meta: {};
14
+ }>;
15
+ availabilityMatrix: import('@trpc/server').TRPCQueryProcedure<{
16
+ input: void;
17
+ output: import('@env-hopper/backend-core').AvailiabilityMatrixData;
18
+ meta: {};
19
+ }>;
20
+ tryFindRenameRule: import('@trpc/server').TRPCQueryProcedure<{
21
+ input: {
22
+ envSlug?: string | undefined;
23
+ resourceSlug?: string | undefined;
24
+ };
25
+ output: false | import('@env-hopper/backend-core').RenameRule;
26
+ meta: {};
27
+ }>;
28
+ resourceJumps: import('@trpc/server').TRPCQueryProcedure<{
29
+ input: void;
30
+ output: import('@env-hopper/backend-core').ResourceJumpsData;
31
+ meta: {};
32
+ }>;
33
+ }>>>;
34
+ }>, useTRPC: () => import('@trpc/tanstack-react-query').TRPCOptionsProxy<import('@trpc/server').TRPCBuiltRouter<{
35
+ ctx: import('@env-hopper/backend-core').EhTrpcContext;
36
+ meta: {};
37
+ errorShape: import('@trpc/server').TRPCDefaultErrorShape;
38
+ transformer: false;
39
+ }, import('@trpc/server').TRPCDecorateCreateRouterOptions<{
40
+ bootstrap: import('@trpc/server').TRPCQueryProcedure<{
41
+ input: void;
42
+ output: import('@env-hopper/backend-core').BootstrapConfigData;
43
+ meta: {};
44
+ }>;
45
+ availabilityMatrix: import('@trpc/server').TRPCQueryProcedure<{
46
+ input: void;
47
+ output: import('@env-hopper/backend-core').AvailiabilityMatrixData;
48
+ meta: {};
49
+ }>;
50
+ tryFindRenameRule: import('@trpc/server').TRPCQueryProcedure<{
51
+ input: {
52
+ envSlug?: string | undefined;
53
+ resourceSlug?: string | undefined;
54
+ };
55
+ output: false | import('@env-hopper/backend-core').RenameRule;
56
+ meta: {};
57
+ }>;
58
+ resourceJumps: import('@trpc/server').TRPCQueryProcedure<{
59
+ input: void;
60
+ output: import('@env-hopper/backend-core').ResourceJumpsData;
61
+ meta: {};
62
+ }>;
63
+ }>>>, useTRPCClient: () => import('@trpc/client').TRPCClient<import('@trpc/server').TRPCBuiltRouter<{
64
+ ctx: import('@env-hopper/backend-core').EhTrpcContext;
65
+ meta: {};
66
+ errorShape: import('@trpc/server').TRPCDefaultErrorShape;
67
+ transformer: false;
68
+ }, import('@trpc/server').TRPCDecorateCreateRouterOptions<{
69
+ bootstrap: import('@trpc/server').TRPCQueryProcedure<{
70
+ input: void;
71
+ output: import('@env-hopper/backend-core').BootstrapConfigData;
72
+ meta: {};
73
+ }>;
74
+ availabilityMatrix: import('@trpc/server').TRPCQueryProcedure<{
75
+ input: void;
76
+ output: import('@env-hopper/backend-core').AvailiabilityMatrixData;
77
+ meta: {};
78
+ }>;
79
+ tryFindRenameRule: import('@trpc/server').TRPCQueryProcedure<{
80
+ input: {
81
+ envSlug?: string | undefined;
82
+ resourceSlug?: string | undefined;
83
+ };
84
+ output: false | import('@env-hopper/backend-core').RenameRule;
85
+ meta: {};
86
+ }>;
87
+ resourceJumps: import('@trpc/server').TRPCQueryProcedure<{
88
+ input: void;
89
+ output: import('@env-hopper/backend-core').ResourceJumpsData;
90
+ meta: {};
91
+ }>;
92
+ }>>>;
93
+ export { TRPCProvider, useTRPC, useTRPCClient };
@@ -0,0 +1,8 @@
1
+ import { createTRPCContext } from "@trpc/tanstack-react-query";
2
+ const { TRPCProvider, useTRPC, useTRPCClient } = createTRPCContext();
3
+ export {
4
+ TRPCProvider,
5
+ useTRPC,
6
+ useTRPCClient
7
+ };
8
+ //# sourceMappingURL=trpc.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"trpc.js","sources":["../../../../src/api/infra/trpc.ts"],"sourcesContent":["import { createTRPCContext } from '@trpc/tanstack-react-query'\nimport type { TRPCRouter } from '@env-hopper/backend-core'\n\nconst { TRPCProvider, useTRPC, useTRPCClient } = createTRPCContext<TRPCRouter>()\n\nexport { TRPCProvider, useTRPC, useTRPCClient }\n"],"names":[],"mappings":";AAGA,MAAM,EAAE,cAAc,SAAS,cAAA,IAAkB,kBAAA;"}
@@ -0,0 +1,11 @@
1
+ import { QueryClient, QueryKey } from '@tanstack/react-query';
2
+ import { TRPCClient } from '@trpc/client';
3
+ import { BootstrapConfigData, TRPCRouter } from '@env-hopper/backend-core';
4
+ import { EhDb } from '~/userDb/EhDb';
5
+ export declare const queryKey: QueryKey;
6
+ export interface IndexDataFetcherParams {
7
+ trpcClient: TRPCClient<TRPCRouter>;
8
+ queryClient: QueryClient;
9
+ db: EhDb;
10
+ }
11
+ export declare function indexDataFetcher({ queryClient, trpcClient, db, }: IndexDataFetcherParams): () => Promise<BootstrapConfigData>;
@@ -0,0 +1,35 @@
1
+ import { dbCacheDbKeys } from "../../userDb/EhDb.js";
2
+ const queryKey = ["bootstrapConfig"];
3
+ function indexDataFetcher({
4
+ queryClient,
5
+ trpcClient,
6
+ db
7
+ }) {
8
+ return async () => {
9
+ try {
10
+ const cached = await db.bootstrap.get(dbCacheDbKeys.Bootstrap);
11
+ if (cached) {
12
+ void syncFromNetwork({ queryClient, trpcClient, db });
13
+ return cached;
14
+ }
15
+ } catch (e) {
16
+ console.log("Error fetching cached index data:", e);
17
+ }
18
+ return await syncFromNetwork({ queryClient, trpcClient, db });
19
+ };
20
+ }
21
+ async function syncFromNetwork({
22
+ queryClient,
23
+ trpcClient,
24
+ db
25
+ }) {
26
+ const fresh = await trpcClient.bootstrap.query();
27
+ await db.bootstrap.put(fresh, dbCacheDbKeys.Bootstrap);
28
+ queryClient.setQueryData([queryKey], fresh);
29
+ return fresh;
30
+ }
31
+ export {
32
+ indexDataFetcher,
33
+ queryKey
34
+ };
35
+ //# sourceMappingURL=indexDataFetcher.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"indexDataFetcher.js","sources":["../../../../src/api/unsorted/indexDataFetcher.ts"],"sourcesContent":["import type { QueryClient, QueryKey } from '@tanstack/react-query'\nimport type { TRPCClient } from '@trpc/client'\nimport type { BootstrapConfigData, TRPCRouter } from '@env-hopper/backend-core'\nimport type { EhDb } from '~/userDb/EhDb'\nimport { dbCacheDbKeys } from '~/userDb/EhDb'\n\nexport const queryKey: QueryKey = ['bootstrapConfig']\n\nexport interface IndexDataFetcherParams {\n trpcClient: TRPCClient<TRPCRouter>\n queryClient: QueryClient\n db: EhDb\n}\n\nexport function indexDataFetcher({\n queryClient,\n trpcClient,\n db,\n}: IndexDataFetcherParams): () => Promise<BootstrapConfigData> {\n return async () => {\n try {\n const cached = await db.bootstrap.get(dbCacheDbKeys.Bootstrap)\n if (cached) {\n void syncFromNetwork({ queryClient, trpcClient, db })\n return cached\n }\n } catch (e) {\n console.log('Error fetching cached index data:', e)\n }\n\n return await syncFromNetwork({ queryClient, trpcClient, db })\n }\n}\n\nasync function syncFromNetwork({\n queryClient,\n trpcClient,\n db,\n}: IndexDataFetcherParams): Promise<BootstrapConfigData> {\n const fresh: BootstrapConfigData = await trpcClient.bootstrap.query()\n\n await db.bootstrap.put(fresh, dbCacheDbKeys.Bootstrap)\n queryClient.setQueryData([queryKey], fresh)\n\n return fresh\n}\n"],"names":[],"mappings":";AAMO,MAAM,WAAqB,CAAC,iBAAiB;AAQ7C,SAAS,iBAAiB;AAAA,EAC/B;AAAA,EACA;AAAA,EACA;AACF,GAA+D;AAC7D,SAAO,YAAY;AACjB,QAAI;AACF,YAAM,SAAS,MAAM,GAAG,UAAU,IAAI,cAAc,SAAS;AAC7D,UAAI,QAAQ;AACV,aAAK,gBAAgB,EAAE,aAAa,YAAY,IAAI;AACpD,eAAO;AAAA,MACT;AAAA,IACF,SAAS,GAAG;AACV,cAAQ,IAAI,qCAAqC,CAAC;AAAA,IACpD;AAEA,WAAO,MAAM,gBAAgB,EAAE,aAAa,YAAY,IAAI;AAAA,EAC9D;AACF;AAEA,eAAe,gBAAgB;AAAA,EAC7B;AAAA,EACA;AAAA,EACA;AACF,GAAyD;AACvD,QAAM,QAA6B,MAAM,WAAW,UAAU,MAAA;AAE9D,QAAM,GAAG,UAAU,IAAI,OAAO,cAAc,SAAS;AACrD,cAAY,aAAa,CAAC,QAAQ,GAAG,KAAK;AAE1C,SAAO;AACT;"}
@@ -0,0 +1,2 @@
1
+ import { AppProps } from './App.js';
2
+ export declare function appPropsFactory(): AppProps;
@@ -0,0 +1,32 @@
1
+ import { createBrowserHistory } from "@tanstack/react-router";
2
+ import { createTRPCClient, httpBatchLink } from "@trpc/client";
3
+ import { PageUrlJumpPlugin } from "./plugins/builtin/pageUrl/pageUrlJumpPlugin.js";
4
+ import { EhDb } from "./userDb/EhDb.js";
5
+ import { createEhRouter } from "./util/createEhRouter.js";
6
+ import { createQueryClient } from "./api/infra/createQueryClient.js";
7
+ function appPropsFactory() {
8
+ const trpcClient = createTRPCClient({
9
+ links: [
10
+ httpBatchLink({
11
+ url: "http://localhost:4000/trpc"
12
+ })
13
+ ]
14
+ });
15
+ const db = new EhDb();
16
+ const queryClient = createQueryClient({ trpcClient });
17
+ const plugins = [new PageUrlJumpPlugin()];
18
+ const router = createEhRouter({
19
+ history: createBrowserHistory(),
20
+ context: {
21
+ queryClient,
22
+ trpcClient,
23
+ db,
24
+ plugins
25
+ }
26
+ });
27
+ return { router, queryClient, trpcClient, db };
28
+ }
29
+ export {
30
+ appPropsFactory
31
+ };
32
+ //# sourceMappingURL=appPropsFactory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"appPropsFactory.js","sources":["../../src/appPropsFactory.ts"],"sourcesContent":["import { createBrowserHistory } from '@tanstack/react-router'\nimport { createTRPCClient, httpBatchLink } from '@trpc/client'\nimport { PageUrlJumpPlugin } from './plugins/builtin/pageUrl/pageUrlJumpPlugin'\nimport { EhDb } from './userDb/EhDb'\nimport type { AppProps } from './App'\nimport type { EhPlugin } from './modules/pluginCore/types'\nimport type { TRPCRouter } from '@env-hopper/backend-core'\nimport { createEhRouter } from '~/util/createEhRouter'\nimport { createQueryClient } from '~/api/infra/createQueryClient'\n\n// registerSW();\nexport function appPropsFactory(): AppProps {\n const trpcClient = createTRPCClient<TRPCRouter>({\n links: [\n httpBatchLink({\n url: 'http://localhost:4000/trpc',\n }),\n ],\n })\n\n const db = new EhDb()\n const queryClient = createQueryClient({ trpcClient })\n const plugins: Array<EhPlugin> = [new PageUrlJumpPlugin()]\n const router = createEhRouter({\n history: createBrowserHistory(),\n context: {\n queryClient,\n trpcClient,\n db,\n plugins,\n },\n })\n\n return { router, queryClient, trpcClient, db }\n}\n"],"names":[],"mappings":";;;;;;AAWO,SAAS,kBAA4B;AAC1C,QAAM,aAAa,iBAA6B;AAAA,IAC9C,OAAO;AAAA,MACL,cAAc;AAAA,QACZ,KAAK;AAAA,MAAA,CACN;AAAA,IAAA;AAAA,EACH,CACD;AAED,QAAM,KAAK,IAAI,KAAA;AACf,QAAM,cAAc,kBAAkB,EAAE,YAAY;AACpD,QAAM,UAA2B,CAAC,IAAI,mBAAmB;AACzD,QAAM,SAAS,eAAe;AAAA,IAC5B,SAAS,qBAAA;AAAA,IACT,SAAS;AAAA,MACP;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IAAA;AAAA,EACF,CACD;AAED,SAAO,EAAE,QAAQ,aAAa,YAAY,GAAA;AAC5C;"}
@@ -0,0 +1,16 @@
1
+ import * as React from "react";
2
+ const SvgEnvHopperLogo = (props) => /* @__PURE__ */ React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 375.9 244.9", style: {
3
+ enableBackground: "new 0 0 375.9 244.9"
4
+ }, xmlSpace: "preserve", ...props }, /* @__PURE__ */ React.createElement("style", { type: "text/css" }, "\n .st0{opacity:0.05;}\n .st1{fill:#A78256;}\n .st2{fill:#8BC143;}\n .st3{fill:#25572C;}\n .st4{fill:#367F3D;}\n .st5{clip-path:url(#SVGID_00000004530938209597365300000002644174144295954342_);fill:#FFFFFF;}\n .st6{fill:#D5DA38;}\n .st7{fill:#DCB78B;}\n .st8{fill:#A68356;}\n .st9{fill:none;}\n .st10{fill:#296A35;}\n .st11{fill:#24572C;}\n .st12{fill:#56B347;}\n .st13{fill:#2E753A;}\n .st14{fill:#FFFFFF;}\n .st15{fill:#78983D;}\n .st16{fill:#38803E;}\n"), /* @__PURE__ */ React.createElement("g", { id: "Layer_4" }, /* @__PURE__ */ React.createElement("path", { className: "st0", d: "M348.07,224.58c0,13.58-76.31,16.29-168.48,13.91c-85.51-2.21-167.67-12.7-167.67-26.28 c0-13.58,75.86-16.6,168-13.55C251.54,201.04,348.07,211,348.07,224.58z" })), /* @__PURE__ */ React.createElement("g", { id: "Layer_5" }, /* @__PURE__ */ React.createElement("path", { className: "st1", d: "M191.33,63.44c-4.71-1.27-9.7,3.77-11.78,5.44c-22.75,18.26-65.08,108.22-68.32,110.8 c-2.65,2.11-12.55-4.77-26.06,6.99c-2.28,1.99,17.71-3.94,27.35,4.79c4.31,3.9,22.67-31.3,43.4-74.21 c7.89-16.33,16.66-28.67,29.37-41.6c3.95-4.02,9.74-6.99,9.13-9.83C194.07,64.16,191.67,63.53,191.33,63.44z" }), /* @__PURE__ */ React.createElement("path", { className: "st2", d: "M315.5,185.71c19.53-4.58,25.95-33.16,23.08-54.88c-3.64-27.61-17.56-34.28-34.67-33.9 c-19.88,0.44-44.11,22.97-32.88,51.46C277.76,165.5,296.2,190.24,315.5,185.71z" }), /* @__PURE__ */ React.createElement("path", { className: "st3", d: "M317.37,92.95c-1.19,0.17-6.89-0.13-6.55-0.52c16.19-18.5,39.73-46.86,55.69-73.93 c0.14-0.24,1.75,7.27-24.68,43.19C341.84,61.7,317.94,92.87,317.37,92.95z" }), /* @__PURE__ */ React.createElement("path", { className: "st4", d: "M295.82,101.2c-2.01-0.96,43.56-73.4,51-101.15c0.27-1.02-0.95,15.86-12.52,38.58 C315.28,76,306.48,92.6,301.71,101.2C301.06,102.37,297.81,102.14,295.82,101.2z" }), /* @__PURE__ */ React.createElement("g", null, /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("path", { id: "SVGID_1_", d: "M337.53,110.9c4.31-1.33,15.13,4.96,15.29,15.68c0.13,8.83-8.71,15.46-11.6,15.57 c-1.01,0.04,0.03-4.88-0.72-15.7C340.01,119.23,335.7,111.46,337.53,110.9z" })), /* @__PURE__ */ React.createElement("use", { xlinkHref: "#SVGID_1_", style: {
5
+ overflow: "visible",
6
+ fill: "#8BC143"
7
+ } }), /* @__PURE__ */ React.createElement("clipPath", { id: "SVGID_00000141425935757089766400000014964260461132888230_" }, /* @__PURE__ */ React.createElement("use", { xlinkHref: "#SVGID_1_", style: {
8
+ overflow: "visible"
9
+ } })), /* @__PURE__ */ React.createElement("circle", { style: {
10
+ clipPath: "url(#SVGID_00000141425935757089766400000014964260461132888230_)",
11
+ fill: "#FFFFFF"
12
+ }, cx: 337.66, cy: 125.78, r: 12.55 })), /* @__PURE__ */ React.createElement("path", { className: "st4", d: "M72,148.17c12.3-16.8,133.34-31.43,144.28-31.28c0.4,0.01,0.69,4.28,22.94,13.64 c2.33,0.98,10.66,4.72,16.04,13.86c2.43,4.12,4.42,10.67,4.47,15.71c0.01,1.33-56.06,5.28-103.07,4.71 C96.02,164.07,68.08,153.52,72,148.17z" }), /* @__PURE__ */ React.createElement("path", { className: "st6", d: "M113.86,186.55c-5.06-0.46-27.13-8.1-29.26-21.47c-0.61-3.81,0.35-6.85,0.8-8.08 c0.59-1.6,23.41,9.72,87.9,8.39c64.06-1.32,85.65-5.83,86.01-5.03C261.99,166.36,217.6,195.93,113.86,186.55z" }), /* @__PURE__ */ React.createElement("path", { className: "st2", d: "M223.03,117.14c0.76-3.5,10.69-5.08,18.2-5.08c8.44,0,13.29-0.15,19.65-0.89c12.74-1.48,18.97-6.96,16.62-4.53 c-9.94,10.29-9.77,18.79-8.5,32.04c1.43,14.96,14.3,27.99,13.47,28.38c-4.47,2.09-10.28,6.04-15.14,4.32 c-9.04-3.19-4.77-21.85-13.13-32.7C246.81,129.06,222,121.89,223.03,117.14z" }), /* @__PURE__ */ React.createElement("path", { d: "M282.17,152.19c-0.5,4.28,0.64,14.39,6.17,20.99c6.21,7.43,5.99,7.21,12.31,9.99c0,0,0.01,0,0.01,0 c0.38-0.14-16.24-8.73-16.42-31.1C284.23,150.94,282.22,151.73,282.17,152.19z" }), /* @__PURE__ */ React.createElement("path", { className: "st7", d: "M45.22,202.22c6.4-10.37,14.58-24.72,24.79-41.13c0,0,21.09-33.2,24.52-37.55c0,0,3.69-5.56,18.22-23.3 c0,0,2.49-3.04,9.72-9.39c3.36-2.95,4.91-4.03,7.18-4.42c2.76-0.47,6.2,0.15,8.83,1.99c0.61,0.42,1.07,0.8,1.1,0.88 c1.06,2.57,1.99,6.55-1.88,7.07c-2.91,0.39-4.38-0.83-6.43-0.18c-7.92,2.5-29.4,29.72-54.03,76.49 c-3.25,6.17-19.82,35.14-27.33,40.86c-0.17,0.13-0.66,0.66-3.12-0.63c-13.53-7.14-29.12-3.25-29.21-3.95 c-0.06-0.49,10.19-7.43,18.55-6.93C37.99,202.14,45.53,202.14,45.22,202.22z" }), /* @__PURE__ */ React.createElement("path", { className: "st7", d: "M233.42,187.34c-2.31-1.13-4.34,0.53-5.99,1.85c0,0-6.49,4.43-3.04,9.36c6.54,9.33,19.97,19.12,50.58,34.48 c6.93,3.48,15.18,1.56,14.55,0.75c-3.2-4.11-39.95-19.08-51.05-29.73c-3.94-3.78-7.05-6.27-6.02-8.78 c0.66-1.61,2.83-2.06,3.31-3.64C236.28,189.94,235.32,188.95,233.42,187.34z" }), /* @__PURE__ */ React.createElement("path", { className: "st8", d: "M263.01,192.63c-1.5-1.35-2.61-2.35-6.44,2.21c-2.22,2.64-3.78,5.85-3.24,8.5 c0.99,4.86,21.45,8.27,38.69,13.14c37.25,10.53,37.8,2.69,36.99,1.8c-0.24-0.27-25.47-3.5-49.47-9.42 c-14.27-3.52-18.08-5.91-17.15-10.56C262.86,195.91,266,195.32,263.01,192.63z" }), /* @__PURE__ */ React.createElement("path", { className: "st9", d: "M71.78,148.17c2.54-10.82,106.81-31.18,144.37-31.18c0.44,0,0.86,0.75,1.89,1.97c2.9,3.43,6.53,4.52,7.57,4.99 c6.46,2.94,19.64,8.94,26.12,15.55c3.31,3.37,7.27,9.35,8.34,20.49C235.66,168.76,67.45,166.6,71.78,148.17z" }), /* @__PURE__ */ React.createElement("path", { className: "st10", d: "M230.47,186.52c-2.04-2.62,11.48-19.13,25.95-22.56c1.88-0.45,5.96-0.11,7.34,1.93 c2.6,3.84-1.44,12.39-10.1,17.84c-8.87,5.59-16.41,9.16-17.23,8.33c-1.01-1.01-0.23-2.89-1.77-4.47 C233.1,185.98,231.17,187.41,230.47,186.52z" }), /* @__PURE__ */ React.createElement("path", { className: "st11", d: "M264.81,194.71c-1.66-0.94-1.79-3.5-3.48-3.59c-2.06-0.11-3.41,3.84-4.91,3.48c-0.82-0.2-1.3-1.54-1.33-2.37 c-0.22-6.52,3.26-20.26,6.63-23.47c2.17-2.06,3.76,2.9,8.12,3.09c3.75,0.17,11.88-5.24,13.86-3.59c2.65,2.21-2.86,8.62-3.48,9.72 C275.33,186.72,265.69,195.21,264.81,194.71z" }), /* @__PURE__ */ React.createElement("path", { className: "st12", d: "M228.92,187.2c1.07-0.44-0.94-5.63,7.67-13.25c6.51-5.76,10.78-6.24,11.82-8.56 c0.72-1.61-20.78-17.36-41.36-21.92c-11.26-2.5-61.01-55.21-63-56.21c-1.79-0.9-13.79,7.06-13.42,10.21 c0.35,2.92,13.91,9.77,35.89,27C183.86,138.07,211.31,194.44,228.92,187.2z" }), /* @__PURE__ */ React.createElement("path", { className: "st13", d: "M199.73,65.27c0.65-0.11,36.98,40.09,41.89,43.44c0.85,0.58-14.58,2.12-14.94,1.47 c-7.27-12.72-38.41-29.6-38.98-35.91C187.4,71.04,196.38,65.84,199.73,65.27z" }), /* @__PURE__ */ React.createElement("path", { className: "st14", d: "M313.18,126.49c0,8.27-6.71,14.98-14.98,14.98c-5.19,0-8.11-3.24-8.94-3.95c-0.44-0.38-6.18-4.4-6.04-11.03 c0.15-7.14,6.13-14.98,14.98-14.98C306.47,111.5,313.18,118.21,313.18,126.49z" }), /* @__PURE__ */ React.createElement("path", { d: "M339.38,121.61c-0.26-1.14,6.55,3.28,6.55,8.28c0,6.29-4.95,9.39-5.12,6.37C340.64,133.11,341.42,130.66,339.38,121.61z" }), /* @__PURE__ */ React.createElement("path", { d: "M277.61,148.06c0.1-0.43,2.35,1.42,5.98,1.9c3.27,0.43,5.79-0.08,5.77,0.07c-0.07,0.54-2.51,2.97-6.17,2.54 C278.34,152,277.5,148.53,277.61,148.06z" }), /* @__PURE__ */ React.createElement("circle", { cx: 296.71, cy: 131.43, r: 8.53 }), /* @__PURE__ */ React.createElement("path", { d: "M290.02,104.95c-4.8,1.75-12.41,8.08-11.71,9.17c1.25,1.95,17.54-5.95,17.02-8.23 C295.06,104.68,293.99,103.51,290.02,104.95z" }), /* @__PURE__ */ React.createElement("circle", { className: "st14", cx: 297.94, cy: 127.11, r: 2.21 }), /* @__PURE__ */ React.createElement("path", { className: "st15", d: "M92.76,178.11c-0.22-0.28-0.39-8.02,4-10.96c0.11-0.07,3.48-0.08,3.64-0.03c0.39,0.11-3.98,5.51-4.72,12.58 C95.63,180.22,92.86,178.23,92.76,178.11z" }), /* @__PURE__ */ React.createElement("path", { className: "st15", d: "M113.67,185.95c-0.22-0.28-1.35-14.46,3.87-15.24c0.97-0.14,3.13-0.09,2.97,0.01 c-0.35,0.21-3.53,4.43-3.45,15.73C117.06,186.98,113.77,186.07,113.67,185.95z" }), /* @__PURE__ */ React.createElement("path", { className: "st15", d: "M138.4,188.86c-0.22-0.28-3.66-13.37,0.43-15.95c0.83-0.52,3.35-0.99,3.18-0.89 c-0.35,0.21-0.78,5.37-0.7,16.67C141.32,189.22,138.49,188.98,138.4,188.86z" }), /* @__PURE__ */ React.createElement("path", { className: "st15", d: "M161.4,188.79c-0.35-0.04-5.78-13.76-1.69-16.34c0.8-0.51,3.18-1.24,3.19-1.2c0,0-0.01,0.01-0.01,0.01 c-0.23,0.15-0.44,1.64-0.63,3.7c-0.11,1.24-0.05,3.87,0.07,4.9c0.77,6.19,2.5,8.5,2.15,8.69 C163.62,188.99,162.35,188.9,161.4,188.79z" }), /* @__PURE__ */ React.createElement("path", { className: "st15", d: "M180.03,187.6c-0.35-0.04-6.32-13.45-2.23-16.03c0.8-0.51,3.18-1.24,3.19-1.2c0,0-0.5,0.13-0.5,0.13 c-0.23,0.15-0.32,1.46-0.5,3.52c-0.11,1.24,0.31,3.92,0.44,4.95c0.77,6.19,2.64,8.55,2.38,8.57 C181.95,187.6,180.97,187.71,180.03,187.6z" }), /* @__PURE__ */ React.createElement("path", { className: "st15", d: "M198.4,185.28c-0.35-0.04-8.12-13.29-4.02-15.87c0.8-0.51,2.21-1.68,2.22-1.64c0,0,0.55,0,0.55,0 c-0.23,0.15,0.04,3.79,0.14,4.39c0.22,1.23,0.93,4.64,1.74,6.57c2.39,5.76,3.39,6.47,3.13,6.49 C201.31,185.29,199.35,185.39,198.4,185.28z" })), /* @__PURE__ */ React.createElement("g", { id: "Layer_3" }, /* @__PURE__ */ React.createElement("path", { className: "st16", d: "M277.43,106.34c1.1-0.86-7.15,2.43-7.98,3.2c-7.37,6.87-7.84,21.06-5.39,31.28 c3.23,13.47,9.18,28.71,14.36,28.52c0.93-0.03,2.76-0.77,3.31-1.63c0.25-0.39-11.13-8.17-14.05-34.12 C265.92,117.99,274.28,108.78,277.43,106.34z" })));
13
+ export {
14
+ SvgEnvHopperLogo as default
15
+ };
16
+ //# sourceMappingURL=env-hopper-logo.svg.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"env-hopper-logo.svg.js","sources":["../../../src/assets/env-hopper-logo.svg?react"],"sourcesContent":["import * as React from \"react\";\nconst SvgEnvHopperLogo = (props) => /* @__PURE__ */ React.createElement(\"svg\", { xmlns: \"http://www.w3.org/2000/svg\", xmlnsXlink: \"http://www.w3.org/1999/xlink\", x: \"0px\", y: \"0px\", viewBox: \"0 0 375.9 244.9\", style: {\n enableBackground: \"new 0 0 375.9 244.9\"\n}, xmlSpace: \"preserve\", ...props }, /* @__PURE__ */ React.createElement(\"style\", { type: \"text/css\" }, \"\\n\t.st0{opacity:0.05;}\\n\t.st1{fill:#A78256;}\\n\t.st2{fill:#8BC143;}\\n\t.st3{fill:#25572C;}\\n\t.st4{fill:#367F3D;}\\n\t.st5{clip-path:url(#SVGID_00000004530938209597365300000002644174144295954342_);fill:#FFFFFF;}\\n\t.st6{fill:#D5DA38;}\\n\t.st7{fill:#DCB78B;}\\n\t.st8{fill:#A68356;}\\n\t.st9{fill:none;}\\n\t.st10{fill:#296A35;}\\n\t.st11{fill:#24572C;}\\n\t.st12{fill:#56B347;}\\n\t.st13{fill:#2E753A;}\\n\t.st14{fill:#FFFFFF;}\\n\t.st15{fill:#78983D;}\\n\t.st16{fill:#38803E;}\\n\"), /* @__PURE__ */ React.createElement(\"g\", { id: \"Layer_4\" }, /* @__PURE__ */ React.createElement(\"path\", { className: \"st0\", d: \"M348.07,224.58c0,13.58-76.31,16.29-168.48,13.91c-85.51-2.21-167.67-12.7-167.67-26.28 c0-13.58,75.86-16.6,168-13.55C251.54,201.04,348.07,211,348.07,224.58z\" })), /* @__PURE__ */ React.createElement(\"g\", { id: \"Layer_5\" }, /* @__PURE__ */ React.createElement(\"path\", { className: \"st1\", d: \"M191.33,63.44c-4.71-1.27-9.7,3.77-11.78,5.44c-22.75,18.26-65.08,108.22-68.32,110.8 c-2.65,2.11-12.55-4.77-26.06,6.99c-2.28,1.99,17.71-3.94,27.35,4.79c4.31,3.9,22.67-31.3,43.4-74.21 c7.89-16.33,16.66-28.67,29.37-41.6c3.95-4.02,9.74-6.99,9.13-9.83C194.07,64.16,191.67,63.53,191.33,63.44z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st2\", d: \"M315.5,185.71c19.53-4.58,25.95-33.16,23.08-54.88c-3.64-27.61-17.56-34.28-34.67-33.9 c-19.88,0.44-44.11,22.97-32.88,51.46C277.76,165.5,296.2,190.24,315.5,185.71z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st3\", d: \"M317.37,92.95c-1.19,0.17-6.89-0.13-6.55-0.52c16.19-18.5,39.73-46.86,55.69-73.93 c0.14-0.24,1.75,7.27-24.68,43.19C341.84,61.7,317.94,92.87,317.37,92.95z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st4\", d: \"M295.82,101.2c-2.01-0.96,43.56-73.4,51-101.15c0.27-1.02-0.95,15.86-12.52,38.58 C315.28,76,306.48,92.6,301.71,101.2C301.06,102.37,297.81,102.14,295.82,101.2z\" }), /* @__PURE__ */ React.createElement(\"g\", null, /* @__PURE__ */ React.createElement(\"defs\", null, /* @__PURE__ */ React.createElement(\"path\", { id: \"SVGID_1_\", d: \"M337.53,110.9c4.31-1.33,15.13,4.96,15.29,15.68c0.13,8.83-8.71,15.46-11.6,15.57 c-1.01,0.04,0.03-4.88-0.72-15.7C340.01,119.23,335.7,111.46,337.53,110.9z\" })), /* @__PURE__ */ React.createElement(\"use\", { xlinkHref: \"#SVGID_1_\", style: {\n overflow: \"visible\",\n fill: \"#8BC143\"\n} }), /* @__PURE__ */ React.createElement(\"clipPath\", { id: \"SVGID_00000141425935757089766400000014964260461132888230_\" }, /* @__PURE__ */ React.createElement(\"use\", { xlinkHref: \"#SVGID_1_\", style: {\n overflow: \"visible\"\n} })), /* @__PURE__ */ React.createElement(\"circle\", { style: {\n clipPath: \"url(#SVGID_00000141425935757089766400000014964260461132888230_)\",\n fill: \"#FFFFFF\"\n}, cx: 337.66, cy: 125.78, r: 12.55 })), /* @__PURE__ */ React.createElement(\"path\", { className: \"st4\", d: \"M72,148.17c12.3-16.8,133.34-31.43,144.28-31.28c0.4,0.01,0.69,4.28,22.94,13.64 c2.33,0.98,10.66,4.72,16.04,13.86c2.43,4.12,4.42,10.67,4.47,15.71c0.01,1.33-56.06,5.28-103.07,4.71 C96.02,164.07,68.08,153.52,72,148.17z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st6\", d: \"M113.86,186.55c-5.06-0.46-27.13-8.1-29.26-21.47c-0.61-3.81,0.35-6.85,0.8-8.08 c0.59-1.6,23.41,9.72,87.9,8.39c64.06-1.32,85.65-5.83,86.01-5.03C261.99,166.36,217.6,195.93,113.86,186.55z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st2\", d: \"M223.03,117.14c0.76-3.5,10.69-5.08,18.2-5.08c8.44,0,13.29-0.15,19.65-0.89c12.74-1.48,18.97-6.96,16.62-4.53 c-9.94,10.29-9.77,18.79-8.5,32.04c1.43,14.96,14.3,27.99,13.47,28.38c-4.47,2.09-10.28,6.04-15.14,4.32 c-9.04-3.19-4.77-21.85-13.13-32.7C246.81,129.06,222,121.89,223.03,117.14z\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M282.17,152.19c-0.5,4.28,0.64,14.39,6.17,20.99c6.21,7.43,5.99,7.21,12.31,9.99c0,0,0.01,0,0.01,0 c0.38-0.14-16.24-8.73-16.42-31.1C284.23,150.94,282.22,151.73,282.17,152.19z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st7\", d: \"M45.22,202.22c6.4-10.37,14.58-24.72,24.79-41.13c0,0,21.09-33.2,24.52-37.55c0,0,3.69-5.56,18.22-23.3 c0,0,2.49-3.04,9.72-9.39c3.36-2.95,4.91-4.03,7.18-4.42c2.76-0.47,6.2,0.15,8.83,1.99c0.61,0.42,1.07,0.8,1.1,0.88 c1.06,2.57,1.99,6.55-1.88,7.07c-2.91,0.39-4.38-0.83-6.43-0.18c-7.92,2.5-29.4,29.72-54.03,76.49 c-3.25,6.17-19.82,35.14-27.33,40.86c-0.17,0.13-0.66,0.66-3.12-0.63c-13.53-7.14-29.12-3.25-29.21-3.95 c-0.06-0.49,10.19-7.43,18.55-6.93C37.99,202.14,45.53,202.14,45.22,202.22z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st7\", d: \"M233.42,187.34c-2.31-1.13-4.34,0.53-5.99,1.85c0,0-6.49,4.43-3.04,9.36c6.54,9.33,19.97,19.12,50.58,34.48 c6.93,3.48,15.18,1.56,14.55,0.75c-3.2-4.11-39.95-19.08-51.05-29.73c-3.94-3.78-7.05-6.27-6.02-8.78 c0.66-1.61,2.83-2.06,3.31-3.64C236.28,189.94,235.32,188.95,233.42,187.34z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st8\", d: \"M263.01,192.63c-1.5-1.35-2.61-2.35-6.44,2.21c-2.22,2.64-3.78,5.85-3.24,8.5 c0.99,4.86,21.45,8.27,38.69,13.14c37.25,10.53,37.8,2.69,36.99,1.8c-0.24-0.27-25.47-3.5-49.47-9.42 c-14.27-3.52-18.08-5.91-17.15-10.56C262.86,195.91,266,195.32,263.01,192.63z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st9\", d: \"M71.78,148.17c2.54-10.82,106.81-31.18,144.37-31.18c0.44,0,0.86,0.75,1.89,1.97c2.9,3.43,6.53,4.52,7.57,4.99 c6.46,2.94,19.64,8.94,26.12,15.55c3.31,3.37,7.27,9.35,8.34,20.49C235.66,168.76,67.45,166.6,71.78,148.17z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st10\", d: \"M230.47,186.52c-2.04-2.62,11.48-19.13,25.95-22.56c1.88-0.45,5.96-0.11,7.34,1.93 c2.6,3.84-1.44,12.39-10.1,17.84c-8.87,5.59-16.41,9.16-17.23,8.33c-1.01-1.01-0.23-2.89-1.77-4.47 C233.1,185.98,231.17,187.41,230.47,186.52z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st11\", d: \"M264.81,194.71c-1.66-0.94-1.79-3.5-3.48-3.59c-2.06-0.11-3.41,3.84-4.91,3.48c-0.82-0.2-1.3-1.54-1.33-2.37 c-0.22-6.52,3.26-20.26,6.63-23.47c2.17-2.06,3.76,2.9,8.12,3.09c3.75,0.17,11.88-5.24,13.86-3.59c2.65,2.21-2.86,8.62-3.48,9.72 C275.33,186.72,265.69,195.21,264.81,194.71z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st12\", d: \"M228.92,187.2c1.07-0.44-0.94-5.63,7.67-13.25c6.51-5.76,10.78-6.24,11.82-8.56 c0.72-1.61-20.78-17.36-41.36-21.92c-11.26-2.5-61.01-55.21-63-56.21c-1.79-0.9-13.79,7.06-13.42,10.21 c0.35,2.92,13.91,9.77,35.89,27C183.86,138.07,211.31,194.44,228.92,187.2z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st13\", d: \"M199.73,65.27c0.65-0.11,36.98,40.09,41.89,43.44c0.85,0.58-14.58,2.12-14.94,1.47 c-7.27-12.72-38.41-29.6-38.98-35.91C187.4,71.04,196.38,65.84,199.73,65.27z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st14\", d: \"M313.18,126.49c0,8.27-6.71,14.98-14.98,14.98c-5.19,0-8.11-3.24-8.94-3.95c-0.44-0.38-6.18-4.4-6.04-11.03 c0.15-7.14,6.13-14.98,14.98-14.98C306.47,111.5,313.18,118.21,313.18,126.49z\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M339.38,121.61c-0.26-1.14,6.55,3.28,6.55,8.28c0,6.29-4.95,9.39-5.12,6.37C340.64,133.11,341.42,130.66,339.38,121.61z\" }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M277.61,148.06c0.1-0.43,2.35,1.42,5.98,1.9c3.27,0.43,5.79-0.08,5.77,0.07c-0.07,0.54-2.51,2.97-6.17,2.54 C278.34,152,277.5,148.53,277.61,148.06z\" }), /* @__PURE__ */ React.createElement(\"circle\", { cx: 296.71, cy: 131.43, r: 8.53 }), /* @__PURE__ */ React.createElement(\"path\", { d: \"M290.02,104.95c-4.8,1.75-12.41,8.08-11.71,9.17c1.25,1.95,17.54-5.95,17.02-8.23 C295.06,104.68,293.99,103.51,290.02,104.95z\" }), /* @__PURE__ */ React.createElement(\"circle\", { className: \"st14\", cx: 297.94, cy: 127.11, r: 2.21 }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st15\", d: \"M92.76,178.11c-0.22-0.28-0.39-8.02,4-10.96c0.11-0.07,3.48-0.08,3.64-0.03c0.39,0.11-3.98,5.51-4.72,12.58 C95.63,180.22,92.86,178.23,92.76,178.11z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st15\", d: \"M113.67,185.95c-0.22-0.28-1.35-14.46,3.87-15.24c0.97-0.14,3.13-0.09,2.97,0.01 c-0.35,0.21-3.53,4.43-3.45,15.73C117.06,186.98,113.77,186.07,113.67,185.95z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st15\", d: \"M138.4,188.86c-0.22-0.28-3.66-13.37,0.43-15.95c0.83-0.52,3.35-0.99,3.18-0.89 c-0.35,0.21-0.78,5.37-0.7,16.67C141.32,189.22,138.49,188.98,138.4,188.86z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st15\", d: \"M161.4,188.79c-0.35-0.04-5.78-13.76-1.69-16.34c0.8-0.51,3.18-1.24,3.19-1.2c0,0-0.01,0.01-0.01,0.01 c-0.23,0.15-0.44,1.64-0.63,3.7c-0.11,1.24-0.05,3.87,0.07,4.9c0.77,6.19,2.5,8.5,2.15,8.69 C163.62,188.99,162.35,188.9,161.4,188.79z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st15\", d: \"M180.03,187.6c-0.35-0.04-6.32-13.45-2.23-16.03c0.8-0.51,3.18-1.24,3.19-1.2c0,0-0.5,0.13-0.5,0.13 c-0.23,0.15-0.32,1.46-0.5,3.52c-0.11,1.24,0.31,3.92,0.44,4.95c0.77,6.19,2.64,8.55,2.38,8.57 C181.95,187.6,180.97,187.71,180.03,187.6z\" }), /* @__PURE__ */ React.createElement(\"path\", { className: \"st15\", d: \"M198.4,185.28c-0.35-0.04-8.12-13.29-4.02-15.87c0.8-0.51,2.21-1.68,2.22-1.64c0,0,0.55,0,0.55,0 c-0.23,0.15,0.04,3.79,0.14,4.39c0.22,1.23,0.93,4.64,1.74,6.57c2.39,5.76,3.39,6.47,3.13,6.49 C201.31,185.29,199.35,185.39,198.4,185.28z\" })), /* @__PURE__ */ React.createElement(\"g\", { id: \"Layer_3\" }, /* @__PURE__ */ React.createElement(\"path\", { className: \"st16\", d: \"M277.43,106.34c1.1-0.86-7.15,2.43-7.98,3.2c-7.37,6.87-7.84,21.06-5.39,31.28 c3.23,13.47,9.18,28.71,14.36,28.52c0.93-0.03,2.76-0.77,3.31-1.63c0.25-0.39-11.13-8.17-14.05-34.12 C265.92,117.99,274.28,108.78,277.43,106.34z\" })));\nexport default SvgEnvHopperLogo;\n"],"names":[],"mappings":";AACK,MAAC,mBAAmB,CAAC,UAA0B,sBAAM,cAAc,OAAO,EAAE,OAAO,8BAA8B,YAAY,gCAAgC,GAAG,OAAO,GAAG,OAAO,SAAS,mBAAmB,OAAO;AAAA,EACvN,kBAAkB;AACpB,GAAG,UAAU,YAAY,GAAG,MAAK,GAAoB,sBAAM,cAAc,SAAS,EAAE,MAAM,WAAU,GAAI,wcAAwc,GAAmB,sBAAM,cAAc,KAAK,EAAE,IAAI,UAAS,GAAoB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,6JAA4J,CAAE,CAAC,GAAmB,sBAAM,cAAc,KAAK,EAAE,IAAI,aAA6B,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,gSAA+R,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,mKAAkK,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,0JAAyJ,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,+JAA8J,CAAE,GAAmB,sBAAM,cAAc,KAAK,MAAsB,sBAAM,cAAc,QAAQ,MAAsB,sBAAM,cAAc,QAAQ,EAAE,IAAI,YAAY,GAAG,2JAA2J,CAAC,GAAmB,sBAAM,cAAc,OAAO,EAAE,WAAW,aAAa,OAAO;AAAA,EACnzE,UAAU;AAAA,EACV,MAAM;AACR,EAAC,CAAE,GAAmB,sBAAM,cAAc,YAAY,EAAE,IAAI,4DAA2D,GAAoB,sBAAM,cAAc,OAAO,EAAE,WAAW,aAAa,OAAO;AAAA,EACrM,UAAU;AACZ,EAAC,CAAE,CAAC,GAAmB,sBAAM,cAAc,UAAU,EAAE,OAAO;AAAA,EAC5D,UAAU;AAAA,EACV,MAAM;AACR,GAAG,IAAI,QAAQ,IAAI,QAAQ,GAAG,OAAO,CAAC,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,yNAAwN,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,2LAA2L,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,4RAA2R,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,GAAG,8KAA6K,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,oeAAme,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,uRAAuR,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,2PAA0P,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,OAAO,GAAG,sNAAqN,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,6NAA4N,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,oRAAmR,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,4PAA2P,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,6JAA4J,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,sLAAqL,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,GAAG,sHAAqH,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,GAAG,kJAAiJ,CAAE,GAAmB,sBAAM,cAAc,UAAU,EAAE,IAAI,QAAQ,IAAI,QAAQ,GAAG,KAAI,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,GAAG,6HAA4H,CAAE,GAAmB,sBAAM,cAAc,UAAU,EAAE,WAAW,QAAQ,IAAI,QAAQ,IAAI,QAAQ,GAAG,MAAM,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,mJAAkJ,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,4JAA2J,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,yJAAwJ,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,wOAAuO,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,yOAAwO,CAAE,GAAmB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,uOAAsO,CAAE,CAAC,GAAmB,sBAAM,cAAc,KAAK,EAAE,IAAI,UAAS,GAAoB,sBAAM,cAAc,QAAQ,EAAE,WAAW,QAAQ,GAAG,4NAA2N,CAAE,CAAC,CAAC;"}
@@ -0,0 +1 @@
1
+ export declare function ThemeSwitcher(): import("react/jsx-runtime").JSX.Element;