@slidev/client 0.50.0-beta.8 → 0.50.0-beta.9

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/main.ts CHANGED
@@ -4,6 +4,10 @@ import { createApp } from 'vue'
4
4
  import App from './App.vue'
5
5
  import setupMain from './setup/main'
6
6
 
7
- const app = createApp(App)
8
- setupMain(app)
9
- app.mount('#app')
7
+ async function main() {
8
+ const app = createApp(App)
9
+ await setupMain(app)
10
+ app.mount('#app')
11
+ }
12
+
13
+ main()
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@slidev/client",
3
3
  "type": "module",
4
- "version": "0.50.0-beta.8",
4
+ "version": "0.50.0-beta.9",
5
5
  "description": "Presentation slides for developers",
6
6
  "author": "antfu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -37,7 +37,7 @@
37
37
  "@slidev/rough-notation": "^0.1.0",
38
38
  "@typescript/ata": "^0.9.7",
39
39
  "@unhead/vue": "^1.11.13",
40
- "@unocss/reset": "^0.65.0-beta.2",
40
+ "@unocss/reset": "^0.65.0",
41
41
  "@vueuse/core": "^12.0.0",
42
42
  "@vueuse/math": "^12.0.0",
43
43
  "@vueuse/motion": "^2.2.6",
@@ -55,14 +55,14 @@
55
55
  "shiki": "^1.24.0",
56
56
  "shiki-magic-move": "^0.5.0",
57
57
  "typescript": "5.6.3",
58
- "unocss": "^0.65.0-beta.2",
58
+ "unocss": "^0.65.0",
59
59
  "vue": "^3.5.13",
60
60
  "vue-router": "^4.5.0",
61
61
  "yaml": "^2.6.1",
62
- "@slidev/parser": "0.50.0-beta.8",
63
- "@slidev/types": "0.50.0-beta.8"
62
+ "@slidev/parser": "0.50.0-beta.9",
63
+ "@slidev/types": "0.50.0-beta.9"
64
64
  },
65
65
  "devDependencies": {
66
- "vite": "^6.0.1"
66
+ "vite": "^6.0.2"
67
67
  }
68
68
  }
package/styles/index.css CHANGED
@@ -40,6 +40,10 @@ html {
40
40
  pointer-events: none;
41
41
  }
42
42
 
43
+ .slidev-layout a.slidev-icon-btn {
44
+ @apply border-none hover:border-none hover:text-white;
45
+ }
46
+
43
47
  .slidev-vclick-target {
44
48
  @apply transition-opacity duration-100;
45
49
  }