@zealicsolutions/web-ui 0.3.247 → 0.3.249
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/cjs/index.js +13 -13
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/Link/Link.d.ts +1 -1
- package/dist/cjs/src/molecules/Link/Link.stories.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/Link/Link.d.ts +1 -1
- package/dist/esm/src/molecules/Link/Link.stories.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
@@ -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>;
|
package/dist/index.d.ts
CHANGED
@@ -2224,7 +2224,7 @@ declare type LinkProps = Omit<TextButtonProps$1, 'children'> & Partial<{
|
|
2224
2224
|
onExternalLink?: () => void;
|
2225
2225
|
configurationItemInfo?: ConfigurationItemInfo$1;
|
2226
2226
|
}>;
|
2227
|
-
declare const Link: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, configurationItemInfo, ...props }: LinkProps) => JSX.Element | null;
|
2227
|
+
declare const Link: ({ text, isRichText, htmlElementId, isTrigger, moleculeId, configurationItemInfo, onClick, ...props }: LinkProps) => JSX.Element | null;
|
2228
2228
|
|
2229
2229
|
declare type ChecklistItem = {
|
2230
2230
|
id: string;
|
package/package.json
CHANGED