mirror of
https://github.com/netdata/netdata-ui.git
synced 2026-02-18 14:46:23 +01:00
No description
- JavaScript 100%
|
Some checks failed
tests / Run Tests (push) Has been cancelled
* Customize each button with buttonProps * v5.2.5 |
||
|---|---|---|
| .github/workflows | ||
| .storybook | ||
| jest | ||
| src | ||
| utils | ||
| .gitignore | ||
| .prettierrc.js | ||
| babel.config.js | ||
| eslint.config.js | ||
| jsconfig.json | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| webpack.config.js | ||
| yarn.lock | ||
Netdata UI kit
Development process
squash-mergeis a default PR merge strategy- after any merge, NPM version should be published (in future to be moved to CI)
- versions are
major(breaking changes, large refactors),minor(new component added), andpatch(small changes) - please add declaration of exported components to provide nice typings for users.
- To deploy on gh-pages checkout to deploy/storybook branch, rebase with master and run deploy-storybook
// BAD
export const MyComponent = (props: PropsT) => <>...</>
// GOOD
export const MyComponent: FC<PropsT> = (props: PropsT) => <>...</>
Playground
You can find latest master storybook playground here