@zeniai/web-components 4.1.39 → 4.1.41-betaAK1
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.
- package/dist/{SessionTimeoutPopup-DMsGvffQ.cjs → SessionTimeoutPopup-D6HvNkd5.cjs} +14341 -13566
- package/dist/{SessionTimeoutPopup-DOvo5KBP.js → SessionTimeoutPopup-DYgosay6.js} +62916 -60819
- package/dist/appLocale.d.ts +150 -0
- package/dist/cockpit.cjs.js +2 -2
- package/dist/cockpit.esm.js +255 -251
- package/dist/components/common/StyledCapsule.d.ts +1 -1
- package/dist/components/expenseAutomation/ExpenseAutomationPage.d.ts +1 -0
- package/dist/components/expenseAutomation/sections/missingReceipts/MissingReceiptsPage.d.ts +6 -0
- package/dist/components/spendManagement/autoTransferRules/AutoTransferRulePage.d.ts +7 -1
- package/dist/components/spendManagement/cashManagement/AutoSweepFlow.d.ts +50 -0
- package/dist/components/spendManagement/cashManagement/AutoSweepReviewPage.d.ts +43 -0
- package/dist/components/spendManagement/cashManagement/AutoSweepSetupPage.d.ts +117 -0
- package/dist/components/spendManagement/cashManagement/CashManagementBanner.d.ts +20 -0
- package/dist/components/spendManagement/cashManagement/CashManagementNavCTA.d.ts +14 -0
- package/dist/components/spendManagement/cashManagement/CashOverview.d.ts +53 -0
- package/dist/components/spendManagement/cashManagement/OutflowSection.d.ts +8 -0
- package/dist/components/spendManagement/cashManagement/SweepAmountCard.d.ts +11 -0
- package/dist/components/spendManagement/cashManagement/SweepFlowRow.d.ts +29 -0
- package/dist/components/spendManagement/treasury/TreasuryNavBarPieces.d.ts +2 -1
- package/dist/components/spendManagement/treasury/TreasuryOverviewPage.d.ts +8 -0
- package/dist/components/spendManagement/zeniAccounts/ZeniAccountHelper.d.ts +10 -1
- package/dist/components/spendManagement/zeniAccounts/ZeniAccountListViewPage.d.ts +9 -1
- package/dist/components/spendManagement/zeniAccounts/ZeniAccountNavBarPieces.d.ts +2 -1
- package/dist/context/featureProvider/FeatureGateNameConstants.d.ts +2 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.esm.js +283 -279
- package/dist/strings/strings.d.ts +150 -0
- package/package.json +3 -3
- package/dist/components/common/skeletons/StatementListSkeleton.d.ts +0 -5
|
@@ -17,6 +17,12 @@ export interface AutoTransferRulePageProps {
|
|
|
17
17
|
depositAccountListView?: DepositAccountListSelectorView;
|
|
18
18
|
downloadAccountDetailEndPoint?: string;
|
|
19
19
|
editingRuleId?: string | null;
|
|
20
|
+
/**
|
|
21
|
+
* When `true`, suppresses the page-level NavBar. Use when embedding this
|
|
22
|
+
* page inside another page (e.g. as a sub-tab of cash management) that
|
|
23
|
+
* already owns the chrome.
|
|
24
|
+
*/
|
|
25
|
+
hideNavBar?: boolean;
|
|
20
26
|
isEditDrawerOpen?: boolean;
|
|
21
27
|
scrollToAddRule?: boolean;
|
|
22
28
|
zeniAccountsConfigDetail?: ZeniAccountsConfigSelectorView;
|
|
@@ -33,7 +39,7 @@ export interface AutoTransferRulePageProps {
|
|
|
33
39
|
onUpdateRuleLocalData: (localData: AutoTransferRuleLocalData, ruleId?: string) => void;
|
|
34
40
|
onEditClick?: (ruleId: string) => void;
|
|
35
41
|
}
|
|
36
|
-
declare const AutoTransferRulePage: ({ autoTransferRuleView, hasAdminLevelAccess, companyName, analytics, authParams, currentTenant, depositAccountListView, downloadAccountDetailEndPoint, transferLimit, zeniAccountsConfigDetail, onBackClick, onDeleteClick, onPauseClick, onResumeClick, onActivityClick, onUpdateRule, onCreateRule, onReviewClick, includeTreasuryOption, isEditDrawerOpen, editingRuleId, onUpdateRuleLocalData, onEditClick, clearRuleLocalData, onEditDrawerClose, scrollToAddRule, }: AutoTransferRulePageProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
+
declare const AutoTransferRulePage: ({ autoTransferRuleView, hasAdminLevelAccess, companyName, analytics, authParams, currentTenant, depositAccountListView, downloadAccountDetailEndPoint, transferLimit, zeniAccountsConfigDetail, onBackClick, onDeleteClick, onPauseClick, onResumeClick, onActivityClick, onUpdateRule, onCreateRule, onReviewClick, hideNavBar, includeTreasuryOption, isEditDrawerOpen, editingRuleId, onUpdateRuleLocalData, onEditClick, clearRuleLocalData, onEditDrawerClose, scrollToAddRule, }: AutoTransferRulePageProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
43
|
export default AutoTransferRulePage;
|
|
38
44
|
export declare const getAccountLabel: (account?: FundingAccount | {
|
|
39
45
|
accType: string;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, FundingAccount, ID } from '@zeniai/client-epic-state';
|
|
3
|
+
import { RiskLevel, SweepFrequency } from './AutoSweepSetupPage';
|
|
4
|
+
interface TreasurySummaryWithBalance {
|
|
5
|
+
availableBalance: Amount;
|
|
6
|
+
fundAllocations: {
|
|
7
|
+
amount: Amount;
|
|
8
|
+
fundCode: string;
|
|
9
|
+
}[];
|
|
10
|
+
insuredFunds: Amount;
|
|
11
|
+
processingBalance: Amount;
|
|
12
|
+
totalBalance: Amount;
|
|
13
|
+
totalYield: Amount;
|
|
14
|
+
}
|
|
15
|
+
export interface AutoSweepFlowProps {
|
|
16
|
+
averageDailySpend: number;
|
|
17
|
+
coverageDays: number;
|
|
18
|
+
primaryAccount: FundingAccount;
|
|
19
|
+
sourceAccounts: FundingAccount[];
|
|
20
|
+
sweepAmount: number;
|
|
21
|
+
initialFrequency?: SweepFrequency;
|
|
22
|
+
initialMemo?: string;
|
|
23
|
+
/** Initial state for the form. */
|
|
24
|
+
initialRisk?: RiskLevel;
|
|
25
|
+
sweepAmounts?: Record<ID, number>;
|
|
26
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
27
|
+
/** Fired when the user clicks "Confirm Sweep" on the review screen. */
|
|
28
|
+
onConfirm?: (params: {
|
|
29
|
+
frequency: SweepFrequency;
|
|
30
|
+
memo: string;
|
|
31
|
+
risk: RiskLevel;
|
|
32
|
+
selectedSourceAccountIds: ID[];
|
|
33
|
+
}) => void;
|
|
34
|
+
/** Fired when the user clicks the back arrow on the setup screen. */
|
|
35
|
+
onExit?: () => void;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Step state machine that pairs `AutoSweepSetupPage` and `AutoSweepReviewPage`.
|
|
39
|
+
*
|
|
40
|
+
* - Setup → Review: triggered by `onReviewClick` (Review Sweep button).
|
|
41
|
+
* - Review → Setup: triggered by `onEditClick` (Edit button).
|
|
42
|
+
* - Review → Confirm: triggered by `onConfirmClick`; bubbles up via `onConfirm`.
|
|
43
|
+
*
|
|
44
|
+
* Use this component in stories or screens that need the full
|
|
45
|
+
* "configure → review → confirm" flow without their own routing layer.
|
|
46
|
+
* In production a router-driven container can render the two pages on
|
|
47
|
+
* separate routes instead of using this wrapper.
|
|
48
|
+
*/
|
|
49
|
+
declare const AutoSweepFlow: React.FC<AutoSweepFlowProps>;
|
|
50
|
+
export default AutoSweepFlow;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, FundingAccount, ID } from '@zeniai/client-epic-state';
|
|
3
|
+
import { RiskLevel } from './AutoSweepSetupPage';
|
|
4
|
+
interface TreasurySummaryWithBalance {
|
|
5
|
+
availableBalance: Amount;
|
|
6
|
+
fundAllocations: {
|
|
7
|
+
amount: Amount;
|
|
8
|
+
fundCode: string;
|
|
9
|
+
}[];
|
|
10
|
+
insuredFunds: Amount;
|
|
11
|
+
processingBalance: Amount;
|
|
12
|
+
totalBalance: Amount;
|
|
13
|
+
totalYield: Amount;
|
|
14
|
+
}
|
|
15
|
+
export interface AutoSweepReviewPageProps {
|
|
16
|
+
averageDailySpend: number;
|
|
17
|
+
bufferAmount: number;
|
|
18
|
+
bufferCushionAmount: number;
|
|
19
|
+
coverageDays: number;
|
|
20
|
+
operatingBalance: number;
|
|
21
|
+
primaryAccount: FundingAccount;
|
|
22
|
+
risk: RiskLevel;
|
|
23
|
+
/**
|
|
24
|
+
* Subset of `sourceAccounts` ids the user picked on the setup page.
|
|
25
|
+
* Drives the source-icon cluster + count badge in the FlowRow so it
|
|
26
|
+
* matches what was shown on the setup screen.
|
|
27
|
+
*/
|
|
28
|
+
selectedSourceAccountIds: ID[];
|
|
29
|
+
sourceAccounts: FundingAccount[];
|
|
30
|
+
sweepAmount: number;
|
|
31
|
+
estimatedDaysLabel?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Treasury account summary used to render the destination ("Treasury")
|
|
34
|
+
* label and its current available balance. Source:
|
|
35
|
+
* `getTreasuryDetail(state).accountSummary`.
|
|
36
|
+
*/
|
|
37
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
38
|
+
onBackClick?: () => void;
|
|
39
|
+
onConfirmClick?: () => void;
|
|
40
|
+
onEditClick?: () => void;
|
|
41
|
+
}
|
|
42
|
+
declare const AutoSweepReviewPage: React.FC<AutoSweepReviewPageProps>;
|
|
43
|
+
export default AutoSweepReviewPage;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, FundingAccount, ID } from '@zeniai/client-epic-state';
|
|
3
|
+
interface TreasurySummaryWithBalance {
|
|
4
|
+
availableBalance: Amount;
|
|
5
|
+
fundAllocations: {
|
|
6
|
+
amount: Amount;
|
|
7
|
+
fundCode: string;
|
|
8
|
+
}[];
|
|
9
|
+
insuredFunds: Amount;
|
|
10
|
+
processingBalance: Amount;
|
|
11
|
+
totalBalance: Amount;
|
|
12
|
+
totalYield: Amount;
|
|
13
|
+
}
|
|
14
|
+
export type RiskLevel = "low" | "moderate" | "high";
|
|
15
|
+
export type SweepFrequency = "daily" | "weekly" | "biweekly" | "monthly";
|
|
16
|
+
/**
|
|
17
|
+
* Wiring (web-app-ui container):
|
|
18
|
+
*
|
|
19
|
+
* ```ts
|
|
20
|
+
* import {
|
|
21
|
+
* getCommonSetupViewDetails,
|
|
22
|
+
* SetupView,
|
|
23
|
+
* } from "@zeniai/client-epic-state";
|
|
24
|
+
*
|
|
25
|
+
* const setupView: SetupView = useSelector((state: RootState) =>
|
|
26
|
+
* getCommonSetupViewDetails(state, companyId, "zeni_treasury", "zeniAccounts")
|
|
27
|
+
* );
|
|
28
|
+
*
|
|
29
|
+
* // primaryFundingAccount is resolved via companyTreasuryInfo.primaryFundingAccount
|
|
30
|
+
* // → mapped to FundingAccount through mapDepositAccToFundingAccount /
|
|
31
|
+
* // mapPaymentAccToFundingAccount inside the selector.
|
|
32
|
+
* if (setupView.primaryFundingAccount == null) {
|
|
33
|
+
* return <TreasurySetupPromo />; // no primary set yet — guard upstream
|
|
34
|
+
* }
|
|
35
|
+
*
|
|
36
|
+
* return (
|
|
37
|
+
* <AutoSweepSetupPage
|
|
38
|
+
* primaryAccount={setupView.primaryFundingAccount}
|
|
39
|
+
* sourceAccounts={setupView.allFundingAccounts}
|
|
40
|
+
* sweepAmounts={...} // TODO(CES): see notes below
|
|
41
|
+
* sweepAmount={...} // TODO(CES): see notes below
|
|
42
|
+
* coverageDays={...} // TODO(CES): see notes below
|
|
43
|
+
* averageDailySpend={...} // TODO(CES): see notes below
|
|
44
|
+
* treasurySummary={treasuryDetail.accountSummary}
|
|
45
|
+
* onReviewClick={(params) => {
|
|
46
|
+
* // TODO(web-app-ui): persist params into local form state and
|
|
47
|
+
* // navigate to AutoSweepReviewPage route.
|
|
48
|
+
* }}
|
|
49
|
+
* />
|
|
50
|
+
* );
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* TODO(CES) — additional state/selectors/actions still needed to fully wire
|
|
54
|
+
* this up against backend data; the existing `getCommonSetupViewDetails`
|
|
55
|
+
* only covers `primaryFundingAccount` + `allFundingAccounts`:
|
|
56
|
+
* 1. Auto-sweep recommendation selector — returns
|
|
57
|
+
* `{sweepAmount, coverageDays, averageDailySpend, perAccountSweepAmount}`
|
|
58
|
+
* computed from balances, payroll schedule, and the chosen risk buffer.
|
|
59
|
+
* 2. Auto-sweep config state slice — persists user selections
|
|
60
|
+
* `{risk, memo, frequency, selectedSourceAccountIds}`, plus a
|
|
61
|
+
* `FetchStateAndError` for save/submit.
|
|
62
|
+
* 3. Action + epic to submit the auto-sweep config (create / update).
|
|
63
|
+
* 4. Action + epic to initiate a one-off sweep transfer (used by
|
|
64
|
+
* AutoSweepReviewPage's `Confirm Sweep`).
|
|
65
|
+
* 5. Selector to derive the in-progress / completed sweep status that
|
|
66
|
+
* drives `CashManagementBanner` (`status: "in_progress" | "complete"`).
|
|
67
|
+
*
|
|
68
|
+
* TODO(web-app-ui) — container/screen still needed:
|
|
69
|
+
* 1. New route + screen `AutoSweepSetupScreen` under
|
|
70
|
+
* `screens/cashManagement/` that calls `getCommonSetupViewDetails(
|
|
71
|
+
* state, companyId, "zeni_treasury", "zeniAccounts")` and the
|
|
72
|
+
* recommendation selector above, then renders this component.
|
|
73
|
+
* 2. `onReviewClick` handler — store form params (e.g. via location
|
|
74
|
+
* state or a route-scoped reducer) and `navigate` to
|
|
75
|
+
* `AutoSweepReviewScreen`.
|
|
76
|
+
* 3. `AutoSweepReviewScreen` — reads the same form params, renders
|
|
77
|
+
* `AutoSweepReviewPage`, and on `onConfirmClick` dispatches the
|
|
78
|
+
* submit-config + initiate-sweep actions, then navigates to the
|
|
79
|
+
* cash overview with the in-progress banner showing.
|
|
80
|
+
*/
|
|
81
|
+
export interface AutoSweepSetupPageProps {
|
|
82
|
+
averageDailySpend: number;
|
|
83
|
+
coverageDays: number;
|
|
84
|
+
/**
|
|
85
|
+
* Primary funding account that performs the actual transfer to Treasury.
|
|
86
|
+
* Source: `getCommonSetupViewDetails(...).primaryFundingAccount` with
|
|
87
|
+
* `setupViewType: "zeni_treasury"`.
|
|
88
|
+
*/
|
|
89
|
+
primaryAccount: FundingAccount;
|
|
90
|
+
/**
|
|
91
|
+
* All connected source accounts that can top up the primary.
|
|
92
|
+
* Source: `getCommonSetupViewDetails(...).allFundingAccounts`.
|
|
93
|
+
*/
|
|
94
|
+
sourceAccounts: FundingAccount[];
|
|
95
|
+
sweepAmount: number;
|
|
96
|
+
frequency?: SweepFrequency;
|
|
97
|
+
memo?: string;
|
|
98
|
+
risk?: RiskLevel;
|
|
99
|
+
/** Per-account sweep amount keyed by FundingAccount id. */
|
|
100
|
+
sweepAmounts?: Record<ID, number>;
|
|
101
|
+
/**
|
|
102
|
+
* Treasury account summary used to render the destination ("Treasury")
|
|
103
|
+
* label and its current available balance. Source:
|
|
104
|
+
* `getTreasuryDetail(state).accountSummary`.
|
|
105
|
+
*/
|
|
106
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
107
|
+
onBackClick?: () => void;
|
|
108
|
+
onCancelClick?: () => void;
|
|
109
|
+
onReviewClick?: (params: {
|
|
110
|
+
frequency: SweepFrequency;
|
|
111
|
+
memo: string;
|
|
112
|
+
risk: RiskLevel;
|
|
113
|
+
selectedSourceAccountIds: ID[];
|
|
114
|
+
}) => void;
|
|
115
|
+
}
|
|
116
|
+
declare const AutoSweepSetupPage: React.FC<AutoSweepSetupPageProps>;
|
|
117
|
+
export default AutoSweepSetupPage;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export type CashManagementBannerStatus = "not_set_up" | "in_progress" | "complete";
|
|
3
|
+
export interface CashManagementBannerProps {
|
|
4
|
+
amount: number;
|
|
5
|
+
status: CashManagementBannerStatus;
|
|
6
|
+
bufferAmount?: number;
|
|
7
|
+
completedAtLabel?: string;
|
|
8
|
+
estimatedAnnualYield?: number;
|
|
9
|
+
estimatedDaysLabel?: string;
|
|
10
|
+
frequencyLabel?: string;
|
|
11
|
+
initiatedAtLabel?: string;
|
|
12
|
+
nextSweepDateLabel?: string;
|
|
13
|
+
payrollAmount?: number;
|
|
14
|
+
payrollDateLabel?: string;
|
|
15
|
+
style?: React.CSSProperties;
|
|
16
|
+
onSetUpAutoSweepClick?: () => void;
|
|
17
|
+
onViewDetailsClick?: () => void;
|
|
18
|
+
}
|
|
19
|
+
declare const CashManagementBanner: React.FC<CashManagementBannerProps>;
|
|
20
|
+
export default CashManagementBanner;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface CashManagementNavCTAProps {
|
|
3
|
+
/** Override the gate check (e.g. for storybook). When omitted, reads `is_cash_management_feature_enabled`. */
|
|
4
|
+
isFeatureEnabled?: boolean;
|
|
5
|
+
onClick: () => void;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Right-side navbar CTA that links to the Cash Management page.
|
|
9
|
+
*
|
|
10
|
+
* Gated behind `is_cash_management_feature_enabled`. Renders nothing when
|
|
11
|
+
* the gate is off so it can be safely dropped into existing navbars.
|
|
12
|
+
*/
|
|
13
|
+
declare const CashManagementNavCTA: React.FC<CashManagementNavCTAProps>;
|
|
14
|
+
export default CashManagementNavCTA;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { UpcomingPaymentEvent } from '@zeniai/client-epic-state';
|
|
3
|
+
import { AutoTransferRulePageProps } from '../autoTransferRules/AutoTransferRulePage';
|
|
4
|
+
import { CashManagementBannerProps } from './CashManagementBanner';
|
|
5
|
+
export type ProjectionGranularity = "daily" | "weekly" | "monthly";
|
|
6
|
+
export interface ProjectionDataPoint {
|
|
7
|
+
balance: number;
|
|
8
|
+
date: string;
|
|
9
|
+
isInflow?: boolean;
|
|
10
|
+
isOutflow?: boolean;
|
|
11
|
+
}
|
|
12
|
+
export type CashManagementTabId = "overview" | "autoTransferRules";
|
|
13
|
+
export interface CashOverviewProps {
|
|
14
|
+
bufferAmount: number;
|
|
15
|
+
cashBalance: number;
|
|
16
|
+
cashFlowTotal: number;
|
|
17
|
+
inflows: number;
|
|
18
|
+
outflowItems: UpcomingPaymentEvent[];
|
|
19
|
+
outflows: number;
|
|
20
|
+
projectionData: ProjectionDataPoint[];
|
|
21
|
+
totalCash: number;
|
|
22
|
+
treasuryBalance: number;
|
|
23
|
+
/**
|
|
24
|
+
* Props passed through to `<AutoTransferRulePage />` rendered under the
|
|
25
|
+
* "Auto Transfer Rules" tab. When omitted and `isAutoTransferRulesLoading`
|
|
26
|
+
* is false, that tab renders an empty state.
|
|
27
|
+
*/
|
|
28
|
+
autoTransferRulePageProps?: AutoTransferRulePageProps;
|
|
29
|
+
/**
|
|
30
|
+
* When provided, renders `<CashManagementBanner>` just below the NavBar.
|
|
31
|
+
* The consumer is responsible for picking the right `status` and
|
|
32
|
+
* gating on the cash-management feature flag.
|
|
33
|
+
*/
|
|
34
|
+
cashManagementBannerProps?: CashManagementBannerProps;
|
|
35
|
+
granularity?: ProjectionGranularity;
|
|
36
|
+
/** Initial active tab; defaults to `"overview"`. */
|
|
37
|
+
initialTab?: CashManagementTabId;
|
|
38
|
+
/**
|
|
39
|
+
* When `true`, the auto transfer rules tab renders a skeleton placeholder
|
|
40
|
+
* instead of the empty state. Use while the rules selector is fetching.
|
|
41
|
+
*/
|
|
42
|
+
isAutoTransferRulesLoading?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* When `true`, the upcoming outflows table renders a skeleton placeholder
|
|
45
|
+
* in place of its rows. Use while the upcoming-payment-events selector is
|
|
46
|
+
* fetching.
|
|
47
|
+
*/
|
|
48
|
+
isOutflowsLoading?: boolean;
|
|
49
|
+
onBackClick?: () => void;
|
|
50
|
+
onGranularityChange?: (granularity: ProjectionGranularity) => void;
|
|
51
|
+
}
|
|
52
|
+
declare const CashOverview: React.FC<CashOverviewProps>;
|
|
53
|
+
export default CashOverview;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { UpcomingPaymentEvent } from '@zeniai/client-epic-state';
|
|
3
|
+
export interface OutflowSectionProps {
|
|
4
|
+
items: UpcomingPaymentEvent[];
|
|
5
|
+
}
|
|
6
|
+
export declare const OUTFLOW_COL_PCTS: readonly [45, 30, 25];
|
|
7
|
+
declare const OutflowSection: React.FC<OutflowSectionProps>;
|
|
8
|
+
export default OutflowSection;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface SweepAmountCardProps {
|
|
3
|
+
averageDailySpend: number;
|
|
4
|
+
coverageDays: number;
|
|
5
|
+
sweepAmount: number;
|
|
6
|
+
/** Word(s) preceding the days count. Defaults to "Covers". */
|
|
7
|
+
coverageLabel?: string;
|
|
8
|
+
style?: React.CSSProperties;
|
|
9
|
+
}
|
|
10
|
+
declare const SweepAmountCard: React.FC<SweepAmountCardProps>;
|
|
11
|
+
export default SweepAmountCard;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, FundingAccount } from '@zeniai/client-epic-state';
|
|
3
|
+
interface TreasurySummaryWithBalance {
|
|
4
|
+
availableBalance: Amount;
|
|
5
|
+
fundAllocations: {
|
|
6
|
+
amount: Amount;
|
|
7
|
+
fundCode: string;
|
|
8
|
+
}[];
|
|
9
|
+
insuredFunds: Amount;
|
|
10
|
+
processingBalance: Amount;
|
|
11
|
+
totalBalance: Amount;
|
|
12
|
+
totalYield: Amount;
|
|
13
|
+
}
|
|
14
|
+
export interface SweepFlowRowProps {
|
|
15
|
+
/** Primary funding account that performs the actual transfer to Treasury. */
|
|
16
|
+
primaryAccount: FundingAccount;
|
|
17
|
+
/**
|
|
18
|
+
* Subset of `sourceAccounts` to display in the icon cluster + count.
|
|
19
|
+
* - On the setup page this is reactive to checkbox state.
|
|
20
|
+
* - On the review page this is read-only (passed in by the caller).
|
|
21
|
+
*/
|
|
22
|
+
selectedAccounts: FundingAccount[];
|
|
23
|
+
/** Full list of source accounts (used as the lookup pool for icons/sublabels). */
|
|
24
|
+
sourceAccounts: FundingAccount[];
|
|
25
|
+
/** Treasury account summary; rendered as the destination ("Treasury" + available balance). */
|
|
26
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
27
|
+
}
|
|
28
|
+
declare const SweepFlowRow: React.FC<SweepFlowRowProps>;
|
|
29
|
+
export default SweepFlowRow;
|
|
@@ -13,6 +13,7 @@ export interface TreasuryNavBarPiecesProps {
|
|
|
13
13
|
onOptionSelection: (value: MoreOption) => void;
|
|
14
14
|
onTransferClick: () => void;
|
|
15
15
|
onAutoTransferClick?: () => void;
|
|
16
|
+
onCashManagementClick?: () => void;
|
|
16
17
|
onCommentIconClick?: () => void;
|
|
17
18
|
}
|
|
18
|
-
export declare const TreasuryNavBarPieces: ({ isAutoTransferRuleEnabled, onOptionSelection, onTransferClick, onAutoTransferClick, isTreasuryCommentingEnabled, isThreadsLoading, threadsCount, onCommentIconClick, }: TreasuryNavBarPiecesProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare const TreasuryNavBarPieces: ({ isAutoTransferRuleEnabled, onOptionSelection, onTransferClick, onAutoTransferClick, onCashManagementClick, isTreasuryCommentingEnabled, isThreadsLoading, threadsCount, onCommentIconClick, }: TreasuryNavBarPiecesProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
import { SortOrder, TreasuryDetailSelectorView, TreasurySetupView, TreasuryViewSortKey } from '@zeniai/client-epic-state';
|
|
2
2
|
import { RequestToOpenThreadType } from '../../commentsAndNotes/utils/ThreadsProvider';
|
|
3
|
+
import { CashManagementBannerProps } from '../cashManagement/CashManagementBanner';
|
|
3
4
|
import { MoreOption } from './TreasuryNavBarPieces';
|
|
4
5
|
export interface TreasuryOverviewPageProps {
|
|
5
6
|
isAutoTransferRuleEnabled: boolean;
|
|
6
7
|
treasuryDetail: TreasuryDetailSelectorView;
|
|
7
8
|
treasurySetupView: TreasurySetupView;
|
|
9
|
+
/**
|
|
10
|
+
* When provided, renders `<CashManagementBanner>` just below the NavBar.
|
|
11
|
+
* The consumer is responsible for picking the right `status` and
|
|
12
|
+
* gating on the cash-management feature flag.
|
|
13
|
+
*/
|
|
14
|
+
cashManagementBannerProps?: CashManagementBannerProps;
|
|
8
15
|
initialOpenThreadRequest?: RequestToOpenThreadType;
|
|
9
16
|
isAiCfoAccessEnabled?: boolean;
|
|
10
17
|
isLoading?: boolean;
|
|
@@ -15,6 +22,7 @@ export interface TreasuryOverviewPageProps {
|
|
|
15
22
|
onColumnSortConfigChanged: (sortKey: TreasuryViewSortKey, sortOrder: SortOrder) => void;
|
|
16
23
|
onTransferClick: () => void;
|
|
17
24
|
onAskAiCfoClick?: () => void;
|
|
25
|
+
onCashManagementClick?: () => void;
|
|
18
26
|
onClickMenuIcon?: () => void;
|
|
19
27
|
onReloadTreasuryTransactions?: () => void;
|
|
20
28
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AutoTransferRule, DepositAccount, PaymentAccount } from '@zeniai/client-epic-state';
|
|
1
|
+
import { AutoTransferRule, DepositAccount, FundingAccount, ID, PaymentAccount } from '@zeniai/client-epic-state';
|
|
2
2
|
export declare const buildAccountNameById: (depositAccounts: DepositAccount[], paymentAccounts: PaymentAccount[] | undefined) => Map<string, string>;
|
|
3
3
|
export interface AutoTransferRuleSummary {
|
|
4
4
|
subtitle: string;
|
|
@@ -10,3 +10,12 @@ export declare const toMoveMoneyOptionTypeStrict: (option?: string) => "transfer
|
|
|
10
10
|
export type MoveMoneyOption = NonNullable<ReturnType<typeof toMoveMoneyOptionTypeStrict>>;
|
|
11
11
|
export declare const ACCOUNTS_COLOR_PALETTE_LIST: string[];
|
|
12
12
|
export declare const getAccountsColorMappingFromIndex: (index: number) => string;
|
|
13
|
+
/**
|
|
14
|
+
* Renders a logo for a FundingAccount as a 100%-of-parent element.
|
|
15
|
+
* Callers control the size by sizing the wrapping container.
|
|
16
|
+
*
|
|
17
|
+
* - depositAccount → ZeniBrandCheckingAccIcon colored from index
|
|
18
|
+
* - paymentAccount with a logo (base64 or url) → bank logo image
|
|
19
|
+
* - paymentAccount without a logo → ExternalAccountIcon SVG fallback
|
|
20
|
+
*/
|
|
21
|
+
export declare const renderAccountIcon: (accounts: FundingAccount[], accountId: ID) => JSX.Element | null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ClientAnalytics } from '@zeniai/client-analytics';
|
|
2
2
|
import { DepositAccount, ID, ZeniAccountListSelectorView } from '@zeniai/client-epic-state';
|
|
3
|
+
import { CashManagementBannerProps } from '../cashManagement/CashManagementBanner';
|
|
3
4
|
import { MoveMoneyOption } from './ZeniAccountHelper';
|
|
4
5
|
export interface ZeniAccountListViewPageProps {
|
|
5
6
|
analytics: ClientAnalytics;
|
|
@@ -8,6 +9,12 @@ export interface ZeniAccountListViewPageProps {
|
|
|
8
9
|
isExpressPayEnabled: boolean;
|
|
9
10
|
maxInsuredAmount: number;
|
|
10
11
|
zeniAccountListView: ZeniAccountListSelectorView;
|
|
12
|
+
/**
|
|
13
|
+
* When provided, renders `<CashManagementBanner>` just below the NavBar.
|
|
14
|
+
* The consumer is responsible for picking the right `status` and
|
|
15
|
+
* gating on the cash-management feature flag.
|
|
16
|
+
*/
|
|
17
|
+
cashManagementBannerProps?: CashManagementBannerProps;
|
|
11
18
|
isAiCfoAccessEnabled?: boolean;
|
|
12
19
|
isCheckingCommentingEnabled?: boolean;
|
|
13
20
|
showTreasuryPromo?: boolean;
|
|
@@ -18,10 +25,11 @@ export interface ZeniAccountListViewPageProps {
|
|
|
18
25
|
onSettingsClick: () => void;
|
|
19
26
|
onZeniAccountClick: (id: ID, name: string) => void;
|
|
20
27
|
onAskAiCfoClick?: () => void;
|
|
28
|
+
onCashManagementClick?: () => void;
|
|
21
29
|
onClickMenuIcon?: () => void;
|
|
22
30
|
onCreateCheckingClick?: (nickName: string) => void;
|
|
23
31
|
onReloadTransactions?: () => void;
|
|
24
32
|
onTreasuryGetStartedClick?: () => void;
|
|
25
33
|
}
|
|
26
|
-
declare const ZeniAccountListViewPage: ({ zeniAccountListView, analytics, maxInsuredAmount, isBillPayEnabled, isCheckingCommentingEnabled, isExpressPayEnabled, isAutoTransferRuleEnabled, onZeniAccountClick, onSettingsClick, onAutoTransferClick, handleMoveMoneyOptionSelection, onReloadTransactions, onCreateCheckingClick, onClickMenuIcon, onTreasuryGetStartedClick, showTreasuryPromo, treasuryYieldPercentage, treasuryInsuredAmount, isAiCfoAccessEnabled, onAskAiCfoClick, }: ZeniAccountListViewPageProps) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
declare const ZeniAccountListViewPage: ({ zeniAccountListView, analytics, maxInsuredAmount, isBillPayEnabled, isCheckingCommentingEnabled, isExpressPayEnabled, isAutoTransferRuleEnabled, onZeniAccountClick, onSettingsClick, onAutoTransferClick, handleMoveMoneyOptionSelection, onReloadTransactions, onCreateCheckingClick, onClickMenuIcon, onTreasuryGetStartedClick, showTreasuryPromo, treasuryYieldPercentage, treasuryInsuredAmount, isAiCfoAccessEnabled, onAskAiCfoClick, onCashManagementClick, cashManagementBannerProps, }: ZeniAccountListViewPageProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
35
|
export default ZeniAccountListViewPage;
|
|
@@ -29,7 +29,8 @@ export interface ZeniAccountNavBarPiecesProps {
|
|
|
29
29
|
onAccountDetailClick?: () => void;
|
|
30
30
|
onAutoTransferClick?: () => void;
|
|
31
31
|
onBankLetterClick?: () => void;
|
|
32
|
+
onCashManagementClick?: () => void;
|
|
32
33
|
onCommentIconClick?: () => void;
|
|
33
34
|
onSettingsClick?: () => void;
|
|
34
35
|
}
|
|
35
|
-
export declare const ZeniAccountNavBarPieces: ({ zeniBankProps, isAutoTransferRuleEnabled, isBillPayEnabled, isCheckingCommentingEnabled, isExpressPayEnabled, isThreadsLoading, analytics, onAutoTransferClick, onCommentIconClick, onSettingsClick, onAccountDetailClick, onBankLetterClick, showLoader, threadsCount, }: ZeniAccountNavBarPiecesProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
export declare const ZeniAccountNavBarPieces: ({ zeniBankProps, isAutoTransferRuleEnabled, isBillPayEnabled, isCheckingCommentingEnabled, isExpressPayEnabled, isThreadsLoading, analytics, onAutoTransferClick, onCashManagementClick, onCommentIconClick, onSettingsClick, onAccountDetailClick, onBankLetterClick, showLoader, threadsCount, }: ZeniAccountNavBarPiecesProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -56,6 +56,7 @@ export declare enum FeatureGatesNamesWebApp {
|
|
|
56
56
|
isChargeCardPaymentHistoryFeatureEnabled = "is_charge_card_payment_history_feature_enabled",
|
|
57
57
|
isIssuePhysicalDebitCardEnabled = "is_issue_physical_debit_card_enabled",
|
|
58
58
|
isAutoTransferRuleEnabled = "is_auto_transfer_rule_enabled",
|
|
59
|
+
isCashManagementFeatureEnabled = "is_cash_management_feature_enabled",
|
|
59
60
|
/** Missing receipts: bulk upload (Statsig gate `is_missing_receipts_bulk_upload_enabled`). */
|
|
60
61
|
isMissingReceiptsBulkUploadEnabled = "is_missing_receipts_bulk_upload_enabled",
|
|
61
62
|
isAiCfoFileUploadEnabled = "is_ai_cfo_file_upload_enabled",
|
|
@@ -134,6 +135,7 @@ export declare const FeatureGatesNames: {
|
|
|
134
135
|
isChargeCardPaymentHistoryFeatureEnabled: FeatureGatesNamesWebApp.isChargeCardPaymentHistoryFeatureEnabled;
|
|
135
136
|
isIssuePhysicalDebitCardEnabled: FeatureGatesNamesWebApp.isIssuePhysicalDebitCardEnabled;
|
|
136
137
|
isAutoTransferRuleEnabled: FeatureGatesNamesWebApp.isAutoTransferRuleEnabled;
|
|
138
|
+
isCashManagementFeatureEnabled: FeatureGatesNamesWebApp.isCashManagementFeatureEnabled;
|
|
137
139
|
isMissingReceiptsBulkUploadEnabled: FeatureGatesNamesWebApp.isMissingReceiptsBulkUploadEnabled;
|
|
138
140
|
isAiCfoFileUploadEnabled: FeatureGatesNamesWebApp.isAiCfoFileUploadEnabled;
|
|
139
141
|
isAiCfoNavButtonEnabled: FeatureGatesNamesWebApp.isAiCfoNavButtonEnabled;
|
package/dist/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-DMsGvffQ.cjs"),a=require("./vendor-.pnpm-Dd2Fl0gB.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.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.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.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-D6HvNkd5.cjs"),a=require("./vendor-.pnpm-Dd2Fl0gB.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.AutoSweepFlow=e.AutoSweepFlow;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.CashManagementBanner=e.CashManagementBanner;exports.CashManagementNavCTA=e.CashManagementNavCTA;exports.CashOverview=e.CashOverview;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.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.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.TaskDetailPage=e.TaskDetailPage;exports.TaskManagementPage=e.TaskManagementPage;exports.TenantsDropDown=e.TenantsDropDown;exports.TextStyle=e.TextStyle;exports.ToolkitProvider=e.ToolkitProvider;exports.TopExDetailPage=e.TopExDetailPage;exports.TransactionActivityLogPage=e.TransactionActivityLogPage;exports.TransactionActivityLogPanel=e.TransactionActivityLogPanel;exports.TransactionDetailPage=e.TransactionDetailPage;exports.TransactionDetailSkeleton=e.TransactionDetailSkeleton;exports.TransactionListBig=e.TransactionListBig;exports.TransactionListPage=e.TransactionListPage;exports.TransactionPanelInternalContext=e.TransactionPanelInternalContext;exports.TransactionSidePanelLayout=e.TransactionSidePanelLayout;exports.TransactionVendorDetailPage=e.TransactionVendorDetailPage;exports.TransferDrawerPage=e.TransferDrawerPage;exports.TreasuryOverviewPage=e.TreasuryOverviewPage;exports.TreasuryPromoPage=e.TreasuryPromoPage;exports.TreasurySetUpPage=e.TreasurySetUpPage;exports.TreasuryStatementsPage=e.TreasuryStatementsPage;exports.TreasuryTaxLetterPage=e.TreasuryTaxLetterPage;exports.TreasuryTransferOrReviewPage=e.TreasuryTransferOrReviewPage;exports.TrendChart=e.TrendChart;exports.UncategorizedAccountsMappingPage=e.UncategorizedAccountsMappingPage;exports.UnitIntegrationPage=e.UnitIntegrationPage;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.VerifyDevice=e.VerifyDevice;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.buildStickyKeySet=e.buildStickyKeySet;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useAgentPerfAccess=e.useAgentPerfAccess;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSchedulePanelInternal=e.useSchedulePanelInternal;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useTransactionPanelInternal=e.useTransactionPanelInternal;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;exports.zeniEmotionStyled=t;
|
package/dist/index.d.ts
CHANGED
|
@@ -403,6 +403,16 @@ export { default as TreasuryTaxLetterPage } from './components/spendManagement/t
|
|
|
403
403
|
export type { MoreOption as TreasuryMoreOption } from './components/spendManagement/treasury/TreasuryNavBarPieces';
|
|
404
404
|
export type { ZeniCreditPromoCardData } from './components/cards/summaryCard/promoCards/ZeniCreditPromoCardStack';
|
|
405
405
|
export { default as AutoTransferRulePage } from './components/spendManagement/autoTransferRules/AutoTransferRulePage';
|
|
406
|
+
export type { AutoTransferRulePageProps } from './components/spendManagement/autoTransferRules/AutoTransferRulePage';
|
|
407
|
+
export { default as CashOverview } from './components/spendManagement/cashManagement/CashOverview';
|
|
408
|
+
export type { CashManagementTabId, CashOverviewProps, ProjectionDataPoint, ProjectionGranularity, } from './components/spendManagement/cashManagement/CashOverview';
|
|
409
|
+
export { default as AutoSweepFlow } from './components/spendManagement/cashManagement/AutoSweepFlow';
|
|
410
|
+
export type { AutoSweepFlowProps } from './components/spendManagement/cashManagement/AutoSweepFlow';
|
|
411
|
+
export type { RiskLevel as AutoSweepRiskLevel, SweepFrequency as AutoSweepFrequency, } from './components/spendManagement/cashManagement/AutoSweepSetupPage';
|
|
412
|
+
export { default as CashManagementBanner } from './components/spendManagement/cashManagement/CashManagementBanner';
|
|
413
|
+
export type { CashManagementBannerProps, CashManagementBannerStatus, } from './components/spendManagement/cashManagement/CashManagementBanner';
|
|
414
|
+
export { default as CashManagementNavCTA } from './components/spendManagement/cashManagement/CashManagementNavCTA';
|
|
415
|
+
export type { CashManagementNavCTAProps } from './components/spendManagement/cashManagement/CashManagementNavCTA';
|
|
406
416
|
export { default as TransactionActivityLogPage } from './components/transactionActivityLog/TransactionActivityLogPage';
|
|
407
417
|
export type { TransactionActivityLogPageProps } from './components/transactionActivityLog/TransactionActivityLogPage';
|
|
408
418
|
export { default as TransactionActivityLogPanel } from './components/transactionActivityLog/TransactionActivityLogPanel';
|