@zeniai/web-components 4.3.76 → 4.3.78-betaRD1

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.
Files changed (36) hide show
  1. package/dist/{SessionTimeoutPopup-e2q-I5j5.cjs → SessionTimeoutPopup-DgRplYVC.cjs} +18112 -17279
  2. package/dist/{SessionTimeoutPopup-z4PrvxTb.js → SessionTimeoutPopup-EsA6cv-u.js} +99448 -95998
  3. package/dist/appLocale.d.ts +124 -0
  4. package/dist/cockpit.cjs.js +2 -2
  5. package/dist/cockpit.esm.js +415 -414
  6. package/dist/components/aiCfo/components/AiCfoRoutinesBrowser.d.ts +1 -1
  7. package/dist/components/expenseAutomation/ExpenseAutomationPage.d.ts +14 -4
  8. package/dist/components/expenseAutomation/components/navbarHeaderData.d.ts +6 -1
  9. package/dist/components/expenseAutomation/sections/actualMatching/ActualMatchingKpiStrip.d.ts +9 -0
  10. package/dist/components/expenseAutomation/sections/actualMatching/ActualMatchingList.d.ts +13 -0
  11. package/dist/components/expenseAutomation/sections/actualMatching/ActualMatchingListRow.d.ts +11 -0
  12. package/dist/components/expenseAutomation/sections/actualMatching/ActualMatchingMatchDetailPage.d.ts +21 -0
  13. package/dist/components/expenseAutomation/sections/actualMatching/ActualMatchingMatchNewButton.d.ts +5 -0
  14. package/dist/components/expenseAutomation/sections/actualMatching/ActualMatchingPage.d.ts +22 -0
  15. package/dist/components/expenseAutomation/sections/actualMatching/ActualMatchingPageSkeleton.d.ts +3 -0
  16. package/dist/components/expenseAutomation/sections/actualMatching/MatchNewModal.d.ts +12 -0
  17. package/dist/components/expenseAutomation/sections/actualMatching/MatchNewPreview.d.ts +8 -0
  18. package/dist/components/expenseAutomation/sections/actualMatching/ReversesGroupedPill.d.ts +5 -0
  19. package/dist/components/expenseAutomation/sections/actualMatching/actualMatchingHelpers.d.ts +76 -0
  20. package/dist/components/expenseAutomation/sections/actualMatching/actualMatchingHelpers.test.d.ts +1 -0
  21. package/dist/components/expenseAutomation/sections/actualMatching/actualMatchingListConfig.d.ts +12 -0
  22. package/dist/components/expenseAutomation/sections/actualMatching/actualMatchingMatchDetailHelpers.d.ts +18 -0
  23. package/dist/components/expenseAutomation/sections/actualMatching/actualMatchingMatchDetailHelpers.test.d.ts +1 -0
  24. package/dist/components/expenseAutomation/sections/actualMatching/actualMatchingTypes.d.ts +134 -0
  25. package/dist/components/expenseAutomation/sections/actualMatching/matchNewPreviewHelpers.d.ts +12 -0
  26. package/dist/components/expenseAutomation/sections/actualMatching/matchNewPreviewHelpers.test.d.ts +1 -0
  27. package/dist/components/expenseAutomation/sections/actualMatching/stories/ActualMatchingPageQuickViewStoryParts.d.ts +10 -0
  28. package/dist/components/expenseAutomation/sections/jeSchedules/JESchedulePage.d.ts +10 -2
  29. package/dist/components/expenseAutomation/sections/jeSchedules/common/JEGroupSectionHeader.d.ts +2 -1
  30. package/dist/components/expenseAutomation/stories/actualMatchingPageStoryActions.d.ts +2 -0
  31. package/dist/components/reports/PdfColumnLimitPopup.d.ts +8 -0
  32. package/dist/index.cjs.js +1 -1
  33. package/dist/index.d.ts +4 -0
  34. package/dist/index.esm.js +392 -391
  35. package/dist/strings/strings.d.ts +124 -0
  36. package/package.json +5 -5
@@ -1965,6 +1965,16 @@ export declare const zeniStrings: {
1965
1965
  failed: string;
1966
1966
  notification: string;
1967
1967
  };
1968
+ actual_matching_match_and_reverse: {
1969
+ success: string;
1970
+ failed: string;
1971
+ notification: string;
1972
+ };
1973
+ actual_matching_undo_reversal: {
1974
+ success: string;
1975
+ failed: string;
1976
+ notification: string;
1977
+ };
1968
1978
  ignore_schedule: {
1969
1979
  success: string;
1970
1980
  failed: string;
@@ -3748,6 +3758,11 @@ export declare const zeniStrings: {
3748
3758
  maxPeriodSelectionAllowed: {
3749
3759
  pdf: string;
3750
3760
  };
3761
+ pdfColumnLimit: {
3762
+ title: string;
3763
+ description: string;
3764
+ downloadAsExcel: string;
3765
+ };
3751
3766
  additionalColumns: {
3752
3767
  month: {
3753
3768
  free_range_total: string;
@@ -8438,8 +8453,117 @@ export declare const zeniStrings: {
8438
8453
  };
8439
8454
  tabs: {
8440
8455
  schedules: string;
8456
+ actualMatching: string;
8441
8457
  existingSchedules: string;
8442
8458
  };
8459
+ actualMatching: {
8460
+ matchNew: string;
8461
+ undoReversal: string;
8462
+ continueMatch: string;
8463
+ openBill: string;
8464
+ openCharge: string;
8465
+ openTransaction: string;
8466
+ kpi: {
8467
+ actualsReceived: string;
8468
+ ofExpected: string;
8469
+ vendorsStillPending: string;
8470
+ vendorStillPending: string;
8471
+ autoReversed: string;
8472
+ cleared: string;
8473
+ pendingReview: string;
8474
+ estMinutesToClear: string;
8475
+ variance: string;
8476
+ varianceFooter: string;
8477
+ };
8478
+ groups: {
8479
+ reversed: string;
8480
+ };
8481
+ groupSubtitles: {
8482
+ reversed: string;
8483
+ pendingReview: string;
8484
+ };
8485
+ columns: {
8486
+ received: string;
8487
+ vendor: string;
8488
+ type: string;
8489
+ service: string;
8490
+ reverses: string;
8491
+ matchTier: string;
8492
+ reversedBy: string;
8493
+ accrued: string;
8494
+ actual: string;
8495
+ variance: string;
8496
+ };
8497
+ reversedBy: {
8498
+ aiAccountant: string;
8499
+ humanUser: string;
8500
+ };
8501
+ matchTier: {
8502
+ exact: string;
8503
+ fuzzy: string;
8504
+ aiAccountant: string;
8505
+ manual: string;
8506
+ };
8507
+ reversesCount: string;
8508
+ groupedOpenAccrual: string;
8509
+ groupedMenuAria: string;
8510
+ lifecycle: {
8511
+ pendingReview: string;
8512
+ autoReversed: string;
8513
+ };
8514
+ emptyState: {
8515
+ title: string;
8516
+ subTitle: string;
8517
+ };
8518
+ matchModal: {
8519
+ title: string;
8520
+ subtitle: string;
8521
+ leftTitle: string;
8522
+ rightTitle: string;
8523
+ selectedLabel: string;
8524
+ leftSearchPlaceholder: string;
8525
+ rightSearchPlaceholder: string;
8526
+ emptyLeft: string;
8527
+ emptyRight: string;
8528
+ confirm: string;
8529
+ maxAccruals: string;
8530
+ conflict: string;
8531
+ vendorLock: string;
8532
+ selectLineHint: string;
8533
+ previewEmpty: string;
8534
+ accrualJeTitle: string;
8535
+ reversalJeTitle: string;
8536
+ reversalJeNote: string;
8537
+ transactionMatchedTitle: string;
8538
+ columnDate: string;
8539
+ columnAccount: string;
8540
+ columnDebit: string;
8541
+ columnCredit: string;
8542
+ lastDayOfMonth: string;
8543
+ reversesLabel: string;
8544
+ vsAccrued: string;
8545
+ accruedExpensesFallback: string;
8546
+ };
8547
+ matchDetail: {
8548
+ service: string;
8549
+ accrued: string;
8550
+ actual: string;
8551
+ variance: string;
8552
+ accrualJes: string;
8553
+ leftovers: string;
8554
+ reversalFailed: string;
8555
+ undoFailed: string;
8556
+ loadErrorTitle: string;
8557
+ loadErrorSubTitle: string;
8558
+ reversalJe: string;
8559
+ matchedBill: string;
8560
+ matchedCharge: string;
8561
+ matchedTransaction: string;
8562
+ statusAutoReversed: string;
8563
+ statusPendingReview: string;
8564
+ statusManuallyReversed: string;
8565
+ };
8566
+ };
8443
8567
  newSchedule: {
8444
8568
  title: string;
8445
8569
  oneTimeAccrualTitle: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeniai/web-components",
3
- "version": "4.3.76",
3
+ "version": "4.3.78-betaRD1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -47,8 +47,8 @@
47
47
  "@statsig/react-bindings": "^3.14.0",
48
48
  "@stripe/react-stripe-js": "^2.7.3",
49
49
  "@stripe/stripe-js": "^4.4.0",
50
- "@zeniai/client-analytics": "2.0.89",
51
- "@zeniai/client-epic-state": "5.2.41",
50
+ "@zeniai/client-analytics": "2.0.91",
51
+ "@zeniai/client-epic-state": "5.2.42",
52
52
  "autosuggest-highlight": "^3.2.1",
53
53
  "browser-image-compression": "^2.0.2",
54
54
  "countries-list": "^2.6.1",
@@ -166,8 +166,8 @@
166
166
  "@types/color": "^3.0.2",
167
167
  "@types/react-select": "^4.0.18",
168
168
  "@types/react-window": "^1.8.8",
169
- "@zeniai/client-analytics": "2.0.89",
170
- "@zeniai/client-epic-state": "5.2.41",
169
+ "@zeniai/client-analytics": "2.0.91",
170
+ "@zeniai/client-epic-state": "5.2.42",
171
171
  "color": "^3.1.3",
172
172
  "react": "18.3.1",
173
173
  "react-dom": "18.3.1",