@everymatrix/general-registration 1.90.10 → 1.90.16
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/cjs/checkbox-group-input_15.cjs.entry.js +37 -19
- package/dist/collection/components/general-registration/general-registration.js +4 -1
- package/dist/collection/utils/locale.utils.js +18 -3
- package/dist/esm/checkbox-group-input_15.entry.js +37 -19
- package/dist/general-registration/checkbox-group-input_15.entry.js +86 -86
- package/dist/types/utils/locale.utils.d.ts +3 -0
- package/package.json +1 -1
|
@@ -9,6 +9,9 @@ interface Translations {
|
|
|
9
9
|
}
|
|
10
10
|
export declare const DEFAULT_LANGUAGE: 'en';
|
|
11
11
|
export declare const TRANSLATIONS: Translations;
|
|
12
|
+
export declare const CONSTANTS: {
|
|
13
|
+
readonly VALIDATION_PHONE_START_ZERO: "Phone number must start with 0";
|
|
14
|
+
};
|
|
12
15
|
export declare const getTranslations: (url: string) => Promise<unknown>;
|
|
13
16
|
export declare const translate: (key: string, customLang?: any, values?: TranslationValues) => string;
|
|
14
17
|
export {};
|