adata-ui 3.1.16 → 3.1.17

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  "nuxt": ">=3.16.0"
6
6
  },
7
7
  "failOnWarn": false,
8
- "version": "3.1.16",
8
+ "version": "3.1.17",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -1,7 +1,7 @@
1
1
  <script setup>
2
2
  import { NuxtLinkLocale } from "#components";
3
- defineProps({
4
- icon: { type: null, required: true },
3
+ const props = defineProps({
4
+ icon: { type: Object, required: true },
5
5
  title: { type: String, required: true },
6
6
  description: { type: String, required: true },
7
7
  to: { type: String, required: false }
@@ -12,12 +12,11 @@ defineProps({
12
12
  <component
13
13
  :is="to ? NuxtLinkLocale : 'button'"
14
14
  :to="to"
15
- class="curve-block relative w-fit cursor-pointer z-10 block "
15
+ class="curve-block relative w-full cursor-pointer"
16
16
  active-class="active-item"
17
17
  >
18
18
  <svg
19
- width="306"
20
- height="182"
19
+ class="w-full"
21
20
  viewBox="-1 -1 308 184"
22
21
  xmlns="http://www.w3.org/2000/svg"
23
22
  >
@@ -60,27 +59,25 @@ defineProps({
60
59
  </defs>
61
60
  </svg>
62
61
 
63
- <div class="absolute left-6 top-6 flex flex-col gap-4 pr-6">
62
+ <div class="absolute left-6 top-6 flex flex-col gap-4 pr-6">
64
63
  <div class="flex items-center gap-2">
65
- <div class="rounded-sm bg-deepblue-900/5 dark:bg-gray-200/5 p-1">
64
+ <div class="rounded-[4px] icon-item bg-deepblue-900/5 dark:bg-gray-200/5 p-1 ">
66
65
  <component
67
66
  :is="icon"
68
67
  class="size-6 shrink-0"
69
68
  />
70
69
  </div>
71
- <p class="text-base font-semibold">
70
+ <p class="text-base title font-semibold">
72
71
  {{ title }}
73
72
  </p>
74
73
  </div>
75
- <p class="text-sm text-gray-600 dark:text-gray-200 text-left">
74
+ <p class="text-sm text-gray-600 dark:text-gray-200">
76
75
  {{ description }}
77
76
  </p>
78
77
  </div>
79
78
 
80
79
  <svg
81
- class="absolute bottom-0 right-0"
82
- width="48"
83
- height="48"
80
+ class="absolute bottom-0 right-0 size-12 2xl:size-14"
84
81
  viewBox="0 0 48 48"
85
82
  xmlns="http://www.w3.org/2000/svg"
86
83
  >
@@ -156,10 +153,12 @@ defineProps({
156
153
  fill: #F4F5F6;
157
154
  }
158
155
 
159
- .active-item .border-path,
160
- .active-item .animated-border {
161
- stroke-dashoffset: 0;
162
- fill: white;
156
+ .active-item .title {
157
+ color: #0070EB;
158
+ }
159
+
160
+ .active-item .border-path {
161
+ fill: rgba(0, 112, 235, 0.1019607843);
163
162
  }
164
163
 
165
164
  .curve-block:hover .border-path,
@@ -169,6 +168,12 @@ defineProps({
169
168
  fill: white;
170
169
  }
171
170
 
171
+ .curve-block:hover .icon-item {
172
+ background-color: #E0EFFF;
173
+ color: #0070EB;
174
+ transition: all 2s ease, fill 2s ease;
175
+ }
176
+
172
177
  .border-path {
173
178
  stroke: url(#gradient-light);
174
179
  }
@@ -193,10 +198,16 @@ defineProps({
193
198
  .dark .animated-border {
194
199
  fill: #26282b;
195
200
  }
196
- .dark .active-item .border-path,
197
- .dark .active-item .animated-border {
198
- stroke-dashoffset: 0;
199
- fill: #131415;
201
+ .dark .active-item .title {
202
+ color: #1b98e2;
203
+ }
204
+ .dark .active-item .border-path {
205
+ fill: rgba(23, 146, 221, 0.38);
206
+ }
207
+ .dark .curve-block:hover .icon-item {
208
+ background-color: rgba(30, 88, 156, 0.6);
209
+ color: #1b98e2;
210
+ transition: all 2s ease, fill 2s ease;
200
211
  }
201
212
  .dark .curve-block:hover .border-path,
202
213
  .dark .curve-block:hover .animated-border {
@@ -1,4 +1,4 @@
1
- import type { Component } from 'vue';
1
+ import type { Component } from '@nuxt/schema';
2
2
  type __VLS_Props = {
3
3
  icon: Component;
4
4
  title: string;
@@ -1,67 +1,88 @@
1
1
  <script setup>
2
- import AButton from "../../button/Button.vue";
3
- import InputStandard from "../input/standard/InputStandard.vue";
4
- import ATextarea from "../input/textarea/ATextarea.vue";
5
- import { ref, useI18n } from "#imports";
6
- const emit = defineEmits(["onSend"]);
2
+ import * as z from "zod";
3
+ import { useUIValidation } from "~/src/runtime/composables/useUIValidation";
4
+ const props = defineProps({
5
+ title: { type: String, required: false },
6
+ description: { type: String, required: false }
7
+ });
8
+ const emit = defineEmits(["send"]);
7
9
  const { t } = useI18n();
8
- const isLoading = defineModel("loading", { type: Boolean, ...{ default: false } });
9
- const isModalOpen = defineModel("modal", { type: Boolean, ...{ default: false } });
10
- const fullName = ref("");
11
- const phone = ref("");
12
- const comment = ref("");
10
+ const form = reactive({
11
+ sender_name: "",
12
+ email: "",
13
+ phone_number: ""
14
+ });
15
+ const submitted = ref(false);
16
+ const schema = z.object({
17
+ sender_name: z.string().nonempty(t("forms.feedback.fieldRequired")),
18
+ email: z.string().nonempty(t("forms.feedback.fieldRequired")).email(t("forms.feedback.emailValid")),
19
+ phone_number: z.string().nonempty(t("forms.feedback.fieldRequired")).min(17, t("forms.feedback.phoneMinLength", { count: 10 }))
20
+ });
21
+ const { validation, getError } = useUIValidation(schema, () => form, submitted);
22
+ function onSend() {
23
+ submitted.value = true;
24
+ if (validation.value) return;
25
+ emit("send", form);
26
+ submitted.value = false;
27
+ form.sender_name = "";
28
+ form.email = "";
29
+ form.phone_number = "";
30
+ }
13
31
  </script>
14
32
 
15
33
  <template>
16
- <div class="flex flex-col gap-8 rounded-[20px] bg-white p-8 dark:bg-gray-900">
17
- <div class="flex flex-col gap-2">
18
- <h3 class="font-bold text-[2rem] leading-10">
19
- {{ t("forms.demo.t") }}
20
- </h3>
21
- <p class="text-base">
22
- {{ t("forms.demo.st") }}
23
- </p>
24
- </div>
25
- <form
26
- action=""
27
- class="flex flex-col justify-between gap-2 sm:flex-row sm:gap-4"
28
- >
29
- <div class="flex flex-col gap-2 sm:w-1/2 sm:gap-4">
30
- <input-standard
31
- v-model="fullName"
32
- color-classes="bg-gray-50 dark:bg-gray-800"
33
- :label="t('forms.demo.n')"
34
- required
35
- size="md"
36
- :disabled="isLoading"
37
- />
38
- <input-standard
39
- v-model="phone"
40
- v-maska
41
- color-classes="bg-gray-50 dark:bg-gray-800"
42
- type="tel"
43
- :label="t('forms.demo.p')"
44
- data-maska="8 (###) ###-##-##"
45
- required
46
- size="md"
47
- :disabled="isLoading"
48
- />
34
+ <div class="rounded-[20px] bg-blue-700 dark:bg-[#1B98E2] p-4 dark:bg-blue-500 lg:p-8">
35
+ <div class="flex w-full flex-col gap-4 lg:flex-row lg:justify-between">
36
+ <div class="flex flex-col gap-4 text-white dark:text-gray-900 lg:max-w-[50%] lg:gap-6">
37
+ <slot name="title">
38
+ <p class="md:text-[32px] text-[24px] font-bold">
39
+ {{ title || t("forms.request_demo.title") }}
40
+ </p>
41
+ </slot>
42
+ <slot name="description">
43
+ <p class="text-base whitespace-pre-line">
44
+ {{ description || t("forms.request_demo.info") }}
45
+ </p>
46
+ </slot>
49
47
  </div>
50
- <div class="sm:w-1/2">
51
- <a-textarea
52
- v-model="comment"
53
- :label="t('forms.demo.c')"
54
- :resizeable="false"
55
- class="min-h-[72px]"
56
- color-classes="dark:bg-gray-800 bg-gray-50"
57
- required
58
- size="sm"
59
- :disabled="isLoading"
60
- />
48
+ <div class="rounded-[20px] bg-white p-6 dark:bg-gray-900 lg:w-[456px]">
49
+ <div class="flex flex-col gap-4">
50
+ <slot name="inputs">
51
+ <div class="flex flex-col gap-4">
52
+ <adt-forms-input-standard
53
+ v-model="form.sender_name"
54
+ required
55
+ :label="t('forms.demo.n')"
56
+ :error="getError('sender_name')"
57
+ />
58
+ <adt-forms-input-standard
59
+ v-model="form.email"
60
+ required
61
+ :label="t('forms.demo.e')"
62
+ :error="getError('email')"
63
+ type="email"
64
+ />
65
+ <adt-forms-input-standard
66
+ v-model="form.phone_number"
67
+ v-maska
68
+ required
69
+ data-maska="8 (###) ###-##-##"
70
+ :label="t('forms.demo.p')"
71
+ :error="getError('phone_number')"
72
+ type="tel"
73
+ />
74
+ </div>
75
+ </slot>
76
+ <div>
77
+ <a-button
78
+ block
79
+ @click="onSend"
80
+ >
81
+ {{ t("forms.request_demo.send") }}
82
+ </a-button>
83
+ </div>
84
+ </div>
61
85
  </div>
62
- </form>
63
- <a-button class="w-full self-end sm:w-[215px] font-semibold" :disabled="isLoading">
64
- {{ t("forms.demo.b") }}
65
- </a-button>
86
+ </div>
66
87
  </div>
67
88
  </template>
@@ -1,23 +1,20 @@
1
- type __VLS_PublicProps = {
2
- 'loading'?: boolean;
3
- 'modal'?: boolean;
1
+ type __VLS_Props = {
2
+ title?: string;
3
+ description?: string;
4
4
  };
5
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
- "update:loading": (value: boolean) => any;
7
- "update:modal": (value: boolean) => any;
5
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
6
+ type __VLS_Slots = {} & {
7
+ title?: (props: typeof __VLS_1) => any;
8
8
  } & {
9
- onSend: (form: {
10
- sender_name: string;
11
- phone_number: string;
12
- message: string;
13
- }) => any;
14
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
15
- onOnSend?: ((form: {
16
- sender_name: string;
17
- phone_number: string;
18
- message: string;
19
- }) => any) | undefined;
20
- "onUpdate:loading"?: ((value: boolean) => any) | undefined;
21
- "onUpdate:modal"?: ((value: boolean) => any) | undefined;
22
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ description?: (props: typeof __VLS_3) => any;
10
+ } & {
11
+ inputs?: (props: typeof __VLS_5) => any;
12
+ };
13
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
23
15
  export default _default;
16
+ type __VLS_WithSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,4 @@
1
+ export declare function useUIValidation(schema: any, data: any, submitted: Ref<boolean>): {
2
+ validation: any;
3
+ getError: (path: string) => any;
4
+ };
@@ -0,0 +1,14 @@
1
+ export function useUIValidation(schema, data, submitted) {
2
+ const validation = computed(() => {
3
+ if (!submitted.value) return null;
4
+ const result = schema.safeParse(data());
5
+ return result.success ? null : result.error;
6
+ });
7
+ function getError(path) {
8
+ return validation.value?.issues.find((issue) => issue.path[0] === path)?.message;
9
+ }
10
+ return {
11
+ validation,
12
+ getError
13
+ };
14
+ }
@@ -382,6 +382,12 @@ declare const _default: {
382
382
  modalTitle: string;
383
383
  modalSubtitle: string;
384
384
  };
385
+ request_demo: {
386
+ title: string;
387
+ info: string;
388
+ agreement: string;
389
+ send: string;
390
+ };
385
391
  demo: {
386
392
  t: string;
387
393
  st: string;
@@ -946,6 +952,12 @@ declare const _default: {
946
952
  modalTitle: string;
947
953
  modalSubtitle: string;
948
954
  };
955
+ request_demo: {
956
+ title: string;
957
+ info: string;
958
+ agreement: string;
959
+ send: string;
960
+ };
949
961
  demo: {
950
962
  t: string;
951
963
  st: string;
@@ -1510,6 +1522,12 @@ declare const _default: {
1510
1522
  modalTitle: string;
1511
1523
  modalSubtitle: string;
1512
1524
  };
1525
+ request_demo: {
1526
+ title: string;
1527
+ info: string;
1528
+ agreement: string;
1529
+ send: string;
1530
+ };
1513
1531
  demo: {
1514
1532
  t: string;
1515
1533
  st: string;
@@ -376,6 +376,12 @@ const EnLocale = {
376
376
  modalTitle: "Request Accepted",
377
377
  modalSubtitle: "Thank you for your feedback!"
378
378
  },
379
+ request_demo: {
380
+ title: "Try all the features of the service for free",
381
+ info: "Check the functionality and quality of the data in real conditions. Demo access will allow you to test all the key features of the service.\nFill out the form to submit a connection request",
382
+ agreement: "By filling out the form, you agree to the processing of personal data and receiving informational messages",
383
+ send: "Submit Request"
384
+ },
379
385
  demo: {
380
386
  t: "Request Demo Access",
381
387
  st: "Fill out the form to request demo access",
@@ -376,6 +376,12 @@ const KkLocale = {
376
376
  modalTitle: "\u04E8\u0442\u0456\u043D\u0456\u043C \u049B\u0430\u0431\u044B\u043B\u0434\u0430\u043D\u0434\u044B",
377
377
  modalSubtitle: "\u049A\u0430\u0442\u044B\u0441\u049B\u0430\u043D\u044B\u04A3\u044B\u0437 \u04AF\u0448\u0456\u043D \u0440\u0430\u0445\u043C\u0435\u0442!"
378
378
  },
379
+ request_demo: {
380
+ title: "\u049A\u044B\u0437\u043C\u0435\u0442\u0442\u0456\u04A3 \u0431\u0430\u0440\u043B\u044B\u049B \u043C\u04AF\u043C\u043A\u0456\u043D\u0434\u0456\u043A\u0442\u0435\u0440\u0456\u043D \u0442\u0435\u0433\u0456\u043D \u049B\u043E\u043B\u0434\u0430\u043D\u044B\u043F \u043A\u04E9\u0440\u0456\u04A3\u0456\u0437",
381
+ info: "\u0414\u0435\u0440\u0435\u043A\u0442\u0435\u0440\u0434\u0456\u04A3 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u0434\u044B\u0493\u044B\u043D \u0436\u04D9\u043D\u0435 \u0441\u0430\u043F\u0430\u0441\u044B\u043D \u043D\u0430\u049B\u0442\u044B \u0436\u0430\u0493\u0434\u0430\u0439\u043B\u0430\u0440\u0434\u0430 \u0442\u0435\u043A\u0441\u0435\u0440\u0456\u04A3\u0456\u0437. \u0414\u0435\u043C\u043E-\u049B\u043E\u043B\u0436\u0435\u0442\u0456\u043C\u0434\u0456\u043B\u0456\u043A \u049B\u044B\u0437\u043C\u0435\u0442\u0442\u0456\u04A3 \u0431\u0430\u0440\u043B\u044B\u049B \u043D\u0435\u0433\u0456\u0437\u0433\u0456 \u043C\u04AF\u043C\u043A\u0456\u043D\u0434\u0456\u043A\u0442\u0435\u0440\u0456\u043D \u0441\u044B\u043D\u0430\u043F \u043A\u04E9\u0440\u0443\u0433\u0435 \u043C\u04AF\u043C\u043A\u0456\u043D\u0434\u0456\u043A \u0431\u0435\u0440\u0435\u0434\u0456.\n\u049A\u043E\u0441\u044B\u043B\u0443\u0493\u0430 \u04E9\u0442\u0456\u043D\u0456\u043C \u0431\u0435\u0440\u0443 \u04AF\u0448\u0456\u043D \u0444\u043E\u0440\u043C\u0430\u043D\u044B \u0442\u043E\u043B\u0442\u044B\u0440\u044B\u04A3\u044B\u0437",
382
+ agreement: "\u041F\u0456\u0448\u0456\u043D\u0434\u0456 \u0442\u043E\u043B\u0442\u044B\u0440\u0430 \u043E\u0442\u044B\u0440\u044B\u043F, \u0441\u0456\u0437 \u0436\u0435\u043A\u0435 \u0434\u0435\u0440\u0435\u043A\u0442\u0435\u0440\u0434\u0456 \u04E9\u04A3\u0434\u0435\u0443\u0433\u0435 \u0436\u04D9\u043D\u0435 \u0430\u049B\u043F\u0430\u0440\u0430\u0442\u0442\u044B\u049B \u0445\u0430\u0431\u0430\u0440\u043B\u0430\u043C\u0430\u043B\u0430\u0440\u0434\u044B \u0430\u043B\u0443\u0493\u0430 \u043A\u0435\u043B\u0456\u0441\u0456\u043C \u0431\u0435\u0440\u0435\u0441\u0456\u0437",
383
+ send: "\u04E8\u0442\u0456\u043D\u0456\u043C\u0434\u0456 \u0436\u0456\u0431\u0435\u0440\u0443"
384
+ },
379
385
  demo: {
380
386
  t: "\u0414\u0435\u043C\u043E \u049B\u043E\u043B\u0436\u0435\u0442\u0456\u043C\u0434\u0456\u043B\u0456\u043A\u0442\u0456 \u0441\u04B1\u0440\u0430\u0443",
381
387
  st: "\u0414\u0435\u043C\u043E \u049B\u043E\u043B\u0436\u0435\u0442\u0456\u043C\u0434\u0456\u043B\u0456\u043A\u0442\u0456 \u0441\u04B1\u0440\u0430\u0443 \u04AF\u0448\u0456\u043D \u0444\u043E\u0440\u043C\u0430\u043D\u044B \u0442\u043E\u043B\u0442\u044B\u0440\u044B\u04A3\u044B\u0437",
@@ -376,6 +376,12 @@ declare const RuLocale: {
376
376
  modalTitle: string;
377
377
  modalSubtitle: string;
378
378
  };
379
+ request_demo: {
380
+ title: string;
381
+ info: string;
382
+ agreement: string;
383
+ send: string;
384
+ };
379
385
  demo: {
380
386
  t: string;
381
387
  st: string;
@@ -275,7 +275,7 @@ const RuLocale = {
275
275
  },
276
276
  toContacts: "\u041D\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0443 \u041A\u043E\u043D\u0442\u0430\u043A\u0442\u044B"
277
277
  },
278
- login: "\u0412\u0445\u043E\u0434",
278
+ login: "\u0412\u043E\u0439\u0442\u0438",
279
279
  oldVersion: "\u0421\u0442\u0430\u0440\u0430\u044F \u0432\u0435\u0440\u0441\u0438\u044F \u0441\u0430\u0439\u0442\u0430",
280
280
  notifications: {
281
281
  title: "\u0423\u0432\u0435\u0434\u043E\u043C\u043B\u0435\u043D\u0438\u044F",
@@ -370,6 +370,12 @@ const RuLocale = {
370
370
  modalTitle: "\u0417\u0430\u044F\u0432\u043A\u0430 \u043F\u0440\u0438\u043D\u044F\u0442\u0430",
371
371
  modalSubtitle: "\u0421\u043F\u0430\u0441\u0438\u0431\u043E \u0437\u0430 \u043E\u0431\u0440\u0430\u0449\u0435\u043D\u0438\u0435!"
372
372
  },
373
+ request_demo: {
374
+ title: "\u041F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u0432\u0441\u0435 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0438\u0441\u0430 \u0431\u0435\u0441\u043F\u043B\u0430\u0442\u043D\u043E",
375
+ info: "\u041F\u0440\u043E\u0432\u0435\u0440\u044C\u0442\u0435 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B \u0438 \u043A\u0430\u0447\u0435\u0441\u0442\u0432\u043E \u0434\u0430\u043D\u043D\u044B\u0445 \u0432 \u0440\u0435\u0430\u043B\u044C\u043D\u044B\u0445 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u0445. \u0414\u0435\u043C\u043E-\u0434\u043E\u0441\u0442\u0443\u043F \u043F\u043E\u0437\u0432\u043E\u043B\u0438\u0442 \u043F\u0440\u043E\u0442\u0435\u0441\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432\u0441\u0435 \u043A\u043B\u044E\u0447\u0435\u0432\u044B\u0435 \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0438\u0441\u0430.\n\u0417\u0430\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0444\u043E\u0440\u043C\u0443, \u0447\u0442\u043E\u0431\u044B \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0437\u0430\u044F\u0432\u043A\u0443 \u043D\u0430 \u043F\u043E\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u0438\u0435",
376
+ agreement: "\u0417\u0430\u043F\u043E\u043B\u043D\u044F\u044F \u0444\u043E\u0440\u043C\u0443, \u0432\u044B \u0441\u043E\u0433\u043B\u0430\u0448\u0430\u0435\u0442\u0435\u0441\u044C \u043D\u0430 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u043A\u0443 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u044C\u043D\u044B\u0445 \u0434\u0430\u043D\u043D\u044B\u0445 \u0438 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u0438\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u043E\u043D\u043D\u044B\u0445 \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0439",
377
+ send: "\u041E\u0442\u043F\u0440\u0430\u0432\u0438\u0442\u044C \u0437\u0430\u044F\u0432\u043A\u0443"
378
+ },
373
379
  demo: {
374
380
  t: "\u0417\u0430\u043F\u0440\u043E\u0441\u0438\u0442\u044C \u0434\u0435\u043C\u043E-\u0434\u043E\u0441\u0442\u0443\u043F",
375
381
  st: "\u0417\u0430\u043F\u043E\u043B\u043D\u0438\u0442\u0435 \u0444\u043E\u0440\u043C\u0443, \u0447\u0442\u043E\u0431\u044B \u043E\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0437\u0430\u044F\u0432\u043A\u0443 \u043D\u0430 \u0434\u0435\u043C\u043E-\u0434\u043E\u0441\u0442\u0443\u043F",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "3.1.16",
3
+ "version": "3.1.17",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",