@verdaccio/ui-theme 6.0.0-6-next.9 → 6.0.0-6-next.13

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 (323) hide show
  1. package/.babelrc +1 -1
  2. package/.eslintrc +0 -15
  3. package/CHANGELOG.md +61 -0
  4. package/jest/api/packages.json +42 -0
  5. package/jest/jest.config.js +2 -2
  6. package/jest/server-handlers.ts +9 -0
  7. package/jest/server.ts +6 -0
  8. package/jest/setup-env.ts +18 -0
  9. package/jest/setup.ts +2 -7
  10. package/jest/unit/components/__mocks__/token.ts +0 -1
  11. package/jest/unit/components/store/login.ts +1 -0
  12. package/package.json +43 -33
  13. package/src/App/App.test.tsx +75 -51
  14. package/src/App/App.tsx +7 -42
  15. package/src/App/AppRoute.tsx +3 -16
  16. package/src/App/Footer/Footer.test.tsx +0 -1
  17. package/src/App/Footer/Footer.tsx +35 -22
  18. package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +208 -302
  19. package/src/App/Footer/styles.ts +2 -3
  20. package/src/App/Header/Header.test.tsx +53 -61
  21. package/src/App/Header/Header.tsx +13 -24
  22. package/src/App/Header/HeaderGreetings.tsx +0 -1
  23. package/src/App/Header/HeaderLeft.tsx +0 -1
  24. package/src/App/Header/HeaderMenu.tsx +6 -6
  25. package/src/App/Header/HeaderRight.tsx +1 -2
  26. package/src/App/Header/HeaderToolTip.tsx +0 -1
  27. package/src/App/Header/HeaderToolTipIcon.tsx +10 -10
  28. package/src/App/Header/LanguageSwitch.tsx +17 -79
  29. package/src/App/Header/LoginDialog/LoginDialog.test.tsx +25 -35
  30. package/src/App/Header/LoginDialog/LoginDialog.tsx +28 -46
  31. package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +1 -2
  32. package/src/App/Header/LoginDialog/LoginDialogForm.tsx +0 -1
  33. package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +1 -2
  34. package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +4 -4
  35. package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +1 -3
  36. package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +9 -10
  37. package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +1 -2
  38. package/src/App/Header/RegistryInfoDialog/styles.ts +0 -1
  39. package/src/App/Header/Search/Search.test.tsx +48 -43
  40. package/src/App/Header/Search/Search.tsx +23 -108
  41. package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +392 -28
  42. package/src/App/Header/styles.ts +2 -3
  43. package/src/App/index.ts +0 -1
  44. package/src/App/utils/loadable.tsx +3 -1
  45. package/src/components/ActionBar/ActionBar.test.tsx +13 -14
  46. package/src/components/ActionBar/ActionBar.tsx +0 -2
  47. package/src/components/ActionBar/ActionBarAction.tsx +11 -14
  48. package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +198 -53
  49. package/src/components/AppBar.tsx +1 -1
  50. package/src/components/Author/Author.test.tsx +1 -4
  51. package/src/components/Author/Author.tsx +2 -4
  52. package/src/components/Author/__snapshots__/Author.test.tsx.snap +804 -48
  53. package/src/components/Author/styles.ts +0 -1
  54. package/src/components/AutoComplete/AutoComplete.tsx +85 -163
  55. package/src/components/AutoComplete/AutoCompleteV2.tsx +8 -10
  56. package/src/components/AutoComplete/styles.tsx +0 -15
  57. package/src/components/Avatar.tsx +1 -1
  58. package/src/components/Box.tsx +1 -1
  59. package/src/components/Button.tsx +1 -1
  60. package/src/components/Card.tsx +1 -1
  61. package/src/components/CardActions.tsx +1 -1
  62. package/src/components/CardContent.tsx +1 -1
  63. package/src/components/Chip.tsx +1 -1
  64. package/src/components/CircularProgress.tsx +2 -2
  65. package/src/components/CopyToClipBoard.tsx +2 -3
  66. package/src/components/Dialog.tsx +1 -1
  67. package/src/components/DialogActions.tsx +2 -2
  68. package/src/components/DialogContent.tsx +2 -2
  69. package/src/components/DialogTitle.tsx +1 -1
  70. package/src/components/Divider.tsx +1 -1
  71. package/src/components/FloatingActionButton.tsx +1 -1
  72. package/src/components/FormControl.tsx +1 -1
  73. package/src/components/FormHelperText.tsx +2 -2
  74. package/src/components/Grid.tsx +1 -1
  75. package/src/components/Heading.tsx +1 -1
  76. package/src/components/IconButton.tsx +1 -1
  77. package/src/components/Icons/index.ts +1 -17
  78. package/src/components/Input.tsx +1 -1
  79. package/src/components/InputAdornment/InputAdornment.tsx +2 -2
  80. package/src/components/InputLabel.tsx +1 -1
  81. package/src/components/Label/Label.test.tsx +0 -1
  82. package/src/components/Label/Label.tsx +2 -3
  83. package/src/components/List.tsx +1 -1
  84. package/src/components/ListItem.tsx +1 -1
  85. package/src/components/ListItemText.tsx +1 -4
  86. package/src/components/Loading/Loading.test.tsx +0 -1
  87. package/src/components/Loading/Loading.tsx +1 -2
  88. package/src/components/Loading/Spinner/Spinner.test.tsx +1 -2
  89. package/src/components/Loading/Spinner/Spinner.tsx +1 -2
  90. package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +114 -16
  91. package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +63 -11
  92. package/src/components/Loading/styles.ts +1 -2
  93. package/src/components/Logo/Logo.test.tsx +0 -1
  94. package/src/components/Logo/Logo.tsx +1 -2
  95. package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +2 -0
  96. package/src/components/Menu.tsx +1 -1
  97. package/src/components/MenuItem.tsx +1 -1
  98. package/src/components/NotFound/NotFound.tsx +1 -3
  99. package/src/components/NotFound/Notfound.test.tsx +1 -2
  100. package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +138 -11
  101. package/src/components/NotFound/styles.ts +0 -1
  102. package/src/components/Paper.tsx +1 -1
  103. package/src/components/SnackbarContent.tsx +1 -1
  104. package/src/components/SvgIcon.tsx +1 -1
  105. package/src/components/Tab.tsx +1 -1
  106. package/src/components/Tabs.tsx +1 -1
  107. package/src/components/Text/Text.tsx +1 -1
  108. package/src/components/Text/TextConfig.ts +1 -1
  109. package/src/components/TextField/TextField.test.tsx +0 -1
  110. package/src/components/TextField/TextField.tsx +2 -2
  111. package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +216 -3
  112. package/src/components/Toolbar.tsx +1 -1
  113. package/src/components/Tooltip.tsx +1 -1
  114. package/src/design-tokens/ResetStyles.tsx +1 -1
  115. package/src/design-tokens/StyleBaseline.tsx +2 -2
  116. package/src/design-tokens/ThemeContext.ts +1 -1
  117. package/src/design-tokens/ThemeProvider.tsx +15 -12
  118. package/src/design-tokens/theme.ts +28 -26
  119. package/src/design-tokens/useTheme.ts +1 -1
  120. package/src/{design-tokens → hooks}/useLocalStorage.ts +0 -0
  121. package/src/{design-tokens → hooks}/useOnClickOutside.ts +0 -0
  122. package/src/i18n/ABOUT_TRANSLATIONS.md +13 -0
  123. package/src/i18n/__mocks__/loadTranslationFile.ts +5 -0
  124. package/src/i18n/config.ts +38 -0
  125. package/src/i18n/crowdin/ui.json +170 -0
  126. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/cs-CZ.json +0 -0
  127. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/de-DE.json +0 -0
  128. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/en-US.json +0 -0
  129. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/es-ES.json +0 -0
  130. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/fr-FR.json +0 -0
  131. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/ja-JP.json +0 -0
  132. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/km-KH.json +0 -0
  133. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/pt-BR.json +0 -0
  134. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/ru-RU.json +0 -0
  135. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/tr-TR.json +0 -0
  136. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/uk-UA.json +0 -0
  137. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/zh-CN.json +0 -0
  138. package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/zh-TW.json +0 -0
  139. package/src/i18n/download_translations/ar-SA/ui.json +170 -0
  140. package/src/i18n/download_translations/cs-CZ/ui.json +170 -0
  141. package/src/i18n/download_translations/de-DE/ui.json +170 -0
  142. package/src/i18n/download_translations/es-ES/ui.json +170 -0
  143. package/src/i18n/download_translations/fi-FI/ui.json +170 -0
  144. package/src/i18n/download_translations/fil-PH/ui.json +170 -0
  145. package/src/i18n/download_translations/fr-FR/ui.json +170 -0
  146. package/src/i18n/download_translations/gl-ES/ui.json +170 -0
  147. package/src/i18n/download_translations/hi-IN/ui.json +170 -0
  148. package/src/i18n/download_translations/it-IT/ui.json +170 -0
  149. package/src/i18n/download_translations/ja-JP/ui.json +170 -0
  150. package/src/i18n/download_translations/km-KH/ui.json +170 -0
  151. package/src/i18n/download_translations/ko-KR/ui.json +170 -0
  152. package/src/i18n/download_translations/pl-PL/ui.json +170 -0
  153. package/src/i18n/download_translations/pt-BR/ui.json +170 -0
  154. package/src/i18n/download_translations/pt-PT/ui.json +170 -0
  155. package/src/i18n/download_translations/ro-RO/ui.json +170 -0
  156. package/src/i18n/download_translations/ru-RU/ui.json +170 -0
  157. package/src/i18n/download_translations/si-LK/ui.json +170 -0
  158. package/src/i18n/download_translations/sr-CS/ui.json +170 -0
  159. package/src/i18n/download_translations/sr-SP/ui.json +170 -0
  160. package/src/i18n/download_translations/tg-TJ/ui.json +170 -0
  161. package/src/i18n/download_translations/tr-TR/ui.json +170 -0
  162. package/src/i18n/download_translations/uk-UA/ui.json +170 -0
  163. package/src/i18n/download_translations/vi-VN/ui.json +170 -0
  164. package/src/i18n/download_translations/yo-NG/ui.json +170 -0
  165. package/src/i18n/download_translations/zh-CN/ui.json +170 -0
  166. package/src/i18n/download_translations/zh-TW/ui.json +170 -0
  167. package/src/i18n/enabledLanguages.ts +35 -0
  168. package/src/i18n/loadTranslationFile.ts +14 -0
  169. package/src/index.tsx +13 -11
  170. package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +0 -2
  171. package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +1 -3
  172. package/src/pages/Version/DetailContainer/Dependencies/styles.ts +0 -1
  173. package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +1 -3
  174. package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +2 -3
  175. package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +0 -1
  176. package/src/pages/Version/DetailContainer/DetailContainer.tsx +1 -3
  177. package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +0 -1
  178. package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +0 -1
  179. package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +0 -1
  180. package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +0 -1
  181. package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +0 -1
  182. package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +10 -1
  183. package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +1 -2
  184. package/src/pages/Version/DetailContainer/Readme/Readme.tsx +1 -2
  185. package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +1 -9
  186. package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +1 -3
  187. package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +184 -26
  188. package/src/pages/Version/DetailContainer/UpLinks/styles.ts +2 -3
  189. package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +3 -5
  190. package/src/pages/Version/DetailContainer/Versions/Versions.tsx +1 -2
  191. package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +2 -4
  192. package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +1 -3
  193. package/src/pages/Version/DetailContainer/Versions/styles.ts +2 -3
  194. package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +168 -34
  195. package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +0 -2
  196. package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +0 -2
  197. package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +1 -2
  198. package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +0 -1
  199. package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +3 -5
  200. package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +3 -5
  201. package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +0 -1
  202. package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +328 -40
  203. package/src/pages/Version/DetailSidebar/Developers/styles.ts +0 -1
  204. package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +1 -3
  205. package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +1 -3
  206. package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +1436 -74
  207. package/src/pages/Version/DetailSidebar/Dist/styles.ts +2 -1
  208. package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +1 -3
  209. package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +1 -3
  210. package/src/pages/Version/DetailSidebar/Engines/styles.ts +0 -1
  211. package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +1 -3
  212. package/src/pages/Version/DetailSidebar/Install/Install.tsx +0 -2
  213. package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +0 -1
  214. package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +1 -3
  215. package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +1 -3
  216. package/src/pages/Version/Version.test.tsx +3 -5
  217. package/src/pages/Version/Version.tsx +21 -6
  218. package/src/pages/Version/VersionContextProvider.tsx +14 -45
  219. package/src/pages/Version/VersionLayout.tsx +1 -1
  220. package/src/pages/Version/context.ts +1 -1
  221. package/src/pages/home/Home.tsx +9 -28
  222. package/src/pages/home/PackageList/Help/Help.test.tsx +0 -1
  223. package/src/pages/home/PackageList/Help/Help.tsx +0 -1
  224. package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +298 -59
  225. package/src/pages/home/PackageList/Help/styles.ts +0 -1
  226. package/src/pages/home/PackageList/Package/Package.test.tsx +5 -4
  227. package/src/pages/home/PackageList/Package/Package.tsx +20 -28
  228. package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +0 -1
  229. package/src/pages/home/PackageList/Package/styles.ts +5 -6
  230. package/src/pages/home/PackageList/PackageList.tsx +17 -17
  231. package/src/pages/home/PackageList/Packagelist.test.tsx +6 -5
  232. package/src/providers/API/api.test.ts +1 -0
  233. package/src/providers/API/api.ts +7 -3
  234. package/src/providers/config/AppConfigurationProvider.tsx +3 -3
  235. package/src/store/index.ts +1 -0
  236. package/src/store/models/configuration.ts +41 -0
  237. package/src/store/models/download.ts +30 -0
  238. package/src/store/models/index.ts +18 -0
  239. package/src/store/models/login.ts +92 -0
  240. package/src/store/models/manifest.ts +91 -0
  241. package/src/store/models/packages.ts +36 -0
  242. package/src/store/models/search.ts +81 -0
  243. package/src/store/store.ts +15 -0
  244. package/src/utils/login.test.ts +3 -4
  245. package/src/utils/package.test.ts +2 -3
  246. package/src/utils/package.ts +2 -1
  247. package/src/utils/sec-utils.ts +1 -1
  248. package/src/utils/test-react-testing-library.tsx +22 -5
  249. package/src/utils/url.test.ts +1 -1
  250. package/src/utils/url.ts +1 -0
  251. package/static/Dependencies.15768a14646212b71166.js +2 -0
  252. package/static/Dependencies.15768a14646212b71166.js.LICENSE.txt +78 -0
  253. package/static/Dist.15768a14646212b71166.js +2 -0
  254. package/static/Dist.15768a14646212b71166.js.LICENSE.txt +60 -0
  255. package/static/Engines.15768a14646212b71166.js +2 -0
  256. package/static/Engines.15768a14646212b71166.js.LICENSE.txt +66 -0
  257. package/static/Home.15768a14646212b71166.js +2 -0
  258. package/static/Home.15768a14646212b71166.js.LICENSE.txt +222 -0
  259. package/static/Install.15768a14646212b71166.js +2 -0
  260. package/static/Install.15768a14646212b71166.js.LICENSE.txt +66 -0
  261. package/static/NotFound.15768a14646212b71166.js +2 -0
  262. package/static/NotFound.15768a14646212b71166.js.LICENSE.txt +40 -0
  263. package/static/Provider.15768a14646212b71166.js +2 -0
  264. package/static/Provider.15768a14646212b71166.js.LICENSE.txt +32 -0
  265. package/static/Repository.15768a14646212b71166.js +2 -0
  266. package/static/Repository.15768a14646212b71166.js.LICENSE.txt +50 -0
  267. package/static/UpLinks.15768a14646212b71166.js +2 -0
  268. package/static/UpLinks.15768a14646212b71166.js.LICENSE.txt +56 -0
  269. package/static/Version.15768a14646212b71166.js +2 -0
  270. package/static/Version.15768a14646212b71166.js.LICENSE.txt +380 -0
  271. package/static/Versions.15768a14646212b71166.js +2 -0
  272. package/static/Versions.15768a14646212b71166.js.LICENSE.txt +64 -0
  273. package/static/index.html +1 -1
  274. package/static/main.15768a14646212b71166.js +2 -0
  275. package/static/main.15768a14646212b71166.js.LICENSE.txt +972 -0
  276. package/static/manifest.json +17 -3
  277. package/static/runtime.15768a14646212b71166.js +2 -0
  278. package/static/{runtime.9525ddaaf85378590c63.js.LICENSE.txt → runtime.15768a14646212b71166.js.LICENSE.txt} +2 -2
  279. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js +2 -0
  280. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js.LICENSE.txt +148 -0
  281. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js +2 -0
  282. package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js.LICENSE.txt +218 -0
  283. package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js +2 -0
  284. package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js.LICENSE.txt +316 -0
  285. package/static/vendors.15768a14646212b71166.js +103 -0
  286. package/static/vendors.15768a14646212b71166.js.LICENSE.txt +3158 -0
  287. package/tools/dev.server.js +0 -1
  288. package/tools/webpack.dev.config.babel.js +1 -3
  289. package/tools/webpack.prod.config.babel.js +1 -1
  290. package/tsconfig.json +1 -3
  291. package/types/index.ts +3 -20
  292. package/i18n/config.ts +0 -94
  293. package/src/App/AppContext.ts +0 -18
  294. package/src/App/AppContextProvider.tsx +0 -44
  295. package/src/App/Header/Search/SearchAdornment.tsx +0 -18
  296. package/src/components/Icons/Austria.tsx +0 -23
  297. package/src/components/Icons/Brazil.tsx +0 -44
  298. package/src/components/Icons/China.tsx +0 -33
  299. package/src/components/Icons/Czech.tsx +0 -21
  300. package/src/components/Icons/France.tsx +0 -27
  301. package/src/components/Icons/Germany.tsx +0 -27
  302. package/src/components/Icons/India.tsx +0 -44
  303. package/src/components/Icons/Japan.tsx +0 -23
  304. package/src/components/Icons/Khmer.tsx +0 -40
  305. package/src/components/Icons/Nicaragua.tsx +0 -66
  306. package/src/components/Icons/Russia.tsx +0 -27
  307. package/src/components/Icons/Spain.tsx +0 -43
  308. package/src/components/Icons/Taiwan.tsx +0 -25
  309. package/src/components/Icons/Turkey.tsx +0 -23
  310. package/src/components/Icons/Ukraine.tsx +0 -30
  311. package/src/components/Icons/Usa.tsx +0 -34
  312. package/src/design-tokens/emotion.ts +0 -5
  313. package/src/lib/constants.ts +0 -9
  314. package/src/pages/Version/DetailSidebar/ActionBar/ActionBar.test.tsx +0 -84
  315. package/src/pages/Version/DetailSidebar/ActionBar/__snapshots__/ActionBar.test.tsx.snap +0 -122
  316. package/src/pages/Version/is-package-version-valid.ts +0 -19
  317. package/src/providers/API/APIProvider.tsx +0 -109
  318. package/src/providers/API/index.ts +0 -1
  319. package/static/main.9525ddaaf85378590c63.js +0 -2
  320. package/static/main.9525ddaaf85378590c63.js.LICENSE.txt +0 -1588
  321. package/static/runtime.9525ddaaf85378590c63.js +0 -2
  322. package/static/vendors.9525ddaaf85378590c63.js +0 -2
  323. package/static/vendors.9525ddaaf85378590c63.js.LICENSE.txt +0 -4540
@@ -0,0 +1,972 @@
1
+ /*!
2
+ *
3
+ * Name: main
4
+ * Generated on: 1639591616140
5
+ * Package: @verdaccio/ui-theme
6
+ * Version: v6.0.0-6-next.13
7
+ * License: MIT
8
+ * https://www.verdaccio.org
9
+ *
10
+ */
11
+
12
+ /*! ../../../types */
13
+
14
+ /*! ../../CircularProgress */
15
+
16
+ /*! ../../hooks/useOnClickOutside */
17
+
18
+ /*! ../../i18n/enabledLanguages */
19
+
20
+ /*! ../../providers/API/api */
21
+
22
+ /*! ../../types */
23
+
24
+ /*! ../../utils/storage */
25
+
26
+ /*! ../../utils/url */
27
+
28
+ /*! ../IconButton */
29
+
30
+ /*! ../Logo */
31
+
32
+ /*! ../MenuItem */
33
+
34
+ /*! ../Paper */
35
+
36
+ /*! ../SvgIcon */
37
+
38
+ /*! ../TextField */
39
+
40
+ /*! ../hooks/useLocalStorage */
41
+
42
+ /*! ../i18n/config */
43
+
44
+ /*! ../pages/Version */
45
+
46
+ /*! ../pages/Version/VersionContextProvider */
47
+
48
+ /*! ../pages/home */
49
+
50
+ /*! ./App */
51
+
52
+ /*! ./AppConfigurationProvider */
53
+
54
+ /*! ./AppRoute */
55
+
56
+ /*! ./AutoComplete */
57
+
58
+ /*! ./Earth */
59
+
60
+ /*! ./FileBinary */
61
+
62
+ /*! ./Footer */
63
+
64
+ /*! ./Header */
65
+
66
+ /*! ./HeaderGreetings */
67
+
68
+ /*! ./HeaderInfoDialog */
69
+
70
+ /*! ./HeaderLeft */
71
+
72
+ /*! ./HeaderMenu */
73
+
74
+ /*! ./HeaderRight */
75
+
76
+ /*! ./HeaderToolTip */
77
+
78
+ /*! ./HeaderToolTipIcon */
79
+
80
+ /*! ./IconButton */
81
+
82
+ /*! ./Label */
83
+
84
+ /*! ./LanguageSwitch */
85
+
86
+ /*! ./Law */
87
+
88
+ /*! ./Loading */
89
+
90
+ /*! ./LoginDialog */
91
+
92
+ /*! ./LoginDialogCloseButton */
93
+
94
+ /*! ./LoginDialogForm */
95
+
96
+ /*! ./LoginDialogFormError */
97
+
98
+ /*! ./LoginDialogHeader */
99
+
100
+ /*! ./Logo */
101
+
102
+ /*! ./RegistryInfoContent */
103
+
104
+ /*! ./RegistryInfoDialog */
105
+
106
+ /*! ./ResetStyles */
107
+
108
+ /*! ./Search */
109
+
110
+ /*! ./Spinner */
111
+
112
+ /*! ./Text */
113
+
114
+ /*! ./TextConfig */
115
+
116
+ /*! ./TextField */
117
+
118
+ /*! ./ThemeContext */
119
+
120
+ /*! ./Time */
121
+
122
+ /*! ./Tooltip */
123
+
124
+ /*! ./Version */
125
+
126
+ /*! ./configuration */
127
+
128
+ /*! ./crowdin/ui.json */
129
+
130
+ /*! ./design-tokens/StyleBaseline */
131
+
132
+ /*! ./design-tokens/ThemeProvider */
133
+
134
+ /*! ./download */
135
+
136
+ /*! ./enabledLanguages */
137
+
138
+ /*! ./img/logo-black-and-white.svg */
139
+
140
+ /*! ./img/logo.svg */
141
+
142
+ /*! ./load-dayjs-locale */
143
+
144
+ /*! ./loadTranslationFile */
145
+
146
+ /*! ./login */
147
+
148
+ /*! ./manifest */
149
+
150
+ /*! ./models */
151
+
152
+ /*! ./packages */
153
+
154
+ /*! ./search */
155
+
156
+ /*! ./storage */
157
+
158
+ /*! ./store */
159
+
160
+ /*! ./styles */
161
+
162
+ /*! ./theme */
163
+
164
+ /*! ./useAutoComplete */
165
+
166
+ /*! ./utils/loadable */
167
+
168
+ /*! @babel/runtime/helpers/asyncToGenerator */
169
+
170
+ /*! @babel/runtime/helpers/classCallCheck */
171
+
172
+ /*! @babel/runtime/helpers/createClass */
173
+
174
+ /*! @babel/runtime/helpers/defineProperty */
175
+
176
+ /*! @babel/runtime/helpers/extends */
177
+
178
+ /*! @babel/runtime/helpers/objectWithoutProperties */
179
+
180
+ /*! @babel/runtime/helpers/slicedToArray */
181
+
182
+ /*! @babel/runtime/helpers/toConsumableArray */
183
+
184
+ /*! @babel/runtime/regenerator */
185
+
186
+ /*! @emotion/react */
187
+
188
+ /*! @emotion/styled/base */
189
+
190
+ /*! @mui/icons-material/AccountCircle */
191
+
192
+ /*! @mui/icons-material/Close */
193
+
194
+ /*! @mui/icons-material/Error */
195
+
196
+ /*! @mui/icons-material/ExpandMore */
197
+
198
+ /*! @mui/icons-material/FileCopy */
199
+
200
+ /*! @mui/icons-material/Help */
201
+
202
+ /*! @mui/icons-material/Info */
203
+
204
+ /*! @mui/icons-material/Language */
205
+
206
+ /*! @mui/icons-material/LockOutlined */
207
+
208
+ /*! @mui/icons-material/NightsStay */
209
+
210
+ /*! @mui/icons-material/Search */
211
+
212
+ /*! @mui/icons-material/WbSunny */
213
+
214
+ /*! @mui/material/Accordion */
215
+
216
+ /*! @mui/material/AccordionDetails */
217
+
218
+ /*! @mui/material/AccordionSummary */
219
+
220
+ /*! @mui/material/AppBar */
221
+
222
+ /*! @mui/material/Autocomplete */
223
+
224
+ /*! @mui/material/Avatar */
225
+
226
+ /*! @mui/material/Box */
227
+
228
+ /*! @mui/material/Button */
229
+
230
+ /*! @mui/material/CircularProgress */
231
+
232
+ /*! @mui/material/CssBaseline */
233
+
234
+ /*! @mui/material/Dialog */
235
+
236
+ /*! @mui/material/DialogActions */
237
+
238
+ /*! @mui/material/DialogContent */
239
+
240
+ /*! @mui/material/DialogTitle */
241
+
242
+ /*! @mui/material/IconButton */
243
+
244
+ /*! @mui/material/InputAdornment */
245
+
246
+ /*! @mui/material/Link */
247
+
248
+ /*! @mui/material/Menu */
249
+
250
+ /*! @mui/material/MenuItem */
251
+
252
+ /*! @mui/material/Paper */
253
+
254
+ /*! @mui/material/SnackbarContent */
255
+
256
+ /*! @mui/material/SvgIcon */
257
+
258
+ /*! @mui/material/TextField */
259
+
260
+ /*! @mui/material/Toolbar */
261
+
262
+ /*! @mui/material/Tooltip */
263
+
264
+ /*! @mui/material/Typography */
265
+
266
+ /*! @mui/material/styles */
267
+
268
+ /*! @mui/styles */
269
+
270
+ /*! @mui/styles/makeStyles */
271
+
272
+ /*! @mui/styles/withStyles */
273
+
274
+ /*! @rematch/core */
275
+
276
+ /*! @rematch/loading */
277
+
278
+ /*! country-flag-icons/react/3x2 */
279
+
280
+ /*! dayjs */
281
+
282
+ /*! dayjs/locale/cs */
283
+
284
+ /*! dayjs/locale/de */
285
+
286
+ /*! dayjs/locale/en */
287
+
288
+ /*! dayjs/locale/es */
289
+
290
+ /*! dayjs/locale/fr */
291
+
292
+ /*! dayjs/locale/ja */
293
+
294
+ /*! dayjs/locale/pt-br */
295
+
296
+ /*! dayjs/locale/ru */
297
+
298
+ /*! dayjs/locale/tr */
299
+
300
+ /*! dayjs/locale/uk */
301
+
302
+ /*! dayjs/locale/zh-cn */
303
+
304
+ /*! dayjs/locale/zh-tw */
305
+
306
+ /*! history */
307
+
308
+ /*! i18next */
309
+
310
+ /*! import() | Home */
311
+
312
+ /*! import() | NotFound */
313
+
314
+ /*! import() | Provider */
315
+
316
+ /*! import() | Version */
317
+
318
+ /*! localstorage-memory */
319
+
320
+ /*! lodash/debounce */
321
+
322
+ /*! lodash/isEmpty */
323
+
324
+ /*! lodash/isNil */
325
+
326
+ /*! normalize.css */
327
+
328
+ /*! react */
329
+
330
+ /*! react-dom */
331
+
332
+ /*! react-hook-form */
333
+
334
+ /*! react-hot-loader */
335
+
336
+ /*! react-i18next */
337
+
338
+ /*! react-redux */
339
+
340
+ /*! react-router */
341
+
342
+ /*! react-router-dom */
343
+
344
+ /*! validator/lib/isEmail */
345
+
346
+ /*! validator/lib/isURL */
347
+
348
+ /*! verdaccio-ui/components/AppBar */
349
+
350
+ /*! verdaccio-ui/components/AutoComplete */
351
+
352
+ /*! verdaccio-ui/components/AutoComplete/AutoCompleteV2 */
353
+
354
+ /*! verdaccio-ui/components/Avatar */
355
+
356
+ /*! verdaccio-ui/components/Box */
357
+
358
+ /*! verdaccio-ui/components/Button */
359
+
360
+ /*! verdaccio-ui/components/CopyToClipBoard */
361
+
362
+ /*! verdaccio-ui/components/Dialog */
363
+
364
+ /*! verdaccio-ui/components/DialogActions */
365
+
366
+ /*! verdaccio-ui/components/DialogContent */
367
+
368
+ /*! verdaccio-ui/components/DialogTitle */
369
+
370
+ /*! verdaccio-ui/components/Heading */
371
+
372
+ /*! verdaccio-ui/components/IconButton */
373
+
374
+ /*! verdaccio-ui/components/Icons */
375
+
376
+ /*! verdaccio-ui/components/Label */
377
+
378
+ /*! verdaccio-ui/components/Link */
379
+
380
+ /*! verdaccio-ui/components/Loading */
381
+
382
+ /*! verdaccio-ui/components/Logo */
383
+
384
+ /*! verdaccio-ui/components/Menu */
385
+
386
+ /*! verdaccio-ui/components/MenuItem */
387
+
388
+ /*! verdaccio-ui/components/NotFound */
389
+
390
+ /*! verdaccio-ui/components/SnackbarContent */
391
+
392
+ /*! verdaccio-ui/components/TextField */
393
+
394
+ /*! verdaccio-ui/components/Toolbar */
395
+
396
+ /*! verdaccio-ui/components/Tooltip */
397
+
398
+ /*! verdaccio-ui/design-tokens/StyleBaseline */
399
+
400
+ /*! verdaccio-ui/design-tokens/ThemeContext */
401
+
402
+ /*! verdaccio-ui/design-tokens/load-dayjs-locale */
403
+
404
+ /*! verdaccio-ui/providers/config */
405
+
406
+ /*! verdaccio-ui/utils/cli-utils */
407
+
408
+ /*! verdaccio-ui/utils/colors */
409
+
410
+ /*! verdaccio-ui/utils/constants */
411
+
412
+ /*! verdaccio-ui/utils/windows */
413
+
414
+ /*!***********************!*\
415
+ !*** ./src/index.tsx ***!
416
+ \***********************/
417
+
418
+ /*!************************!*\
419
+ !*** ./types/index.ts ***!
420
+ \************************/
421
+
422
+ /*!*************************!*\
423
+ !*** ./src/App/App.tsx ***!
424
+ \*************************/
425
+
426
+ /*!**************************!*\
427
+ !*** ./src/App/index.ts ***!
428
+ \**************************/
429
+
430
+ /*!**************************!*\
431
+ !*** ./src/utils/url.ts ***!
432
+ \**************************/
433
+
434
+ /*!****************************!*\
435
+ !*** ./src/i18n/config.ts ***!
436
+ \****************************/
437
+
438
+ /*!****************************!*\
439
+ !*** ./src/store/index.ts ***!
440
+ \****************************/
441
+
442
+ /*!****************************!*\
443
+ !*** ./src/store/store.ts ***!
444
+ \****************************/
445
+
446
+ /*!*****************************!*\
447
+ !*** ./src/utils/colors.ts ***!
448
+ \*****************************/
449
+
450
+ /*!******************************!*\
451
+ !*** ./src/App/AppRoute.tsx ***!
452
+ \******************************/
453
+
454
+ /*!******************************!*\
455
+ !*** ./src/utils/storage.ts ***!
456
+ \******************************/
457
+
458
+ /*!******************************!*\
459
+ !*** ./src/utils/windows.ts ***!
460
+ \******************************/
461
+
462
+ /*!********************************!*\
463
+ !*** ./src/components/Box.tsx ***!
464
+ \********************************/
465
+
466
+ /*!********************************!*\
467
+ !*** ./src/utils/cli-utils.ts ***!
468
+ \********************************/
469
+
470
+ /*!********************************!*\
471
+ !*** ./src/utils/constants.ts ***!
472
+ \********************************/
473
+
474
+ /*!*********************************!*\
475
+ !*** ./src/App/Footer/index.ts ***!
476
+ \*********************************/
477
+
478
+ /*!*********************************!*\
479
+ !*** ./src/App/Header/index.ts ***!
480
+ \*********************************/
481
+
482
+ /*!*********************************!*\
483
+ !*** ./src/components/Link.tsx ***!
484
+ \*********************************/
485
+
486
+ /*!*********************************!*\
487
+ !*** ./src/components/Menu.tsx ***!
488
+ \*********************************/
489
+
490
+ /*!**********************************!*\
491
+ !*** ./src/App/Footer/styles.ts ***!
492
+ \**********************************/
493
+
494
+ /*!**********************************!*\
495
+ !*** ./src/App/Header/styles.ts ***!
496
+ \**********************************/
497
+
498
+ /*!**********************************!*\
499
+ !*** ./src/components/Paper.tsx ***!
500
+ \**********************************/
501
+
502
+ /*!**********************************!*\
503
+ !*** ./src/i18n/crowdin/ui.json ***!
504
+ \**********************************/
505
+
506
+ /*!**********************************!*\
507
+ !*** ./src/providers/API/api.ts ***!
508
+ \**********************************/
509
+
510
+ /*!***********************************!*\
511
+ !*** ./src/App/Footer/Footer.tsx ***!
512
+ \***********************************/
513
+
514
+ /*!***********************************!*\
515
+ !*** ./src/App/Header/Header.tsx ***!
516
+ \***********************************/
517
+
518
+ /*!***********************************!*\
519
+ !*** ./src/components/AppBar.tsx ***!
520
+ \***********************************/
521
+
522
+ /*!***********************************!*\
523
+ !*** ./src/components/Avatar.tsx ***!
524
+ \***********************************/
525
+
526
+ /*!***********************************!*\
527
+ !*** ./src/components/Button.tsx ***!
528
+ \***********************************/
529
+
530
+ /*!***********************************!*\
531
+ !*** ./src/components/Dialog.tsx ***!
532
+ \***********************************/
533
+
534
+ /*!***********************************!*\
535
+ !*** ./src/store/models/index.ts ***!
536
+ \***********************************/
537
+
538
+ /*!***********************************!*\
539
+ !*** ./src/store/models/login.ts ***!
540
+ \***********************************/
541
+
542
+ /*!************************************!*\
543
+ !*** ./src/App/utils/loadable.tsx ***!
544
+ \************************************/
545
+
546
+ /*!************************************!*\
547
+ !*** ./src/components/Heading.tsx ***!
548
+ \************************************/
549
+
550
+ /*!************************************!*\
551
+ !*** ./src/components/SvgIcon.tsx ***!
552
+ \************************************/
553
+
554
+ /*!************************************!*\
555
+ !*** ./src/components/Toolbar.tsx ***!
556
+ \************************************/
557
+
558
+ /*!************************************!*\
559
+ !*** ./src/components/Tooltip.tsx ***!
560
+ \************************************/
561
+
562
+ /*!************************************!*\
563
+ !*** ./src/design-tokens/theme.ts ***!
564
+ \************************************/
565
+
566
+ /*!************************************!*\
567
+ !*** ./src/store/models/search.ts ***!
568
+ \************************************/
569
+
570
+ /*!*************************************!*\
571
+ !*** ./src/components/MenuItem.tsx ***!
572
+ \*************************************/
573
+
574
+ /*!**************************************!*\
575
+ !*** ./src/components/Icons/Law.tsx ***!
576
+ \**************************************/
577
+
578
+ /*!**************************************!*\
579
+ !*** ./src/components/Logo/Logo.tsx ***!
580
+ \**************************************/
581
+
582
+ /*!**************************************!*\
583
+ !*** ./src/components/Logo/index.ts ***!
584
+ \**************************************/
585
+
586
+ /*!**************************************!*\
587
+ !*** ./src/components/Text/Text.tsx ***!
588
+ \**************************************/
589
+
590
+ /*!**************************************!*\
591
+ !*** ./src/components/Text/index.ts ***!
592
+ \**************************************/
593
+
594
+ /*!**************************************!*\
595
+ !*** ./src/hooks/useLocalStorage.ts ***!
596
+ \**************************************/
597
+
598
+ /*!**************************************!*\
599
+ !*** ./src/i18n/enabledLanguages.ts ***!
600
+ \**************************************/
601
+
602
+ /*!**************************************!*\
603
+ !*** ./src/providers/API/storage.ts ***!
604
+ \**************************************/
605
+
606
+ /*!**************************************!*\
607
+ !*** ./src/store/models/download.ts ***!
608
+ \**************************************/
609
+
610
+ /*!**************************************!*\
611
+ !*** ./src/store/models/manifest.ts ***!
612
+ \**************************************/
613
+
614
+ /*!**************************************!*\
615
+ !*** ./src/store/models/packages.ts ***!
616
+ \**************************************/
617
+
618
+ /*!***************************************!*\
619
+ !*** ./src/App/Header/HeaderLeft.tsx ***!
620
+ \***************************************/
621
+
622
+ /*!***************************************!*\
623
+ !*** ./src/App/Header/HeaderMenu.tsx ***!
624
+ \***************************************/
625
+
626
+ /*!***************************************!*\
627
+ !*** ./src/components/IconButton.tsx ***!
628
+ \***************************************/
629
+
630
+ /*!***************************************!*\
631
+ !*** ./src/components/Icons/Time.tsx ***!
632
+ \***************************************/
633
+
634
+ /*!***************************************!*\
635
+ !*** ./src/components/Icons/index.ts ***!
636
+ \***************************************/
637
+
638
+ /*!***************************************!*\
639
+ !*** ./src/components/Label/index.ts ***!
640
+ \***************************************/
641
+
642
+ /*!***************************************!*\
643
+ !*** ./src/providers/config/index.ts ***!
644
+ \***************************************/
645
+
646
+ /*!****************************************!*\
647
+ !*** ./src/App/Header/HeaderRight.tsx ***!
648
+ \****************************************/
649
+
650
+ /*!****************************************!*\
651
+ !*** ./src/App/Header/Search/index.ts ***!
652
+ \****************************************/
653
+
654
+ /*!****************************************!*\
655
+ !*** ./src/components/DialogTitle.tsx ***!
656
+ \****************************************/
657
+
658
+ /*!****************************************!*\
659
+ !*** ./src/components/Icons/Earth.tsx ***!
660
+ \****************************************/
661
+
662
+ /*!****************************************!*\
663
+ !*** ./src/components/Label/Label.tsx ***!
664
+ \****************************************/
665
+
666
+ /*!****************************************!*\
667
+ !*** ./src/hooks/useOnClickOutside.ts ***!
668
+ \****************************************/
669
+
670
+ /*!*****************************************!*\
671
+ !*** ./src/components/Loading/index.ts ***!
672
+ \*****************************************/
673
+
674
+ /*!*****************************************!*\
675
+ !*** ./src/i18n/loadTranslationFile.ts ***!
676
+ \*****************************************/
677
+
678
+ /*!******************************************!*\
679
+ !*** ./src/App/Header/HeaderToolTip.tsx ***!
680
+ \******************************************/
681
+
682
+ /*!******************************************!*\
683
+ !*** ./src/App/Header/Search/Search.tsx ***!
684
+ \******************************************/
685
+
686
+ /*!******************************************!*\
687
+ !*** ./src/components/DialogActions.tsx ***!
688
+ \******************************************/
689
+
690
+ /*!******************************************!*\
691
+ !*** ./src/components/DialogContent.tsx ***!
692
+ \******************************************/
693
+
694
+ /*!******************************************!*\
695
+ !*** ./src/components/Icons/Version.tsx ***!
696
+ \******************************************/
697
+
698
+ /*!******************************************!*\
699
+ !*** ./src/components/Loading/styles.ts ***!
700
+ \******************************************/
701
+
702
+ /*!******************************************!*\
703
+ !*** ./src/components/Logo/img/logo.svg ***!
704
+ \******************************************/
705
+
706
+ /*!*******************************************!*\
707
+ !*** ./src/App/Header/LanguageSwitch.tsx ***!
708
+ \*******************************************/
709
+
710
+ /*!*******************************************!*\
711
+ !*** ./src/components/Text/TextConfig.ts ***!
712
+ \*******************************************/
713
+
714
+ /*!*******************************************!*\
715
+ !*** ./src/components/TextField/index.ts ***!
716
+ \*******************************************/
717
+
718
+ /*!*******************************************!*\
719
+ !*** ./src/design-tokens/ResetStyles.tsx ***!
720
+ \*******************************************/
721
+
722
+ /*!*******************************************!*\
723
+ !*** ./src/design-tokens/ThemeContext.ts ***!
724
+ \*******************************************/
725
+
726
+ /*!*******************************************!*\
727
+ !*** ./src/store/models/configuration.ts ***!
728
+ \*******************************************/
729
+
730
+ /*!********************************************!*\
731
+ !*** ./src/App/Header/HeaderGreetings.tsx ***!
732
+ \********************************************/
733
+
734
+ /*!********************************************!*\
735
+ !*** ./src/components/CopyToClipBoard.tsx ***!
736
+ \********************************************/
737
+
738
+ /*!********************************************!*\
739
+ !*** ./src/components/Loading/Loading.tsx ***!
740
+ \********************************************/
741
+
742
+ /*!********************************************!*\
743
+ !*** ./src/components/SnackbarContent.tsx ***!
744
+ \********************************************/
745
+
746
+ /*!*********************************************!*\
747
+ !*** ./src/App/Header/HeaderInfoDialog.tsx ***!
748
+ \*********************************************/
749
+
750
+ /*!*********************************************!*\
751
+ !*** ./src/App/Header/LoginDialog/index.ts ***!
752
+ \*********************************************/
753
+
754
+ /*!*********************************************!*\
755
+ !*** ./src/components/CircularProgress.tsx ***!
756
+ \*********************************************/
757
+
758
+ /*!*********************************************!*\
759
+ !*** ./src/components/Icons/FileBinary.tsx ***!
760
+ \*********************************************/
761
+
762
+ /*!*********************************************!*\
763
+ !*** ./src/design-tokens/StyleBaseline.tsx ***!
764
+ \*********************************************/
765
+
766
+ /*!*********************************************!*\
767
+ !*** ./src/design-tokens/ThemeProvider.tsx ***!
768
+ \*********************************************/
769
+
770
+ /*!**********************************************!*\
771
+ !*** ./src/App/Header/HeaderToolTipIcon.tsx ***!
772
+ \**********************************************/
773
+
774
+ /*!**********************************************!*\
775
+ !*** ./src/components/AutoComplete/index.ts ***!
776
+ \**********************************************/
777
+
778
+ /*!************************************************!*\
779
+ !*** ./src/components/AutoComplete/styles.tsx ***!
780
+ \************************************************/
781
+
782
+ /*!************************************************!*\
783
+ !*** ./src/components/TextField/TextField.tsx ***!
784
+ \************************************************/
785
+
786
+ /*!************************************************!*\
787
+ !*** ./src/design-tokens/load-dayjs-locale.ts ***!
788
+ \************************************************/
789
+
790
+ /*!**************************************************!*\
791
+ !*** ./src/components/Loading/Spinner/index.tsx ***!
792
+ \**************************************************/
793
+
794
+ /*!****************************************************!*\
795
+ !*** ./src/App/Header/LoginDialog/LoginDialog.tsx ***!
796
+ \****************************************************/
797
+
798
+ /*!****************************************************!*\
799
+ !*** ./src/App/Header/RegistryInfoDialog/index.ts ***!
800
+ \****************************************************/
801
+
802
+ /*!****************************************************!*\
803
+ !*** ./src/components/Loading/Spinner/Spinner.tsx ***!
804
+ \****************************************************/
805
+
806
+ /*!*****************************************************!*\
807
+ !*** ./src/App/Header/RegistryInfoContent/index.ts ***!
808
+ \*****************************************************/
809
+
810
+ /*!*****************************************************!*\
811
+ !*** ./src/App/Header/RegistryInfoDialog/styles.ts ***!
812
+ \*****************************************************/
813
+
814
+ /*!******************************************************!*\
815
+ !*** ./src/components/AutoComplete/AutoComplete.tsx ***!
816
+ \******************************************************/
817
+
818
+ /*!******************************************************!*\
819
+ !*** ./src/i18n/download_translations/ar-SA/ui.json ***!
820
+ \******************************************************/
821
+
822
+ /*!******************************************************!*\
823
+ !*** ./src/i18n/download_translations/cs-CZ/ui.json ***!
824
+ \******************************************************/
825
+
826
+ /*!******************************************************!*\
827
+ !*** ./src/i18n/download_translations/de-DE/ui.json ***!
828
+ \******************************************************/
829
+
830
+ /*!******************************************************!*\
831
+ !*** ./src/i18n/download_translations/es-ES/ui.json ***!
832
+ \******************************************************/
833
+
834
+ /*!******************************************************!*\
835
+ !*** ./src/i18n/download_translations/fi-FI/ui.json ***!
836
+ \******************************************************/
837
+
838
+ /*!******************************************************!*\
839
+ !*** ./src/i18n/download_translations/fr-FR/ui.json ***!
840
+ \******************************************************/
841
+
842
+ /*!******************************************************!*\
843
+ !*** ./src/i18n/download_translations/gl-ES/ui.json ***!
844
+ \******************************************************/
845
+
846
+ /*!******************************************************!*\
847
+ !*** ./src/i18n/download_translations/hi-IN/ui.json ***!
848
+ \******************************************************/
849
+
850
+ /*!******************************************************!*\
851
+ !*** ./src/i18n/download_translations/it-IT/ui.json ***!
852
+ \******************************************************/
853
+
854
+ /*!******************************************************!*\
855
+ !*** ./src/i18n/download_translations/ja-JP/ui.json ***!
856
+ \******************************************************/
857
+
858
+ /*!******************************************************!*\
859
+ !*** ./src/i18n/download_translations/km-KH/ui.json ***!
860
+ \******************************************************/
861
+
862
+ /*!******************************************************!*\
863
+ !*** ./src/i18n/download_translations/ko-KR/ui.json ***!
864
+ \******************************************************/
865
+
866
+ /*!******************************************************!*\
867
+ !*** ./src/i18n/download_translations/pl-PL/ui.json ***!
868
+ \******************************************************/
869
+
870
+ /*!******************************************************!*\
871
+ !*** ./src/i18n/download_translations/pt-BR/ui.json ***!
872
+ \******************************************************/
873
+
874
+ /*!******************************************************!*\
875
+ !*** ./src/i18n/download_translations/pt-PT/ui.json ***!
876
+ \******************************************************/
877
+
878
+ /*!******************************************************!*\
879
+ !*** ./src/i18n/download_translations/ro-RO/ui.json ***!
880
+ \******************************************************/
881
+
882
+ /*!******************************************************!*\
883
+ !*** ./src/i18n/download_translations/ru-RU/ui.json ***!
884
+ \******************************************************/
885
+
886
+ /*!******************************************************!*\
887
+ !*** ./src/i18n/download_translations/si-LK/ui.json ***!
888
+ \******************************************************/
889
+
890
+ /*!******************************************************!*\
891
+ !*** ./src/i18n/download_translations/sr-CS/ui.json ***!
892
+ \******************************************************/
893
+
894
+ /*!******************************************************!*\
895
+ !*** ./src/i18n/download_translations/sr-SP/ui.json ***!
896
+ \******************************************************/
897
+
898
+ /*!******************************************************!*\
899
+ !*** ./src/i18n/download_translations/tg-TJ/ui.json ***!
900
+ \******************************************************/
901
+
902
+ /*!******************************************************!*\
903
+ !*** ./src/i18n/download_translations/tr-TR/ui.json ***!
904
+ \******************************************************/
905
+
906
+ /*!******************************************************!*\
907
+ !*** ./src/i18n/download_translations/uk-UA/ui.json ***!
908
+ \******************************************************/
909
+
910
+ /*!******************************************************!*\
911
+ !*** ./src/i18n/download_translations/vi-VN/ui.json ***!
912
+ \******************************************************/
913
+
914
+ /*!******************************************************!*\
915
+ !*** ./src/i18n/download_translations/yo-NG/ui.json ***!
916
+ \******************************************************/
917
+
918
+ /*!******************************************************!*\
919
+ !*** ./src/i18n/download_translations/zh-CN/ui.json ***!
920
+ \******************************************************/
921
+
922
+ /*!******************************************************!*\
923
+ !*** ./src/i18n/download_translations/zh-TW/ui.json ***!
924
+ \******************************************************/
925
+
926
+ /*!*******************************************************!*\
927
+ !*** ./src/i18n/download_translations/fil-PH/ui.json ***!
928
+ \*******************************************************/
929
+
930
+ /*!********************************************************!*\
931
+ !*** ./src/App/Header/LoginDialog/LoginDialogForm.tsx ***!
932
+ \********************************************************/
933
+
934
+ /*!********************************************************!*\
935
+ !*** ./src/components/AutoComplete/AutoCompleteV2.tsx ***!
936
+ \********************************************************/
937
+
938
+ /*!*********************************************************!*\
939
+ !*** ./src/components/AutoComplete/useAutoComplete.tsx ***!
940
+ \*********************************************************/
941
+
942
+ /*!**********************************************************!*\
943
+ !*** ./src/App/Header/LoginDialog/LoginDialogHeader.tsx ***!
944
+ \**********************************************************/
945
+
946
+ /*!**********************************************************!*\
947
+ !*** ./src/components/Logo/img/logo-black-and-white.svg ***!
948
+ \**********************************************************/
949
+
950
+ /*!***********************************************************!*\
951
+ !*** ./src/providers/config/AppConfigurationProvider.tsx ***!
952
+ \***********************************************************/
953
+
954
+ /*!*************************************************************!*\
955
+ !*** ./src/App/Header/LoginDialog/LoginDialogFormError.tsx ***!
956
+ \*************************************************************/
957
+
958
+ /*!***************************************************************!*\
959
+ !*** ./src/App/Header/LoginDialog/LoginDialogCloseButton.tsx ***!
960
+ \***************************************************************/
961
+
962
+ /*!*****************************************************************!*\
963
+ !*** ./src/i18n/download_translations/ sync ^\.\/.*\/ui\.json$ ***!
964
+ \*****************************************************************/
965
+
966
+ /*!******************************************************************!*\
967
+ !*** ./src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx ***!
968
+ \******************************************************************/
969
+
970
+ /*!********************************************************************!*\
971
+ !*** ./src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx ***!
972
+ \********************************************************************/