@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.
- package/.babelrc +1 -1
- package/.eslintrc +0 -15
- package/CHANGELOG.md +61 -0
- package/jest/api/packages.json +42 -0
- package/jest/jest.config.js +2 -2
- package/jest/server-handlers.ts +9 -0
- package/jest/server.ts +6 -0
- package/jest/setup-env.ts +18 -0
- package/jest/setup.ts +2 -7
- package/jest/unit/components/__mocks__/token.ts +0 -1
- package/jest/unit/components/store/login.ts +1 -0
- package/package.json +43 -33
- package/src/App/App.test.tsx +75 -51
- package/src/App/App.tsx +7 -42
- package/src/App/AppRoute.tsx +3 -16
- package/src/App/Footer/Footer.test.tsx +0 -1
- package/src/App/Footer/Footer.tsx +35 -22
- package/src/App/Footer/__snapshots__/Footer.test.tsx.snap +208 -302
- package/src/App/Footer/styles.ts +2 -3
- package/src/App/Header/Header.test.tsx +53 -61
- package/src/App/Header/Header.tsx +13 -24
- package/src/App/Header/HeaderGreetings.tsx +0 -1
- package/src/App/Header/HeaderLeft.tsx +0 -1
- package/src/App/Header/HeaderMenu.tsx +6 -6
- package/src/App/Header/HeaderRight.tsx +1 -2
- package/src/App/Header/HeaderToolTip.tsx +0 -1
- package/src/App/Header/HeaderToolTipIcon.tsx +10 -10
- package/src/App/Header/LanguageSwitch.tsx +17 -79
- package/src/App/Header/LoginDialog/LoginDialog.test.tsx +25 -35
- package/src/App/Header/LoginDialog/LoginDialog.tsx +28 -46
- package/src/App/Header/LoginDialog/LoginDialogCloseButton.tsx +1 -2
- package/src/App/Header/LoginDialog/LoginDialogForm.tsx +0 -1
- package/src/App/Header/LoginDialog/LoginDialogFormError.tsx +1 -2
- package/src/App/Header/LoginDialog/LoginDialogHeader.tsx +4 -4
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +1 -3
- package/src/App/Header/RegistryInfoContent/RegistryInfoContent.tsx +9 -10
- package/src/App/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +1 -2
- package/src/App/Header/RegistryInfoDialog/styles.ts +0 -1
- package/src/App/Header/Search/Search.test.tsx +48 -43
- package/src/App/Header/Search/Search.tsx +23 -108
- package/src/App/Header/Search/__snapshots__/Search.test.tsx.snap +392 -28
- package/src/App/Header/styles.ts +2 -3
- package/src/App/index.ts +0 -1
- package/src/App/utils/loadable.tsx +3 -1
- package/src/components/ActionBar/ActionBar.test.tsx +13 -14
- package/src/components/ActionBar/ActionBar.tsx +0 -2
- package/src/components/ActionBar/ActionBarAction.tsx +11 -14
- package/src/components/ActionBar/__snapshots__/ActionBar.test.tsx.snap +198 -53
- package/src/components/AppBar.tsx +1 -1
- package/src/components/Author/Author.test.tsx +1 -4
- package/src/components/Author/Author.tsx +2 -4
- package/src/components/Author/__snapshots__/Author.test.tsx.snap +804 -48
- package/src/components/Author/styles.ts +0 -1
- package/src/components/AutoComplete/AutoComplete.tsx +85 -163
- package/src/components/AutoComplete/AutoCompleteV2.tsx +8 -10
- package/src/components/AutoComplete/styles.tsx +0 -15
- package/src/components/Avatar.tsx +1 -1
- package/src/components/Box.tsx +1 -1
- package/src/components/Button.tsx +1 -1
- package/src/components/Card.tsx +1 -1
- package/src/components/CardActions.tsx +1 -1
- package/src/components/CardContent.tsx +1 -1
- package/src/components/Chip.tsx +1 -1
- package/src/components/CircularProgress.tsx +2 -2
- package/src/components/CopyToClipBoard.tsx +2 -3
- package/src/components/Dialog.tsx +1 -1
- package/src/components/DialogActions.tsx +2 -2
- package/src/components/DialogContent.tsx +2 -2
- package/src/components/DialogTitle.tsx +1 -1
- package/src/components/Divider.tsx +1 -1
- package/src/components/FloatingActionButton.tsx +1 -1
- package/src/components/FormControl.tsx +1 -1
- package/src/components/FormHelperText.tsx +2 -2
- package/src/components/Grid.tsx +1 -1
- package/src/components/Heading.tsx +1 -1
- package/src/components/IconButton.tsx +1 -1
- package/src/components/Icons/index.ts +1 -17
- package/src/components/Input.tsx +1 -1
- package/src/components/InputAdornment/InputAdornment.tsx +2 -2
- package/src/components/InputLabel.tsx +1 -1
- package/src/components/Label/Label.test.tsx +0 -1
- package/src/components/Label/Label.tsx +2 -3
- package/src/components/List.tsx +1 -1
- package/src/components/ListItem.tsx +1 -1
- package/src/components/ListItemText.tsx +1 -4
- package/src/components/Loading/Loading.test.tsx +0 -1
- package/src/components/Loading/Loading.tsx +1 -2
- package/src/components/Loading/Spinner/Spinner.test.tsx +1 -2
- package/src/components/Loading/Spinner/Spinner.tsx +1 -2
- package/src/components/Loading/Spinner/__snapshots__/Spinner.test.tsx.snap +114 -16
- package/src/components/Loading/__snapshots__/Loading.test.tsx.snap +63 -11
- package/src/components/Loading/styles.ts +1 -2
- package/src/components/Logo/Logo.test.tsx +0 -1
- package/src/components/Logo/Logo.tsx +1 -2
- package/src/components/Logo/__snapshots__/Logo.test.tsx.snap +2 -0
- package/src/components/Menu.tsx +1 -1
- package/src/components/MenuItem.tsx +1 -1
- package/src/components/NotFound/NotFound.tsx +1 -3
- package/src/components/NotFound/Notfound.test.tsx +1 -2
- package/src/components/NotFound/__snapshots__/Notfound.test.tsx.snap +138 -11
- package/src/components/NotFound/styles.ts +0 -1
- package/src/components/Paper.tsx +1 -1
- package/src/components/SnackbarContent.tsx +1 -1
- package/src/components/SvgIcon.tsx +1 -1
- package/src/components/Tab.tsx +1 -1
- package/src/components/Tabs.tsx +1 -1
- package/src/components/Text/Text.tsx +1 -1
- package/src/components/Text/TextConfig.ts +1 -1
- package/src/components/TextField/TextField.test.tsx +0 -1
- package/src/components/TextField/TextField.tsx +2 -2
- package/src/components/TextField/__snapshots__/TextField.test.tsx.snap +216 -3
- package/src/components/Toolbar.tsx +1 -1
- package/src/components/Tooltip.tsx +1 -1
- package/src/design-tokens/ResetStyles.tsx +1 -1
- package/src/design-tokens/StyleBaseline.tsx +2 -2
- package/src/design-tokens/ThemeContext.ts +1 -1
- package/src/design-tokens/ThemeProvider.tsx +15 -12
- package/src/design-tokens/theme.ts +28 -26
- package/src/design-tokens/useTheme.ts +1 -1
- package/src/{design-tokens → hooks}/useLocalStorage.ts +0 -0
- package/src/{design-tokens → hooks}/useOnClickOutside.ts +0 -0
- package/src/i18n/ABOUT_TRANSLATIONS.md +13 -0
- package/src/i18n/__mocks__/loadTranslationFile.ts +5 -0
- package/src/i18n/config.ts +38 -0
- package/src/i18n/crowdin/ui.json +170 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/cs-CZ.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/de-DE.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/en-US.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/es-ES.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/fr-FR.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/ja-JP.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/km-KH.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/pt-BR.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/ru-RU.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/tr-TR.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/uk-UA.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/zh-CN.json +0 -0
- package/{i18n/translations → src/i18n/deprecated_translations_dont_use}/zh-TW.json +0 -0
- package/src/i18n/download_translations/ar-SA/ui.json +170 -0
- package/src/i18n/download_translations/cs-CZ/ui.json +170 -0
- package/src/i18n/download_translations/de-DE/ui.json +170 -0
- package/src/i18n/download_translations/es-ES/ui.json +170 -0
- package/src/i18n/download_translations/fi-FI/ui.json +170 -0
- package/src/i18n/download_translations/fil-PH/ui.json +170 -0
- package/src/i18n/download_translations/fr-FR/ui.json +170 -0
- package/src/i18n/download_translations/gl-ES/ui.json +170 -0
- package/src/i18n/download_translations/hi-IN/ui.json +170 -0
- package/src/i18n/download_translations/it-IT/ui.json +170 -0
- package/src/i18n/download_translations/ja-JP/ui.json +170 -0
- package/src/i18n/download_translations/km-KH/ui.json +170 -0
- package/src/i18n/download_translations/ko-KR/ui.json +170 -0
- package/src/i18n/download_translations/pl-PL/ui.json +170 -0
- package/src/i18n/download_translations/pt-BR/ui.json +170 -0
- package/src/i18n/download_translations/pt-PT/ui.json +170 -0
- package/src/i18n/download_translations/ro-RO/ui.json +170 -0
- package/src/i18n/download_translations/ru-RU/ui.json +170 -0
- package/src/i18n/download_translations/si-LK/ui.json +170 -0
- package/src/i18n/download_translations/sr-CS/ui.json +170 -0
- package/src/i18n/download_translations/sr-SP/ui.json +170 -0
- package/src/i18n/download_translations/tg-TJ/ui.json +170 -0
- package/src/i18n/download_translations/tr-TR/ui.json +170 -0
- package/src/i18n/download_translations/uk-UA/ui.json +170 -0
- package/src/i18n/download_translations/vi-VN/ui.json +170 -0
- package/src/i18n/download_translations/yo-NG/ui.json +170 -0
- package/src/i18n/download_translations/zh-CN/ui.json +170 -0
- package/src/i18n/download_translations/zh-TW/ui.json +170 -0
- package/src/i18n/enabledLanguages.ts +35 -0
- package/src/i18n/loadTranslationFile.ts +14 -0
- package/src/index.tsx +13 -11
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.test.tsx +0 -2
- package/src/pages/Version/DetailContainer/Dependencies/Dependencies.tsx +1 -3
- package/src/pages/Version/DetailContainer/Dependencies/styles.ts +0 -1
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.test.tsx +1 -3
- package/src/pages/Version/DetailContainer/Deprecated/Deprecated.tsx +2 -3
- package/src/pages/Version/DetailContainer/DetailContainer.test.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainer.tsx +1 -3
- package/src/pages/Version/DetailContainer/DetailContainerContent.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainerContentReadme.tsx +0 -1
- package/src/pages/Version/DetailContainer/DetailContainerTabs.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/NoItems.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/Noitems.test.tsx +0 -1
- package/src/pages/Version/DetailContainer/NoItems/__snapshots__/Noitems.test.tsx.snap +10 -1
- package/src/pages/Version/DetailContainer/Readme/Readme.spec.tsx +1 -2
- package/src/pages/Version/DetailContainer/Readme/Readme.tsx +1 -2
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.test.tsx +1 -9
- package/src/pages/Version/DetailContainer/UpLinks/UpLinks.tsx +1 -3
- package/src/pages/Version/DetailContainer/UpLinks/__snapshots__/UpLinks.test.tsx.snap +184 -26
- package/src/pages/Version/DetailContainer/UpLinks/styles.ts +2 -3
- package/src/pages/Version/DetailContainer/Versions/Versions.test.tsx +3 -5
- package/src/pages/Version/DetailContainer/Versions/Versions.tsx +1 -2
- package/src/pages/Version/DetailContainer/Versions/VersionsHistoryList.tsx +2 -4
- package/src/pages/Version/DetailContainer/Versions/VersionsTagList.tsx +1 -3
- package/src/pages/Version/DetailContainer/Versions/styles.ts +2 -3
- package/src/pages/Version/DetailContainer/__snapshots__/DetailContainer.test.tsx.snap +168 -34
- package/src/pages/Version/DetailSidebar/DetailSidebar.tsx +0 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.test.tsx +0 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarFundButton.tsx +1 -2
- package/src/pages/Version/DetailSidebar/DetailSidebarTitle.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Developers/Developers.test.tsx +3 -5
- package/src/pages/Version/DetailSidebar/Developers/Developers.tsx +3 -5
- package/src/pages/Version/DetailSidebar/Developers/DevelopersTitle.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Developers/__snapshots__/Developers.test.tsx.snap +328 -40
- package/src/pages/Version/DetailSidebar/Developers/styles.ts +0 -1
- package/src/pages/Version/DetailSidebar/Dist/Dist.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Dist/Dist.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Dist/__snapshots__/Dist.test.tsx.snap +1436 -74
- package/src/pages/Version/DetailSidebar/Dist/styles.ts +2 -1
- package/src/pages/Version/DetailSidebar/Engines/Engines.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Engines/Engines.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Engines/styles.ts +0 -1
- package/src/pages/Version/DetailSidebar/Install/Install.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Install/Install.tsx +0 -2
- package/src/pages/Version/DetailSidebar/Install/InstallListItem.tsx +0 -1
- package/src/pages/Version/DetailSidebar/Repository/Repository.test.tsx +1 -3
- package/src/pages/Version/DetailSidebar/Repository/Repository.tsx +1 -3
- package/src/pages/Version/Version.test.tsx +3 -5
- package/src/pages/Version/Version.tsx +21 -6
- package/src/pages/Version/VersionContextProvider.tsx +14 -45
- package/src/pages/Version/VersionLayout.tsx +1 -1
- package/src/pages/Version/context.ts +1 -1
- package/src/pages/home/Home.tsx +9 -28
- package/src/pages/home/PackageList/Help/Help.test.tsx +0 -1
- package/src/pages/home/PackageList/Help/Help.tsx +0 -1
- package/src/pages/home/PackageList/Help/__snapshots__/Help.test.tsx.snap +298 -59
- package/src/pages/home/PackageList/Help/styles.ts +0 -1
- package/src/pages/home/PackageList/Package/Package.test.tsx +5 -4
- package/src/pages/home/PackageList/Package/Package.tsx +20 -28
- package/src/pages/home/PackageList/Package/Tag/Tag.test.tsx +0 -1
- package/src/pages/home/PackageList/Package/styles.ts +5 -6
- package/src/pages/home/PackageList/PackageList.tsx +17 -17
- package/src/pages/home/PackageList/Packagelist.test.tsx +6 -5
- package/src/providers/API/api.test.ts +1 -0
- package/src/providers/API/api.ts +7 -3
- package/src/providers/config/AppConfigurationProvider.tsx +3 -3
- package/src/store/index.ts +1 -0
- package/src/store/models/configuration.ts +41 -0
- package/src/store/models/download.ts +30 -0
- package/src/store/models/index.ts +18 -0
- package/src/store/models/login.ts +92 -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/utils/login.test.ts +3 -4
- package/src/utils/package.test.ts +2 -3
- package/src/utils/package.ts +2 -1
- package/src/utils/sec-utils.ts +1 -1
- package/src/utils/test-react-testing-library.tsx +22 -5
- package/src/utils/url.test.ts +1 -1
- package/src/utils/url.ts +1 -0
- package/static/Dependencies.15768a14646212b71166.js +2 -0
- package/static/Dependencies.15768a14646212b71166.js.LICENSE.txt +78 -0
- package/static/Dist.15768a14646212b71166.js +2 -0
- package/static/Dist.15768a14646212b71166.js.LICENSE.txt +60 -0
- package/static/Engines.15768a14646212b71166.js +2 -0
- package/static/Engines.15768a14646212b71166.js.LICENSE.txt +66 -0
- package/static/Home.15768a14646212b71166.js +2 -0
- package/static/Home.15768a14646212b71166.js.LICENSE.txt +222 -0
- package/static/Install.15768a14646212b71166.js +2 -0
- package/static/Install.15768a14646212b71166.js.LICENSE.txt +66 -0
- package/static/NotFound.15768a14646212b71166.js +2 -0
- package/static/NotFound.15768a14646212b71166.js.LICENSE.txt +40 -0
- package/static/Provider.15768a14646212b71166.js +2 -0
- package/static/Provider.15768a14646212b71166.js.LICENSE.txt +32 -0
- package/static/Repository.15768a14646212b71166.js +2 -0
- package/static/Repository.15768a14646212b71166.js.LICENSE.txt +50 -0
- package/static/UpLinks.15768a14646212b71166.js +2 -0
- package/static/UpLinks.15768a14646212b71166.js.LICENSE.txt +56 -0
- package/static/Version.15768a14646212b71166.js +2 -0
- package/static/Version.15768a14646212b71166.js.LICENSE.txt +380 -0
- package/static/Versions.15768a14646212b71166.js +2 -0
- package/static/Versions.15768a14646212b71166.js.LICENSE.txt +64 -0
- package/static/index.html +1 -1
- package/static/main.15768a14646212b71166.js +2 -0
- package/static/main.15768a14646212b71166.js.LICENSE.txt +972 -0
- package/static/manifest.json +17 -3
- package/static/runtime.15768a14646212b71166.js +2 -0
- package/static/{runtime.9525ddaaf85378590c63.js.LICENSE.txt → runtime.15768a14646212b71166.js.LICENSE.txt} +2 -2
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-123400.15768a14646212b71166.js.LICENSE.txt +148 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_icons-material_5_0_5_d1eeebd4022867ee03864a00e16c7901_node_modu-d2b578.15768a14646212b71166.js.LICENSE.txt +218 -0
- package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js +2 -0
- package/static/vendors-node_modules_pnpm_mui_material_5_0_6_033766d34292bd5d464212fd95cb4b6d_node_modules_mu-1fb115.15768a14646212b71166.js.LICENSE.txt +316 -0
- package/static/vendors.15768a14646212b71166.js +103 -0
- package/static/vendors.15768a14646212b71166.js.LICENSE.txt +3158 -0
- package/tools/dev.server.js +0 -1
- package/tools/webpack.dev.config.babel.js +1 -3
- package/tools/webpack.prod.config.babel.js +1 -1
- package/tsconfig.json +1 -3
- package/types/index.ts +3 -20
- package/i18n/config.ts +0 -94
- package/src/App/AppContext.ts +0 -18
- package/src/App/AppContextProvider.tsx +0 -44
- package/src/App/Header/Search/SearchAdornment.tsx +0 -18
- package/src/components/Icons/Austria.tsx +0 -23
- package/src/components/Icons/Brazil.tsx +0 -44
- package/src/components/Icons/China.tsx +0 -33
- package/src/components/Icons/Czech.tsx +0 -21
- package/src/components/Icons/France.tsx +0 -27
- package/src/components/Icons/Germany.tsx +0 -27
- package/src/components/Icons/India.tsx +0 -44
- package/src/components/Icons/Japan.tsx +0 -23
- package/src/components/Icons/Khmer.tsx +0 -40
- package/src/components/Icons/Nicaragua.tsx +0 -66
- package/src/components/Icons/Russia.tsx +0 -27
- package/src/components/Icons/Spain.tsx +0 -43
- package/src/components/Icons/Taiwan.tsx +0 -25
- package/src/components/Icons/Turkey.tsx +0 -23
- package/src/components/Icons/Ukraine.tsx +0 -30
- package/src/components/Icons/Usa.tsx +0 -34
- package/src/design-tokens/emotion.ts +0 -5
- package/src/lib/constants.ts +0 -9
- package/src/pages/Version/DetailSidebar/ActionBar/ActionBar.test.tsx +0 -84
- package/src/pages/Version/DetailSidebar/ActionBar/__snapshots__/ActionBar.test.tsx.snap +0 -122
- package/src/pages/Version/is-package-version-valid.ts +0 -19
- package/src/providers/API/APIProvider.tsx +0 -109
- package/src/providers/API/index.ts +0 -1
- package/static/main.9525ddaaf85378590c63.js +0 -2
- package/static/main.9525ddaaf85378590c63.js.LICENSE.txt +0 -1588
- package/static/runtime.9525ddaaf85378590c63.js +0 -2
- package/static/vendors.9525ddaaf85378590c63.js +0 -2
- package/static/vendors.9525ddaaf85378590c63.js.LICENSE.txt +0 -4540
|
@@ -4,35 +4,224 @@ exports[`<Author /> component should render the component in default state 1`] =
|
|
|
4
4
|
Object {
|
|
5
5
|
"asFragment": [Function],
|
|
6
6
|
"baseElement": .emotion-0 {
|
|
7
|
-
|
|
7
|
+
list-style: none;
|
|
8
|
+
margin: 0;
|
|
9
|
+
padding: 0;
|
|
10
|
+
position: relative;
|
|
11
|
+
padding-top: 0;
|
|
12
|
+
padding-bottom: 8px;
|
|
8
13
|
}
|
|
9
14
|
|
|
10
15
|
.emotion-2 {
|
|
16
|
+
margin: 0;
|
|
17
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
18
|
+
font-weight: 400;
|
|
19
|
+
font-size: 1rem;
|
|
20
|
+
line-height: 1.75;
|
|
21
|
+
font-weight: 700;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.emotion-4 {
|
|
25
|
+
display: -webkit-inline-box;
|
|
26
|
+
display: -webkit-inline-flex;
|
|
27
|
+
display: -ms-inline-flexbox;
|
|
28
|
+
display: inline-flex;
|
|
29
|
+
-webkit-align-items: center;
|
|
30
|
+
-webkit-box-align: center;
|
|
31
|
+
-ms-flex-align: center;
|
|
32
|
+
align-items: center;
|
|
33
|
+
-webkit-box-pack: center;
|
|
34
|
+
-ms-flex-pack: center;
|
|
35
|
+
-webkit-justify-content: center;
|
|
36
|
+
justify-content: center;
|
|
37
|
+
position: relative;
|
|
38
|
+
box-sizing: border-box;
|
|
39
|
+
-webkit-tap-highlight-color: transparent;
|
|
40
|
+
background-color: transparent;
|
|
41
|
+
outline: 0;
|
|
42
|
+
border: 0;
|
|
43
|
+
margin: 0;
|
|
44
|
+
border-radius: 0;
|
|
45
|
+
padding: 0;
|
|
46
|
+
cursor: pointer;
|
|
47
|
+
-webkit-user-select: none;
|
|
48
|
+
-moz-user-select: none;
|
|
49
|
+
-ms-user-select: none;
|
|
50
|
+
user-select: none;
|
|
51
|
+
vertical-align: middle;
|
|
52
|
+
-moz-appearance: none;
|
|
53
|
+
-webkit-appearance: none;
|
|
54
|
+
-webkit-text-decoration: none;
|
|
55
|
+
text-decoration: none;
|
|
56
|
+
color: inherit;
|
|
57
|
+
display: -webkit-box;
|
|
58
|
+
display: -webkit-flex;
|
|
59
|
+
display: -ms-flexbox;
|
|
60
|
+
display: flex;
|
|
61
|
+
-webkit-box-pack: start;
|
|
62
|
+
-ms-flex-pack: start;
|
|
63
|
+
-webkit-justify-content: flex-start;
|
|
64
|
+
justify-content: flex-start;
|
|
65
|
+
-webkit-align-items: center;
|
|
66
|
+
-webkit-box-align: center;
|
|
67
|
+
-ms-flex-align: center;
|
|
68
|
+
align-items: center;
|
|
69
|
+
position: relative;
|
|
70
|
+
-webkit-text-decoration: none;
|
|
71
|
+
text-decoration: none;
|
|
72
|
+
width: 100%;
|
|
73
|
+
box-sizing: border-box;
|
|
74
|
+
text-align: left;
|
|
75
|
+
padding-top: 8px;
|
|
76
|
+
padding-bottom: 8px;
|
|
77
|
+
padding-left: 16px;
|
|
78
|
+
padding-right: 16px;
|
|
79
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
80
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
11
81
|
padding: 0;
|
|
12
82
|
}
|
|
13
83
|
|
|
14
|
-
.emotion-
|
|
84
|
+
.emotion-4::-moz-focus-inner {
|
|
85
|
+
border-style: none;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.emotion-4.Mui-disabled {
|
|
89
|
+
pointer-events: none;
|
|
90
|
+
cursor: default;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@media print {
|
|
94
|
+
.emotion-4 {
|
|
95
|
+
-webkit-print-color-adjust: exact;
|
|
96
|
+
color-adjust: exact;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.emotion-4.Mui-focusVisible {
|
|
101
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.emotion-4.Mui-selected {
|
|
105
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
109
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.emotion-4.Mui-disabled {
|
|
113
|
+
opacity: 0.38;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.emotion-4:hover {
|
|
117
|
+
-webkit-text-decoration: none;
|
|
118
|
+
text-decoration: none;
|
|
119
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
@media (hover: none) {
|
|
123
|
+
.emotion-4:hover {
|
|
124
|
+
background-color: transparent;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.emotion-4.Mui-selected:hover {
|
|
129
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
@media (hover: none) {
|
|
133
|
+
.emotion-4.Mui-selected:hover {
|
|
134
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.emotion-4:hover {
|
|
15
139
|
background-color: transparent;
|
|
16
140
|
}
|
|
17
141
|
|
|
18
|
-
.emotion-
|
|
142
|
+
.emotion-5 {
|
|
143
|
+
position: relative;
|
|
144
|
+
display: -webkit-box;
|
|
145
|
+
display: -webkit-flex;
|
|
146
|
+
display: -ms-flexbox;
|
|
147
|
+
display: flex;
|
|
148
|
+
-webkit-align-items: center;
|
|
149
|
+
-webkit-box-align: center;
|
|
150
|
+
-ms-flex-align: center;
|
|
151
|
+
align-items: center;
|
|
152
|
+
-webkit-box-pack: center;
|
|
153
|
+
-ms-flex-pack: center;
|
|
154
|
+
-webkit-justify-content: center;
|
|
155
|
+
justify-content: center;
|
|
156
|
+
-webkit-flex-shrink: 0;
|
|
157
|
+
-ms-flex-negative: 0;
|
|
158
|
+
flex-shrink: 0;
|
|
159
|
+
width: 40px;
|
|
160
|
+
height: 40px;
|
|
161
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
162
|
+
font-size: 1.25rem;
|
|
163
|
+
line-height: 1;
|
|
164
|
+
border-radius: 50%;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
-webkit-user-select: none;
|
|
167
|
+
-moz-user-select: none;
|
|
168
|
+
-ms-user-select: none;
|
|
169
|
+
user-select: none;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.emotion-6 {
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: 100%;
|
|
175
|
+
text-align: center;
|
|
176
|
+
object-fit: cover;
|
|
177
|
+
color: transparent;
|
|
178
|
+
text-indent: 10000px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.emotion-8 {
|
|
182
|
+
-webkit-flex: 1 1 auto;
|
|
183
|
+
-ms-flex: 1 1 auto;
|
|
184
|
+
flex: 1 1 auto;
|
|
185
|
+
min-width: 0;
|
|
186
|
+
margin-top: 4px;
|
|
187
|
+
margin-bottom: 4px;
|
|
19
188
|
padding: 0 10px;
|
|
20
189
|
margin: 0;
|
|
21
190
|
}
|
|
22
191
|
|
|
192
|
+
.emotion-9 {
|
|
193
|
+
margin: 0;
|
|
194
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
195
|
+
font-weight: 400;
|
|
196
|
+
font-size: 1rem;
|
|
197
|
+
line-height: 1.5;
|
|
198
|
+
display: block;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.emotion-10 {
|
|
202
|
+
overflow: hidden;
|
|
203
|
+
pointer-events: none;
|
|
204
|
+
position: absolute;
|
|
205
|
+
z-index: 0;
|
|
206
|
+
top: 0;
|
|
207
|
+
right: 0;
|
|
208
|
+
bottom: 0;
|
|
209
|
+
left: 0;
|
|
210
|
+
border-radius: inherit;
|
|
211
|
+
}
|
|
212
|
+
|
|
23
213
|
<body>
|
|
24
214
|
<div>
|
|
25
215
|
<ul
|
|
26
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
216
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
27
217
|
>
|
|
28
218
|
<span
|
|
29
|
-
class="MuiTypography-root
|
|
219
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
30
220
|
>
|
|
31
221
|
Author
|
|
32
222
|
</span>
|
|
33
223
|
<div
|
|
34
|
-
|
|
35
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
224
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
36
225
|
role="button"
|
|
37
226
|
tabindex="0"
|
|
38
227
|
>
|
|
@@ -41,60 +230,249 @@ Object {
|
|
|
41
230
|
target="_top"
|
|
42
231
|
>
|
|
43
232
|
<div
|
|
44
|
-
class="MuiAvatar-root MuiAvatar-
|
|
233
|
+
class="MuiAvatar-root MuiAvatar-circular emotion-5"
|
|
45
234
|
>
|
|
46
235
|
<img
|
|
47
236
|
alt="verdaccio user"
|
|
48
|
-
class="MuiAvatar-img"
|
|
237
|
+
class="MuiAvatar-img emotion-6"
|
|
49
238
|
src="https://www.gravatar.com/avatar/000000"
|
|
50
239
|
/>
|
|
51
240
|
</div>
|
|
52
241
|
</a>
|
|
53
242
|
<div
|
|
54
|
-
class="MuiListItemText-root emotion-
|
|
243
|
+
class="MuiListItemText-root emotion-7 emotion-8"
|
|
55
244
|
>
|
|
56
245
|
<span
|
|
57
|
-
class="MuiTypography-root MuiListItemText-primary
|
|
246
|
+
class="MuiTypography-root MuiTypography-body1 MuiListItemText-primary emotion-9"
|
|
58
247
|
>
|
|
59
248
|
verdaccio user
|
|
60
249
|
</span>
|
|
61
250
|
</div>
|
|
62
251
|
<span
|
|
63
|
-
class="MuiTouchRipple-root"
|
|
252
|
+
class="MuiTouchRipple-root emotion-10"
|
|
64
253
|
/>
|
|
65
254
|
</div>
|
|
66
255
|
</ul>
|
|
67
256
|
</div>
|
|
68
257
|
</body>,
|
|
69
258
|
"container": .emotion-0 {
|
|
70
|
-
|
|
259
|
+
list-style: none;
|
|
260
|
+
margin: 0;
|
|
261
|
+
padding: 0;
|
|
262
|
+
position: relative;
|
|
263
|
+
padding-top: 0;
|
|
264
|
+
padding-bottom: 8px;
|
|
71
265
|
}
|
|
72
266
|
|
|
73
267
|
.emotion-2 {
|
|
268
|
+
margin: 0;
|
|
269
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
270
|
+
font-weight: 400;
|
|
271
|
+
font-size: 1rem;
|
|
272
|
+
line-height: 1.75;
|
|
273
|
+
font-weight: 700;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.emotion-4 {
|
|
277
|
+
display: -webkit-inline-box;
|
|
278
|
+
display: -webkit-inline-flex;
|
|
279
|
+
display: -ms-inline-flexbox;
|
|
280
|
+
display: inline-flex;
|
|
281
|
+
-webkit-align-items: center;
|
|
282
|
+
-webkit-box-align: center;
|
|
283
|
+
-ms-flex-align: center;
|
|
284
|
+
align-items: center;
|
|
285
|
+
-webkit-box-pack: center;
|
|
286
|
+
-ms-flex-pack: center;
|
|
287
|
+
-webkit-justify-content: center;
|
|
288
|
+
justify-content: center;
|
|
289
|
+
position: relative;
|
|
290
|
+
box-sizing: border-box;
|
|
291
|
+
-webkit-tap-highlight-color: transparent;
|
|
292
|
+
background-color: transparent;
|
|
293
|
+
outline: 0;
|
|
294
|
+
border: 0;
|
|
295
|
+
margin: 0;
|
|
296
|
+
border-radius: 0;
|
|
297
|
+
padding: 0;
|
|
298
|
+
cursor: pointer;
|
|
299
|
+
-webkit-user-select: none;
|
|
300
|
+
-moz-user-select: none;
|
|
301
|
+
-ms-user-select: none;
|
|
302
|
+
user-select: none;
|
|
303
|
+
vertical-align: middle;
|
|
304
|
+
-moz-appearance: none;
|
|
305
|
+
-webkit-appearance: none;
|
|
306
|
+
-webkit-text-decoration: none;
|
|
307
|
+
text-decoration: none;
|
|
308
|
+
color: inherit;
|
|
309
|
+
display: -webkit-box;
|
|
310
|
+
display: -webkit-flex;
|
|
311
|
+
display: -ms-flexbox;
|
|
312
|
+
display: flex;
|
|
313
|
+
-webkit-box-pack: start;
|
|
314
|
+
-ms-flex-pack: start;
|
|
315
|
+
-webkit-justify-content: flex-start;
|
|
316
|
+
justify-content: flex-start;
|
|
317
|
+
-webkit-align-items: center;
|
|
318
|
+
-webkit-box-align: center;
|
|
319
|
+
-ms-flex-align: center;
|
|
320
|
+
align-items: center;
|
|
321
|
+
position: relative;
|
|
322
|
+
-webkit-text-decoration: none;
|
|
323
|
+
text-decoration: none;
|
|
324
|
+
width: 100%;
|
|
325
|
+
box-sizing: border-box;
|
|
326
|
+
text-align: left;
|
|
327
|
+
padding-top: 8px;
|
|
328
|
+
padding-bottom: 8px;
|
|
329
|
+
padding-left: 16px;
|
|
330
|
+
padding-right: 16px;
|
|
331
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
332
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
74
333
|
padding: 0;
|
|
75
334
|
}
|
|
76
335
|
|
|
77
|
-
.emotion-
|
|
336
|
+
.emotion-4::-moz-focus-inner {
|
|
337
|
+
border-style: none;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.emotion-4.Mui-disabled {
|
|
341
|
+
pointer-events: none;
|
|
342
|
+
cursor: default;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
@media print {
|
|
346
|
+
.emotion-4 {
|
|
347
|
+
-webkit-print-color-adjust: exact;
|
|
348
|
+
color-adjust: exact;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.emotion-4.Mui-focusVisible {
|
|
353
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.emotion-4.Mui-selected {
|
|
357
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
361
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.emotion-4.Mui-disabled {
|
|
365
|
+
opacity: 0.38;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.emotion-4:hover {
|
|
369
|
+
-webkit-text-decoration: none;
|
|
370
|
+
text-decoration: none;
|
|
371
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
@media (hover: none) {
|
|
375
|
+
.emotion-4:hover {
|
|
376
|
+
background-color: transparent;
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.emotion-4.Mui-selected:hover {
|
|
381
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
@media (hover: none) {
|
|
385
|
+
.emotion-4.Mui-selected:hover {
|
|
386
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.emotion-4:hover {
|
|
78
391
|
background-color: transparent;
|
|
79
392
|
}
|
|
80
393
|
|
|
81
|
-
.emotion-
|
|
394
|
+
.emotion-5 {
|
|
395
|
+
position: relative;
|
|
396
|
+
display: -webkit-box;
|
|
397
|
+
display: -webkit-flex;
|
|
398
|
+
display: -ms-flexbox;
|
|
399
|
+
display: flex;
|
|
400
|
+
-webkit-align-items: center;
|
|
401
|
+
-webkit-box-align: center;
|
|
402
|
+
-ms-flex-align: center;
|
|
403
|
+
align-items: center;
|
|
404
|
+
-webkit-box-pack: center;
|
|
405
|
+
-ms-flex-pack: center;
|
|
406
|
+
-webkit-justify-content: center;
|
|
407
|
+
justify-content: center;
|
|
408
|
+
-webkit-flex-shrink: 0;
|
|
409
|
+
-ms-flex-negative: 0;
|
|
410
|
+
flex-shrink: 0;
|
|
411
|
+
width: 40px;
|
|
412
|
+
height: 40px;
|
|
413
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
414
|
+
font-size: 1.25rem;
|
|
415
|
+
line-height: 1;
|
|
416
|
+
border-radius: 50%;
|
|
417
|
+
overflow: hidden;
|
|
418
|
+
-webkit-user-select: none;
|
|
419
|
+
-moz-user-select: none;
|
|
420
|
+
-ms-user-select: none;
|
|
421
|
+
user-select: none;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.emotion-6 {
|
|
425
|
+
width: 100%;
|
|
426
|
+
height: 100%;
|
|
427
|
+
text-align: center;
|
|
428
|
+
object-fit: cover;
|
|
429
|
+
color: transparent;
|
|
430
|
+
text-indent: 10000px;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.emotion-8 {
|
|
434
|
+
-webkit-flex: 1 1 auto;
|
|
435
|
+
-ms-flex: 1 1 auto;
|
|
436
|
+
flex: 1 1 auto;
|
|
437
|
+
min-width: 0;
|
|
438
|
+
margin-top: 4px;
|
|
439
|
+
margin-bottom: 4px;
|
|
82
440
|
padding: 0 10px;
|
|
83
441
|
margin: 0;
|
|
84
442
|
}
|
|
85
443
|
|
|
444
|
+
.emotion-9 {
|
|
445
|
+
margin: 0;
|
|
446
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
447
|
+
font-weight: 400;
|
|
448
|
+
font-size: 1rem;
|
|
449
|
+
line-height: 1.5;
|
|
450
|
+
display: block;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.emotion-10 {
|
|
454
|
+
overflow: hidden;
|
|
455
|
+
pointer-events: none;
|
|
456
|
+
position: absolute;
|
|
457
|
+
z-index: 0;
|
|
458
|
+
top: 0;
|
|
459
|
+
right: 0;
|
|
460
|
+
bottom: 0;
|
|
461
|
+
left: 0;
|
|
462
|
+
border-radius: inherit;
|
|
463
|
+
}
|
|
464
|
+
|
|
86
465
|
<div>
|
|
87
466
|
<ul
|
|
88
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
467
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
89
468
|
>
|
|
90
469
|
<span
|
|
91
|
-
class="MuiTypography-root
|
|
470
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
92
471
|
>
|
|
93
472
|
Author
|
|
94
473
|
</span>
|
|
95
474
|
<div
|
|
96
|
-
|
|
97
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
475
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
98
476
|
role="button"
|
|
99
477
|
tabindex="0"
|
|
100
478
|
>
|
|
@@ -103,26 +481,26 @@ Object {
|
|
|
103
481
|
target="_top"
|
|
104
482
|
>
|
|
105
483
|
<div
|
|
106
|
-
class="MuiAvatar-root MuiAvatar-
|
|
484
|
+
class="MuiAvatar-root MuiAvatar-circular emotion-5"
|
|
107
485
|
>
|
|
108
486
|
<img
|
|
109
487
|
alt="verdaccio user"
|
|
110
|
-
class="MuiAvatar-img"
|
|
488
|
+
class="MuiAvatar-img emotion-6"
|
|
111
489
|
src="https://www.gravatar.com/avatar/000000"
|
|
112
490
|
/>
|
|
113
491
|
</div>
|
|
114
492
|
</a>
|
|
115
493
|
<div
|
|
116
|
-
class="MuiListItemText-root emotion-
|
|
494
|
+
class="MuiListItemText-root emotion-7 emotion-8"
|
|
117
495
|
>
|
|
118
496
|
<span
|
|
119
|
-
class="MuiTypography-root MuiListItemText-primary
|
|
497
|
+
class="MuiTypography-root MuiTypography-body1 MuiListItemText-primary emotion-9"
|
|
120
498
|
>
|
|
121
499
|
verdaccio user
|
|
122
500
|
</span>
|
|
123
501
|
</div>
|
|
124
502
|
<span
|
|
125
|
-
class="MuiTouchRipple-root"
|
|
503
|
+
class="MuiTouchRipple-root emotion-10"
|
|
126
504
|
/>
|
|
127
505
|
</div>
|
|
128
506
|
</ul>
|
|
@@ -185,115 +563,493 @@ exports[`<Author /> component should render the component when there is no autho
|
|
|
185
563
|
Object {
|
|
186
564
|
"asFragment": [Function],
|
|
187
565
|
"baseElement": .emotion-0 {
|
|
188
|
-
|
|
566
|
+
list-style: none;
|
|
567
|
+
margin: 0;
|
|
568
|
+
padding: 0;
|
|
569
|
+
position: relative;
|
|
570
|
+
padding-top: 0;
|
|
571
|
+
padding-bottom: 8px;
|
|
189
572
|
}
|
|
190
573
|
|
|
191
574
|
.emotion-2 {
|
|
575
|
+
margin: 0;
|
|
576
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
577
|
+
font-weight: 400;
|
|
578
|
+
font-size: 1rem;
|
|
579
|
+
line-height: 1.75;
|
|
580
|
+
font-weight: 700;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.emotion-4 {
|
|
584
|
+
display: -webkit-inline-box;
|
|
585
|
+
display: -webkit-inline-flex;
|
|
586
|
+
display: -ms-inline-flexbox;
|
|
587
|
+
display: inline-flex;
|
|
588
|
+
-webkit-align-items: center;
|
|
589
|
+
-webkit-box-align: center;
|
|
590
|
+
-ms-flex-align: center;
|
|
591
|
+
align-items: center;
|
|
592
|
+
-webkit-box-pack: center;
|
|
593
|
+
-ms-flex-pack: center;
|
|
594
|
+
-webkit-justify-content: center;
|
|
595
|
+
justify-content: center;
|
|
596
|
+
position: relative;
|
|
597
|
+
box-sizing: border-box;
|
|
598
|
+
-webkit-tap-highlight-color: transparent;
|
|
599
|
+
background-color: transparent;
|
|
600
|
+
outline: 0;
|
|
601
|
+
border: 0;
|
|
602
|
+
margin: 0;
|
|
603
|
+
border-radius: 0;
|
|
604
|
+
padding: 0;
|
|
605
|
+
cursor: pointer;
|
|
606
|
+
-webkit-user-select: none;
|
|
607
|
+
-moz-user-select: none;
|
|
608
|
+
-ms-user-select: none;
|
|
609
|
+
user-select: none;
|
|
610
|
+
vertical-align: middle;
|
|
611
|
+
-moz-appearance: none;
|
|
612
|
+
-webkit-appearance: none;
|
|
613
|
+
-webkit-text-decoration: none;
|
|
614
|
+
text-decoration: none;
|
|
615
|
+
color: inherit;
|
|
616
|
+
display: -webkit-box;
|
|
617
|
+
display: -webkit-flex;
|
|
618
|
+
display: -ms-flexbox;
|
|
619
|
+
display: flex;
|
|
620
|
+
-webkit-box-pack: start;
|
|
621
|
+
-ms-flex-pack: start;
|
|
622
|
+
-webkit-justify-content: flex-start;
|
|
623
|
+
justify-content: flex-start;
|
|
624
|
+
-webkit-align-items: center;
|
|
625
|
+
-webkit-box-align: center;
|
|
626
|
+
-ms-flex-align: center;
|
|
627
|
+
align-items: center;
|
|
628
|
+
position: relative;
|
|
629
|
+
-webkit-text-decoration: none;
|
|
630
|
+
text-decoration: none;
|
|
631
|
+
width: 100%;
|
|
632
|
+
box-sizing: border-box;
|
|
633
|
+
text-align: left;
|
|
634
|
+
padding-top: 8px;
|
|
635
|
+
padding-bottom: 8px;
|
|
636
|
+
padding-left: 16px;
|
|
637
|
+
padding-right: 16px;
|
|
638
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
639
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
192
640
|
padding: 0;
|
|
193
641
|
}
|
|
194
642
|
|
|
195
|
-
.emotion-
|
|
643
|
+
.emotion-4::-moz-focus-inner {
|
|
644
|
+
border-style: none;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.emotion-4.Mui-disabled {
|
|
648
|
+
pointer-events: none;
|
|
649
|
+
cursor: default;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
@media print {
|
|
653
|
+
.emotion-4 {
|
|
654
|
+
-webkit-print-color-adjust: exact;
|
|
655
|
+
color-adjust: exact;
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.emotion-4.Mui-focusVisible {
|
|
660
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.emotion-4.Mui-selected {
|
|
664
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
668
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.emotion-4.Mui-disabled {
|
|
672
|
+
opacity: 0.38;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.emotion-4:hover {
|
|
676
|
+
-webkit-text-decoration: none;
|
|
677
|
+
text-decoration: none;
|
|
678
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
@media (hover: none) {
|
|
682
|
+
.emotion-4:hover {
|
|
683
|
+
background-color: transparent;
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.emotion-4.Mui-selected:hover {
|
|
688
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
@media (hover: none) {
|
|
692
|
+
.emotion-4.Mui-selected:hover {
|
|
693
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.emotion-4:hover {
|
|
196
698
|
background-color: transparent;
|
|
197
699
|
}
|
|
198
700
|
|
|
199
|
-
.emotion-
|
|
701
|
+
.emotion-5 {
|
|
702
|
+
position: relative;
|
|
703
|
+
display: -webkit-box;
|
|
704
|
+
display: -webkit-flex;
|
|
705
|
+
display: -ms-flexbox;
|
|
706
|
+
display: flex;
|
|
707
|
+
-webkit-align-items: center;
|
|
708
|
+
-webkit-box-align: center;
|
|
709
|
+
-ms-flex-align: center;
|
|
710
|
+
align-items: center;
|
|
711
|
+
-webkit-box-pack: center;
|
|
712
|
+
-ms-flex-pack: center;
|
|
713
|
+
-webkit-justify-content: center;
|
|
714
|
+
justify-content: center;
|
|
715
|
+
-webkit-flex-shrink: 0;
|
|
716
|
+
-ms-flex-negative: 0;
|
|
717
|
+
flex-shrink: 0;
|
|
718
|
+
width: 40px;
|
|
719
|
+
height: 40px;
|
|
720
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
721
|
+
font-size: 1.25rem;
|
|
722
|
+
line-height: 1;
|
|
723
|
+
border-radius: 50%;
|
|
724
|
+
overflow: hidden;
|
|
725
|
+
-webkit-user-select: none;
|
|
726
|
+
-moz-user-select: none;
|
|
727
|
+
-ms-user-select: none;
|
|
728
|
+
user-select: none;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.emotion-6 {
|
|
732
|
+
width: 100%;
|
|
733
|
+
height: 100%;
|
|
734
|
+
text-align: center;
|
|
735
|
+
object-fit: cover;
|
|
736
|
+
color: transparent;
|
|
737
|
+
text-indent: 10000px;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.emotion-8 {
|
|
741
|
+
-webkit-flex: 1 1 auto;
|
|
742
|
+
-ms-flex: 1 1 auto;
|
|
743
|
+
flex: 1 1 auto;
|
|
744
|
+
min-width: 0;
|
|
745
|
+
margin-top: 4px;
|
|
746
|
+
margin-bottom: 4px;
|
|
200
747
|
padding: 0 10px;
|
|
201
748
|
margin: 0;
|
|
202
749
|
}
|
|
203
750
|
|
|
751
|
+
.emotion-9 {
|
|
752
|
+
margin: 0;
|
|
753
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
754
|
+
font-weight: 400;
|
|
755
|
+
font-size: 1rem;
|
|
756
|
+
line-height: 1.5;
|
|
757
|
+
display: block;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.emotion-10 {
|
|
761
|
+
overflow: hidden;
|
|
762
|
+
pointer-events: none;
|
|
763
|
+
position: absolute;
|
|
764
|
+
z-index: 0;
|
|
765
|
+
top: 0;
|
|
766
|
+
right: 0;
|
|
767
|
+
bottom: 0;
|
|
768
|
+
left: 0;
|
|
769
|
+
border-radius: inherit;
|
|
770
|
+
}
|
|
771
|
+
|
|
204
772
|
<body>
|
|
205
773
|
<div>
|
|
206
774
|
<ul
|
|
207
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
775
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
208
776
|
>
|
|
209
777
|
<span
|
|
210
|
-
class="MuiTypography-root
|
|
778
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
211
779
|
>
|
|
212
780
|
Author
|
|
213
781
|
</span>
|
|
214
782
|
<div
|
|
215
|
-
|
|
216
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
783
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
217
784
|
role="button"
|
|
218
785
|
tabindex="0"
|
|
219
786
|
>
|
|
220
787
|
<div
|
|
221
|
-
class="MuiAvatar-root MuiAvatar-
|
|
788
|
+
class="MuiAvatar-root MuiAvatar-circular emotion-5"
|
|
222
789
|
>
|
|
223
790
|
<img
|
|
224
791
|
alt="verdaccio user"
|
|
225
|
-
class="MuiAvatar-img"
|
|
792
|
+
class="MuiAvatar-img emotion-6"
|
|
226
793
|
src="https://www.gravatar.com/avatar/000000"
|
|
227
794
|
/>
|
|
228
795
|
</div>
|
|
229
796
|
<div
|
|
230
|
-
class="MuiListItemText-root emotion-
|
|
797
|
+
class="MuiListItemText-root emotion-7 emotion-8"
|
|
231
798
|
>
|
|
232
799
|
<span
|
|
233
|
-
class="MuiTypography-root MuiListItemText-primary
|
|
800
|
+
class="MuiTypography-root MuiTypography-body1 MuiListItemText-primary emotion-9"
|
|
234
801
|
>
|
|
235
802
|
verdaccio user
|
|
236
803
|
</span>
|
|
237
804
|
</div>
|
|
238
805
|
<span
|
|
239
|
-
class="MuiTouchRipple-root"
|
|
806
|
+
class="MuiTouchRipple-root emotion-10"
|
|
240
807
|
/>
|
|
241
808
|
</div>
|
|
242
809
|
</ul>
|
|
243
810
|
</div>
|
|
244
811
|
</body>,
|
|
245
812
|
"container": .emotion-0 {
|
|
246
|
-
|
|
813
|
+
list-style: none;
|
|
814
|
+
margin: 0;
|
|
815
|
+
padding: 0;
|
|
816
|
+
position: relative;
|
|
817
|
+
padding-top: 0;
|
|
818
|
+
padding-bottom: 8px;
|
|
247
819
|
}
|
|
248
820
|
|
|
249
821
|
.emotion-2 {
|
|
822
|
+
margin: 0;
|
|
823
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
824
|
+
font-weight: 400;
|
|
825
|
+
font-size: 1rem;
|
|
826
|
+
line-height: 1.75;
|
|
827
|
+
font-weight: 700;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.emotion-4 {
|
|
831
|
+
display: -webkit-inline-box;
|
|
832
|
+
display: -webkit-inline-flex;
|
|
833
|
+
display: -ms-inline-flexbox;
|
|
834
|
+
display: inline-flex;
|
|
835
|
+
-webkit-align-items: center;
|
|
836
|
+
-webkit-box-align: center;
|
|
837
|
+
-ms-flex-align: center;
|
|
838
|
+
align-items: center;
|
|
839
|
+
-webkit-box-pack: center;
|
|
840
|
+
-ms-flex-pack: center;
|
|
841
|
+
-webkit-justify-content: center;
|
|
842
|
+
justify-content: center;
|
|
843
|
+
position: relative;
|
|
844
|
+
box-sizing: border-box;
|
|
845
|
+
-webkit-tap-highlight-color: transparent;
|
|
846
|
+
background-color: transparent;
|
|
847
|
+
outline: 0;
|
|
848
|
+
border: 0;
|
|
849
|
+
margin: 0;
|
|
850
|
+
border-radius: 0;
|
|
851
|
+
padding: 0;
|
|
852
|
+
cursor: pointer;
|
|
853
|
+
-webkit-user-select: none;
|
|
854
|
+
-moz-user-select: none;
|
|
855
|
+
-ms-user-select: none;
|
|
856
|
+
user-select: none;
|
|
857
|
+
vertical-align: middle;
|
|
858
|
+
-moz-appearance: none;
|
|
859
|
+
-webkit-appearance: none;
|
|
860
|
+
-webkit-text-decoration: none;
|
|
861
|
+
text-decoration: none;
|
|
862
|
+
color: inherit;
|
|
863
|
+
display: -webkit-box;
|
|
864
|
+
display: -webkit-flex;
|
|
865
|
+
display: -ms-flexbox;
|
|
866
|
+
display: flex;
|
|
867
|
+
-webkit-box-pack: start;
|
|
868
|
+
-ms-flex-pack: start;
|
|
869
|
+
-webkit-justify-content: flex-start;
|
|
870
|
+
justify-content: flex-start;
|
|
871
|
+
-webkit-align-items: center;
|
|
872
|
+
-webkit-box-align: center;
|
|
873
|
+
-ms-flex-align: center;
|
|
874
|
+
align-items: center;
|
|
875
|
+
position: relative;
|
|
876
|
+
-webkit-text-decoration: none;
|
|
877
|
+
text-decoration: none;
|
|
878
|
+
width: 100%;
|
|
879
|
+
box-sizing: border-box;
|
|
880
|
+
text-align: left;
|
|
881
|
+
padding-top: 8px;
|
|
882
|
+
padding-bottom: 8px;
|
|
883
|
+
padding-left: 16px;
|
|
884
|
+
padding-right: 16px;
|
|
885
|
+
-webkit-transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
886
|
+
transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
250
887
|
padding: 0;
|
|
251
888
|
}
|
|
252
889
|
|
|
253
|
-
.emotion-
|
|
890
|
+
.emotion-4::-moz-focus-inner {
|
|
891
|
+
border-style: none;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.emotion-4.Mui-disabled {
|
|
895
|
+
pointer-events: none;
|
|
896
|
+
cursor: default;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
@media print {
|
|
900
|
+
.emotion-4 {
|
|
901
|
+
-webkit-print-color-adjust: exact;
|
|
902
|
+
color-adjust: exact;
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.emotion-4.Mui-focusVisible {
|
|
907
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.emotion-4.Mui-selected {
|
|
911
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.emotion-4.Mui-selected.Mui-focusVisible {
|
|
915
|
+
background-color: rgba(75, 94, 64, 0.2);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.emotion-4.Mui-disabled {
|
|
919
|
+
opacity: 0.38;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.emotion-4:hover {
|
|
923
|
+
-webkit-text-decoration: none;
|
|
924
|
+
text-decoration: none;
|
|
925
|
+
background-color: rgba(0, 0, 0, 0.04);
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
@media (hover: none) {
|
|
929
|
+
.emotion-4:hover {
|
|
930
|
+
background-color: transparent;
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.emotion-4.Mui-selected:hover {
|
|
935
|
+
background-color: rgba(75, 94, 64, 0.12);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
@media (hover: none) {
|
|
939
|
+
.emotion-4.Mui-selected:hover {
|
|
940
|
+
background-color: rgba(75, 94, 64, 0.08);
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.emotion-4:hover {
|
|
254
945
|
background-color: transparent;
|
|
255
946
|
}
|
|
256
947
|
|
|
257
|
-
.emotion-
|
|
948
|
+
.emotion-5 {
|
|
949
|
+
position: relative;
|
|
950
|
+
display: -webkit-box;
|
|
951
|
+
display: -webkit-flex;
|
|
952
|
+
display: -ms-flexbox;
|
|
953
|
+
display: flex;
|
|
954
|
+
-webkit-align-items: center;
|
|
955
|
+
-webkit-box-align: center;
|
|
956
|
+
-ms-flex-align: center;
|
|
957
|
+
align-items: center;
|
|
958
|
+
-webkit-box-pack: center;
|
|
959
|
+
-ms-flex-pack: center;
|
|
960
|
+
-webkit-justify-content: center;
|
|
961
|
+
justify-content: center;
|
|
962
|
+
-webkit-flex-shrink: 0;
|
|
963
|
+
-ms-flex-negative: 0;
|
|
964
|
+
flex-shrink: 0;
|
|
965
|
+
width: 40px;
|
|
966
|
+
height: 40px;
|
|
967
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
968
|
+
font-size: 1.25rem;
|
|
969
|
+
line-height: 1;
|
|
970
|
+
border-radius: 50%;
|
|
971
|
+
overflow: hidden;
|
|
972
|
+
-webkit-user-select: none;
|
|
973
|
+
-moz-user-select: none;
|
|
974
|
+
-ms-user-select: none;
|
|
975
|
+
user-select: none;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
.emotion-6 {
|
|
979
|
+
width: 100%;
|
|
980
|
+
height: 100%;
|
|
981
|
+
text-align: center;
|
|
982
|
+
object-fit: cover;
|
|
983
|
+
color: transparent;
|
|
984
|
+
text-indent: 10000px;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.emotion-8 {
|
|
988
|
+
-webkit-flex: 1 1 auto;
|
|
989
|
+
-ms-flex: 1 1 auto;
|
|
990
|
+
flex: 1 1 auto;
|
|
991
|
+
min-width: 0;
|
|
992
|
+
margin-top: 4px;
|
|
993
|
+
margin-bottom: 4px;
|
|
258
994
|
padding: 0 10px;
|
|
259
995
|
margin: 0;
|
|
260
996
|
}
|
|
261
997
|
|
|
998
|
+
.emotion-9 {
|
|
999
|
+
margin: 0;
|
|
1000
|
+
font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
|
|
1001
|
+
font-weight: 400;
|
|
1002
|
+
font-size: 1rem;
|
|
1003
|
+
line-height: 1.5;
|
|
1004
|
+
display: block;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.emotion-10 {
|
|
1008
|
+
overflow: hidden;
|
|
1009
|
+
pointer-events: none;
|
|
1010
|
+
position: absolute;
|
|
1011
|
+
z-index: 0;
|
|
1012
|
+
top: 0;
|
|
1013
|
+
right: 0;
|
|
1014
|
+
bottom: 0;
|
|
1015
|
+
left: 0;
|
|
1016
|
+
border-radius: inherit;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
262
1019
|
<div>
|
|
263
1020
|
<ul
|
|
264
|
-
class="MuiList-root MuiList-padding MuiList-subheader"
|
|
1021
|
+
class="MuiList-root MuiList-padding MuiList-subheader emotion-0"
|
|
265
1022
|
>
|
|
266
1023
|
<span
|
|
267
|
-
class="MuiTypography-root
|
|
1024
|
+
class="MuiTypography-root MuiTypography-subtitle1 emotion-1 emotion-2"
|
|
268
1025
|
>
|
|
269
1026
|
Author
|
|
270
1027
|
</span>
|
|
271
1028
|
<div
|
|
272
|
-
|
|
273
|
-
class="MuiButtonBase-root MuiListItem-root emotion-2 emotion-3 MuiListItem-gutters MuiListItem-button"
|
|
1029
|
+
class="MuiButtonBase-root MuiListItem-root MuiListItem-gutters MuiListItem-padding MuiListItem-button emotion-3 emotion-4"
|
|
274
1030
|
role="button"
|
|
275
1031
|
tabindex="0"
|
|
276
1032
|
>
|
|
277
1033
|
<div
|
|
278
|
-
class="MuiAvatar-root MuiAvatar-
|
|
1034
|
+
class="MuiAvatar-root MuiAvatar-circular emotion-5"
|
|
279
1035
|
>
|
|
280
1036
|
<img
|
|
281
1037
|
alt="verdaccio user"
|
|
282
|
-
class="MuiAvatar-img"
|
|
1038
|
+
class="MuiAvatar-img emotion-6"
|
|
283
1039
|
src="https://www.gravatar.com/avatar/000000"
|
|
284
1040
|
/>
|
|
285
1041
|
</div>
|
|
286
1042
|
<div
|
|
287
|
-
class="MuiListItemText-root emotion-
|
|
1043
|
+
class="MuiListItemText-root emotion-7 emotion-8"
|
|
288
1044
|
>
|
|
289
1045
|
<span
|
|
290
|
-
class="MuiTypography-root MuiListItemText-primary
|
|
1046
|
+
class="MuiTypography-root MuiTypography-body1 MuiListItemText-primary emotion-9"
|
|
291
1047
|
>
|
|
292
1048
|
verdaccio user
|
|
293
1049
|
</span>
|
|
294
1050
|
</div>
|
|
295
1051
|
<span
|
|
296
|
-
class="MuiTouchRipple-root"
|
|
1052
|
+
class="MuiTouchRipple-root emotion-10"
|
|
297
1053
|
/>
|
|
298
1054
|
</div>
|
|
299
1055
|
</ul>
|