@zealicsolutions/web-ui 0.3.122 → 0.3.123
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +27 -27
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/constants/params.d.ts +7 -0
- package/dist/cjs/src/containers/MoleculeItem.d.ts +2 -3
- package/dist/esm/index.js +27 -27
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/constants/params.d.ts +7 -0
- package/dist/esm/src/containers/MoleculeItem.d.ts +2 -3
- package/package.json +1 -1
@@ -1,10 +1,9 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { CustomDescendant } from 'atoms/RichTextViewer/types';
|
3
|
-
import { Molecule } from 'containers';
|
3
|
+
import { LinkAttributes, Molecule } from 'containers';
|
4
4
|
import { TabGroupProps } from 'molecules';
|
5
|
-
export declare const getFullLink: (url: string) => string;
|
6
|
-
export declare const navigateToPage: (url: string) => void;
|
7
5
|
export declare const downloadFile: (url?: string, name?: string) => Promise<void>;
|
6
|
+
export declare const navigateToExternalLink: (link?: LinkAttributes) => void;
|
8
7
|
export declare const parseDescendantContent: (string: string) => CustomDescendant[];
|
9
8
|
export declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, }: Molecule & {
|
10
9
|
tabsProps?: Pick<TabGroupProps<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
|