@zeniai/web-components 4.3.62-beta0ND → 4.3.63

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 (30) hide show
  1. package/dist/{SessionTimeoutPopup-G4OLmSKh.js → SessionTimeoutPopup-B_hpupOy.js} +72260 -72103
  2. package/dist/{SessionTimeoutPopup-CG3zQGql.cjs → SessionTimeoutPopup-DpCkDRiF.cjs} +14785 -14726
  3. package/dist/appLocale.d.ts +0 -1
  4. package/dist/cockpit.cjs.js +2 -2
  5. package/dist/cockpit.esm.js +194 -195
  6. package/dist/components/{transactionDetail/TransactionSidePanelLayout.d.ts → common/sidePanel/SidePanelLayout.d.ts} +17 -2
  7. package/dist/components/expenseAutomation/ExpenseAutomationPage.d.ts +15 -0
  8. package/dist/components/expenseAutomation/sections/jeSchedules/JESchedulePage.d.ts +15 -2
  9. package/dist/components/expenseAutomation/sections/jeSchedules/accrualDetail/JEAccrualJournalEntryCard.d.ts +6 -7
  10. package/dist/components/expenseAutomation/sections/jeSchedules/accrualDetail/JEOneTimeAccrualDetailPage.d.ts +8 -4
  11. package/dist/components/expenseAutomation/sections/jeSchedules/list/jeScheduleConfig.d.ts +12 -1
  12. package/dist/components/expenseAutomation/sections/jeSchedules/list/jeScheduleListRow.helpers.d.ts +9 -1
  13. package/dist/components/expenseAutomation/sections/jeSchedules/list/useJEScheduleRowClick.d.ts +13 -0
  14. package/dist/components/expenseAutomation/sections/jeSchedules/sections/JEExistingSection.d.ts +11 -1
  15. package/dist/components/expenseAutomation/sections/jeSchedules/sections/JESchedulesSection.d.ts +11 -1
  16. package/dist/components/expenseAutomation/sections/missingReceipts/completedTab/CompletedTab.d.ts +1 -1
  17. package/dist/components/expenseAutomation/sections/missingReceipts/missingReceiptsSidePanelListMargin.d.ts +1 -1
  18. package/dist/components/expenseAutomation/sections/missingReceipts/missingTab/MissingReceiptsListTable.d.ts +1 -1
  19. package/dist/components/jeSchedules/scheduleDetails/ScheduleDetailsAccruedExpensesPage.d.ts +4 -1
  20. package/dist/components/jeSchedules/scheduleDetails/ScheduleDetailsFixedAssetsPage.d.ts +4 -1
  21. package/dist/components/jeSchedules/scheduleDetails/ScheduleDetailsPage.d.ts +4 -1
  22. package/dist/components/settingsPage/Notifications/NotificationSettingsPage.d.ts +2 -9
  23. package/dist/components/settingsPage/Notifications/{notificationControls/NotificationControlsSection.d.ts → taskNotifications/TaskNotificationsSection.d.ts} +2 -4
  24. package/dist/context/SidePanelContext.d.ts +25 -11
  25. package/dist/index.cjs.js +1 -1
  26. package/dist/index.d.ts +3 -3
  27. package/dist/index.esm.js +256 -257
  28. package/dist/strings/strings.d.ts +0 -1
  29. package/package.json +3 -3
  30. /package/dist/components/{transactionDetail → common/sidePanel}/panelSelectedMixin.d.ts +0 -0
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- interface TransactionSidePanelLayoutProps {
2
+ interface SidePanelLayoutProps {
3
3
  isFullView: boolean;
4
4
  isOpen: boolean;
5
5
  listContent: React.ReactNode;
@@ -21,6 +21,21 @@ interface TransactionSidePanelLayoutProps {
21
21
  listContentPercent?: number;
22
22
  panelActionBarContent?: React.ReactNode;
23
23
  panelContent?: React.ReactNode;
24
+ /**
25
+ * Overrides on the panel's own box. For callers whose layout differs from the default -- a list
26
+ * with no top margin wanting the panel flush with it, say -- rather than deriving the panel's
27
+ * insets from a list-column flag, which cannot be right for every caller at once.
28
+ */
29
+ panelStyle?: React.CSSProperties;
30
+ /**
31
+ * Set while a navigation away from a panel with unsaved edits is waiting on the
32
+ * user. The host owns the pending navigation; this layout only renders the prompt,
33
+ * so it sits above the panel's own stacking context.
34
+ */
35
+ pendingDiscardConfirmation?: {
36
+ onCancel: () => void;
37
+ onDiscard: () => void;
38
+ };
24
39
  }
25
- declare const _default: React.NamedExoticComponent<TransactionSidePanelLayoutProps>;
40
+ declare const _default: React.NamedExoticComponent<SidePanelLayoutProps>;
26
41
  export default _default;
@@ -71,6 +71,16 @@ export interface ExpenseAutomationPageProps extends MonthEndReportPageProps {
71
71
  isExpenseAutomationCommentingEnabled?: boolean;
72
72
  /** Transaction categorization only: when true, the right rail is expanded. */
73
73
  isRightPanelOpen?: boolean;
74
+ /**
75
+ * The JE Schedules side panel, deliberately named apart from `panelContent` /
76
+ * `sidePanelIsOpen`, which drive the page-level split for transactions and reconciliation.
77
+ * The schedules panel lives inside the list section instead, so the KPI strip and type filter
78
+ * stay full-width above it -- and these props are spread on to TableSection, where a shared
79
+ * name would hand the transaction panel to the schedules list.
80
+ *
81
+ * There is no full-view flag: expanding leaves for the schedule's own page.
82
+ */
83
+ isSchedulePanelOpen?: boolean;
74
84
  loggedInUser?: LoggedInUser;
75
85
  newAccrualAccountsView?: NewAccrualAccountsView;
76
86
  /** The draft this form was last left with, for a host that stores it. */
@@ -87,6 +97,11 @@ export interface ExpenseAutomationPageProps extends MonthEndReportPageProps {
87
97
  * Transaction categorization only: inline right rail (activity or transfer panel body).
88
98
  */
89
99
  rightSidePanel?: ReactNode;
100
+ schedulePanelContent?: ReactNode;
101
+ schedulePendingDiscardConfirmation?: {
102
+ onCancel: () => void;
103
+ onDiscard: () => void;
104
+ };
90
105
  sidePanelIsFullView?: boolean;
91
106
  sidePanelIsOpen?: boolean;
92
107
  sidePanelListPercent?: number;
@@ -3,7 +3,7 @@ import { FooterFormIdType } from '../../common';
3
3
  import { FormData as JEScheduleAccountSettingsFormData } from './common/JEScheduleAccountSettings';
4
4
  import { JESchedulesSectionProps } from './sections/JESchedulesSection';
5
5
  import { NewScheduleSaveFormValues } from './sections/NewJEScheduleSection';
6
- export interface JESchedulePageProps extends Omit<JESchedulesSectionProps, "jeSchedules" | "isAccountingClassesEnabled"> {
6
+ export interface JESchedulePageProps extends Omit<JESchedulesSectionProps, "jeSchedules" | "isAccountingClassesEnabled" | "isPanelOpen" | "panelContent" | "pendingDiscardConfirmation"> {
7
7
  accountListNestedAccountHierarchy: NestedAccountHierarchyForReport[];
8
8
  baseTransactionSearchFetchState: FetchStateAndError;
9
9
  baseTransactionSearchResults: ScheduleTransaction[];
@@ -21,8 +21,21 @@ export interface JESchedulePageProps extends Omit<JESchedulesSectionProps, "jeSc
21
21
  /** The draft this form was last left with, for a host that stores it. */
22
22
  /** Cron-2's live gate for this company. Off hides one-time accrual creation. */
23
23
  isAccrualEnabled?: boolean;
24
+ /**
25
+ * Schedule side panel, named apart from the page-level `panelContent` that drives the
26
+ * transaction and reconciliation panels: ExpenseAutomationPage spreads its own props into
27
+ * TableSection, so a shared name would hand the transaction panel to the schedules list.
28
+ *
29
+ * There is no full-view flag: expanding leaves for the schedule's own page.
30
+ */
31
+ isSchedulePanelOpen?: boolean;
24
32
  newAccrualAccountsView?: NewAccrualAccountsView;
25
33
  newScheduleLocalData?: NewScheduleSaveFormValues;
34
+ schedulePanelContent?: React.ReactNode;
35
+ schedulePendingDiscardConfirmation?: {
36
+ onCancel: () => void;
37
+ onDiscard: () => void;
38
+ };
26
39
  onCreateAccruedSchedule: (localData: Partial<ScheduleDetailsLocalDataAccruedExpenses>) => void;
27
40
  onCreateOneTimeAccrual: (formValues: NewOneTimeAccrualLocalData) => void;
28
41
  onJeAccountSettingsChange: (formData: JEScheduleAccountSettingsFormData) => void;
@@ -36,5 +49,5 @@ export interface JESchedulePageProps extends Omit<JESchedulesSectionProps, "jeSc
36
49
  setResetJeAccountSettingsForm: (resetFn: () => void) => void;
37
50
  onNewScheduleFormChange?: (scheduleType: string, formValues: NewScheduleSaveFormValues) => void;
38
51
  }
39
- declare function JESchedulePage({ accountListNestedAccountHierarchy, baseTransactionSearchFetchState, baseTransactionSearchResults, classListNestedAccountHierarchy, expenseAutomationViewSelector, currentFooterFormId, isAccountingClassesEnabled, isCreatingNewSchedule, newScheduleSaveStatus, allDepreciationAccountListNestedAccountHierarchy, initialScheduleDetailsMode, initialScheduleType, newAccrualAccountsView, onCreateAccruedSchedule, onCreateOneTimeAccrual, setResetJeAccountSettingsForm, vendorSearchAutoCompleteData, onJESchedulesFormDataChange, onPostJESchedule, handleJeScheduleClick, onOneTimeAccrualClick, onOneTimeAccrualFeedback, onJeAccountSettingsChange, onSaveJeAccountSettingsClick, onSaveSchedule, onScheduleTypeChange, onSearchBaseTransaction, onViewTransaction, newScheduleLocalData, initialSelectedBaseTransaction, isAccrualEnabled, onNewScheduleFormChange, ignoreRecommendedJeSchedule, vendorSearchAutoCompleteActions, setCurrentFooterFormId, setIsCreatingNewSchedule, setIsJeAccountSettingsOpened, onRevertJeSchedule, onToggleCreatedGroupCollapsed, onTogglePendingGroupCollapsed, onUpdateJEScheduleTypeFilter, onUpdateJESchedulesUIState, }: Readonly<JESchedulePageProps>): import("react/jsx-runtime").JSX.Element;
52
+ declare function JESchedulePage({ accountListNestedAccountHierarchy, baseTransactionSearchFetchState, baseTransactionSearchResults, classListNestedAccountHierarchy, expenseAutomationViewSelector, currentFooterFormId, isAccountingClassesEnabled, isCreatingNewSchedule, newScheduleSaveStatus, allDepreciationAccountListNestedAccountHierarchy, initialScheduleDetailsMode, initialScheduleType, newAccrualAccountsView, onCreateAccruedSchedule, onCreateOneTimeAccrual, setResetJeAccountSettingsForm, vendorSearchAutoCompleteData, onJESchedulesFormDataChange, onPostJESchedule, handleJeScheduleClick, onOneTimeAccrualClick, onOneTimeAccrualFeedback, onJeAccountSettingsChange, onSaveJeAccountSettingsClick, onSaveSchedule, onScheduleTypeChange, onSearchBaseTransaction, onViewTransaction, newScheduleLocalData, initialSelectedBaseTransaction, isAccrualEnabled, onNewScheduleFormChange, ignoreRecommendedJeSchedule, vendorSearchAutoCompleteActions, isSchedulePanelOpen, schedulePanelContent, schedulePendingDiscardConfirmation, setCurrentFooterFormId, setIsCreatingNewSchedule, setIsJeAccountSettingsOpened, onRevertJeSchedule, onToggleCreatedGroupCollapsed, onTogglePendingGroupCollapsed, onUpdateJEScheduleTypeFilter, onUpdateJESchedulesUIState, }: Readonly<JESchedulePageProps>): import("react/jsx-runtime").JSX.Element;
40
53
  export default JESchedulePage;
@@ -6,17 +6,16 @@ export interface JEAccrualJournalEntryCardProps {
6
6
  creditAccountName: string;
7
7
  debitAccountName: string;
8
8
  postingDate: string;
9
- /** The reversal sentence, resolved by the caller since it depends on the reversal policy. */
10
- reversalDescription: string;
11
9
  debitClassName?: string;
12
10
  }
13
11
  /**
14
12
  * The two lines a one-time accrual posts, and the three facts about how it posts.
15
13
  *
16
- * Prop-driven and pre-formatted: the caller owns currency formatting, the date format and the
17
- * reversal wording, so this stays a layout component with no accrual knowledge. The New Schedule
18
- * form has its own, more compact preview (`common/JEJournalEntryPreview`) — this one is the detail
19
- * page's, where the card is the whole record of the entry rather than a footnote under a form.
14
+ * Prop-driven and pre-formatted: the caller owns currency formatting and the date format, so this
15
+ * stays a layout component with no accrual knowledge. The New Schedule form has its own, more
16
+ * compact preview (`common/JEJournalEntryPreview`) — this one is the detail page's, where the card
17
+ * is the whole record of the entry rather than a footnote under a form. That one still carries the
18
+ * "Auto-reverses on …" sentence below it; here the Auto Reversal row already states it.
20
19
  */
21
- declare const JEAccrualJournalEntryCard: ({ amount, autoReversalDetail, creditAccountName, debitAccountName, postingDate, reversalDescription, debitClassName, }: Readonly<JEAccrualJournalEntryCardProps>) => import("react/jsx-runtime").JSX.Element;
20
+ declare const JEAccrualJournalEntryCard: ({ amount, autoReversalDetail, creditAccountName, debitAccountName, postingDate, debitClassName, }: Readonly<JEAccrualJournalEntryCardProps>) => import("react/jsx-runtime").JSX.Element;
22
21
  export default JEAccrualJournalEntryCard;
@@ -8,7 +8,11 @@ export interface JEOneTimeAccrualDetailPageProps {
8
8
  /** Status of the promote / ignore request for this accrual. */
9
9
  actionFetchState: FetchState;
10
10
  isAccountingClassesEnabled: boolean;
11
- /** Unposted edits from this visit. Seeds the form so a remount does not lose them. */
11
+ /** Rendered inside a side panel rather than as its own route: the host page keeps its own
12
+ * nav bar and the panel bounds the height, so this page must supply neither. */
13
+ isRenderedInPanel?: boolean;
14
+ /** Unposted edits from this visit. Seeds the form so a remount does not lose them, which is
15
+ * why this page registers no panel dirty guard: switching rows cannot drop an edit. */
12
16
  localData?: OneTimeAccrualEdits;
13
17
  /** Account and class lists for the editable draft fields. Absent leaves them read-only. */
14
18
  newAccrualAccountsView?: NewAccrualAccountsView;
@@ -25,8 +29,8 @@ export interface JEOneTimeAccrualDetailPageProps {
25
29
  * A single one-time accrual, with the two decisions a human makes about it: post it, or skip the
26
30
  * month with a reason.
27
31
  *
28
- * There is no GET-by-id on the accruals gateway, so the accrual arrives as a prop read from the
29
- * list already in the store this page never fetches.
32
+ * The accrual arrives as a prop. The host resolves it from the store the list fills, falling back
33
+ * to a by-id fetch on a cold load, so this page itself never fetches.
30
34
  */
31
- declare const JEOneTimeAccrualDetailPage: ({ accrual, actionFetchState, isAccountingClassesEnabled, localData, newAccrualAccountsView, onAccrualFormChange, onAccrualFormClear, onApproveAndPost, onNavigateBack, onRevert, onSkip, }: Readonly<JEOneTimeAccrualDetailPageProps>) => import("react/jsx-runtime").JSX.Element;
35
+ declare const JEOneTimeAccrualDetailPage: ({ accrual, actionFetchState, isAccountingClassesEnabled, isRenderedInPanel, localData, newAccrualAccountsView, onAccrualFormChange, onAccrualFormClear, onApproveAndPost, onNavigateBack, onRevert, onSkip, }: Readonly<JEOneTimeAccrualDetailPageProps>) => import("react/jsx-runtime").JSX.Element;
32
36
  export default JEOneTimeAccrualDetailPage;
@@ -30,6 +30,17 @@ export declare const COT_ICON_SIZE_PX = 16;
30
30
  export declare const ACTION_ERROR_ICON_SIZE_PX = 12;
31
31
  export declare const COT_ICON_GAP_PX: number;
32
32
  export declare const jeScheduleHeaderItemsData: JEScheduleHeaderItemData[];
33
+ /**
34
+ * The list compressed to ~34% of the content area beside an open side panel.
35
+ *
36
+ * Vendor identifies the row and Amount is the one figure worth scanning at that width; the panel
37
+ * carries everything else. One set serves both tabs -- the Existing tab drops its Monthly Amount
38
+ * here so the compressed header is identical on both and no row renderer needs a per-tab branch.
39
+ *
40
+ * Neither column is `stickyRight`: the Action column is gone, so nothing needs pinning, and the two
41
+ * tracks fit inside the compressed width without horizontal overflow.
42
+ */
43
+ export declare const compressedJEScheduleHeaderItemsData: JEScheduleHeaderItemData[];
33
44
  export declare const existingHeaderItemsData: JEScheduleHeaderItemData[];
34
45
  /**
35
46
  * Which column fixes each posting error, or undefined when nothing on the row can.
@@ -41,6 +52,6 @@ export declare const existingHeaderItemsData: JEScheduleHeaderItemData[];
41
52
  export declare const FIX_COLUMN_BY_ERROR_CODE: Record<JournalEntryErrorCodeType, JEScheduleColumnKey | undefined>;
42
53
  /** The errors a row cannot show inline, because their column is not in this tab's column set. */
43
54
  export declare function errorsNotShownInColumns(errorCodes: JournalEntryErrorCodeType[]): JournalEntryErrorCodeType[];
44
- export declare function getColumnsForGroupKey(groupKey: JEScheduleGroupKey, isAccountingClassesEnabled: boolean): JEScheduleHeaderItemData[];
55
+ export declare function getColumnsForGroupKey(groupKey: JEScheduleGroupKey, isAccountingClassesEnabled: boolean, isQuickViewMode?: boolean): JEScheduleHeaderItemData[];
45
56
  export declare const PENDING_SUB_TABS: TabSwitcherOption[];
46
57
  export declare const ONGOING_COMPLETED_SUB_TABS: TabSwitcherOption[];
@@ -1,4 +1,4 @@
1
- import { JEOneTimeAccrualKey, JEScheduleKey, JEScheduleRow, JEScheduleTransactionKey } from '@zeniai/client-epic-state';
1
+ import { ID, JEOneTimeAccrualKey, JEScheduleKey, JEScheduleRow, JEScheduleTransactionKey } from '@zeniai/client-epic-state';
2
2
  import { ChainOfThoughtData } from '../../../../common/tooltipVariants/types';
3
3
  /**
4
4
  * The chain-of-thought popover shown on the "Created by" cell of an AI Accountant row.
@@ -20,6 +20,14 @@ export type JEScheduleRowKey = JEOneTimeAccrualKey | JEScheduleTransactionKey |
20
20
  * Stable per-row identity for React keys, data-testids and row commenting.
21
21
  */
22
22
  export declare function getJEScheduleRowKey(row: JEScheduleRow): JEScheduleRowKey;
23
+ /**
24
+ * The plain id the side-panel URL carries for this row — deliberately NOT its row key.
25
+ *
26
+ * The three row-key flavours are template-literal types, so they are assignable to `ID` and the
27
+ * compiler would not catch one being used as a panel id. The panel keys on what the route holds:
28
+ * an accrual's own Mongo id, or the schedule id every other row type shares.
29
+ */
30
+ export declare function getJEScheduleRowPanelId(row: JEScheduleRow): ID | undefined;
23
31
  /**
24
32
  * Whether a row click started inside interactive cell content and so should not navigate.
25
33
  *
@@ -0,0 +1,13 @@
1
+ import { MouseEvent } from 'react';
2
+ import { ID, ScheduleTypes } from '@zeniai/client-epic-state';
3
+ import { JEScheduleRowKey } from './jeScheduleListRow.helpers';
4
+ export type JEScheduleRowClickHandler = (event: MouseEvent<HTMLDivElement>, jeScheduleId: ID, jeScheduleKey: JEScheduleRowKey, jeScheduleType: ScheduleTypes) => void;
5
+ /**
6
+ * Opens a schedule row unless the click started inside cell content that owns it.
7
+ *
8
+ * Both tabs previously inlined their own copy of the guard and they had drifted: the Existing tab
9
+ * only checked two of the six interactive class names, so a click on an open select menu there
10
+ * navigated away instead of picking the option. Both now defer to
11
+ * {@link isInteractiveCellClick}, which is the single list of those class names.
12
+ */
13
+ export declare function useJEScheduleRowClick(onOpenSchedule: (jeScheduleId: ID, jeScheduleKey: JEScheduleRowKey, jeScheduleType: ScheduleTypes) => void): JEScheduleRowClickHandler;
@@ -9,6 +9,16 @@ export interface JEExistingSectionProps {
9
9
  jeSchedules: ExpenseAutomationJESchedulesViewSelector;
10
10
  vendorSearchAutoCompleteActions: AutoCompleteActions;
11
11
  vendorSearchAutoCompleteData: AutoCompleteData;
12
+ /**
13
+ * Rendered beside the list, inside this section, so the KPI strip stays full-width above it.
14
+ * There is no full-view flag: expanding leaves the panel for the schedule's own page.
15
+ */
16
+ isPanelOpen?: boolean;
17
+ panelContent?: React.ReactNode;
18
+ pendingDiscardConfirmation?: {
19
+ onCancel: () => void;
20
+ onDiscard: () => void;
21
+ };
12
22
  handleJeScheduleClick: (jeScheduleId: ID, jeScheduleKey: JEScheduleRowKey, jeScheduleType: ScheduleTypes) => void;
13
23
  ignoreRecommendedJeSchedule: (jeScheduleTransactionKey: JEScheduleTransactionKey, scheduleType: ScheduleTypes, reason: JEAccrualFeedbackReason, note?: string) => void;
14
24
  onJESchedulesFormDataChange: (scheduleJournalEntryId: ID, localData: JEScheduleResolveComponentFormData) => void;
@@ -18,5 +28,5 @@ export interface JEExistingSectionProps {
18
28
  onUpdateJEScheduleTypeFilter: (filter: ScheduleTypes | null) => void;
19
29
  setCurrentFooterFormId: (formId: FooterFormIdType) => void;
20
30
  }
21
- declare function JEExistingSection({ isAccountingClassesEnabled, jeSchedules, vendorSearchAutoCompleteActions, vendorSearchAutoCompleteData, handleJeScheduleClick, onOneTimeAccrualClick, onOneTimeAccrualFeedback, ignoreRecommendedJeSchedule, onJESchedulesFormDataChange, onPostJESchedule, onUpdateJEScheduleTypeFilter, }: Readonly<JEExistingSectionProps>): import("react/jsx-runtime").JSX.Element;
31
+ declare function JEExistingSection({ isAccountingClassesEnabled, jeSchedules, isPanelOpen, panelContent, pendingDiscardConfirmation, vendorSearchAutoCompleteActions, vendorSearchAutoCompleteData, handleJeScheduleClick, onOneTimeAccrualClick, onOneTimeAccrualFeedback, ignoreRecommendedJeSchedule, onJESchedulesFormDataChange, onPostJESchedule, onUpdateJEScheduleTypeFilter, }: Readonly<JEExistingSectionProps>): import("react/jsx-runtime").JSX.Element;
22
32
  export default JEExistingSection;
@@ -9,6 +9,16 @@ export interface JESchedulesSectionProps {
9
9
  jeSchedules: ExpenseAutomationJESchedulesViewSelector;
10
10
  vendorSearchAutoCompleteActions: AutoCompleteActions;
11
11
  vendorSearchAutoCompleteData: AutoCompleteData;
12
+ /**
13
+ * Rendered beside the list, inside this section, so the KPI strip stays full-width above it.
14
+ * There is no full-view flag: expanding leaves the panel for the schedule's own page.
15
+ */
16
+ isPanelOpen?: boolean;
17
+ panelContent?: React.ReactNode;
18
+ pendingDiscardConfirmation?: {
19
+ onCancel: () => void;
20
+ onDiscard: () => void;
21
+ };
12
22
  handleJeScheduleClick: (jeScheduleId: ID, jeScheduleKey: JEScheduleRowKey, jeScheduleType: ScheduleTypes) => void;
13
23
  ignoreRecommendedJeSchedule: (jeScheduleTransactionKey: JEScheduleTransactionKey, scheduleType: ScheduleTypes, reason: JEAccrualFeedbackReason, note?: string) => void;
14
24
  onJESchedulesFormDataChange: (scheduleJournalEntryId: ID, localData: JEScheduleResolveComponentFormData) => void;
@@ -23,5 +33,5 @@ export interface JESchedulesSectionProps {
23
33
  onConfirmCategoryRecommendation?: (jeScheduleTransactionKey: JEScheduleTransactionKey, recommendedCategoryId: ID) => void;
24
34
  onRevertJeSchedule?: (jeScheduleId: ID, jeScheduleTransactionKey: JEScheduleKey | JEScheduleTransactionKey, jeScheduleType: ScheduleTypes, reason: JEAccrualFeedbackReason, note?: string) => void;
25
35
  }
26
- declare function JESchedulesSection({ isAccountingClassesEnabled, jeSchedules, vendorSearchAutoCompleteData, handleJeScheduleClick, onOneTimeAccrualClick, onOneTimeAccrualFeedback, onConfirmCategoryRecommendation, onJESchedulesFormDataChange, onPostJESchedule, onRevertJeSchedule, ignoreRecommendedJeSchedule, onUpdateJESchedulesUIState, onTogglePendingGroupCollapsed, onToggleCreatedGroupCollapsed, onUpdateJEScheduleTypeFilter, vendorSearchAutoCompleteActions, setCurrentFooterFormId, }: Readonly<JESchedulesSectionProps>): import("react/jsx-runtime").JSX.Element;
36
+ declare function JESchedulesSection({ isAccountingClassesEnabled, jeSchedules, isPanelOpen, panelContent, pendingDiscardConfirmation, vendorSearchAutoCompleteData, handleJeScheduleClick, onOneTimeAccrualClick, onOneTimeAccrualFeedback, onConfirmCategoryRecommendation, onJESchedulesFormDataChange, onPostJESchedule, onRevertJeSchedule, ignoreRecommendedJeSchedule, onUpdateJESchedulesUIState, onTogglePendingGroupCollapsed, onToggleCreatedGroupCollapsed, onUpdateJEScheduleTypeFilter, vendorSearchAutoCompleteActions, setCurrentFooterFormId, }: Readonly<JESchedulesSectionProps>): import("react/jsx-runtime").JSX.Element;
27
37
  export default JESchedulesSection;
@@ -1,5 +1,5 @@
1
1
  import { AuthParams, BulkUploadSortKey, FetchStateAndError, ID, SortOrder, SupportedTransaction, TransactionType } from '@zeniai/client-epic-state';
2
- /** Completed bulk-upload list: parent `ExpenseAutomationPage` sets `disableMarginTop` on `TransactionSidePanelLayout` via `shouldDisableTransactionSidePanelListMarginTop`. */
2
+ /** Completed bulk-upload list: parent `ExpenseAutomationPage` sets `disableMarginTop` on `SidePanelLayout` via `shouldDisableTransactionSidePanelListMarginTop`. */
3
3
  interface CompletedTabProps {
4
4
  authParams: AuthParams;
5
5
  fetchState: FetchStateAndError;
@@ -1,7 +1,7 @@
1
1
  import { ExpenseAutomationViewType } from '@zeniai/client-epic-state';
2
2
  /**
3
3
  * When bulk receipt upload is active on the missing-receipts view, ExpenseAutomationPage
4
- * passes `disableMarginTop` to TransactionSidePanelLayout so list content aligns without extra
4
+ * passes `disableMarginTop` to SidePanelLayout so list content aligns without extra
5
5
  * top margin. Covers Missing Receipts, Unmatched, and Completed bulk-upload table flows.
6
6
  */
7
7
  export declare function shouldDisableTransactionSidePanelListMarginTop(currentSelectedView: ExpenseAutomationViewType, isBulkReceiptUploadActive: boolean): boolean;
@@ -2,7 +2,7 @@ import { ListChildComponentProps } from 'react-window';
2
2
  import { AuthParams, ExpenseAutomationMissingReceiptsViewSelector, ExpenseAutomationMissingReceiptsViewUIState, MonthYearPeriod } from '@zeniai/client-epic-state';
3
3
  import { DisableMode } from '../../../../formElements/common/common';
4
4
  import { MissingReceiptsListRowActionProps } from './listRow/MissingReceiptsListRow';
5
- /** Missing-receipts table: parent `ExpenseAutomationPage` sets `disableMarginTop` on `TransactionSidePanelLayout` via `shouldDisableTransactionSidePanelListMarginTop` when bulk upload is active. */
5
+ /** Missing-receipts table: parent `ExpenseAutomationPage` sets `disableMarginTop` on `SidePanelLayout` via `shouldDisableTransactionSidePanelListMarginTop` when bulk upload is active. */
6
6
  /**
7
7
  * Component & its Props
8
8
  */
@@ -15,6 +15,9 @@ export interface Props {
15
15
  shouldNavigateBack: boolean;
16
16
  vendorSearchAutoCompleteActions: AutoCompleteActions;
17
17
  vendorSearchAutoCompleteData: AutoCompleteData;
18
+ /** Rendered inside a side panel rather than as its own route: the host page keeps
19
+ * its own nav bar and the panel bounds the height, so this page must supply neither. */
20
+ isRenderedInPanel?: boolean;
18
21
  scheduleDetailId?: ID;
19
22
  onCancelAccrual: (scheduleType: ScheduleTypes, jeScheduleID: ID, row?: number) => void;
20
23
  onDelete: (jeScheduleDetailId: ID) => void;
@@ -33,6 +36,6 @@ export interface FormData {
33
36
  [scheduleDetailsAccruedExpensesSectionId]: ScheduleDetailsAccruedExpensesSectionFormData;
34
37
  [scheduleDetailsListSectionId]: ScheduleDetailsListSectionFormData[];
35
38
  }
36
- export declare function ScheduleDetailsAccruedExpensesPage({ accountList, accruedAccountList, analytics, classList, controllerUserDetails, isAccountingClassesEnabled, scheduleAccruedDetailsView, vendorSearchAutoCompleteActions, vendorSearchAutoCompleteData, shouldNavigateBack, scheduleDetailId, onDelete, onEditAmount, onJELinkClick, onCancelAccrual, onDetailPageChange, onNavigateBack, onSave, onViewBillExpense, onViewPostedJE, onViewRecordedJE, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
39
+ export declare function ScheduleDetailsAccruedExpensesPage({ accountList, accruedAccountList, analytics, classList, controllerUserDetails, isAccountingClassesEnabled, scheduleAccruedDetailsView, vendorSearchAutoCompleteActions, vendorSearchAutoCompleteData, shouldNavigateBack, scheduleDetailId, isRenderedInPanel, onDelete, onEditAmount, onJELinkClick, onCancelAccrual, onDetailPageChange, onNavigateBack, onSave, onViewBillExpense, onViewPostedJE, onViewRecordedJE, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
37
40
  export declare const getDefaultVendorOptions: (vendorSearchEntityAutoCompleteView?: EntityAutoCompleteView, selectedVendor?: VendorBase) => AutoCompleteOptionType[];
38
41
  export {};
@@ -11,6 +11,9 @@ export interface Props {
11
11
  usedInExpenseAutomation: boolean;
12
12
  vendorSearchAutoCompleteActions: AutoCompleteActions;
13
13
  vendorSearchAutoCompleteData: AutoCompleteData;
14
+ /** Rendered inside a side panel rather than as its own route: the host page keeps
15
+ * its own nav bar and the panel bounds the height, so this page must supply neither. */
16
+ isRenderedInPanel?: boolean;
14
17
  onDelete: (jeScheduleDetailId: ID) => void;
15
18
  onDetailPageChange: (formData: FormData, onlyAmountChangeInScheduleDetail: boolean) => void;
16
19
  onEditAmount: (row: number, jeScheduleId?: ID) => void;
@@ -28,5 +31,5 @@ export interface FormData {
28
31
  [scheduleDetailsFixedAssetsSectionId]: ScheduleDetailsFixedAssetsSectionFormData;
29
32
  [scheduleDetailsListSectionId]: ScheduleDetailsListSectionFormData[];
30
33
  }
31
- declare function ScheduleDetailsFixedAssetsPage({ analytics, controllerUserDetails, isAccountingClassesEnabled, scheduleDetailsView, vendorSearchAutoCompleteActions, vendorSearchAutoCompleteData, onNavigateBack, onEditAmount, onJELinkClick, onSave, onDelete, onDetailPageChange, onViewLinkedJE, onTransactionClick, onMarkAsComplete, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
34
+ declare function ScheduleDetailsFixedAssetsPage({ analytics, controllerUserDetails, isAccountingClassesEnabled, scheduleDetailsView, vendorSearchAutoCompleteActions, isRenderedInPanel, vendorSearchAutoCompleteData, onNavigateBack, onEditAmount, onJELinkClick, onSave, onDelete, onDetailPageChange, onViewLinkedJE, onTransactionClick, onMarkAsComplete, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
32
35
  export default ScheduleDetailsFixedAssetsPage;
@@ -12,6 +12,9 @@ export interface Props {
12
12
  usedInExpenseAutomation: boolean;
13
13
  vendorSearchAutoCompleteActions: AutoCompleteActions;
14
14
  vendorSearchAutoCompleteData: AutoCompleteData;
15
+ /** Rendered inside a side panel rather than as its own route: the host page keeps
16
+ * its own nav bar and the panel bounds the height, so this page must supply neither. */
17
+ isRenderedInPanel?: boolean;
15
18
  onDelete: (jeScheduleDetailId: ID) => void;
16
19
  onDetailPageChange: (formData: FormData, onlyAmountChangeInScheduleDetail: boolean) => void;
17
20
  onEditAmount: (row: number, jeScheduleId?: ID) => void;
@@ -29,5 +32,5 @@ export interface FormData {
29
32
  [scheduleDetailsListSectionId]: ScheduleDetailsListSectionFormData[];
30
33
  [scheduleDetailsSectionId]: ScheduleDetailsSectionFormData;
31
34
  }
32
- declare function ScheduleDetailsPage({ analytics, controllerUserDetails, isAccountingClassesEnabled, scheduleDetailsView, scheduleTab, vendorSearchAutoCompleteActions, vendorSearchAutoCompleteData, onMarkAsComplete, onNavigateBack, onEditAmount, onJELinkClick, onSave, onDelete, onDetailPageChange, onViewLinkedJE, onTransactionClick, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
35
+ declare function ScheduleDetailsPage({ analytics, controllerUserDetails, isAccountingClassesEnabled, scheduleDetailsView, scheduleTab, isRenderedInPanel, vendorSearchAutoCompleteActions, vendorSearchAutoCompleteData, onMarkAsComplete, onNavigateBack, onEditAmount, onJELinkClick, onSave, onDelete, onDetailPageChange, onViewLinkedJE, onTransactionClick, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
33
36
  export default ScheduleDetailsPage;
@@ -7,7 +7,7 @@ export declare const uniqueName: (formId: ID) => `${string}_form`;
7
7
  /**
8
8
  * Props
9
9
  */
10
- export interface NotificationControlsSectionData {
10
+ export interface TaskNotificationsSectionData {
11
11
  isZeniUser: boolean;
12
12
  preferences: NotificationPreferences;
13
13
  registry: NotificationRegistry;
@@ -15,18 +15,11 @@ export interface NotificationControlsSectionData {
15
15
  onSetGroupFrequency: (groupId: string, frequency: NotificationFrequency) => void;
16
16
  onToggleEventChannel: (eventId: string, channel: NotificationChannel, enabled: boolean) => void;
17
17
  }
18
- /**
19
- * @deprecated Use `NotificationControlsSectionData`. Kept so consumers keep
20
- * compiling while they migrate; the shape is identical.
21
- */
22
- export type TaskNotificationsSectionData = NotificationControlsSectionData;
23
18
  export interface NotificationSettingsPageProps {
24
19
  notificationSettingsView: NotificationSettingsSelectorView;
25
20
  signedInUser: LoggedInUser;
26
- commentingNotifications?: NotificationControlsSectionData;
27
- isCommentingNotificationsDirty?: boolean;
28
21
  isTaskNotificationsDirty?: boolean;
29
- taskNotifications?: NotificationControlsSectionData;
22
+ taskNotifications?: TaskNotificationsSectionData;
30
23
  onCancel: () => void;
31
24
  onClickMenuIcon: () => void;
32
25
  onFormDataChange: (formData: NotificationSettingsLocalData) => void;
@@ -1,12 +1,10 @@
1
1
  import { NotificationChannel, NotificationFrequency, NotificationPreferences, NotificationRegistry } from '@zeniai/client-epic-state';
2
- export interface NotificationControlsSectionProps {
3
- formPrefix: string;
2
+ export interface TaskNotificationsSectionProps {
4
3
  isZeniUser: boolean;
5
4
  preferences: NotificationPreferences;
6
5
  registry: NotificationRegistry;
7
- title: string;
8
6
  onSetGroupChannelMaster: (groupId: string, channel: NotificationChannel, enabled: boolean) => void;
9
7
  onSetGroupFrequency: (groupId: string, frequency: NotificationFrequency) => void;
10
8
  onToggleEventChannel: (eventId: string, channel: NotificationChannel, enabled: boolean) => void;
11
9
  }
12
- export declare const NotificationControlsSection: ({ title, formPrefix, isZeniUser, registry, preferences, onToggleEventChannel, onSetGroupChannelMaster, onSetGroupFrequency, }: NotificationControlsSectionProps) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const TaskNotificationsSection: ({ isZeniUser, registry, preferences, onToggleEventChannel, onSetGroupChannelMaster, onSetGroupFrequency, }: TaskNotificationsSectionProps) => import("react/jsx-runtime").JSX.Element;
@@ -2,15 +2,15 @@ import { ReactNode } from 'react';
2
2
  import { ID } from '@zeniai/client-epic-state';
3
3
  export interface SidePanelState {
4
4
  isQuickViewMode: boolean;
5
- selectedTransactionId: ID | undefined;
5
+ selectedItemId: ID | undefined;
6
6
  }
7
7
  export declare const SidePanelContext: import('react').Context<SidePanelState>;
8
8
  interface SidePanelProviderProps {
9
9
  children: ReactNode;
10
10
  isQuickViewMode: boolean;
11
- selectedTransactionId: ID | undefined;
11
+ selectedItemId: ID | undefined;
12
12
  }
13
- export declare function SidePanelProvider({ children, isQuickViewMode, selectedTransactionId, }: Readonly<SidePanelProviderProps>): import("react/jsx-runtime").JSX.Element;
13
+ export declare function SidePanelProvider({ children, isQuickViewMode, selectedItemId, }: Readonly<SidePanelProviderProps>): import("react/jsx-runtime").JSX.Element;
14
14
  export declare const QuickViewModeContext: import('react').Context<boolean>;
15
15
  /** Portal target for react-select MenuPortal. Typed as HTMLElement (not HTMLDivElement)
16
16
  * because the panel wrapper may be any container element. */
@@ -21,16 +21,30 @@ export interface PanelInternalState {
21
21
  maximize?: () => void;
22
22
  }
23
23
  export declare const PanelInternalContext: import('react').Context<PanelInternalState | null>;
24
- /** @deprecated Use PanelInternalContext instead */
25
- export declare const TransactionPanelInternalContext: import('react').Context<PanelInternalState | null>;
26
- /** @deprecated Use PanelInternalContext instead */
27
- export declare const SchedulePanelInternalContext: import('react').Context<PanelInternalState | null>;
24
+ /**
25
+ * Reported by whatever the panel is currently showing, so navigation away from it
26
+ * can prompt instead of silently discarding edits.
27
+ *
28
+ * `isDirty` is a getter rather than a boolean because the navigation paths that
29
+ * consult it (the action bar, Escape, clicking another row) read it at call time,
30
+ * outside React's render cycle.
31
+ */
32
+ export interface PanelDirtyGuard {
33
+ isDirty: () => boolean;
34
+ }
35
+ export interface PanelDirtyGuardRegistry {
36
+ registerPanelDirtyGuard: (guard: PanelDirtyGuard | null) => void;
37
+ }
38
+ export declare const PanelDirtyGuardContext: import('react').Context<PanelDirtyGuardRegistry | null>;
39
+ export declare function usePanelDirtyGuardRegistry(): PanelDirtyGuardRegistry | null;
40
+ /**
41
+ * Registers the calling component's unsaved-changes state with the host panel for
42
+ * as long as it is mounted. A no-op outside a panel, so a detail page can call it
43
+ * unconditionally and behave identically on its own full page.
44
+ */
45
+ export declare function useRegisterPanelDirtyGuard(isDirty: () => boolean): void;
28
46
  export declare function useSidePanelContext(): SidePanelState;
29
47
  export declare function useQuickViewMode(): boolean;
30
48
  export declare function useDropdownPortal(): HTMLElement | null;
31
49
  export declare function usePanelInternal(): PanelInternalState | null;
32
- /** @deprecated Use usePanelInternal instead */
33
- export declare const useTransactionPanelInternal: typeof usePanelInternal;
34
- /** @deprecated Use usePanelInternal instead */
35
- export declare const useSchedulePanelInternal: typeof usePanelInternal;
36
50
  export {};
package/dist/index.cjs.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-CG3zQGql.cjs"),a=require("./vendor-.pnpm-BGlYY3q9.cjs"),i=require("@zeniai/client-epic-state"),t=require("@emotion/styled");exports.AIAgentsActivatingPage=e.AIAgentsActivatingPage;exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_INVOICING_MENU_GROUPS=e.ALL_INVOICING_MENU_GROUPS;exports.ALL_INVOICING_MENU_OPTIONS=e.ALL_INVOICING_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.AccountReconDetailsDrawerPageV2=e.AccountReconDetailsDrawerPage$1;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoChatHeader=e.AiCfoChatHeader;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.AiCfoSkillsBrowser=e.AiCfoSkillsBrowser;exports.AiFinanceTeamReadyPage=e.AiFinanceTeamReadyPage;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;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.BillPayApprovalRuleDetailPageV1=e.BillPayApprovalRuleDetailPage$1;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayApprovalRulesPageV1=e.BillPayApprovalRulesPage$1;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.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.COMMENT_NOTIFICATION_KINDS=e.COMMENT_NOTIFICATION_KINDS;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.CardsShutdownBanner=e.CardsShutdownBanner;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.ChargeCardListSkeletonRow=e.ChargeCardListSkeletonRow;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.ClickableRow=e.ClickableRow;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.CompanyOfficerOnboardingDetailsSection=e.CompanyOfficerOnboardingDetailsSection;exports.CompanyOnboardingDetailsSection=e.CompanyOnboardingDetailsSection;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.ConnectDataSourcesPage=e.ConnectDataSourcesPage;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;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.FieldHelpIcon=e.FieldHelpIcon;exports.FieldHelpProvider=e.FieldHelpProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.INVOICING_SETTINGS_NAV_SECTIONS=e.INVOICING_SETTINGS_NAV_SECTIONS;exports.INVOICING_SETTINGS_TABS=e.INVOICING_SETTINGS_TABS;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationCardView=e.IntegrationCardView;exports.IntegrationsCardGrid=e.IntegrationsCardGrid;exports.IntegrationsSection=e.IntegrationsSection;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.InvoicingAddPaymentMethodDialog=e.InvoicingAddPaymentMethodDialog;exports.InvoicingAuditLogPage=e.InvoicingAuditLogPage;exports.InvoicingBrandingSettingsPage=e.InvoicingBrandingSettingsPage;exports.InvoicingCatalogItemDetailPage=e.InvoicingCatalogItemDetailPage;exports.InvoicingCatalogItemFormPage=e.InvoicingCatalogItemFormPage;exports.InvoicingCatalogPage=e.InvoicingCatalogPage;exports.InvoicingCouponFormPage=e.InvoicingCouponFormPage;exports.InvoicingCreateInvoicePage=e.InvoicingCreateInvoicePage;exports.InvoicingCreateInvoiceSkeleton=e.InvoicingCreateInvoiceSkeleton;exports.InvoicingCreatePromotionalCreditsDialog=e.InvoicingCreatePromotionalCreditsDialog;exports.InvoicingCreditDetailPage=e.InvoicingCreditDetailPage;exports.InvoicingCreditListPage=e.InvoicingCreditListPage;exports.InvoicingCustomerDetailPage=e.InvoicingCustomerDetailPage;exports.InvoicingCustomerFormPage=e.InvoicingCustomerFormPage;exports.InvoicingCustomerListPage=e.InvoicingCustomerListPage;exports.InvoicingDashboardSkeleton=e.InvoicingDashboardSkeleton;exports.InvoicingDataImportDetailPage=e.InvoicingDataImportDetailPage;exports.InvoicingDataImportHubPage=e.InvoicingDataImportHubPage;exports.InvoicingDataImportMigratePage=e.InvoicingDataImportMigratePage;exports.InvoicingDetailScaffold=e.InvoicingDetailScaffold;exports.InvoicingDiscountDetailPage=e.InvoicingDiscountDetailPage;exports.InvoicingDiscountListPage=e.InvoicingDiscountListPage;exports.InvoicingDunningDetailPage=e.InvoicingDunningDetailPage;exports.InvoicingDunningEmailComposerDialog=e.InvoicingDunningEmailComposerDialog;exports.InvoicingDunningListPage=e.InvoicingDunningListPage;exports.InvoicingDunningSettingsPage=e.InvoicingDunningSettingsPage;exports.InvoicingEmptyState=e.InvoicingEmptyState;exports.InvoicingIntegrationsSettingsPage=e.InvoicingIntegrationsSettingsPage;exports.InvoicingInvoiceDetailPage=e.InvoicingInvoiceDetailPage;exports.InvoicingInvoiceListPage=e.InvoicingInvoiceListPage;exports.InvoicingIssueCreditNotePage=e.InvoicingIssueCreditNotePage;exports.InvoicingOverviewPage=e.InvoicingOverviewPage;exports.InvoicingPaymentDestinationSettingsPage=e.InvoicingPaymentDestinationSettingsPage;exports.InvoicingPaymentLinkEmailComposerDialog=e.InvoicingPaymentLinkEmailComposerDialog;exports.InvoicingPaymentLinkPage=e.InvoicingPaymentLinkPage;exports.InvoicingPaymentListPage=e.InvoicingPaymentListPage;exports.InvoicingPromoPage=e.InvoicingPromoPage;exports.InvoicingQBOSettingsPage=e.InvoicingQBOSettingsPage;exports.InvoicingRecordPaymentPage=e.InvoicingRecordPaymentPage;exports.InvoicingSettingsHubPage=e.InvoicingSettingsHubPage;exports.InvoicingSettingsPage=e.InvoicingSettingsHubPage;exports.InvoicingSubscriptionDetailPage=e.InvoicingSubscriptionDetailPage;exports.InvoicingSubscriptionFormPage=e.InvoicingSubscriptionFormPage;exports.InvoicingSubscriptionListPage=e.InvoicingSubscriptionListPage;exports.InvoicingTransactionDetailPage=e.InvoicingTransactionDetailPage;exports.InvoicingVoidInvoiceDialog=e.InvoicingVoidInvoiceDialog;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.JEOneTimeAccrualDetailPage=e.JEOneTimeAccrualDetailPage;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MCC_CHIP_ID_PREFIX=e.MCC_CHIP_ID_PREFIX;exports.MEETING_LINK_DEFAULTS=e.MEETING_LINK_DEFAULTS;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.OnboardingInitialLoader=e.OnboardingInitialLoader;exports.OnboardingSidebar=e.OnboardingSidebar;exports.OnboardingStepFrame=e.OnboardingStepFrame;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PaymentAccountSetupBillingAddressSection=e.PaymentAccountSetupBillingAddressSection;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QBOSetupSectionWithForm=e.QBOSetupSectionWithForm;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.RecommendationFeedbackPopup=e.RecommendationFeedbackPopup;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRuleDetailPageV1=e.ReimbursementApprovalRuleDetailPage$1;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementApprovalRulesPageV1=e.ReimbursementApprovalRulesPage$1;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.SearchableCheckboxCardList=e.SearchableCheckboxCardList;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.StatementParseInfo=e.StatementParseInfoEntry;exports.StatementProcessingPage=e.StatementProcessingPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;exports.THREAD_RESOLVED_NOTIFICATION_KIND=e.THREAD_RESOLVED_NOTIFICATION_KIND;exports.THREAD_UNRESOLVED_NOTIFICATION_KIND=e.THREAD_UNRESOLVED_NOTIFICATION_KIND;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.TransactionListComments=e.TransactionListComments;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.VENDOR_CHIP_ID_PREFIX=e.VENDOR_CHIP_ID_PREFIX;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.VerificationFrame=e.VerificationFrame;exports.VerifyDevice=e.VerifyDevice;exports.VerifyUnlockFinancialStackPage=e.VerifyUnlockFinancialStackPage;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WelcomeAnimation=e.WelcomeAnimation;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.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.clickableRowStyles=e.clickableRowStyles;exports.computeRecommendationSelectionFeedback=e.computeRecommendationSelectionFeedback;exports.computeStatementProcessingStepsFromElapsedTime=e.computeStatementProcessingStepsFromElapsedTime;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;exports.describeSchedule=e.describeSchedule;exports.formatReconAccountDisplayName=e.formatReconAccountDisplayName;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.getReconAccountDisplayName=e.getReconAccountDisplayName;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.getStatementParseTransactionCount=e.getStatementParseTransactionCount;exports.getTransactionAppliedFiltersCount=e.getTransactionAppliedFiltersCount;exports.invoicingMenuList=e.invoicingMenuList;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isClosedCardStatus=e.isClosedCardStatus;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isCommentNotificationKind=e.isCommentNotificationKind;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.isRecommendationFeedbackDimension=e.isRecommendationFeedbackDimension;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.menuList=e.menuList;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveBackgroundStatementProcessingCompletedSteps=e.resolveBackgroundStatementProcessingCompletedSteps;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.routineIdFromSession=e.routineIdFromSession;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.settingMenuList=e.settingMenuList;exports.shortCadence=e.shortCadence;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toGroupedAccountingClassOptions=e.toGroupedAccountingClassOptions;exports.toGroupedQboAccountOptions=e.toGroupedQboAccountOptions;exports.toInstitutionLogoDataUri=e.toInstitutionLogoDataUri;exports.toInvoicingMenuOptionType=e.toInvoicingMenuOptionType;exports.toInvoicingMenuOptionTypeStrict=e.toInvoicingMenuOptionTypeStrict;exports.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useApprovalRulesV3Config=e.useApprovalRulesV3Config;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useExpenseAutomationEnabledForUser=e.useExpenseAutomationEnabledForUser;exports.useFieldHelp=e.useFieldHelp;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.useMeetingLinks=e.useMeetingLinks;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.useZeniCardsVisibilityConfig=e.useZeniCardsVisibilityConfig;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;Object.defineProperty(exports,"buildInvoicingEntityPath",{enumerable:!0,get:()=>i.buildInvoicingEntityPath});Object.defineProperty(exports,"isInvoicingEntityLinkable",{enumerable:!0,get:()=>i.isInvoicingEntityLinkable});exports.zeniEmotionStyled=t;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-DpCkDRiF.cjs"),a=require("./vendor-.pnpm-BGlYY3q9.cjs"),i=require("@zeniai/client-epic-state"),t=require("@emotion/styled");exports.AIAgentsActivatingPage=e.AIAgentsActivatingPage;exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_INVOICING_MENU_GROUPS=e.ALL_INVOICING_MENU_GROUPS;exports.ALL_INVOICING_MENU_OPTIONS=e.ALL_INVOICING_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.AccountReconDetailsDrawerPageV2=e.AccountReconDetailsDrawerPage$1;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoChatHeader=e.AiCfoChatHeader;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.AiCfoSkillsBrowser=e.AiCfoSkillsBrowser;exports.AiFinanceTeamReadyPage=e.AiFinanceTeamReadyPage;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;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.BillPayApprovalRuleDetailPageV1=e.BillPayApprovalRuleDetailPage$1;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayApprovalRulesPageV1=e.BillPayApprovalRulesPage$1;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.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.COMMENT_NOTIFICATION_KINDS=e.COMMENT_NOTIFICATION_KINDS;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.CardsShutdownBanner=e.CardsShutdownBanner;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.ChargeCardListSkeletonRow=e.ChargeCardListSkeletonRow;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.ClickableRow=e.ClickableRow;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.CompanyOfficerOnboardingDetailsSection=e.CompanyOfficerOnboardingDetailsSection;exports.CompanyOnboardingDetailsSection=e.CompanyOnboardingDetailsSection;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.ConnectDataSourcesPage=e.ConnectDataSourcesPage;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;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.FieldHelpIcon=e.FieldHelpIcon;exports.FieldHelpProvider=e.FieldHelpProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.INVOICING_SETTINGS_NAV_SECTIONS=e.INVOICING_SETTINGS_NAV_SECTIONS;exports.INVOICING_SETTINGS_TABS=e.INVOICING_SETTINGS_TABS;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationCardView=e.IntegrationCardView;exports.IntegrationsCardGrid=e.IntegrationsCardGrid;exports.IntegrationsSection=e.IntegrationsSection;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.InvoicingAddPaymentMethodDialog=e.InvoicingAddPaymentMethodDialog;exports.InvoicingAuditLogPage=e.InvoicingAuditLogPage;exports.InvoicingBrandingSettingsPage=e.InvoicingBrandingSettingsPage;exports.InvoicingCatalogItemDetailPage=e.InvoicingCatalogItemDetailPage;exports.InvoicingCatalogItemFormPage=e.InvoicingCatalogItemFormPage;exports.InvoicingCatalogPage=e.InvoicingCatalogPage;exports.InvoicingCouponFormPage=e.InvoicingCouponFormPage;exports.InvoicingCreateInvoicePage=e.InvoicingCreateInvoicePage;exports.InvoicingCreateInvoiceSkeleton=e.InvoicingCreateInvoiceSkeleton;exports.InvoicingCreatePromotionalCreditsDialog=e.InvoicingCreatePromotionalCreditsDialog;exports.InvoicingCreditDetailPage=e.InvoicingCreditDetailPage;exports.InvoicingCreditListPage=e.InvoicingCreditListPage;exports.InvoicingCustomerDetailPage=e.InvoicingCustomerDetailPage;exports.InvoicingCustomerFormPage=e.InvoicingCustomerFormPage;exports.InvoicingCustomerListPage=e.InvoicingCustomerListPage;exports.InvoicingDashboardSkeleton=e.InvoicingDashboardSkeleton;exports.InvoicingDataImportDetailPage=e.InvoicingDataImportDetailPage;exports.InvoicingDataImportHubPage=e.InvoicingDataImportHubPage;exports.InvoicingDataImportMigratePage=e.InvoicingDataImportMigratePage;exports.InvoicingDetailScaffold=e.InvoicingDetailScaffold;exports.InvoicingDiscountDetailPage=e.InvoicingDiscountDetailPage;exports.InvoicingDiscountListPage=e.InvoicingDiscountListPage;exports.InvoicingDunningDetailPage=e.InvoicingDunningDetailPage;exports.InvoicingDunningEmailComposerDialog=e.InvoicingDunningEmailComposerDialog;exports.InvoicingDunningListPage=e.InvoicingDunningListPage;exports.InvoicingDunningSettingsPage=e.InvoicingDunningSettingsPage;exports.InvoicingEmptyState=e.InvoicingEmptyState;exports.InvoicingIntegrationsSettingsPage=e.InvoicingIntegrationsSettingsPage;exports.InvoicingInvoiceDetailPage=e.InvoicingInvoiceDetailPage;exports.InvoicingInvoiceListPage=e.InvoicingInvoiceListPage;exports.InvoicingIssueCreditNotePage=e.InvoicingIssueCreditNotePage;exports.InvoicingOverviewPage=e.InvoicingOverviewPage;exports.InvoicingPaymentDestinationSettingsPage=e.InvoicingPaymentDestinationSettingsPage;exports.InvoicingPaymentLinkEmailComposerDialog=e.InvoicingPaymentLinkEmailComposerDialog;exports.InvoicingPaymentLinkPage=e.InvoicingPaymentLinkPage;exports.InvoicingPaymentListPage=e.InvoicingPaymentListPage;exports.InvoicingPromoPage=e.InvoicingPromoPage;exports.InvoicingQBOSettingsPage=e.InvoicingQBOSettingsPage;exports.InvoicingRecordPaymentPage=e.InvoicingRecordPaymentPage;exports.InvoicingSettingsHubPage=e.InvoicingSettingsHubPage;exports.InvoicingSettingsPage=e.InvoicingSettingsHubPage;exports.InvoicingSubscriptionDetailPage=e.InvoicingSubscriptionDetailPage;exports.InvoicingSubscriptionFormPage=e.InvoicingSubscriptionFormPage;exports.InvoicingSubscriptionListPage=e.InvoicingSubscriptionListPage;exports.InvoicingTransactionDetailPage=e.InvoicingTransactionDetailPage;exports.InvoicingVoidInvoiceDialog=e.InvoicingVoidInvoiceDialog;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.JEOneTimeAccrualDetailPage=e.JEOneTimeAccrualDetailPage;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MCC_CHIP_ID_PREFIX=e.MCC_CHIP_ID_PREFIX;exports.MEETING_LINK_DEFAULTS=e.MEETING_LINK_DEFAULTS;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.OnboardingInitialLoader=e.OnboardingInitialLoader;exports.OnboardingSidebar=e.OnboardingSidebar;exports.OnboardingStepFrame=e.OnboardingStepFrame;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelDirtyGuardContext=e.PanelDirtyGuardContext;exports.PanelInternalContext=e.PanelInternalContext;exports.PaymentAccountSetupBillingAddressSection=e.PaymentAccountSetupBillingAddressSection;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QBOSetupSectionWithForm=e.QBOSetupSectionWithForm;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.RecommendationFeedbackPopup=e.RecommendationFeedbackPopup;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRuleDetailPageV1=e.ReimbursementApprovalRuleDetailPage$1;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementApprovalRulesPageV1=e.ReimbursementApprovalRulesPage$1;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.SearchableCheckboxCardList=e.SearchableCheckboxCardList;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelLayout=e.SidePanelLayout;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.StatementParseInfo=e.StatementParseInfoEntry;exports.StatementProcessingPage=e.StatementProcessingPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;exports.THREAD_RESOLVED_NOTIFICATION_KIND=e.THREAD_RESOLVED_NOTIFICATION_KIND;exports.THREAD_UNRESOLVED_NOTIFICATION_KIND=e.THREAD_UNRESOLVED_NOTIFICATION_KIND;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.TransactionListComments=e.TransactionListComments;exports.TransactionListPage=e.TransactionListPage;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.VENDOR_CHIP_ID_PREFIX=e.VENDOR_CHIP_ID_PREFIX;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.VerificationFrame=e.VerificationFrame;exports.VerifyDevice=e.VerifyDevice;exports.VerifyUnlockFinancialStackPage=e.VerifyUnlockFinancialStackPage;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WelcomeAnimation=e.WelcomeAnimation;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.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.clickableRowStyles=e.clickableRowStyles;exports.computeRecommendationSelectionFeedback=e.computeRecommendationSelectionFeedback;exports.computeStatementProcessingStepsFromElapsedTime=e.computeStatementProcessingStepsFromElapsedTime;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;exports.describeSchedule=e.describeSchedule;exports.formatReconAccountDisplayName=e.formatReconAccountDisplayName;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.getReconAccountDisplayName=e.getReconAccountDisplayName;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.getStatementParseTransactionCount=e.getStatementParseTransactionCount;exports.getTransactionAppliedFiltersCount=e.getTransactionAppliedFiltersCount;exports.invoicingMenuList=e.invoicingMenuList;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isClosedCardStatus=e.isClosedCardStatus;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isCommentNotificationKind=e.isCommentNotificationKind;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.isRecommendationFeedbackDimension=e.isRecommendationFeedbackDimension;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.menuList=e.menuList;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveBackgroundStatementProcessingCompletedSteps=e.resolveBackgroundStatementProcessingCompletedSteps;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.routineIdFromSession=e.routineIdFromSession;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.settingMenuList=e.settingMenuList;exports.shortCadence=e.shortCadence;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toGroupedAccountingClassOptions=e.toGroupedAccountingClassOptions;exports.toGroupedQboAccountOptions=e.toGroupedQboAccountOptions;exports.toInstitutionLogoDataUri=e.toInstitutionLogoDataUri;exports.toInvoicingMenuOptionType=e.toInvoicingMenuOptionType;exports.toInvoicingMenuOptionTypeStrict=e.toInvoicingMenuOptionTypeStrict;exports.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useApprovalRulesV3Config=e.useApprovalRulesV3Config;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useExpenseAutomationEnabledForUser=e.useExpenseAutomationEnabledForUser;exports.useFieldHelp=e.useFieldHelp;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.useMeetingLinks=e.useMeetingLinks;exports.usePanelDirtyGuardRegistry=e.usePanelDirtyGuardRegistry;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRegisterPanelDirtyGuard=e.useRegisterPanelDirtyGuard;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniCardsVisibilityConfig=e.useZeniCardsVisibilityConfig;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;Object.defineProperty(exports,"buildInvoicingEntityPath",{enumerable:!0,get:()=>i.buildInvoicingEntityPath});Object.defineProperty(exports,"isInvoicingEntityLinkable",{enumerable:!0,get:()=>i.isInvoicingEntityLinkable});exports.zeniEmotionStyled=t;
package/dist/index.d.ts CHANGED
@@ -108,9 +108,9 @@ export type { Props as TopExDetailPageProps } from './components/detail/topEx/To
108
108
  export { default as TransactionDetailPage } from './components/transactionDetail/TransactionDetailPage';
109
109
  export type { Props as TransactionDetailPageProps } from './components/transactionDetail/TransactionDetailPage';
110
110
  export { getStableTransactionId } from './components/transactionDetail/transactionDetail.helpers';
111
- export { default as TransactionSidePanelLayout } from './components/transactionDetail/TransactionSidePanelLayout';
112
- export { QuickViewModeContext, DropdownPortalContext, PanelInternalContext, SchedulePanelInternalContext, SidePanelContext, SidePanelProvider, TransactionPanelInternalContext, useQuickViewMode, useDropdownPortal, usePanelInternal, useSchedulePanelInternal, useSidePanelContext, useTransactionPanelInternal, } from './context/SidePanelContext';
113
- export type { PanelInternalState, SidePanelState, } from './context/SidePanelContext';
111
+ export { default as SidePanelLayout } from './components/common/sidePanel/SidePanelLayout';
112
+ export { QuickViewModeContext, DropdownPortalContext, PanelDirtyGuardContext, PanelInternalContext, SidePanelContext, SidePanelProvider, useQuickViewMode, useDropdownPortal, usePanelDirtyGuardRegistry, usePanelInternal, useRegisterPanelDirtyGuard, useSidePanelContext, } from './context/SidePanelContext';
113
+ export type { PanelDirtyGuard, PanelDirtyGuardRegistry, PanelInternalState, SidePanelState, } from './context/SidePanelContext';
114
114
  export { default as QBOConnectionDialog } from './components/dashboard/QBOConnectionDialog';
115
115
  export type { Props as QBOConnectionDialogProps } from './components/dashboard/QBOConnectionDialog';
116
116
  export { default as VerifyDevice } from './components/common/verifyDevice/VerifyDevice';