adata-ui 0.3.78 → 0.3.80
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/adata-ui.common.js +110 -73
- package/dist/adata-ui.common.js.map +1 -1
- package/dist/adata-ui.css +1 -1
- package/dist/adata-ui.umd.js +110 -73
- package/dist/adata-ui.umd.js.map +1 -1
- package/dist/adata-ui.umd.min.js +2 -2
- package/dist/adata-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Header/ProfileMenu.vue +5 -3
- package/src/components/ServiceSlider/AServiceSlider.vue +20 -9
package/package.json
CHANGED
|
@@ -66,9 +66,11 @@
|
|
|
66
66
|
<a :href="links.views[mode]" onclick="`return false`" class="profile-link">
|
|
67
67
|
<div class="profile-link__icon">
|
|
68
68
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
69
|
-
<
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
70
|
+
<path d="M4.50049 12.75C4.50049 11.1183 4.98434 9.52325 5.89086 8.16655C6.79738 6.80984 8.08586 5.75242 9.59335 5.12799C11.1008 4.50357 12.7596 4.34019 14.36 4.65852C15.9603 4.97685 17.4303 5.76259 18.5841 6.91637C19.7379 8.07015 20.5236 9.54016 20.842 11.1405C21.1603 12.7408 20.9969 14.3996 20.3725 15.9071C19.7481 17.4146 18.6906 18.7031 17.3339 19.6096C15.9772 20.5161 14.3822 21 12.7505 21" stroke="#2C3E50" stroke-width="2" stroke-linecap="round"/>
|
|
71
|
+
<path d="M13.5005 9V12.75L9.00049 16.5" stroke="#2C3E50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
72
|
+
<path d="M2 11L4.5 14L7 11" stroke="#2C3E50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
73
|
+
</svg>
|
|
72
74
|
</svg>
|
|
73
75
|
</div>
|
|
74
76
|
<div class="profile-link__text">История просмотров</div>
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
</svg>
|
|
13
13
|
</div>
|
|
14
14
|
<div class="services__content">
|
|
15
|
-
<div class="services__email">
|
|
16
|
-
<a
|
|
15
|
+
<div v-if="isAuth" class="services__email">
|
|
16
|
+
<a :href="profile[mode]">
|
|
17
17
|
<p>{{email}}</p>
|
|
18
18
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
19
19
|
<path d="M9 18L15 12L9 6" stroke="#2C3E50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
<path d="M15 18L9 12L15 6" stroke="#2C3E50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
176
176
|
</svg>
|
|
177
177
|
</div>
|
|
178
|
-
<div class="menu-mobile__title">
|
|
178
|
+
<component :is="navigation?.module === 'marketing'? 'nuxt-link' : 'div'" to="/" class="menu-mobile__title">
|
|
179
179
|
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
180
180
|
<g clip-path="url(#clip0_5191_51862)">
|
|
181
181
|
<path d="M12.3416 8.35498H12.2766C12.2488 8.70065 12.1805 9.04187 12.0732 9.37164L10.8032 13.3333H13.7899L12.5366 9.41164C12.4351 9.06712 12.3698 8.713 12.3416 8.35498Z" fill="#2C3E50"/>
|
|
@@ -188,10 +188,20 @@
|
|
|
188
188
|
</defs>
|
|
189
189
|
</svg>
|
|
190
190
|
<p>{{navigation.title}}</p>
|
|
191
|
-
</
|
|
191
|
+
</component>
|
|
192
192
|
<div class="ic-24"></div>
|
|
193
193
|
</div>
|
|
194
194
|
<ul class="navigations">
|
|
195
|
+
<li v-if="isAuth">
|
|
196
|
+
<div class="services__email">
|
|
197
|
+
<a :href="profile[mode]">
|
|
198
|
+
<p>{{email}}</p>
|
|
199
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
200
|
+
<path d="M9 18L15 12L9 6" stroke="#2C3E50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
201
|
+
</svg>
|
|
202
|
+
</a>
|
|
203
|
+
</div>
|
|
204
|
+
</li>
|
|
195
205
|
<li v-for="link in navigation.links" :key="link.id">
|
|
196
206
|
<component
|
|
197
207
|
:is="module === navigation.module ? 'nuxt-link' : 'a' "
|
|
@@ -475,11 +485,11 @@ export default {
|
|
|
475
485
|
prod: 'https://analytics.adata.kz',
|
|
476
486
|
},
|
|
477
487
|
links: [
|
|
478
|
-
{
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
},
|
|
488
|
+
// {
|
|
489
|
+
// id: 1,
|
|
490
|
+
// title: "Главная",
|
|
491
|
+
// href: "/"
|
|
492
|
+
// },
|
|
483
493
|
{
|
|
484
494
|
id: 2,
|
|
485
495
|
title: "Поиск клиентов",
|
|
@@ -673,6 +683,7 @@ export default {
|
|
|
673
683
|
display: flex;
|
|
674
684
|
align-items: center;
|
|
675
685
|
gap: 8px;
|
|
686
|
+
color: #000;
|
|
676
687
|
}
|
|
677
688
|
&__arrow {
|
|
678
689
|
height: 24px;
|