docus 5.9.0 → 5.10.1
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/app/app.config.ts +12 -0
- package/app/components/app/AppHeader.vue +3 -6
- package/app/components/app/AppHeaderBody.vue +6 -2
- package/app/components/app/AppHeaderBottom.vue +6 -2
- package/app/components/app/AppHeaderLeft.vue +16 -0
- package/app/components/docs/DocsAsideLeftBody.vue +6 -1
- package/app/components/docs/DocsAsideMobileBar.vue +11 -1
- package/app/components/docs/DocsAsideRight.vue +6 -1
- package/app/composables/useUIConfig.ts +30 -0
- package/i18n/locales/ar.json +27 -0
- package/i18n/locales/be.json +27 -0
- package/i18n/locales/bg.json +27 -0
- package/i18n/locales/bn.json +27 -0
- package/i18n/locales/ca.json +27 -0
- package/i18n/locales/ckb.json +32 -1
- package/i18n/locales/cs.json +27 -0
- package/i18n/locales/da.json +27 -0
- package/i18n/locales/de.json +27 -0
- package/i18n/locales/el.json +27 -0
- package/i18n/locales/es.json +27 -0
- package/i18n/locales/et.json +27 -0
- package/i18n/locales/fi.json +27 -0
- package/i18n/locales/he.json +27 -0
- package/i18n/locales/hi.json +27 -0
- package/i18n/locales/hy.json +27 -0
- package/i18n/locales/id.json +27 -0
- package/i18n/locales/it.json +27 -0
- package/i18n/locales/ja.json +27 -0
- package/i18n/locales/kk.json +27 -0
- package/i18n/locales/km.json +27 -0
- package/i18n/locales/ko.json +27 -0
- package/i18n/locales/ky.json +27 -0
- package/i18n/locales/lb.json +27 -0
- package/i18n/locales/ms.json +27 -0
- package/i18n/locales/nb.json +27 -0
- package/i18n/locales/nl.json +27 -0
- package/i18n/locales/pl.json +27 -0
- package/i18n/locales/pt-BR.json +27 -0
- package/i18n/locales/ro.json +27 -0
- package/i18n/locales/ru.json +27 -0
- package/i18n/locales/si.json +27 -0
- package/i18n/locales/sl.json +27 -0
- package/i18n/locales/sv.json +27 -0
- package/i18n/locales/tr.json +27 -0
- package/i18n/locales/uk.json +27 -0
- package/i18n/locales/ur.json +27 -0
- package/i18n/locales/vi.json +27 -0
- package/i18n/locales/zh-CN.json +27 -0
- package/index.d.ts +33 -0
- package/modules/assistant/README.md +7 -5
- package/modules/assistant/index.ts +19 -11
- package/modules/assistant/runtime/server/api/search.ts +41 -9
- package/modules/config.ts +1 -1
- package/modules/css.ts +12 -0
- package/modules/markdown-rewrite.ts +11 -1
- package/modules/skills/index.ts +25 -13
- package/package.json +19 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docus",
|
|
3
3
|
"description": "Nuxt layer for Docus documentation theme",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.10.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./nuxt.config.ts",
|
|
7
7
|
"repository": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"app",
|
|
15
15
|
"i18n",
|
|
16
16
|
"content.config.ts",
|
|
17
|
+
"index.d.ts",
|
|
17
18
|
"modules",
|
|
18
19
|
"nuxt.config.ts",
|
|
19
20
|
"nuxt.schema.ts",
|
|
@@ -22,39 +23,39 @@
|
|
|
22
23
|
"README.md"
|
|
23
24
|
],
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@ai-sdk/gateway": "^3.0.
|
|
26
|
-
"@ai-sdk/mcp": "^1.0.
|
|
27
|
-
"@ai-sdk/vue": "3.0.
|
|
28
|
-
"@iconify-json/lucide": "^1.2.
|
|
29
|
-
"@iconify-json/simple-icons": "^1.2.
|
|
26
|
+
"@ai-sdk/gateway": "^3.0.104",
|
|
27
|
+
"@ai-sdk/mcp": "^1.0.36",
|
|
28
|
+
"@ai-sdk/vue": "3.0.168",
|
|
29
|
+
"@iconify-json/lucide": "^1.2.102",
|
|
30
|
+
"@iconify-json/simple-icons": "^1.2.79",
|
|
30
31
|
"@iconify-json/vscode-icons": "^1.2.45",
|
|
31
|
-
"@nuxt/content": "^3.
|
|
32
|
+
"@nuxt/content": "^3.13.0",
|
|
32
33
|
"@nuxt/image": "^2.0.0",
|
|
33
34
|
"@nuxt/kit": "^4.4.2",
|
|
34
|
-
"@nuxt/ui": "^4.
|
|
35
|
+
"@nuxt/ui": "^4.7.1",
|
|
35
36
|
"@nuxtjs/i18n": "^10.2.4",
|
|
36
|
-
"@nuxtjs/mcp-toolkit": "^0.13.
|
|
37
|
-
"@nuxtjs/mdc": "^0.21.
|
|
38
|
-
"@nuxtjs/robots": "^6.0.
|
|
37
|
+
"@nuxtjs/mcp-toolkit": "^0.13.4",
|
|
38
|
+
"@nuxtjs/mdc": "^0.21.1",
|
|
39
|
+
"@nuxtjs/robots": "^6.0.7",
|
|
39
40
|
"@shikijs/core": "^4.0.2",
|
|
40
41
|
"@shikijs/engine-javascript": "^4.0.2",
|
|
41
42
|
"@shikijs/langs": "^4.0.2",
|
|
42
43
|
"@shikijs/themes": "^4.0.2",
|
|
43
|
-
"@takumi-rs/core": "^0.
|
|
44
|
+
"@takumi-rs/core": "^1.0.15",
|
|
44
45
|
"@vueuse/core": "^14.2.1",
|
|
45
|
-
"ai": "6.0.
|
|
46
|
-
"defu": "^6.1.
|
|
46
|
+
"ai": "6.0.168",
|
|
47
|
+
"defu": "^6.1.7",
|
|
47
48
|
"exsolve": "^1.0.8",
|
|
48
49
|
"git-url-parse": "^16.1.0",
|
|
49
|
-
"motion-v": "^2.2.
|
|
50
|
+
"motion-v": "^2.2.1",
|
|
50
51
|
"nuxt-llms": "^0.2.0",
|
|
51
|
-
"nuxt-og-image": "^6.
|
|
52
|
+
"nuxt-og-image": "^6.4.5",
|
|
52
53
|
"pkg-types": "^2.3.0",
|
|
53
54
|
"scule": "^1.3.0",
|
|
54
55
|
"shiki-stream": "^0.1.4",
|
|
55
|
-
"tailwindcss": "^4.2.
|
|
56
|
+
"tailwindcss": "^4.2.3",
|
|
56
57
|
"ufo": "^1.6.3",
|
|
57
|
-
"yaml": "^2.
|
|
58
|
+
"yaml": "^2.8.3",
|
|
58
59
|
"zod": "^4.3.6",
|
|
59
60
|
"zod-to-json-schema": "^3.25.2"
|
|
60
61
|
},
|