@zeniai/web-components 4.2.25 → 4.2.26
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-BdlYS8Tu.js → SessionTimeoutPopup-BXdAFUpR.js} +48130 -48284
- package/dist/{SessionTimeoutPopup--h8Zahp2.cjs → SessionTimeoutPopup-DMOkSnof.cjs} +11733 -11759
- package/dist/cockpit.cjs.js +68 -68
- package/dist/cockpit.esm.js +1303 -1294
- package/dist/components/aiCfo/AiCfoPage.d.ts +1 -8
- package/dist/components/aiCfo/components/AiCfoInput.d.ts +0 -7
- package/dist/components/aiCfo/stories/components/AiCfoStoryWrapper.d.ts +1 -6
- package/dist/components/aiCfo/stories/hooks/useAiCfoStoryState.d.ts +2 -2
- package/dist/designSystem/zeniColors.d.ts +0 -8
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/package.json +50 -123
- package/dist/components/aiCfo/components/AiCfoSkillMenu.d.ts +0 -19
- package/dist/components/aiCfo/components/helpers/aiCfoSlashHelpers.d.ts +0 -30
|
@@ -4,7 +4,6 @@ import { AiCfoQuestionWithAnswer, AiCfoViewSelector, ID, SyntheticAiCfoAnswer, U
|
|
|
4
4
|
import { AiCfoChatHeaderProps } from './components/AiCfoChatHeader';
|
|
5
5
|
import { FileAttachment } from './components/AiCfoInput';
|
|
6
6
|
import { AiCfoQuestionAnswerProps } from './components/AiCfoQuestionAnswer';
|
|
7
|
-
import { SkillMenuItem } from './components/AiCfoSkillMenu';
|
|
8
7
|
import { ResolvedSyntheticAiCfoCard, ResolvedSyntheticAiCfoPolicy } from './components/SyntheticAiCfoAnswerView';
|
|
9
8
|
export declare const uniqueFormName: (formId: ID) => `${string}_form`;
|
|
10
9
|
/**
|
|
@@ -151,8 +150,6 @@ export interface AiCfoPageProps {
|
|
|
151
150
|
routedInitialQuestionSource?: AICFOChatSubmissionSource;
|
|
152
151
|
/** Suggestion chip index when the routed question came from a sample chip (e.g. `question_card` or `dashboard_card`). */
|
|
153
152
|
routedInitialQuestionSuggestionIndex?: number;
|
|
154
|
-
/** Chat-visible skills for the `/` menu (from getSkills). */
|
|
155
|
-
skills?: SkillMenuItem[];
|
|
156
153
|
style?: React.CSSProperties;
|
|
157
154
|
/**
|
|
158
155
|
* Client-synthesized "Creating…" / "Created" bubbles for the active
|
|
@@ -164,9 +161,7 @@ export interface AiCfoPageProps {
|
|
|
164
161
|
onCopy: (content: string) => void;
|
|
165
162
|
onNewChatClick: () => void;
|
|
166
163
|
onStopSubmit: () => void;
|
|
167
|
-
onSubmit: (input: string, source: AICFOChatSubmissionSource, files?: File[], index?: number
|
|
168
|
-
/** Skill reference when the turn came from the `/` menu; chat expands it to instructions. */
|
|
169
|
-
macroId?: string) => void;
|
|
164
|
+
onSubmit: (input: string, source: AICFOChatSubmissionSource, files?: File[], index?: number) => void;
|
|
170
165
|
onThumbsDown: (questionAnswerId: ID) => void;
|
|
171
166
|
onThumbsUp: (questionAnswerId: ID) => void;
|
|
172
167
|
onToggleCotCollapsed: (questionAnswerId: ID, isCollapsed: boolean) => void;
|
|
@@ -175,8 +170,6 @@ export interface AiCfoPageProps {
|
|
|
175
170
|
togglePageView: () => void;
|
|
176
171
|
updateCurrentInput: (input: string) => void;
|
|
177
172
|
onEmailLinkQuestionProcessed?: () => void;
|
|
178
|
-
/** Called when the user first types `/` so the container can fetch skills. */
|
|
179
|
-
onFetchSkills?: () => void;
|
|
180
173
|
onMenuClick?: () => void;
|
|
181
174
|
onUploadPromoClose?: () => void;
|
|
182
175
|
/**
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { ID } from '@zeniai/client-epic-state';
|
|
3
|
-
import { SkillMenuItem } from './AiCfoSkillMenu';
|
|
4
3
|
export interface FileAttachment {
|
|
5
4
|
file: File;
|
|
6
5
|
id: string;
|
|
@@ -18,18 +17,12 @@ export interface AiCfoInputProps {
|
|
|
18
17
|
isUploadPromoVisible?: boolean;
|
|
19
18
|
selectedFiles?: FileAttachment[];
|
|
20
19
|
shouldFocus?: boolean;
|
|
21
|
-
/** Chat-visible skills for the `/` menu (from getSkills). */
|
|
22
|
-
skills?: SkillMenuItem[];
|
|
23
20
|
onInputChange: (value: string) => void;
|
|
24
21
|
onStopSubmit: () => void;
|
|
25
22
|
onSubmit: () => void;
|
|
26
23
|
openOnboardingPage: () => void;
|
|
27
|
-
/** Called when the user first types `/` so the container can fetch skills. */
|
|
28
|
-
onFetchSkills?: () => void;
|
|
29
24
|
onFilesChange?: (files: FileAttachment[]) => void;
|
|
30
25
|
onFocusComplete?: () => void;
|
|
31
|
-
/** Called when a skill is picked from the `/` menu. */
|
|
32
|
-
onSelectSkill?: (skill: SkillMenuItem) => void;
|
|
33
26
|
onUploadPromoClose?: () => void;
|
|
34
27
|
}
|
|
35
28
|
declare const AiCfoInput: React.FC<AiCfoInputProps>;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { AiCfoViewSelector } from '@zeniai/client-epic-state';
|
|
3
|
-
import { default as AiCfoPage } from '../../AiCfoPage';
|
|
4
3
|
import { AiCfoChatHeaderProps } from '../../components/AiCfoChatHeader';
|
|
5
4
|
import { FileAttachment } from '../../components/AiCfoInput';
|
|
6
|
-
import { SkillMenuItem } from '../../components/AiCfoSkillMenu';
|
|
7
5
|
interface AiCfoStoryWrapperProps {
|
|
8
6
|
aiCfoView: AiCfoViewSelector;
|
|
9
7
|
tableDownloadEndPoint: string;
|
|
@@ -21,13 +19,10 @@ interface AiCfoStoryWrapperProps {
|
|
|
21
19
|
* {@link FeatureContext} so Explore / sample questions render like production.
|
|
22
20
|
*/
|
|
23
21
|
mockAiCfoDefaultMessageList?: string[];
|
|
24
|
-
onSubmit?: React.ComponentProps<typeof AiCfoPage>["onSubmit"];
|
|
25
22
|
showSampleQuestions?: boolean;
|
|
26
|
-
/** Chat-visible skills for the `/` menu. */
|
|
27
|
-
skills?: SkillMenuItem[];
|
|
28
|
-
onFetchSkills?: () => void;
|
|
29
23
|
onMenuClick?: () => void;
|
|
30
24
|
onStopSubmit?: () => void;
|
|
25
|
+
onSubmit?: (input: string) => void;
|
|
31
26
|
onUpdateScrollYOffset?: (scrollYOffset: number) => void;
|
|
32
27
|
updateCurrentInput?: (input: string) => void;
|
|
33
28
|
}
|
|
@@ -7,9 +7,9 @@ export declare const useAiCfoStoryState: ({ initialAiCfoView, currentChatSession
|
|
|
7
7
|
currentInput: string;
|
|
8
8
|
aiCfoView: AiCfoViewSelector;
|
|
9
9
|
updateCurrentInput: (input: string) => void;
|
|
10
|
-
onSubmit: (input: string) => void;
|
|
10
|
+
onSubmit: (input: string, delay?: number) => void;
|
|
11
11
|
onStopSubmit: () => void;
|
|
12
|
-
createNewSession: (input: string) => void;
|
|
12
|
+
createNewSession: (input: string, delay?: number) => void;
|
|
13
13
|
setScrollPosition: import('react').Dispatch<import('react').SetStateAction<number>>;
|
|
14
14
|
setResponseStateByChatSessionId: import('react').Dispatch<import('react').SetStateAction<{
|
|
15
15
|
analysis: import('@zeniai/client-epic-state').FetchStateAndError;
|
|
@@ -293,11 +293,3 @@ export declare enum Colors {
|
|
|
293
293
|
taskInReviewbackgroundColor = "#E6FAFE",
|
|
294
294
|
taskInHoldLabelColor = "#CD3259"
|
|
295
295
|
}
|
|
296
|
-
/**
|
|
297
|
-
* Reusable box-shadow values keyed by elevation tier, so dropdown/menu surfaces
|
|
298
|
-
* share one shadow instead of each component hard-coding its own and drifting.
|
|
299
|
-
*/
|
|
300
|
-
export declare enum BoxShadow {
|
|
301
|
-
/** Floating menus / dropdowns (e.g. the AI CFO `/` skill menu). */
|
|
302
|
-
dropdownMenu = "0 4px 16px rgba(0, 0, 0, 0.12)"
|
|
303
|
-
}
|
package/dist/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup--h8Zahp2.cjs"),a=require("./vendor-.pnpm-XfeS4-Fh.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.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.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.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.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-DMOkSnof.cjs"),a=require("./vendor-.pnpm-XfeS4-Fh.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.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.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.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.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.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as s, a as t, b as i, c as o, d as n, f as r, g as l, h as g, i as d, j as P, k as c, n as u, o as C, p as m, q as S, r as h, s as p, t as A, u as b, v as D, w as f, x as y, B as T, C as R, D as v, E as I, F as L, G as w, H as k, I as V, J as E, K as F, L as B, M, N as O, Q as N, R as x, S as _, T as U, U as W, V as H, W as Z, X as q, Y as z, ek as G, Z as Q, _ as X, $ as Y, a0 as j, a3 as J, a4 as $, a5 as K, a8 as aa, a9 as ea, aa as sa, ab as ta, ac as ia, ad as oa, ae as na, af as ra, ag as la, ah as ga, ai as da, aj as Pa, ak as ca, al as ua, am as Ca, an as ma, ao as Sa, ap as ha, aq as pa, ar as Aa, as as ba, at as Da, au as fa, av as ya, aw as Ta, ax as Ra, ay as va, az as Ia, ek as La, aA as wa, aB as ka, aC as Va, aD as Ea, aE as Fa, aG as Ba, aH as Ma, aI as Oa, aJ as Na, aK as xa, aM as _a, aN as Ua, aP as Wa, aQ as Ha, aR as Za, aS as qa, aT as za, aU as Ga, aX as Qa, aY as Xa, a$ as Ya, b0 as ja, b1 as Ja, b2 as $a, b3 as Ka, b4 as ae, b5 as ee, b6 as se, b7 as te, ba as ie, bb as oe, bc as ne, bd as re, be as le, bf as ge, bg as de, bi as Pe, bl as ce, bo as ue, bp as Ce, bq as me, bv as Se, bw as he, bx as pe, by as Ae, bz as be, bA as De, bB as fe, bm as ye, bM as Te, bN as Re, bO as ve, bS as Ie, bU as Le, bW as we, bX as ke, c4 as Ve, c5 as Ee, c6 as Fe, c7 as Be, c8 as Me, c9 as Oe, ca as Ne, cb as xe, cc as _e, cd as Ue, ce as We, cf as He, cg as Ze, cD as qe, cE as ze, cG as Ge, cH as Qe, cI as Xe, cP as Ye, cQ as je, cR as Je, cS as $e, cU as Ke, cW as as, c_ as es, c$ as ss, d0 as ts, d3 as is, d4 as os, d6 as ns, d7 as rs, d8 as ls, f5 as gs, d9 as ds, da as Ps, db as cs, di as us, dj as Cs, dk as ms, dl as Ss, dm as hs, dn as ps, dp as As, dq as bs, dr as Ds, ds as fs, dt as ys, du as Ts, dv as Rs, dw as vs, dx as Is, dy as Ls, dz as ws, dB as ks, bj as Vs, dC as Es, dD as Fs, dE as Bs, dF as Ms, dG as Os, dH as Ns, dI as xs, ek as _s, dL as Us, dJ as Ws, dM as Hs, dN as Zs, dP as qs, dQ as zs, dR as Gs, dS as Qs, dT as Xs, dU as Ys, dV as js, dW as Js, dY as $s, dZ as Ks, d_ as at, d$ as et, e0 as st, eg as tt, eh as it, ei as ot, ej as nt, ew as rt, ey as lt, eB as gt, eD as dt, fh as Pt, fi as ct, fj as ut, fk as Ct, fm as mt, fq as St, fs as ht, ft as pt, fu as At, fv as bt, fw as Dt, fx as ft, fy as yt, fz as Tt, fA as Rt, fB as vt, fC as It, fD as Lt, fE as wt, fF as kt, fG as Vt, fH as Et, fI as Ft, fJ as Bt, fK as Mt, fL as Ot, fO as Nt, fP as xt, fQ as _t, fR as Ut, fS as Wt, fT as Ht, fU as Zt, fV as qt, fW as zt, fX as Gt, fY as Qt, fZ as Xt, f_ as Yt, f$ as jt, g0 as Jt, g1 as $t, g2 as Kt, g3 as ai, g4 as ei, g5 as si, g6 as ti, g7 as ii, g8 as oi, g9 as ni, ga as ri, gb as li, gc as gi, gd as di, gg as Pi, gh as ci, gi as ui, gj as Ci, gk as mi, gl as Si, gm as hi, go as pi, gp as Ai, gq as bi, gr as Di, gs as fi, gt as yi, gu as Ti, gw as Ri, gx as vi, gy as Ii, gz as Li, gB as wi, gC as ki, gE as Vi, gD as Ei, gI as Fi, gJ as Bi, gL as Mi, gM as Oi, gN as Ni, gR as xi, gU as _i, gY as Ui, h0 as Wi, h1 as Hi, h2 as Zi, h9 as qi, ha as zi, hb as Gi, hc as Qi, hd as Xi, hf as Yi, hg as ji, hh as Ji, hi as $i, hj as Ki, hk as ao, hl as eo, hm as so, ho as to, hp as io, hq as oo, hr as no, hs as ro, ht as lo, hv as go, hw as Po, hx as co, hy as uo, hz as Co, hA as mo, hB as So, hC as ho, hE as po, hF as Ao, hG as bo, hH as Do, hJ as fo, hK as yo, hN as To, hP as Ro, hQ as vo, hR as Io, hS as Lo, hT as wo, hU as ko, hV as Vo, hW as Eo, hX as Fo, hY as Bo, hZ as Mo, h_ as Oo, h$ as No, i0 as xo, i1 as _o, i2 as Uo } from "./SessionTimeoutPopup-
|
|
1
|
+
import { A as s, a as t, b as i, c as o, d as n, f as r, g as l, h as g, i as d, j as P, k as c, n as u, o as C, p as m, q as S, r as h, s as p, t as A, u as b, v as D, w as f, x as y, B as T, C as R, D as v, E as I, F as L, G as w, H as k, I as V, J as E, K as F, L as B, M, N as O, Q as N, R as x, S as _, T as U, U as W, V as H, W as Z, X as q, Y as z, ek as G, Z as Q, _ as X, $ as Y, a0 as j, a3 as J, a4 as $, a5 as K, a8 as aa, a9 as ea, aa as sa, ab as ta, ac as ia, ad as oa, ae as na, af as ra, ag as la, ah as ga, ai as da, aj as Pa, ak as ca, al as ua, am as Ca, an as ma, ao as Sa, ap as ha, aq as pa, ar as Aa, as as ba, at as Da, au as fa, av as ya, aw as Ta, ax as Ra, ay as va, az as Ia, ek as La, aA as wa, aB as ka, aC as Va, aD as Ea, aE as Fa, aG as Ba, aH as Ma, aI as Oa, aJ as Na, aK as xa, aM as _a, aN as Ua, aP as Wa, aQ as Ha, aR as Za, aS as qa, aT as za, aU as Ga, aX as Qa, aY as Xa, a$ as Ya, b0 as ja, b1 as Ja, b2 as $a, b3 as Ka, b4 as ae, b5 as ee, b6 as se, b7 as te, ba as ie, bb as oe, bc as ne, bd as re, be as le, bf as ge, bg as de, bi as Pe, bl as ce, bo as ue, bp as Ce, bq as me, bv as Se, bw as he, bx as pe, by as Ae, bz as be, bA as De, bB as fe, bm as ye, bM as Te, bN as Re, bO as ve, bS as Ie, bU as Le, bW as we, bX as ke, c4 as Ve, c5 as Ee, c6 as Fe, c7 as Be, c8 as Me, c9 as Oe, ca as Ne, cb as xe, cc as _e, cd as Ue, ce as We, cf as He, cg as Ze, cD as qe, cE as ze, cG as Ge, cH as Qe, cI as Xe, cP as Ye, cQ as je, cR as Je, cS as $e, cU as Ke, cW as as, c_ as es, c$ as ss, d0 as ts, d3 as is, d4 as os, d6 as ns, d7 as rs, d8 as ls, f5 as gs, d9 as ds, da as Ps, db as cs, di as us, dj as Cs, dk as ms, dl as Ss, dm as hs, dn as ps, dp as As, dq as bs, dr as Ds, ds as fs, dt as ys, du as Ts, dv as Rs, dw as vs, dx as Is, dy as Ls, dz as ws, dB as ks, bj as Vs, dC as Es, dD as Fs, dE as Bs, dF as Ms, dG as Os, dH as Ns, dI as xs, ek as _s, dL as Us, dJ as Ws, dM as Hs, dN as Zs, dP as qs, dQ as zs, dR as Gs, dS as Qs, dT as Xs, dU as Ys, dV as js, dW as Js, dY as $s, dZ as Ks, d_ as at, d$ as et, e0 as st, eg as tt, eh as it, ei as ot, ej as nt, ew as rt, ey as lt, eB as gt, eD as dt, fh as Pt, fi as ct, fj as ut, fk as Ct, fm as mt, fq as St, fs as ht, ft as pt, fu as At, fv as bt, fw as Dt, fx as ft, fy as yt, fz as Tt, fA as Rt, fB as vt, fC as It, fD as Lt, fE as wt, fF as kt, fG as Vt, fH as Et, fI as Ft, fJ as Bt, fK as Mt, fL as Ot, fO as Nt, fP as xt, fQ as _t, fR as Ut, fS as Wt, fT as Ht, fU as Zt, fV as qt, fW as zt, fX as Gt, fY as Qt, fZ as Xt, f_ as Yt, f$ as jt, g0 as Jt, g1 as $t, g2 as Kt, g3 as ai, g4 as ei, g5 as si, g6 as ti, g7 as ii, g8 as oi, g9 as ni, ga as ri, gb as li, gc as gi, gd as di, gg as Pi, gh as ci, gi as ui, gj as Ci, gk as mi, gl as Si, gm as hi, go as pi, gp as Ai, gq as bi, gr as Di, gs as fi, gt as yi, gu as Ti, gw as Ri, gx as vi, gy as Ii, gz as Li, gB as wi, gC as ki, gE as Vi, gD as Ei, gI as Fi, gJ as Bi, gL as Mi, gM as Oi, gN as Ni, gR as xi, gU as _i, gY as Ui, h0 as Wi, h1 as Hi, h2 as Zi, h9 as qi, ha as zi, hb as Gi, hc as Qi, hd as Xi, hf as Yi, hg as ji, hh as Ji, hi as $i, hj as Ki, hk as ao, hl as eo, hm as so, ho as to, hp as io, hq as oo, hr as no, hs as ro, ht as lo, hv as go, hw as Po, hx as co, hy as uo, hz as Co, hA as mo, hB as So, hC as ho, hE as po, hF as Ao, hG as bo, hH as Do, hJ as fo, hK as yo, hN as To, hP as Ro, hQ as vo, hR as Io, hS as Lo, hT as wo, hU as ko, hV as Vo, hW as Eo, hX as Fo, hY as Bo, hZ as Mo, h_ as Oo, h$ as No, i0 as xo, i1 as _o, i2 as Uo } from "./SessionTimeoutPopup-BXdAFUpR.js";
|
|
2
2
|
import { aL as Ho, aA as Zo } from "./vendor-.pnpm-EsH0c3YJ.js";
|
|
3
3
|
import { default as zo } from "@emotion/styled";
|
|
4
4
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/web-components",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.26",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -25,51 +25,6 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"clean": "rimraf build",
|
|
30
|
-
"build-stories": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit",
|
|
31
|
-
"test": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && tsc --noEmit && bash ./scripts/test-storybook-watch.sh",
|
|
32
|
-
"test-all": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit && test-storybook --updateSnapshot --maxWorkers 2 --testTimeout 30000",
|
|
33
|
-
"test-modified-files": "export NODE_OPTIONS=--max-old-space-size=8192 && chmod +x ./scripts/track_modified_files.sh && ./scripts/track_modified_files.sh && pnpm test && pnpm format-watch",
|
|
34
|
-
"storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook dev -p 6006",
|
|
35
|
-
"build-storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook build",
|
|
36
|
-
"circular-dependency": "npx madge --circular --extensions ts ./src",
|
|
37
|
-
"lint": "export NODE_OPTIONS=--max-old-space-size=8192 && time eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
|
|
38
|
-
"lint:fix": "chmod +x ./scripts/fix-lint.sh && ./scripts/fix-lint.sh",
|
|
39
|
-
"lint-modified-files": "chmod +x ./scripts/lint-modified-files.sh && ./scripts/lint-modified-files.sh",
|
|
40
|
-
"lint:fix-modified-files": "chmod +x ./scripts/lint-modified-files.sh && LINT_FIX=true ./scripts/lint-modified-files.sh",
|
|
41
|
-
"tsc-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && ./scripts/tsc-modified-files.sh",
|
|
42
|
-
"data-testid-changes": "chmod +x ./scripts/data-testid-changes.sh && ./scripts/data-testid-changes.sh",
|
|
43
|
-
"typecheck": "tsc --noEmit",
|
|
44
|
-
"typecheck:mocks": "tsc --noEmit -p tsconfig.mocks.json",
|
|
45
|
-
"typecheck:mocks-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && SINCE_DAYS=2 ./scripts/tsc-modified-files.sh master tsconfig.mocks.json",
|
|
46
|
-
"typecheck:stories": "tsc --noEmit -p tsconfig.stories.json",
|
|
47
|
-
"typecheck:stories-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && SINCE_DAYS=2 ./scripts/tsc-modified-files.sh master tsconfig.stories.json",
|
|
48
|
-
"build": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && pnpm tsc-modified-files && vite build",
|
|
49
|
-
"format": "prettier --write --ignore-unknown \"src/**/*\" && pnpm lint",
|
|
50
|
-
"format-watch": "(git diff --name-only --diff-filter=ACM && git ls-files --others --exclude-standard) | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|
|
51
|
-
"format-staged": "git diff --cached --name-only --diff-filter=ACM | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|
|
52
|
-
"preview": "vite preview",
|
|
53
|
-
"version": "git add -A src",
|
|
54
|
-
"postversion": "git push && git push --tags",
|
|
55
|
-
"chromatic": "npx chromatic --project-token=b0f981300c3c --auto-accept-changes",
|
|
56
|
-
"analyze": "vite-bundle-visualizer -t sunburst",
|
|
57
|
-
"find-dead-code": "ts-prune | grep -v '(used in module)'",
|
|
58
|
-
"find-unused-exports": "ts-unused-exports ./tsconfig.json",
|
|
59
|
-
"check-version": "node ./scripts/check_version.js",
|
|
60
|
-
"bump-update-web-app-cockpit-beta": "chmod +x ./scripts/bump_and_update_web_app_ui_beta.sh && ./scripts/bump_and_update_web_app_ui_beta.sh",
|
|
61
|
-
"publish-beta": "sh -c 'echo \"Publishing with tag: ${betaTag:-beta}\" && pnpm publish --tag ${betaTag:-beta} --no-git-checks'",
|
|
62
|
-
"build-beta": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc && vite build --config vite.dev.config.ts && ([ -f dist/web-components.css ] && mv dist/web-components.css dist/index.css || true)",
|
|
63
|
-
"build-beta-and-copy": "chmod +x ./scripts/build_and_copy.sh && ./scripts/build_and_copy.sh",
|
|
64
|
-
"prepublishOnly": "chmod +x ./scripts/branch_validation.sh && ./scripts/branch_validation.sh && pnpm run check-version && pnpm update-slack-group-topic && pnpm clean && if [ -n \"$betaTag\" ]; then pnpm run build-beta; else pnpm run build; fi",
|
|
65
|
-
"check-dependencies": "node ./scripts/check_dependencies.js",
|
|
66
|
-
"clean-overrides": "node ./scripts/clean_overrides.js",
|
|
67
|
-
"update-slack-group-topic": "chmod +x ./scripts/update_slack_group_topic.sh && ./scripts/update_slack_group_topic.sh",
|
|
68
|
-
"raise-pr-automation": "chmod +x ./scripts/raise_pr_automation.sh && ./scripts/raise_pr_automation.sh",
|
|
69
|
-
"cherry-pick": "chmod +x ./scripts/cherry_pick.sh && ./scripts/cherry_pick.sh",
|
|
70
|
-
"prebuild": "node ./scripts/check-imports.js",
|
|
71
|
-
"prepare": "husky"
|
|
72
|
-
},
|
|
73
28
|
"dependencies": {
|
|
74
29
|
"@babel/runtime": "^7.26.10",
|
|
75
30
|
"@emotion/cache": "^11.13.1",
|
|
@@ -94,8 +49,8 @@
|
|
|
94
49
|
"@statsig/react-bindings": "^3.14.0",
|
|
95
50
|
"@stripe/react-stripe-js": "^2.7.3",
|
|
96
51
|
"@stripe/stripe-js": "^4.4.0",
|
|
97
|
-
"@zeniai/client-analytics": "2.0.
|
|
98
|
-
"@zeniai/client-epic-state": "5.1.
|
|
52
|
+
"@zeniai/client-analytics": "2.0.35",
|
|
53
|
+
"@zeniai/client-epic-state": "5.1.33",
|
|
99
54
|
"autosuggest-highlight": "^3.2.1",
|
|
100
55
|
"browser-image-compression": "^2.0.2",
|
|
101
56
|
"countries-list": "^2.6.1",
|
|
@@ -146,7 +101,7 @@
|
|
|
146
101
|
},
|
|
147
102
|
"devDependencies": {
|
|
148
103
|
"@babel/cli": "^7.17.6",
|
|
149
|
-
"@babel/core": "^7.
|
|
104
|
+
"@babel/core": "^7.17.9",
|
|
150
105
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
151
106
|
"@babel/preset-env": "^7.16.11",
|
|
152
107
|
"@babel/preset-react": "^7.16.7",
|
|
@@ -236,7 +191,7 @@
|
|
|
236
191
|
"ts-unused-exports": "^11.0.1",
|
|
237
192
|
"tslib": "^2.4.0",
|
|
238
193
|
"typescript": "^5.7.3",
|
|
239
|
-
"vite": "^7.3.
|
|
194
|
+
"vite": "^7.3.2",
|
|
240
195
|
"vite-bundle-visualizer": "^1.2.1",
|
|
241
196
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
242
197
|
"vite-plugin-dts": "^4.5.4",
|
|
@@ -254,8 +209,8 @@
|
|
|
254
209
|
"@types/color": "^3.0.2",
|
|
255
210
|
"@types/react-select": "^4.0.18",
|
|
256
211
|
"@types/react-window": "^1.8.8",
|
|
257
|
-
"@zeniai/client-analytics": "2.0.
|
|
258
|
-
"@zeniai/client-epic-state": "5.1.
|
|
212
|
+
"@zeniai/client-analytics": "2.0.28",
|
|
213
|
+
"@zeniai/client-epic-state": "5.1.21",
|
|
259
214
|
"color": "^3.1.3",
|
|
260
215
|
"react": "18.3.1",
|
|
261
216
|
"react-dom": "18.3.1",
|
|
@@ -291,75 +246,47 @@
|
|
|
291
246
|
"type": "git",
|
|
292
247
|
"url": "https://github.com/zeni-ai/zeni-web-components.git"
|
|
293
248
|
},
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
"
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
"
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
"
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
"lodash": ">=4.18.1 <5",
|
|
337
|
-
"mdast-util-to-hast": ">=13.2.1",
|
|
338
|
-
"minimatch": ">=10.2.3",
|
|
339
|
-
"mux-embed": "5.15.0",
|
|
340
|
-
"node-forge": ">=1.4.0",
|
|
341
|
-
"npm-check": ">=2.0.1",
|
|
342
|
-
"nth-check": ">=2.0.1",
|
|
343
|
-
"nyc>glob": "7.2.3",
|
|
344
|
-
"on-headers": ">=1.1.0",
|
|
345
|
-
"path-to-regexp": "0.1.13",
|
|
346
|
-
"picomatch": ">=4.0.4",
|
|
347
|
-
"postcss": ">=8.5.10",
|
|
348
|
-
"prismjs": ">=1.30.0",
|
|
349
|
-
"qs": ">=6.15.2",
|
|
350
|
-
"rollup": ">=4.59.0",
|
|
351
|
-
"serialize-javascript": ">=7.0.5",
|
|
352
|
-
"shell-quote": ">=1.8.4",
|
|
353
|
-
"svgo": ">=2.8.1",
|
|
354
|
-
"tar": ">=7.5.16",
|
|
355
|
-
"tar-fs": ">=3.1.1",
|
|
356
|
-
"test-exclude>glob": "7.2.3",
|
|
357
|
-
"tmp": ">=0.2.6",
|
|
358
|
-
"uuid": "^11.1.1",
|
|
359
|
-
"webpack": ">=5.104.1",
|
|
360
|
-
"webpack-dev-server": ">=5.2.5",
|
|
361
|
-
"ws": ">=8.21.0",
|
|
362
|
-
"yaml": ">=2.8.3"
|
|
363
|
-
}
|
|
249
|
+
"scripts": {
|
|
250
|
+
"clean": "rimraf build",
|
|
251
|
+
"build-stories": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit",
|
|
252
|
+
"test": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && tsc --noEmit && bash ./scripts/test-storybook-watch.sh",
|
|
253
|
+
"test-all": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit && test-storybook --updateSnapshot --maxWorkers 2 --testTimeout 30000",
|
|
254
|
+
"test-modified-files": "export NODE_OPTIONS=--max-old-space-size=8192 && chmod +x ./scripts/track_modified_files.sh && ./scripts/track_modified_files.sh && pnpm test && pnpm format-watch",
|
|
255
|
+
"storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook dev -p 6006",
|
|
256
|
+
"build-storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook build",
|
|
257
|
+
"circular-dependency": "npx madge --circular --extensions ts ./src",
|
|
258
|
+
"lint": "export NODE_OPTIONS=--max-old-space-size=8192 && time eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
|
|
259
|
+
"lint:fix": "chmod +x ./scripts/fix-lint.sh && ./scripts/fix-lint.sh",
|
|
260
|
+
"lint-modified-files": "chmod +x ./scripts/lint-modified-files.sh && ./scripts/lint-modified-files.sh",
|
|
261
|
+
"lint:fix-modified-files": "chmod +x ./scripts/lint-modified-files.sh && LINT_FIX=true ./scripts/lint-modified-files.sh",
|
|
262
|
+
"tsc-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && ./scripts/tsc-modified-files.sh",
|
|
263
|
+
"data-testid-changes": "chmod +x ./scripts/data-testid-changes.sh && ./scripts/data-testid-changes.sh",
|
|
264
|
+
"typecheck": "tsc --noEmit",
|
|
265
|
+
"typecheck:mocks": "tsc --noEmit -p tsconfig.mocks.json",
|
|
266
|
+
"typecheck:mocks-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && SINCE_DAYS=2 ./scripts/tsc-modified-files.sh master tsconfig.mocks.json",
|
|
267
|
+
"typecheck:stories": "tsc --noEmit -p tsconfig.stories.json",
|
|
268
|
+
"typecheck:stories-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && SINCE_DAYS=2 ./scripts/tsc-modified-files.sh master tsconfig.stories.json",
|
|
269
|
+
"build": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && pnpm tsc-modified-files && vite build",
|
|
270
|
+
"format": "prettier --write --ignore-unknown \"src/**/*\" && pnpm lint",
|
|
271
|
+
"format-watch": "(git diff --name-only --diff-filter=ACM && git ls-files --others --exclude-standard) | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|
|
272
|
+
"format-staged": "git diff --cached --name-only --diff-filter=ACM | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|
|
273
|
+
"preview": "vite preview",
|
|
274
|
+
"version": "git add -A src",
|
|
275
|
+
"postversion": "git push && git push --tags",
|
|
276
|
+
"chromatic": "npx chromatic --project-token=b0f981300c3c --auto-accept-changes",
|
|
277
|
+
"analyze": "vite-bundle-visualizer -t sunburst",
|
|
278
|
+
"find-dead-code": "ts-prune | grep -v '(used in module)'",
|
|
279
|
+
"find-unused-exports": "ts-unused-exports ./tsconfig.json",
|
|
280
|
+
"check-version": "node ./scripts/check_version.js",
|
|
281
|
+
"bump-update-web-app-cockpit-beta": "chmod +x ./scripts/bump_and_update_web_app_ui_beta.sh && ./scripts/bump_and_update_web_app_ui_beta.sh",
|
|
282
|
+
"publish-beta": "sh -c 'echo \"Publishing with tag: ${betaTag:-beta}\" && pnpm publish --tag ${betaTag:-beta} --no-git-checks'",
|
|
283
|
+
"build-beta": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc && vite build --config vite.dev.config.ts && ([ -f dist/web-components.css ] && mv dist/web-components.css dist/index.css || true)",
|
|
284
|
+
"build-beta-and-copy": "chmod +x ./scripts/build_and_copy.sh && ./scripts/build_and_copy.sh",
|
|
285
|
+
"check-dependencies": "node ./scripts/check_dependencies.js",
|
|
286
|
+
"clean-overrides": "node ./scripts/clean_overrides.js",
|
|
287
|
+
"update-slack-group-topic": "chmod +x ./scripts/update_slack_group_topic.sh && ./scripts/update_slack_group_topic.sh",
|
|
288
|
+
"raise-pr-automation": "chmod +x ./scripts/raise_pr_automation.sh && ./scripts/raise_pr_automation.sh",
|
|
289
|
+
"cherry-pick": "chmod +x ./scripts/cherry_pick.sh && ./scripts/cherry_pick.sh",
|
|
290
|
+
"prebuild": "node ./scripts/check-imports.js"
|
|
364
291
|
}
|
|
365
|
-
}
|
|
292
|
+
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { SkillMenuItem } from './helpers/aiCfoSlashHelpers';
|
|
3
|
-
export type { SkillMenuItem } from './helpers/aiCfoSlashHelpers';
|
|
4
|
-
export { AI_CFO_SLASH_COMMAND_REGEX, matchSlashQuery, filterSkills, } from './helpers/aiCfoSlashHelpers';
|
|
5
|
-
/** Listbox element id — the composer's textarea references it via aria-controls. */
|
|
6
|
-
export declare const SKILL_MENU_LISTBOX_ID = "ai-cfo-skill-listbox";
|
|
7
|
-
/** Stable per-option id for aria-activedescendant wiring. */
|
|
8
|
-
export declare const skillOptionId: (macroId: string) => string;
|
|
9
|
-
interface AiCfoSkillMenuProps {
|
|
10
|
-
activeIndex: number;
|
|
11
|
-
id: string;
|
|
12
|
-
items: SkillMenuItem[];
|
|
13
|
-
open: boolean;
|
|
14
|
-
onActiveIndexChange: (index: number) => void;
|
|
15
|
-
onSelect: (item: SkillMenuItem) => void;
|
|
16
|
-
}
|
|
17
|
-
/** Slash-command dropdown shown above the AI CFO composer (presentational only). */
|
|
18
|
-
declare const AiCfoSkillMenu: React.FC<AiCfoSkillMenuProps>;
|
|
19
|
-
export default AiCfoSkillMenu;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Shared logic for the AI CFO `/`-skill menu: the slash-command matcher and the
|
|
3
|
-
* skill filter. Kept here (next to {@link aiCfoAnswerHelpers}) rather than inline
|
|
4
|
-
* in the component so the regex is defined exactly once and can be reused by other
|
|
5
|
-
* consumers (empty-state hint, feature-flag gate, analytics, etc.) without drift.
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* Minimal shape the `/` menu needs from a Skill. Declared locally (not imported
|
|
9
|
-
* from @zeniai/client-epic-state) so web-components doesn't depend on a newer
|
|
10
|
-
* published version; the container passes structurally-compatible Skill objects.
|
|
11
|
-
*/
|
|
12
|
-
export interface SkillMenuItem {
|
|
13
|
-
macroId: string;
|
|
14
|
-
/** Slug used as the inserted command token, e.g. "flux" -> "/flux". */
|
|
15
|
-
name: string;
|
|
16
|
-
description?: string | null;
|
|
17
|
-
displayName?: string | null;
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Matches a message that is a single "/token" (no spaces). The whole message must
|
|
21
|
-
* be the slash command — this is for "/skill" as the message, not slash-anywhere.
|
|
22
|
-
*/
|
|
23
|
-
export declare const AI_CFO_SLASH_COMMAND_REGEX: RegExp;
|
|
24
|
-
/**
|
|
25
|
-
* The `/`-menu query: non-null only when the input is a single "/token". Returns
|
|
26
|
-
* "" for a bare "/", the slug for "/flux", null otherwise.
|
|
27
|
-
*/
|
|
28
|
-
export declare function matchSlashQuery(input: string): string | null;
|
|
29
|
-
/** Filter skills by the slash query against name + displayName (case-insensitive). */
|
|
30
|
-
export declare function filterSkills(skills: SkillMenuItem[], slashQuery: string | null): SkillMenuItem[];
|