@everymatrix/general-registration 1.29.6 → 1.29.8
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_13.cjs.entry.js +16 -7
- package/dist/cjs/general-registration.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/general-registration/general-registration.js +23 -1
- package/dist/components/general-input2.js +12 -2
- package/dist/components/general-registration.js +6 -1
- package/dist/components/text-input2.js +1 -5
- package/dist/esm/checkbox-group-input_13.entry.js +16 -7
- 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-e0efc2b5.entry.js → p-6aadeb4c.entry.js} +2 -2
- package/dist/types/components/general-registration/general-registration.d.ts +4 -0
- package/dist/types/components.d.ts +8 -0
- package/package.json +1 -1
|
@@ -34,6 +34,10 @@ export declare class GeneralRegistration {
|
|
|
34
34
|
* Affiliate code to be passed in and sent in the registration.
|
|
35
35
|
*/
|
|
36
36
|
btag: string;
|
|
37
|
+
/**
|
|
38
|
+
* Boolean flag that tells inputs to emit an event on click.
|
|
39
|
+
*/
|
|
40
|
+
emitOnClick: boolean;
|
|
37
41
|
host: HTMLElement;
|
|
38
42
|
errorMessage: string;
|
|
39
43
|
isFormValid: boolean;
|
|
@@ -27,6 +27,10 @@ export namespace Components {
|
|
|
27
27
|
* Date format for date picker
|
|
28
28
|
*/
|
|
29
29
|
"dateFormat": string;
|
|
30
|
+
/**
|
|
31
|
+
* Boolean flag that tells inputs to emit an event on click.
|
|
32
|
+
*/
|
|
33
|
+
"emitOnClick": boolean;
|
|
30
34
|
/**
|
|
31
35
|
* NorWAy Endpoint for all the calls.
|
|
32
36
|
*/
|
|
@@ -74,6 +78,10 @@ declare namespace LocalJSX {
|
|
|
74
78
|
* Date format for date picker
|
|
75
79
|
*/
|
|
76
80
|
"dateFormat"?: string;
|
|
81
|
+
/**
|
|
82
|
+
* Boolean flag that tells inputs to emit an event on click.
|
|
83
|
+
*/
|
|
84
|
+
"emitOnClick"?: boolean;
|
|
77
85
|
/**
|
|
78
86
|
* NorWAy Endpoint for all the calls.
|
|
79
87
|
*/
|