@descope/web-components-ui 1.0.180 → 1.0.182

Sign up to get free protection for your applications and to get access to all the features.
@@ -1965,6 +1965,7 @@ const TextFieldClass = compose(
1965
1965
  padding: calc(var(${TextFieldClass.cssVarList.inputOutlineWidth}) + var(${
1966
1966
  TextFieldClass.cssVarList.inputOutlineOffset
1967
1967
  }));
1968
+ box-sizing: border-box;
1968
1969
  }
1969
1970
  ${useHostExternalPadding(TextFieldClass.cssVarList)}
1970
1971
  ${resetInputOverrides('vaadin-text-field', TextFieldClass.cssVarList)}
@@ -2198,6 +2199,7 @@ const PasswordClass = compose(
2198
2199
  display: inline-block;
2199
2200
  max-width: 100%;
2200
2201
  min-width: 10em;
2202
+ box-sizing: border-box;
2201
2203
  }
2202
2204
  ${useHostExternalPadding(PasswordClass.cssVarList)}
2203
2205
  ${resetInputCursor('vaadin-password-field')}
@@ -2367,7 +2369,8 @@ const EmailFieldClass = compose(
2367
2369
  max-width: 100%;
2368
2370
  padding: calc(var(${EmailFieldClass.cssVarList.inputOutlineWidth}) + var(${
2369
2371
  EmailFieldClass.cssVarList.inputOutlineOffset
2370
- }))
2372
+ }));
2373
+ box-sizing: border-box;
2371
2374
  }
2372
2375
  ${useHostExternalPadding(EmailFieldClass.cssVarList)}
2373
2376
  ${resetInputOverrides('vaadin-email-field', EmailFieldClass.cssVarList)}
@@ -2469,6 +2472,7 @@ const TextAreaClass = compose(
2469
2472
  :host {
2470
2473
  display: inline-block;
2471
2474
  max-width: 100%;
2475
+ box-sizing: border-box;
2472
2476
  }
2473
2477
  textarea {
2474
2478
  height: 100%;
@@ -2490,7 +2494,7 @@ const vars$k = TextAreaClass.cssVarList;
2490
2494
  const textArea = {
2491
2495
  [vars$k.hostWidth]: refs.width,
2492
2496
  [vars$k.hostMinWidth]: refs.minWidth,
2493
- [vars$k.fontSize]: globalRefs$a.typography.body2.size,
2497
+ [vars$k.fontSize]: refs.fontSize,
2494
2498
  [vars$k.fontFamily]: refs.fontFamily,
2495
2499
  [vars$k.labelTextColor]: refs.labelTextColor,
2496
2500
  [vars$k.labelRequiredIndicator]: refs.requiredIndicator,