@zealicsolutions/web-ui 0.4.21 → 0.4.22
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.css +246 -246
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/containers/MoleculeItem.d.ts +1 -8
- package/dist/cjs/src/helpers/utils.d.ts +11 -0
- package/dist/esm/index.css +246 -246
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/containers/MoleculeItem.d.ts +1 -8
- package/dist/esm/src/helpers/utils.d.ts +11 -0
- package/package.json +1 -1
@@ -1,12 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import { LinkAttributes, Molecule } from 'containers';
|
1
|
+
import { Molecule } from 'containers';
|
3
2
|
import { TabGroupProps } from 'molecules';
|
4
|
-
import type { Nullable } from 'typescript';
|
5
|
-
export declare const downloadFile: (url?: string, name?: string) => Promise<void>;
|
6
|
-
export declare const navigateToExternalLink: (link?: LinkAttributes) => void;
|
7
|
-
export declare const addInternalParamsToCurrentLink: (internalLink?: Nullable<string>) => string;
|
8
|
-
export declare const getHref: (link?: LinkAttributes) => string;
|
9
|
-
export declare const parseDescendantContent: (string: string) => CustomDescendant[];
|
10
3
|
export declare const MoleculeItem: ({ type, config, attributes, tabsProps, form, id, formData, setFormData, isMobile, metadata, }: Molecule & {
|
11
4
|
tabsProps?: Pick<TabGroupProps<string, string>, "tabs" | "activeTabKey" | "onTabChange"> | undefined;
|
12
5
|
isMobile?: boolean | undefined;
|
@@ -1 +1,12 @@
|
|
1
|
+
import { CustomDescendant } from 'atoms/RichTextViewer/types';
|
2
|
+
import { LinkAttributes } from 'containers';
|
3
|
+
import type { Nullable } from 'typescript';
|
1
4
|
export declare const validateAndOpenUrl: (url: string) => void;
|
5
|
+
export declare const getParameterByName: (name: string, url: string) => string;
|
6
|
+
export declare const updateSearchParams: (currentParams: URLSearchParams, internalLink?: Nullable<string>) => URLSearchParams;
|
7
|
+
export declare const downloadFile: (url?: string, name?: string) => Promise<void>;
|
8
|
+
export declare const navigateToExternalLink: (externalLink?: Nullable<string>) => void;
|
9
|
+
export declare const checkIsInternalLink: (link?: LinkAttributes) => boolean;
|
10
|
+
export declare const addInternalParamsToCurrentLink: (internalLink?: Nullable<string>) => string;
|
11
|
+
export declare const getHref: (link?: LinkAttributes) => string;
|
12
|
+
export declare const parseDescendantContent: (string: string) => CustomDescendant[];
|