@eturnity/eturnity_reusable_components 1.2.25 → 1.2.26--EPDM-3834.1
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
|
@@ -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
|
|
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 = {
|
|
@@ -82,6 +82,10 @@ const TableContainer = styled('table', containerAttrs)`
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
.collective-row-toggle {
|
|
86
|
+
cursor: pointer !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
85
89
|
tbody {
|
|
86
90
|
tr {
|
|
87
91
|
&:hover {
|
|
@@ -139,7 +143,7 @@ const TableContainer = styled('table', containerAttrs)`
|
|
|
139
143
|
grid-template-columns: auto 1fr;
|
|
140
144
|
align-items: center;
|
|
141
145
|
grid-gap: 10px;
|
|
142
|
-
cursor: pointer;
|
|
146
|
+
cursor: ${(props) => (props.tableCursor ? props.tableCursor : 'pointer')};
|
|
143
147
|
}
|
|
144
148
|
|
|
145
149
|
.collective-box {
|
|
@@ -231,9 +235,7 @@ const TableContainer = styled('table', containerAttrs)`
|
|
|
231
235
|
.arrow-container {
|
|
232
236
|
display: table-cell;
|
|
233
237
|
vertical-align: middle;
|
|
234
|
-
|
|
235
|
-
text-align: -webkit-center; */
|
|
236
|
-
cursor: pointer;
|
|
238
|
+
cursor: ${(props) => (props.tableCursor ? props.tableCursor : 'pointer')};
|
|
237
239
|
border-bottom: 1px solid ${(props) => props.theme.colors.grey4};
|
|
238
240
|
}
|
|
239
241
|
|
|
@@ -371,8 +373,7 @@ export default {
|
|
|
371
373
|
default: null
|
|
372
374
|
},
|
|
373
375
|
tableCursor: {
|
|
374
|
-
required: false
|
|
375
|
-
default: 'auto'
|
|
376
|
+
required: false
|
|
376
377
|
}
|
|
377
378
|
}
|
|
378
379
|
}
|