adata-ui 3.1.48 → 3.1.49
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/dist/module.json +1 -1
- package/dist/runtime/components/Modal.vue.d.ts +1 -1
- package/dist/runtime/components/header/NavList.vue +20 -5
- package/dist/runtime/components/header/NavList.vue.d.ts +1 -0
- package/dist/runtime/components/header/ProductMenu.vue +163 -117
- package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +48 -18
- package/dist/runtime/i18n/i18n.config.d.ts +72 -0
- package/dist/runtime/icons/ai-assistant.vue +13 -0
- package/dist/runtime/icons/ai-assistant.vue.d.ts +2 -0
- package/dist/runtime/icons/check-sb.vue +7 -0
- package/dist/runtime/icons/check-sb.vue.d.ts +2 -0
- package/dist/runtime/icons/hot-line.vue +6 -0
- package/dist/runtime/icons/hot-line.vue.d.ts +2 -0
- package/dist/runtime/icons/sanctions.vue +8 -0
- package/dist/runtime/icons/sanctions.vue.d.ts +2 -0
- package/dist/runtime/icons/tasks.vue +10 -0
- package/dist/runtime/icons/tasks.vue.d.ts +2 -0
- package/dist/runtime/lang/en.js +24 -0
- package/dist/runtime/lang/kk.js +28 -4
- package/dist/runtime/lang/ru.d.ts +24 -0
- package/dist/runtime/lang/ru.js +24 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -23,8 +23,8 @@ type __VLS_Slots = {} & {
|
|
|
23
23
|
};
|
|
24
24
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {
|
|
25
25
|
name: string;
|
|
26
|
-
transition: boolean;
|
|
27
26
|
title: string;
|
|
27
|
+
transition: boolean;
|
|
28
28
|
overlay: boolean;
|
|
29
29
|
preventClose: boolean;
|
|
30
30
|
fullscreen: boolean;
|
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { PAGES } from "../../shared/constants/pages";
|
|
3
|
+
import { useColorMode, computed } from "#imports";
|
|
3
4
|
const props = defineProps({
|
|
4
5
|
id: { type: String, required: true },
|
|
5
6
|
icon: { type: Object, required: false },
|
|
6
7
|
title: { type: String, required: true },
|
|
8
|
+
link: { type: String, required: true },
|
|
7
9
|
badge: { type: Boolean, required: false },
|
|
8
10
|
to: { type: String, required: true },
|
|
9
11
|
navList: { type: Array, required: true },
|
|
10
12
|
currentModule: { type: Boolean, required: true }
|
|
11
13
|
});
|
|
14
|
+
const colorMode = useColorMode();
|
|
15
|
+
const isDark = computed(() => colorMode.value === "dark");
|
|
12
16
|
function isActive(itemPath) {
|
|
13
17
|
if (!props.currentModule) return false;
|
|
14
18
|
const currentUrl = window.location.href.split("/").filter((item) => !["kk", "en"].includes(item)).join("/");
|
|
@@ -52,8 +56,9 @@ function isActive(itemPath) {
|
|
|
52
56
|
class="flex flex-col gap-2"
|
|
53
57
|
:class="{ 'rounded-md bg-gray-50 p-2 dark:bg-gray-800': currentModule }"
|
|
54
58
|
>
|
|
55
|
-
<
|
|
56
|
-
class="flex items-center gap-2 pl-[10px]"
|
|
59
|
+
<nuxt-link-locale
|
|
60
|
+
class="flex items-center gap-2 pl-[10px] hover:text-blue-700 dark:hover:text-blue-500"
|
|
61
|
+
:to="link"
|
|
57
62
|
>
|
|
58
63
|
<p class="text-sm font-semibold dark:text-white">
|
|
59
64
|
{{ title }}
|
|
@@ -67,15 +72,15 @@ function isActive(itemPath) {
|
|
|
67
72
|
>
|
|
68
73
|
NEW
|
|
69
74
|
</adt-tag>
|
|
70
|
-
</
|
|
75
|
+
</nuxt-link-locale>
|
|
71
76
|
<ul class="flex flex-col gap-2">
|
|
72
77
|
<li
|
|
73
78
|
v-for="item in navList"
|
|
74
79
|
:key="item.title"
|
|
75
|
-
class="flex items-center gap-2 px-[10px] py-[6px]
|
|
80
|
+
class="flex w-full items-center gap-2 rounded-md px-[10px] py-[6px] hover:bg-blue-100 dark:hover:bg-gray-200/10 text-gray-600 dark:text-gray-200 hover:text-blue-700 dark:hover:text-blue-500"
|
|
76
81
|
:class="{ 'bg-blue-100 dark:bg-gray-200/10': isActive(item.to) }"
|
|
77
82
|
>
|
|
78
|
-
<div class="bg-gradient-blue
|
|
83
|
+
<div class="p-1 rounded-lg" :class="{ 'bg-gradient-blue-dark ': isDark, 'bg-gradient-blue-light': !isDark }">
|
|
79
84
|
<component
|
|
80
85
|
:is="item.icon"
|
|
81
86
|
class="size-[18px] text-white dark:text-gray-900"
|
|
@@ -100,3 +105,13 @@ function isActive(itemPath) {
|
|
|
100
105
|
</ul>
|
|
101
106
|
</div>
|
|
102
107
|
</template>
|
|
108
|
+
|
|
109
|
+
<style scoped>
|
|
110
|
+
.bg-gradient-blue-dark {
|
|
111
|
+
background: linear-gradient(236.46deg, #4FBDFF -2.39%, #1B98E2 79.1%);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.bg-gradient-blue-light {
|
|
115
|
+
background: linear-gradient(236.46deg, #479FFF -2.39%, #0070EB 79.1%);
|
|
116
|
+
}
|
|
117
|
+
</style>
|
|
@@ -25,6 +25,11 @@ import IArrowGraphUp from "#icons/arrow/arrow-graph-up.vue";
|
|
|
25
25
|
import IClipboardText from "#icons/clipboard-text.vue";
|
|
26
26
|
import IMedal from "#icons/medal.vue";
|
|
27
27
|
import ICompany from "#icons/company.vue";
|
|
28
|
+
import AAiAssistant from "#icons/ai-assistant.vue";
|
|
29
|
+
import ASanctions from "#icons/sanctions.vue";
|
|
30
|
+
import ATasks from "#icons/tasks.vue";
|
|
31
|
+
import ACheckSb from "#icons/check-sb.vue";
|
|
32
|
+
import AHotLine from "#icons/hot-line.vue";
|
|
28
33
|
import IHandshake from "#icons/handshake.vue";
|
|
29
34
|
import ISviazi from "#icons/sviazi.vue";
|
|
30
35
|
import ICalculator from "#icons/calculator.vue";
|
|
@@ -49,23 +54,10 @@ const mode = appConfig.adataUI.mode;
|
|
|
49
54
|
const pageUrl = useRequestURL();
|
|
50
55
|
defineEmits(["outerClick", "mouseOver"]);
|
|
51
56
|
const filteredItems = computed(() => [
|
|
52
|
-
{
|
|
53
|
-
key: "edo",
|
|
54
|
-
is_new: true,
|
|
55
|
-
name: t("header.products.edo.label"),
|
|
56
|
-
icon: IFiles,
|
|
57
|
-
items: [
|
|
58
|
-
{
|
|
59
|
-
title: t("header.products.edo.items.l.t"),
|
|
60
|
-
subtitle: t("header.products.edo.items.l.t"),
|
|
61
|
-
icon: IFiles,
|
|
62
|
-
to: `https://edo.${mode}.kz`
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
},
|
|
66
57
|
{
|
|
67
58
|
key: "pk",
|
|
68
59
|
name: t("header.products.counterparties.label"),
|
|
60
|
+
link: `https://pk.${mode}.kz` + PAGES.pk.main,
|
|
69
61
|
icon: IUsersThree,
|
|
70
62
|
to: `https://pk.${mode}.kz`,
|
|
71
63
|
items: [
|
|
@@ -116,25 +108,109 @@ const filteredItems = computed(() => [
|
|
|
116
108
|
]
|
|
117
109
|
},
|
|
118
110
|
{
|
|
119
|
-
key: "
|
|
111
|
+
key: "fines",
|
|
112
|
+
name: t("header.products.fines.label"),
|
|
113
|
+
link: `https://avto.${mode}.kz` + PAGES.fines.main,
|
|
114
|
+
icon: ICar,
|
|
115
|
+
items: [
|
|
116
|
+
{
|
|
117
|
+
title: t("header.products.fines.items.fines.title"),
|
|
118
|
+
subtitle: t("header.products.fines.items.fines.subtitle"),
|
|
119
|
+
icon: ICheckCircle,
|
|
120
|
+
to: `https://avto.${mode}.kz` + PAGES.fines.main
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
title: t("header.products.fines.items.auto.title"),
|
|
124
|
+
subtitle: t("header.products.fines.items.auto.subtitle"),
|
|
125
|
+
icon: ICar,
|
|
126
|
+
to: `https://avto.${mode}.kz` + PAGES.fines.avto
|
|
127
|
+
}
|
|
128
|
+
// {
|
|
129
|
+
// title: t('header.products.fines.items.wholesaleAuto.title'),
|
|
130
|
+
// subtitle: t('header.products.fines.items.wholesaleAuto.subtitle'),
|
|
131
|
+
// icon: ITruck,
|
|
132
|
+
// to: `https://avto.${mode}.kz` + PAGES.fines.bulk,
|
|
133
|
+
// },
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
key: "work",
|
|
138
|
+
name: t("header.products.jobs.label"),
|
|
139
|
+
link: `https://work.${mode}.kz`,
|
|
140
|
+
icon: IWorkBag,
|
|
141
|
+
items: [
|
|
142
|
+
{
|
|
143
|
+
title: t("header.products.jobs.items.vacancies.title"),
|
|
144
|
+
icon: IWorkBag,
|
|
145
|
+
subtitle: t("header.products.jobs.items.vacancies.subtitle"),
|
|
146
|
+
to: `https://work.${mode}.kz` + PAGES.work.vacancy
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
title: t("header.products.jobs.items.resume.title"),
|
|
150
|
+
subtitle: t("header.products.jobs.items.resume.subtitle"),
|
|
151
|
+
icon: IHdocument,
|
|
152
|
+
to: `https://work.${mode}.kz` + PAGES.work.summary
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
key: "fea",
|
|
120
158
|
is_new: true,
|
|
121
|
-
name: t("header.products.
|
|
122
|
-
|
|
159
|
+
name: t("header.products.fea.label"),
|
|
160
|
+
link: `https://tnved.${mode}.kz` + PAGES.fea.main,
|
|
161
|
+
icon: IGlobe,
|
|
123
162
|
items: [
|
|
124
163
|
{
|
|
125
|
-
title: t("header.products.
|
|
126
|
-
subtitle: t("header.products.
|
|
127
|
-
icon:
|
|
128
|
-
to: `https://
|
|
164
|
+
title: t("header.products.fea.items.i.t"),
|
|
165
|
+
subtitle: t("header.products.fea.items.i.st"),
|
|
166
|
+
icon: IHandshake,
|
|
167
|
+
to: `https://tnved.${mode}.kz` + PAGES.fea.t
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
title: t("header.products.fea.items.o.t"),
|
|
171
|
+
subtitle: t("header.products.fea.items.o.st"),
|
|
172
|
+
icon: ISviazi,
|
|
173
|
+
to: `https://tnved.${mode}.kz`
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
title: t("header.products.fea.items.cp.t"),
|
|
177
|
+
subtitle: t("header.products.fea.items.cp.st"),
|
|
178
|
+
icon: ITruck,
|
|
179
|
+
to: `https://tnved.${mode}.kz` + PAGES.fea.cp
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
title: t("header.products.fea.items.ca.t"),
|
|
183
|
+
subtitle: t("header.products.fea.items.ca.st"),
|
|
184
|
+
icon: ICalculator,
|
|
185
|
+
to: `https://tnved.${mode}.kz` + PAGES.fea.ca
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
title: t("header.products.fea.items.tr.t"),
|
|
189
|
+
subtitle: t("header.products.fea.items.tr.st"),
|
|
190
|
+
icon: IGlobe,
|
|
191
|
+
to: `https://tnved.${mode}.kz` + PAGES.fea.tr
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
title: t("header.products.fea.items.containers.t"),
|
|
195
|
+
subtitle: t("header.products.fea.items.containers.st"),
|
|
196
|
+
icon: IMapPaper,
|
|
197
|
+
to: `https://tnved.${mode}.kz` + PAGES.fea.containers
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
title: t("header.products.fea.items.importerMap.t"),
|
|
201
|
+
subtitle: t("header.products.fea.items.importerMap.st"),
|
|
202
|
+
icon: IMapPinRect,
|
|
203
|
+
to: `https://tnved.${mode}.kz` + PAGES.fea.importerMap
|
|
129
204
|
}
|
|
130
205
|
]
|
|
131
206
|
},
|
|
132
207
|
{
|
|
133
208
|
key: "tenders",
|
|
134
209
|
name: t("header.products.tenders.label"),
|
|
135
|
-
|
|
210
|
+
link: `https://zakupki.${mode}.kz`,
|
|
136
211
|
icon: IReceipt,
|
|
137
|
-
|
|
212
|
+
is_new: true,
|
|
213
|
+
to: `https://zakupki.${mode}.kz`,
|
|
138
214
|
items: [
|
|
139
215
|
{
|
|
140
216
|
title: t("header.products.tenders.items.customers.title"),
|
|
@@ -175,127 +251,94 @@ const filteredItems = computed(() => [
|
|
|
175
251
|
]
|
|
176
252
|
},
|
|
177
253
|
{
|
|
178
|
-
key: "
|
|
179
|
-
|
|
180
|
-
|
|
254
|
+
key: "edo",
|
|
255
|
+
is_new: true,
|
|
256
|
+
name: t("header.products.edo.label"),
|
|
257
|
+
link: `https://edo.${mode}.kz`,
|
|
258
|
+
icon: IFiles,
|
|
181
259
|
items: [
|
|
182
|
-
// {
|
|
183
|
-
// title: t('header.products.analytics.items.procurement.title'),
|
|
184
|
-
// subtitle: t('header.products.analytics.items.procurement.subtitle'),
|
|
185
|
-
// icon: IClipboardText,
|
|
186
|
-
// to: `https://analytics-new.${mode}.kz` + PAGES.analytics.analysis,
|
|
187
|
-
// },
|
|
188
260
|
{
|
|
189
|
-
title: t("header.products.
|
|
190
|
-
subtitle: t("header.products.
|
|
191
|
-
icon:
|
|
192
|
-
to: `https://
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
title: t("header.products.analytics.items.rate.title"),
|
|
196
|
-
subtitle: t("header.products.analytics.items.rate.subtitle"),
|
|
197
|
-
icon: IMedal,
|
|
198
|
-
to: `https://analytics-new.${mode}.kz` + PAGES.analytics.rating
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
title: t("header.products.analytics.items.subjects.title"),
|
|
202
|
-
subtitle: t("header.products.analytics.items.subjects.subtitle"),
|
|
203
|
-
icon: ICompany,
|
|
204
|
-
to: `https://analytics-new.${mode}.kz` + PAGES.analytics.business
|
|
261
|
+
title: t("header.products.edo.items.l.t"),
|
|
262
|
+
subtitle: t("header.products.edo.items.l.t"),
|
|
263
|
+
icon: IFiles,
|
|
264
|
+
to: `https://edo.${mode}.kz`
|
|
205
265
|
}
|
|
206
266
|
]
|
|
207
267
|
},
|
|
208
268
|
{
|
|
209
|
-
key: "
|
|
269
|
+
key: "compliance",
|
|
210
270
|
is_new: true,
|
|
211
|
-
name: t("header.products.
|
|
212
|
-
|
|
271
|
+
name: t("header.products.compliance.label"),
|
|
272
|
+
link: `https://ac.${mode}.kz/compliance`,
|
|
273
|
+
icon: IId,
|
|
213
274
|
items: [
|
|
214
275
|
{
|
|
215
|
-
title: t("header.products.
|
|
216
|
-
subtitle: t("header.products.
|
|
217
|
-
icon:
|
|
218
|
-
to: `https://
|
|
276
|
+
title: t("header.products.compliance.items.assistant.t"),
|
|
277
|
+
subtitle: t("header.products.compliance.items.assistant.st"),
|
|
278
|
+
icon: AAiAssistant,
|
|
279
|
+
to: `https://ac.${mode}.kz/main/assistant`
|
|
219
280
|
},
|
|
220
281
|
{
|
|
221
|
-
title: t("header.products.
|
|
222
|
-
subtitle: t("header.products.
|
|
223
|
-
icon:
|
|
224
|
-
to: `https://
|
|
282
|
+
title: t("header.products.compliance.items.inspection.t"),
|
|
283
|
+
subtitle: t("header.products.compliance.items.inspection.st"),
|
|
284
|
+
icon: ATasks,
|
|
285
|
+
to: `https://ac.${mode}.kz/main/inspection`
|
|
225
286
|
},
|
|
226
287
|
{
|
|
227
|
-
title: t("header.products.
|
|
228
|
-
subtitle: t("header.products.
|
|
229
|
-
icon:
|
|
230
|
-
to: `https://
|
|
288
|
+
title: t("header.products.compliance.items.hotline.t"),
|
|
289
|
+
subtitle: t("header.products.compliance.items.hotline.st"),
|
|
290
|
+
icon: AHotLine,
|
|
291
|
+
to: `https://ac.${mode}.kz/main/hotline`
|
|
231
292
|
},
|
|
232
293
|
{
|
|
233
|
-
title: t("header.products.
|
|
234
|
-
subtitle: t("header.products.
|
|
235
|
-
icon:
|
|
236
|
-
to: `https://
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
title: t("header.products.fea.items.tr.t"),
|
|
240
|
-
subtitle: t("header.products.fea.items.tr.st"),
|
|
241
|
-
icon: IGlobe,
|
|
242
|
-
to: `https://tnved.${mode}.kz` + PAGES.fea.tr
|
|
294
|
+
title: t("header.products.compliance.items.sanctions.t"),
|
|
295
|
+
subtitle: t("header.products.compliance.items.sanctions.st"),
|
|
296
|
+
icon: ASanctions,
|
|
297
|
+
to: `https://ac.${mode}.kz/main/sanctions`
|
|
243
298
|
},
|
|
244
299
|
{
|
|
245
|
-
title: t("header.products.
|
|
246
|
-
subtitle: t("header.products.
|
|
247
|
-
icon:
|
|
248
|
-
to: `https://
|
|
300
|
+
title: t("header.products.compliance.items.suppliers.t"),
|
|
301
|
+
subtitle: t("header.products.compliance.items.suppliers.st"),
|
|
302
|
+
icon: IProfile,
|
|
303
|
+
to: `https://ac.${mode}.kz/main/dossier/suppliers`
|
|
249
304
|
},
|
|
250
305
|
{
|
|
251
|
-
title: t("header.products.
|
|
252
|
-
subtitle: t("header.products.
|
|
253
|
-
icon:
|
|
254
|
-
to: `https://
|
|
306
|
+
title: t("header.products.compliance.items.sb.t"),
|
|
307
|
+
subtitle: t("header.products.compliance.items.sb.st"),
|
|
308
|
+
icon: ACheckSb,
|
|
309
|
+
to: `https://ac.${mode}.kz/main/sb`
|
|
255
310
|
}
|
|
256
311
|
]
|
|
257
312
|
},
|
|
258
313
|
{
|
|
259
|
-
key: "
|
|
260
|
-
name: t("header.products.
|
|
261
|
-
|
|
314
|
+
key: "analytics",
|
|
315
|
+
name: t("header.products.analytics.label"),
|
|
316
|
+
link: `https://analytics-new.${mode}.kz`,
|
|
317
|
+
icon: IArrowGraphUp,
|
|
262
318
|
items: [
|
|
263
|
-
{
|
|
264
|
-
title: t("header.products.fines.items.fines.title"),
|
|
265
|
-
subtitle: t("header.products.fines.items.fines.subtitle"),
|
|
266
|
-
icon: ICheckCircle,
|
|
267
|
-
to: `https://avto.${mode}.kz` + PAGES.fines.main
|
|
268
|
-
},
|
|
269
|
-
{
|
|
270
|
-
title: t("header.products.fines.items.auto.title"),
|
|
271
|
-
subtitle: t("header.products.fines.items.auto.subtitle"),
|
|
272
|
-
icon: ICar,
|
|
273
|
-
to: `https://avto.${mode}.kz` + PAGES.fines.avto
|
|
274
|
-
}
|
|
275
319
|
// {
|
|
276
|
-
// title: t('header.products.
|
|
277
|
-
// subtitle: t('header.products.
|
|
278
|
-
// icon:
|
|
279
|
-
// to: `https://
|
|
320
|
+
// title: t('header.products.analytics.items.procurement.title'),
|
|
321
|
+
// subtitle: t('header.products.analytics.items.procurement.subtitle'),
|
|
322
|
+
// icon: IClipboardText,
|
|
323
|
+
// to: `https://analytics-new.${mode}.kz` + PAGES.analytics.analysis,
|
|
280
324
|
// },
|
|
281
|
-
]
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
key: "work",
|
|
285
|
-
name: t("header.products.jobs.label"),
|
|
286
|
-
icon: IWorkBag,
|
|
287
|
-
items: [
|
|
288
325
|
{
|
|
289
|
-
title: t("header.products.
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
to: `https://
|
|
326
|
+
title: t("header.products.analytics.items.activity.title"),
|
|
327
|
+
subtitle: t("header.products.analytics.items.activity.subtitle"),
|
|
328
|
+
icon: IArrowGraphUp,
|
|
329
|
+
to: `https://analytics-new.${mode}.kz` + PAGES.analytics.index
|
|
293
330
|
},
|
|
294
331
|
{
|
|
295
|
-
title: t("header.products.
|
|
296
|
-
subtitle: t("header.products.
|
|
297
|
-
icon:
|
|
298
|
-
to: `https://
|
|
332
|
+
title: t("header.products.analytics.items.rate.title"),
|
|
333
|
+
subtitle: t("header.products.analytics.items.rate.subtitle"),
|
|
334
|
+
icon: IMedal,
|
|
335
|
+
to: `https://analytics-new.${mode}.kz` + PAGES.analytics.rating
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
title: t("header.products.analytics.items.subjects.title"),
|
|
339
|
+
subtitle: t("header.products.analytics.items.subjects.subtitle"),
|
|
340
|
+
icon: ICompany,
|
|
341
|
+
to: `https://analytics-new.${mode}.kz` + PAGES.analytics.business
|
|
299
342
|
}
|
|
300
343
|
]
|
|
301
344
|
}
|
|
@@ -321,11 +364,12 @@ function isCurrentModule(currentModule) {
|
|
|
321
364
|
<div class="flex gap-[10px] divide-x divide-gray-500/50">
|
|
322
365
|
<div class="flex flex-col gap-5 w-[290px]">
|
|
323
366
|
<nav-list
|
|
324
|
-
v-for="module in filteredItems.slice(0,
|
|
367
|
+
v-for="module in filteredItems.slice(0, 3)"
|
|
325
368
|
:id="module.key"
|
|
326
369
|
:key="module.key"
|
|
327
370
|
:current-module="pageUrl.hostname.startsWith(isCurrentModule(module.key))"
|
|
328
371
|
:title="module.name"
|
|
372
|
+
:link="module.link"
|
|
329
373
|
:nav-list="module.items"
|
|
330
374
|
:to="module.to"
|
|
331
375
|
:icon="module.icon"
|
|
@@ -334,11 +378,12 @@ function isCurrentModule(currentModule) {
|
|
|
334
378
|
</div>
|
|
335
379
|
<div class="flex flex-col gap-5 w-[290px] pl-[10px]">
|
|
336
380
|
<nav-list
|
|
337
|
-
v-for="module in filteredItems.slice(
|
|
381
|
+
v-for="module in filteredItems.slice(3, 5)"
|
|
338
382
|
:id="module.key"
|
|
339
383
|
:key="module.key"
|
|
340
384
|
:current-module="pageUrl.hostname.startsWith(isCurrentModule(module.key))"
|
|
341
385
|
:title="module.name"
|
|
386
|
+
:link="module.link"
|
|
342
387
|
:nav-list="module.items"
|
|
343
388
|
:to="module.to"
|
|
344
389
|
:icon="module.icon"
|
|
@@ -352,6 +397,7 @@ function isCurrentModule(currentModule) {
|
|
|
352
397
|
:key="module.key"
|
|
353
398
|
:current-module="pageUrl.hostname.startsWith(isCurrentModule(module.key))"
|
|
354
399
|
:title="module.name"
|
|
400
|
+
:link="module.link"
|
|
355
401
|
:nav-list="module.items"
|
|
356
402
|
:to="module.to"
|
|
357
403
|
:icon="module.icon"
|
|
@@ -31,42 +31,47 @@ import IAkimat from "#icons/akimat.vue";
|
|
|
31
31
|
import IWarningTriangle from "#icons/warning-triangle.vue";
|
|
32
32
|
import ICurrencyTenge from "#icons/currency/tenge.vue";
|
|
33
33
|
import IFileExcelIcon from "#icons/file/excel-icon.vue";
|
|
34
|
+
import AAiAssistant from "#icons/ai-assistant.vue";
|
|
35
|
+
import ASanctions from "#icons/sanctions.vue";
|
|
36
|
+
import ATasks from "#icons/tasks.vue";
|
|
37
|
+
import ACheckSb from "#icons/check-sb.vue";
|
|
38
|
+
import AHotLine from "#icons/hot-line.vue";
|
|
34
39
|
const tab = ref(useCurrentModule().value);
|
|
35
40
|
const { t } = useI18n();
|
|
36
41
|
const appConfig = useAppConfig();
|
|
37
42
|
const mode = appConfig.adataUI.mode;
|
|
38
43
|
const tabOptions = [
|
|
39
|
-
{
|
|
40
|
-
name: "header.products.edo.label",
|
|
41
|
-
key: "edo"
|
|
42
|
-
},
|
|
43
44
|
{
|
|
44
45
|
name: "header.products.counterparties.label",
|
|
45
46
|
key: "pk"
|
|
46
47
|
},
|
|
47
48
|
{
|
|
48
|
-
name: "header.products.
|
|
49
|
-
key: "
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
name: "header.products.tenders.label",
|
|
53
|
-
key: "tenders"
|
|
49
|
+
name: "header.products.fines.label",
|
|
50
|
+
key: "fines"
|
|
54
51
|
},
|
|
55
52
|
{
|
|
56
|
-
name: "header.products.
|
|
57
|
-
key: "
|
|
53
|
+
name: "header.products.jobs.label",
|
|
54
|
+
key: "work"
|
|
58
55
|
},
|
|
59
56
|
{
|
|
60
57
|
name: "header.products.fea.label",
|
|
61
58
|
key: "fea"
|
|
62
59
|
},
|
|
63
60
|
{
|
|
64
|
-
name: "header.products.
|
|
65
|
-
key: "
|
|
61
|
+
name: "header.products.tenders.label",
|
|
62
|
+
key: "tenders"
|
|
66
63
|
},
|
|
67
64
|
{
|
|
68
|
-
name: "header.products.
|
|
69
|
-
key: "
|
|
65
|
+
name: "header.products.edo.label",
|
|
66
|
+
key: "edo"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "header.products.compliance.label",
|
|
70
|
+
key: "compliance"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "header.products.analytics.label",
|
|
74
|
+
key: "analytics"
|
|
70
75
|
}
|
|
71
76
|
];
|
|
72
77
|
const sideLinks = {
|
|
@@ -234,9 +239,34 @@ const sideLinks = {
|
|
|
234
239
|
],
|
|
235
240
|
compliance: [
|
|
236
241
|
{
|
|
237
|
-
label: "header.products.compliance.
|
|
242
|
+
label: "header.products.compliance.items.assistant.t",
|
|
243
|
+
icon: AAiAssistant,
|
|
244
|
+
link: `https://ac.${mode}.kz/main/assistant`
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
label: "header.products.compliance.items.inspection.t",
|
|
248
|
+
icon: ATasks,
|
|
249
|
+
link: `https://ac.${mode}.kz/main/inspection`
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
label: "header.products.compliance.items.hotline.t",
|
|
253
|
+
icon: AHotLine,
|
|
254
|
+
link: `https://ac.${mode}.kz/main/hotline`
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
label: "header.products.compliance.items.sanctions.t",
|
|
258
|
+
icon: ASanctions,
|
|
259
|
+
link: `https://ac.${mode}.kz/main/sanctions`
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
label: "header.products.compliance.items.suppliers.t",
|
|
238
263
|
icon: IDocumentProfile,
|
|
239
|
-
link: `https://ac.${mode}.kz/
|
|
264
|
+
link: `https://ac.${mode}.kz/main/dossier/suppliers`
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
label: "header.products.compliance.items.sb.t",
|
|
268
|
+
icon: ACheckSb,
|
|
269
|
+
link: `https://ac.${mode}.kz/main/sb`
|
|
240
270
|
}
|
|
241
271
|
],
|
|
242
272
|
edo: [
|
|
@@ -242,6 +242,30 @@ declare const _default: {
|
|
|
242
242
|
t: string;
|
|
243
243
|
st: string;
|
|
244
244
|
};
|
|
245
|
+
assistant: {
|
|
246
|
+
t: string;
|
|
247
|
+
st: string;
|
|
248
|
+
};
|
|
249
|
+
inspection: {
|
|
250
|
+
t: string;
|
|
251
|
+
st: string;
|
|
252
|
+
};
|
|
253
|
+
hotline: {
|
|
254
|
+
t: string;
|
|
255
|
+
st: string;
|
|
256
|
+
};
|
|
257
|
+
sanctions: {
|
|
258
|
+
t: string;
|
|
259
|
+
st: string;
|
|
260
|
+
};
|
|
261
|
+
suppliers: {
|
|
262
|
+
t: string;
|
|
263
|
+
st: string;
|
|
264
|
+
};
|
|
265
|
+
sb: {
|
|
266
|
+
t: string;
|
|
267
|
+
st: string;
|
|
268
|
+
};
|
|
245
269
|
};
|
|
246
270
|
};
|
|
247
271
|
edo: {
|
|
@@ -947,6 +971,30 @@ declare const _default: {
|
|
|
947
971
|
t: string;
|
|
948
972
|
st: string;
|
|
949
973
|
};
|
|
974
|
+
assistant: {
|
|
975
|
+
t: string;
|
|
976
|
+
st: string;
|
|
977
|
+
};
|
|
978
|
+
inspection: {
|
|
979
|
+
t: string;
|
|
980
|
+
st: string;
|
|
981
|
+
};
|
|
982
|
+
hotline: {
|
|
983
|
+
t: string;
|
|
984
|
+
st: string;
|
|
985
|
+
};
|
|
986
|
+
sanctions: {
|
|
987
|
+
t: string;
|
|
988
|
+
st: string;
|
|
989
|
+
};
|
|
990
|
+
suppliers: {
|
|
991
|
+
t: string;
|
|
992
|
+
st: string;
|
|
993
|
+
};
|
|
994
|
+
sb: {
|
|
995
|
+
t: string;
|
|
996
|
+
st: string;
|
|
997
|
+
};
|
|
950
998
|
};
|
|
951
999
|
};
|
|
952
1000
|
edo: {
|
|
@@ -1652,6 +1700,30 @@ declare const _default: {
|
|
|
1652
1700
|
t: string;
|
|
1653
1701
|
st: string;
|
|
1654
1702
|
};
|
|
1703
|
+
assistant: {
|
|
1704
|
+
t: string;
|
|
1705
|
+
st: string;
|
|
1706
|
+
};
|
|
1707
|
+
inspection: {
|
|
1708
|
+
t: string;
|
|
1709
|
+
st: string;
|
|
1710
|
+
};
|
|
1711
|
+
hotline: {
|
|
1712
|
+
t: string;
|
|
1713
|
+
st: string;
|
|
1714
|
+
};
|
|
1715
|
+
sanctions: {
|
|
1716
|
+
t: string;
|
|
1717
|
+
st: string;
|
|
1718
|
+
};
|
|
1719
|
+
suppliers: {
|
|
1720
|
+
t: string;
|
|
1721
|
+
st: string;
|
|
1722
|
+
};
|
|
1723
|
+
sb: {
|
|
1724
|
+
t: string;
|
|
1725
|
+
st: string;
|
|
1726
|
+
};
|
|
1655
1727
|
};
|
|
1656
1728
|
};
|
|
1657
1729
|
edo: {
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M14.4911 9.66964V1.09821C14.4911 0.80235 14.2512 0.5625 13.9554 0.5625H1.09821C0.814054 0.5625 0.5625 0.81405 0.5625 1.09821V9.66964C0.5625 9.95379 0.814054 10.2054 1.09821 10.2054H13.9554C14.2395 10.2054 14.4911 9.95379 14.4911 9.66964Z" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M6.45619 10.2056L5.38477 12.8842" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M8.59863 10.2056L9.67006 12.8842" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M4.3125 12.8841H10.7411" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M4.90918 6.53174C5.41954 7.05081 6.32095 7.52663 7.52687 7.52663C8.7328 7.52663 9.6342 7.05081 10.1446 6.53174" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M5.65188 3.77691C5.50382 3.77691 5.38379 3.65688 5.38379 3.50882C5.38379 3.36075 5.50382 3.24072 5.65188 3.24072" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M5.65137 3.77688C5.79943 3.77688 5.91946 3.65685 5.91946 3.50879C5.91946 3.36072 5.79943 3.24069 5.65137 3.24069" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M9.40165 3.77644C9.25371 3.77644 9.13379 3.65651 9.13379 3.50858C9.13379 3.36065 9.25371 3.24072 9.40165 3.24072" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M9.40137 3.77641C9.54931 3.77641 9.66922 3.65648 9.66922 3.50855C9.66922 3.36062 9.54931 3.24069 9.40137 3.24069" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
+
</svg>
|
|
13
|
+
</template>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M1.38672 0.879223H13.2324C13.3669 0.879223 13.4957 0.932587 13.5908 1.02766C13.6859 1.12271 13.7393 1.25165 13.7393 1.38606V4.61653C13.7405 6.58649 13.1446 8.51119 12.0293 10.1351C10.9141 11.7589 9.33221 13.006 7.49316 13.7122H7.49219C7.37469 13.7575 7.24445 13.7575 7.12695 13.7122H7.12598C5.28693 13.0061 3.70507 11.7589 2.58984 10.1351C1.47456 8.51121 0.87869 6.58651 0.879883 4.61653V1.38606C0.879883 1.25163 0.933278 1.1227 1.02832 1.02766C1.12338 0.932604 1.2523 0.879223 1.38672 0.879223Z" stroke="currentColor" stroke-width="1.14015"/>
|
|
4
|
+
<path d="M7.68372 14.0053C7.44283 14.0982 7.17598 14.0982 6.93508 14.0053C5.05542 13.2836 3.4389 12.0088 2.29903 10.3491C1.15915 8.68941 0.549564 6.72299 0.550783 4.70957V1.59021C0.550783 1.31444 0.660331 1.04996 0.855329 0.854966C1.05033 0.659968 1.31481 0.550419 1.59057 0.550419H13.0282C13.304 0.550419 13.5685 0.659968 13.7635 0.854966C13.9585 1.04996 14.068 1.31444 14.068 1.59021V4.70957C14.0693 6.72299 13.4596 8.68941 12.3198 10.3491C11.18 12.0088 9.56338 13.2836 7.68372 14.0053Z" stroke="currentColor" stroke-width="1.10084" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M10.5708 4.05523L6.22738 8.9416L4.05566 7.31281" stroke="currentColor" stroke-width="1.14015" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
7
|
+
</template>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="16" height="13" viewBox="0 0 16 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M13.4885 0.565384H1.64235C1.04758 0.565384 0.56543 1.04754 0.56543 1.64231V10.7962C0.56543 11.3909 1.04758 11.8731 1.64235 11.8731H13.4885C14.0833 11.8731 14.5654 11.3909 14.5654 10.7962V1.64231C14.5654 1.04754 14.0833 0.565384 13.4885 0.565384Z" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M0.56543 1.91183L6.8762 7.29645C7.06971 7.45763 7.31359 7.5459 7.56543 7.5459C7.81727 7.5459 8.06115 7.45763 8.25466 7.29645L14.5654 1.91183" stroke="currentColor" stroke-width="1.13077" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M0.589844 14.7188H9.01285" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M7.88976 14.7189V11.9112H1.71289V14.7189" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M8.77217 0.918553L4.74593 4.94478C4.30735 5.38338 4.30735 6.09446 4.74593 6.53305L6.52478 8.3119C6.96337 8.75048 7.67445 8.75048 8.11304 8.3119L12.1392 4.28566C12.5779 3.84707 12.5779 3.13598 12.1392 2.6974L10.3604 0.918553C9.92183 0.479969 9.21075 0.479969 8.77217 0.918553Z" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M10.1357 6.29609L15.1895 11.3498" stroke="currentColor" stroke-width="1.17922" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</svg>
|
|
8
|
+
</template>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M9.64595 3.98887V2.85731C9.64595 2.55719 9.52672 2.26938 9.31452 2.05716C9.10231 1.84496 8.81449 1.72574 8.51438 1.72574H7.38281" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M4.55423 11.9098H1.72532C1.4252 11.9098 1.13739 11.7906 0.925178 11.5784C0.712968 11.3662 0.59375 11.0784 0.59375 10.7783V2.85731C0.59375 2.55719 0.712968 2.26938 0.925178 2.05716C1.13739 1.84496 1.4252 1.72574 1.72532 1.72574H2.85688" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M14.1722 6.25168H8.51438C7.88944 6.25168 7.38281 6.7583 7.38281 7.38325V14.1726C7.38281 14.7976 7.88944 15.3042 8.51438 15.3042H14.1722C14.7972 15.3042 15.3038 14.7976 15.3038 14.1726V7.38325C15.3038 6.7583 14.7972 6.25168 14.1722 6.25168Z" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M7.66627 0.59407H2.57422L3.03816 2.42721C3.06643 2.5499 3.1356 2.65933 3.23432 2.73747C3.33304 2.81562 3.4554 2.85785 3.58131 2.8572H6.65917C6.78508 2.85785 6.90745 2.81562 7.00617 2.73747C7.10489 2.65933 7.17406 2.5499 7.20233 2.42721L7.66627 0.59407Z" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M9.64648 9.6467H13.0412" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M9.64648 11.9101H13.0412" stroke="currentColor" stroke-width="1.18815" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
package/dist/runtime/lang/en.js
CHANGED
|
@@ -235,6 +235,30 @@ const EnLocale = {
|
|
|
235
235
|
l: {
|
|
236
236
|
t: "Compliance",
|
|
237
237
|
st: "Automatic compliance risk check: protecting your business in real-time"
|
|
238
|
+
},
|
|
239
|
+
assistant: {
|
|
240
|
+
t: "AI assistant",
|
|
241
|
+
st: ""
|
|
242
|
+
},
|
|
243
|
+
inspection: {
|
|
244
|
+
t: "Tasks",
|
|
245
|
+
st: ""
|
|
246
|
+
},
|
|
247
|
+
hotline: {
|
|
248
|
+
t: "Hotline",
|
|
249
|
+
st: ""
|
|
250
|
+
},
|
|
251
|
+
sanctions: {
|
|
252
|
+
t: "Sanctions",
|
|
253
|
+
st: ""
|
|
254
|
+
},
|
|
255
|
+
suppliers: {
|
|
256
|
+
t: "Dossier",
|
|
257
|
+
st: ""
|
|
258
|
+
},
|
|
259
|
+
sb: {
|
|
260
|
+
t: "Security Service check",
|
|
261
|
+
st: ""
|
|
238
262
|
}
|
|
239
263
|
}
|
|
240
264
|
},
|
package/dist/runtime/lang/kk.js
CHANGED
|
@@ -95,7 +95,7 @@ const KkLocale = {
|
|
|
95
95
|
subtitle: ""
|
|
96
96
|
},
|
|
97
97
|
offshore: {
|
|
98
|
-
title: "\u041E\u0444\
|
|
98
|
+
title: "\u041E\u0444\u0448\u043E\u0440\u043B\u044B\u049B \u0442\u0456\u0437\u0456\u043C\u0434\u0435\u0440",
|
|
99
99
|
subtitle: ""
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -235,6 +235,30 @@ const KkLocale = {
|
|
|
235
235
|
l: {
|
|
236
236
|
t: "\u041A\u043E\u043C\u043F\u043B\u0430\u0435\u043D\u0441",
|
|
237
237
|
st: "\u041A\u043E\u043C\u043F\u043B\u0430\u0435\u043D\u0441 \u0442\u04D9\u0443\u0435\u043A\u0435\u043B\u0434\u0435\u0440\u0456\u043D \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0442\u044B \u0442\u0435\u043A\u0441\u0435\u0440\u0443: \u0431\u0438\u0437\u043D\u0435\u0441\u0456\u04A3\u0456\u0437\u0434\u0456 \u043D\u0430\u049B\u0442\u044B \u0443\u0430\u049B\u044B\u0442 \u0440\u0435\u0436\u0438\u043C\u0456\u043D\u0434\u0435 \u049B\u043E\u0440\u0493\u0430\u0443."
|
|
238
|
+
},
|
|
239
|
+
assistant: {
|
|
240
|
+
t: "\u0416\u0430\u0441\u0430\u043D\u0434\u044B \u0438\u043D\u0442\u0435\u043B\u043B\u0435\u043A\u0442 \u043A\u04E9\u043C\u0435\u043A\u0448\u0456\u0441\u0456",
|
|
241
|
+
st: ""
|
|
242
|
+
},
|
|
243
|
+
inspection: {
|
|
244
|
+
t: "\u0422\u0430\u043F\u0441\u044B\u0440\u043C\u0430\u043B\u0430\u0440",
|
|
245
|
+
st: ""
|
|
246
|
+
},
|
|
247
|
+
hotline: {
|
|
248
|
+
t: "\u042B\u0441\u0442\u044B\u049B \u0436\u0435\u043B\u0456",
|
|
249
|
+
st: ""
|
|
250
|
+
},
|
|
251
|
+
sanctions: {
|
|
252
|
+
t: "\u0421\u0430\u043D\u043A\u0446\u0438\u044F\u043B\u0430\u0440",
|
|
253
|
+
st: ""
|
|
254
|
+
},
|
|
255
|
+
suppliers: {
|
|
256
|
+
t: "\u049A\u04B1\u0436\u0430\u0442",
|
|
257
|
+
st: ""
|
|
258
|
+
},
|
|
259
|
+
sb: {
|
|
260
|
+
t: "\u049A\u0430\u0443\u0456\u043F\u0441\u0456\u0437\u0434\u0456\u043A \u049B\u044B\u0437\u043C\u0435\u0442\u0456\u043D \u0442\u0435\u043A\u0441\u0435\u0440\u0443",
|
|
261
|
+
st: ""
|
|
238
262
|
}
|
|
239
263
|
}
|
|
240
264
|
},
|
|
@@ -342,7 +366,7 @@ const KkLocale = {
|
|
|
342
366
|
massCheck: "\u0416\u0430\u043F\u043F\u0430\u0439 \u0442\u0435\u043A\u0441\u0435\u0440\u0443",
|
|
343
367
|
foreignCounterparties: "\u0428\u0435\u0442\u0435\u043B\u0434\u0456\u043A \u043A\u043E\u043D\u0442\u0440\u0430\u0433\u0435\u043D\u0442\u0442\u0435\u0440",
|
|
344
368
|
sanctions: "\u0421\u0430\u043D\u043A\u0446\u0438\u044F\u043B\u0430\u0440",
|
|
345
|
-
offshores: "\u041E\u0444\
|
|
369
|
+
offshores: "\u041E\u0444\u0448\u043E\u0440\u043B\u0430\u0440"
|
|
346
370
|
},
|
|
347
371
|
work: {
|
|
348
372
|
title: "\u0416\u04B1\u043C\u044B\u0441",
|
|
@@ -723,8 +747,8 @@ const KkLocale = {
|
|
|
723
747
|
description: "\u0411\u04D9\u0441\u0435\u043A\u0435\u043B\u0435\u0441\u0442\u0435\u0440 \u043D\u0435\u043C\u0435\u0441\u0435 \u04D9\u043B\u0435\u0443\u0435\u0442\u0442\u0456 \u043A\u043B\u0438\u0435\u043D\u0442\u0442\u0435\u0440 \u0442\u0443\u0440\u0430\u043B\u044B \u0434\u0435\u0440\u0435\u043A\u0442\u0435\u0440\u0434\u0456 \u0430\u043B\u044B\u04A3\u044B\u0437."
|
|
724
748
|
},
|
|
725
749
|
{
|
|
726
|
-
title: "\u041E\u0444\
|
|
727
|
-
description: "\u0421\u0430\u043B\u044B\u049B\u0442\u044B\u049B \u0436\u04D9\u043D\u0435 \u049B\u04B1\u049B\u044B\u049B\u0442\u044B\u049B \u0442\u04D9\u0443\u0435\u043A\u0435\u043B\u0434\u0435\u0440\u0434\u0456 \u0430\u0437\u0430\u0439\u0442\u0443 \u04AF\u0448\u0456\u043D \u043A\u043E\u043D\u0442\u0440\u0430\u0433\u0435\u043D\u0442\u0442\u0435\u0440\u0434\u0456\u04A3 \u043E\u0444\
|
|
750
|
+
title: "\u041E\u0444\u0448\u043E\u0440\u043B\u044B\u049B \u0442\u0456\u0437\u0456\u043C\u0434\u0435\u0440",
|
|
751
|
+
description: "\u0421\u0430\u043B\u044B\u049B\u0442\u044B\u049B \u0436\u04D9\u043D\u0435 \u049B\u04B1\u049B\u044B\u049B\u0442\u044B\u049B \u0442\u04D9\u0443\u0435\u043A\u0435\u043B\u0434\u0435\u0440\u0434\u0456 \u0430\u0437\u0430\u0439\u0442\u0443 \u04AF\u0448\u0456\u043D \u043A\u043E\u043D\u0442\u0440\u0430\u0433\u0435\u043D\u0442\u0442\u0435\u0440\u0434\u0456\u04A3 \u043E\u0444\u0448\u043E\u0440\u043B\u0430\u0440\u044B\u043D \u0442\u0430\u043B\u0434\u0430\u04A3\u044B\u0437."
|
|
728
752
|
},
|
|
729
753
|
{
|
|
730
754
|
title: "\u0421\u0430\u043D\u043A\u0446\u0438\u044F\u043B\u044B\u049B \u0442\u0456\u0437\u0456\u043C\u0434\u0435\u0440",
|
|
@@ -236,6 +236,30 @@ declare const RuLocale: {
|
|
|
236
236
|
t: string;
|
|
237
237
|
st: string;
|
|
238
238
|
};
|
|
239
|
+
assistant: {
|
|
240
|
+
t: string;
|
|
241
|
+
st: string;
|
|
242
|
+
};
|
|
243
|
+
inspection: {
|
|
244
|
+
t: string;
|
|
245
|
+
st: string;
|
|
246
|
+
};
|
|
247
|
+
hotline: {
|
|
248
|
+
t: string;
|
|
249
|
+
st: string;
|
|
250
|
+
};
|
|
251
|
+
sanctions: {
|
|
252
|
+
t: string;
|
|
253
|
+
st: string;
|
|
254
|
+
};
|
|
255
|
+
suppliers: {
|
|
256
|
+
t: string;
|
|
257
|
+
st: string;
|
|
258
|
+
};
|
|
259
|
+
sb: {
|
|
260
|
+
t: string;
|
|
261
|
+
st: string;
|
|
262
|
+
};
|
|
239
263
|
};
|
|
240
264
|
};
|
|
241
265
|
edo: {
|
package/dist/runtime/lang/ru.js
CHANGED
|
@@ -229,6 +229,30 @@ const RuLocale = {
|
|
|
229
229
|
l: {
|
|
230
230
|
t: "\u041A\u043E\u043C\u043F\u043B\u0430\u0435\u043D\u0441",
|
|
231
231
|
st: "\u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043A\u043E\u043C\u043F\u043B\u0430\u0435\u043D\u0441 \u0440\u0438\u0441\u043A\u043E\u0432: \u0437\u0430\u0449\u0438\u0442\u0430 \u0432\u0430\u0448\u0435\u0433\u043E \u0431\u0438\u0437\u043D\u0435\u0441\u0430 \u0432 \u0440\u0435\u0436\u0438\u043C\u0435 \u0440\u0435\u0430\u043B\u044C\u043D\u043E\u0433\u043E \u0432\u0440\u0435\u043C\u0435\u043D\u0438"
|
|
232
|
+
},
|
|
233
|
+
assistant: {
|
|
234
|
+
t: "AI \u0430\u0441\u0441\u0438\u0441\u0442\u0435\u043D\u0442",
|
|
235
|
+
st: ""
|
|
236
|
+
},
|
|
237
|
+
inspection: {
|
|
238
|
+
t: "\u0417\u0430\u0434\u0430\u0447\u0438",
|
|
239
|
+
st: ""
|
|
240
|
+
},
|
|
241
|
+
hotline: {
|
|
242
|
+
t: "\u0413\u043E\u0440\u044F\u0447\u0430\u044F \u043B\u0438\u043D\u0438\u044F",
|
|
243
|
+
st: ""
|
|
244
|
+
},
|
|
245
|
+
sanctions: {
|
|
246
|
+
t: "\u0421\u0430\u043D\u043A\u0446\u0438\u0438",
|
|
247
|
+
st: ""
|
|
248
|
+
},
|
|
249
|
+
suppliers: {
|
|
250
|
+
t: "\u0414\u043E\u0441\u044C\u0435",
|
|
251
|
+
st: ""
|
|
252
|
+
},
|
|
253
|
+
sb: {
|
|
254
|
+
t: "\u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u0421\u0411",
|
|
255
|
+
st: ""
|
|
232
256
|
}
|
|
233
257
|
}
|
|
234
258
|
},
|