adata-ui 2.0.85 → 2.0.86
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.
|
@@ -155,7 +155,7 @@ onBeforeMount(() => {
|
|
|
155
155
|
/>
|
|
156
156
|
</div>
|
|
157
157
|
<!-- Mobile hidden -->
|
|
158
|
-
<nav class="hidden items-center gap-4 lg:flex">
|
|
158
|
+
<nav class="hidden items-center gap-4 lg:flex" itemscope itemtype="https://schema.org/SiteNavigationElement" role="list">
|
|
159
159
|
<nuxt-link-locale
|
|
160
160
|
aria-label="Adata-logo"
|
|
161
161
|
:to="buildLocalizedUrl(locale, urls.landing)"
|
|
@@ -151,6 +151,7 @@ watch(
|
|
|
151
151
|
:key="nav.label"
|
|
152
152
|
class="group inline-block border-r border-[#2C3E501A] px-2 last-of-type:border-none dark:border-[#E3E5E81A]"
|
|
153
153
|
@click="lockMenu"
|
|
154
|
+
role="listitem"
|
|
154
155
|
>
|
|
155
156
|
<div
|
|
156
157
|
class="relative cursor-pointer font-bold uppercase text-gray-800 hover:text-gray-600 dark:text-gray-200 hover:dark:text-gray-600"
|
|
@@ -99,6 +99,7 @@ function isActive(itemPath: string) {
|
|
|
99
99
|
<nuxt-link-locale
|
|
100
100
|
v-if="item.to"
|
|
101
101
|
:to="item.to"
|
|
102
|
+
itemprop="name"
|
|
102
103
|
class="inline-block normal-case w-full cursor-pointer align-middle text-sm font-semibold text-gray-600 dark:text-gray-200"
|
|
103
104
|
>
|
|
104
105
|
{{ item.title }}
|
package/package.json
CHANGED