Releases: meokullu/PreFill
v2.3.0 parameter naming consistency
On this release;
Two methods' parameter names changed to make all methods have similar naming.
- Parameter names on
PreFillCustom(string text, int maxLength, string stringValue = " ")
changed intoPreFillCustom(string context, int maxLength, string text = " ")
#41 - Parameter names on
PreFillCustom(string text, int maxLength, char charValue = ' ')
changed intoPreFillCustom(string context, int maxLength, char text = ' ')
#41
v2.2.0 Generic type support
⚠️ When updating to v2.2.0 from v2.1.2, due to renaming Prefill as PreFill an unexcepted error may occur. You can uninstall and install PreFill to avoid that.⚠️
Uninstall & install through Package Manager Control
Uninstall-Package Prefill
Install-Package PreFill -Version 2.2.0
On this release;
-
Two methods are added.
PreFillCustom<T>(T value, int maxLength, string text = " ")
andPreFilledCustom<T>(T value, int maxLength, string text = " ")
-
maxNumberOfDigit
renamed asmaxDigit
onPreFilledCustom(long?... string)
,PreFilledCustom(long?... char)
,PreFilledCustom(long... string)
,PreFilledCustom(long... char)
,PreFillCustom(long?... string)
,PreFillCustom(long?... char)
,PreFillCustom(long... string)
andPreFillCustom(long... char)
v2.1.0 Multi-target frameworks support
v1.3.0 null support
Initial Release
This is initial version of PreFill.
Full Changelog: https://github.com/meokullu/Prefill/commits/v1.0.0