adata-ui 3.1.27 → 3.1.29
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/forms/request-demo/RequestDemo.vue +2 -1
- package/dist/runtime/components/forms/request-demo/RequestDemo.vue.d.ts +3 -1
- package/dist/runtime/components/header/ProductMenu.vue +6 -6
- package/dist/runtime/components/header/ProfileMenuContent.vue +5 -5
- package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +10 -10
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -75,13 +75,14 @@ function onSend() {
|
|
|
75
75
|
/>
|
|
76
76
|
</div>
|
|
77
77
|
</slot>
|
|
78
|
-
<div>
|
|
78
|
+
<div class="flex flex-col gap-2 w-full">
|
|
79
79
|
<adt-button
|
|
80
80
|
block
|
|
81
81
|
@click="onSend"
|
|
82
82
|
>
|
|
83
83
|
{{ t("forms.request_demo.send") }}
|
|
84
84
|
</adt-button>
|
|
85
|
+
<slot name="info" />
|
|
85
86
|
</div>
|
|
86
87
|
</div>
|
|
87
88
|
</div>
|
|
@@ -2,13 +2,15 @@ type __VLS_Props = {
|
|
|
2
2
|
title?: string;
|
|
3
3
|
description?: string;
|
|
4
4
|
};
|
|
5
|
-
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
|
|
5
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_27: {};
|
|
6
6
|
type __VLS_Slots = {} & {
|
|
7
7
|
title?: (props: typeof __VLS_1) => any;
|
|
8
8
|
} & {
|
|
9
9
|
description?: (props: typeof __VLS_3) => any;
|
|
10
10
|
} & {
|
|
11
11
|
inputs?: (props: typeof __VLS_5) => any;
|
|
12
|
+
} & {
|
|
13
|
+
info?: (props: typeof __VLS_27) => any;
|
|
12
14
|
};
|
|
13
15
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
16
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -201,13 +201,13 @@ const filteredItems = computed(() => [
|
|
|
201
201
|
subtitle: t("header.products.fines.items.auto.subtitle"),
|
|
202
202
|
icon: ICar,
|
|
203
203
|
to: `https://avto.${mode}.kz` + PAGES.fines.avto
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
title: t("header.products.fines.items.wholesaleAuto.title"),
|
|
207
|
-
subtitle: t("header.products.fines.items.wholesaleAuto.subtitle"),
|
|
208
|
-
icon: ITruck,
|
|
209
|
-
to: `https://avto.${mode}.kz` + PAGES.fines.bulk
|
|
210
204
|
}
|
|
205
|
+
// {
|
|
206
|
+
// title: t('header.products.fines.items.wholesaleAuto.title'),
|
|
207
|
+
// subtitle: t('header.products.fines.items.wholesaleAuto.subtitle'),
|
|
208
|
+
// icon: ITruck,
|
|
209
|
+
// to: `https://avto.${mode}.kz` + PAGES.fines.bulk,
|
|
210
|
+
// },
|
|
211
211
|
]
|
|
212
212
|
},
|
|
213
213
|
{
|
|
@@ -52,11 +52,11 @@ const items = [
|
|
|
52
52
|
icon: IBookmark,
|
|
53
53
|
to: `https://${mode}.kz` + PAGES.profile.favourites
|
|
54
54
|
},
|
|
55
|
-
{
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
},
|
|
55
|
+
// {
|
|
56
|
+
// title: t('header.profile.menu.myReports'),
|
|
57
|
+
// icon: IFile,
|
|
58
|
+
// to: `https://${mode}.kz` + PAGES.profile.reports,
|
|
59
|
+
// },
|
|
60
60
|
{
|
|
61
61
|
title: t("header.profile.menu.browsingHistory"),
|
|
62
62
|
icon: IHistory,
|
|
@@ -80,11 +80,11 @@ const sideLinks = {
|
|
|
80
80
|
label: "header.products.counterparties.items.networks.title",
|
|
81
81
|
link: `https://pk.${mode}.kz` + PAGES.pk.connections
|
|
82
82
|
},
|
|
83
|
-
{
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
},
|
|
83
|
+
// {
|
|
84
|
+
// icon: IUsers,
|
|
85
|
+
// label: 'header.products.counterparties.items.wholesale.title',
|
|
86
|
+
// link: `https://avto.${mode}.kz` + PAGES.fines.bulk
|
|
87
|
+
// },
|
|
88
88
|
{
|
|
89
89
|
icon: IGlobe,
|
|
90
90
|
label: "header.products.counterparties.items.foreign.title",
|
|
@@ -150,12 +150,12 @@ const sideLinks = {
|
|
|
150
150
|
icon: IAvtoCar,
|
|
151
151
|
label: "header.products.fines.items.auto.title",
|
|
152
152
|
link: `https://avto.${mode}.kz` + PAGES.fines.avto
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
icon: IAvtoTruck,
|
|
156
|
-
label: "header.products.fines.items.wholesaleAuto.title",
|
|
157
|
-
link: `https://avto.${mode}.kz` + PAGES.fines.bulk
|
|
158
153
|
}
|
|
154
|
+
// {
|
|
155
|
+
// icon: IAvtoTruck,
|
|
156
|
+
// label: 'header.products.fines.items.wholesaleAuto.title',
|
|
157
|
+
// link: `https://avto.${mode}.kz` + PAGES.fines.bulk
|
|
158
|
+
// }
|
|
159
159
|
],
|
|
160
160
|
analytics: [
|
|
161
161
|
// {
|