@eturnity/eturnity_reusable_components 6.46.5-EPDM-9162.0 → 6.46.5-EPDM-7690-9162.0
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,5 +1,5 @@
|
|
1
1
|
<template>
|
2
|
-
<page-container
|
2
|
+
<page-container>
|
3
3
|
<marker-container
|
4
4
|
v-if="markerData"
|
5
5
|
:backgroundColor="markerData.color"
|
@@ -19,7 +19,12 @@
|
|
19
19
|
size="10px"
|
20
20
|
:cursor="cursor"
|
21
21
|
/>
|
22
|
-
<span>
|
22
|
+
<span>
|
23
|
+
{{ markerData.translations[activeLanguage].name }}
|
24
|
+
<span v-if="!!date">
|
25
|
+
| {{ date }}
|
26
|
+
</span>
|
27
|
+
</span>
|
23
28
|
<dot-wrapper
|
24
29
|
v-if="editionAllowed"
|
25
30
|
class="dotContainer"
|
@@ -47,9 +52,6 @@
|
|
47
52
|
</edit-item>
|
48
53
|
</edit-container>
|
49
54
|
</marker-container>
|
50
|
-
<date v-if="!!date">
|
51
|
-
{{ date }}
|
52
|
-
</date>
|
53
55
|
<modal
|
54
56
|
:isOpen="deleteModalOpened"
|
55
57
|
@on-close="closeDeleteModal"
|
@@ -96,10 +98,7 @@ import DeleteIcon from '../deleteIcon'
|
|
96
98
|
import PageSubtitle from '../pageSubtitle'
|
97
99
|
import MainButton from '../buttons/mainButton'
|
98
100
|
|
99
|
-
const
|
100
|
-
withDate: Boolean
|
101
|
-
}
|
102
|
-
const PageContainer = styled('div', PageContainerAttrs)`
|
101
|
+
const PageContainer = styled.div`
|
103
102
|
display: flex;
|
104
103
|
align-items: center;
|
105
104
|
gap: 10px;
|
@@ -194,8 +193,6 @@ const IconContainer = styled.div`
|
|
194
193
|
line-height: 0;
|
195
194
|
`
|
196
195
|
|
197
|
-
const Date = styled.div``
|
198
|
-
|
199
196
|
export default {
|
200
197
|
name: "project-marker",
|
201
198
|
components: {
|
@@ -213,8 +210,7 @@ export default {
|
|
213
210
|
CtaContainer,
|
214
211
|
PageTitle,
|
215
212
|
PageSubtitle,
|
216
|
-
MainButton
|
217
|
-
Date
|
213
|
+
MainButton
|
218
214
|
},
|
219
215
|
props: {
|
220
216
|
markerData: {
|