@slidev/types 52.2.5 → 52.4.0
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/index.d.mts +12 -0
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -564,6 +564,18 @@ interface HeadmatterConfig extends TransitionOptions {
|
|
|
564
564
|
* @default {}
|
|
565
565
|
*/
|
|
566
566
|
seoMeta?: SeoMeta;
|
|
567
|
+
/**
|
|
568
|
+
* Auto replace words with `<ruby>` tags in notes
|
|
569
|
+
*
|
|
570
|
+
* @default {}
|
|
571
|
+
*
|
|
572
|
+
* @example
|
|
573
|
+
* ```yaml
|
|
574
|
+
* notesAutoRuby:
|
|
575
|
+
* 大丈夫: だいじょうぶ
|
|
576
|
+
* ```
|
|
577
|
+
*/
|
|
578
|
+
notesAutoRuby?: Record<string, string>;
|
|
567
579
|
}
|
|
568
580
|
interface Frontmatter extends TransitionOptions {
|
|
569
581
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slidev/types",
|
|
3
|
-
"version": "52.
|
|
3
|
+
"version": "52.4.0",
|
|
4
4
|
"description": "Shared types declarations for Slidev",
|
|
5
5
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
"@shikijs/markdown-it": "^3.13.0",
|
|
28
28
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
29
29
|
"@vitejs/plugin-vue-jsx": "^5.1.1",
|
|
30
|
-
"katex": "^0.16.
|
|
30
|
+
"katex": "^0.16.25",
|
|
31
31
|
"mermaid": "^11.12.0",
|
|
32
32
|
"monaco-editor": "^0.53.0",
|
|
33
33
|
"shiki": "^3.13.0",
|
|
34
|
-
"unocss": "^66.5.
|
|
35
|
-
"unplugin-icons": "^22.
|
|
34
|
+
"unocss": "^66.5.4",
|
|
35
|
+
"unplugin-icons": "^22.5.0",
|
|
36
36
|
"unplugin-vue-markdown": "^29.2.0",
|
|
37
37
|
"vite-plugin-inspect": "^11.3.3",
|
|
38
38
|
"vite-plugin-remote-assets": "^2.1.0",
|
|
39
|
-
"vite-plugin-static-copy": "^3.1.
|
|
39
|
+
"vite-plugin-static-copy": "^3.1.4",
|
|
40
40
|
"vite-plugin-vue-server-ref": "^1.0.0",
|
|
41
41
|
"vue": "^3.5.22",
|
|
42
|
-
"vue-router": "^4.
|
|
42
|
+
"vue-router": "^4.6.3"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "tsdown src/index.ts",
|