@eturnity/eturnity_reusable_components 7.30.2 → 7.30.3-EPDM-10576.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "7.30.2",
3
+ "version": "7.30.3-EPDM-10576.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -299,6 +299,7 @@ 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;
302
303
  background-color: ${(props) => props.theme.colors.white};
303
304
  min-width: 100%;
304
305
  width: max-content;
@@ -311,6 +312,8 @@ const ContainerWrapper = styled.div`
311
312
  const ColAttrs = { numCols: Number, hasActiveView: Boolean }
312
313
  const ColumnWrapper = styled('div', ColAttrs)`
313
314
  display: grid;
315
+ max-height: calc(70vh - 50px);
316
+ overflow-y: auto;
314
317
  grid-template-columns: repeat(${(props) => props.numCols}, auto);
315
318
 
316
319
  ${({ hasActiveView, theme }) =>
@@ -595,7 +598,11 @@ export default {
595
598
  return foundItem ? foundItem.text : value ? value : filter.selectedText
596
599
  },
597
600
  isMultipleSelector(type) {
598
- return type === 'multi_select_integer' || type === 'multi_select_string'
601
+ return (
602
+ type === 'multi_select_integer' ||
603
+ type === 'multi_select_string' ||
604
+ type === 'boolean'
605
+ )
599
606
  },
600
607
  isRangeSelector(type) {
601
608
  return type === 'integer_range' || type === 'number_range'
@@ -19,7 +19,7 @@
19
19
  :cellPaddings="cellPaddings"
20
20
  :tableCursor="tableCursor"
21
21
  @mouseover="hasAimHover ? setHovers($event) : null"
22
- @mouseleave="hasAimHover ? removeHoverClass : null"
22
+ @mouseleave="hasAimHover ? removeHoverClass() : null"
23
23
  >
24
24
  <slot />
25
25
  </table-container>