magneto365.ui 2.75.1-job-details.1 → 2.75.1-job-details.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +582 -572
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/organism/JobDetails/JobDetails.interface.d.ts +2 -0
- package/dist/cjs/types/components/UI/organism/JobDetails/index.d.ts +1 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +582 -572
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/organism/JobDetails/JobDetails.interface.d.ts +2 -0
- package/dist/esm/types/components/UI/organism/JobDetails/index.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -3,9 +3,11 @@ export interface IJobDetails {
|
|
|
3
3
|
renderHeader: () => React.ReactNode;
|
|
4
4
|
children?: React.ReactNode;
|
|
5
5
|
renderFooter?: () => React.ReactNode;
|
|
6
|
+
className?: string;
|
|
6
7
|
classNames?: {
|
|
7
8
|
header?: string;
|
|
8
9
|
body?: string;
|
|
9
10
|
footer?: string;
|
|
11
|
+
separator?: string;
|
|
10
12
|
};
|
|
11
13
|
}
|
|
@@ -14,4 +14,5 @@ export declare const JobDetails: import("react").FC<import("./JobDetails.interfa
|
|
|
14
14
|
};
|
|
15
15
|
Subtitle: import("react").FC<import("./children/JobDetailsSubTitle").IJobDetailsSubTitle>;
|
|
16
16
|
Drawer: import("react").FC<import("../JobDetailsDrawer").IJobDetailsDrawer>;
|
|
17
|
+
Skeleton: () => JSX.Element;
|
|
17
18
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -4860,10 +4860,12 @@ interface IJobDetails {
|
|
|
4860
4860
|
renderHeader: () => React.ReactNode;
|
|
4861
4861
|
children?: React.ReactNode;
|
|
4862
4862
|
renderFooter?: () => React.ReactNode;
|
|
4863
|
+
className?: string;
|
|
4863
4864
|
classNames?: {
|
|
4864
4865
|
header?: string;
|
|
4865
4866
|
body?: string;
|
|
4866
4867
|
footer?: string;
|
|
4868
|
+
separator?: string;
|
|
4867
4869
|
};
|
|
4868
4870
|
}
|
|
4869
4871
|
|
|
@@ -4882,6 +4884,7 @@ declare const JobDetails: React$1.FC<IJobDetails> & {
|
|
|
4882
4884
|
};
|
|
4883
4885
|
Subtitle: React$1.FC<IJobDetailsSubTitle>;
|
|
4884
4886
|
Drawer: React$1.FC<IJobDetailsDrawer>;
|
|
4887
|
+
Skeleton: () => JSX.Element;
|
|
4885
4888
|
};
|
|
4886
4889
|
|
|
4887
4890
|
interface IJobSuggestedCard {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/W170/talenta.magneto365.ui.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "2.75.1-job-details.
|
|
7
|
+
"version": "2.75.1-job-details.3",
|
|
8
8
|
"description": "Magneto365 UI common components",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"generate:tokens": "node ./.scripts/generateTokens.js",
|