@guardian/source-react-components v25.0.0
@guardian/source-react-components
A set of robust, accessible React components built using @guardian/source-foundations.
Install
$ yarn add @guardian/source-react-componentsor
$ npm install @guardian/source-react-componentsYou must install
react,@emotion/reactand@guardian/source-foundationsto use Source components.
Example
import { TextInput, Button } from '@guardian/source-react-components';
const Form = () => (
<form>
<TextInput label="First name" />
<Button>Submit</Button>
</form>
);Theming
By default, all components are styled using their light theme.
To apply a different theme, we recommend using Emotion's theming API. You can import the desired theme from @guardian/source-react-components
To compose a theme for specific components:
import { ThemeProvider } from '@emotion/react';
import {
Button,
buttonThemeBrand,
TextInput,
textInputThemeBrand,
} from '@guardian/source-react-components';
const Form = () => (
<ThemeProvider theme={{ ...buttonThemeBrand, ...textInputThemeBrand }}>
<form>
<TextInput label="First Name" />
<Button>Click me</Button>
</form>
</ThemeProvider>
);Available themes
Standard themes available from @guardian/source-react-components:
- default – exported as
[componentName]ThemeDefault - brand – exported as
[componentName]ThemeBrand - brandAlt – exported as
[componentName]ThemeBrandAlt
For a preview of how these themes look, visit the colour tokens section of the colour guide.
To find out which themes a component supports, check its stories under Packages/source-react-components/<ComponentName>
Note that some components have their own unique themes in addition to the standard set of themes. For instance, the button component defines two themes for use in Reader Revenue flows.
Overriding styles
To extend or override the styles of Source components, pass SerializedStyles generated by the css function to the cssOverrides prop.
import { css } from '@emotion/react';
const dangerStyles = css`
background-colour: ${error[500]};
color: ${text.ctaPrimary};
&:hover {
background-colour: ${error[400]};
}
`;
const Danger = () => (
<Button cssOverrides={dangerStyles}>Delete my account</Button>
);The cssOverrides prop is mixed into the css prop for the main element of the component. This differs from component to component. You'll need to look at the source code for the component to see where your overrides will be applied.
Using classNames
If you are using a CSS solution that relies on passing the className prop, you can pass your className to the Source component as normal.
One caveat here is that @emotion/react, which Source components use for styling, appends style tags to the bottom of the document head. Since they appear at the end of the cascade, they tend to override other styles unless the other styles have a higher specificity.
You may therefore need to mark overrides as !important in order to ensure they are applied.
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago