# int2_support_ui

> UI Components library that wants to be cool🕶️

Latest version **0.1.13** (published 2024-01-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install int2_support_ui
pnpm add int2_support_ui
yarn add int2_support_ui
bun add int2_support_ui
```

## Health

**Score 30/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.13 |
| Published | 2024-01-31 |
| First published | 2023-07-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 14 |
| Unpacked size | 29.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | jiwon |
| Maintainers | jiwon.kim.int2.us |
| Keywords | react, component |

## Links

- npm: https://www.npmjs.com/package/int2_support_ui
- Repository: https://github.com/IntellectusCorp/support_ui
- Homepage: https://github.com/IntellectusCorp/support_ui#readme
- Issues: https://github.com/IntellectusCorp/support_ui/issues
- npm.io page: https://npm.io/package/int2_support_ui

## Dependencies (14)

- [react](https://npm.io/package/react.md) ^18.2.0
- [react-dom](https://npm.io/package/react-dom.md) ^18.2.0
- [typescript](https://npm.io/package/typescript.md) ^4.9.5
- [web-vitals](https://npm.io/package/web-vitals.md) ^2.1.4
- [@types/jest](https://npm.io/package/@types/jest.md) ^27.5.2
- [@types/node](https://npm.io/package/@types/node.md) ^16.18.39
- [@types/react](https://npm.io/package/@types/react.md) ^18.2.17
- [react-scripts](https://npm.io/package/react-scripts.md) 5.0.1
- [@emotion/react](https://npm.io/package/@emotion/react.md) ^11.11.3
- [@emotion/styled](https://npm.io/package/@emotion/styled.md) ^11.11.0
- [@types/react-dom](https://npm.io/package/@types/react-dom.md) ^18.2.7
- [@testing-library/react](https://npm.io/package/@testing-library/react.md) ^13.4.0
- [@testing-library/jest-dom](https://npm.io/package/@testing-library/jest-dom.md) ^5.17.0
- [@testing-library/user-event](https://npm.io/package/@testing-library/user-event.md) ^13.5.0

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.1.13 (latest) — 2024-01-31
- 0.1.12 — 2024-01-31
- 0.1.11 — 2024-01-31
- 0.1.10 — 2024-01-31
- 0.1.9 — 2024-01-31
- 0.1.8 — 2023-08-08
- 0.1.7 — 2023-08-01
- 0.1.6 — 2023-07-31
- 0.1.5 — 2023-07-31
- 0.1.4 — 2023-07-31
- 0.1.3 — 2023-07-31
- 0.1.2 — 2023-07-31
- 0.1.1 — 2023-07-31
- 0.1.0 — 2023-07-31

## README

# Support UI
<a href="https://www.npmjs.com/package/int2_support_ui" target="_blank"><img src="https://img.shields.io/badge/npm-CB3837?style=flat-square&logo=npm&logoColor=white&link=https://www.npmjs.com/package/int2_support_ui"/></a>   
React library for Intellectus data team

## Warning
This library is continuously being developed and maintained.🛠️🛠️🛠️

## Installation
using npm:
```js
$ npm install int2_support_ui
```

## Usage
```js
import SupportUI from "int2_support_ui";

const TestComponent = () => {
  return <SupportUI.SearchInput />
}

const TestThroughput = () => {
  const [inputData, setInputData] = useState<NodeDataType>([]);

  const inputDataChangeInterval = () => {
    setInterval(async() => {
      const data = await getData(); // replace to your GET api or something
      setInputData(data);
      setCount(cur => (cur + 1) % 60)
    }, 1000);
  };

  useEffect(() => inputDataChangeInterval(), []);

  return (
    <SupportUI.Throughput 
        maxLength={5}
        inputData={inputData}
        graphWidth={500}
        graphHeight={50}
    />
  )
}
```

## Contributing

See the [Contributing Guide](https://github.com/IntellectusCorp/support_ui/blob/main/Contributing.md) for more details on contributing.

## Roadmap

See the [Roadmap](https://github.com/IntellectusCorp/support_ui/blob/main/Roadmap.md) for more details on roadmap.

---
_Source: https://npm.io/package/int2_support_ui · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
