@eturnity/eturnity_reusable_components 1.2.25 → 1.2.26--EPDM-3834.0

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.25",
3
+ "version": "1.2.26--EPDM-3834.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -63,9 +63,10 @@ const InputLabel = styled('div', labelAttrs)`
63
63
 
64
64
  const LabelWrapper = styled.div`
65
65
  display: inline-grid;
66
- grid-template-columns: auto 1fr;
66
+ grid-template-columns: auto auto;
67
67
  grid-gap: 12px;
68
68
  align-items: center;
69
+ justify-content: start;
69
70
  `
70
71
 
71
72
  const inputProps = {
@@ -139,7 +139,7 @@ const TableContainer = styled('table', containerAttrs)`
139
139
  grid-template-columns: auto 1fr;
140
140
  align-items: center;
141
141
  grid-gap: 10px;
142
- cursor: pointer;
142
+ cursor: ${(props) => (props.tableCursor ? props.tableCursor : 'pointer')};
143
143
  }
144
144
 
145
145
  .collective-box {
@@ -231,9 +231,7 @@ const TableContainer = styled('table', containerAttrs)`
231
231
  .arrow-container {
232
232
  display: table-cell;
233
233
  vertical-align: middle;
234
- /* text-align: center;
235
- text-align: -webkit-center; */
236
- cursor: pointer;
234
+ cursor: ${(props) => (props.tableCursor ? props.tableCursor : 'pointer')};
237
235
  border-bottom: 1px solid ${(props) => props.theme.colors.grey4};
238
236
  }
239
237
 
@@ -371,8 +369,7 @@ export default {
371
369
  default: null
372
370
  },
373
371
  tableCursor: {
374
- required: false,
375
- default: 'auto'
372
+ required: false
376
373
  }
377
374
  }
378
375
  }