@everymatrix/general-input 1.88.11 → 1.88.13

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.
@@ -5,13 +5,7 @@ interface TranslationValues {
5
5
  values: object;
6
6
  }
7
7
  interface Translations {
8
- en: Translation;
9
- hu: Translation;
10
- hr: Translation;
11
- tr: Translation;
12
- 'pt-br': Translation;
13
- 'es-mx': Translation;
14
- 'fr': Translation;
8
+ [lang: string]: Translation;
15
9
  }
16
10
  export declare const TRANSLATIONS: Translations;
17
11
  export declare const CONSTANTS: {
@@ -35,6 +29,7 @@ export declare const ERROR_KEYS: {
35
29
  readonly SA_ID_INVALID: "SAIdInvalidError";
36
30
  readonly REQUIRED: "requiredError";
37
31
  readonly LENGTH: "lengthError";
32
+ readonly FIXED_LENGTH: "fixedLengthError";
38
33
  readonly DUPLICATE: "duplicateInputError";
39
34
  };
40
35
  export declare const STATUS_ICONS: {
@@ -22,6 +22,7 @@ export interface RegCfgContentField {
22
22
  displayName: string;
23
23
  placeholder?: string;
24
24
  validate: ValidationSchema;
25
+ customInfo?: any;
25
26
  }
26
27
  export interface ValidationSchema {
27
28
  mandatory: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/general-input",
3
- "version": "1.88.11",
3
+ "version": "1.88.13",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.js",
6
6
  "es2015": "./dist/esm/index.mjs",