@eturnity/eturnity_reusable_components 7.30.3-EPDM-10576.2 → 7.30.3-EPDM-10576.3

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.3-EPDM-10576.2",
3
+ "version": "7.30.3-EPDM-10576.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -328,6 +328,7 @@
328
328
  position: absolute;
329
329
  margin-top: 4px;
330
330
  max-height: 70vh;
331
+ overflow-y: auto;
331
332
  background-color: ${(props) => props.theme.colors.white};
332
333
  min-width: 100%;
333
334
  width: max-content;
@@ -340,7 +341,7 @@
340
341
  const ColAttrs = { numCols: Number, hasActiveView: Boolean }
341
342
  const ColumnWrapper = styled('div', ColAttrs)`
342
343
  display: grid;
343
- max-height: calc(70vh - 50px);
344
+ max-height: 50vh;
344
345
  overflow-y: auto;
345
346
  grid-template-columns: repeat(${(props) => props.numCols}, auto);
346
347
 
@@ -92,7 +92,7 @@
92
92
  mounted() {
93
93
  document.addEventListener('click', this.clickOutside)
94
94
  },
95
- beforeDestroy() {
95
+ beforeUnmount() {
96
96
  document.removeEventListener('click', this.clickOutside)
97
97
  },
98
98
  methods: {