@aravindc26/velu 0.13.13 → 0.13.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aravindc26/velu",
3
- "version": "0.13.13",
3
+ "version": "0.13.14",
4
4
  "description": "A modern documentation site generator powered by Markdown and JSON configuration",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -585,12 +585,8 @@ export function renderDocsLayout(config: DocsLayoutConfig, children: ReactNode):
585
585
  </div>
586
586
  )
587
587
  : undefined,
588
- footer: ({ className, children: footerChildren, ...props }: any) => (
589
- <div
590
- className={['velu-sidebar-footer-shell', className].filter(Boolean).join(' ')}
591
- {...props}
592
- >
593
- {footerChildren ? <div className="velu-sidebar-footer-icons">{footerChildren}</div> : null}
588
+ footer: (
589
+ <div className="velu-sidebar-footer-shell">
594
590
  <SidebarLinks anchors={globalAnchors} iconLibrary={iconLibrary} languages={languages} />
595
591
  </div>
596
592
  ),