@zeniai/web-components 4.1.53 → 4.1.55

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 (37) hide show
  1. package/dist/{SessionTimeoutPopup-C3zi1za_.cjs → SessionTimeoutPopup-B87qeaPV.cjs} +15351 -14953
  2. package/dist/{SessionTimeoutPopup-BK9wix5_.js → SessionTimeoutPopup-BnwXqvlZ.js} +67966 -66346
  3. package/dist/appLocale.d.ts +25 -0
  4. package/dist/cockpit.cjs.js +1 -1
  5. package/dist/cockpit.esm.js +4 -4
  6. package/dist/components/formElements/common/common.d.ts +1 -0
  7. package/dist/components/formElements/labeledFormattedText/LabeledFormattedTextField.d.ts +7 -2
  8. package/dist/components/formElements/labeledText/LabeledTextField.d.ts +7 -1
  9. package/dist/components/transactionDetail/items/journalEntryTable/FlexibleWidthContext.d.ts +2 -0
  10. package/dist/components/transactionDetail/items/journalEntryTable/TransactionLinesJournalEntryEmptyTable.d.ts +17 -0
  11. package/dist/components/transactionDetail/items/journalEntryTable/TransactionLinesJournalEntryTable.d.ts +2 -0
  12. package/dist/components/transactionDetail/items/journalEntryTable/common.d.ts +23 -0
  13. package/dist/components/transactionDetail/items/journalEntryTable/header/JournalEntryTableHeader.d.ts +11 -0
  14. package/dist/components/transactionDetail/items/journalEntryTable/header/journalEntryHeaderConfig.d.ts +28 -0
  15. package/dist/components/transactionDetail/items/journalEntryTable/header/journalEntryHeaderItemsData.d.ts +16 -0
  16. package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableStyles.d.ts +119 -0
  17. package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableTypes.d.ts +79 -0
  18. package/dist/components/transactionDetail/items/journalEntryTable/listRow/JournalEntryTableListRow.d.ts +40 -0
  19. package/dist/components/transactionDetail/items/journalEntryTable/totals/JournalEntryTotalsRow.d.ts +21 -0
  20. package/dist/components/transactionDetail/items/transactionLineTable/FlexibleWidthContext.d.ts +6 -0
  21. package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesEmptyTable.d.ts +11 -0
  22. package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesTable.d.ts +17 -0
  23. package/dist/components/transactionDetail/items/transactionLineTable/common.d.ts +32 -0
  24. package/dist/components/transactionDetail/items/transactionLineTable/header/TransactionLineTableHeader.d.ts +12 -0
  25. package/dist/components/transactionDetail/items/transactionLineTable/header/transactionLineHeaderConfig.d.ts +40 -0
  26. package/dist/components/transactionDetail/items/transactionLineTable/header/transactionLineHeaderItemsData.d.ts +19 -0
  27. package/dist/components/transactionDetail/items/transactionLineTable/listRow/TransactionLineTableListRow.d.ts +40 -0
  28. package/dist/components/transactionDetail/items/transactionLineTable/sortTransactionLines.d.ts +19 -0
  29. package/dist/components/transactionDetail/items/transactionLineTable/transactionLineTableStyles.d.ts +103 -0
  30. package/dist/components/transactionDetail/items/transactionLineTable/transactionLineTableTypes.d.ts +80 -0
  31. package/dist/index.cjs.js +1 -1
  32. package/dist/index.esm.js +20 -20
  33. package/dist/strings/strings.d.ts +25 -0
  34. package/dist/testSetup.d.ts +0 -0
  35. package/dist/{vendor-.pnpm-C7TxM7W7.cjs → vendor-.pnpm-DuJMYp1y.cjs} +88 -88
  36. package/dist/{vendor-.pnpm-CSfLHWdE.js → vendor-.pnpm-XFVTbpbG.js} +5506 -5457
  37. package/package.json +3 -3
@@ -0,0 +1,19 @@
1
+ import { ResponsiveSized } from '../../../../../context/windowSizeProvider';
2
+ import { TransactionLineRowHeaderItemData } from './transactionLineHeaderConfig';
3
+ /**
4
+ * Column order matches Figma frame 5240:7220:
5
+ * Description | Category | Class | (Project) | Amount
6
+ *
7
+ * `Project` is appended after `Class` only when `showProjectField` is
8
+ * true; the base Figma frame does not include it. This mirrors the JE
9
+ * table's optional-Project handling.
10
+ */
11
+ export declare const getTransactionLineTableHeaderItemsData: (isAccountingClassesEnabled?: boolean, showProjectField?: boolean) => TransactionLineRowHeaderItemData[];
12
+ /**
13
+ * Compressed (quick-view / small window) header list — single
14
+ * Description column with a single right-aligned Amount column. No
15
+ * `Dr`/`Cr` prefix here (unlike JE) because non-JE lines have no
16
+ * posting type to disambiguate.
17
+ */
18
+ export declare const compressedTransactionLineHeaderItemsData: TransactionLineRowHeaderItemData[];
19
+ export declare const getTransactionLineTableMaxWidth: (isAccountingClassesEnabled?: boolean, showProjectField?: boolean) => ResponsiveSized;
@@ -0,0 +1,40 @@
1
+ import { CSSProperties } from 'react';
2
+ import { WindowSize } from '../../../../../context/windowSizeProvider/WindowSizeProvider';
3
+ import { ResponsiveSized } from '../../../../../context/windowSizeProvider/responsiveSize';
4
+ import { TransactionLineTableListEmptyRowProps, TransactionLineTableListRowProps } from '../transactionLineTableTypes';
5
+ /**
6
+ * Single populated row of the non-JE transaction line table. Iterates
7
+ * the `columns` array from the header and renders the matching inline
8
+ * cell JSX. Mirrors the JE row's "one big switch" structure so a
9
+ * reviewer can diff the two row files column-by-column.
10
+ *
11
+ * Cells:
12
+ * - `description` — editable LabeledTextField in a flush pill
13
+ * - `category` — RecommendationIcon + dropdown
14
+ * - `class` — RecommendationIcon + dropdown (only when accounting classes are on)
15
+ * - `project` — dropdown (no recommendations today, slot reserved)
16
+ * - `amount` — single right-aligned amount field (no Dr/Cr prefix)
17
+ */
18
+ export declare const TransactionLineTableListRow: ({ accountList: _accountList, accountsHierarchyList, classHierarchyList, classList: _classList, columns, isCOTEnabled, isCompressed, isDisabled, isUncategorizedExpenseCategoryEnabled, line, lineIndex, onCOTView, openTooltipId, projects, searchAutoComplete: _searchAutoComplete, sectionId, setOpenTooltipId, transactionId, uncategorizedAccounts, }: TransactionLineTableListRowProps) => import("react/jsx-runtime").JSX.Element;
19
+ /**
20
+ * Skeleton row consumed by `TransactionLinesEmptyTable`. Uses the same
21
+ * `RowItemContainer` as the live row so column widths line up 1:1.
22
+ */
23
+ export declare const TransactionLineTableListEmptyRow: ({ columns, isCompressed, }: TransactionLineTableListEmptyRowProps) => import("react/jsx-runtime").JSX.Element;
24
+ declare const RowItemContainerStyled: import('@emotion/styled').StyledComponent<{
25
+ theme?: import('@emotion/react').Theme;
26
+ as?: React.ElementType;
27
+ } & {
28
+ $widthPercentage: number;
29
+ windowSize: WindowSize;
30
+ wrapperWidth: ResponsiveSized;
31
+ $flexibleWidth?: boolean;
32
+ isCompressed?: boolean;
33
+ isDividerColumn?: boolean;
34
+ isLastItem?: boolean;
35
+ isSticky?: boolean;
36
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
37
+ export declare const RowItemContainer: (props: Omit<React.ComponentProps<typeof RowItemContainerStyled>, "$flexibleWidth" | "$widthPercentage"> & {
38
+ widthPercentage: number;
39
+ }) => import("react/jsx-runtime").JSX.Element;
40
+ export type { CSSProperties as _CellStyle };
@@ -0,0 +1,19 @@
1
+ import { LineInfo } from '../../common';
2
+ import { TransactionLineRowSortConfig } from './header/transactionLineHeaderConfig';
3
+ /**
4
+ * Accessor functions resolve the sort value for each column from a
5
+ * line. Mirrors the JE table's `JournalEntrySortAccessors` contract
6
+ * (epic-state) but narrowed to the non-JE column set:
7
+ * description, category, class, amount.
8
+ */
9
+ export interface TransactionLineSortAccessors {
10
+ amount: (line: LineInfo) => number;
11
+ category: (line: LineInfo) => string;
12
+ class: (line: LineInfo) => string;
13
+ description: (line: LineInfo) => string;
14
+ }
15
+ /**
16
+ * Stable, accessor-driven sort. Strings are lowered before compare;
17
+ * the amount column compares numerically.
18
+ */
19
+ export declare const sortTransactionLines: (lines: ReadonlyArray<LineInfo>, config: TransactionLineRowSortConfig, accessors: TransactionLineSortAccessors) => LineInfo[];
@@ -0,0 +1,103 @@
1
+ /**
2
+ * Outer wrapper that sits between the surrounding page and the table card.
3
+ * Mirrors the JE table's `TableWrapperContainer` (frame 5240:7220 has the
4
+ * same outer breathing-room as the JE redesign). Padding (`sp3 sp5` =
5
+ * 16px / 32px) and the `grey4` page-tinted background are applied in
6
+ * both full view AND quick view so the table card has the same
7
+ * surrounding chrome in the side panel as on the full detail page.
8
+ * Quick view additionally fills the panel's vertical space
9
+ * (`height: 100%`) so the inner scroll container can scroll.
10
+ */
11
+ export declare const TableWrapperContainer: import('@emotion/styled').StyledComponent<{
12
+ theme?: import('@emotion/react').Theme;
13
+ as?: React.ElementType;
14
+ } & {
15
+ $isQuickViewMode?: boolean;
16
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
17
+ /**
18
+ * Bordered, rounded "card" that frames the non-JE table. Identical
19
+ * chrome to the JE card (border + radius + grey5 background).
20
+ *
21
+ * Note (mirrors JE): we intentionally do NOT apply `overflow: hidden`
22
+ * here because that would establish a scroll container and break the
23
+ * page-relative `position: sticky` behavior of the header. The non-JE
24
+ * table has no sticky totals row, so the bottom-rounded corners are
25
+ * owned by the last `RowWrapper` (see `&:last-child` rule below).
26
+ */
27
+ export declare const ListViewContainer: import('@emotion/styled').StyledComponent<{
28
+ theme?: import('@emotion/react').Theme;
29
+ as?: React.ElementType;
30
+ } & {
31
+ $isQuickViewMode?: boolean;
32
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
33
+ /**
34
+ * Horizontal scroll container shared by the populated and empty tables.
35
+ * Vertical overflow is left to the page (or the side-panel drawer in
36
+ * quick view) so the table doesn't introduce a scroll-within-scroll
37
+ * experience.
38
+ */
39
+ export declare const TableScrollContainer: import('@emotion/styled').StyledComponent<{
40
+ theme?: import('@emotion/react').Theme;
41
+ as?: React.ElementType;
42
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
43
+ /**
44
+ * Inner flex column that holds the sticky header and the rows.
45
+ * Keeping `display: flex; flex-direction: column;` allows the
46
+ * `position: sticky` header to pin against this scrolling parent.
47
+ */
48
+ export declare const TableScrollContent: import('@emotion/styled').StyledComponent<{
49
+ theme?: import('@emotion/react').Theme;
50
+ as?: React.ElementType;
51
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
52
+ /**
53
+ * Per-row wrapper used by both the populated and the skeleton/empty
54
+ * tables. Carries the standard row height and the bottom separator.
55
+ *
56
+ * Unlike the JE table, the non-JE table has no sticky totals row at the
57
+ * bottom — so the LAST row owns the bottom-rounded corners of the card.
58
+ * - `:not(:last-child)` paints the 1px row separator
59
+ * - `:last-child` rounds the bottom corners AND sets `overflow: hidden`
60
+ * so the inner `RowFlex` background (grey5 default + `background`
61
+ * on hover) is clipped to the rounded corners. Without `overflow:
62
+ * hidden` the inner fill would spill over the rounded edge and
63
+ * visually break the card corner on hover (and on the default
64
+ * `grey5` fill where the parent card is also `grey5` so the bug
65
+ * only became obvious in the hover state). Dropdowns and CoT
66
+ * tooltips inside the row portal to `document.body`, so clipping
67
+ * the row's overflow is safe — Figma 5240:7239 / 5262:22638.
68
+ */
69
+ export declare const RowWrapper: import('@emotion/styled').StyledComponent<{
70
+ theme?: import('@emotion/react').Theme;
71
+ as?: React.ElementType;
72
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
73
+ /**
74
+ * Sticky wrapper that pins the header to the top of the scroll
75
+ * container. Visual chrome (background fill, border-bottom, top-corner
76
+ * radius) lives on the inner `HeaderContainer` so the header matches
77
+ * the Figma "Table Row" component (frame 5240:7221) on its own and
78
+ * renders correctly in isolation (e.g. in stories) — this wrapper now
79
+ * owns only the positioning concern.
80
+ */
81
+ export declare const StickyHeaderContainer: import('@emotion/styled').StyledComponent<{
82
+ theme?: import('@emotion/react').Theme;
83
+ as?: React.ElementType;
84
+ } & {
85
+ isQuickViewMode?: boolean;
86
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
87
+ /**
88
+ * Hover-tinted row container.
89
+ * Matches the JE table's `RowFlex` with the same `grey5` → `background`
90
+ * transition on hover. Rounded corners are owned by the parent
91
+ * `RowWrapper:last-child` (with `overflow: hidden`), so this element
92
+ * doesn't need to know whether it's the last row.
93
+ */
94
+ export declare const RowFlex: import('@emotion/styled').StyledComponent<{
95
+ theme?: import('@emotion/react').Theme;
96
+ as?: React.ElementType;
97
+ } & {
98
+ isHovered?: boolean;
99
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
100
+ export declare const HeaderRowFlex: import('@emotion/styled').StyledComponent<{
101
+ theme?: import('@emotion/react').Theme;
102
+ as?: React.ElementType;
103
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -0,0 +1,80 @@
1
+ import { AccountBase, ClassBase, ID, NestedAccountHierarchyForReport, NestedClassHierarchyForReport, Project, TransactionDetailLocalData, TransactionLineRecommendationFieldTypes, TransactionWithCOT, UncategorizedAccounts, ZeniDate } from '@zeniai/client-epic-state';
2
+ import { COTTrackingProps } from '../../../../types/cotTracking';
3
+ import { DisableMode } from '../../../formElements/common/common';
4
+ import { LineInfo, SearchAutoComplete } from '../../common';
5
+ import { TransactionLineRowHeaderItemData } from './header/transactionLineHeaderConfig';
6
+ /**
7
+ * Public props for the non-journal-entry transaction line table.
8
+ * Mirrors the shape of `TransactionLinesJournalEntryTableProps`.
9
+ */
10
+ export interface TransactionLinesTableProps {
11
+ accountList: AccountBase[];
12
+ accountsHierarchyList: NestedAccountHierarchyForReport[];
13
+ classHierarchyList: NestedClassHierarchyForReport[];
14
+ classList: ClassBase[];
15
+ containerRef: HTMLElement | null;
16
+ isAccountingClassesEnabled: boolean;
17
+ isAccountingProjectsEnabled: boolean;
18
+ isCOTEnabled: boolean;
19
+ isProjectsTransactionsEnabled: boolean;
20
+ lines: LineInfo[];
21
+ projects: Project[];
22
+ searchAutoComplete: SearchAutoComplete;
23
+ sectionId: string;
24
+ transaction: TransactionWithCOT;
25
+ bookCloseDate?: ZeniDate;
26
+ cotTracking?: COTTrackingProps;
27
+ entityId?: ID;
28
+ isDisabled?: DisableMode;
29
+ isQuickViewMode?: boolean;
30
+ isTransactionCommentingEnabled?: boolean;
31
+ isUncategorizedExpenseCategoryEnabled?: boolean;
32
+ lineItemsLocalData?: TransactionDetailLocalData;
33
+ openTooltipId?: ID;
34
+ uncategorizedAccounts?: UncategorizedAccounts;
35
+ setOpenTooltipId?: (tooltipId: ID | undefined) => void;
36
+ }
37
+ /**
38
+ * Props for the skeleton/loading empty table that mirrors the
39
+ * `TransactionLinesJournalEntryEmptyTable` shape.
40
+ */
41
+ export interface TransactionLinesEmptyTableProps {
42
+ isAccountingClassesEnabled: boolean;
43
+ showProjectField: boolean;
44
+ isCompressed?: boolean;
45
+ isQuickViewMode?: boolean;
46
+ sectionId?: string;
47
+ skeletonRowCount?: number;
48
+ }
49
+ /** Props for the inline list-row component. */
50
+ export interface TransactionLineTableListRowProps {
51
+ accountList: AccountBase[];
52
+ accountsHierarchyList: NestedAccountHierarchyForReport[];
53
+ classHierarchyList: NestedClassHierarchyForReport[];
54
+ classList: ClassBase[];
55
+ columns: TransactionLineRowHeaderItemData[];
56
+ isCompressed: boolean;
57
+ isCOTEnabled: boolean;
58
+ line: LineInfo;
59
+ lineIndex: number;
60
+ projects: Project[];
61
+ sectionId: string;
62
+ isDisabled?: DisableMode;
63
+ isUncategorizedExpenseCategoryEnabled?: boolean;
64
+ openTooltipId?: ID;
65
+ searchAutoComplete?: SearchAutoComplete;
66
+ /**
67
+ * Transaction id used by the inline `RecommendationIcon` to build a
68
+ * unique tooltip identifier. Optional so existing callers don't break;
69
+ * when missing the row falls back to `line.id`.
70
+ */
71
+ transactionId?: ID;
72
+ uncategorizedAccounts?: UncategorizedAccounts;
73
+ onCOTView?: (fieldType: TransactionLineRecommendationFieldTypes, recommendationSource?: string) => void;
74
+ setOpenTooltipId?: (tooltipId: ID | undefined) => void;
75
+ }
76
+ /** Props for the skeleton row mounted by the empty table. */
77
+ export interface TransactionLineTableListEmptyRowProps {
78
+ columns: TransactionLineRowHeaderItemData[];
79
+ isCompressed: boolean;
80
+ }
package/dist/index.cjs.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-C3zi1za_.cjs"),a=require("./vendor-.pnpm-C7TxM7W7.cjs"),t=require("@emotion/styled");exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingActivationPage=e.CustomerOnboardingActivationPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MagicLinkDomesticWireDetailsPage=e.MagicLinkDomesticWireDetailsPage;exports.MagicLinkInternationalWireDetailsPage=e.MagicLinkInternationalWireDetailsPage;exports.MagicLinkSuccessPage=e.MagicLinkSuccessPage;exports.MagicLinkVendorACHDetailsPage=e.MagicLinkVendorACHDetailsPage;exports.Modal=e.Modal;exports.MonthEndEmailDrawerCustomerRequestPage=e.MonthEndEmailDrawerCustomerRequestPage;exports.MyBankConnectionsSettingsPage=e.MyBankConnectionsSettingsPage;exports.MyPendingActivationChargeCardListPage=e.MyPendingActivationChargeCardListPage;exports.MyProfileSettingsPage=e.MyProfileSettingsPage;exports.NavBar=e.NavBar;exports.NavBarRightRowStyled=e.NavBarRightRowStyled;exports.NewGlobalMerchantPage=e.NewGlobalMerchantPage;exports.NewUpdateAvailablePage=e.NewUpdateAvailablePage;exports.NotFoundPage=e.NotFoundPage;exports.NotificationIcon=e.SvgNotification;exports.NotificationSettingsPage=e.NotificationSettingsPage;exports.NotificationsPage=e.NotificationsPage;exports.OAuthConsentPage=e.OAuthConsentPage;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewConfirmTransferPanel=e.ReviewConfirmTransferPanel;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.TaskDetailPage=e.TaskDetailPage;exports.TaskManagementPage=e.TaskManagementPage;exports.TenantsDropDown=e.TenantsDropDown;exports.TextStyle=e.TextStyle;exports.ToolkitProvider=e.ToolkitProvider;exports.TopExDetailPage=e.TopExDetailPage;exports.TransactionActivityLogPage=e.TransactionActivityLogPage;exports.TransactionActivityLogPanel=e.TransactionActivityLogPanel;exports.TransactionDetailPage=e.TransactionDetailPage;exports.TransactionDetailSkeleton=e.TransactionDetailSkeleton;exports.TransactionListBig=e.TransactionListBig;exports.TransactionListPage=e.TransactionListPage;exports.TransactionPanelInternalContext=e.TransactionPanelInternalContext;exports.TransactionSidePanelLayout=e.TransactionSidePanelLayout;exports.TransactionVendorDetailPage=e.TransactionVendorDetailPage;exports.TransferDrawerPage=e.TransferDrawerPage;exports.TreasuryOverviewPage=e.TreasuryOverviewPage;exports.TreasuryPromoPage=e.TreasuryPromoPage;exports.TreasurySetUpPage=e.TreasurySetUpPage;exports.TreasuryStatementsPage=e.TreasuryStatementsPage;exports.TreasuryTaxLetterPage=e.TreasuryTaxLetterPage;exports.TreasuryTransferOrReviewPage=e.TreasuryTransferOrReviewPage;exports.TrendChart=e.TrendChart;exports.UncategorizedAccountsMappingPage=e.UncategorizedAccountsMappingPage;exports.UnitIntegrationPage=e.UnitIntegrationPage;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.VerifyDevice=e.VerifyDevice;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.buildStickyKeySet=e.buildStickyKeySet;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useAgentPerfAccess=e.useAgentPerfAccess;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSchedulePanelInternal=e.useSchedulePanelInternal;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useTransactionPanelInternal=e.useTransactionPanelInternal;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;exports.zeniEmotionStyled=t;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-B87qeaPV.cjs"),a=require("./vendor-.pnpm-DuJMYp1y.cjs"),t=require("@emotion/styled");exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingActivationPage=e.CustomerOnboardingActivationPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MagicLinkDomesticWireDetailsPage=e.MagicLinkDomesticWireDetailsPage;exports.MagicLinkInternationalWireDetailsPage=e.MagicLinkInternationalWireDetailsPage;exports.MagicLinkSuccessPage=e.MagicLinkSuccessPage;exports.MagicLinkVendorACHDetailsPage=e.MagicLinkVendorACHDetailsPage;exports.Modal=e.Modal;exports.MonthEndEmailDrawerCustomerRequestPage=e.MonthEndEmailDrawerCustomerRequestPage;exports.MyBankConnectionsSettingsPage=e.MyBankConnectionsSettingsPage;exports.MyPendingActivationChargeCardListPage=e.MyPendingActivationChargeCardListPage;exports.MyProfileSettingsPage=e.MyProfileSettingsPage;exports.NavBar=e.NavBar;exports.NavBarRightRowStyled=e.NavBarRightRowStyled;exports.NewGlobalMerchantPage=e.NewGlobalMerchantPage;exports.NewUpdateAvailablePage=e.NewUpdateAvailablePage;exports.NotFoundPage=e.NotFoundPage;exports.NotificationIcon=e.SvgNotification;exports.NotificationSettingsPage=e.NotificationSettingsPage;exports.NotificationsPage=e.NotificationsPage;exports.OAuthConsentPage=e.OAuthConsentPage;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewConfirmTransferPanel=e.ReviewConfirmTransferPanel;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.TaskDetailPage=e.TaskDetailPage;exports.TaskManagementPage=e.TaskManagementPage;exports.TenantsDropDown=e.TenantsDropDown;exports.TextStyle=e.TextStyle;exports.ToolkitProvider=e.ToolkitProvider;exports.TopExDetailPage=e.TopExDetailPage;exports.TransactionActivityLogPage=e.TransactionActivityLogPage;exports.TransactionActivityLogPanel=e.TransactionActivityLogPanel;exports.TransactionDetailPage=e.TransactionDetailPage;exports.TransactionDetailSkeleton=e.TransactionDetailSkeleton;exports.TransactionListBig=e.TransactionListBig;exports.TransactionListPage=e.TransactionListPage;exports.TransactionPanelInternalContext=e.TransactionPanelInternalContext;exports.TransactionSidePanelLayout=e.TransactionSidePanelLayout;exports.TransactionVendorDetailPage=e.TransactionVendorDetailPage;exports.TransferDrawerPage=e.TransferDrawerPage;exports.TreasuryOverviewPage=e.TreasuryOverviewPage;exports.TreasuryPromoPage=e.TreasuryPromoPage;exports.TreasurySetUpPage=e.TreasurySetUpPage;exports.TreasuryStatementsPage=e.TreasuryStatementsPage;exports.TreasuryTaxLetterPage=e.TreasuryTaxLetterPage;exports.TreasuryTransferOrReviewPage=e.TreasuryTransferOrReviewPage;exports.TrendChart=e.TrendChart;exports.UncategorizedAccountsMappingPage=e.UncategorizedAccountsMappingPage;exports.UnitIntegrationPage=e.UnitIntegrationPage;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.VerifyDevice=e.VerifyDevice;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.buildStickyKeySet=e.buildStickyKeySet;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useAgentPerfAccess=e.useAgentPerfAccess;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSchedulePanelInternal=e.useSchedulePanelInternal;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useTransactionPanelInternal=e.useTransactionPanelInternal;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;exports.zeniEmotionStyled=t;
package/dist/index.esm.js CHANGED
@@ -1,5 +1,5 @@
1
- import { A as s, a as t, b as o, c as i, e as n, f as r, g, h as l, i as P, j as d, m as c, n as u, o as C, p as m, q as S, r as f, s as p, t as A, u as D, x as b, y as h, z as T, B as v, C as L, D as w, E as y, F as I, G as k, H as R, I as V, L as B, M as E, N as M, O as N, P as F, Q as O, R as x, dH as U, S as W, T as _, U as H, V as G, Y as Z, $ as z, a0 as q, a1 as Q, a2 as Y, a3 as j, a4 as X, a5 as J, a6 as K, a7 as $, a8 as aa, a9 as ea, aa as sa, ab as ta, dH as oa, ac as ia, ad as na, ae as ra, af as ga, ag as la, ai as Pa, aj as da, ak as ca, al as ua, an as Ca, ao as ma, aq as Sa, ar as fa, as as pa, at as Aa, aw as Da, az as ba, aA as ha, aB as Ta, aC as va, aD as La, aE as wa, aF as ya, aG as Ia, aJ as ka, aK as Ra, aL as Va, aM as Ba, aN as Ea, aO as Ma, aP as Na, aR as Fa, aU as Oa, aX as xa, aY as Ua, aZ as Wa, b2 as _a, b3 as Ha, b4 as Ga, b5 as Za, b6 as za, b7 as qa, b8 as Qa, aV as Ya, bj as ja, bk as Xa, bl as Ja, bp as Ka, br as $a, bt as ae, bu as ee, bD as se, bE as te, bF as oe, bG as ie, bH as ne, bI as re, bJ as ge, bK as le, bL as Pe, bM as de, bN as ce, bO as ue, c9 as Ce, ca as me, cc as Se, cd as fe, ck as pe, cl as Ae, cm as De, cn as be, cp as he, cr as Te, cv as ve, cw as Le, cx as we, cA as ye, cB as Ie, cD as ke, cE as Re, cF as Ve, es as Be, cG as Ee, cH as Me, cI as Ne, cP as Fe, cQ as Oe, cR as xe, cS as Ue, cT as We, cU as _e, cV as He, cW as Ge, cX as Ze, cY as ze, c_ as qe, aS as Qe, c$ as Ye, d0 as je, d1 as Xe, d2 as Je, d3 as Ke, dH as $e, d6 as as, d4 as es, d7 as ss, d8 as ts, da as os, db as is, dc as ns, dd as rs, de as gs, df as ls, dg as Ps, dh as ds, dj as cs, dk as us, dl as Cs, dm as ms, dD as Ss, dE as fs, dF as ps, dG as As, dT as Ds, dV as bs, dY as hs, d_ as Ts, eE as vs, eF as Ls, eG as ws, eI as ys, eM as Is, eO as ks, eP as Rs, eQ as Vs, eR as Bs, eS as Es, eT as Ms, eU as Ns, eV as Fs, eW as Os, eX as xs, eY as Us, eZ as Ws, e_ as _s, e$ as Hs, f0 as Gs, f1 as Zs, f2 as zs, f3 as qs, f4 as Qs, f5 as Ys, f8 as js, f9 as Xs, fa as Js, fb as Ks, fc as $s, fd as at, fe as et, ff as st, fg as tt, fh as ot, fi as it, fj as nt, fk as rt, fl as gt, fm as lt, fn as Pt, fo as dt, fp as ct, fq as ut, fr as Ct, fs as mt, ft as St, fu as ft, fv as pt, fy as At, fz as Dt, fA as bt, fB as ht, fC as Tt, fD as vt, fF as Lt, fH as wt, fI as yt, fJ as It, fL as kt, fM as Rt, fN as Vt, fR as Bt, fS as Et, fU as Mt, fV as Nt, fW as Ft, f_ as Ot, g1 as xt, g5 as Ut, g9 as Wt, ga as _t, gb as Ht, gi as Gt, gj as Zt, gk as zt, gl as qt, gn as Qt, go as Yt, gp as jt, gq as Xt, gr as Jt, gs as Kt, gt as $t, gu as ao, gw as eo, gx as so, gy as to, gz as oo, gA as io, gB as no, gD as ro, gE as go, gF as lo, gG as Po, gH as co, gI as uo, gK as Co, gL as mo, gM as So, gO as fo, gR as po, gT as Ao, gU as Do, gV as bo, gW as ho, gX as To, gY as vo, gZ as Lo, g_ as wo, g$ as yo, h0 as Io, h1 as ko, h2 as Ro, h3 as Vo, h4 as Bo, h5 as Eo } from "./SessionTimeoutPopup-BK9wix5_.js";
2
- import { aH as No, aw as Fo } from "./vendor-.pnpm-CSfLHWdE.js";
1
+ import { A as s, a as t, b as o, c as i, e as n, f as r, g, h as l, i as P, j as d, m as c, n as u, o as C, p as m, q as S, r as f, s as p, t as A, u as D, x as b, y as h, z as T, B as v, C as L, D as y, E as I, F as w, G as k, H as R, I as V, L as B, M as E, N as M, O as N, P as F, Q as O, R as x, dH as U, S as W, T as _, U as H, V as G, Y as Z, $ as z, a0 as q, a1 as Q, a2 as Y, a3 as j, a4 as X, a5 as J, a6 as K, a7 as $, a8 as aa, a9 as ea, aa as sa, ab as ta, dH as oa, ac as ia, ad as na, ae as ra, af as ga, ag as la, ai as Pa, aj as da, ak as ca, al as ua, an as Ca, ao as ma, aq as Sa, ar as fa, as as pa, at as Aa, aw as Da, az as ba, aA as ha, aB as Ta, aC as va, aD as La, aE as ya, aF as Ia, aG as wa, aJ as ka, aK as Ra, aL as Va, aM as Ba, aN as Ea, aO as Ma, aP as Na, aR as Fa, aU as Oa, aX as xa, aY as Ua, aZ as Wa, b2 as _a, b3 as Ha, b4 as Ga, b5 as Za, b6 as za, b7 as qa, b8 as Qa, aV as Ya, bj as ja, bk as Xa, bl as Ja, bp as Ka, br as $a, bt as ae, bu as ee, bD as se, bE as te, bF as oe, bG as ie, bH as ne, bI as re, bJ as ge, bK as le, bL as Pe, bM as de, bN as ce, bO as ue, c9 as Ce, ca as me, cc as Se, cd as fe, ck as pe, cl as Ae, cm as De, cn as be, cp as he, cr as Te, cv as ve, cw as Le, cx as ye, cA as Ie, cB as we, cD as ke, cE as Re, cF as Ve, es as Be, cG as Ee, cH as Me, cI as Ne, cP as Fe, cQ as Oe, cR as xe, cS as Ue, cT as We, cU as _e, cV as He, cW as Ge, cX as Ze, cY as ze, c_ as qe, aS as Qe, c$ as Ye, d0 as je, d1 as Xe, d2 as Je, d3 as Ke, dH as $e, d6 as as, d4 as es, d7 as ss, d8 as ts, da as os, db as is, dc as ns, dd as rs, de as gs, df as ls, dg as Ps, dh as ds, dj as cs, dk as us, dl as Cs, dm as ms, dD as Ss, dE as fs, dF as ps, dG as As, dT as Ds, dV as bs, dY as hs, d_ as Ts, eE as vs, eF as Ls, eG as ys, eI as Is, eM as ws, eO as ks, eP as Rs, eQ as Vs, eR as Bs, eS as Es, eT as Ms, eU as Ns, eV as Fs, eW as Os, eX as xs, eY as Us, eZ as Ws, e_ as _s, e$ as Hs, f0 as Gs, f1 as Zs, f2 as zs, f3 as qs, f4 as Qs, f5 as Ys, f8 as js, f9 as Xs, fa as Js, fb as Ks, fc as $s, fd as at, fe as et, ff as st, fg as tt, fh as ot, fi as it, fj as nt, fk as rt, fl as gt, fm as lt, fn as Pt, fo as dt, fp as ct, fq as ut, fr as Ct, fs as mt, ft as St, fu as ft, fv as pt, fy as At, fz as Dt, fA as bt, fB as ht, fC as Tt, fD as vt, fF as Lt, fH as yt, fI as It, fJ as wt, fL as kt, fM as Rt, fN as Vt, fR as Bt, fS as Et, fU as Mt, fV as Nt, fW as Ft, f_ as Ot, g1 as xt, g5 as Ut, g9 as Wt, ga as _t, gb as Ht, gi as Gt, gj as Zt, gk as zt, gl as qt, gn as Qt, go as Yt, gp as jt, gq as Xt, gr as Jt, gs as Kt, gt as $t, gu as ao, gw as eo, gx as so, gy as to, gz as oo, gA as io, gB as no, gD as ro, gE as go, gF as lo, gG as Po, gH as co, gI as uo, gK as Co, gL as mo, gM as So, gO as fo, gR as po, gT as Ao, gU as Do, gV as bo, gW as ho, gX as To, gY as vo, gZ as Lo, g_ as yo, g$ as Io, h0 as wo, h1 as ko, h2 as Ro, h3 as Vo, h4 as Bo, h5 as Eo } from "./SessionTimeoutPopup-BnwXqvlZ.js";
2
+ import { aK as No, az as Fo } from "./vendor-.pnpm-XFVTbpbG.js";
3
3
  import { default as xo } from "@emotion/styled";
4
4
  export {
5
5
  s as AIIconButton,
@@ -26,9 +26,9 @@ export {
26
26
  T as AppBasePage,
27
27
  v as AppDrawerContent,
28
28
  L as AppDrawerHeightMobile,
29
- w as ApprovalRulesSettingsPage,
30
- y as ArAgingDetailPage,
31
- I as AskAiCfoNavButton,
29
+ y as ApprovalRulesSettingsPage,
30
+ I as ArAgingDetailPage,
31
+ w as AskAiCfoNavButton,
32
32
  k as AskAiCfoNavButtonWhenEnabled,
33
33
  R as AttachmentView,
34
34
  V as AutoTransferRulePage,
@@ -80,9 +80,9 @@ export {
80
80
  Ta as CreditCardPaymentDrawerPage,
81
81
  va as CustomerOnboardingActivationPage,
82
82
  La as CustomerOnboardingContainerPage,
83
- wa as CustomerOnboardingNoStepsPage,
84
- ya as CustomerOnboardingPage,
85
- Ia as CustomerOnboardingProductSuitePage,
83
+ ya as CustomerOnboardingNoStepsPage,
84
+ Ia as CustomerOnboardingPage,
85
+ wa as CustomerOnboardingProductSuitePage,
86
86
  ka as Dashboard,
87
87
  Ra as DashboardReportPage,
88
88
  Va as DashboardSidebarLogoAnimation,
@@ -134,9 +134,9 @@ export {
134
134
  Te as MonthEndEmailDrawerCustomerRequestPage,
135
135
  ve as MyBankConnectionsSettingsPage,
136
136
  Le as MyPendingActivationChargeCardListPage,
137
- we as MyProfileSettingsPage,
138
- ye as NavBar,
139
- Ie as NavBarRightRowStyled,
137
+ ye as MyProfileSettingsPage,
138
+ Ie as NavBar,
139
+ we as NavBarRightRowStyled,
140
140
  ke as NewGlobalMerchantPage,
141
141
  Re as NewUpdateAvailablePage,
142
142
  Ve as NotFoundPage,
@@ -188,9 +188,9 @@ export {
188
188
  Ts as SubscriptionSummaryPage,
189
189
  vs as TaskDetailPage,
190
190
  Ls as TaskManagementPage,
191
- ws as TenantsDropDown,
192
- ys as TextStyle,
193
- Is as ToolkitProvider,
191
+ ys as TenantsDropDown,
192
+ Is as TextStyle,
193
+ ws as ToolkitProvider,
194
194
  ks as TopExDetailPage,
195
195
  Rs as TransactionActivityLogPage,
196
196
  Vs as TransactionActivityLogPanel,
@@ -242,9 +242,9 @@ export {
242
242
  Tt as amountValueToString,
243
243
  vt as appLocale,
244
244
  Lt as buildStickyKeySet,
245
- wt as cellVerticalAlignToFlexAlign,
246
- yt as clearAutoLogoutContext,
247
- It as computeStickyLeftOffsets,
245
+ yt as cellVerticalAlignToFlexAlign,
246
+ It as clearAutoLogoutContext,
247
+ wt as computeStickyLeftOffsets,
248
248
  kt as darkColors,
249
249
  Rt as darkTheme,
250
250
  Vt as dashboardCardDimension,
@@ -295,9 +295,9 @@ export {
295
295
  To as useRegisterBackHandler,
296
296
  vo as useRequestCloseAllCommentDrawers,
297
297
  Lo as useSchedulePanelInternal,
298
- wo as useSessionAutoLogoutConfig,
299
- yo as useSidePanelContext,
300
- Io as useToolkitContext,
298
+ yo as useSessionAutoLogoutConfig,
299
+ Io as useSidePanelContext,
300
+ wo as useToolkitContext,
301
301
  ko as useTransactionPanelInternal,
302
302
  Ro as useWindowSizeContext,
303
303
  Vo as useZeniFeatureContext,
@@ -2614,6 +2614,31 @@ export declare const zeniStrings: {
2614
2614
  allTypes: string;
2615
2615
  allCustom: string;
2616
2616
  recommendedCustom: string;
2617
+ journalEntryTable: {
2618
+ descriptionHeader: string;
2619
+ nameHeader: string;
2620
+ categoryHeader: string;
2621
+ classHeader: string;
2622
+ projectHeader: string;
2623
+ debitHeader: string;
2624
+ creditHeader: string;
2625
+ amountHeader: string;
2626
+ descriptionPlaceholder: string;
2627
+ debitPrefix: string;
2628
+ creditPrefix: string;
2629
+ emptyDash: string;
2630
+ emptyMessage: string;
2631
+ totalLabel: string;
2632
+ };
2633
+ transactionLineTable: {
2634
+ descriptionHeader: string;
2635
+ categoryHeader: string;
2636
+ classHeader: string;
2637
+ projectHeader: string;
2638
+ amountHeader: string;
2639
+ descriptionPlaceholder: string;
2640
+ emptyMessage: string;
2641
+ };
2617
2642
  };
2618
2643
  payeeDetails: {
2619
2644
  allPayees: string;
File without changes