
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
ATTENTION! Breaking changes
The
ueno-ui@2.x.xuse the new v2 api of react-transition-group. If your project use thereact-transition-group@1.x.x, ueno-ui won't work, since the two API are complety different.You will have to upgrade your project with the latest version of
react-transition-group@2.x.x, or useueno-ui@1.x.xthat still use the oldreact-transition-group@1.1.3api.
import React from 'react';
import { UenoButton } from 'ueno-ui';
const Example = () => <UenoButton to="https://ueno.co">Ueno button</UenoButton>;
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>;
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.
> npm login # use ueno account
> npm version minor # or patch for fixes
> npm publish
FAQs
Ueno. UI Components
We found that ueno-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.