@descope/web-components-ui 1.0.118 → 1.0.120

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.esm.js CHANGED
@@ -1415,6 +1415,7 @@ const resetInputAutoFill = (name, cssVarList) => `
1415
1415
  const resetInputFieldDefaultWidth = () => `
1416
1416
  :host {
1417
1417
  --vaadin-field-default-width: auto;
1418
+ box-sizing: border-box;
1418
1419
  }
1419
1420
  `;
1420
1421
 
@@ -2596,7 +2597,7 @@ const {
2596
2597
  internalWrapper,
2597
2598
  focusedDigitField
2598
2599
  } = {
2599
- host: () => ':host',
2600
+ host: { selector: () => ':host' },
2600
2601
  focusedDigitField: { selector: () => `${TextFieldClass.componentName}[focused="true"]` },
2601
2602
  digitField: { selector: () => TextFieldClass.componentName },
2602
2603
  label: { selector: '::part(label)' },
@@ -2609,6 +2610,7 @@ const textVars$1 = TextFieldClass.cssVarList;
2609
2610
  const PasscodeClass = compose(
2610
2611
  createStyleMixin({
2611
2612
  mappings: {
2613
+ fontSize: [{ ...digitField, property: textVars$1.fontSize }, host$5],
2612
2614
  hostWidth: { property: 'width' },
2613
2615
  fontFamily: host$5,
2614
2616
  labelTextColor: [
@@ -6235,6 +6237,7 @@ const vars$7 = PasscodeClass.cssVarList;
6235
6237
 
6236
6238
  const passcode = {
6237
6239
  [vars$7.fontFamily]: refs.fontFamily,
6240
+ [vars$7.fontSize]: refs.fontSize,
6238
6241
  [vars$7.labelTextColor]: refs.labelTextColor,
6239
6242
  [vars$7.labelRequiredIndicator]: refs.requiredIndicator,
6240
6243
  [vars$7.digitValueTextColor]: refs.valueTextColor,