@verdaccio/ui-theme 3.1.0 → 6.0.0-6-next.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +33 -0
- package/.eslintrc +115 -0
- package/.stylelintrc +40 -0
- package/CHANGELOG.md +152 -554
- package/LICENSE +1 -1
- package/README.md +22 -95
- package/config/env.js +9 -0
- package/jest/api/packages.json +42 -0
- package/jest/identity.js +29 -0
- package/jest/jest.config.js +39 -0
- package/jest/jestEnvironment.js +1 -0
- package/jest/server-handlers.ts +9 -0
- package/jest/server.ts +6 -0
- package/jest/setup-env.ts +15 -0
- package/jest/setup.ts +31 -0
- package/jest/unit/components/__mocks__/api.ts +47 -0
- package/jest/unit/components/__mocks__/token.ts +31 -0
- package/jest/unit/components/store/login.ts +23 -0
- package/jest/unit/components/store/logo.ts +7 -0
- package/jest/unit/components/store/package.ts +174 -0
- package/jest/unit/components/store/packageMeta.ts +592 -0
- package/jest/unit/empty.ts +1 -0
- package/lib/constants.ts +9 -0
- package/package.json +153 -228
- package/src/App/App.test.tsx +123 -0
- package/src/App/App.tsx +54 -0
- package/src/App/AppError.tsx +38 -0
- package/src/App/AppRoute.tsx +63 -0
- package/src/App/Footer/Footer.test.tsx +20 -0
- package/src/App/Footer/Footer.tsx +111 -0
- package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +456 -0
- package/src/App/Footer/index.ts +1 -0
- package/src/App/Footer/styles.ts +44 -0
- package/src/App/Header/Header.test.tsx +152 -0
- package/src/App/Header/Header.tsx +74 -0
- package/src/App/Header/HeaderGreetings.tsx +22 -0
- package/src/App/Header/HeaderInfoDialog.tsx +19 -0
- package/src/App/Header/HeaderLeft.tsx +31 -0
- package/src/App/Header/HeaderMenu.tsx +65 -0
- package/src/App/Header/HeaderRight.tsx +118 -0
- package/src/App/Header/HeaderToolTip.tsx +19 -0
- package/src/App/Header/HeaderToolTipIcon.tsx +75 -0
- package/src/App/Header/LanguageSwitch.tsx +125 -0
- package/src/App/Header/LoginDialog/LoginDialog.test.tsx +112 -0
- package/src/App/Header/LoginDialog/LoginDialog.tsx +81 -0
- package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +32 -0
- package/src/App/Header/LoginDialog/LoginDialogForm.tsx +97 -0
- package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +43 -0
- package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +48 -0
- package/src/App/Header/LoginDialog/__snapshots__/LoginDialog.test.tsx.snap +3 -0
- package/src/App/Header/LoginDialog/index.ts +1 -0
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +27 -0
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +155 -0
- package/src/App/Header/RegistryInfoContent/index.ts +1 -0
- package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +30 -0
- package/src/App/Header/RegistryInfoDialog/index.ts +1 -0
- package/src/App/Header/RegistryInfoDialog/styles.ts +16 -0
- package/src/App/Header/RegistryInfoDialog/types.ts +7 -0
- package/src/App/Header/Search/Search.test.tsx +168 -0
- package/src/App/Header/Search/Search.tsx +127 -0
- package/src/App/Header/Search/SearchAdornment.tsx +18 -0
- package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +101 -0
- package/src/App/Header/Search/index.ts +1 -0
- package/src/App/Header/index.ts +1 -0
- package/src/App/Header/styles.ts +89 -0
- package/src/App/index.ts +1 -0
- package/src/App/utils/loadable.tsx +10 -0
- package/src/components/.eslintrc +7 -0
- package/src/components/ActionBar/ActionBar.test.tsx +91 -0
- package/src/components/ActionBar/ActionBar.tsx +45 -0
- package/src/components/ActionBar/ActionBarAction.tsx +75 -0
- package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +122 -0
- package/src/components/ActionBar/index.ts +1 -0
- package/src/components/AppBar.tsx +10 -0
- package/src/components/Author/Author.test.tsx +75 -0
- package/src/components/Author/Author.tsx +47 -0
- package/src/components/Author/__snapshots__/Author.test.tsx.snap +353 -0
- package/src/components/Author/index.ts +1 -0
- package/src/components/Author/styles.ts +23 -0
- package/src/components/AutoComplete/AutoComplete.tsx +179 -0
- package/src/components/AutoComplete/AutoCompleteV2.tsx +296 -0
- package/src/components/AutoComplete/index.ts +1 -0
- package/src/components/AutoComplete/styles.tsx +58 -0
- package/src/components/AutoComplete/useAutoComplete.tsx +61 -0
- package/src/components/Avatar.tsx +3 -0
- package/src/components/Box.tsx +8 -0
- package/src/components/Button.tsx +10 -0
- package/src/components/Card.tsx +10 -0
- package/src/components/CardActions.tsx +13 -0
- package/src/components/CardContent.tsx +10 -0
- package/src/components/Chip.tsx +10 -0
- package/src/components/CircularProgress.tsx +15 -0
- package/src/components/CopyToClipBoard.tsx +45 -0
- package/src/components/Dialog.tsx +10 -0
- package/src/components/DialogActions.tsx +16 -0
- package/src/components/DialogContent.tsx +16 -0
- package/src/components/DialogTitle.tsx +10 -0
- package/src/components/Divider.tsx +10 -0
- package/src/components/FloatingActionButton.tsx +12 -0
- package/src/components/FormControl.tsx +10 -0
- package/src/components/FormHelperText.tsx +16 -0
- package/src/components/Grid.tsx +10 -0
- package/src/components/Heading.tsx +15 -0
- package/src/components/IconButton.tsx +10 -0
- package/src/components/Icons/.eslintrc +5 -0
- package/src/components/Icons/Earth.tsx +36 -0
- package/src/components/Icons/FileBinary.tsx +20 -0
- package/src/components/Icons/Law.tsx +20 -0
- package/src/components/Icons/License.tsx +18 -0
- package/src/components/Icons/Time.tsx +19 -0
- package/src/components/Icons/Version.tsx +20 -0
- package/src/components/Icons/index.ts +5 -0
- package/src/components/Input.tsx +10 -0
- package/src/components/InputAdornment/InputAdornment.tsx +16 -0
- package/src/components/InputAdornment/index.ts +1 -0
- package/src/components/InputLabel.tsx +10 -0
- package/src/components/Label/Label.test.tsx +15 -0
- package/src/components/Label/Label.tsx +35 -0
- package/src/components/Label/__snapshots__/Label.test.tsx.snap +14 -0
- package/src/components/Label/index.ts +1 -0
- package/src/components/Link.tsx +39 -0
- package/src/components/List.tsx +10 -0
- package/src/components/ListItem.tsx +23 -0
- package/src/components/ListItemText.tsx +16 -0
- package/src/components/Loading/Loading.test.tsx +12 -0
- package/src/components/Loading/Loading.tsx +17 -0
- package/src/components/Loading/Spinner/Spinner.test.tsx +14 -0
- package/src/components/Loading/Spinner/Spinner.tsx +35 -0
- package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +148 -0
- package/src/components/Loading/Spinner/index.tsx +1 -0
- package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +86 -0
- package/src/components/Loading/index.ts +1 -0
- package/src/components/Loading/styles.ts +17 -0
- package/src/components/Logo/Logo.test.tsx +12 -0
- package/src/components/Logo/Logo.tsx +55 -0
- package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +19 -0
- package/src/components/Logo/img/logo-black-and-white.svg +1 -0
- package/src/components/Logo/img/logo.svg +1 -0
- package/src/components/Logo/index.ts +1 -0
- package/src/components/Menu.tsx +10 -0
- package/src/components/MenuItem.tsx +25 -0
- package/src/components/NotFound/NotFound.tsx +52 -0
- package/src/components/NotFound/Notfound.test.tsx +37 -0
- package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +44 -0
- package/src/components/NotFound/img/package.svg +1 -0
- package/src/components/NotFound/index.ts +1 -0
- package/src/components/NotFound/styles.ts +40 -0
- package/src/components/Paper.tsx +10 -0
- package/src/components/SnackbarContent.tsx +15 -0
- package/src/components/SvgIcon.tsx +38 -0
- package/src/components/Tab.tsx +10 -0
- package/src/components/Tabs.tsx +14 -0
- package/src/components/Text/Text.tsx +17 -0
- package/src/components/Text/TextConfig.ts +7 -0
- package/src/components/Text/index.ts +2 -0
- package/src/components/TextField/TextField.test.tsx +16 -0
- package/src/components/TextField/TextField.tsx +23 -0
- package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +19 -0
- package/src/components/TextField/index.ts +1 -0
- package/src/components/Toolbar.tsx +10 -0
- package/src/components/Tooltip.tsx +25 -0
- package/src/design-tokens/ResetStyles.tsx +44 -0
- package/src/design-tokens/StyleBaseline.tsx +14 -0
- package/src/design-tokens/ThemeContext.ts +13 -0
- package/src/design-tokens/ThemeProvider.tsx +44 -0
- package/src/design-tokens/emotion.ts +5 -0
- package/src/design-tokens/load-dayjs-locale.ts +98 -0
- package/src/design-tokens/theme.ts +159 -0
- package/src/design-tokens/useLocalStorage.ts +40 -0
- package/src/design-tokens/useOnClickOutside.ts +28 -0
- package/src/design-tokens/useTheme.ts +7 -0
- package/src/i18n/ABOUT_TRANSLATIONS.md +13 -0
- package/src/i18n/config.ts +52 -0
- package/src/i18n/crowdin/ui.json +170 -0
- package/src/i18n/deprecated_translations_dont_use/cs-CZ.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/de-DE.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/en-US.json +170 -0
- package/src/i18n/deprecated_translations_dont_use/es-ES.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/fr-FR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/ja-JP.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/km-KH.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/pt-BR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/ru-RU.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/tr-TR.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/uk-UA.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/zh-CN.json +168 -0
- package/src/i18n/deprecated_translations_dont_use/zh-TW.json +165 -0
- package/src/i18n/enabledLanguages.ts +35 -0
- package/src/index.tsx +36 -0
- package/src/lib/constants.ts +9 -0
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +93 -0
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +100 -0
- package/src/pages/Version/DetailContainer/Dependencies/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Dependencies/styles.ts +26 -0
- package/src/pages/Version/DetailContainer/Dependencies/types.ts +7 -0
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +34 -0
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +31 -0
- package/src/pages/Version/DetailContainer/Deprecated/index.ts +1 -0
- package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +13 -0
- package/src/pages/Version/DetailContainer/DetailContainer.tsx +37 -0
- package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +41 -0
- package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +19 -0
- package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +36 -0
- package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +16 -0
- package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +16 -0
- package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +9 -0
- package/src/pages/Version/DetailContainer/NoItems/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +19 -0
- package/src/pages/Version/DetailContainer/Readme/Readme.tsx +22 -0
- package/src/pages/Version/DetailContainer/Readme/__snapshots__/Readme.spec.tsx.snap +94 -0
- package/src/pages/Version/DetailContainer/Readme/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Readme/types.ts +3 -0
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +58 -0
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +45 -0
- package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +247 -0
- package/src/pages/Version/DetailContainer/UpLinks/index.ts +1 -0
- package/src/pages/Version/DetailContainer/UpLinks/styles.ts +24 -0
- package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +60 -0
- package/src/pages/Version/DetailContainer/Versions/Versions.tsx +41 -0
- package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +40 -0
- package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +28 -0
- package/src/pages/Version/DetailContainer/Versions/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailContainer/Versions/__snapshots__/Versions.test.tsx.snap +3 -0
- package/src/pages/Version/DetailContainer/Versions/index.ts +1 -0
- package/src/pages/Version/DetailContainer/Versions/styles.ts +30 -0
- package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +103 -0
- package/src/pages/Version/DetailContainer/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +55 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +111 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +53 -0
- package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +40 -0
- package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +117 -0
- package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +90 -0
- package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +32 -0
- package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +380 -0
- package/src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts +16 -0
- package/src/pages/Version/DetailSidebar/Developers/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Developers/styles.ts +31 -0
- package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +78 -0
- package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +49 -0
- package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +602 -0
- package/src/pages/Version/DetailSidebar/Dist/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Dist/styles.ts +27 -0
- package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +71 -0
- package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +58 -0
- package/src/pages/Version/DetailSidebar/Engines/img/node.png +0 -0
- package/src/pages/Version/DetailSidebar/Engines/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Engines/styles.ts +14 -0
- package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +64 -0
- package/src/pages/Version/DetailSidebar/Install/Install.tsx +52 -0
- package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +97 -0
- package/src/pages/Version/DetailSidebar/Install/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailSidebar/Install/img/npm.svg +15 -0
- package/src/pages/Version/DetailSidebar/Install/img/pnpm.svg +1 -0
- package/src/pages/Version/DetailSidebar/Install/img/yarn.svg +1 -0
- package/src/pages/Version/DetailSidebar/Install/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +78 -0
- package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +93 -0
- package/src/pages/Version/DetailSidebar/Repository/__partials__/data.json +5984 -0
- package/src/pages/Version/DetailSidebar/Repository/__snapshots__/Repository.test.tsx.snap +3 -0
- package/src/pages/Version/DetailSidebar/Repository/img/git.png +0 -0
- package/src/pages/Version/DetailSidebar/Repository/index.ts +1 -0
- package/src/pages/Version/DetailSidebar/index.ts +1 -0
- package/src/pages/Version/Version.test.tsx +68 -0
- package/src/pages/Version/Version.tsx +41 -0
- package/src/pages/Version/VersionContextProvider.tsx +43 -0
- package/src/pages/Version/VersionLayout.tsx +20 -0
- package/src/pages/Version/__partials__/data.json +5984 -0
- package/src/pages/Version/context.ts +10 -0
- package/src/pages/Version/get-route-package-name.ts +9 -0
- package/src/pages/Version/index.ts +4 -0
- package/src/pages/Version/version-config.ts +19 -0
- package/src/pages/home/Home.tsx +25 -0
- package/src/pages/home/PackageList/Help/Help.test.tsx +12 -0
- package/src/pages/home/PackageList/Help/Help.tsx +56 -0
- package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +159 -0
- package/src/pages/home/PackageList/Help/index.ts +1 -0
- package/src/pages/home/PackageList/Help/styles.ts +13 -0
- package/src/pages/home/PackageList/Package/Package.test.tsx +56 -0
- package/src/pages/home/PackageList/Package/Package.tsx +253 -0
- package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +16 -0
- package/src/pages/home/PackageList/Package/Tag/Tag.tsx +11 -0
- package/src/pages/home/PackageList/Package/Tag/__snapshots__/Tag.test.tsx.snap +21 -0
- package/src/pages/home/PackageList/Package/Tag/index.ts +1 -0
- package/src/pages/home/PackageList/Package/Tag/styles.ts +11 -0
- package/src/pages/home/PackageList/Package/index.ts +1 -0
- package/src/pages/home/PackageList/Package/styles.ts +112 -0
- package/src/pages/home/PackageList/PackageList.tsx +81 -0
- package/src/pages/home/PackageList/Packagelist.test.tsx +60 -0
- package/src/pages/home/PackageList/index.ts +1 -0
- package/src/pages/home/index.ts +1 -0
- package/src/providers/API/api.test.ts +136 -0
- package/src/providers/API/api.ts +73 -0
- package/src/providers/API/storage.ts +12 -0
- package/src/providers/config/AppConfigurationProvider.tsx +57 -0
- package/src/providers/config/index.ts +1 -0
- package/src/store/index.ts +1 -0
- package/src/store/models/configuration.ts +42 -0
- package/src/store/models/download.ts +31 -0
- package/src/store/models/index.ts +17 -0
- package/src/store/models/login.ts +90 -0
- package/src/store/models/manifest.ts +91 -0
- package/src/store/models/packages.ts +36 -0
- package/src/store/models/search.ts +81 -0
- package/src/store/store.ts +15 -0
- package/src/template/favicon.ico +0 -0
- package/src/template/index.html +21 -0
- package/src/utils/.eslintrc +5 -0
- package/src/utils/cli-utils.test.ts +66 -0
- package/src/utils/cli-utils.ts +38 -0
- package/src/utils/colors.ts +1 -0
- package/src/utils/constants.ts +5 -0
- package/src/utils/file-size.ts +13 -0
- package/src/utils/i18nForTests.ts +25 -0
- package/src/utils/login.test.ts +71 -0
- package/src/utils/login.ts +44 -0
- package/src/utils/package.test.ts +101 -0
- package/src/utils/package.ts +105 -0
- package/src/utils/sec-utils.ts +15 -0
- package/src/utils/storage.ts +12 -0
- package/src/utils/test-react-testing-library.tsx +38 -0
- package/src/utils/url.test.ts +28 -0
- package/src/utils/url.ts +58 -0
- package/src/utils/windows.ts +3 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +21 -0
- package/static/main.c57129036f278d0c7acf.js +2 -0
- package/static/main.c57129036f278d0c7acf.js.LICENSE.txt +1456 -0
- package/static/manifest.json +5 -17
- package/static/runtime.c57129036f278d0c7acf.js +2 -0
- package/static/{runtime.f6e570dfe38870a45bf5.js.LICENSE.txt → runtime.c57129036f278d0c7acf.js.LICENSE.txt} +2 -2
- package/static/vendors.c57129036f278d0c7acf.js +2 -0
- package/static/vendors.c57129036f278d0c7acf.js.LICENSE.txt +2932 -0
- package/tools/.eslintrc +14 -0
- package/tools/_verdaccio.config.yaml +59 -0
- package/tools/dev.server.js +48 -0
- package/tools/getPackageJson.js +25 -0
- package/tools/verdaccio.js +31 -0
- package/tools/webpack.config.js +82 -0
- package/tools/webpack.dev.config.babel.js +60 -0
- package/tools/webpack.prod.config.babel.js +81 -0
- package/tsconfig.build.json +24 -0
- package/tsconfig.json +27 -0
- package/types/custom.d.ts +9 -0
- package/types/files.d.ts +9 -0
- package/types/index.ts +12 -0
- package/types/jest-dom.d.ts +1 -0
- package/types/packageMeta.ts +82 -0
- package/static/238.f6e570dfe38870a45bf5.js +0 -2
- package/static/238.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/718.f6e570dfe38870a45bf5.js +0 -2
- package/static/718.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/73.f6e570dfe38870a45bf5.js +0 -2
- package/static/73.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Dependencies.f6e570dfe38870a45bf5.js +0 -2
- package/static/Dependencies.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Dist.f6e570dfe38870a45bf5.js +0 -2
- package/static/Dist.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Engines.f6e570dfe38870a45bf5.js +0 -2
- package/static/Engines.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Home.f6e570dfe38870a45bf5.js +0 -2
- package/static/Home.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Install.f6e570dfe38870a45bf5.js +0 -2
- package/static/Install.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/NotFound.f6e570dfe38870a45bf5.js +0 -2
- package/static/NotFound.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Provider.f6e570dfe38870a45bf5.js +0 -2
- package/static/Provider.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Repository.f6e570dfe38870a45bf5.js +0 -2
- package/static/Repository.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/UpLinks.f6e570dfe38870a45bf5.js +0 -2
- package/static/UpLinks.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Version.f6e570dfe38870a45bf5.js +0 -2
- package/static/Version.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/Versions.f6e570dfe38870a45bf5.js +0 -2
- package/static/Versions.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/main.f6e570dfe38870a45bf5.js +0 -2
- package/static/main.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -10
- package/static/runtime.f6e570dfe38870a45bf5.js +0 -2
- package/static/vendors.f6e570dfe38870a45bf5.js +0 -2
- package/static/vendors.f6e570dfe38870a45bf5.js.LICENSE.txt +0 -98
|
@@ -0,0 +1,1456 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
*
|
|
3
|
+
* Name: main
|
|
4
|
+
* Generated on: 1632584970700
|
|
5
|
+
* Package: @verdaccio/ui-theme
|
|
6
|
+
* Version: v6.0.0-6-next.11
|
|
7
|
+
* License: MIT
|
|
8
|
+
* https://www.verdaccio.org
|
|
9
|
+
*
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
/*! .. */
|
|
13
|
+
|
|
14
|
+
/*! ../.. */
|
|
15
|
+
|
|
16
|
+
/*! ../../../../../lib/constants */
|
|
17
|
+
|
|
18
|
+
/*! ../../../App/utils/loadable */
|
|
19
|
+
|
|
20
|
+
/*! ../../../types */
|
|
21
|
+
|
|
22
|
+
/*! ../../CircularProgress */
|
|
23
|
+
|
|
24
|
+
/*! ../../context */
|
|
25
|
+
|
|
26
|
+
/*! ../../i18n/enabledLanguages */
|
|
27
|
+
|
|
28
|
+
/*! ../../lib/constants */
|
|
29
|
+
|
|
30
|
+
/*! ../../pages/Version */
|
|
31
|
+
|
|
32
|
+
/*! ../../providers/API/api */
|
|
33
|
+
|
|
34
|
+
/*! ../../types */
|
|
35
|
+
|
|
36
|
+
/*! ../../utils/storage */
|
|
37
|
+
|
|
38
|
+
/*! ../../utils/url */
|
|
39
|
+
|
|
40
|
+
/*! ../Box */
|
|
41
|
+
|
|
42
|
+
/*! ../Button */
|
|
43
|
+
|
|
44
|
+
/*! ../FloatingActionButton */
|
|
45
|
+
|
|
46
|
+
/*! ../Heading */
|
|
47
|
+
|
|
48
|
+
/*! ../IconButton */
|
|
49
|
+
|
|
50
|
+
/*! ../Install/img/npm.svg */
|
|
51
|
+
|
|
52
|
+
/*! ../Link */
|
|
53
|
+
|
|
54
|
+
/*! ../List */
|
|
55
|
+
|
|
56
|
+
/*! ../ListItem */
|
|
57
|
+
|
|
58
|
+
/*! ../ListItemText */
|
|
59
|
+
|
|
60
|
+
/*! ../Logo */
|
|
61
|
+
|
|
62
|
+
/*! ../MenuItem */
|
|
63
|
+
|
|
64
|
+
/*! ../NoItems */
|
|
65
|
+
|
|
66
|
+
/*! ../Paper */
|
|
67
|
+
|
|
68
|
+
/*! ../SvgIcon */
|
|
69
|
+
|
|
70
|
+
/*! ../Text */
|
|
71
|
+
|
|
72
|
+
/*! ../TextField */
|
|
73
|
+
|
|
74
|
+
/*! ../Tooltip */
|
|
75
|
+
|
|
76
|
+
/*! ../context */
|
|
77
|
+
|
|
78
|
+
/*! ../i18n/config */
|
|
79
|
+
|
|
80
|
+
/*! ../pages/Version */
|
|
81
|
+
|
|
82
|
+
/*! ../pages/Version/VersionContextProvider */
|
|
83
|
+
|
|
84
|
+
/*! ../pages/home */
|
|
85
|
+
|
|
86
|
+
/*! ./ActionBar */
|
|
87
|
+
|
|
88
|
+
/*! ./ActionBarAction */
|
|
89
|
+
|
|
90
|
+
/*! ./App */
|
|
91
|
+
|
|
92
|
+
/*! ./AppConfigurationProvider */
|
|
93
|
+
|
|
94
|
+
/*! ./AppRoute */
|
|
95
|
+
|
|
96
|
+
/*! ./Author */
|
|
97
|
+
|
|
98
|
+
/*! ./AutoComplete */
|
|
99
|
+
|
|
100
|
+
/*! ./Dependencies */
|
|
101
|
+
|
|
102
|
+
/*! ./Deprecated */
|
|
103
|
+
|
|
104
|
+
/*! ./DetailContainer */
|
|
105
|
+
|
|
106
|
+
/*! ./DetailContainerContent */
|
|
107
|
+
|
|
108
|
+
/*! ./DetailContainerContentReadme */
|
|
109
|
+
|
|
110
|
+
/*! ./DetailContainerTabs */
|
|
111
|
+
|
|
112
|
+
/*! ./DetailSidebar */
|
|
113
|
+
|
|
114
|
+
/*! ./DetailSidebarFundButton */
|
|
115
|
+
|
|
116
|
+
/*! ./DetailSidebarTitle */
|
|
117
|
+
|
|
118
|
+
/*! ./Developers */
|
|
119
|
+
|
|
120
|
+
/*! ./Developers/DevelopersTitle */
|
|
121
|
+
|
|
122
|
+
/*! ./DevelopersTitle */
|
|
123
|
+
|
|
124
|
+
/*! ./Dist */
|
|
125
|
+
|
|
126
|
+
/*! ./Earth */
|
|
127
|
+
|
|
128
|
+
/*! ./Engines */
|
|
129
|
+
|
|
130
|
+
/*! ./FileBinary */
|
|
131
|
+
|
|
132
|
+
/*! ./Footer */
|
|
133
|
+
|
|
134
|
+
/*! ./Header */
|
|
135
|
+
|
|
136
|
+
/*! ./HeaderGreetings */
|
|
137
|
+
|
|
138
|
+
/*! ./HeaderInfoDialog */
|
|
139
|
+
|
|
140
|
+
/*! ./HeaderLeft */
|
|
141
|
+
|
|
142
|
+
/*! ./HeaderMenu */
|
|
143
|
+
|
|
144
|
+
/*! ./HeaderRight */
|
|
145
|
+
|
|
146
|
+
/*! ./HeaderToolTip */
|
|
147
|
+
|
|
148
|
+
/*! ./HeaderToolTipIcon */
|
|
149
|
+
|
|
150
|
+
/*! ./Help */
|
|
151
|
+
|
|
152
|
+
/*! ./Home */
|
|
153
|
+
|
|
154
|
+
/*! ./IconButton */
|
|
155
|
+
|
|
156
|
+
/*! ./InputAdornment */
|
|
157
|
+
|
|
158
|
+
/*! ./Install */
|
|
159
|
+
|
|
160
|
+
/*! ./InstallListItem */
|
|
161
|
+
|
|
162
|
+
/*! ./Label */
|
|
163
|
+
|
|
164
|
+
/*! ./LanguageSwitch */
|
|
165
|
+
|
|
166
|
+
/*! ./Law */
|
|
167
|
+
|
|
168
|
+
/*! ./Loading */
|
|
169
|
+
|
|
170
|
+
/*! ./LoginDialog */
|
|
171
|
+
|
|
172
|
+
/*! ./LoginDialogCloseButton */
|
|
173
|
+
|
|
174
|
+
/*! ./LoginDialogForm */
|
|
175
|
+
|
|
176
|
+
/*! ./LoginDialogFormError */
|
|
177
|
+
|
|
178
|
+
/*! ./LoginDialogHeader */
|
|
179
|
+
|
|
180
|
+
/*! ./Logo */
|
|
181
|
+
|
|
182
|
+
/*! ./NoItems */
|
|
183
|
+
|
|
184
|
+
/*! ./NotFound */
|
|
185
|
+
|
|
186
|
+
/*! ./Package */
|
|
187
|
+
|
|
188
|
+
/*! ./PackageList */
|
|
189
|
+
|
|
190
|
+
/*! ./Readme */
|
|
191
|
+
|
|
192
|
+
/*! ./RegistryInfoContent */
|
|
193
|
+
|
|
194
|
+
/*! ./RegistryInfoDialog */
|
|
195
|
+
|
|
196
|
+
/*! ./Repository */
|
|
197
|
+
|
|
198
|
+
/*! ./ResetStyles */
|
|
199
|
+
|
|
200
|
+
/*! ./Search */
|
|
201
|
+
|
|
202
|
+
/*! ./SearchAdornment */
|
|
203
|
+
|
|
204
|
+
/*! ./Spinner */
|
|
205
|
+
|
|
206
|
+
/*! ./Tag */
|
|
207
|
+
|
|
208
|
+
/*! ./Text */
|
|
209
|
+
|
|
210
|
+
/*! ./TextConfig */
|
|
211
|
+
|
|
212
|
+
/*! ./TextField */
|
|
213
|
+
|
|
214
|
+
/*! ./ThemeContext */
|
|
215
|
+
|
|
216
|
+
/*! ./Time */
|
|
217
|
+
|
|
218
|
+
/*! ./Tooltip */
|
|
219
|
+
|
|
220
|
+
/*! ./UpLinks */
|
|
221
|
+
|
|
222
|
+
/*! ./Version */
|
|
223
|
+
|
|
224
|
+
/*! ./VersionLayout */
|
|
225
|
+
|
|
226
|
+
/*! ./Versions */
|
|
227
|
+
|
|
228
|
+
/*! ./VersionsHistoryList */
|
|
229
|
+
|
|
230
|
+
/*! ./VersionsTagList */
|
|
231
|
+
|
|
232
|
+
/*! ./configuration */
|
|
233
|
+
|
|
234
|
+
/*! ./context */
|
|
235
|
+
|
|
236
|
+
/*! ./crowdin/ui.json */
|
|
237
|
+
|
|
238
|
+
/*! ./design-tokens/StyleBaseline */
|
|
239
|
+
|
|
240
|
+
/*! ./design-tokens/ThemeProvider */
|
|
241
|
+
|
|
242
|
+
/*! ./download */
|
|
243
|
+
|
|
244
|
+
/*! ./enabledLanguages */
|
|
245
|
+
|
|
246
|
+
/*! ./get-route-package-name */
|
|
247
|
+
|
|
248
|
+
/*! ./get-unique-developer-values */
|
|
249
|
+
|
|
250
|
+
/*! ./img/git.png */
|
|
251
|
+
|
|
252
|
+
/*! ./img/logo-black-and-white.svg */
|
|
253
|
+
|
|
254
|
+
/*! ./img/logo.svg */
|
|
255
|
+
|
|
256
|
+
/*! ./img/node.png */
|
|
257
|
+
|
|
258
|
+
/*! ./img/npm.svg */
|
|
259
|
+
|
|
260
|
+
/*! ./img/package.svg */
|
|
261
|
+
|
|
262
|
+
/*! ./img/pnpm.svg */
|
|
263
|
+
|
|
264
|
+
/*! ./img/yarn.svg */
|
|
265
|
+
|
|
266
|
+
/*! ./load-dayjs-locale */
|
|
267
|
+
|
|
268
|
+
/*! ./login */
|
|
269
|
+
|
|
270
|
+
/*! ./manifest */
|
|
271
|
+
|
|
272
|
+
/*! ./models */
|
|
273
|
+
|
|
274
|
+
/*! ./packages */
|
|
275
|
+
|
|
276
|
+
/*! ./search */
|
|
277
|
+
|
|
278
|
+
/*! ./storage */
|
|
279
|
+
|
|
280
|
+
/*! ./store */
|
|
281
|
+
|
|
282
|
+
/*! ./styles */
|
|
283
|
+
|
|
284
|
+
/*! ./theme */
|
|
285
|
+
|
|
286
|
+
/*! ./useAutoComplete */
|
|
287
|
+
|
|
288
|
+
/*! ./useLocalStorage */
|
|
289
|
+
|
|
290
|
+
/*! ./utils/loadable */
|
|
291
|
+
|
|
292
|
+
/*! ./version-config */
|
|
293
|
+
|
|
294
|
+
/*! @babel/runtime/helpers/asyncToGenerator */
|
|
295
|
+
|
|
296
|
+
/*! @babel/runtime/helpers/classCallCheck */
|
|
297
|
+
|
|
298
|
+
/*! @babel/runtime/helpers/createClass */
|
|
299
|
+
|
|
300
|
+
/*! @babel/runtime/helpers/defineProperty */
|
|
301
|
+
|
|
302
|
+
/*! @babel/runtime/helpers/extends */
|
|
303
|
+
|
|
304
|
+
/*! @babel/runtime/helpers/objectWithoutProperties */
|
|
305
|
+
|
|
306
|
+
/*! @babel/runtime/helpers/slicedToArray */
|
|
307
|
+
|
|
308
|
+
/*! @babel/runtime/helpers/toConsumableArray */
|
|
309
|
+
|
|
310
|
+
/*! @babel/runtime/helpers/typeof */
|
|
311
|
+
|
|
312
|
+
/*! @babel/runtime/regenerator */
|
|
313
|
+
|
|
314
|
+
/*! @emotion/core */
|
|
315
|
+
|
|
316
|
+
/*! @emotion/styled-base */
|
|
317
|
+
|
|
318
|
+
/*! @material-ui/core/Accordion */
|
|
319
|
+
|
|
320
|
+
/*! @material-ui/core/AccordionDetails */
|
|
321
|
+
|
|
322
|
+
/*! @material-ui/core/AccordionSummary */
|
|
323
|
+
|
|
324
|
+
/*! @material-ui/core/AppBar */
|
|
325
|
+
|
|
326
|
+
/*! @material-ui/core/Avatar */
|
|
327
|
+
|
|
328
|
+
/*! @material-ui/core/Box */
|
|
329
|
+
|
|
330
|
+
/*! @material-ui/core/Button */
|
|
331
|
+
|
|
332
|
+
/*! @material-ui/core/Card */
|
|
333
|
+
|
|
334
|
+
/*! @material-ui/core/CardActions */
|
|
335
|
+
|
|
336
|
+
/*! @material-ui/core/CardContent */
|
|
337
|
+
|
|
338
|
+
/*! @material-ui/core/Chip */
|
|
339
|
+
|
|
340
|
+
/*! @material-ui/core/CircularProgress */
|
|
341
|
+
|
|
342
|
+
/*! @material-ui/core/CssBaseline */
|
|
343
|
+
|
|
344
|
+
/*! @material-ui/core/Dialog */
|
|
345
|
+
|
|
346
|
+
/*! @material-ui/core/DialogActions */
|
|
347
|
+
|
|
348
|
+
/*! @material-ui/core/DialogContent */
|
|
349
|
+
|
|
350
|
+
/*! @material-ui/core/DialogTitle */
|
|
351
|
+
|
|
352
|
+
/*! @material-ui/core/Divider */
|
|
353
|
+
|
|
354
|
+
/*! @material-ui/core/Fab */
|
|
355
|
+
|
|
356
|
+
/*! @material-ui/core/Grid */
|
|
357
|
+
|
|
358
|
+
/*! @material-ui/core/IconButton */
|
|
359
|
+
|
|
360
|
+
/*! @material-ui/core/InputAdornment */
|
|
361
|
+
|
|
362
|
+
/*! @material-ui/core/Link */
|
|
363
|
+
|
|
364
|
+
/*! @material-ui/core/List */
|
|
365
|
+
|
|
366
|
+
/*! @material-ui/core/ListItem */
|
|
367
|
+
|
|
368
|
+
/*! @material-ui/core/ListItemText */
|
|
369
|
+
|
|
370
|
+
/*! @material-ui/core/Menu */
|
|
371
|
+
|
|
372
|
+
/*! @material-ui/core/MenuItem */
|
|
373
|
+
|
|
374
|
+
/*! @material-ui/core/Paper */
|
|
375
|
+
|
|
376
|
+
/*! @material-ui/core/SnackbarContent */
|
|
377
|
+
|
|
378
|
+
/*! @material-ui/core/SvgIcon */
|
|
379
|
+
|
|
380
|
+
/*! @material-ui/core/Tab */
|
|
381
|
+
|
|
382
|
+
/*! @material-ui/core/Tabs */
|
|
383
|
+
|
|
384
|
+
/*! @material-ui/core/TextField */
|
|
385
|
+
|
|
386
|
+
/*! @material-ui/core/Toolbar */
|
|
387
|
+
|
|
388
|
+
/*! @material-ui/core/Tooltip */
|
|
389
|
+
|
|
390
|
+
/*! @material-ui/core/Typography */
|
|
391
|
+
|
|
392
|
+
/*! @material-ui/core/styles */
|
|
393
|
+
|
|
394
|
+
/*! @material-ui/core/styles/createMuiTheme */
|
|
395
|
+
|
|
396
|
+
/*! @material-ui/icons/AccountCircle */
|
|
397
|
+
|
|
398
|
+
/*! @material-ui/icons/Add */
|
|
399
|
+
|
|
400
|
+
/*! @material-ui/icons/BugReport */
|
|
401
|
+
|
|
402
|
+
/*! @material-ui/icons/Close */
|
|
403
|
+
|
|
404
|
+
/*! @material-ui/icons/CloudDownload */
|
|
405
|
+
|
|
406
|
+
/*! @material-ui/icons/Error */
|
|
407
|
+
|
|
408
|
+
/*! @material-ui/icons/ExpandMore */
|
|
409
|
+
|
|
410
|
+
/*! @material-ui/icons/Favorite */
|
|
411
|
+
|
|
412
|
+
/*! @material-ui/icons/FileCopy */
|
|
413
|
+
|
|
414
|
+
/*! @material-ui/icons/Help */
|
|
415
|
+
|
|
416
|
+
/*! @material-ui/icons/Home */
|
|
417
|
+
|
|
418
|
+
/*! @material-ui/icons/Info */
|
|
419
|
+
|
|
420
|
+
/*! @material-ui/icons/Language */
|
|
421
|
+
|
|
422
|
+
/*! @material-ui/icons/LockOutlined */
|
|
423
|
+
|
|
424
|
+
/*! @material-ui/icons/NightsStay */
|
|
425
|
+
|
|
426
|
+
/*! @material-ui/icons/Search */
|
|
427
|
+
|
|
428
|
+
/*! @material-ui/icons/WbSunny */
|
|
429
|
+
|
|
430
|
+
/*! @material-ui/styles */
|
|
431
|
+
|
|
432
|
+
/*! @rematch/core */
|
|
433
|
+
|
|
434
|
+
/*! @rematch/loading */
|
|
435
|
+
|
|
436
|
+
/*! autosuggest-highlight/match */
|
|
437
|
+
|
|
438
|
+
/*! autosuggest-highlight/parse */
|
|
439
|
+
|
|
440
|
+
/*! country-flag-icons/react/3x2 */
|
|
441
|
+
|
|
442
|
+
/*! dayjs */
|
|
443
|
+
|
|
444
|
+
/*! dayjs/locale/cs */
|
|
445
|
+
|
|
446
|
+
/*! dayjs/locale/de */
|
|
447
|
+
|
|
448
|
+
/*! dayjs/locale/en */
|
|
449
|
+
|
|
450
|
+
/*! dayjs/locale/es */
|
|
451
|
+
|
|
452
|
+
/*! dayjs/locale/fr */
|
|
453
|
+
|
|
454
|
+
/*! dayjs/locale/ja */
|
|
455
|
+
|
|
456
|
+
/*! dayjs/locale/pt-br */
|
|
457
|
+
|
|
458
|
+
/*! dayjs/locale/ru */
|
|
459
|
+
|
|
460
|
+
/*! dayjs/locale/tr */
|
|
461
|
+
|
|
462
|
+
/*! dayjs/locale/uk */
|
|
463
|
+
|
|
464
|
+
/*! dayjs/locale/zh-cn */
|
|
465
|
+
|
|
466
|
+
/*! dayjs/locale/zh-tw */
|
|
467
|
+
|
|
468
|
+
/*! dayjs/plugin/localizedFormat */
|
|
469
|
+
|
|
470
|
+
/*! dayjs/plugin/relativeTime */
|
|
471
|
+
|
|
472
|
+
/*! emotion-theming */
|
|
473
|
+
|
|
474
|
+
/*! github-markdown-css */
|
|
475
|
+
|
|
476
|
+
/*! history */
|
|
477
|
+
|
|
478
|
+
/*! i18next */
|
|
479
|
+
|
|
480
|
+
/*! localstorage-memory */
|
|
481
|
+
|
|
482
|
+
/*! lodash/debounce */
|
|
483
|
+
|
|
484
|
+
/*! lodash/isEmpty */
|
|
485
|
+
|
|
486
|
+
/*! lodash/isNil */
|
|
487
|
+
|
|
488
|
+
/*! lodash/isString */
|
|
489
|
+
|
|
490
|
+
/*! normalize.css */
|
|
491
|
+
|
|
492
|
+
/*! react */
|
|
493
|
+
|
|
494
|
+
/*! react-autosuggest */
|
|
495
|
+
|
|
496
|
+
/*! react-dom */
|
|
497
|
+
|
|
498
|
+
/*! react-hook-form */
|
|
499
|
+
|
|
500
|
+
/*! react-hot-loader */
|
|
501
|
+
|
|
502
|
+
/*! react-i18next */
|
|
503
|
+
|
|
504
|
+
/*! react-redux */
|
|
505
|
+
|
|
506
|
+
/*! react-router */
|
|
507
|
+
|
|
508
|
+
/*! react-router-dom */
|
|
509
|
+
|
|
510
|
+
/*! react-virtualized/dist/commonjs/AutoSizer */
|
|
511
|
+
|
|
512
|
+
/*! react-virtualized/dist/commonjs/CellMeasurer */
|
|
513
|
+
|
|
514
|
+
/*! react-virtualized/dist/commonjs/List */
|
|
515
|
+
|
|
516
|
+
/*! react-virtualized/dist/commonjs/WindowScroller */
|
|
517
|
+
|
|
518
|
+
/*! validator/lib/isEmail */
|
|
519
|
+
|
|
520
|
+
/*! validator/lib/isURL */
|
|
521
|
+
|
|
522
|
+
/*! verdaccio-ui/components/ActionBar */
|
|
523
|
+
|
|
524
|
+
/*! verdaccio-ui/components/AppBar */
|
|
525
|
+
|
|
526
|
+
/*! verdaccio-ui/components/Author */
|
|
527
|
+
|
|
528
|
+
/*! verdaccio-ui/components/AutoComplete */
|
|
529
|
+
|
|
530
|
+
/*! verdaccio-ui/components/AutoComplete/AutoCompleteV2 */
|
|
531
|
+
|
|
532
|
+
/*! verdaccio-ui/components/Avatar */
|
|
533
|
+
|
|
534
|
+
/*! verdaccio-ui/components/Box */
|
|
535
|
+
|
|
536
|
+
/*! verdaccio-ui/components/Button */
|
|
537
|
+
|
|
538
|
+
/*! verdaccio-ui/components/Card */
|
|
539
|
+
|
|
540
|
+
/*! verdaccio-ui/components/CardActions */
|
|
541
|
+
|
|
542
|
+
/*! verdaccio-ui/components/CardContent */
|
|
543
|
+
|
|
544
|
+
/*! verdaccio-ui/components/Chip */
|
|
545
|
+
|
|
546
|
+
/*! verdaccio-ui/components/CopyToClipBoard */
|
|
547
|
+
|
|
548
|
+
/*! verdaccio-ui/components/Dialog */
|
|
549
|
+
|
|
550
|
+
/*! verdaccio-ui/components/DialogActions */
|
|
551
|
+
|
|
552
|
+
/*! verdaccio-ui/components/DialogContent */
|
|
553
|
+
|
|
554
|
+
/*! verdaccio-ui/components/DialogTitle */
|
|
555
|
+
|
|
556
|
+
/*! verdaccio-ui/components/Divider */
|
|
557
|
+
|
|
558
|
+
/*! verdaccio-ui/components/FloatingActionButton */
|
|
559
|
+
|
|
560
|
+
/*! verdaccio-ui/components/Grid */
|
|
561
|
+
|
|
562
|
+
/*! verdaccio-ui/components/Heading */
|
|
563
|
+
|
|
564
|
+
/*! verdaccio-ui/components/IconButton */
|
|
565
|
+
|
|
566
|
+
/*! verdaccio-ui/components/Icons */
|
|
567
|
+
|
|
568
|
+
/*! verdaccio-ui/components/InputAdornment */
|
|
569
|
+
|
|
570
|
+
/*! verdaccio-ui/components/Label */
|
|
571
|
+
|
|
572
|
+
/*! verdaccio-ui/components/Link */
|
|
573
|
+
|
|
574
|
+
/*! verdaccio-ui/components/List */
|
|
575
|
+
|
|
576
|
+
/*! verdaccio-ui/components/ListItem */
|
|
577
|
+
|
|
578
|
+
/*! verdaccio-ui/components/ListItemText */
|
|
579
|
+
|
|
580
|
+
/*! verdaccio-ui/components/Loading */
|
|
581
|
+
|
|
582
|
+
/*! verdaccio-ui/components/Logo */
|
|
583
|
+
|
|
584
|
+
/*! verdaccio-ui/components/Menu */
|
|
585
|
+
|
|
586
|
+
/*! verdaccio-ui/components/MenuItem */
|
|
587
|
+
|
|
588
|
+
/*! verdaccio-ui/components/NotFound */
|
|
589
|
+
|
|
590
|
+
/*! verdaccio-ui/components/Paper */
|
|
591
|
+
|
|
592
|
+
/*! verdaccio-ui/components/SnackbarContent */
|
|
593
|
+
|
|
594
|
+
/*! verdaccio-ui/components/Tab */
|
|
595
|
+
|
|
596
|
+
/*! verdaccio-ui/components/Tabs */
|
|
597
|
+
|
|
598
|
+
/*! verdaccio-ui/components/Text */
|
|
599
|
+
|
|
600
|
+
/*! verdaccio-ui/components/TextField */
|
|
601
|
+
|
|
602
|
+
/*! verdaccio-ui/components/Toolbar */
|
|
603
|
+
|
|
604
|
+
/*! verdaccio-ui/components/Tooltip */
|
|
605
|
+
|
|
606
|
+
/*! verdaccio-ui/design-tokens/StyleBaseline */
|
|
607
|
+
|
|
608
|
+
/*! verdaccio-ui/design-tokens/ThemeContext */
|
|
609
|
+
|
|
610
|
+
/*! verdaccio-ui/design-tokens/load-dayjs-locale */
|
|
611
|
+
|
|
612
|
+
/*! verdaccio-ui/design-tokens/useOnClickOutside */
|
|
613
|
+
|
|
614
|
+
/*! verdaccio-ui/providers/config */
|
|
615
|
+
|
|
616
|
+
/*! verdaccio-ui/utils/cli-utils */
|
|
617
|
+
|
|
618
|
+
/*! verdaccio-ui/utils/colors */
|
|
619
|
+
|
|
620
|
+
/*! verdaccio-ui/utils/constants */
|
|
621
|
+
|
|
622
|
+
/*! verdaccio-ui/utils/file-size */
|
|
623
|
+
|
|
624
|
+
/*! verdaccio-ui/utils/package */
|
|
625
|
+
|
|
626
|
+
/*! verdaccio-ui/utils/sec-utils */
|
|
627
|
+
|
|
628
|
+
/*! verdaccio-ui/utils/url */
|
|
629
|
+
|
|
630
|
+
/*! verdaccio-ui/utils/windows */
|
|
631
|
+
|
|
632
|
+
/*! xss */
|
|
633
|
+
|
|
634
|
+
/*!***********************!*\
|
|
635
|
+
!*** ./src/index.tsx ***!
|
|
636
|
+
\***********************/
|
|
637
|
+
|
|
638
|
+
/*!************************!*\
|
|
639
|
+
!*** ./types/index.ts ***!
|
|
640
|
+
\************************/
|
|
641
|
+
|
|
642
|
+
/*!*************************!*\
|
|
643
|
+
!*** ./src/App/App.tsx ***!
|
|
644
|
+
\*************************/
|
|
645
|
+
|
|
646
|
+
/*!**************************!*\
|
|
647
|
+
!*** ./lib/constants.ts ***!
|
|
648
|
+
\**************************/
|
|
649
|
+
|
|
650
|
+
/*!**************************!*\
|
|
651
|
+
!*** ./src/App/index.ts ***!
|
|
652
|
+
\**************************/
|
|
653
|
+
|
|
654
|
+
/*!**************************!*\
|
|
655
|
+
!*** ./src/utils/url.ts ***!
|
|
656
|
+
\**************************/
|
|
657
|
+
|
|
658
|
+
/*!****************************!*\
|
|
659
|
+
!*** ./src/i18n/config.ts ***!
|
|
660
|
+
\****************************/
|
|
661
|
+
|
|
662
|
+
/*!****************************!*\
|
|
663
|
+
!*** ./src/store/index.ts ***!
|
|
664
|
+
\****************************/
|
|
665
|
+
|
|
666
|
+
/*!****************************!*\
|
|
667
|
+
!*** ./src/store/store.ts ***!
|
|
668
|
+
\****************************/
|
|
669
|
+
|
|
670
|
+
/*!*****************************!*\
|
|
671
|
+
!*** ./src/utils/colors.ts ***!
|
|
672
|
+
\*****************************/
|
|
673
|
+
|
|
674
|
+
/*!******************************!*\
|
|
675
|
+
!*** ./src/App/AppRoute.tsx ***!
|
|
676
|
+
\******************************/
|
|
677
|
+
|
|
678
|
+
/*!******************************!*\
|
|
679
|
+
!*** ./src/lib/constants.ts ***!
|
|
680
|
+
\******************************/
|
|
681
|
+
|
|
682
|
+
/*!******************************!*\
|
|
683
|
+
!*** ./src/utils/package.ts ***!
|
|
684
|
+
\******************************/
|
|
685
|
+
|
|
686
|
+
/*!******************************!*\
|
|
687
|
+
!*** ./src/utils/storage.ts ***!
|
|
688
|
+
\******************************/
|
|
689
|
+
|
|
690
|
+
/*!******************************!*\
|
|
691
|
+
!*** ./src/utils/windows.ts ***!
|
|
692
|
+
\******************************/
|
|
693
|
+
|
|
694
|
+
/*!********************************!*\
|
|
695
|
+
!*** ./src/components/Box.tsx ***!
|
|
696
|
+
\********************************/
|
|
697
|
+
|
|
698
|
+
/*!********************************!*\
|
|
699
|
+
!*** ./src/components/Tab.tsx ***!
|
|
700
|
+
\********************************/
|
|
701
|
+
|
|
702
|
+
/*!********************************!*\
|
|
703
|
+
!*** ./src/utils/cli-utils.ts ***!
|
|
704
|
+
\********************************/
|
|
705
|
+
|
|
706
|
+
/*!********************************!*\
|
|
707
|
+
!*** ./src/utils/constants.ts ***!
|
|
708
|
+
\********************************/
|
|
709
|
+
|
|
710
|
+
/*!********************************!*\
|
|
711
|
+
!*** ./src/utils/file-size.ts ***!
|
|
712
|
+
\********************************/
|
|
713
|
+
|
|
714
|
+
/*!********************************!*\
|
|
715
|
+
!*** ./src/utils/sec-utils.ts ***!
|
|
716
|
+
\********************************/
|
|
717
|
+
|
|
718
|
+
/*!*********************************!*\
|
|
719
|
+
!*** ./src/App/Footer/index.ts ***!
|
|
720
|
+
\*********************************/
|
|
721
|
+
|
|
722
|
+
/*!*********************************!*\
|
|
723
|
+
!*** ./src/App/Header/index.ts ***!
|
|
724
|
+
\*********************************/
|
|
725
|
+
|
|
726
|
+
/*!*********************************!*\
|
|
727
|
+
!*** ./src/components/Card.tsx ***!
|
|
728
|
+
\*********************************/
|
|
729
|
+
|
|
730
|
+
/*!*********************************!*\
|
|
731
|
+
!*** ./src/components/Chip.tsx ***!
|
|
732
|
+
\*********************************/
|
|
733
|
+
|
|
734
|
+
/*!*********************************!*\
|
|
735
|
+
!*** ./src/components/Grid.tsx ***!
|
|
736
|
+
\*********************************/
|
|
737
|
+
|
|
738
|
+
/*!*********************************!*\
|
|
739
|
+
!*** ./src/components/Link.tsx ***!
|
|
740
|
+
\*********************************/
|
|
741
|
+
|
|
742
|
+
/*!*********************************!*\
|
|
743
|
+
!*** ./src/components/List.tsx ***!
|
|
744
|
+
\*********************************/
|
|
745
|
+
|
|
746
|
+
/*!*********************************!*\
|
|
747
|
+
!*** ./src/components/Menu.tsx ***!
|
|
748
|
+
\*********************************/
|
|
749
|
+
|
|
750
|
+
/*!*********************************!*\
|
|
751
|
+
!*** ./src/components/Tabs.tsx ***!
|
|
752
|
+
\*********************************/
|
|
753
|
+
|
|
754
|
+
/*!*********************************!*\
|
|
755
|
+
!*** ./src/pages/home/Home.tsx ***!
|
|
756
|
+
\*********************************/
|
|
757
|
+
|
|
758
|
+
/*!*********************************!*\
|
|
759
|
+
!*** ./src/pages/home/index.ts ***!
|
|
760
|
+
\*********************************/
|
|
761
|
+
|
|
762
|
+
/*!**********************************!*\
|
|
763
|
+
!*** ./src/App/Footer/styles.ts ***!
|
|
764
|
+
\**********************************/
|
|
765
|
+
|
|
766
|
+
/*!**********************************!*\
|
|
767
|
+
!*** ./src/App/Header/styles.ts ***!
|
|
768
|
+
\**********************************/
|
|
769
|
+
|
|
770
|
+
/*!**********************************!*\
|
|
771
|
+
!*** ./src/components/Paper.tsx ***!
|
|
772
|
+
\**********************************/
|
|
773
|
+
|
|
774
|
+
/*!**********************************!*\
|
|
775
|
+
!*** ./src/i18n/crowdin/ui.json ***!
|
|
776
|
+
\**********************************/
|
|
777
|
+
|
|
778
|
+
/*!**********************************!*\
|
|
779
|
+
!*** ./src/providers/API/api.ts ***!
|
|
780
|
+
\**********************************/
|
|
781
|
+
|
|
782
|
+
/*!***********************************!*\
|
|
783
|
+
!*** ./src/App/Footer/Footer.tsx ***!
|
|
784
|
+
\***********************************/
|
|
785
|
+
|
|
786
|
+
/*!***********************************!*\
|
|
787
|
+
!*** ./src/App/Header/Header.tsx ***!
|
|
788
|
+
\***********************************/
|
|
789
|
+
|
|
790
|
+
/*!***********************************!*\
|
|
791
|
+
!*** ./src/components/AppBar.tsx ***!
|
|
792
|
+
\***********************************/
|
|
793
|
+
|
|
794
|
+
/*!***********************************!*\
|
|
795
|
+
!*** ./src/components/Avatar.tsx ***!
|
|
796
|
+
\***********************************/
|
|
797
|
+
|
|
798
|
+
/*!***********************************!*\
|
|
799
|
+
!*** ./src/components/Button.tsx ***!
|
|
800
|
+
\***********************************/
|
|
801
|
+
|
|
802
|
+
/*!***********************************!*\
|
|
803
|
+
!*** ./src/components/Dialog.tsx ***!
|
|
804
|
+
\***********************************/
|
|
805
|
+
|
|
806
|
+
/*!***********************************!*\
|
|
807
|
+
!*** ./src/store/models/index.ts ***!
|
|
808
|
+
\***********************************/
|
|
809
|
+
|
|
810
|
+
/*!***********************************!*\
|
|
811
|
+
!*** ./src/store/models/login.ts ***!
|
|
812
|
+
\***********************************/
|
|
813
|
+
|
|
814
|
+
/*!************************************!*\
|
|
815
|
+
!*** ./src/App/utils/loadable.tsx ***!
|
|
816
|
+
\************************************/
|
|
817
|
+
|
|
818
|
+
/*!************************************!*\
|
|
819
|
+
!*** ./src/components/Divider.tsx ***!
|
|
820
|
+
\************************************/
|
|
821
|
+
|
|
822
|
+
/*!************************************!*\
|
|
823
|
+
!*** ./src/components/Heading.tsx ***!
|
|
824
|
+
\************************************/
|
|
825
|
+
|
|
826
|
+
/*!************************************!*\
|
|
827
|
+
!*** ./src/components/SvgIcon.tsx ***!
|
|
828
|
+
\************************************/
|
|
829
|
+
|
|
830
|
+
/*!************************************!*\
|
|
831
|
+
!*** ./src/components/Toolbar.tsx ***!
|
|
832
|
+
\************************************/
|
|
833
|
+
|
|
834
|
+
/*!************************************!*\
|
|
835
|
+
!*** ./src/components/Tooltip.tsx ***!
|
|
836
|
+
\************************************/
|
|
837
|
+
|
|
838
|
+
/*!************************************!*\
|
|
839
|
+
!*** ./src/design-tokens/theme.ts ***!
|
|
840
|
+
\************************************/
|
|
841
|
+
|
|
842
|
+
/*!************************************!*\
|
|
843
|
+
!*** ./src/pages/Version/index.ts ***!
|
|
844
|
+
\************************************/
|
|
845
|
+
|
|
846
|
+
/*!************************************!*\
|
|
847
|
+
!*** ./src/store/models/search.ts ***!
|
|
848
|
+
\************************************/
|
|
849
|
+
|
|
850
|
+
/*!*************************************!*\
|
|
851
|
+
!*** ./src/components/ListItem.tsx ***!
|
|
852
|
+
\*************************************/
|
|
853
|
+
|
|
854
|
+
/*!*************************************!*\
|
|
855
|
+
!*** ./src/components/MenuItem.tsx ***!
|
|
856
|
+
\*************************************/
|
|
857
|
+
|
|
858
|
+
/*!**************************************!*\
|
|
859
|
+
!*** ./src/components/Icons/Law.tsx ***!
|
|
860
|
+
\**************************************/
|
|
861
|
+
|
|
862
|
+
/*!**************************************!*\
|
|
863
|
+
!*** ./src/components/Logo/Logo.tsx ***!
|
|
864
|
+
\**************************************/
|
|
865
|
+
|
|
866
|
+
/*!**************************************!*\
|
|
867
|
+
!*** ./src/components/Logo/index.ts ***!
|
|
868
|
+
\**************************************/
|
|
869
|
+
|
|
870
|
+
/*!**************************************!*\
|
|
871
|
+
!*** ./src/components/Text/Text.tsx ***!
|
|
872
|
+
\**************************************/
|
|
873
|
+
|
|
874
|
+
/*!**************************************!*\
|
|
875
|
+
!*** ./src/components/Text/index.ts ***!
|
|
876
|
+
\**************************************/
|
|
877
|
+
|
|
878
|
+
/*!**************************************!*\
|
|
879
|
+
!*** ./src/i18n/enabledLanguages.ts ***!
|
|
880
|
+
\**************************************/
|
|
881
|
+
|
|
882
|
+
/*!**************************************!*\
|
|
883
|
+
!*** ./src/pages/Version/context.ts ***!
|
|
884
|
+
\**************************************/
|
|
885
|
+
|
|
886
|
+
/*!**************************************!*\
|
|
887
|
+
!*** ./src/providers/API/storage.ts ***!
|
|
888
|
+
\**************************************/
|
|
889
|
+
|
|
890
|
+
/*!**************************************!*\
|
|
891
|
+
!*** ./src/store/models/download.ts ***!
|
|
892
|
+
\**************************************/
|
|
893
|
+
|
|
894
|
+
/*!**************************************!*\
|
|
895
|
+
!*** ./src/store/models/manifest.ts ***!
|
|
896
|
+
\**************************************/
|
|
897
|
+
|
|
898
|
+
/*!**************************************!*\
|
|
899
|
+
!*** ./src/store/models/packages.ts ***!
|
|
900
|
+
\**************************************/
|
|
901
|
+
|
|
902
|
+
/*!***************************************!*\
|
|
903
|
+
!*** ./src/App/Header/HeaderLeft.tsx ***!
|
|
904
|
+
\***************************************/
|
|
905
|
+
|
|
906
|
+
/*!***************************************!*\
|
|
907
|
+
!*** ./src/App/Header/HeaderMenu.tsx ***!
|
|
908
|
+
\***************************************/
|
|
909
|
+
|
|
910
|
+
/*!***************************************!*\
|
|
911
|
+
!*** ./src/components/IconButton.tsx ***!
|
|
912
|
+
\***************************************/
|
|
913
|
+
|
|
914
|
+
/*!***************************************!*\
|
|
915
|
+
!*** ./src/components/Icons/Time.tsx ***!
|
|
916
|
+
\***************************************/
|
|
917
|
+
|
|
918
|
+
/*!***************************************!*\
|
|
919
|
+
!*** ./src/components/Icons/index.ts ***!
|
|
920
|
+
\***************************************/
|
|
921
|
+
|
|
922
|
+
/*!***************************************!*\
|
|
923
|
+
!*** ./src/components/Label/index.ts ***!
|
|
924
|
+
\***************************************/
|
|
925
|
+
|
|
926
|
+
/*!***************************************!*\
|
|
927
|
+
!*** ./src/pages/Version/Version.tsx ***!
|
|
928
|
+
\***************************************/
|
|
929
|
+
|
|
930
|
+
/*!***************************************!*\
|
|
931
|
+
!*** ./src/providers/config/index.ts ***!
|
|
932
|
+
\***************************************/
|
|
933
|
+
|
|
934
|
+
/*!****************************************!*\
|
|
935
|
+
!*** ./src/App/Header/HeaderRight.tsx ***!
|
|
936
|
+
\****************************************/
|
|
937
|
+
|
|
938
|
+
/*!****************************************!*\
|
|
939
|
+
!*** ./src/App/Header/Search/index.ts ***!
|
|
940
|
+
\****************************************/
|
|
941
|
+
|
|
942
|
+
/*!****************************************!*\
|
|
943
|
+
!*** ./src/components/Author/index.ts ***!
|
|
944
|
+
\****************************************/
|
|
945
|
+
|
|
946
|
+
/*!****************************************!*\
|
|
947
|
+
!*** ./src/components/CardActions.tsx ***!
|
|
948
|
+
\****************************************/
|
|
949
|
+
|
|
950
|
+
/*!****************************************!*\
|
|
951
|
+
!*** ./src/components/CardContent.tsx ***!
|
|
952
|
+
\****************************************/
|
|
953
|
+
|
|
954
|
+
/*!****************************************!*\
|
|
955
|
+
!*** ./src/components/DialogTitle.tsx ***!
|
|
956
|
+
\****************************************/
|
|
957
|
+
|
|
958
|
+
/*!****************************************!*\
|
|
959
|
+
!*** ./src/components/Icons/Earth.tsx ***!
|
|
960
|
+
\****************************************/
|
|
961
|
+
|
|
962
|
+
/*!****************************************!*\
|
|
963
|
+
!*** ./src/components/Label/Label.tsx ***!
|
|
964
|
+
\****************************************/
|
|
965
|
+
|
|
966
|
+
/*!*****************************************!*\
|
|
967
|
+
!*** ./src/components/Author/styles.ts ***!
|
|
968
|
+
\*****************************************/
|
|
969
|
+
|
|
970
|
+
/*!*****************************************!*\
|
|
971
|
+
!*** ./src/components/ListItemText.tsx ***!
|
|
972
|
+
\*****************************************/
|
|
973
|
+
|
|
974
|
+
/*!*****************************************!*\
|
|
975
|
+
!*** ./src/components/Loading/index.ts ***!
|
|
976
|
+
\*****************************************/
|
|
977
|
+
|
|
978
|
+
/*!******************************************!*\
|
|
979
|
+
!*** ./src/App/Header/HeaderToolTip.tsx ***!
|
|
980
|
+
\******************************************/
|
|
981
|
+
|
|
982
|
+
/*!******************************************!*\
|
|
983
|
+
!*** ./src/App/Header/Search/Search.tsx ***!
|
|
984
|
+
\******************************************/
|
|
985
|
+
|
|
986
|
+
/*!******************************************!*\
|
|
987
|
+
!*** ./src/components/Author/Author.tsx ***!
|
|
988
|
+
\******************************************/
|
|
989
|
+
|
|
990
|
+
/*!******************************************!*\
|
|
991
|
+
!*** ./src/components/DialogActions.tsx ***!
|
|
992
|
+
\******************************************/
|
|
993
|
+
|
|
994
|
+
/*!******************************************!*\
|
|
995
|
+
!*** ./src/components/DialogContent.tsx ***!
|
|
996
|
+
\******************************************/
|
|
997
|
+
|
|
998
|
+
/*!******************************************!*\
|
|
999
|
+
!*** ./src/components/Icons/Version.tsx ***!
|
|
1000
|
+
\******************************************/
|
|
1001
|
+
|
|
1002
|
+
/*!******************************************!*\
|
|
1003
|
+
!*** ./src/components/Loading/styles.ts ***!
|
|
1004
|
+
\******************************************/
|
|
1005
|
+
|
|
1006
|
+
/*!******************************************!*\
|
|
1007
|
+
!*** ./src/components/Logo/img/logo.svg ***!
|
|
1008
|
+
\******************************************/
|
|
1009
|
+
|
|
1010
|
+
/*!******************************************!*\
|
|
1011
|
+
!*** ./src/components/NotFound/index.ts ***!
|
|
1012
|
+
\******************************************/
|
|
1013
|
+
|
|
1014
|
+
/*!*******************************************!*\
|
|
1015
|
+
!*** ./src/App/Header/LanguageSwitch.tsx ***!
|
|
1016
|
+
\*******************************************/
|
|
1017
|
+
|
|
1018
|
+
/*!*******************************************!*\
|
|
1019
|
+
!*** ./src/components/ActionBar/index.ts ***!
|
|
1020
|
+
\*******************************************/
|
|
1021
|
+
|
|
1022
|
+
/*!*******************************************!*\
|
|
1023
|
+
!*** ./src/components/Text/TextConfig.ts ***!
|
|
1024
|
+
\*******************************************/
|
|
1025
|
+
|
|
1026
|
+
/*!*******************************************!*\
|
|
1027
|
+
!*** ./src/components/TextField/index.ts ***!
|
|
1028
|
+
\*******************************************/
|
|
1029
|
+
|
|
1030
|
+
/*!*******************************************!*\
|
|
1031
|
+
!*** ./src/design-tokens/ResetStyles.tsx ***!
|
|
1032
|
+
\*******************************************/
|
|
1033
|
+
|
|
1034
|
+
/*!*******************************************!*\
|
|
1035
|
+
!*** ./src/design-tokens/ThemeContext.ts ***!
|
|
1036
|
+
\*******************************************/
|
|
1037
|
+
|
|
1038
|
+
/*!*******************************************!*\
|
|
1039
|
+
!*** ./src/store/models/configuration.ts ***!
|
|
1040
|
+
\*******************************************/
|
|
1041
|
+
|
|
1042
|
+
/*!********************************************!*\
|
|
1043
|
+
!*** ./src/App/Header/HeaderGreetings.tsx ***!
|
|
1044
|
+
\********************************************/
|
|
1045
|
+
|
|
1046
|
+
/*!********************************************!*\
|
|
1047
|
+
!*** ./src/components/CopyToClipBoard.tsx ***!
|
|
1048
|
+
\********************************************/
|
|
1049
|
+
|
|
1050
|
+
/*!********************************************!*\
|
|
1051
|
+
!*** ./src/components/Loading/Loading.tsx ***!
|
|
1052
|
+
\********************************************/
|
|
1053
|
+
|
|
1054
|
+
/*!********************************************!*\
|
|
1055
|
+
!*** ./src/components/SnackbarContent.tsx ***!
|
|
1056
|
+
\********************************************/
|
|
1057
|
+
|
|
1058
|
+
/*!*********************************************!*\
|
|
1059
|
+
!*** ./src/App/Header/HeaderInfoDialog.tsx ***!
|
|
1060
|
+
\*********************************************/
|
|
1061
|
+
|
|
1062
|
+
/*!*********************************************!*\
|
|
1063
|
+
!*** ./src/App/Header/LoginDialog/index.ts ***!
|
|
1064
|
+
\*********************************************/
|
|
1065
|
+
|
|
1066
|
+
/*!*********************************************!*\
|
|
1067
|
+
!*** ./src/components/CircularProgress.tsx ***!
|
|
1068
|
+
\*********************************************/
|
|
1069
|
+
|
|
1070
|
+
/*!*********************************************!*\
|
|
1071
|
+
!*** ./src/components/Icons/FileBinary.tsx ***!
|
|
1072
|
+
\*********************************************/
|
|
1073
|
+
|
|
1074
|
+
/*!*********************************************!*\
|
|
1075
|
+
!*** ./src/design-tokens/StyleBaseline.tsx ***!
|
|
1076
|
+
\*********************************************/
|
|
1077
|
+
|
|
1078
|
+
/*!*********************************************!*\
|
|
1079
|
+
!*** ./src/design-tokens/ThemeProvider.tsx ***!
|
|
1080
|
+
\*********************************************/
|
|
1081
|
+
|
|
1082
|
+
/*!*********************************************!*\
|
|
1083
|
+
!*** ./src/pages/Version/VersionLayout.tsx ***!
|
|
1084
|
+
\*********************************************/
|
|
1085
|
+
|
|
1086
|
+
/*!*********************************************!*\
|
|
1087
|
+
!*** ./src/pages/Version/version-config.ts ***!
|
|
1088
|
+
\*********************************************/
|
|
1089
|
+
|
|
1090
|
+
/*!*********************************************!*\
|
|
1091
|
+
!*** ./src/pages/home/PackageList/index.ts ***!
|
|
1092
|
+
\*********************************************/
|
|
1093
|
+
|
|
1094
|
+
/*!**********************************************!*\
|
|
1095
|
+
!*** ./src/App/Header/HeaderToolTipIcon.tsx ***!
|
|
1096
|
+
\**********************************************/
|
|
1097
|
+
|
|
1098
|
+
/*!**********************************************!*\
|
|
1099
|
+
!*** ./src/components/AutoComplete/index.ts ***!
|
|
1100
|
+
\**********************************************/
|
|
1101
|
+
|
|
1102
|
+
/*!**********************************************!*\
|
|
1103
|
+
!*** ./src/components/NotFound/NotFound.tsx ***!
|
|
1104
|
+
\**********************************************/
|
|
1105
|
+
|
|
1106
|
+
/*!**********************************************!*\
|
|
1107
|
+
!*** ./src/design-tokens/useLocalStorage.ts ***!
|
|
1108
|
+
\**********************************************/
|
|
1109
|
+
|
|
1110
|
+
/*!************************************************!*\
|
|
1111
|
+
!*** ./src/components/ActionBar/ActionBar.tsx ***!
|
|
1112
|
+
\************************************************/
|
|
1113
|
+
|
|
1114
|
+
/*!************************************************!*\
|
|
1115
|
+
!*** ./src/components/AutoComplete/styles.tsx ***!
|
|
1116
|
+
\************************************************/
|
|
1117
|
+
|
|
1118
|
+
/*!************************************************!*\
|
|
1119
|
+
!*** ./src/components/InputAdornment/index.ts ***!
|
|
1120
|
+
\************************************************/
|
|
1121
|
+
|
|
1122
|
+
/*!************************************************!*\
|
|
1123
|
+
!*** ./src/components/TextField/TextField.tsx ***!
|
|
1124
|
+
\************************************************/
|
|
1125
|
+
|
|
1126
|
+
/*!************************************************!*\
|
|
1127
|
+
!*** ./src/design-tokens/load-dayjs-locale.ts ***!
|
|
1128
|
+
\************************************************/
|
|
1129
|
+
|
|
1130
|
+
/*!************************************************!*\
|
|
1131
|
+
!*** ./src/design-tokens/useOnClickOutside.ts ***!
|
|
1132
|
+
\************************************************/
|
|
1133
|
+
|
|
1134
|
+
/*!*************************************************!*\
|
|
1135
|
+
!*** ./src/components/FloatingActionButton.tsx ***!
|
|
1136
|
+
\*************************************************/
|
|
1137
|
+
|
|
1138
|
+
/*!*************************************************!*\
|
|
1139
|
+
!*** ./src/components/NotFound/img/package.svg ***!
|
|
1140
|
+
\*************************************************/
|
|
1141
|
+
|
|
1142
|
+
/*!**************************************************!*\
|
|
1143
|
+
!*** ./src/components/Loading/Spinner/index.tsx ***!
|
|
1144
|
+
\**************************************************/
|
|
1145
|
+
|
|
1146
|
+
/*!**************************************************!*\
|
|
1147
|
+
!*** ./src/pages/Version/DetailSidebar/index.ts ***!
|
|
1148
|
+
\**************************************************/
|
|
1149
|
+
|
|
1150
|
+
/*!**************************************************!*\
|
|
1151
|
+
!*** ./src/pages/home/PackageList/Help/Help.tsx ***!
|
|
1152
|
+
\**************************************************/
|
|
1153
|
+
|
|
1154
|
+
/*!**************************************************!*\
|
|
1155
|
+
!*** ./src/pages/home/PackageList/Help/index.ts ***!
|
|
1156
|
+
\**************************************************/
|
|
1157
|
+
|
|
1158
|
+
/*!***************************************************!*\
|
|
1159
|
+
!*** ./src/App/Header/Search/SearchAdornment.tsx ***!
|
|
1160
|
+
\***************************************************/
|
|
1161
|
+
|
|
1162
|
+
/*!***************************************************!*\
|
|
1163
|
+
!*** ./src/pages/home/PackageList/Help/styles.ts ***!
|
|
1164
|
+
\***************************************************/
|
|
1165
|
+
|
|
1166
|
+
/*!****************************************************!*\
|
|
1167
|
+
!*** ./src/App/Header/LoginDialog/LoginDialog.tsx ***!
|
|
1168
|
+
\****************************************************/
|
|
1169
|
+
|
|
1170
|
+
/*!****************************************************!*\
|
|
1171
|
+
!*** ./src/App/Header/RegistryInfoDialog/index.ts ***!
|
|
1172
|
+
\****************************************************/
|
|
1173
|
+
|
|
1174
|
+
/*!****************************************************!*\
|
|
1175
|
+
!*** ./src/components/Loading/Spinner/Spinner.tsx ***!
|
|
1176
|
+
\****************************************************/
|
|
1177
|
+
|
|
1178
|
+
/*!****************************************************!*\
|
|
1179
|
+
!*** ./src/pages/Version/DetailContainer/index.ts ***!
|
|
1180
|
+
\****************************************************/
|
|
1181
|
+
|
|
1182
|
+
/*!****************************************************!*\
|
|
1183
|
+
!*** ./src/pages/home/PackageList/PackageList.tsx ***!
|
|
1184
|
+
\****************************************************/
|
|
1185
|
+
|
|
1186
|
+
/*!*****************************************************!*\
|
|
1187
|
+
!*** ./src/App/Header/RegistryInfoContent/index.ts ***!
|
|
1188
|
+
\*****************************************************/
|
|
1189
|
+
|
|
1190
|
+
/*!*****************************************************!*\
|
|
1191
|
+
!*** ./src/App/Header/RegistryInfoDialog/styles.ts ***!
|
|
1192
|
+
\*****************************************************/
|
|
1193
|
+
|
|
1194
|
+
/*!*****************************************************!*\
|
|
1195
|
+
!*** ./src/pages/Version/get-route-package-name.ts ***!
|
|
1196
|
+
\*****************************************************/
|
|
1197
|
+
|
|
1198
|
+
/*!*****************************************************!*\
|
|
1199
|
+
!*** ./src/pages/home/PackageList/Package/index.ts ***!
|
|
1200
|
+
\*****************************************************/
|
|
1201
|
+
|
|
1202
|
+
/*!******************************************************!*\
|
|
1203
|
+
!*** ./src/components/ActionBar/ActionBarAction.tsx ***!
|
|
1204
|
+
\******************************************************/
|
|
1205
|
+
|
|
1206
|
+
/*!******************************************************!*\
|
|
1207
|
+
!*** ./src/components/AutoComplete/AutoComplete.tsx ***!
|
|
1208
|
+
\******************************************************/
|
|
1209
|
+
|
|
1210
|
+
/*!******************************************************!*\
|
|
1211
|
+
!*** ./src/pages/Version/VersionContextProvider.tsx ***!
|
|
1212
|
+
\******************************************************/
|
|
1213
|
+
|
|
1214
|
+
/*!******************************************************!*\
|
|
1215
|
+
!*** ./src/pages/home/PackageList/Package/styles.ts ***!
|
|
1216
|
+
\******************************************************/
|
|
1217
|
+
|
|
1218
|
+
/*!*******************************************************!*\
|
|
1219
|
+
!*** ./src/pages/Version/DetailSidebar/Dist/Dist.tsx ***!
|
|
1220
|
+
\*******************************************************/
|
|
1221
|
+
|
|
1222
|
+
/*!*******************************************************!*\
|
|
1223
|
+
!*** ./src/pages/Version/DetailSidebar/Dist/index.ts ***!
|
|
1224
|
+
\*******************************************************/
|
|
1225
|
+
|
|
1226
|
+
/*!********************************************************!*\
|
|
1227
|
+
!*** ./src/App/Header/LoginDialog/LoginDialogForm.tsx ***!
|
|
1228
|
+
\********************************************************/
|
|
1229
|
+
|
|
1230
|
+
/*!********************************************************!*\
|
|
1231
|
+
!*** ./src/components/AutoComplete/AutoCompleteV2.tsx ***!
|
|
1232
|
+
\********************************************************/
|
|
1233
|
+
|
|
1234
|
+
/*!********************************************************!*\
|
|
1235
|
+
!*** ./src/pages/Version/DetailSidebar/Dist/styles.ts ***!
|
|
1236
|
+
\********************************************************/
|
|
1237
|
+
|
|
1238
|
+
/*!********************************************************!*\
|
|
1239
|
+
!*** ./src/pages/home/PackageList/Package/Package.tsx ***!
|
|
1240
|
+
\********************************************************/
|
|
1241
|
+
|
|
1242
|
+
/*!********************************************************!*\
|
|
1243
|
+
!*** ./src/pages/home/PackageList/Package/Tag/Tag.tsx ***!
|
|
1244
|
+
\********************************************************/
|
|
1245
|
+
|
|
1246
|
+
/*!*********************************************************!*\
|
|
1247
|
+
!*** ./src/components/AutoComplete/useAutoComplete.tsx ***!
|
|
1248
|
+
\*********************************************************/
|
|
1249
|
+
|
|
1250
|
+
/*!*********************************************************!*\
|
|
1251
|
+
!*** ./src/pages/home/PackageList/Package/Tag/index.ts ***!
|
|
1252
|
+
\*********************************************************/
|
|
1253
|
+
|
|
1254
|
+
/*!**********************************************************!*\
|
|
1255
|
+
!*** ./src/App/Header/LoginDialog/LoginDialogHeader.tsx ***!
|
|
1256
|
+
\**********************************************************/
|
|
1257
|
+
|
|
1258
|
+
/*!**********************************************************!*\
|
|
1259
|
+
!*** ./src/components/InputAdornment/InputAdornment.tsx ***!
|
|
1260
|
+
\**********************************************************/
|
|
1261
|
+
|
|
1262
|
+
/*!**********************************************************!*\
|
|
1263
|
+
!*** ./src/components/Logo/img/logo-black-and-white.svg ***!
|
|
1264
|
+
\**********************************************************/
|
|
1265
|
+
|
|
1266
|
+
/*!**********************************************************!*\
|
|
1267
|
+
!*** ./src/pages/Version/DetailSidebar/Engines/index.ts ***!
|
|
1268
|
+
\**********************************************************/
|
|
1269
|
+
|
|
1270
|
+
/*!**********************************************************!*\
|
|
1271
|
+
!*** ./src/pages/Version/DetailSidebar/Install/index.ts ***!
|
|
1272
|
+
\**********************************************************/
|
|
1273
|
+
|
|
1274
|
+
/*!**********************************************************!*\
|
|
1275
|
+
!*** ./src/pages/home/PackageList/Package/Tag/styles.ts ***!
|
|
1276
|
+
\**********************************************************/
|
|
1277
|
+
|
|
1278
|
+
/*!***********************************************************!*\
|
|
1279
|
+
!*** ./src/pages/Version/DetailContainer/Readme/index.ts ***!
|
|
1280
|
+
\***********************************************************/
|
|
1281
|
+
|
|
1282
|
+
/*!***********************************************************!*\
|
|
1283
|
+
!*** ./src/pages/Version/DetailSidebar/DetailSidebar.tsx ***!
|
|
1284
|
+
\***********************************************************/
|
|
1285
|
+
|
|
1286
|
+
/*!***********************************************************!*\
|
|
1287
|
+
!*** ./src/pages/Version/DetailSidebar/Engines/styles.ts ***!
|
|
1288
|
+
\***********************************************************/
|
|
1289
|
+
|
|
1290
|
+
/*!***********************************************************!*\
|
|
1291
|
+
!*** ./src/providers/config/AppConfigurationProvider.tsx ***!
|
|
1292
|
+
\***********************************************************/
|
|
1293
|
+
|
|
1294
|
+
/*!************************************************************!*\
|
|
1295
|
+
!*** ./src/pages/Version/DetailContainer/NoItems/index.ts ***!
|
|
1296
|
+
\************************************************************/
|
|
1297
|
+
|
|
1298
|
+
/*!************************************************************!*\
|
|
1299
|
+
!*** ./src/pages/Version/DetailContainer/UpLinks/index.ts ***!
|
|
1300
|
+
\************************************************************/
|
|
1301
|
+
|
|
1302
|
+
/*!*************************************************************!*\
|
|
1303
|
+
!*** ./src/App/Header/LoginDialog/LoginDialogFormError.tsx ***!
|
|
1304
|
+
\*************************************************************/
|
|
1305
|
+
|
|
1306
|
+
/*!*************************************************************!*\
|
|
1307
|
+
!*** ./src/pages/Version/DetailContainer/Readme/Readme.tsx ***!
|
|
1308
|
+
\*************************************************************/
|
|
1309
|
+
|
|
1310
|
+
/*!*************************************************************!*\
|
|
1311
|
+
!*** ./src/pages/Version/DetailContainer/UpLinks/styles.ts ***!
|
|
1312
|
+
\*************************************************************/
|
|
1313
|
+
|
|
1314
|
+
/*!*************************************************************!*\
|
|
1315
|
+
!*** ./src/pages/Version/DetailContainer/Versions/index.ts ***!
|
|
1316
|
+
\*************************************************************/
|
|
1317
|
+
|
|
1318
|
+
/*!*************************************************************!*\
|
|
1319
|
+
!*** ./src/pages/Version/DetailSidebar/Developers/index.ts ***!
|
|
1320
|
+
\*************************************************************/
|
|
1321
|
+
|
|
1322
|
+
/*!*************************************************************!*\
|
|
1323
|
+
!*** ./src/pages/Version/DetailSidebar/Engines/Engines.tsx ***!
|
|
1324
|
+
\*************************************************************/
|
|
1325
|
+
|
|
1326
|
+
/*!*************************************************************!*\
|
|
1327
|
+
!*** ./src/pages/Version/DetailSidebar/Install/Install.tsx ***!
|
|
1328
|
+
\*************************************************************/
|
|
1329
|
+
|
|
1330
|
+
/*!*************************************************************!*\
|
|
1331
|
+
!*** ./src/pages/Version/DetailSidebar/Install/img/npm.svg ***!
|
|
1332
|
+
\*************************************************************/
|
|
1333
|
+
|
|
1334
|
+
/*!*************************************************************!*\
|
|
1335
|
+
!*** ./src/pages/Version/DetailSidebar/Repository/index.ts ***!
|
|
1336
|
+
\*************************************************************/
|
|
1337
|
+
|
|
1338
|
+
/*!**************************************************************!*\
|
|
1339
|
+
!*** ./src/pages/Version/DetailContainer/Versions/styles.ts ***!
|
|
1340
|
+
\**************************************************************/
|
|
1341
|
+
|
|
1342
|
+
/*!**************************************************************!*\
|
|
1343
|
+
!*** ./src/pages/Version/DetailSidebar/Engines/img/node.png ***!
|
|
1344
|
+
\**************************************************************/
|
|
1345
|
+
|
|
1346
|
+
/*!**************************************************************!*\
|
|
1347
|
+
!*** ./src/pages/Version/DetailSidebar/Install/img/pnpm.svg ***!
|
|
1348
|
+
\**************************************************************/
|
|
1349
|
+
|
|
1350
|
+
/*!**************************************************************!*\
|
|
1351
|
+
!*** ./src/pages/Version/DetailSidebar/Install/img/yarn.svg ***!
|
|
1352
|
+
\**************************************************************/
|
|
1353
|
+
|
|
1354
|
+
/*!***************************************************************!*\
|
|
1355
|
+
!*** ./src/App/Header/LoginDialog/LoginDialogCloseButton.tsx ***!
|
|
1356
|
+
\***************************************************************/
|
|
1357
|
+
|
|
1358
|
+
/*!***************************************************************!*\
|
|
1359
|
+
!*** ./src/pages/Version/DetailContainer/Deprecated/index.ts ***!
|
|
1360
|
+
\***************************************************************/
|
|
1361
|
+
|
|
1362
|
+
/*!***************************************************************!*\
|
|
1363
|
+
!*** ./src/pages/Version/DetailContainer/DetailContainer.tsx ***!
|
|
1364
|
+
\***************************************************************/
|
|
1365
|
+
|
|
1366
|
+
/*!***************************************************************!*\
|
|
1367
|
+
!*** ./src/pages/Version/DetailContainer/NoItems/NoItems.tsx ***!
|
|
1368
|
+
\***************************************************************/
|
|
1369
|
+
|
|
1370
|
+
/*!***************************************************************!*\
|
|
1371
|
+
!*** ./src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx ***!
|
|
1372
|
+
\***************************************************************/
|
|
1373
|
+
|
|
1374
|
+
/*!****************************************************************!*\
|
|
1375
|
+
!*** ./src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx ***!
|
|
1376
|
+
\****************************************************************/
|
|
1377
|
+
|
|
1378
|
+
/*!****************************************************************!*\
|
|
1379
|
+
!*** ./src/pages/Version/DetailSidebar/Repository/img/git.png ***!
|
|
1380
|
+
\****************************************************************/
|
|
1381
|
+
|
|
1382
|
+
/*!*****************************************************************!*\
|
|
1383
|
+
!*** ./src/pages/Version/DetailContainer/Dependencies/index.ts ***!
|
|
1384
|
+
\*****************************************************************/
|
|
1385
|
+
|
|
1386
|
+
/*!*****************************************************************!*\
|
|
1387
|
+
!*** ./src/pages/Version/DetailContainer/Versions/Versions.tsx ***!
|
|
1388
|
+
\*****************************************************************/
|
|
1389
|
+
|
|
1390
|
+
/*!******************************************************************!*\
|
|
1391
|
+
!*** ./src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx ***!
|
|
1392
|
+
\******************************************************************/
|
|
1393
|
+
|
|
1394
|
+
/*!******************************************************************!*\
|
|
1395
|
+
!*** ./src/pages/Version/DetailContainer/Dependencies/styles.ts ***!
|
|
1396
|
+
\******************************************************************/
|
|
1397
|
+
|
|
1398
|
+
/*!*******************************************************************!*\
|
|
1399
|
+
!*** ./src/pages/Version/DetailContainer/DetailContainerTabs.tsx ***!
|
|
1400
|
+
\*******************************************************************/
|
|
1401
|
+
|
|
1402
|
+
/*!*******************************************************************!*\
|
|
1403
|
+
!*** ./src/pages/Version/DetailSidebar/Developers/Developers.tsx ***!
|
|
1404
|
+
\*******************************************************************/
|
|
1405
|
+
|
|
1406
|
+
/*!*******************************************************************!*\
|
|
1407
|
+
!*** ./src/pages/Version/DetailSidebar/Repository/Repository.tsx ***!
|
|
1408
|
+
\*******************************************************************/
|
|
1409
|
+
|
|
1410
|
+
/*!********************************************************************!*\
|
|
1411
|
+
!*** ./src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx ***!
|
|
1412
|
+
\********************************************************************/
|
|
1413
|
+
|
|
1414
|
+
/*!*********************************************************************!*\
|
|
1415
|
+
!*** ./src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx ***!
|
|
1416
|
+
\*********************************************************************/
|
|
1417
|
+
|
|
1418
|
+
/*!*********************************************************************!*\
|
|
1419
|
+
!*** ./src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx ***!
|
|
1420
|
+
\*********************************************************************/
|
|
1421
|
+
|
|
1422
|
+
/*!*********************************************************************!*\
|
|
1423
|
+
!*** ./src/pages/Version/DetailSidebar/Install/InstallListItem.tsx ***!
|
|
1424
|
+
\*********************************************************************/
|
|
1425
|
+
|
|
1426
|
+
/*!**********************************************************************!*\
|
|
1427
|
+
!*** ./src/pages/Version/DetailContainer/DetailContainerContent.tsx ***!
|
|
1428
|
+
\**********************************************************************/
|
|
1429
|
+
|
|
1430
|
+
/*!************************************************************************!*\
|
|
1431
|
+
!*** ./src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx ***!
|
|
1432
|
+
\************************************************************************/
|
|
1433
|
+
|
|
1434
|
+
/*!************************************************************************!*\
|
|
1435
|
+
!*** ./src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx ***!
|
|
1436
|
+
\************************************************************************/
|
|
1437
|
+
|
|
1438
|
+
/*!*************************************************************************!*\
|
|
1439
|
+
!*** ./src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx ***!
|
|
1440
|
+
\*************************************************************************/
|
|
1441
|
+
|
|
1442
|
+
/*!****************************************************************************!*\
|
|
1443
|
+
!*** ./src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx ***!
|
|
1444
|
+
\****************************************************************************/
|
|
1445
|
+
|
|
1446
|
+
/*!****************************************************************************!*\
|
|
1447
|
+
!*** ./src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx ***!
|
|
1448
|
+
\****************************************************************************/
|
|
1449
|
+
|
|
1450
|
+
/*!***********************************************************************************!*\
|
|
1451
|
+
!*** ./src/pages/Version/DetailSidebar/Developers/get-unique-developer-values.ts ***!
|
|
1452
|
+
\***********************************************************************************/
|
|
1453
|
+
|
|
1454
|
+
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1455
|
+
!*** data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 version=%271.1%27 width=%2716%27 height=%2716%27 aria-hidden=%27true%27%3E%3Cpath fill-rule=%27evenodd%27 d=%27M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z%27%3E%3C/path%3E%3C/svg%3E ***!
|
|
1456
|
+
\****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|