@sp-days-framework/docusaurus-frontpage-collection 1.1.0-beta1 → 1.1.0-beta3

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.
@@ -19,6 +19,36 @@ All packages within `@sp-days-framework` use the same version number. In some ca
19
19
 
20
20
  ---
21
21
 
22
+ ## Version 1.1.0-beta3 ![beta](https://img.shields.io/badge/release-beta-yellow)
23
+
24
+ Documentation improvements
25
+
26
+ <details>
27
+ <summary><strong>Beta Details</strong> (2025 December 12)</summary>
28
+
29
+ ### Improvements
30
+
31
+ - **Edit URL Support**: Package documentation now includes "Edit this page" links that point to the correct source file in GitHub
32
+
33
+ </details>
34
+
35
+ ---
36
+
37
+ ## Version 1.1.0-beta2 ![beta](https://img.shields.io/badge/release-beta-yellow)
38
+
39
+ Documentation improvements and visual refinements
40
+
41
+ <details>
42
+ <summary><strong>Beta Details</strong> (2025 December 09)</summary>
43
+
44
+ ### Improvements
45
+
46
+ - **Visual Consistency**: Improved sidebar and navbar logo handling for better branding support
47
+
48
+ </details>
49
+
50
+ ---
51
+
22
52
  ## Version 1.1.0-beta1 ![beta](https://img.shields.io/badge/release-beta-yellow)
23
53
 
24
54
  Display beautiful command-line examples in your documentation
package/docs/index.mdx CHANGED
@@ -1,8 +1,9 @@
1
1
  ---
2
2
  title: Frontpage Collection
3
3
  hide_title: true
4
+ sidebar_class_name: title-logo-sidebar-docusaurus
5
+ sidebar_label: "Frontpage Collection"
4
6
  sidebar_position: 0
5
- sidebar_label: "📦 Frontpage Collection"
6
7
  ---
7
8
 
8
9
  import LogoDocusaurus from './logo-docusaurus.svg';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sp-days-framework/docusaurus-frontpage-collection",
3
- "version": "1.1.0-beta1",
3
+ "version": "1.1.0-beta3",
4
4
  "description": "A collection of Docusaurus frontpage UI components.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -6,7 +6,15 @@
6
6
  */
7
7
 
8
8
  module.exports = {
9
- id: 'frontpage-collection-docs',
10
- path: require('path').join(__dirname, 'docs'),
11
- routeBasePath: 'package-docs/frontpage-collection',
9
+ id: "frontpage-collection-docs",
10
+ path: require("path").join(__dirname, "docs"),
11
+ routeBasePath: "package-docs/frontpage-collection",
12
+ editUrl: function (params) {
13
+ // Remove node_modules/@sp-days-framework/docusaurus-frontpage-collection/docs from the path
14
+ const cleanPath = params.docPath.replace(
15
+ /^.*node_modules\/@sp-days-framework\/docusaurus-frontpage-collection\/docs\//,
16
+ "",
17
+ );
18
+ return `https://github.com/helse-sorost/sp-days-framework/edit/main/docusaurus-frontpage-collection/docs/${cleanPath}`;
19
+ },
12
20
  };