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/dist/index.esm.js +2434 -2401
- package/dist/src/components/overrides/ui/navigation-menu/types.d.ts +3 -0
- package/dist/style.css +4418 -1
- package/package.json +1 -1
- package/dist/src/components/overrides/ui/navigation-menu/navigation-menu-desktop.d.ts +0 -11
- package/dist/src/components/overrides/ui/navigation-menu/navigation-menu-mobile.d.ts +0 -14
|
@@ -55,6 +55,9 @@ export interface NavigationMenuGroup {
|
|
|
55
55
|
*/
|
|
56
56
|
taglineLayout?: "vertical" | "horizontal";
|
|
57
57
|
}
|
|
58
|
+
/** Category IDs for the combined mobile menu ("For Individuals" / "For Organizations"). */
|
|
59
|
+
export declare const MOBILE_CATEGORY_INDIVIDUALS: "for-individuals";
|
|
60
|
+
export declare const MOBILE_CATEGORY_ORGANIZATIONS: "for-organizations";
|
|
58
61
|
/**
|
|
59
62
|
* Mobile category for nested accordion: "For Individuals", "For Organizations", "About Docthub".
|
|
60
63
|
* Each category expands to show its groups (Explore, Professional Tools, etc.).
|