@zeniai/web-components 4.2.27 → 4.2.28

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 (47) hide show
  1. package/dist/{SessionTimeoutPopup-DJQB9J45.cjs → SessionTimeoutPopup-FQidz3x6.cjs} +18240 -16509
  2. package/dist/{SessionTimeoutPopup-DtfB17Fl.js → SessionTimeoutPopup-nM8Th-1x.js} +85317 -80109
  3. package/dist/appLocale.d.ts +95 -3
  4. package/dist/cockpit.cjs.js +69 -69
  5. package/dist/cockpit.esm.js +2158 -2164
  6. package/dist/components/aiCfo/AiCfoPage.d.ts +8 -1
  7. package/dist/components/aiCfo/components/AiCfoInput.d.ts +7 -0
  8. package/dist/components/aiCfo/components/AiCfoSkillMenu.d.ts +19 -0
  9. package/dist/components/aiCfo/components/helpers/aiCfoSlashHelpers.d.ts +30 -0
  10. package/dist/components/aiCfo/stories/components/AiCfoStoryWrapper.d.ts +6 -1
  11. package/dist/components/aiCfo/stories/hooks/useAiCfoStoryState.d.ts +2 -2
  12. package/dist/components/common/uploadInvoice/RenderPdf.d.ts +14 -0
  13. package/dist/components/expenseAutomation/ExpenseAutomationPage.d.ts +1 -0
  14. package/dist/components/expenseAutomation/components/TableSection.d.ts +1 -0
  15. package/dist/components/expenseAutomation/sections/accountRecon/AccountReconDetailsDrawerPageV2.d.ts +44 -0
  16. package/dist/components/expenseAutomation/sections/accountRecon/AccountReconListSkeleton.d.ts +3 -1
  17. package/dist/components/expenseAutomation/sections/accountRecon/AccountReconciliationListPage.d.ts +2 -1
  18. package/dist/components/expenseAutomation/sections/accountRecon/AccountReconciliationPage.d.ts +2 -1
  19. package/dist/components/expenseAutomation/sections/accountRecon/ExcludedAccountReconDetailsDrawerPage.d.ts +3 -1
  20. package/dist/components/expenseAutomation/sections/accountRecon/ReconciliationProgressBar.d.ts +10 -0
  21. package/dist/components/expenseAutomation/sections/accountRecon/ReconciliationStatsCards.d.ts +5 -0
  22. package/dist/components/expenseAutomation/sections/accountRecon/StatementDateConflictPopup.d.ts +8 -0
  23. package/dist/components/expenseAutomation/sections/accountRecon/StatementPageLayout.d.ts +18 -0
  24. package/dist/components/expenseAutomation/sections/accountRecon/StatementParseInfo.d.ts +14 -0
  25. package/dist/components/expenseAutomation/sections/accountRecon/StatementProcessingPage.d.ts +10 -0
  26. package/dist/components/expenseAutomation/sections/accountRecon/mapAccountReconToReportTreeNodesV2.d.ts +16 -0
  27. package/dist/components/expenseAutomation/sections/accountRecon/mapExcludedAccountReconToReportTreeNodes.d.ts +2 -0
  28. package/dist/components/reportTree/reportTreeTypes.d.ts +1 -0
  29. package/dist/components/reportTree/treeNode/accountReconReport/row/AccountRow.d.ts +12 -0
  30. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/AccountRow.d.ts +59 -0
  31. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/LoadingInProgressRow.d.ts +3 -0
  32. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/SectionRow.d.ts +10 -0
  33. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/TimeframeRow.d.ts +7 -0
  34. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/TotalRow.d.ts +15 -0
  35. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/common.d.ts +38 -0
  36. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/rowConstructors.d.ts +6 -0
  37. package/dist/components/reportTree/treeNode/accountReconReport/row/v2/statusHelper.d.ts +12 -0
  38. package/dist/components/reportTree/treeNode/accountReconReport/treeNodeMappers/v2/mapSectionToTreeNode.d.ts +11 -0
  39. package/dist/components/reportTree/treeNode/getTreeNodeData.d.ts +1 -1
  40. package/dist/context/SidePanelContext.d.ts +1 -1
  41. package/dist/context/featureProvider/FeatureGateNameConstants.d.ts +3 -1
  42. package/dist/designSystem/zeniColors.d.ts +8 -0
  43. package/dist/index.cjs.js +1 -1
  44. package/dist/index.d.ts +3 -0
  45. package/dist/index.esm.js +334 -331
  46. package/dist/strings/strings.d.ts +95 -3
  47. package/package.json +7 -7
@@ -4500,6 +4500,7 @@ declare class AppLocale {
4500
4500
  DMMMYYFormat: string;
4501
4501
  DMMMYYYYFormat: string;
4502
4502
  dMMMyyyyFormat: string;
4503
+ dSlashMMSlashyyFormat: string;
4503
4504
  DdashMMdashYYYYFormat: string;
4504
4505
  MMMDCommaYYFormat: string;
4505
4506
  defaultInput: string;
@@ -9778,14 +9779,24 @@ declare class AppLocale {
9778
9779
  };
9779
9780
  };
9780
9781
  bankBalance: string;
9782
+ openingBalance: string;
9783
+ closingBalance: string;
9781
9784
  clearedBalance: string;
9782
9785
  variance: string;
9786
+ matchProgress: string;
9787
+ lastReconciled: string;
9783
9788
  status: string;
9784
9789
  excludedAccountTitle: string;
9785
9790
  };
9786
- menu: {
9787
- statement: string;
9788
- bankConnection: string;
9791
+ matchProgressLegend: {
9792
+ byAi: string;
9793
+ byHuman: string;
9794
+ };
9795
+ progressBar: {
9796
+ complete: string;
9797
+ byAi: string;
9798
+ byHumans: string;
9799
+ remaining: string;
9789
9800
  };
9790
9801
  stepsBanner: {
9791
9802
  hide: string;
@@ -9814,6 +9825,28 @@ declare class AppLocale {
9814
9825
  body: string;
9815
9826
  };
9816
9827
  };
9828
+ menu: {
9829
+ statement: string;
9830
+ bankConnection: string;
9831
+ };
9832
+ statsCards: {
9833
+ autoMatched: string;
9834
+ needsReview: string;
9835
+ accountsDone: string;
9836
+ timeSavedByAi: string;
9837
+ ofTotalTxn: string;
9838
+ acrossAccounts: string;
9839
+ ofTotalAccounts: string;
9840
+ hrsSuffix: string;
9841
+ };
9842
+ connectAccountsBanner: {
9843
+ accountLabelSingular: string;
9844
+ accountLabelPlural: string;
9845
+ leadNeedConnectedSuffix: string;
9846
+ body: string;
9847
+ connectAccounts: string;
9848
+ dismissAriaLabel: string;
9849
+ };
9817
9850
  status: {
9818
9851
  reconciled: string;
9819
9852
  reconciledBy: string;
@@ -9867,6 +9900,7 @@ declare class AppLocale {
9867
9900
  status: string;
9868
9901
  accountType: string;
9869
9902
  lastUpdated: string;
9903
+ lastSync: string;
9870
9904
  };
9871
9905
  values: {
9872
9906
  bankConnection: string;
@@ -9883,6 +9917,33 @@ declare class AppLocale {
9883
9917
  heading: string;
9884
9918
  description: string;
9885
9919
  };
9920
+ validationFailed: {
9921
+ heading: string;
9922
+ ok: string;
9923
+ };
9924
+ fileValidationFailed: {
9925
+ heading: string;
9926
+ description: string;
9927
+ cancel: string;
9928
+ reupload: string;
9929
+ closeAriaLabel: string;
9930
+ };
9931
+ dateRangeConflict: {
9932
+ alreadyReconciled: {
9933
+ heading: string;
9934
+ description: string;
9935
+ };
9936
+ gap: {
9937
+ heading: string;
9938
+ description: string;
9939
+ expectedStartDate: (date: string) => string;
9940
+ };
9941
+ lastReconciled: (date: string) => string;
9942
+ lastReconciledBy: (date: string, name: string) => string;
9943
+ cancel: string;
9944
+ reupload: string;
9945
+ closeAriaLabel: string;
9946
+ };
9886
9947
  error: {
9887
9948
  validationFailed: string;
9888
9949
  parsingFailed: string;
@@ -9900,6 +9961,37 @@ declare class AppLocale {
9900
9961
  excludedStatus: string;
9901
9962
  };
9902
9963
  };
9964
+ statementProcessing: {
9965
+ steps: string[];
9966
+ headerTitle: string;
9967
+ stepSubtitles: string[];
9968
+ stepProgressLabel: (completed: number, total: number) => string;
9969
+ working: string;
9970
+ cancel: string;
9971
+ continueInBackground: string;
9972
+ };
9973
+ statementParseInfo: {
9974
+ aiSummaryTitle: string;
9975
+ statementPeriodAndBalances: string;
9976
+ period: string;
9977
+ from: string;
9978
+ to: string;
9979
+ deposits: string;
9980
+ payments: string;
9981
+ addCredit: string;
9982
+ addDebit: string;
9983
+ confirmAndSave: string;
9984
+ reparseStatement: string;
9985
+ retryParsing: string;
9986
+ aiSummary: {
9987
+ accountRecognized: string;
9988
+ transactionsExtracted: string;
9989
+ exceptionsDetected: string;
9990
+ fieldsCaptured: string;
9991
+ validated: string;
9992
+ openingDate: string;
9993
+ };
9994
+ };
9903
9995
  tabs: {
9904
9996
  review: string;
9905
9997
  reconcile: string;