adata-ui 3.1.44 → 3.1.45
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 +1 -1
- package/dist/runtime/components/Header.vue +2 -2
- package/dist/runtime/components/header/HeaderLink.vue +1 -0
- package/dist/runtime/components/header/LangSwitcher.vue +1 -0
- package/dist/runtime/components/header/NavList.vue +1 -0
- package/dist/runtime/components/header/ProfileMenuContent.vue +2 -1
- package/dist/runtime/components/header/ProfileMenuContent.vue.d.ts +1 -0
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -121,7 +121,7 @@ onBeforeMount(() => {
|
|
|
121
121
|
</button>
|
|
122
122
|
</div>
|
|
123
123
|
</section>
|
|
124
|
-
<
|
|
124
|
+
<nav class="hidden lg:flex items-center gap-4 justify-between lg:justify-start w-full" itemscope itemtype="https://schema.org/SiteNavigationElement" role="list">
|
|
125
125
|
<nuxt-link
|
|
126
126
|
aria-label="Adata-logo"
|
|
127
127
|
:to="`https://${mode}.kz`"
|
|
@@ -134,7 +134,7 @@ onBeforeMount(() => {
|
|
|
134
134
|
/>
|
|
135
135
|
</nuxt-link>
|
|
136
136
|
<header-link class="hidden lg:block" />
|
|
137
|
-
</
|
|
137
|
+
</nav>
|
|
138
138
|
<div class="text-deepblue hidden items-center gap-4 dark:text-[#E3E5E8] lg:flex">
|
|
139
139
|
<!-- Mobile hidden -->
|
|
140
140
|
<div class="hidden items-center gap-4 lg:flex">
|
|
@@ -86,6 +86,7 @@ function isActive(itemPath) {
|
|
|
86
86
|
:to="item.to"
|
|
87
87
|
class="inline-block normal-case w-full cursor-pointer align-middle text-sm font-semibold text-gray-600 dark:text-gray-200"
|
|
88
88
|
exact-active-class="text-blue-700 dark:text-blue-500"
|
|
89
|
+
itemprop="name"
|
|
89
90
|
>
|
|
90
91
|
{{ item.title }}
|
|
91
92
|
</nuxt-link>
|
|
@@ -19,6 +19,7 @@ const props = defineProps({
|
|
|
19
19
|
rate: { type: String, required: true },
|
|
20
20
|
daysRemaining: { type: Number, required: false, default: 0 },
|
|
21
21
|
limitRemaining: { type: Number, required: false, default: 0 },
|
|
22
|
+
limitRemainingLabel: { type: String, required: false },
|
|
22
23
|
balance: { type: Number, required: true },
|
|
23
24
|
replenish: { type: String, required: false },
|
|
24
25
|
oldVersion: { type: String, required: false },
|
|
@@ -166,7 +167,7 @@ const onReplenish = () => {
|
|
|
166
167
|
class="w-full py-[6px] font-semibold"
|
|
167
168
|
>
|
|
168
169
|
<span>
|
|
169
|
-
{{ t("header.profile.requests") }}
|
|
170
|
+
{{ limitRemainingLabel ?? t("header.profile.requests") }}
|
|
170
171
|
</span>
|
|
171
172
|
{{ limitRemaining }}
|
|
172
173
|
</a-status-badge>
|