@tesouro/embedded-components-react 0.3.53 → 0.3.55
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/README.md +0 -20
- package/dist/index.d.ts +2 -22
- package/dist/index.js +44 -48
- package/dist/libs/tesouro-embedded-components-react/create-card-widget/feature/dist/index.js +4 -4
- package/dist/libs/tesouro-embedded-components-react/monite-sdk/dist/index22.js +1 -1
- package/dist/libs/tesouro-embedded-components-react/monite-sdk/dist/index98.js +47 -29
- package/dist/libs/tesouro-embedded-components-react/shared/feature/dist/lib/analytics/build-info.js +1 -1
- package/package.json +1 -1
- package/dist/lib/CreateCardWidget.d.ts +0 -823
- package/dist/lib/CreateCardWidget.js +0 -5
package/README.md
CHANGED
|
@@ -327,26 +327,6 @@ Read-only details for one credit **or** debit card — status, form factor, prog
|
|
|
327
327
|
| `bankLogoSrc` | `string` | `undefined` | Bank logo for the card face. Omit and the face renders without a logo rather than with a placeholder. |
|
|
328
328
|
| `bankLogoAlt` | `string` | `undefined` | Alt text for `bankLogoSrc`. Falls back to `labels.cardFace.bankLogoAlt`. |
|
|
329
329
|
|
|
330
|
-
### CreateCardWidget
|
|
331
|
-
|
|
332
|
-
Issues a new **debit** card for an enrolled team member: cardholder, format
|
|
333
|
-
(virtual / physical), funding bank account, and — for physical cards — a mailing
|
|
334
|
-
destination. Optional spend limit and per-transaction maximum are applied after
|
|
335
|
-
issuance. Loading, success, and error feedback use both full-screen views and
|
|
336
|
-
sonner toasts.
|
|
337
|
-
|
|
338
|
-
#### Props
|
|
339
|
-
|
|
340
|
-
| Prop | Type | Default | Description |
|
|
341
|
-
| --------------- | ---------------------------------------------------------- | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
342
|
-
| `cardArtSrc` | `string` | **Required** | Static card plastic image URL (no name overlays). |
|
|
343
|
-
| `labels` | `PartialDeep<CreateCardWidgetLabels>` | English labels | Overrides presentational copy (header, setup, mailing, card controls, preparing, success, footer). Nested groups merge per group. |
|
|
344
|
-
| `featureLabels` | toast / untitled-funding / velocity-control-name overrides | English labels | Overrides mutation toast strings (including spend-control and admin-access warnings), the funding-account fallback name, and API velocity-control `name`s. |
|
|
345
|
-
| `className` | `string` | — | Optional class on the presentational root. |
|
|
346
|
-
| `onClose` | `() => void` | — | Header close control. Omit and no close control is rendered. |
|
|
347
|
-
| `onCancel` | `() => void` | — | Called when Cancel is pressed (also invokes `onClose` when both are set). |
|
|
348
|
-
| `onViewCard` | `(cardId: string) => void` | — | Called with the new debit card id after a successful create when the user presses **View card**. |
|
|
349
|
-
|
|
350
330
|
### CounterpartsWidget
|
|
351
331
|
|
|
352
332
|
A self-contained widget for managing an organization's customers or vendors with searchable lists, money columns, details, editing, and deletion.
|
package/dist/index.d.ts
CHANGED
|
@@ -2029,14 +2029,6 @@ interface CreateCardFeatureLabels {
|
|
|
2029
2029
|
createdDescription: string;
|
|
2030
2030
|
};
|
|
2031
2031
|
}
|
|
2032
|
-
declare const CREATE_CARD_FEATURE_LABELS_EN: CreateCardFeatureLabels;
|
|
2033
|
-
declare function resolveCreateCardFeatureLabels(overrides?: Partial<{
|
|
2034
|
-
toast: Partial<CreateCardFeatureLabels['toast']>;
|
|
2035
|
-
untitledFundingAccount: string;
|
|
2036
|
-
velocityControlNames: Partial<CreateCardFeatureLabels['velocityControlNames']>;
|
|
2037
|
-
spendLimit: Partial<CreateCardFeatureLabels['spendLimit']>;
|
|
2038
|
-
success: Partial<CreateCardFeatureLabels['success']>;
|
|
2039
|
-
}>): CreateCardFeatureLabels;
|
|
2040
2032
|
|
|
2041
2033
|
type CreateCardWidgetProps = WidgetProviderProps & {
|
|
2042
2034
|
/** Static card plastic image URL (no overlays). Host / white-label supplied. */
|
|
@@ -2055,18 +2047,6 @@ type CreateCardWidgetProps = WidgetProviderProps & {
|
|
|
2055
2047
|
/** Fired with the new debit card id after a successful create. */
|
|
2056
2048
|
onViewCard?: (cardId: string) => void;
|
|
2057
2049
|
};
|
|
2058
|
-
/**
|
|
2059
|
-
* Self-contained Create Card widget. Issues a debit card via the Embed API and
|
|
2060
|
-
* drives setup → preparing → success with sonner toasts for the mutation.
|
|
2061
|
-
*/
|
|
2062
|
-
declare function CreateCardWidget({ baseUrl, widgetToken, organizationId, configClient, gatewayRouting, linkComponent, implementation, uiFramework, errorFallback, onError, analytics, disclosuresAcceptance, providerLabels, ...innerProps }: CreateCardWidgetProps): React.JSX.Element;
|
|
2063
|
-
|
|
2064
|
-
/** Opaque UI format values — mapped to API `DebitCardType` in the feature. */
|
|
2065
|
-
declare const CardFormatValue: {
|
|
2066
|
-
readonly Virtual: "virtual";
|
|
2067
|
-
readonly Physical: "physical";
|
|
2068
|
-
};
|
|
2069
|
-
type CardFormatValue = (typeof CardFormatValue)[keyof typeof CardFormatValue];
|
|
2070
2050
|
|
|
2071
2051
|
/**
|
|
2072
2052
|
* Every key of `T` optional, recursively, so a consumer can override one nested
|
|
@@ -5403,5 +5383,5 @@ interface CheckAmountAndDetailScreenProps {
|
|
|
5403
5383
|
|
|
5404
5384
|
type PendingFeatureStyleSources = CheckAmountAndDetailScreenProps | GapCoverageAlertProps | NoPolicyBannerProps;
|
|
5405
5385
|
|
|
5406
|
-
export { ACCEPT_DISCLOSURES_WIDGET_LABELS_EN, ACCOUNT_DELETE_DIALOG_LABELS_EN, ACCOUNT_FORM_SHEET_LABELS_EN, ADDITIONAL_OWNERS_LABELS_EN, AcceptDisclosuresWidget, AccountDeleteDialog, AccountFormSheet, BALANCES_WIDGET_LABELS_EN, BUSINESS_DETAILS_LABELS_EN, BalancesWidget, BankAccountOnboardingWidget, BankAccountsWidget, BillPayWidget, CHART_OF_ACCOUNTS_LABELS_EN, CHART_OF_ACCOUNTS_MESSAGE_LABELS_EN,
|
|
5407
|
-
export type { AcceptDisclosuresWidgetLabels, AcceptDisclosuresWidgetProps, AccountDeleteDialogLabels, AccountDeleteDialogProps, Labels$5 as AccountDetailsWidgetLabels, AccountFormErrors, AccountFormMode, AccountFormSheetLabels, AccountFormSheetProps, AccountFormValues, ActivateCardPanelLabels, AdditionalOwner, AdditionalOwnersLabels, AddressFormSheetLabels, BalancesWidgetLabels, BalancesWidgetProps, BankAccountFormSheetLabels, BankAccountOnboardingWidgetLabels, BankAccountOnboardingWidgetProps, FeatureLabels$5 as BankAccountsWidgetFeatureLabels, Labels$6 as BankAccountsWidgetLabels, BankAccountsWidgetProps, BillPayWidgetProps, BusinessDetailsLabels, BusinessDetailsValues, CardDetailsFeatureLabels, CardDetailsPanelLabels as CardDetailsWidgetLabels, CardDetailsWidgetProps, CardsFeatureLabels, CardsListLabels as CardsLabels, CardsPagination, ChartOfAccountsLabels, ChartOfAccountsMessageLabels, ChartOfAccountsTableProps, ChartOfAccountsWidgetLabelProps, ChartOfAccountsWidgetProps, CompanyStructureValue, ConfirmDeleteDialogLabels, CounterpartDetailsSheetLabels, CounterpartFormSheetLabels, CounterpartMessageLabels, CounterpartMode, CounterpartsScreenLabels, CounterpartsWidgetProps,
|
|
5386
|
+
export { ACCEPT_DISCLOSURES_WIDGET_LABELS_EN, ACCOUNT_DELETE_DIALOG_LABELS_EN, ACCOUNT_FORM_SHEET_LABELS_EN, ADDITIONAL_OWNERS_LABELS_EN, AcceptDisclosuresWidget, AccountDeleteDialog, AccountFormSheet, BALANCES_WIDGET_LABELS_EN, BUSINESS_DETAILS_LABELS_EN, BalancesWidget, BankAccountOnboardingWidget, BankAccountsWidget, BillPayWidget, CHART_OF_ACCOUNTS_LABELS_EN, CHART_OF_ACCOUNTS_MESSAGE_LABELS_EN, CardDetailsWidget, ChartOfAccountsTable, ChartOfAccountsWidget, CounterpartsWidget, CreditCardsWidget, DebitCardsWidget, ERROR_STATE_ID, ExpenseApprovalPoliciesWidget, ExpenseManagementWidget, ExpenseRequirementsWidget, HELP_FAQ_EN, HELP_WIDGET_LABELS_EN, HelpWidget, INSIGHTS_FEATURE_LABELS_EN, INSIGHTS_WIDGET_LABELS_EN, Implementation, InsightsWidget, ReceivablesWidgetMonite as InvoicingWidget, LinkedAccountsWidget, PERSONAL_DETAILS_LABELS_EN, ProductsWidget, ProfileWidget, RESULT_LABELS_EN, ReceiptMatchWidget, ReceivablesWidget, RefreshingRootWidgetProvider, RootWidgetProvider, SINGLE_INSIGHT_LABELS_EN, SettingsSection, SettingsWidget, DEFAULT_FEATURE_LABELS as TRANSFERS_FEATURE_LABELS_EN, TRANSFERS_WIDGET_LABELS_EN, TagsWidget, TeamWidget, TransfersWidget, UIFramework, UploadReceiptWidget, WIDGET_SUITE_DEFAULT_SECTIONS, WIDGET_SUITE_LABELS_EN, WidgetProvider, WidgetSuite, WidgetSuiteSectionId, WidgetTokenRefreshProvider, cloneEmbeddedClient, getGlobalWidgetConfig, getGlobalWidgetInitState, registerDesignSystemEnsurer, registerUIRenderers, setGlobalWidgetConfig, subscribeToGlobalWidgetInitState, updateGlobalWidgetConfig, useDisclosuresAcceptanceSurface, useOwnWidgetConfig, useRefetchWidget, useWidgetConfig, useWidgetError, useWidgetLoading, useWidgetToken };
|
|
5387
|
+
export type { AcceptDisclosuresWidgetLabels, AcceptDisclosuresWidgetProps, AccountDeleteDialogLabels, AccountDeleteDialogProps, Labels$5 as AccountDetailsWidgetLabels, AccountFormErrors, AccountFormMode, AccountFormSheetLabels, AccountFormSheetProps, AccountFormValues, ActivateCardPanelLabels, AdditionalOwner, AdditionalOwnersLabels, AddressFormSheetLabels, BalancesWidgetLabels, BalancesWidgetProps, BankAccountFormSheetLabels, BankAccountOnboardingWidgetLabels, BankAccountOnboardingWidgetProps, FeatureLabels$5 as BankAccountsWidgetFeatureLabels, Labels$6 as BankAccountsWidgetLabels, BankAccountsWidgetProps, BillPayWidgetProps, BusinessDetailsLabels, BusinessDetailsValues, CardDetailsFeatureLabels, CardDetailsPanelLabels as CardDetailsWidgetLabels, CardDetailsWidgetProps, CardsFeatureLabels, CardsListLabels as CardsLabels, CardsPagination, ChartOfAccountsLabels, ChartOfAccountsMessageLabels, ChartOfAccountsTableProps, ChartOfAccountsWidgetLabelProps, ChartOfAccountsWidgetProps, CompanyStructureValue, ConfirmDeleteDialogLabels, CounterpartDetailsSheetLabels, CounterpartFormSheetLabels, CounterpartMessageLabels, CounterpartMode, CounterpartsScreenLabels, CounterpartsWidgetProps, CreditCardsWidgetProps, DebitCardsWidgetProps, DisclosureLinks, EmbeddedClient, ExpenseApprovalPoliciesWidgetProps, Labels$3 as ExpenseManagementWidgetLabels, ExpenseManagementWidgetProps, ExpenseRequirementsWidgetProps, HelpFaqAnswer, HelpFaqBullet, HelpFaqBulletType, HelpFaqItem, HelpFaqSection, HelpWidgetLabels, HelpWidgetProps, InsightsFeatureLabels, InsightsWidgetLabels, InsightsWidgetProps, ReceivablesWidgetMoniteProps as InvoicingWidgetProps, LedgerAccountRow, LinkComponent, LinkComponentProps, FeatureLabels$2 as LinkedAccountsWidgetFeatureLabels, Labels$2 as LinkedAccountsWidgetLabels, LinkedAccountsWidgetProps, MarketingWidgetContent, MeasureUnitDeleteDialogLabels, MeasureUnitsManagerLabels, PendingFeatureStyleSources, PersonalDetailsLabels, PersonalDetailsValues, ProductDeleteDialogLabels, ProductDetailsSheetLabels, ProductFormSheetLabels, ProductMessageLabels, ProductsScreenLabels, ProductsWidgetProps, FeatureLabels$1 as ProfileWidgetFeatureLabels, Labels$1 as ProfileWidgetLabels, ProfileWidgetProps, ReceiptMatchSummary, ReceiptMatchWidgetProps, ReceivableActionDialogLabels, ReceivableDetailsSheetLabelOverrides, ReceivableDetailsSheetLabels, ReceivableDocumentType, ReceivableFormSheetLabels, ReceivableMessageLabels, ReceivablePaymentDialogLabels, ReceivableSendDialogLabels, ReceivableStatusBadgeLabels, ReceivablesScreenLabelOverrides, ReceivablesScreenLabels, ReceivablesWidgetProps, ReceivablesWidgetTab, RefreshingRootWidgetProviderProps, ResultLabels, RootWidgetProviderProps, SettingsWidgetAdditionalSection, FeatureLabels$4 as SettingsWidgetFeatureLabels, Labels$4 as SettingsWidgetLabels, SettingsWidgetProps, SettingsWidgetSection, SettingsWidgetSectionId, SingleInsightLabels, TagDeleteDialogLabels, TagFormSheetLabels, TagMessageLabels, TagsScreenLabels, TagsWidgetProps, FeatureLabels as TeamWidgetFeatureLabels, Labels as TeamWidgetLabels, TeamWidgetProps, FeatureLabels$3 as TransfersWidgetFeatureLabels, TransfersWidgetLabels, TransfersWidgetProps, UploadReceiptWidgetProps, WidgetConfig, WidgetConfigInput, WidgetInitResponse, WidgetInitState, WidgetProviderLabels, WidgetProviderProps, WidgetSuiteCardsLabels, WidgetSuiteDashboardLabels, WidgetSuiteDisclosureLabels, WidgetSuiteExpensesLabels, WidgetSuiteLabelOverrides, WidgetSuiteLabels, WidgetSuiteMenuLabels, WidgetSuiteProps, WidgetSuiteSectionContentLabels, WidgetSuiteSectionTitleLabels, WidgetTokenFetcher, WidgetTokenManager, WidgetTokenRefreshProviderProps, WidgetTokenState };
|
package/dist/index.js
CHANGED
|
@@ -16,44 +16,41 @@ import { BankAccountsWidget as w } from "./libs/tesouro-embedded-components-reac
|
|
|
16
16
|
import { CounterpartsWidget as T } from "./libs/tesouro-embedded-components-react/counterparts-widget/feature/dist/index8.js";
|
|
17
17
|
import { BillPayWidget as E } from "./libs/tesouro-embedded-components-react/bill-pay-widget/feature/dist/index81.js";
|
|
18
18
|
import { CardDetailsWidget as D } from "./libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index8.js";
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import { ACCEPT_DISCLOSURES_WIDGET_LABELS_EN as fe } from "./libs/tesouro-embedded-components-react/accept-disclosures-widget/ui/dist/lib/AcceptDisclosuresWidget/labels.js";
|
|
55
|
-
import { AcceptDisclosuresWidget as pe } from "./libs/tesouro-embedded-components-react/accept-disclosures-widget/feature/dist/index5.js";
|
|
56
|
-
import { WidgetSuite as me } from "./libs/tesouro-embedded-components-react/widget-suite/feature/dist/index16.js";
|
|
19
|
+
import { CreditCardsWidget as O } from "./libs/tesouro-embedded-components-react/cards-widget/feature/dist/index10.js";
|
|
20
|
+
import { DebitCardsWidget as k } from "./libs/tesouro-embedded-components-react/cards-widget/feature/dist/index11.js";
|
|
21
|
+
import { BALANCES_WIDGET_LABELS_EN as A } from "./libs/tesouro-embedded-components-react/balances-widget/ui/dist/lib/BalancesWidget/labels.js";
|
|
22
|
+
import { BalancesWidget as j } from "./libs/tesouro-embedded-components-react/balances-widget/feature/dist/index6.js";
|
|
23
|
+
import { INSIGHTS_FEATURE_LABELS_EN as M } from "./libs/tesouro-embedded-components-react/insights-widget/feature/dist/index3.js";
|
|
24
|
+
import { INSIGHTS_WIDGET_LABELS_EN as N } from "./libs/tesouro-embedded-components-react/insights-widget/ui/dist/lib/InsightsWidget/labels.js";
|
|
25
|
+
import { SINGLE_INSIGHT_LABELS_EN as P } from "./libs/tesouro-embedded-components-react/insights-widget/ui/dist/lib/InsightsWidget/SingleInsight/labels.js";
|
|
26
|
+
import { InsightsWidget as F } from "./libs/tesouro-embedded-components-react/insights-widget/feature/dist/index12.js";
|
|
27
|
+
import { InvoicingWidget as I } from "./libs/tesouro-embedded-components-react/invoicing-widget/feature/dist/index3.js";
|
|
28
|
+
import { ReceivablesWidget as L } from "./libs/tesouro-embedded-components-react/invoicing-widget/feature/dist/index12.js";
|
|
29
|
+
import { SettingsSection as R } from "./libs/tesouro-embedded-components-react/settings-widget/feature/dist/index4.js";
|
|
30
|
+
import { ExpenseApprovalPoliciesWidget as z } from "./libs/tesouro-embedded-components-react/expense-management-widget/feature/dist/index6.js";
|
|
31
|
+
import { UploadReceiptWidget as B } from "./libs/tesouro-embedded-components-react/expense-management-widget/feature/dist/index7.js";
|
|
32
|
+
import { ExpenseRequirementsWidget as V } from "./libs/tesouro-embedded-components-react/expense-requirements-widget/feature/dist/lib/ExpenseRequirementsWidget.js";
|
|
33
|
+
import { ExpenseManagementWidget as H } from "./libs/tesouro-embedded-components-react/expense-management-widget/feature/dist/index9.js";
|
|
34
|
+
import { ReceiptMatchWidget as U } from "./libs/tesouro-embedded-components-react/expense-management-widget/feature/dist/index13.js";
|
|
35
|
+
import { TagsWidget as W } from "./libs/tesouro-embedded-components-react/tags-widget/feature/dist/index11.js";
|
|
36
|
+
import { TeamWidget as G } from "./libs/tesouro-embedded-components-react/team-widget/feature/dist/index17.js";
|
|
37
|
+
import { CHART_OF_ACCOUNTS_MESSAGE_LABELS_EN as K } from "./libs/tesouro-embedded-components-react/gl-code-table-widget/feature/dist/index5.js";
|
|
38
|
+
import { ACCOUNT_DELETE_DIALOG_LABELS_EN as q, ACCOUNT_FORM_SHEET_LABELS_EN as J, CHART_OF_ACCOUNTS_LABELS_EN as Y } from "./libs/tesouro-embedded-components-react/gl-code-table-widget/ui/dist/index2.js";
|
|
39
|
+
import { ChartOfAccountsTable as X } from "./libs/tesouro-embedded-components-react/gl-code-table-widget/ui/dist/index3.js";
|
|
40
|
+
import { AccountFormSheet as Z } from "./libs/tesouro-embedded-components-react/gl-code-table-widget/ui/dist/index4.js";
|
|
41
|
+
import { AccountDeleteDialog as Q } from "./libs/tesouro-embedded-components-react/gl-code-table-widget/ui/dist/index5.js";
|
|
42
|
+
import { ChartOfAccountsWidget as $ } from "./libs/tesouro-embedded-components-react/gl-code-table-widget/feature/dist/index8.js";
|
|
43
|
+
import { HELP_WIDGET_LABELS_EN as ee } from "./libs/tesouro-embedded-components-react/help-widget/ui/contract/dist/index2.js";
|
|
44
|
+
import { HELP_FAQ_EN as te } from "./libs/tesouro-embedded-components-react/help-widget/ui/contract/dist/index3.js";
|
|
45
|
+
import { HelpWidget as ne } from "./libs/tesouro-embedded-components-react/help-widget/feature/dist/index3.js";
|
|
46
|
+
import { ProfileWidget as re } from "./libs/tesouro-embedded-components-react/profile-widget/feature/dist/index4.js";
|
|
47
|
+
import { SettingsWidget as ie } from "./libs/tesouro-embedded-components-react/settings-widget/feature/dist/index6.js";
|
|
48
|
+
import { DEFAULT_FEATURE_LABELS as ae } from "./libs/tesouro-embedded-components-react/transfers-widget/feature/dist/index3.js";
|
|
49
|
+
import { TRANSFERS_WIDGET_LABELS_EN as oe } from "./libs/tesouro-embedded-components-react/transfers-widget/ui/dist/lib/TransfersWidget/labels.js";
|
|
50
|
+
import { TransfersWidget as se } from "./libs/tesouro-embedded-components-react/transfers-widget/feature/dist/index7.js";
|
|
51
|
+
import { ACCEPT_DISCLOSURES_WIDGET_LABELS_EN as ce } from "./libs/tesouro-embedded-components-react/accept-disclosures-widget/ui/dist/lib/AcceptDisclosuresWidget/labels.js";
|
|
52
|
+
import { AcceptDisclosuresWidget as le } from "./libs/tesouro-embedded-components-react/accept-disclosures-widget/feature/dist/index5.js";
|
|
53
|
+
import { WidgetSuite as ue } from "./libs/tesouro-embedded-components-react/widget-suite/feature/dist/index16.js";
|
|
57
54
|
import "./lib/WidgetSuite.js";
|
|
58
55
|
import "./lib/AcceptDisclosuresWidget.js";
|
|
59
56
|
import "./lib/BankAccountsWidget.js";
|
|
@@ -61,7 +58,6 @@ import "./lib/BillPayWidget.js";
|
|
|
61
58
|
import "./lib/CreditCardsWidget.js";
|
|
62
59
|
import "./lib/DebitCardsWidget.js";
|
|
63
60
|
import "./lib/CardDetailsWidget.js";
|
|
64
|
-
import "./lib/CreateCardWidget.js";
|
|
65
61
|
import "./lib/CounterpartsWidget.js";
|
|
66
62
|
import "./lib/ExpenseManagementWidget.js";
|
|
67
63
|
import "./lib/ExpenseApprovalPoliciesWidget.js";
|
|
@@ -71,15 +67,15 @@ import "./lib/InsightsWidget.js";
|
|
|
71
67
|
import "./lib/ChartOfAccountsWidget.js";
|
|
72
68
|
import "./lib/HelpWidget.js";
|
|
73
69
|
import "./lib/InvoicingWidget.js";
|
|
74
|
-
import { LinkedAccountsWidget as
|
|
70
|
+
import { LinkedAccountsWidget as de } from "./libs/tesouro-embedded-components-react/linked-accounts-widget/feature/dist/index10.js";
|
|
75
71
|
import "./lib/LinkedAccountsWidget.js";
|
|
76
|
-
import { ADDITIONAL_OWNERS_LABELS_EN as
|
|
77
|
-
import { BUSINESS_DETAILS_LABELS_EN as
|
|
78
|
-
import { PERSONAL_DETAILS_LABELS_EN as
|
|
79
|
-
import { RESULT_LABELS_EN as
|
|
80
|
-
import { BankAccountOnboardingWidget as
|
|
72
|
+
import { ADDITIONAL_OWNERS_LABELS_EN as fe } from "./libs/tesouro-embedded-components-react/bank-account-onboarding-widget/ui/dist/index4.js";
|
|
73
|
+
import { BUSINESS_DETAILS_LABELS_EN as pe } from "./libs/tesouro-embedded-components-react/bank-account-onboarding-widget/ui/dist/index6.js";
|
|
74
|
+
import { PERSONAL_DETAILS_LABELS_EN as me } from "./libs/tesouro-embedded-components-react/bank-account-onboarding-widget/ui/dist/index7.js";
|
|
75
|
+
import { RESULT_LABELS_EN as he } from "./libs/tesouro-embedded-components-react/bank-account-onboarding-widget/ui/dist/index12.js";
|
|
76
|
+
import { BankAccountOnboardingWidget as ge } from "./libs/tesouro-embedded-components-react/bank-account-onboarding-widget/feature/dist/index18.js";
|
|
81
77
|
import "./lib/BankAccountOnboardingWidget.js";
|
|
82
|
-
import { ProductsWidget as
|
|
78
|
+
import { ProductsWidget as _e } from "./libs/tesouro-embedded-components-react/products-widget/feature/dist/index8.js";
|
|
83
79
|
import "./lib/ProductsWidget.js";
|
|
84
80
|
import "./lib/ProfileWidget.js";
|
|
85
81
|
import "./lib/ReceivablesWidget.js";
|
|
@@ -89,6 +85,6 @@ import "./lib/TagsWidget.js";
|
|
|
89
85
|
import "./lib/TeamWidget.js";
|
|
90
86
|
import "./lib/TransfersWidget.js";
|
|
91
87
|
import "./lib/UploadReceiptWidget.js";
|
|
92
|
-
import { WidgetProvider as
|
|
88
|
+
import { WidgetProvider as ve } from "./lib/WidgetProviderPublic.js";
|
|
93
89
|
import "./lib/WidgetProvider.js";
|
|
94
|
-
export {
|
|
90
|
+
export { ce as ACCEPT_DISCLOSURES_WIDGET_LABELS_EN, q as ACCOUNT_DELETE_DIALOG_LABELS_EN, J as ACCOUNT_FORM_SHEET_LABELS_EN, fe as ADDITIONAL_OWNERS_LABELS_EN, le as AcceptDisclosuresWidget, Q as AccountDeleteDialog, Z as AccountFormSheet, A as BALANCES_WIDGET_LABELS_EN, pe as BUSINESS_DETAILS_LABELS_EN, j as BalancesWidget, ge as BankAccountOnboardingWidget, w as BankAccountsWidget, E as BillPayWidget, Y as CHART_OF_ACCOUNTS_LABELS_EN, K as CHART_OF_ACCOUNTS_MESSAGE_LABELS_EN, D as CardDetailsWidget, X as ChartOfAccountsTable, $ as ChartOfAccountsWidget, T as CounterpartsWidget, O as CreditCardsWidget, k as DebitCardsWidget, s as ERROR_STATE_ID, z as ExpenseApprovalPoliciesWidget, H as ExpenseManagementWidget, V as ExpenseRequirementsWidget, te as HELP_FAQ_EN, ee as HELP_WIDGET_LABELS_EN, ne as HelpWidget, M as INSIGHTS_FEATURE_LABELS_EN, N as INSIGHTS_WIDGET_LABELS_EN, c as Implementation, F as InsightsWidget, I as InvoicingWidget, de as LinkedAccountsWidget, me as PERSONAL_DETAILS_LABELS_EN, _e as ProductsWidget, re as ProfileWidget, he as RESULT_LABELS_EN, U as ReceiptMatchWidget, L as ReceivablesWidget, _ as RefreshingRootWidgetProvider, m as RootWidgetProvider, P as SINGLE_INSIGHT_LABELS_EN, R as SettingsSection, ie as SettingsWidget, ae as TRANSFERS_FEATURE_LABELS_EN, oe as TRANSFERS_WIDGET_LABELS_EN, W as TagsWidget, G as TeamWidget, se as TransfersWidget, i as UIFramework, B as UploadReceiptWidget, t as WIDGET_SUITE_DEFAULT_SECTIONS, e as WIDGET_SUITE_LABELS_EN, ve as WidgetProvider, ue as WidgetSuite, n as WidgetSuiteSectionId, h as WidgetTokenRefreshProvider, r as cloneEmbeddedClient, l as getGlobalWidgetConfig, f as getGlobalWidgetInitState, a as registerDesignSystemEnsurer, o as registerUIRenderers, u as setGlobalWidgetConfig, p as subscribeToGlobalWidgetInitState, d as updateGlobalWidgetConfig, v as useDisclosuresAcceptanceSurface, y as useOwnWidgetConfig, b as useRefetchWidget, x as useWidgetConfig, S as useWidgetError, C as useWidgetLoading, g as useWidgetToken };
|
package/dist/libs/tesouro-embedded-components-react/create-card-widget/feature/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import { CreateCardWidget as
|
|
4
|
-
export {
|
|
1
|
+
import "./index3.js";
|
|
2
|
+
import "./index5.js";
|
|
3
|
+
import { CreateCardWidget as e } from "./index8.js";
|
|
4
|
+
export { e as CreateCardWidget };
|