@knitli/docs-components 1.1.9 → 1.1.10
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
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### 1.1.10
|
|
8
|
+
|
|
9
|
+
- fix: URL in footer
|
|
10
|
+
|
|
7
11
|
#### 1.1.9
|
|
8
12
|
|
|
9
13
|
- feat: Replace recoco logo images with new, sharper version.
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ const segments = path
|
|
|
25
25
|
.filter(Boolean)
|
|
26
26
|
.map((segment, index, all) => ({
|
|
27
27
|
name: segment.replace(/-/g, " ").replace(/\b\w/g, (l) => l.toUpperCase()),
|
|
28
|
-
href: `${productUrl}${all.slice(0, index + 1).join("/")}
|
|
28
|
+
href: `${productUrl}${all.slice(0, index + 1).join("/")}/`,
|
|
29
29
|
isLast: index === all.length - 1,
|
|
30
30
|
}));
|
|
31
31
|
---
|
|
@@ -109,7 +109,7 @@ const shouldShowDocsHomeLink = Astro.url.pathname !== "/";
|
|
|
109
109
|
<ul>
|
|
110
110
|
{shouldShowDocsHomeLink && <li><a href="https://docs.knitli.com">Developer Docs</a></li>}
|
|
111
111
|
<li>
|
|
112
|
-
<a href="https://docs.knitli.com/
|
|
112
|
+
<a href="https://docs.knitli.com/recoco/">Recoco</a>
|
|
113
113
|
</li>
|
|
114
114
|
<li>
|
|
115
115
|
<span class="link-disabled">
|