@everymatrix/general-registration-multistep 1.87.33 → 1.87.35
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 +233 -69
- package/dist/collection/components/general-registration-multisteps/general-registration-multistep.js +231 -68
- package/dist/collection/utils/locale.utils.js +2 -1
- package/dist/esm/checkbox-group-input_15.entry.js +233 -69
- package/dist/general-registration-multistep/checkbox-group-input_15.entry.js +78 -78
- package/dist/types/components/general-registration-multisteps/general-registration-multistep.d.ts +1 -0
- package/dist/types/utils/locale.utils.d.ts +1 -0
- package/package.json +1 -1
package/dist/types/components/general-registration-multisteps/general-registration-multistep.d.ts
CHANGED
|
@@ -75,6 +75,7 @@ export declare class GeneralRegistrationMultistep {
|
|
|
75
75
|
private lastPostalCode;
|
|
76
76
|
private pinAttemptsExceeded;
|
|
77
77
|
private documentIdNineDigits;
|
|
78
|
+
private isTransitioning;
|
|
78
79
|
sendStep(): void;
|
|
79
80
|
handleStylingChange(newValue: string, oldValue: string): void;
|
|
80
81
|
handleStylingUrlChange(newValue: string, oldValue: string): void;
|
|
@@ -26,6 +26,7 @@ export declare const CONSTANTS: {
|
|
|
26
26
|
readonly REMOVE_WHITESPACE_REGEX: RegExp;
|
|
27
27
|
readonly IDENTITY_CARD_NORMALIZED: "identitycard";
|
|
28
28
|
readonly DATE_DASH_SEPARATOR_REGEX: RegExp;
|
|
29
|
+
readonly ONLY_DIGITS_REGEX: RegExp;
|
|
29
30
|
};
|
|
30
31
|
export declare const getTranslations: (url: string) => Promise<unknown>;
|
|
31
32
|
export declare const translate: (key: string, customLang?: any, values?: TranslationValues) => string;
|