adata-ui 4.0.13 → 4.0.15

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": "4.0.13",
8
+ "version": "4.0.15",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -2,7 +2,7 @@
2
2
  import AToggle from "./Toggle.vue";
3
3
  import Sun from "#icons/color-mode/sun.vue";
4
4
  import Moon from "#icons/color-mode/moon.vue";
5
- import { useColorMode } from "#imports";
5
+ import { useColorMode, computed, onMounted } from "#imports";
6
6
  import { useCookie } from "#app";
7
7
  const colorMode = useColorMode();
8
8
  const setColorMode = useCookie("colorMode");
@@ -7,6 +7,7 @@ import ISocialsTelegram from "#icons/socials/telegram.vue";
7
7
  import ISocialsFacebook from "#icons/socials/facebook.vue";
8
8
  import ISocialsTiktok from "#icons/socials/tik-tok.vue";
9
9
  import IAdata from "#icons/logo/adata.vue";
10
+ import { useAppConfig } from "#app";
10
11
  import { useI18n } from "#imports";
11
12
  const year = (/* @__PURE__ */ new Date()).getFullYear();
12
13
  const { t } = useI18n();
@@ -1,10 +1,10 @@
1
1
  <script setup>
2
+ import { PAGES } from "../../shared/constants/pages";
2
3
  import NavList from "./NavList.vue";
3
4
  import CardGallery from "./CardGallery.vue";
4
5
  import { useI18n } from "#imports";
5
6
  import IUsersThree from "#icons/users/users-three.vue";
6
7
  import ISearch from "#icons/search.vue";
7
- import { PAGES } from "../../shared/constants/pages";
8
8
  import IArrowCircleDown from "#icons/arrow/arrow-circle-down.vue";
9
9
  import IUsers from "#icons/users/users.vue";
10
10
  import IGlobe from "#icons/globe.vue";
@@ -29,6 +29,7 @@ import ISviazi from "#icons/sviazi.vue";
29
29
  import ICalculator from "#icons/calculator.vue";
30
30
  import IId from "#icons/document/id.vue";
31
31
  import IProfile from "#icons/document/profile.vue";
32
+ import { useAppConfig } from "#app";
32
33
  const props = defineProps({
33
34
  animation: { type: String, required: false, default: "next" },
34
35
  index: { type: Number, required: false, default: 0 },
@@ -13,6 +13,7 @@ import IFile from "#icons/file.vue";
13
13
  import IHistory from "#icons/history.vue";
14
14
  import IUsers from "#icons/users/users.vue";
15
15
  import IMessage from "#icons/message.vue";
16
+ import { useAppConfig } from "#app";
16
17
  const isLargeScreen = true;
17
18
  const props = defineProps({
18
19
  rate: { type: String, required: true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "4.0.13",
3
+ "version": "4.0.15",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",