Skip to content

Commit

Permalink
Updated changelog and proptypes
Browse files Browse the repository at this point in the history
  • Loading branch information
razvan authored and razvan committed Jun 16, 2021
1 parent 0a1067c commit 9fcd776
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- **Modal** sometimes not loading `window.scroll` polyfill after the browser hard refresh.

### Added

- **Dropdown** `disabled` prop added to options

## [9.142.0] - 2021-05-19

### Added
Expand Down
1 change: 1 addition & 0 deletions react/components/Dropdown/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ Dropdown.propTypes = {
/** Dropdown options list */
options: PropTypes.arrayOf(
PropTypes.shape({
disabled: PropTypes.bool,
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
.isRequired,
label: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
Expand Down

0 comments on commit 9fcd776

Please sign in to comment.