@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.2.26-EPDM-3412.2",
3
+ "version": "1.2.26-EPDM-3412.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -27,7 +27,7 @@ const TextOverlay = styled.div`
27
27
  font-weight: 400;
28
28
  border-radius: 4px;
29
29
  font-family: 'Lato-Bold', Arial;
30
- z-index: 10;
30
+ z-index: 999;
31
31
  color: ${(props) => props.theme.colors.white};
32
32
 
33
33
  :before {
@@ -25,6 +25,7 @@
25
25
  // :value="companyName"
26
26
  // :disabled="true"
27
27
  // inputWidth="250px"
28
+ // @on-change="function($event)"
28
29
  // />
29
30
  import styled from 'vue-styled-components'
30
31
 
@@ -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;