bfg-common 1.5.8 → 1.5.10
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/assets/localization/local_be.json +2 -1
- package/assets/localization/local_en.json +2 -1
- package/assets/localization/local_hy.json +2 -1
- package/assets/localization/local_kk.json +2 -1
- package/assets/localization/local_ru.json +2 -1
- package/assets/localization/local_zh.json +2 -1
- package/components/common/modals/confirmation/Confirmation.vue +5 -1
- package/components/common/modals/confirmation/ConfirmationNew.vue +33 -2
- package/package.json +1 -1
|
@@ -2324,7 +2324,8 @@
|
|
|
2324
2324
|
"incorrectConfirmation": "Няправільнае пацверджанне. Калі ласка, увядзіце \" {0}\", каб працягнуць.",
|
|
2325
2325
|
"options": "Параметры",
|
|
2326
2326
|
"submitting": "Прадастаўленне",
|
|
2327
|
-
"inDevelopment": "У распрацоўцы"
|
|
2327
|
+
"inDevelopment": "У распрацоўцы",
|
|
2328
|
+
"move": "Пасунуць"
|
|
2328
2329
|
},
|
|
2329
2330
|
"auth": {
|
|
2330
2331
|
"welcomeTo": "Сардэчна запрашаем у",
|
|
@@ -2328,7 +2328,8 @@
|
|
|
2328
2328
|
"incorrectConfirmation": "Incorrect confirmation. Please type “{0}” to proceed.",
|
|
2329
2329
|
"options": "Options",
|
|
2330
2330
|
"submitting": "Submitting",
|
|
2331
|
-
"inDevelopment": "In development"
|
|
2331
|
+
"inDevelopment": "In development",
|
|
2332
|
+
"move": "Move"
|
|
2332
2333
|
},
|
|
2333
2334
|
"auth": {
|
|
2334
2335
|
"welcomeTo": "Welcome to",
|
|
@@ -2328,7 +2328,8 @@
|
|
|
2328
2328
|
"incorrectConfirmation": "Սխալ հաստատում: Շարունակելու համար խնդրում ենք մուտքագրել \" {0}\":",
|
|
2329
2329
|
"options": "Ընտրանքներ",
|
|
2330
2330
|
"submitting": "Տրամադրում",
|
|
2331
|
-
"inDevelopment": "Մշակման մեջ"
|
|
2331
|
+
"inDevelopment": "Մշակման մեջ",
|
|
2332
|
+
"move": "Տեղափոխել"
|
|
2332
2333
|
},
|
|
2333
2334
|
"auth": {
|
|
2334
2335
|
"welcomeTo": "Բարի գալուստ",
|
|
@@ -2327,7 +2327,8 @@
|
|
|
2327
2327
|
"incorrectConfirmation": "Қате растау. Жалғастыру үшін \"{0}\" теріңіз.",
|
|
2328
2328
|
"options": "Параметрлер",
|
|
2329
2329
|
"submitting": "Жіберу",
|
|
2330
|
-
"inDevelopment": "Даму"
|
|
2330
|
+
"inDevelopment": "Даму",
|
|
2331
|
+
"move": "Жылжыту"
|
|
2331
2332
|
},
|
|
2332
2333
|
"auth": {
|
|
2333
2334
|
"welcomeTo": "Қош келдіңіз",
|
|
@@ -2329,7 +2329,8 @@
|
|
|
2329
2329
|
"incorrectConfirmation": "Неверное подтверждение. Пожалуйста, введите “{0}”, чтобы продолжить.",
|
|
2330
2330
|
"options": "Параметры",
|
|
2331
2331
|
"submitting": "Предоставление",
|
|
2332
|
-
"inDevelopment": "В разработке"
|
|
2332
|
+
"inDevelopment": "В разработке",
|
|
2333
|
+
"move": "Подвинут"
|
|
2333
2334
|
},
|
|
2334
2335
|
"auth": {
|
|
2335
2336
|
"welcomeTo": "Добро пожаловать в",
|
|
@@ -7,7 +7,11 @@
|
|
|
7
7
|
:test-id="props.testId"
|
|
8
8
|
@hide-modal="emits('hide-modal')"
|
|
9
9
|
@confirm="emits('confirm')"
|
|
10
|
-
|
|
10
|
+
>
|
|
11
|
+
<template #otherContent>
|
|
12
|
+
<slot v-if="$slots.otherContent" name="otherContent" />
|
|
13
|
+
</template>
|
|
14
|
+
</common-modals-confirmation-new>
|
|
11
15
|
<common-modals-confirmation-old
|
|
12
16
|
v-else
|
|
13
17
|
:description="props.description"
|
|
@@ -7,7 +7,16 @@
|
|
|
7
7
|
:texts="modalTextsLocal"
|
|
8
8
|
@submit="onSubmit"
|
|
9
9
|
@hide="onHide"
|
|
10
|
-
|
|
10
|
+
>
|
|
11
|
+
<template #content>
|
|
12
|
+
<div class="confirm-modal__content">
|
|
13
|
+
<span>{{ props.headline }}</span>
|
|
14
|
+
<span>{{ props.description }}</span>
|
|
15
|
+
|
|
16
|
+
<slot v-if="$slots.otherContent" name="otherContent"></slot>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
</ui-popup>
|
|
11
20
|
</template>
|
|
12
21
|
|
|
13
22
|
<script setup lang="ts">
|
|
@@ -34,4 +43,26 @@ const onSubmit = (): void => {
|
|
|
34
43
|
}
|
|
35
44
|
</script>
|
|
36
45
|
|
|
37
|
-
<style scoped lang="scss"
|
|
46
|
+
<style scoped lang="scss">
|
|
47
|
+
.confirm-modal {
|
|
48
|
+
&__content {
|
|
49
|
+
padding: 16px 32px;
|
|
50
|
+
span {
|
|
51
|
+
display: block;
|
|
52
|
+
font-size: 14px;
|
|
53
|
+
font-weight: 400;
|
|
54
|
+
line-height: 16.94px;
|
|
55
|
+
text-align: center;
|
|
56
|
+
color: #9da6ad;
|
|
57
|
+
|
|
58
|
+
&:first-of-type {
|
|
59
|
+
font-size: 20px;
|
|
60
|
+
font-weight: 500;
|
|
61
|
+
line-height: 24.2px;
|
|
62
|
+
color: var(--modal-title);
|
|
63
|
+
margin-bottom: 8px;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
</style>
|