0.5.3-rc.1 • Published 30 days ago

@hunar.ai/hunar-design-system v0.5.3-rc.1

Weekly downloads
-
License
MIT
Repository
github
Last release
30 days ago

DocsInstallationUsage

Hunar Design System is a React component library used to build accessible and consistent experiences at Hunar.ai

Getting Started

Installation

The components library is built on top of Material UI. Material UI needs to be installed in order to use this library. Run the following commands to install the necessary packages

yarn add @hunar.ai/hunar-design-system@latest @mui/material @emotion/react @emotion/styled

Note: ESM and commonJS module pattern are supported out of box

Usage

  1. Setup Material UI theme and global styles

    const root = ReactDOM.createRoot(document.getElementById("root")!);
    
    root.render(
      <ThemeProvider theme={theme}>
        <GlobalStyles styles={globalStyles} />
        <CssBaseline />
        <App />
      </ThemeProvider>
    );
  2. Import and use components

    import { CustomSelect } from "@hunar.ai/hunar-design-system";
    
    export const App = () => {
      return <CustomSelect {...props} />;
    };
  3. Explore the docs for the list of available components and how to use them

Development

Setup

Install packages and setup project using the following commands

yarn install
yarn run husky-install

Run the following command to start the development server

yarn start

Publish

Publishing on npm

Build the package using the following command

yarn run build:lib

Publish a new version of the package using the following command

yarn run publish:lib

Publishing storybook

Build storybook using the following command

yarn run build:storybook

In order to publish new version of storybook you should have CHROMATIC_PROJECT_TOKEN env variable present in .env.local file. Run the following command to publish a new version

yarn run publish:storybook

Browser Support

This library works best on latest versions of Google Chrome and Chrome mobile. The browsers which satisfy the following browserlist conditions are supported

"browserslist": [
  ">0.2%",
  "not dead",
  "not op_mini all"
],

For all non-supported browsers, the library will graceful degradate without any explicit error handling.

License

Copyright (c) 2022 Bluejay Worktech Pvt. Ltd. This work is licensed under MIT LICENSE.

0.5.3-rc.1

30 days ago

0.5.2-rc.2

2 months ago

0.5.2-rc.3

2 months ago

0.5.2-rc.4

2 months ago

0.5.2

2 months ago

0.5.2-rc.1

2 months ago

0.5.1

2 months ago

0.5.0

2 months ago

0.4.1

2 months ago

0.4.0

2 months ago

0.5.0-rc.1

2 months ago

0.3.10-rc.1

2 months ago

0.3.9

2 months ago

0.3.8

2 months ago

0.3.7

3 months ago

0.3.6

3 months ago

0.3.5

3 months ago

0.3.4

3 months ago

0.3.3

4 months ago

0.3.2

4 months ago

0.3.1

4 months ago

0.3.0

4 months ago

0.2.0

5 months ago

0.1.1

5 months ago

0.1.0

5 months ago