docthub-core-components 2.66.0 → 2.67.0

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": "docthub-core-components",
3
- "version": "2.66.0",
3
+ "version": "2.67.0",
4
4
  "type": "module",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -1,11 +0,0 @@
1
- import { NavigationMenuGroup } from './types';
2
- interface NavigationMenuDesktopProps {
3
- readonly groups: NavigationMenuGroup[];
4
- readonly className?: string;
5
- }
6
- /**
7
- * Desktop mega menu rendered at widths >= 1024px.
8
- * Uses fixed 16px side gutters for 1024-1279px and keeps centered max width on larger screens.
9
- */
10
- export declare function NavigationMenuDesktop({ groups, className }: NavigationMenuDesktopProps): import("react/jsx-runtime").JSX.Element | null;
11
- export {};
@@ -1,14 +0,0 @@
1
- import { MobileMenuCategory, NavigationMenuGroup } from './types';
2
- interface NavigationMenuMobileProps {
3
- /** Nested accordion: For Individuals, For Organizations, About Docthub. */
4
- readonly categories?: MobileMenuCategory[];
5
- /** Flat groups (custom / legacy). */
6
- readonly groups?: NavigationMenuGroup[];
7
- readonly className?: string;
8
- }
9
- /**
10
- * Mobile accordion menu. With categories: top-level "For Individuals", "For Organizations",
11
- * "About Docthub" — each expands to show nested groups. With flat groups: legacy single-level.
12
- */
13
- export declare function NavigationMenuMobile({ categories, groups, className }: NavigationMenuMobileProps): import("react/jsx-runtime").JSX.Element | null;
14
- export {};