@everymatrix/general-registration 1.55.1 → 1.56.1
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 +82 -25
- package/dist/cjs/general-registration.cjs.js +3 -3
- package/dist/cjs/{index-f710b430.js → index-59ba6f69.js} +82 -74
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/esm/checkbox-group-input_13.entry.js +82 -25
- package/dist/esm/general-registration.js +4 -4
- package/dist/esm/{index-e30ca6ba.js → index-de907516.js} +82 -74
- package/dist/esm/loader.js +3 -3
- package/dist/general-registration/general-registration.esm.js +1 -1
- package/dist/general-registration/{p-252a6d81.entry.js → p-439f617f.entry.js} +41 -41
- package/dist/general-registration/p-f0564129.js +2 -0
- package/dist/types/components.d.ts +48 -0
- package/package.json +1 -1
- package/dist/general-registration/p-0d63ba5e.js +0 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, c as createEvent, h as h$3, g as getElement, H as Host } from './index-
|
|
1
|
+
import { r as registerInstance, c as createEvent, h as h$3, g as getElement, H as Host } from './index-de907516.js';
|
|
2
2
|
|
|
3
3
|
const DEFAULT_LANGUAGE$1 = 'en';
|
|
4
4
|
const TRANSLATIONS$1 = {
|
|
@@ -15154,6 +15154,10 @@ const CheckboxGroupInput = class {
|
|
|
15154
15154
|
this.stylingContainer.prepend(sheet);
|
|
15155
15155
|
};
|
|
15156
15156
|
}
|
|
15157
|
+
handleStylingChange(newValue, oldValue) {
|
|
15158
|
+
if (newValue !== oldValue)
|
|
15159
|
+
this.setClientStyling();
|
|
15160
|
+
}
|
|
15157
15161
|
validityChanged() {
|
|
15158
15162
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
15159
15163
|
if (this.emitValue == true) {
|
|
@@ -15228,13 +15232,14 @@ const CheckboxGroupInput = class {
|
|
|
15228
15232
|
return (h$3("label", { class: 'checkbox__label', htmlFor: `${this.name}__input`, slot: 'label' }, h$3("div", { class: 'checkbox__label-text', innerHTML: `${this.displayName} ${this.validation.mandatory ? '*' : ''}` })));
|
|
15229
15233
|
}
|
|
15230
15234
|
render() {
|
|
15231
|
-
return h$3("div", { key: '
|
|
15232
|
-
h$3("img", { key: '
|
|
15235
|
+
return h$3("div", { key: 'c25b0a1ac187ea0abf1fe8c69d584eee00568177', class: `checkboxgroup__wrapper ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("div", { key: 'daf512e7f98d20bae65e43ab869e45babc008e90', class: 'checkboxgroup__wrapper--flex' }, h$3("vaadin-checkbox", { key: '08e31269cf2ace61c4c929a6a597486555667197', class: 'checkbox__input', checked: this.selectedValues.length === this.options.length || this.defaultValue === 'true', indeterminate: this.selectedValues.length > 0 && this.selectedValues.length < this.options.length, onChange: (e) => this.handleParentCheckbox(e) }, this.renderLabel()), this.tooltip &&
|
|
15236
|
+
h$3("img", { key: 'ed4c3efd6b7e30ae0b68de11093b8faf2cb0a845', class: 'checkboxgroup__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip()), h$3("small", { key: '5b95c4059a2de898c04bf147e89c5a2ad035dddf', class: 'checkboxgroup__error-message' }, this.errorMessage), h$3("vaadin-checkbox-group", { key: '2b73ac73d52c6185358e50eda4c9706643f55384', theme: "vertical", value: this.selectedValues, "on-value-changed": (event) => {
|
|
15233
15237
|
this.selectedValues = event.detail.value;
|
|
15234
15238
|
} }, this.options.map((checkbox) => h$3("vaadin-checkbox", { class: 'checkbox__input', name: checkbox.name, value: checkbox.name, label: checkbox.displayName }))));
|
|
15235
15239
|
}
|
|
15236
15240
|
get element() { return getElement(this); }
|
|
15237
15241
|
static get watchers() { return {
|
|
15242
|
+
"clientStyling": ["handleStylingChange"],
|
|
15238
15243
|
"isValid": ["validityChanged"],
|
|
15239
15244
|
"selectedValues": ["setValue"],
|
|
15240
15245
|
"emitValue": ["emitValueHandler"]
|
|
@@ -15267,6 +15272,10 @@ const CheckboxInput = class {
|
|
|
15267
15272
|
this.stylingContainer.prepend(sheet);
|
|
15268
15273
|
};
|
|
15269
15274
|
}
|
|
15275
|
+
handleStylingChange(newValue, oldValue) {
|
|
15276
|
+
if (newValue !== oldValue)
|
|
15277
|
+
this.setClientStyling();
|
|
15278
|
+
}
|
|
15270
15279
|
validityChanged() {
|
|
15271
15280
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
15272
15281
|
if (this.emitValue == true) {
|
|
@@ -15329,10 +15338,11 @@ const CheckboxInput = class {
|
|
|
15329
15338
|
return null;
|
|
15330
15339
|
}
|
|
15331
15340
|
render() {
|
|
15332
|
-
return h$3("div", { key: '
|
|
15333
|
-
h$3("img", { key: '
|
|
15341
|
+
return h$3("div", { key: '8c80c955bb052558165a4c5b1020d0582ed0af36', class: `checkbox__wrapper ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("input", { key: '89401d543cb30b72ec614b0cd4e95b2e82b2522d', class: 'checkbox__input', type: "checkbox", id: `${this.name}__input`, ref: (el) => this.inputReference = el, name: this.name, checked: this.defaultValue === "true", readOnly: this.autofilled, required: this.validation.mandatory, value: this.value, onClick: () => this.handleClick() }), this.renderLabel(), h$3("small", { key: 'd007d8c02dd014a363e2fcc1a0e8df6ffda34bcb', class: 'checkbox__error-message' }, this.errorMessage), h$3("div", { key: 'c511c07684173359663d4907371efb82289f0433', class: 'checkbox__wrapper--relative' }, this.tooltip &&
|
|
15342
|
+
h$3("img", { key: 'dd263ce86efd89f34078f3cc24729f43f40e89a6', class: 'checkbox__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip()));
|
|
15334
15343
|
}
|
|
15335
15344
|
static get watchers() { return {
|
|
15345
|
+
"clientStyling": ["handleStylingChange"],
|
|
15336
15346
|
"isValid": ["validityChanged"],
|
|
15337
15347
|
"emitValue": ["emitValueHandler"]
|
|
15338
15348
|
}; }
|
|
@@ -30857,6 +30867,10 @@ const DateInput = class {
|
|
|
30857
30867
|
this.stylingContainer.prepend(sheet);
|
|
30858
30868
|
};
|
|
30859
30869
|
}
|
|
30870
|
+
handleStylingChange(newValue, oldValue) {
|
|
30871
|
+
if (newValue !== oldValue)
|
|
30872
|
+
this.setClientStyling();
|
|
30873
|
+
}
|
|
30860
30874
|
validityChanged() {
|
|
30861
30875
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
30862
30876
|
if (this.emitValue == true) {
|
|
@@ -30953,11 +30967,12 @@ const DateInput = class {
|
|
|
30953
30967
|
if (this.touched) {
|
|
30954
30968
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
30955
30969
|
}
|
|
30956
|
-
return h$3("div", { key: '
|
|
30957
|
-
h$3("img", { key: '
|
|
30970
|
+
return h$3("div", { key: 'ad6360e0afb065a91f860574f5e3c08f5bdb2534', class: `date__wrapper ${this.autofilled ? 'date__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("label", { key: '3e8d26e0c8ae0983997b84e95cb34887df1f5fe5', class: `date__label ${this.validation.mandatory ? 'date__label--required' : ''}}`, htmlFor: `${this.name}__input` }, this.displayName, " ", this.validation.mandatory ? '*' : ''), h$3("vaadin-date-picker", { key: '62ee430506c2ab1a5ebb632d72e84ef905296888', id: `${this.name}__input`, type: 'date', class: `date__input ${invalidClass}`, value: this.defaultValue, readOnly: this.autofilled, placeholder: `${this.placeholder}`, required: this.validation.mandatory, max: this.validation.max, min: this.validation.min, onChange: (e) => this.handleInput(e), onBlur: this.handleBlur }), h$3("small", { key: '6b7c0e9c3437b484bd534060f93ad4fcd9eaeb60', class: 'date__error-message' }, this.errorMessage), this.tooltip &&
|
|
30971
|
+
h$3("img", { key: '6479b29563710abfe1be584c9de110fafe69ca3d', class: 'date__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip());
|
|
30958
30972
|
}
|
|
30959
30973
|
get element() { return getElement(this); }
|
|
30960
30974
|
static get watchers() { return {
|
|
30975
|
+
"clientStyling": ["handleStylingChange"],
|
|
30961
30976
|
"isValid": ["validityChanged"],
|
|
30962
30977
|
"emitValue": ["emitValueHandler"]
|
|
30963
30978
|
}; }
|
|
@@ -31003,6 +31018,10 @@ const EmailInput = class {
|
|
|
31003
31018
|
this.stylingContainer.prepend(sheet);
|
|
31004
31019
|
};
|
|
31005
31020
|
}
|
|
31021
|
+
handleStylingChange(newValue, oldValue) {
|
|
31022
|
+
if (newValue !== oldValue)
|
|
31023
|
+
this.setClientStyling();
|
|
31024
|
+
}
|
|
31006
31025
|
validityChanged() {
|
|
31007
31026
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
31008
31027
|
if (this.emitValue == true) {
|
|
@@ -31091,10 +31110,11 @@ const EmailInput = class {
|
|
|
31091
31110
|
if (this.touched) {
|
|
31092
31111
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
31093
31112
|
}
|
|
31094
|
-
return h$3("div", { key: '
|
|
31095
|
-
h$3("img", { key: '
|
|
31113
|
+
return h$3("div", { key: 'a46093cfafc840d2fd563ee9676ccd2f16fb1620', class: `email__wrapper ${this.autofilled ? 'number__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("div", { key: '2eab4a96efc36cdb94e9f92b2a161e208f0ebcd4', class: 'email__wrapper--flex' }, h$3("label", { key: 'f5ed857f61ea6763c5fe88590732258b4dedac1b', class: `email__label ${this.validation.mandatory ? 'email__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), h$3("div", { key: '58cadc7857cd91dec968852be71e0108f55fbda7', class: 'email__wrapper--relative' }, this.tooltip &&
|
|
31114
|
+
h$3("img", { key: '03009d036fde1c36b9348ac45cefa3389194260c', class: 'email__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h$3("input", { key: 'b2a9fd96ed301df5f1d7cf6f5a2a5b52f96ab189', id: `${this.name}__input`, type: 'email', class: `email__input ${invalidClass}`, value: this.defaultValue, readOnly: this.autofilled, placeholder: `${this.placeholder}`, ref: (el) => this.inputReference = el, pattern: this.validationPattern, required: this.validation.mandatory, minlength: this.validation.minLength, maxlength: this.validation.maxLength, onInput: this.handleInput, onBlur: this.handleBlur }), h$3("small", { key: 'edb17f53141a3406bfc657f80098b914044a8894', class: 'email__error-message' }, this.errorMessage));
|
|
31096
31115
|
}
|
|
31097
31116
|
static get watchers() { return {
|
|
31117
|
+
"clientStyling": ["handleStylingChange"],
|
|
31098
31118
|
"isValid": ["validityChanged"],
|
|
31099
31119
|
"emitValue": ["emitValueHandler"]
|
|
31100
31120
|
}; }
|
|
@@ -37576,8 +37596,8 @@ function Ii(e, t, r) {
|
|
|
37576
37596
|
33554433 && p && i && (lr(), cr()), e.$$.dirty[0] & /*session*/
|
|
37577
37597
|
1 && (i || ur()), e.$$.dirty[0] & /*clientstyling, customStylingContainer*/
|
|
37578
37598
|
34 && s && f && ft$1(f, s), e.$$.dirty[0] & /*clientstylingurl, customStylingContainer*/
|
|
37579
|
-
36 && h && f && dt$1(f, h), e.$$.dirty[0] & /*
|
|
37580
|
-
40 &&
|
|
37599
|
+
36 && h && f && dt$1(f, h), e.$$.dirty[0] & /*customStylingContainer, mbsource*/
|
|
37600
|
+
40 && f && at$1(f, `${u}.Style`), e.$$.dirty[0] & /*lang*/
|
|
37581
37601
|
4194304 && l && ar(), e.$$.dirty[0] & /*translationurl*/
|
|
37582
37602
|
8388608 && m && sr();
|
|
37583
37603
|
}, [
|
|
@@ -38376,6 +38396,10 @@ const NumberInput = class {
|
|
|
38376
38396
|
this.stylingContainer.prepend(sheet);
|
|
38377
38397
|
};
|
|
38378
38398
|
}
|
|
38399
|
+
handleStylingChange(newValue, oldValue) {
|
|
38400
|
+
if (newValue !== oldValue)
|
|
38401
|
+
this.setClientStyling();
|
|
38402
|
+
}
|
|
38379
38403
|
validityChanged() {
|
|
38380
38404
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
38381
38405
|
if (this.emitValue == true) {
|
|
@@ -38452,10 +38476,11 @@ const NumberInput = class {
|
|
|
38452
38476
|
if (this.touched) {
|
|
38453
38477
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
38454
38478
|
}
|
|
38455
|
-
return h$3("div", { key: '
|
|
38456
|
-
h$3("img", { key: '
|
|
38479
|
+
return h$3("div", { key: '841265bba6b75cc61a0eac1450c3f5aa5f917a2e', class: `number__wrapper ${this.autofilled ? 'number__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("div", { key: '645c7817cf5a0bdc352de9d8c0698fde235aa6d3', class: 'number__wrapper--flex' }, h$3("label", { key: '3343cbbb8482b71cd152161a8d422f318f07f3fe', class: `number__label ${this.validation.mandatory ? 'number__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), h$3("div", { key: '1f3341b2127095870610fc0e0b4b5d220c5d2e2c', class: 'number__wrapper--relative' }, this.tooltip &&
|
|
38480
|
+
h$3("img", { key: '8bbe2fe9f62347cbcd37b753d4a1b0718dc39091', class: 'number__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h$3("input", { key: '100401abdc33069f34e27e0807c9f31ddf7e42ec', ref: (el) => this.inputReference = el, type: "number", value: this.defaultValue, readOnly: this.autofilled, id: `${this.name}__input`, class: `number__input ${invalidClass}`, pattern: this.validationPattern, placeholder: `${this.placeholder}`, required: this.validation.mandatory, max: this.validation.max, min: this.validation.min, onInput: this.handleInput, onBlur: this.handleBlur }), h$3("small", { key: 'db1e0043bb9b6de2ad8e18f49f96152b9451b93c', class: 'number__error-message' }, this.errorMessage));
|
|
38457
38481
|
}
|
|
38458
38482
|
static get watchers() { return {
|
|
38483
|
+
"clientStyling": ["handleStylingChange"],
|
|
38459
38484
|
"isValid": ["validityChanged"],
|
|
38460
38485
|
"emitValue": ["emitValueHandler"]
|
|
38461
38486
|
}; }
|
|
@@ -39308,6 +39333,10 @@ const PasswordInput = class {
|
|
|
39308
39333
|
this.stylingContainer.prepend(sheet);
|
|
39309
39334
|
};
|
|
39310
39335
|
}
|
|
39336
|
+
handleStylingChange(newValue, oldValue) {
|
|
39337
|
+
if (newValue !== oldValue)
|
|
39338
|
+
this.setClientStyling();
|
|
39339
|
+
}
|
|
39311
39340
|
validityChanged() {
|
|
39312
39341
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
39313
39342
|
if (this.emitValue == true) {
|
|
@@ -39466,11 +39495,12 @@ const PasswordInput = class {
|
|
|
39466
39495
|
if (this.touched) {
|
|
39467
39496
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
39468
39497
|
}
|
|
39469
|
-
return h$3("div", { key: '
|
|
39470
|
-
h$3("img", { key: '
|
|
39498
|
+
return h$3("div", { key: '36d21c63dcd15b6de2d2de417ce97b520493cd16', class: `password__wrapper ${this.autofilled ? 'password__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("div", { key: '3de600f4ccbf2ffe7a8a8858e9d5a483701dd4d7', class: 'password__wrapper--flex' }, h$3("label", { key: '74fee343f4d6adbbb22e88c5d51d3a471979d42e', class: `password__label ${this.validation.mandatory ? 'password__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), h$3("div", { key: 'd1f30d776c5612b1a5581859b929bee171105bf5', class: 'password__wrapper--relative' }, this.tooltip &&
|
|
39499
|
+
h$3("img", { key: '932201990b5fa67f448d4ab8ca7f844f757d5e47', class: 'password__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h$3("vaadin-password-field", { key: '83f00cb4452b60fd883efcd742d6eb463a8fc729', type: "password", id: `${this.name}__input`, class: `password__input ${invalidClass}`, name: this.name, readOnly: this.autofilled, value: this.defaultValue, required: this.validation.mandatory, maxlength: this.validation.maxLength, minlength: this.validation.minLength, pattern: this.validationPattern, placeholder: `${this.placeholder}`, onInput: this.handleInput, onBlur: this.handleBlur, onFocus: this.handleFocus }), h$3("small", { key: '0f6f7ba5e9ec6f492f22a46ac77c7977f7a8e835', class: 'password__error-message' }, this.errorMessage), this.passwordComplexity && this.showPopup && !this.isDuplicateInput && this.renderComplexityPopup());
|
|
39471
39500
|
}
|
|
39472
39501
|
get element() { return getElement(this); }
|
|
39473
39502
|
static get watchers() { return {
|
|
39503
|
+
"clientStyling": ["handleStylingChange"],
|
|
39474
39504
|
"isValid": ["validityChanged"],
|
|
39475
39505
|
"value": ["valueChanged"],
|
|
39476
39506
|
"emitValue": ["emitValueHandler"]
|
|
@@ -39498,6 +39528,10 @@ const RadioInput = class {
|
|
|
39498
39528
|
this.stylingContainer.prepend(sheet);
|
|
39499
39529
|
};
|
|
39500
39530
|
}
|
|
39531
|
+
handleStylingChange(newValue, oldValue) {
|
|
39532
|
+
if (newValue !== oldValue)
|
|
39533
|
+
this.setClientStyling();
|
|
39534
|
+
}
|
|
39501
39535
|
validityChanged() {
|
|
39502
39536
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
39503
39537
|
if (this.emitValue == true) {
|
|
@@ -39551,10 +39585,11 @@ const RadioInput = class {
|
|
|
39551
39585
|
return null;
|
|
39552
39586
|
}
|
|
39553
39587
|
render() {
|
|
39554
|
-
return h$3("fieldset", { key: '
|
|
39555
|
-
h$3("img", { key: '
|
|
39588
|
+
return h$3("fieldset", { key: '29ff8fcc910622397750532629ac0c202c9726ba', class: `radio__fieldset ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("legend", { key: 'cdab5b331863f3d31aab50c1d95b5a8845d53329', class: 'radio__legend' }, this.displayName, ":"), this.optionsGroup.map(option => h$3("div", { class: 'radio__wrapper' }, h$3("input", { type: "radio", class: 'radio__input', id: `${option.label}__input`, ref: (el) => this.inputReference = el, value: option.value, name: this.name, required: this.validation.mandatory, onClick: (e) => this.handleClick(e) }), h$3("label", { htmlFor: `${option.label}__input` }, option.label))), h$3("small", { key: 'bd6cd89510e7ace1348b391f3ce9ba334a03e695', class: 'radio__error-message' }, this.errorMessage), this.tooltip &&
|
|
39589
|
+
h$3("img", { key: '27036c51c89612dbb87e5248355d3a5466c49705', class: 'radio__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip());
|
|
39556
39590
|
}
|
|
39557
39591
|
static get watchers() { return {
|
|
39592
|
+
"clientStyling": ["handleStylingChange"],
|
|
39558
39593
|
"isValid": ["validityChanged"],
|
|
39559
39594
|
"emitValue": ["emitValueHandler"]
|
|
39560
39595
|
}; }
|
|
@@ -45154,6 +45189,10 @@ const SelectInput = class {
|
|
|
45154
45189
|
this.stylingContainer.prepend(sheet);
|
|
45155
45190
|
};
|
|
45156
45191
|
}
|
|
45192
|
+
handleStylingChange(newValue, oldValue) {
|
|
45193
|
+
if (newValue !== oldValue)
|
|
45194
|
+
this.setClientStyling();
|
|
45195
|
+
}
|
|
45157
45196
|
validityChanged() {
|
|
45158
45197
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
45159
45198
|
if (this.emitValue == true) {
|
|
@@ -45245,11 +45284,12 @@ const SelectInput = class {
|
|
|
45245
45284
|
if (this.touched) {
|
|
45246
45285
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
45247
45286
|
}
|
|
45248
|
-
return h$3("div", { key: '
|
|
45249
|
-
h$3("img", { key: '
|
|
45287
|
+
return h$3("div", { key: 'f02c73635c87a1937f4718c9de8df3aae8397815', class: `select__wrapper ${this.autofilled ? 'select__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("div", { key: '26bf79a073dd4c84570e380b1f36bfe848fec568', class: 'select__wrapper--flex' }, h$3("label", { key: '6eaafabe58a2dd4e1604ac2e3d55d001e2c4bc7c', class: 'select__label', htmlFor: `${this.name}__input` }, `${this.displayName} ${this.validation.mandatory ? '*' : ''}`), h$3("div", { key: 'a1de9c4bd3dd4158b26004c6df9dca5915f73978', class: 'select__wrapper--relative' }, this.tooltip &&
|
|
45288
|
+
h$3("img", { key: '5cb869c82f53a463c91cd060fad5520d2fbc3d0d', class: 'select__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h$3("vaadin-combo-box", { key: '2e94c1faa107657034a98d70b1e98d5c5ab5caa5', name: this.name, id: `${this.name}__input`, class: `select__input ${invalidClass} ${this.autofilled ? 'select__input--autofilled' : ''}`, "item-label-path": "label", "item-value-path": "value", readOnly: this.autofilled, required: this.validation.mandatory, value: this.defaultValue, placeholder: `${this.placeholder}`, items: this.displayedOptions, onChange: this.handleChange, onBlur: this.handleBlur }), h$3("small", { key: '2c8162576d30265ea49cdc6d99071f614d833d7e', class: 'select__error-message' }, this.errorMessage));
|
|
45250
45289
|
}
|
|
45251
45290
|
get element() { return getElement(this); }
|
|
45252
45291
|
static get watchers() { return {
|
|
45292
|
+
"clientStyling": ["handleStylingChange"],
|
|
45253
45293
|
"isValid": ["validityChanged"],
|
|
45254
45294
|
"emitValue": ["emitValueHandler"]
|
|
45255
45295
|
}; }
|
|
@@ -45296,6 +45336,10 @@ const TelInput = class {
|
|
|
45296
45336
|
this.stylingContainer.prepend(sheet);
|
|
45297
45337
|
};
|
|
45298
45338
|
}
|
|
45339
|
+
handleStylingChange(newValue, oldValue) {
|
|
45340
|
+
if (newValue !== oldValue)
|
|
45341
|
+
this.setClientStyling();
|
|
45342
|
+
}
|
|
45299
45343
|
validityChanged() {
|
|
45300
45344
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
45301
45345
|
if (this.emitValue == true) {
|
|
@@ -45406,10 +45450,11 @@ const TelInput = class {
|
|
|
45406
45450
|
if (this.touched) {
|
|
45407
45451
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
45408
45452
|
}
|
|
45409
|
-
return h$3("div", { key: '
|
|
45410
|
-
h$3("img", { key: '
|
|
45453
|
+
return h$3("div", { key: 'f0f70d8568ba083ee19f9e73e5921104f599e15f', class: `tel__wrapper ${this.autofilled ? 'tel__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("div", { key: '8da9e1c2a6b3ca19caff07540f0218266de22bb2', class: 'tel__wrapper--flex-label' }, h$3("label", { key: 'd0d90bc96e3ea853f401bae9be3f033d4cfd9b17', class: `tel__label ${this.validation.mandatory ? 'tel__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), h$3("div", { key: 'fdf7929f51edcbea8568b35804b0d9e9a93a7249', class: 'tel__wrapper--relative' }, this.tooltip &&
|
|
45454
|
+
h$3("img", { key: '0fbc9b5e8c5feef727caa71ef07d4ae80007e04a', class: 'tel__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h$3("div", { key: 'b4a11808a7ae5e5cddce47b51a51003bce3a84f8', class: `tel__wrapper--flex ${invalidClass}` }, h$3("vaadin-combo-box", { key: '2d81ff4c11e559f302a8446816f4aca0de2cfcef', class: 'tel__prefix', items: this.phoneCodesOptions, value: this.prefixValue, readOnly: this.autofilled, onChange: (e) => this.handlePrefixInput(e) }), h$3("input", { key: 'ab52185589bf4d52205bad4cecc9c7ecb54cd409', type: "tel", ref: (el) => this.inputReference = el, id: `${this.name}__input`, readOnly: this.autofilled, class: `tel__input`, value: this.phoneValue, placeholder: `${this.placeholder}`, required: this.validation.mandatory, minlength: this.validation.minLength, maxlength: this.validation.maxLength, pattern: this.validationPattern, onInput: this.handleInput, onBlur: this.handleBlur })), h$3("small", { key: '6d219de32297bc2fab31995b5a33b14f2eea21d9', class: 'tel__error-message' }, this.errorMessage));
|
|
45411
45455
|
}
|
|
45412
45456
|
static get watchers() { return {
|
|
45457
|
+
"clientStyling": ["handleStylingChange"],
|
|
45413
45458
|
"isValid": ["validityChanged"],
|
|
45414
45459
|
"emitValue": ["emitValueHandler"]
|
|
45415
45460
|
}; }
|
|
@@ -45465,6 +45510,10 @@ const TextInput = class {
|
|
|
45465
45510
|
this.stylingContainer.prepend(sheet);
|
|
45466
45511
|
};
|
|
45467
45512
|
}
|
|
45513
|
+
handleStylingChange(newValue, oldValue) {
|
|
45514
|
+
if (newValue !== oldValue)
|
|
45515
|
+
this.setClientStyling();
|
|
45516
|
+
}
|
|
45468
45517
|
validityChanged() {
|
|
45469
45518
|
this.validityStateHandler({ valid: this.isValid, name: this.name });
|
|
45470
45519
|
if (this.emitValue == true) {
|
|
@@ -45570,10 +45619,11 @@ const TextInput = class {
|
|
|
45570
45619
|
if (this.touched) {
|
|
45571
45620
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
45572
45621
|
}
|
|
45573
|
-
return h$3("div", { key: '
|
|
45574
|
-
h$3("img", { key: '
|
|
45622
|
+
return h$3("div", { key: 'e297f841a57c6acf854535a786916aa641831556', class: `text__wrapper ${this.name}__input ${this.autofilled ? 'text__wrapper--autofilled' : ''}`, ref: el => this.stylingContainer = el }, h$3("div", { key: '7fd284a58e58d5c61a03caf4cc317b8dd9dbd82f', class: 'text__wrapper--flex' }, h$3("label", { key: 'f80a2003386ec867e5310190a7568105c2912569', class: `text__label ${this.validation.mandatory ? 'text__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), h$3("div", { key: 'e8f5197bd370100406d600be5a336f85f4c6934d', class: 'text__wrapper--relative' }, this.tooltip &&
|
|
45623
|
+
h$3("img", { key: 'ff8c38fe3495a41a41ac4a1569169ce26a1ec9ce', class: 'text__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h$3("input", { key: '581106e515810ab43f7d6b6eda504ccf23906b0e', name: this.name, id: `${this.name}__input`, value: this.defaultValue, type: 'text', class: `text__input ${invalidClass}`, placeholder: `${this.placeholder}`, ref: (el) => this.inputReference = el, readOnly: this.autofilled, pattern: this.validationPattern, required: this.validation.mandatory, minlength: this.validation.minLength, maxlength: this.validation.maxLength, onInput: this.handleInput, onBlur: this.handleBlur }), h$3("small", { key: '20620710026982d5fb670a3173bab57a7fa9e7ce', class: 'text__error-message' }, this.errorMessage));
|
|
45575
45624
|
}
|
|
45576
45625
|
static get watchers() { return {
|
|
45626
|
+
"clientStyling": ["handleStylingChange"],
|
|
45577
45627
|
"isValid": ["validityChanged"],
|
|
45578
45628
|
"emitValue": ["emitValueHandler"]
|
|
45579
45629
|
}; }
|
|
@@ -45606,6 +45656,10 @@ const ToggleCheckboxInput = class {
|
|
|
45606
45656
|
this.stylingContainer.prepend(sheet);
|
|
45607
45657
|
};
|
|
45608
45658
|
}
|
|
45659
|
+
handleStylingChange(newValue, oldValue) {
|
|
45660
|
+
if (newValue !== oldValue)
|
|
45661
|
+
this.setClientStyling();
|
|
45662
|
+
}
|
|
45609
45663
|
validityStateHandler(inputStateEvent) {
|
|
45610
45664
|
this.sendValidityState.emit(inputStateEvent);
|
|
45611
45665
|
}
|
|
@@ -45651,11 +45705,14 @@ const ToggleCheckboxInput = class {
|
|
|
45651
45705
|
return null;
|
|
45652
45706
|
}
|
|
45653
45707
|
render() {
|
|
45654
|
-
return h$3("div", { key: '
|
|
45655
|
-
h$3("img", { key: '
|
|
45708
|
+
return h$3("div", { key: 'e8be91ce94cf76ebecc58a433ab567ab549f4692', class: `togglecheckbox__wrapper ${this.name}__input`, ref: el => this.stylingContainer = el }, h$3("div", { key: 'dd42a6316cda06e357843165329de7525a24e3d5', class: 'togglecheckbox__wrapper--flex' }, h$3("input", { key: '932a6f8caeafa0d006f636484e33dda246c314d0', 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()), h$3("small", { key: 'cbc789c8a5c21debc05971ff347371fbc25d4975', class: 'togglecheckbox__error-message' }, this.errorMessage), h$3("div", { key: 'a5ce470c985829eb1f5a0567bb974cc15e3d0d64', class: 'togglecheckbox__wrapper--relative' }, this.tooltip &&
|
|
45709
|
+
h$3("img", { key: 'faef05dd9341ffe44b6833ca8f4c86b85ed61956', class: 'togglecheckbox__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip()), h$3("div", { key: '89fed5f103acecca78fa53eea64d57574ef42727', class: `togglecheckbox__fields-wrapper ${this.showFields ? '' : 'hidden'}` }, this.options.map(subfield => {
|
|
45656
45710
|
return h$3("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 });
|
|
45657
45711
|
})));
|
|
45658
45712
|
}
|
|
45713
|
+
static get watchers() { return {
|
|
45714
|
+
"clientStyling": ["handleStylingChange"]
|
|
45715
|
+
}; }
|
|
45659
45716
|
};
|
|
45660
45717
|
ToggleCheckboxInput.style = ToggleCheckboxInputStyle0;
|
|
45661
45718
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-de907516.js';
|
|
2
|
+
export { s as setNonce } from './index-de907516.js';
|
|
3
3
|
import { g as globalScripts } from './app-globals-0f993ce5.js';
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v4.
|
|
6
|
+
Stencil Client Patch Browser v4.27.0 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
var patchBrowser = () => {
|
|
9
9
|
const importMeta = import.meta.url;
|
|
@@ -16,5 +16,5 @@ var patchBrowser = () => {
|
|
|
16
16
|
|
|
17
17
|
patchBrowser().then(async (options) => {
|
|
18
18
|
await globalScripts();
|
|
19
|
-
return bootstrapLazy([["checkbox-group-input_13",[[1,"general-registration",{"endpoint":[513],"language":[513],"clientStyling":[1537,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"dateFormat":[513,"date-format"],"buttonInsideForm":[516,"button-inside-form"],"btag":[513],"emitOnClick":[516,"emit-on-click"],"errorMessage":[32],"isFormValid":[32],"isConsentValid":[32],"isConsentReady":[32],"isLoading":[32],"isLoadingPOST":[32],"registrationStep":[32],"forms":[32],"limitStylingAppends":[32],"autofilled":[32]},[[0,"sendValidityState","checkInputsValidityHandler"],[0,"sendInputValue","getInputsValueHandler"],[8,"message","messageHandler"]],{"registrationStep":["sendStep"],"clientStyling":["handleStylingChange"],"clientStylingUrl":["handleStylingUrlChange"],"forms":["setFormValidity"],"btag":["addBtag"]}],[1,"general-input",{"type":[513],"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"validation":[16],"options":[520],"language":[513],"autofilled":[516],"tooltip":[513],"defaultValue":[520,"default-value"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[520,"client-styling"],"dateFormat":[513,"date-format"],"translationUrl":[513,"translation-url"],"emitOnClick":[516,"emit-on-click"]}],[1,"toggle-checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"options":[16],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"showFields":[32]},[[4,"click","handleClickOutside"]]],[1,"checkbox-group-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"selectedValues":[32]},[[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"selectedValues":["setValue"],"emitValue":["emitValueHandler"]}],[1,"checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"date-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"dateFormat":[513,"date-format"],"emitOnClick":[516,"emit-on-click"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"email-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"number-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"password-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32],"passwordComplexity":[32],"showPopup":[32],"value":[32]},[[16,"sendOriginalValidityState","originalValidityChangedHandler"],[16,"sendInputValue","valueChangedHandler"],[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"value":["valueChanged"],"emitValue":["emitValueHandler"]}],[1,"radio-input",{"name":[513],"displayName":[513,"display-name"],"optionsGroup":[16],"validation":[16],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"select-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"tel-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"showLabels":[516,"show-labels"],"action":[513],"validation":[16],"defaultValue":[520,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"text-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"checkValidity":[516,"check-validity"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}]]]], options);
|
|
19
|
+
return bootstrapLazy([["checkbox-group-input_13",[[1,"general-registration",{"endpoint":[513],"language":[513],"clientStyling":[1537,"client-styling"],"clientStylingUrl":[513,"client-styling-url"],"translationUrl":[513,"translation-url"],"dateFormat":[513,"date-format"],"buttonInsideForm":[516,"button-inside-form"],"btag":[513],"emitOnClick":[516,"emit-on-click"],"errorMessage":[32],"isFormValid":[32],"isConsentValid":[32],"isConsentReady":[32],"isLoading":[32],"isLoadingPOST":[32],"registrationStep":[32],"forms":[32],"limitStylingAppends":[32],"autofilled":[32]},[[0,"sendValidityState","checkInputsValidityHandler"],[0,"sendInputValue","getInputsValueHandler"],[8,"message","messageHandler"]],{"registrationStep":["sendStep"],"clientStyling":["handleStylingChange"],"clientStylingUrl":["handleStylingUrlChange"],"forms":["setFormValidity"],"btag":["addBtag"]}],[1,"general-input",{"type":[513],"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"validation":[16],"options":[520],"language":[513],"autofilled":[516],"tooltip":[513],"defaultValue":[520,"default-value"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[520,"client-styling"],"dateFormat":[513,"date-format"],"translationUrl":[513,"translation-url"],"emitOnClick":[516,"emit-on-click"]}],[1,"toggle-checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"options":[16],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"showFields":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"]}],[1,"checkbox-group-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32],"selectedValues":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"selectedValues":["setValue"],"emitValue":["emitValueHandler"]}],[1,"checkbox-input",{"name":[513],"displayName":[513,"display-name"],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"date-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"dateFormat":[513,"date-format"],"emitOnClick":[516,"emit-on-click"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"email-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"number-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"password-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32],"passwordComplexity":[32],"showPopup":[32],"value":[32]},[[16,"sendOriginalValidityState","originalValidityChangedHandler"],[16,"sendInputValue","valueChangedHandler"],[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"value":["valueChanged"],"emitValue":["emitValueHandler"]}],[1,"radio-input",{"name":[513],"displayName":[513,"display-name"],"optionsGroup":[16],"validation":[16],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"select-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"action":[513],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"options":[16],"validation":[16],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"errorMessage":[32],"isValid":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"tel-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"showLabels":[516,"show-labels"],"action":[513],"validation":[16],"defaultValue":[520,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"emitValue":[516,"emit-value"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}],[1,"text-input",{"name":[513],"displayName":[513,"display-name"],"placeholder":[513],"validation":[16],"defaultValue":[513,"default-value"],"autofilled":[516],"tooltip":[513],"language":[513],"checkValidity":[516,"check-validity"],"emitValue":[516,"emit-value"],"isDuplicateInput":[516,"is-duplicate-input"],"clientStyling":[513,"client-styling"],"isValid":[32],"errorMessage":[32],"limitStylingAppends":[32],"showTooltip":[32]},[[4,"click","handleClickOutside"],[16,"sendInputValue","valueChangedHandler"]],{"clientStyling":["handleStylingChange"],"isValid":["validityChanged"],"emitValue":["emitValueHandler"]}]]]], options);
|
|
20
20
|
});
|