@aravindc26/velu 0.13.20 → 0.13.22

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.20",
3
+ "version": "0.13.22",
4
4
  "description": "A modern documentation site generator powered by Markdown and JSON configuration",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -585,8 +585,12 @@ export function renderDocsLayout(config: DocsLayoutConfig, children: ReactNode):
585
585
  </div>
586
586
  )
587
587
  : undefined,
588
- footer: (
589
- <div className="velu-sidebar-footer-shell">
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}
590
594
  <SidebarLinks anchors={globalAnchors} iconLibrary={iconLibrary} languages={languages} />
591
595
  </div>
592
596
  ),
@@ -542,16 +542,6 @@ nextjs-portal {
542
542
  color: #c4b5fd;
543
543
  }
544
544
 
545
- /* Ensure sidebar footer is visible — fumadocs hides the wrapper with .hidden */
546
- :has(> .velu-sidebar-footer-shell) {
547
- display: flex !important;
548
- flex-direction: column;
549
- padding: 0.5rem;
550
- border-top: 1px solid var(--color-fd-border, #27272a);
551
- position: sticky;
552
- bottom: 0;
553
- background: var(--color-fd-background, inherit);
554
- }
555
545
 
556
546
  .velu-theme-toggle {
557
547
  display: flex;