Skip to content

netdata/netdata-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Apr 24, 2025
045db94 · Apr 24, 2025
Apr 2, 2025
Mar 20, 2024
Jul 3, 2024
Apr 24, 2025
May 13, 2021
Jan 29, 2024
Oct 12, 2023
Oct 12, 2023
Mar 27, 2023
Oct 12, 2023
Apr 2, 2025
Oct 12, 2023
Apr 24, 2025
Oct 12, 2023
Apr 24, 2025

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