@inntechcorp/it-design 2.1.79 → 2.1.81
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/image/index.d.ts +1 -0
- package/dist/index.cjs.js +138 -138
- package/dist/index.d.ts +5 -1
- package/dist/index.esm.js +138 -138
- package/dist/locales/en/itd.json +1 -0
- package/dist/locales/itd.json +1 -0
- package/dist/locales/tr/itd.json +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -676,6 +676,7 @@ declare namespace InlineSelect {
|
|
|
676
676
|
|
|
677
677
|
interface ImageProps extends react__default.ImgHTMLAttributes<HTMLImageElement> {
|
|
678
678
|
src: string;
|
|
679
|
+
webpSrc?: string;
|
|
679
680
|
fallback?: string;
|
|
680
681
|
brokenWidth?: number | string;
|
|
681
682
|
brokenHeight?: number | string;
|
|
@@ -1569,7 +1570,8 @@ declare enum FormValidationTypes {
|
|
|
1569
1570
|
EMAIL = "email",
|
|
1570
1571
|
USERNAME = "username",
|
|
1571
1572
|
SITE_USERNAME = "siteUsername",
|
|
1572
|
-
ADMIN_USERNAME = "adminUsername"
|
|
1573
|
+
ADMIN_USERNAME = "adminUsername",
|
|
1574
|
+
URL = "url"
|
|
1573
1575
|
}
|
|
1574
1576
|
|
|
1575
1577
|
declare const resources: {
|
|
@@ -1618,6 +1620,7 @@ declare const resources: {
|
|
|
1618
1620
|
fieldMustBeTheSame: string;
|
|
1619
1621
|
siteUsernameRule: string;
|
|
1620
1622
|
adminUsernameRule: string;
|
|
1623
|
+
invalidURL: string;
|
|
1621
1624
|
fieldMustBeDifferent: string;
|
|
1622
1625
|
};
|
|
1623
1626
|
uploader: {
|
|
@@ -1909,6 +1912,7 @@ declare const resources: {
|
|
|
1909
1912
|
fieldMustBeTheSame: string;
|
|
1910
1913
|
siteUsernameRule: string;
|
|
1911
1914
|
adminUsernameRule: string;
|
|
1915
|
+
invalidURL: string;
|
|
1912
1916
|
fieldMustBeDifferent: string;
|
|
1913
1917
|
};
|
|
1914
1918
|
uploader: {
|