@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
@@ -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
|
-
|
40
|
+
ActionModal,
|
41
|
+
Button
|
62
42
|
},
|
63
43
|
methods: {
|
64
44
|
closeModal() {
|