@everymatrix/general-registration-hsl 1.74.2 → 1.74.4
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_14.cjs.entry.js +3 -2
- package/dist/cjs/general-registration-hsl-6e5b947f.js +1045 -0
- package/dist/cjs/general-registration-hsl.cjs.js +1 -1
- package/dist/cjs/index.cjs.js +2 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/general-registration-hsl/general-registration-hsl.js +1 -1
- package/dist/esm/checkbox-group-input_14.entry.js +3 -2
- package/dist/esm/general-registration-hsl-45a83517.js +1043 -0
- package/dist/esm/general-registration-hsl.js +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/loader.js +1 -1
- package/dist/general-registration-hsl/checkbox-group-input_14.entry.js +2 -2
- package/dist/general-registration-hsl/general-registration-hsl-45a83517.js +1 -0
- package/dist/general-registration-hsl/general-registration-hsl.esm.js +1 -1
- package/dist/general-registration-hsl/index.esm.js +1 -1
- package/dist/types/components/general-registration-hsl/general-registration-hsl.d.ts +1 -1
- package/package.json +1 -1
- package/dist/cjs/general-registration-hsl-c647d737.js +0 -1058
- package/dist/esm/general-registration-hsl-dbdf19c5.js +0 -1056
- package/dist/general-registration-hsl/general-registration-hsl-dbdf19c5.js +0 -1
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
const index = require('./index-f6112702.js');
|
|
6
|
-
const generalRegistrationHsl = require('./general-registration-hsl-
|
|
6
|
+
const generalRegistrationHsl = require('./general-registration-hsl-6e5b947f.js');
|
|
7
|
+
require('@everymatrix/player-consents/dist');
|
|
7
8
|
|
|
8
9
|
const DEFAULT_LANGUAGE = 'en';
|
|
9
10
|
const TRANSLATIONS = {
|
|
@@ -14764,7 +14765,7 @@ const ToggleCheckboxInput = class {
|
|
|
14764
14765
|
render() {
|
|
14765
14766
|
return index.h("div", { key: '834edab3849682f5ac58ee1fab10a036aa8e3320', class: `togglecheckbox__wrapper ${this.name}__input`, ref: el => this.stylingContainer = el }, index.h("div", { key: '27d7e35329afcd2af8a8e6a75864a0f1b9aa65bf', class: 'togglecheckbox__wrapper--flex' }, index.h("input", { key: '0cc1a7c807e2e68061946310bc12452dfc484664', class: 'togglecheckbox__input', type: "checkbox", id: `${this.name}__input`, ref: (el) => this.checkboxReference = el, name: this.name, checked: this.defaultValue === "true", readOnly: this.autofilled, required: this.validation.mandatory, value: this.value, onClick: () => this.handleClick() }), this.renderLabel()), index.h("small", { key: '4f26bf1daede31f7da140950bf581546fd25bbfc', class: 'togglecheckbox__error-message' }, this.errorMessage), index.h("div", { key: '2794f0b513213331c29d3b14e46e4cca4e9d95d9', class: 'togglecheckbox__wrapper--relative' }, this.tooltip &&
|
|
14766
14767
|
index.h("img", { key: 'ccfc85b68d33f32034b243dbba45f867933b6538', class: 'togglecheckbox__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip()), index.h("div", { key: '8f0086c49d44b71f8b8df63b5dac39add3dfd7f4', class: `togglecheckbox__fields-wrapper ${this.showFields ? '' : 'hidden'}` }, this.options.map(subfield => {
|
|
14767
|
-
return index.h("general-input
|
|
14768
|
+
return index.h("general-input", { type: subfield.inputType, name: subfield.name, displayName: subfield.displayName, validation: subfield.validate, action: subfield.action || null, defaultValue: subfield.defaultValue, autofilled: subfield.autofill, emitValue: this.emitValue, language: this.language, "client-styling": this.clientStyling, tooltip: subfield.tooltip, placeholder: subfield.placeholder == null ? '' : subfield.placeholder, ref: el => this.subFieldsObject[subfield.name] = el });
|
|
14768
14769
|
})));
|
|
14769
14770
|
}
|
|
14770
14771
|
static get watchers() { return {
|