@knowcode/doc-builder 1.4.19 → 1.4.20

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,19 @@ 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.20] - 2025-07-21
9
+
10
+ ### Fixed
11
+ - Properly fixed the persistent white gap at 768px breakpoint
12
+ - Resolved conflicting media query styles
13
+ - Kept breadcrumbs in fixed position on mobile
14
+
15
+ ### Background
16
+ - Multiple 768px media queries were conflicting with each other
17
+ - Last media query was changing breadcrumbs to relative positioning
18
+ - This caused double spacing (margin + breadcrumb height)
19
+ - Now breadcrumbs remain fixed and margin-top properly accounts for both elements
20
+
8
21
  ## [1.4.19] - 2025-07-21
9
22
 
10
23
  ### Fixed
@@ -1585,6 +1585,7 @@ tr:hover {
1585
1585
  flex-direction: column;
1586
1586
  height: auto;
1587
1587
  min-height: calc(100vh - var(--header-height) - var(--breadcrumb-height));
1588
+ margin-top: calc(var(--header-height) + var(--breadcrumb-height)); /* Account for both fixed elements */
1588
1589
  }
1589
1590
 
1590
1591
  .sidebar {
@@ -1613,10 +1614,7 @@ tr:hover {
1613
1614
  top: 0;
1614
1615
  }
1615
1616
 
1616
- .breadcrumbs {
1617
- position: relative;
1618
- top: 0;
1619
- }
1617
+ /* Keep breadcrumbs fixed on mobile to prevent double spacing */
1620
1618
  }
1621
1619
 
1622
1620
  /* Navigation Sections */
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.19">Last updated: Jul 21, 2025, 05:36 PM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.20">Last updated: Jul 21, 2025, 06:04 PM UTC</span>
33
33
  </div>
34
34
 
35
35
 
@@ -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.19">Last updated: Jul 21, 2025, 05:36 PM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.20">Last updated: Jul 21, 2025, 06:04 PM UTC</span>
33
33
  </div>
34
34
 
35
35
 
@@ -1585,6 +1585,7 @@ tr:hover {
1585
1585
  flex-direction: column;
1586
1586
  height: auto;
1587
1587
  min-height: calc(100vh - var(--header-height) - var(--breadcrumb-height));
1588
+ margin-top: calc(var(--header-height) + var(--breadcrumb-height)); /* Account for both fixed elements */
1588
1589
  }
1589
1590
 
1590
1591
  .sidebar {
@@ -1613,10 +1614,7 @@ tr:hover {
1613
1614
  top: 0;
1614
1615
  }
1615
1616
 
1616
- .breadcrumbs {
1617
- position: relative;
1618
- top: 0;
1619
- }
1617
+ /* Keep breadcrumbs fixed on mobile to prevent double spacing */
1620
1618
  }
1621
1619
 
1622
1620
  /* Navigation Sections */
@@ -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.19">Last updated: Jul 21, 2025, 05:36 PM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.20">Last updated: Jul 21, 2025, 06:04 PM UTC</span>
33
33
  </div>
34
34
 
35
35
 
@@ -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.19">Last updated: Jul 21, 2025, 05:36 PM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.20">Last updated: Jul 21, 2025, 06:04 PM UTC</span>
33
33
  </div>
34
34
 
35
35
 
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.19">Last updated: Jul 21, 2025, 05:36 PM UTC</span>
32
+ <span class="deployment-date" title="Built with doc-builder v1.4.20">Last updated: Jul 21, 2025, 06:04 PM 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.19",
3
+ "version": "1.4.20",
4
4
  "description": "Reusable documentation builder for markdown-based sites with Vercel deployment support",
5
5
  "main": "index.js",
6
6
  "bin": {