adata-ui 3.1.58 → 3.1.60
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/NewFooter.vue +2 -2
- package/dist/runtime/components/SidePanel.vue.d.ts +2 -2
- package/dist/runtime/components/Tag.vue +4 -4
- package/dist/runtime/components/accordion/Accordion.vue.d.ts +2 -2
- package/dist/runtime/components/forms/input/password/InputPassword.vue.d.ts +1 -1
- package/dist/runtime/components/forms/input/textarea/ATextarea.vue.d.ts +1 -1
- package/dist/runtime/components/header/ListItem.vue +1 -1
- package/dist/runtime/components/header/ProfileMenu.vue +13 -4
- package/dist/runtime/components/radio-button/RadioButton.vue.d.ts +1 -1
- package/dist/runtime/components/tree-select/components/tree-select-nodes.vue +1 -1
- package/dist/runtime/composables/projectState.d.ts +2 -2
- package/dist/runtime/composables/useIdModals.d.ts +21 -11
- package/dist/runtime/composables/useNavigationLInks.d.ts +3 -3
- package/dist/runtime/composables/usePayment.d.ts +5 -5
- package/dist/runtime/i18n/i18n.config.d.ts +9 -0
- package/dist/runtime/i18n.d.ts +1 -1
- package/dist/runtime/icons/arrow/arrow-right.vue +24 -24
- package/dist/runtime/icons/calendar.vue +24 -24
- 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 +3 -0
- package/dist/runtime/lang/kk.js +3 -0
- package/dist/runtime/lang/ru.d.ts +3 -0
- package/dist/runtime/lang/ru.js +3 -0
- package/dist/runtime/plugins/toast.d.ts +503 -1
- package/dist/runtime/server/tsconfig.json +3 -3
- package/dist/runtime/utils/localizedNavigation.d.ts +1 -1
- 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>
|
|
@@ -39,12 +39,12 @@ type __VLS_Slots = {} & {
|
|
|
39
39
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
40
40
|
"update:modelValue": (value: any) => any;
|
|
41
41
|
} & {
|
|
42
|
-
closed: () => any;
|
|
43
42
|
opened: () => any;
|
|
43
|
+
closed: () => any;
|
|
44
44
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
45
45
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
46
|
-
onClosed?: (() => any) | undefined;
|
|
47
46
|
onOpened?: (() => any) | undefined;
|
|
47
|
+
onClosed?: (() => any) | undefined;
|
|
48
48
|
}>, {
|
|
49
49
|
side: Side;
|
|
50
50
|
width: string;
|
|
@@ -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,13 +17,13 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
17
17
|
handelOpen: () => void;
|
|
18
18
|
handelClose: () => void;
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
|
-
open: () => any;
|
|
21
20
|
close: () => any;
|
|
22
21
|
toggle: (isOpen: boolean) => any;
|
|
22
|
+
open: () => any;
|
|
23
23
|
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
24
|
-
onOpen?: (() => any) | undefined;
|
|
25
24
|
onClose?: (() => any) | undefined;
|
|
26
25
|
onToggle?: ((isOpen: boolean) => any) | undefined;
|
|
26
|
+
onOpen?: (() => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
size: import("./types.js").Size;
|
|
29
29
|
color: import("./types.js").Color;
|
|
@@ -7,8 +7,8 @@ interface Props {
|
|
|
7
7
|
}
|
|
8
8
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
9
9
|
size: "sm" | "md";
|
|
10
|
-
disabled: boolean;
|
|
11
10
|
error: string;
|
|
11
|
+
disabled: boolean;
|
|
12
12
|
required: boolean;
|
|
13
13
|
label: string;
|
|
14
14
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
24
24
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
size: "sm" | "md";
|
|
27
|
-
disabled: boolean;
|
|
28
27
|
error: string | boolean;
|
|
28
|
+
disabled: boolean;
|
|
29
29
|
required: boolean;
|
|
30
30
|
label: string;
|
|
31
31
|
readonly: boolean;
|
|
@@ -18,15 +18,20 @@ defineEmits(["logout"]);
|
|
|
18
18
|
</script>
|
|
19
19
|
|
|
20
20
|
<template>
|
|
21
|
-
<dropdown-menu-root
|
|
21
|
+
<dropdown-menu-root
|
|
22
|
+
v-model:open="profileMenuOpen"
|
|
23
|
+
:modal="false"
|
|
24
|
+
>
|
|
22
25
|
<dropdown-menu-trigger>
|
|
23
26
|
<div
|
|
24
27
|
v-show="isAuthenticated"
|
|
25
28
|
class="hidden cursor-pointer items-center gap-2 text-sm font-semibold lg:flex"
|
|
26
|
-
@click.stop="profileMenuOpen = true"
|
|
27
29
|
>
|
|
28
30
|
<span class="whitespace-nowrap">{{ email }}</span>
|
|
29
|
-
<i-chevron-down
|
|
31
|
+
<i-chevron-down
|
|
32
|
+
class="transition transform duration-[0.12s]"
|
|
33
|
+
:class="{ 'rotate-180': profileMenuOpen }"
|
|
34
|
+
/>
|
|
30
35
|
</div>
|
|
31
36
|
</dropdown-menu-trigger>
|
|
32
37
|
<dropdown-menu-portal>
|
|
@@ -34,7 +39,7 @@ defineEmits(["logout"]);
|
|
|
34
39
|
side="bottom"
|
|
35
40
|
align="end"
|
|
36
41
|
:side-offset="20"
|
|
37
|
-
class="shadow-md"
|
|
42
|
+
class="shadow-md dropdown-menu-animation"
|
|
38
43
|
>
|
|
39
44
|
<adt-header-profile-menu-content
|
|
40
45
|
:email="email"
|
|
@@ -54,3 +59,7 @@ defineEmits(["logout"]);
|
|
|
54
59
|
</dropdown-menu-portal>
|
|
55
60
|
</dropdown-menu-root>
|
|
56
61
|
</template>
|
|
62
|
+
|
|
63
|
+
<style>
|
|
64
|
+
.dropdown-menu-animation{animation:.12s ease-out forwards;transform-origin:top}.dropdown-menu-animation[data-state=open]{animation-name:slide-down}.dropdown-menu-animation[data-state=closed]{animation-name:slide-up}@keyframes slide-down{0%{opacity:0;transform:translateY(-20px)}}@keyframes slide-up{to{opacity:0;transform:translateY(-20px)}}
|
|
65
|
+
</style>
|
|
@@ -22,8 +22,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
|
|
|
22
22
|
} & {
|
|
23
23
|
change: () => any;
|
|
24
24
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
25
|
-
"onUpdate:modelValue"?: ((value: string | number | boolean | null | undefined) => any) | undefined;
|
|
26
25
|
onChange?: (() => any) | undefined;
|
|
26
|
+
"onUpdate:modelValue"?: ((value: string | number | boolean | null | undefined) => any) | undefined;
|
|
27
27
|
}>, {
|
|
28
28
|
name: string;
|
|
29
29
|
size: "lg" | "sm";
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
import IChevronDown from "#icons/arrow/chevron-down.vue";
|
|
83
83
|
import CheckboxActive from "#icons/checkbox/checkbox-active.vue";
|
|
84
84
|
const props = defineProps({
|
|
85
|
-
node: { type:
|
|
85
|
+
node: { type: Object, required: true },
|
|
86
86
|
toggleExpand: { type: Function, required: true },
|
|
87
87
|
toggleCheckbox: { type: Function, required: true },
|
|
88
88
|
type: { type: String, required: true }
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const useCurrentModule: () =>
|
|
2
|
-
export declare const useContacts: () => any
|
|
1
|
+
export declare const useCurrentModule: () => import("vue").Ref<string, string>;
|
|
2
|
+
export declare const useContacts: () => import("vue").Ref<any, any>;
|
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
export declare function useIdModals(): {
|
|
2
|
-
accessModal:
|
|
3
|
-
loginModal:
|
|
4
|
-
twoFactorModal:
|
|
5
|
-
registrationModal:
|
|
6
|
-
confirmAccountOtpModal:
|
|
7
|
-
recoveryModal:
|
|
8
|
-
resetPasswordOtpModal:
|
|
9
|
-
newPasswordModal:
|
|
10
|
-
passwordSuccessfulModal:
|
|
11
|
-
confirmSuccessfulModal:
|
|
12
|
-
intermediateState:
|
|
2
|
+
accessModal: import("vue").Ref<boolean, boolean>;
|
|
3
|
+
loginModal: import("vue").Ref<boolean, boolean>;
|
|
4
|
+
twoFactorModal: import("vue").Ref<boolean, boolean>;
|
|
5
|
+
registrationModal: import("vue").Ref<boolean, boolean>;
|
|
6
|
+
confirmAccountOtpModal: import("vue").Ref<boolean, boolean>;
|
|
7
|
+
recoveryModal: import("vue").Ref<boolean, boolean>;
|
|
8
|
+
resetPasswordOtpModal: import("vue").Ref<boolean, boolean>;
|
|
9
|
+
newPasswordModal: import("vue").Ref<boolean, boolean>;
|
|
10
|
+
passwordSuccessfulModal: import("vue").Ref<boolean, boolean>;
|
|
11
|
+
confirmSuccessfulModal: import("vue").Ref<boolean, boolean>;
|
|
12
|
+
intermediateState: import("vue").Ref<{
|
|
13
|
+
email: string;
|
|
14
|
+
password: string;
|
|
15
|
+
otp: string;
|
|
16
|
+
token: string;
|
|
17
|
+
}, {
|
|
18
|
+
email: string;
|
|
19
|
+
password: string;
|
|
20
|
+
otp: string;
|
|
21
|
+
token: string;
|
|
22
|
+
}>;
|
|
13
23
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const useServicesLinks: () => {
|
|
2
|
-
title:
|
|
3
|
-
icon: any
|
|
4
|
-
to:
|
|
2
|
+
title: string;
|
|
3
|
+
icon: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4
|
+
to: string;
|
|
5
5
|
}[];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare function usePayment(): {
|
|
2
|
-
rateId:
|
|
3
|
-
topUpSidePanel:
|
|
4
|
-
methodSidePanel:
|
|
5
|
-
kaspiQRSidePanel:
|
|
6
|
-
kaspiRedirectSidePanel:
|
|
2
|
+
rateId: import("vue").Ref<string, string>;
|
|
3
|
+
topUpSidePanel: import("vue").Ref<boolean, boolean>;
|
|
4
|
+
methodSidePanel: import("vue").Ref<boolean, boolean>;
|
|
5
|
+
kaspiQRSidePanel: import("vue").Ref<boolean, boolean>;
|
|
6
|
+
kaspiRedirectSidePanel: import("vue").Ref<boolean, boolean>;
|
|
7
7
|
payByCard: (sum: number, rate?: any) => Promise<void>;
|
|
8
8
|
};
|
|
@@ -384,6 +384,9 @@ declare const _default: {
|
|
|
384
384
|
searchTenders: string;
|
|
385
385
|
purchasePlans: string;
|
|
386
386
|
};
|
|
387
|
+
zakupki: {
|
|
388
|
+
title: string;
|
|
389
|
+
};
|
|
387
390
|
fines: {
|
|
388
391
|
title: string;
|
|
389
392
|
checkFines: string;
|
|
@@ -1154,6 +1157,9 @@ declare const _default: {
|
|
|
1154
1157
|
searchTenders: string;
|
|
1155
1158
|
purchasePlans: string;
|
|
1156
1159
|
};
|
|
1160
|
+
zakupki: {
|
|
1161
|
+
title: string;
|
|
1162
|
+
};
|
|
1157
1163
|
fines: {
|
|
1158
1164
|
title: string;
|
|
1159
1165
|
checkFines: string;
|
|
@@ -1924,6 +1930,9 @@ declare const _default: {
|
|
|
1924
1930
|
searchTenders: string;
|
|
1925
1931
|
purchasePlans: string;
|
|
1926
1932
|
};
|
|
1933
|
+
zakupki: {
|
|
1934
|
+
title: string;
|
|
1935
|
+
};
|
|
1927
1936
|
fines: {
|
|
1928
1937
|
title: string;
|
|
1929
1938
|
checkFines: string;
|
package/dist/runtime/i18n.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("#app").Plugin<Record<string, unknown>> & import("#app").ObjectPlugin<Record<string, unknown>>;
|
|
2
2
|
export default _default;
|
|
@@ -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>
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
|
-
<template>
|
|
6
|
-
<svg
|
|
7
|
-
width="16"
|
|
8
|
-
height="16"
|
|
9
|
-
viewBox="0 0 16 16"
|
|
10
|
-
fill="none"
|
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
-
>
|
|
13
|
-
<path
|
|
14
|
-
fill-rule="evenodd"
|
|
15
|
-
clip-rule="evenodd"
|
|
16
|
-
d="M10.5669 1C10.8568 1 11.0919 1.23505 11.0919 1.525V2.295H12.4919C13.495 2.295 14.3002 3.11434 14.3002 4.115V6.70493V13.18C14.3002 14.1807 13.495 15 12.4919 15H3.50853C2.50534 15 1.7002 14.1807 1.7002 13.18V6.70493V4.115C1.7002 3.11434 2.50534 2.295 3.50853 2.295H4.90857V1.525C4.90857 1.23505 5.14362 1 5.43356 1C5.72351 1 5.95856 1.23505 5.95856 1.525V2.295H10.0419V1.525C10.0419 1.23505 10.2769 1 10.5669 1ZM4.90857 3.345V4.11439C4.90857 4.40434 5.14362 4.63939 5.43356 4.63939C5.72351 4.63939 5.95856 4.40434 5.95856 4.11439V3.345H10.0419V4.11439C10.0419 4.40434 10.2769 4.63939 10.5669 4.63939C10.8568 4.63939 11.0919 4.40434 11.0919 4.11439V3.345H12.4919C12.9062 3.345 13.2502 3.68525 13.2502 4.115V6.17993H2.75019V4.115C2.75019 3.68525 3.09418 3.345 3.50853 3.345H4.90857ZM13.2502 7.22993V13.18C13.2502 13.6098 12.9062 13.95 12.4919 13.95H3.50853C3.09418 13.95 2.75019 13.6098 2.75019 13.18V7.22993H13.2502Z"
|
|
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="16"
|
|
8
|
+
height="16"
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill-rule="evenodd"
|
|
15
|
+
clip-rule="evenodd"
|
|
16
|
+
d="M10.5669 1C10.8568 1 11.0919 1.23505 11.0919 1.525V2.295H12.4919C13.495 2.295 14.3002 3.11434 14.3002 4.115V6.70493V13.18C14.3002 14.1807 13.495 15 12.4919 15H3.50853C2.50534 15 1.7002 14.1807 1.7002 13.18V6.70493V4.115C1.7002 3.11434 2.50534 2.295 3.50853 2.295H4.90857V1.525C4.90857 1.23505 5.14362 1 5.43356 1C5.72351 1 5.95856 1.23505 5.95856 1.525V2.295H10.0419V1.525C10.0419 1.23505 10.2769 1 10.5669 1ZM4.90857 3.345V4.11439C4.90857 4.40434 5.14362 4.63939 5.43356 4.63939C5.72351 4.63939 5.95856 4.40434 5.95856 4.11439V3.345H10.0419V4.11439C10.0419 4.40434 10.2769 4.63939 10.5669 4.63939C10.8568 4.63939 11.0919 4.40434 11.0919 4.11439V3.345H12.4919C12.9062 3.345 13.2502 3.68525 13.2502 4.115V6.17993H2.75019V4.115C2.75019 3.68525 3.09418 3.345 3.50853 3.345H4.90857ZM13.2502 7.22993V13.18C13.2502 13.6098 12.9062 13.95 12.4919 13.95H3.50853C3.09418 13.95 2.75019 13.6098 2.75019 13.18V7.22993H13.2502Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<style scoped>
|
|
23
|
+
|
|
24
|
+
</style>
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
|
-
<template>
|
|
6
|
-
<svg
|
|
7
|
-
width="16"
|
|
8
|
-
height="16"
|
|
9
|
-
viewBox="0 0 16 16"
|
|
10
|
-
fill="none"
|
|
11
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
-
>
|
|
13
|
-
<path
|
|
14
|
-
d="M8.52496 1.525C8.52496 1.23505 8.28991 1 7.99996 1C7.71001 1 7.47496 1.23505 7.47496 1.525V9.97001L6.21285 8.7079C6.00783 8.50288 5.67542 8.50288 5.4704 8.7079C5.26537 8.91293 5.26537 9.24534 5.4704 9.45036L7.62872 11.6087C7.72717 11.7071 7.86071 11.7625 7.99994 11.7625C8.13918 11.7625 8.27272 11.7071 8.37117 11.6087L10.5295 9.45036C10.7345 9.24534 10.7345 8.91293 10.5295 8.7079C10.3245 8.50288 9.99206 8.50288 9.78704 8.7079L8.52496 9.96999V1.525Z"
|
|
15
|
-
fill="currentColor"
|
|
16
|
-
/>
|
|
17
|
-
<path
|
|
18
|
-
d="M1.525 10.7124C1.81494 10.7124 2.04999 10.9475 2.04999 11.2374V13.9499H13.9499V11.2374C13.9499 10.9475 14.185 10.7124 14.4749 10.7124C14.7649 10.7124 14.9999 10.9475 14.9999 11.2374V14.4749C14.9999 14.7649 14.7649 14.9999 14.4749 14.9999H1.525C1.23505 14.9999 1 14.7649 1 14.4749V11.2374C1 10.9475 1.23505 10.7124 1.525 10.7124Z"
|
|
19
|
-
fill="currentColor"
|
|
20
|
-
/>
|
|
21
|
-
</svg>
|
|
22
|
-
</template>
|
|
23
|
-
|
|
24
|
-
<style scoped>
|
|
25
|
-
|
|
26
|
-
</style>
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<svg
|
|
7
|
+
width="16"
|
|
8
|
+
height="16"
|
|
9
|
+
viewBox="0 0 16 16"
|
|
10
|
+
fill="none"
|
|
11
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M8.52496 1.525C8.52496 1.23505 8.28991 1 7.99996 1C7.71001 1 7.47496 1.23505 7.47496 1.525V9.97001L6.21285 8.7079C6.00783 8.50288 5.67542 8.50288 5.4704 8.7079C5.26537 8.91293 5.26537 9.24534 5.4704 9.45036L7.62872 11.6087C7.72717 11.7071 7.86071 11.7625 7.99994 11.7625C8.13918 11.7625 8.27272 11.7071 8.37117 11.6087L10.5295 9.45036C10.7345 9.24534 10.7345 8.91293 10.5295 8.7079C10.3245 8.50288 9.99206 8.50288 9.78704 8.7079L8.52496 9.96999V1.525Z"
|
|
15
|
+
fill="currentColor"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M1.525 10.7124C1.81494 10.7124 2.04999 10.9475 2.04999 11.2374V13.9499H13.9499V11.2374C13.9499 10.9475 14.185 10.7124 14.4749 10.7124C14.7649 10.7124 14.9999 10.9475 14.9999 11.2374V14.4749C14.9999 14.7649 14.7649 14.9999 14.4749 14.9999H1.525C1.23505 14.9999 1 14.7649 1 14.4749V11.2374C1 10.9475 1.23505 10.7124 1.525 10.7124Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
21
|
+
</svg>
|
|
22
|
+
</template>
|
|
23
|
+
|
|
24
|
+
<style scoped>
|
|
25
|
+
|
|
26
|
+
</style>
|