@zeniai/web-components 4.1.52-betaJK2 → 4.1.52-betaVR1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/{SessionTimeoutPopup-CdfFoZvR.cjs → SessionTimeoutPopup-DQSLdcQs.cjs} +15534 -15421
  2. package/dist/{SessionTimeoutPopup-Dw3I5d4K.js → SessionTimeoutPopup-DXP_m1FM.js} +74725 -73981
  3. package/dist/appLocale.d.ts +25 -7
  4. package/dist/assets/interface/flag.svg +4 -3
  5. package/dist/cockpit.cjs.js +1 -1
  6. package/dist/cockpit.esm.js +4 -4
  7. package/dist/components/formElements/common/common.d.ts +1 -0
  8. package/dist/components/formElements/labeledFormattedText/LabeledFormattedTextField.d.ts +7 -2
  9. package/dist/components/formElements/labeledText/LabeledTextField.d.ts +7 -1
  10. package/dist/components/taskManagement/TaskDetailPage.d.ts +3 -8
  11. package/dist/components/taskManagement/TaskListRow.d.ts +2 -7
  12. package/dist/components/taskManagement/TaskListRowSmall.d.ts +1 -3
  13. package/dist/components/taskManagement/TaskManagementPage.d.ts +28 -4
  14. package/dist/components/taskManagement/taskManagementFormConstants.d.ts +0 -1
  15. package/dist/components/taskManagement/taskManagementHeaderItemsData.d.ts +0 -1
  16. package/dist/components/transactionDetail/items/journalEntryTable/FlexibleWidthContext.d.ts +2 -0
  17. package/dist/components/transactionDetail/items/journalEntryTable/TransactionLinesJournalEntryEmptyTable.d.ts +17 -0
  18. package/dist/components/transactionDetail/items/journalEntryTable/TransactionLinesJournalEntryTable.d.ts +2 -0
  19. package/dist/components/transactionDetail/items/journalEntryTable/common.d.ts +23 -0
  20. package/dist/components/transactionDetail/items/journalEntryTable/header/JournalEntryTableHeader.d.ts +11 -0
  21. package/dist/components/transactionDetail/items/journalEntryTable/header/journalEntryHeaderConfig.d.ts +28 -0
  22. package/dist/components/transactionDetail/items/journalEntryTable/header/journalEntryHeaderItemsData.d.ts +16 -0
  23. package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableStyles.d.ts +119 -0
  24. package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableTypes.d.ts +79 -0
  25. package/dist/components/transactionDetail/items/journalEntryTable/listRow/JournalEntryTableListRow.d.ts +40 -0
  26. package/dist/components/transactionDetail/items/journalEntryTable/totals/JournalEntryTotalsRow.d.ts +21 -0
  27. package/dist/components/transactionDetail/items/transactionLineTable/FlexibleWidthContext.d.ts +6 -0
  28. package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesEmptyTable.d.ts +11 -0
  29. package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesTable.d.ts +17 -0
  30. package/dist/components/transactionDetail/items/transactionLineTable/common.d.ts +32 -0
  31. package/dist/components/transactionDetail/items/transactionLineTable/header/TransactionLineTableHeader.d.ts +12 -0
  32. package/dist/components/transactionDetail/items/transactionLineTable/header/transactionLineHeaderConfig.d.ts +40 -0
  33. package/dist/components/transactionDetail/items/transactionLineTable/header/transactionLineHeaderItemsData.d.ts +19 -0
  34. package/dist/components/transactionDetail/items/transactionLineTable/listRow/TransactionLineTableListRow.d.ts +40 -0
  35. package/dist/components/transactionDetail/items/transactionLineTable/sortTransactionLines.d.ts +19 -0
  36. package/dist/components/transactionDetail/items/transactionLineTable/transactionLineTableStyles.d.ts +103 -0
  37. package/dist/components/transactionDetail/items/transactionLineTable/transactionLineTableTypes.d.ts +80 -0
  38. package/dist/index.cjs.js +1 -1
  39. package/dist/index.esm.js +20 -20
  40. package/dist/strings/strings.d.ts +25 -7
  41. package/dist/testSetup.d.ts +0 -0
  42. package/dist/{vendor-.pnpm-C7TxM7W7.cjs → vendor-.pnpm-DuJMYp1y.cjs} +88 -88
  43. package/dist/{vendor-.pnpm-CSfLHWdE.js → vendor-.pnpm-XFVTbpbG.js} +5506 -5457
  44. package/package.json +2 -2
  45. package/dist/components/taskManagement/SubtaskCreationForm.d.ts +0 -14
  46. package/dist/components/taskManagement/taskManagementTypes.d.ts +0 -33
  47. package/dist/components/taskManagement/taskManagementUtils.d.ts +0 -2
@@ -0,0 +1,79 @@
1
+ import { AccountBase, ClassBase, ID, NestedAccountHierarchyForReport, NestedClassHierarchyForReport, Project, TransactionLineRecommendationFieldTypes, TransactionWithCOT, UncategorizedAccounts } 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 { JournalEntryRowHeaderItemData } from './header/journalEntryHeaderConfig';
6
+ /**
7
+ * Public props for the new JE table entry component.
8
+ *
9
+ * This is a deliberate subset of the legacy `TransactionLinesJournalEntry`
10
+ * prop shape. The call site in `TransactionDetailContent` spreads a single
11
+ * `sharedProps` object into either component, and TypeScript allows the
12
+ * spread to carry extra fields that this component does not consume. As
13
+ * new features (inline edit, book-close enforcement, project column, etc.)
14
+ * land on the table view, add the corresponding props back here.
15
+ */
16
+ export interface TransactionLinesJournalEntryTableProps {
17
+ accountList: AccountBase[];
18
+ accountsHierarchyList: NestedAccountHierarchyForReport[];
19
+ classHierarchyList: NestedClassHierarchyForReport[];
20
+ classList: ClassBase[];
21
+ isAccountingClassesEnabled: boolean;
22
+ isCOTEnabled: boolean;
23
+ lines: LineInfo[];
24
+ projects: Project[];
25
+ searchAutoComplete: SearchAutoComplete;
26
+ sectionId: string;
27
+ transaction: TransactionWithCOT;
28
+ cotTracking?: COTTrackingProps;
29
+ isDisabled?: DisableMode;
30
+ isQuickViewMode?: boolean;
31
+ isUncategorizedExpenseCategoryEnabled?: boolean;
32
+ openTooltipId?: ID;
33
+ uncategorizedAccounts?: UncategorizedAccounts;
34
+ setOpenTooltipId?: (tooltipId: ID | undefined) => void;
35
+ }
36
+ /**
37
+ * Props for the skeleton/loading empty table that mirrors the
38
+ * `TransactionCategorizationListEmptyTable` shape.
39
+ */
40
+ export interface TransactionLinesJournalEntryEmptyTableProps {
41
+ isAccountingClassesEnabled: boolean;
42
+ showProjectField: boolean;
43
+ isCompressed?: boolean;
44
+ isQuickViewMode?: boolean;
45
+ sectionId?: string;
46
+ skeletonRowCount?: number;
47
+ }
48
+ /** Props for the inline list-row component. */
49
+ export interface JournalEntryTableListRowProps {
50
+ accountList: AccountBase[];
51
+ accountsHierarchyList: NestedAccountHierarchyForReport[];
52
+ classHierarchyList: NestedClassHierarchyForReport[];
53
+ classList: ClassBase[];
54
+ columns: JournalEntryRowHeaderItemData[];
55
+ isCompressed: boolean;
56
+ isCOTEnabled: boolean;
57
+ line: LineInfo;
58
+ lineIndex: number;
59
+ projects: Project[];
60
+ sectionId: string;
61
+ isDisabled?: DisableMode;
62
+ isUncategorizedExpenseCategoryEnabled?: boolean;
63
+ openTooltipId?: ID;
64
+ searchAutoComplete?: SearchAutoComplete;
65
+ /**
66
+ * Transaction id used by the inline `RecommendationIcon` to build a
67
+ * unique tooltip identifier. Optional so existing callers don't break;
68
+ * when missing the row falls back to `line.id`.
69
+ */
70
+ transactionId?: ID;
71
+ uncategorizedAccounts?: UncategorizedAccounts;
72
+ onCOTView?: (fieldType: TransactionLineRecommendationFieldTypes, recommendationSource?: string) => void;
73
+ setOpenTooltipId?: (tooltipId: ID | undefined) => void;
74
+ }
75
+ /** Props for the skeleton row mounted by the empty table. */
76
+ export interface JournalEntryTableListEmptyRowProps {
77
+ columns: JournalEntryRowHeaderItemData[];
78
+ isCompressed: boolean;
79
+ }
@@ -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 { JournalEntryTableListEmptyRowProps, JournalEntryTableListRowProps } from '../journalEntryTableTypes';
5
+ /**
6
+ * Single populated row of the JE table. Iterates the `columns` array
7
+ * from the header and renders the matching inline cell JSX (no per-cell
8
+ * function abstraction -- mirrors categorization's "one big switch"
9
+ * pattern at TransactionCategorizationListRow.tsx ~L1096-L1710 so a
10
+ * reviewer can diff the two row files column-by-column).
11
+ */
12
+ export declare const JournalEntryTableListRow: ({ accountList: _accountList, accountsHierarchyList, classHierarchyList, classList: _classList, columns, isCOTEnabled, isCompressed, isDisabled, isUncategorizedExpenseCategoryEnabled, line, lineIndex, onCOTView, openTooltipId, projects, searchAutoComplete, sectionId, setOpenTooltipId, transactionId, uncategorizedAccounts, }: JournalEntryTableListRowProps) => import("react/jsx-runtime").JSX.Element;
13
+ /**
14
+ * Skeleton row consumed by `TransactionLinesJournalEntryEmptyTable`. Uses
15
+ * the same `RowItemContainer` as the live row so column widths line up
16
+ * 1:1, mirroring categorization's `TransactionCategorizationListEmptyRow`
17
+ * (TransactionCategorizationListRow.tsx ~L2521-L2606).
18
+ */
19
+ export declare const JournalEntryTableListEmptyRow: ({ columns, isCompressed, }: JournalEntryTableListEmptyRowProps) => import("react/jsx-runtime").JSX.Element;
20
+ declare const RowItemContainerStyled: import('@emotion/styled').StyledComponent<{
21
+ theme?: import('@emotion/react').Theme;
22
+ as?: React.ElementType;
23
+ } & {
24
+ $widthPercentage: number;
25
+ windowSize: WindowSize;
26
+ wrapperWidth: ResponsiveSized;
27
+ $flexibleWidth?: boolean;
28
+ isCompressed?: boolean;
29
+ isDividerColumn?: boolean;
30
+ isLastItem?: boolean;
31
+ isSticky?: boolean;
32
+ }, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
33
+ /**
34
+ * Exported so the sticky totals row can render column-aligned cells using
35
+ * the same width contract as the live row.
36
+ */
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,21 @@
1
+ import { WindowSize } from '../../../../../context/windowSizeProvider/WindowSizeProvider';
2
+ import { LineInfo } from '../../../common';
3
+ import { JournalEntryRowHeaderItemData } from '../header/journalEntryHeaderConfig';
4
+ export interface JournalEntryTotalsRowProps {
5
+ columns: JournalEntryRowHeaderItemData[];
6
+ isCompressed: boolean;
7
+ lines: LineInfo[];
8
+ sectionId: string;
9
+ windowSize: WindowSize;
10
+ }
11
+ /**
12
+ * Sticky totals row pinned to the bottom of the table.
13
+ *
14
+ * Layout (Figma frame 5177:12455 totals row 5177:12750):
15
+ * [Total label flex-grow] [Debit total 140px right] [Credit total 116px right]
16
+ *
17
+ * In compressed (quick view / small) mode we collapse to a single line
18
+ * showing Total Debits / Total Credits with a divider, matching the
19
+ * quick-view spec.
20
+ */
21
+ export declare const JournalEntryTotalsRow: ({ columns, isCompressed, lines, sectionId, windowSize, }: JournalEntryTotalsRowProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Re-export the JE table's `FlexibleWidthContext` so the non-JE table
3
+ * shares a single source of truth for the flexible-vs-fixed-width column
4
+ * convention. Keeps the contract one place to evolve.
5
+ */
6
+ export { FlexibleWidthProvider, useFlexibleWidth, } from '../journalEntryTable/FlexibleWidthContext';
@@ -0,0 +1,11 @@
1
+ import { TransactionLinesEmptyTableProps } from './transactionLineTableTypes';
2
+ /**
3
+ * Skeleton/loading table that mirrors `TransactionLinesJournalEntryEmptyTable`
4
+ * but without the totals row (per Figma 5240:7220 + the explicit "no totals
5
+ * row" requirement for non-JE transactions). Mounts the real sticky
6
+ * header and N skeleton rows inside a `FlexibleWidthProvider` so column
7
+ * widths match the live table.
8
+ */
9
+ export declare const TransactionLinesEmptyTable: ({ isAccountingClassesEnabled, showProjectField, isCompressed, isQuickViewMode, sectionId, skeletonRowCount, }: TransactionLinesEmptyTableProps) => import("react/jsx-runtime").JSX.Element;
10
+ /** Re-export the header height for callers sizing the empty viewport. */
11
+ export declare const TRANSACTION_LINE_EMPTY_TABLE_HEADER_HEIGHT_PX = 32;
@@ -0,0 +1,17 @@
1
+ import { TransactionLinesTableProps } from './transactionLineTableTypes';
2
+ /**
3
+ * Tabular view of non-journal-entry transaction lines (vendor / deposit
4
+ * today; customer/product-service kept on the legacy card view).
5
+ *
6
+ * Mirrors `TransactionLinesJournalEntryTable` minus:
7
+ * - the per-row vendor / payee dropdown (the parent transaction
8
+ * header owns vendor selection)
9
+ * - the debit/credit posting split (a single right-aligned amount
10
+ * column replaces them)
11
+ * - the sticky totals row at the bottom (per Figma 5240:7220 and the
12
+ * explicit "no totals row" requirement)
13
+ *
14
+ * The bottom-rounded corners are owned by the last `RowWrapper` since
15
+ * there is nothing else following it inside the card.
16
+ */
17
+ export default function TransactionLinesTable({ accountList, accountsHierarchyList, classHierarchyList, classList, containerRef: _containerRef, isAccountingClassesEnabled, isAccountingProjectsEnabled: _isAccountingProjectsEnabled, isCOTEnabled, isProjectsTransactionsEnabled: _isProjectsTransactionsEnabled, lines, projects, searchAutoComplete, sectionId, transaction, bookCloseDate: _bookCloseDate, cotTracking, entityId: _entityId, isDisabled, isQuickViewMode, isUncategorizedExpenseCategoryEnabled, openTooltipId, setOpenTooltipId, uncategorizedAccounts, lineItemsLocalData: _lineItemsLocalData, }: Readonly<TransactionLinesTableProps>): JSX.Element;
@@ -0,0 +1,32 @@
1
+ import { LineInfo } from '../../common';
2
+ /**
3
+ * Section id used by the new non-journal-entry transaction line table
4
+ * form fields. Mirrors `journalEntryTableSectionId` so caller wiring is
5
+ * symmetric across the two tables.
6
+ */
7
+ export declare const transactionLineTableSectionId = "transactionLineTableSection";
8
+ /** Header row height from Figma frame 5240:7220 (px). */
9
+ export declare const TRANSACTION_LINE_TABLE_HEADER_HEIGHT = 32;
10
+ /** Standard data-row height from Figma frame 5240:7220 (px). */
11
+ export declare const TRANSACTION_LINE_TABLE_ROW_HEIGHT = 48;
12
+ /** Compressed (quick-view / small window) row height. */
13
+ export declare const TRANSACTION_LINE_TABLE_ROW_HEIGHT_COMPACT = 48;
14
+ /**
15
+ * Row height resolver. Today every row is the same height; isolating
16
+ * this here so a future Update-all expansion can return a larger height
17
+ * for the affected row without touching `react-window` wiring.
18
+ */
19
+ export declare const getTransactionLineTableRowHeight: (_line: LineInfo) => number;
20
+ /**
21
+ * Column keys used to address cells, sort, and width lookups.
22
+ *
23
+ * Differences vs. the journal-entry table:
24
+ * - no `name` column (the vendor / payee is rendered once at the
25
+ * transaction header, not per line)
26
+ * - no `debit` / `credit` split — a single `amount` column replaces them
27
+ */
28
+ export declare const TRANSACTION_LINE_COLUMN_KEYS: readonly ["description", "category", "class", "project", "amount"];
29
+ export type TransactionLineColumnKey = (typeof TRANSACTION_LINE_COLUMN_KEYS)[number];
30
+ /** Compressed (quick-view / mobile) columns. */
31
+ export declare const TRANSACTION_LINE_COMPRESSED_COLUMN_KEYS: readonly ["description", "amount"];
32
+ export type TransactionLineCompressedColumnKey = (typeof TRANSACTION_LINE_COMPRESSED_COLUMN_KEYS)[number];
@@ -0,0 +1,12 @@
1
+ import { SortOrder } from '@zeniai/client-epic-state';
2
+ import { DisableMode } from '../../../../formElements/common/common';
3
+ import { TransactionLineRowSortConfig, TransactionLineSortKey } from './transactionLineHeaderConfig';
4
+ export interface TransactionLineTableHeaderProps {
5
+ isAccountingClassesEnabled: boolean;
6
+ showProjectField: boolean;
7
+ sortConfig: TransactionLineRowSortConfig;
8
+ isCompressed?: boolean;
9
+ isDisabled?: DisableMode;
10
+ onColumnSortConfigChanged?: (sortKey: TransactionLineSortKey, sortOrder: SortOrder) => void;
11
+ }
12
+ export declare const TransactionLineTableHeader: ({ sortConfig, isAccountingClassesEnabled, showProjectField, isCompressed, isDisabled, onColumnSortConfigChanged, }: TransactionLineTableHeaderProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,40 @@
1
+ import { SortOrder } from '@zeniai/client-epic-state';
2
+ import { ResponsiveSized } from '../../../../../context/windowSizeProvider';
3
+ import { TransactionLineColumnKey, TransactionLineCompressedColumnKey } from '../common';
4
+ /** Header row height (Figma frame 5240:7220). */
5
+ export declare const DEFAULT_LIST_HEADER_HEIGHT_REGULAR = 32;
6
+ /** Sort key union for the non-JE transaction line table. */
7
+ export type TransactionLineSortKey = "description" | "category" | "class" | "amount";
8
+ export interface TransactionLineRowSortConfig {
9
+ sortKey: TransactionLineSortKey;
10
+ sortOrder: SortOrder;
11
+ }
12
+ /** Default sort the table opens with (mirrors the JE default). */
13
+ export declare const transactionLineDefaultSortConfig: TransactionLineRowSortConfig;
14
+ /**
15
+ * Header item shape (mirrors `journalEntryHeaderConfig.ts` but typed
16
+ * for the non-JE column key union).
17
+ */
18
+ export interface TransactionLineRowHeaderItemData {
19
+ customStyle: {
20
+ cellStyle?: React.CSSProperties;
21
+ common?: React.CSSProperties;
22
+ quickView?: React.CSSProperties;
23
+ };
24
+ key: TransactionLineColumnKey | TransactionLineCompressedColumnKey;
25
+ /** Default direction applied when the column is freshly clicked. */
26
+ sortOrder: SortOrder;
27
+ value: string;
28
+ /** Fixed-pixel widths per breakpoint. */
29
+ width: ResponsiveSized;
30
+ /** Percentage of the content area (0–100) used when the table fits the viewport. */
31
+ widthPercentage: number;
32
+ }
33
+ /**
34
+ * Convenience narrowing helper used by the header click handler. The
35
+ * compressed `amount` key is also sortable but the compressed view does
36
+ * not show sort affordances, so this helper covers full-view sortable
37
+ * keys only.
38
+ */
39
+ export declare const isSortableKey: (key: string) => key is TransactionLineSortKey;
40
+ export declare const toTransactionLineSortKey: (key: string) => TransactionLineSortKey;
@@ -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-CdfFoZvR.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-DQSLdcQs.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;