@zeniai/web-components 4.1.64 → 4.1.66
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-zmhAcQXN.js → SessionTimeoutPopup-rwQ6r9d_.js} +65360 -63126
- package/dist/{SessionTimeoutPopup-B29x-tPV.cjs → SessionTimeoutPopup-zNdpWhsF.cjs} +15592 -14753
- package/dist/appLocale.d.ts +185 -0
- package/dist/cockpit.cjs.js +2 -2
- package/dist/cockpit.esm.js +291 -287
- package/dist/components/common/StyledCapsule.d.ts +3 -1
- package/dist/components/spendManagement/autoTransferRules/AutoTransferRulePage.d.ts +7 -1
- package/dist/components/spendManagement/autoTransferRules/ExistingRulesSection.d.ts +7 -2
- package/dist/components/spendManagement/autoTransferRules/ReviewAutoTransferRuleDrawer.d.ts +0 -1
- package/dist/components/spendManagement/cashManagement/AutoSweepFlow.d.ts +69 -0
- package/dist/components/spendManagement/cashManagement/AutoSweepReviewPage.d.ts +39 -0
- package/dist/components/spendManagement/cashManagement/AutoSweepSetupPage.d.ts +37 -0
- package/dist/components/spendManagement/cashManagement/CashManagementBanner.d.ts +21 -0
- package/dist/components/spendManagement/cashManagement/CashManagementNavCTA.d.ts +14 -0
- package/dist/components/spendManagement/cashManagement/CashOverview.d.ts +47 -0
- package/dist/components/spendManagement/cashManagement/OutflowSection.d.ts +8 -0
- package/dist/components/spendManagement/cashManagement/SweepAmountCard.d.ts +8 -0
- package/dist/components/spendManagement/cashManagement/SweepFlowRow.d.ts +21 -0
- package/dist/components/spendManagement/cashManagement/skeletons/CashManagementBannerSkeleton.d.ts +6 -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/components/transactionDetail/items/journalEntryTable/TransactionLinesJournalEntryTable.d.ts +1 -1
- package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableTypes.d.ts +4 -2
- package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesTable.d.ts +1 -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 +319 -315
- package/dist/strings/strings.d.ts +185 -0
- package/package.json +3 -3
- package/dist/components/common/skeletons/StatementListSkeleton.d.ts +0 -5
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { Colors } from '../../designSystem/zeniConstants';
|
|
1
2
|
export type StyledCapsuleThemeType = "default" | "warning" | "info" | "success" | "attention";
|
|
2
3
|
export interface StyledCapsuleProps {
|
|
3
|
-
label: string;
|
|
4
|
+
label: string | React.ReactElement;
|
|
4
5
|
capsuleBackground?: string;
|
|
5
6
|
className?: string;
|
|
6
7
|
dataTestId?: string;
|
|
@@ -11,4 +12,5 @@ export interface StyledCapsuleProps {
|
|
|
11
12
|
type?: StyledCapsuleThemeType;
|
|
12
13
|
onClick?: () => void;
|
|
13
14
|
}
|
|
15
|
+
export declare const getCapsuleBGColor: (type: StyledCapsuleThemeType, mode: "light" | "dark") => Colors.tagDefaultBgLight | Colors.tagDefaultBgDark | Colors.tagWarningBgLight | Colors.tagWarningBgDark | Colors.tagInfoBgLight | Colors.tagInfoBgDark | Colors.tagSuccessBgLight | Colors.tagSuccessBgDark | Colors.tagAttentionBgLight | Colors.tagAttentionBgDark;
|
|
14
16
|
export default function StyledCapsule({ label, labelColor, labelStyle, capsuleBackground, showChevron, style, dataTestId, type, onClick, }: Readonly<StyledCapsuleProps>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -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;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ClientAnalytics } from '@zeniai/client-analytics';
|
|
2
|
-
import { AutoTransferRule, FundingAccount, TreasuryAccount } from '@zeniai/client-epic-state';
|
|
2
|
+
import { AutoTransferRule, CashManagementRule, FundingAccount, TreasuryAccount } from '@zeniai/client-epic-state';
|
|
3
3
|
/** Single destination for distribute-by-percentage (e.g. "50% To Zeni Checking ... 2213") */
|
|
4
4
|
export interface AllocationDestination {
|
|
5
5
|
accountLabel: string;
|
|
@@ -12,7 +12,12 @@ export interface ExistingRulesSectionProps {
|
|
|
12
12
|
rules: AutoTransferRule[];
|
|
13
13
|
transferMoneyParties: FundingAccount[];
|
|
14
14
|
analytics?: ClientAnalytics;
|
|
15
|
+
/**
|
|
16
|
+
* Saved auto-sweep cash-management config. When present, rendered as the
|
|
17
|
+
* first card above the regular auto-transfer rules.
|
|
18
|
+
*/
|
|
19
|
+
cashManagementRule?: CashManagementRule;
|
|
15
20
|
treasuryAccount?: TreasuryAccount;
|
|
16
21
|
onRuleMenuAction: (ruleId: string, action: RuleMenuAction) => void;
|
|
17
22
|
}
|
|
18
|
-
export declare function ExistingRulesSection({ analytics, hasAdminLevelAccess, rules, transferMoneyParties, treasuryAccount, onRuleMenuAction, }: ExistingRulesSectionProps): import("react/jsx-runtime").JSX.Element | null;
|
|
23
|
+
export declare function ExistingRulesSection({ analytics, hasAdminLevelAccess, rules, transferMoneyParties, cashManagementRule, treasuryAccount, onRuleMenuAction, }: ExistingRulesSectionProps): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -12,5 +12,4 @@ export interface ReviewAutoTransferRuleDrawerProps {
|
|
|
12
12
|
onClose: () => void;
|
|
13
13
|
onCreateRule: () => void;
|
|
14
14
|
}
|
|
15
|
-
export declare function getNextTransferDate(frequency: string | undefined): string;
|
|
16
15
|
export declare function ReviewAutoTransferRuleDrawer({ open, ruleType, formLocalData, companyName, autoTransferReviewDetail, transferMoneyParties, ruleUpdateStatus, isEdit, onBack, onClose, onCreateRule, }: ReviewAutoTransferRuleDrawerProps): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, FundingAccount, RiskLevel } from '@zeniai/client-epic-state';
|
|
3
|
+
import { 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
|
+
primaryAccount: FundingAccount;
|
|
17
|
+
sweepAmount: Amount;
|
|
18
|
+
initialFrequency?: SweepFrequency;
|
|
19
|
+
initialMemo?: string;
|
|
20
|
+
/** Initial state for the form. */
|
|
21
|
+
initialRisk?: RiskLevel;
|
|
22
|
+
/**
|
|
23
|
+
* Pass `true` while the PUT save is in flight so the Review page renders
|
|
24
|
+
* the Confirm button with a loading spinner and blocks edits. Driven off
|
|
25
|
+
* the slice's `saveStatus.fetchState` in the container.
|
|
26
|
+
*/
|
|
27
|
+
isSaving?: boolean;
|
|
28
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
29
|
+
/**
|
|
30
|
+
* Fired when the user clicks "Confirm Sweep" on the review screen.
|
|
31
|
+
* Carries no payload — the form values have already been staged into
|
|
32
|
+
* Redux via the preceding `onSaveDraft` dispatch on Review, so the
|
|
33
|
+
* container can dispatch the save action with no payload.
|
|
34
|
+
*/
|
|
35
|
+
onConfirm?: () => void;
|
|
36
|
+
/** Fired when the user clicks the back arrow on the setup screen. */
|
|
37
|
+
onExit?: () => void;
|
|
38
|
+
/**
|
|
39
|
+
* Fired whenever the risk band changes on the setup screen (live, not just
|
|
40
|
+
* on review). Consumers wire this to update the buffer in Redux so the
|
|
41
|
+
* recommended sweep amount recomputes and both screens stay in sync.
|
|
42
|
+
*/
|
|
43
|
+
onRiskChange?: (risk: RiskLevel) => void;
|
|
44
|
+
/**
|
|
45
|
+
* Fired when the user transitions from setup → review (i.e. clicks the
|
|
46
|
+
* "Review Sweep" button). Consumers wire this to persist the in-flight
|
|
47
|
+
* form values into Redux so the draft is observable to other selectors
|
|
48
|
+
* before the user confirms.
|
|
49
|
+
*/
|
|
50
|
+
onSaveDraft?: (params: {
|
|
51
|
+
frequency: SweepFrequency;
|
|
52
|
+
memo: string;
|
|
53
|
+
risk: RiskLevel;
|
|
54
|
+
}) => void;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Step state machine that pairs `AutoSweepSetupPage` and `AutoSweepReviewPage`.
|
|
58
|
+
*
|
|
59
|
+
* - Setup → Review: triggered by `onReviewClick` (Review Sweep button).
|
|
60
|
+
* - Review → Setup: triggered by `onEditClick` (Edit button).
|
|
61
|
+
* - Review → Confirm: triggered by `onConfirmClick`; bubbles up via `onConfirm`.
|
|
62
|
+
*
|
|
63
|
+
* Use this component in stories or screens that need the full
|
|
64
|
+
* "configure → review → confirm" flow without their own routing layer.
|
|
65
|
+
* In production a router-driven container can render the two pages on
|
|
66
|
+
* separate routes instead of using this wrapper.
|
|
67
|
+
*/
|
|
68
|
+
declare const AutoSweepFlow: React.FC<AutoSweepFlowProps>;
|
|
69
|
+
export default AutoSweepFlow;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, FundingAccount, RiskLevel } 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 AutoSweepReviewPageProps {
|
|
15
|
+
bufferAmount: number;
|
|
16
|
+
bufferCushionAmount: number;
|
|
17
|
+
operatingBalance: number;
|
|
18
|
+
primaryAccount: FundingAccount;
|
|
19
|
+
risk: RiskLevel;
|
|
20
|
+
sweepAmount: Amount;
|
|
21
|
+
estimatedDaysLabel?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Renders the Confirm Sweep button in a loading state and blocks further
|
|
24
|
+
* clicks. Driven off `saveStatus.fetchState === 'In-Progress'` by the
|
|
25
|
+
* container.
|
|
26
|
+
*/
|
|
27
|
+
isSaving?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Treasury account summary used to render the destination ("Treasury")
|
|
30
|
+
* label and its current available balance. Source:
|
|
31
|
+
* `getTreasuryDetail(state).accountSummary`.
|
|
32
|
+
*/
|
|
33
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
34
|
+
onBackClick?: () => void;
|
|
35
|
+
onConfirmClick?: () => void;
|
|
36
|
+
onEditClick?: () => void;
|
|
37
|
+
}
|
|
38
|
+
declare const AutoSweepReviewPage: React.FC<AutoSweepReviewPageProps>;
|
|
39
|
+
export default AutoSweepReviewPage;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, FundingAccount, RiskLevel } 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 SweepFrequency = "daily" | "weekly" | "biweekly" | "monthly";
|
|
15
|
+
export interface AutoSweepSetupPageProps {
|
|
16
|
+
primaryAccount: FundingAccount;
|
|
17
|
+
sweepAmount: Amount;
|
|
18
|
+
frequency?: SweepFrequency;
|
|
19
|
+
memo?: string;
|
|
20
|
+
risk?: RiskLevel;
|
|
21
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
22
|
+
onBackClick?: () => void;
|
|
23
|
+
onCancelClick?: () => void;
|
|
24
|
+
onReviewClick?: (params: {
|
|
25
|
+
frequency: SweepFrequency;
|
|
26
|
+
memo: string;
|
|
27
|
+
risk: RiskLevel;
|
|
28
|
+
}) => void;
|
|
29
|
+
/**
|
|
30
|
+
* Fired whenever the risk band changes in the picker (not just on review),
|
|
31
|
+
* so the container can update the buffer in state and the sweep amount can
|
|
32
|
+
* react live.
|
|
33
|
+
*/
|
|
34
|
+
onRiskChange?: (risk: RiskLevel) => void;
|
|
35
|
+
}
|
|
36
|
+
declare const AutoSweepSetupPage: React.FC<AutoSweepSetupPageProps>;
|
|
37
|
+
export default AutoSweepSetupPage;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, CashManagementOverviewBannerSelectorView } from '@zeniai/client-epic-state';
|
|
3
|
+
/**
|
|
4
|
+
* Direction of the agent's recommended movement. Drives which banner layout
|
|
5
|
+
* we render — `'push'` (sweep cash up to treasury) shows the "Move X to
|
|
6
|
+
* Treasury" recommendation; `'pull'` (pull funds back to checking to cover
|
|
7
|
+
* an outflow) shows the in-progress status row.
|
|
8
|
+
*/
|
|
9
|
+
export type CashManagementBannerSubMovementType = "push" | "pull";
|
|
10
|
+
export interface CashManagementBannerProps {
|
|
11
|
+
banner: CashManagementOverviewBannerSelectorView;
|
|
12
|
+
bufferAmount: Amount;
|
|
13
|
+
estimatedAnnualYield?: Amount;
|
|
14
|
+
estimatedDaysLabel?: string;
|
|
15
|
+
frequencyLabel?: string;
|
|
16
|
+
initiatedAtLabel?: string;
|
|
17
|
+
style?: React.CSSProperties;
|
|
18
|
+
onSetUpAutoSweepClick?: () => void;
|
|
19
|
+
}
|
|
20
|
+
declare const CashManagementBanner: React.FC<CashManagementBannerProps>;
|
|
21
|
+
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,47 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount, CashProjectionPoint, 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 type CashManagementTabId = "overview" | "autoTransferRules";
|
|
7
|
+
export interface CashOverviewProps {
|
|
8
|
+
bufferAmount: Amount;
|
|
9
|
+
cashBalance: Amount;
|
|
10
|
+
cashFlowTotal: Amount;
|
|
11
|
+
inflows: Amount;
|
|
12
|
+
outflowItems: UpcomingPaymentEvent[];
|
|
13
|
+
outflows: Amount;
|
|
14
|
+
projectionData: CashProjectionPoint[];
|
|
15
|
+
totalCash: Amount;
|
|
16
|
+
treasuryBalance: Amount;
|
|
17
|
+
/**
|
|
18
|
+
* Props passed through to `<AutoTransferRulePage />` rendered under the
|
|
19
|
+
* "Auto Transfer Rules" tab. When omitted and `isAutoTransferRulesLoading`
|
|
20
|
+
* is false, that tab renders an empty state.
|
|
21
|
+
*/
|
|
22
|
+
autoTransferRulePageProps?: AutoTransferRulePageProps;
|
|
23
|
+
/**
|
|
24
|
+
* When provided, renders `<CashManagementBanner>` just below the NavBar.
|
|
25
|
+
* The consumer is responsible for picking the right `status` and
|
|
26
|
+
* gating on the cash-management feature flag.
|
|
27
|
+
*/
|
|
28
|
+
cashManagementBannerProps?: CashManagementBannerProps;
|
|
29
|
+
granularity?: ProjectionGranularity;
|
|
30
|
+
/** Initial active tab; defaults to `"overview"`. */
|
|
31
|
+
initialTab?: CashManagementTabId;
|
|
32
|
+
/**
|
|
33
|
+
* When `true`, the auto transfer rules tab renders a skeleton placeholder
|
|
34
|
+
* instead of the empty state. Use while the rules selector is fetching.
|
|
35
|
+
*/
|
|
36
|
+
isAutoTransferRulesLoading?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* When `true`, the upcoming outflows table renders a skeleton placeholder
|
|
39
|
+
* in place of its rows. Use while the upcoming-payment-events selector is
|
|
40
|
+
* fetching.
|
|
41
|
+
*/
|
|
42
|
+
isOutflowsLoading?: boolean;
|
|
43
|
+
onBackClick?: () => void;
|
|
44
|
+
onGranularityChange?: (granularity: ProjectionGranularity) => void;
|
|
45
|
+
}
|
|
46
|
+
declare const CashOverview: React.FC<CashOverviewProps>;
|
|
47
|
+
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,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Amount } from '@zeniai/client-epic-state';
|
|
3
|
+
export interface SweepAmountCardProps {
|
|
4
|
+
sweepAmount: Amount;
|
|
5
|
+
style?: React.CSSProperties;
|
|
6
|
+
}
|
|
7
|
+
declare const SweepAmountCard: React.FC<SweepAmountCardProps>;
|
|
8
|
+
export default SweepAmountCard;
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
/** Treasury account summary; rendered as the destination ("Treasury" + available balance). */
|
|
18
|
+
treasurySummary?: TreasurySummaryWithBalance;
|
|
19
|
+
}
|
|
20
|
+
declare const SweepFlowRow: React.FC<SweepFlowRowProps>;
|
|
21
|
+
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;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TransactionLinesJournalEntryTableProps } from './journalEntryTableTypes';
|
|
2
|
-
export default function TransactionLinesJournalEntryTable({ accountList, accountsHierarchyList, classHierarchyList, classList, isAccountingClassesEnabled, isCOTEnabled, lines, projects, searchAutoComplete, sectionId, transaction, cotTracking, isDisabled, isQuickViewMode, isUncategorizedExpenseCategoryEnabled, openTooltipId, setOpenTooltipId, uncategorizedAccounts, }: Readonly<TransactionLinesJournalEntryTableProps>): JSX.Element;
|
|
2
|
+
export default function TransactionLinesJournalEntryTable({ accountList, accountsHierarchyList, classHierarchyList, classList, isAccountingClassesEnabled, isAccountingProjectsEnabled, isCOTEnabled, isProjectsTransactionsEnabled, lines, projects, searchAutoComplete, sectionId, transaction, cotTracking, isDisabled, isQuickViewMode, isUncategorizedExpenseCategoryEnabled, openTooltipId, setOpenTooltipId, uncategorizedAccounts, }: Readonly<TransactionLinesJournalEntryTableProps>): JSX.Element;
|
package/dist/components/transactionDetail/items/journalEntryTable/journalEntryTableTypes.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ import { JournalEntryRowHeaderItemData } from './header/journalEntryHeaderConfig
|
|
|
10
10
|
* prop shape. The call site in `TransactionDetailContent` spreads a single
|
|
11
11
|
* `sharedProps` object into either component, and TypeScript allows the
|
|
12
12
|
* spread to carry extra fields that this component does not consume. As
|
|
13
|
-
* new features (inline edit, book-close enforcement,
|
|
14
|
-
*
|
|
13
|
+
* new features (inline edit, book-close enforcement, etc.) land on the
|
|
14
|
+
* table view, add the corresponding props back here.
|
|
15
15
|
*/
|
|
16
16
|
export interface TransactionLinesJournalEntryTableProps {
|
|
17
17
|
accountList: AccountBase[];
|
|
@@ -19,7 +19,9 @@ export interface TransactionLinesJournalEntryTableProps {
|
|
|
19
19
|
classHierarchyList: NestedClassHierarchyForReport[];
|
|
20
20
|
classList: ClassBase[];
|
|
21
21
|
isAccountingClassesEnabled: boolean;
|
|
22
|
+
isAccountingProjectsEnabled: boolean;
|
|
22
23
|
isCOTEnabled: boolean;
|
|
24
|
+
isProjectsTransactionsEnabled: boolean;
|
|
23
25
|
lines: LineInfo[];
|
|
24
26
|
projects: Project[];
|
|
25
27
|
searchAutoComplete: SearchAutoComplete;
|
package/dist/components/transactionDetail/items/transactionLineTable/TransactionLinesTable.d.ts
CHANGED
|
@@ -14,4 +14,4 @@ import { TransactionLinesTableProps } from './transactionLineTableTypes';
|
|
|
14
14
|
* The bottom-rounded corners are owned by the last `RowWrapper` since
|
|
15
15
|
* there is nothing else following it inside the card.
|
|
16
16
|
*/
|
|
17
|
-
export default function TransactionLinesTable({ accountList, accountsHierarchyList, classHierarchyList, classList, containerRef: _containerRef, isAccountingClassesEnabled, isAccountingProjectsEnabled
|
|
17
|
+
export default function TransactionLinesTable({ accountList, accountsHierarchyList, classHierarchyList, classList, containerRef: _containerRef, isAccountingClassesEnabled, isAccountingProjectsEnabled, isCOTEnabled, isProjectsTransactionsEnabled, lines, projects, searchAutoComplete, sectionId, transaction, bookCloseDate: _bookCloseDate, cotTracking, entityId: _entityId, isDisabled, isQuickViewMode, isUncategorizedExpenseCategoryEnabled, openTooltipId, setOpenTooltipId, uncategorizedAccounts, lineItemsLocalData: _lineItemsLocalData, }: Readonly<TransactionLinesTableProps>): JSX.Element;
|
|
@@ -57,6 +57,7 @@ export declare enum FeatureGatesNamesWebApp {
|
|
|
57
57
|
isChargeCardPaymentHistoryFeatureEnabled = "is_charge_card_payment_history_feature_enabled",
|
|
58
58
|
isIssuePhysicalDebitCardEnabled = "is_issue_physical_debit_card_enabled",
|
|
59
59
|
isAutoTransferRuleEnabled = "is_auto_transfer_rule_enabled",
|
|
60
|
+
isCashManagementFeatureEnabled = "is_cash_management_feature_enabled",
|
|
60
61
|
/** Missing receipts: bulk upload (Statsig gate `is_missing_receipts_bulk_upload_enabled`). */
|
|
61
62
|
isMissingReceiptsBulkUploadEnabled = "is_missing_receipts_bulk_upload_enabled",
|
|
62
63
|
isAiCfoFileUploadEnabled = "is_ai_cfo_file_upload_enabled",
|
|
@@ -143,6 +144,7 @@ export declare const FeatureGatesNames: {
|
|
|
143
144
|
isChargeCardPaymentHistoryFeatureEnabled: FeatureGatesNamesWebApp.isChargeCardPaymentHistoryFeatureEnabled;
|
|
144
145
|
isIssuePhysicalDebitCardEnabled: FeatureGatesNamesWebApp.isIssuePhysicalDebitCardEnabled;
|
|
145
146
|
isAutoTransferRuleEnabled: FeatureGatesNamesWebApp.isAutoTransferRuleEnabled;
|
|
147
|
+
isCashManagementFeatureEnabled: FeatureGatesNamesWebApp.isCashManagementFeatureEnabled;
|
|
146
148
|
isMissingReceiptsBulkUploadEnabled: FeatureGatesNamesWebApp.isMissingReceiptsBulkUploadEnabled;
|
|
147
149
|
isAiCfoFileUploadEnabled: FeatureGatesNamesWebApp.isAiCfoFileUploadEnabled;
|
|
148
150
|
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-B29x-tPV.cjs"),a=require("./vendor-.pnpm-BFaLhzCH.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.AiCfoChatHeader=e.AiCfoChatHeader;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.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.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardListSkeletonRow=e.ChargeCardListSkeletonRow;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.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.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;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.MCC_CHIP_ID_PREFIX=e.MCC_CHIP_ID_PREFIX;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.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;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.SearchableCheckboxCardList=e.SearchableCheckboxCardList;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;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.VENDOR_CHIP_ID_PREFIX=e.VENDOR_CHIP_ID_PREFIX;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.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.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;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.isClosedCardStatus=e.isClosedCardStatus;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.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.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-zNdpWhsF.cjs"),a=require("./vendor-.pnpm-BFaLhzCH.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.AiCfoChatHeader=e.AiCfoChatHeader;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.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.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.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.ChargeCardListSkeletonRow=e.ChargeCardListSkeletonRow;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.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.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;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.MCC_CHIP_ID_PREFIX=e.MCC_CHIP_ID_PREFIX;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.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;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.SearchableCheckboxCardList=e.SearchableCheckboxCardList;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;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.VENDOR_CHIP_ID_PREFIX=e.VENDOR_CHIP_ID_PREFIX;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.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.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;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.isClosedCardStatus=e.isClosedCardStatus;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.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.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
|
@@ -469,6 +469,16 @@ export { default as TreasuryTaxLetterPage } from './components/spendManagement/t
|
|
|
469
469
|
export type { MoreOption as TreasuryMoreOption } from './components/spendManagement/treasury/TreasuryNavBarPieces';
|
|
470
470
|
export type { ZeniCreditPromoCardData } from './components/cards/summaryCard/promoCards/ZeniCreditPromoCardStack';
|
|
471
471
|
export { default as AutoTransferRulePage } from './components/spendManagement/autoTransferRules/AutoTransferRulePage';
|
|
472
|
+
export type { AutoTransferRulePageProps } from './components/spendManagement/autoTransferRules/AutoTransferRulePage';
|
|
473
|
+
export { default as CashOverview } from './components/spendManagement/cashManagement/CashOverview';
|
|
474
|
+
export type { CashManagementTabId, CashOverviewProps, ProjectionGranularity, } from './components/spendManagement/cashManagement/CashOverview';
|
|
475
|
+
export { default as AutoSweepFlow } from './components/spendManagement/cashManagement/AutoSweepFlow';
|
|
476
|
+
export type { AutoSweepFlowProps } from './components/spendManagement/cashManagement/AutoSweepFlow';
|
|
477
|
+
export type { SweepFrequency as AutoSweepFrequency } from './components/spendManagement/cashManagement/AutoSweepSetupPage';
|
|
478
|
+
export { default as CashManagementBanner } from './components/spendManagement/cashManagement/CashManagementBanner';
|
|
479
|
+
export type { CashManagementBannerProps, CashManagementBannerSubMovementType, } from './components/spendManagement/cashManagement/CashManagementBanner';
|
|
480
|
+
export { default as CashManagementNavCTA } from './components/spendManagement/cashManagement/CashManagementNavCTA';
|
|
481
|
+
export type { CashManagementNavCTAProps } from './components/spendManagement/cashManagement/CashManagementNavCTA';
|
|
472
482
|
export { default as TransactionActivityLogPage } from './components/transactionActivityLog/TransactionActivityLogPage';
|
|
473
483
|
export type { TransactionActivityLogPageProps } from './components/transactionActivityLog/TransactionActivityLogPage';
|
|
474
484
|
export { default as TransactionActivityLogPanel } from './components/transactionActivityLog/TransactionActivityLogPanel';
|