@everymatrix/general-input 1.66.2 → 1.67.3
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_10.cjs.entry.js +3 -2
- package/dist/cjs/general-input.cjs.entry.js +261 -260
- package/dist/cjs/general-input.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/general-input/general-input.js +21 -2
- package/dist/collection/components/password-input/password-input.js +21 -2
- package/dist/esm/checkbox-group-input_10.entry.js +3 -2
- package/dist/esm/general-input.entry.js +261 -260
- package/dist/esm/general-input.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/general-input/checkbox-group-input_10.entry.js +1 -1
- package/dist/general-input/general-input.entry.js +217 -217
- package/dist/general-input/general-input.esm.js +1 -1
- package/dist/types/components/general-input/general-input.d.ts +4 -0
- package/dist/types/components/password-input/password-input.d.ts +4 -0
- package/dist/types/components.d.ts +16 -0
- package/package.json +1 -1
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/libs/common/src/storybook/storybook-utils.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.dev.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/storybook/main.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/storybook/preview.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{adrian.pripon/Documents/Work → sebastian.strulea/Documents/work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -5809,6 +5809,7 @@ const PasswordInput = class {
|
|
|
5809
5809
|
this.language = undefined;
|
|
5810
5810
|
this.emitValue = undefined;
|
|
5811
5811
|
this.isDuplicateInput = undefined;
|
|
5812
|
+
this.hidePasswordComplexity = false;
|
|
5812
5813
|
this.clientStyling = '';
|
|
5813
5814
|
this.isValid = undefined;
|
|
5814
5815
|
this.errorMessage = undefined;
|
|
@@ -5983,8 +5984,8 @@ const PasswordInput = class {
|
|
|
5983
5984
|
if (this.touched) {
|
|
5984
5985
|
invalidClass = this.isValid == true || this.isValid == undefined ? '' : 'text__input--invalid';
|
|
5985
5986
|
}
|
|
5986
|
-
return index.h("div", { key: '
|
|
5987
|
-
index.h("img", { key: '
|
|
5987
|
+
return index.h("div", { key: '766952d14b7d51c8d7a498f1f42a2ef4bf82a91b', class: `password__wrapper ${this.autofilled ? 'password__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, index.h("div", { key: 'c2dbef6f7c3d0e46577fc5ac0faf27abec2b142b', class: 'password__wrapper--flex' }, index.h("label", { key: '8b8ec603082044efe5740f0d21d246a9fb840e60', class: `password__label ${this.validation.mandatory ? 'password__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), index.h("div", { key: '239c16b0dc29241bd1c5fbe27346564171900d5d', class: 'password__wrapper--relative' }, this.tooltip &&
|
|
5988
|
+
index.h("img", { key: '0e4d62a2d4b3a1284b83d5bae49c258498e8f6c6', class: 'password__tooltip-icon', src: tooltipIcon.tooltipIconSvg, alt: "", ref: (el) => this.tooltipIconReference = el, onClick: () => this.showTooltip = !this.showTooltip }), this.renderTooltip())), index.h("vaadin-password-field", { key: '11fb5b618a2cf87e54e7cae6c5e1b8846ed45455', 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 }), index.h("small", { key: 'af31d4e3623d1f57161190cb939fd7b368f63b59', class: 'password__error-message' }, this.errorMessage), this.passwordComplexity && this.showPopup && !this.hidePasswordComplexity && !this.isDuplicateInput && this.renderComplexityPopup());
|
|
5988
5989
|
}
|
|
5989
5990
|
get element() { return index.getElement(this); }
|
|
5990
5991
|
static get watchers() { return {
|