@eturnity/eturnity_reusable_components 7.48.1-EPDM-10964.0 → 7.48.1-EPDM-12680.12

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.
@@ -10,11 +10,7 @@
10
10
  ref="tableRef"
11
11
  :is-position-absolute="doesTableContainDraggables"
12
12
  >
13
- <TableWrapper
14
- class="main-table-wrapper"
15
- :full-width="fullWidth"
16
- :is-overflow-hidden="isOverflowHidden"
17
- >
13
+ <TableWrapper class="main-table-wrapper" :full-width="fullWidth">
18
14
  <SpinnerWrapper v-if="isLoading">
19
15
  <Spinner />
20
16
  </SpinnerWrapper>
@@ -74,12 +70,12 @@
74
70
  `}
75
71
  `
76
72
 
77
- const wrapperAttrs = { fullWidth: Boolean, isOverflowHidden: Boolean }
73
+ const wrapperAttrs = { fullWidth: Boolean }
78
74
  const TableWrapper = styled('div', wrapperAttrs)`
79
75
  width: ${(props) => (props.fullWidth ? '100%' : 'fit-content')};
80
76
  max-width: 100%;
81
- ${(props) =>
82
- props.isOverflowHidden ? 'overflow-x: auto; overflow-y: hidden;' : ''}
77
+ overflow-x: auto;
78
+ overflow-y: hidden;
83
79
 
84
80
  ::-webkit-scrollbar {
85
81
  height: 10px; //height of the whole scrollbar area
@@ -413,10 +409,6 @@
413
409
  required: false,
414
410
  default: false,
415
411
  },
416
- isOverflowHidden: {
417
- required: false,
418
- default: true,
419
- },
420
412
  titleText: {
421
413
  required: false,
422
414
  default: null,