![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
🌻A React UIKit with fresh nijigen style.
Homepage: hana-ui.moe.
主页:hana-ui.moe/cn.
hana-ui is a completed UI component libray which almost base components that you may use in development works, and it also easy to use in your page.
npm install hana-ui
// or
yarn add hana-ui
Before using hana-ui, you should import the default configuration of styles to ensure hana could build application successfully:
import 'hana-ui/hana-style.scss';
On the other hand, for allowing user to use their own themes and import independent component, please add loaders for scss files in configuration file of webpack and ensure the node_modules
is not added to rule exclude
.
Note: hana-ui also supports typescript with d.ts files, and we commend you to use it !
Example:
import React from 'react';
import {Button} from 'hana-ui';
// or just import Button
import {Button} from 'hana-ui/dist/seeds/Button';
export default () => (
<Button size={'middle'}>
Touch me...
</Button>
);
More components usage please checkout Documents page.
hana allows you to use your own themes by using sass-resource-loader, you can pass a scss file includes configurations of theme to use it:
{
test: /\.(css|sass|scss)$/,
use: [
......
{
loader: 'sass-loader'
},
{
loader: 'sass-resources-loader',
options: {
resources: './themes/himawari.scss'
}
}
],
exclude: /node_modules/
},
You can check here for template of configurations: himawari.scss.
Change the world with hana.
You could contribute to hana-ui in may ways, hana needs your help.
Following npm scripts may help you while developing.
1. Develop:
npm run dev
Then open the 8000 port and preview the demo.
1. Prebuilt:
npm run build
Compile source code to dist folder with es5.
hana-ui is an open-source project with MIT license by hana-group.
Welcome to join us !
FAQs
A React UIKit with fresh nijigen style.
The npm package hana-ui receives a total of 0 weekly downloads. As such, hana-ui popularity was classified as not popular.
We found that hana-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.