@sp-days-framework/create-sp-days 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.
@@ -355,18 +355,43 @@ If you initially enabled package documentation but want to remove it:
355
355
 
356
356
  ```typescript
357
357
  // Remove this navbar item:
358
- {
359
- type: "dropdown",
360
- label: "Plugin Docs",
361
- position: "left",
362
- items: [
363
- { to: "/package-docs/create-sp-days", label: "Create SP Days" },
364
- { to: "/package-docs/frontpage-collection", label: "Frontpage Collection" },
365
- { to: "/package-docs/interactive-tasks", label: "Interactive Tasks" },
366
- { to: "/package-docs/slidev-integration", label: "Slidev Integration" },
367
- { to: "/package-docs/sykehuspartner-theme", label: "Sykehuspartner Theme" },
368
- ],
369
- },
358
+ {
359
+ type: "dropdown",
360
+ label: "Plugin Docs",
361
+ position: "left",
362
+ items: [
363
+ {
364
+ to: "/package-docs/create-sp-days",
365
+ label: "Create SP Days",
366
+ className: "title-logo-navbar-sp-days-plugin",
367
+ },
368
+ {
369
+ to: "/package-docs/frontpage-collection",
370
+ label: "Frontpage Collection",
371
+ className: "title-logo-navbar-docusaurus",
372
+ },
373
+ {
374
+ to: "/package-docs/interactive-tasks",
375
+ label: "Interactive Tasks",
376
+ className: "title-logo-navbar-docusaurus",
377
+ },
378
+ {
379
+ to: "/package-docs/slidev-integration",
380
+ label: "Slidev Integration",
381
+ className: "title-logo-navbar-docusaurus",
382
+ },
383
+ {
384
+ to: "/package-docs/terminal-codeblock",
385
+ label: "Terminal Codeblock",
386
+ className: "title-logo-navbar-docusaurus",
387
+ },
388
+ {
389
+ to: "/package-docs/sykehuspartner-theme",
390
+ label: "Sykehuspartner Theme",
391
+ className: "title-logo-navbar-slidev",
392
+ },
393
+ ],
394
+ },
370
395
  ```
371
396
 
372
397
  3. **Remove the package dependency** from `package.json`:
@@ -19,6 +19,44 @@ 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
+ Terminal plugin integration and documentation refinements
40
+
41
+ <details>
42
+ <summary><strong>Beta Details</strong> (2025 December 09)</summary>
43
+
44
+ ### New Features
45
+
46
+ - **Terminal Codeblock Plugin**: Integrated the new `@sp-days-framework/docusaurus-plugin-terminal-codeblock` package
47
+ - Automatically included in new project scaffolds
48
+ - Pre-configured for optimal terminal documentation display
49
+ - Enables realistic command-line examples in course materials
50
+
51
+ ### Improvements
52
+
53
+ - **Enhanced Documentation Structure**: Updated sidebar positions and added known issues documentation for better navigation
54
+ - **Visual Consistency**: Improved sidebar and navbar logo handling across all generated documentation
55
+
56
+ </details>
57
+
58
+ ---
59
+
22
60
  ## Version 1.1.0-beta1 ![beta](https://img.shields.io/badge/release-beta-yellow)
23
61
 
24
62
  Get started faster with improved resource templates
package/docs/index.mdx CHANGED
@@ -1,7 +1,8 @@
1
1
  ---
2
2
  title: Create SP Days
3
3
  hide_title: true
4
- sidebar_label: "📦 Create SP Days"
4
+ sidebar_class_name: title-logo-sidebar-sp-days
5
+ sidebar_label: "Create SP Days"
5
6
  sidebar_position: 0
6
7
  ---
7
8