@eturnity/eturnity_reusable_components 7.32.0 → 7.32.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.32.0",
3
+ "version": "7.32.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -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 draggable from 'vuedraggable'
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
- 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
- `
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
- draggable,
473
+ Draggable,
474
474
  Icon,
475
475
  DragContainer,
476
476
  InputNumber,
@@ -11,7 +11,7 @@
11
11
  :no-cursor="noCursor"
12
12
  :size="size"
13
13
  >
14
- <Icon
14
+ <RCIcon
15
15
  :animation="isLoading ? 'fade 3s infinite' : 'none'"
16
16
  :color="iconColor"
17
17
  :disabled="disabled"
@@ -77,7 +77,7 @@
77
77
  import RCIcon from '../icon'
78
78
  import theme from '@/assets/theme.js'
79
79
 
80
- const paginationWrapper = styled.nav`
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 paginationLink = styled.div`
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 arrowText = styled.div`
105
+ const ArrowText = styled.div`
106
106
  color: ${(props) => props.theme.colors.brightBlue};
107
107
  `
108
- const arrowIconContainer = styled.div`
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
- paginationWrapper,
117
- paginationLink,
116
+ PaginationWrapper,
117
+ PaginationLink,
118
118
  RCIcon,
119
- arrowText,
120
- arrowIconContainer,
119
+ ArrowText,
120
+ ArrowIconContainer,
121
121
  },
122
122
  props: ['fetchPage', 'currentPage', 'paginationParams'],
123
123
  computed: {