@inntechcorp/it-design 2.2.79 → 2.2.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/enums/enum.d.ts +2 -1
- package/dist/form/validation/Validator.d.ts +1 -0
- package/dist/index.cjs.js +150 -150
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +138 -138
- package/dist/types/FormProps.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1113,7 +1113,7 @@ type FormRuleProps = {
|
|
|
1113
1113
|
required?: boolean;
|
|
1114
1114
|
type?: FormValidationTypes$1;
|
|
1115
1115
|
field?: string;
|
|
1116
|
-
value?: string | number;
|
|
1116
|
+
value?: string | number | (string | number)[];
|
|
1117
1117
|
message?: string;
|
|
1118
1118
|
};
|
|
1119
1119
|
type FormItemProps = {
|
|
@@ -1590,7 +1590,8 @@ declare enum FormValidationTypes {
|
|
|
1590
1590
|
USERNAME = "username",
|
|
1591
1591
|
SITE_USERNAME = "siteUsername",
|
|
1592
1592
|
ADMIN_USERNAME = "adminUsername",
|
|
1593
|
-
URL = "url"
|
|
1593
|
+
URL = "url",
|
|
1594
|
+
FORBIDDEN_WORDS = "forbiddenWords"
|
|
1594
1595
|
}
|
|
1595
1596
|
declare enum ConnectionStatus {
|
|
1596
1597
|
ONLINE = "online",
|