@tesouro/embedded-components-react 0.2.259 → 0.2.261
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 +45 -37
- package/dist/index.d.ts +236 -128
- package/dist/index.js +13 -12
- package/dist/lib/CardsWidget.d.ts +142 -14
- package/dist/lib/ProfileWidget.d.ts +16 -0
- package/dist/lib/SettingsWidget.d.ts +65 -3
- package/dist/lib/SettingsWidget.js +3 -2
- package/dist/libs/tesouro-embedded-components-react/cards-widget/feature/dist/index5.js +13 -8
- package/dist/libs/tesouro-embedded-components-react/cards-widget/feature/dist/index7.js +31 -30
- package/dist/libs/tesouro-embedded-components-react/cards-widget/feature/dist/index8.js +56 -34
- package/dist/libs/tesouro-embedded-components-react/cards-widget/ui/dist/lib/CardsList/CardsListDetailsSheet.js +20 -20
- package/dist/libs/tesouro-embedded-components-react/cards-widget/ui/dist/lib/CardsList/labels.js +8 -0
- package/dist/libs/tesouro-embedded-components-react/monite-sdk/dist/index22.js +1 -1
- package/dist/libs/tesouro-embedded-components-react/monite-sdk/dist/index327.js +1 -1
- package/dist/libs/tesouro-embedded-components-react/monite-sdk/dist/index597.js +1 -1
- package/dist/libs/tesouro-embedded-components-react/profile-widget/feature/dist/index4.js +59 -56
- package/dist/libs/tesouro-embedded-components-react/profile-widget/ui/dist/index2.js +3 -1
- package/dist/libs/tesouro-embedded-components-react/profile-widget/ui/dist/index3.js +25 -9
- package/dist/libs/tesouro-embedded-components-react/settings-widget/feature/dist/index.js +4 -3
- package/dist/libs/tesouro-embedded-components-react/settings-widget/feature/dist/index4.js +20 -41
- package/dist/libs/tesouro-embedded-components-react/settings-widget/feature/dist/index5.js +37 -122
- package/dist/libs/tesouro-embedded-components-react/settings-widget/feature/dist/index6.js +133 -2
- package/dist/libs/tesouro-embedded-components-react/settings-widget/feature/dist/index7.js +3 -0
- package/dist/libs/tesouro-embedded-components-react/shared/feature/dist/lib/analytics/build-info.js +1 -1
- package/dist/libs/tesouro-embedded-components-react/widget-suite/feature/dist/index4.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -239,27 +239,30 @@ A Monite-backed bill pay widget wrapped in Tesouro widget auth and theming.
|
|
|
239
239
|
|
|
240
240
|
### CardsWidget
|
|
241
241
|
|
|
242
|
-
One page of an organization's credit **or** debit cards, with a scope-gated "Show my cards" toggle, Create card and per-row Activate affordances. Selecting a row opens that card's read-only details in a side sheet.
|
|
242
|
+
One page of an organization's credit **or** debit cards, with a scope-gated "Show my cards" toggle, Create card and per-row Activate affordances. Selecting a row opens that card's read-only details in a side sheet. On a debit list with `cardArtSrc`, Create card opens the same sheet with the built-in debit issuance flow.
|
|
243
243
|
|
|
244
244
|
#### Props
|
|
245
245
|
|
|
246
|
-
| Prop | Type | Default | Description
|
|
247
|
-
| -------------------------- | --------------------------------------- | -------------- |
|
|
248
|
-
| `cardProgram` | `'credit' \| 'debit'` | **Required** | Which issuing program the list shows. Also selects the scopes that gate each affordance.
|
|
249
|
-
| `pagination` | `{ paginationToken?, pageSize? }` | `undefined` | Controlled cursor and page size. Supply with `onPaginationChange` when your app owns the list position.
|
|
250
|
-
| `defaultPagination` | `{ paginationToken?, pageSize? }` | First page, 10 | Initial cursor and page size when uncontrolled. Ignored when `pagination` is supplied.
|
|
251
|
-
| `onPaginationChange` | `(pagination) => void` | `undefined` | Called whenever the widget moves page or changes page size. Persist the whole object, not the token alone.
|
|
252
|
-
| `labels` | `PartialDeep<CardsWidgetLabels>` | English labels | Overrides the copy of the list screen, including the details sheet's screen-reader name under `detailsSheet`. Nested groups merge per group.
|
|
253
|
-
| `featureLabels` | `PartialDeep<CardsWidgetFeatureLabels>` | English labels | Overrides the copy this widget resolves rather than passes through — status and form-factor vocabulary, the empty-cell placeholder, and name fallbacks.
|
|
254
|
-
| `selectedCardId` | `string \| null` | `undefined` | Controlled selection of the card whose details panel is open. `null` closes it; omit for uncontrolled. See **Selection** below.
|
|
255
|
-
| `defaultSelectedCardId` | `string \| null` | `undefined` | Initial selection when uncontrolled. Ignored when `selectedCardId` is supplied.
|
|
256
|
-
| `onSelectedCardIdChange` | `(cardId: string \| null) => void` | `undefined` | Fires whenever the open card changes, including on close (`null`). Supplying it does **not** change what renders.
|
|
257
|
-
| `cardDetailsLabels` | `PartialDeep<CardDetailsWidgetLabels>` | English labels | Label overrides forwarded into the details panel.
|
|
258
|
-
| `cardDetailsFeatureLabels` | `PartialDeep<CardDetailsFeatureLabels>` | English labels | Overrides for the copy the panel's feature layer resolves — status vocabulary, form-factor copy, program label, copy-success toast. Distinct from `featureLabels`.
|
|
259
|
-
| `bankLogoSrc` | `string` | `undefined` | Bank logo for the details panel's card face. Omit and the face renders without a logo rather than with a placeholder.
|
|
260
|
-
| `bankLogoAlt` | `string` | `undefined` | Alt text for `bankLogoSrc`.
|
|
261
|
-
| `
|
|
262
|
-
| `
|
|
246
|
+
| Prop | Type | Default | Description |
|
|
247
|
+
| -------------------------- | --------------------------------------- | -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
248
|
+
| `cardProgram` | `'credit' \| 'debit'` | **Required** | Which issuing program the list shows. Also selects the scopes that gate each affordance. |
|
|
249
|
+
| `pagination` | `{ paginationToken?, pageSize? }` | `undefined` | Controlled cursor and page size. Supply with `onPaginationChange` when your app owns the list position. |
|
|
250
|
+
| `defaultPagination` | `{ paginationToken?, pageSize? }` | First page, 10 | Initial cursor and page size when uncontrolled. Ignored when `pagination` is supplied. |
|
|
251
|
+
| `onPaginationChange` | `(pagination) => void` | `undefined` | Called whenever the widget moves page or changes page size. Persist the whole object, not the token alone. |
|
|
252
|
+
| `labels` | `PartialDeep<CardsWidgetLabels>` | English labels | Overrides the copy of the list screen, including the details sheet's screen-reader name under `detailsSheet` and the create sheet's under `createSheet`. Nested groups merge per group. |
|
|
253
|
+
| `featureLabels` | `PartialDeep<CardsWidgetFeatureLabels>` | English labels | Overrides the copy this widget resolves rather than passes through — status and form-factor vocabulary, the empty-cell placeholder, and name fallbacks. |
|
|
254
|
+
| `selectedCardId` | `string \| null` | `undefined` | Controlled selection of the card whose details panel is open. `null` closes it; omit for uncontrolled. See **Selection** below. |
|
|
255
|
+
| `defaultSelectedCardId` | `string \| null` | `undefined` | Initial selection when uncontrolled. Ignored when `selectedCardId` is supplied. |
|
|
256
|
+
| `onSelectedCardIdChange` | `(cardId: string \| null) => void` | `undefined` | Fires whenever the open card changes, including on close (`null`). Supplying it does **not** change what renders. |
|
|
257
|
+
| `cardDetailsLabels` | `PartialDeep<CardDetailsWidgetLabels>` | English labels | Label overrides forwarded into the details panel. |
|
|
258
|
+
| `cardDetailsFeatureLabels` | `PartialDeep<CardDetailsFeatureLabels>` | English labels | Overrides for the copy the panel's feature layer resolves — status vocabulary, form-factor copy, program label, copy-success toast. Distinct from `featureLabels`. |
|
|
259
|
+
| `bankLogoSrc` | `string` | `undefined` | Bank logo for the details panel's card face. Omit and the face renders without a logo rather than with a placeholder. |
|
|
260
|
+
| `bankLogoAlt` | `string` | `undefined` | Alt text for `bankLogoSrc`. |
|
|
261
|
+
| `cardArtSrc` | `string` | `undefined` | Plastic art for the built-in debit create sheet. Required for that sheet: omit it (with no `onCreateCard`) and Create card is hidden. See **Create card** below. |
|
|
262
|
+
| `createCardLabels` | `PartialDeep<CreateCardWidgetLabels>` | English labels | Label overrides forwarded into the nested create-card panel. |
|
|
263
|
+
| `createCardFeatureLabels` | toast / untitled-funding overrides | English labels | Overrides for the copy the create panel's feature layer resolves — mutation toasts, untitled funding-account fallback, pending-activation success copy. |
|
|
264
|
+
| `onCreateCard` | `() => void` | `undefined` | Host-owned Create card handler. When supplied, the built-in debit sheet does not open. Credit Create card still requires this callback. |
|
|
265
|
+
| `onActivateCard` | `(cardId: string) => void` | `undefined` | Called when a row's Activate button is clicked. Omit it and the button is not rendered. |
|
|
263
266
|
|
|
264
267
|
### CardDetailsWidget
|
|
265
268
|
|
|
@@ -478,10 +481,11 @@ A self-contained, read-only profile card for the current entity user. It shows a
|
|
|
478
481
|
|
|
479
482
|
#### Props
|
|
480
483
|
|
|
481
|
-
| Prop | Type | Description
|
|
482
|
-
| --------------- | ------------------------ |
|
|
483
|
-
| `labels` | `Partial<Labels>` | Overrides the card's own copy (loading announcement).
|
|
484
|
-
| `featureLabels` | `Partial<FeatureLabels>` | Overrides tab labels, field labels, and the subtitle.
|
|
484
|
+
| Prop | Type | Description |
|
|
485
|
+
| --------------- | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
486
|
+
| `labels` | `Partial<Labels>` | Overrides the card's own copy (loading announcement, contact line). |
|
|
487
|
+
| `featureLabels` | `Partial<FeatureLabels>` | Overrides tab labels, field labels, and the subtitle. |
|
|
488
|
+
| `contactUrl` | `string` | Where the "to change this information, contact your bank" line links (a support page URL or a `mailto:`). Left unset, the card shows the plain unlinked subtitle instead. The bank name in that line comes from widget init, so no other value is needed. |
|
|
485
489
|
|
|
486
490
|
### ReceivablesWidget
|
|
487
491
|
|
|
@@ -534,21 +538,25 @@ A composite settings widget that combines Monite document settings, tags, GL cod
|
|
|
534
538
|
|
|
535
539
|
#### Props
|
|
536
540
|
|
|
537
|
-
| Prop | Type
|
|
538
|
-
| ------------------------- |
|
|
539
|
-
| `acceptInviteRedirectUri` | `string`
|
|
540
|
-
| `labels` | `Partial<Labels>`
|
|
541
|
-
| `featureLabels` | `Partial<FeatureLabels>`
|
|
542
|
-
| `profileContent` | `ReactNode`
|
|
543
|
-
| `teamContent` | `ReactNode`
|
|
544
|
-
| `invoiceContent` | `ReactNode`
|
|
545
|
-
| `billPayContent` | `ReactNode`
|
|
546
|
-
| `accountingContent` | `ReactNode`
|
|
547
|
-
| `tagsContent` | `ReactNode`
|
|
548
|
-
| `expenseContent` | `ReactNode`
|
|
549
|
-
| `
|
|
550
|
-
| `
|
|
551
|
-
| `
|
|
541
|
+
| Prop | Type | Default | Description |
|
|
542
|
+
| ------------------------- | -------------------------------------------- | --------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
543
|
+
| `acceptInviteRedirectUri` | `string` | Same-origin `/accept-invite` | Forwarded to the Team section's widget — allowlisted URL invite emails link to. Defaults to `${window.location.origin}/accept-invite`; set it when the host app's registered landing route differs from the widget's same-origin default, or the origin is not on the OIDC redirect-URI allowlist (preview/localhost). |
|
|
544
|
+
| `labels` | `Partial<Labels>` | English labels | Overrides the settings heading copy. |
|
|
545
|
+
| `featureLabels` | `Partial<FeatureLabels>` | English labels | Overrides section labels. |
|
|
546
|
+
| `profileContent` | `ReactNode` | Profile widget | Replaces the profile section content. |
|
|
547
|
+
| `teamContent` | `ReactNode` | Empty | Supplies the team section content. |
|
|
548
|
+
| `invoiceContent` | `ReactNode` | Monite template settings | Replaces invoice settings content. |
|
|
549
|
+
| `billPayContent` | `ReactNode` | Monite approval policies | Replaces bill-pay settings content. |
|
|
550
|
+
| `accountingContent` | `ReactNode` | GL code table widget | Replaces accounting content. |
|
|
551
|
+
| `tagsContent` | `ReactNode` | Monite tags | Replaces tags content. |
|
|
552
|
+
| `expenseContent` | `ReactNode` | Expense policies and requirements | Replaces expense content. |
|
|
553
|
+
| `profileContactUrl` | `string` | `undefined` | Forwarded to the Profile section's widget — where its "to change this information, contact your bank" line links. Left unset, the card shows the plain unlinked sentence instead; the bank name comes from widget init. |
|
|
554
|
+
| `selectedSection` | `SettingsWidgetSectionId` | `undefined` | The section to show. Leave unset to let the widget own the selection; supply it (with `onSelectedSectionChange`) to drive navigation from a route or search param. A section the user's scopes hide falls back to the first visible one. |
|
|
555
|
+
| `onSelectedSectionChange` | `(section: SettingsWidgetSectionId) => void` | `undefined` | Called with the id of the section the user selected. Fires whether or not `selectedSection` is supplied, so a host can mirror the selection into its URL without taking ownership of it. |
|
|
556
|
+
| `additionalSections` | `SettingsWidgetAdditionalSection[]` | `undefined` | Host-owned sections rendered alongside the built-in ones. Each is `{ id, label, content }` plus an optional `after` naming the built-in section to place it behind. Unlike the built-ins, these are not scope-gated. |
|
|
557
|
+
| `helpContactUrl` | `string` | `undefined` | Forwarded to the Help section's widget — where its "Contact Us" line links (a support page URL or a `mailto:`). The line is hidden while unset, since the package has no tenant-agnostic support address to fall back on; the bank name in that line comes from widget init. |
|
|
558
|
+
| `helpContent` | `ReactNode` | Help widget | Replaces the help section content. |
|
|
559
|
+
| `finopsThemeColors` | `FinopsThemeColors` | `undefined` | Optional Monite theme color overrides. |
|
|
552
560
|
|
|
553
561
|
### TagsWidget
|
|
554
562
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1792,6 +1792,11 @@ interface CardsListLabels {
|
|
|
1792
1792
|
* sits here for a footer that lives in `shared/ui`.
|
|
1793
1793
|
*/
|
|
1794
1794
|
detailsSheet: CardsListDetailsSheetLabels;
|
|
1795
|
+
/**
|
|
1796
|
+
* Screen-reader copy for the same sheet when Create card is slotted in, rather
|
|
1797
|
+
* than a selected card's details. Same chrome, different accessible name.
|
|
1798
|
+
*/
|
|
1799
|
+
createSheet: CardsListDetailsSheetLabels;
|
|
1795
1800
|
}
|
|
1796
1801
|
|
|
1797
1802
|
/** Accessible copy for the panel header's controls. */
|
|
@@ -1931,14 +1936,130 @@ interface CardDetailsWidgetProps extends WidgetProviderProps {
|
|
|
1931
1936
|
*/
|
|
1932
1937
|
declare function CardDetailsWidget({ baseUrl, widgetToken, organizationId, configClient, linkComponent, implementation, uiFramework, errorFallback, onError, analytics, ...innerProps }: CardDetailsWidgetProps): React.JSX.Element;
|
|
1933
1938
|
|
|
1939
|
+
type PartialDeep$2<T> = {
|
|
1940
|
+
[K in keyof T]?: T[K] extends object ? PartialDeep$2<T[K]> : T[K];
|
|
1941
|
+
};
|
|
1942
|
+
interface CreateCardWidgetLabels {
|
|
1943
|
+
header: {
|
|
1944
|
+
title: string;
|
|
1945
|
+
closeAriaLabel: string;
|
|
1946
|
+
};
|
|
1947
|
+
cardArtAlt: string;
|
|
1948
|
+
setup: {
|
|
1949
|
+
sectionTitle: string;
|
|
1950
|
+
sectionDescription: string;
|
|
1951
|
+
cardholderLabel: string;
|
|
1952
|
+
cardholderPlaceholder: string;
|
|
1953
|
+
cardFormatLabel: string;
|
|
1954
|
+
cardFormatPlaceholder: string;
|
|
1955
|
+
cardFormatVirtual: string;
|
|
1956
|
+
cardFormatPhysical: string;
|
|
1957
|
+
fundingAccountLabel: string;
|
|
1958
|
+
fundingAccountPlaceholder: string;
|
|
1959
|
+
};
|
|
1960
|
+
mailing: {
|
|
1961
|
+
sectionTitle: string;
|
|
1962
|
+
sectionDescription: string;
|
|
1963
|
+
businessTitle: string;
|
|
1964
|
+
businessDescription: string;
|
|
1965
|
+
customTitle: string;
|
|
1966
|
+
customDescription: string;
|
|
1967
|
+
};
|
|
1968
|
+
manualAddress: {
|
|
1969
|
+
streetLabel: string;
|
|
1970
|
+
cityLabel: string;
|
|
1971
|
+
stateLabel: string;
|
|
1972
|
+
statePlaceholder: string;
|
|
1973
|
+
zipLabel: string;
|
|
1974
|
+
};
|
|
1975
|
+
preparing: {
|
|
1976
|
+
title: string;
|
|
1977
|
+
description: string;
|
|
1978
|
+
};
|
|
1979
|
+
success: {
|
|
1980
|
+
title: string;
|
|
1981
|
+
description: string;
|
|
1982
|
+
createAnother: string;
|
|
1983
|
+
viewCard: string;
|
|
1984
|
+
};
|
|
1985
|
+
footer: {
|
|
1986
|
+
cancel: string;
|
|
1987
|
+
createCard: string;
|
|
1988
|
+
};
|
|
1989
|
+
cardholderError: {
|
|
1990
|
+
title: string;
|
|
1991
|
+
description: string;
|
|
1992
|
+
retry: string;
|
|
1993
|
+
};
|
|
1994
|
+
fundingAccountError: {
|
|
1995
|
+
title: string;
|
|
1996
|
+
description: string;
|
|
1997
|
+
retry: string;
|
|
1998
|
+
};
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
interface CreateCardFeatureLabels {
|
|
2002
|
+
toast: {
|
|
2003
|
+
creating: string;
|
|
2004
|
+
success: string;
|
|
2005
|
+
error: string;
|
|
2006
|
+
};
|
|
2007
|
+
untitledFundingAccount: string;
|
|
2008
|
+
/**
|
|
2009
|
+
* Success-screen copy chosen from the create response's `cardStatus`.
|
|
2010
|
+
* Active/ready wording lives on the UI defaults; these cover statuses that
|
|
2011
|
+
* must not claim the card is already usable.
|
|
2012
|
+
*/
|
|
2013
|
+
success: {
|
|
2014
|
+
pendingActivationTitle: string;
|
|
2015
|
+
pendingActivationDescription: string;
|
|
2016
|
+
createdTitle: string;
|
|
2017
|
+
createdDescription: string;
|
|
2018
|
+
};
|
|
2019
|
+
}
|
|
2020
|
+
declare const CREATE_CARD_FEATURE_LABELS_EN: CreateCardFeatureLabels;
|
|
2021
|
+
declare function resolveCreateCardFeatureLabels(overrides?: Partial<{
|
|
2022
|
+
toast: Partial<CreateCardFeatureLabels['toast']>;
|
|
2023
|
+
untitledFundingAccount: string;
|
|
2024
|
+
success: Partial<CreateCardFeatureLabels['success']>;
|
|
2025
|
+
}>): CreateCardFeatureLabels;
|
|
2026
|
+
|
|
2027
|
+
type CreateCardWidgetProps = WidgetProviderProps & {
|
|
2028
|
+
/** Static card plastic image URL (no overlays). Host / white-label supplied. */
|
|
2029
|
+
cardArtSrc: string;
|
|
2030
|
+
labels?: PartialDeep$2<CreateCardWidgetLabels>;
|
|
2031
|
+
featureLabels?: Partial<{
|
|
2032
|
+
toast: Partial<CreateCardFeatureLabels['toast']>;
|
|
2033
|
+
untitledFundingAccount: string;
|
|
2034
|
+
success: Partial<CreateCardFeatureLabels['success']>;
|
|
2035
|
+
}>;
|
|
2036
|
+
className?: string;
|
|
2037
|
+
onClose?: () => void;
|
|
2038
|
+
onCancel?: () => void;
|
|
2039
|
+
/** Fired with the new debit card id after a successful create. */
|
|
2040
|
+
onViewCard?: (cardId: string) => void;
|
|
2041
|
+
};
|
|
2042
|
+
/**
|
|
2043
|
+
* Self-contained Create Card widget. Issues a debit card via the Embed API and
|
|
2044
|
+
* drives setup → preparing → success with sonner toasts for the mutation.
|
|
2045
|
+
*/
|
|
2046
|
+
declare function CreateCardWidget({ baseUrl, widgetToken, organizationId, configClient, linkComponent, implementation, uiFramework, errorFallback, onError, analytics, ...innerProps }: CreateCardWidgetProps): React.JSX.Element;
|
|
2047
|
+
|
|
2048
|
+
/** Opaque UI format values — mapped to API `DebitCardType` in the feature. */
|
|
2049
|
+
declare const CardFormatValue: {
|
|
2050
|
+
readonly Virtual: "virtual";
|
|
2051
|
+
readonly Physical: "physical";
|
|
2052
|
+
};
|
|
2053
|
+
type CardFormatValue = (typeof CardFormatValue)[keyof typeof CardFormatValue];
|
|
2054
|
+
|
|
1934
2055
|
/**
|
|
1935
2056
|
* Every key of `T` optional, recursively, so a consumer can override one nested
|
|
1936
2057
|
* label without restating its siblings. Defined locally because the repo has no
|
|
1937
2058
|
* shared deep-partial type and does not depend on `type-fest` — same helper the
|
|
1938
2059
|
* two card `ui` libs declare.
|
|
1939
2060
|
*/
|
|
1940
|
-
type PartialDeep$
|
|
1941
|
-
[K in keyof T]?: T[K] extends object ? PartialDeep$
|
|
2061
|
+
type PartialDeep$1<T> = {
|
|
2062
|
+
[K in keyof T]?: T[K] extends object ? PartialDeep$1<T[K]> : T[K];
|
|
1942
2063
|
};
|
|
1943
2064
|
/**
|
|
1944
2065
|
* Strings this layer produces rather than passes through.
|
|
@@ -2026,7 +2147,7 @@ interface CardsWidgetProps extends WidgetProviderProps {
|
|
|
2026
2147
|
* the list library receives those values already formatted and so has no key
|
|
2027
2148
|
* for them; `BankAccountsWidget.featureLabels` is the same split.
|
|
2028
2149
|
*/
|
|
2029
|
-
featureLabels?: PartialDeep$
|
|
2150
|
+
featureLabels?: PartialDeep$1<CardsFeatureLabels>;
|
|
2030
2151
|
/**
|
|
2031
2152
|
* The card whose details panel is open. Supply with `onSelectedCardIdChange`
|
|
2032
2153
|
* when the host owns that state — a deep-linked `/cards/[id]`, say. `null`
|
|
@@ -2081,13 +2202,32 @@ interface CardsWidgetProps extends WidgetProviderProps {
|
|
|
2081
2202
|
bankLogoSrc?: string;
|
|
2082
2203
|
bankLogoAlt?: string;
|
|
2083
2204
|
/**
|
|
2084
|
-
*
|
|
2085
|
-
*
|
|
2086
|
-
*
|
|
2087
|
-
*
|
|
2088
|
-
*
|
|
2089
|
-
|
|
2090
|
-
|
|
2205
|
+
* Plastic art for the built-in debit create sheet. Forwarded verbatim into
|
|
2206
|
+
* nested `CreateCardWidget`. Required for that sheet: omitting it (with no
|
|
2207
|
+
* host `onCreateCard`) hides Create card rather than opening a panel that
|
|
2208
|
+
* cannot render. Same PLAT-1179 / ADR 0005 rule as `bankLogoSrc` — the package
|
|
2209
|
+
* ships no card artwork.
|
|
2210
|
+
*/
|
|
2211
|
+
cardArtSrc?: string;
|
|
2212
|
+
/**
|
|
2213
|
+
* Label overrides forwarded into the nested create-card panel. Indexed off
|
|
2214
|
+
* `CreateCardWidgetProps` so the forwarded and received types cannot drift,
|
|
2215
|
+
* the same feature → feature edge as `cardDetailsLabels`.
|
|
2216
|
+
*/
|
|
2217
|
+
createCardLabels?: CreateCardWidgetProps['labels'];
|
|
2218
|
+
/**
|
|
2219
|
+
* Overrides for the copy the create panel's *feature* layer resolves — mutation
|
|
2220
|
+
* toasts, the untitled funding-account fallback, and pending-activation success
|
|
2221
|
+
* copy.
|
|
2222
|
+
*/
|
|
2223
|
+
createCardFeatureLabels?: CreateCardWidgetProps['featureLabels'];
|
|
2224
|
+
/**
|
|
2225
|
+
* Called when Create card is clicked. When supplied, the host owns the
|
|
2226
|
+
* gesture: the built-in debit sheet does **not** open. Omit it on a debit list
|
|
2227
|
+
* with `cardArtSrc` to use the built-in `CreateCardWidget` sheet. Credit has
|
|
2228
|
+
* no in-package issuance widget, so credit Create card still requires this
|
|
2229
|
+
* callback — omitting it hides the button rather than offering a control that
|
|
2230
|
+
* does nothing.
|
|
2091
2231
|
*/
|
|
2092
2232
|
onCreateCard?: () => void;
|
|
2093
2233
|
/**
|
|
@@ -2113,128 +2253,18 @@ interface CardsWidgetProps extends WidgetProviderProps {
|
|
|
2113
2253
|
* query param, or take navigation over entirely — the widget itself reads no
|
|
2114
2254
|
* router and no search params.
|
|
2115
2255
|
*
|
|
2256
|
+
* On a debit list with `cardArtSrc`, Create card opens the same sheet with
|
|
2257
|
+
* nested `CreateCardWidget`. A host `onCreateCard` still takes over that
|
|
2258
|
+
* gesture (credit, or a custom debit flow). The two panels are mutually
|
|
2259
|
+
* exclusive: opening one closes the other. Success **View card** selects the
|
|
2260
|
+
* new debit card so its details open.
|
|
2261
|
+
*
|
|
2116
2262
|
* A pure provider wrapper — every hook lives in `CardsWidgetInner` so it runs
|
|
2117
2263
|
* inside `WidgetProvider`'s subtree, which is what the data-access hooks read
|
|
2118
2264
|
* their client, org and token from.
|
|
2119
2265
|
*/
|
|
2120
2266
|
declare function CardsWidget({ baseUrl, widgetToken, organizationId, configClient, linkComponent, implementation, uiFramework, errorFallback, onError, analytics, ...innerProps }: CardsWidgetProps): React.JSX.Element;
|
|
2121
2267
|
|
|
2122
|
-
type PartialDeep$1<T> = {
|
|
2123
|
-
[K in keyof T]?: T[K] extends object ? PartialDeep$1<T[K]> : T[K];
|
|
2124
|
-
};
|
|
2125
|
-
interface CreateCardWidgetLabels {
|
|
2126
|
-
header: {
|
|
2127
|
-
title: string;
|
|
2128
|
-
closeAriaLabel: string;
|
|
2129
|
-
};
|
|
2130
|
-
cardArtAlt: string;
|
|
2131
|
-
setup: {
|
|
2132
|
-
sectionTitle: string;
|
|
2133
|
-
sectionDescription: string;
|
|
2134
|
-
cardholderLabel: string;
|
|
2135
|
-
cardholderPlaceholder: string;
|
|
2136
|
-
cardFormatLabel: string;
|
|
2137
|
-
cardFormatPlaceholder: string;
|
|
2138
|
-
cardFormatVirtual: string;
|
|
2139
|
-
cardFormatPhysical: string;
|
|
2140
|
-
fundingAccountLabel: string;
|
|
2141
|
-
fundingAccountPlaceholder: string;
|
|
2142
|
-
};
|
|
2143
|
-
mailing: {
|
|
2144
|
-
sectionTitle: string;
|
|
2145
|
-
sectionDescription: string;
|
|
2146
|
-
businessTitle: string;
|
|
2147
|
-
businessDescription: string;
|
|
2148
|
-
customTitle: string;
|
|
2149
|
-
customDescription: string;
|
|
2150
|
-
};
|
|
2151
|
-
manualAddress: {
|
|
2152
|
-
streetLabel: string;
|
|
2153
|
-
cityLabel: string;
|
|
2154
|
-
stateLabel: string;
|
|
2155
|
-
statePlaceholder: string;
|
|
2156
|
-
zipLabel: string;
|
|
2157
|
-
};
|
|
2158
|
-
preparing: {
|
|
2159
|
-
title: string;
|
|
2160
|
-
description: string;
|
|
2161
|
-
};
|
|
2162
|
-
success: {
|
|
2163
|
-
title: string;
|
|
2164
|
-
description: string;
|
|
2165
|
-
createAnother: string;
|
|
2166
|
-
viewCard: string;
|
|
2167
|
-
};
|
|
2168
|
-
footer: {
|
|
2169
|
-
cancel: string;
|
|
2170
|
-
createCard: string;
|
|
2171
|
-
};
|
|
2172
|
-
cardholderError: {
|
|
2173
|
-
title: string;
|
|
2174
|
-
description: string;
|
|
2175
|
-
retry: string;
|
|
2176
|
-
};
|
|
2177
|
-
fundingAccountError: {
|
|
2178
|
-
title: string;
|
|
2179
|
-
description: string;
|
|
2180
|
-
retry: string;
|
|
2181
|
-
};
|
|
2182
|
-
}
|
|
2183
|
-
|
|
2184
|
-
interface CreateCardFeatureLabels {
|
|
2185
|
-
toast: {
|
|
2186
|
-
creating: string;
|
|
2187
|
-
success: string;
|
|
2188
|
-
error: string;
|
|
2189
|
-
};
|
|
2190
|
-
untitledFundingAccount: string;
|
|
2191
|
-
/**
|
|
2192
|
-
* Success-screen copy chosen from the create response's `cardStatus`.
|
|
2193
|
-
* Active/ready wording lives on the UI defaults; these cover statuses that
|
|
2194
|
-
* must not claim the card is already usable.
|
|
2195
|
-
*/
|
|
2196
|
-
success: {
|
|
2197
|
-
pendingActivationTitle: string;
|
|
2198
|
-
pendingActivationDescription: string;
|
|
2199
|
-
createdTitle: string;
|
|
2200
|
-
createdDescription: string;
|
|
2201
|
-
};
|
|
2202
|
-
}
|
|
2203
|
-
declare const CREATE_CARD_FEATURE_LABELS_EN: CreateCardFeatureLabels;
|
|
2204
|
-
declare function resolveCreateCardFeatureLabels(overrides?: Partial<{
|
|
2205
|
-
toast: Partial<CreateCardFeatureLabels['toast']>;
|
|
2206
|
-
untitledFundingAccount: string;
|
|
2207
|
-
success: Partial<CreateCardFeatureLabels['success']>;
|
|
2208
|
-
}>): CreateCardFeatureLabels;
|
|
2209
|
-
|
|
2210
|
-
type CreateCardWidgetProps = WidgetProviderProps & {
|
|
2211
|
-
/** Static card plastic image URL (no overlays). Host / white-label supplied. */
|
|
2212
|
-
cardArtSrc: string;
|
|
2213
|
-
labels?: PartialDeep$1<CreateCardWidgetLabels>;
|
|
2214
|
-
featureLabels?: Partial<{
|
|
2215
|
-
toast: Partial<CreateCardFeatureLabels['toast']>;
|
|
2216
|
-
untitledFundingAccount: string;
|
|
2217
|
-
success: Partial<CreateCardFeatureLabels['success']>;
|
|
2218
|
-
}>;
|
|
2219
|
-
className?: string;
|
|
2220
|
-
onClose?: () => void;
|
|
2221
|
-
onCancel?: () => void;
|
|
2222
|
-
/** Fired with the new debit card id after a successful create. */
|
|
2223
|
-
onViewCard?: (cardId: string) => void;
|
|
2224
|
-
};
|
|
2225
|
-
/**
|
|
2226
|
-
* Self-contained Create Card widget. Issues a debit card via the Embed API and
|
|
2227
|
-
* drives setup → preparing → success with sonner toasts for the mutation.
|
|
2228
|
-
*/
|
|
2229
|
-
declare function CreateCardWidget({ baseUrl, widgetToken, organizationId, configClient, linkComponent, implementation, uiFramework, errorFallback, onError, analytics, ...innerProps }: CreateCardWidgetProps): React.JSX.Element;
|
|
2230
|
-
|
|
2231
|
-
/** Opaque UI format values — mapped to API `DebitCardType` in the feature. */
|
|
2232
|
-
declare const CardFormatValue: {
|
|
2233
|
-
readonly Virtual: "virtual";
|
|
2234
|
-
readonly Physical: "physical";
|
|
2235
|
-
};
|
|
2236
|
-
type CardFormatValue = (typeof CardFormatValue)[keyof typeof CardFormatValue];
|
|
2237
|
-
|
|
2238
2268
|
interface AddressFieldGroupLabels {
|
|
2239
2269
|
line1: string;
|
|
2240
2270
|
line2: string;
|
|
@@ -3946,6 +3976,14 @@ declare function ProductsWidget({ baseUrl, widgetToken, organizationId, configCl
|
|
|
3946
3976
|
interface Labels$2 {
|
|
3947
3977
|
loadingLabel: string;
|
|
3948
3978
|
errorLabel: string;
|
|
3979
|
+
/**
|
|
3980
|
+
* Lead-in for the contact line, rendered as
|
|
3981
|
+
* `{contactPrefix} {bankName} {link}.` when both a bank name and a contact
|
|
3982
|
+
* URL are available.
|
|
3983
|
+
*/
|
|
3984
|
+
contactPrefix: string;
|
|
3985
|
+
/** Text of the contact link (wraps the contact URL). */
|
|
3986
|
+
contactLinkText: string;
|
|
3949
3987
|
}
|
|
3950
3988
|
|
|
3951
3989
|
interface FeatureLabels$3 {
|
|
@@ -3965,6 +4003,14 @@ interface FeatureLabels$3 {
|
|
|
3965
4003
|
interface ProfileWidgetProps extends WidgetProviderProps {
|
|
3966
4004
|
labels?: Partial<Labels$2>;
|
|
3967
4005
|
featureLabels?: Partial<FeatureLabels$3>;
|
|
4006
|
+
/**
|
|
4007
|
+
* Where the "to change this information, contact your bank" line links (a
|
|
4008
|
+
* support page URL or a `mailto:`). Left unset, the card shows the plain
|
|
4009
|
+
* unlinked sentence instead — the package has no tenant-agnostic support
|
|
4010
|
+
* address to fall back on. The bank name in that line comes from widget init,
|
|
4011
|
+
* so this is the only value a host needs to supply.
|
|
4012
|
+
*/
|
|
4013
|
+
contactUrl?: string;
|
|
3968
4014
|
}
|
|
3969
4015
|
declare function ProfileWidget({ baseUrl, widgetToken, organizationId, configClient, linkComponent, implementation, uiFramework, errorFallback, onError, analytics, ...innerProps }: ProfileWidgetProps): React.JSX.Element;
|
|
3970
4016
|
|
|
@@ -3982,6 +4028,12 @@ interface Labels$1 {
|
|
|
3982
4028
|
description?: string;
|
|
3983
4029
|
}
|
|
3984
4030
|
|
|
4031
|
+
interface SettingsWidgetSection {
|
|
4032
|
+
id: string;
|
|
4033
|
+
label: string;
|
|
4034
|
+
content: ReactNode;
|
|
4035
|
+
}
|
|
4036
|
+
|
|
3985
4037
|
interface FeatureLabels$2 {
|
|
3986
4038
|
profileSection: string;
|
|
3987
4039
|
teamSection: string;
|
|
@@ -3995,6 +4047,46 @@ interface FeatureLabels$2 {
|
|
|
3995
4047
|
expenseRequirementsTab: string;
|
|
3996
4048
|
}
|
|
3997
4049
|
|
|
4050
|
+
/**
|
|
4051
|
+
* The sections this widget renders itself. These ids are the public vocabulary
|
|
4052
|
+
* a host uses to deep-link into a section, so they are part of the package's
|
|
4053
|
+
* API surface — renaming one is a breaking change.
|
|
4054
|
+
*/
|
|
4055
|
+
declare const SettingsSection: {
|
|
4056
|
+
readonly Profile: "profile";
|
|
4057
|
+
readonly Team: "team";
|
|
4058
|
+
readonly Invoice: "invoice";
|
|
4059
|
+
readonly Expense: "expense";
|
|
4060
|
+
readonly BillPay: "bill-pay";
|
|
4061
|
+
readonly Accounting: "accounting";
|
|
4062
|
+
readonly Tags: "tags";
|
|
4063
|
+
readonly Help: "help";
|
|
4064
|
+
};
|
|
4065
|
+
type SettingsSection = (typeof SettingsSection)[keyof typeof SettingsSection];
|
|
4066
|
+
/**
|
|
4067
|
+
* A selectable section id: one of the built-ins, or the id of a host-supplied
|
|
4068
|
+
* {@link SettingsWidgetAdditionalSection}. The `string & {}` arm keeps the
|
|
4069
|
+
* built-in literals visible to editor autocomplete while still accepting a
|
|
4070
|
+
* host's own id.
|
|
4071
|
+
*/
|
|
4072
|
+
type SettingsWidgetSectionId = SettingsSection | (string & {});
|
|
4073
|
+
/**
|
|
4074
|
+
* A section contributed by the host, rendered alongside the built-in ones.
|
|
4075
|
+
*
|
|
4076
|
+
* This exists for surfaces the published package cannot own — the white-label
|
|
4077
|
+
* dashboard's password management, for instance, which is an app-auth concern
|
|
4078
|
+
* rather than an embedded one. Prefer the `*Content` props when replacing the
|
|
4079
|
+
* content of a section that already exists.
|
|
4080
|
+
*/
|
|
4081
|
+
interface SettingsWidgetAdditionalSection extends SettingsWidgetSection {
|
|
4082
|
+
/**
|
|
4083
|
+
* Place this section immediately after the named built-in one. Sections with
|
|
4084
|
+
* no `after` — and those whose anchor is hidden by scope gating — are
|
|
4085
|
+
* appended to the end of the list.
|
|
4086
|
+
*/
|
|
4087
|
+
after?: SettingsSection;
|
|
4088
|
+
}
|
|
4089
|
+
|
|
3998
4090
|
interface SettingsWidgetProps extends MoniteRegionProviderProps {
|
|
3999
4091
|
labels?: Partial<Labels$1>;
|
|
4000
4092
|
featureLabels?: Partial<FeatureLabels$2>;
|
|
@@ -4010,6 +4102,22 @@ interface SettingsWidgetProps extends MoniteRegionProviderProps {
|
|
|
4010
4102
|
* support address to fall back on. The bank name in that line comes from
|
|
4011
4103
|
* widget init, so this is the only value a host needs to supply. */
|
|
4012
4104
|
helpContactUrl?: string;
|
|
4105
|
+
/** Forwarded to the embedded Profile section's {@link ProfileWidget} — where
|
|
4106
|
+
* its "to change this information, contact your bank" line links. The line
|
|
4107
|
+
* falls back to a plain, unlinked sentence when unset, for the same reason
|
|
4108
|
+
* {@link SettingsWidgetProps.helpContactUrl} does. */
|
|
4109
|
+
profileContactUrl?: string;
|
|
4110
|
+
/** The section to show. Leave unset to let the widget own the selection;
|
|
4111
|
+
* supply it (with {@link SettingsWidgetProps.onSelectedSectionChange}) to
|
|
4112
|
+
* drive navigation from a route, a search param, or host state. A section
|
|
4113
|
+
* hidden by the user's scopes falls back to the first visible one. */
|
|
4114
|
+
selectedSection?: SettingsWidgetSectionId;
|
|
4115
|
+
/** Called with the id of the section the user selected. Fires whether or not
|
|
4116
|
+
* {@link SettingsWidgetProps.selectedSection} is supplied, so a host can mirror
|
|
4117
|
+
* the selection into its URL without taking ownership of it. */
|
|
4118
|
+
onSelectedSectionChange?: (section: SettingsWidgetSectionId) => void;
|
|
4119
|
+
/** Host-owned sections rendered alongside the built-in ones. */
|
|
4120
|
+
additionalSections?: SettingsWidgetAdditionalSection[];
|
|
4013
4121
|
profileContent?: ReactNode;
|
|
4014
4122
|
teamContent?: ReactNode;
|
|
4015
4123
|
billPayContent?: ReactNode;
|
|
@@ -4525,5 +4633,5 @@ interface GapCoverageAlertProps {
|
|
|
4525
4633
|
|
|
4526
4634
|
type PendingFeatureStyleSources = GapCoverageAlertProps | NoPolicyBannerProps;
|
|
4527
4635
|
|
|
4528
|
-
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, CREATE_CARD_FEATURE_LABELS_EN, CardDetailsWidget, CardFormatValue, CardsWidget, ChartOfAccountsTable, ChartOfAccountsWidget, CounterpartsWidget, CreateCardWidget, 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, SettingsWidget, DEFAULT_FEATURE_LABELS as TRANSFERS_FEATURE_LABELS_EN, TRANSFERS_WIDGET_LABELS_EN, TagsWidget, TeamWidget, TransfersWidget, UIFramework, UploadReceiptWidget, WidgetProvider, WidgetTokenRefreshProvider, cloneEmbeddedClient, getGlobalWidgetConfig, getGlobalWidgetInitState, registerDesignSystemEnsurer, registerUIRenderers, resolveCreateCardFeatureLabels, setGlobalWidgetConfig, subscribeToGlobalWidgetInitState, updateGlobalWidgetConfig, useOwnWidgetConfig, useRefetchWidget, useWidgetConfig, useWidgetError, useWidgetLoading, useWidgetToken };
|
|
4529
|
-
export type { AcceptDisclosuresLinks, AcceptDisclosuresWidgetLabels, AcceptDisclosuresWidgetProps, AccountDeleteDialogLabels, AccountDeleteDialogProps, Labels$5 as AccountDetailsWidgetLabels, AccountFormErrors, AccountFormMode, AccountFormSheetLabels, AccountFormSheetProps, AccountFormValues, 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 as CardsWidgetFeatureLabels, CardsListLabels as CardsWidgetLabels, CardsWidgetPagination, CardsWidgetProps, ChartOfAccountsLabels, ChartOfAccountsMessageLabels, ChartOfAccountsTableProps, ChartOfAccountsWidgetLabelProps, ChartOfAccountsWidgetProps, CompanyStructureValue, ConfirmDeleteDialogLabels, CounterpartDetailsSheetLabels, CounterpartFormSheetLabels, CounterpartMessageLabels, CounterpartMode, CounterpartsScreenLabels, CounterpartsWidgetProps, CreateCardFeatureLabels, CreateCardWidgetLabels, CreateCardWidgetProps, DisclosureLinks, EmbeddedClient, ExpenseApprovalPoliciesWidgetProps, Labels$4 as ExpenseManagementWidgetLabels, ExpenseManagementWidgetProps, ExpenseRequirementsWidgetProps, HelpFaqAnswer, HelpFaqBullet, HelpFaqBulletType, HelpFaqItem, HelpFaqSection, HelpWidgetLabels, HelpWidgetProps, InsightsFeatureLabels, InsightsWidgetLabels, InsightsWidgetProps, ReceivablesWidgetMoniteProps as InvoicingWidgetProps, LedgerAccountRow, LinkComponent, LinkComponentProps, FeatureLabels$4 as LinkedAccountsWidgetFeatureLabels, Labels$3 as LinkedAccountsWidgetLabels, LinkedAccountsWidgetProps, MarketingWidgetContent, MeasureUnitDeleteDialogLabels, MeasureUnitsManagerLabels, PendingFeatureStyleSources, PersonalDetailsLabels, PersonalDetailsValues, ProductDeleteDialogLabels, ProductDetailsSheetLabels, ProductFormSheetLabels, ProductMessageLabels, ProductsScreenLabels, ProductsWidgetProps, FeatureLabels$3 as ProfileWidgetFeatureLabels, Labels$2 as ProfileWidgetLabels, ProfileWidgetProps, ReceiptMatchSummary, ReceiptMatchWidgetProps, ReceivableActionDialogLabels, ReceivableDetailsSheetLabelOverrides, ReceivableDetailsSheetLabels, ReceivableDocumentType, ReceivableFormSheetLabels, ReceivableMessageLabels, ReceivablePaymentDialogLabels, ReceivableSendDialogLabels, ReceivableStatusBadgeLabels, ReceivablesScreenLabelOverrides, ReceivablesScreenLabels, ReceivablesWidgetProps, ReceivablesWidgetTab, RefreshingRootWidgetProviderProps, ResultLabels, RootWidgetProviderProps, FeatureLabels$2 as SettingsWidgetFeatureLabels, Labels$1 as SettingsWidgetLabels, SettingsWidgetProps, SingleInsightLabels, TagDeleteDialogLabels, TagFormSheetLabels, TagMessageLabels, TagsScreenLabels, TagsWidgetProps, FeatureLabels$1 as TeamWidgetFeatureLabels, Labels as TeamWidgetLabels, TeamWidgetProps, FeatureLabels as TransfersWidgetFeatureLabels, TransfersWidgetLabels, TransfersWidgetProps, UploadReceiptWidgetProps, WidgetConfig, WidgetConfigInput, WidgetInitResponse, WidgetInitState, WidgetProviderProps, WidgetTokenFetcher, WidgetTokenManager, WidgetTokenRefreshProviderProps, WidgetTokenState };
|
|
4636
|
+
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, CREATE_CARD_FEATURE_LABELS_EN, CardDetailsWidget, CardFormatValue, CardsWidget, ChartOfAccountsTable, ChartOfAccountsWidget, CounterpartsWidget, CreateCardWidget, 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, WidgetProvider, WidgetTokenRefreshProvider, cloneEmbeddedClient, getGlobalWidgetConfig, getGlobalWidgetInitState, registerDesignSystemEnsurer, registerUIRenderers, resolveCreateCardFeatureLabels, setGlobalWidgetConfig, subscribeToGlobalWidgetInitState, updateGlobalWidgetConfig, useOwnWidgetConfig, useRefetchWidget, useWidgetConfig, useWidgetError, useWidgetLoading, useWidgetToken };
|
|
4637
|
+
export type { AcceptDisclosuresLinks, AcceptDisclosuresWidgetLabels, AcceptDisclosuresWidgetProps, AccountDeleteDialogLabels, AccountDeleteDialogProps, Labels$5 as AccountDetailsWidgetLabels, AccountFormErrors, AccountFormMode, AccountFormSheetLabels, AccountFormSheetProps, AccountFormValues, 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 as CardsWidgetFeatureLabels, CardsListLabels as CardsWidgetLabels, CardsWidgetPagination, CardsWidgetProps, ChartOfAccountsLabels, ChartOfAccountsMessageLabels, ChartOfAccountsTableProps, ChartOfAccountsWidgetLabelProps, ChartOfAccountsWidgetProps, CompanyStructureValue, ConfirmDeleteDialogLabels, CounterpartDetailsSheetLabels, CounterpartFormSheetLabels, CounterpartMessageLabels, CounterpartMode, CounterpartsScreenLabels, CounterpartsWidgetProps, CreateCardFeatureLabels, CreateCardWidgetLabels, CreateCardWidgetProps, DisclosureLinks, EmbeddedClient, ExpenseApprovalPoliciesWidgetProps, Labels$4 as ExpenseManagementWidgetLabels, ExpenseManagementWidgetProps, ExpenseRequirementsWidgetProps, HelpFaqAnswer, HelpFaqBullet, HelpFaqBulletType, HelpFaqItem, HelpFaqSection, HelpWidgetLabels, HelpWidgetProps, InsightsFeatureLabels, InsightsWidgetLabels, InsightsWidgetProps, ReceivablesWidgetMoniteProps as InvoicingWidgetProps, LedgerAccountRow, LinkComponent, LinkComponentProps, FeatureLabels$4 as LinkedAccountsWidgetFeatureLabels, Labels$3 as LinkedAccountsWidgetLabels, LinkedAccountsWidgetProps, MarketingWidgetContent, MeasureUnitDeleteDialogLabels, MeasureUnitsManagerLabels, PendingFeatureStyleSources, PersonalDetailsLabels, PersonalDetailsValues, ProductDeleteDialogLabels, ProductDetailsSheetLabels, ProductFormSheetLabels, ProductMessageLabels, ProductsScreenLabels, ProductsWidgetProps, FeatureLabels$3 as ProfileWidgetFeatureLabels, Labels$2 as ProfileWidgetLabels, ProfileWidgetProps, ReceiptMatchSummary, ReceiptMatchWidgetProps, ReceivableActionDialogLabels, ReceivableDetailsSheetLabelOverrides, ReceivableDetailsSheetLabels, ReceivableDocumentType, ReceivableFormSheetLabels, ReceivableMessageLabels, ReceivablePaymentDialogLabels, ReceivableSendDialogLabels, ReceivableStatusBadgeLabels, ReceivablesScreenLabelOverrides, ReceivablesScreenLabels, ReceivablesWidgetProps, ReceivablesWidgetTab, RefreshingRootWidgetProviderProps, ResultLabels, RootWidgetProviderProps, SettingsWidgetAdditionalSection, FeatureLabels$2 as SettingsWidgetFeatureLabels, Labels$1 as SettingsWidgetLabels, SettingsWidgetProps, SettingsWidgetSection, SettingsWidgetSectionId, SingleInsightLabels, TagDeleteDialogLabels, TagFormSheetLabels, TagMessageLabels, TagsScreenLabels, TagsWidgetProps, FeatureLabels$1 as TeamWidgetFeatureLabels, Labels as TeamWidgetLabels, TeamWidgetProps, FeatureLabels as TransfersWidgetFeatureLabels, TransfersWidgetLabels, TransfersWidgetProps, UploadReceiptWidgetProps, WidgetConfig, WidgetConfigInput, WidgetInitResponse, WidgetInitState, WidgetProviderProps, WidgetTokenFetcher, WidgetTokenManager, WidgetTokenRefreshProviderProps, WidgetTokenState };
|