adata-ui 3.1.30 → 3.1.32
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/README.md +84 -84
- package/dist/module.json +1 -1
- package/dist/runtime/components/Alert.vue +26 -26
- package/dist/runtime/components/CurveBlock.vue +1 -1
- package/dist/runtime/components/EmptyHeader.vue +5 -5
- package/dist/runtime/components/Tag.vue +4 -4
- package/dist/runtime/components/forms/input/standard/InputStandard.vue +5 -3
- package/dist/runtime/components/header/ProductMenu.vue +61 -46
- package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +20 -8
- package/dist/runtime/i18n/i18n.config.d.ts +24 -0
- package/dist/runtime/icons/arrow/arrow-right.vue +24 -24
- package/dist/runtime/icons/bank.vue +14 -0
- package/dist/runtime/icons/bank.vue.d.ts +2 -0
- package/dist/runtime/icons/calendar.vue +24 -24
- package/dist/runtime/icons/chartBar.vue +14 -0
- package/dist/runtime/icons/chartBar.vue.d.ts +2 -0
- package/dist/runtime/icons/download.vue +26 -26
- package/dist/runtime/icons/edit.vue +24 -24
- package/dist/runtime/icons/file/excel.vue +88 -88
- package/dist/runtime/icons/id.vue +9 -9
- package/dist/runtime/icons/map-pin-rect.vue +15 -15
- package/dist/runtime/icons/more.vue +36 -36
- package/dist/runtime/icons/plus-circle.vue +24 -24
- package/dist/runtime/icons/tenge.vue +22 -22
- package/dist/runtime/icons/trash.vue +24 -24
- package/dist/runtime/icons/upload.vue +26 -26
- package/dist/runtime/icons/user.vue +30 -30
- package/dist/runtime/icons/warning-triangle.vue +29 -29
- package/dist/runtime/lang/en.js +8 -0
- package/dist/runtime/lang/kk.js +8 -0
- package/dist/runtime/lang/ru.d.ts +8 -0
- package/dist/runtime/lang/ru.js +8 -0
- package/dist/runtime/server/tsconfig.json +3 -3
- package/dist/runtime/shared/constants/pages.d.ts +2 -0
- package/dist/runtime/shared/constants/pages.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Get your module up and running quickly.
|
|
3
|
-
|
|
4
|
-
Find and replace all on all files (CMD+SHIFT+F):
|
|
5
|
-
- Name: My Module
|
|
6
|
-
- Package name: my-module
|
|
7
|
-
- Description: My new Nuxt module
|
|
8
|
-
-->
|
|
9
|
-
|
|
10
|
-
# My Module
|
|
11
|
-
|
|
12
|
-
[![npm version][npm-version-src]][npm-version-href]
|
|
13
|
-
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
14
|
-
[![License][license-src]][license-href]
|
|
15
|
-
[![Nuxt][nuxt-src]][nuxt-href]
|
|
16
|
-
|
|
17
|
-
My new Nuxt module for doing amazing things.
|
|
18
|
-
|
|
19
|
-
- [✨ Release Notes](/CHANGELOG.md)
|
|
20
|
-
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
|
|
21
|
-
<!-- - [📖 Documentation](https://example.com) -->
|
|
22
|
-
|
|
23
|
-
## Features
|
|
24
|
-
|
|
25
|
-
<!-- Highlight some of the features your module provide here -->
|
|
26
|
-
- ⛰ Foo
|
|
27
|
-
- 🚠 Bar
|
|
28
|
-
- 🌲 Baz
|
|
29
|
-
|
|
30
|
-
## Quick Setup
|
|
31
|
-
|
|
32
|
-
Install the module to your Nuxt application with one command:
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
npx nuxi module add my-module
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
That's it! You can now use My Module in your Nuxt app ✨
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## Contribution
|
|
42
|
-
|
|
43
|
-
<details>
|
|
44
|
-
<summary>Local development</summary>
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
# Install dependencies
|
|
48
|
-
npm install
|
|
49
|
-
|
|
50
|
-
# Generate type stubs
|
|
51
|
-
npm run dev:prepare
|
|
52
|
-
|
|
53
|
-
# Develop with the playground
|
|
54
|
-
npm run dev
|
|
55
|
-
|
|
56
|
-
# Build the playground
|
|
57
|
-
npm run dev:build
|
|
58
|
-
|
|
59
|
-
# Run ESLint
|
|
60
|
-
npm run lint
|
|
61
|
-
|
|
62
|
-
# Run Vitest
|
|
63
|
-
npm run test
|
|
64
|
-
npm run test:watch
|
|
65
|
-
|
|
66
|
-
# Release new version
|
|
67
|
-
npm run release
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
</details>
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
<!-- Badges -->
|
|
74
|
-
[npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
|
|
75
|
-
[npm-version-href]: https://npmjs.com/package/my-module
|
|
76
|
-
|
|
77
|
-
[npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
78
|
-
[npm-downloads-href]: https://npm.chart.dev/my-module
|
|
79
|
-
|
|
80
|
-
[license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
81
|
-
[license-href]: https://npmjs.com/package/my-module
|
|
82
|
-
|
|
83
|
-
[nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
|
|
84
|
-
[nuxt-href]: https://nuxt.com
|
|
1
|
+
<!--
|
|
2
|
+
Get your module up and running quickly.
|
|
3
|
+
|
|
4
|
+
Find and replace all on all files (CMD+SHIFT+F):
|
|
5
|
+
- Name: My Module
|
|
6
|
+
- Package name: my-module
|
|
7
|
+
- Description: My new Nuxt module
|
|
8
|
+
-->
|
|
9
|
+
|
|
10
|
+
# My Module
|
|
11
|
+
|
|
12
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
13
|
+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
14
|
+
[![License][license-src]][license-href]
|
|
15
|
+
[![Nuxt][nuxt-src]][nuxt-href]
|
|
16
|
+
|
|
17
|
+
My new Nuxt module for doing amazing things.
|
|
18
|
+
|
|
19
|
+
- [✨ Release Notes](/CHANGELOG.md)
|
|
20
|
+
<!-- - [🏀 Online playground](https://stackblitz.com/github/your-org/my-module?file=playground%2Fapp.vue) -->
|
|
21
|
+
<!-- - [📖 Documentation](https://example.com) -->
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
<!-- Highlight some of the features your module provide here -->
|
|
26
|
+
- ⛰ Foo
|
|
27
|
+
- 🚠 Bar
|
|
28
|
+
- 🌲 Baz
|
|
29
|
+
|
|
30
|
+
## Quick Setup
|
|
31
|
+
|
|
32
|
+
Install the module to your Nuxt application with one command:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npx nuxi module add my-module
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
That's it! You can now use My Module in your Nuxt app ✨
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## Contribution
|
|
42
|
+
|
|
43
|
+
<details>
|
|
44
|
+
<summary>Local development</summary>
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
# Install dependencies
|
|
48
|
+
npm install
|
|
49
|
+
|
|
50
|
+
# Generate type stubs
|
|
51
|
+
npm run dev:prepare
|
|
52
|
+
|
|
53
|
+
# Develop with the playground
|
|
54
|
+
npm run dev
|
|
55
|
+
|
|
56
|
+
# Build the playground
|
|
57
|
+
npm run dev:build
|
|
58
|
+
|
|
59
|
+
# Run ESLint
|
|
60
|
+
npm run lint
|
|
61
|
+
|
|
62
|
+
# Run Vitest
|
|
63
|
+
npm run test
|
|
64
|
+
npm run test:watch
|
|
65
|
+
|
|
66
|
+
# Release new version
|
|
67
|
+
npm run release
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
</details>
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<!-- Badges -->
|
|
74
|
+
[npm-version-src]: https://img.shields.io/npm/v/my-module/latest.svg?style=flat&colorA=020420&colorB=00DC82
|
|
75
|
+
[npm-version-href]: https://npmjs.com/package/my-module
|
|
76
|
+
|
|
77
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
78
|
+
[npm-downloads-href]: https://npm.chart.dev/my-module
|
|
79
|
+
|
|
80
|
+
[license-src]: https://img.shields.io/npm/l/my-module.svg?style=flat&colorA=020420&colorB=00DC82
|
|
81
|
+
[license-href]: https://npmjs.com/package/my-module
|
|
82
|
+
|
|
83
|
+
[nuxt-src]: https://img.shields.io/badge/Nuxt-020420?logo=nuxt.js
|
|
84
|
+
[nuxt-href]: https://nuxt.com
|
package/dist/module.json
CHANGED
|
@@ -33,30 +33,30 @@ const colorOptions = {
|
|
|
33
33
|
</script>
|
|
34
34
|
|
|
35
35
|
<template>
|
|
36
|
-
<div
|
|
37
|
-
class="inline-flex w-full rounded-md"
|
|
38
|
-
:class="twMerge(colorOptions.description[color], textBgClasses)"
|
|
39
|
-
>
|
|
40
|
-
<div
|
|
41
|
-
class="flex items-center justify-center rounded-l-md"
|
|
42
|
-
:class="twMerge([colorOptions.icon[color], sizeOptions[size]], iconBgClasses)"
|
|
43
|
-
>
|
|
44
|
-
<slot name="icon">
|
|
45
|
-
<i-info-circle
|
|
46
|
-
v-if="iconType == 'circle'"
|
|
47
|
-
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
48
|
-
/>
|
|
49
|
-
<i-warning-triangle
|
|
50
|
-
v-if="iconType == 'triangle'"
|
|
51
|
-
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
52
|
-
/>
|
|
53
|
-
</slot>
|
|
54
|
-
</div>
|
|
55
|
-
<div
|
|
56
|
-
:class="sizeOptions[size]"
|
|
57
|
-
class="rounded-r-md flex items-center"
|
|
58
|
-
>
|
|
59
|
-
<slot name="default" />
|
|
60
|
-
</div>
|
|
61
|
-
</div>
|
|
36
|
+
<div
|
|
37
|
+
class="inline-flex w-full rounded-md"
|
|
38
|
+
:class="twMerge(colorOptions.description[color], textBgClasses)"
|
|
39
|
+
>
|
|
40
|
+
<div
|
|
41
|
+
class="flex items-center justify-center rounded-l-md"
|
|
42
|
+
:class="twMerge([colorOptions.icon[color], sizeOptions[size]], iconBgClasses)"
|
|
43
|
+
>
|
|
44
|
+
<slot name="icon">
|
|
45
|
+
<i-info-circle
|
|
46
|
+
v-if="iconType == 'circle'"
|
|
47
|
+
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
48
|
+
/>
|
|
49
|
+
<i-warning-triangle
|
|
50
|
+
v-if="iconType == 'triangle'"
|
|
51
|
+
:class="`w-[${iconSize}] h-[${iconSize}]`"
|
|
52
|
+
/>
|
|
53
|
+
</slot>
|
|
54
|
+
</div>
|
|
55
|
+
<div
|
|
56
|
+
:class="sizeOptions[size]"
|
|
57
|
+
class="rounded-r-md flex items-center"
|
|
58
|
+
>
|
|
59
|
+
<slot name="default" />
|
|
60
|
+
</div>
|
|
61
|
+
</div>
|
|
62
62
|
</template>
|
|
@@ -3,9 +3,9 @@ import ColorMode from "./ColorMode.vue";
|
|
|
3
3
|
</script>
|
|
4
4
|
|
|
5
5
|
<template>
|
|
6
|
-
<header class="h-16 bg-white border-b-[1px] border-deepblue-900/10 dark:bg-gray-900">
|
|
7
|
-
<div class="a-container flex items-center justify-end h-full">
|
|
8
|
-
<color-mode />
|
|
9
|
-
</div>
|
|
10
|
-
</header>
|
|
6
|
+
<header class="h-16 bg-white border-b-[1px] border-deepblue-900/10 dark:bg-gray-900">
|
|
7
|
+
<div class="a-container flex items-center justify-end h-full">
|
|
8
|
+
<color-mode />
|
|
9
|
+
</div>
|
|
10
|
+
</header>
|
|
11
11
|
</template>
|
|
@@ -39,8 +39,8 @@ const typeSwitchValues = {
|
|
|
39
39
|
</script>
|
|
40
40
|
|
|
41
41
|
<template>
|
|
42
|
-
<div :class="[[classes], customClasses]">
|
|
43
|
-
<slot name="point" />
|
|
44
|
-
<slot />
|
|
45
|
-
</div>
|
|
42
|
+
<div :class="[[classes], customClasses]">
|
|
43
|
+
<slot name="point" />
|
|
44
|
+
<slot />
|
|
45
|
+
</div>
|
|
46
46
|
</template>
|
|
@@ -17,7 +17,8 @@ const props = defineProps({
|
|
|
17
17
|
autocompleteOption: { type: null, required: false, default: void 0 },
|
|
18
18
|
autocompleteKey: { type: null, required: false, default: void 0 },
|
|
19
19
|
autocompleteFn: { type: Function, required: false, default: void 0 },
|
|
20
|
-
colorClasses: { type: String, required: false }
|
|
20
|
+
colorClasses: { type: String, required: false },
|
|
21
|
+
shadow: { type: Boolean, required: false, default: false }
|
|
21
22
|
});
|
|
22
23
|
const { t } = useI18n();
|
|
23
24
|
const uiConfig = {
|
|
@@ -190,7 +191,8 @@ defineExpose({
|
|
|
190
191
|
v-if="autocompleteList.length && isFocused"
|
|
191
192
|
:class="[
|
|
192
193
|
'absolute z-[31] w-full flex flex-col gap-4 rounded bg-white p-2 dark:bg-gray-900',
|
|
193
|
-
isDropdownUp ? 'bottom-[44px]' : 'top-[44px]'
|
|
194
|
+
isDropdownUp ? 'bottom-[44px]' : 'top-[44px]',
|
|
195
|
+
shadow ? 'autocomplete-shadow' : ''
|
|
194
196
|
]"
|
|
195
197
|
>
|
|
196
198
|
<ul
|
|
@@ -297,5 +299,5 @@ defineExpose({
|
|
|
297
299
|
</template>
|
|
298
300
|
|
|
299
301
|
<style scoped>
|
|
300
|
-
.input:-webkit-autofill~.label,.input:focus~.label,.input:not(:focus):valid~.label{font-size:10px;transform:translateY(-10px)}.input.sm:-webkit-autofill~.label,.input.sm:focus~.label,.input.sm:not(:focus):valid~.label{display:none}.input::-ms-clear,.input::-ms-reveal{display:none}.slide-in-enter-active{opacity:0;transform:translateY(-50%);transition:transform .5s;z-index:0}.slide-in-enter-to{z-index:auto}.slide-in-enter-to,.slide-in-leave-active{opacity:1;transform:translateY(0)}.slide-in-leave-to{opacity:0;transform:translateY(-100%)}.autocomplete-fade-enter-active,.autocomplete-fade-leave-active{transition:opacity .15s ease}.autocomplete-fade-enter-from,.autocomplete-fade-leave-to{opacity:0}.move-input{padding-left:40px!important}
|
|
302
|
+
.input:-webkit-autofill~.label,.input:focus~.label,.input:not(:focus):valid~.label{font-size:10px;transform:translateY(-10px)}.input.sm:-webkit-autofill~.label,.input.sm:focus~.label,.input.sm:not(:focus):valid~.label{display:none}.input::-ms-clear,.input::-ms-reveal{display:none}.autocomplete-shadow{box-shadow:0 1px 8px 0 #8b929c4d}.slide-in-enter-active{opacity:0;transform:translateY(-50%);transition:transform .5s;z-index:0}.slide-in-enter-to{z-index:auto}.slide-in-enter-to,.slide-in-leave-active{opacity:1;transform:translateY(0)}.slide-in-leave-to{opacity:0;transform:translateY(-100%)}.autocomplete-fade-enter-active,.autocomplete-fade-leave-active{transition:opacity .15s ease}.autocomplete-fade-enter-from,.autocomplete-fade-leave-to{opacity:0}.move-input{padding-left:40px!important}
|
|
301
303
|
</style>
|
|
@@ -32,6 +32,8 @@ import IId from "#icons/document/id.vue";
|
|
|
32
32
|
import IProfile from "#icons/document/profile.vue";
|
|
33
33
|
import IMapPaper from "#icons/map-paper.vue";
|
|
34
34
|
import IMapPinRect from "#icons/map-pin-rect.vue";
|
|
35
|
+
import ChartBar from "#icons/chartBar.vue";
|
|
36
|
+
import Bank from "#icons/bank.vue";
|
|
35
37
|
const props = defineProps({
|
|
36
38
|
animation: { type: String, required: false, default: "next" },
|
|
37
39
|
index: { type: Number, required: false, default: 0 },
|
|
@@ -110,30 +112,38 @@ const filteredItems = computed(() => [
|
|
|
110
112
|
]
|
|
111
113
|
},
|
|
112
114
|
{
|
|
113
|
-
key: "
|
|
114
|
-
|
|
115
|
-
|
|
115
|
+
key: "compliance",
|
|
116
|
+
is_new: true,
|
|
117
|
+
name: t("header.products.compliance.label"),
|
|
118
|
+
icon: IId,
|
|
116
119
|
items: [
|
|
117
120
|
{
|
|
118
|
-
title: t("header.products.
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
to: `https://
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
title: t("header.products.jobs.items.resume.title"),
|
|
125
|
-
subtitle: t("header.products.jobs.items.resume.subtitle"),
|
|
126
|
-
icon: IHdocument,
|
|
127
|
-
to: `https://work.${mode}.kz` + PAGES.work.summary
|
|
121
|
+
title: t("header.products.compliance.items.l.t"),
|
|
122
|
+
subtitle: t("header.products.compliance.items.l.st"),
|
|
123
|
+
icon: IProfile,
|
|
124
|
+
to: `https://ac.${mode}.kz/compliance`
|
|
128
125
|
}
|
|
129
126
|
]
|
|
130
127
|
},
|
|
131
128
|
{
|
|
132
129
|
key: "tenders",
|
|
133
130
|
name: t("header.products.tenders.label"),
|
|
131
|
+
is_new: true,
|
|
134
132
|
icon: IReceipt,
|
|
135
133
|
to: `https://tender.${mode}.kz`,
|
|
136
134
|
items: [
|
|
135
|
+
{
|
|
136
|
+
title: t("header.products.tenders.items.monitoring.title"),
|
|
137
|
+
subtitle: t("header.products.tenders.items.monitoring.subtitle"),
|
|
138
|
+
icon: ChartBar,
|
|
139
|
+
to: `https://zakupki.${mode}.kz` + PAGES.tender.monitoring
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
title: t("header.products.tenders.items.akimat.title"),
|
|
143
|
+
subtitle: t("header.products.tenders.items.akimat.subtitle"),
|
|
144
|
+
icon: Bank,
|
|
145
|
+
to: `https://zakupki.${mode}.kz` + PAGES.tender.akimat
|
|
146
|
+
},
|
|
137
147
|
{
|
|
138
148
|
title: t("header.products.tenders.items.tenders.title"),
|
|
139
149
|
subtitle: t("header.products.tenders.items.tenders.subtitle"),
|
|
@@ -185,31 +195,6 @@ const filteredItems = computed(() => [
|
|
|
185
195
|
}
|
|
186
196
|
]
|
|
187
197
|
},
|
|
188
|
-
{
|
|
189
|
-
key: "fines",
|
|
190
|
-
name: t("header.products.fines.label"),
|
|
191
|
-
icon: ICar,
|
|
192
|
-
items: [
|
|
193
|
-
{
|
|
194
|
-
title: t("header.products.fines.items.fines.title"),
|
|
195
|
-
subtitle: t("header.products.fines.items.fines.subtitle"),
|
|
196
|
-
icon: ICheckCircle,
|
|
197
|
-
to: `https://avto.${mode}.kz` + PAGES.fines.main
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
title: t("header.products.fines.items.auto.title"),
|
|
201
|
-
subtitle: t("header.products.fines.items.auto.subtitle"),
|
|
202
|
-
icon: ICar,
|
|
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
|
-
// },
|
|
211
|
-
]
|
|
212
|
-
},
|
|
213
198
|
{
|
|
214
199
|
key: "fea",
|
|
215
200
|
is_new: true,
|
|
@@ -261,16 +246,46 @@ const filteredItems = computed(() => [
|
|
|
261
246
|
]
|
|
262
247
|
},
|
|
263
248
|
{
|
|
264
|
-
key: "
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
icon: IId,
|
|
249
|
+
key: "fines",
|
|
250
|
+
name: t("header.products.fines.label"),
|
|
251
|
+
icon: ICar,
|
|
268
252
|
items: [
|
|
269
253
|
{
|
|
270
|
-
title: t("header.products.
|
|
271
|
-
subtitle: t("header.products.
|
|
272
|
-
icon:
|
|
273
|
-
to: `https://
|
|
254
|
+
title: t("header.products.fines.items.fines.title"),
|
|
255
|
+
subtitle: t("header.products.fines.items.fines.subtitle"),
|
|
256
|
+
icon: ICheckCircle,
|
|
257
|
+
to: `https://avto.${mode}.kz` + PAGES.fines.main
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
title: t("header.products.fines.items.auto.title"),
|
|
261
|
+
subtitle: t("header.products.fines.items.auto.subtitle"),
|
|
262
|
+
icon: ICar,
|
|
263
|
+
to: `https://avto.${mode}.kz` + PAGES.fines.avto
|
|
264
|
+
}
|
|
265
|
+
// {
|
|
266
|
+
// title: t('header.products.fines.items.wholesaleAuto.title'),
|
|
267
|
+
// subtitle: t('header.products.fines.items.wholesaleAuto.subtitle'),
|
|
268
|
+
// icon: ITruck,
|
|
269
|
+
// to: `https://avto.${mode}.kz` + PAGES.fines.bulk,
|
|
270
|
+
// },
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
key: "work",
|
|
275
|
+
name: t("header.products.jobs.label"),
|
|
276
|
+
icon: IWorkBag,
|
|
277
|
+
items: [
|
|
278
|
+
{
|
|
279
|
+
title: t("header.products.jobs.items.vacancies.title"),
|
|
280
|
+
icon: IWorkBag,
|
|
281
|
+
subtitle: t("header.products.jobs.items.vacancies.subtitle"),
|
|
282
|
+
to: `https://work.${mode}.kz` + PAGES.work.vacancy
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
title: t("header.products.jobs.items.resume.title"),
|
|
286
|
+
subtitle: t("header.products.jobs.items.resume.subtitle"),
|
|
287
|
+
icon: IHdocument,
|
|
288
|
+
to: `https://work.${mode}.kz` + PAGES.work.summary
|
|
274
289
|
}
|
|
275
290
|
]
|
|
276
291
|
}
|
|
@@ -25,6 +25,8 @@ import {
|
|
|
25
25
|
} from "#components";
|
|
26
26
|
import { ref, useI18n, useAppConfig, watch } from "#imports";
|
|
27
27
|
import { useCurrentModule } from "../../composables/projectState";
|
|
28
|
+
import ChartBar from "#icons/chartBar.vue";
|
|
29
|
+
import Bank from "#icons/bank.vue";
|
|
28
30
|
const tab = ref(useCurrentModule().value);
|
|
29
31
|
const { t } = useI18n();
|
|
30
32
|
const appConfig = useAppConfig();
|
|
@@ -39,8 +41,8 @@ const tabOptions = [
|
|
|
39
41
|
key: "pk"
|
|
40
42
|
},
|
|
41
43
|
{
|
|
42
|
-
name: "header.products.
|
|
43
|
-
key: "
|
|
44
|
+
name: "header.products.compliance.label",
|
|
45
|
+
key: "compliance"
|
|
44
46
|
},
|
|
45
47
|
{
|
|
46
48
|
name: "header.products.tenders.label",
|
|
@@ -50,17 +52,17 @@ const tabOptions = [
|
|
|
50
52
|
name: "header.products.analytics.label",
|
|
51
53
|
key: "analytics"
|
|
52
54
|
},
|
|
53
|
-
{
|
|
54
|
-
name: "header.products.fines.label",
|
|
55
|
-
key: "fines"
|
|
56
|
-
},
|
|
57
55
|
{
|
|
58
56
|
name: "header.products.fea.label",
|
|
59
57
|
key: "fea"
|
|
60
58
|
},
|
|
61
59
|
{
|
|
62
|
-
name: "header.products.
|
|
63
|
-
key: "
|
|
60
|
+
name: "header.products.fines.label",
|
|
61
|
+
key: "fines"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: "header.products.jobs.label",
|
|
65
|
+
key: "work"
|
|
64
66
|
}
|
|
65
67
|
];
|
|
66
68
|
const sideLinks = {
|
|
@@ -124,6 +126,16 @@ const sideLinks = {
|
|
|
124
126
|
}
|
|
125
127
|
],
|
|
126
128
|
tenders: [
|
|
129
|
+
{
|
|
130
|
+
icon: ChartBar,
|
|
131
|
+
label: t("header.products.tenders.items.monitoring.title"),
|
|
132
|
+
link: `https://zakupki.${mode}.kz` + PAGES.tender.monitoring
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
icon: Bank,
|
|
136
|
+
label: t("header.products.tenders.items.akimat.title"),
|
|
137
|
+
link: `https://zakupki.${mode}.kz` + PAGES.tender.akimat
|
|
138
|
+
},
|
|
127
139
|
{
|
|
128
140
|
icon: ISearch,
|
|
129
141
|
label: "header.products.tenders.items.tenders.title",
|
|
@@ -120,6 +120,14 @@ declare const _default: {
|
|
|
120
120
|
tenders: {
|
|
121
121
|
label: string;
|
|
122
122
|
items: {
|
|
123
|
+
monitoring: {
|
|
124
|
+
title: string;
|
|
125
|
+
subtitle: string;
|
|
126
|
+
};
|
|
127
|
+
akimat: {
|
|
128
|
+
title: string;
|
|
129
|
+
subtitle: string;
|
|
130
|
+
};
|
|
123
131
|
tenders: {
|
|
124
132
|
title: string;
|
|
125
133
|
subtitle: string;
|
|
@@ -690,6 +698,14 @@ declare const _default: {
|
|
|
690
698
|
tenders: {
|
|
691
699
|
label: string;
|
|
692
700
|
items: {
|
|
701
|
+
monitoring: {
|
|
702
|
+
title: string;
|
|
703
|
+
subtitle: string;
|
|
704
|
+
};
|
|
705
|
+
akimat: {
|
|
706
|
+
title: string;
|
|
707
|
+
subtitle: string;
|
|
708
|
+
};
|
|
693
709
|
tenders: {
|
|
694
710
|
title: string;
|
|
695
711
|
subtitle: string;
|
|
@@ -1260,6 +1276,14 @@ declare const _default: {
|
|
|
1260
1276
|
tenders: {
|
|
1261
1277
|
label: string;
|
|
1262
1278
|
items: {
|
|
1279
|
+
monitoring: {
|
|
1280
|
+
title: string;
|
|
1281
|
+
subtitle: string;
|
|
1282
|
+
};
|
|
1283
|
+
akimat: {
|
|
1284
|
+
title: string;
|
|
1285
|
+
subtitle: string;
|
|
1286
|
+
};
|
|
1263
1287
|
tenders: {
|
|
1264
1288
|
title: string;
|
|
1265
1289
|
subtitle: string;
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
|
-
<template>
|
|
6
|
-
<svg
|
|
7
|
-
width="25"
|
|
8
|
-
height="24"
|
|
9
|
-
viewBox="0 0 25 24"
|
|
10
|
-
fill="none"
|
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
-
>
|
|
13
|
-
<path
|
|
14
|
-
fill-rule="evenodd"
|
|
15
|
-
clip-rule="evenodd"
|
|
16
|
-
d="M8.70938 5.23017C8.99647 4.93159 9.47125 4.92228 9.76983 5.20938L16.2698 11.4594C16.4169 11.6008 16.5 11.796 16.5 12C16.5 12.204 16.4169 12.3992 16.2698 12.5406L9.76983 18.7906C9.47125 19.0777 8.99647 19.0684 8.70938 18.7698C8.42228 18.4713 8.43159 17.9965 8.73017 17.7094L14.6679 12L8.73017 6.29063C8.43159 6.00353 8.42228 5.52875 8.70938 5.23017Z"
|
|
17
|
-
fill="currentColor"
|
|
18
|
-
/>
|
|
19
|
-
</svg>
|
|
20
|
-
</template>
|
|
21
|
-
|
|
22
|
-
<style scoped>
|
|
23
|
-
|
|
24
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<svg
|
|
7
|
+
width="25"
|
|
8
|
+
height="24"
|
|
9
|
+
viewBox="0 0 25 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill-rule="evenodd"
|
|
15
|
+
clip-rule="evenodd"
|
|
16
|
+
d="M8.70938 5.23017C8.99647 4.93159 9.47125 4.92228 9.76983 5.20938L16.2698 11.4594C16.4169 11.6008 16.5 11.796 16.5 12C16.5 12.204 16.4169 12.3992 16.2698 12.5406L9.76983 18.7906C9.47125 19.0777 8.99647 19.0684 8.70938 18.7698C8.42228 18.4713 8.43159 17.9965 8.73017 17.7094L14.6679 12L8.73017 6.29063C8.43159 6.00353 8.42228 5.52875 8.70938 5.23017Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<style scoped>
|
|
23
|
+
|
|
24
|
+
</style>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="19"
|
|
4
|
+
height="18"
|
|
5
|
+
viewBox="0 0 19 18"
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
d="M2.35449 7.31252H4.04199V11.8125H2.91699C2.76781 11.8125 2.62473 11.8718 2.51924 11.9773C2.41376 12.0828 2.35449 12.2258 2.35449 12.375C2.35449 12.5242 2.41376 12.6673 2.51924 12.7728C2.62473 12.8783 2.76781 12.9375 2.91699 12.9375H16.417C16.5662 12.9375 16.7093 12.8783 16.8147 12.7728C16.9202 12.6673 16.9795 12.5242 16.9795 12.375C16.9795 12.2258 16.9202 12.0828 16.8147 11.9773C16.7093 11.8718 16.5662 11.8125 16.417 11.8125H15.292V7.31252H16.9795C17.1019 7.31239 17.2209 7.27236 17.3185 7.19848C17.416 7.1246 17.4869 7.02091 17.5202 6.90315C17.5535 6.78538 17.5475 6.65996 17.5031 6.54591C17.4587 6.43186 17.3783 6.33541 17.2741 6.27119L9.9616 1.77119C9.87299 1.71671 9.77101 1.68787 9.66699 1.68787C9.56297 1.68787 9.46099 1.71671 9.37238 1.77119L2.05988 6.27119C1.9557 6.33541 1.87531 6.43186 1.8309 6.54591C1.78649 6.65996 1.78049 6.78538 1.8138 6.90315C1.84712 7.02091 1.91794 7.1246 2.01552 7.19848C2.11309 7.27236 2.2321 7.31239 2.35449 7.31252ZM5.16699 7.31252H7.41699V11.8125H5.16699V7.31252ZM10.792 7.31252V11.8125H8.54199V7.31252H10.792ZM14.167 11.8125H11.917V7.31252H14.167V11.8125ZM9.66699 2.91025L14.9925 6.18752H4.34152L9.66699 2.91025ZM18.1045 14.625C18.1045 14.7742 18.0452 14.9173 17.9397 15.0228C17.8343 15.1283 17.6912 15.1875 17.542 15.1875H1.79199C1.64281 15.1875 1.49973 15.1283 1.39424 15.0228C1.28876 14.9173 1.22949 14.7742 1.22949 14.625C1.22949 14.4758 1.28876 14.3328 1.39424 14.2273C1.49973 14.1218 1.64281 14.0625 1.79199 14.0625H17.542C17.6912 14.0625 17.8343 14.1218 17.9397 14.2273C18.0452 14.3328 18.1045 14.4758 18.1045 14.625Z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
</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;
|