@tekkare/auriga 0.2.44 → 0.2.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/argChaptersNav.vue +1 -1
- package/dist/runtime/components/argScopeCriteria.vue +1 -1
- package/dist/runtime/components/argScopeManage.vue +1 -1
- package/dist/runtime/components/argSearchInput.vue +1 -1
- package/dist/runtime/components/argSidebar.vue +5 -5
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
class="arg_sidebar_home"
|
|
21
21
|
>
|
|
22
22
|
<arg-tooltip
|
|
23
|
-
:tooltip-text="langData?.home"
|
|
23
|
+
:tooltip-text="langData === null ? '' : langData?.home"
|
|
24
24
|
:disable="sidebarOpen"
|
|
25
25
|
dir="right"
|
|
26
26
|
:class="[
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
</nuxt-link>
|
|
35
35
|
<div class="sidebar_toggle" @click="toggleSidebar()">
|
|
36
36
|
<arg-tooltip
|
|
37
|
-
:tooltip-text="langData?.open"
|
|
37
|
+
:tooltip-text="langData === null ? '' : langData?.open"
|
|
38
38
|
:disable="sidebarOpen"
|
|
39
39
|
dir="right"
|
|
40
40
|
:class="[
|
|
@@ -91,14 +91,14 @@ export default defineComponent({
|
|
|
91
91
|
type: String,
|
|
92
92
|
default: "en",
|
|
93
93
|
validator: (value) => {
|
|
94
|
-
return ["en", "fr", "es"].includes(value);
|
|
94
|
+
return ["en", "fr", "es", "jp"].includes(value);
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
97
|
homeLink: { type: String, default: "/" }
|
|
98
98
|
},
|
|
99
99
|
emits: ["onSidebarChange", "update:Sidebar"],
|
|
100
100
|
setup(props, { emit }) {
|
|
101
|
-
onMounted(() => {
|
|
101
|
+
onMounted(async () => {
|
|
102
102
|
window?.addEventListener("resize", handleResize);
|
|
103
103
|
handleResize();
|
|
104
104
|
});
|
|
@@ -114,7 +114,7 @@ export default defineComponent({
|
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
onBeforeMount(async () => {
|
|
117
|
-
setLang();
|
|
117
|
+
await setLang();
|
|
118
118
|
});
|
|
119
119
|
watch(
|
|
120
120
|
() => props.lang,
|