@knowcode/doc-builder 1.3.3 → 1.3.5
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 +22 -0
- package/assets/css/notion-style.css +2 -9
- package/assets/css/style.css +2 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ 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.3.5] - 2025-07-19
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Restored proper header and breadcrumb heights for better visual hierarchy
|
|
12
|
+
- Header height increased from 40px to 56px
|
|
13
|
+
- Breadcrumb height restored from 0px to 40px
|
|
14
|
+
- Removed duplicate "Home" link from sidebar to eliminate confusion
|
|
15
|
+
- Cleaned up orphaned CSS styles for removed sidebar breadcrumbs
|
|
16
|
+
|
|
17
|
+
### Improved
|
|
18
|
+
- Better spacing and visual weight for header components
|
|
19
|
+
- Cleaner sidebar with single-purpose filter input
|
|
20
|
+
- More professional appearance with proper proportions
|
|
21
|
+
|
|
22
|
+
## [1.3.4] - 2025-07-19
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- Properly fixed spacing between breadcrumb and filter box in sidebar
|
|
26
|
+
- Increased sidebar-breadcrumbs margin-bottom to 24px for better separation
|
|
27
|
+
- Removed unnecessary margin from sidebar-header elements
|
|
28
|
+
- Applied consistent spacing across both style themes
|
|
29
|
+
|
|
8
30
|
## [1.3.3] - 2025-07-19
|
|
9
31
|
|
|
10
32
|
### Fixed
|
|
@@ -125,8 +125,8 @@
|
|
|
125
125
|
/* Layout */
|
|
126
126
|
--container-padding-mobile: 20px;
|
|
127
127
|
--container-padding-desktop: 40px;
|
|
128
|
-
--header-height:
|
|
129
|
-
--breadcrumb-height:
|
|
128
|
+
--header-height: 56px;
|
|
129
|
+
--breadcrumb-height: 40px;
|
|
130
130
|
--sidebar-width: 280px;
|
|
131
131
|
}
|
|
132
132
|
|
|
@@ -169,7 +169,6 @@ h2 {
|
|
|
169
169
|
h3 {
|
|
170
170
|
font-size: var(--text-xl);
|
|
171
171
|
margin-top: var(--space-8);
|
|
172
|
-
margin-bottom: var(--space-4);
|
|
173
172
|
}
|
|
174
173
|
|
|
175
174
|
h4 {
|
|
@@ -336,7 +335,6 @@ pre code {
|
|
|
336
335
|
.sidebar-header {
|
|
337
336
|
padding: var(--space-4);
|
|
338
337
|
border-bottom: 1px solid var(--color-border-default);
|
|
339
|
-
margin-bottom: var(--space-4);
|
|
340
338
|
}
|
|
341
339
|
|
|
342
340
|
.filter-box {
|
|
@@ -502,7 +500,6 @@ pre code {
|
|
|
502
500
|
.sidebar-header {
|
|
503
501
|
padding: var(--space-3);
|
|
504
502
|
border-bottom: 1px solid var(--color-border-default);
|
|
505
|
-
margin-bottom: var(--space-4);
|
|
506
503
|
}
|
|
507
504
|
|
|
508
505
|
.filter-box {
|
|
@@ -808,7 +805,6 @@ tr:hover {
|
|
|
808
805
|
border: 1px solid var(--color-border-default);
|
|
809
806
|
border-radius: var(--radius-lg);
|
|
810
807
|
padding: var(--space-6);
|
|
811
|
-
margin-bottom: var(--space-4);
|
|
812
808
|
box-shadow: var(--shadow-sm);
|
|
813
809
|
transition: all var(--duration-normal) var(--easing-out);
|
|
814
810
|
}
|
|
@@ -1417,7 +1413,6 @@ tr:hover {
|
|
|
1417
1413
|
font-size: var(--text-lg);
|
|
1418
1414
|
font-weight: var(--font-semibold);
|
|
1419
1415
|
color: var(--color-text-primary);
|
|
1420
|
-
margin-bottom: var(--space-4);
|
|
1421
1416
|
padding-bottom: var(--space-2);
|
|
1422
1417
|
border-bottom: 2px solid var(--color-divider);
|
|
1423
1418
|
}
|
|
@@ -1790,11 +1785,9 @@ tr:hover {
|
|
|
1790
1785
|
.auth-box p {
|
|
1791
1786
|
color: var(--color-text-secondary);
|
|
1792
1787
|
text-align: center;
|
|
1793
|
-
margin-bottom: var(--space-4);
|
|
1794
1788
|
}
|
|
1795
1789
|
|
|
1796
1790
|
.form-group {
|
|
1797
|
-
margin-bottom: var(--space-4);
|
|
1798
1791
|
}
|
|
1799
1792
|
|
|
1800
1793
|
.form-group label {
|
package/assets/css/style.css
CHANGED
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
/* Layout */
|
|
45
45
|
--sidebar-width: 280px;
|
|
46
46
|
--content-max-width: 65rem;
|
|
47
|
-
--header-height:
|
|
48
|
-
--breadcrumb-height:
|
|
47
|
+
--header-height: 56px;
|
|
48
|
+
--breadcrumb-height: 40px;
|
|
49
49
|
--banner-offset: 0rem;
|
|
50
50
|
|
|
51
51
|
/* Transitions */
|
|
@@ -863,7 +863,6 @@ em, i {
|
|
|
863
863
|
position: sticky;
|
|
864
864
|
top: 0;
|
|
865
865
|
z-index: 10;
|
|
866
|
-
margin-bottom: var(--space-lg);
|
|
867
866
|
}
|
|
868
867
|
|
|
869
868
|
.filter-box {
|