@inntechcorp/it-design 2.2.79 → 2.2.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/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",
@@ -1671,6 +1672,7 @@ declare const resources: {
1671
1672
  adminUsernameRule: string;
1672
1673
  invalidURL: string;
1673
1674
  fieldMustBeDifferent: string;
1675
+ forbiddenWords: string;
1674
1676
  };
1675
1677
  uploader: {
1676
1678
  header: string;
@@ -1969,6 +1971,7 @@ declare const resources: {
1969
1971
  adminUsernameRule: string;
1970
1972
  invalidURL: string;
1971
1973
  fieldMustBeDifferent: string;
1974
+ forbiddenWords: string;
1972
1975
  };
1973
1976
  uploader: {
1974
1977
  header: string;