@realtek/core-theme 0.0.246 → 0.0.248

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-lib/index.js CHANGED
@@ -5540,7 +5540,7 @@ function bf({ moduleName: e, authToken: t, actions: n = [], actionRules: r = [],
5540
5540
  })
5541
5541
  })]
5542
5542
  }),
5543
- m && On && /* @__PURE__ */ Y(R, {
5543
+ m && /* @__PURE__ */ Y(R, {
5544
5544
  className: "job-summary-button",
5545
5545
  type: "primary",
5546
5546
  onClick: Bn,
@@ -47386,7 +47386,7 @@ function HM(e, t, n) {
47386
47386
  return !t || typeof t != "object" ? e : {
47387
47387
  ...t,
47388
47388
  ...e,
47389
- id: t.id ?? e.id ?? n
47389
+ id: e?.id ?? t?.id ?? n
47390
47390
  };
47391
47391
  }
47392
47392
  function UM(e, t, n = {}) {
@@ -47437,32 +47437,97 @@ var JM = (e, t) => Zl(e, t).rows, YM = (e, t) => {
47437
47437
  total: r
47438
47438
  };
47439
47439
  };
47440
- function XM({ fetchPrimaryPage: e, extractPrimaryPage: t = YM, fetchSecondaryByKeys: n, fetchPrimary: r, extractPrimaryRows: i = JM, fetchSecondary: a, extractSecondaryRows: o = JM, fetchSecondaryById: s, primaryKey: c, secondaryKey: l, mergeRow: u = HM, secondaryFetchLimit: d = 200, extraFields: f = [], extraFieldsAfter: p }) {
47441
- let m = VM(c), h = typeof l == "function" ? (e) => {
47442
- let t = l(e);
47443
- return t ? [String(t)] : [];
47444
- } : (e) => zM(e, typeof l == "string" ? [l] : Array.isArray(l) ? l : LM), g = 0;
47445
- function _(e) {
47446
- let t = /* @__PURE__ */ new Map();
47447
- return e.forEach((e) => {
47448
- for (let n of h(e)) t.has(n) || t.set(n, e);
47449
- }), t;
47450
- }
47451
- async function v(e, t) {
47452
- if (!s || !t) return null;
47440
+ function XM(e) {
47441
+ return !e || typeof e != "object" || typeof (e.fetchByKeys ?? e.fetch ?? e.function) != "function" ? null : {
47442
+ ...e,
47443
+ fetchByKeys: typeof e.fetchByKeys == "function" ? e.fetchByKeys : null,
47444
+ fetch: typeof e.fetch == "function" ? e.fetch : null,
47445
+ function: typeof e.function == "function" ? e.function : null,
47446
+ extractRows: typeof e.extractRows == "function" ? e.extractRows : JM,
47447
+ mergeRow: typeof e.mergeRow == "function" ? e.mergeRow : HM,
47448
+ fetchById: typeof e.fetchById == "function" ? e.fetchById : null
47449
+ };
47450
+ }
47451
+ function ZM({ fetchSecondaryByKeys: e, fetchSecondary: t, extractSecondaryRows: n, fetchSecondaryById: r, secondaryKey: i, mergeRow: a, secondaryFetchLimit: o }) {
47452
+ return !e && !t && !r ? [] : [XM({
47453
+ key: i,
47454
+ fetchByKeys: e ? (t, n, r) => e(t, n, r) : null,
47455
+ function: t ? ({ moduleName: e, options: n }) => t(e, o, 0, n) : null,
47456
+ extractRows: n,
47457
+ fetchById: r,
47458
+ mergeRow: a
47459
+ })].filter(Boolean);
47460
+ }
47461
+ function QM(e) {
47462
+ if (typeof e == "function") return (t) => {
47463
+ let n = e(t);
47464
+ return n == null || n === "" ? [] : [String(n)];
47465
+ };
47466
+ let t = typeof e == "string" ? [e] : Array.isArray(e) && e.length ? e : LM;
47467
+ return (e) => zM(e, t);
47468
+ }
47469
+ function $M(e, t) {
47470
+ let n = /* @__PURE__ */ new Map();
47471
+ return e.forEach((e) => {
47472
+ for (let r of t(e)) n.has(r) || n.set(r, e);
47473
+ }), n;
47474
+ }
47475
+ function eN({ moduleName: e, limit: t, offset: n, options: r, keys: i, primaryResponse: a, primaryRows: o, pageRows: s, total: c, source: l }) {
47476
+ return {
47477
+ moduleName: e,
47478
+ limit: t,
47479
+ offset: n,
47480
+ options: r,
47481
+ keys: i,
47482
+ primaryResponse: a,
47483
+ primaryRows: o,
47484
+ pageRows: s,
47485
+ total: c,
47486
+ source: l
47487
+ };
47488
+ }
47489
+ async function tN(e, t) {
47490
+ if (typeof e.args == "function") {
47491
+ let n = e.args(t);
47492
+ return (e.fetch ?? e.function ?? e.fetchByKeys)(...Array.isArray(n) ? n : [n]);
47493
+ }
47494
+ if (Array.isArray(e.args)) return (e.fetch ?? e.function ?? e.fetchByKeys)(...e.args);
47495
+ if (e.fetchByKeys && Array.isArray(t.keys)) return e.fetchByKeys(t.moduleName, t.keys, t.options, t);
47496
+ let n = e.fetch ?? e.function;
47497
+ return typeof n == "function" ? n(t) : null;
47498
+ }
47499
+ function nN({ fetchPrimaryPage: e, extractPrimaryPage: t = YM, fetchSecondaryByKeys: n, joinSources: r = [], fetchPrimary: i, extractPrimaryRows: a = JM, fetchSecondary: o, extractSecondaryRows: s = JM, fetchSecondaryById: c, primaryKey: l, secondaryKey: u, mergeRow: d = HM, secondaryFetchLimit: f = 200, extraFields: p = [], extraFieldsAfter: m }) {
47500
+ let h = Array.isArray(r) && r.length ? r.map(XM).filter(Boolean) : ZM({
47501
+ fetchSecondaryByKeys: n,
47502
+ fetchSecondary: o,
47503
+ extractSecondaryRows: s,
47504
+ fetchSecondaryById: c,
47505
+ secondaryKey: u,
47506
+ mergeRow: d,
47507
+ secondaryFetchLimit: f
47508
+ }), g = 0;
47509
+ async function _(e, t, n, r) {
47510
+ if (!e.fetchById || !r) return null;
47453
47511
  try {
47454
- let n = await s(e, t);
47455
- return n && h(n).includes(String(t)) ? n : null;
47512
+ let i = await e.fetchById(n, r);
47513
+ return i && t(i).includes(String(r)) ? i : null;
47456
47514
  } catch (e) {
47457
- return console.error(`[mergedListApi] per-id secondary lookup failed for "${t}"`, e), null;
47515
+ return console.error(`[mergedListApi] per-id join lookup failed for "${r}"`, e), null;
47458
47516
  }
47459
47517
  }
47460
- async function y(e, t, n, r) {
47518
+ async function v(e, t, n, r, i) {
47519
+ if (!n) return e;
47520
+ let a = t.extractRows(n, r) ?? [], o = VM(t.primaryKey ?? l), s = QM(t.key), c = $M(a, s);
47461
47521
  return Promise.all(e.map(async (e) => {
47462
- let i = m(e);
47463
- return u(e, t.get(i) ?? (r() ? null : await v(n, i)), i);
47522
+ let n = o(e), a = c.get(n) ?? (i() ? null : await _(t, s, r, n));
47523
+ return t.mergeRow(e, a, n);
47464
47524
  }));
47465
47525
  }
47526
+ async function y(e, t, n, r) {
47527
+ let i = e;
47528
+ for (let e of t) i = await v(i, e.source, e.response, n, r);
47529
+ return i;
47530
+ }
47466
47531
  function b(e, t, n) {
47467
47532
  let r = {};
47468
47533
  for (let e of n) {
@@ -47470,34 +47535,73 @@ function XM({ fetchPrimaryPage: e, extractPrimaryPage: t = YM, fetchSecondaryByK
47470
47535
  let t = GM(e);
47471
47536
  for (let e of Object.keys(t)) r[e] ?? (r[e] = t[e]);
47472
47537
  }
47473
- return f.length && (r.fields = qM(r.fields ?? [], f, p)), UM(e, t, r);
47538
+ return p.length && (r.fields = qM(r.fields ?? [], p, m)), UM(e, t, r);
47474
47539
  }
47475
- async function x(r, i, a, s, c) {
47476
- let l = await e(r, i, a, s), u = t(l, r) ?? {}, d = Array.isArray(u.rows) ? u.rows : [], f = Number.isFinite(Number(u.total)) ? Number(u.total) : d.length, p = [...new Set(d.map(m).filter(Boolean))], h = null, g = [];
47477
- if (p.length && n) try {
47478
- h = await n(r, p, s), g = o(h, r) ?? [];
47479
- } catch (e) {
47480
- console.error("[mergedListApi] secondary fetch failed — rendering unenriched page", e), h = null;
47481
- }
47482
- return b(await y(d, _(g), r, c), f, [l, h]);
47540
+ async function x({ moduleName: e, limit: t, offset: n, options: r, primaryResponse: i, primaryRows: a, pageRows: o, total: s }) {
47541
+ return Promise.all(h.map(async (c) => {
47542
+ try {
47543
+ let u = VM(c.primaryKey ?? l), d = [...new Set(o.map(u).filter(Boolean))];
47544
+ return c.fetchByKeys && d.length === 0 ? {
47545
+ source: c,
47546
+ response: null
47547
+ } : {
47548
+ source: c,
47549
+ response: await tN(c, eN({
47550
+ moduleName: e,
47551
+ limit: t,
47552
+ offset: n,
47553
+ options: r,
47554
+ keys: d,
47555
+ primaryResponse: i,
47556
+ primaryRows: a,
47557
+ pageRows: o,
47558
+ total: s,
47559
+ source: c
47560
+ }))
47561
+ };
47562
+ } catch (e) {
47563
+ return console.error("[mergedListApi] join fetch failed — rendering page without that join", e), {
47564
+ source: c,
47565
+ response: null
47566
+ };
47567
+ }
47568
+ }));
47569
+ }
47570
+ async function S(n, r, i, a, o) {
47571
+ let s = await e(n, r, i, a), c = t(s, n) ?? {}, l = Array.isArray(c.rows) ? c.rows : [], u = Number.isFinite(Number(c.total)) ? Number(c.total) : l.length, d = await x({
47572
+ moduleName: n,
47573
+ limit: r,
47574
+ offset: i,
47575
+ options: a,
47576
+ primaryResponse: s,
47577
+ primaryRows: l,
47578
+ pageRows: l,
47579
+ total: u
47580
+ });
47581
+ return b(await y(l, d, n, o), u, [s, ...d.map((e) => e.response)]);
47483
47582
  }
47484
- async function S(e, t, n, s, c) {
47485
- let [l, u] = await Promise.allSettled([r(e, t, n, s), a ? a(e, d, 0, s) : Promise.resolve(null)]);
47486
- if (l.status === "rejected") throw l.reason;
47487
- let f = u.status === "fulfilled" ? u.value : null;
47488
- u.status === "rejected" && console.error("[mergedListApi] secondary fetch failed — rendering unenriched page", u.reason);
47489
- let p = i(l.value, e) ?? [], m = _(f ? o(f, e) ?? [] : []), h = p.length;
47490
- return b(await y(p.slice(n, n + t), m, e, c), h, [l.value, f]);
47583
+ async function C(e, t, n, r, o) {
47584
+ let s = await i(e, t, n, r), c = a(s, e) ?? [], l = c.length, u = c.slice(n, n + t), d = await x({
47585
+ moduleName: e,
47586
+ limit: t,
47587
+ offset: n,
47588
+ options: r,
47589
+ primaryResponse: s,
47590
+ primaryRows: c,
47591
+ pageRows: u,
47592
+ total: l
47593
+ });
47594
+ return b(await y(u, d, e, o), l, [s, ...d.map((e) => e.response)]);
47491
47595
  }
47492
47596
  return async function(t, n = 10, r = 0, i = {}) {
47493
47597
  let a = ++g, o = () => a !== g;
47494
- return e ? x(t, n, r, i, o) : S(t, n, r, i, o);
47598
+ return e ? S(t, n, r, i, o) : C(t, n, r, i, o);
47495
47599
  };
47496
47600
  }
47497
47601
  //#endregion
47498
47602
  //#region src/services/workflowModuleListApi.js
47499
- function ZM(e, t, n = {}) {
47500
- return XM({
47603
+ function rN(e, t, n = {}) {
47604
+ return nN({
47501
47605
  fetchPrimary: () => fk(e, t),
47502
47606
  extractPrimaryRows: lk,
47503
47607
  fetchSecondary: Ac,
@@ -47505,16 +47609,16 @@ function ZM(e, t, n = {}) {
47505
47609
  secondaryFetchLimit: n.moduleFetchLimit ?? 200
47506
47610
  });
47507
47611
  }
47508
- function QM(e) {
47612
+ function iN(e) {
47509
47613
  let t = String(e ?? "").trim().split(/[^a-zA-Z0-9]+/).filter(Boolean);
47510
47614
  return t.length ? `${t.map((e, t) => t === 0 ? e.toLowerCase() : e[0].toUpperCase() + e.slice(1).toLowerCase()).join("")}Count` : "";
47511
47615
  }
47512
- function $M(e) {
47616
+ function aN(e) {
47513
47617
  let t = Array.isArray(e?.stages) ? e.stages : [];
47514
47618
  if (!t.length) return e;
47515
47619
  let n = {};
47516
47620
  for (let e of t) {
47517
- let t = QM(e?.stageName);
47621
+ let t = iN(e?.stageName);
47518
47622
  t && (n[t] = Number(e?.count) || 0);
47519
47623
  }
47520
47624
  return {
@@ -47522,25 +47626,25 @@ function $M(e) {
47522
47626
  ...e
47523
47627
  };
47524
47628
  }
47525
- var eN = (e) => {
47629
+ var oN = (e) => {
47526
47630
  let t = Number(e?.targetSubmission ?? e?.targetSubmissions);
47527
47631
  return Number.isFinite(t) && t > 0 ? t : null;
47528
47632
  };
47529
- function tN({ submittedCountField: e = "submittedCount", progressField: t = "targetSubmissionProgress" } = {}) {
47633
+ function sN({ submittedCountField: e = "submittedCount", progressField: t = "targetSubmissionProgress" } = {}) {
47530
47634
  return function(n, r, i) {
47531
- let a = HM(n, r, i), o = eN(a);
47635
+ let a = HM(n, r, i), o = oN(a);
47532
47636
  return o != null && (console.log("mergeJobWorkflowRow", i, a?.[e], o), a[t] = `${Number(a?.[e]) || 0} of ${o}`), a;
47533
47637
  };
47534
47638
  }
47535
- function nN(e = {}) {
47536
- let t = tN(), n = XM({
47639
+ function cN(e = {}) {
47640
+ let t = sN(), n = nN({
47537
47641
  primaryKey: "_id",
47538
47642
  secondaryKey: "entityId",
47539
47643
  extraFields: e.extraFields,
47540
47644
  extraFieldsAfter: e.extraFieldsAfter,
47541
47645
  fetchPrimaryPage: Ac,
47542
47646
  fetchSecondaryByKeys: () => dk(),
47543
- extractSecondaryRows: (e) => (e?.items ?? []).map($M),
47647
+ extractSecondaryRows: (e) => (e?.items ?? []).map(aN),
47544
47648
  mergeRow: (e, n, r) => {
47545
47649
  let i = t(e, n, r);
47546
47650
  return n?._id && (i.workflowId = n._id), i;
@@ -47550,16 +47654,16 @@ function nN(e = {}) {
47550
47654
  return await n(e, t, r, i);
47551
47655
  };
47552
47656
  }
47553
- async function rN(e, t = 10, n = 0, r = {}, i = {}) {
47554
- return Zl(await nN(i)(e, t, n, r), e);
47657
+ async function lN(e, t = 10, n = 0, r = {}, i = {}) {
47658
+ return Zl(await cN(i)(e, t, n, r), e);
47555
47659
  }
47556
- async function iN(e, t, n, r = 10, i = 0, a = {}) {
47557
- return Zl(await ZM(e, t)(n, r, i, a), n);
47660
+ async function uN(e, t, n, r = 10, i = 0, a = {}) {
47661
+ return Zl(await rN(e, t)(n, r, i, a), n);
47558
47662
  }
47559
47663
  //#endregion
47560
47664
  //#region src/index.js
47561
- var aN = kA, oN = hS(Ej), sN = hS(Oj), cN = hS(Uj), lN = hS(tM), uN = hS(uM), dN = hS(pM), fN = hS(gM), pN = hS(yM), mN = hS(xM), hN = hS(PM), gN = hS(IM);
47665
+ var dN = kA, fN = hS(Ej), pN = hS(Oj), mN = hS(Uj), hN = hS(tM), gN = hS(uM), _N = hS(pM), vN = hS(gM), yN = hS(yM), bN = hS(xM), xN = hS(PM), SN = hS(IM);
47562
47666
  //#endregion
47563
- export { i as ADMIN_API_URL, S as ADMIN_APP_ID, T as APP_ID, o as AUTH_URL, nm as ActivityTab, fA as AddBatchCandidatePopup, Bp as AddFormV1, kA as AdminDashboard, BE as AdminDashboardContent, aN as AdminPage, Vp as AppAlert, wu as AppButton, Rx as AppShell, Ny as ApprovalActionBar, rm as AssigneeAvatars, Ix as AuthGuard, wg as BILLING_STATUS_FLOW, im as BULK_UPLOAD_DEFAULT_ACCEPT, am as BULK_UPLOAD_DEFAULT_MAX_SIZE_MB, wn as Breadcrumb, cN as BulkUploadPage, pm as BulkUploadPanel, w as CANDIDATES_URL, Qy as CONTRACT_C2C, Zy as CONTRACT_W2, ao as CalendarCard, WE as CoreThemeAdminApp, UE as CoreThemeAdminRoutes, Qo as CustomPagination, Dy as DayLogModal, Em as DescriptionBlock, E_ as DetailHeaderCard, N_ as DetailViewPage, Oh as DetailViewV1, pt as DocumentViewer, Qs as DynamicCards, kO as DynamicPopup, hA as DynamicPopupRoute, lo as DynamicTabs, Dv as EditFormV1, Ky as FINANCE_APPROVAL_CONFIG, Vy as FINANCE_TYPE_CFO, By as FINANCE_TYPE_ONBOARDING_MANAGER, Wy as FINANCE_TYPE_ONBOARDING_MANAGER_REAPPROVE, Hy as FINANCE_TYPE_ONLY_FINANCE, zy as FINANCE_TYPE_SUBMISSION_MANAGER, Uy as FINANCE_TYPE_SUBMISSION_MANAGER_REAPPROVE, Fb as FileListCard, Tb as FinanceApprovalPanel, a_ as FinanceAvatar, l_ as FinanceBadge, Fy as FinanceDayCell, Zg as FinanceDivider, o_ as FinanceEmployeeCell, Jg as FinanceEmptyState, Qg as FinanceEquation, n_ as FinanceHistoryTimeline, qg as FinanceHoursGrid, Kg as FinanceKpiRow, Xg as FinanceLine, sy as FinanceListToolbar, u_ as FinanceMarginBadge, c_ as FinanceMoneyCell, p_ as FinanceRecordsTable, d_ as FinanceRowChevron, Yg as FinanceSection, Gg as FinanceStatusPill, s_ as FinanceTextCell, Ly as FinanceTimesheetAnalysis, $g as FinanceWorkflowSteps, ux as Header, rc as HierarchyUserFilter, n as JOBS_URL, oN as LegacyAdminPage, bf as ListView, gN as LmsHomePage, hN as LmsTestForm, zx as Login, QE as MailPopup, dN as ManageModules, fN as ManageSubmodules, Iv as ModuleRowActions, My as NotesPanel, Tg as PAYROLL_STATUS_FLOW, rA as POPUP_CONFIGS, Uv as ParamCardView, Yv as ParamListView, dy as PeriodBadgeTag, AD as PreviewPopup, mS as ProjectSelect, jy as ProofUploadPreview, Ay as QuickLogBar, Oy as QuickLogSelectionBar, ky as RejectionReasonModal, e as SUBMISSIONS_URL, Mx as Sidebar, Zv as StatusBadge, uy as StatusBadgeTag, sN as StickyNotesFullPage, $v as StylishDynamicTabs, iy as TemplateEditor, lN as TestForm, mN as TestingHomePage, Jp as TimelineGroups, yy as TimesheetDayCell, ut as TipTapEditor, OA as UserForm, yA as VendorShareDrawer, Cu as ViewSummaryWidget, ID as WizardPopup, pN as ZinnextTableView, uN as ZinnextTestForm, Ut as applyIntegrationStatus, No as approveSubmission, um as buildAcceptAttr, zg as buildCsv, Ng as buildDailyRows, _y as buildDayGradient, gb as buildRateHistoryEntries, Ig as buildWeeklyRollup, v as clearSelectedProject, D as colors, mb as computeFinance, Lg as computeMarginBand, C as configureCoreTheme, nN as createAllWorkflowsListFetcher, ZM as createWorkflowStageListFetcher, ue as deleteIntegrationConfig, Mg as deriveDayStats, Ug as downloadCsv, cb as findEmployerRow, ob as flattenGroups, lm as formatFileSize, _b as formatFinanceMoney, hg as formatHours, mg as formatMoney, _g as formatPercent, gg as formatRate, dn as getActivity, rN as getAllWorkflowsModuleList, xg as getApprovalDate, nt as getBgcIntegrationConfig, ct as getBgcIntegrationSummary, Eg as getBillingActionStates, y as getCurrentRoleName, Vg as getFieldLabel, cm as getFileExtension, Jy as getFinanceApprovalConfig, Nb as getFormGroupsRaw, dt as getIntegrationConfig, _t as getIntegrationConfigs, We as getIntegrationSummary, Yo as getModuleConfig, kt as getModuleDataDetail, Dg as getPayrollActionStates, Zo as getPeriodBadgeConfig, s as getSelectedProject, p as getStoredToken, x as getStoredUser, c as getUserRoles, Po as getVMSApprove, Hg as getValueStyle, iN as getWorkflowStageModuleList, Og as getWorkflowSteps, bg as humanizeEvent, Rf as i, Bg as indexFieldConfig, vg as initialsOf, l as isTester, m as logout, Xy as marginIncludesReferral, pb as matchLocationTax, I_ as n, ub as normalizeContract, mm as r, Io as rejectSubmission, $p as resolveActivityMeta, hb as resolveAndCompute, fb as resolveFinanceInputs, BM as resolveMergeKey, Yy as resolveRejectionReason, Pb as resolveSubmissionFinance, Bn as saveBgcIntegrationConfig, Ye as saveIntegrationConfig, u as setSelectedProject, QM as stageCountKey, Bx as t, Le as testIntegrationConnection, Kc as useDropdownFields, Tu as useDropdownValues, Ib as useEditForm, qc as useFieldConfig, Jc as useFilterFields, el as useMenuPermission, kv as useModuleActions, A_ as useRecordRefresh, dm as validateBulkFile, r as withAdminAppId, t as withAppId, hS as withAuthGuard };
47667
+ export { i as ADMIN_API_URL, S as ADMIN_APP_ID, T as APP_ID, o as AUTH_URL, nm as ActivityTab, fA as AddBatchCandidatePopup, Bp as AddFormV1, kA as AdminDashboard, BE as AdminDashboardContent, dN as AdminPage, Vp as AppAlert, wu as AppButton, Rx as AppShell, Ny as ApprovalActionBar, rm as AssigneeAvatars, Ix as AuthGuard, wg as BILLING_STATUS_FLOW, im as BULK_UPLOAD_DEFAULT_ACCEPT, am as BULK_UPLOAD_DEFAULT_MAX_SIZE_MB, wn as Breadcrumb, mN as BulkUploadPage, pm as BulkUploadPanel, w as CANDIDATES_URL, Qy as CONTRACT_C2C, Zy as CONTRACT_W2, ao as CalendarCard, WE as CoreThemeAdminApp, UE as CoreThemeAdminRoutes, Qo as CustomPagination, Dy as DayLogModal, Em as DescriptionBlock, E_ as DetailHeaderCard, N_ as DetailViewPage, Oh as DetailViewV1, pt as DocumentViewer, Qs as DynamicCards, kO as DynamicPopup, hA as DynamicPopupRoute, lo as DynamicTabs, Dv as EditFormV1, Ky as FINANCE_APPROVAL_CONFIG, Vy as FINANCE_TYPE_CFO, By as FINANCE_TYPE_ONBOARDING_MANAGER, Wy as FINANCE_TYPE_ONBOARDING_MANAGER_REAPPROVE, Hy as FINANCE_TYPE_ONLY_FINANCE, zy as FINANCE_TYPE_SUBMISSION_MANAGER, Uy as FINANCE_TYPE_SUBMISSION_MANAGER_REAPPROVE, Fb as FileListCard, Tb as FinanceApprovalPanel, a_ as FinanceAvatar, l_ as FinanceBadge, Fy as FinanceDayCell, Zg as FinanceDivider, o_ as FinanceEmployeeCell, Jg as FinanceEmptyState, Qg as FinanceEquation, n_ as FinanceHistoryTimeline, qg as FinanceHoursGrid, Kg as FinanceKpiRow, Xg as FinanceLine, sy as FinanceListToolbar, u_ as FinanceMarginBadge, c_ as FinanceMoneyCell, p_ as FinanceRecordsTable, d_ as FinanceRowChevron, Yg as FinanceSection, Gg as FinanceStatusPill, s_ as FinanceTextCell, Ly as FinanceTimesheetAnalysis, $g as FinanceWorkflowSteps, ux as Header, rc as HierarchyUserFilter, n as JOBS_URL, fN as LegacyAdminPage, bf as ListView, SN as LmsHomePage, xN as LmsTestForm, zx as Login, QE as MailPopup, _N as ManageModules, vN as ManageSubmodules, Iv as ModuleRowActions, My as NotesPanel, Tg as PAYROLL_STATUS_FLOW, rA as POPUP_CONFIGS, Uv as ParamCardView, Yv as ParamListView, dy as PeriodBadgeTag, AD as PreviewPopup, mS as ProjectSelect, jy as ProofUploadPreview, Ay as QuickLogBar, Oy as QuickLogSelectionBar, ky as RejectionReasonModal, e as SUBMISSIONS_URL, Mx as Sidebar, Zv as StatusBadge, uy as StatusBadgeTag, pN as StickyNotesFullPage, $v as StylishDynamicTabs, iy as TemplateEditor, hN as TestForm, bN as TestingHomePage, Jp as TimelineGroups, yy as TimesheetDayCell, ut as TipTapEditor, OA as UserForm, yA as VendorShareDrawer, Cu as ViewSummaryWidget, ID as WizardPopup, yN as ZinnextTableView, gN as ZinnextTestForm, Ut as applyIntegrationStatus, No as approveSubmission, um as buildAcceptAttr, zg as buildCsv, Ng as buildDailyRows, _y as buildDayGradient, gb as buildRateHistoryEntries, Ig as buildWeeklyRollup, v as clearSelectedProject, D as colors, mb as computeFinance, Lg as computeMarginBand, C as configureCoreTheme, cN as createAllWorkflowsListFetcher, rN as createWorkflowStageListFetcher, ue as deleteIntegrationConfig, Mg as deriveDayStats, Ug as downloadCsv, cb as findEmployerRow, ob as flattenGroups, lm as formatFileSize, _b as formatFinanceMoney, hg as formatHours, mg as formatMoney, _g as formatPercent, gg as formatRate, dn as getActivity, lN as getAllWorkflowsModuleList, xg as getApprovalDate, nt as getBgcIntegrationConfig, ct as getBgcIntegrationSummary, Eg as getBillingActionStates, y as getCurrentRoleName, Vg as getFieldLabel, cm as getFileExtension, Jy as getFinanceApprovalConfig, Nb as getFormGroupsRaw, dt as getIntegrationConfig, _t as getIntegrationConfigs, We as getIntegrationSummary, Yo as getModuleConfig, kt as getModuleDataDetail, Dg as getPayrollActionStates, Zo as getPeriodBadgeConfig, s as getSelectedProject, p as getStoredToken, x as getStoredUser, c as getUserRoles, Po as getVMSApprove, Hg as getValueStyle, uN as getWorkflowStageModuleList, Og as getWorkflowSteps, bg as humanizeEvent, Rf as i, Bg as indexFieldConfig, vg as initialsOf, l as isTester, m as logout, Xy as marginIncludesReferral, pb as matchLocationTax, I_ as n, ub as normalizeContract, mm as r, Io as rejectSubmission, $p as resolveActivityMeta, hb as resolveAndCompute, fb as resolveFinanceInputs, BM as resolveMergeKey, Yy as resolveRejectionReason, Pb as resolveSubmissionFinance, Bn as saveBgcIntegrationConfig, Ye as saveIntegrationConfig, u as setSelectedProject, iN as stageCountKey, Bx as t, Le as testIntegrationConnection, Kc as useDropdownFields, Tu as useDropdownValues, Ib as useEditForm, qc as useFieldConfig, Jc as useFilterFields, el as useMenuPermission, kv as useModuleActions, A_ as useRecordRefresh, dm as validateBulkFile, r as withAdminAppId, t as withAppId, hS as withAuthGuard };
47564
47668
 
47565
47669
  //# sourceMappingURL=index.js.map