@zeniai/web-components 4.2.25-betaAK0 → 4.2.25-betaAK2
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-C-cJpf_U.js → SessionTimeoutPopup-CJQcYSQa.js} +65692 -66763
- package/dist/{SessionTimeoutPopup-CYW5Crs2.cjs → SessionTimeoutPopup-DTeQqJ90.cjs} +14793 -14980
- package/dist/cockpit.cjs.js +2 -2
- package/dist/cockpit.esm.js +250 -257
- package/dist/components/invoicing/common/InvoicingFormControls.d.ts +0 -4
- package/dist/components/invoicing/common/InvoicingSkeletons.d.ts +0 -4
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +0 -10
- package/dist/index.esm.js +335 -342
- package/package.json +2 -2
- package/dist/components/invoicing/integrations/InvoicingIntegrationsPage.d.ts +0 -7
- package/dist/components/invoicing/onboarding/InvoicingOnboardingPage.d.ts +0 -6
- package/dist/components/invoicing/portalPreview/InvoicingPortalPreviewPage.d.ts +0 -7
- package/dist/components/invoicing/reports/InvoicingReportPage.d.ts +0 -13
- package/dist/components/invoicing/reports/InvoicingReportsHubPage.d.ts +0 -6
- package/dist/components/invoicing/reports/invoicingReportMeta.d.ts +0 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeniai/web-components",
|
|
3
|
-
"version": "4.2.25-
|
|
3
|
+
"version": "4.2.25-betaAK2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@stripe/react-stripe-js": "^2.7.3",
|
|
51
51
|
"@stripe/stripe-js": "^4.4.0",
|
|
52
52
|
"@zeniai/client-analytics": "2.0.33",
|
|
53
|
-
"@zeniai/client-epic-state": "5.1.
|
|
53
|
+
"@zeniai/client-epic-state": "5.1.34-betaAK1",
|
|
54
54
|
"autosuggest-highlight": "^3.2.1",
|
|
55
55
|
"browser-image-compression": "^2.0.2",
|
|
56
56
|
"countries-list": "^2.6.1",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Integrations settings page (HubSpot sync, product catalog sync, webhook
|
|
3
|
-
* deliveries). Mirrors the standalone Invoices integrations screen; the sync
|
|
4
|
-
* state is local prototype state with no backend dependency.
|
|
5
|
-
*/
|
|
6
|
-
export declare function InvoicingIntegrationsPage(): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export default InvoicingIntegrationsPage;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export interface InvoicingOnboardingPageProps {
|
|
2
|
-
currencyCode?: string;
|
|
3
|
-
onComplete?: () => void;
|
|
4
|
-
}
|
|
5
|
-
export declare function InvoicingOnboardingPage({ currencyCode, onComplete, }: Readonly<InvoicingOnboardingPageProps>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export default InvoicingOnboardingPage;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Admin-side preview of the customer billing portal. Presentational only — uses
|
|
3
|
-
* representative data so admins can see what customers experience. The live
|
|
4
|
-
* customer-facing portal is served by the separate public payment-link flow.
|
|
5
|
-
*/
|
|
6
|
-
export declare function InvoicingPortalPreviewPage(): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
export default InvoicingPortalPreviewPage;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { InvoicingAgingReport, InvoicingCustomerMovementReport, InvoicingDeferredRevenueReport, InvoicingReportKey } from '@zeniai/client-epic-state';
|
|
2
|
-
export interface InvoicingReportPageProps {
|
|
3
|
-
isLoading: boolean;
|
|
4
|
-
reportKey: InvoicingReportKey;
|
|
5
|
-
aging?: InvoicingAgingReport;
|
|
6
|
-
currencyCode?: string;
|
|
7
|
-
customerMovement?: InvoicingCustomerMovementReport;
|
|
8
|
-
deferredRevenue?: InvoicingDeferredRevenueReport;
|
|
9
|
-
genericRows?: Record<string, unknown>[];
|
|
10
|
-
subscriptionCounts?: unknown;
|
|
11
|
-
}
|
|
12
|
-
export declare function InvoicingReportPage({ aging, currencyCode, customerMovement, deferredRevenue, genericRows, isLoading, reportKey, subscriptionCounts, }: Readonly<InvoicingReportPageProps>): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export default InvoicingReportPage;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { InvoicingReportKey } from '@zeniai/client-epic-state';
|
|
2
|
-
export interface InvoicingReportsHubPageProps {
|
|
3
|
-
onReportClick: (key: InvoicingReportKey) => void;
|
|
4
|
-
}
|
|
5
|
-
export declare function InvoicingReportsHubPage({ onReportClick, }: Readonly<InvoicingReportsHubPageProps>): import("react/jsx-runtime").JSX.Element;
|
|
6
|
-
export default InvoicingReportsHubPage;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { InvoicingReportKey } from '@zeniai/client-epic-state';
|
|
2
|
-
export interface InvoicingReportMeta {
|
|
3
|
-
description: string;
|
|
4
|
-
key: InvoicingReportKey;
|
|
5
|
-
title: string;
|
|
6
|
-
}
|
|
7
|
-
/** Display metadata + ordering for the invoicing Reports hub and report pages. */
|
|
8
|
-
export declare const INVOICING_REPORTS: InvoicingReportMeta[];
|
|
9
|
-
export declare const INVOICING_REPORT_TITLES: Record<InvoicingReportKey, string>;
|