@zeniai/web-components 4.1.82 → 4.1.83-beta2ND
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-e39oGWwP.cjs → SessionTimeoutPopup-Biy827y-.cjs} +11714 -11840
- package/dist/{SessionTimeoutPopup-BG7Wn-SQ.js → SessionTimeoutPopup-DV5DW_41.js} +50839 -51014
- package/dist/appLocale.d.ts +2 -0
- package/dist/cockpit.cjs.js +2 -2
- package/dist/cockpit.esm.js +159 -159
- package/dist/components/customerOnboarding/CustomerOnboardingNoStepsPage.d.ts +1 -0
- package/dist/components/customerOnboarding/CustomerOnboardingPage.d.ts +1 -0
- package/dist/components/customerOnboarding/CustomerOnboardingProductSuitePage.d.ts +1 -0
- package/dist/components/customerOnboarding/detail/CustomerOnboardingPaymentAddressDetailPage.d.ts +1 -0
- package/dist/components/formElements/userSingleSelect/UserSingleSelect.d.ts +3 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +191 -191
- package/dist/strings/strings.d.ts +2 -0
- package/package.json +1 -1
- package/dist/components/customerOnboarding/CustomerOnboardingActivationPage.d.ts +0 -3
- package/dist/components/customerOnboarding/detail/CustomerOnboardingActivationPageMedium.d.ts +0 -7
- package/dist/components/customerOnboarding/detail/CustomerOnboardingActivationPageSmall.d.ts +0 -2
- package/dist/components/customerOnboarding/detail/components/CustomerOnboardingDetailPageSkeleton.d.ts +0 -4
|
@@ -8577,6 +8577,7 @@ export declare const zeniStrings: {
|
|
|
8577
8577
|
pageTitle: string;
|
|
8578
8578
|
pageSubtitle: string;
|
|
8579
8579
|
ctaLabel: string;
|
|
8580
|
+
ctaLabelWithoutLedger: string;
|
|
8580
8581
|
};
|
|
8581
8582
|
connectLedgerPage: {
|
|
8582
8583
|
pageTitle: string;
|
|
@@ -9866,6 +9867,7 @@ export declare const zeniStrings: {
|
|
|
9866
9867
|
reconciledByLabel: string;
|
|
9867
9868
|
lastUpdatedLabel: string;
|
|
9868
9869
|
applyingChanges: string;
|
|
9870
|
+
failed: string;
|
|
9869
9871
|
inProgress: string;
|
|
9870
9872
|
balancesNotFound: string;
|
|
9871
9873
|
bankBalanceNotFound: string;
|
package/package.json
CHANGED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { CustomerOnboardingActivationPageProps } from './detail/CustomerOnboardingActivationPageMedium';
|
|
2
|
-
declare const CustomerOnboardingActivationPage: (props: CustomerOnboardingActivationPageProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export default CustomerOnboardingActivationPage;
|
package/dist/components/customerOnboarding/detail/CustomerOnboardingActivationPageMedium.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { FetchState } from '@zeniai/client-epic-state';
|
|
2
|
-
export interface CustomerOnboardingActivationPageProps {
|
|
3
|
-
dashboardFetchState: FetchState;
|
|
4
|
-
onDashboardFetchDone: () => void;
|
|
5
|
-
onZeniLogoClick: () => void;
|
|
6
|
-
}
|
|
7
|
-
export declare const CustomerOnboardingActivationPageMedium: ({ dashboardFetchState, onZeniLogoClick, onDashboardFetchDone, }: CustomerOnboardingActivationPageProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/components/customerOnboarding/detail/CustomerOnboardingActivationPageSmall.d.ts
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import { CustomerOnboardingActivationPageProps } from './CustomerOnboardingActivationPageMedium';
|
|
2
|
-
export declare const CustomerOnboardingActivationPageSmall: ({ dashboardFetchState, onZeniLogoClick, onDashboardFetchDone, }: CustomerOnboardingActivationPageProps) => import("react/jsx-runtime").JSX.Element;
|