@eturnity/eturnity_reusable_components 1.2.84 → 1.2.86-EPDM-7435

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.84",
3
+ "version": "1.2.86-EPDM-7435",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -332,7 +332,8 @@ export default {
332
332
  default: null
333
333
  },
334
334
  inputHeight: {
335
- required: false
335
+ required: false,
336
+ default: '40px'
336
337
  },
337
338
  value: {
338
339
  required: true,
@@ -193,7 +193,7 @@ const selectButton = styled('div', selectButtonAttrs)`
193
193
  box-sizing: border-box;
194
194
  border-radius: 4px;
195
195
  padding: ${(props) =>
196
- props.isSearchBarVisible ? '0 10px 0 0' : '0px 10px 0 15px'};
196
+ props.isSearchBarVisible ? '0' : '0px 0px 0 15px'};
197
197
  text-align: left;
198
198
  border-radius: 4px;
199
199
  min-height: 36px;
@@ -230,7 +230,6 @@ const selectDropdown = styled('div', selectDropdownAttrs)`
230
230
  z-index:${(props) => (props.isActive ? '2' : '1')};
231
231
  position:absolute;
232
232
  top:5px;
233
- padding:10px;
234
233
  border:1px solid ${(props) => props.theme.colors.grey4}
235
234
  border-radius:4px;
236
235
  display: flex;
@@ -332,6 +332,7 @@ const TableContainer = styled('table', containerAttrs)`
332
332
  font-size: 13px;
333
333
  padding: 5px 10px;
334
334
  background: #fff;
335
+ height: unset;
335
336
 
336
337
  &:focus {
337
338
  background: ${(props) => props.theme.colors.grey5};