@zealicsolutions/web-ui 0.3.247 → 0.3.249

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,4 +10,4 @@ export declare type LinkProps = Omit<TextButtonProps, 'children'> & Partial<{
10
10
  onExternalLink?: () => void;
11
11
  configurationItemInfo?: ConfigurationItemInfo;
12
12
  }>;
13
- export declare const Link: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, configurationItemInfo, ...props }: LinkProps) => JSX.Element | null;
13
+ export declare const Link: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, configurationItemInfo, onClick, ...props }: LinkProps) => JSX.Element | null;
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
2
2
  import { Link as LinkComponent } from 'molecules';
3
3
  declare const _default: {
4
4
  title: string;
5
- component: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, configurationItemInfo, ...props }: import("molecules").LinkProps) => JSX.Element | null;
5
+ component: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, configurationItemInfo, onClick, ...props }: import("molecules").LinkProps) => JSX.Element | null;
6
6
  };
7
7
  export default _default;
8
8
  export declare const Link: StoryFn<typeof LinkComponent>;