@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.
- 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/cjs/src/containers/mock-data.d.ts +1 -0
- 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/dist/esm/src/containers/mock-data.d.ts +1 -0
- package/package.json +5 -3
@@ -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;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zealicsolutions/web-ui",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.16",
|
4
4
|
"repository": {
|
5
5
|
"type": "git",
|
6
6
|
"url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"
|
@@ -83,13 +83,15 @@
|
|
83
83
|
"storybook": "7.0.18",
|
84
84
|
"styled-system": "5.1.5",
|
85
85
|
"ts-node": "10.9.1",
|
86
|
-
"typescript": "4.8.2"
|
86
|
+
"typescript": "4.8.2",
|
87
|
+
"react-router-dom": "6.3.0"
|
87
88
|
},
|
88
89
|
"peerDependencies": {
|
89
90
|
"react": "18.2.0",
|
90
91
|
"react-dom": "18.2.0",
|
91
92
|
"react-pdf": "6.2.2",
|
92
|
-
"styled-components": "5.3.5"
|
93
|
+
"styled-components": "5.3.5",
|
94
|
+
"react-router-dom": "6.3.0"
|
93
95
|
},
|
94
96
|
"dependencies": {
|
95
97
|
"@mui/material": "5.10.4",
|