@inntechcorp/it-design 2.1.78 → 2.1.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 +137 -137
- package/dist/index.d.ts +4 -1
- package/dist/index.esm.js +137 -137
- package/dist/locales/calendar.json +22 -22
- package/dist/locales/en/itd.json +2 -1
- package/dist/locales/itd.json +223 -223
- package/dist/locales/tr/itd.json +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1569,7 +1569,8 @@ declare enum FormValidationTypes {
|
|
|
1569
1569
|
EMAIL = "email",
|
|
1570
1570
|
USERNAME = "username",
|
|
1571
1571
|
SITE_USERNAME = "siteUsername",
|
|
1572
|
-
ADMIN_USERNAME = "adminUsername"
|
|
1572
|
+
ADMIN_USERNAME = "adminUsername",
|
|
1573
|
+
URL = "url"
|
|
1573
1574
|
}
|
|
1574
1575
|
|
|
1575
1576
|
declare const resources: {
|
|
@@ -1618,6 +1619,7 @@ declare const resources: {
|
|
|
1618
1619
|
fieldMustBeTheSame: string;
|
|
1619
1620
|
siteUsernameRule: string;
|
|
1620
1621
|
adminUsernameRule: string;
|
|
1622
|
+
invalidURL: string;
|
|
1621
1623
|
fieldMustBeDifferent: string;
|
|
1622
1624
|
};
|
|
1623
1625
|
uploader: {
|
|
@@ -1909,6 +1911,7 @@ declare const resources: {
|
|
|
1909
1911
|
fieldMustBeTheSame: string;
|
|
1910
1912
|
siteUsernameRule: string;
|
|
1911
1913
|
adminUsernameRule: string;
|
|
1914
|
+
invalidURL: string;
|
|
1912
1915
|
fieldMustBeDifferent: string;
|
|
1913
1916
|
};
|
|
1914
1917
|
uploader: {
|