adata-ui 4.0.9 → 4.0.11
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/module.mjs +2 -1
- package/dist/runtime/components/Alert.vue +62 -0
- package/dist/runtime/components/Alert.vue.d.ts +29 -0
- package/dist/runtime/components/ColorMode.vue +44 -0
- package/dist/runtime/components/ColorMode.vue.d.ts +2 -0
- package/dist/runtime/components/Footer.vue +171 -6
- package/dist/runtime/components/FooterAccordion.vue +46 -4
- package/dist/runtime/components/FooterAccordion.vue.d.ts +10 -1
- package/dist/runtime/components/Header.vue +35 -21
- package/dist/runtime/components/Tag.vue.d.ts +1 -1
- package/dist/runtime/components/Toggle.vue +138 -0
- package/dist/runtime/components/Toggle.vue.d.ts +39 -0
- package/dist/runtime/components/button/Button.vue +133 -0
- package/dist/runtime/components/button/Button.vue.d.ts +37 -0
- package/dist/runtime/components/button/types.d.ts +21 -0
- package/dist/runtime/components/button/types.js +0 -0
- package/dist/runtime/components/header/ProductMenu.vue +236 -3
- package/dist/runtime/components/header/ProfileMenu.vue +69 -15
- package/dist/runtime/components/header/TopHeader.vue +9 -6
- package/dist/runtime/i18n.d.ts +1 -1
- package/dist/runtime/icons/arrow/chevron-down.vue +19 -0
- package/dist/runtime/icons/arrow/chevron-down.vue.d.ts +2 -0
- package/dist/runtime/icons/bookmark.vue +19 -0
- package/dist/runtime/icons/bookmark.vue.d.ts +2 -0
- package/dist/runtime/icons/history.vue +19 -0
- package/dist/runtime/icons/history.vue.d.ts +2 -0
- package/dist/runtime/icons/lock.vue +19 -0
- package/dist/runtime/icons/lock.vue.d.ts +2 -0
- package/dist/runtime/icons/message.vue +24 -0
- package/dist/runtime/icons/message.vue.d.ts +2 -0
- package/dist/runtime/icons/moon.vue +10 -0
- package/dist/runtime/icons/moon.vue.d.ts +2 -0
- package/dist/runtime/icons/sun.vue +14 -0
- package/dist/runtime/icons/sun.vue.d.ts +2 -0
- package/dist/runtime/icons/warning-triangle.vue +29 -0
- package/dist/runtime/icons/warning-triangle.vue.d.ts +2 -0
- package/package.json +1 -1
- package/dist/runtime/composables/useHeaderNavigationLinks.d.ts +0 -28
- package/dist/runtime/composables/useHeaderNavigationLinks.js +0 -238
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { computed, onBeforeMount, ref } from "vue";
|
|
3
|
+
import AStatusBadge from "../Tag.vue";
|
|
3
4
|
import { useCookie } from "#app";
|
|
4
5
|
import Usd from "#icons/currency/usd.vue";
|
|
5
6
|
import Eur from "#icons/currency/eur.vue";
|
|
@@ -7,6 +8,8 @@ import Rub from "#icons/currency/rub.vue";
|
|
|
7
8
|
import Yuan from "#icons/currency/yuan.vue";
|
|
8
9
|
import XMark from "#icons/x-mark.vue";
|
|
9
10
|
import Down from "#icons/currency/down.vue";
|
|
11
|
+
import { useI18n } from "#imports";
|
|
12
|
+
const { t } = useI18n();
|
|
10
13
|
const props = defineProps({
|
|
11
14
|
daysRemaining: { type: Number, required: true },
|
|
12
15
|
limitRemaining: { type: Number, required: true },
|
|
@@ -125,16 +128,16 @@ const closeMessage = () => {
|
|
|
125
128
|
class="flex items-center gap-5"
|
|
126
129
|
>
|
|
127
130
|
<div v-if="limitRemaining != null || limitRemaining != void 0">
|
|
128
|
-
<span class="mr-2 text-xs">t(
|
|
129
|
-
<
|
|
131
|
+
<span class="mr-2 text-xs">{{ t("header.top.requestLimit") }}</span>
|
|
132
|
+
<a-status-badge size="sm">
|
|
130
133
|
{{ limitRemaining }}
|
|
131
|
-
</
|
|
134
|
+
</a-status-badge>
|
|
132
135
|
</div>
|
|
133
136
|
<div v-if="daysRemaining">
|
|
134
|
-
<span class="mr-2 text-xs">t(
|
|
135
|
-
<
|
|
137
|
+
<span class="mr-2 text-xs">{{ t("header.top.daysLeft") }}</span>
|
|
138
|
+
<a-status-badge size="sm">
|
|
136
139
|
{{ limitRemaining }}
|
|
137
|
-
</
|
|
140
|
+
</a-status-badge>
|
|
138
141
|
</div>
|
|
139
142
|
</div>
|
|
140
143
|
</div>
|
package/dist/runtime/i18n.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("
|
|
1
|
+
declare const _default: import("nuxt/app").Plugin<Record<string, unknown>> & import("nuxt/app").ObjectPlugin<Record<string, unknown>>;
|
|
2
2
|
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="https://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill-rule="evenodd"
|
|
11
|
+
clip-rule="evenodd"
|
|
12
|
+
d="M3.16441 5.15703C3.37768 4.94171 3.71681 4.94869 3.92188 5.17263L8 9.62594L12.0781 5.17263C12.2832 4.94869 12.6223 4.94171 12.8356 5.15703C13.0489 5.37235 13.0555 5.72844 12.8504 5.95237L8.38616 10.8274C8.28516 10.9377 8.14572 11 8 11C7.85428 11 7.71484 10.9377 7.61384 10.8274L3.14955 5.95237C2.94449 5.72844 2.95114 5.37235 3.16441 5.15703Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
</script>
|
|
@@ -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,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="https://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill-rule="evenodd"
|
|
11
|
+
clip-rule="evenodd"
|
|
12
|
+
d="M4.49999 2.05C4.27263 2.05 4.05159 2.14269 3.88632 2.31255C3.72057 2.48291 3.62498 2.71694 3.62498 2.96389V13.4383L7.68931 10.4546C7.8742 10.3189 8.12579 10.3189 8.31068 10.4546L12.375 13.4383V2.96389C12.375 2.71694 12.2794 2.48291 12.1137 2.31255C11.9484 2.14269 11.7274 2.05 11.5 2.05H4.49999ZM3.13375 1.58033C3.49358 1.2105 3.98473 1 4.49999 1H11.5C12.0153 1 12.5064 1.2105 12.8662 1.58033C13.2256 1.94967 13.425 2.44761 13.425 2.96389V14.475C13.425 14.6729 13.3137 14.854 13.1372 14.9434C12.9607 15.0328 12.7488 15.0153 12.5893 14.8982L7.99999 11.5291L3.41067 14.8982C3.25115 15.0153 3.03934 15.0328 2.86279 14.9434C2.68625 14.854 2.57498 14.6729 2.57498 14.475V2.96389C2.57498 2.44761 2.7744 1.94967 3.13375 1.58033Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
</script>
|
|
@@ -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,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="16"
|
|
4
|
+
height="16"
|
|
5
|
+
viewBox="0 0 16 16"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="https://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill-rule="evenodd"
|
|
11
|
+
clip-rule="evenodd"
|
|
12
|
+
d="M9.80011 1.6639C8.54695 1.41463 7.248 1.54256 6.06755 2.03153C4.88709 2.52049 3.87813 3.34851 3.16827 4.4109C2.587 5.28083 2.22766 6.27591 2.11654 7.30941L1.89635 7.08921C1.69132 6.88419 1.35891 6.88419 1.15389 7.08921C0.948866 7.29424 0.948866 7.62665 1.15389 7.83167L2.23303 8.91081C2.43805 9.11583 2.77046 9.11583 2.97549 8.91081L4.05462 7.83167C4.25965 7.62665 4.25965 7.29424 4.05462 7.08921C3.8496 6.88419 3.51719 6.88419 3.31217 7.08921L3.18684 7.21454C3.30292 6.42344 3.59347 5.66449 4.04131 4.99424C4.6358 4.10453 5.48077 3.41108 6.46936 3.00159C7.45796 2.5921 8.54578 2.48496 9.59527 2.69372C10.6448 2.90247 11.6088 3.41775 12.3654 4.17439C13.1221 4.93103 13.6373 5.89505 13.8461 6.94453C14.0548 7.99402 13.9477 9.08185 13.5382 10.0704C13.1287 11.059 12.4353 11.904 11.5456 12.4985C10.6558 13.093 9.60983 13.4103 8.53978 13.4103C8.24983 13.4103 8.01478 13.6453 8.01478 13.9353C8.01478 14.2252 8.24983 14.4603 8.53978 14.4603C9.8175 14.4603 11.0665 14.0814 12.1289 13.3715C13.1913 12.6617 14.0193 11.6527 14.5083 10.4723C14.9972 9.2918 15.1252 7.99286 14.8759 6.73969C14.6266 5.48652 14.0114 4.33542 13.1079 3.43193C12.2044 2.52845 11.0533 1.91317 9.80011 1.6639ZM8.53978 4.76939C8.24984 4.76939 8.01479 5.00444 8.01479 5.29438V7.75953L5.4399 10.3344C5.23487 10.5394 5.23487 10.8719 5.4399 11.0769C5.64492 11.2819 5.97733 11.2819 6.18235 11.0769L8.91101 8.34822L9.06478 8.19445V7.97699V5.29438C9.06478 5.00444 8.82973 4.76939 8.53978 4.76939Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
</script>
|
|
@@ -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,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg
|
|
3
|
+
width="24"
|
|
4
|
+
height="24"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
fill="none"
|
|
7
|
+
xmlns="https://www.w3.org/2000/svg"
|
|
8
|
+
>
|
|
9
|
+
<path
|
|
10
|
+
fill-rule="evenodd"
|
|
11
|
+
clip-rule="evenodd"
|
|
12
|
+
d="M9.25996 4.63496C9.98666 3.90826 10.9723 3.5 12 3.5C13.0277 3.5 14.0133 3.90826 14.74 4.63496C15.4667 5.36166 15.875 6.34729 15.875 7.375V10.325H8.125V7.375C8.125 6.34729 8.53326 5.36166 9.25996 4.63496ZM6.625 10.325V7.375C6.625 5.94946 7.19129 4.58231 8.1993 3.5743C9.20731 2.56629 10.5745 2 12 2C13.4255 2 14.7927 2.56629 15.8007 3.5743C16.8087 4.58231 17.375 5.94946 17.375 7.375V10.325H18.475C19.911 10.325 21.075 11.4891 21.075 12.925V19.4C21.075 20.836 19.911 22 18.475 22H5.52505C4.08911 22 2.92505 20.836 2.92505 19.4V12.925C2.92505 11.4891 4.08911 10.325 5.52505 10.325H6.625ZM4.42505 12.925C4.42505 12.3175 4.91754 11.825 5.52505 11.825H18.475C19.0826 11.825 19.575 12.3175 19.575 12.925V19.4C19.575 20.0075 19.0826 20.5 18.475 20.5H5.52505C4.91754 20.5 4.42505 20.0075 4.42505 19.4V12.925Z"
|
|
13
|
+
fill="currentColor"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
</script>
|
|
@@ -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,24 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
</script>
|
|
3
|
+
|
|
4
|
+
<template>
|
|
5
|
+
<svg
|
|
6
|
+
width="17"
|
|
7
|
+
height="16"
|
|
8
|
+
viewBox="0 0 17 16"
|
|
9
|
+
fill="none"
|
|
10
|
+
xmlns="https://www.w3.org/2000/svg"
|
|
11
|
+
class="fill-deepblue-900 dark:fill-gray-200"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
fill-rule="evenodd"
|
|
16
|
+
clip-rule="evenodd"
|
|
17
|
+
d="M8.85849 2.05002C7.99161 2.04776 7.13645 2.2503 6.36267 2.64114L6.36068 2.64214C5.4322 3.10618 4.65126 3.81955 4.10531 4.70235C3.55937 5.58515 3.26999 6.60252 3.26959 7.6405V7.64166C3.26733 8.50855 3.46986 9.3637 3.8607 10.1375C3.92381 10.2624 3.93441 10.4074 3.89015 10.5402L2.85524 13.6449L5.95995 12.61C6.09275 12.5657 6.23773 12.5763 6.36267 12.6395C6.45939 12.6883 6.55739 12.7342 6.65652 12.7772C7.35043 13.0777 8.09997 13.2325 8.85849 13.2306L8.85986 13.7532L8.85966 13.2306C9.89763 13.2302 10.915 12.9408 11.7978 12.3948C12.6806 11.8489 13.394 11.068 13.858 10.1395L13.859 10.1375C14.2499 9.3637 14.4524 8.50854 14.4501 7.64166L14.4501 7.6403V7.29537C14.3713 5.93008 13.7935 4.64114 12.8263 3.6739C11.859 2.70665 10.5701 2.12881 9.20478 2.05002H8.85986L8.85849 2.05002ZM8.86123 14.2806C10.0938 14.2799 11.3018 13.9362 12.3501 13.2879C13.3984 12.6396 14.2455 11.7123 14.7967 10.6099C15.2617 9.68909 15.5027 8.67125 15.5001 7.63971V7.28057C15.5001 7.26936 15.4998 7.25823 15.4991 7.24719C15.4082 5.62023 14.721 4.08374 13.5687 2.93143C12.4154 1.77808 10.8771 1.09067 9.2485 1.00082C9.23887 1.00029 9.22923 1.00002 9.21958 1.00002H8.86053C7.82888 0.997441 6.81119 1.23844 5.89027 1.7034C4.78784 2.25461 3.86057 3.10178 3.21228 4.15008C2.56379 5.1987 2.22006 6.40716 2.21958 7.64009L2.21959 7.64094C2.21738 8.59827 2.42493 9.54355 2.82655 10.4106L1.52876 14.304C1.49322 14.4069 1.48928 14.5215 1.52446 14.633C1.52694 14.6408 1.52961 14.6486 1.53247 14.6564C1.62994 14.9216 1.92126 15.063 2.19116 14.9731L6.08955 13.6736C6.95722 14.0755 7.90321 14.2831 8.86123 14.2806Z"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<style scoped>
|
|
23
|
+
|
|
24
|
+
</style>
|
|
@@ -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 fill="currentColor" height="16" viewBox="0 0 16 16" width="16" xmlns="https://www.w3.org/2000/svg">
|
|
3
|
+
<path
|
|
4
|
+
d="M5.99987 12.6668C5.99987 13.2268 6.08654 13.7735 6.24654 14.2802C3.6865 13.3935 1.75314 11.0401 1.55314 8.28677C1.35314 5.36006 3.03983 2.62668 5.76654 1.48C6.47321 1.18666 6.83322 1.4 6.98655 1.55333C7.13322 1.7 7.33989 2.05334 7.04656 2.72668C6.74655 3.42003 6.59988 4.15337 6.59988 4.91338C6.60655 6.2734 7.13989 7.53342 8.00657 8.5001C6.78655 9.47345 5.99987 10.9801 5.99987 12.6668Z"/>
|
|
5
|
+
<path d="M14.1402 11.8136C12.8202 13.607 10.7268 14.6603 8.49343 14.6603C8.38676 14.6603 8.2801 14.6537 8.17343 14.647C7.50675 14.6203 6.86007 14.4937 6.24673 14.2803C6.08673 13.7737 6.00006 13.227 6.00006 12.667C6.00006 10.9803 6.78674 9.47359 8.00676 8.50024C8.98677 9.60026 10.3935 10.3136 11.9468 10.3803C12.3668 10.4003 12.7868 10.3669 13.2002 10.2936C13.9468 10.1603 14.2469 10.4403 14.3535 10.6203C14.4669 10.8003 14.5869 11.1936 14.1402 11.8136Z"
|
|
6
|
+
opacity="0.4"/>
|
|
7
|
+
</svg>
|
|
8
|
+
</template>
|
|
9
|
+
<script setup lang="ts">
|
|
10
|
+
</script>
|
|
@@ -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,14 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="https://www.w3.org/2000/svg">
|
|
7
|
+
<path opacity="0.4" d="M7.99998 12.6666C10.5773 12.6666 12.6666 10.5772 12.6666 7.99992C12.6666 5.42259 10.5773 3.33325 7.99998 3.33325C5.42265 3.33325 3.33331 5.42259 3.33331 7.99992C3.33331 10.5772 5.42265 12.6666 7.99998 12.6666Z" fill="#FBC920"/>
|
|
8
|
+
<path d="M8.00002 15.3067C7.63335 15.3067 7.33335 15.0334 7.33335 14.6667V14.6134C7.33335 14.2467 7.63335 13.9467 8.00002 13.9467C8.36669 13.9467 8.66669 14.2467 8.66669 14.6134C8.66669 14.9801 8.36669 15.3067 8.00002 15.3067ZM12.76 13.4267C12.5867 13.4267 12.42 13.3601 12.2867 13.2334L12.2 13.1467C11.94 12.8867 11.94 12.4667 12.2 12.2067C12.46 11.9467 12.88 11.9467 13.14 12.2067L13.2267 12.2934C13.4867 12.5534 13.4867 12.9734 13.2267 13.2334C13.1 13.3601 12.9334 13.4267 12.76 13.4267ZM3.24002 13.4267C3.06669 13.4267 2.90002 13.3601 2.76669 13.2334C2.50669 12.9734 2.50669 12.5534 2.76669 12.2934L2.85335 12.2067C3.11335 11.9467 3.53335 11.9467 3.79335 12.2067C4.05335 12.4667 4.05335 12.8867 3.79335 13.1467L3.70669 13.2334C3.58002 13.3601 3.40669 13.4267 3.24002 13.4267ZM14.6667 8.66675H14.6134C14.2467 8.66675 13.9467 8.36675 13.9467 8.00008C13.9467 7.63341 14.2467 7.33342 14.6134 7.33342C14.98 7.33342 15.3067 7.63341 15.3067 8.00008C15.3067 8.36675 15.0334 8.66675 14.6667 8.66675ZM1.38669 8.66675H1.33335C0.966687 8.66675 0.666687 8.36675 0.666687 8.00008C0.666687 7.63341 0.966687 7.33342 1.33335 7.33342C1.70002 7.33342 2.02669 7.63341 2.02669 8.00008C2.02669 8.36675 1.75335 8.66675 1.38669 8.66675ZM12.6734 3.99341C12.5 3.99341 12.3334 3.92675 12.2 3.80008C11.94 3.54008 11.94 3.12008 12.2 2.86008L12.2867 2.77341C12.5467 2.51341 12.9667 2.51341 13.2267 2.77341C13.4867 3.03341 13.4867 3.45341 13.2267 3.71341L13.14 3.80008C13.0134 3.92675 12.8467 3.99341 12.6734 3.99341ZM3.32669 3.99341C3.15335 3.99341 2.98669 3.92675 2.85335 3.80008L2.76669 3.70675C2.50669 3.44675 2.50669 3.02675 2.76669 2.76675C3.02669 2.50675 3.44669 2.50675 3.70669 2.76675L3.79335 2.85342C4.05335 3.11342 4.05335 3.53341 3.79335 3.79341C3.66669 3.92675 3.49335 3.99341 3.32669 3.99341ZM8.00002 2.02675C7.63335 2.02675 7.33335 1.75341 7.33335 1.38675V1.33341C7.33335 0.966748 7.63335 0.666748 8.00002 0.666748C8.36669 0.666748 8.66669 0.966748 8.66669 1.33341C8.66669 1.70008 8.36669 2.02675 8.00002 2.02675Z" fill="#FBC920"/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<style scoped>
|
|
13
|
+
|
|
14
|
+
</style>
|
|
@@ -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,29 @@
|
|
|
1
|
+
<script setup lang="ts"></script>
|
|
2
|
+
|
|
3
|
+
<template>
|
|
4
|
+
<svg
|
|
5
|
+
width="1em"
|
|
6
|
+
height="1em"
|
|
7
|
+
viewBox="0 0 21 18"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
>
|
|
10
|
+
<path
|
|
11
|
+
fill-rule="evenodd"
|
|
12
|
+
clip-rule="evenodd"
|
|
13
|
+
d="M20.8346 15.9914L12.328 0.753631C12.1982 0.526725 12.001 0.336301 11.7581 0.20333C11.5153 0.0703596 11.2361 0 10.9515 0C10.6668 0 10.3877 0.0703596 10.1448 0.20333C9.90195 0.336301 9.70476 0.526725 9.57497 0.753631L1.06841 15.9914C0.949762 16.2023 0.893275 16.4368 0.904309 16.6727C0.915344 16.9087 0.993533 17.1381 1.13145 17.3394C1.26937 17.5406 1.46244 17.707 1.69232 17.8226C1.92221 17.9382 2.18127 17.9993 2.44492 18H19.458C19.7217 17.9993 19.9808 17.9382 20.2106 17.8226C20.4405 17.707 20.6336 17.5406 20.7715 17.3394C20.9094 17.1381 20.9876 16.9087 20.9987 16.6727C21.0097 16.4368 20.9532 16.2023 20.8346 15.9914ZM19.4006 16.5L11.0372 1.51872C11.0214 1.51021 10.9912 1.5 10.9515 1.5C10.9118 1.5 10.8816 1.51021 10.8658 1.51872L2.50238 16.5H19.4006Z"
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
fill-rule="evenodd"
|
|
18
|
+
clip-rule="evenodd"
|
|
19
|
+
d="M11 5.5C11.4142 5.5 11.75 5.83579 11.75 6.25V10.748C11.75 11.1623 11.4142 11.498 11 11.498C10.5858 11.498 10.25 11.1623 10.25 10.748V6.25C10.25 5.83579 10.5858 5.5 11 5.5Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M11.75 13.75C11.75 14.1642 11.4142 14.5 11 14.5C10.5858 14.5 10.25 14.1642 10.25 13.75C10.25 13.3358 10.5858 13 11 13C11.4142 13 11.75 13.3358 11.75 13.75Z"
|
|
24
|
+
fill="currentColor"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
</template>
|
|
28
|
+
|
|
29
|
+
<style scoped></style>
|
|
@@ -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/package.json
CHANGED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export declare const useHeaderNavigationLinks: () => import("vue").ComputedRef<({
|
|
2
|
-
key: string;
|
|
3
|
-
name: string;
|
|
4
|
-
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5
|
-
to: string;
|
|
6
|
-
items: ({
|
|
7
|
-
title: string;
|
|
8
|
-
subtitle: string;
|
|
9
|
-
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10
|
-
to: string;
|
|
11
|
-
} | {
|
|
12
|
-
title: string;
|
|
13
|
-
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
|
-
to: string;
|
|
15
|
-
subtitle?: undefined;
|
|
16
|
-
})[];
|
|
17
|
-
} | {
|
|
18
|
-
key: string;
|
|
19
|
-
name: string;
|
|
20
|
-
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
21
|
-
items: {
|
|
22
|
-
title: string;
|
|
23
|
-
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
24
|
-
subtitle: string;
|
|
25
|
-
to: string;
|
|
26
|
-
}[];
|
|
27
|
-
to?: undefined;
|
|
28
|
-
})[]>;
|
|
@@ -1,238 +0,0 @@
|
|
|
1
|
-
import { PAGES } from "../shared/constants/pages.js";
|
|
2
|
-
import { computed, useI18n } from "#imports";
|
|
3
|
-
import IUsersThree from "#icons/users/users-three.vue";
|
|
4
|
-
import ISearch from "#icons/search.vue";
|
|
5
|
-
import IArrowCircleDown from "#icons/arrow/arrow-circle-down.vue";
|
|
6
|
-
import IUsers from "#icons/users/users.vue";
|
|
7
|
-
import IGlobe from "#icons/globe.vue";
|
|
8
|
-
import IScale from "#icons/scale.vue";
|
|
9
|
-
import ILinkChanin from "#icons/link-chain.vue";
|
|
10
|
-
import IBlock from "#icons/block.vue";
|
|
11
|
-
import IDollar from "#icons/currency/dollar.vue";
|
|
12
|
-
import IWorkBag from "#icons/work-bag.vue";
|
|
13
|
-
import IHdocument from "#icons/document/hdocument.vue";
|
|
14
|
-
import IReceipt from "#icons/receipt/receipt.vue";
|
|
15
|
-
import IHcheck from "#icons/receipt/hcheck.vue";
|
|
16
|
-
import IFile from "#icons/file.vue";
|
|
17
|
-
import ICar from "#icons/avto/car.vue";
|
|
18
|
-
import ICheckCircle from "#icons/check-circle.vue";
|
|
19
|
-
import ITruck from "#icons/avto/truck.vue";
|
|
20
|
-
import IArrowGraphUp from "#icons/arrow/arrow-graph-up.vue";
|
|
21
|
-
import IClipboardText from "#icons/clipboard-text.vue";
|
|
22
|
-
import IMedal from "#icons/medal.vue";
|
|
23
|
-
import ICompany from "#icons/company.vue";
|
|
24
|
-
import IHandshake from "#icons/handshake.vue";
|
|
25
|
-
import ISviazi from "#icons/sviazi.vue";
|
|
26
|
-
import ICalculator from "#icons/calculator.vue";
|
|
27
|
-
import IId from "#icons/document/id.vue";
|
|
28
|
-
import IProfile from "#icons/document/profile.vue";
|
|
29
|
-
export const useHeaderNavigationLinks = () => {
|
|
30
|
-
const { t } = useI18n();
|
|
31
|
-
return computed(() => {
|
|
32
|
-
return [
|
|
33
|
-
{
|
|
34
|
-
key: "pk",
|
|
35
|
-
name: t("header.products.counterparties.label"),
|
|
36
|
-
icon: IUsersThree,
|
|
37
|
-
to: "https://pk.adata.kz",
|
|
38
|
-
items: [
|
|
39
|
-
{
|
|
40
|
-
title: t("header.products.counterparties.items.counterparty.title"),
|
|
41
|
-
subtitle: t("header.products.counterparties.items.counterparty.subtitle"),
|
|
42
|
-
icon: ISearch,
|
|
43
|
-
to: "https://pk.adata.kz" + PAGES.pk.main
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
title: t("header.products.counterparties.items.unloading.title"),
|
|
47
|
-
subtitle: t("header.products.counterparties.items.unloading.subtitle"),
|
|
48
|
-
icon: IArrowCircleDown,
|
|
49
|
-
to: "https://pk.adata.kz" + PAGES.pk.unload
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
title: t("header.products.counterparties.items.wholesale.title"),
|
|
53
|
-
subtitle: t("header.products.counterparties.items.wholesale.subtitle"),
|
|
54
|
-
icon: IUsers,
|
|
55
|
-
to: "https://pk.adata.kz" + PAGES.pk.employees
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
title: t("header.products.counterparties.items.foreign.title"),
|
|
59
|
-
subtitle: t("header.products.counterparties.items.foreign.subtitle"),
|
|
60
|
-
icon: IGlobe,
|
|
61
|
-
to: "https://pk.adata.kz" + PAGES.pk.foreign
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
title: t("header.products.counterparties.items.compare.title"),
|
|
65
|
-
icon: IScale,
|
|
66
|
-
to: "https://pk.adata.kz" + PAGES.pk.compare
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
title: t("header.products.counterparties.items.networks.title"),
|
|
70
|
-
icon: ILinkChanin,
|
|
71
|
-
to: "https://pk.adata.kz" + PAGES.pk.connections
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
title: t("header.products.counterparties.items.sanction.title"),
|
|
75
|
-
icon: IBlock,
|
|
76
|
-
to: "https://pk.adata.kz" + PAGES.pk.sanctions
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
title: t("header.products.counterparties.items.offshore.title"),
|
|
80
|
-
icon: IDollar,
|
|
81
|
-
to: "https://pk.adata.kz" + PAGES.pk.offshore
|
|
82
|
-
}
|
|
83
|
-
]
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
key: "work",
|
|
87
|
-
name: t("header.products.jobs.label"),
|
|
88
|
-
icon: IWorkBag,
|
|
89
|
-
items: [
|
|
90
|
-
{
|
|
91
|
-
title: t("header.products.jobs.items.vacancies.title"),
|
|
92
|
-
icon: IWorkBag,
|
|
93
|
-
subtitle: t("header.products.jobs.items.vacancies.subtitle"),
|
|
94
|
-
to: "https://work.adata.kz" + PAGES.work.vacancy
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
title: t("header.products.jobs.items.resume.title"),
|
|
98
|
-
subtitle: t("header.products.jobs.items.resume.subtitle"),
|
|
99
|
-
icon: IHdocument,
|
|
100
|
-
to: "https://work.adata.kz" + PAGES.work.summary
|
|
101
|
-
}
|
|
102
|
-
]
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
key: "tenders",
|
|
106
|
-
name: t("header.products.tenders.label"),
|
|
107
|
-
icon: IReceipt,
|
|
108
|
-
to: "https://tender.adata.kz",
|
|
109
|
-
items: [
|
|
110
|
-
{
|
|
111
|
-
title: t("header.products.tenders.items.tenders.title"),
|
|
112
|
-
subtitle: t("header.products.tenders.items.tenders.subtitle"),
|
|
113
|
-
icon: ISearch,
|
|
114
|
-
to: "https://tender.adata.kz" + PAGES.tender.main
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
title: t("header.products.tenders.items.procurement.title"),
|
|
118
|
-
subtitle: t("header.products.tenders.items.procurement.subtitle"),
|
|
119
|
-
icon: IHcheck,
|
|
120
|
-
to: "https://tender.adata.kz" + PAGES.tender.plans
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
title: t("header.products.tenders.items.contracts.title"),
|
|
124
|
-
subtitle: t("header.products.tenders.items.contracts.subtitle"),
|
|
125
|
-
icon: IFile,
|
|
126
|
-
to: "https://tender.adata.kz" + PAGES.tender.contracts
|
|
127
|
-
}
|
|
128
|
-
]
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
key: "fines",
|
|
132
|
-
name: t("header.products.fines.label"),
|
|
133
|
-
icon: ICar,
|
|
134
|
-
items: [
|
|
135
|
-
{
|
|
136
|
-
title: t("header.products.fines.items.fines.title"),
|
|
137
|
-
subtitle: t("header.products.fines.items.fines.subtitle"),
|
|
138
|
-
icon: ICheckCircle,
|
|
139
|
-
to: "https://avto.adata.kz" + PAGES.fines.main
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
title: t("header.products.fines.items.auto.title"),
|
|
143
|
-
subtitle: t("header.products.fines.items.auto.subtitle"),
|
|
144
|
-
icon: ICar,
|
|
145
|
-
to: "https://avto.adata.kz" + PAGES.fines.avto
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
title: t("header.products.fines.items.wholesaleAuto.title"),
|
|
149
|
-
subtitle: t("header.products.fines.items.wholesaleAuto.subtitle"),
|
|
150
|
-
icon: ITruck,
|
|
151
|
-
to: "https://avto.adata.kz" + PAGES.fines.bulk
|
|
152
|
-
}
|
|
153
|
-
]
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
key: "analytics",
|
|
157
|
-
name: t("header.products.analytics.label"),
|
|
158
|
-
icon: IArrowGraphUp,
|
|
159
|
-
items: [
|
|
160
|
-
{
|
|
161
|
-
title: t("header.products.analytics.items.procurement.title"),
|
|
162
|
-
subtitle: t("header.products.analytics.items.procurement.subtitle"),
|
|
163
|
-
icon: IClipboardText,
|
|
164
|
-
to: "https://analytics.adata.kz" + PAGES.analytics.analysis
|
|
165
|
-
},
|
|
166
|
-
{
|
|
167
|
-
title: t("header.products.analytics.items.activity.title"),
|
|
168
|
-
subtitle: t("header.products.analytics.items.activity.subtitle"),
|
|
169
|
-
icon: IArrowGraphUp,
|
|
170
|
-
to: "https://analytics.adata.kz" + PAGES.analytics.index
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
title: t("header.products.analytics.items.rate.title"),
|
|
174
|
-
subtitle: t("header.products.analytics.items.rate.subtitle"),
|
|
175
|
-
icon: IMedal,
|
|
176
|
-
to: "https://analytics.adata.kz" + PAGES.analytics.rating
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
title: t("header.products.analytics.items.subjects.title"),
|
|
180
|
-
subtitle: t("header.products.analytics.items.subjects.subtitle"),
|
|
181
|
-
icon: ICompany,
|
|
182
|
-
to: "https://analytics.adata.kz" + PAGES.analytics.business
|
|
183
|
-
}
|
|
184
|
-
]
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
key: "fea",
|
|
188
|
-
name: t("header.products.fea.label"),
|
|
189
|
-
icon: IGlobe,
|
|
190
|
-
items: [
|
|
191
|
-
{
|
|
192
|
-
title: t("header.products.fea.items.i.t"),
|
|
193
|
-
subtitle: t("header.products.fea.items.i.st"),
|
|
194
|
-
icon: IHandshake,
|
|
195
|
-
to: "https://tnved.adata.kz" + PAGES.fea.t
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
title: t("header.products.fea.items.o.t"),
|
|
199
|
-
subtitle: t("header.products.fea.items.o.st"),
|
|
200
|
-
icon: ISviazi,
|
|
201
|
-
to: "https://tnved.adata.kz" + PAGES.fea.o
|
|
202
|
-
},
|
|
203
|
-
{
|
|
204
|
-
title: t("header.products.fea.items.cp.t"),
|
|
205
|
-
subtitle: t("header.products.fea.items.cp.st"),
|
|
206
|
-
icon: ITruck,
|
|
207
|
-
to: "https://tnved.adata.kz" + PAGES.fea.cp
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
title: t("header.products.fea.items.ca.t"),
|
|
211
|
-
subtitle: t("header.products.fea.items.ca.st"),
|
|
212
|
-
icon: ICalculator,
|
|
213
|
-
to: "https://tnved.adata.kz" + PAGES.fea.ca
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
title: t("header.products.fea.items.tr.t"),
|
|
217
|
-
subtitle: t("header.products.fea.items.tr.st"),
|
|
218
|
-
icon: IGlobe,
|
|
219
|
-
to: "https://tnved.adata.kz" + PAGES.fea.tr
|
|
220
|
-
}
|
|
221
|
-
]
|
|
222
|
-
},
|
|
223
|
-
{
|
|
224
|
-
key: "compliance",
|
|
225
|
-
name: t("header.products.compliance.label"),
|
|
226
|
-
icon: IId,
|
|
227
|
-
items: [
|
|
228
|
-
{
|
|
229
|
-
title: t("header.products.compliance.items.l.t"),
|
|
230
|
-
subtitle: t("header.products.compliance.items.l.st"),
|
|
231
|
-
icon: IProfile,
|
|
232
|
-
to: "https://ac.adata.kz/" + PAGES.compliance.l
|
|
233
|
-
}
|
|
234
|
-
]
|
|
235
|
-
}
|
|
236
|
-
];
|
|
237
|
-
});
|
|
238
|
-
};
|