@zlict/slidev-theme-zli 0.3.0 → 0.4.2

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/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.4.2](https://github.com/zlict/slidev-theme/compare/v0.4.1...v0.4.2) (2023-11-26)
6
+
7
+
8
+ ### 🐛 Bug Fixes
9
+
10
+ * two cols header layout ([182ee41](https://github.com/zlict/slidev-theme/commit/182ee419dc0a134d72c4d3ac301558d3c8b147b6))
11
+
12
+
13
+ ### 🚀 Features
14
+
15
+ * add slide numbers ([60e5c18](https://github.com/zlict/slidev-theme/commit/60e5c185ef9ea6ddbb0e5f065f626110337dda2d))
16
+
17
+ ### [0.4.1](https://github.com/zlict/slidev-theme/compare/v0.4.0...v0.4.1) (2023-11-25)
18
+
19
+ ## [0.4.0](https://github.com/zlict/slidev-theme/compare/v0.3.0...v0.4.0) (2023-11-25)
20
+
5
21
  ## [0.3.0](https://github.com/zlict/slidev-theme/compare/v0.2.4...v0.3.0) (2023-08-10)
6
22
 
7
23
  ### [0.2.4](https://github.com/zlict/slidev-theme/compare/v0.2.3...v0.2.4) (2023-06-01)
@@ -0,0 +1,7 @@
1
+ <template>
2
+ <footer style="font-size: 0.5em" class="absolute top-7 right-4 pr-8 right-0 text-right text-gray-400 flex z-1">
3
+ <div>
4
+ <SlideCurrentNo />&nbsp;/&nbsp;<SlidesTotal />
5
+ </div>
6
+ </footer>
7
+ </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zlict/slidev-theme-zli",
3
- "version": "0.3.0",
3
+ "version": "0.4.2",
4
4
  "description": "ZLI Slidev theme",
5
5
  "keywords": [
6
6
  "slidev-theme",
@@ -16,37 +16,26 @@
16
16
  },
17
17
  "license": "UNLICENSED",
18
18
  "author": "openscript GmbH <hi+npm@openscript.ch>",
19
- "scripts": {
20
- "build": "slidev build example.md",
21
- "dev": "slidev example.md --open",
22
- "export": "slidev export example.md",
23
- "screenshot": "slidev export example.md --format png",
24
- "release:major": "standard-version --release-as major && git push --follow-tags",
25
- "release:minor": "standard-version --release-as minor && git push --follow-tags",
26
- "release:patch": "standard-version --release-as patch && git push --follow-tags",
27
- "release:create-github-release": "conventional-github-releaser -p angular"
28
- },
29
19
  "dependencies": {
30
- "@fontsource/dongle": "^5.0.2",
31
- "@fontsource/fira-code": "^5.0.2",
32
- "@fontsource/nunito-sans": "^5.0.2",
33
- "@fontsource/roboto": "^5.0.2",
34
- "@slidev/types": "^0.42.7",
20
+ "@fontsource/dongle": "^5.0.16",
21
+ "@fontsource/fira-code": "^5.0.15",
22
+ "@fontsource/nunito-sans": "^5.0.8",
23
+ "@fontsource/roboto": "^5.0.8",
24
+ "@slidev/types": "^0.44.0",
35
25
  "codemirror-theme-vars": "^0.1.2",
36
- "prism-theme-vars": "^0.2.4",
37
- "theme-vitesse": "^0.7.2"
26
+ "prism-theme-vars": "^0.2.4"
38
27
  },
39
28
  "devDependencies": {
40
- "@slidev/cli": "^0.42.7",
29
+ "@slidev/cli": "^0.44.0",
41
30
  "conventional-github-releaser": "^3.1.5",
42
- "npm-check": "^6.0.1",
43
- "playwright-chromium": "^1.34.3",
44
- "sass": "^1.62.0",
31
+ "playwright-chromium": "^1.40.0",
32
+ "sass": "^1.69.5",
45
33
  "standard-version": "^9.5.0"
46
34
  },
47
35
  "engines": {
48
- "node": ">=18.0.0"
36
+ "node": ">=20.0.0"
49
37
  },
38
+ "packageManager": "pnpm@8.10.5",
50
39
  "slidev": {
51
40
  "colorSchema": "light",
52
41
  "highlighter": "all",
@@ -62,5 +51,15 @@
62
51
  "css": "windicss",
63
52
  "hightlighter": "shiki"
64
53
  }
54
+ },
55
+ "scripts": {
56
+ "build": "slidev build example.md",
57
+ "dev": "slidev example.md --open",
58
+ "export": "slidev export example.md",
59
+ "screenshot": "slidev export example.md --format png",
60
+ "release:major": "standard-version --release-as major && git push --follow-tags",
61
+ "release:minor": "standard-version --release-as minor && git push --follow-tags",
62
+ "release:patch": "standard-version --release-as patch && git push --follow-tags",
63
+ "release:create-github-release": "conventional-github-releaser -p angular"
65
64
  }
66
- }
65
+ }
@@ -178,3 +178,7 @@
178
178
  background-size: 150px;
179
179
  background-repeat: no-repeat;
180
180
  }
181
+
182
+ .slidev-layout.two-cols-header {
183
+ grid-template-rows: repeat(2, min-content);
184
+ }