@everymatrix/general-registration 1.10.18 → 1.10.20
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-input_11.cjs.entry.js → checkbox-group-input_12.cjs.entry.js} +18792 -12528
- package/dist/cjs/general-registration.cjs.js +2 -2
- package/dist/cjs/{index-5b4544e8.js → index-dfef7446.js} +41 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/general-registration/general-registration.js +85 -23
- package/dist/collection/utils/locale.utils.js +13 -3
- package/dist/components/active-mixin.js +975 -0
- package/dist/components/checkbox-group-input.js +6 -0
- package/dist/components/checkbox-group-input2.js +1121 -0
- package/dist/components/date-input2.js +5064 -4
- package/dist/components/email-input2.js +2 -1
- package/dist/components/field-mixin.js +12712 -0
- package/dist/components/general-input2.js +20 -11
- package/dist/components/general-registration.js +101 -24
- package/dist/components/input-field-shared-styles.js +403 -13065
- package/dist/components/number-input2.js +2 -1
- package/dist/components/password-input2.js +51 -11
- package/dist/components/pattern-mixin.js +2 -1
- package/dist/components/select-input2.js +5 -4
- package/dist/components/tel-input2.js +7 -1
- package/dist/components/text-input2.js +15 -3
- package/dist/components/tooltipIcon.js +9 -5
- package/dist/components/vaadin-button.js +3 -974
- package/dist/components/vaadin-combo-box.js +12 -27
- package/dist/components/virtual-keyboard-controller.js +3 -38
- package/dist/esm/{checkbox-input_11.entry.js → checkbox-group-input_12.entry.js} +18792 -12529
- package/dist/esm/general-registration.js +2 -2
- package/dist/esm/{index-5b8d16cc.js → index-fdb6785f.js} +41 -1
- package/dist/esm/loader.js +2 -2
- package/dist/general-registration/general-registration.esm.js +1 -1
- package/dist/general-registration/p-64b59a7b.js +1 -0
- package/dist/general-registration/p-cb8af7e3.entry.js +3582 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/stencil/widgets-stencil/packages/general-registration/.stencil/packages/general-input/src/utils/types.d.ts +22 -5
- package/dist/types/components/general-registration/general-registration.d.ts +7 -3
- package/dist/types/components.d.ts +10 -2
- package/dist/types/utils/locale.utils.d.ts +8 -0
- package/package.json +4 -2
- package/dist/general-registration/p-7749aa7a.entry.js +0 -3274
- package/dist/general-registration/p-cba9c0b1.js +0 -1
|
@@ -109,7 +109,7 @@ const EmailInput = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
109
109
|
render() {
|
|
110
110
|
const invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'email__input--invalid';
|
|
111
111
|
return h("div", { class: 'email__wrapper', ref: el => this.stylingContainer = el }, h("div", { class: 'email__wrapper--flex' }, h("label", { class: `email__label ${this.validation.mandatory ? 'email__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), h("div", { class: 'email__wrapper--relative' }, this.tooltip &&
|
|
112
|
-
h("img", { class: 'email__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h("input", { id: `${this.name}__input`, type: 'email', class: `email__input ${invalidClass}`, value: this.defaultValue, readOnly: this.autofilled, placeholder: `${this.
|
|
112
|
+
h("img", { class: 'email__tooltip-icon', src: tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), h("input", { id: `${this.name}__input`, type: 'email', class: `email__input ${invalidClass}`, value: this.defaultValue, readOnly: this.autofilled, placeholder: `${this.placeholder} ${this.placeholder && this.validation.mandatory ? '*' : ''}`, ref: (el) => this.inputReference = el, pattern: this.validationPattern, required: this.validation.mandatory, minlength: this.validation.minLength, maxlength: this.validation.maxLength, onBlur: (e) => this.handleInput(e) }), h("small", { class: 'email__error-message' }, this.errorMessage));
|
|
113
113
|
}
|
|
114
114
|
static get watchers() { return {
|
|
115
115
|
"isValid": ["validityChanged"],
|
|
@@ -119,6 +119,7 @@ const EmailInput = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
|
|
|
119
119
|
}, [1, "email-input", {
|
|
120
120
|
"name": [513],
|
|
121
121
|
"displayName": [513, "display-name"],
|
|
122
|
+
"placeholder": [513],
|
|
122
123
|
"validation": [16],
|
|
123
124
|
"defaultValue": [513, "default-value"],
|
|
124
125
|
"autofilled": [516],
|