@eturnity/eturnity_reusable_components 7.30.3-EPDM-10576.1 → 7.30.3-EPDM-10926.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
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg width="16" height="16" viewBox="12 12 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 13L27 16.8175L26.0477 18.4379L20 15.1397L13.9523 18.4379L13 16.8175L20 13Z" fill="#263238"/>
|
3
|
+
<path d="M17.1006 19.1906L20.0001 17.6078L22.8996 19.1906" stroke="#263238" stroke-width="2"/>
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 21.5621L22.6508 23.0078L21.6985 24.6282L20 23.7019L18.3015 24.6282L17.3492 23.0078L20 21.5621ZM16.1269 25.8141L13.9523 27L13 25.3797L15.1746 24.1937L16.1269 25.8141ZM26.0477 27L23.8731 25.8141L24.8254 24.1937L27 25.3797L26.0477 27Z" fill="#263238"/>
|
5
|
+
<path d="M20.9662 22.9146H19.0332L19.0332 18.2928H20.9662L20.9662 22.9146Z" fill="#263238"/>
|
6
|
+
</svg>
|
@@ -299,7 +299,6 @@ import VueDatePicker from '@vuepic/vue-datepicker'
|
|
299
299
|
const ContainerWrapper = styled.div`
|
300
300
|
position: absolute;
|
301
301
|
margin-top: 4px;
|
302
|
-
max-height: 70vh;
|
303
302
|
background-color: ${(props) => props.theme.colors.white};
|
304
303
|
min-width: 100%;
|
305
304
|
width: max-content;
|
@@ -312,8 +311,6 @@ const ContainerWrapper = styled.div`
|
|
312
311
|
const ColAttrs = { numCols: Number, hasActiveView: Boolean }
|
313
312
|
const ColumnWrapper = styled('div', ColAttrs)`
|
314
313
|
display: grid;
|
315
|
-
max-height: calc(70vh - 50px);
|
316
|
-
overflow-y: auto;
|
317
314
|
grid-template-columns: repeat(${(props) => props.numCols}, auto);
|
318
315
|
|
319
316
|
${({ hasActiveView, theme }) =>
|
@@ -598,11 +595,7 @@ export default {
|
|
598
595
|
return foundItem ? foundItem.text : value ? value : filter.selectedText
|
599
596
|
},
|
600
597
|
isMultipleSelector(type) {
|
601
|
-
return
|
602
|
-
type === 'multi_select_integer' ||
|
603
|
-
type === 'multi_select_string' ||
|
604
|
-
type === 'boolean'
|
605
|
-
)
|
598
|
+
return type === 'multi_select_integer' || type === 'multi_select_string'
|
606
599
|
},
|
607
600
|
isRangeSelector(type) {
|
608
601
|
return type === 'integer_range' || type === 'number_range'
|