@slidev/docs 52.5.0 → 52.7.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/README.md +1 -1
- package/features/timer.md +23 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ Documentation for [Slidev](https://github.com/slidevjs/slidev)
|
|
|
19
19
|
| <del>Deutsch</del> | [docs-de](https://github.com/slidevjs/docs-de) | [de.sli.dev](https://de.sli.dev) | [@fabiankachlock](https://github.com/fabiankachlock) |
|
|
20
20
|
| <del>Português (BR)</del> | [docs-br](https://github.com/slidevjs/docs-br) | [br.sli.dev](https://br.sli.dev) | [@luisfelipesdn12](https://github.com/luisfelipesdn12) |
|
|
21
21
|
| <del>Ελληνικά</del> | [docs-el](https://github.com/slidevjs/docs-el) | [el.sli.dev](https://el.sli.dev) | [@GeopJr](https://github.com/GeopJr) |
|
|
22
|
-
| <del>日本語</del> | [docs-ja](https://github.com/slidevjs/docs-
|
|
22
|
+
| <del>日本語</del> | [docs-ja](https://github.com/slidevjs/docs-ja) | [ja.sli.dev](https://ja.sli.dev) | [@IkumaTadokoro](https://github.com/IkumaTadokoro) |
|
|
23
23
|
|
|
24
24
|
## Start Server Locally
|
|
25
25
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
tags: [presenter]
|
|
3
|
+
description: Timer for the presenter mode.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Presenter Timer
|
|
7
|
+
|
|
8
|
+
Slidev provides a timer for the presenter mode. You can start, pause, and reset the timer.
|
|
9
|
+
|
|
10
|
+
It will show a timer (in stopwatch or countdown mode), and a progress bar in the presenter mode.
|
|
11
|
+
|
|
12
|
+
## Configuration
|
|
13
|
+
|
|
14
|
+
You can set the duration of the presentation in the headmatter. Default is `30min`.
|
|
15
|
+
|
|
16
|
+
```yaml
|
|
17
|
+
---
|
|
18
|
+
# duration of the presentation, default is '30min'
|
|
19
|
+
duration: 30min
|
|
20
|
+
# timer mode, can be 'countdown' or 'stopwatch', default is 'stopwatch'
|
|
21
|
+
timer: stopwatch
|
|
22
|
+
---
|
|
23
|
+
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slidev/docs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "52.
|
|
4
|
+
"version": "52.7.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"funding": "https://github.com/sponsors/antfu",
|
|
7
7
|
"homepage": "https://sli.dev",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
],
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@antfu/utils": "^9.3.0",
|
|
20
|
-
"@iconify/json": "^2.2.
|
|
21
|
-
"@shikijs/vitepress-twoslash": "^3.
|
|
22
|
-
"@types/node": "^24.
|
|
20
|
+
"@iconify/json": "^2.2.404",
|
|
21
|
+
"@shikijs/vitepress-twoslash": "^3.15.0",
|
|
22
|
+
"@types/node": "^24.10.0",
|
|
23
23
|
"@unocss/reset": "^66.5.4",
|
|
24
|
-
"@vueuse/core": "^
|
|
24
|
+
"@vueuse/core": "^14.0.0",
|
|
25
25
|
"fast-glob": "^3.3.3",
|
|
26
26
|
"gray-matter": "^4.0.3",
|
|
27
27
|
"markdown-it": "^14.1.0",
|
|
28
|
-
"shiki": "^3.
|
|
28
|
+
"shiki": "^3.15.0",
|
|
29
29
|
"typeit": "8.1.0",
|
|
30
30
|
"typescript": "^5.9.3",
|
|
31
31
|
"unocss": "^66.5.4",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"unplugin-vue-components": "^30.0.0",
|
|
34
34
|
"vite-plugin-inspect": "^11.3.3",
|
|
35
35
|
"vitepress": "^2.0.0-alpha.12",
|
|
36
|
-
"vitepress-plugin-group-icons": "^1.6.
|
|
37
|
-
"vitepress-plugin-llms": "^1.
|
|
38
|
-
"vue": "^3.5.
|
|
39
|
-
"@slidev/
|
|
40
|
-
"@slidev/client": "52.
|
|
41
|
-
"@slidev/
|
|
36
|
+
"vitepress-plugin-group-icons": "^1.6.5",
|
|
37
|
+
"vitepress-plugin-llms": "^1.9.0",
|
|
38
|
+
"vue": "^3.5.23",
|
|
39
|
+
"@slidev/types": "52.7.0",
|
|
40
|
+
"@slidev/client": "52.7.0",
|
|
41
|
+
"@slidev/parser": "52.7.0"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"dev": "vitepress",
|