@sp-days-framework/slidev-theme-sykehuspartner 1.1.1-beta1 → 1.1.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/docs/changelog.mdx +11 -15
- package/package.json +4 -2
package/docs/changelog.mdx
CHANGED
|
@@ -19,27 +19,18 @@ All packages within `@sp-days-framework` use the same version number. In some ca
|
|
|
19
19
|
|
|
20
20
|
---
|
|
21
21
|
|
|
22
|
-
## Version 1.1.
|
|
22
|
+
## Version 1.1.2 
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
<details>
|
|
27
|
-
<summary><strong>Beta Details</strong> (2026 January 12)</summary>
|
|
28
|
-
|
|
29
|
-
### New in Beta 1
|
|
30
|
-
|
|
31
|
-
- Enhanced asset handling to support improved resource management in Slidev presentations
|
|
32
|
-
|
|
33
|
-
</details>
|
|
24
|
+
Version bump to match other packages in the framework
|
|
34
25
|
|
|
35
26
|
---
|
|
36
27
|
|
|
37
|
-
## Version 1.1.1
|
|
28
|
+
## Version 1.1.1 
|
|
38
29
|
|
|
39
|
-
|
|
30
|
+
Relative image path support and security updates
|
|
40
31
|
|
|
41
|
-
<details
|
|
42
|
-
<summary><strong>Details</strong> (2026
|
|
32
|
+
<details>
|
|
33
|
+
<summary><strong>Details</strong> (2026 February 09)</summary>
|
|
43
34
|
|
|
44
35
|
### New Features
|
|
45
36
|
|
|
@@ -47,6 +38,11 @@ Automatic relative image path resolution for image-based layouts
|
|
|
47
38
|
- **Vite Plugin**: Added `setup/vite-plugins.ts` that automatically transforms relative image paths into proper imports during build
|
|
48
39
|
- **Build Compatibility**: Images referenced with relative paths are now correctly bundled and hashed in production builds
|
|
49
40
|
|
|
41
|
+
### Improvements
|
|
42
|
+
|
|
43
|
+
- **Security**: Added `lodash-es` and `chevrotain` overrides to fix prototype pollution vulnerability (CVE in lodash-es < 4.17.23)
|
|
44
|
+
- **Dependencies**: Upgraded all dependencies to latest versions — @iconify-json/vscode-icons 1.2.40 and more
|
|
45
|
+
|
|
50
46
|
### How It Works
|
|
51
47
|
|
|
52
48
|
The theme includes a Vite plugin that intercepts frontmatter and transforms relative image paths:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sp-days-framework/slidev-theme-sykehuspartner",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "A Slidev theme for Sykehuspartner presentations.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -42,7 +42,9 @@
|
|
|
42
42
|
"@slidev/types": ">=52.0.0"
|
|
43
43
|
},
|
|
44
44
|
"overrides": {
|
|
45
|
-
"dompurify": "^3.2.4"
|
|
45
|
+
"dompurify": "^3.2.4",
|
|
46
|
+
"lodash-es": ">=4.17.23",
|
|
47
|
+
"chevrotain": ">=11.1.1"
|
|
46
48
|
},
|
|
47
49
|
"files": [
|
|
48
50
|
"layouts/",
|