@producteca/producteca-ui-kit 1.50.0 → 1.51.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.
@@ -7,10 +7,11 @@ export interface LinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement>
7
7
  size?: LinkSize;
8
8
  decoration?: LinkDecoration;
9
9
  weight?: LinkWeight;
10
+ disabled?: boolean;
10
11
  href: string;
11
12
  onClick?: (event: React.MouseEvent<HTMLAnchorElement>) => void;
12
13
  children: React.ReactNode;
13
14
  }
14
- export declare const Link: React.MemoExoticComponent<({ size, decoration, weight, href, onClick, children, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element>;
15
+ export declare const Link: React.MemoExoticComponent<({ size, decoration, weight, disabled, href, onClick, children, ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element>;
15
16
  export type { LinkSize, LinkDecoration, LinkWeight };
16
17
  export default Link;
@@ -314,6 +314,7 @@ declare const _default: {
314
314
  label: string;
315
315
  size: string;
316
316
  decoration: string;
317
+ disabled: string;
317
318
  weight: string;
318
319
  href: string;
319
320
  onClick: string;