@eturnity/eturnity_reusable_components 7.22.4-EPDM-10461.3 → 7.22.4-EPDM-10461.4

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.22.4-EPDM-10461.3",
3
+ "version": "7.22.4-EPDM-10461.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -15,7 +15,6 @@
15
15
  </template>
16
16
  <script>
17
17
  import styled from 'vue3-styled-components'
18
- import { mapActions, mapState } from 'vuex'
19
18
  import Modal from '../modal'
20
19
  const modalContainer = styled.div`
21
20
  width: 450px;
@@ -20,45 +20,25 @@
20
20
 
21
21
  import styled from 'vue3-styled-components'
22
22
  import ActionModal from '../actionModal'
23
-
23
+ import Button from '../../buttons/mainButton'
24
24
  const modalContainer = styled.div`
25
25
  width: 450px;
26
26
  min-height: 205px;
27
27
  padding: 40px 40px 30px 40px;
28
28
  `
29
- const modalTitle = styled.div`
30
- color: ${(props) => props.theme.colors.black};
31
- font-family: ${(props) => props.theme.fonts.mainFont};
32
- font-size: 18px;
33
- font-style: normal;
34
- font-weight: 700;
35
- line-height: 120%;
36
- text-transform: uppercase;
37
- `
38
29
  const buttonContainer = styled.div`
39
30
  display: inline-flex;
40
31
  align-items: flex-start;
41
32
  gap: 20px;
42
33
  `
43
- const textContainer = styled.div`
44
- color: ${(props) => props.theme.colors.black};
45
- font-family: ${(props) => props.theme.fonts.mainFont};
46
- font-size: 13px;
47
- font-style: normal;
48
- font-weight: 400;
49
- line-height: normal;
50
- padding: 30px 0px;
51
- white-space: pre-wrap;
52
- `
53
34
  export default {
54
35
  name: 'InfoModal',
55
36
  props: ['isOpen'],
56
37
  components: {
57
- Modal,
58
38
  modalContainer,
59
- modalTitle,
60
39
  buttonContainer,
61
- textContainer
40
+ ActionModal,
41
+ Button
62
42
  },
63
43
  methods: {
64
44
  closeModal() {
@@ -119,7 +119,7 @@ const ModalContainer = styled.div`
119
119
  `
120
120
 
121
121
  export default {
122
- name: 'modal',
122
+ name: 'Modal',
123
123
  components: {
124
124
  PageWrapper,
125
125
  ModalContainer,