@descope/web-components-ui 1.0.119 → 1.0.120

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.
@@ -3504,7 +3504,7 @@ const {
3504
3504
  internalWrapper,
3505
3505
  focusedDigitField
3506
3506
  } = {
3507
- host: () => ':host',
3507
+ host: { selector: () => ':host' },
3508
3508
  focusedDigitField: { selector: () => `${TextFieldClass.componentName}[focused="true"]` },
3509
3509
  digitField: { selector: () => TextFieldClass.componentName },
3510
3510
  label: { selector: '::part(label)' },
@@ -3517,6 +3517,7 @@ const textVars$1 = TextFieldClass.cssVarList;
3517
3517
  const PasscodeClass = compose(
3518
3518
  createStyleMixin({
3519
3519
  mappings: {
3520
+ fontSize: [{ ...digitField, property: textVars$1.fontSize }, host$4],
3520
3521
  hostWidth: { property: 'width' },
3521
3522
  fontFamily: host$4,
3522
3523
  labelTextColor: [
@@ -3621,6 +3622,7 @@ const vars$7 = PasscodeClass.cssVarList;
3621
3622
 
3622
3623
  const passcode = {
3623
3624
  [vars$7.fontFamily]: refs.fontFamily,
3625
+ [vars$7.fontSize]: refs.fontSize,
3624
3626
  [vars$7.labelTextColor]: refs.labelTextColor,
3625
3627
  [vars$7.labelRequiredIndicator]: refs.requiredIndicator,
3626
3628
  [vars$7.digitValueTextColor]: refs.valueTextColor,