@eturnity/eturnity_reusable_components 1.2.39-EPDM-5626.1 → 1.2.39-EPDM-5626.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.2.39-EPDM-5626.1",
3
+ "version": "1.2.39-EPDM-5626.2",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -74,7 +74,7 @@ const InputLabel = styled('div', labelAttrs)`
74
74
  };
75
75
 
76
76
  font-size: ${(props) => (props.fontSize ? props.fontSize : '13px')};
77
- font-family: 'Lato-Bold',Arial;
77
+ font-family: 'Lato-Bold', Arial;
78
78
  `
79
79
 
80
80
  const LabelWrapper = styled.div`
@@ -133,7 +133,7 @@ const InputContainer = styled('input', inputProps)`
133
133
  : props.fontColor
134
134
  ? props.fontColor + ' !important'
135
135
  : props.theme.colors.black};
136
-
136
+
137
137
  width: ${(props) => (props.inputWidth ? props.inputWidth : '100%')};
138
138
  min-width: ${(props) => (props.minWidth ? props.minWidth : 'unset')};
139
139
  max-height: ${(props) => props.inputHeight};
@@ -141,7 +141,7 @@ const InputContainer = styled('input', inputProps)`
141
141
  font-weight: 400;
142
142
  cursor: ${(props) => (props.isDisabled ? 'not-allowed' : 'auto')};
143
143
  background-color: ${(props) =>
144
- props.isDisabled ? props.theme.colors.grey5 :
144
+ props.isDisabled ? props.theme.colors.grey5 :
145
145
  props.backgroundColor ? props.backgroundColor+' !important' :
146
146
  props.theme.colors.white};
147
147
  &::placeholder {