@eturnity/eturnity_reusable_components 8.7.4--EPDM-12729.4 → 8.7.4--EPDM-12729.5

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "8.7.4--EPDM-12729.4",
3
+ "version": "8.7.4--EPDM-12729.5",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -3,7 +3,6 @@
3
3
  <ButtonWrapper
4
4
  :app-theme="appTheme"
5
5
  :custom-color="customColor"
6
- :height="height"
7
6
  :is-active="isActive"
8
7
  :is-disabled="isDisabled"
9
8
  :min-width="minWidth"
@@ -45,7 +44,6 @@
45
44
  isDisabled: Boolean,
46
45
  minWidth: String,
47
46
  customColor: String,
48
- height: String,
49
47
  appTheme: String,
50
48
  isActive: Boolean,
51
49
  }
@@ -69,7 +67,6 @@
69
67
  border-radius: 4px;
70
68
  overflow: hidden;
71
69
  min-width: ${(props) => (props.minWidth ? props.minWidth : 'initial')};
72
- height: ${(props) => props.height};
73
70
 
74
71
  &:hover {
75
72
  opacity: ${(props) => (props.isDisabled ? '1' : '0.8')};
@@ -91,7 +88,7 @@
91
88
  display: flex;
92
89
  align-items: center;
93
90
  justify-content: center;
94
- padding: 0 14px;
91
+ padding: 5px 10px;
95
92
  `
96
93
 
97
94
  const IconContainerAttrs = {
@@ -103,6 +100,7 @@
103
100
  justify-items: center;
104
101
  width: ${(props) => props.width};
105
102
  background: ${(props) => props.theme.colors.white + '1a'};
103
+ padding: 5px;
106
104
  `
107
105
 
108
106
  export default {
@@ -145,12 +143,7 @@
145
143
  },
146
144
  fontSize: {
147
145
  required: false,
148
- default: '13px',
149
- type: String,
150
- },
151
- height: {
152
- required: false,
153
- default: '30px',
146
+ default: '14px',
154
147
  type: String,
155
148
  },
156
149
  appTheme: {