@eturnity/eturnity_reusable_components 1.2.26-EPDM-3412.4 → 1.2.26-EPDM-3412.5
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
package/src/assets/theme.js
CHANGED
|
@@ -133,7 +133,9 @@ const InputContainer = styled('input', inputProps)`
|
|
|
133
133
|
font-size: ${(props) => (props.fontSize ? props.fontSize : '13px')};
|
|
134
134
|
color: ${(props) =>
|
|
135
135
|
props.isError
|
|
136
|
-
? props.theme.colors.
|
|
136
|
+
? props.theme.colors.grey6
|
|
137
|
+
: props.isDisabled
|
|
138
|
+
? props.theme.colors.grey2
|
|
137
139
|
: props.fontColor
|
|
138
140
|
? props.fontColor + ' !important'
|
|
139
141
|
: props.theme.colors.black};
|
|
@@ -217,8 +219,9 @@ const LabelWrapper = styled.div`
|
|
|
217
219
|
`
|
|
218
220
|
|
|
219
221
|
const LabelText = styled.div`
|
|
220
|
-
font-weight: bold;
|
|
221
222
|
font-size: 13px;
|
|
223
|
+
color: ${(props) => props.theme.colors.eturnityGrey};
|
|
224
|
+
font-weight: 700;
|
|
222
225
|
`
|
|
223
226
|
|
|
224
227
|
export default {
|
|
@@ -62,8 +62,9 @@ const Container = styled.div`
|
|
|
62
62
|
|
|
63
63
|
const labelAttrs = { fontSize: String }
|
|
64
64
|
const InputLabel = styled('div', labelAttrs)`
|
|
65
|
-
|
|
65
|
+
color: ${(props) => props.theme.colors.eturnityGrey};
|
|
66
66
|
font-size: ${(props) => (props.fontSize ? props.fontSize : '13px')};
|
|
67
|
+
font-weight: 700;
|
|
67
68
|
`
|
|
68
69
|
|
|
69
70
|
const LabelWrapper = styled.div`
|
|
@@ -110,7 +111,7 @@ const InputContainer = styled('input', inputProps)`
|
|
|
110
111
|
font-size: ${(props) => (props.fontSize ? props.fontSize : '16px')};
|
|
111
112
|
color: ${(props) =>
|
|
112
113
|
props.isError
|
|
113
|
-
? props.theme.colors.
|
|
114
|
+
? props.theme.colors.grey6
|
|
114
115
|
: props.isDisabled
|
|
115
116
|
? props.theme.colors.grey2
|
|
116
117
|
: props.theme.colors.black};
|