adata-ui 3.1.41 → 3.1.42
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/Header.vue +2 -0
- package/dist/runtime/components/Header.vue.d.ts +1 -0
- package/dist/runtime/components/Tag.vue +4 -4
- package/dist/runtime/components/header/ListItem.vue +1 -1
- package/dist/runtime/components/header/TopHeader.vue +4 -3
- package/dist/runtime/components/header/TopHeader.vue.d.ts +1 -0
- package/dist/runtime/components/modals/id/IdLoginModal.vue +5 -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 +11 -21
- 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/ru.js +1 -1
- package/dist/runtime/plugins/toast.d.ts +1 -503
- 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>
|
|
@@ -17,6 +17,7 @@ const props = defineProps({
|
|
|
17
17
|
rate: { type: String, required: false, default: "\u0411\u0430\u0437\u043E\u0432\u044B\u0439" },
|
|
18
18
|
daysRemaining: { type: Number, required: false, default: 0 },
|
|
19
19
|
limitRemaining: { type: Number, required: false, default: 0 },
|
|
20
|
+
limitRemainingLabel: { type: String, required: false },
|
|
20
21
|
balance: { type: Number, required: false, default: 0 },
|
|
21
22
|
isAuthenticated: { type: Boolean, required: false, default: true },
|
|
22
23
|
showLogIn: { type: Boolean, required: false, default: true },
|
|
@@ -72,6 +73,7 @@ onBeforeMount(() => {
|
|
|
72
73
|
:is-authenticated="isAuthenticated"
|
|
73
74
|
:module-name="module"
|
|
74
75
|
:limit-remaining="limitRemaining"
|
|
76
|
+
:limit-remaining-label="limitRemainingLabel"
|
|
75
77
|
/>
|
|
76
78
|
<header
|
|
77
79
|
class="relative h-16 border-b border-deepblue-900/10 bg-white dark:border-gray-200/10 dark:bg-gray-900"
|
|
@@ -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>
|
|
@@ -13,6 +13,7 @@ const { t } = useI18n();
|
|
|
13
13
|
const props = defineProps({
|
|
14
14
|
daysRemaining: { type: Number, required: true },
|
|
15
15
|
limitRemaining: { type: Number, required: true },
|
|
16
|
+
limitRemainingLabel: { type: String, required: false },
|
|
16
17
|
moduleName: { type: String, required: false, default: "counterparty" },
|
|
17
18
|
isAuthenticated: { type: Boolean, required: true }
|
|
18
19
|
});
|
|
@@ -100,8 +101,8 @@ const closeMessage = () => {
|
|
|
100
101
|
v-if="!isOpenNotification || !systemMessage"
|
|
101
102
|
class="hidden min-h-10 bg-gray-50 dark:bg-gray-950 lg:block"
|
|
102
103
|
>
|
|
103
|
-
<div class="a-container flex justify-between py-2 text-sm">
|
|
104
|
-
<div class="flex items-center">
|
|
104
|
+
<div class="a-container flex justify-between items-center py-2 text-sm">
|
|
105
|
+
<div class="flex items-center leading-[24px]">
|
|
105
106
|
<div
|
|
106
107
|
v-for="currency in currencies"
|
|
107
108
|
:key="currency.currency"
|
|
@@ -130,7 +131,7 @@ const closeMessage = () => {
|
|
|
130
131
|
class="flex items-center gap-5"
|
|
131
132
|
>
|
|
132
133
|
<div v-if="limitRemaining != null || limitRemaining != void 0">
|
|
133
|
-
<span class="mr-2 text-xs">{{ t("header.top.requestLimit") }}</span>
|
|
134
|
+
<span class="mr-2 text-xs">{{ limitRemainingLabel ?? t("header.top.requestLimit") }}</span>
|
|
134
135
|
<a-status-badge size="sm">
|
|
135
136
|
{{ limitRemaining }}
|
|
136
137
|
</a-status-badge>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { navigateToLocalizedPage } from "#adata-ui/utils/localizedNavigation";
|
|
3
3
|
import * as z from "zod";
|
|
4
4
|
import { ref, computed, reactive, onMounted, onBeforeUnmount } from "vue";
|
|
5
|
-
import { useCookie, useNuxtApp, useAppConfig, useI18n, navigateTo } from "#imports";
|
|
5
|
+
import { useCookie, useNuxtApp, useAppConfig, useI18n, navigateTo, useRoute } from "#imports";
|
|
6
6
|
import { useIdModals } from "#adata-ui/composables/useIdModals";
|
|
7
7
|
import { useUrls } from "#adata-ui/utils/useUrls";
|
|
8
8
|
import { removeTrailingSlash } from "#adata-ui/utils/removeTrailingSlash";
|
|
@@ -10,6 +10,7 @@ const { $toast } = useNuxtApp();
|
|
|
10
10
|
const { commonAuth } = useAppConfig();
|
|
11
11
|
const { t, locale } = useI18n();
|
|
12
12
|
const { pk, landing } = useUrls();
|
|
13
|
+
const route = useRoute();
|
|
13
14
|
const regex = /^\/counterparty\/main\/company\/\d+\/basic-info$/;
|
|
14
15
|
const { loginModal, registrationModal, recoveryModal, confirmAccountOtpModal, twoFactorModal, intermediateState } = useIdModals();
|
|
15
16
|
const authApiURL = commonAuth.authApiURL;
|
|
@@ -114,8 +115,11 @@ async function submit() {
|
|
|
114
115
|
$toast.success(t("reuse.successfully"));
|
|
115
116
|
loginModal.value = false;
|
|
116
117
|
const path = window.location.pathname;
|
|
118
|
+
const redirectUrl = route.query.redirect;
|
|
117
119
|
if (regex.test(path)) {
|
|
118
120
|
navigateTo(`${pk}/company/${path.split("/")[4]}`, { external: true });
|
|
121
|
+
} else if (redirectUrl) {
|
|
122
|
+
navigateTo(redirectUrl, { external: true });
|
|
119
123
|
} else {
|
|
120
124
|
window.location.reload();
|
|
121
125
|
}
|
|
@@ -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: null, 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: () =>
|
|
1
|
+
export declare const useCurrentModule: () => any;
|
|
2
|
+
export declare const useContacts: () => any;
|
|
@@ -1,23 +1,13 @@
|
|
|
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:
|
|
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
|
-
}>;
|
|
2
|
+
accessModal: any;
|
|
3
|
+
loginModal: any;
|
|
4
|
+
twoFactorModal: any;
|
|
5
|
+
registrationModal: any;
|
|
6
|
+
confirmAccountOtpModal: any;
|
|
7
|
+
recoveryModal: any;
|
|
8
|
+
resetPasswordOtpModal: any;
|
|
9
|
+
newPasswordModal: any;
|
|
10
|
+
passwordSuccessfulModal: any;
|
|
11
|
+
confirmSuccessfulModal: any;
|
|
12
|
+
intermediateState: any;
|
|
23
13
|
};
|
package/dist/runtime/i18n.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: any;
|
|
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>
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
|
|
3
|
-
</script>
|
|
4
|
-
|
|
5
|
-
<template>
|
|
6
|
-
<svg
|
|
7
|
-
width="17"
|
|
8
|
-
height="16"
|
|
9
|
-
viewBox="0 0 17 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="M13.1278 2.05C12.9541 2.05 12.7822 2.0842 12.6218 2.15065C12.4613 2.2171 12.3156 2.3145 12.1928 2.43728L3.47449 11.1556L2.77325 13.7268L5.34444 13.0255L14.0627 4.30723C14.1855 4.18445 14.2829 4.03868 14.3494 3.87826C14.4158 3.71784 14.45 3.5459 14.45 3.37226C14.45 3.19861 14.4158 3.02667 14.3494 2.86625C14.2829 2.70583 14.1855 2.56006 14.0627 2.43728C13.94 2.3145 13.7942 2.2171 13.6338 2.15065C13.4734 2.0842 13.3014 2.05 13.1278 2.05ZM12.22 1.18058C12.5078 1.06136 12.8162 1 13.1278 1C13.4393 1 13.7478 1.06136 14.0356 1.18058C14.3234 1.29979 14.5849 1.47453 14.8052 1.69482C15.0255 1.9151 15.2002 2.17662 15.3195 2.46443C15.4387 2.75225 15.5 3.06073 15.5 3.37226C15.5 3.68378 15.4387 3.99226 15.3195 4.28008C15.2002 4.5679 15.0255 4.82941 14.8052 5.0497L5.98831 13.8666C5.92371 13.9312 5.84336 13.9778 5.75522 14.0019L2.16315 14.9815C1.98139 15.0311 1.787 14.9795 1.65378 14.8463C1.52056 14.713 1.46894 14.5186 1.51851 14.3369L2.49817 10.7448C2.52221 10.6567 2.56883 10.5763 2.63344 10.5117L11.4503 1.69482C11.6706 1.47453 11.9321 1.29979 12.22 1.18058Z"
|
|
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="17"
|
|
8
|
+
height="16"
|
|
9
|
+
viewBox="0 0 17 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="M13.1278 2.05C12.9541 2.05 12.7822 2.0842 12.6218 2.15065C12.4613 2.2171 12.3156 2.3145 12.1928 2.43728L3.47449 11.1556L2.77325 13.7268L5.34444 13.0255L14.0627 4.30723C14.1855 4.18445 14.2829 4.03868 14.3494 3.87826C14.4158 3.71784 14.45 3.5459 14.45 3.37226C14.45 3.19861 14.4158 3.02667 14.3494 2.86625C14.2829 2.70583 14.1855 2.56006 14.0627 2.43728C13.94 2.3145 13.7942 2.2171 13.6338 2.15065C13.4734 2.0842 13.3014 2.05 13.1278 2.05ZM12.22 1.18058C12.5078 1.06136 12.8162 1 13.1278 1C13.4393 1 13.7478 1.06136 14.0356 1.18058C14.3234 1.29979 14.5849 1.47453 14.8052 1.69482C15.0255 1.9151 15.2002 2.17662 15.3195 2.46443C15.4387 2.75225 15.5 3.06073 15.5 3.37226C15.5 3.68378 15.4387 3.99226 15.3195 4.28008C15.2002 4.5679 15.0255 4.82941 14.8052 5.0497L5.98831 13.8666C5.92371 13.9312 5.84336 13.9778 5.75522 14.0019L2.16315 14.9815C1.98139 15.0311 1.787 14.9795 1.65378 14.8463C1.52056 14.713 1.46894 14.5186 1.51851 14.3369L2.49817 10.7448C2.52221 10.6567 2.56883 10.5763 2.63344 10.5117L11.4503 1.69482C11.6706 1.47453 11.9321 1.29979 12.22 1.18058Z"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<style scoped>
|
|
23
|
+
|
|
24
|
+
</style>
|