@zealicsolutions/web-ui 0.4.14 → 0.4.16

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,9 +1,8 @@
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
- export declare const getFullLink: (url: string) => string;
5
- export declare const navigateToPage: (url: string) => void;
6
4
  export declare const downloadFile: (url?: string, name?: string) => Promise<void>;
5
+ export declare const navigateToExternalLink: (link?: LinkAttributes) => void;
7
6
  export declare const parseDescendantContent: (string: string) => CustomDescendant[];
8
7
  export declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, }: Molecule & {
9
8
  tabsProps?: Pick<TabGroupProps<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
@@ -13,3 +13,4 @@ export declare const outlinedColumnContainer: ContainerComponentProps;
13
13
  export declare const headerContainer: ContainerComponentProps;
14
14
  export declare const headerContainerWithTabs: ContainerComponentProps;
15
15
  export declare const DataField: ContainerComponentProps;
16
+ export declare const LogInPermanentPage: ContainerComponentProps;