Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

wizard-ui

Package Overview
Dependencies
Maintainers
10
Versions
193
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wizard-ui

A Design System with React.

  • 1.1.10-beta.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
90
increased by114.29%
Maintainers
10
Weekly downloads
 
Created
Source

wizard-ui

A Design System with React.

Build Status Codecov npm package Netlify Status

Install and Usage

Dev and webpack setting

Add in package.json

yarn add wizard-ui
# css loader
yarn add --dev style-loader css-loader
# react bootstrap font dev
yarn add --dev url-loader file-loader

if you not use create-react-app, you need set webpack config:

{
  test: /\.css$/,
  use: [
    'style-loader',
    'css-loader',
  ]
},
{
  test: /\.(eot|woff|woff2|svg|ttf)([\?]?.*)$/,
  use: ['file-loader']
},
{
  test: /\.(png|woff|woff2|eot|ttf|svg)$/,
  use: 'url-loader?limit=100000'
}

Global style

import 'wizard-ui/lib/style/index.css';

Usage

UMD

import { Icon } from 'wizard-ui';

export default () => <Icon type="icon-star-fill-16" />

ES

import { Icon } from 'wizard-ui/esm';

export default () => <Icon type="icon-star-fill-16" />

Storybook

  • nvm
  • node@v16.15.0
# run storybook dev
npm run storybook

# build storybook dist
npm run build-storybook 

Publish

npm publish --registry=https://registry.npmjs.org/

TODO

  • remove node-sass, add sass
  • upgrade rc-tree
  • add rc-pagination, refactor the Pagination Component

Keywords

FAQs

Package last updated on 14 Mar 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc