@descope/web-components-ui 1.0.181 → 1.0.183

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.
@@ -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%;
@@ -3026,6 +3030,7 @@ const container = {
3026
3030
  [compVars$2.boxShadow]: 'none',
3027
3031
  [compVars$2.backgroundColor]: globalRefs$8.colors.surface.light,
3028
3032
  [compVars$2.color]: globalRefs$8.colors.surface.contrast,
3033
+ [compVars$2.borderRadius]: '0px',
3029
3034
 
3030
3035
  verticalPadding: {
3031
3036
  sm: { [compVars$2.verticalPadding]: '5px' },