mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-04-01 02:42:23 -05:00
chore(ui): flags import and minor updates (#5149)
This commit is contained in:
parent
e67336cef2
commit
99f6e118e2
7 changed files with 17 additions and 11 deletions
6
.changeset/nice-garlics-tie.md
Normal file
6
.changeset/nice-garlics-tie.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
'@verdaccio/ui-theme': patch
|
||||
'@verdaccio/ui-components': patch
|
||||
---
|
||||
|
||||
chore(ui): flags import and minor updates
|
|
@ -3,7 +3,7 @@
|
|||
/* eslint-disable react/jsx-max-depth */
|
||||
import styled from '@emotion/styled';
|
||||
import Box from '@mui/material/Box';
|
||||
import FlagsIcon from 'country-flag-icons/react/3x2';
|
||||
import * as FlagsIcon from 'country-flag-icons/react/3x2';
|
||||
import React, { StrictMode, Suspense, useEffect } from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import ReactMarkdown from 'react-markdown';
|
||||
|
|
|
@ -11,7 +11,7 @@ const Contributors: React.FC = () => {
|
|||
return (
|
||||
<>
|
||||
<Link href={`https://verdaccio.org/contributors`} rel="noreferrer" target="_blank">
|
||||
<AvatarGroup max={18} spacing={15} total={400}>
|
||||
<AvatarGroup max={11} spacing={15} total={400}>
|
||||
{contributors?.map(({ username, id }) => {
|
||||
return (
|
||||
<div key={username}>
|
||||
|
|
|
@ -3,18 +3,18 @@ you can [learn more about the project in our blog](https://verdaccio.org/blog/20
|
|||
|
||||
#### Useful links
|
||||
|
||||
- [Installation](https://verdaccio.org/docs/en/installation)
|
||||
- [Installation](https://verdaccio.org/docs/installation)
|
||||
- [Translate](https://translate.verdaccio.org/)
|
||||
- [Best practices](https://verdaccio.org/docs/best)
|
||||
- [Security policy](https://github.com/verdaccio/verdaccio/security/policy)
|
||||
- [Sponsor via open collective](https://opencollective.com/verdaccio)
|
||||
- [Best Practices](https://verdaccio.org/docs/best)
|
||||
- [Security Policy](https://github.com/verdaccio/verdaccio/security/policy)
|
||||
- [Sponsor via Open Collective](https://opencollective.com/verdaccio)
|
||||
- [Sponsor via GitHub](https://github.com/sponsors/verdaccio)
|
||||
|
||||
#### How to connect
|
||||
|
||||
- [Discussions](https://github.com/verdaccio/verdaccio/discussions)
|
||||
- [YouTube channel](https://www.youtube.com/channel/UC5i20v6o7lSjXzAHOvatt0w)
|
||||
- [Discord chat](https://discord.gg/hv42jfs)
|
||||
- [YouTube Channel](https://www.youtube.com/channel/UC5i20v6o7lSjXzAHOvatt0w)
|
||||
- [Discord Chat](https://discord.gg/hv42jfs)
|
||||
|
||||
https://www.verdaccio.org
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2022 Verdaccio contributors
|
||||
Copyright (c) 2025 Verdaccio contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import Flags from 'country-flag-icons/react/3x2';
|
||||
import * as Flags from 'country-flag-icons/react/3x2';
|
||||
|
||||
export const DEFAULT_LANGUAGE = 'en-US';
|
||||
|
||||
|
|
|
@ -169,7 +169,7 @@ const RegistryInfoContent: FC<Props> = ({ scope, registryUrl }) => {
|
|||
expandIcon={<ExpandMoreIcon />}
|
||||
id="panel3a-header"
|
||||
>
|
||||
{'pnpm'}
|
||||
<Typography className={classes.heading}>{'pnpm'}</Typography>
|
||||
</AccordionSummary>
|
||||
<AccordionDetails>
|
||||
<CommandContainer data-testid={'tab-content'}>
|
||||
|
|
Loading…
Add table
Reference in a new issue