@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.
@@ -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 pending": ClockCircleOutlined$1,
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 pending": {
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, null, $.map((V, F) => /* @__PURE__ */ React__default.createElement(RecruiterCard, { key: F, recruiter: V })));
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/careers-hub/screening-call/",
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[$], F = JOB_TAG_COLOR_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: V && /* @__PURE__ */ React__default.createElement(V, { style: { color: F.primary } }),
76523
- color: F.primary,
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: F.primary,
76527
- borderColor: F.primary,
76528
- backgroundColor: F.secondary
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);