@knowcode/doc-builder 1.4.6 → 1.4.7

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
@@ -5,6 +5,17 @@ All notable changes to @knowcode/doc-builder will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.4.7] - 2025-07-21
9
+
10
+ ### Fixed
11
+ - Removed excess spacing above navigation menu by setting sidebar-header margin-bottom to 0
12
+ - Cleaned up duplicate `.sidebar-header` CSS definitions that were causing conflicts
13
+
14
+ ### Background
15
+ - Previous CSS fixes exposed duplicate `.sidebar-header` definitions with conflicting margins
16
+ - The extra spacing was introduced by `margin-bottom: var(--space-4)` on the sidebar header
17
+ - This completes the CSS cleanup started in v1.4.5 and v1.4.6
18
+
8
19
  ## [1.4.6] - 2025-07-21
9
20
 
10
21
  ### Fixed
@@ -333,16 +333,6 @@ pre code {
333
333
  top: calc(var(--header-height) + var(--breadcrumb-height) + 3.5rem);
334
334
  }
335
335
 
336
- .sidebar-header {
337
- padding: var(--space-4);
338
- border-bottom: 1px solid var(--color-border-default);
339
- margin-bottom: var(--space-4);
340
- }
341
-
342
- /* Sidebar Breadcrumbs */
343
- .sidebar-breadcrumbs {
344
- margin-bottom: var(--space-3);
345
- }
346
336
 
347
337
  .sidebar-home-link {
348
338
  display: inline-flex;
@@ -529,7 +519,7 @@ pre code {
529
519
  .sidebar-header {
530
520
  padding: var(--space-3);
531
521
  border-bottom: 1px solid var(--color-border-default);
532
- margin-bottom: var(--space-4);
522
+ margin-bottom: 0;
533
523
  }
534
524
 
535
525
 
package/html/README.html CHANGED
@@ -29,7 +29,7 @@
29
29
 
30
30
  <div class="header-actions">
31
31
  <div class="deployment-info">
32
- <span class="deployment-date" title="Built with doc-builder v1.4.5">Last updated: Jul 21, 2025, 10:58 AM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.6">Last updated: Jul 21, 2025, 11:05 AM UTC</span>
33
33
  </div>
34
34
 
35
35
 
@@ -333,16 +333,6 @@ pre code {
333
333
  top: calc(var(--header-height) + var(--breadcrumb-height) + 3.5rem);
334
334
  }
335
335
 
336
- .sidebar-header {
337
- padding: var(--space-4);
338
- border-bottom: 1px solid var(--color-border-default);
339
- margin-bottom: var(--space-4);
340
- }
341
-
342
- /* Sidebar Breadcrumbs */
343
- .sidebar-breadcrumbs {
344
- margin-bottom: var(--space-3);
345
- }
346
336
 
347
337
  .sidebar-home-link {
348
338
  display: inline-flex;
@@ -529,7 +519,7 @@ pre code {
529
519
  .sidebar-header {
530
520
  padding: var(--space-3);
531
521
  border-bottom: 1px solid var(--color-border-default);
532
- margin-bottom: var(--space-4);
522
+ margin-bottom: 0;
533
523
  }
534
524
 
535
525
 
package/html/index.html CHANGED
@@ -29,7 +29,7 @@
29
29
 
30
30
  <div class="header-actions">
31
31
  <div class="deployment-info">
32
- <span class="deployment-date" title="Built with doc-builder v1.4.5">Last updated: Jul 21, 2025, 10:58 AM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.6">Last updated: Jul 21, 2025, 11:05 AM UTC</span>
33
33
  </div>
34
34
 
35
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowcode/doc-builder",
3
- "version": "1.4.6",
3
+ "version": "1.4.7",
4
4
  "description": "Reusable documentation builder for markdown-based sites with Vercel deployment support",
5
5
  "main": "index.js",
6
6
  "bin": {