All Projects → ueno-llc → ueno-ui

ueno-llc / ueno-ui

Licence: other
Ueno. UI Components

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

ueno-ui

ATTENTION! Breaking changes

The [email protected] use the new v2 api of react-transition-group. If your project use the [email protected], ueno-ui won't work, since the two API are complety different.

You will have to upgrade your project with the latest version of [email protected], or use [email protected] that still use the old [email protected] api.

Super simple example

import React from 'react';
import { UenoButton } from 'ueno-ui';

const Example = () => <UenoButton to="https://ueno.co">Ueno button</UenoButton>;

How to extend css of components

Most of our components has a className props where you can pass customs styles. For example <UenoButton />, <Input /> or also <Field /> have a className props. We need to display them differently through our projects so we keep components' styles in the ui here, and we take care of the positionning on the project itself with the className.

import React from 'react';
import { UenoButton } from 'ueno-ui';

import s from 'styles/overwrite-button.scss';

// ./shared/styles/overwrite-button.scss
// .button {
//   font-size: 50px;
// }

const Example = () => <UenoButton to="https://ueno.co" className={s.button}>Ueno button with some custom styles</UenoButton>;

Development

When working on ueno-ui along side another project, it's useful to link:

> cd ueno-ui
> yarn link
> cd ../other-project
> yarn link "ueno-ui"

then while developing in ueno-ui, storybook can be used via yarn storybook to get changes reflected in link project, run yarn prepublish to build.

Publish

> npm login # use ueno account
> npm version minor # or patch for fixes
> npm publish
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].