adata-ui 4.0.35 → 4.0.37

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.
Files changed (38) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/header/NavList.vue +45 -2
  3. package/dist/runtime/components/header/NavList.vue.d.ts +2 -0
  4. package/dist/runtime/components/header/ProductMenu.vue +31 -3
  5. package/dist/runtime/components/header/ProfileMenu.vue +13 -210
  6. package/dist/runtime/components/header/ProfileMenuContent.vue +227 -0
  7. package/dist/runtime/components/header/ProfileMenuContent.vue.d.ts +16 -0
  8. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue +78 -0
  9. package/dist/runtime/components/mobile-navigation/BottomNavigation.vue.d.ts +29 -0
  10. package/dist/runtime/components/mobile-navigation/MainButton.vue +16 -0
  11. package/dist/runtime/components/mobile-navigation/MainButton.vue.d.ts +2 -0
  12. package/dist/runtime/components/mobile-navigation/MobileProductMenu.vue +261 -0
  13. package/dist/runtime/components/modals/NoAccessContent.vue +1 -1
  14. package/dist/runtime/composables/projectState.d.ts +1 -0
  15. package/dist/runtime/composables/projectState.js +1 -0
  16. package/dist/runtime/i18n/i18n.config.d.ts +24 -0
  17. package/dist/runtime/icons/avatar.vue +41 -0
  18. package/dist/runtime/icons/avatar.vue.d.ts +2 -0
  19. package/dist/runtime/icons/file/file.vue.d.ts +2 -0
  20. package/dist/runtime/icons/file/files.vue +17 -0
  21. package/dist/runtime/icons/file/files.vue.d.ts +2 -0
  22. package/dist/runtime/icons/invoice.vue +35 -0
  23. package/dist/runtime/icons/invoice.vue.d.ts +2 -0
  24. package/dist/runtime/icons/menu/menu-filled.vue +61 -0
  25. package/dist/runtime/icons/menu/menu-filled.vue.d.ts +2 -0
  26. package/dist/runtime/icons/menu/menu.vue +41 -0
  27. package/dist/runtime/icons/menu/menu.vue.d.ts +2 -0
  28. package/dist/runtime/icons/notifications.vue +25 -0
  29. package/dist/runtime/icons/notifications.vue.d.ts +2 -0
  30. package/dist/runtime/lang/en.js +8 -0
  31. package/dist/runtime/lang/kk.js +8 -0
  32. package/dist/runtime/lang/ru.d.ts +8 -0
  33. package/dist/runtime/lang/ru.js +8 -0
  34. package/dist/runtime/shared/constants/pages.d.ts +3 -0
  35. package/dist/runtime/shared/constants/pages.js +3 -0
  36. package/package.json +64 -64
  37. /package/dist/runtime/{icons/file.vue.d.ts → components/mobile-navigation/MobileProductMenu.vue.d.ts} +0 -0
  38. /package/dist/runtime/icons/{file.vue → file/file.vue} +0 -0
@@ -0,0 +1,78 @@
1
+ <script setup>
2
+ import { useAppConfig, useI18n } from "#imports";
3
+ const props = defineProps({
4
+ items: { type: Array, required: true },
5
+ hasNotification: { type: Boolean, required: false },
6
+ isAuthenticated: { type: Boolean, required: true }
7
+ });
8
+ const activeModel = defineModel({ type: String, ...{ default: "" } });
9
+ const appConfig = useAppConfig();
10
+ const mode = appConfig.adataUI.mode;
11
+ const { t } = useI18n();
12
+ function pushItem(value) {
13
+ if (value === activeModel.value) value = "";
14
+ activeModel.value = value;
15
+ }
16
+ function pushProfile() {
17
+ if (props.isAuthenticated) {
18
+ pushItem("profile");
19
+ } else {
20
+ const fullPath = encodeURIComponent(window.location.toString());
21
+ location.href = `https://id.${mode}.kz/?url=${fullPath}`;
22
+ }
23
+ }
24
+ </script>
25
+
26
+ <template>
27
+ <div class="sticky bottom-0 z-100 lg:hidden">
28
+ <div class="w-full border-t border-gray-500/50 bg-white dark:bg-gray-900">
29
+ <div class="grid w-full grid-cols-4 items-center">
30
+ <slot>
31
+ <button
32
+ v-for="item in items"
33
+ :key="item"
34
+ class="h-16 w-full flex flex-col justify-center items-center"
35
+ @click="pushItem(item.value)"
36
+ >
37
+ <component
38
+ :is="item.icon"
39
+ class="size-6 shrink-0"
40
+ />
41
+ <span class="text-[10px] leading-5">{{ t(item.label) }}</span>
42
+ </button>
43
+ </slot>
44
+ <slot
45
+ name="notifications"
46
+ :items="items"
47
+ />
48
+ <button
49
+ class="h-16 w-full flex flex-col justify-center items-center"
50
+ @click="pushProfile"
51
+ >
52
+ <i-avatar
53
+ v-if="isAuthenticated"
54
+ class="shrink-0"
55
+ />
56
+ <i-navigation-logout
57
+ v-else
58
+ class="shrink-0"
59
+ />
60
+ <span
61
+ v-if="isAuthenticated"
62
+ class="text-[10px] leading-5"
63
+ @click="pushProfile"
64
+ >
65
+ {{ t("modals.mobile_navigation.type_profile") }}
66
+ </span>
67
+ <span
68
+ v-else
69
+ class="text-[10px] leading-5"
70
+ @click="pushProfile"
71
+ >
72
+ {{ t("header.login") }}
73
+ </span>
74
+ </button>
75
+ </div>
76
+ </div>
77
+ </div>
78
+ </template>
@@ -0,0 +1,29 @@
1
+ interface Props {
2
+ items: T[];
3
+ hasNotification?: boolean;
4
+ isAuthenticated: boolean;
5
+ }
6
+ type __VLS_Props = Props;
7
+ type __VLS_PublicProps = __VLS_Props & {
8
+ modelValue?: string;
9
+ };
10
+ declare var __VLS_1: {}, __VLS_7: {
11
+ items: any;
12
+ };
13
+ type __VLS_Slots = {} & {
14
+ default?: (props: typeof __VLS_1) => any;
15
+ } & {
16
+ notifications?: (props: typeof __VLS_7) => any;
17
+ };
18
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
19
+ "update:modelValue": (value: string) => any;
20
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
21
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
22
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
24
+ export default _default;
25
+ type __VLS_WithSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };
@@ -0,0 +1,16 @@
1
+ <script setup>
2
+ import { useI18n } from "#imports";
3
+ const emits = defineEmits(["pushMain"]);
4
+ const { t } = useI18n();
5
+ </script>
6
+
7
+ <template>
8
+ <nuxt-link
9
+ to="/"
10
+ class="flex items-center gap-4 px-4 py-3 bg-gray-50 rounded-md dark:bg-gray-800"
11
+ @click="emits('pushMain')"
12
+ >
13
+ <i-menu />
14
+ {{ t("modals.mobile_navigation.return_button") }}
15
+ </nuxt-link>
16
+ </template>
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,261 @@
1
+ <script setup>
2
+ import { PAGES } from "../../shared/constants/pages";
3
+ import {
4
+ IArrowCircleDown,
5
+ IArrowGraphUp,
6
+ IAvtoCar,
7
+ IAvtoTruck,
8
+ IBlock,
9
+ ICalculator,
10
+ ICheckCircle,
11
+ ICompany,
12
+ ICurrencyDollar,
13
+ IDocumentProfile,
14
+ IFile,
15
+ IFileFiles,
16
+ IGlobe,
17
+ ILinkChain,
18
+ IMedal,
19
+ IReceipt,
20
+ IScale,
21
+ ISearch,
22
+ ISviazi,
23
+ IUsers,
24
+ IWorkBag
25
+ } from "#components";
26
+ import { ref, useI18n, useAppConfig, watch } from "#imports";
27
+ import { useCurrentModule } from "../../composables/projectState";
28
+ const tab = ref(useCurrentModule().value);
29
+ const { t } = useI18n();
30
+ const appConfig = useAppConfig();
31
+ const mode = appConfig.adataUI.mode;
32
+ const tabOptions = [
33
+ {
34
+ name: "header.products.counterparties.label",
35
+ key: "pk"
36
+ },
37
+ {
38
+ name: "header.products.jobs.label",
39
+ key: "work"
40
+ },
41
+ {
42
+ name: "header.products.tenders.label",
43
+ key: "tenders"
44
+ },
45
+ {
46
+ name: "header.products.fines.label",
47
+ key: "fines"
48
+ },
49
+ {
50
+ name: "header.products.analytics.label",
51
+ key: "analytics"
52
+ },
53
+ {
54
+ name: "header.products.fea.label",
55
+ key: "fea"
56
+ },
57
+ {
58
+ name: "header.products.compliance.label",
59
+ key: "compliance"
60
+ },
61
+ {
62
+ name: "header.products.edo.label",
63
+ key: "edo"
64
+ }
65
+ ];
66
+ const sideLinks = {
67
+ pk: [
68
+ {
69
+ icon: ISearch,
70
+ label: "header.products.counterparties.items.counterparty.title",
71
+ link: `https://pk.${mode}.kz` + PAGES.pk.main
72
+ },
73
+ {
74
+ icon: IScale,
75
+ label: "header.products.counterparties.items.compare.title",
76
+ link: `https://pk.${mode}.kz` + PAGES.pk.compare
77
+ },
78
+ {
79
+ icon: ILinkChain,
80
+ label: "header.products.counterparties.items.networks.title",
81
+ link: `https://pk.${mode}.kz` + PAGES.pk.connections
82
+ },
83
+ {
84
+ icon: IUsers,
85
+ label: "header.products.counterparties.items.wholesale.title",
86
+ link: `https://avto.${mode}.kz` + PAGES.fines.bulk
87
+ },
88
+ {
89
+ icon: IGlobe,
90
+ label: "header.products.counterparties.items.foreign.title",
91
+ link: `https://pk.${mode}.kz` + PAGES.pk.foreign
92
+ },
93
+ {
94
+ icon: IBlock,
95
+ label: "header.products.counterparties.items.sanction.title",
96
+ link: `https://pk.${mode}.kz` + PAGES.pk.sanctions
97
+ },
98
+ {
99
+ icon: ICurrencyDollar,
100
+ label: "header.products.counterparties.items.offshore.title",
101
+ link: `https://pk.${mode}.kz` + PAGES.pk.offshore
102
+ },
103
+ // {
104
+ // icon: IconDocument,
105
+ // label: "Экспресс проверка",
106
+ // link: "#"
107
+ // },
108
+ {
109
+ icon: IArrowCircleDown,
110
+ label: "header.products.counterparties.items.unloading.title",
111
+ link: `https://pk.${mode}.kz` + PAGES.pk.unload
112
+ }
113
+ ],
114
+ work: [
115
+ {
116
+ icon: IWorkBag,
117
+ label: "header.products.jobs.items.vacancies.title",
118
+ link: `https://work.${mode}.kz` + PAGES.work.vacancy
119
+ },
120
+ {
121
+ icon: IDocumentProfile,
122
+ label: "header.products.jobs.items.resume.title",
123
+ link: `https://work.${mode}.kz` + PAGES.work.summary
124
+ }
125
+ ],
126
+ tenders: [
127
+ {
128
+ icon: ISearch,
129
+ label: "header.products.tenders.items.tenders.title",
130
+ link: `https://tender.${mode}.kz` + PAGES.tender.main
131
+ },
132
+ {
133
+ icon: IFile,
134
+ label: "header.products.tenders.items.contracts.title",
135
+ link: `https://tender.${mode}.kz` + PAGES.tender.contracts
136
+ },
137
+ {
138
+ icon: IReceipt,
139
+ label: "header.products.tenders.items.procurement.title",
140
+ link: `https://tender.${mode}.kz` + PAGES.tender.plans
141
+ }
142
+ ],
143
+ fines: [
144
+ {
145
+ icon: ICheckCircle,
146
+ label: "header.products.fines.items.fines.title",
147
+ link: `https://avto.${mode}.kz` + PAGES.fines.main
148
+ },
149
+ {
150
+ icon: IAvtoCar,
151
+ label: "header.products.fines.items.auto.title",
152
+ link: `https://avto.${mode}.kz` + PAGES.fines.avto
153
+ },
154
+ {
155
+ icon: IAvtoTruck,
156
+ label: "header.products.fines.items.wholesaleAuto.title",
157
+ link: `https://avto.${mode}.kz` + PAGES.fines.bulk
158
+ }
159
+ ],
160
+ analytics: [
161
+ // {
162
+ // icon: IconSearch,
163
+ // label: 'header.products.analytics.items.clients.title',
164
+ // link: myLayer.analyticsUrl + PAGES.analytics.clients
165
+ // },
166
+ {
167
+ icon: IReceipt,
168
+ label: "header.products.analytics.items.procurement.title",
169
+ link: `https://analytics-new.${mode}.kz` + PAGES.analytics.main
170
+ },
171
+ {
172
+ icon: IArrowGraphUp,
173
+ label: "header.products.analytics.items.activity.title",
174
+ link: `https://analytics-new.${mode}.kz` + PAGES.analytics.index
175
+ },
176
+ {
177
+ icon: ICompany,
178
+ label: "header.products.analytics.items.subjects.title",
179
+ link: `https://analytics-new.${mode}.kz` + PAGES.analytics.business
180
+ },
181
+ {
182
+ icon: IMedal,
183
+ label: "header.products.analytics.items.rate.title",
184
+ link: `https://analytics-new.${mode}.kz` + PAGES.analytics.rating
185
+ }
186
+ ],
187
+ fea: [
188
+ {
189
+ label: "header.products.fea.items.i.t",
190
+ icon: ISearch,
191
+ link: `https://tnved.${mode}.kz` + PAGES.fea.t
192
+ },
193
+ {
194
+ label: "header.products.fea.items.o.t",
195
+ icon: ISviazi,
196
+ link: `https://tnved.${mode}.kz` + PAGES.fea.o
197
+ },
198
+ {
199
+ label: "header.products.fea.items.cp.t",
200
+ icon: IFile,
201
+ link: `https://tnved.${mode}.kz` + PAGES.fea.cp
202
+ },
203
+ {
204
+ label: "header.products.fea.items.ca.t",
205
+ icon: ICalculator,
206
+ link: `https://tnved.${mode}.kz` + PAGES.fea.ca
207
+ },
208
+ {
209
+ label: "header.products.fea.items.tr.t",
210
+ icon: IGlobe,
211
+ link: `https://tnved.${mode}.kz` + PAGES.fea.tr
212
+ }
213
+ ],
214
+ compliance: [
215
+ {
216
+ label: "header.products.compliance.label",
217
+ icon: IDocumentProfile,
218
+ link: `https://ac.${mode}.kz/compliance`
219
+ }
220
+ ],
221
+ edo: [
222
+ {
223
+ label: "header.products.edo.label",
224
+ icon: IFileFiles,
225
+ link: `https://edo.${mode}.kz`
226
+ }
227
+ ]
228
+ };
229
+ const currentLinks = ref(sideLinks[tab.value]);
230
+ watch(tab, (e) => {
231
+ if (e) {
232
+ currentLinks.value = sideLinks[e];
233
+ }
234
+ });
235
+ </script>
236
+
237
+ <template>
238
+ <div class="flex flex-col gap-5">
239
+ <div class="h-[1px] w-full bg-deepblue-900/5 dark:bg-gray-200/5"/>
240
+ <div>
241
+ <adt-pill-tabs v-model="tab" :options="tabOptions" view="gray" />
242
+ </div>
243
+ <div class="h-[40vh] sm:h-[300px] overflow-auto no-scrollbar">
244
+ <nuxt-link
245
+ v-for="item in currentLinks"
246
+ :key="item.label"
247
+ :to="item.link"
248
+ class="flex items-center gap-4 px-4 py-3 bg-gray-50 dark:bg-gray-800 mb-2 rounded"
249
+ >
250
+ <div class="bg-gradient-blue p-1 rounded-lg">
251
+ <component
252
+ :is="item.icon"
253
+ class="size-5 text-white dark:text-gray-900"
254
+ />
255
+ </div>
256
+ <span>{{ t(item.label) }}</span>
257
+ </nuxt-link>
258
+ </div>
259
+ <div class="h-[1px] w-full bg-deepblue-900/5 dark:bg-gray-200/5"/>
260
+ </div>
261
+ </template>
@@ -13,7 +13,7 @@ const mode = appConfig.adataUI.mode;
13
13
  const localePath = useLocalePath();
14
14
  function logIn() {
15
15
  const fullPath = encodeURIComponent(window.location.toString());
16
- return navigateTo(localePath(`https://id.${mode}.kz/?url=${fullPath}/${props.redirectPath}`), { external: true });
16
+ return navigateTo(localePath(`https://id.${mode}.kz/?url=${fullPath}${props.redirectPath}`), { external: true });
17
17
  }
18
18
  function register() {
19
19
  return navigateTo(localePath(`https://id.${mode}.kz/register`), { external: true });
@@ -1 +1,2 @@
1
+ export declare const useCurrentModule: () => import("vue").Ref<string, string>;
1
2
  export declare const useContacts: () => import("vue").Ref<any, any>;
@@ -1,2 +1,3 @@
1
1
  import { useState } from "#imports";
2
+ export const useCurrentModule = () => useState("current-module", () => "pk");
2
3
  export const useContacts = () => useState("contacts", () => []);
@@ -208,6 +208,14 @@ declare const _default: {
208
208
  };
209
209
  };
210
210
  };
211
+ edo: {
212
+ label: string;
213
+ items: {
214
+ l: {
215
+ t: string;
216
+ };
217
+ };
218
+ };
211
219
  galleryCards: {
212
220
  unload: {
213
221
  title: string;
@@ -745,6 +753,14 @@ declare const _default: {
745
753
  };
746
754
  };
747
755
  };
756
+ edo: {
757
+ label: string;
758
+ items: {
759
+ l: {
760
+ t: string;
761
+ };
762
+ };
763
+ };
748
764
  galleryCards: {
749
765
  unload: {
750
766
  title: string;
@@ -1282,6 +1298,14 @@ declare const _default: {
1282
1298
  };
1283
1299
  };
1284
1300
  };
1301
+ edo: {
1302
+ label: string;
1303
+ items: {
1304
+ l: {
1305
+ t: string;
1306
+ };
1307
+ };
1308
+ };
1285
1309
  galleryCards: {
1286
1310
  unload: {
1287
1311
  title: string;
@@ -0,0 +1,41 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="25"
7
+ height="24"
8
+ viewBox="0 0 25 24"
9
+ fill="none"
10
+ xmlns="https://www.w3.org/2000/svg"
11
+ >
12
+ <mask
13
+ id="mask0_5312_309"
14
+ style="mask-type:alpha"
15
+ maskUnits="userSpaceOnUse"
16
+ x="0"
17
+ y="0"
18
+ width="25"
19
+ height="24"
20
+ >
21
+ <circle
22
+ cx="12.3333"
23
+ cy="12"
24
+ r="12"
25
+ class="fill-white dark:fill-[#26282B]"
26
+ />
27
+ </mask>
28
+ <g mask="url(#mask0_5312_309)">
29
+ <path
30
+ d="M12.3333 13.2903C15.0947 13.2903 17.3333 11.0517 17.3333 8.29031C17.3333 5.52889 15.0947 3.29031 12.3333 3.29031C9.57189 3.29031 7.33331 5.52889 7.33331 8.29031C7.33331 11.0517 9.57189 13.2903 12.3333 13.2903Z"
31
+ fill="currentColor"
32
+ fill-opacity="0.8"
33
+ />
34
+ <path
35
+ d="M12.5733 14.52C6.62084 14.52 1.77332 18.5016 1.77332 23.4075C1.77332 23.7393 2.0347 24 2.36737 24H22.7793C23.1119 24 23.3733 23.7393 23.3733 23.4075C23.3733 18.5016 18.5258 14.52 12.5733 14.52Z"
36
+ fill="currentColor"
37
+ fill-opacity="0.8"
38
+ />
39
+ </g>
40
+ </svg>
41
+ </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;
@@ -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,17 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="18"
7
+ height="18"
8
+ viewBox="0 0 18 18"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ >
12
+ <path
13
+ d="M15.023 4.66453L12.2105 1.85203C12.1582 1.79981 12.0961 1.7584 12.0279 1.73017C11.9596 1.70194 11.8864 1.68744 11.8125 1.6875H6.1875C5.88913 1.6875 5.60298 1.80603 5.392 2.017C5.18103 2.22798 5.0625 2.51413 5.0625 2.8125V3.9375H3.9375C3.63913 3.9375 3.35298 4.05603 3.142 4.267C2.93103 4.47798 2.8125 4.76413 2.8125 5.0625V15.1875C2.8125 15.4859 2.93103 15.772 3.142 15.983C3.35298 16.194 3.63913 16.3125 3.9375 16.3125H11.8125C12.1109 16.3125 12.397 16.194 12.608 15.983C12.819 15.772 12.9375 15.4859 12.9375 15.1875V14.0625H14.0625C14.3609 14.0625 14.647 13.944 14.858 13.733C15.069 13.522 15.1875 13.2359 15.1875 12.9375V5.0625C15.1876 4.98861 15.1731 4.91543 15.1448 4.84715C15.1166 4.77886 15.0752 4.71681 15.023 4.66453ZM11.8125 15.1875H3.9375V5.0625H9.32977L11.8125 7.54523V13.4887C11.8125 13.493 11.8125 13.4965 11.8125 13.5C11.8125 13.5035 11.8125 13.507 11.8125 13.5113V15.1875ZM14.0625 12.9375H12.9375V7.3125C12.9376 7.23861 12.9231 7.16543 12.8948 7.09715C12.8666 7.02886 12.8252 6.96681 12.773 6.91453L9.96047 4.10203C9.90819 4.04981 9.84614 4.0084 9.77785 3.98017C9.70957 3.95194 9.63639 3.93744 9.5625 3.9375H6.1875V2.8125H11.5798L14.0625 5.29523V12.9375ZM10.125 10.6875C10.125 10.8367 10.0657 10.9798 9.96025 11.0852C9.85476 11.1907 9.71168 11.25 9.5625 11.25H6.1875C6.03832 11.25 5.89524 11.1907 5.78975 11.0852C5.68426 10.9798 5.625 10.8367 5.625 10.6875C5.625 10.5383 5.68426 10.3952 5.78975 10.2898C5.89524 10.1843 6.03832 10.125 6.1875 10.125H9.5625C9.71168 10.125 9.85476 10.1843 9.96025 10.2898C10.0657 10.3952 10.125 10.5383 10.125 10.6875ZM10.125 12.9375C10.125 13.0867 10.0657 13.2298 9.96025 13.3352C9.85476 13.4407 9.71168 13.5 9.5625 13.5H6.1875C6.03832 13.5 5.89524 13.4407 5.78975 13.3352C5.68426 13.2298 5.625 13.0867 5.625 12.9375C5.625 12.7883 5.68426 12.6452 5.78975 12.5398C5.89524 12.4343 6.03832 12.375 6.1875 12.375H9.5625C9.71168 12.375 9.85476 12.4343 9.96025 12.5398C10.0657 12.6452 10.125 12.7883 10.125 12.9375Z"
14
+ fill="currentColor"
15
+ />
16
+ </svg>
17
+ </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;
@@ -0,0 +1,35 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="25"
7
+ height="24"
8
+ viewBox="0 0 25 24"
9
+ fill="none"
10
+ xmlns="https://www.w3.org/2000/svg"
11
+ >
12
+ <path
13
+ d="M4.6665 18.6458V8.05426C4.6665 5.20025 4.6665 3.77325 5.54518 2.88663C6.42386 2 7.83808 2 10.6665 2H14.6665C17.4949 2 18.9091 2 19.7878 2.88663C20.6665 3.77325 20.6665 5.20025 20.6665 8.05426V18.6458C20.6665 20.1575 20.6665 20.9133 20.2046 21.2108C19.4496 21.6971 18.2826 20.6774 17.6956 20.3073C17.2107 20.0014 16.9682 19.8485 16.699 19.8397C16.4082 19.8301 16.1614 19.9768 15.6374 20.3073L13.7265 21.5124C13.211 21.8374 12.9533 22 12.6665 22C12.3797 22 12.122 21.8374 11.6065 21.5124L9.69563 20.3073C9.21065 20.0014 8.96816 19.8485 8.69904 19.8397C8.40822 19.8301 8.16143 19.9768 7.63738 20.3073C7.05045 20.6774 5.88338 21.6971 5.12846 21.2108C4.6665 20.9133 4.6665 20.1575 4.6665 18.6458Z"
14
+ fill="#566573"
15
+ stroke="#566573"
16
+ stroke-width="1.5"
17
+ stroke-linecap="round"
18
+ stroke-linejoin="round"
19
+ />
20
+ <path
21
+ d="M11.6665 11H8.6665"
22
+ stroke="white"
23
+ stroke-width="1.5"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ <path
28
+ d="M14.6665 7L8.6665 7"
29
+ stroke="white"
30
+ stroke-width="1.5"
31
+ stroke-linecap="round"
32
+ stroke-linejoin="round"
33
+ />
34
+ </svg>
35
+ </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;
@@ -0,0 +1,61 @@
1
+ <script setup lang="ts">
2
+ </script>
3
+
4
+ <template>
5
+ <svg
6
+ width="24"
7
+ height="24"
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="https://www.w3.org/2000/svg"
11
+ >
12
+ <path
13
+ d="M21.2513 14.25H14.2513V21.25H21.2513V14.25Z"
14
+ fill="currentColor"
15
+ fill-opacity="0.8"
16
+ />
17
+ <path
18
+ d="M21.7513 14.25C21.7513 13.9738 21.5275 13.75 21.2513 13.75H14.2513C13.9752 13.75 13.7513 13.9738 13.7513 14.25V21.25C13.7513 21.5261 13.9752 21.75 14.2513 21.75H21.2513C21.5275 21.75 21.7513 21.5261 21.7513 21.25V14.25Z"
19
+ stroke="currentColor"
20
+ stroke-opacity="0.8"
21
+ stroke-linecap="round"
22
+ stroke-linejoin="round"
23
+ />
24
+ <path
25
+ d="M9.75 14.25H2.75V21.25H9.75V14.25Z"
26
+ fill="currentColor"
27
+ fill-opacity="0.8"
28
+ />
29
+ <path
30
+ d="M10.25 14.25C10.25 13.9738 10.0261 13.75 9.75 13.75H2.75C2.47386 13.75 2.25 13.9738 2.25 14.25V21.25C2.25 21.5261 2.47386 21.75 2.75 21.75H9.75C10.0261 21.75 10.25 21.5261 10.25 21.25V14.25Z"
31
+ stroke="currentColor"
32
+ stroke-opacity="0.8"
33
+ stroke-linecap="round"
34
+ stroke-linejoin="round"
35
+ />
36
+ <path
37
+ d="M21.2513 2.74979H14.2513V9.74979H21.2513V2.74979Z"
38
+ fill="currentColor"
39
+ fill-opacity="0.8"
40
+ />
41
+ <path
42
+ d="M21.7513 2.74979C21.7513 2.47364 21.5275 2.24979 21.2513 2.24979H14.2513C13.9752 2.24979 13.7513 2.47364 13.7513 2.74979V9.74979C13.7513 10.0259 13.9752 10.2498 14.2513 10.2498H21.2513C21.5275 10.2498 21.7513 10.0259 21.7513 9.74979V2.74979Z"
43
+ stroke="currentColor"
44
+ stroke-opacity="0.8"
45
+ stroke-linecap="round"
46
+ stroke-linejoin="round"
47
+ />
48
+ <path
49
+ d="M9.75 2.74979H2.75V9.74979H9.75V2.74979Z"
50
+ fill="currentColor"
51
+ fill-opacity="0.8"
52
+ />
53
+ <path
54
+ d="M10.25 2.74979C10.25 2.47364 10.0261 2.24979 9.75 2.24979H2.75C2.47386 2.24979 2.25 2.47364 2.25 2.74979V9.74979C2.25 10.0259 2.47386 10.2498 2.75 10.2498H9.75C10.0261 10.2498 10.25 10.0259 10.25 9.74979V2.74979Z"
55
+ stroke="currentColor"
56
+ stroke-opacity="0.8"
57
+ stroke-linecap="round"
58
+ stroke-linejoin="round"
59
+ />
60
+ </svg>
61
+ </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;
@@ -0,0 +1,41 @@
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="M13 13.7502C13 13.336 13.3358 13.0002 13.75 13.0002H21.2513C21.6656 13.0002 22.0013 13.336 22.0013 13.7502V21.2502C22.0013 21.6644 21.6656 22.0002 21.2513 22.0002H13.75C13.3358 22.0002 13 21.6644 13 21.2502V13.7502ZM14.5 14.5002V20.5002H20.5013V14.5002H14.5Z"
13
+ fill="currentColor"
14
+ class="dark:fill-white"
15
+ />
16
+ <path
17
+ fill-rule="evenodd"
18
+ clip-rule="evenodd"
19
+ d="M2 13.7502C2 13.336 2.33579 13.0002 2.75 13.0002H10.25C10.6642 13.0002 11 13.336 11 13.7502V21.2502C11 21.6644 10.6642 22.0002 10.25 22.0002H2.75C2.33579 22.0002 2 21.6644 2 21.2502V13.7502ZM3.5 14.5002V20.5002H9.5V14.5002H3.5Z"
20
+ fill="currentColor"
21
+ class="dark:fill-white"
22
+ />
23
+ <path
24
+ fill-rule="evenodd"
25
+ clip-rule="evenodd"
26
+ d="M13 2.75C13 2.33579 13.3358 2 13.75 2H21.2513C21.6656 2 22.0013 2.33579 22.0013 2.75V10.2502C22.0013 10.6644 21.6656 11.0002 21.2513 11.0002H13.75C13.3358 11.0002 13 10.6644 13 10.2502V2.75ZM14.5 3.5V9.50018H20.5013V3.5H14.5Z"
27
+ fill="currentColor"
28
+ class="dark:fill-white"
29
+ />
30
+ <path
31
+ fill-rule="evenodd"
32
+ clip-rule="evenodd"
33
+ d="M2 2.75C2 2.33579 2.33579 2 2.75 2H10.25C10.6642 2 11 2.33579 11 2.75V10.2502C11 10.6644 10.6642 11.0002 10.25 11.0002H2.75C2.33579 11.0002 2 10.6644 2 10.2502L2 2.75ZM3.5 3.5V9.50018H9.5V3.5H3.5Z"
34
+ fill="currentColor"
35
+ class="dark:fill-white"
36
+ />
37
+ </svg>
38
+ </template>
39
+
40
+ <script setup lang="ts">
41
+ </script>