@saooti/octopus-sdk 40.2.15 → 40.2.16
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/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
© Saooti 2025
|
|
11
11
|
</div>
|
|
12
12
|
<FooterGarSection v-if="isGarRole" :auth-orga-id="authOrgaId" />
|
|
13
|
-
<nav
|
|
13
|
+
<nav :aria-label="$t('Site menu')">
|
|
14
14
|
<ul class="p-0 m-0">
|
|
15
15
|
<li
|
|
16
16
|
v-for="link in routerLinkSecondArray"
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
/>
|
|
71
71
|
</a>
|
|
72
72
|
</template>
|
|
73
|
-
<div class="d-flex align-items-center justify-content-end flex-grow-1">
|
|
74
|
-
<nav
|
|
73
|
+
<div role="navigation" class="d-flex align-items-center justify-content-end flex-grow-1">
|
|
74
|
+
<nav :aria-label="$t('Site menu')">
|
|
75
75
|
<ul class="d-flex">
|
|
76
76
|
<template v-for="link in routerLinkArray" :key="link.routeName">
|
|
77
77
|
<li v-if="link.condition" class="li-style-none">
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
:left-pos="true"
|
|
108
108
|
:is-top-layer="true"
|
|
109
109
|
>
|
|
110
|
-
<nav
|
|
110
|
+
<nav class="d-flex flex-column" :aria-label="$t('Site menu')">
|
|
111
111
|
<ul class="p-0 m-0">
|
|
112
112
|
<template v-for="link in routerLinkInsideArray" :key="link.routeName">
|
|
113
113
|
<li
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<section class="page-box map-page">
|
|
3
3
|
<component :is="titleTag">{{ $t("Site map") }}</component>
|
|
4
|
-
<nav
|
|
4
|
+
<nav :aria-label="$t('Site menu')" class="d-flex flex-column align-items-center">
|
|
5
5
|
<ul class="my-1">
|
|
6
6
|
<template v-for="linkItem in siteMap" :key="linkItem.id">
|
|
7
7
|
<li v-if="linkItem.condition" :id="linkItem.id" class="my-1">
|