@eturnity/eturnity_reusable_components 1.2.26-EPDM-3412.2 → 1.2.26-EPDM-3412.3
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
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
// />
|
|
50
50
|
import styled from 'vue-styled-components'
|
|
51
51
|
import InfoText from '../../infoText'
|
|
52
|
+
import ErrorMessage from '../../errorMessage'
|
|
52
53
|
|
|
53
54
|
const containerProps = { inputWidth: String }
|
|
54
55
|
const Container = styled('div', containerProps)`
|
|
@@ -109,13 +110,6 @@ const InputWrapper = styled('div', inputAttrs)`
|
|
|
109
110
|
: 'auto 1fr'};
|
|
110
111
|
`
|
|
111
112
|
|
|
112
|
-
const ErrorMessage = styled.div`
|
|
113
|
-
font-size: 14px;
|
|
114
|
-
color: ${(props) => props.theme.colors.red};
|
|
115
|
-
position: absolute;
|
|
116
|
-
top: calc(100% + 1px);
|
|
117
|
-
`
|
|
118
|
-
|
|
119
113
|
const labelAttrs = { fontSize: String }
|
|
120
114
|
const InputLabel = styled('div', labelAttrs)`
|
|
121
115
|
font-weight: bold;
|