Socket
Socket
Sign inDemoInstall

@guardian/source-react-components

Package Overview
Dependencies
0
Maintainers
6
Versions
82
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @guardian/source-react-components

[![npm](https://img.shields.io/npm/v/@guardian/source-react-components)](https://www.npmjs.com/package/@guardian/source-react-components)


Version published
Maintainers
6
Created

Readme

Source

@guardian/source-react-components

npm

A set of robust, accessible React components built using @guardian/source-foundations.

This package is part of the Source design system.

Install

$ yarn add @guardian/source-react-components

or

$ npm install @guardian/source-react-components

You must install react, @emotion/react and @guardian/source-foundations to 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

To find out which themes a component supports, check its stories under 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: ${palette.error[500]};
	color: ${palette.neutral[100]};

	&:hover {
		background-colour: ${palette.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.

FAQs

Last updated on 08 May 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc