@verdaccio/ui-components 2.0.0-alpha.0 → 3.0.0-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (782) hide show
  1. package/.babelrc +8 -0
  2. package/.eslintrc +100 -0
  3. package/CHANGELOG.md +157 -0
  4. package/README.md +103 -0
  5. package/build/Theme/ResetStyles.js +50 -0
  6. package/build/Theme/StyleBaseline.js +15 -0
  7. package/build/Theme/ThemeProvider.js +51 -0
  8. package/build/Theme/colors.js +9 -0
  9. package/build/Theme/index.js +45 -0
  10. package/build/Theme/theme.js +108 -0
  11. package/build/__mocks__/react-markdown.js +18 -0
  12. package/build/__mocks__/remark-plugin.js +8 -0
  13. package/build/components/ActionBar/ActionBar.js +71 -0
  14. package/build/components/ActionBar/ActionBarAction.js +94 -0
  15. package/build/components/ActionBar/index.js +14 -0
  16. package/build/components/Author/Author.js +68 -0
  17. package/build/components/Author/index.js +14 -0
  18. package/build/components/Author/styles.js +55 -0
  19. package/build/components/CopyClipboard/CopyToClipBoard.js +69 -0
  20. package/build/components/CopyClipboard/index.js +21 -0
  21. package/build/components/CopyClipboard/utils.js +23 -0
  22. package/build/components/Dependencies/Dependencies.js +106 -0
  23. package/build/components/Dependencies/index.js +14 -0
  24. package/build/components/Dependencies/styles.js +68 -0
  25. package/build/components/Dependencies/types.js +6 -0
  26. package/build/components/Deprecated/Deprecated.js +33 -0
  27. package/build/components/Deprecated/index.js +14 -0
  28. package/build/components/Developers/Developers.js +96 -0
  29. package/build/components/Developers/Title.js +48 -0
  30. package/build/components/Developers/get-unique-developer-values.js +15 -0
  31. package/build/components/Developers/index.js +21 -0
  32. package/build/components/Developers/styles.js +69 -0
  33. package/build/components/Distribution/Dist.js +49 -0
  34. package/build/components/Distribution/index.js +14 -0
  35. package/build/components/Distribution/styles.js +70 -0
  36. package/build/components/Distribution/utils.js +25 -0
  37. package/build/components/Distribution/utilts.spec.js +18 -0
  38. package/build/components/Engines/Engines.js +86 -0
  39. package/build/components/Engines/index.js +14 -0
  40. package/build/components/Engines/styles.js +40 -0
  41. package/build/components/ErrorBoundary/ErrorBoundary.js +42 -0
  42. package/build/components/ErrorBoundary/index.js +14 -0
  43. package/build/components/FundButton/FundButton.js +81 -0
  44. package/build/components/FundButton/index.js +14 -0
  45. package/build/components/HeaderInfoDialog/HeaderInfoDialog.js +81 -0
  46. package/build/components/HeaderInfoDialog/index.js +14 -0
  47. package/build/components/Heading/Heading.js +25 -0
  48. package/build/components/Heading/index.js +14 -0
  49. package/build/components/Help/Help.js +61 -0
  50. package/build/components/Help/index.js +14 -0
  51. package/build/components/Help/styles.js +26 -0
  52. package/build/components/Icons/DevsIcons/CommonJS.js +29 -0
  53. package/build/components/Icons/DevsIcons/ES6Module.js +29 -0
  54. package/build/components/Icons/DevsIcons/Git.js +29 -0
  55. package/build/components/Icons/DevsIcons/NodeJS.js +29 -0
  56. package/build/components/Icons/DevsIcons/TypeScript.js +29 -0
  57. package/build/components/Icons/DevsIcons/commonjs.svg +4 -0
  58. package/build/components/Icons/DevsIcons/es6modules.svg +4 -0
  59. package/build/components/Icons/DevsIcons/git.svg +4 -0
  60. package/build/components/Icons/DevsIcons/index.js +41 -0
  61. package/build/components/Icons/DevsIcons/nodejs.svg +6 -0
  62. package/build/components/Icons/DevsIcons/typescript.svg +4 -0
  63. package/build/components/Icons/Earth.js +40 -0
  64. package/build/components/Icons/FileBinary.js +20 -0
  65. package/build/components/Icons/Law.js +21 -0
  66. package/build/components/Icons/License.js +24 -0
  67. package/build/components/Icons/License.js.map +1 -0
  68. package/build/components/Icons/Managers/Npm.js +29 -0
  69. package/build/components/Icons/Managers/Pnpm.js +29 -0
  70. package/build/components/Icons/Managers/Yarn.js +29 -0
  71. package/build/components/Icons/Managers/index.js +27 -0
  72. package/build/components/Icons/Managers/npm.svg +15 -0
  73. package/build/components/Icons/Managers/pnpm.svg +1 -0
  74. package/build/components/Icons/Managers/yarn.svg +1 -0
  75. package/build/components/Icons/SvgIcon.js +48 -0
  76. package/build/components/Icons/Time.js +27 -0
  77. package/build/components/Icons/Version.js +25 -0
  78. package/build/components/Icons/index.js +80 -0
  79. package/build/components/Install/Install.js +75 -0
  80. package/build/components/Install/InstallListItem.js +147 -0
  81. package/build/components/Install/__partials__/data.json +5984 -0
  82. package/build/components/Install/img/npm.svg +15 -0
  83. package/build/components/Install/img/pnpm.svg +1 -0
  84. package/build/components/Install/img/yarn.svg +1 -0
  85. package/build/components/Install/index.js +14 -0
  86. package/build/components/Label/Label.js +36 -0
  87. package/build/components/Label/index.js +14 -0
  88. package/build/components/Link/Link.js +58 -0
  89. package/build/components/Link/index.js +14 -0
  90. package/build/components/Loading/Loading.js +21 -0
  91. package/build/components/Loading/Spinner/Spinner.js +49 -0
  92. package/build/components/Loading/Spinner/index.js +14 -0
  93. package/build/components/Loading/index.js +14 -0
  94. package/build/components/Loading/styles.js +39 -0
  95. package/build/components/LoginDialog/LoginDialog.js +76 -0
  96. package/build/components/LoginDialog/LoginDialogCloseButton.js +42 -0
  97. package/build/components/LoginDialog/LoginDialogForm.js +127 -0
  98. package/build/components/LoginDialog/LoginDialogFormError.js +50 -0
  99. package/build/components/LoginDialog/LoginDialogHeader.js +60 -0
  100. package/build/components/LoginDialog/index.js +14 -0
  101. package/build/components/Logo/Logo.js +83 -0
  102. package/build/components/Logo/img/logo-black-and-white.svg +1 -0
  103. package/build/components/Logo/img/logo.svg +1 -0
  104. package/build/components/Logo/index.js +14 -0
  105. package/build/components/MenuItem/MenuItem.js +41 -0
  106. package/build/components/MenuItem/index.js +14 -0
  107. package/build/components/NoItems/NoItems.js +19 -0
  108. package/build/components/NoItems/index.js +14 -0
  109. package/build/components/NotFound/NotFound.js +74 -0
  110. package/build/components/NotFound/img/package.svg +1 -0
  111. package/build/components/NotFound/index.js +14 -0
  112. package/build/components/Package/Package.js +181 -0
  113. package/build/components/Package/Tag/Tag.js +15 -0
  114. package/build/components/Package/Tag/index.js +14 -0
  115. package/build/components/Package/Tag/styles.js +25 -0
  116. package/build/components/Package/index.js +21 -0
  117. package/build/components/Package/styles.js +224 -0
  118. package/build/components/PackageList/PackageList.js +100 -0
  119. package/build/components/PackageList/index.js +14 -0
  120. package/build/components/RawViewer/RawViewer.js +64 -0
  121. package/build/components/RawViewer/index.js +14 -0
  122. package/build/components/Readme/Readme.js +43 -0
  123. package/build/components/Readme/Readme.js.map +1 -0
  124. package/build/components/Readme/Readme.spec.js +22 -0
  125. package/build/components/Readme/Readme.spec.js.map +1 -0
  126. package/build/components/Readme/index.js +14 -0
  127. package/build/components/Readme/types.js +6 -0
  128. package/build/components/Readme/utils.js +35 -0
  129. package/build/components/RegistryInfoDialog/RegistryInfoDialog.js +37 -0
  130. package/build/components/RegistryInfoDialog/index.js +14 -0
  131. package/build/components/RegistryInfoDialog/styles.js +49 -0
  132. package/build/components/RegistryInfoDialog/types.js +6 -0
  133. package/build/components/Repository/Repository.js +129 -0
  134. package/build/components/Repository/__partials__/data.json +5984 -0
  135. package/build/components/Repository/img/git.png +0 -0
  136. package/build/components/Repository/index.js +14 -0
  137. package/build/components/Search/AutoComplete/AutoComplete.js +70 -0
  138. package/build/components/Search/AutoComplete/index.js +14 -0
  139. package/build/components/Search/AutoComplete/styles.js +63 -0
  140. package/build/components/Search/Search.js +159 -0
  141. package/build/components/Search/SearchItem.js +137 -0
  142. package/build/components/Search/index.js +14 -0
  143. package/build/components/Search/styles.js +60 -0
  144. package/build/components/SettingsMenu/SettingsMenu.js +68 -0
  145. package/build/components/SettingsMenu/index.js +14 -0
  146. package/build/components/SideBarTittle/SideBarTittle.js +94 -0
  147. package/build/components/SideBarTittle/index.js +14 -0
  148. package/build/components/SideBarTittle/utils.js +20 -0
  149. package/build/components/TextField/TextField.js +30 -0
  150. package/build/components/TextField/index.js +14 -0
  151. package/build/components/UpLinks/UpLinks.js +44 -0
  152. package/build/components/UpLinks/index.js +14 -0
  153. package/build/components/UpLinks/styles.js +50 -0
  154. package/build/components/Versions/HistoryList.js +41 -0
  155. package/build/components/Versions/TagList.js +31 -0
  156. package/build/components/Versions/Versions.js +46 -0
  157. package/build/components/Versions/__partials__/data.json +5984 -0
  158. package/build/components/Versions/index.js +14 -0
  159. package/build/components/Versions/styles.js +38 -0
  160. package/build/components/Versions/types.js +6 -0
  161. package/build/hooks/index.js +21 -0
  162. package/build/hooks/useLocalStorage.js +54 -0
  163. package/build/hooks/useOnClickOutside.js +33 -0
  164. package/build/index.js +500 -0
  165. package/build/layouts/Version/Version.js +29 -0
  166. package/build/layouts/Version/index.js +14 -0
  167. package/build/providers/AppConfigurationProvider/AppConfigurationProvider.js +63 -0
  168. package/build/providers/AppConfigurationProvider/index.js +21 -0
  169. package/build/providers/PersistenceSettingProvider/PersistenceSettingProvider.js +38 -0
  170. package/build/providers/PersistenceSettingProvider/index.js +21 -0
  171. package/build/providers/TranslatorProvider/TranslatorProvider.js +54 -0
  172. package/build/providers/TranslatorProvider/TranslatorProvider.spec.js +54 -0
  173. package/build/providers/TranslatorProvider/index.js +27 -0
  174. package/build/providers/VersionProvider/README.md +22 -0
  175. package/build/providers/VersionProvider/VersionProvider.js +81 -0
  176. package/build/providers/VersionProvider/index.js +21 -0
  177. package/build/providers/index.js +39 -0
  178. package/build/sections/Detail/ContainerContent.js +57 -0
  179. package/build/sections/Detail/Detail.js +52 -0
  180. package/build/sections/Detail/ReadmeSection.js +22 -0
  181. package/build/sections/Detail/Tabs.js +61 -0
  182. package/build/sections/Detail/index.js +14 -0
  183. package/build/sections/Footer/Footer.js +111 -0
  184. package/build/sections/Footer/index.js +14 -0
  185. package/build/sections/Footer/styles.js +90 -0
  186. package/build/sections/Header/Header.js +73 -0
  187. package/build/sections/Header/HeaderGreetings.js +26 -0
  188. package/build/sections/Header/HeaderLeft.js +37 -0
  189. package/build/sections/Header/HeaderMenu.js +54 -0
  190. package/build/sections/Header/HeaderRight.js +104 -0
  191. package/build/sections/Header/HeaderSettingsDialog.js +108 -0
  192. package/build/sections/Header/HeaderToolTip.js +19 -0
  193. package/build/sections/Header/HeaderToolTipIcon.js +70 -0
  194. package/build/sections/Header/LanguageSwitch.js +129 -0
  195. package/build/sections/Header/RegistryInfoContent/RegistryInfoContent.js +190 -0
  196. package/build/sections/Header/RegistryInfoContent/index.js +14 -0
  197. package/build/sections/Header/RegistryInfoContent/styles.js +31 -0
  198. package/build/sections/Header/RegistryInfoDialog/RegistryInfoDialog.js +37 -0
  199. package/build/sections/Header/RegistryInfoDialog/index.js +14 -0
  200. package/build/sections/Header/RegistryInfoDialog/styles.js +49 -0
  201. package/build/sections/Header/RegistryInfoDialog/types.js +6 -0
  202. package/build/sections/Header/index.js +14 -0
  203. package/build/sections/Header/styles.js +213 -0
  204. package/build/sections/Home/Home.js +32 -0
  205. package/build/sections/Home/index.js +14 -0
  206. package/build/sections/SideBar/Sidebar.js +98 -0
  207. package/build/sections/SideBar/index.js +14 -0
  208. package/build/sections/index.js +21 -0
  209. package/build/src/Theme/ResetStyles.d.ts +3 -0
  210. package/build/src/Theme/StyleBaseline.d.ts +4 -0
  211. package/build/src/Theme/ThemeProvider.d.ts +10 -0
  212. package/build/src/Theme/colors.d.ts +1 -0
  213. package/build/src/Theme/index.d.ts +4 -0
  214. package/build/src/Theme/theme.d.ts +149 -0
  215. package/build/src/__mocks__/react-markdown.d.ts +4 -0
  216. package/build/src/__mocks__/remark-plugin.d.ts +1 -0
  217. package/build/src/components/ActionBar/ActionBar.d.ts +8 -0
  218. package/build/src/components/ActionBar/ActionBar.stories.d.ts +11 -0
  219. package/build/src/components/ActionBar/ActionBar.test.d.ts +1 -0
  220. package/build/src/components/ActionBar/ActionBarAction.d.ts +10 -0
  221. package/build/src/components/ActionBar/index.d.ts +1 -0
  222. package/build/src/components/Author/Author.d.ts +10 -0
  223. package/build/src/components/Author/Author.stories.d.ts +6 -0
  224. package/build/src/components/Author/Author.test.d.ts +1 -0
  225. package/build/src/components/Author/index.d.ts +1 -0
  226. package/build/src/components/Author/styles.d.ts +6 -0
  227. package/build/src/components/CopyClipboard/CopyToClipBoard.d.ts +9 -0
  228. package/build/src/components/CopyClipboard/CopyToClipBoard.stories.d.ts +12 -0
  229. package/build/src/components/CopyClipboard/index.d.ts +2 -0
  230. package/build/src/components/CopyClipboard/utils.d.ts +2 -0
  231. package/build/src/components/Dependencies/Dependencies.d.ts +5 -0
  232. package/build/src/components/Dependencies/Dependencies.stories.d.ts +8 -0
  233. package/build/src/components/Dependencies/Dependencies.test.d.ts +1 -0
  234. package/build/src/components/Dependencies/index.d.ts +1 -0
  235. package/build/src/components/Dependencies/styles.d.ts +8 -0
  236. package/build/src/components/Dependencies/types.d.ts +6 -0
  237. package/build/src/components/Deprecated/Deprecated.d.ts +7 -0
  238. package/build/src/components/Deprecated/Deprecated.stories.d.ts +5 -0
  239. package/build/src/components/Deprecated/Deprecated.test.d.ts +1 -0
  240. package/build/src/components/Deprecated/index.d.ts +1 -0
  241. package/build/src/components/Developers/Developers.d.ts +14 -0
  242. package/build/src/components/Developers/Developers.stories.d.ts +6 -0
  243. package/build/src/components/Developers/Developers.test.d.ts +1 -0
  244. package/build/src/components/Developers/Title.d.ts +10 -0
  245. package/build/src/components/Developers/get-unique-developer-values.d.ts +3 -0
  246. package/build/src/components/Developers/index.d.ts +1 -0
  247. package/build/src/components/Developers/styles.d.ts +11 -0
  248. package/build/src/components/Distribution/Dist.d.ts +6 -0
  249. package/build/src/components/Distribution/Dist.stories.d.ts +8 -0
  250. package/build/src/components/Distribution/Dist.test.d.ts +1 -0
  251. package/build/src/components/Distribution/index.d.ts +1 -0
  252. package/build/src/components/Distribution/styles.d.ts +4 -0
  253. package/build/src/components/Distribution/utils.d.ts +7 -0
  254. package/build/src/components/Engines/Engines.d.ts +25 -0
  255. package/build/src/components/Engines/Engines.stories.d.ts +9 -0
  256. package/build/src/components/Engines/Engines.test.d.ts +1 -0
  257. package/build/src/components/Engines/index.d.ts +1 -0
  258. package/build/src/components/Engines/styles.d.ts +2 -0
  259. package/build/src/components/ErrorBoundary/ErrorBoundary.d.ts +14 -0
  260. package/build/src/components/ErrorBoundary/index.d.ts +1 -0
  261. package/build/src/components/FundButton/FundButton.d.ts +5 -0
  262. package/build/src/components/FundButton/FundButton.stories.d.ts +7 -0
  263. package/build/src/components/FundButton/FundButton.test.d.ts +1 -0
  264. package/build/src/components/FundButton/index.d.ts +1 -0
  265. package/build/src/components/HeaderInfoDialog/HeaderInfoDialog.d.ts +10 -0
  266. package/build/src/components/HeaderInfoDialog/index.d.ts +1 -0
  267. package/build/src/components/Heading/Heading.d.ts +8 -0
  268. package/build/src/components/Heading/index.d.ts +1 -0
  269. package/build/src/components/Help/Help.d.ts +3 -0
  270. package/build/src/components/Help/Help.stories.d.ts +5 -0
  271. package/build/src/components/Help/Help.test.d.ts +1 -0
  272. package/build/src/components/Help/index.d.ts +1 -0
  273. package/build/src/components/Help/styles.d.ts +1 -0
  274. package/build/src/components/Icons/DevsIcons/CommonJS.d.ts +2 -0
  275. package/build/src/components/Icons/DevsIcons/ES6Module.d.ts +2 -0
  276. package/build/src/components/Icons/DevsIcons/Git.d.ts +2 -0
  277. package/build/src/components/Icons/DevsIcons/NodeJS.d.ts +2 -0
  278. package/build/src/components/Icons/DevsIcons/TypeScript.d.ts +2 -0
  279. package/build/src/components/Icons/DevsIcons/index.d.ts +5 -0
  280. package/build/src/components/Icons/Earth.d.ts +7 -0
  281. package/build/src/components/Icons/FileBinary.d.ts +7 -0
  282. package/build/src/components/Icons/Icons.stories.d.ts +5 -0
  283. package/build/src/components/Icons/Law.d.ts +7 -0
  284. package/build/src/components/Icons/License.d.ts +7 -0
  285. package/build/src/components/Icons/Managers/Npm.d.ts +2 -0
  286. package/build/src/components/Icons/Managers/Pnpm.d.ts +2 -0
  287. package/build/src/components/Icons/Managers/Yarn.d.ts +2 -0
  288. package/build/src/components/Icons/Managers/index.d.ts +3 -0
  289. package/build/src/components/Icons/SvgIcon.d.ts +10 -0
  290. package/build/src/components/Icons/Time.d.ts +7 -0
  291. package/build/src/components/Icons/Version.d.ts +7 -0
  292. package/build/src/components/Icons/index.d.ts +8 -0
  293. package/build/src/components/Install/Install.d.ts +10 -0
  294. package/build/src/components/Install/Install.stories.d.ts +9 -0
  295. package/build/src/components/Install/Install.test.d.ts +1 -0
  296. package/build/src/components/Install/InstallListItem.d.ts +12 -0
  297. package/build/src/components/Install/index.d.ts +1 -0
  298. package/build/src/components/Label/Label.d.ts +9 -0
  299. package/build/src/components/Label/Label.test.d.ts +1 -0
  300. package/build/src/components/Label/index.d.ts +1 -0
  301. package/build/src/components/Link/Link.d.ts +6 -0
  302. package/build/src/components/Link/index.d.ts +1 -0
  303. package/build/src/components/Loading/Loading.d.ts +3 -0
  304. package/build/src/components/Loading/Loading.stories.d.ts +5 -0
  305. package/build/src/components/Loading/Loading.test.d.ts +1 -0
  306. package/build/src/components/Loading/Spinner/Spinner.d.ts +7 -0
  307. package/build/src/components/Loading/Spinner/Spinner.test.d.ts +1 -0
  308. package/build/src/components/Loading/Spinner/index.d.ts +1 -0
  309. package/build/src/components/Loading/index.d.ts +1 -0
  310. package/build/src/components/Loading/styles.d.ts +11 -0
  311. package/build/src/components/LoginDialog/LoginDialog.d.ts +7 -0
  312. package/build/src/components/LoginDialog/LoginDialog.stories.d.ts +15 -0
  313. package/build/src/components/LoginDialog/LoginDialog.test.d.ts +1 -0
  314. package/build/src/components/LoginDialog/LoginDialogCloseButton.d.ts +6 -0
  315. package/build/src/components/LoginDialog/LoginDialogForm.d.ts +12 -0
  316. package/build/src/components/LoginDialog/LoginDialogFormError.d.ts +11 -0
  317. package/build/src/components/LoginDialog/LoginDialogHeader.d.ts +6 -0
  318. package/build/src/components/LoginDialog/index.d.ts +1 -0
  319. package/build/src/components/Logo/Logo.d.ts +14 -0
  320. package/build/src/components/Logo/Logo.test.d.ts +1 -0
  321. package/build/src/components/Logo/index.d.ts +1 -0
  322. package/build/src/components/MenuItem/MenuItem.d.ts +9 -0
  323. package/build/src/components/MenuItem/index.d.ts +1 -0
  324. package/build/src/components/NoItems/NoItems.d.ts +6 -0
  325. package/build/src/components/NoItems/NoItems.stories.d.ts +5 -0
  326. package/build/src/components/NoItems/Noitems.test.d.ts +1 -0
  327. package/build/src/components/NoItems/index.d.ts +1 -0
  328. package/build/src/components/NotFound/NotFound.d.ts +3 -0
  329. package/build/src/components/NotFound/Notfound.test.d.ts +1 -0
  330. package/build/src/components/NotFound/index.d.ts +1 -0
  331. package/build/src/components/Package/Package.d.ts +24 -0
  332. package/build/src/components/Package/Package.test.d.ts +1 -0
  333. package/build/src/components/Package/Tag/Tag.d.ts +6 -0
  334. package/build/src/components/Package/Tag/Tag.test.d.ts +1 -0
  335. package/build/src/components/Package/Tag/index.d.ts +1 -0
  336. package/build/src/components/Package/Tag/styles.d.ts +5 -0
  337. package/build/src/components/Package/index.d.ts +1 -0
  338. package/build/src/components/Package/styles.d.ts +49 -0
  339. package/build/src/components/PackageList/PackageList.d.ts +6 -0
  340. package/build/src/components/PackageList/Packagelist.test.d.ts +1 -0
  341. package/build/src/components/PackageList/index.d.ts +1 -0
  342. package/build/src/components/RawViewer/RawViewer.d.ts +13 -0
  343. package/build/src/components/RawViewer/index.d.ts +1 -0
  344. package/build/src/components/Readme/Readme.d.ts +6 -0
  345. package/build/src/components/Readme/Readme.spec.d.ts +1 -0
  346. package/build/src/components/Readme/index.d.ts +1 -0
  347. package/build/src/components/Readme/types.d.ts +3 -0
  348. package/build/src/components/Readme/utils.d.ts +1 -0
  349. package/build/src/components/RegistryInfoDialog/RegistryInfoDialog.d.ts +4 -0
  350. package/build/src/components/RegistryInfoDialog/index.d.ts +1 -0
  351. package/build/src/components/RegistryInfoDialog/styles.d.ts +13 -0
  352. package/build/src/components/RegistryInfoDialog/types.d.ts +7 -0
  353. package/build/src/components/Repository/Repository.d.ts +5 -0
  354. package/build/src/components/Repository/Repository.stories.d.ts +8 -0
  355. package/build/src/components/Repository/Repository.test.d.ts +1 -0
  356. package/build/src/components/Repository/index.d.ts +1 -0
  357. package/build/src/components/Search/AutoComplete/AutoComplete.d.ts +16 -0
  358. package/build/src/components/Search/AutoComplete/index.d.ts +1 -0
  359. package/build/src/components/Search/AutoComplete/styles.d.ts +13 -0
  360. package/build/src/components/Search/Search.d.ts +4 -0
  361. package/build/src/components/Search/Search.stories.d.ts +8 -0
  362. package/build/src/components/Search/Search.test.d.ts +1 -0
  363. package/build/src/components/Search/SearchItem.d.ts +18 -0
  364. package/build/src/components/Search/index.d.ts +1 -0
  365. package/build/src/components/Search/styles.d.ts +10 -0
  366. package/build/src/components/SettingsMenu/SettingsMenu.d.ts +6 -0
  367. package/build/src/components/SettingsMenu/index.d.ts +1 -0
  368. package/build/src/components/SideBarTittle/SideBarTittle.d.ts +13 -0
  369. package/build/src/components/SideBarTittle/SideBarTittle.stories.d.ts +9 -0
  370. package/build/src/components/SideBarTittle/index.d.ts +1 -0
  371. package/build/src/components/SideBarTittle/utils.d.ts +3 -0
  372. package/build/src/components/TextField/TextField.d.ts +3 -0
  373. package/build/src/components/TextField/TextField.test.d.ts +1 -0
  374. package/build/src/components/TextField/index.d.ts +1 -0
  375. package/build/src/components/UpLinks/UpLinks.d.ts +5 -0
  376. package/build/src/components/UpLinks/UpLinks.test.d.ts +1 -0
  377. package/build/src/components/UpLinks/Uplinks.stories.d.ts +6 -0
  378. package/build/src/components/UpLinks/index.d.ts +1 -0
  379. package/build/src/components/UpLinks/styles.d.ts +13 -0
  380. package/build/src/components/Versions/HistoryList.d.ts +9 -0
  381. package/build/src/components/Versions/TagList.d.ts +9 -0
  382. package/build/src/components/Versions/Versions.d.ts +7 -0
  383. package/build/src/components/Versions/Versions.test.d.ts +1 -0
  384. package/build/src/components/Versions/index.d.ts +1 -0
  385. package/build/src/components/Versions/styles.d.ts +12 -0
  386. package/build/src/components/Versions/types.d.ts +15 -0
  387. package/build/src/hooks/index.d.ts +2 -0
  388. package/build/src/hooks/useLocalStorage.d.ts +12 -0
  389. package/build/src/hooks/useOnClickOutside.d.ts +9 -0
  390. package/build/src/index.d.ts +50 -0
  391. package/build/src/layouts/Version/Version.d.ts +3 -0
  392. package/build/src/layouts/Version/Version.stories.d.ts +7 -0
  393. package/build/src/layouts/Version/index.d.ts +1 -0
  394. package/build/src/providers/AppConfigurationProvider/AppConfigurationProvider.d.ts +10 -0
  395. package/build/src/providers/AppConfigurationProvider/index.d.ts +1 -0
  396. package/build/src/providers/PersistenceSettingProvider/PersistenceSettingProvider.d.ts +6 -0
  397. package/build/src/providers/PersistenceSettingProvider/index.d.ts +1 -0
  398. package/build/src/providers/TranslatorProvider/TranslatorProvider.d.ts +24 -0
  399. package/build/src/providers/TranslatorProvider/TranslatorProvider.spec.d.ts +1 -0
  400. package/build/src/providers/TranslatorProvider/index.d.ts +1 -0
  401. package/build/src/providers/VersionProvider/VersionProvider.d.ts +41 -0
  402. package/build/src/providers/VersionProvider/VersionProvider.test.d.ts +1 -0
  403. package/build/src/providers/VersionProvider/index.d.ts +1 -0
  404. package/build/src/providers/index.d.ts +3 -0
  405. package/build/src/sections/Detail/ContainerContent.d.ts +13 -0
  406. package/build/src/sections/Detail/Detail.d.ts +9 -0
  407. package/build/src/sections/Detail/Detail.stories.d.ts +6 -0
  408. package/build/src/sections/Detail/Detail.test.d.ts +1 -0
  409. package/build/src/sections/Detail/ReadmeSection.d.ts +6 -0
  410. package/build/src/sections/Detail/Tabs.d.ts +7 -0
  411. package/build/src/sections/Detail/index.d.ts +1 -0
  412. package/build/src/sections/Footer/Footer.d.ts +3 -0
  413. package/build/src/sections/Footer/Footer.test.d.ts +1 -0
  414. package/build/src/sections/Footer/index.d.ts +1 -0
  415. package/build/src/sections/Footer/styles.d.ts +33 -0
  416. package/build/src/sections/Header/Header.d.ts +6 -0
  417. package/build/src/sections/Header/Header.stories.d.ts +5 -0
  418. package/build/src/sections/Header/Header.test.d.ts +1 -0
  419. package/build/src/sections/Header/HeaderGreetings.d.ts +6 -0
  420. package/build/src/sections/Header/HeaderLeft.d.ts +6 -0
  421. package/build/src/sections/Header/HeaderMenu.d.ts +11 -0
  422. package/build/src/sections/Header/HeaderRight.d.ts +16 -0
  423. package/build/src/sections/Header/HeaderSettingsDialog.d.ts +7 -0
  424. package/build/src/sections/Header/HeaderToolTip.d.ts +9 -0
  425. package/build/src/sections/Header/HeaderToolTipIcon.d.ts +8 -0
  426. package/build/src/sections/Header/LanguageSwitch.d.ts +5 -0
  427. package/build/src/sections/Header/RegistryInfoContent/RegistryInfoContent.d.ts +24 -0
  428. package/build/src/sections/Header/RegistryInfoContent/RegistryInfoContent.test.d.ts +1 -0
  429. package/build/src/sections/Header/RegistryInfoContent/index.d.ts +1 -0
  430. package/build/src/sections/Header/RegistryInfoContent/styles.d.ts +13 -0
  431. package/build/src/sections/Header/RegistryInfoDialog/RegistryInfoDialog.d.ts +4 -0
  432. package/build/src/sections/Header/RegistryInfoDialog/index.d.ts +1 -0
  433. package/build/src/sections/Header/RegistryInfoDialog/styles.d.ts +13 -0
  434. package/build/src/sections/Header/RegistryInfoDialog/types.d.ts +7 -0
  435. package/build/src/sections/Header/index.d.ts +1 -0
  436. package/build/src/sections/Header/styles.d.ts +34 -0
  437. package/build/src/sections/Home/Home.d.ts +3 -0
  438. package/build/src/sections/Home/Home.stories.d.ts +5 -0
  439. package/build/src/sections/Home/index.d.ts +1 -0
  440. package/build/src/sections/SideBar/Sidebar.d.ts +3 -0
  441. package/build/src/sections/SideBar/Sidebar.stories.d.ts +7 -0
  442. package/build/src/sections/SideBar/Sidebar.test.d.ts +1 -0
  443. package/build/src/sections/SideBar/index.d.ts +1 -0
  444. package/build/src/sections/index.d.ts +2 -0
  445. package/build/src/store/api.d.ts +11 -0
  446. package/build/src/store/index.d.ts +3 -0
  447. package/build/src/store/models/configuration.d.ts +24 -0
  448. package/build/src/store/models/download.d.ts +16 -0
  449. package/build/src/store/models/index.d.ts +16 -0
  450. package/build/src/store/models/login.d.ts +69 -0
  451. package/build/src/store/models/manifest.d.ts +43 -0
  452. package/build/src/store/models/packages.d.ts +28 -0
  453. package/build/src/store/models/search.d.ts +42 -0
  454. package/build/src/store/storage.d.ts +2 -0
  455. package/build/src/store/store.d.ts +9 -0
  456. package/build/src/test/i18n-config.d.ts +2 -0
  457. package/build/src/test/test-react-testing-library.d.ts +8 -0
  458. package/build/src/types/index.d.ts +10 -0
  459. package/build/src/types/packageMeta.d.ts +84 -0
  460. package/build/src/utils/__partials__/packageMeta.d.ts +236 -0
  461. package/build/src/utils/cli-utils.d.ts +6 -0
  462. package/build/src/utils/index.d.ts +6 -0
  463. package/build/src/utils/loadable.d.ts +12 -0
  464. package/build/src/utils/routes.d.ts +7 -0
  465. package/build/src/utils/token.d.ts +1 -0
  466. package/build/src/utils/url.d.ts +4 -0
  467. package/build/src/utils/utils.d.ts +32 -0
  468. package/build/store/api.js +70 -0
  469. package/build/store/index.js +52 -0
  470. package/build/store/models/configuration.js +49 -0
  471. package/build/store/models/download.js +41 -0
  472. package/build/store/models/index.js +22 -0
  473. package/build/store/models/login.js +104 -0
  474. package/build/store/models/manifest.js +99 -0
  475. package/build/store/models/packages.js +44 -0
  476. package/build/store/models/search.js +90 -0
  477. package/build/store/storage.js +19 -0
  478. package/build/store/store.js +16 -0
  479. package/build/test/i18n-config.js +26 -0
  480. package/build/test/test-react-testing-library.js +53 -0
  481. package/build/types/index.js +6 -0
  482. package/build/types/packageMeta.js +6 -0
  483. package/build/utils/__partials__/packageMeta.js +536 -0
  484. package/build/utils/cli-utils.js +49 -0
  485. package/build/utils/index.js +75 -0
  486. package/build/utils/loadable.js +27 -0
  487. package/build/utils/routes.js +16 -0
  488. package/build/utils/token.js +35 -0
  489. package/build/utils/url.js +64 -0
  490. package/build/utils/utils.js +103 -0
  491. package/package.json +69 -12
  492. package/src/Theme/ResetStyles.tsx +44 -0
  493. package/src/Theme/StyleBaseline.tsx +14 -0
  494. package/src/Theme/ThemeProvider.tsx +44 -0
  495. package/src/Theme/colors.ts +1 -0
  496. package/src/Theme/index.ts +4 -0
  497. package/src/Theme/theme.ts +161 -0
  498. package/src/__mocks__/react-markdown.tsx +8 -0
  499. package/src/__mocks__/remark-plugin.ts +1 -0
  500. package/src/components/ActionBar/ActionBar.stories.tsx +64 -0
  501. package/src/components/ActionBar/ActionBar.test.tsx +85 -0
  502. package/src/components/ActionBar/ActionBar.tsx +59 -0
  503. package/src/components/ActionBar/ActionBarAction.tsx +84 -0
  504. package/src/components/ActionBar/index.ts +1 -0
  505. package/src/components/Author/Author.stories.tsx +53 -0
  506. package/src/components/Author/Author.test.tsx +69 -0
  507. package/src/components/Author/Author.tsx +59 -0
  508. package/src/components/Author/index.ts +1 -0
  509. package/src/components/Author/styles.ts +22 -0
  510. package/src/components/CopyClipboard/CopyToClipBoard.stories.tsx +20 -0
  511. package/src/components/CopyClipboard/CopyToClipBoard.tsx +50 -0
  512. package/src/components/CopyClipboard/index.ts +2 -0
  513. package/src/components/CopyClipboard/utils.ts +21 -0
  514. package/src/components/Dependencies/Dependencies.stories.tsx +158 -0
  515. package/src/components/Dependencies/Dependencies.test.tsx +79 -0
  516. package/src/components/Dependencies/Dependencies.tsx +111 -0
  517. package/src/components/Dependencies/index.ts +1 -0
  518. package/src/components/Dependencies/styles.ts +26 -0
  519. package/src/components/Dependencies/types.ts +7 -0
  520. package/src/components/Deprecated/Deprecated.stories.tsx +9 -0
  521. package/src/components/Deprecated/Deprecated.test.tsx +26 -0
  522. package/src/components/Deprecated/Deprecated.tsx +31 -0
  523. package/src/components/Deprecated/index.ts +1 -0
  524. package/src/components/Developers/Developers.stories.tsx +60 -0
  525. package/src/components/Developers/Developers.test.tsx +102 -0
  526. package/src/components/Developers/Developers.tsx +82 -0
  527. package/src/components/Developers/Title.tsx +32 -0
  528. package/src/components/Developers/get-unique-developer-values.ts +16 -0
  529. package/src/components/Developers/index.ts +1 -0
  530. package/src/components/Developers/styles.ts +31 -0
  531. package/src/components/Distribution/Dist.stories.tsx +67 -0
  532. package/src/components/Distribution/Dist.test.tsx +99 -0
  533. package/src/components/Distribution/Dist.tsx +58 -0
  534. package/src/components/Distribution/index.ts +1 -0
  535. package/src/components/Distribution/styles.ts +29 -0
  536. package/src/components/Distribution/utils.ts +32 -0
  537. package/src/components/Distribution/utilts.spec.ts +17 -0
  538. package/src/components/Engines/Engines.stories.tsx +71 -0
  539. package/src/components/Engines/Engines.test.tsx +56 -0
  540. package/src/components/Engines/Engines.tsx +95 -0
  541. package/src/components/Engines/index.ts +1 -0
  542. package/src/components/Engines/styles.ts +14 -0
  543. package/src/components/ErrorBoundary/ErrorBoundary.tsx +38 -0
  544. package/src/components/ErrorBoundary/index.ts +1 -0
  545. package/src/components/FundButton/FundButton.stories.tsx +56 -0
  546. package/src/components/FundButton/FundButton.test.tsx +84 -0
  547. package/src/components/FundButton/FundButton.tsx +48 -0
  548. package/src/components/FundButton/index.ts +1 -0
  549. package/src/components/HeaderInfoDialog/HeaderInfoDialog.tsx +82 -0
  550. package/src/components/HeaderInfoDialog/index.ts +1 -0
  551. package/src/components/Heading/Heading.tsx +16 -0
  552. package/src/components/Heading/index.ts +1 -0
  553. package/src/components/Help/Help.stories.tsx +9 -0
  554. package/src/components/Help/Help.test.tsx +11 -0
  555. package/src/components/Help/Help.tsx +54 -0
  556. package/src/components/Help/index.ts +1 -0
  557. package/src/components/Help/styles.ts +7 -0
  558. package/src/components/Icons/.eslintrc +5 -0
  559. package/src/components/Icons/DevsIcons/CommonJS.tsx +13 -0
  560. package/src/components/Icons/DevsIcons/ES6Module.tsx +13 -0
  561. package/src/components/Icons/DevsIcons/Git.tsx +13 -0
  562. package/src/components/Icons/DevsIcons/NodeJS.tsx +13 -0
  563. package/src/components/Icons/DevsIcons/TypeScript.tsx +13 -0
  564. package/src/components/Icons/DevsIcons/commonjs.svg +4 -0
  565. package/src/components/Icons/DevsIcons/es6modules.svg +4 -0
  566. package/src/components/Icons/DevsIcons/git.svg +4 -0
  567. package/src/components/Icons/DevsIcons/index.ts +5 -0
  568. package/src/components/Icons/DevsIcons/nodejs.svg +6 -0
  569. package/src/components/Icons/DevsIcons/typescript.svg +4 -0
  570. package/src/components/Icons/Earth.tsx +36 -0
  571. package/src/components/Icons/FileBinary.tsx +20 -0
  572. package/src/components/Icons/Icons.stories.tsx +37 -0
  573. package/src/components/Icons/Law.tsx +20 -0
  574. package/src/components/Icons/License.tsx +18 -0
  575. package/src/components/Icons/Managers/Npm.tsx +13 -0
  576. package/src/components/Icons/Managers/Pnpm.tsx +13 -0
  577. package/src/components/Icons/Managers/Yarn.tsx +13 -0
  578. package/src/components/Icons/Managers/index.ts +3 -0
  579. package/src/components/Icons/Managers/npm.svg +15 -0
  580. package/src/components/Icons/Managers/pnpm.svg +1 -0
  581. package/src/components/Icons/Managers/yarn.svg +1 -0
  582. package/src/components/Icons/SvgIcon.tsx +39 -0
  583. package/src/components/Icons/Time.tsx +19 -0
  584. package/src/components/Icons/Version.tsx +20 -0
  585. package/src/components/Icons/index.ts +8 -0
  586. package/src/components/Install/Install.stories.tsx +87 -0
  587. package/src/components/Install/Install.test.tsx +84 -0
  588. package/src/components/Install/Install.tsx +67 -0
  589. package/src/components/Install/InstallListItem.tsx +118 -0
  590. package/src/components/Install/__partials__/data.json +5984 -0
  591. package/src/components/Install/img/npm.svg +15 -0
  592. package/src/components/Install/img/pnpm.svg +1 -0
  593. package/src/components/Install/img/yarn.svg +1 -0
  594. package/src/components/Install/index.ts +1 -0
  595. package/src/components/Label/Label.test.tsx +14 -0
  596. package/src/components/Label/Label.tsx +36 -0
  597. package/src/components/Label/index.ts +1 -0
  598. package/src/components/Link/Link.tsx +39 -0
  599. package/src/components/Link/index.ts +1 -0
  600. package/src/components/Loading/Loading.stories.tsx +14 -0
  601. package/src/components/Loading/Loading.test.tsx +11 -0
  602. package/src/components/Loading/Loading.tsx +16 -0
  603. package/src/components/Loading/Spinner/Spinner.test.tsx +13 -0
  604. package/src/components/Loading/Spinner/Spinner.tsx +34 -0
  605. package/src/components/Loading/Spinner/index.tsx +1 -0
  606. package/src/components/Loading/index.ts +1 -0
  607. package/src/components/Loading/styles.ts +17 -0
  608. package/src/components/LoginDialog/LoginDialog.stories.tsx +20 -0
  609. package/src/components/LoginDialog/LoginDialog.test.tsx +108 -0
  610. package/src/components/LoginDialog/LoginDialog.tsx +79 -0
  611. package/src/components/LoginDialog/LoginDialogCloseButton.tsx +32 -0
  612. package/src/components/LoginDialog/LoginDialogForm.tsx +96 -0
  613. package/src/components/LoginDialog/LoginDialogFormError.tsx +42 -0
  614. package/src/components/LoginDialog/LoginDialogHeader.tsx +48 -0
  615. package/src/components/LoginDialog/index.ts +1 -0
  616. package/src/components/Logo/Logo.test.tsx +11 -0
  617. package/src/components/Logo/Logo.tsx +55 -0
  618. package/src/components/Logo/img/logo-black-and-white.svg +1 -0
  619. package/src/components/Logo/img/logo.svg +1 -0
  620. package/src/components/Logo/index.ts +1 -0
  621. package/src/components/MenuItem/MenuItem.tsx +25 -0
  622. package/src/components/MenuItem/index.ts +1 -0
  623. package/src/components/NoItems/NoItems.stories.tsx +11 -0
  624. package/src/components/NoItems/NoItems.tsx +15 -0
  625. package/src/components/NoItems/Noitems.test.tsx +15 -0
  626. package/src/components/NoItems/index.ts +1 -0
  627. package/src/components/NotFound/NotFound.tsx +52 -0
  628. package/src/components/NotFound/Notfound.test.tsx +36 -0
  629. package/src/components/NotFound/img/package.svg +1 -0
  630. package/src/components/NotFound/index.ts +1 -0
  631. package/src/components/Package/Package.test.tsx +54 -0
  632. package/src/components/Package/Package.tsx +260 -0
  633. package/src/components/Package/Tag/Tag.test.tsx +15 -0
  634. package/src/components/Package/Tag/Tag.tsx +11 -0
  635. package/src/components/Package/Tag/index.ts +1 -0
  636. package/src/components/Package/Tag/styles.ts +11 -0
  637. package/src/components/Package/index.ts +1 -0
  638. package/src/components/Package/styles.ts +104 -0
  639. package/src/components/PackageList/PackageList.tsx +81 -0
  640. package/src/components/PackageList/Packagelist.test.tsx +58 -0
  641. package/src/components/PackageList/index.ts +1 -0
  642. package/src/components/RawViewer/RawViewer.tsx +72 -0
  643. package/src/components/RawViewer/index.ts +1 -0
  644. package/src/components/Readme/Readme.spec.tsx +18 -0
  645. package/src/components/Readme/Readme.tsx +30 -0
  646. package/src/components/Readme/index.ts +1 -0
  647. package/src/components/Readme/types.ts +3 -0
  648. package/src/components/Readme/utils.ts +25 -0
  649. package/src/components/RegistryInfoDialog/RegistryInfoDialog.tsx +31 -0
  650. package/src/components/RegistryInfoDialog/index.ts +1 -0
  651. package/src/components/RegistryInfoDialog/styles.ts +21 -0
  652. package/src/components/RegistryInfoDialog/types.ts +8 -0
  653. package/src/components/Repository/Repository.stories.tsx +70 -0
  654. package/src/components/Repository/Repository.test.tsx +43 -0
  655. package/src/components/Repository/Repository.tsx +88 -0
  656. package/src/components/Repository/__partials__/data.json +5984 -0
  657. package/src/components/Repository/img/git.png +0 -0
  658. package/src/components/Repository/index.ts +1 -0
  659. package/src/components/Search/AutoComplete/AutoComplete.tsx +83 -0
  660. package/src/components/Search/AutoComplete/index.ts +1 -0
  661. package/src/components/Search/AutoComplete/styles.tsx +42 -0
  662. package/src/components/Search/Search.stories.tsx +30 -0
  663. package/src/components/Search/Search.test.tsx +153 -0
  664. package/src/components/Search/Search.tsx +162 -0
  665. package/src/components/Search/SearchItem.tsx +114 -0
  666. package/src/components/Search/index.ts +1 -0
  667. package/src/components/Search/styles.ts +41 -0
  668. package/src/components/SettingsMenu/SettingsMenu.tsx +67 -0
  669. package/src/components/SettingsMenu/index.ts +1 -0
  670. package/src/components/SideBarTittle/SideBarTittle.stories.tsx +68 -0
  671. package/src/components/SideBarTittle/SideBarTittle.tsx +81 -0
  672. package/src/components/SideBarTittle/index.ts +1 -0
  673. package/src/components/SideBarTittle/utils.ts +12 -0
  674. package/src/components/TextField/TextField.test.tsx +15 -0
  675. package/src/components/TextField/TextField.tsx +24 -0
  676. package/src/components/TextField/index.ts +1 -0
  677. package/src/components/UpLinks/UpLinks.test.tsx +47 -0
  678. package/src/components/UpLinks/UpLinks.tsx +41 -0
  679. package/src/components/UpLinks/Uplinks.stories.tsx +47 -0
  680. package/src/components/UpLinks/index.ts +1 -0
  681. package/src/components/UpLinks/styles.ts +24 -0
  682. package/src/components/Versions/HistoryList.tsx +41 -0
  683. package/src/components/Versions/TagList.tsx +33 -0
  684. package/src/components/Versions/Versions.test.tsx +39 -0
  685. package/src/components/Versions/Versions.tsx +40 -0
  686. package/src/components/Versions/__partials__/data.json +5984 -0
  687. package/src/components/Versions/index.ts +1 -0
  688. package/src/components/Versions/styles.ts +20 -0
  689. package/src/components/Versions/types.ts +17 -0
  690. package/src/hooks/index.ts +2 -0
  691. package/src/hooks/useLocalStorage.ts +49 -0
  692. package/src/hooks/useOnClickOutside.ts +33 -0
  693. package/src/index.ts +60 -0
  694. package/src/layouts/Version/Version.stories.tsx +44 -0
  695. package/src/layouts/Version/Version.tsx +19 -0
  696. package/src/layouts/Version/index.ts +1 -0
  697. package/src/providers/AppConfigurationProvider/AppConfigurationProvider.tsx +73 -0
  698. package/src/providers/AppConfigurationProvider/index.ts +1 -0
  699. package/src/providers/PersistenceSettingProvider/PersistenceSettingProvider.tsx +57 -0
  700. package/src/providers/PersistenceSettingProvider/index.ts +1 -0
  701. package/src/providers/TranslatorProvider/TranslatorProvider.spec.tsx +52 -0
  702. package/src/providers/TranslatorProvider/TranslatorProvider.tsx +54 -0
  703. package/src/providers/TranslatorProvider/index.ts +1 -0
  704. package/src/providers/VersionProvider/README.md +22 -0
  705. package/src/providers/VersionProvider/VersionProvider.test.tsx +49 -0
  706. package/src/providers/VersionProvider/VersionProvider.tsx +92 -0
  707. package/src/providers/VersionProvider/index.ts +1 -0
  708. package/src/providers/index.ts +3 -0
  709. package/src/sections/Detail/ContainerContent.tsx +46 -0
  710. package/src/sections/Detail/Detail.stories.tsx +29 -0
  711. package/src/sections/Detail/Detail.test.tsx +12 -0
  712. package/src/sections/Detail/Detail.tsx +34 -0
  713. package/src/sections/Detail/ReadmeSection.tsx +17 -0
  714. package/src/sections/Detail/Tabs.tsx +36 -0
  715. package/src/sections/Detail/index.ts +1 -0
  716. package/src/sections/Footer/Footer.test.tsx +20 -0
  717. package/src/sections/Footer/Footer.tsx +112 -0
  718. package/src/sections/Footer/index.ts +1 -0
  719. package/src/sections/Footer/styles.ts +44 -0
  720. package/src/sections/Header/Header.stories.tsx +36 -0
  721. package/src/sections/Header/Header.test.tsx +278 -0
  722. package/src/sections/Header/Header.tsx +79 -0
  723. package/src/sections/Header/HeaderGreetings.tsx +21 -0
  724. package/src/sections/Header/HeaderLeft.tsx +29 -0
  725. package/src/sections/Header/HeaderMenu.tsx +63 -0
  726. package/src/sections/Header/HeaderRight.tsx +131 -0
  727. package/src/sections/Header/HeaderSettingsDialog.tsx +81 -0
  728. package/src/sections/Header/HeaderToolTip.tsx +15 -0
  729. package/src/sections/Header/HeaderToolTipIcon.tsx +87 -0
  730. package/src/sections/Header/LanguageSwitch.tsx +96 -0
  731. package/src/sections/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +26 -0
  732. package/src/sections/Header/RegistryInfoContent/RegistryInfoContent.tsx +196 -0
  733. package/src/sections/Header/RegistryInfoContent/index.ts +1 -0
  734. package/src/sections/Header/RegistryInfoContent/styles.ts +13 -0
  735. package/src/sections/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +31 -0
  736. package/src/sections/Header/RegistryInfoDialog/index.ts +1 -0
  737. package/src/sections/Header/RegistryInfoDialog/styles.ts +21 -0
  738. package/src/sections/Header/RegistryInfoDialog/types.ts +8 -0
  739. package/src/sections/Header/index.ts +1 -0
  740. package/src/sections/Header/styles.ts +100 -0
  741. package/src/sections/Home/Home.stories.tsx +16 -0
  742. package/src/sections/Home/Home.tsx +22 -0
  743. package/src/sections/Home/index.ts +1 -0
  744. package/src/sections/SideBar/Sidebar.stories.tsx +39 -0
  745. package/src/sections/SideBar/Sidebar.test.tsx +106 -0
  746. package/src/sections/SideBar/Sidebar.tsx +80 -0
  747. package/src/sections/SideBar/index.ts +1 -0
  748. package/src/sections/index.ts +2 -0
  749. package/src/store/api.test.ts +136 -0
  750. package/src/store/api.ts +73 -0
  751. package/src/store/index.ts +3 -0
  752. package/src/store/models/configuration.ts +46 -0
  753. package/src/store/models/download.ts +34 -0
  754. package/src/store/models/index.ts +18 -0
  755. package/src/store/models/login.test.ts +38 -0
  756. package/src/store/models/login.ts +106 -0
  757. package/src/store/models/manifest.ts +98 -0
  758. package/src/store/models/packages.ts +43 -0
  759. package/src/store/models/search.ts +86 -0
  760. package/src/store/storage.ts +12 -0
  761. package/src/store/store.ts +15 -0
  762. package/src/test/i18n-config.ts +19 -0
  763. package/src/test/test-react-testing-library.tsx +47 -0
  764. package/src/types/index.d.ts +2 -0
  765. package/src/types/index.ts +11 -0
  766. package/src/types/packageMeta.ts +92 -0
  767. package/src/utils/.eslintrc +5 -0
  768. package/src/utils/__partials__/packageMeta.ts +591 -0
  769. package/src/utils/cli-utils.test.ts +66 -0
  770. package/src/utils/cli-utils.ts +53 -0
  771. package/src/utils/index.ts +11 -0
  772. package/src/utils/loadable.tsx +20 -0
  773. package/src/utils/routes.ts +7 -0
  774. package/src/utils/token.test.ts +54 -0
  775. package/src/utils/token.ts +33 -0
  776. package/src/utils/url.test.ts +32 -0
  777. package/src/utils/url.ts +57 -0
  778. package/src/utils/utils.test.ts +113 -0
  779. package/src/utils/utils.ts +120 -0
  780. package/tsconfig.build.json +22 -0
  781. package/tsconfig.json +21 -0
  782. package/LICENSE +0 -21
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.StyledText = exports.EngineListItem = void 0;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _ListItem = _interopRequireDefault(require("@mui/material/ListItem"));
9
+ var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
12
+ const StyledText = /*#__PURE__*/(0, _base.default)(_Typography.default, process.env.NODE_ENV === "production" ? {
13
+ target: "exjcs7c1"
14
+ } : {
15
+ target: "exjcs7c1",
16
+ label: "StyledText"
17
+ })(props => {
18
+ var _props$theme;
19
+ return {
20
+ fontWeight: (_props$theme = props.theme) === null || _props$theme === void 0 ? void 0 : _props$theme.fontWeight.bold,
21
+ textTransform: 'capitalize'
22
+ };
23
+ }, process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0VuZ2luZXMvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU0wQiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvY29tcG9uZW50cy9FbmdpbmVzL3N0eWxlcy50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCBMaXN0SXRlbSBmcm9tICdAbXVpL21hdGVyaWFsL0xpc3RJdGVtJztcbmltcG9ydCBUeXBvZ3JhcGh5IGZyb20gJ0BtdWkvbWF0ZXJpYWwvVHlwb2dyYXBoeSc7XG5cbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnLi4vLi4vVGhlbWUnO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkVGV4dCA9IHN0eWxlZChUeXBvZ3JhcGh5KTx7IHRoZW1lPzogVGhlbWUgfT4oKHByb3BzKSA9PiAoe1xuICBmb250V2VpZ2h0OiBwcm9wcy50aGVtZT8uZm9udFdlaWdodC5ib2xkLFxuICB0ZXh0VHJhbnNmb3JtOiAnY2FwaXRhbGl6ZScsXG59KSk7XG5cbmV4cG9ydCBjb25zdCBFbmdpbmVMaXN0SXRlbSA9IHN0eWxlZChMaXN0SXRlbSkoe1xuICBwYWRkaW5nTGVmdDogMCxcbn0pO1xuIl19 */");
24
+ exports.StyledText = StyledText;
25
+ const EngineListItem = /*#__PURE__*/(0, _base.default)(_ListItem.default, process.env.NODE_ENV === "production" ? {
26
+ target: "exjcs7c0"
27
+ } : {
28
+ target: "exjcs7c0",
29
+ label: "EngineListItem"
30
+ })(process.env.NODE_ENV === "production" ? {
31
+ name: "1408f10",
32
+ styles: "padding-left:0"
33
+ } : {
34
+ name: "1408f10",
35
+ styles: "padding-left:0",
36
+ map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0VuZ2luZXMvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVc4QiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvY29tcG9uZW50cy9FbmdpbmVzL3N0eWxlcy50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCBMaXN0SXRlbSBmcm9tICdAbXVpL21hdGVyaWFsL0xpc3RJdGVtJztcbmltcG9ydCBUeXBvZ3JhcGh5IGZyb20gJ0BtdWkvbWF0ZXJpYWwvVHlwb2dyYXBoeSc7XG5cbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnLi4vLi4vVGhlbWUnO1xuXG5leHBvcnQgY29uc3QgU3R5bGVkVGV4dCA9IHN0eWxlZChUeXBvZ3JhcGh5KTx7IHRoZW1lPzogVGhlbWUgfT4oKHByb3BzKSA9PiAoe1xuICBmb250V2VpZ2h0OiBwcm9wcy50aGVtZT8uZm9udFdlaWdodC5ib2xkLFxuICB0ZXh0VHJhbnNmb3JtOiAnY2FwaXRhbGl6ZScsXG59KSk7XG5cbmV4cG9ydCBjb25zdCBFbmdpbmVMaXN0SXRlbSA9IHN0eWxlZChMaXN0SXRlbSkoe1xuICBwYWRkaW5nTGVmdDogMCxcbn0pO1xuIl19 */",
37
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
38
+ });
39
+ exports.EngineListItem = EngineListItem;
40
+ //# sourceMappingURL=styles.js.map
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
9
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
10
+ class ErrorBoundary extends _react.Component {
11
+ constructor(props) {
12
+ super(props);
13
+ this.state = {
14
+ hasError: false,
15
+ error: null,
16
+ info: null
17
+ };
18
+ }
19
+ componentDidCatch(error, info) {
20
+ this.setState({
21
+ hasError: true,
22
+ error,
23
+ info
24
+ });
25
+ }
26
+ render() {
27
+ const {
28
+ hasError,
29
+ error,
30
+ info
31
+ } = this.state;
32
+ const {
33
+ children
34
+ } = this.props;
35
+ if (hasError) {
36
+ return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("h1", null, 'Something went wrong.'), /*#__PURE__*/_react.default.createElement("p", null, `error: ${error}`), /*#__PURE__*/_react.default.createElement("p", null, `info: ${JSON.stringify(info)}`));
37
+ }
38
+ return children;
39
+ }
40
+ }
41
+ exports.default = ErrorBoundary;
42
+ //# sourceMappingURL=ErrorBoundary.js.map
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "default", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _ErrorBoundary.default;
10
+ }
11
+ });
12
+ var _ErrorBoundary = _interopRequireDefault(require("./ErrorBoundary"));
13
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _Favorite = _interopRequireDefault(require("@mui/icons-material/Favorite"));
9
+ var _Button = _interopRequireDefault(require("@mui/material/Button"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _reactI18next = require("react-i18next");
12
+ var _utils = require("../../utils");
13
+ var _Link = require("../Link");
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
16
+ const StyledLink = /*#__PURE__*/(0, _base.default)(_Link.Link, process.env.NODE_ENV === "production" ? {
17
+ target: "e1lzdgus2"
18
+ } : {
19
+ target: "e1lzdgus2",
20
+ label: "StyledLink"
21
+ })(({
22
+ theme
23
+ }) => ({
24
+ marginTop: theme === null || theme === void 0 ? void 0 : theme.spacing(1),
25
+ marginBottom: theme === null || theme === void 0 ? void 0 : theme.spacing(1),
26
+ textDecoration: 'none',
27
+ display: 'block'
28
+ }), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0Z1bmRCdXR0b24vRnVuZEJ1dHRvbi50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBVW1CIiwiZmlsZSI6Ii4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0Z1bmRCdXR0b24vRnVuZEJ1dHRvbi50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5pbXBvcnQgRmF2b3JpdGUgZnJvbSAnQG11aS9pY29ucy1tYXRlcmlhbC9GYXZvcml0ZSc7XG5pbXBvcnQgQnV0dG9uIGZyb20gJ0BtdWkvbWF0ZXJpYWwvQnV0dG9uJztcbmltcG9ydCBSZWFjdCBmcm9tICdyZWFjdCc7XG5pbXBvcnQgeyBUcmFucyB9IGZyb20gJ3JlYWN0LWkxOG5leHQnO1xuXG5pbXBvcnQgeyBUaGVtZSB9IGZyb20gJy4uLy4uL1RoZW1lJztcbmltcG9ydCB7IHVybCB9IGZyb20gJy4uLy4uL3V0aWxzJztcbmltcG9ydCB7IExpbmsgfSBmcm9tICcuLi9MaW5rJztcblxuY29uc3QgU3R5bGVkTGluayA9IHN0eWxlZChMaW5rKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgbWFyZ2luVG9wOiB0aGVtZT8uc3BhY2luZygxKSxcbiAgbWFyZ2luQm90dG9tOiB0aGVtZT8uc3BhY2luZygxKSxcbiAgdGV4dERlY29yYXRpb246ICdub25lJyxcbiAgZGlzcGxheTogJ2Jsb2NrJyxcbn0pKTtcblxuY29uc3QgU3R5bGVkRmF2b3JpdGVJY29uID0gc3R5bGVkKEZhdm9yaXRlKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgY29sb3I6IHRoZW1lPy5wYWxldHRlLm9yYW5nZSxcbn0pKTtcblxuY29uc3QgU3R5bGVkRnVuZFN0cm9uZyA9IHN0eWxlZCgnc3Ryb25nJykoe1xuICBtYXJnaW5SaWdodDogMyxcbn0pO1xuXG4vKiBlc2xpbnQtZGlzYWJsZSByZWFjdC9qc3gtbm8tYmluZCAqL1xuY29uc3QgRnVuZEJ1dHRvbjogUmVhY3QuRkM8eyBwYWNrYWdlTWV0YTogYW55IH0+ID0gKHsgcGFja2FnZU1ldGEgfSkgPT4ge1xuICBjb25zdCBmdW5kaW5nVXJsID0gcGFja2FnZU1ldGE/LmxhdGVzdD8uZnVuZGluZz8udXJsIGFzIHN0cmluZztcblxuICBpZiAoIXVybC5pc1VSTChmdW5kaW5nVXJsKSkge1xuICAgIHJldHVybiBudWxsO1xuICB9XG5cbiAgcmV0dXJuIChcbiAgICA8U3R5bGVkTGluayBleHRlcm5hbD17dHJ1ZX0gdG89e2Z1bmRpbmdVcmx9IHZhcmlhbnQ9XCJidXR0b25cIj5cbiAgICAgIDxCdXR0b25cbiAgICAgICAgY29sb3I9XCJwcmltYXJ5XCJcbiAgICAgICAgZnVsbFdpZHRoPXt0cnVlfVxuICAgICAgICBzdGFydEljb249ezxTdHlsZWRGYXZvcml0ZUljb24gLz59XG4gICAgICAgIHZhcmlhbnQ9XCJvdXRsaW5lZFwiXG4gICAgICA+XG4gICAgICAgIDxUcmFucyBjb21wb25lbnRzPXtbPFN0eWxlZEZ1bmRTdHJvbmcga2V5PVwiZnVuZFwiIC8+XX0gaTE4bktleT1cImJ1dHRvbi5mdW5kLXRoaXMtcGFja2FnZVwiIC8+XG4gICAgICA8L0J1dHRvbj5cbiAgICA8L1N0eWxlZExpbms+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBGdW5kQnV0dG9uO1xuIl19 */");
29
+ const StyledFavoriteIcon = /*#__PURE__*/(0, _base.default)(_Favorite.default, process.env.NODE_ENV === "production" ? {
30
+ target: "e1lzdgus1"
31
+ } : {
32
+ target: "e1lzdgus1",
33
+ label: "StyledFavoriteIcon"
34
+ })(({
35
+ theme
36
+ }) => ({
37
+ color: theme === null || theme === void 0 ? void 0 : theme.palette.orange
38
+ }), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0Z1bmRCdXR0b24vRnVuZEJ1dHRvbi50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBaUIyQiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvY29tcG9uZW50cy9GdW5kQnV0dG9uL0Z1bmRCdXR0b24udHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuaW1wb3J0IEZhdm9yaXRlIGZyb20gJ0BtdWkvaWNvbnMtbWF0ZXJpYWwvRmF2b3JpdGUnO1xuaW1wb3J0IEJ1dHRvbiBmcm9tICdAbXVpL21hdGVyaWFsL0J1dHRvbic7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgVHJhbnMgfSBmcm9tICdyZWFjdC1pMThuZXh0JztcblxuaW1wb3J0IHsgVGhlbWUgfSBmcm9tICcuLi8uLi9UaGVtZSc7XG5pbXBvcnQgeyB1cmwgfSBmcm9tICcuLi8uLi91dGlscyc7XG5pbXBvcnQgeyBMaW5rIH0gZnJvbSAnLi4vTGluayc7XG5cbmNvbnN0IFN0eWxlZExpbmsgPSBzdHlsZWQoTGluayk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIG1hcmdpblRvcDogdGhlbWU/LnNwYWNpbmcoMSksXG4gIG1hcmdpbkJvdHRvbTogdGhlbWU/LnNwYWNpbmcoMSksXG4gIHRleHREZWNvcmF0aW9uOiAnbm9uZScsXG4gIGRpc3BsYXk6ICdibG9jaycsXG59KSk7XG5cbmNvbnN0IFN0eWxlZEZhdm9yaXRlSWNvbiA9IHN0eWxlZChGYXZvcml0ZSk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5vcmFuZ2UsXG59KSk7XG5cbmNvbnN0IFN0eWxlZEZ1bmRTdHJvbmcgPSBzdHlsZWQoJ3N0cm9uZycpKHtcbiAgbWFyZ2luUmlnaHQ6IDMsXG59KTtcblxuLyogZXNsaW50LWRpc2FibGUgcmVhY3QvanN4LW5vLWJpbmQgKi9cbmNvbnN0IEZ1bmRCdXR0b246IFJlYWN0LkZDPHsgcGFja2FnZU1ldGE6IGFueSB9PiA9ICh7IHBhY2thZ2VNZXRhIH0pID0+IHtcbiAgY29uc3QgZnVuZGluZ1VybCA9IHBhY2thZ2VNZXRhPy5sYXRlc3Q/LmZ1bmRpbmc/LnVybCBhcyBzdHJpbmc7XG5cbiAgaWYgKCF1cmwuaXNVUkwoZnVuZGluZ1VybCkpIHtcbiAgICByZXR1cm4gbnVsbDtcbiAgfVxuXG4gIHJldHVybiAoXG4gICAgPFN0eWxlZExpbmsgZXh0ZXJuYWw9e3RydWV9IHRvPXtmdW5kaW5nVXJsfSB2YXJpYW50PVwiYnV0dG9uXCI+XG4gICAgICA8QnV0dG9uXG4gICAgICAgIGNvbG9yPVwicHJpbWFyeVwiXG4gICAgICAgIGZ1bGxXaWR0aD17dHJ1ZX1cbiAgICAgICAgc3RhcnRJY29uPXs8U3R5bGVkRmF2b3JpdGVJY29uIC8+fVxuICAgICAgICB2YXJpYW50PVwib3V0bGluZWRcIlxuICAgICAgPlxuICAgICAgICA8VHJhbnMgY29tcG9uZW50cz17WzxTdHlsZWRGdW5kU3Ryb25nIGtleT1cImZ1bmRcIiAvPl19IGkxOG5LZXk9XCJidXR0b24uZnVuZC10aGlzLXBhY2thZ2VcIiAvPlxuICAgICAgPC9CdXR0b24+XG4gICAgPC9TdHlsZWRMaW5rPlxuICApO1xufTtcblxuZXhwb3J0IGRlZmF1bHQgRnVuZEJ1dHRvbjtcbiJdfQ== */");
39
+ const StyledFundStrong = /*#__PURE__*/(0, _base.default)('strong', process.env.NODE_ENV === "production" ? {
40
+ target: "e1lzdgus0"
41
+ } : {
42
+ target: "e1lzdgus0",
43
+ label: "StyledFundStrong"
44
+ })(process.env.NODE_ENV === "production" ? {
45
+ name: "1pt2o8x",
46
+ styles: "margin-right:3px"
47
+ } : {
48
+ name: "1pt2o8x",
49
+ styles: "margin-right:3px",
50
+ map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0Z1bmRCdXR0b24vRnVuZEJ1dHRvbi50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBcUJ5QiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvY29tcG9uZW50cy9GdW5kQnV0dG9uL0Z1bmRCdXR0b24udHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuaW1wb3J0IEZhdm9yaXRlIGZyb20gJ0BtdWkvaWNvbnMtbWF0ZXJpYWwvRmF2b3JpdGUnO1xuaW1wb3J0IEJ1dHRvbiBmcm9tICdAbXVpL21hdGVyaWFsL0J1dHRvbic7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgVHJhbnMgfSBmcm9tICdyZWFjdC1pMThuZXh0JztcblxuaW1wb3J0IHsgVGhlbWUgfSBmcm9tICcuLi8uLi9UaGVtZSc7XG5pbXBvcnQgeyB1cmwgfSBmcm9tICcuLi8uLi91dGlscyc7XG5pbXBvcnQgeyBMaW5rIH0gZnJvbSAnLi4vTGluayc7XG5cbmNvbnN0IFN0eWxlZExpbmsgPSBzdHlsZWQoTGluayk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIG1hcmdpblRvcDogdGhlbWU/LnNwYWNpbmcoMSksXG4gIG1hcmdpbkJvdHRvbTogdGhlbWU/LnNwYWNpbmcoMSksXG4gIHRleHREZWNvcmF0aW9uOiAnbm9uZScsXG4gIGRpc3BsYXk6ICdibG9jaycsXG59KSk7XG5cbmNvbnN0IFN0eWxlZEZhdm9yaXRlSWNvbiA9IHN0eWxlZChGYXZvcml0ZSk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5vcmFuZ2UsXG59KSk7XG5cbmNvbnN0IFN0eWxlZEZ1bmRTdHJvbmcgPSBzdHlsZWQoJ3N0cm9uZycpKHtcbiAgbWFyZ2luUmlnaHQ6IDMsXG59KTtcblxuLyogZXNsaW50LWRpc2FibGUgcmVhY3QvanN4LW5vLWJpbmQgKi9cbmNvbnN0IEZ1bmRCdXR0b246IFJlYWN0LkZDPHsgcGFja2FnZU1ldGE6IGFueSB9PiA9ICh7IHBhY2thZ2VNZXRhIH0pID0+IHtcbiAgY29uc3QgZnVuZGluZ1VybCA9IHBhY2thZ2VNZXRhPy5sYXRlc3Q/LmZ1bmRpbmc/LnVybCBhcyBzdHJpbmc7XG5cbiAgaWYgKCF1cmwuaXNVUkwoZnVuZGluZ1VybCkpIHtcbiAgICByZXR1cm4gbnVsbDtcbiAgfVxuXG4gIHJldHVybiAoXG4gICAgPFN0eWxlZExpbmsgZXh0ZXJuYWw9e3RydWV9IHRvPXtmdW5kaW5nVXJsfSB2YXJpYW50PVwiYnV0dG9uXCI+XG4gICAgICA8QnV0dG9uXG4gICAgICAgIGNvbG9yPVwicHJpbWFyeVwiXG4gICAgICAgIGZ1bGxXaWR0aD17dHJ1ZX1cbiAgICAgICAgc3RhcnRJY29uPXs8U3R5bGVkRmF2b3JpdGVJY29uIC8+fVxuICAgICAgICB2YXJpYW50PVwib3V0bGluZWRcIlxuICAgICAgPlxuICAgICAgICA8VHJhbnMgY29tcG9uZW50cz17WzxTdHlsZWRGdW5kU3Ryb25nIGtleT1cImZ1bmRcIiAvPl19IGkxOG5LZXk9XCJidXR0b24uZnVuZC10aGlzLXBhY2thZ2VcIiAvPlxuICAgICAgPC9CdXR0b24+XG4gICAgPC9TdHlsZWRMaW5rPlxuICApO1xufTtcblxuZXhwb3J0IGRlZmF1bHQgRnVuZEJ1dHRvbjtcbiJdfQ== */",
51
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
52
+ });
53
+
54
+ /* eslint-disable react/jsx-no-bind */
55
+ const FundButton = ({
56
+ packageMeta
57
+ }) => {
58
+ var _packageMeta$latest, _packageMeta$latest$f;
59
+ const fundingUrl = packageMeta === null || packageMeta === void 0 ? void 0 : (_packageMeta$latest = packageMeta.latest) === null || _packageMeta$latest === void 0 ? void 0 : (_packageMeta$latest$f = _packageMeta$latest.funding) === null || _packageMeta$latest$f === void 0 ? void 0 : _packageMeta$latest$f.url;
60
+ if (!_utils.url.isURL(fundingUrl)) {
61
+ return null;
62
+ }
63
+ return /*#__PURE__*/_react.default.createElement(StyledLink, {
64
+ external: true,
65
+ to: fundingUrl,
66
+ variant: "button"
67
+ }, /*#__PURE__*/_react.default.createElement(_Button.default, {
68
+ color: "primary",
69
+ fullWidth: true,
70
+ startIcon: /*#__PURE__*/_react.default.createElement(StyledFavoriteIcon, null),
71
+ variant: "outlined"
72
+ }, /*#__PURE__*/_react.default.createElement(_reactI18next.Trans, {
73
+ components: [/*#__PURE__*/_react.default.createElement(StyledFundStrong, {
74
+ key: "fund"
75
+ })],
76
+ i18nKey: "button.fund-this-package"
77
+ })));
78
+ };
79
+ var _default = FundButton;
80
+ exports.default = _default;
81
+ //# sourceMappingURL=FundButton.js.map
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "default", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _FundButton.default;
10
+ }
11
+ });
12
+ var _FundButton = _interopRequireDefault(require("./FundButton"));
13
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _Box = _interopRequireDefault(require("@mui/material/Box"));
8
+ var _Tab = _interopRequireDefault(require("@mui/material/Tab"));
9
+ var _Tabs = _interopRequireDefault(require("@mui/material/Tabs"));
10
+ var _react = _interopRequireDefault(require("react"));
11
+ var _RegistryInfoDialog = _interopRequireDefault(require("../RegistryInfoDialog"));
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } /* eslint-disable verdaccio/jsx-spread */
14
+ function a11yProps(index) {
15
+ return {
16
+ id: `simple-tab-${index}`,
17
+ 'aria-controls': `simple-tabpanel-${index}`
18
+ };
19
+ }
20
+ function TabPanel(props) {
21
+ const {
22
+ children,
23
+ value,
24
+ index,
25
+ ...other
26
+ } = props;
27
+ return /*#__PURE__*/_react.default.createElement("div", _extends({
28
+ "aria-labelledby": `simple-tab-${index}`,
29
+ hidden: value !== index,
30
+ id: `simple-tabpanel-${index}`,
31
+ role: "tabpanel"
32
+ }, other), value === index && /*#__PURE__*/_react.default.createElement(_Box.default, {
33
+ sx: {
34
+ paddingTop: 3
35
+ }
36
+ }, children));
37
+ }
38
+ const HeaderInfoDialog = ({
39
+ onCloseDialog,
40
+ isOpen,
41
+ tabs = null,
42
+ tabPanels = null,
43
+ dialogTitle
44
+ }) => {
45
+ const [value, setValue] = _react.default.useState(0);
46
+ const handleChange = (_event, newValue) => {
47
+ setValue(newValue);
48
+ };
49
+ return /*#__PURE__*/_react.default.createElement(_RegistryInfoDialog.default, {
50
+ onClose: onCloseDialog,
51
+ open: isOpen,
52
+ title: dialogTitle
53
+ }, /*#__PURE__*/_react.default.createElement(_Box.default, {
54
+ sx: {
55
+ width: '100%'
56
+ }
57
+ }, /*#__PURE__*/_react.default.createElement(_Box.default, {
58
+ sx: {
59
+ borderBottom: 1,
60
+ borderColor: 'divider'
61
+ }
62
+ }, /*#__PURE__*/_react.default.createElement(_Tabs.default, {
63
+ "aria-label": "infoTabs",
64
+ onChange: handleChange,
65
+ value: value
66
+ }, tabs ? tabs.map((item, index) => {
67
+ return /*#__PURE__*/_react.default.createElement(_Tab.default, _extends({
68
+ key: item.label,
69
+ label: item.label
70
+ }, a11yProps(index), item));
71
+ }) : null)), tabPanels ? tabPanels.map((item, index) => {
72
+ return /*#__PURE__*/_react.default.createElement(TabPanel, {
73
+ index: index,
74
+ key: item.key,
75
+ value: value
76
+ }, item.element);
77
+ }) : null));
78
+ };
79
+ var _default = HeaderInfoDialog;
80
+ exports.default = _default;
81
+ //# sourceMappingURL=HeaderInfoDialog.js.map
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "default", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _HeaderInfoDialog.default;
10
+ }
11
+ });
12
+ var _HeaderInfoDialog = _interopRequireDefault(require("./HeaderInfoDialog"));
13
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
8
+ var _react = _interopRequireWildcard(require("react"));
9
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
10
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12
+ function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
13
+ const Heading = /*#__PURE__*/(0, _react.forwardRef)(function Heading({
14
+ variant = 'h6',
15
+ ...props
16
+ }, ref) {
17
+ // eslint-disable-next-line verdaccio/jsx-spread
18
+ return /*#__PURE__*/_react.default.createElement(_Typography.default, _extends({}, props, {
19
+ ref: ref,
20
+ variant: variant
21
+ }));
22
+ });
23
+ var _default = Heading;
24
+ exports.default = _default;
25
+ //# sourceMappingURL=Heading.js.map
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "default", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _Heading.default;
10
+ }
11
+ });
12
+ var _Heading = _interopRequireDefault(require("./Heading"));
13
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _Button = _interopRequireDefault(require("@mui/material/Button"));
8
+ var _CardActions = _interopRequireDefault(require("@mui/material/CardActions"));
9
+ var _CardContent = _interopRequireDefault(require("@mui/material/CardContent"));
10
+ var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
11
+ var _react = _interopRequireWildcard(require("react"));
12
+ var _reactI18next = require("react-i18next");
13
+ var _ = require("../../");
14
+ var _styles = require("./styles");
15
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
16
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
18
+ function renderHeadingClipboardSegments(title, text) {
19
+ return /*#__PURE__*/_react.default.createElement(_react.Fragment, null, /*#__PURE__*/_react.default.createElement(_Typography.default, {
20
+ variant: 'body1'
21
+ }, title), /*#__PURE__*/_react.default.createElement(_.CopyClipboard, {
22
+ dataTestId: "segments",
23
+ text: text
24
+ }));
25
+ }
26
+ const Help = () => {
27
+ const {
28
+ configOptions
29
+ } = (0, _.useConfig)();
30
+ const registryUrl = configOptions.base;
31
+ const {
32
+ t
33
+ } = (0, _reactI18next.useTranslation)();
34
+ return /*#__PURE__*/_react.default.createElement(_styles.CardStyled, {
35
+ "data-testid": "help-card",
36
+ id: "help-card"
37
+ }, /*#__PURE__*/_react.default.createElement(_CardContent.default, null, /*#__PURE__*/_react.default.createElement(_.Heading, {
38
+ gutterBottom: true,
39
+ id: "help-card__title",
40
+ variant: "h5"
41
+ }, t('help.title')), /*#__PURE__*/_react.default.createElement(_.Heading, {
42
+ color: "textSecondary",
43
+ gutterBottom: true,
44
+ sx: {
45
+ marginBottom: 1
46
+ }
47
+ }, t('help.sub-title')), renderHeadingClipboardSegments(t('help.first-step'), t('help.first-step-command-line', {
48
+ registryUrl
49
+ })), renderHeadingClipboardSegments(t('help.second-step'), t('help.second-step-command-line', {
50
+ registryUrl
51
+ })), /*#__PURE__*/_react.default.createElement(_Typography.default, {
52
+ variant: "body2"
53
+ }, t('help.third-step'))), /*#__PURE__*/_react.default.createElement(_CardActions.default, null, /*#__PURE__*/_react.default.createElement(_Button.default, {
54
+ color: "primary",
55
+ href: "https://verdaccio.org/docs/cli-registry",
56
+ size: "small"
57
+ }, t('button.learn-more'))));
58
+ };
59
+ var _default = Help;
60
+ exports.default = _default;
61
+ //# sourceMappingURL=Help.js.map
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "default", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _Help.default;
10
+ }
11
+ });
12
+ var _Help = _interopRequireDefault(require("./Help"));
13
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CardStyled = void 0;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _Card = _interopRequireDefault(require("@mui/material/Card"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
11
+ const CardStyled = /*#__PURE__*/(0, _base.default)(_Card.default, process.env.NODE_ENV === "production" ? {
12
+ target: "e1cp9qoa0"
13
+ } : {
14
+ target: "e1cp9qoa0",
15
+ label: "CardStyled"
16
+ })(process.env.NODE_ENV === "production" ? {
17
+ name: "b7qabe",
18
+ styles: "max-width:600px;margin:auto"
19
+ } : {
20
+ name: "b7qabe",
21
+ styles: "max-width:600px;margin:auto",
22
+ map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0hlbHAvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUcwQiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvY29tcG9uZW50cy9IZWxwL3N0eWxlcy50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCBDYXJkIGZyb20gJ0BtdWkvbWF0ZXJpYWwvQ2FyZCc7XG5cbmV4cG9ydCBjb25zdCBDYXJkU3R5bGVkID0gc3R5bGVkKENhcmQpKHtcbiAgbWF4V2lkdGg6IDYwMCxcbiAgbWFyZ2luOiAnYXV0bycsXG59KTtcbiJdfQ== */",
23
+ toString: _EMOTION_STRINGIFIED_CSS_ERROR__
24
+ });
25
+ exports.CardStyled = CardStyled;
26
+ //# sourceMappingURL=styles.js.map
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CommonJS = CommonJS;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _react = _interopRequireDefault(require("react"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ const icon = require('./commonjs.svg');
11
+ const ImgIcon = /*#__PURE__*/(0, _base.default)("img", process.env.NODE_ENV === "production" ? {
12
+ target: "e1xpymzr0"
13
+ } : {
14
+ target: "e1xpymzr0",
15
+ label: "ImgIcon"
16
+ })(({
17
+ theme
18
+ }) => ({
19
+ marginLeft: theme === null || theme === void 0 ? void 0 : theme.spacing(1)
20
+ }), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0ljb25zL0RldnNJY29ucy9Db21tb25KUy50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBTWdCIiwiZmlsZSI6Ii4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0ljb25zL0RldnNJY29ucy9Db21tb25KUy50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5pbXBvcnQgeyBUaGVtZSB9IGZyb20gJ0BtdWkvbWF0ZXJpYWwnO1xuaW1wb3J0IFJlYWN0IGZyb20gJ3JlYWN0JztcblxuY29uc3QgaWNvbiA9IHJlcXVpcmUoJy4vY29tbW9uanMuc3ZnJyk7XG5cbmNvbnN0IEltZ0ljb24gPSBzdHlsZWQuaW1nPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBtYXJnaW5MZWZ0OiB0aGVtZT8uc3BhY2luZygxKSxcbn0pKTtcblxuZXhwb3J0IGZ1bmN0aW9uIENvbW1vbkpTKCkge1xuICByZXR1cm4gPEltZ0ljb24gYWx0PVwiY29tbW9uanNcIiBoZWlnaHQ9XCIyMFwiIHNyYz17aWNvbn0gd2lkdGg9XCIyMFwiIC8+O1xufVxuIl19 */");
21
+ function CommonJS() {
22
+ return /*#__PURE__*/_react.default.createElement(ImgIcon, {
23
+ alt: "commonjs",
24
+ height: "20",
25
+ src: icon,
26
+ width: "20"
27
+ });
28
+ }
29
+ //# sourceMappingURL=CommonJS.js.map
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ES6Modules = ES6Modules;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _react = _interopRequireDefault(require("react"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ const icon = require('./es6modules.svg');
11
+ const ImgIcon = /*#__PURE__*/(0, _base.default)("img", process.env.NODE_ENV === "production" ? {
12
+ target: "eshu3xf0"
13
+ } : {
14
+ target: "eshu3xf0",
15
+ label: "ImgIcon"
16
+ })(({
17
+ theme
18
+ }) => ({
19
+ marginLeft: theme === null || theme === void 0 ? void 0 : theme.spacing(1)
20
+ }), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0ljb25zL0RldnNJY29ucy9FUzZNb2R1bGUudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1nQiIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9JY29ucy9EZXZzSWNvbnMvRVM2TW9kdWxlLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnQG11aS9tYXRlcmlhbCc7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuXG5jb25zdCBpY29uID0gcmVxdWlyZSgnLi9lczZtb2R1bGVzLnN2ZycpO1xuXG5jb25zdCBJbWdJY29uID0gc3R5bGVkLmltZzx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgbWFyZ2luTGVmdDogdGhlbWU/LnNwYWNpbmcoMSksXG59KSk7XG5cbmV4cG9ydCBmdW5jdGlvbiBFUzZNb2R1bGVzKCkge1xuICByZXR1cm4gPEltZ0ljb24gYWx0PVwiZXM2IG1vZHVsZXNcIiBoZWlnaHQ9XCIyMFwiIHNyYz17aWNvbn0gd2lkdGg9XCIyMFwiIC8+O1xufVxuIl19 */");
21
+ function ES6Modules() {
22
+ return /*#__PURE__*/_react.default.createElement(ImgIcon, {
23
+ alt: "es6 modules",
24
+ height: "20",
25
+ src: icon,
26
+ width: "20"
27
+ });
28
+ }
29
+ //# sourceMappingURL=ES6Module.js.map
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.Git = Git;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _react = _interopRequireDefault(require("react"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ const icon = require('./git.svg');
11
+ const ImgIcon = /*#__PURE__*/(0, _base.default)("img", process.env.NODE_ENV === "production" ? {
12
+ target: "e1dcsq4r0"
13
+ } : {
14
+ target: "e1dcsq4r0",
15
+ label: "ImgIcon"
16
+ })(({
17
+ theme
18
+ }) => ({
19
+ marginLeft: theme === null || theme === void 0 ? void 0 : theme.spacing(1)
20
+ }), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0ljb25zL0RldnNJY29ucy9HaXQudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1nQiIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9JY29ucy9EZXZzSWNvbnMvR2l0LnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnQG11aS9tYXRlcmlhbCc7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuXG5jb25zdCBpY29uID0gcmVxdWlyZSgnLi9naXQuc3ZnJyk7XG5cbmNvbnN0IEltZ0ljb24gPSBzdHlsZWQuaW1nPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBtYXJnaW5MZWZ0OiB0aGVtZT8uc3BhY2luZygxKSxcbn0pKTtcblxuZXhwb3J0IGZ1bmN0aW9uIEdpdCgpIHtcbiAgcmV0dXJuIDxJbWdJY29uIGFsdD1cImdpdFwiIGhlaWdodD1cIjIwXCIgc3JjPXtpY29ufSB3aWR0aD1cIjIwXCIgLz47XG59XG4iXX0= */");
21
+ function Git() {
22
+ return /*#__PURE__*/_react.default.createElement(ImgIcon, {
23
+ alt: "git",
24
+ height: "20",
25
+ src: icon,
26
+ width: "20"
27
+ });
28
+ }
29
+ //# sourceMappingURL=Git.js.map
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.NodeJS = NodeJS;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _react = _interopRequireDefault(require("react"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ const icon = require('./nodejs.svg');
11
+ const ImgIcon = /*#__PURE__*/(0, _base.default)("img", process.env.NODE_ENV === "production" ? {
12
+ target: "e11jw5r50"
13
+ } : {
14
+ target: "e11jw5r50",
15
+ label: "ImgIcon"
16
+ })(({
17
+ theme
18
+ }) => ({
19
+ marginLeft: theme === null || theme === void 0 ? void 0 : theme.spacing(1)
20
+ }), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0ljb25zL0RldnNJY29ucy9Ob2RlSlMudHN4Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1nQiIsImZpbGUiOiIuLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9JY29ucy9EZXZzSWNvbnMvTm9kZUpTLnRzeCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnQG11aS9tYXRlcmlhbCc7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuXG5jb25zdCBpY29uID0gcmVxdWlyZSgnLi9ub2RlanMuc3ZnJyk7XG5cbmNvbnN0IEltZ0ljb24gPSBzdHlsZWQuaW1nPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBtYXJnaW5MZWZ0OiB0aGVtZT8uc3BhY2luZygxKSxcbn0pKTtcblxuZXhwb3J0IGZ1bmN0aW9uIE5vZGVKUygpIHtcbiAgcmV0dXJuIDxJbWdJY29uIGFsdD1cIm5vZGVqc1wiIGhlaWdodD1cIjIwXCIgc3JjPXtpY29ufSB3aWR0aD1cIjIwXCIgLz47XG59XG4iXX0= */");
21
+ function NodeJS() {
22
+ return /*#__PURE__*/_react.default.createElement(ImgIcon, {
23
+ alt: "nodejs",
24
+ height: "20",
25
+ src: icon,
26
+ width: "20"
27
+ });
28
+ }
29
+ //# sourceMappingURL=NodeJS.js.map
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.TypeScript = TypeScript;
7
+ var _base = _interopRequireDefault(require("@emotion/styled/base"));
8
+ var _react = _interopRequireDefault(require("react"));
9
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
+ const icon = require('./typescript.svg');
11
+ const ImgIcon = /*#__PURE__*/(0, _base.default)("img", process.env.NODE_ENV === "production" ? {
12
+ target: "eppix5o0"
13
+ } : {
14
+ target: "eppix5o0",
15
+ label: "ImgIcon"
16
+ })(({
17
+ theme
18
+ }) => ({
19
+ marginLeft: theme === null || theme === void 0 ? void 0 : theme.spacing(1)
20
+ }), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9jb21wb25lbnRzL0ljb25zL0RldnNJY29ucy9UeXBlU2NyaXB0LnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFNZ0IiLCJmaWxlIjoiLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvSWNvbnMvRGV2c0ljb25zL1R5cGVTY3JpcHQudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHN0eWxlZCBmcm9tICdAZW1vdGlvbi9zdHlsZWQnO1xuaW1wb3J0IHsgVGhlbWUgfSBmcm9tICdAbXVpL21hdGVyaWFsJztcbmltcG9ydCBSZWFjdCBmcm9tICdyZWFjdCc7XG5cbmNvbnN0IGljb24gPSByZXF1aXJlKCcuL3R5cGVzY3JpcHQuc3ZnJyk7XG5cbmNvbnN0IEltZ0ljb24gPSBzdHlsZWQuaW1nPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBtYXJnaW5MZWZ0OiB0aGVtZT8uc3BhY2luZygxKSxcbn0pKTtcblxuZXhwb3J0IGZ1bmN0aW9uIFR5cGVTY3JpcHQoKSB7XG4gIHJldHVybiA8SW1nSWNvbiBhbHQ9XCJ0eXBlc2NyaXB0XCIgaGVpZ2h0PVwiMjBcIiBzcmM9e2ljb259IHdpZHRoPVwiMjBcIiAvPjtcbn1cbiJdfQ== */");
21
+ function TypeScript() {
22
+ return /*#__PURE__*/_react.default.createElement(ImgIcon, {
23
+ alt: "typescript",
24
+ height: "20",
25
+ src: icon,
26
+ width: "20"
27
+ });
28
+ }
29
+ //# sourceMappingURL=TypeScript.js.map
@@ -0,0 +1,4 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0H36V36H0V0Z" fill="#FFD102"/>
3
+ <path d="M9.41113 21.7109H12.2588C12.2119 22.5898 11.9717 23.3662 11.5381 24.04C11.1104 24.708 10.5156 25.2324 9.75391 25.6133C8.99219 25.9883 8.08691 26.1758 7.03809 26.1758C6.2002 26.1758 5.4502 26.0322 4.78809 25.7451C4.12598 25.458 3.56348 25.0479 3.10059 24.5146C2.64355 23.9756 2.29199 23.3281 2.0459 22.5723C1.80566 21.8105 1.68555 20.9521 1.68555 19.9971V19.2148C1.68555 18.2598 1.81152 17.4014 2.06348 16.6396C2.31543 15.8779 2.67578 15.2275 3.14453 14.6885C3.61328 14.1494 4.17578 13.7363 4.83203 13.4492C5.48828 13.1621 6.2207 13.0186 7.0293 13.0186C8.11914 13.0186 9.03906 13.2148 9.78906 13.6074C10.5391 14 11.1191 14.5391 11.5293 15.2246C11.9453 15.9102 12.1943 16.6924 12.2764 17.5713H9.41992C9.39648 17.0732 9.30273 16.6543 9.13867 16.3145C8.97461 15.9688 8.72266 15.708 8.38281 15.5322C8.04297 15.3564 7.5918 15.2686 7.0293 15.2686C6.61914 15.2686 6.25879 15.3447 5.94824 15.4971C5.64355 15.6494 5.38867 15.8867 5.18359 16.209C4.98438 16.5312 4.83496 16.9414 4.73535 17.4395C4.63574 17.9316 4.58594 18.5176 4.58594 19.1973V19.9971C4.58594 20.6709 4.62988 21.2539 4.71777 21.7461C4.80566 22.2383 4.94629 22.6455 5.13965 22.9678C5.33887 23.29 5.59375 23.5303 5.9043 23.6885C6.21484 23.8467 6.59277 23.9258 7.03809 23.9258C7.54785 23.9258 7.97266 23.8467 8.3125 23.6885C8.65234 23.5244 8.91309 23.2783 9.09473 22.9502C9.27637 22.6221 9.38184 22.209 9.41113 21.7109ZM18.9912 22.0273V13.2031H21.8389V22.0273C21.8389 22.8828 21.6455 23.6211 21.2588 24.2422C20.8779 24.8574 20.3594 25.335 19.7031 25.6748C19.0527 26.0088 18.3174 26.1758 17.4971 26.1758C16.6533 26.1758 15.9033 26.0352 15.2471 25.7539C14.5908 25.4668 14.0752 25.0303 13.7002 24.4443C13.3311 23.8525 13.1465 23.0996 13.1465 22.1855H16.0117C16.0117 22.6367 16.0674 22.9941 16.1787 23.2578C16.2959 23.5156 16.4658 23.6973 16.6885 23.8027C16.9111 23.9082 17.1807 23.9609 17.4971 23.9609C17.8018 23.9609 18.0654 23.8877 18.2881 23.7412C18.5107 23.5889 18.6836 23.3691 18.8066 23.082C18.9297 22.7891 18.9912 22.4375 18.9912 22.0273ZM30.5752 22.625C30.5752 22.4082 30.543 22.2148 30.4785 22.0449C30.4141 21.8691 30.2969 21.708 30.127 21.5615C29.957 21.415 29.7168 21.2686 29.4062 21.1221C29.0957 20.9697 28.6885 20.8145 28.1846 20.6562C27.6104 20.4688 27.0625 20.2578 26.541 20.0234C26.0254 19.7832 25.5654 19.5049 25.1611 19.1885C24.7568 18.8721 24.4375 18.5029 24.2031 18.0811C23.9746 17.6592 23.8604 17.167 23.8604 16.6045C23.8604 16.0596 23.9805 15.5674 24.2207 15.1279C24.4609 14.6885 24.7979 14.3135 25.2314 14.0029C25.665 13.6865 26.1748 13.4463 26.7607 13.2822C27.3467 13.1123 27.9912 13.0273 28.6943 13.0273C29.6318 13.0273 30.4551 13.1943 31.1641 13.5283C31.8789 13.8564 32.4355 14.3193 32.834 14.917C33.2324 15.5088 33.4316 16.1973 33.4316 16.9824H30.584C30.584 16.6367 30.5107 16.332 30.3643 16.0684C30.2236 15.7988 30.0068 15.5879 29.7139 15.4355C29.4268 15.2832 29.0664 15.207 28.6328 15.207C28.2109 15.207 27.8564 15.2715 27.5693 15.4004C27.2881 15.5234 27.0742 15.6934 26.9277 15.9102C26.7871 16.127 26.7168 16.3643 26.7168 16.6221C26.7168 16.8271 26.7695 17.0146 26.875 17.1846C26.9863 17.3486 27.1445 17.5039 27.3496 17.6504C27.5605 17.791 27.8184 17.9258 28.123 18.0547C28.4277 18.1836 28.7764 18.3066 29.1689 18.4238C29.8545 18.6406 30.4609 18.8809 30.9883 19.1445C31.5215 19.4082 31.9697 19.707 32.333 20.041C32.6963 20.375 32.9688 20.7529 33.1504 21.1748C33.3379 21.5967 33.4316 22.0742 33.4316 22.6074C33.4316 23.1758 33.3203 23.6797 33.0977 24.1191C32.8809 24.5586 32.5645 24.9336 32.1484 25.2441C31.7383 25.5488 31.2461 25.7803 30.6719 25.9385C30.0977 26.0967 29.4561 26.1758 28.7471 26.1758C28.1025 26.1758 27.4668 26.0938 26.8398 25.9297C26.2129 25.7598 25.6445 25.502 25.1348 25.1562C24.6309 24.8105 24.2266 24.3711 23.9219 23.8379C23.623 23.2988 23.4736 22.6602 23.4736 21.9219H26.3389C26.3389 22.3086 26.3945 22.6367 26.5059 22.9062C26.6172 23.1699 26.7754 23.3838 26.9805 23.5479C27.1914 23.7119 27.4463 23.8291 27.7451 23.8994C28.0439 23.9697 28.3779 24.0049 28.7471 24.0049C29.1748 24.0049 29.5205 23.9463 29.7842 23.8291C30.0537 23.7061 30.2529 23.5391 30.3818 23.3281C30.5107 23.1172 30.5752 22.8828 30.5752 22.625Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0H36V36H0V0Z" fill="#93C2DB"/>
3
+ <path d="M11.7559 22.7852V25H4.94434V22.7852H11.7559ZM5.91992 12.2031V25H3.05469V12.2031H5.91992ZM10.877 17.3535V19.498H4.94434V17.3535H10.877ZM11.7646 12.2031V14.4268H4.94434V12.2031H11.7646ZM19.7979 21.625C19.7979 21.4082 19.7656 21.2148 19.7012 21.0449C19.6367 20.8691 19.5195 20.708 19.3496 20.5615C19.1797 20.415 18.9395 20.2686 18.6289 20.1221C18.3184 19.9697 17.9111 19.8145 17.4072 19.6562C16.833 19.4688 16.2852 19.2578 15.7637 19.0234C15.248 18.7832 14.7881 18.5049 14.3838 18.1885C13.9795 17.8721 13.6602 17.5029 13.4258 17.0811C13.1973 16.6592 13.083 16.167 13.083 15.6045C13.083 15.0596 13.2031 14.5674 13.4434 14.1279C13.6836 13.6885 14.0205 13.3135 14.4541 13.0029C14.8877 12.6865 15.3975 12.4463 15.9834 12.2822C16.5693 12.1123 17.2139 12.0273 17.917 12.0273C18.8545 12.0273 19.6777 12.1943 20.3867 12.5283C21.1016 12.8564 21.6582 13.3193 22.0566 13.917C22.4551 14.5088 22.6543 15.1973 22.6543 15.9824H19.8066C19.8066 15.6367 19.7334 15.332 19.5869 15.0684C19.4463 14.7988 19.2295 14.5879 18.9365 14.4355C18.6494 14.2832 18.2891 14.207 17.8555 14.207C17.4336 14.207 17.0791 14.2715 16.792 14.4004C16.5107 14.5234 16.2969 14.6934 16.1504 14.9102C16.0098 15.127 15.9395 15.3643 15.9395 15.6221C15.9395 15.8271 15.9922 16.0146 16.0977 16.1846C16.209 16.3486 16.3672 16.5039 16.5723 16.6504C16.7832 16.791 17.041 16.9258 17.3457 17.0547C17.6504 17.1836 17.999 17.3066 18.3916 17.4238C19.0771 17.6406 19.6836 17.8809 20.2109 18.1445C20.7441 18.4082 21.1924 18.707 21.5557 19.041C21.9189 19.375 22.1914 19.7529 22.373 20.1748C22.5605 20.5967 22.6543 21.0742 22.6543 21.6074C22.6543 22.1758 22.543 22.6797 22.3203 23.1191C22.1035 23.5586 21.7871 23.9336 21.3711 24.2441C20.9609 24.5488 20.4688 24.7803 19.8945 24.9385C19.3203 25.0967 18.6787 25.1758 17.9697 25.1758C17.3252 25.1758 16.6895 25.0938 16.0625 24.9297C15.4355 24.7598 14.8672 24.502 14.3574 24.1562C13.8535 23.8105 13.4492 23.3711 13.1445 22.8379C12.8457 22.2988 12.6963 21.6602 12.6963 20.9219H15.5615C15.5615 21.3086 15.6172 21.6367 15.7285 21.9062C15.8398 22.1699 15.998 22.3838 16.2031 22.5479C16.4141 22.7119 16.6689 22.8291 16.9678 22.8994C17.2666 22.9697 17.6006 23.0049 17.9697 23.0049C18.3975 23.0049 18.7432 22.9463 19.0068 22.8291C19.2764 22.7061 19.4756 22.5391 19.6045 22.3281C19.7334 22.1172 19.7979 21.8828 19.7979 21.625ZM30.7227 12.0449H31.1445V14.2246H30.9863C30.3711 14.2246 29.8086 14.3125 29.2988 14.4883C28.7949 14.6641 28.3584 14.9248 27.9893 15.2705C27.6201 15.6104 27.3359 16.0322 27.1367 16.5361C26.9434 17.0342 26.8467 17.6084 26.8467 18.2588V20.4385C26.8467 20.8779 26.8848 21.2617 26.9609 21.5898C27.043 21.9121 27.1602 22.1816 27.3125 22.3984C27.4707 22.6094 27.6611 22.7705 27.8838 22.8818C28.1064 22.9873 28.3584 23.04 28.6396 23.04C28.8916 23.04 29.123 22.9844 29.334 22.873C29.5449 22.7617 29.7266 22.6035 29.8789 22.3984C30.0312 22.1934 30.1484 21.9561 30.2305 21.6865C30.3125 21.4111 30.3535 21.1123 30.3535 20.79C30.3535 20.4502 30.3096 20.1426 30.2217 19.8672C30.1396 19.5859 30.0195 19.3457 29.8613 19.1465C29.709 18.9473 29.5215 18.7949 29.2988 18.6895C29.0762 18.5781 28.8301 18.5225 28.5605 18.5225C28.1738 18.5225 27.8398 18.6104 27.5586 18.7861C27.2773 18.9619 27.0605 19.1875 26.9082 19.4629C26.7559 19.7383 26.6768 20.0195 26.6709 20.3066L25.9414 19.7002C25.9414 19.3018 26.0205 18.9092 26.1787 18.5225C26.3428 18.1299 26.5742 17.7754 26.873 17.459C27.1719 17.1367 27.5381 16.8818 27.9717 16.6943C28.4111 16.501 28.9121 16.4043 29.4746 16.4043C30.0664 16.4043 30.5879 16.5186 31.0391 16.7471C31.4902 16.9697 31.8682 17.2803 32.1729 17.6787C32.4834 18.0771 32.7148 18.543 32.8672 19.0762C33.0254 19.6035 33.1045 20.1689 33.1045 20.7725C33.1045 21.3936 32.9961 21.9736 32.7793 22.5127C32.5684 23.0459 32.2695 23.5117 31.8828 23.9102C31.4961 24.3086 31.0332 24.6191 30.4941 24.8418C29.9609 25.0645 29.3662 25.1758 28.71 25.1758C28.0303 25.1758 27.4092 25.0557 26.8467 24.8154C26.29 24.5752 25.8037 24.2324 25.3877 23.7871C24.9775 23.3359 24.6582 22.7969 24.4297 22.1699C24.207 21.543 24.0957 20.8398 24.0957 20.0605V19.0322C24.0957 17.9658 24.2598 17.0049 24.5879 16.1494C24.9219 15.2939 25.3848 14.5615 25.9766 13.9521C26.5742 13.3369 27.2773 12.8652 28.0859 12.5371C28.8945 12.209 29.7734 12.0449 30.7227 12.0449Z" fill="white"/>
4
+ </svg>