@zeniai/web-components 4.2.57-betaRD11 → 4.2.58
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-BU9P10AH.cjs → SessionTimeoutPopup-D7OmR_Kn.cjs} +15970 -15118
- package/dist/{SessionTimeoutPopup-BtP_oi6Z.js → SessionTimeoutPopup-RxbyvBdm.js} +74241 -72071
- package/dist/appLocale.d.ts +183 -0
- package/dist/cockpit.cjs.js +2 -2
- package/dist/cockpit.esm.js +317 -313
- package/dist/components/aiCfo/components/AiCfoInput.d.ts +0 -2
- package/dist/components/aiCfo/components/helpers/aiCfoAnswerHelpers.d.ts +1 -24
- package/dist/components/spendManagement/autoTransferRules/ExistingRulesSection.d.ts +7 -2
- 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/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 +9 -0
- package/dist/index.esm.js +345 -341
- package/dist/strings/strings.d.ts +183 -0
- package/package.json +3 -3
- package/dist/components/aiCfo/components/helpers/aiCfoAnswerHelpers.test.d.ts +0 -1
- package/dist/components/aiCfo/getLatestSuggestedReply.d.ts +0 -7
- package/dist/components/aiCfo/hooks/useFocusInputOnScrollToBottomHidden.d.ts +0 -8
|
@@ -20,8 +20,6 @@ export interface AiCfoInputProps {
|
|
|
20
20
|
shouldFocus?: boolean;
|
|
21
21
|
/** Chat-visible skills for the `/` menu (from getSkills). */
|
|
22
22
|
skills?: SkillMenuItem[];
|
|
23
|
-
/** First-person next message suggestion; shown as ghost placeholder + Tab-to-fill when the input is empty. */
|
|
24
|
-
suggestedReply?: string;
|
|
25
23
|
onInputChange: (value: string) => void;
|
|
26
24
|
onStopSubmit: () => void;
|
|
27
25
|
onSubmit: () => void;
|
|
@@ -1,10 +1,4 @@
|
|
|
1
|
-
import { AiCfoQuestionWithAnswer
|
|
2
|
-
/**
|
|
3
|
-
* Whether a single response section has renderable content — non-empty text or
|
|
4
|
-
* chain-of-thought action steps. Shared by the section-presence helpers so the
|
|
5
|
-
* "has content" rule stays single-sourced and can't drift between them.
|
|
6
|
-
*/
|
|
7
|
-
export declare const sectionHasContent: (response: ResponseBlockType | undefined) => boolean;
|
|
1
|
+
import { AiCfoQuestionWithAnswer } from '@zeniai/client-epic-state';
|
|
8
2
|
/**
|
|
9
3
|
* Checks if all COT and Answer sections have content available.
|
|
10
4
|
* Used to determine if this is a historical/cached response (all content present)
|
|
@@ -14,20 +8,3 @@ export declare const sectionHasContent: (response: ResponseBlockType | undefined
|
|
|
14
8
|
* all sections to render simultaneously without typing animations.
|
|
15
9
|
*/
|
|
16
10
|
export declare const doesAiCfoAnswerHaveAllContent: (aiCfoAnswer: AiCfoQuestionWithAnswer) => boolean;
|
|
17
|
-
/**
|
|
18
|
-
* Whether the answer carries a "thought" chain-of-thought section (text or
|
|
19
|
-
* action steps). The answer-reveal gate is driven solely by the thought
|
|
20
|
-
* section finishing its typing, so this is what decides whether the answer
|
|
21
|
-
* must wait for that signal.
|
|
22
|
-
*/
|
|
23
|
-
export declare const aiCfoAnswerHasThoughtSection: (aiCfoAnswer: AiCfoQuestionWithAnswer) => boolean;
|
|
24
|
-
/**
|
|
25
|
-
* Whether the answer block has fully arrived: its content is present AND the
|
|
26
|
-
* block's own streaming state is "complete" (not a mid-stream "partial" chunk).
|
|
27
|
-
*
|
|
28
|
-
* This is the authoritative per-message terminal signal — unlike the view-layer
|
|
29
|
-
* `fetchState`, which a live turn can flip to "Completed" before the final
|
|
30
|
-
* content chunk lands, and unlike bare content presence, which is true for a
|
|
31
|
-
* partial mid-stream chunk. Reload/historical answers are always "complete".
|
|
32
|
-
*/
|
|
33
|
-
export declare const isAiCfoAnswerComplete: (aiCfoAnswer: AiCfoQuestionWithAnswer) => boolean;
|
|
@@ -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;
|
|
@@ -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,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;
|
|
@@ -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",
|
|
@@ -146,6 +147,7 @@ export declare const FeatureGatesNames: {
|
|
|
146
147
|
isChargeCardPaymentHistoryFeatureEnabled: FeatureGatesNamesWebApp.isChargeCardPaymentHistoryFeatureEnabled;
|
|
147
148
|
isIssuePhysicalDebitCardEnabled: FeatureGatesNamesWebApp.isIssuePhysicalDebitCardEnabled;
|
|
148
149
|
isAutoTransferRuleEnabled: FeatureGatesNamesWebApp.isAutoTransferRuleEnabled;
|
|
150
|
+
isCashManagementFeatureEnabled: FeatureGatesNamesWebApp.isCashManagementFeatureEnabled;
|
|
149
151
|
isMissingReceiptsBulkUploadEnabled: FeatureGatesNamesWebApp.isMissingReceiptsBulkUploadEnabled;
|
|
150
152
|
isAiCfoFileUploadEnabled: FeatureGatesNamesWebApp.isAiCfoFileUploadEnabled;
|
|
151
153
|
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-BU9P10AH.cjs"),a=require("./vendor-.pnpm-C8FI_grH.cjs"),t=require("@emotion/styled");exports.AIAgentsActivatingPage=e.AIAgentsActivatingPage;exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.AccountReconDetailsDrawerPageV2=e.AccountReconDetailsDrawerPage$1;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoChatHeader=e.AiCfoChatHeader;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AiFinanceTeamReadyPage=e.AiFinanceTeamReadyPage;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.BillPayApprovalRuleDetailPageV1=e.BillPayApprovalRuleDetailPage$1;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayApprovalRulesPageV1=e.BillPayApprovalRulesPage$1;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.CardsShutdownBanner=e.CardsShutdownBanner;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardListSkeletonRow=e.ChargeCardListSkeletonRow;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.ClickableRow=e.ClickableRow;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyOfficerOnboardingDetailsSection=e.CompanyOfficerOnboardingDetailsSection;exports.CompanyOnboardingDetailsSection=e.CompanyOnboardingDetailsSection;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.ConnectDataSourcesPage=e.ConnectDataSourcesPage;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.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.IntegrationsSection=e.IntegrationsSection;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.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.OnboardingInitialLoader=e.OnboardingInitialLoader;exports.OnboardingSidebar=e.OnboardingSidebar;exports.OnboardingStepFrame=e.OnboardingStepFrame;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PaymentAccountSetupBillingAddressSection=e.PaymentAccountSetupBillingAddressSection;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QBOSetupSectionWithForm=e.QBOSetupSectionWithForm;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRuleDetailPageV1=e.ReimbursementApprovalRuleDetailPage$1;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementApprovalRulesPageV1=e.ReimbursementApprovalRulesPage$1;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewConfirmTransferPanel=e.ReviewConfirmTransferPanel;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SearchableCheckboxCardList=e.SearchableCheckboxCardList;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementParseInfo=e.StatementParseInfo;exports.StatementProcessingPage=e.StatementProcessingPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;exports.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.VerificationFrame=e.VerificationFrame;exports.VerifyDevice=e.VerifyDevice;exports.VerifyUnlockFinancialStackPage=e.VerifyUnlockFinancialStackPage;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WelcomeAnimation=e.WelcomeAnimation;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.clickableRowStyles=e.clickableRowStyles;exports.computeStatementProcessingStepsFromElapsedTime=e.computeStatementProcessingStepsFromElapsedTime;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;exports.formatReconAccountDisplayName=e.formatReconAccountDisplayName;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getReconAccountDisplayName=e.getReconAccountDisplayName;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.getStatementParseTransactionCount=e.getStatementParseTransactionCount;exports.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.resolveBackgroundStatementProcessingCompletedSteps=e.resolveBackgroundStatementProcessingCompletedSteps;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.toInstitutionLogoDataUri=e.toInstitutionLogoDataUri;exports.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useApprovalRulesV3Config=e.useApprovalRulesV3Config;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useExpenseAutomationEnabledForUser=e.useExpenseAutomationEnabledForUser;exports.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.useZeniCardsVisibilityConfig=e.useZeniCardsVisibilityConfig;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-D7OmR_Kn.cjs"),a=require("./vendor-.pnpm-C8FI_grH.cjs"),t=require("@emotion/styled");exports.AIAgentsActivatingPage=e.AIAgentsActivatingPage;exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.AccountReconDetailsDrawerPageV2=e.AccountReconDetailsDrawerPage$1;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoChatHeader=e.AiCfoChatHeader;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AiFinanceTeamReadyPage=e.AiFinanceTeamReadyPage;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.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.BillPayApprovalRuleDetailPageV1=e.BillPayApprovalRuleDetailPage$1;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayApprovalRulesPageV1=e.BillPayApprovalRulesPage$1;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.CardsShutdownBanner=e.CardsShutdownBanner;exports.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.ClickableRow=e.ClickableRow;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyOfficerOnboardingDetailsSection=e.CompanyOfficerOnboardingDetailsSection;exports.CompanyOnboardingDetailsSection=e.CompanyOnboardingDetailsSection;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.ConnectDataSourcesPage=e.ConnectDataSourcesPage;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.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.IntegrationsSection=e.IntegrationsSection;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.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.OnboardingInitialLoader=e.OnboardingInitialLoader;exports.OnboardingSidebar=e.OnboardingSidebar;exports.OnboardingStepFrame=e.OnboardingStepFrame;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PaymentAccountSetupBillingAddressSection=e.PaymentAccountSetupBillingAddressSection;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QBOSetupSectionWithForm=e.QBOSetupSectionWithForm;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRuleDetailPageV1=e.ReimbursementApprovalRuleDetailPage$1;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementApprovalRulesPageV1=e.ReimbursementApprovalRulesPage$1;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewConfirmTransferPanel=e.ReviewConfirmTransferPanel;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SearchableCheckboxCardList=e.SearchableCheckboxCardList;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementParseInfo=e.StatementParseInfo;exports.StatementProcessingPage=e.StatementProcessingPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;exports.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.VerificationFrame=e.VerificationFrame;exports.VerifyDevice=e.VerifyDevice;exports.VerifyUnlockFinancialStackPage=e.VerifyUnlockFinancialStackPage;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WelcomeAnimation=e.WelcomeAnimation;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.clickableRowStyles=e.clickableRowStyles;exports.computeStatementProcessingStepsFromElapsedTime=e.computeStatementProcessingStepsFromElapsedTime;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;exports.formatReconAccountDisplayName=e.formatReconAccountDisplayName;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getReconAccountDisplayName=e.getReconAccountDisplayName;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.getStatementParseTransactionCount=e.getStatementParseTransactionCount;exports.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.resolveBackgroundStatementProcessingCompletedSteps=e.resolveBackgroundStatementProcessingCompletedSteps;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.toInstitutionLogoDataUri=e.toInstitutionLogoDataUri;exports.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useApprovalRulesV3Config=e.useApprovalRulesV3Config;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useExpenseAutomationEnabledForUser=e.useExpenseAutomationEnabledForUser;exports.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.useZeniCardsVisibilityConfig=e.useZeniCardsVisibilityConfig;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
|
@@ -515,6 +515,15 @@ export type { MoreOption as TreasuryMoreOption } from './components/spendManagem
|
|
|
515
515
|
export type { ZeniCreditPromoCardData } from './components/cards/summaryCard/promoCards/ZeniCreditPromoCardStack';
|
|
516
516
|
export { default as AutoTransferRulePage } from './components/spendManagement/autoTransferRules/AutoTransferRulePage';
|
|
517
517
|
export type { AutoTransferRulePageProps } from './components/spendManagement/autoTransferRules/AutoTransferRulePage';
|
|
518
|
+
export { default as CashOverview } from './components/spendManagement/cashManagement/CashOverview';
|
|
519
|
+
export type { CashManagementTabId, CashOverviewProps, ProjectionGranularity, } from './components/spendManagement/cashManagement/CashOverview';
|
|
520
|
+
export { default as AutoSweepFlow } from './components/spendManagement/cashManagement/AutoSweepFlow';
|
|
521
|
+
export type { AutoSweepFlowProps } from './components/spendManagement/cashManagement/AutoSweepFlow';
|
|
522
|
+
export type { SweepFrequency as AutoSweepFrequency } from './components/spendManagement/cashManagement/AutoSweepSetupPage';
|
|
523
|
+
export { default as CashManagementBanner } from './components/spendManagement/cashManagement/CashManagementBanner';
|
|
524
|
+
export type { CashManagementBannerProps, CashManagementBannerSubMovementType, } from './components/spendManagement/cashManagement/CashManagementBanner';
|
|
525
|
+
export { default as CashManagementNavCTA } from './components/spendManagement/cashManagement/CashManagementNavCTA';
|
|
526
|
+
export type { CashManagementNavCTAProps } from './components/spendManagement/cashManagement/CashManagementNavCTA';
|
|
518
527
|
export { default as TransactionActivityLogPage } from './components/transactionActivityLog/TransactionActivityLogPage';
|
|
519
528
|
export type { TransactionActivityLogPageProps } from './components/transactionActivityLog/TransactionActivityLogPage';
|
|
520
529
|
export { default as TransactionActivityLogPanel } from './components/transactionActivityLog/TransactionActivityLogPanel';
|