@descope/web-components-ui 1.0.410 → 1.0.412

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope/web-components-ui",
3
- "version": "1.0.410",
3
+ "version": "1.0.412",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -188,7 +188,7 @@ const proxyInputMixin =
188
188
  forwardProps(this, [this.inputElement, ...proxyTargets], prop);
189
189
  });
190
190
 
191
- this.setSelectionRange = this.inputElement.setSelectionRange?.bind(this.inputElement);
191
+ this.setSelectionRange = this.inputElement?.setSelectionRange?.bind(this.inputElement);
192
192
 
193
193
  forwardAttrs(this, this.inputElement, { includeAttrs: ['inputmode'] });
194
194
  });
@@ -24,13 +24,6 @@ export const mappingsField = {
24
24
  [vars.attrLabelMinWidth]: `calc(12em + 2 * ${globalRefs.border.xs})`,
25
25
  [vars.separatorWidth]: '70px',
26
26
  [vars.removeButtonWidth]: '60px',
27
-
28
- // error message icon
29
- [vars.errorMessageIcon]: refs.errorMessageIcon,
30
- [vars.errorMessageIconSize]: refs.errorMessageIconSize,
31
- [vars.errorMessageIconPadding]: refs.errorMessageIconPadding,
32
- [vars.errorMessageIconRepeat]: refs.errorMessageIconRepeat,
33
- [vars.errorMessageIconPosition]: refs.errorMessageIconPosition,
34
27
  };
35
28
 
36
29
  export default mappingsField;