valaxy-theme-press 0.16.4 → 0.17.0-beta.2
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.
|
@@ -28,14 +28,14 @@ const { t } = useI18n()
|
|
|
28
28
|
@click="open = !open"
|
|
29
29
|
>
|
|
30
30
|
<span class="text">
|
|
31
|
-
{{ t(item.text) }}
|
|
31
|
+
{{ item.text.includes('.') ? t(item.text) : item.text }}
|
|
32
32
|
</span>
|
|
33
33
|
<div i-ri-arrow-drop-down-line />
|
|
34
34
|
</button>
|
|
35
35
|
|
|
36
36
|
<div class="menu grow" flex="~ col" items="start">
|
|
37
37
|
<AppLink v-for="itemLink in item.items" :key="itemLink.text" class="menu-item" p="x-3" :to="itemLink.link">
|
|
38
|
-
{{ t(itemLink.text) }}
|
|
38
|
+
{{ itemLink.text.includes('.') ? t(itemLink.text) : itemLink.text }}
|
|
39
39
|
</AppLink>
|
|
40
40
|
</div>
|
|
41
41
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "valaxy-theme-press",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0-beta.2",
|
|
4
4
|
"description": "Docs Theme for Valaxy",
|
|
5
5
|
"author": {
|
|
6
6
|
"email": "me@yunyoujun.cn",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"@docsearch/js": "^3.5.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"valaxy": "0.
|
|
26
|
+
"valaxy": "0.17.0-beta.2"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/tsconfig.json
CHANGED
|
File without changes
|