@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.
Files changed (26) hide show
  1. package/dist/cjs/checkbox-group-input_10.cjs.entry.js +3 -2
  2. package/dist/cjs/general-input.cjs.entry.js +261 -260
  3. package/dist/cjs/general-input.cjs.js +1 -1
  4. package/dist/cjs/loader.cjs.js +1 -1
  5. package/dist/collection/components/general-input/general-input.js +21 -2
  6. package/dist/collection/components/password-input/password-input.js +21 -2
  7. package/dist/esm/checkbox-group-input_10.entry.js +3 -2
  8. package/dist/esm/general-input.entry.js +261 -260
  9. package/dist/esm/general-input.js +1 -1
  10. package/dist/esm/loader.js +1 -1
  11. package/dist/general-input/checkbox-group-input_10.entry.js +1 -1
  12. package/dist/general-input/general-input.entry.js +217 -217
  13. package/dist/general-input/general-input.esm.js +1 -1
  14. package/dist/types/components/general-input/general-input.d.ts +4 -0
  15. package/dist/types/components/password-input/password-input.d.ts +4 -0
  16. package/dist/types/components.d.ts +16 -0
  17. package/package.json +1 -1
  18. /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
  19. /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
  20. /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
  21. /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
  22. /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
  23. /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
  24. /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
  25. /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
  26. /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: 'd5757f6d03b0c3ad30b57b9c62d8cd7c8802a37a', class: `password__wrapper ${this.autofilled ? 'password__wrapper--autofilled' : ''} ${this.name}__input`, ref: el => this.stylingContainer = el }, index.h("div", { key: '7e7508731d7397b6c578335715c711ea97c46d3a', class: 'password__wrapper--flex' }, index.h("label", { key: 'ce4fd50f4f9ae7fb772df496784a3869e29618b6', class: `password__label ${this.validation.mandatory ? 'password__label--required' : ''}`, htmlFor: `${this.name}__input` }, this.displayName), index.h("div", { key: '640fa5664eede59b585bfd314854615cf4da46c1', class: 'password__wrapper--relative' }, this.tooltip &&
5987
- index.h("img", { key: '0c0d0d71bf84c3ab6b0804424405ffacb1e87660', 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: '4a966b226d6ec04fbebcad8cf12896bbc05b84fa', 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: '1218d65c065a0dcc1b17d1422e08849b9b3de5ce', class: 'password__error-message' }, this.errorMessage), this.passwordComplexity && this.showPopup && !this.isDuplicateInput && this.renderComplexityPopup());
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 {