@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.
- package/package.json +2 -3
- package/src/assets/svgIcons/collapse_all.svg +4 -0
- package/src/assets/svgIcons/hybrid.svg +4 -0
- package/src/assets/svgIcons/module.svg +3 -0
- package/src/assets/svgIcons/move_down.svg +3 -0
- package/src/assets/svgIcons/move_up.svg +3 -0
- package/src/assets/svgIcons/optimizer.svg +6 -0
- package/src/assets/svgIcons/string_design.svg +5 -0
- package/src/components/buttons/buttonIcon/index.vue +3 -1
- package/src/components/buttons/mainButton/index.vue +10 -0
- package/src/components/icon/index.vue +1 -0
- package/src/components/infoText/index.vue +289 -125
- package/src/components/infoText/placeholder.vue +225 -0
- package/src/components/inputs/inputNumber/index.vue +185 -11
- package/src/components/inputs/inputText/index.vue +23 -2
- package/src/components/inputs/radioButton/index.vue +27 -6
- package/src/components/inputs/radioButton/radioButton.spec.js +99 -62
- package/src/components/inputs/select/index.vue +69 -21
- package/src/components/inputs/select/option/index.vue +11 -2
- package/src/components/markerItem/index.vue +8 -1
- package/src/components/spinner/index.vue +11 -0
- package/src/components/stringDesign/DropdownMenu/index.vue +711 -0
- package/src/components/tables/mainTable/index.vue +4 -12
@@ -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
|
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
|
-
|
82
|
-
|
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,
|