No description
Find a file
John Kapantzakis 278c12b944
Some checks failed
tests / Run Tests (push) Has been cancelled
v5.2.5 (#614)
* Customize each button with buttonProps

* v5.2.5
2026-02-12 17:09:43 +02:00
.github/workflows feat: add CopyToClipboard component with visual feedback (#557) 2025-07-09 14:46:05 +03:00
.storybook Format. 2025-07-10 13:10:54 +03:00
jest Add tests. 2025-06-19 13:56:35 +03:00
src v5.2.5 (#614) 2026-02-12 17:09:43 +02:00
utils Changed to js. 2021-05-13 15:05:10 +03:00
.gitignore Creatable select (#507) 2024-01-29 17:36:39 +02:00
.prettierrc.js Flex table (#490) 2023-10-12 11:43:31 +03:00
babel.config.js Flex table (#490) 2023-10-12 11:43:31 +03:00
eslint.config.js Upgrade all (#546) 2025-04-02 12:22:12 +03:00
jsconfig.json Flex table (#490) 2023-10-12 11:43:31 +03:00
LICENSE Flex table (#490) 2023-10-12 11:43:31 +03:00
package.json v5.2.5 (#614) 2026-02-12 17:09:43 +02:00
README.md Confirmation dialog - Disable decline button on confirmation loading state (#454) 2023-03-27 14:12:12 +03:00
webpack.config.js Flex table (#490) 2023-10-12 11:43:31 +03:00
yarn.lock v5.2.0 2026-01-29 18:56:03 +02:00

Netdata UI kit

Development process

  • squash-merge is 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), and patch (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

Components