Releases: Octagon-simon/octaValidate
Releases · Octagon-simon/octaValidate
octaValidate V1.3.2
- Optimized the code
- Length validations (Maxlength, Minlength & Length), now work only if the input element contains a value
octaValidate v1.3.0
octaValidate v1.2.9
- Updated readme file
octaValidate V1.2.7
- Optimized the code according to issues with the react release of the library
octaValidate V1.2.5
- We optimized the source code
- We fixed a bug that occurs when using the
EQUALTO
validation rule
octaValidate V1.2.3
- Fixed a bug with strict mode. See issue #9
octaValidate V1.2.2
successBorder
configuration option now has a default oftrue
. Use the syntax below to modify configuration options
//config options
const config = {
successBorder : false
}
//initialize function
const myForm = new octaValidate(FORM_ID, config)
- If
strictMode
is enabled, the library returns the words provided by the user that are not allowed. showBackendErrors()
method now removes error text when the input element has a value
octaValidate V1.2.0
- Validation error/success display was improved
- File size conversions were modified
- New attribute "accept-mime" allows you to provide File MIME types and it supports MIME types with wildcards. Please refer to the documentation to learn more
- totalsize, totalminsize, and totalmaxsize were modified to be size, minsize, maxsize.
- New attributes "files, minfiles , and maxfiles" were added. Please refer to the documentation to learn more
octaValidate V1.1.4
STRICT WORDS
- Strict words were modified to perform a case-insensitive search
- User's words are flagged as "not allowed" if it contains any of the strict words.
- For Eg. If strict words contain "null" and the user provides "nullify", we will flag it as not allowed.
octaValidate V1.1.3
CHANGELOGS
-
An issue with installing octavalidate through NPM was resolved See issue 7. Please check out how to install this library with NPM on the documentation
-
You don't need the
CHECK
rule to validate checkboxes or radio elements again. You just have to use theR
rule to validate any input element to mark it as required -
File Validation was added, along with attributes like
size
,minsize
,maxsize
,accept
,totalsize
,totalminsize
,totalmaxsize
. -
First official documentation was created for octaValidate. Please check out the documentation here