Skip to content

Releases: atropos-tech/material-multi-picker

v2.2.0

29 Sep 20:44
Compare
Choose a tag to compare
  • Update dependencies
  • Tweak eslint config

v2.1.1

29 Sep 19:40
Compare
Choose a tag to compare

Give dropdown a z-index of 1400 to match Material UI standard approach (see https://material-ui.com/customization/z-index/).

This should mean that the component can now be used in dialogs without the need for customisation.

v2.1.0

29 Jul 20:14
Compare
Choose a tag to compare

Dropdown is now rendered as a direct child of <body> rather than a child of the widget element - fixes issues where the dropdown is clipped by a container with overflow: hidden (#19 )

v2.0.1

29 Jul 16:41
Compare
Choose a tag to compare
  • Fix an issue where suggestions were fetched too eagerly
  • Improve test snapshots by switching to DOM

v2.0.0

29 Jul 00:09
Compare
Choose a tag to compare
  • Rewrite class-based components to use hooks (peer dependency now required React 16.8+)
  • Global Cache demo now has a "Clear cache" button
  • Fix issue where pressing ESCAPE while the form was highlighted would add an empty chip (#18)
  • Fix issue with Redux Forms demo (#16)

1.6.0

07 Mar 22:16
Compare
Choose a tag to compare
  • Add onFocus, onBlur and onDragStart props to support Redux Form
  • Fix issue where dropdown did not appear directly under the input field if helperText prop was provided
  • Fix console errors on unmounting if the global cache wasn't being used

1.5.1

01 Mar 22:31
Compare
Choose a tag to compare
  • Fix issue where "outlined" and "filled" variants would sometimes be too wide for their containers

1.5.0

01 Mar 22:18
Compare
Choose a tag to compare
  • Add maxDropdownHeight prop to allow for scrollable dropdowns
  • Make docs work better on mobile devices

1.4.1

28 Feb 15:47
Compare
Choose a tag to compare
  • Make component more lightweight by using React classes instead of create-react-class
  • Use PureComponents for performance improvement
  • Kill some spurious console errors

1.4.0

27 Feb 21:13
Compare
Choose a tag to compare
  • Add variant prop which controls the visual style of the picker
  • Add name prop which applies a "name" attribute to the underlying input field
  • Add required prop which shows a "required" star if set
  • Add helperText prop which shows helper text below the picker
  • Add an interactive sandbox in docs