@knowcode/doc-builder 1.5.0 → 1.5.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/.claude/settings.local.json +2 -1
- package/CHANGELOG.md +55 -0
- package/README.md +0 -8
- package/assets/404.html +115 -0
- package/assets/css/notion-style.css +56 -0
- package/assets/js/main.js +109 -0
- package/doc-builder.config.js +31 -35
- package/html/404.html +115 -0
- package/html/README.html +6 -6
- package/html/claude-workflow-guide.html +5 -5
- package/html/css/notion-style.css +56 -0
- package/html/documentation-index.html +6 -6
- package/html/guides/authentication-guide.html +6 -6
- package/html/guides/claude-workflow-guide.html +531 -0
- package/html/guides/documentation-standards.html +6 -6
- package/html/guides/seo-guide.html +6 -6
- package/html/guides/troubleshooting-guide.html +6 -6
- package/html/index.html +6 -6
- package/html/js/main.js +109 -0
- package/html/sitemap.xml +23 -11
- package/html/vercel-cli-setup-guide.html +6 -6
- package/html/vercel-first-time-setup-guide.html +6 -6
- package/lib/core-builder.js +7 -0
- package/lib/deploy.js +20 -0
- package/package.json +1 -1
- package/knowcode-doc-builder-1.4.4.tgz +0 -0
|
@@ -1578,6 +1578,62 @@ tr:hover {
|
|
|
1578
1578
|
|
|
1579
1579
|
/* Remove custom positioning variables - tooltips always go right */
|
|
1580
1580
|
|
|
1581
|
+
/* Floating Menu Button */
|
|
1582
|
+
.floating-menu-toggle {
|
|
1583
|
+
position: fixed;
|
|
1584
|
+
bottom: var(--space-6);
|
|
1585
|
+
right: var(--space-6);
|
|
1586
|
+
width: 56px;
|
|
1587
|
+
height: 56px;
|
|
1588
|
+
border-radius: 50%;
|
|
1589
|
+
background: var(--color-accent-blue);
|
|
1590
|
+
color: white;
|
|
1591
|
+
border: none;
|
|
1592
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
1593
|
+
display: flex;
|
|
1594
|
+
align-items: center;
|
|
1595
|
+
justify-content: center;
|
|
1596
|
+
font-size: 1.25rem;
|
|
1597
|
+
cursor: pointer;
|
|
1598
|
+
z-index: 1001; /* Above sidebar */
|
|
1599
|
+
opacity: 0;
|
|
1600
|
+
transform: scale(0.8) translateY(20px);
|
|
1601
|
+
transition: all var(--duration-normal) var(--easing-out);
|
|
1602
|
+
-webkit-tap-highlight-color: transparent;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.floating-menu-toggle.visible {
|
|
1606
|
+
opacity: 1;
|
|
1607
|
+
transform: scale(1) translateY(0);
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1610
|
+
.floating-menu-toggle:hover {
|
|
1611
|
+
transform: scale(1.1) translateY(0);
|
|
1612
|
+
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
.floating-menu-toggle:active {
|
|
1616
|
+
transform: scale(0.95) translateY(0);
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
.floating-menu-toggle i {
|
|
1620
|
+
transition: transform var(--duration-fast) var(--easing-out);
|
|
1621
|
+
}
|
|
1622
|
+
|
|
1623
|
+
.floating-menu-toggle:hover i {
|
|
1624
|
+
transform: rotate(90deg);
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
/* Dark mode styles for floating button */
|
|
1628
|
+
.dark-mode .floating-menu-toggle {
|
|
1629
|
+
background: var(--color-accent-blue);
|
|
1630
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.dark-mode .floating-menu-toggle:hover {
|
|
1634
|
+
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.3);
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1581
1637
|
/* Mobile adjustments */
|
|
1582
1638
|
@media (max-width: 768px) {
|
|
1583
1639
|
/* Disable tooltips on mobile to prevent overlap issues */
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"publisher": {
|
|
57
57
|
"@type": "Organization",
|
|
58
|
-
"name": "
|
|
59
|
-
"url": "https://knowcode.
|
|
58
|
+
"name": "Knowcode Ltd",
|
|
59
|
+
"url": "https://knowcode.tech"
|
|
60
60
|
},
|
|
61
|
-
"datePublished": "2025-07-
|
|
62
|
-
"dateModified": "2025-07-
|
|
61
|
+
"datePublished": "2025-07-22T05:55:46.714Z",
|
|
62
|
+
"dateModified": "2025-07-22T05:55:46.714Z",
|
|
63
63
|
"mainEntityOfPage": {
|
|
64
64
|
"@type": "WebPage",
|
|
65
65
|
"@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
|
|
93
93
|
<div class="header-actions">
|
|
94
94
|
<div class="deployment-info">
|
|
95
|
-
<span class="deployment-date" title="Built with doc-builder v1.
|
|
95
|
+
<span class="deployment-date" title="Built with doc-builder v1.5.1">Last updated: Jul 22, 2025, 05:55 AM UTC</span>
|
|
96
96
|
</div>
|
|
97
97
|
|
|
98
98
|
|
|
@@ -142,7 +142,6 @@
|
|
|
142
142
|
</a>
|
|
143
143
|
<div class="nav-content" >
|
|
144
144
|
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
|
|
145
|
-
<a href="/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
|
|
146
145
|
<a href="/documentation-index.html" class="nav-item active" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
|
|
147
146
|
<a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing and configuring the Vercel CLI across different operating systems and environments."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
|
|
148
147
|
<a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide provides a detailed explanation of every prompt you'll encounter during the first-time Vercel setup process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
|
|
@@ -152,6 +151,7 @@
|
|
|
152
151
|
</a>
|
|
153
152
|
<div class="nav-content collapsed" id="nav-guides-1">
|
|
154
153
|
<a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic..."><i class="fas fa-file-alt"></i> Authentication Guide</a>
|
|
154
|
+
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
|
|
155
155
|
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
|
|
156
156
|
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
|
|
157
157
|
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
},
|
|
56
56
|
"publisher": {
|
|
57
57
|
"@type": "Organization",
|
|
58
|
-
"name": "
|
|
59
|
-
"url": "https://knowcode.
|
|
58
|
+
"name": "Knowcode Ltd",
|
|
59
|
+
"url": "https://knowcode.tech"
|
|
60
60
|
},
|
|
61
|
-
"datePublished": "2025-07-
|
|
62
|
-
"dateModified": "2025-07-
|
|
61
|
+
"datePublished": "2025-07-22T05:55:46.716Z",
|
|
62
|
+
"dateModified": "2025-07-22T05:55:46.716Z",
|
|
63
63
|
"mainEntityOfPage": {
|
|
64
64
|
"@type": "WebPage",
|
|
65
65
|
"@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
|
|
99
99
|
<div class="header-actions">
|
|
100
100
|
<div class="deployment-info">
|
|
101
|
-
<span class="deployment-date" title="Built with doc-builder v1.
|
|
101
|
+
<span class="deployment-date" title="Built with doc-builder v1.5.1">Last updated: Jul 22, 2025, 05:55 AM UTC</span>
|
|
102
102
|
</div>
|
|
103
103
|
|
|
104
104
|
|
|
@@ -148,7 +148,6 @@
|
|
|
148
148
|
</a>
|
|
149
149
|
<div class="nav-content" >
|
|
150
150
|
<a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
|
|
151
|
-
<a href="/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
|
|
152
151
|
<a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
|
|
153
152
|
<a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing and configuring the Vercel CLI across different operating systems and environments."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
|
|
154
153
|
<a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide provides a detailed explanation of every prompt you'll encounter during the first-time Vercel setup process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
|
|
@@ -158,6 +157,7 @@
|
|
|
158
157
|
</a>
|
|
159
158
|
<div class="nav-content" id="nav-guides-1">
|
|
160
159
|
<a href="/guides/authentication-guide.html" class="nav-item active" data-tooltip="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic..."><i class="fas fa-file-alt"></i> Authentication Guide</a>
|
|
160
|
+
<a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
|
|
161
161
|
<a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
|
|
162
162
|
<a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
|
|
163
163
|
<a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
|