@everymatrix/general-registration 1.10.23 → 1.10.24
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_12.cjs.entry.js → checkbox-group-input_13.cjs.entry.js} +168 -40
- package/dist/cjs/general-registration.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -1
- package/dist/collection/components/general-registration/general-registration.css +11 -23
- package/dist/collection/components/general-registration/general-registration.js +63 -29
- package/dist/components/checkbox-group-input2.js +2 -2
- package/dist/components/checkbox-input2.js +2 -2
- package/dist/components/date-input2.js +1 -1
- package/dist/components/email-input2.js +1 -1
- package/dist/components/general-input2.js +218 -22
- package/dist/components/general-registration.js +90 -51
- package/dist/components/number-input2.js +1 -1
- package/dist/components/password-input2.js +1 -1
- package/dist/components/select-input2.js +1 -1
- package/dist/components/tel-input2.js +2 -2
- package/dist/components/text-input2.js +1 -1
- package/dist/components/toggle-checkbox-input.js +6 -0
- package/dist/esm/{checkbox-group-input_12.entry.js → checkbox-group-input_13.entry.js} +168 -41
- package/dist/esm/general-registration.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/general-registration/general-registration.esm.js +1 -1
- package/dist/general-registration/{p-482c4c1e.entry.js → p-7852ad99.entry.js} +96 -96
- package/dist/types/components/general-registration/general-registration.d.ts +2 -2
- package/package.json +1 -1
|
@@ -30,11 +30,13 @@ export declare class GeneralRegistration {
|
|
|
30
30
|
* Boolean that decides the position of the button. e.g. button inside -- true / outside -- false the form.
|
|
31
31
|
*/
|
|
32
32
|
buttonInsideForm: boolean;
|
|
33
|
+
host: HTMLElement;
|
|
33
34
|
errorMessage: string;
|
|
34
35
|
isFormValid: boolean;
|
|
35
36
|
isLoading: boolean;
|
|
36
37
|
registrationStep: string;
|
|
37
38
|
forms: any[];
|
|
39
|
+
limitStylingAppends: boolean;
|
|
38
40
|
sendStep(): void;
|
|
39
41
|
setFormValidity(): void;
|
|
40
42
|
private registrationID;
|
|
@@ -44,7 +46,6 @@ export declare class GeneralRegistration {
|
|
|
44
46
|
listOfInputs: any[];
|
|
45
47
|
lastStep: string;
|
|
46
48
|
emitValue: boolean;
|
|
47
|
-
stylingContainer: HTMLElement;
|
|
48
49
|
form: HTMLElement;
|
|
49
50
|
errorCode: string;
|
|
50
51
|
backButtonPressed: boolean;
|
|
@@ -56,7 +57,6 @@ export declare class GeneralRegistration {
|
|
|
56
57
|
checkInputsValidityHandler(event: CustomEvent<InputStateEvent>): void;
|
|
57
58
|
getInputsValueHandler(event: CustomEvent<InputValueEvent>): void;
|
|
58
59
|
componentWillLoad(): Promise<void>;
|
|
59
|
-
componentDidRender(): void;
|
|
60
60
|
componentDidLoad(): void;
|
|
61
61
|
nextHandler(e: any): void;
|
|
62
62
|
backHandler(e: any): void;
|