adata-ui 4.0.37 → 4.0.38

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.37",
8
+ "version": "4.0.38",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "1.0.1",
11
11
  "unbuild": "3.5.0"
@@ -49,28 +49,18 @@ function pushProfile() {
49
49
  class="h-16 w-full flex flex-col justify-center items-center"
50
50
  @click="pushProfile"
51
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>
52
+ <template v-if="isAuthenticated">
53
+ <i-avatar class="shrink-0" />
54
+ <span class="text-[10px] leading-5 mt-1">
55
+ {{ t("modals.mobile_navigation.type_profile") }}
56
+ </span>
57
+ </template>
58
+ <template v-else>
59
+ <i-navigation-logout class="shrink-0" />
60
+ <span class="text-[10px] leading-5 mt-1">
61
+ {{ t("header.login") }}
62
+ </span>
63
+ </template>
74
64
  </button>
75
65
  </div>
76
66
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "4.0.37",
3
+ "version": "4.0.38",
4
4
  "description": "Adata UI",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",