Skip to content

@salt-ds/lab@1.0.0-alpha.86

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 18 Feb 19:54
· 7 commits to main since this release
44bf55c

Minor Changes

  • a16cbc5: Rating has been added to allow users to provide feedback relating to your product or experience.

    Basic usage:

    import { Rating } from "@salt-ds/lab";
    
    function App() {
      const [value, setValue] = useState(0);
    
      return (
        <Rating
          value={value}
          onValueChange={(event, newValue) => setValue(newValue)}
        />
      );
    }

Patch Changes

  • Updated dependencies [47d113d]
  • Updated dependencies [a16cbc5]
    • @salt-ds/core@1.57.0