Skip to content

Releases: viclafouch/mui-chips-input

v2.1.4

13 Feb 11:33
Compare
Choose a tag to compare

Chore

  • Update deps

v2.1.3

11 Aug 09:21
Compare
Choose a tag to compare

Fix

#35

v2.1.2

04 Aug 14:27
Compare
Choose a tag to compare

Fix

  • Stop exporting UMD version, only ESM is now exported.

v2.1.0

04 Aug 10:19
Compare
Choose a tag to compare

Breaking changes

  • Drop support for React 17. Version 18.0.0 is the minimal version required.

New prop

addOnBlur

  • Type: boolean | undefined
  • Default: undefined

Enable this option to add a chip when the input element loses focus.

<MuiChipsInput addOnBlur />

v2.0.2

29 May 16:16
Compare
Choose a tag to compare

Fix

  • #25 : After typing the email if I click the tab chip is not getting added even after adding 'Tab' in the addOnWhichKey Options. Fixed.

Thanks @januhub

v2.0.1

16 Mar 10:33
Compare
Choose a tag to compare

Fix

  • #19 : inputRef prop is correctly assigned to the input element.

Thanks @anavalo

v2.0.0

14 Feb 10:43
Compare
Choose a tag to compare

Breaking changes

The renderChip prop has been updated from this:

<MuiChipsInput renderChip={(Component, props) => {
  return <Component {...props} deleteIcon={<FaceIcon />} />
}} />

to this:

<MuiChipsInput renderChip={(Component, key, props) => {
  return <Component {...props} key={key} deleteIcon={<FaceIcon />} />
}} />

Reason: Avoiding a warning in SSR because of the spreading the key property (see #17)

v1.3.3

07 Feb 15:33
Compare
Choose a tag to compare

Fix

  • Fix #16 : Input does not clear on blur event when tabbing to next field

v1.3.2

23 Dec 11:36
Compare
Choose a tag to compare

Fix

  • Fix #12 : chips is not added during an IME processing.

v1.3.1

26 Sep 08:45
Compare
Choose a tag to compare

Fixes

  • New prop inputValue in case if you need to control the input value. Otherwise, the component will be uncontrolled. Fix #5