@eturnity/eturnity_reusable_components 1.2.16-QA03-23092022.2 → 1.2.16-QA03-23092022.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.16-QA03-23092022.2",
3
+ "version": "1.2.16-QA03-23092022.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -70,11 +70,11 @@ const iconAttrs = { isActive: Boolean, size: String, borderColor: String }
70
70
  const IconWrapper = styled('div', iconAttrs)`
71
71
  position: relative;
72
72
  top: 1px;
73
- height: ${(props) => props.size};
73
+ height: ${(props) => props.size}px;
74
74
  `
75
75
  const IconImg = styled('div', iconAttrs)`
76
76
  cursor: pointer;
77
- height: ${(props) => props.size};
77
+ height: ${(props) => props.size}px;
78
78
  `
79
79
 
80
80
  const ComponentWrapper = styled.div`
@@ -100,7 +100,7 @@ export default {
100
100
  },
101
101
  size: {
102
102
  required: false,
103
- default: '14px'
103
+ default: '14'
104
104
  },
105
105
  alignText: {
106
106
  required: false,
@@ -8,7 +8,7 @@
8
8
  v-if="labelInfoText"
9
9
  :text="labelInfoText"
10
10
  borderColor="#ccc"
11
- size="14px"
11
+ size="14"
12
12
  :alignText="labelInfoAlign"
13
13
  />
14
14
  </label-wrapper>