@slidev/types 52.2.4 → 52.3.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 +9 -0
- package/package.json +9 -9
package/dist/index.d.mts
CHANGED
|
@@ -346,6 +346,15 @@ interface HeadmatterConfig extends TransitionOptions {
|
|
|
346
346
|
* @default true
|
|
347
347
|
*/
|
|
348
348
|
codeCopy?: boolean;
|
|
349
|
+
/**
|
|
350
|
+
* Show copy button in magic move code blocks
|
|
351
|
+
*
|
|
352
|
+
* `'final'` for only show copy button on the final step
|
|
353
|
+
* `'always'` or `true` for show copy button on all steps
|
|
354
|
+
*
|
|
355
|
+
* @default true
|
|
356
|
+
*/
|
|
357
|
+
magicMoveCopy?: boolean | 'final' | 'always';
|
|
349
358
|
/**
|
|
350
359
|
* The author of the slides
|
|
351
360
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slidev/types",
|
|
3
|
-
"version": "52.
|
|
3
|
+
"version": "52.3.0",
|
|
4
4
|
"description": "Shared types declarations for Slidev",
|
|
5
5
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,23 +23,23 @@
|
|
|
23
23
|
"node": ">=18.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@antfu/utils": "^9.
|
|
26
|
+
"@antfu/utils": "^9.3.0",
|
|
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.
|
|
36
|
-
"unplugin-vue-markdown": "^29.
|
|
34
|
+
"unocss": "^66.5.4",
|
|
35
|
+
"unplugin-icons": "^22.5.0",
|
|
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
|
-
"vue": "^3.5.
|
|
42
|
-
"vue-router": "^4.
|
|
41
|
+
"vue": "^3.5.22",
|
|
42
|
+
"vue-router": "^4.6.3"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "tsdown src/index.ts",
|