@stenajs-webui/panels 23.13.1 → 23.13.2
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/components/nav-bar/NavBarLink.d.ts +2 -4
- package/dist/index.es.js +190 -190
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -1,9 +1,7 @@
|
|
|
1
|
+
import { FlatButtonLinkProps } from "@stenajs-webui/elements";
|
|
1
2
|
import * as React from "react";
|
|
2
|
-
export interface NavBarLinkProps extends
|
|
3
|
+
export interface NavBarLinkProps extends FlatButtonLinkProps {
|
|
3
4
|
/** Highlights the link to indicate it represents the current page or section. */
|
|
4
5
|
selected?: boolean;
|
|
5
|
-
/** Merges NavBarLink styles onto the child element instead of rendering an <a>.
|
|
6
|
-
* Use this to integrate with router link components (e.g. React Router, Next.js). */
|
|
7
|
-
asChild?: boolean;
|
|
8
6
|
}
|
|
9
7
|
export declare const NavBarLink: React.ForwardRefExoticComponent<NavBarLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|