@scalant/career-hub 7.3.0 → 7.3.1
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/career-hub.es.js +13 -11
- package/dist/career-hub.umd.js +3 -3
- package/package.json +2 -2
package/dist/career-hub.es.js
CHANGED
|
@@ -49364,14 +49364,16 @@ const Upload$1 = Upload, APPLICATION_STATUS$1 = {
|
|
|
49364
49364
|
"Not Interested": "Not Interested",
|
|
49365
49365
|
"Application Withdrawn": "Application Withdrawn",
|
|
49366
49366
|
"Application Archived": "Application Archived"
|
|
49367
|
+
}, APPLICATION_STATUS_JOB_TAG_TEXT_MAPPING = {
|
|
49368
|
+
Draft: "Application Pending"
|
|
49367
49369
|
}, JOB_TAG_ICON_MAPPING = {
|
|
49368
|
-
"Application
|
|
49370
|
+
"Application Pending": ClockCircleOutlined$1,
|
|
49369
49371
|
Applied: CheckCircleOutlined$1,
|
|
49370
49372
|
"Job Offered": CheckCircleOutlined$1,
|
|
49371
49373
|
Rejected: CloseCircleOutlined$1,
|
|
49372
49374
|
"Status Pending": SyncOutlined$1
|
|
49373
49375
|
}, JOB_TAG_COLOR_MAPPING = {
|
|
49374
|
-
"Application
|
|
49376
|
+
"Application Pending": {
|
|
49375
49377
|
primary: "#1D39C4",
|
|
49376
49378
|
secondary: "#F0F5FF"
|
|
49377
49379
|
},
|
|
@@ -54771,7 +54773,7 @@ const useApplicationFormContext = () => {
|
|
|
54771
54773
|
))));
|
|
54772
54774
|
}, Recruiters = () => {
|
|
54773
54775
|
const { jobData: C } = useJobPreview(), { recruiters: $ } = C || {};
|
|
54774
|
-
return /* @__PURE__ */ React__default.createElement(Space$1,
|
|
54776
|
+
return /* @__PURE__ */ React__default.createElement(Space$1, { wrap: !0 }, $.map((V, F) => /* @__PURE__ */ React__default.createElement(RecruiterCard, { key: F, recruiter: V })));
|
|
54775
54777
|
}, OFFERED_STATUSES = ["offer_received", "offer_accepted", "joined"], APPLICATION_STAGE_STATUSES = {
|
|
54776
54778
|
ongoing: "ongoing",
|
|
54777
54779
|
ongoing_test: "ongoing",
|
|
@@ -76012,7 +76014,7 @@ const screeningCallService = careerHubApi.injectEndpoints({
|
|
|
76012
76014
|
endpoints: (C) => ({
|
|
76013
76015
|
issueScreeningCall: C.mutation({
|
|
76014
76016
|
query: () => ({
|
|
76015
|
-
url: "/api/v3/
|
|
76017
|
+
url: "/api/v3/screening_calls/issue",
|
|
76016
76018
|
method: "POST"
|
|
76017
76019
|
})
|
|
76018
76020
|
})
|
|
@@ -76515,20 +76517,20 @@ const tag = "_tag_5fhgn_1", styles$c = {
|
|
|
76515
76517
|
ClockCircleOutlined: ClockCircleOutlined$1,
|
|
76516
76518
|
RocketOutlined: RocketOutlined$1
|
|
76517
76519
|
}, PipelineJobTag = ({ applicationStatus: C }) => {
|
|
76518
|
-
const $ = APPLICATION_STATUS_JOB_TAG_MAPPING[C] || C, V = JOB_TAG_ICON_MAPPING[$],
|
|
76520
|
+
const $ = APPLICATION_STATUS_JOB_TAG_MAPPING[C] || C, V = APPLICATION_STATUS_JOB_TAG_TEXT_MAPPING[C] || C, F = JOB_TAG_ICON_MAPPING[$], K = JOB_TAG_COLOR_MAPPING[$] || {};
|
|
76519
76521
|
return $ ? /* @__PURE__ */ React__default.createElement(
|
|
76520
76522
|
Tag$1,
|
|
76521
76523
|
{
|
|
76522
|
-
icon:
|
|
76523
|
-
color:
|
|
76524
|
+
icon: F && /* @__PURE__ */ React__default.createElement(F, { style: { color: K.primary } }),
|
|
76525
|
+
color: K.primary,
|
|
76524
76526
|
className: styles$c.tag,
|
|
76525
76527
|
style: {
|
|
76526
|
-
color:
|
|
76527
|
-
borderColor:
|
|
76528
|
-
backgroundColor:
|
|
76528
|
+
color: K.primary,
|
|
76529
|
+
borderColor: K.primary,
|
|
76530
|
+
backgroundColor: K.secondary
|
|
76529
76531
|
}
|
|
76530
76532
|
},
|
|
76531
|
-
|
|
76533
|
+
V
|
|
76532
76534
|
) : null;
|
|
76533
76535
|
}, EligibilityTag = ({ jobData: C, currentTab: $ }) => {
|
|
76534
76536
|
const { eligibilityCriteria: V, applicationStatus: F } = C || {}, K = determineJobTag(C, V);
|