@eturnity/eturnity_reusable_components 1.2.82 → 1.2.83

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.82",
3
+ "version": "1.2.83",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -287,8 +287,7 @@ export default {
287
287
  default: 'black'
288
288
  },
289
289
  backgroundColor: {
290
- required: false,
291
- default: 'white'
290
+ required: false
292
291
  },
293
292
  disabledBackgroundColor: {
294
293
  required: false,
@@ -176,7 +176,7 @@ const SelectButtonWrapperAttrs = {
176
176
  disabled: Boolean
177
177
  }
178
178
  const SelectButtonWrapper = styled('div', SelectButtonWrapperAttrs)`
179
- ${(props) => (props.disabled ? 'cursor: not-allowed' : '')};
179
+ ${(props) => (props.disabled ? 'cursor: not-allowed' : 'cursor: pointer')};
180
180
  `
181
181
 
182
182
  const selectButtonAttrs = {
@@ -192,7 +192,8 @@ const selectButton = styled('div', selectButtonAttrs)`
192
192
  position: relative;
193
193
  box-sizing: border-box;
194
194
  border-radius: 4px;
195
- padding: ${(props) => (props.isSearchBarVisible ? '0 10px 0 0' : '0px 10px')};
195
+ padding: ${(props) =>
196
+ props.isSearchBarVisible ? '0 10px 0 0' : '0px 10px 0 15px'};
196
197
  text-align: left;
197
198
  border-radius: 4px;
198
199
  min-height: 36px;