@everymatrix/general-registration 1.61.0 → 1.62.0
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 +244 -224
- 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 +57 -19
- package/dist/collection/components/general-registration/general-registration.stories.js +24 -7
- package/dist/esm/checkbox-group-input_13.entry.js +244 -224
- 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-6bdde858.entry.js → p-e0a5de25.entry.js} +120 -120
- package/dist/storybook/main.js +1 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.d.ts +2 -0
- package/dist/types/Users/maria.bumbar/Desktop/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.dev.d.ts +2 -0
- package/dist/types/components/general-registration/general-registration.d.ts +9 -2
- package/dist/types/components.d.ts +8 -0
- package/package.json +1 -1
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.d.ts +0 -2
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/stencil.config.dev.d.ts +0 -2
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/libs/common/src/storybook/storybook-utils.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-input/src/utils/types.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/storybook/main.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/packages/stencil/general-registration/storybook/preview.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → maria.bumbar/Desktop}/widgets-monorepo/packages/stencil/general-registration/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
package/dist/storybook/main.js
CHANGED
|
@@ -15,6 +15,10 @@ export declare class GeneralRegistration {
|
|
|
15
15
|
* Client custom styling via inline styles
|
|
16
16
|
*/
|
|
17
17
|
clientStyling: string;
|
|
18
|
+
/**
|
|
19
|
+
* Client custom styling via streamStyling
|
|
20
|
+
*/
|
|
21
|
+
mbSource: string;
|
|
18
22
|
/**
|
|
19
23
|
* Client custom styling via url
|
|
20
24
|
*/
|
|
@@ -39,7 +43,6 @@ export declare class GeneralRegistration {
|
|
|
39
43
|
* Boolean flag that tells inputs to emit an event on click.
|
|
40
44
|
*/
|
|
41
45
|
emitOnClick: boolean;
|
|
42
|
-
private isInitialInteraction;
|
|
43
46
|
host: HTMLElement;
|
|
44
47
|
errorMessage: string;
|
|
45
48
|
isFormValid: boolean;
|
|
@@ -51,12 +54,14 @@ export declare class GeneralRegistration {
|
|
|
51
54
|
forms: any[];
|
|
52
55
|
limitStylingAppends: boolean;
|
|
53
56
|
autofilled: boolean;
|
|
57
|
+
isInitalInteraction: boolean;
|
|
54
58
|
sendStep(): void;
|
|
55
59
|
handleStylingChange(newValue: string, oldValue: string): void;
|
|
56
60
|
handleStylingUrlChange(newValue: string, oldValue: string): void;
|
|
57
61
|
setFormValidity(): void;
|
|
58
62
|
addBtag(): void;
|
|
59
63
|
private registrationID;
|
|
64
|
+
private stylingSubscription;
|
|
60
65
|
listOfInputValues: InputValue[];
|
|
61
66
|
listOfInputValidity: InputValidity[];
|
|
62
67
|
listOfActions: any[];
|
|
@@ -107,6 +112,7 @@ export declare class GeneralRegistration {
|
|
|
107
112
|
*/
|
|
108
113
|
handleConditionalValidation(correlationField: string, correlationValue: string): void;
|
|
109
114
|
componentDidLoad(): void;
|
|
115
|
+
disconnectedCallback(): void;
|
|
110
116
|
messageHandler(e: any): void;
|
|
111
117
|
nextHandler(e: any): void;
|
|
112
118
|
backHandler(e: any): void;
|
|
@@ -123,8 +129,9 @@ export declare class GeneralRegistration {
|
|
|
123
129
|
getInvalidStatus(listOfInputs: any): boolean;
|
|
124
130
|
setClientStyling: () => void;
|
|
125
131
|
setClientStylingURL: () => void;
|
|
126
|
-
|
|
132
|
+
setStreamStyling: (domain: any) => void;
|
|
127
133
|
handleInitialClick: (e: any) => void;
|
|
134
|
+
renderForm(): any[];
|
|
128
135
|
renderConsents(): HTMLElement;
|
|
129
136
|
renderButtons(): HTMLElement;
|
|
130
137
|
render(): any;
|
|
@@ -39,6 +39,10 @@ export namespace Components {
|
|
|
39
39
|
* Currently selected language
|
|
40
40
|
*/
|
|
41
41
|
"language": string;
|
|
42
|
+
/**
|
|
43
|
+
* Client custom styling via streamStyling
|
|
44
|
+
*/
|
|
45
|
+
"mbSource": string;
|
|
42
46
|
/**
|
|
43
47
|
* Translations via URL
|
|
44
48
|
*/
|
|
@@ -107,6 +111,10 @@ declare namespace LocalJSX {
|
|
|
107
111
|
* Currently selected language
|
|
108
112
|
*/
|
|
109
113
|
"language"?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Client custom styling via streamStyling
|
|
116
|
+
*/
|
|
117
|
+
"mbSource"?: string;
|
|
110
118
|
"onRegistrationStepUpdated"?: (event: GeneralRegistrationCustomEvent<string>) => void;
|
|
111
119
|
"onRegistrationWidgetLoaded"?: (event: GeneralRegistrationCustomEvent<any>) => void;
|
|
112
120
|
"onValidationChange"?: (event: GeneralRegistrationCustomEvent<any>) => void;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|