@eturnity/eturnity_reusable_components 1.2.19-EPDM-5295.1 → 1.2.19-EPDM-5295.2
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
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
>
|
|
33
33
|
<edit-item @click.native="deleteModalOpened = !deleteModalOpened">
|
|
34
34
|
<delete-icon />
|
|
35
|
-
<div>{{ gettext('Delete') }}</div>
|
|
35
|
+
<div>{{ $gettext('Delete') }}</div>
|
|
36
36
|
</edit-item>
|
|
37
37
|
<edit-item @click.native="onEditClick">
|
|
38
38
|
<icon-container>
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
size="14px"
|
|
42
42
|
/>
|
|
43
43
|
</icon-container>
|
|
44
|
-
<div>{{ gettext('Edit') }}</div>
|
|
44
|
+
<div>{{ $gettext('Edit') }}</div>
|
|
45
45
|
</edit-item>
|
|
46
46
|
</edit-container>
|
|
47
47
|
</marker-container>
|
|
@@ -54,17 +54,17 @@
|
|
|
54
54
|
:preventOutsideClose="true"
|
|
55
55
|
>
|
|
56
56
|
<modal-container>
|
|
57
|
-
<page-title :text="gettext('delete_confirm_text')" />
|
|
58
|
-
<page-subtitle :text="gettext('delete_confirm_subtext')" />
|
|
57
|
+
<page-title :text="$gettext('delete_confirm_text')" />
|
|
58
|
+
<page-subtitle :text="$gettext('delete_confirm_subtext')" />
|
|
59
59
|
<cta-container>
|
|
60
60
|
<main-button
|
|
61
61
|
@click.native="onDelete"
|
|
62
|
-
:text="gettext('Delete')"
|
|
62
|
+
:text="$gettext('Delete')"
|
|
63
63
|
/>
|
|
64
64
|
<main-button
|
|
65
65
|
type="cancel"
|
|
66
66
|
@click.native="closeDeleteModal"
|
|
67
|
-
:text="gettext('Cancel')"
|
|
67
|
+
:text="$gettext('Cancel')"
|
|
68
68
|
/>
|
|
69
69
|
</cta-container>
|
|
70
70
|
</modal-container>
|
|
@@ -80,18 +80,19 @@
|
|
|
80
80
|
// :markerData="{"choice":"sold","translations":{"en-us":{"name":"Sold"}}","color":"#000"}"
|
|
81
81
|
// :isLimitedPartner="false"
|
|
82
82
|
// :isGroupSupport="false"
|
|
83
|
+
// :isEditable='false'
|
|
83
84
|
// :date="'23.07.2022'"
|
|
84
85
|
// @editHandler="onMarkerEdit($event)"
|
|
85
86
|
// @deleteHandler="onMarkerDelete($event)"
|
|
86
87
|
// />
|
|
87
88
|
|
|
88
|
-
import Icon from "@/components/icon"
|
|
89
89
|
import styled from "vue-styled-components"
|
|
90
|
-
import
|
|
91
|
-
import
|
|
92
|
-
import
|
|
93
|
-
import
|
|
94
|
-
import
|
|
90
|
+
import Icon from "@eturnity/eturnity_reusable_components/src/components/icon"
|
|
91
|
+
import Modal from '@eturnity/eturnity_reusable_components/src/components/modals/modal'
|
|
92
|
+
import PageTitle from '@eturnity/eturnity_reusable_components/src/components/pageTitle'
|
|
93
|
+
import DeleteIcon from '@eturnity/eturnity_reusable_components/src/components/deleteIcon'
|
|
94
|
+
import PageSubtitle from '@eturnity/eturnity_reusable_components/src/components/pageSubtitle'
|
|
95
|
+
import MainButton from '@eturnity/eturnity_reusable_components/src/components/buttons/mainButton'
|
|
95
96
|
|
|
96
97
|
const PageContainerAttrs = {
|
|
97
98
|
withDate: Boolean
|
|
@@ -220,9 +221,6 @@ export default {
|
|
|
220
221
|
activeLanguage: {
|
|
221
222
|
required: true
|
|
222
223
|
},
|
|
223
|
-
gettext: {
|
|
224
|
-
required: true
|
|
225
|
-
},
|
|
226
224
|
date: {
|
|
227
225
|
required: false,
|
|
228
226
|
default: null
|