@eturnity/eturnity_reusable_components 7.32.0-EPDM-10528.0 → 7.32.1-EPDM-11226.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
@@ -295,24 +295,24 @@
|
|
295
295
|
import InputNumber from '../inputs/inputNumber'
|
296
296
|
import MainButton from '../buttons/mainButton'
|
297
297
|
import Checkbox from '../inputs/checkbox'
|
298
|
-
import
|
298
|
+
import Draggable from 'vuedraggable'
|
299
299
|
import Icon from '../icon'
|
300
300
|
import DeleteIcon from '../deleteIcon'
|
301
301
|
import { datePickerLang } from '../../helpers/translateLang'
|
302
302
|
import theme from '@/assets/theme.js'
|
303
303
|
import VueDatePicker from '@vuepic/vue-datepicker'
|
304
304
|
|
305
|
-
const ContainerWrapper = styled.div`
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
`
|
305
|
+
const ContainerWrapper = styled.div`
|
306
|
+
position: absolute;
|
307
|
+
margin-top: 4px;
|
308
|
+
background-color: ${(props) => props.theme.colors.white};
|
309
|
+
min-width: 100%;
|
310
|
+
width: max-content;
|
311
|
+
border: 1px solid ${(props) => props.theme.colors.grey4};
|
312
|
+
border-radius: 4px;
|
313
|
+
z-index: 99999;
|
314
|
+
font-size: 13px;
|
315
|
+
`
|
316
316
|
|
317
317
|
const ColAttrs = { numCols: Number, hasActiveView: Boolean }
|
318
318
|
const ColumnWrapper = styled('div', ColAttrs)`
|
@@ -470,7 +470,7 @@ const ContainerWrapper = styled.div`
|
|
470
470
|
Checkbox,
|
471
471
|
RowWrapper,
|
472
472
|
DropdownCheckboxContainer,
|
473
|
-
|
473
|
+
Draggable,
|
474
474
|
Icon,
|
475
475
|
DragContainer,
|
476
476
|
InputNumber,
|
@@ -77,7 +77,7 @@
|
|
77
77
|
import RCIcon from '../icon'
|
78
78
|
import theme from '@/assets/theme.js'
|
79
79
|
|
80
|
-
const
|
80
|
+
const PaginationWrapper = styled.nav`
|
81
81
|
color: ${(props) => props.theme.colors.brightBlue};
|
82
82
|
font-size: 13px;
|
83
83
|
display: flex;
|
@@ -85,7 +85,7 @@
|
|
85
85
|
justify-content: flex-end;
|
86
86
|
align-items: center;
|
87
87
|
`
|
88
|
-
const
|
88
|
+
const PaginationLink = styled.div`
|
89
89
|
display: flex;
|
90
90
|
padding: 0px 5px;
|
91
91
|
margin: 0 2px;
|
@@ -102,10 +102,10 @@
|
|
102
102
|
border-radius: 4px;
|
103
103
|
}
|
104
104
|
`
|
105
|
-
const
|
105
|
+
const ArrowText = styled.div`
|
106
106
|
color: ${(props) => props.theme.colors.brightBlue};
|
107
107
|
`
|
108
|
-
const
|
108
|
+
const ArrowIconContainer = styled.div`
|
109
109
|
margin: 0 10px;
|
110
110
|
display: flex;
|
111
111
|
align-items: center;
|
@@ -113,11 +113,11 @@
|
|
113
113
|
export default {
|
114
114
|
name: 'PaginationComponent',
|
115
115
|
components: {
|
116
|
-
|
117
|
-
|
116
|
+
PaginationWrapper,
|
117
|
+
PaginationLink,
|
118
118
|
RCIcon,
|
119
|
-
|
120
|
-
|
119
|
+
ArrowText,
|
120
|
+
ArrowIconContainer,
|
121
121
|
},
|
122
122
|
props: ['fetchPage', 'currentPage', 'paginationParams'],
|
123
123
|
computed: {
|