@slidev/client 0.49.27 → 0.49.28

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.
@@ -151,6 +151,7 @@ export function useRecording() {
151
151
  cursor: 'motion',
152
152
  resizeMode: 'crop-and-scale',
153
153
  },
154
+ selfBrowserSurface: 'include',
154
155
  })
155
156
  streamCapture.value.addEventListener('inactive', stopRecording)
156
157
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@slidev/client",
3
3
  "type": "module",
4
- "version": "0.49.27",
4
+ "version": "0.49.28",
5
5
  "description": "Presentation slides for developers",
6
6
  "author": "antfu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -58,8 +58,8 @@
58
58
  "vue": "^3.4.38",
59
59
  "vue-router": "^4.4.3",
60
60
  "yaml": "^2.5.0",
61
- "@slidev/parser": "0.49.27",
62
- "@slidev/types": "0.49.27"
61
+ "@slidev/parser": "0.49.28",
62
+ "@slidev/types": "0.49.28"
63
63
  },
64
64
  "devDependencies": {
65
65
  "vite": "^5.4.1"
package/styles/code.css CHANGED
@@ -5,7 +5,6 @@ html.dark:root {
5
5
  /* Shiki */
6
6
  html.dark .shiki {
7
7
  color: var(--shiki-dark, inherit);
8
- background: var(--shiki-dark-bg, inherit);
9
8
  --twoslash-popup-bg: var(--shiki-dark-bg, inherit);
10
9
  }
11
10