@zealicsolutions/web-ui 0.3.120 → 0.3.121

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ export declare const paramKeys: {
2
+ internalLinkWebpageId: string;
3
+ internalLinkApplicationId: string;
4
+ previewApplicationId: string;
5
+ previewSelectedWebpageId: string;
6
+ runtimeSelectedWebpageId: string;
7
+ };
@@ -1,8 +1,9 @@
1
1
  import { CustomDescendant } from 'atoms/RichTextViewer/types';
2
- import { Molecule } from 'containers';
2
+ import { LinkAttributes, Molecule } from 'containers';
3
3
  import { TabGroupProps } from 'molecules';
4
4
  export declare const getFullLink: (url: string) => string;
5
5
  export declare const downloadFile: (url?: string, name?: string) => Promise<void>;
6
+ export declare const navigateToExternalLink: (link?: LinkAttributes) => void;
6
7
  export declare const parseDescendantContent: (string: string) => CustomDescendant[];
7
8
  export declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, }: Molecule & {
8
9
  tabsProps?: Pick<TabGroupProps<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;