@reeverdev/ui 0.2.195 → 0.2.196
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1756,6 +1756,8 @@ declare const NavbarLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAt
|
|
|
1756
1756
|
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
1757
1757
|
|
|
1758
1758
|
interface LinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1759
|
+
/** Text color */
|
|
1760
|
+
color?: "primary" | "secondary" | "success" | "warning" | "danger" | "foreground" | "muted";
|
|
1759
1761
|
/** Underline behavior */
|
|
1760
1762
|
underline?: "none" | "hover" | "always";
|
|
1761
1763
|
/** Opens link in new tab with security attributes */
|
package/dist/index.d.ts
CHANGED
|
@@ -1756,6 +1756,8 @@ declare const NavbarLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAt
|
|
|
1756
1756
|
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
1757
1757
|
|
|
1758
1758
|
interface LinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1759
|
+
/** Text color */
|
|
1760
|
+
color?: "primary" | "secondary" | "success" | "warning" | "danger" | "foreground" | "muted";
|
|
1759
1761
|
/** Underline behavior */
|
|
1760
1762
|
underline?: "none" | "hover" | "always";
|
|
1761
1763
|
/** Opens link in new tab with security attributes */
|