@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
|
@@ -19,25 +19,24 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
19
19
|
-ms-flex-align: center;
|
|
20
20
|
align-items: center;
|
|
21
21
|
-webkit-box-pack: end;
|
|
22
|
-
-webkit-justify-content: flex-end;
|
|
23
22
|
-ms-flex-pack: end;
|
|
23
|
+
-webkit-justify-content: flex-end;
|
|
24
24
|
justify-content: flex-end;
|
|
25
25
|
width: 100%;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
@media (min-width:768px) {
|
|
28
|
+
@media (min-width: 768px) {
|
|
29
29
|
.emotion-2 {
|
|
30
30
|
min-width: 400px;
|
|
31
31
|
max-width: 800px;
|
|
32
32
|
margin: auto;
|
|
33
33
|
-webkit-box-pack: justify;
|
|
34
34
|
-webkit-justify-content: space-between;
|
|
35
|
-
-ms-flex-pack: justify;
|
|
36
35
|
justify-content: space-between;
|
|
37
36
|
}
|
|
38
37
|
}
|
|
39
38
|
|
|
40
|
-
@media (min-width:1024px) {
|
|
39
|
+
@media (min-width: 1024px) {
|
|
41
40
|
.emotion-2 {
|
|
42
41
|
max-width: 1240px;
|
|
43
42
|
}
|
|
@@ -51,7 +50,7 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
51
50
|
display: none;
|
|
52
51
|
}
|
|
53
52
|
|
|
54
|
-
@media (min-width:768px) {
|
|
53
|
+
@media (min-width: 768px) {
|
|
55
54
|
.emotion-4 {
|
|
56
55
|
display: -webkit-box;
|
|
57
56
|
display: -webkit-flex;
|
|
@@ -74,7 +73,21 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
74
73
|
visibility: visible;
|
|
75
74
|
}
|
|
76
75
|
|
|
77
|
-
.emotion-
|
|
76
|
+
.emotion-12 {
|
|
77
|
+
-webkit-user-select: none;
|
|
78
|
+
-moz-user-select: none;
|
|
79
|
+
-ms-user-select: none;
|
|
80
|
+
user-select: none;
|
|
81
|
+
width: 1em;
|
|
82
|
+
height: 1em;
|
|
83
|
+
display: inline-block;
|
|
84
|
+
fill: currentColor;
|
|
85
|
+
-webkit-flex-shrink: 0;
|
|
86
|
+
-ms-flex-negative: 0;
|
|
87
|
+
flex-shrink: 0;
|
|
88
|
+
-webkit-transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
89
|
+
transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
90
|
+
font-size: 1.5rem;
|
|
78
91
|
width: 18px;
|
|
79
92
|
height: 18px;
|
|
80
93
|
margin: 0px 8px;
|
|
@@ -82,7 +95,7 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
82
95
|
|
|
83
96
|
.emotion-13 {
|
|
84
97
|
display: inline-grid;
|
|
85
|
-
grid-template-columns: repeat(8,max-content);
|
|
98
|
+
grid-template-columns: repeat(8, max-content);
|
|
86
99
|
grid-gap: 0px 8px;
|
|
87
100
|
position: absolute;
|
|
88
101
|
background: #d3dddd;
|
|
@@ -106,13 +119,13 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
106
119
|
border: 5px solid;
|
|
107
120
|
border-color: #d3dddd transparent transparent transparent;
|
|
108
121
|
-webkit-transform: rotate(90deg);
|
|
122
|
+
-moz-transform: rotate(90deg);
|
|
109
123
|
-ms-transform: rotate(90deg);
|
|
110
124
|
transform: rotate(90deg);
|
|
111
125
|
}
|
|
112
126
|
|
|
113
127
|
.emotion-15 {
|
|
114
|
-
width:
|
|
115
|
-
height: 18px;
|
|
128
|
+
width: 10px;
|
|
116
129
|
}
|
|
117
130
|
|
|
118
131
|
.emotion-31 {
|
|
@@ -127,7 +140,7 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
127
140
|
display: flex;
|
|
128
141
|
}
|
|
129
142
|
|
|
130
|
-
@media (min-width:768px) {
|
|
143
|
+
@media (min-width: 768px) {
|
|
131
144
|
.emotion-31 {
|
|
132
145
|
display: -webkit-box;
|
|
133
146
|
display: -webkit-flex;
|
|
@@ -140,7 +153,9 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
140
153
|
display: inline-block;
|
|
141
154
|
vertical-align: middle;
|
|
142
155
|
box-sizing: border-box;
|
|
156
|
+
-webkit-background-position: center;
|
|
143
157
|
background-position: center;
|
|
158
|
+
-webkit-background-size: contain;
|
|
144
159
|
background-size: contain;
|
|
145
160
|
background-image: url([object Object]);
|
|
146
161
|
background-repeat: no-repeat;
|
|
@@ -169,7 +184,7 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
169
184
|
>
|
|
170
185
|
<svg
|
|
171
186
|
aria-hidden="true"
|
|
172
|
-
class="MuiSvgIcon-root emotion-10 emotion-11 emotion-12"
|
|
187
|
+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium emotion-10 emotion-11 emotion-12"
|
|
173
188
|
focusable="false"
|
|
174
189
|
viewBox="0 0 45 45"
|
|
175
190
|
>
|
|
@@ -211,344 +226,235 @@ exports[`<Footer /> component should load the initial state of Footer component
|
|
|
211
226
|
<span
|
|
212
227
|
class="emotion-13 emotion-14"
|
|
213
228
|
>
|
|
214
|
-
<
|
|
215
|
-
class="
|
|
216
|
-
focusable="false"
|
|
217
|
-
role="img"
|
|
218
|
-
viewBox="0 0 45 45"
|
|
229
|
+
<div
|
|
230
|
+
class="emotion-15 emotion-16"
|
|
219
231
|
>
|
|
220
|
-
<
|
|
221
|
-
|
|
222
|
-
id="prefix__a"
|
|
223
|
-
>
|
|
224
|
-
<path
|
|
225
|
-
d="M0 36h36V0H0v36z"
|
|
226
|
-
/>
|
|
227
|
-
</clippath>
|
|
228
|
-
</defs>
|
|
229
|
-
<g
|
|
230
|
-
clip-path="url(#prefix__a)"
|
|
231
|
-
transform="matrix(1.25 0 0 -1.25 0 45)"
|
|
232
|
+
<svg
|
|
233
|
+
viewBox="0 85.333 512 341.333"
|
|
232
234
|
>
|
|
233
235
|
<path
|
|
234
|
-
d="
|
|
235
|
-
fill="#
|
|
236
|
+
d="M0 85.331h512v341.337H0z"
|
|
237
|
+
fill="#FFDA44"
|
|
238
|
+
/>
|
|
239
|
+
<path
|
|
240
|
+
d="M0 85.331h512v113.775H0zm0 227.551h512v113.775H0z"
|
|
241
|
+
fill="#D80027"
|
|
242
|
+
/>
|
|
243
|
+
</svg>
|
|
244
|
+
</div>
|
|
245
|
+
<div
|
|
246
|
+
class="emotion-15 emotion-16"
|
|
247
|
+
>
|
|
248
|
+
<svg
|
|
249
|
+
viewBox="0 85.333 512 341.333"
|
|
250
|
+
>
|
|
251
|
+
<path
|
|
252
|
+
d="M0 85.337h512v341.326H0z"
|
|
253
|
+
fill="#FFF"
|
|
254
|
+
/>
|
|
255
|
+
<path
|
|
256
|
+
d="M0 85.337h512v113.775H0zm0 227.551h512v113.775H0z"
|
|
257
|
+
fill="#338AF3"
|
|
236
258
|
/>
|
|
237
259
|
<path
|
|
238
|
-
d="
|
|
239
|
-
fill="#
|
|
260
|
+
d="M256 214.447c-22.949 0-41.553 18.603-41.553 41.553S233.05 297.553 256 297.553c22.949 0 41.553-18.603 41.553-41.553S278.949 214.447 256 214.447zm0 65.298c-13.114 0-23.745-10.631-23.745-23.745s10.631-23.745 23.745-23.745 23.745 10.631 23.745 23.745-10.631 23.745-23.745 23.745z"
|
|
261
|
+
fill="#FFDA44"
|
|
240
262
|
/>
|
|
241
263
|
<path
|
|
242
|
-
d="
|
|
243
|
-
fill="#
|
|
264
|
+
d="M276.563 261.936L256 256l-20.563 5.936-6.855 11.873h54.836z"
|
|
265
|
+
fill="#0052B4"
|
|
244
266
|
/>
|
|
245
267
|
<path
|
|
246
|
-
d="
|
|
247
|
-
fill="#
|
|
268
|
+
d="M256 226.32l-13.709 23.744L256 256l13.709-5.936z"
|
|
269
|
+
fill="#338AF3"
|
|
248
270
|
/>
|
|
249
271
|
<path
|
|
250
|
-
d="
|
|
251
|
-
fill="#
|
|
272
|
+
d="M235.437 261.936h41.126l-6.854-11.872h-27.418z"
|
|
273
|
+
fill="#6DA544"
|
|
274
|
+
/>
|
|
275
|
+
</svg>
|
|
276
|
+
</div>
|
|
277
|
+
<div
|
|
278
|
+
class="emotion-15 emotion-16"
|
|
279
|
+
>
|
|
280
|
+
<svg
|
|
281
|
+
viewBox="0 0 513 342"
|
|
282
|
+
>
|
|
283
|
+
<path
|
|
284
|
+
d="M17.3 0h478.4v342H17.3V0z"
|
|
285
|
+
fill="#181A93"
|
|
252
286
|
/>
|
|
253
287
|
<path
|
|
254
|
-
d="
|
|
255
|
-
fill="#
|
|
288
|
+
d="M0 0h513v114H0V0z"
|
|
289
|
+
fill="#FFA44A"
|
|
256
290
|
/>
|
|
257
291
|
<path
|
|
258
|
-
d="
|
|
259
|
-
fill="#
|
|
292
|
+
d="M0 228h513v114H0V228z"
|
|
293
|
+
fill="#1A9F0B"
|
|
260
294
|
/>
|
|
261
295
|
<path
|
|
262
|
-
d="
|
|
263
|
-
fill="#
|
|
296
|
+
d="M0 114h513v114H0V114z"
|
|
297
|
+
fill="#FFF"
|
|
298
|
+
/>
|
|
299
|
+
<circle
|
|
300
|
+
cx="256.5"
|
|
301
|
+
cy="171"
|
|
302
|
+
fill="#FFF"
|
|
303
|
+
r="34.2"
|
|
264
304
|
/>
|
|
265
305
|
<path
|
|
266
|
-
d="
|
|
267
|
-
fill="#
|
|
306
|
+
d="M256.5 216.6c-25.1 0-45.6-20.5-45.6-45.6s20.5-45.6 45.6-45.6 45.6 20.5 45.6 45.6-20.5 45.6-45.6 45.6zm0-11.4c18.2 0 34.2-16 34.2-34.2s-15.9-34.2-34.2-34.2-34.2 16-34.2 34.2 16 34.2 34.2 34.2z"
|
|
307
|
+
fill="#181A93"
|
|
308
|
+
/>
|
|
309
|
+
<circle
|
|
310
|
+
cx="256.5"
|
|
311
|
+
cy="171"
|
|
312
|
+
fill="#181A93"
|
|
313
|
+
r="22.8"
|
|
268
314
|
/>
|
|
269
|
-
</
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
</svg>
|
|
274
|
-
<svg
|
|
275
|
-
class="MuiSvgIcon-root emotion-15 emotion-12"
|
|
276
|
-
focusable="false"
|
|
277
|
-
role="img"
|
|
278
|
-
viewBox="0 0 512 512"
|
|
315
|
+
</svg>
|
|
316
|
+
</div>
|
|
317
|
+
<div
|
|
318
|
+
class="emotion-15 emotion-16"
|
|
279
319
|
>
|
|
280
|
-
<
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
d="M215.04 283.591l9.841-17.052 61.483-.783 10.297 17.835H215.04z"
|
|
306
|
-
fill="#bbddf5"
|
|
307
|
-
/>
|
|
308
|
-
<path
|
|
309
|
-
d="M222.891 272.441l15.331-12.445 6.67 7.553 5.774-6.215 4.893 4.892 4.665-5.12 5.561 5.12 5.106-5.334 4.665 5.334 4.451-4.892 7.325 9.102 1.338 2.674s-7.78 1.55-18.446.669c-10.667-.896-16.882 1.55-25.33 2.66-8.448 1.109-23.553-1.109-23.553-1.109l1.55-2.889z"
|
|
310
|
-
fill="#5c913b"
|
|
311
|
-
/>
|
|
312
|
-
<path
|
|
313
|
-
d="M237.995 262.67l10.226 11.107-5.12.442-5.774-8.434.668-3.115zm12.231.883l8.22 7.338-3.782.654-3.996-5.546-.442-2.446zm10.439-.442l7.111 6.67L266 270.89l-5.774-6.229.44-1.55zm9.33 0l-2.888 2.66 1.338 1.565 1.55-4.225zm8.889.228l-3.328 4.224 1.109 1.99 2.446-4.664-.227-1.55z"
|
|
314
|
-
fill="#e2f09f"
|
|
315
|
-
/>
|
|
316
|
-
<path
|
|
317
|
-
d="M256.426 233.671l.939 13.227 7.566-10.867-5.675 11.805 11.805-5.66-10.851 7.553 13.213.939-13.213.952 10.851 7.553-11.805-5.66 5.675 11.805-7.566-10.867-.939 13.226-.939-13.226-7.566 10.867 5.675-11.805-11.805 5.66 10.851-7.553-13.212-.953 13.212-.938-10.85-7.553 11.804 5.66-5.675-11.805 7.566 10.866.94-13.226z"
|
|
318
|
-
fill="#bbddf5"
|
|
319
|
-
/>
|
|
320
|
-
<path
|
|
321
|
-
d="M256 244.665l-2.66 2.66s.654 4.011.441 4.679C253.554 252.658 256 256 256 256l3.327-3.996-.88-5.334-2.447-2.005z"
|
|
322
|
-
fill="#dd2e44"
|
|
323
|
-
/>
|
|
324
|
-
<path
|
|
325
|
-
d="M257.28 240.071c10.894 0 17.109 5.334 17.109 5.334l-3.996-7.111s-6.443-4.893-13.995-4.893c-7.567 0-16 6.001-16 6.001l-3.783 7.553s9.771-6.884 20.665-6.884"
|
|
326
|
-
fill="#269"
|
|
327
|
-
/>
|
|
328
|
-
<path
|
|
329
|
-
d="M257.28 240.071c10.894 0 17.109 5.334 17.109 5.334l-2.888-5.106s-7.78-4.665-15.331-4.665-16.896 5.987-16.896 5.987l-2.66 5.334c.001 0 9.772-6.884 20.666-6.884"
|
|
330
|
-
fill="#ffcc4d"
|
|
331
|
-
/>
|
|
332
|
-
<path
|
|
333
|
-
d="M257.28 240.071c10.894 0 17.109 5.334 17.109 5.334l-2.005-3.327s-5.988-4.224-16.214-3.783c-7.553 0-18.005 5.561-18.005 5.561l-1.55 3.1c0-.001 9.771-6.885 20.665-6.885"
|
|
334
|
-
fill="#dd2e44"
|
|
335
|
-
/>
|
|
336
|
-
<path
|
|
337
|
-
d="M264.291 322.873h-14.165V309.29h14.165v13.582zm-16.426-118.898h-10.183l-5.106-12.459 10.198-1.137 5.091 13.596zm23.21 5.66l-6.784-2.261 3.385-16.426 13.028 1.137-9.629 17.55zm-61.141 69.646l-19.811 4.523-.57-13.583 19.812-2.83.569 11.89zm5.106 14.152l-16.426 6.812-3.954-10.766 15.289-5.106 5.091 9.06zm109.269-12.444l-18.105-5.091v-9.63l20.366-2.83-2.261 17.55zm-9.003 18.674l-16.981-7.937 5.646-10.182 18.703 5.66-7.368 12.459z"
|
|
338
|
-
fill="#eee"
|
|
339
|
-
/>
|
|
340
|
-
<title>
|
|
341
|
-
Nicaragua
|
|
342
|
-
</title>
|
|
343
|
-
</svg>
|
|
344
|
-
<svg
|
|
345
|
-
class="MuiSvgIcon-root emotion-15 emotion-12"
|
|
346
|
-
focusable="false"
|
|
347
|
-
role="img"
|
|
348
|
-
viewBox="0 0 512 512"
|
|
320
|
+
<svg
|
|
321
|
+
viewBox="0 0 513 342"
|
|
322
|
+
>
|
|
323
|
+
<path
|
|
324
|
+
d="M0 0h513v342H0z"
|
|
325
|
+
fill="#009b3a"
|
|
326
|
+
/>
|
|
327
|
+
<path
|
|
328
|
+
d="M256.5 19.3l204.9 151.4L256.5 322 50.6 170.7z"
|
|
329
|
+
fill="#fedf00"
|
|
330
|
+
/>
|
|
331
|
+
<circle
|
|
332
|
+
cx="256.5"
|
|
333
|
+
cy="171"
|
|
334
|
+
fill="#FFF"
|
|
335
|
+
r="80.4"
|
|
336
|
+
/>
|
|
337
|
+
<path
|
|
338
|
+
d="M215.9 165.7c-13.9 0-27.4 2.1-40.1 6 .6 43.9 36.3 79.3 80.3 79.3 27.2 0 51.3-13.6 65.8-34.3-24.9-31-63.2-51-106-51zm119 20.3c.9-5 1.5-10.1 1.5-15.4 0-44.4-36-80.4-80.4-80.4-33.1 0-61.5 20.1-73.9 48.6 10.9-2.2 22.1-3.4 33.6-3.4 46.8.1 89 19.5 119.2 50.6z"
|
|
339
|
+
fill="#002776"
|
|
340
|
+
/>
|
|
341
|
+
</svg>
|
|
342
|
+
</div>
|
|
343
|
+
<div
|
|
344
|
+
class="emotion-15 emotion-16"
|
|
349
345
|
>
|
|
350
|
-
<
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
/>
|
|
366
|
-
<path
|
|
367
|
-
d="M298.666 256c0-23.566-19.115-42.681-42.681-42.681S213.319 232.434 213.319 256s19.1 42.666 42.666 42.666 42.681-19.1 42.681-42.666"
|
|
368
|
-
fill="#eee"
|
|
369
|
-
/>
|
|
370
|
-
<path
|
|
371
|
-
d="M256 213.334l2.076 32.199 14.251-28.943-10.396 30.535 24.235-21.305-21.291 24.249 30.535-10.396-28.942 14.25L298.666 256l-32.198 2.076 28.942 14.237-30.535-10.383 21.291 24.235-24.235-21.29 10.396 30.535-14.25-28.942L256 298.666l-2.076-32.198-14.252 28.942 10.397-30.535-24.249 21.291 21.305-24.235-30.535 10.383 28.942-14.236L213.334 256l32.199-2.076-28.943-14.251 30.535 10.396-21.305-24.249 24.249 21.305-10.396-30.535 14.25 28.943 2.077-32.2z"
|
|
372
|
-
fill="navy"
|
|
373
|
-
opacity="0.6"
|
|
374
|
-
/>
|
|
375
|
-
<path
|
|
376
|
-
d="M241.778 256c0-7.851 6.37-14.223 14.222-14.223s14.223 6.372 14.223 14.223-6.372 14.223-14.223 14.223-14.223-6.372-14.223-14.223"
|
|
377
|
-
fill="navy"
|
|
378
|
-
/>
|
|
379
|
-
<title>
|
|
380
|
-
India
|
|
381
|
-
</title>
|
|
382
|
-
</svg>
|
|
383
|
-
<svg
|
|
384
|
-
class="MuiSvgIcon-root emotion-15 emotion-12"
|
|
385
|
-
focusable="false"
|
|
386
|
-
role="img"
|
|
387
|
-
viewBox="0 0 45 45"
|
|
346
|
+
<svg
|
|
347
|
+
viewBox="0 0 513 342"
|
|
348
|
+
>
|
|
349
|
+
<path
|
|
350
|
+
d="M0 0h513v342H0z"
|
|
351
|
+
fill="#D80027"
|
|
352
|
+
/>
|
|
353
|
+
<path
|
|
354
|
+
d="M226.8 239.2l-9.7-15.6-17.9 4.4 11.9-14.1-9.7-15.6 17.1 6.9 11.8-14.1-1.3 18.4 17.1 6.9-17.9 4.4zM290.6 82l-10.1 15.4 11.6 14.3-17.7-4.8-10.1 15.5-1-18.4-17.7-4.8 17.2-6.6-1-18.4 11.6 14.3zm-54.4-56.6l-2 18.3 16.8 7.6-18 3.8-2 18.3-9.2-16-17.9 3.8 12.3-13.7-9.2-15.9 16.8 7.5zm56.6 136.4l-14.9 10.9 5.8 17.5-14.9-10.8-14.9 11 5.6-17.6-14.9-10.7 18.4-.1 5.6-17.6 5.8 17.5zM115 46.3l17.3 53.5h56.2l-45.4 32.9 17.3 53.5-45.4-33-45.5 33 17.4-53.5-45.5-32.9h56.3z"
|
|
355
|
+
fill="#FFDA44"
|
|
356
|
+
/>
|
|
357
|
+
</svg>
|
|
358
|
+
</div>
|
|
359
|
+
<div
|
|
360
|
+
class="emotion-15 emotion-16"
|
|
388
361
|
>
|
|
389
|
-
<
|
|
390
|
-
|
|
391
|
-
|
|
362
|
+
<svg
|
|
363
|
+
viewBox="0 0 513 342"
|
|
364
|
+
>
|
|
365
|
+
<path
|
|
366
|
+
d="M0 0h513v342H0z"
|
|
367
|
+
fill="#10338c"
|
|
368
|
+
/>
|
|
369
|
+
<g
|
|
370
|
+
fill="#FFF"
|
|
392
371
|
>
|
|
393
372
|
<path
|
|
394
|
-
d="
|
|
373
|
+
d="M222.2 170.7c.3-.3.5-.6.8-.9-.2.3-.5.6-.8.9zM188 212.6l11 22.9 24.7-5.7-11 22.8 19.9 15.8-24.8 5.6.1 25.4-19.9-15.9-19.8 15.9.1-25.4-24.8-5.6 19.9-15.8-11.1-22.8 24.8 5.7zm197.9 28.5l5.2 10.9 11.8-2.7-5.3 10.9 9.5 7.5-11.8 2.6v12.2l-9.4-7.6-9.5 7.6.1-12.2-11.8-2.6 9.5-7.5-5.3-10.9 11.8 2.7zm-48.6-116l5.2 10.9 11.8-2.7-5.3 10.9 9.5 7.5-11.8 2.7v12.1l-9.4-7.6-9.5 7.6.1-12.1-11.9-2.7 9.5-7.5-5.3-10.9L332 136zm48.6-66.2l5.2 10.9 11.8-2.7-5.3 10.9 9.5 7.5-11.8 2.7v12.1l-9.4-7.6-9.5 7.6.1-12.1-11.8-2.7 9.5-7.5-5.3-10.9 11.8 2.7zm42.5 49.7l5.2 10.9 11.8-2.7-5.3 10.9 9.5 7.5-11.8 2.6V150l-9.4-7.6-9.5 7.6v-12.2l-11.8-2.6 9.5-7.5-5.3-10.9 11.8 2.7zM398 166.5l4.1 12.7h13.3l-10.8 7.8 4.2 12.7-10.8-7.9-10.8 7.9 4.1-12.7-10.7-7.8h13.3z"
|
|
395
374
|
/>
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
transform="matrix(1.25 0 0 -1.25 0 45)"
|
|
401
|
-
>
|
|
375
|
+
<path
|
|
376
|
+
d="M254.8 0v30.6l-45.1 25.1h45.1V115h-59.1l59.1 32.8v22.9h-26.7l-73.5-40.9v40.9H99v-48.6l-87.4 48.6H-1.2v-30.6L44 115H-1.2V55.7h59.1L-1.2 22.8V0h26.7L99 40.8V0h55.6v48.6L242.1 0z"
|
|
377
|
+
/>
|
|
378
|
+
</g>
|
|
402
379
|
<path
|
|
403
|
-
d="
|
|
404
|
-
fill="#
|
|
380
|
+
d="M142.8 0h-32v69.3h-112v32h112v69.4h32v-69.4h112v-32h-112z"
|
|
381
|
+
fill="#D80027"
|
|
405
382
|
/>
|
|
406
383
|
<path
|
|
407
|
-
d="
|
|
408
|
-
fill="#
|
|
384
|
+
d="M154.6 115l100.2 55.7v-15.8L183 115z"
|
|
385
|
+
fill="#0052B4"
|
|
409
386
|
/>
|
|
410
387
|
<path
|
|
411
|
-
d="
|
|
412
|
-
fill="#
|
|
388
|
+
d="M154.6 115l100.2 55.7v-15.8L183 115z"
|
|
389
|
+
fill="#FFF"
|
|
413
390
|
/>
|
|
414
391
|
<path
|
|
415
|
-
d="
|
|
416
|
-
fill="#
|
|
392
|
+
d="M154.6 115l100.2 55.7v-15.8L183 115zm-83.9 0l-71.9 39.9v15.8L99 115z"
|
|
393
|
+
fill="#D80027"
|
|
417
394
|
/>
|
|
418
395
|
<path
|
|
419
|
-
d="
|
|
420
|
-
fill="#
|
|
396
|
+
d="M99 55.7L-1.2 0v15.7l71.9 40z"
|
|
397
|
+
fill="#0052B4"
|
|
421
398
|
/>
|
|
422
399
|
<path
|
|
423
|
-
d="
|
|
424
|
-
fill="#
|
|
400
|
+
d="M99 55.7L-1.2 0v15.7l71.9 40z"
|
|
401
|
+
fill="#FFF"
|
|
425
402
|
/>
|
|
426
403
|
<path
|
|
427
|
-
d="
|
|
428
|
-
fill="#
|
|
404
|
+
d="M99 55.7L-1.2 0v15.7l71.9 40zm84 0l71.8-40V0L154.6 55.7z"
|
|
405
|
+
fill="#D80027"
|
|
429
406
|
/>
|
|
430
|
-
</
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
</svg>
|
|
435
|
-
<svg
|
|
436
|
-
class="MuiSvgIcon-root emotion-15 emotion-12"
|
|
437
|
-
focusable="false"
|
|
438
|
-
role="img"
|
|
439
|
-
viewBox="0 0 45 45"
|
|
407
|
+
</svg>
|
|
408
|
+
</div>
|
|
409
|
+
<div
|
|
410
|
+
class="emotion-15 emotion-16"
|
|
440
411
|
>
|
|
441
|
-
<
|
|
442
|
-
|
|
443
|
-
id="prefix__a"
|
|
444
|
-
>
|
|
445
|
-
<path
|
|
446
|
-
d="M0 36h36V0H0v36z"
|
|
447
|
-
/>
|
|
448
|
-
</clippath>
|
|
449
|
-
</defs>
|
|
450
|
-
<g
|
|
451
|
-
clip-path="url(#prefix__a)"
|
|
452
|
-
transform="matrix(1.25 0 0 -1.25 0 45)"
|
|
412
|
+
<svg
|
|
413
|
+
viewBox="0 85.333 512 341.333"
|
|
453
414
|
>
|
|
454
415
|
<path
|
|
455
|
-
d="
|
|
456
|
-
fill="#
|
|
416
|
+
d="M0 85.331h512v341.337H0z"
|
|
417
|
+
fill="#D80027"
|
|
457
418
|
/>
|
|
458
419
|
<path
|
|
459
|
-
d="
|
|
460
|
-
fill="#ffde02"
|
|
420
|
+
d="M0 85.331h512v113.775H0z"
|
|
461
421
|
/>
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
role="img"
|
|
471
|
-
viewBox="0 0 512 512"
|
|
472
|
-
>
|
|
473
|
-
<path
|
|
474
|
-
d="M473.655 88.276H38.345C17.167 88.276 0 105.443 0 126.621v73.471h512v-73.471c0-21.178-17.167-38.345-38.345-38.345zM0 385.379c0 21.177 17.167 38.345 38.345 38.345h435.31c21.177 0 38.345-17.167 38.345-38.345v-73.471H0v73.471z"
|
|
475
|
-
fill="#ff4b55"
|
|
476
|
-
/>
|
|
477
|
-
<path
|
|
478
|
-
d="M0 200.09h512V311.9H0z"
|
|
479
|
-
fill="#f5f5f5"
|
|
480
|
-
/>
|
|
481
|
-
<title>
|
|
482
|
-
Austria
|
|
483
|
-
</title>
|
|
484
|
-
</svg>
|
|
485
|
-
<svg
|
|
486
|
-
class="MuiSvgIcon-root emotion-15 emotion-12"
|
|
487
|
-
focusable="false"
|
|
488
|
-
role="img"
|
|
489
|
-
viewBox="0 0 512 512"
|
|
490
|
-
>
|
|
491
|
-
<path
|
|
492
|
-
d="M473.655 88.276H38.345C17.167 88.276 0 105.443 0 126.621v73.471h512v-73.471c0-21.178-17.167-38.345-38.345-38.345z"
|
|
493
|
-
fill="#464655"
|
|
494
|
-
/>
|
|
495
|
-
<path
|
|
496
|
-
d="M0 385.379c0 21.177 17.167 38.345 38.345 38.345h435.31c21.177 0 38.345-17.167 38.345-38.345v-73.471H0v73.471z"
|
|
497
|
-
fill="#ffe15a"
|
|
498
|
-
/>
|
|
499
|
-
<path
|
|
500
|
-
d="M0 200.09h512V311.9H0z"
|
|
501
|
-
fill="#ff4b55"
|
|
502
|
-
/>
|
|
503
|
-
<title>
|
|
504
|
-
Germany
|
|
505
|
-
</title>
|
|
506
|
-
</svg>
|
|
507
|
-
<svg
|
|
508
|
-
class="MuiSvgIcon-root emotion-15 emotion-12"
|
|
509
|
-
focusable="false"
|
|
510
|
-
role="img"
|
|
511
|
-
viewBox="-60 -40 240 160"
|
|
422
|
+
<path
|
|
423
|
+
d="M0 312.882h512v113.775H0z"
|
|
424
|
+
fill="#FFDA44"
|
|
425
|
+
/>
|
|
426
|
+
</svg>
|
|
427
|
+
</div>
|
|
428
|
+
<div
|
|
429
|
+
class="emotion-15 emotion-16"
|
|
512
430
|
>
|
|
513
|
-
<
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
<circle
|
|
541
|
-
fill="#000095"
|
|
542
|
-
r="17"
|
|
543
|
-
/>
|
|
544
|
-
<circle
|
|
545
|
-
fill="#fff"
|
|
546
|
-
r="15"
|
|
547
|
-
/>
|
|
548
|
-
<title>
|
|
549
|
-
Taiwan
|
|
550
|
-
</title>
|
|
551
|
-
</svg>
|
|
431
|
+
<svg
|
|
432
|
+
viewBox="0 85.333 512 341.333"
|
|
433
|
+
>
|
|
434
|
+
<path
|
|
435
|
+
d="M0 85.337h512v341.326H0z"
|
|
436
|
+
fill="#D80027"
|
|
437
|
+
/>
|
|
438
|
+
<path
|
|
439
|
+
d="M0 85.337h256V256H0z"
|
|
440
|
+
fill="#0052B4"
|
|
441
|
+
/>
|
|
442
|
+
<path
|
|
443
|
+
d="M186.435 170.669L162.558 181.9l12.714 23.125-25.927-4.961-3.286 26.192L128 206.993l-18.06 19.263-3.285-26.192-25.927 4.96 12.714-23.125-23.877-11.23 23.877-11.231-12.714-23.125 25.927 4.96 3.286-26.192L128 134.344l18.06-19.263 3.285 26.192 25.928-4.96-12.715 23.125z"
|
|
444
|
+
fill="#FFF"
|
|
445
|
+
/>
|
|
446
|
+
<circle
|
|
447
|
+
cx="128"
|
|
448
|
+
cy="170.674"
|
|
449
|
+
fill="#0052B4"
|
|
450
|
+
r="29.006"
|
|
451
|
+
/>
|
|
452
|
+
<path
|
|
453
|
+
d="M128 190.06c-10.692 0-19.391-8.7-19.391-19.391 0-10.692 8.7-19.391 19.391-19.391 10.692 0 19.391 8.7 19.391 19.391 0 10.691-8.699 19.391-19.391 19.391z"
|
|
454
|
+
fill="#FFF"
|
|
455
|
+
/>
|
|
456
|
+
</svg>
|
|
457
|
+
</div>
|
|
552
458
|
</span>
|
|
553
459
|
</span>
|
|
554
460
|
</div>
|
package/src/App/Footer/styles.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import styled from '@emotion/styled';
|
|
2
|
-
|
|
3
2
|
import { Theme } from 'verdaccio-ui/design-tokens/theme';
|
|
4
3
|
|
|
5
4
|
export const Wrapper = styled('div')<{ theme?: Theme }>(({ theme }) => ({
|
|
6
|
-
background: theme?.palette.
|
|
5
|
+
background: theme?.palette.mode === 'light' ? theme?.palette.snow : theme?.palette.cyanBlue,
|
|
7
6
|
borderTop: `1px solid ${theme?.palette.greyGainsboro}`,
|
|
8
|
-
color: theme?.palette.
|
|
7
|
+
color: theme?.palette.mode === 'dark' ? theme?.palette.white : theme?.palette.nobel01,
|
|
9
8
|
fontSize: '14px',
|
|
10
9
|
padding: '20px',
|
|
11
10
|
}));
|