@zeniai/web-components 4.1.42 → 4.1.43-betaAD02
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-gkbXEqUJ.js → SessionTimeoutPopup-C7XZ_-OF.js} +71322 -69971
- package/dist/{SessionTimeoutPopup-1jieYekd.cjs → SessionTimeoutPopup-CTV4uaY-.cjs} +14647 -14448
- package/dist/appLocale.d.ts +48 -0
- package/dist/assets/illustrative/no-search-result.svg +24 -0
- package/dist/cockpit.cjs.js +1 -1
- package/dist/cockpit.esm.js +2 -2
- package/dist/components/cockpit/common/cockpitFilters/commonTypes.d.ts +1 -1
- package/dist/components/{cockpit/common/cockpitFilters/components → common/filters}/FiltersPopover.d.ts +1 -1
- package/dist/components/common/filters/GenericFilters.d.ts +75 -0
- package/dist/components/common/filters/components/GenericFiltersSelection.d.ts +58 -0
- package/dist/components/common/filters/genericFilterTypes.d.ts +62 -0
- package/dist/components/common/listPageSearchInputBox/ListPageSearchInputBox.d.ts +3 -1
- package/dist/components/common/listPageSearchSection/ListPageSearchSection.d.ts +13 -0
- package/dist/components/expenseAutomation/ExpenseAutomationPage.d.ts +18 -1
- package/dist/components/expenseAutomation/components/EmptyTableSection.d.ts +6 -0
- package/dist/components/expenseAutomation/components/ExpenseAutomationSubTabSwitcher.d.ts +17 -0
- package/dist/components/expenseAutomation/components/NavBarWithHeader.d.ts +21 -1
- package/dist/components/expenseAutomation/components/TableSection.d.ts +2 -1
- package/dist/components/expenseAutomation/components/filters/AmountFilterValueField.d.ts +8 -0
- package/dist/components/expenseAutomation/components/filters/AmountMatchingOperatorDropdown.d.ts +8 -0
- package/dist/components/expenseAutomation/components/filters/TransactionFiltersComponent.d.ts +17 -0
- package/dist/components/expenseAutomation/components/filters/amountFilterConstants.d.ts +19 -0
- package/dist/components/expenseAutomation/components/filters/transactionFiltersHelpers.d.ts +24 -0
- package/dist/components/expenseAutomation/components/navbarHeaderData.d.ts +2 -2
- package/dist/components/expenseAutomation/sections/transactionCategorization/header/transactionCategorizationHeaderConfig.d.ts +3 -4
- package/dist/components/expenseAutomation/sections/transactionCategorization/header/transactionCategorizationHeaderItemsData.d.ts +8 -2
- package/dist/components/expenseAutomation/sections/transactionCategorization/transactionCategorizationCompletedSubTabs.d.ts +7 -0
- package/dist/components/formElements/filterValuesDropdownField/FilterValuesDropdownField.d.ts +5 -14
- package/dist/components/spendManagement/common/filters/spendManagementFiltersHelpers.d.ts +1 -1
- package/dist/components/transactionDetail/items/TransactionLineWithAccountAndClass.d.ts +3 -2
- package/dist/context/featureProvider/FeatureGateNameConstants.d.ts +2 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/strings/strings.d.ts +48 -0
- package/package.json +11 -8
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { MatchingOperatorDropdownOption, TransactionFilterCategoryDropdownOption, TransactionFilters } from '@zeniai/client-epic-state';
|
|
2
|
+
import { ValuesDropdownOption } from '../../../common/filters/genericFilterTypes';
|
|
3
|
+
export declare const getTransactionFilterCategories: () => TransactionFilterCategoryDropdownOption[];
|
|
4
|
+
export declare const getTransactionFilterCategoryLabel: (key: string) => string;
|
|
5
|
+
export declare const getUpdatedTransactionFiltersOnCategoryChange: ({ currentFilters, selectedOption, categoryIndex, }: {
|
|
6
|
+
currentFilters: TransactionFilters;
|
|
7
|
+
selectedOption: TransactionFilterCategoryDropdownOption;
|
|
8
|
+
categoryIndex?: number;
|
|
9
|
+
}) => TransactionFilters;
|
|
10
|
+
export declare const getUpdatedTransactionFiltersOnMatchingOperatorChange: ({ currentFilters, selectedOption, categoryIndex, }: {
|
|
11
|
+
currentFilters: TransactionFilters;
|
|
12
|
+
selectedOption: MatchingOperatorDropdownOption | {
|
|
13
|
+
label: string;
|
|
14
|
+
value: string;
|
|
15
|
+
};
|
|
16
|
+
categoryIndex?: number;
|
|
17
|
+
}) => TransactionFilters;
|
|
18
|
+
export declare const getUpdatedTransactionFiltersOnValueChange: ({ categoryIndex, currentFilters, selectedOptions, }: {
|
|
19
|
+
categoryIndex: number;
|
|
20
|
+
currentFilters: TransactionFilters;
|
|
21
|
+
selectedOptions: ValuesDropdownOption[];
|
|
22
|
+
}) => TransactionFilters;
|
|
23
|
+
export declare const getTransactionAppliedFiltersCount: (filters: TransactionFilters) => number;
|
|
24
|
+
export declare const hasActiveSearchOrFilters: (searchString: string, filters: TransactionFilters) => boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ExpenseAutomationReconciliationViewTab, ExpenseAutomationTransactionsTab, ExpenseAutomationViewType, ID, MissingReceiptsTab } from '@zeniai/client-epic-state';
|
|
2
2
|
import { JEScheduleMainTab } from '../sections/jeSchedules/jeScheduleConfig';
|
|
3
|
-
declare const toRightOptionType: (v: string) => "search" | "close" | "comment" | "refresh" | "commentDrawer" | "askAiCfo";
|
|
3
|
+
declare const toRightOptionType: (v: string) => "search" | "close" | "filter" | "comment" | "refresh" | "commentDrawer" | "askAiCfo";
|
|
4
4
|
type RightSection = ReturnType<typeof toRightOptionType>;
|
|
5
5
|
declare const toLeftOptionType: (v: string) => "back";
|
|
6
6
|
type LeftSection = ReturnType<typeof toLeftOptionType>;
|
|
@@ -35,7 +35,7 @@ export interface ExpenseAutomationNavbarHeaderData {
|
|
|
35
35
|
title: string;
|
|
36
36
|
subText?: string;
|
|
37
37
|
}
|
|
38
|
-
export declare const getNavBarHeaderData: (expenseAutomationViewType: ExpenseAutomationViewType, autoCategorizedTransactionNumber?: number, accountId?: ID, customTitle?: string, navBarSubText?: string,
|
|
38
|
+
export declare const getNavBarHeaderData: (expenseAutomationViewType: ExpenseAutomationViewType, autoCategorizedTransactionNumber?: number, accountId?: ID, customTitle?: string, navBarSubText?: string, currentTab?: ExpenseAutomationTransactionsTab, isSearchAndFilterEnabled?: boolean,
|
|
39
39
|
/** When `{ includeBulkUploadTabs: false }` (bulk upload / feature off), no sub-tabs — original subtitle only. */
|
|
40
40
|
missingReceiptsOptions?: {
|
|
41
41
|
includeBulkUploadTabs?: boolean;
|
|
@@ -15,14 +15,13 @@ export interface TransactionCategorizationRowHeaderItemData {
|
|
|
15
15
|
review?: React.CSSProperties;
|
|
16
16
|
};
|
|
17
17
|
key: TransactionCategorizationRowColumnKey;
|
|
18
|
+
singleColumnEnabledWidthPercentage: number;
|
|
18
19
|
sortOrder: SortOrder;
|
|
19
20
|
value: string;
|
|
20
21
|
width: ResponsiveSized;
|
|
21
|
-
/** Percentage of the content area (0–100) used when the viewport is wide enough to fit all columns. */
|
|
22
|
-
widthPercentage: number;
|
|
23
|
-
/** Percentage width used when the accounting class column is hidden. Falls back to `widthPercentage` if unset. */
|
|
24
|
-
classDisabledWidthPercentage?: number;
|
|
25
22
|
clippedWidth?: ResponsiveSized;
|
|
23
|
+
doubleColumnDisabledWidthPercentage?: number;
|
|
24
|
+
doubleColumnEnabledWidthPercentage?: number;
|
|
26
25
|
icon?: ReactElement;
|
|
27
26
|
isSticky?: boolean;
|
|
28
27
|
}
|
|
@@ -2,11 +2,17 @@ import { SortOrder, TransactionsSortKey } from '@zeniai/client-epic-state';
|
|
|
2
2
|
import { ResponsiveSized } from '../../../../../context/windowSizeProvider';
|
|
3
3
|
import { TransactionCategorizationRowHeaderItemData } from './transactionCategorizationHeaderConfig';
|
|
4
4
|
export declare const getTransactionCategorizationHeaderItemsData: (isAccountingClassesEnabled?: boolean, showProjectField?: boolean) => TransactionCategorizationRowHeaderItemData[];
|
|
5
|
+
/**
|
|
6
|
+
* Pick the right flexible-width percentage for a column based on which
|
|
7
|
+
* optional toggle columns (class / project) are currently shown. Falls back
|
|
8
|
+
* to `singleColumnEnabledWidthPercentage` whenever a scenario-specific value
|
|
9
|
+
* isn't defined on the column.
|
|
10
|
+
*/
|
|
11
|
+
export declare const resolveTransactionCategorizationWidthPercentage: (itemData: TransactionCategorizationRowHeaderItemData, isAccountingClassesEnabled: boolean, showProjectField: boolean) => number;
|
|
5
12
|
export declare const compressedTransactionCategorizationHeaderItemsData: TransactionCategorizationRowHeaderItemData[];
|
|
6
13
|
export interface TransactionCategorizationRowSortConfig {
|
|
7
14
|
sortKey: TransactionsSortKey;
|
|
8
15
|
sortOrder: SortOrder;
|
|
9
16
|
}
|
|
10
17
|
export declare const defaultSortOption: TransactionCategorizationRowSortConfig;
|
|
11
|
-
export declare const getTransactionCategorizationTableMaxWidth: (isAccountingClassesEnabled?: boolean) => ResponsiveSized;
|
|
12
|
-
export declare const transactionCategorizationTableMaxWidth: ResponsiveSized;
|
|
18
|
+
export declare const getTransactionCategorizationTableMaxWidth: (isAccountingClassesEnabled?: boolean, showProjectField?: boolean) => ResponsiveSized;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TabSwitcherOption } from '../../../common/allNavBars/statusSwitcher/switcherTypes';
|
|
2
|
+
/**
|
|
3
|
+
* Sub-tabs rendered under the Transaction Categorization "Completed" tab.
|
|
4
|
+
* The `id` values match the `CompletedSubTab` union exposed by client-epic-state
|
|
5
|
+
* and are forwarded verbatim to the listing API as `sub_tab`.
|
|
6
|
+
*/
|
|
7
|
+
export declare const TRANSACTION_CATEGORIZATION_COMPLETED_SUB_TABS: TabSwitcherOption[];
|
package/dist/components/formElements/filterValuesDropdownField/FilterValuesDropdownField.d.ts
CHANGED
|
@@ -1,23 +1,14 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { EntityAutoCompleteView, FilterCategoryType, ZeniDate
|
|
2
|
+
import { EntityAutoCompleteView, FilterCategoryType, ZeniDate } from '@zeniai/client-epic-state';
|
|
3
3
|
import { AutoCompleteActions, AutoCompleteData } from '../../common/autoComplete/autoCompleteProps';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
export interface ValuesDropdownOption extends DropdownOptionTypeBase {
|
|
8
|
-
label: string;
|
|
9
|
-
value: string | ZeniDate;
|
|
10
|
-
email?: string;
|
|
11
|
-
iconColor?: string;
|
|
12
|
-
iconType?: string;
|
|
13
|
-
photo?: ZeniUrl;
|
|
14
|
-
}
|
|
4
|
+
import { ValuesCombinationOperator, ValuesDropdownOption } from '../../common/filters/genericFilterTypes';
|
|
5
|
+
export type { ValuesDropdownOption };
|
|
15
6
|
export interface FilterValuesDropdownFieldProps {
|
|
16
7
|
filterCategoryType: FilterCategoryType;
|
|
17
8
|
options: ValuesDropdownOption[];
|
|
18
9
|
placeHolder: string;
|
|
19
|
-
value: (string | ZeniDate)[];
|
|
20
|
-
valuesCombinationOperator:
|
|
10
|
+
value: (string | number | ZeniDate)[];
|
|
11
|
+
valuesCombinationOperator: ValuesCombinationOperator;
|
|
21
12
|
searchAutoCompleteActions?: AutoCompleteActions;
|
|
22
13
|
searchAutoCompleteData?: AutoCompleteData;
|
|
23
14
|
onChange: (value: ValuesDropdownOption[]) => void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccountBase, Amount, ClassBase, ID, NestedAccountHierarchyForReport, NestedClassHierarchyForReport, Project, RecommendationWithCOTByLineId, TransactionType, TransactionWithCOT, UncategorizedAccounts, ZeniDate } from '@zeniai/client-epic-state';
|
|
1
|
+
import { AccountBase, Amount, ClassBase, FetchStateAndError, ID, NestedAccountHierarchyForReport, NestedClassHierarchyForReport, Project, RecommendationWithCOTByLineId, TransactionType, TransactionWithCOT, UncategorizedAccounts, ZeniDate } from '@zeniai/client-epic-state';
|
|
2
2
|
import { COTTrackingProps } from '../../../types/cotTracking';
|
|
3
3
|
import { DisableMode } from '../../formElements/common/common';
|
|
4
4
|
import { LineInfo, SearchAutoComplete } from '../common';
|
|
@@ -26,7 +26,7 @@ export declare const LineTitleItem: ({ title, amount, sectionId, lineIndex, isDi
|
|
|
26
26
|
isDisabled?: DisableMode;
|
|
27
27
|
isTransactionCommentingEnabled?: boolean;
|
|
28
28
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
export default function TransactionLineWithAccountAndClass({ accountList, accountsHierarchyList, classHierarchyList, classList, projects, sectionId, lineItemLocalData, isAccountAndClassNonEditable, isAccountingClassesEnabled, isAccountingProjectsEnabled, isProjectsTransactionsEnabled, lineIndex, lineId, isCOTEnabled, lineRecommendation, bookCloseDate, containerRef, searchAutoComplete, transaction, uncategorizedAccounts, transactionType, vendorName, isDisabled, cotTracking, openTooltipId, setOpenTooltipId, isUncategorizedExpenseCategoryEnabled, isTransactionCommentingEnabled, entityId, }: Readonly<{
|
|
29
|
+
export default function TransactionLineWithAccountAndClass({ accountList, accountsHierarchyList, classHierarchyList, classList, projects, sectionId, lineItemLocalData, isAccountAndClassNonEditable, isAccountingClassesEnabled, isAccountingProjectsEnabled, isProjectsTransactionsEnabled, lineIndex, lineId, isCOTEnabled, lineRecommendation, bookCloseDate, containerRef, searchAutoComplete, transaction, uncategorizedAccounts, transactionType, vendorName, isDisabled, cotTracking, openTooltipId, setOpenTooltipId, isUncategorizedExpenseCategoryEnabled, isTransactionCommentingEnabled, entityId, categoryClassRecommendationsFetchState, }: Readonly<{
|
|
30
30
|
accountList: AccountBase[];
|
|
31
31
|
accountsHierarchyList: NestedAccountHierarchyForReport[];
|
|
32
32
|
classHierarchyList: NestedClassHierarchyForReport[];
|
|
@@ -43,6 +43,7 @@ export default function TransactionLineWithAccountAndClass({ accountList, accoun
|
|
|
43
43
|
sectionId: string;
|
|
44
44
|
transaction: TransactionWithCOT;
|
|
45
45
|
bookCloseDate?: ZeniDate;
|
|
46
|
+
categoryClassRecommendationsFetchState?: FetchStateAndError;
|
|
46
47
|
cotTracking?: COTTrackingProps;
|
|
47
48
|
entityId?: ID;
|
|
48
49
|
isAccountAndClassNonEditable?: boolean;
|
|
@@ -52,6 +52,7 @@ export declare enum FeatureGatesNamesWebApp {
|
|
|
52
52
|
isDashboardSidebarThanksGivingAnimationEnabled = "is_dashboard_sidebar_thanksgiving_animation_enabled",
|
|
53
53
|
isDashboardSidebarChristmasAnimationEnabled = "is_dashboard_sidebar_christmas_animation_enabled",
|
|
54
54
|
isDashboardSidebarNewYearAnimationEnabled = "is_dashboard_sidebar_new_year_animation_enabled",
|
|
55
|
+
isExpenseAutomationSearchAndFilterEnabled = "is_expense_automation_search_and_filter_enabled",
|
|
55
56
|
isChargeCardPaymentHistoryFeatureEnabled = "is_charge_card_payment_history_feature_enabled",
|
|
56
57
|
isIssuePhysicalDebitCardEnabled = "is_issue_physical_debit_card_enabled",
|
|
57
58
|
isAutoTransferRuleEnabled = "is_auto_transfer_rule_enabled",
|
|
@@ -129,6 +130,7 @@ export declare const FeatureGatesNames: {
|
|
|
129
130
|
isDashboardSidebarThanksGivingAnimationEnabled: FeatureGatesNamesWebApp.isDashboardSidebarThanksGivingAnimationEnabled;
|
|
130
131
|
isDashboardSidebarChristmasAnimationEnabled: FeatureGatesNamesWebApp.isDashboardSidebarChristmasAnimationEnabled;
|
|
131
132
|
isDashboardSidebarNewYearAnimationEnabled: FeatureGatesNamesWebApp.isDashboardSidebarNewYearAnimationEnabled;
|
|
133
|
+
isExpenseAutomationSearchAndFilterEnabled: FeatureGatesNamesWebApp.isExpenseAutomationSearchAndFilterEnabled;
|
|
132
134
|
isChargeCardPaymentHistoryFeatureEnabled: FeatureGatesNamesWebApp.isChargeCardPaymentHistoryFeatureEnabled;
|
|
133
135
|
isIssuePhysicalDebitCardEnabled: FeatureGatesNamesWebApp.isIssuePhysicalDebitCardEnabled;
|
|
134
136
|
isAutoTransferRuleEnabled: FeatureGatesNamesWebApp.isAutoTransferRuleEnabled;
|
package/dist/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-1jieYekd.cjs"),a=require("./vendor-.pnpm-Dd2Fl0gB.cjs"),t=require("@emotion/styled");exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingActivationPage=e.CustomerOnboardingActivationPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MagicLinkDomesticWireDetailsPage=e.MagicLinkDomesticWireDetailsPage;exports.MagicLinkInternationalWireDetailsPage=e.MagicLinkInternationalWireDetailsPage;exports.MagicLinkSuccessPage=e.MagicLinkSuccessPage;exports.MagicLinkVendorACHDetailsPage=e.MagicLinkVendorACHDetailsPage;exports.Modal=e.Modal;exports.MonthEndEmailDrawerCustomerRequestPage=e.MonthEndEmailDrawerCustomerRequestPage;exports.MyBankConnectionsSettingsPage=e.MyBankConnectionsSettingsPage;exports.MyPendingActivationChargeCardListPage=e.MyPendingActivationChargeCardListPage;exports.MyProfileSettingsPage=e.MyProfileSettingsPage;exports.NavBar=e.NavBar;exports.NavBarRightRowStyled=e.NavBarRightRowStyled;exports.NewGlobalMerchantPage=e.NewGlobalMerchantPage;exports.NewUpdateAvailablePage=e.NewUpdateAvailablePage;exports.NotFoundPage=e.NotFoundPage;exports.NotificationIcon=e.SvgNotification;exports.NotificationSettingsPage=e.NotificationSettingsPage;exports.NotificationsPage=e.NotificationsPage;exports.OAuthConsentPage=e.OAuthConsentPage;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.TaskDetailPage=e.TaskDetailPage;exports.TaskManagementPage=e.TaskManagementPage;exports.TenantsDropDown=e.TenantsDropDown;exports.TextStyle=e.TextStyle;exports.ToolkitProvider=e.ToolkitProvider;exports.TopExDetailPage=e.TopExDetailPage;exports.TransactionActivityLogPage=e.TransactionActivityLogPage;exports.TransactionActivityLogPanel=e.TransactionActivityLogPanel;exports.TransactionDetailPage=e.TransactionDetailPage;exports.TransactionDetailSkeleton=e.TransactionDetailSkeleton;exports.TransactionListBig=e.TransactionListBig;exports.TransactionListPage=e.TransactionListPage;exports.TransactionPanelInternalContext=e.TransactionPanelInternalContext;exports.TransactionSidePanelLayout=e.TransactionSidePanelLayout;exports.TransactionVendorDetailPage=e.TransactionVendorDetailPage;exports.TransferDrawerPage=e.TransferDrawerPage;exports.TreasuryOverviewPage=e.TreasuryOverviewPage;exports.TreasuryPromoPage=e.TreasuryPromoPage;exports.TreasurySetUpPage=e.TreasurySetUpPage;exports.TreasuryStatementsPage=e.TreasuryStatementsPage;exports.TreasuryTaxLetterPage=e.TreasuryTaxLetterPage;exports.TreasuryTransferOrReviewPage=e.TreasuryTransferOrReviewPage;exports.TrendChart=e.TrendChart;exports.UncategorizedAccountsMappingPage=e.UncategorizedAccountsMappingPage;exports.UnitIntegrationPage=e.UnitIntegrationPage;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.VerifyDevice=e.VerifyDevice;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.buildStickyKeySet=e.buildStickyKeySet;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useAgentPerfAccess=e.useAgentPerfAccess;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSchedulePanelInternal=e.useSchedulePanelInternal;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useTransactionPanelInternal=e.useTransactionPanelInternal;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;exports.zeniEmotionStyled=t;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-CTV4uaY-.cjs"),a=require("./vendor-.pnpm-Dd2Fl0gB.cjs"),t=require("@emotion/styled");exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingActivationPage=e.CustomerOnboardingActivationPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MagicLinkDomesticWireDetailsPage=e.MagicLinkDomesticWireDetailsPage;exports.MagicLinkInternationalWireDetailsPage=e.MagicLinkInternationalWireDetailsPage;exports.MagicLinkSuccessPage=e.MagicLinkSuccessPage;exports.MagicLinkVendorACHDetailsPage=e.MagicLinkVendorACHDetailsPage;exports.Modal=e.Modal;exports.MonthEndEmailDrawerCustomerRequestPage=e.MonthEndEmailDrawerCustomerRequestPage;exports.MyBankConnectionsSettingsPage=e.MyBankConnectionsSettingsPage;exports.MyPendingActivationChargeCardListPage=e.MyPendingActivationChargeCardListPage;exports.MyProfileSettingsPage=e.MyProfileSettingsPage;exports.NavBar=e.NavBar;exports.NavBarRightRowStyled=e.NavBarRightRowStyled;exports.NewGlobalMerchantPage=e.NewGlobalMerchantPage;exports.NewUpdateAvailablePage=e.NewUpdateAvailablePage;exports.NotFoundPage=e.NotFoundPage;exports.NotificationIcon=e.SvgNotification;exports.NotificationSettingsPage=e.NotificationSettingsPage;exports.NotificationsPage=e.NotificationsPage;exports.OAuthConsentPage=e.OAuthConsentPage;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.TaskDetailPage=e.TaskDetailPage;exports.TaskManagementPage=e.TaskManagementPage;exports.TenantsDropDown=e.TenantsDropDown;exports.TextStyle=e.TextStyle;exports.ToolkitProvider=e.ToolkitProvider;exports.TopExDetailPage=e.TopExDetailPage;exports.TransactionActivityLogPage=e.TransactionActivityLogPage;exports.TransactionActivityLogPanel=e.TransactionActivityLogPanel;exports.TransactionDetailPage=e.TransactionDetailPage;exports.TransactionDetailSkeleton=e.TransactionDetailSkeleton;exports.TransactionListBig=e.TransactionListBig;exports.TransactionListPage=e.TransactionListPage;exports.TransactionPanelInternalContext=e.TransactionPanelInternalContext;exports.TransactionSidePanelLayout=e.TransactionSidePanelLayout;exports.TransactionVendorDetailPage=e.TransactionVendorDetailPage;exports.TransferDrawerPage=e.TransferDrawerPage;exports.TreasuryOverviewPage=e.TreasuryOverviewPage;exports.TreasuryPromoPage=e.TreasuryPromoPage;exports.TreasurySetUpPage=e.TreasurySetUpPage;exports.TreasuryStatementsPage=e.TreasuryStatementsPage;exports.TreasuryTaxLetterPage=e.TreasuryTaxLetterPage;exports.TreasuryTransferOrReviewPage=e.TreasuryTransferOrReviewPage;exports.TrendChart=e.TrendChart;exports.UncategorizedAccountsMappingPage=e.UncategorizedAccountsMappingPage;exports.UnitIntegrationPage=e.UnitIntegrationPage;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.VerifyDevice=e.VerifyDevice;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.buildStickyKeySet=e.buildStickyKeySet;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useAgentPerfAccess=e.useAgentPerfAccess;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSchedulePanelInternal=e.useSchedulePanelInternal;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useTransactionPanelInternal=e.useTransactionPanelInternal;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;exports.zeniEmotionStyled=t;
|
package/dist/index.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as s, a as t, b as o, c as i, d as n, e as r, f as l, g, h as d, i as P, j as c, k as u, l as C, m as b, n as m, o as S, p, q as A, r as D, s as h, t as T, u as v, v as L, w as y, x as f, y as w, z as k, B as I, C as R, D as V, E as B, F as x, G as M, H as N, I as E, J as O, K as F, S as W, L as U, M as _, N as Z, O as G, P as H, Q as z, R as q, T as Q, U as J, V as K, W as j, X, Y, Z as $, _ as aa, $ as ea, S as sa, a0 as ta, a1 as oa, a2 as ia, a3 as na, a4 as ra, a5 as la, a6 as ga, a7 as da, a8 as Pa, a9 as ca, aa as ua, ab as Ca, ac as ba, ad as ma, ae as Sa, af as pa, ag as Aa, ah as Da, ai as ha, aj as Ta, ak as va, al as La, am as ya, an as fa, ao as wa, ap as ka, aq as Ia, ar as Ra, as as Va, at as Ba, au as xa, av as Ma, aw as Na, ax as Ea, ay as Oa, az as Fa, aA as Wa, aB as Ua, aC as _a, aD as Za, aE as Ga, aF as Ha, aG as za, aH as qa, aI as Qa, aJ as Ja, aK as Ka, aL as ja, aM as Xa, aN as Ya, aO as $a, aP as ae, aQ as ee, aR as se, aS as te, aT as oe, aU as ie, aV as ne, aW as re, aX as le, aY as ge, aZ as de, a_ as Pe, a$ as ce, b0 as ue, b1 as Ce, b2 as be, b3 as me, b4 as Se, b5 as pe, b6 as Ae, b7 as De, b8 as he, b9 as Te, ba as ve, bb as Le, bc as ye, bd as fe, be as we, bf as ke, bg as Ie, bh as Re, bi as Ve, bj as Be, bk as xe, bl as Me, bm as Ne, bn as Ee, bo as Oe, bp as Fe, bq as We, br as Ue, bs as _e, bt as Ze, bu as Ge, bv as He, bw as ze, bx as qe, by as Qe, bz as Je, bA as Ke, S as je, bB as Xe, bC as Ye, bD as $e, bE as as, bF as es, bG as ss, bH as ts, bI as os, bJ as is, bK as ns, bL as rs, bM as ls, bN as gs, bO as ds, bP as Ps, bQ as cs, bR as us, bS as Cs, bT as bs, bU as ms, bV as Ss, bW as ps, bX as As, bY as Ds, bZ as hs, b_ as Ts, b$ as vs, c0 as Ls, c1 as ys, c2 as fs, c3 as ws, c4 as ks, c5 as Is, c6 as Rs, c7 as Vs, c8 as Bs, c9 as xs, ca as Ms, cb as Ns, cc as Es, cd as Os, ce as Fs, cf as Ws, cg as Us, ch as _s, ci as Zs, cj as Gs, ck as Hs, cl as zs, cm as qs, cn as Qs, co as Js, cp as Ks, cq as js, cr as Xs, cs as Ys, ct as $s, cu as at, cv as et, cw as st, cx as tt, cy as ot, cz as it, cA as nt, cB as rt, cC as lt, cD as gt, cE as dt, cF as Pt, cG as ct, cH as ut, cI as Ct, cJ as bt, cK as mt, cL as St, cM as pt, cN as At, cO as Dt, cP as ht, cQ as Tt, cR as vt, cS as Lt, cT as yt, cU as ft, cV as wt, cW as kt, cX as It, cY as Rt, cZ as Vt, c_ as Bt, c$ as xt, d0 as Mt, d1 as Nt, d2 as Et, d3 as Ot, d4 as Ft, d5 as Wt, d6 as Ut, d7 as _t, d8 as Zt, d9 as Gt, da as Ht, db as zt, dc as qt, dd as Qt, de as Jt, df as Kt, dg as jt, dh as Xt, di as Yt, dj as $t, dk as ao, dl as eo, dm as so, dn as to, dp as oo, dq as io, dr as no, ds as ro, dt as lo, du as go, dv as Po, dw as co, dx as uo, dy as Co, dz as bo, dA as mo, dB as So, dC as po, dD as Ao, dE as Do, dF as ho, dG as To, dH as vo, dI as Lo, dJ as yo, dK as fo, dL as wo, dM as ko, dN as Io } from "./SessionTimeoutPopup-
|
|
1
|
+
import { A as s, a as t, b as o, c as i, d as n, e as r, f as l, g, h as d, i as P, j as c, k as u, l as C, m as b, n as m, o as S, p, q as A, r as D, s as h, t as T, u as v, v as L, w as y, x as f, y as w, z as k, B as I, C as R, D as V, E as B, F as x, G as M, H as N, I as E, J as O, K as F, S as W, L as U, M as _, N as Z, O as G, P as H, Q as z, R as q, T as Q, U as J, V as K, W as j, X, Y, Z as $, _ as aa, $ as ea, S as sa, a0 as ta, a1 as oa, a2 as ia, a3 as na, a4 as ra, a5 as la, a6 as ga, a7 as da, a8 as Pa, a9 as ca, aa as ua, ab as Ca, ac as ba, ad as ma, ae as Sa, af as pa, ag as Aa, ah as Da, ai as ha, aj as Ta, ak as va, al as La, am as ya, an as fa, ao as wa, ap as ka, aq as Ia, ar as Ra, as as Va, at as Ba, au as xa, av as Ma, aw as Na, ax as Ea, ay as Oa, az as Fa, aA as Wa, aB as Ua, aC as _a, aD as Za, aE as Ga, aF as Ha, aG as za, aH as qa, aI as Qa, aJ as Ja, aK as Ka, aL as ja, aM as Xa, aN as Ya, aO as $a, aP as ae, aQ as ee, aR as se, aS as te, aT as oe, aU as ie, aV as ne, aW as re, aX as le, aY as ge, aZ as de, a_ as Pe, a$ as ce, b0 as ue, b1 as Ce, b2 as be, b3 as me, b4 as Se, b5 as pe, b6 as Ae, b7 as De, b8 as he, b9 as Te, ba as ve, bb as Le, bc as ye, bd as fe, be as we, bf as ke, bg as Ie, bh as Re, bi as Ve, bj as Be, bk as xe, bl as Me, bm as Ne, bn as Ee, bo as Oe, bp as Fe, bq as We, br as Ue, bs as _e, bt as Ze, bu as Ge, bv as He, bw as ze, bx as qe, by as Qe, bz as Je, bA as Ke, S as je, bB as Xe, bC as Ye, bD as $e, bE as as, bF as es, bG as ss, bH as ts, bI as os, bJ as is, bK as ns, bL as rs, bM as ls, bN as gs, bO as ds, bP as Ps, bQ as cs, bR as us, bS as Cs, bT as bs, bU as ms, bV as Ss, bW as ps, bX as As, bY as Ds, bZ as hs, b_ as Ts, b$ as vs, c0 as Ls, c1 as ys, c2 as fs, c3 as ws, c4 as ks, c5 as Is, c6 as Rs, c7 as Vs, c8 as Bs, c9 as xs, ca as Ms, cb as Ns, cc as Es, cd as Os, ce as Fs, cf as Ws, cg as Us, ch as _s, ci as Zs, cj as Gs, ck as Hs, cl as zs, cm as qs, cn as Qs, co as Js, cp as Ks, cq as js, cr as Xs, cs as Ys, ct as $s, cu as at, cv as et, cw as st, cx as tt, cy as ot, cz as it, cA as nt, cB as rt, cC as lt, cD as gt, cE as dt, cF as Pt, cG as ct, cH as ut, cI as Ct, cJ as bt, cK as mt, cL as St, cM as pt, cN as At, cO as Dt, cP as ht, cQ as Tt, cR as vt, cS as Lt, cT as yt, cU as ft, cV as wt, cW as kt, cX as It, cY as Rt, cZ as Vt, c_ as Bt, c$ as xt, d0 as Mt, d1 as Nt, d2 as Et, d3 as Ot, d4 as Ft, d5 as Wt, d6 as Ut, d7 as _t, d8 as Zt, d9 as Gt, da as Ht, db as zt, dc as qt, dd as Qt, de as Jt, df as Kt, dg as jt, dh as Xt, di as Yt, dj as $t, dk as ao, dl as eo, dm as so, dn as to, dp as oo, dq as io, dr as no, ds as ro, dt as lo, du as go, dv as Po, dw as co, dx as uo, dy as Co, dz as bo, dA as mo, dB as So, dC as po, dD as Ao, dE as Do, dF as ho, dG as To, dH as vo, dI as Lo, dJ as yo, dK as fo, dL as wo, dM as ko, dN as Io } from "./SessionTimeoutPopup-C7XZ_-OF.js";
|
|
2
2
|
import { u as Vo, s as Bo } from "./vendor-.pnpm-DtQs9f4A.js";
|
|
3
3
|
import { default as Mo } from "@emotion/styled";
|
|
4
4
|
export {
|
|
@@ -83,10 +83,13 @@ export declare const zeniStrings: {
|
|
|
83
83
|
unreview: string;
|
|
84
84
|
download: string;
|
|
85
85
|
search: string;
|
|
86
|
+
searchShortcutCmd: string;
|
|
87
|
+
searchShortcutCtrl: string;
|
|
86
88
|
delete: string;
|
|
87
89
|
reload: string;
|
|
88
90
|
goHome: string;
|
|
89
91
|
refresh: string;
|
|
92
|
+
filter: string;
|
|
90
93
|
name: string;
|
|
91
94
|
select: string;
|
|
92
95
|
goBack: string;
|
|
@@ -8496,6 +8499,11 @@ export declare const zeniStrings: {
|
|
|
8496
8499
|
completed: string;
|
|
8497
8500
|
autoCategorized: string;
|
|
8498
8501
|
};
|
|
8502
|
+
completedSubTabs: {
|
|
8503
|
+
all: string;
|
|
8504
|
+
aiAccountant: string;
|
|
8505
|
+
manual: string;
|
|
8506
|
+
};
|
|
8499
8507
|
subTitles: {
|
|
8500
8508
|
review: {
|
|
8501
8509
|
item1: {
|
|
@@ -8530,6 +8538,46 @@ export declare const zeniStrings: {
|
|
|
8530
8538
|
title: string;
|
|
8531
8539
|
subTitle: string;
|
|
8532
8540
|
};
|
|
8541
|
+
emptyStates: {
|
|
8542
|
+
noSearchResults: {
|
|
8543
|
+
title: string;
|
|
8544
|
+
subTitle: string;
|
|
8545
|
+
};
|
|
8546
|
+
};
|
|
8547
|
+
filters: {
|
|
8548
|
+
categoryLabels: {
|
|
8549
|
+
paymentAccountName: string;
|
|
8550
|
+
paymentAccountType: string;
|
|
8551
|
+
payee: string;
|
|
8552
|
+
category: string;
|
|
8553
|
+
class: string;
|
|
8554
|
+
amount: string;
|
|
8555
|
+
};
|
|
8556
|
+
amountOperators: {
|
|
8557
|
+
lessThan: string;
|
|
8558
|
+
greaterThan: string;
|
|
8559
|
+
isEqual: string;
|
|
8560
|
+
inBetween: string;
|
|
8561
|
+
placeholder: string;
|
|
8562
|
+
};
|
|
8563
|
+
amountInputPlaceholders: {
|
|
8564
|
+
enterAmount: string;
|
|
8565
|
+
from: string;
|
|
8566
|
+
to: string;
|
|
8567
|
+
};
|
|
8568
|
+
filterOptions: {
|
|
8569
|
+
transactionAmountOptions: {
|
|
8570
|
+
label: string;
|
|
8571
|
+
value: string;
|
|
8572
|
+
}[];
|
|
8573
|
+
transactionTypeOptions: {
|
|
8574
|
+
label: string;
|
|
8575
|
+
value: string;
|
|
8576
|
+
}[];
|
|
8577
|
+
};
|
|
8578
|
+
selectPaymentAccountNamePlaceholder: string;
|
|
8579
|
+
searchForPayeePlaceholder: string;
|
|
8580
|
+
};
|
|
8533
8581
|
addCategory: string;
|
|
8534
8582
|
addClass: string;
|
|
8535
8583
|
addProject: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/web-components",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.43-betaAD02",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@statsig/react-bindings": "^3.14.0",
|
|
50
50
|
"@stripe/react-stripe-js": "^2.7.3",
|
|
51
51
|
"@stripe/stripe-js": "^4.4.0",
|
|
52
|
-
"@zeniai/client-analytics": "2.0.
|
|
53
|
-
"@zeniai/client-epic-state": "5.0.
|
|
52
|
+
"@zeniai/client-analytics": "2.0.19",
|
|
53
|
+
"@zeniai/client-epic-state": "5.0.77",
|
|
54
54
|
"autosuggest-highlight": "^3.2.1",
|
|
55
55
|
"browser-image-compression": "^2.0.2",
|
|
56
56
|
"countries-list": "^2.6.1",
|
|
@@ -208,8 +208,8 @@
|
|
|
208
208
|
"@types/color": "^3.0.2",
|
|
209
209
|
"@types/react-select": "^4.0.18",
|
|
210
210
|
"@types/react-window": "^1.8.8",
|
|
211
|
-
"@zeniai/client-analytics": "2.0.
|
|
212
|
-
"@zeniai/client-epic-state": "5.0.
|
|
211
|
+
"@zeniai/client-analytics": "2.0.19",
|
|
212
|
+
"@zeniai/client-epic-state": "5.0.77",
|
|
213
213
|
"color": "^3.1.3",
|
|
214
214
|
"react": "18.3.1",
|
|
215
215
|
"react-dom": "18.3.1",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"scripts": {
|
|
249
249
|
"clean": "rimraf build",
|
|
250
250
|
"build-stories": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit",
|
|
251
|
-
"test": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit && bash ./scripts/test-storybook-watch.sh",
|
|
251
|
+
"test": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && tsc --noEmit && bash ./scripts/test-storybook-watch.sh",
|
|
252
252
|
"test-all": "export NODE_OPTIONS=--max-old-space-size=8192 && tsc --noEmit && test-storybook --updateSnapshot --maxWorkers 2 --testTimeout 30000",
|
|
253
253
|
"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",
|
|
254
254
|
"storybook": "export NODE_OPTIONS=--max-old-space-size=8192 && storybook dev -p 6006",
|
|
@@ -256,8 +256,11 @@
|
|
|
256
256
|
"circular-dependency": "npx madge --circular --extensions ts ./src",
|
|
257
257
|
"lint": "export NODE_OPTIONS=--max-old-space-size=8192 && time eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
|
|
258
258
|
"lint:fix": "chmod +x ./scripts/fix-lint.sh && ./scripts/fix-lint.sh",
|
|
259
|
-
"lint
|
|
260
|
-
"
|
|
259
|
+
"lint-modified-files": "chmod +x ./scripts/lint-modified-files.sh && ./scripts/lint-modified-files.sh",
|
|
260
|
+
"lint:fix-modified-files": "chmod +x ./scripts/lint-modified-files.sh && LINT_FIX=true ./scripts/lint-modified-files.sh",
|
|
261
|
+
"tsc-modified-files": "chmod +x ./scripts/tsc-modified-files.sh && ./scripts/tsc-modified-files.sh",
|
|
262
|
+
"typecheck": "tsc --noEmit",
|
|
263
|
+
"build": "export NODE_OPTIONS=--max-old-space-size=8192 && pnpm lint-modified-files && pnpm tsc-modified-files && vite build",
|
|
261
264
|
"format": "prettier --write --ignore-unknown \"src/**/*\" && pnpm lint",
|
|
262
265
|
"format-watch": "(git diff --name-only --diff-filter=ACM && git ls-files --others --exclude-standard) | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|
|
263
266
|
"format-staged": "git diff --cached --name-only --diff-filter=ACM | grep -E '\\.(ts|tsx|js)$' | xargs prettier --write || true",
|