Home

Awesome

Textkernel OneUI

npm version check Coverage Status Language grade: JavaScript Libraries.io dependency status for GitHub repo npm bundle size

Library of reusable React components with theming support

Getting started

For live examples of all OneUI components, click here.

Install with npm

Within your project’s frontend root, install the package from NPM. Make sure it’s marked as production dependency.

$ npm i '@textkernel/oneui'

Set up boilerplate

Import OneUI base stylesheet

In your application main Javascript, make sure to import the OneUI base stylesheet. The base stylesheet includes the default OneUI theme.

import '@textkernel/oneui/dist/oneui.min.css';

Assign base class to <body>

Assign the base class that has all font definitions to <body> or to <html>

<body class="OneUI-body-text">
    ...
</body>

Custom themes and browser support

To enable support for older browsers that don’t support CSS variables natively and to apply custom a theme, OneUI comes with a utility that takes on all of these responsibilities. See Theming for more on custom themes.

To apply a specific theme on top of the library components, the OneUI utility can be used to parse the provided theme file:

import OneUI from '@textkernel/oneui';

OneUI.init({
    themeURL: 'http://theme-cdn.com/my-theme.css',
}).then(() => ReactDOM.render(<MyApp />, document.getElementById('root')));

The utility can take three optional arguments:

IE11 support

OneUI relies on browser support for CSS variables. Support for older browsers such as IE11 can be enabled by using a polyfill. Using the previously mentioned utility will take care of it automatically.

Using components

  1. Import the desired UI component(s) from the library, e.g.:
import { Button } from '@textkernel/oneui';
  1. Include the component on your page:
<Button type="submit">This is a button</Button>

Undocumented props

Please note that any properties that are not documented in the component prop types definition are applied to the top level HTML element unless mentioned otherwise. These undocumented props are also not described in Storybook.

Storybook

OneUI comes with a Storybook of examples for all components. Click here to check it out.

In order to run it yourself locally...

  1. Make sure you have Storybook installed (globally):
$ npm i -g @storybook/cli
  1. Within the OneUI root, run npm run storybook
  2. Go to http://localhost:9001 to check out examples of all OneUI components

Theming

All CSS variables (‘custom properties’) exposed by OneUI can be customized. A theme file is an additional stylesheet that consists of a reassignment of all variables with values that are different from their defaults. Theme files should not contain any CSS selectors or properties - only CSS variables and values, e.g.:

--color-brand-50: red;
--font-size-base: 12px;

Contributing

Copyright

Code and documentation © 2020 Textkernel B.V.