@inntechcorp/it-design 3.1.20 → 3.1.22
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/global.css +0 -5
- package/dist/index.cjs.js +153 -155
- package/dist/index.d.ts +5 -1
- package/dist/index.esm.js +163 -165
- package/dist/locales/en/itd.json +2 -1
- package/dist/locales/itd.json +2 -1
- package/dist/locales/tr/itd.json +2 -1
- package/dist/types/FormProps.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1201,6 +1201,7 @@ type FormRuleProps = {
|
|
|
1201
1201
|
field?: string;
|
|
1202
1202
|
value?: string | number | (string | number)[];
|
|
1203
1203
|
message?: string;
|
|
1204
|
+
currency?: string;
|
|
1204
1205
|
};
|
|
1205
1206
|
type FormItemProps = {
|
|
1206
1207
|
name: string;
|
|
@@ -1719,7 +1720,8 @@ declare enum FormValidationTypes {
|
|
|
1719
1720
|
SITE_USERNAME = "siteUsername",
|
|
1720
1721
|
ADMIN_USERNAME = "adminUsername",
|
|
1721
1722
|
URL = "url",
|
|
1722
|
-
FORBIDDEN_WORDS = "forbiddenWords"
|
|
1723
|
+
FORBIDDEN_WORDS = "forbiddenWords",
|
|
1724
|
+
MULTIPLE_OF = "multipleOf"
|
|
1723
1725
|
}
|
|
1724
1726
|
declare enum ConnectionStatus {
|
|
1725
1727
|
ONLINE = "online",
|
|
@@ -1801,6 +1803,7 @@ declare const resources: {
|
|
|
1801
1803
|
invalidURL: string;
|
|
1802
1804
|
fieldMustBeDifferent: string;
|
|
1803
1805
|
forbiddenWords: string;
|
|
1806
|
+
multipleOf: string;
|
|
1804
1807
|
};
|
|
1805
1808
|
uploader: {
|
|
1806
1809
|
header: string;
|
|
@@ -2110,6 +2113,7 @@ declare const resources: {
|
|
|
2110
2113
|
invalidURL: string;
|
|
2111
2114
|
fieldMustBeDifferent: string;
|
|
2112
2115
|
forbiddenWords: string;
|
|
2116
|
+
multipleOf: string;
|
|
2113
2117
|
};
|
|
2114
2118
|
uploader: {
|
|
2115
2119
|
header: string;
|