@luscii-healthtech/web-ui 2.45.0 → 2.45.2

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.
@@ -3701,6 +3701,21 @@ function generateCustomStyles(hasError, isIE11) {
3701
3701
  flexGrow: isIE11 ? 0.5 : "initial"
3702
3702
  });
3703
3703
  },
3704
+ input: function input(baseStyles) {
3705
+ return _extends({}, baseStyles, {
3706
+ padding: 0
3707
+ });
3708
+ },
3709
+ multiValue: function multiValue(baseStyles) {
3710
+ return _extends({}, baseStyles, {
3711
+ lineHeight: isIE11 ? "25px" : "1rem"
3712
+ });
3713
+ },
3714
+ valueContainer: function valueContainer(baseStyles) {
3715
+ return _extends({}, baseStyles, {
3716
+ padding: ".5rem"
3717
+ });
3718
+ },
3704
3719
  control: function control(baseStyles, state) {
3705
3720
  var defaultBorderColor = state.isFocused ? "#045baa" : "#D1D5DB";
3706
3721
  var validatedBorderColor = hasError ? "#c53030" : defaultBorderColor;
@@ -3709,7 +3724,6 @@ function generateCustomStyles(hasError, isIE11) {
3709
3724
  return _extends({}, baseStyles, {
3710
3725
  fontSize: "14px",
3711
3726
  transition: "border 0.3s ease-in-out",
3712
- height: isIE11 ? "50px" : "2.75rem",
3713
3727
  // primary outline
3714
3728
  outline: validatedOutline,
3715
3729
  borderColor: validatedBorderColor,