Skip to content

Releases: viclafouch/mui-otp-input

V5.0.0

13 Apr 14:35

Choose a tag to compare

Feat

  • Upgrade to MUI v7

v4.0.1

07 Mar 13:52

Choose a tag to compare

Fix

  • Peerdeps

v4.0.0

07 Mar 13:46

Choose a tag to compare

Feature

  • Enable compatibility with React 19 (React 18 is still maintained).
  • Update deps

No breaking change.

V3.0.2

16 Dec 20:14

Choose a tag to compare

Chore

  • Update to Eslint V9
  • Update deps
  • Prepare to update to React 19 (some deps are not ready yet).

v3.0.1

10 Nov 22:13

Choose a tag to compare

Fix

  • #71 Passing an inputRef to TextFieldsProps should allow for standard usage and programmatic control without breaking the MuiOtpInput component.

V3.0.0

10 Nov 18:54

Choose a tag to compare

🚨 BREAKING CHANGE

  • Upgrade to MUI V6 ONLY. V5 is no more compatible. If you want more features and bug fixes from this package, you should consider upgrade your codebase to V6.

Fixes

v2.0.3

06 Jul 16:42

Choose a tag to compare

  • Update dependencies

v2.0.2

13 Feb 17:48

Choose a tag to compare

Breaking change

TextFieldsProps is now : MuiTextFieldProps | ((index: number) => MuiTextFieldProps)

Now, you can add differents aria-label, aria-describeby, etc... depending on the index of the textfield in order to improve accessibility.

Example:

<MuiColorInput TextFieldsProps={{ size: 'small' }}  /> 
<MuiColorInput TextFieldsProps={index => ({ size: 'small', placeholder: String(index) })}  /> 

Chore

  • Update deps

v2.0.1

20 Oct 09:02

Choose a tag to compare

Fixes

  • #37 : Handle correctly auto-fill from sms on Chrome / DuckDuckGo

v2.0.0

04 Aug 18:31

Choose a tag to compare

Breaking change

  • Drop UMD version. Now only ES module version is exported.