npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@qlue-ui/react-component

v1.36.1

Published

<p align="center"> <img src="https://cdn-images-1.medium.com/max/250/0*U68q6t0QLURZDgS9.png" alt="Qlue Logo" /> </p>

Downloads

278

Readme

Qlue UI Storybook

@qlue-ui/react-component is a collection of React components that conforms to Qlue Style created by Qlue UI/UX team.

Installation

Install with npm or yarn

npm i -S @qlue-ui/react-component
# OR
yarn add @qlue-ui/react-component

Requirements

@qlue-ui/react-component uses Tachyons for the design system and it is required to import the CSS in your project. Please refer to Tachyons CSS Documentation for available CSS classnames

// Required CSS import including the Tachyons CSS
import "@qlue-ui/react-component/dist/styles.css";

// Map Component CSS (Import if you use Map!)
import "@qlue-ui/react-component/dist/Map/styles.css";

// Table Component css (Import if you use Table!)
import "@qlue-ui/react-component/dist/Table/styles.css";

How to make this library synchronized with YourApp

  1. Clone the repository using git clone and navigate inside using cd react-component
  2. Run yarn link to make this package linkable to YourApp locally. More about yarn link
  3. Run second terminal window without closing the first one
  4. Second terminal: navigate to the root directory of YourApp
  5. Second terminal: run yarn link @qlue-ui/react-component to make YourApp utilizing the previously-linked package
  6. First terminal: run yarn run watch
  7. Second terminal: run YourApp
  8. If YourApp refreshes after any changes on this package, it means it is already working

Usage

import React from "react";
import Select from "@qlue-ui/react-component/dist/Select";
import "@qlue-ui/react-component/dist/styles.css";

const App = props => (
  <Select {...props} options={selectOptions} value={getValue} />
);

Testing

Test with npm or yarn using Jest and Enzyme

npm run test
# OR
yarn test

Contributing

Qlue React Front End team is required to be active in developing the UI Component as it will be used across product. Always make a PR into development! Be active in develop each component functionality, UI, & testing as it will recorded in the history

1. Please update the readme in the component your working on to track the changes history. Below is the example

  • src/qlueDashboard/DateFilter/README.md
  • src/qlueDashboard/CardSummary/README.md
## Changelog
## bugfix

#### **1.35.7** - [*29 Juni 2021*] - `commit id: cc133404`
- **QWD-1921** - Remove restprops spread into the Date Component

#### **1.35.8** - [*30 Juni 2021*] - `commit id: zwasd344`
- **QWD-1922** -  Remove the onChange function

## feature change

#### **1.36.0** - [*30 Juni 2021*] - `commit id: 091jksal`
- **QWD-1923** - Added props for maxEndDate & maxStartDate for date filter range pick

Write the version release, date changes, commit id, JIRA task id, & description

2. Don't forget to update the prop-types as it will automatically updates the storybook 3. Update the storybook component inside stories folder

How to Run Storybook locally:

  1. Install the packages -> yarn / npm i
  2. create dist folder -> yarn watch / npm run watch
  3. run storybook -> yarn storybook/ npm run storybook

TODO:

  1. Test (react-testing-library)!

Contributor are very welcome to help build awesome UI :)

Why we use Storybook:

Storybook