@adyen/adyen-platform-experience-web 1.0.0-beta.3 → 1.0.0
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/cjs/index.js +11 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/components/external/BaseElement.js +24 -37
- package/dist/es/components/external/PayoutDetails/PayoutDetails.js +19 -0
- package/dist/es/components/external/PayoutDetails/components/PayoutData.js +90 -0
- package/dist/es/components/external/PayoutDetails/components/constants.js +13 -0
- package/dist/es/components/external/PayoutsOverview/PayoutsOverviewElement.js +29 -0
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +127 -0
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/constants.js +6 -0
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.js +22 -0
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverviewContainer/constants.js +4 -0
- package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +80 -0
- package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/constants.js +5 -0
- package/dist/es/components/external/TransactionDetails/TransactionDetails.js +3 -3
- package/dist/es/components/external/TransactionDetails/components/TransactionData.js +13 -21
- package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +6 -6
- package/dist/es/components/external/TransactionsOverview/TransactionsOverviewElement.js +4 -4
- package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +4 -4
- package/dist/es/components/external/TransactionsOverview/components/Balances/Balances.js +40 -32
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +4 -4
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.js +7 -11
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.js +12 -11
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.js +2 -7
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +19 -19
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +8 -8
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.js +30 -30
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +38 -38
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +155 -116
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/constants.js +4 -2
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.js +16 -38
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewContainer/constants.js +2 -3
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +29 -0
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +76 -71
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/constants.js +3 -2
- package/dist/es/components/external/TransactionsOverview/components/utils.js +4 -23
- package/dist/es/components/external/TransactionsOverview/hooks/{useMediaQuery.js → useResponsiveViewport.js} +5 -13
- package/dist/es/components/external/TransactionsOverview/hooks/useTransactionsOverviewMultiSelectionFilters.js +7 -7
- package/dist/es/components/external/UIElement/UIElement.js +68 -0
- package/dist/es/{core/Localization/translations/de-DE.json.js → components/external/UIElement/UIElement.scss.js} +1 -1
- package/dist/es/components/hooks/useBalanceAccountSelection.js +18 -0
- package/dist/es/components/hooks/useBalanceAccounts.js +25 -0
- package/dist/es/components/hooks/useDefaultOverviewFilterParams.js +24 -0
- package/dist/es/components/internal/BaseButton/BaseButton.js +13 -13
- package/dist/es/components/internal/Button/Button.js +13 -13
- package/dist/es/components/internal/Button/hooks/useButton.js +5 -5
- package/dist/es/components/internal/Calendar/calendar/facade/Calendar.js +180 -180
- package/dist/es/components/internal/Calendar/calendar/facade/index.js +28 -25
- package/dist/es/components/internal/Calendar/calendar/timeframe/common/flags.js +14 -16
- package/dist/es/components/internal/Calendar/calendar/timeframe/common/utils.js +1 -1
- package/dist/es/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.js +34 -31
- package/dist/es/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.js +170 -168
- package/dist/es/components/internal/Calendar/calendar/timerange/factory.js +16 -15
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.js +7 -7
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.js +9 -9
- package/dist/es/components/internal/Calendar/calendar/timerange/utils.js +31 -34
- package/dist/es/components/internal/Calendar/calendar/timeslice/index.js +1 -1
- package/dist/es/components/internal/Calendar/calendar/utils.js +9 -8
- package/dist/es/components/internal/Calendar/components/CalendarControls/CalendarControls.js +4 -4
- package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.js +33 -30
- package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDayOfWeek.js +6 -6
- package/dist/es/components/internal/Calendar/components/CalendarGrid/utils.js +37 -38
- package/dist/es/components/internal/Calendar/hooks/useCalendar.js +2 -2
- package/dist/es/components/internal/Calendar/hooks/useCalendarControlsRendering.js +12 -12
- package/dist/es/components/internal/Calendar/hooks/useTimezone.js +19 -17
- package/dist/es/components/internal/Card/Card.js +37 -0
- package/dist/es/{core/Localization/translations/ar.json.js → components/internal/Card/Card.scss.js} +1 -1
- package/dist/es/components/internal/Card/constants.js +13 -0
- package/dist/es/components/internal/DataGrid/DataGrid.js +61 -56
- package/dist/es/components/internal/DataGrid/DataGridCell.js +36 -4
- package/dist/es/components/internal/DataGrid/components/InteractiveBody.js +26 -24
- package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +7 -7
- package/dist/es/components/internal/DataGrid/components/TableBody.js +17 -15
- package/dist/es/components/internal/DataGrid/components/TableCells.js +10 -10
- package/dist/es/components/internal/DataGrid/components/TableHeaderCell.js +29 -0
- package/dist/es/components/internal/DataGrid/hooks/useDataGridContext.js +8 -0
- package/dist/es/components/internal/DataGrid/hooks/useInteractiveDataGrid.js +1 -1
- package/dist/es/components/internal/DataGrid/utils/DataGridProvider.js +23 -0
- package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +45 -0
- package/dist/es/components/internal/DataOverviewContainer/constants.js +4 -0
- package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +47 -0
- package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.scss.js +4 -0
- package/dist/es/components/internal/DataOverviewDisplay/DataDetailsModal.js +35 -0
- package/dist/es/components/internal/DataOverviewDisplay/constants.js +11 -0
- package/dist/es/components/internal/DataOverviewError/DataOverviewError.js +31 -0
- package/dist/es/components/internal/DatePicker/DatePicker.js +16 -15
- package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.js +31 -30
- package/dist/es/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.js +25 -26
- package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +10 -10
- package/dist/es/components/internal/FilterBar/FilterBar.js +17 -17
- package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +9 -9
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/AmountFilter.js +33 -32
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +44 -43
- package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +70 -69
- package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilter.js +56 -112
- package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilterCore.js +126 -0
- package/dist/es/{core/Localization/translations/el-GR.json.js → components/internal/FilterBar/filters/DateFilter/DateFilterCore.scss.js} +1 -1
- package/dist/es/components/internal/FormFields/InputBase.js +35 -35
- package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +43 -0
- package/dist/es/components/internal/FormFields/Select/Select.js +34 -33
- package/dist/es/components/internal/FormFields/Select/components/SelectButton.js +20 -19
- package/dist/es/components/internal/FormFields/Select/components/SelectList.js +33 -32
- package/dist/es/components/internal/FormFields/Select/components/SelectListItem.js +38 -34
- package/dist/es/components/internal/FormFields/Select/constants.js +1 -1
- package/dist/es/components/internal/FormFields/Select/hooks/useSelect.js +1 -1
- package/dist/es/components/internal/Image/Image.js +4 -4
- package/dist/es/components/internal/Img/Img.js +3 -3
- package/dist/es/components/internal/Modal/Modal.js +30 -28
- package/dist/es/components/internal/Modal/ModalContent/ModalContent.js +16 -0
- package/dist/es/components/internal/Pagination/Pagination.js +24 -23
- package/dist/es/components/internal/Pagination/hooks/useCursorPagination.js +11 -11
- package/dist/es/components/internal/Pagination/hooks/usePageLimit.js +12 -11
- package/dist/es/components/internal/Pagination/hooks/usePaginatedRecords.js +47 -46
- package/dist/es/components/internal/Pagination/hooks/usePaginatedRecordsFilters.js +1 -1
- package/dist/es/components/internal/Pagination/hooks/usePagination.js +6 -6
- package/dist/es/components/internal/Popover/Popover.js +47 -46
- package/dist/es/components/internal/Popover/utils/utils.js +8 -6
- package/dist/es/components/internal/SVGIcons/CheckedBox.js +1 -1
- package/dist/es/components/internal/SVGIcons/Checkmark.js +1 -1
- package/dist/es/components/internal/SVGIcons/ChevronDown.js +1 -1
- package/dist/es/components/internal/SVGIcons/ChevronLeft.js +1 -1
- package/dist/es/components/internal/SVGIcons/ChevronRight.js +1 -1
- package/dist/es/components/internal/SVGIcons/ChevronUp.js +1 -1
- package/dist/es/components/internal/SVGIcons/Close.js +5 -5
- package/dist/es/components/internal/SVGIcons/UncheckedBox.js +1 -1
- package/dist/es/components/internal/StructuredList/StructuredList.js +44 -0
- package/dist/es/{core/Localization/translations/fi-FI.json.js → components/internal/StructuredList/StructuredList.scss.js} +1 -1
- package/dist/es/components/internal/StructuredList/constants.js +9 -0
- package/dist/es/components/internal/StructuredList/useStructuredListItem.js +18 -0
- package/dist/es/components/internal/Tag/Tag.js +7 -7
- package/dist/es/components/internal/Tooltip/Tooltip.js +22 -22
- package/dist/es/components/internal/Typography/Typography.js +8 -8
- package/dist/es/components/types.js +2 -1
- package/dist/es/components/utils/getCommonErrorCode.js +26 -0
- package/dist/es/components/utils/getErrorMessage.js +34 -0
- package/dist/es/components/utils/getLabel.js +20 -0
- package/dist/es/core/Auth/context.js +24 -0
- package/dist/es/core/Auth/session/AuthSession.js +99 -0
- package/dist/es/core/Auth/session/AuthSessionSpecification.js +63 -0
- package/dist/es/core/Auth/session/AuthSetupContext.js +64 -0
- package/dist/es/core/Auth/session/constants.js +14 -0
- package/dist/es/core/Context/CoreContext.js +5 -3
- package/dist/es/core/Context/CoreProvider.js +16 -15
- package/dist/es/core/Http/http.js +42 -0
- package/dist/es/core/{Services/requests → Http}/utils.js +26 -25
- package/dist/es/core/Localization/Localization.js +80 -76
- package/dist/es/core/Localization/constants/locale.js +1 -1
- package/dist/es/core/Localization/constants/localization.js +3 -30
- package/dist/es/core/Localization/datetime/restamper/restamper.js +15 -14
- package/dist/es/core/Localization/datetime/restamper/utils.js +5 -5
- package/dist/es/core/Localization/localization-utils.js +11 -10
- package/dist/es/core/Localization/utils.js +43 -41
- package/dist/es/core/core.js +31 -59
- package/dist/es/core/utils.js +12 -9
- package/dist/es/external/preact/compat/dist/compat.module.js +52 -68
- package/dist/es/external/preact/dist/preact.module.js +62 -59
- package/dist/es/hooks/element/useClickOutside.js +2 -2
- package/dist/es/hooks/element/useDetachedRender.js +1 -1
- package/dist/es/hooks/element/useFocusCursor.js +14 -13
- package/dist/es/hooks/element/useFocusTrap.js +7 -6
- package/dist/es/hooks/element/usePopoverPositioner.js +1 -1
- package/dist/es/hooks/element/useUniqueIdentifier.js +6 -6
- package/dist/es/hooks/useCommitAction/useCommitAction.js +16 -15
- package/dist/es/hooks/useFetch/useFetch.js +24 -23
- package/dist/es/hooks/useImageUrl/useImageUrl.js +1 -1
- package/dist/es/hooks/useMediaQuery/useMediaQuery.js +14 -0
- package/dist/es/hooks/useReactiveState/useReactiveState.js +1 -1
- package/dist/es/hooks/useReflex/{hooks/useReflex.js → useReflex.js} +2 -2
- package/dist/es/index.js +24 -38
- package/dist/es/primitives/async/abortable/main.js +26 -0
- package/dist/es/primitives/async/deferred/main.js +22 -0
- package/dist/es/primitives/async/promisor/main.js +31 -0
- package/dist/es/primitives/auxiliary/abortSink/main.js +42 -0
- package/dist/es/primitives/auxiliary/errorContainer/main.js +26 -0
- package/dist/es/primitives/auxiliary/indexed/helpers.js +17 -0
- package/dist/es/primitives/auxiliary/indexed/main.js +35 -0
- package/dist/es/primitives/context/session/SessionContext.js +141 -0
- package/dist/es/primitives/context/session/constants.js +10 -0
- package/dist/es/primitives/dom/tabbableRoot/tabbable.js +102 -0
- package/dist/es/primitives/reactive/effectStack/main.js +22 -0
- package/dist/es/primitives/reactive/eventEmitter/main.js +42 -0
- package/dist/es/primitives/reactive/reflex/helpers.js +25 -0
- package/dist/es/primitives/reactive/reflex/main.js +68 -0
- package/dist/es/primitives/reactive/reflex/register.js +69 -0
- package/dist/es/primitives/reactive/watchlist/constants.js +4 -0
- package/dist/es/primitives/reactive/watchlist/helpers.js +31 -0
- package/dist/es/primitives/reactive/watchlist/main.js +59 -0
- package/dist/es/primitives/time/clock/main.js +24 -0
- package/dist/es/primitives/time/interval/constants.js +5 -0
- package/dist/es/primitives/time/interval/main.js +31 -0
- package/dist/es/primitives/time/today/main.js +53 -0
- package/dist/es/translations/da-DK.json.js +214 -0
- package/dist/es/translations/de-DE.json.js +214 -0
- package/dist/es/translations/en-US.json.js +220 -0
- package/dist/es/translations/es-ES.json.js +214 -0
- package/dist/es/translations/fr-FR.json.js +214 -0
- package/dist/es/translations/index.js +34 -0
- package/dist/es/translations/it-IT.json.js +214 -0
- package/dist/es/translations/nl-NL.json.js +214 -0
- package/dist/es/translations/no-NO.json.js +214 -0
- package/dist/es/translations/pt-BR.json.js +214 -0
- package/dist/es/translations/sv-SE.json.js +214 -0
- package/dist/es/utils/async/constants.js +6 -0
- package/dist/es/utils/async/main.js +6 -0
- package/dist/es/utils/collection/main.js +22 -0
- package/dist/es/utils/common.js +11 -0
- package/dist/es/utils/datetime/main.js +8 -0
- package/dist/es/utils/preact/className.js +7 -0
- package/dist/es/utils/preact/fixedForwardRef.js +6 -0
- package/dist/es/utils/preact/memoComparator/main.js +26 -0
- package/dist/es/utils/preact/props.js +5 -0
- package/dist/es/utils/random/uniqueId.js +8 -0
- package/dist/es/utils/random/uuid.js +11 -0
- package/dist/es/utils/struct/main.js +11 -0
- package/dist/es/utils/struct/property.js +15 -0
- package/dist/es/utils/value/bool.js +9 -0
- package/dist/es/utils/value/compare.js +4 -0
- package/dist/es/utils/value/constants.js +5 -0
- package/dist/es/utils/value/is.js +13 -0
- package/dist/es/utils/value/number.js +13 -0
- package/dist/es/utils/value/string.js +6 -0
- package/dist/style.css +1 -1
- package/dist/types/components/external/BaseElement.d.ts +3 -14
- package/dist/types/components/external/BaseElement.d.ts.map +1 -1
- package/dist/types/components/external/PayoutDetails/PayoutDetails.d.ts +10 -0
- package/dist/types/components/external/PayoutDetails/PayoutDetails.d.ts.map +1 -0
- package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts +8 -0
- package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts.map +1 -0
- package/dist/types/components/external/PayoutDetails/components/constants.d.ts +11 -0
- package/dist/types/components/external/PayoutDetails/components/constants.d.ts.map +1 -0
- package/dist/types/components/external/PayoutDetails/index.d.ts +2 -0
- package/dist/types/components/external/PayoutDetails/index.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/PayoutsOverviewElement.d.ts +9 -0
- package/dist/types/components/external/PayoutsOverview/PayoutsOverviewElement.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts +8 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/constants.d.ts +4 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/constants.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.d.ts +4 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/constants.d.ts +2 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/constants.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +17 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/constants.d.ts +3 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/constants.d.ts.map +1 -0
- package/dist/types/components/external/PayoutsOverview/index.d.ts +2 -0
- package/dist/types/components/external/PayoutsOverview/index.d.ts.map +1 -0
- package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts +4 -4
- package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +2 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts +8 -6
- package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/TransactionsOverviewElement.d.ts +4 -5
- package/dist/types/components/external/TransactionsOverview/TransactionsOverviewElement.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/BalanceItem/types.d.ts +2 -2
- package/dist/types/components/external/TransactionsOverview/components/BalanceItem/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/Balances/Balances.d.ts +2 -10
- package/dist/types/components/external/TransactionsOverview/components/Balances/Balances.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/Balances/types.d.ts +14 -0
- package/dist/types/components/external/TransactionsOverview/components/Balances/types.d.ts.map +1 -0
- package/dist/types/components/external/TransactionsOverview/components/Category/types.d.ts +2 -3
- package/dist/types/components/external/TransactionsOverview/components/Category/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.d.ts +3 -3
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.d.ts +0 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotalItem/types.d.ts +2 -2
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotalItem/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.d.ts +1 -8
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.d.ts +3 -3
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/types.d.ts +11 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/types.d.ts.map +1 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +2 -3
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/constants.d.ts +4 -2
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/constants.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.d.ts +2 -4
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/constants.d.ts +0 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/constants.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts +7 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts +1 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts +2 -4
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/utils.d.ts +0 -21
- package/dist/types/components/external/TransactionsOverview/components/utils.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/hooks/{useMediaQuery.d.ts → useResponsiveViewport.d.ts} +8 -6
- package/dist/types/components/external/TransactionsOverview/hooks/useResponsiveViewport.d.ts.map +1 -0
- package/dist/types/components/external/TransactionsOverview/hooks/useTransactionsOverviewMultiSelectionFilters.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/index.d.ts +0 -1
- package/dist/types/components/external/TransactionsOverview/index.d.ts.map +1 -1
- package/dist/types/components/external/{UIElement.d.ts → UIElement/UIElement.d.ts} +5 -10
- package/dist/types/components/external/UIElement/UIElement.d.ts.map +1 -0
- package/dist/types/components/external/index.d.ts +2 -0
- package/dist/types/components/external/index.d.ts.map +1 -1
- package/dist/types/components/{external/TransactionsOverview/components/BalanceAccountSelector → hooks}/useBalanceAccountSelection.d.ts +2 -2
- package/dist/types/components/hooks/useBalanceAccountSelection.d.ts.map +1 -0
- package/dist/types/components/hooks/useBalanceAccounts.d.ts +13 -0
- package/dist/types/components/hooks/useBalanceAccounts.d.ts.map +1 -0
- package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts +38 -0
- package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts.map +1 -0
- package/dist/types/components/internal/BaseButton/BaseButton.d.ts +2 -2
- package/dist/types/components/internal/BaseButton/BaseButton.d.ts.map +1 -1
- package/dist/types/components/internal/Button/Button.d.ts +2 -2
- package/dist/types/components/internal/Button/Button.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/facade/Calendar.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeframe/common/flags.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeframe/common/utils.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.d.ts +4 -5
- package/dist/types/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeframe/frames/YearFrame.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/factory.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/factory.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastMonth.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastMonth.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastNDays.d.ts +2 -2
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastNDays.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastWeek.d.ts +2 -2
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastWeek.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.d.ts +2 -2
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisMonth.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisMonth.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisWeek.d.ts +2 -2
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisWeek.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/yearToDate.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/presets/yearToDate.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/types.d.ts +4 -5
- package/dist/types/components/internal/Calendar/calendar/timerange/types.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts +9 -4
- package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/types.d.ts +4 -4
- package/dist/types/components/internal/Calendar/calendar/types.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/utils.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.d.ts +29 -3
- package/dist/types/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/components/CalendarGrid/CalendarGridDayOfWeek.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/components/CalendarGrid/utils.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/hooks/useCalendar.d.ts +1 -1
- package/dist/types/components/internal/Calendar/hooks/useCalendarControlsRendering.d.ts +1 -1
- package/dist/types/components/internal/Calendar/hooks/useCalendarControlsRendering.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/hooks/useTimezone.d.ts.map +1 -1
- package/dist/types/components/internal/Card/Card.d.ts +6 -0
- package/dist/types/components/internal/Card/Card.d.ts.map +1 -0
- package/dist/types/components/internal/Card/constants.d.ts +11 -0
- package/dist/types/components/internal/Card/constants.d.ts.map +1 -0
- package/dist/types/components/internal/Card/types.d.ts +15 -0
- package/dist/types/components/internal/Card/types.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/DataGrid.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/DataGridCell.d.ts +4 -1
- package/dist/types/components/internal/DataGrid/DataGridCell.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/InteractiveBody.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/TableBody.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/TableCells.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/TableHeaderCell.d.ts +5 -0
- package/dist/types/components/internal/DataGrid/components/TableHeaderCell.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/hooks/useDataGridContext.d.ts +4 -0
- package/dist/types/components/internal/DataGrid/hooks/useDataGridContext.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/hooks/useInteractiveDataGrid.d.ts +1 -1
- package/dist/types/components/internal/DataGrid/types.d.ts +13 -3
- package/dist/types/components/internal/DataGrid/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/utils/DataGridProvider.d.ts +5 -0
- package/dist/types/components/internal/DataGrid/utils/DataGridProvider.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts +12 -0
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewContainer/constants.d.ts +2 -0
- package/dist/types/components/internal/DataOverviewContainer/constants.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts +5 -0
- package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts +32 -0
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataDetailsModal.d.ts +11 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataDetailsModal.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +2 -0
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +9 -0
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -0
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts +12 -9
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts.map +1 -1
- package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/components/FilterButton/FilterButton.d.ts +4 -3
- package/dist/types/components/internal/FilterBar/components/FilterButton/FilterButton.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/filters/AmountFilter/AmountFilter.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/filters/AmountFilter/RangeSelection.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/filters/AmountFilter/types.d.ts +2 -2
- package/dist/types/components/internal/FilterBar/filters/AmountFilter/types.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilter.d.ts +9 -3
- package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilter.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilterCore.d.ts +5 -0
- package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilterCore.d.ts.map +1 -0
- package/dist/types/components/{external/TransactionsOverview/components → internal/FormFields/Select}/BalanceAccountSelector/BalanceAccountSelector.d.ts +1 -1
- package/dist/types/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.d.ts.map +1 -0
- package/dist/types/components/internal/FormFields/Select/BalanceAccountSelector/index.d.ts +2 -0
- package/dist/types/components/internal/FormFields/Select/BalanceAccountSelector/index.d.ts.map +1 -0
- package/dist/types/components/internal/FormFields/Select/Select.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/components/SelectButton.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/components/SelectListItem.d.ts +3 -1
- package/dist/types/components/internal/FormFields/Select/components/SelectListItem.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/types.d.ts +1 -0
- package/dist/types/components/internal/FormFields/Select/types.d.ts.map +1 -1
- package/dist/types/components/internal/Modal/Modal.d.ts.map +1 -1
- package/dist/types/components/internal/Modal/ModalContent/ModalContent.d.ts +5 -0
- package/dist/types/components/internal/Modal/ModalContent/ModalContent.d.ts.map +1 -0
- package/dist/types/components/internal/Pagination/hooks/types.d.ts +3 -3
- package/dist/types/components/internal/Pagination/hooks/types.d.ts.map +1 -1
- package/dist/types/components/internal/StructuredList/StructuredList.d.ts +5 -0
- package/dist/types/components/internal/StructuredList/StructuredList.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/constants.d.ts +7 -0
- package/dist/types/components/internal/StructuredList/constants.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/index.d.ts +2 -0
- package/dist/types/components/internal/StructuredList/index.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/types.d.ts +21 -0
- package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +136 -0
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -0
- package/dist/types/components/internal/Tooltip/types.d.ts +2 -2
- package/dist/types/components/internal/Tooltip/types.d.ts.map +1 -1
- package/dist/types/components/types.d.ts +52 -16
- package/dist/types/components/types.d.ts.map +1 -1
- package/dist/types/components/utils/{transactionResourceErrorCodes.d.ts → getCommonErrorCode.d.ts} +7 -4
- package/dist/types/components/utils/getCommonErrorCode.d.ts.map +1 -0
- package/dist/types/components/utils/getErrorMessage.d.ts +5 -0
- package/dist/types/components/utils/getErrorMessage.d.ts.map +1 -0
- package/dist/types/components/utils/getLabel.d.ts +20 -0
- package/dist/types/components/utils/getLabel.d.ts.map +1 -0
- package/dist/types/core/Auth/context.d.ts +296 -0
- package/dist/types/core/Auth/context.d.ts.map +1 -0
- package/dist/types/core/Auth/index.d.ts +3 -0
- package/dist/types/core/Auth/index.d.ts.map +1 -0
- package/dist/types/core/Auth/session/AuthSession.d.ts +318 -0
- package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -0
- package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts +15 -0
- package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts.map +1 -0
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts +303 -0
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -0
- package/dist/types/core/Auth/session/constants.d.ts +7 -0
- package/dist/types/core/Auth/session/constants.d.ts.map +1 -0
- package/dist/types/core/Auth/types.d.ts +26 -11
- package/dist/types/core/Auth/types.d.ts.map +1 -1
- package/dist/types/core/Context/CoreContext.d.ts.map +1 -1
- package/dist/types/core/Context/CoreProvider.d.ts +1 -1
- package/dist/types/core/Context/CoreProvider.d.ts.map +1 -1
- package/dist/types/core/Context/types.d.ts +1 -0
- package/dist/types/core/Context/types.d.ts.map +1 -1
- package/dist/types/core/Errors/AdyenPlatformExperienceError.d.ts +1 -1
- package/dist/types/core/Errors/AdyenPlatformExperienceError.d.ts.map +1 -1
- package/dist/types/core/Http/constants.d.ts.map +1 -0
- package/dist/types/core/Http/http.d.ts.map +1 -0
- package/dist/types/core/{Services/requests → Http}/types.d.ts +2 -4
- package/dist/types/core/Http/types.d.ts.map +1 -0
- package/dist/types/core/Http/utils.d.ts.map +1 -0
- package/dist/types/core/Localization/Localization.d.ts +3 -3
- package/dist/types/core/Localization/Localization.d.ts.map +1 -1
- package/dist/types/core/Localization/constants/locale.d.ts +107 -203
- package/dist/types/core/Localization/constants/locale.d.ts.map +1 -1
- package/dist/types/core/Localization/constants/localization.d.ts +2 -2
- package/dist/types/core/Localization/constants/localization.d.ts.map +1 -1
- package/dist/types/core/Localization/index.d.ts +1 -1
- package/dist/types/core/Localization/index.d.ts.map +1 -1
- package/dist/types/core/Localization/localization-utils.d.ts +5 -5
- package/dist/types/core/Localization/types.d.ts +6 -10
- package/dist/types/core/Localization/types.d.ts.map +1 -1
- package/dist/types/core/Localization/utils.d.ts +206 -652
- package/dist/types/core/Localization/utils.d.ts.map +1 -1
- package/dist/types/core/core.d.ts +10 -21
- package/dist/types/core/core.d.ts.map +1 -1
- package/dist/types/core/types.d.ts +21 -29
- package/dist/types/core/types.d.ts.map +1 -1
- package/dist/types/core/utils.d.ts +2 -6
- package/dist/types/core/utils.d.ts.map +1 -1
- package/dist/types/hooks/element/useClickOutside.d.ts +3 -2
- package/dist/types/hooks/element/useClickOutside.d.ts.map +1 -1
- package/dist/types/hooks/element/useDetachedRender.d.ts +3 -2
- package/dist/types/hooks/element/useDetachedRender.d.ts.map +1 -1
- package/dist/types/hooks/element/useFocusCursor.d.ts +2 -2
- package/dist/types/hooks/element/useFocusCursor.d.ts.map +1 -1
- package/dist/types/hooks/element/useFocusTrap.d.ts +3 -2
- package/dist/types/hooks/element/useFocusTrap.d.ts.map +1 -1
- package/dist/types/hooks/element/usePopoverPositioner.d.ts +3 -2
- package/dist/types/hooks/element/usePopoverPositioner.d.ts.map +1 -1
- package/dist/types/hooks/element/useUniqueIdentifier.d.ts +3 -2
- package/dist/types/hooks/element/useUniqueIdentifier.d.ts.map +1 -1
- package/dist/types/hooks/useFetch/useFetch.d.ts +1 -1
- package/dist/types/hooks/useFetch/useFetch.d.ts.map +1 -1
- package/dist/types/hooks/useMediaQuery/index.d.ts +2 -0
- package/dist/types/hooks/useMediaQuery/index.d.ts.map +1 -0
- package/dist/types/hooks/useMediaQuery/useMediaQuery.d.ts +3 -0
- package/dist/types/hooks/useMediaQuery/useMediaQuery.d.ts.map +1 -0
- package/dist/types/hooks/useModalDetails/types.d.ts +4 -4
- package/dist/types/hooks/useModalDetails/types.d.ts.map +1 -1
- package/dist/types/hooks/useModalDetails/useModalDetails.d.ts +2 -2
- package/dist/types/hooks/useModalDetails/useModalDetails.d.ts.map +1 -1
- package/dist/types/hooks/useReflex/index.d.ts +1 -3
- package/dist/types/hooks/useReflex/index.d.ts.map +1 -1
- package/dist/types/hooks/useReflex/useReflex.d.ts +5 -0
- package/dist/types/hooks/useReflex/useReflex.d.ts.map +1 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/primitives/async/abortable/index.d.ts +3 -0
- package/dist/types/primitives/async/abortable/index.d.ts.map +1 -0
- package/dist/types/primitives/async/abortable/main.d.ts +4 -0
- package/dist/types/primitives/async/abortable/main.d.ts.map +1 -0
- package/dist/types/primitives/async/abortable/types.d.ts +8 -0
- package/dist/types/primitives/async/abortable/types.d.ts.map +1 -0
- package/dist/types/primitives/async/deferred/index.d.ts +3 -0
- package/dist/types/primitives/async/deferred/index.d.ts.map +1 -0
- package/dist/types/primitives/async/deferred/main.d.ts +4 -0
- package/dist/types/primitives/async/deferred/main.d.ts.map +1 -0
- package/dist/types/primitives/async/deferred/types.d.ts +8 -0
- package/dist/types/primitives/async/deferred/types.d.ts.map +1 -0
- package/dist/types/primitives/async/promisor/index.d.ts +3 -0
- package/dist/types/primitives/async/promisor/index.d.ts.map +1 -0
- package/dist/types/primitives/async/promisor/main.d.ts +5 -0
- package/dist/types/primitives/async/promisor/main.d.ts.map +1 -0
- package/dist/types/primitives/async/promisor/types.d.ts +7 -0
- package/dist/types/primitives/async/promisor/types.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/abortSink/index.d.ts +3 -0
- package/dist/types/primitives/auxiliary/abortSink/index.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/abortSink/main.d.ts +5 -0
- package/dist/types/primitives/auxiliary/abortSink/main.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/abortSink/types.d.ts +7 -0
- package/dist/types/primitives/auxiliary/abortSink/types.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/errorContainer/index.d.ts +3 -0
- package/dist/types/primitives/auxiliary/errorContainer/index.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/errorContainer/main.d.ts +4 -0
- package/dist/types/primitives/auxiliary/errorContainer/main.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/errorContainer/types.d.ts +7 -0
- package/dist/types/primitives/auxiliary/errorContainer/types.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/indexed/helpers.d.ts +4 -0
- package/dist/types/primitives/auxiliary/indexed/helpers.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/indexed/index.d.ts +3 -0
- package/dist/types/primitives/auxiliary/indexed/index.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/indexed/main.d.ts +4 -0
- package/dist/types/primitives/auxiliary/indexed/main.d.ts.map +1 -0
- package/dist/types/primitives/auxiliary/indexed/types.d.ts.map +1 -0
- package/dist/types/primitives/context/session/SessionContext.d.ts +40 -0
- package/dist/types/primitives/context/session/SessionContext.d.ts.map +1 -0
- package/dist/types/primitives/context/session/constants.d.ts +8 -0
- package/dist/types/primitives/context/session/constants.d.ts.map +1 -0
- package/dist/types/primitives/context/session/index.d.ts +4 -0
- package/dist/types/primitives/context/session/index.d.ts.map +1 -0
- package/dist/types/primitives/context/session/types.d.ts +11 -0
- package/dist/types/primitives/context/session/types.d.ts.map +1 -0
- package/dist/types/primitives/dom/tabbableRoot/tabbable.d.ts.map +1 -0
- package/dist/types/primitives/reactive/effectStack/index.d.ts +3 -0
- package/dist/types/primitives/reactive/effectStack/index.d.ts.map +1 -0
- package/dist/types/primitives/reactive/effectStack/main.d.ts +4 -0
- package/dist/types/primitives/reactive/effectStack/main.d.ts.map +1 -0
- package/dist/types/primitives/reactive/effectStack/types.d.ts +5 -0
- package/dist/types/primitives/reactive/effectStack/types.d.ts.map +1 -0
- package/dist/types/primitives/reactive/eventEmitter/index.d.ts +3 -0
- package/dist/types/primitives/reactive/eventEmitter/index.d.ts.map +1 -0
- package/dist/types/primitives/reactive/eventEmitter/main.d.ts +4 -0
- package/dist/types/primitives/reactive/eventEmitter/main.d.ts.map +1 -0
- package/dist/types/primitives/reactive/eventEmitter/types.d.ts +20 -0
- package/dist/types/primitives/reactive/eventEmitter/types.d.ts.map +1 -0
- package/dist/types/primitives/reactive/reflex/constants.d.ts.map +1 -0
- package/dist/types/primitives/reactive/reflex/errors.d.ts.map +1 -0
- package/dist/types/{hooks/useReflex/core/utils.d.ts → primitives/reactive/reflex/helpers.d.ts} +2 -2
- package/dist/types/primitives/reactive/reflex/helpers.d.ts.map +1 -0
- package/dist/types/primitives/reactive/reflex/index.d.ts +6 -0
- package/dist/types/primitives/reactive/reflex/index.d.ts.map +1 -0
- package/dist/types/primitives/reactive/reflex/main.d.ts +5 -0
- package/dist/types/primitives/reactive/reflex/main.d.ts.map +1 -0
- package/dist/types/primitives/reactive/reflex/register.d.ts +5 -0
- package/dist/types/primitives/reactive/reflex/register.d.ts.map +1 -0
- package/dist/types/{hooks/useReflex → primitives/reactive/reflex}/types.d.ts +7 -9
- package/dist/types/primitives/reactive/reflex/types.d.ts.map +1 -0
- package/dist/types/primitives/reactive/watchlist/constants.d.ts +2 -0
- package/dist/types/primitives/reactive/watchlist/constants.d.ts.map +1 -0
- package/dist/types/primitives/reactive/watchlist/helpers.d.ts +4 -0
- package/dist/types/primitives/reactive/watchlist/helpers.d.ts.map +1 -0
- package/dist/types/primitives/reactive/watchlist/index.d.ts +4 -0
- package/dist/types/primitives/reactive/watchlist/index.d.ts.map +1 -0
- package/dist/types/primitives/reactive/watchlist/main.d.ts +6 -0
- package/dist/types/primitives/reactive/watchlist/main.d.ts.map +1 -0
- package/dist/types/primitives/reactive/watchlist/types.d.ts +23 -0
- package/dist/types/primitives/reactive/watchlist/types.d.ts.map +1 -0
- package/dist/types/primitives/time/clock/index.d.ts +3 -0
- package/dist/types/primitives/time/clock/index.d.ts.map +1 -0
- package/dist/types/primitives/time/clock/main.d.ts +4 -0
- package/dist/types/primitives/time/clock/main.d.ts.map +1 -0
- package/dist/types/primitives/time/clock/types.d.ts +7 -0
- package/dist/types/primitives/time/clock/types.d.ts.map +1 -0
- package/dist/types/primitives/time/interval/constants.d.ts +3 -0
- package/dist/types/primitives/time/interval/constants.d.ts.map +1 -0
- package/dist/types/primitives/time/interval/index.d.ts +4 -0
- package/dist/types/primitives/time/interval/index.d.ts.map +1 -0
- package/dist/types/primitives/time/interval/main.d.ts +25 -0
- package/dist/types/primitives/time/interval/main.d.ts.map +1 -0
- package/dist/types/primitives/time/interval/types.d.ts +6 -0
- package/dist/types/primitives/time/interval/types.d.ts.map +1 -0
- package/dist/types/primitives/time/today/index.d.ts +3 -0
- package/dist/types/primitives/time/today/index.d.ts.map +1 -0
- package/dist/types/primitives/time/today/main.d.ts +5 -0
- package/dist/types/primitives/time/today/main.d.ts.map +1 -0
- package/dist/types/primitives/time/today/types.d.ts +9 -0
- package/dist/types/primitives/time/today/types.d.ts.map +1 -0
- package/dist/types/translations/index.d.ts +2442 -0
- package/dist/types/translations/index.d.ts.map +1 -0
- package/dist/types/types/api/endpoints.d.ts +13 -0
- package/dist/types/types/api/endpoints.d.ts.map +1 -0
- package/dist/types/types/api/index.d.ts +2 -0
- package/dist/types/types/api/index.d.ts.map +1 -0
- package/dist/types/types/api/models/balanceAccounts.d.ts +5 -0
- package/dist/types/types/api/models/balanceAccounts.d.ts.map +1 -0
- package/dist/types/types/api/models/index.d.ts +4 -0
- package/dist/types/types/api/models/index.d.ts.map +1 -0
- package/dist/types/types/api/models/payouts.d.ts +5 -0
- package/dist/types/types/api/models/payouts.d.ts.map +1 -0
- package/dist/types/types/api/models/transactions.d.ts +6 -0
- package/dist/types/types/api/models/transactions.d.ts.map +1 -0
- package/dist/types/types/api/resources/BalanceAccountsResource.d.ts.map +1 -0
- package/dist/types/types/api/resources/PaymentInstrumentsResource.d.ts +70 -0
- package/dist/types/types/api/resources/PaymentInstrumentsResource.d.ts.map +1 -0
- package/dist/types/types/api/resources/PayoutsResource.d.ts +127 -0
- package/dist/types/types/api/resources/PayoutsResource.d.ts.map +1 -0
- package/dist/types/types/api/resources/SetupResource.d.ts.map +1 -0
- package/dist/types/types/api/resources/TransactionsResource.d.ts.map +1 -0
- package/dist/types/types/api/utils.d.ts +2 -0
- package/dist/types/types/api/utils.d.ts.map +1 -0
- package/dist/types/types/index.d.ts +1 -2
- package/dist/types/types/index.d.ts.map +1 -1
- package/dist/types/utils/async/constants.d.ts +3 -0
- package/dist/types/utils/async/constants.d.ts.map +1 -0
- package/dist/types/utils/async/main.d.ts +4 -0
- package/dist/types/utils/async/main.d.ts.map +1 -0
- package/dist/types/utils/collection/main.d.ts +11 -0
- package/dist/types/utils/collection/main.d.ts.map +1 -0
- package/dist/types/utils/collection/types.d.ts +3 -0
- package/dist/types/utils/collection/types.d.ts.map +1 -0
- package/dist/types/utils/common.d.ts +11 -0
- package/dist/types/utils/common.d.ts.map +1 -0
- package/dist/types/utils/datetime/main.d.ts +3 -0
- package/dist/types/utils/datetime/main.d.ts.map +1 -0
- package/dist/types/utils/datetime/types.d.ts +15 -0
- package/dist/types/utils/datetime/types.d.ts.map +1 -0
- package/dist/types/utils/index.d.ts +16 -0
- package/dist/types/utils/index.d.ts.map +1 -0
- package/dist/types/utils/{class-name-utils.d.ts → preact/className.d.ts} +1 -1
- package/dist/types/utils/preact/className.d.ts.map +1 -0
- package/dist/types/utils/{fixedForwardRef.d.ts → preact/fixedForwardRef.d.ts} +1 -1
- package/dist/types/utils/preact/fixedForwardRef.d.ts.map +1 -0
- package/dist/types/utils/preact/index.d.ts +5 -0
- package/dist/types/utils/preact/index.d.ts.map +1 -0
- package/dist/types/utils/preact/memoComparator/main.d.ts +4 -0
- package/dist/types/utils/preact/memoComparator/main.d.ts.map +1 -0
- package/dist/types/utils/preact/memoComparator/types.d.ts.map +1 -0
- package/dist/types/utils/preact/props.d.ts +3 -0
- package/dist/types/utils/preact/props.d.ts.map +1 -0
- package/dist/types/utils/random/uniqueId.d.ts +3 -0
- package/dist/types/utils/random/uniqueId.d.ts.map +1 -0
- package/dist/types/utils/random/uuid.d.ts +4 -0
- package/dist/types/utils/random/uuid.d.ts.map +1 -0
- package/dist/types/utils/struct/main.d.ts +23 -0
- package/dist/types/utils/struct/main.d.ts.map +1 -0
- package/dist/types/utils/struct/property.d.ts +5 -0
- package/dist/types/utils/struct/property.d.ts.map +1 -0
- package/dist/types/utils/struct/types.d.ts +9 -0
- package/dist/types/utils/struct/types.d.ts.map +1 -0
- package/dist/types/utils/types.d.ts +26 -6
- package/dist/types/utils/types.d.ts.map +1 -1
- package/dist/types/utils/value/bool.d.ts +6 -0
- package/dist/types/utils/value/bool.d.ts.map +1 -0
- package/dist/types/utils/value/compare.d.ts +6 -0
- package/dist/types/utils/value/compare.d.ts.map +1 -0
- package/dist/types/utils/value/constants.d.ts +3 -0
- package/dist/types/utils/value/constants.d.ts.map +1 -0
- package/dist/types/utils/value/is.d.ts +11 -0
- package/dist/types/utils/value/is.d.ts.map +1 -0
- package/dist/types/utils/value/number.d.ts +6 -0
- package/dist/types/utils/value/number.d.ts.map +1 -0
- package/dist/types/utils/value/string.d.ts +3 -0
- package/dist/types/utils/value/string.d.ts.map +1 -0
- package/package.json +3 -1
- package/LICENSE +0 -21
- package/README.md +0 -69
- package/dist/ModalContent-387502da.js +0 -2
- package/dist/ModalContent-387502da.js.map +0 -1
- package/dist/es/components/external/EventEmitter.js +0 -25
- package/dist/es/components/external/TransactionDetails/components/TransactionDetails.js +0 -33
- package/dist/es/components/external/TransactionsOverview/components/BalanceAccountSelector/BalanceAccountSelector.js +0 -30
- package/dist/es/components/external/TransactionsOverview/components/BalanceAccountSelector/useBalanceAccountSelection.js +0 -17
- package/dist/es/components/external/TransactionsOverview/components/ModalContent.js +0 -12
- package/dist/es/components/external/TransactionsOverview/components/TransactionListError/TransactionListError.js +0 -21
- package/dist/es/components/external/TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.js +0 -80
- package/dist/es/components/external/TransactionsOverview/components/TransactionsDisplay/constants.js +0 -5
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewDateFilter.js +0 -67
- package/dist/es/components/external/TransactionsOverview/hooks/useDefaultTransactionsOverviewFilterParams.js +0 -23
- package/dist/es/components/external/TransactionsOverview/types.js +0 -4
- package/dist/es/components/external/UIElement.js +0 -85
- package/dist/es/components/internal/Calendar/calendar/shared/indexed/index.js +0 -46
- package/dist/es/components/internal/Calendar/clock/clock.js +0 -27
- package/dist/es/components/internal/Calendar/clock/today.js +0 -46
- package/dist/es/components/internal/Spinner/Spinner.js +0 -6
- package/dist/es/components/utils/transactionResourceErrorCodes.js +0 -39
- package/dist/es/core/Auth/AuthContext.js +0 -11
- package/dist/es/core/Auth/AuthProvider.js +0 -18
- package/dist/es/core/Auth/useAuthContext.js +0 -6
- package/dist/es/core/Localization/translations/cs-CZ.json.js +0 -4
- package/dist/es/core/Localization/translations/da-DK.json.js +0 -4
- package/dist/es/core/Localization/translations/en-US.json.js +0 -371
- package/dist/es/core/Localization/translations/es-ES.json.js +0 -255
- package/dist/es/core/Localization/translations/fr-FR.json.js +0 -4
- package/dist/es/core/Localization/translations/hr-HR.json.js +0 -4
- package/dist/es/core/Localization/translations/hu-HU.json.js +0 -4
- package/dist/es/core/Localization/translations/index.js +0 -82
- package/dist/es/core/Localization/translations/it-IT.json.js +0 -4
- package/dist/es/core/Localization/translations/ja-JP.json.js +0 -4
- package/dist/es/core/Localization/translations/ko-KR.json.js +0 -4
- package/dist/es/core/Localization/translations/nl-NL.json.js +0 -4
- package/dist/es/core/Localization/translations/no-NO.json.js +0 -4
- package/dist/es/core/Localization/translations/pl-PL.json.js +0 -4
- package/dist/es/core/Localization/translations/pt-BR.json.js +0 -4
- package/dist/es/core/Localization/translations/pt-PT.json.js +0 -4
- package/dist/es/core/Localization/translations/ro-RO.json.js +0 -4
- package/dist/es/core/Localization/translations/ru-RU.json.js +0 -4
- package/dist/es/core/Localization/translations/sk-SK.json.js +0 -4
- package/dist/es/core/Localization/translations/sl-SI.json.js +0 -4
- package/dist/es/core/Localization/translations/sv-SE.json.js +0 -4
- package/dist/es/core/Localization/translations/zh-CN.json.js +0 -4
- package/dist/es/core/Localization/translations/zh-TW.json.js +0 -4
- package/dist/es/core/Services/requests/http.js +0 -41
- package/dist/es/core/Services/sessions/setup-session.js +0 -20
- package/dist/es/core/Session/Session.js +0 -59
- package/dist/es/core/Session/utils.js +0 -11
- package/dist/es/core/config.js +0 -4
- package/dist/es/hooks/useReflex/core/reflex.js +0 -66
- package/dist/es/hooks/useReflex/core/registry.js +0 -65
- package/dist/es/hooks/useReflex/core/utils.js +0 -23
- package/dist/es/hooks/useSessionAwareRequest/useSessionAwareRequest.js +0 -30
- package/dist/es/hooks/useSetupEndpoint/useSetupEndpoint.js +0 -27
- package/dist/es/utils/SessionStorage.js +0 -31
- package/dist/es/utils/class-name-utils.js +0 -7
- package/dist/es/utils/common/constants.js +0 -8
- package/dist/es/utils/common/index.js +0 -34
- package/dist/es/utils/fixedForwardRef.js +0 -5
- package/dist/es/utils/get-image.js +0 -16
- package/dist/es/utils/idGenerator.js +0 -5
- package/dist/es/utils/memoComparator/memoComparator.js +0 -23
- package/dist/es/utils/tabbable.js +0 -100
- package/dist/es/utils/uuid.js +0 -9
- package/dist/es/utils/validator-utils.js +0 -5
- package/dist/es/utils/watchable/constants.js +0 -4
- package/dist/es/utils/watchable/core/Watchable.js +0 -62
- package/dist/es/utils/watchable/core/helpers.js +0 -26
- package/dist/es/utils/watchable/core/syncEffect.js +0 -22
- package/dist/es/utils/watchable/index.js +0 -20
- package/dist/index-8daceaea.js +0 -12
- package/dist/index-8daceaea.js.map +0 -1
- package/dist/types/components/external/EventEmitter.d.ts +0 -10
- package/dist/types/components/external/EventEmitter.d.ts.map +0 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionDetails.d.ts +0 -5
- package/dist/types/components/external/TransactionDetails/components/TransactionDetails.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/BalanceAccountSelector.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/index.d.ts +0 -3
- package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/index.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/useBalanceAccountSelection.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/ModalContent.d.ts +0 -4
- package/dist/types/components/external/TransactionsOverview/components/ModalContent.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionListError/TransactionListError.d.ts +0 -7
- package/dist/types/components/external/TransactionsOverview/components/TransactionListError/TransactionListError.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.d.ts +0 -5
- package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/constants.d.ts +0 -3
- package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/constants.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/types.d.ts +0 -5
- package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/types.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewDateFilter.d.ts +0 -10
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewDateFilter.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/hooks/useDefaultTransactionsOverviewFilterParams.d.ts +0 -34
- package/dist/types/components/external/TransactionsOverview/hooks/useDefaultTransactionsOverviewFilterParams.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/hooks/useMediaQuery.d.ts.map +0 -1
- package/dist/types/components/external/TransactionsOverview/types.d.ts +0 -41
- package/dist/types/components/external/TransactionsOverview/types.d.ts.map +0 -1
- package/dist/types/components/external/UIElement.d.ts.map +0 -1
- package/dist/types/components/internal/Calendar/calendar/shared/indexed/index.d.ts +0 -4
- package/dist/types/components/internal/Calendar/calendar/shared/indexed/index.d.ts.map +0 -1
- package/dist/types/components/internal/Calendar/calendar/shared/indexed/types.d.ts.map +0 -1
- package/dist/types/components/internal/Calendar/clock/clock.d.ts +0 -8
- package/dist/types/components/internal/Calendar/clock/clock.d.ts.map +0 -1
- package/dist/types/components/internal/Calendar/clock/index.d.ts +0 -4
- package/dist/types/components/internal/Calendar/clock/index.d.ts.map +0 -1
- package/dist/types/components/internal/Calendar/clock/today.d.ts +0 -5
- package/dist/types/components/internal/Calendar/clock/today.d.ts.map +0 -1
- package/dist/types/components/internal/Calendar/clock/types.d.ts +0 -12
- package/dist/types/components/internal/Calendar/clock/types.d.ts.map +0 -1
- package/dist/types/components/internal/FilterBar/filters/DateFilter/index.d.ts +0 -2
- package/dist/types/components/internal/FilterBar/filters/DateFilter/index.d.ts.map +0 -1
- package/dist/types/components/internal/Spinner/Spinner.d.ts +0 -18
- package/dist/types/components/internal/Spinner/Spinner.d.ts.map +0 -1
- package/dist/types/components/internal/Spinner/index.d.ts +0 -2
- package/dist/types/components/internal/Spinner/index.d.ts.map +0 -1
- package/dist/types/components/utils/transactionResourceErrorCodes.d.ts.map +0 -1
- package/dist/types/core/Analytics/Analytics.d.ts +0 -22
- package/dist/types/core/Analytics/Analytics.d.ts.map +0 -1
- package/dist/types/core/Analytics/EventsQueue.d.ts +0 -8
- package/dist/types/core/Analytics/EventsQueue.d.ts.map +0 -1
- package/dist/types/core/Analytics/index.d.ts +0 -2
- package/dist/types/core/Analytics/index.d.ts.map +0 -1
- package/dist/types/core/Auth/AuthContext.d.ts +0 -3
- package/dist/types/core/Auth/AuthContext.d.ts.map +0 -1
- package/dist/types/core/Auth/AuthProvider.d.ts +0 -4
- package/dist/types/core/Auth/AuthProvider.d.ts.map +0 -1
- package/dist/types/core/Auth/useAuthContext.d.ts +0 -3
- package/dist/types/core/Auth/useAuthContext.d.ts.map +0 -1
- package/dist/types/core/Localization/translations/index.d.ts +0 -632
- package/dist/types/core/Localization/translations/index.d.ts.map +0 -1
- package/dist/types/core/Services/analytics/collect-id.d.ts +0 -9
- package/dist/types/core/Services/analytics/collect-id.d.ts.map +0 -1
- package/dist/types/core/Services/analytics/log-event.d.ts +0 -9
- package/dist/types/core/Services/analytics/log-event.d.ts.map +0 -1
- package/dist/types/core/Services/analytics/post-telemetry.d.ts +0 -8
- package/dist/types/core/Services/analytics/post-telemetry.d.ts.map +0 -1
- package/dist/types/core/Services/analytics/types.d.ts +0 -15
- package/dist/types/core/Services/analytics/types.d.ts.map +0 -1
- package/dist/types/core/Services/requests/endpoints.d.ts +0 -7
- package/dist/types/core/Services/requests/endpoints.d.ts.map +0 -1
- package/dist/types/core/Services/requests/http.d.ts.map +0 -1
- package/dist/types/core/Services/requests/types.d.ts.map +0 -1
- package/dist/types/core/Services/requests/utils.d.ts.map +0 -1
- package/dist/types/core/Services/sessions/constants.d.ts.map +0 -1
- package/dist/types/core/Services/sessions/setup-session.d.ts +0 -5
- package/dist/types/core/Services/sessions/setup-session.d.ts.map +0 -1
- package/dist/types/core/Session/Session.d.ts +0 -32
- package/dist/types/core/Session/Session.d.ts.map +0 -1
- package/dist/types/core/Session/index.d.ts +0 -2
- package/dist/types/core/Session/index.d.ts.map +0 -1
- package/dist/types/core/Session/types.d.ts +0 -9
- package/dist/types/core/Session/types.d.ts.map +0 -1
- package/dist/types/core/Session/utils.d.ts +0 -3
- package/dist/types/core/Session/utils.d.ts.map +0 -1
- package/dist/types/core/config.d.ts +0 -9
- package/dist/types/core/config.d.ts.map +0 -1
- package/dist/types/hooks/useReflex/constants.d.ts.map +0 -1
- package/dist/types/hooks/useReflex/core/reflex.d.ts +0 -5
- package/dist/types/hooks/useReflex/core/reflex.d.ts.map +0 -1
- package/dist/types/hooks/useReflex/core/registry.d.ts +0 -5
- package/dist/types/hooks/useReflex/core/registry.d.ts.map +0 -1
- package/dist/types/hooks/useReflex/core/utils.d.ts.map +0 -1
- package/dist/types/hooks/useReflex/errors.d.ts.map +0 -1
- package/dist/types/hooks/useReflex/hooks/useReflex.d.ts +0 -4
- package/dist/types/hooks/useReflex/hooks/useReflex.d.ts.map +0 -1
- package/dist/types/hooks/useReflex/types.d.ts.map +0 -1
- package/dist/types/hooks/useSessionAwareRequest/useSessionAwareRequest.d.ts +0 -6
- package/dist/types/hooks/useSessionAwareRequest/useSessionAwareRequest.d.ts.map +0 -1
- package/dist/types/hooks/useSetupEndpoint/useSetupEndpoint.d.ts +0 -12
- package/dist/types/hooks/useSetupEndpoint/useSetupEndpoint.d.ts.map +0 -1
- package/dist/types/types/models/api/index.d.ts +0 -3
- package/dist/types/types/models/api/index.d.ts.map +0 -1
- package/dist/types/types/models/api/utils.d.ts +0 -15
- package/dist/types/types/models/api/utils.d.ts.map +0 -1
- package/dist/types/types/models/balanceAccount.d.ts +0 -5
- package/dist/types/types/models/balanceAccount.d.ts.map +0 -1
- package/dist/types/types/models/openapi/BalanceAccountsResource.d.ts.map +0 -1
- package/dist/types/types/models/openapi/SetupResource.d.ts.map +0 -1
- package/dist/types/types/models/openapi/TransactionsResource.d.ts.map +0 -1
- package/dist/types/types/models/openapi/endpoints.d.ts +0 -11
- package/dist/types/types/models/openapi/endpoints.d.ts.map +0 -1
- package/dist/types/types/models/transactions.d.ts +0 -5
- package/dist/types/types/models/transactions.d.ts.map +0 -1
- package/dist/types/types/shared.d.ts +0 -33
- package/dist/types/types/shared.d.ts.map +0 -1
- package/dist/types/utils/SessionStorage.d.ts +0 -11
- package/dist/types/utils/SessionStorage.d.ts.map +0 -1
- package/dist/types/utils/Validator/ValidationRuleResult.d.ts +0 -19
- package/dist/types/utils/Validator/ValidationRuleResult.d.ts.map +0 -1
- package/dist/types/utils/Validator/types.d.ts +0 -58
- package/dist/types/utils/Validator/types.d.ts.map +0 -1
- package/dist/types/utils/class-name-utils.d.ts.map +0 -1
- package/dist/types/utils/common/constants.d.ts +0 -12
- package/dist/types/utils/common/constants.d.ts.map +0 -1
- package/dist/types/utils/common/index.d.ts +0 -27
- package/dist/types/utils/common/index.d.ts.map +0 -1
- package/dist/types/utils/fixedForwardRef.d.ts.map +0 -1
- package/dist/types/utils/get-image.d.ts +0 -14
- package/dist/types/utils/get-image.d.ts.map +0 -1
- package/dist/types/utils/idGenerator.d.ts +0 -2
- package/dist/types/utils/idGenerator.d.ts.map +0 -1
- package/dist/types/utils/memoComparator/index.d.ts +0 -2
- package/dist/types/utils/memoComparator/index.d.ts.map +0 -1
- package/dist/types/utils/memoComparator/memoComparator.d.ts +0 -4
- package/dist/types/utils/memoComparator/memoComparator.d.ts.map +0 -1
- package/dist/types/utils/memoComparator/types.d.ts.map +0 -1
- package/dist/types/utils/tabbable.d.ts.map +0 -1
- package/dist/types/utils/useForm/types.d.ts +0 -81
- package/dist/types/utils/useForm/types.d.ts.map +0 -1
- package/dist/types/utils/uuid.d.ts +0 -2
- package/dist/types/utils/uuid.d.ts.map +0 -1
- package/dist/types/utils/validator-utils.d.ts +0 -15
- package/dist/types/utils/validator-utils.d.ts.map +0 -1
- package/dist/types/utils/watchable/constants.d.ts +0 -2
- package/dist/types/utils/watchable/constants.d.ts.map +0 -1
- package/dist/types/utils/watchable/core/Watchable.d.ts +0 -17
- package/dist/types/utils/watchable/core/Watchable.d.ts.map +0 -1
- package/dist/types/utils/watchable/core/helpers.d.ts +0 -9
- package/dist/types/utils/watchable/core/helpers.d.ts.map +0 -1
- package/dist/types/utils/watchable/core/syncEffect.d.ts +0 -4
- package/dist/types/utils/watchable/core/syncEffect.d.ts.map +0 -1
- package/dist/types/utils/watchable/index.d.ts +0 -4
- package/dist/types/utils/watchable/index.d.ts.map +0 -1
- package/dist/types/utils/watchable/types.d.ts +0 -27
- package/dist/types/utils/watchable/types.d.ts.map +0 -1
- /package/dist/es/components/external/{TransactionDetails/components/TransactionDetails.scss.js → PayoutDetails/components/PayoutData.scss.js} +0 -0
- /package/dist/es/components/{internal/Spinner/Spinner.scss.js → external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.scss.js} +0 -0
- /package/dist/es/components/external/{TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.scss.js → PayoutsOverview/components/PayoutsTable/PayoutsTable.scss.js} +0 -0
- /package/dist/es/components/external/{TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.scss.js → TransactionDetails/components/TransactionData.scss.js} +0 -0
- /package/dist/es/components/{external/TransactionsOverview/components → internal/FormFields/Select}/BalanceAccountSelector/BalanceAccountSelector.scss.js +0 -0
- /package/dist/es/components/internal/{FilterBar/filters/DateFilter/DateFilter.scss.js → Modal/ModalContent/ModalContent.scss.js} +0 -0
- /package/dist/es/core/{Services/sessions → Http}/constants.js +0 -0
- /package/dist/es/{hooks/useReflex → primitives/reactive/reflex}/constants.js +0 -0
- /package/dist/es/{hooks/useReflex → primitives/reactive/reflex}/errors.js +0 -0
- /package/dist/types/core/{Services/sessions → Http}/constants.d.ts +0 -0
- /package/dist/types/core/{Services/requests → Http}/http.d.ts +0 -0
- /package/dist/types/core/{Services/requests → Http}/utils.d.ts +0 -0
- /package/dist/types/{components/internal/Calendar/calendar/shared → primitives/auxiliary}/indexed/types.d.ts +0 -0
- /package/dist/types/{utils → primitives/dom/tabbableRoot}/tabbable.d.ts +0 -0
- /package/dist/types/{hooks/useReflex → primitives/reactive/reflex}/constants.d.ts +0 -0
- /package/dist/types/{hooks/useReflex → primitives/reactive/reflex}/errors.d.ts +0 -0
- /package/dist/types/types/{models/openapi → api/resources}/BalanceAccountsResource.d.ts +0 -0
- /package/dist/types/types/{models/openapi → api/resources}/SetupResource.d.ts +0 -0
- /package/dist/types/types/{models/openapi → api/resources}/TransactionsResource.d.ts +0 -0
- /package/dist/types/utils/{memoComparator → preact/memoComparator}/types.d.ts +0 -0
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
var a = Object.defineProperty;
|
|
2
|
-
var h = (s, e, t) => e in s ? a(s, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : s[e] = t;
|
|
3
|
-
var o = (s, e, t) => (h(s, typeof e != "symbol" ? e + "" : e, t), t);
|
|
4
|
-
import { jsx as i } from "../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
5
|
-
import m from "../../core/Auth/AuthProvider.js";
|
|
6
|
-
import u from "../../core/Context/CoreProvider.js";
|
|
7
|
-
import c from "./BaseElement.js";
|
|
8
|
-
import d from "../../utils/get-image.js";
|
|
9
|
-
import { EMPTY_OBJECT as l } from "../../utils/common/constants.js";
|
|
10
|
-
class f extends c {
|
|
11
|
-
constructor(t) {
|
|
12
|
-
super(t);
|
|
13
|
-
o(this, "componentRef");
|
|
14
|
-
o(this, "elementRef");
|
|
15
|
-
o(this, "onContactSupport");
|
|
16
|
-
o(this, "componentToRender");
|
|
17
|
-
o(this, "setUIElementStatus");
|
|
18
|
-
this.setState = this.setState.bind(this), this.onContactSupport = t.onContactSupport, this.componentRef = null, this.elementRef = this.props && this.props.elementRef || this, this.componentToRender = null, this.sessionSetupError = this.props.core.sessionSetupError;
|
|
19
|
-
}
|
|
20
|
-
get isValid() {
|
|
21
|
-
return !!this.state.isValid;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* Get the element icon URL for the current environment
|
|
25
|
-
*/
|
|
26
|
-
get icon() {
|
|
27
|
-
var t;
|
|
28
|
-
return d({ loadingContext: this.loadingContext })((t = this.constructor) == null ? void 0 : t.type);
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* Get the element's displayable name
|
|
32
|
-
*/
|
|
33
|
-
get displayName() {
|
|
34
|
-
var t;
|
|
35
|
-
return this.props.name || ((t = this.constructor) == null ? void 0 : t.type);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Get the element accessible name, used in the aria-label of the button that controls selected component
|
|
39
|
-
*/
|
|
40
|
-
get accessibleName() {
|
|
41
|
-
return this.displayName;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Return the type of an element
|
|
45
|
-
*/
|
|
46
|
-
get type() {
|
|
47
|
-
return this.type;
|
|
48
|
-
}
|
|
49
|
-
formatProps(t) {
|
|
50
|
-
return t;
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* Formats the component data output
|
|
54
|
-
*/
|
|
55
|
-
formatData() {
|
|
56
|
-
return {
|
|
57
|
-
...this.state
|
|
58
|
-
};
|
|
59
|
-
}
|
|
60
|
-
setState(t) {
|
|
61
|
-
this.state = { ...this.state, ...t };
|
|
62
|
-
}
|
|
63
|
-
setStatus(t, r) {
|
|
64
|
-
var n, p;
|
|
65
|
-
return (n = this.componentRef) != null && n.setStatus ? this.componentRef.setStatus(t, r) : (p = this.setUIElementStatus) == null || p.call(this, t), this;
|
|
66
|
-
}
|
|
67
|
-
render() {
|
|
68
|
-
var t, r, n;
|
|
69
|
-
return /* @__PURE__ */ i(
|
|
70
|
-
m,
|
|
71
|
-
{
|
|
72
|
-
endpoints: ((r = (t = this.session) == null ? void 0 : t.configuration) == null ? void 0 : r.endpoints) || l,
|
|
73
|
-
token: ((n = this.session) == null ? void 0 : n.token) ?? "",
|
|
74
|
-
updateCore: this.props.core.update.bind(this.props.core),
|
|
75
|
-
sessionSetupError: this.sessionSetupError,
|
|
76
|
-
children: /* @__PURE__ */ i(u, { i18n: this.i18n, loadingContext: this.loadingContext, children: this.componentToRender && /* @__PURE__ */ i("div", { className: "adyen-pe-component", children: this.componentToRender() }) })
|
|
77
|
-
}
|
|
78
|
-
);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
const T = f;
|
|
82
|
-
export {
|
|
83
|
-
f as UIElement,
|
|
84
|
-
T as default
|
|
85
|
-
};
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { struct as i, isFunction as s, isNumber as h, structFrom as d } from "../../../../../../utils/common/index.js";
|
|
2
|
-
import { isString as g } from "../../../../../../utils/validator-utils.js";
|
|
3
|
-
import { $true as a } from "../../../../../../utils/common/constants.js";
|
|
4
|
-
const o = (() => {
|
|
5
|
-
const c = function* (t = (u) => u, n) {
|
|
6
|
-
for (let u = 0; u < this.length; u++)
|
|
7
|
-
yield t.call(n, this[u], u, this);
|
|
8
|
-
}, e = Object.freeze(
|
|
9
|
-
i({
|
|
10
|
-
[Symbol.iterator]: {
|
|
11
|
-
value() {
|
|
12
|
-
return c.call(this);
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
map: {
|
|
16
|
-
value(t, n) {
|
|
17
|
-
return [...c.call(this, t, n)];
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
})
|
|
21
|
-
), f = (t) => (n, u, m) => {
|
|
22
|
-
if (g(u)) {
|
|
23
|
-
const l = +u;
|
|
24
|
-
if (l >= 0 && l < n.length)
|
|
25
|
-
return t(l);
|
|
26
|
-
}
|
|
27
|
-
return Reflect.get(n, u, m);
|
|
28
|
-
};
|
|
29
|
-
return (t, n) => s(t) ? o(
|
|
30
|
-
{
|
|
31
|
-
length: { get: t }
|
|
32
|
-
},
|
|
33
|
-
n
|
|
34
|
-
) : h(t) ? o(
|
|
35
|
-
{
|
|
36
|
-
length: { value: t }
|
|
37
|
-
},
|
|
38
|
-
n
|
|
39
|
-
) : new Proxy(d(e, t), {
|
|
40
|
-
get: f(n),
|
|
41
|
-
set: a
|
|
42
|
-
});
|
|
43
|
-
})(), F = o;
|
|
44
|
-
export {
|
|
45
|
-
F as default
|
|
46
|
-
};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import f from "../../../../utils/watchable/index.js";
|
|
2
|
-
import { struct as h } from "../../../../utils/common/index.js";
|
|
3
|
-
const g = (() => {
|
|
4
|
-
let t = null, a;
|
|
5
|
-
const s = (n, i, u) => {
|
|
6
|
-
const o = document.timeline.currentTime ?? performance.now(), l = (r) => {
|
|
7
|
-
const p = r - o, w = Math.round(p / n) * n, b = o + w + n - performance.now();
|
|
8
|
-
setTimeout(() => requestAnimationFrame(d), b);
|
|
9
|
-
}, d = (r) => {
|
|
10
|
-
i.aborted || (l(r), u());
|
|
11
|
-
};
|
|
12
|
-
l(o);
|
|
13
|
-
}, m = () => {
|
|
14
|
-
t = Date.now(), e.notify();
|
|
15
|
-
}, c = () => t ?? Date.now(), e = f({ timestamp: c });
|
|
16
|
-
return e.callback.resume = () => {
|
|
17
|
-
a = new AbortController(), t = Date.now(), s(1e3, a.signal, m);
|
|
18
|
-
}, e.callback.idle = () => {
|
|
19
|
-
a.abort(), t = null;
|
|
20
|
-
}, h({
|
|
21
|
-
timestamp: { get: c },
|
|
22
|
-
watch: { value: e.watch }
|
|
23
|
-
});
|
|
24
|
-
})(), D = g;
|
|
25
|
-
export {
|
|
26
|
-
D as default
|
|
27
|
-
};
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import D from "../../../../utils/watchable/index.js";
|
|
2
|
-
import { struct as T } from "../../../../utils/common/index.js";
|
|
3
|
-
import i from "./clock.js";
|
|
4
|
-
import d from "../../../../core/Localization/datetime/restamper/restamper.js";
|
|
5
|
-
import { timezoneToSystem as g, systemToTimezone as z } from "../../../../core/Localization/datetime/restamper/utils.js";
|
|
6
|
-
const w = (() => {
|
|
7
|
-
const u = /* @__PURE__ */ new Map(), r = d(), f = (a = i.timestamp) => {
|
|
8
|
-
const t = new Date(a), o = new Date(g(r, a)), e = t.getDate() - o.getDate();
|
|
9
|
-
if (e) {
|
|
10
|
-
const n = e > 1 ? -1 : e < -1 ? 1 : e;
|
|
11
|
-
t.setDate(t.getDate() - n);
|
|
12
|
-
}
|
|
13
|
-
const s = z(r, t.setHours(0, 0, 0, 0)), m = z(r, t.setDate(t.getDate() + 1));
|
|
14
|
-
return [s, m - s];
|
|
15
|
-
};
|
|
16
|
-
return (a) => {
|
|
17
|
-
r.tz = a;
|
|
18
|
-
const t = r.tz.current;
|
|
19
|
-
return u.get(t) ?? (() => {
|
|
20
|
-
let o = null, e = null, s = null;
|
|
21
|
-
const m = () => (r.tz = t, o ?? f()[0]), n = (l = i.timestamp) => {
|
|
22
|
-
r.tz = t, [o, e] = f(l);
|
|
23
|
-
}, c = D({ timestamp: m });
|
|
24
|
-
c.callback.resume = () => {
|
|
25
|
-
s = i.watch((l) => {
|
|
26
|
-
if (l !== D.UNWATCH) {
|
|
27
|
-
if (o === null || e === null)
|
|
28
|
-
return n();
|
|
29
|
-
i.timestamp - o < e || (n(), c.notify());
|
|
30
|
-
}
|
|
31
|
-
});
|
|
32
|
-
}, c.callback.idle = () => {
|
|
33
|
-
s == null || s(), o = e = s = null;
|
|
34
|
-
};
|
|
35
|
-
const p = T({
|
|
36
|
-
timestamp: { get: m },
|
|
37
|
-
timezone: { value: t },
|
|
38
|
-
watch: { value: c.watch }
|
|
39
|
-
});
|
|
40
|
-
return u.set(t, p), p;
|
|
41
|
-
})();
|
|
42
|
-
};
|
|
43
|
-
})(), $ = w;
|
|
44
|
-
export {
|
|
45
|
-
$ as default
|
|
46
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "../../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
2
|
-
import "./Spinner.scss.js";
|
|
3
|
-
const r = ({ inline: n = !1, size: p = "large" }) => /* @__PURE__ */ e("div", { className: `adyen-pe-spinner__wrapper ${n ? "adyen-pe-spinner__wrapper--inline" : ""}`, children: /* @__PURE__ */ e("div", { className: `adyen-pe-spinner adyen-pe-spinner--${p}` }) }), i = r;
|
|
4
|
-
export {
|
|
5
|
-
i as default
|
|
6
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { jsx as s } from "../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
2
|
-
import a from "../internal/CopyText/CopyText.js";
|
|
3
|
-
const o = { title: "thereWasAnUnexpectedError", message: ["pleaseReachOutToSupportForAssistance"] }, i = (e, t) => {
|
|
4
|
-
if (!e)
|
|
5
|
-
return o;
|
|
6
|
-
switch (e.errorCode) {
|
|
7
|
-
case void 0:
|
|
8
|
-
return {
|
|
9
|
-
title: "somethingWentWrong",
|
|
10
|
-
message: ["weCouldNotLoadYourTransactions", "tryRefreshingThePageOrComeBackLater"],
|
|
11
|
-
refreshComponent: !0
|
|
12
|
-
};
|
|
13
|
-
case "00_500":
|
|
14
|
-
return {
|
|
15
|
-
title: "somethingWentWrong",
|
|
16
|
-
message: t ? ["weCouldNotLoadYourTransactions", "theErrorCodeIs"] : ["weCouldNotLoadYourTransactions", "contactSupportForHelpAndShareErrorCode"],
|
|
17
|
-
onContactSupport: t,
|
|
18
|
-
translationValues: t ? { theErrorCodeIs: e != null && e.requestId ? /* @__PURE__ */ s(a, { text: e.requestId }) : null } : { contactSupportForHelpAndShareErrorCode: e.requestId ? /* @__PURE__ */ s(a, { text: e.requestId }) : null }
|
|
19
|
-
};
|
|
20
|
-
case "29_001":
|
|
21
|
-
return {
|
|
22
|
-
title: "theRequestIsMissingRequiredFieldsOrContainsInvalidData",
|
|
23
|
-
message: ["pleaseReachOutToSupportForAssistance"],
|
|
24
|
-
onContactSupport: t
|
|
25
|
-
};
|
|
26
|
-
case "30_112":
|
|
27
|
-
return {
|
|
28
|
-
title: "entityWasNotFound",
|
|
29
|
-
message: ["entityWasNotFoundDetail"],
|
|
30
|
-
onContactSupport: t
|
|
31
|
-
};
|
|
32
|
-
case "00_403":
|
|
33
|
-
default:
|
|
34
|
-
return o;
|
|
35
|
-
}
|
|
36
|
-
};
|
|
37
|
-
export {
|
|
38
|
-
i as getErrorMessage
|
|
39
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { createContext as o } from "../../external/preact/dist/preact.module.js";
|
|
2
|
-
import { noop as t } from "../../utils/common/index.js";
|
|
3
|
-
import { EMPTY_OBJECT as e } from "../../utils/common/constants.js";
|
|
4
|
-
const m = o({
|
|
5
|
-
token: "",
|
|
6
|
-
endpoints: e,
|
|
7
|
-
updateCore: t
|
|
8
|
-
});
|
|
9
|
-
export {
|
|
10
|
-
m as AuthContext
|
|
11
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { jsx as f } from "../../external/preact/jsx-runtime/dist/jsxRuntime.module.js";
|
|
2
|
-
import { AuthContext as c } from "./AuthContext.js";
|
|
3
|
-
import { toChildArray as m } from "../../external/preact/dist/preact.module.js";
|
|
4
|
-
import { useState as p, useRef as d, useEffect as T } from "../../external/preact/hooks/dist/hooks.module.js";
|
|
5
|
-
import { EMPTY_OBJECT as h } from "../../utils/common/constants.js";
|
|
6
|
-
const l = ({ token: r, endpoints: s, children: a, updateCore: t, sessionSetupError: i }) => {
|
|
7
|
-
const [u, e] = p(), o = d("");
|
|
8
|
-
T(() => {
|
|
9
|
-
o.current !== r && (o.current = r, e(!1));
|
|
10
|
-
}, [r]);
|
|
11
|
-
const n = async () => {
|
|
12
|
-
e(!0), t && await t(h, !0);
|
|
13
|
-
};
|
|
14
|
-
return /* @__PURE__ */ f(c.Provider, { value: { token: r, endpoints: s, updateCore: n, sessionSetupError: i, isUpdatingToken: u }, children: m(a) });
|
|
15
|
-
}, E = l;
|
|
16
|
-
export {
|
|
17
|
-
E as default
|
|
18
|
-
};
|
|
@@ -1,371 +0,0 @@
|
|
|
1
|
-
const e = "Payment ID", t = "Transaction type", n = "Account", a = "Description", o = "Amount", r = "Creation time", s = "Paginated navigation", c = "Unable to load transactions", i = "(Not set)", l = "Edit filter", d = "Balance account", u = "Balance platform", p = "Select a balance platform, a balance account or an account", m = "Reset", y = "Apply", g = "Reference for beneficiary", T = "Category", h = "Reference", f = "Reference ID", b = "Transactions", v = "Date range", x = "From", C = "To", I = "Balance account ID", A = "Default currency", D = "Created", R = "Status", N = "Expand content", O = "Hide content", S = "Store details", B = "Preauthorize with", F = "Continue to", P = "Telephone number", L = "Infix", k = "First name", w = "Last name", E = "Date of birth", M = "Shopper email", W = "Male", z = "Female", H = "Personal details", q = "Company details", U = "Apartment suite", Y = "State", j = "Address", G = "Province or territory", V = "City town", _ = "Zip code", Z = "Invalid format expects", J = "Country", K = "Account holder", Q = "Legal entity", X = "Legal entity ID", $ = "Balances", ee = "Current balance", te = "Available balance", ne = "Reserved balance", ae = "Account configuration", oe = "Account HOLDER ID", re = "Timezone", se = "Sales day closing time", ce = "Settlement delay days", ie = "Transaction details", le = "Processing information", de = "transferID", ue = "Type", pe = "Incomplete field", me = "Legal entity details", ye = "No", ge = "Account identifier", Te = "Transfer instrument ID", he = "Overview", fe = "Transfer instruments", be = "ID", ve = "Legal entity type", xe = "Name", Ce = "Mobile", Ie = "Fax", Ae = "Landline", De = "Email", Re = "Residential address", Ne = "Country of residence", Oe = "Legal name of the company", Se = "Company type", Be = "Trading name", Fe = "Registration number", Pe = "Tax number", Le = "Tax exempt", ke = "Registered business address", we = "Amount", Ee = "Unable to load account holder", Me = "Unable to load balance account", We = "Unable to load legal entity", ze = "Unable to load transaction", He = "Dismiss", qe = "Organization", Ue = "individual", Ye = "Original amount", je = "Instructed amount", Ge = "Date", Ve = "Structured list", _e = "Tabs", Ze = "Value", Je = "Filter bar", Ke = "Contact details", Qe = "Booked", Xe = "Pending", $e = "Reversed", et = "Transactions overview", tt = "Payment method", nt = "Currency", at = "Total incoming", ot = "Total outgoing", rt = "Account Balance", st = "close", ct = "There are no results", it = "No transactions found", lt = "Try a different search or reset your filters, and we’ll try again.", dt = "Try again, please.", ut = "No data", pt = "There was an unexpected error", mt = "Something went wrong.", yt = "We could not load the transaction overview.", gt = "Try refreshing the page or come back later.", Tt = "We couldn’t load your transactions.", ht = "An internal error happened", ft = "Contact support for help and share error code %{requestId}", bt = "The error code is %{requestId}", vt = "Please, reach out to support for assistance.", xt = "The request is missing required fields or contains invalid data.", Ct = "Entity was not found", It = "Transaction not found for the specified Account Holder", At = "No results found, seek support.", Dt = "Seems like there's an internal error", Rt = "Refresh", Nt = "Reach out to support", Ot = "No negative numbers allowed", St = "To value should be equal or greater than the From value", Bt = "The selected balance account is incorrect", Ft = {
|
|
2
|
-
paymentId: e,
|
|
3
|
-
transactionType: t,
|
|
4
|
-
account: n,
|
|
5
|
-
description: a,
|
|
6
|
-
amount: o,
|
|
7
|
-
creationTime: r,
|
|
8
|
-
paginatedNavigation: s,
|
|
9
|
-
"pagination.page": "Page",
|
|
10
|
-
"pagination.previousPage": "Previous page",
|
|
11
|
-
"pagination.nextPage": "Next page",
|
|
12
|
-
unableToLoadTransactions: c,
|
|
13
|
-
notSet: i,
|
|
14
|
-
"filter.date.since": "Since %{date}",
|
|
15
|
-
"filter.date.until": "Until %{date}",
|
|
16
|
-
"filterPlaceholder.category": "Type",
|
|
17
|
-
"filterPlaceholder.currency": "Currency",
|
|
18
|
-
"filterPlaceholder.status": "Status",
|
|
19
|
-
"calendar.controls": "Calendar navigation controls",
|
|
20
|
-
"calendar.previousMonth": "Previous month",
|
|
21
|
-
"calendar.nextMonth": "Next month",
|
|
22
|
-
"calendar.timezone": "Timezone is set on: GMT%{offset} (%{time})",
|
|
23
|
-
"button.clearAll": "Clear all",
|
|
24
|
-
editFilter: l,
|
|
25
|
-
balanceAccount: d,
|
|
26
|
-
balancePlatform: u,
|
|
27
|
-
"expandableCard.collapse": "Collapse",
|
|
28
|
-
"expandableCard.expand": "Expand",
|
|
29
|
-
toStart: p,
|
|
30
|
-
reset: m,
|
|
31
|
-
apply: y,
|
|
32
|
-
referenceForBeneficiary: g,
|
|
33
|
-
"status.booked": "Booked",
|
|
34
|
-
"status.active": "Active",
|
|
35
|
-
"status.inactive": "Inactive",
|
|
36
|
-
"status.pending": "Pending",
|
|
37
|
-
"status.closed": "Closed",
|
|
38
|
-
category: T,
|
|
39
|
-
"category.internal": "Internal",
|
|
40
|
-
reference: h,
|
|
41
|
-
referenceID: f,
|
|
42
|
-
transactions: b,
|
|
43
|
-
dateRange: v,
|
|
44
|
-
from: x,
|
|
45
|
-
to: C,
|
|
46
|
-
balanceAccountId: I,
|
|
47
|
-
defaultCurrency: A,
|
|
48
|
-
created: D,
|
|
49
|
-
status: R,
|
|
50
|
-
expandContent: N,
|
|
51
|
-
hideContent: O,
|
|
52
|
-
storeDetails: S,
|
|
53
|
-
preauthorizeWith: B,
|
|
54
|
-
continueTo: F,
|
|
55
|
-
telephoneNumber: P,
|
|
56
|
-
infix: L,
|
|
57
|
-
firstName: k,
|
|
58
|
-
lastName: w,
|
|
59
|
-
dateOfBirth: E,
|
|
60
|
-
"dateOfBirth.format": "Format",
|
|
61
|
-
shopperEmail: M,
|
|
62
|
-
"select.noOptionsFound": "No options match this search",
|
|
63
|
-
"select.filter.placeholder": "Placeholder",
|
|
64
|
-
"select.provinceOrTerritory": "Province or territory",
|
|
65
|
-
"select.state": "State",
|
|
66
|
-
"select.country": "Country",
|
|
67
|
-
male: W,
|
|
68
|
-
female: z,
|
|
69
|
-
personalDetails: H,
|
|
70
|
-
"field.valid": "Valid",
|
|
71
|
-
"field.invalid": "Invalid",
|
|
72
|
-
companyDetails: q,
|
|
73
|
-
"companyDetails.name": "Name",
|
|
74
|
-
"companyDetails.registrationNumber": "Registration number",
|
|
75
|
-
"payButton.redirecting": "Redirecting",
|
|
76
|
-
apartmentSuite: U,
|
|
77
|
-
state: Y,
|
|
78
|
-
address: j,
|
|
79
|
-
provinceOrTerritory: G,
|
|
80
|
-
cityTown: V,
|
|
81
|
-
zipCode: _,
|
|
82
|
-
"field.title.optional": "Optional",
|
|
83
|
-
invalidFormatExpects: Z,
|
|
84
|
-
country: J,
|
|
85
|
-
accountHolder: K,
|
|
86
|
-
legalEntity: Q,
|
|
87
|
-
legalEntityID: X,
|
|
88
|
-
balances: $,
|
|
89
|
-
currentBalance: ee,
|
|
90
|
-
availableBalance: te,
|
|
91
|
-
reservedBalance: ne,
|
|
92
|
-
accountConfiguration: ae,
|
|
93
|
-
accountHolderID: oe,
|
|
94
|
-
timezone: re,
|
|
95
|
-
salesDayClosingTime: se,
|
|
96
|
-
settlementDelayDays: ce,
|
|
97
|
-
transactionDetails: ie,
|
|
98
|
-
processingInformation: le,
|
|
99
|
-
transferID: de,
|
|
100
|
-
type: ue,
|
|
101
|
-
incompleteField: pe,
|
|
102
|
-
legalEntityDetails: me,
|
|
103
|
-
no: ye,
|
|
104
|
-
accountIdentifier: ge,
|
|
105
|
-
transferInstrumentId: Te,
|
|
106
|
-
overview: he,
|
|
107
|
-
transferInstruments: fe,
|
|
108
|
-
id: be,
|
|
109
|
-
legalEntityType: ve,
|
|
110
|
-
name: xe,
|
|
111
|
-
mobile: Ce,
|
|
112
|
-
fax: Ie,
|
|
113
|
-
landline: Ae,
|
|
114
|
-
email: De,
|
|
115
|
-
residentialAddress: Re,
|
|
116
|
-
countryOfResidence: Ne,
|
|
117
|
-
legalNameOfTheCompany: Oe,
|
|
118
|
-
companyType: Se,
|
|
119
|
-
tradingName: Be,
|
|
120
|
-
registrationNumber: Fe,
|
|
121
|
-
taxNumber: Pe,
|
|
122
|
-
taxExempt: Le,
|
|
123
|
-
registeredBusinessAddress: ke,
|
|
124
|
-
"txType.Payment": "Payment",
|
|
125
|
-
"txType.capture": "Capture",
|
|
126
|
-
"txType.captureReversal": "Capture reversal",
|
|
127
|
-
"txType.Refund": "Refund",
|
|
128
|
-
"txType.refundReversal": "Refund reversal",
|
|
129
|
-
"txType.Chargeback": "Chargeback",
|
|
130
|
-
"txType.chargebackReversal": "Chargeback reversal",
|
|
131
|
-
"txType.secondChargeback": "Second chargeback",
|
|
132
|
-
"txType.ATM": "ATM",
|
|
133
|
-
"txType.Capital": "Capital",
|
|
134
|
-
"txType.Correction": "Correction",
|
|
135
|
-
"txType.Transfer": "Transfer",
|
|
136
|
-
"txType.Other": "Other",
|
|
137
|
-
"txType.atmWithdrawal": "ATM withdrawal",
|
|
138
|
-
"txType.atmWithdrawalReversal": "ATM withdrawal reversal",
|
|
139
|
-
"txType.internalTransfer": "Internal transfer",
|
|
140
|
-
"txType.manualCorrection": "Manual correction",
|
|
141
|
-
"txType.invoiceDeduction": "Invoice deduction",
|
|
142
|
-
"txType.depositCorrection": "Deposit correction",
|
|
143
|
-
"txType.bankTransfer": "Bank transfer",
|
|
144
|
-
"txType.miscCost": "Misc cost",
|
|
145
|
-
"txType.paymentCost": "Payment cost",
|
|
146
|
-
"txType.Fee": "Fee",
|
|
147
|
-
"txType.leftover": "Leftover",
|
|
148
|
-
"txType.balanceAdjustment": "Balance adjustment",
|
|
149
|
-
"txType.balanceMigration": "Balance migration",
|
|
150
|
-
"txType.balanceRollover": "Balance rollover",
|
|
151
|
-
"txType.cardTransfer": "Card transfer",
|
|
152
|
-
"txType.cashOutFee": "Cash out fee",
|
|
153
|
-
"txType.cashOutFunding": "Cash out funding",
|
|
154
|
-
"txType.cashOutInstruction": "Cash out instruction",
|
|
155
|
-
"txType.chargebackCorrection": "Chargeback correction",
|
|
156
|
-
"txType.chargebackReversalCorrection": "Chargeback reversal correction",
|
|
157
|
-
"txType.grant": "Grant",
|
|
158
|
-
"txType.installment": "Installment",
|
|
159
|
-
"txType.installmentReversal": "Installment reversal",
|
|
160
|
-
"txType.repayment": "Repayment",
|
|
161
|
-
"txType.reserveAdjustment": "Reserve adjustment",
|
|
162
|
-
txAmount: we,
|
|
163
|
-
unableToLoadAccountHolder: Ee,
|
|
164
|
-
"txType.secondChargebackCorrection": "Second chargeback correction",
|
|
165
|
-
unableToLoadBalanceAccount: Me,
|
|
166
|
-
unableToLoadLegalEntity: We,
|
|
167
|
-
unableToLoadTransaction: ze,
|
|
168
|
-
dismiss: He,
|
|
169
|
-
organization: qe,
|
|
170
|
-
individual: Ue,
|
|
171
|
-
originalAmount: Ye,
|
|
172
|
-
instructedAmount: je,
|
|
173
|
-
date: Ge,
|
|
174
|
-
structuredList: Ve,
|
|
175
|
-
tabs: _e,
|
|
176
|
-
value: Ze,
|
|
177
|
-
filterBar: Je,
|
|
178
|
-
default: "Default",
|
|
179
|
-
contactDetails: Ke,
|
|
180
|
-
Booked: Qe,
|
|
181
|
-
Pending: Xe,
|
|
182
|
-
Reversed: $e,
|
|
183
|
-
transactionsOverview: et,
|
|
184
|
-
"rangePreset.custom": "Custom",
|
|
185
|
-
"rangePreset.last7Days": "Last 7 days",
|
|
186
|
-
"rangePreset.lastMonth": "Last month",
|
|
187
|
-
"rangePreset.lastWeek": "Last week",
|
|
188
|
-
"rangePreset.thisMonth": "This month",
|
|
189
|
-
"rangePreset.thisWeek": "This week",
|
|
190
|
-
"rangePreset.yearToDate": "Year to date",
|
|
191
|
-
paymentMethod: tt,
|
|
192
|
-
currency: nt,
|
|
193
|
-
totalIncoming: at,
|
|
194
|
-
totalOutgoing: ot,
|
|
195
|
-
accountBalance: rt,
|
|
196
|
-
closeIconLabel: st,
|
|
197
|
-
thereAreNoResults: ct,
|
|
198
|
-
noTransactionsFound: it,
|
|
199
|
-
tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: lt,
|
|
200
|
-
tryAgainPlease: dt,
|
|
201
|
-
noData: ut,
|
|
202
|
-
thereWasAnUnexpectedError: pt,
|
|
203
|
-
somethingWentWrong: mt,
|
|
204
|
-
weCouldNotLoadTheTransactionsOverview: yt,
|
|
205
|
-
tryRefreshingThePageOrComeBackLater: gt,
|
|
206
|
-
weCouldNotLoadYourTransactions: Tt,
|
|
207
|
-
anInternalErrorHappened: ht,
|
|
208
|
-
contactSupportForHelpAndShareErrorCode: ft,
|
|
209
|
-
theErrorCodeIs: bt,
|
|
210
|
-
pleaseReachOutToSupportForAssistance: vt,
|
|
211
|
-
theRequestIsMissingRequiredFieldsOrContainsInvalidData: xt,
|
|
212
|
-
entityWasNotFound: Ct,
|
|
213
|
-
entityWasNotFoundDetail: It,
|
|
214
|
-
noResultsFoundSeekSupport: At,
|
|
215
|
-
seemsLikeThereIsAndInternalError: Dt,
|
|
216
|
-
refresh: Rt,
|
|
217
|
-
reachOutToSupport: Nt,
|
|
218
|
-
noNegativeNumbersAllowed: Ot,
|
|
219
|
-
secondValueShouldBeGreaterThanTheFirstOne: St,
|
|
220
|
-
export: "Export",
|
|
221
|
-
"tooltip.totalIncoming": "All money received into your account based on the selected filters",
|
|
222
|
-
"tooltip.totalOutgoing": "All fees, refunds, payouts, and other charges based on the selected filters",
|
|
223
|
-
"tooltip.Payout": "Money sent from your account balance to your external bank account",
|
|
224
|
-
"tooltip.Refund": "Money sent back to a customer from a refunded transaction",
|
|
225
|
-
"tooltip.Fee": "Transaction costs and payment method fees",
|
|
226
|
-
"tooltip.Chargeback": "Money returned to a customer after a disputed transaction",
|
|
227
|
-
"tooltip.Incoming": "Money received to your account from transactions and transfers",
|
|
228
|
-
theSelectedBalanceAccountIsIncorrect: Bt
|
|
229
|
-
};
|
|
230
|
-
export {
|
|
231
|
-
Qe as Booked,
|
|
232
|
-
Xe as Pending,
|
|
233
|
-
$e as Reversed,
|
|
234
|
-
n as account,
|
|
235
|
-
rt as accountBalance,
|
|
236
|
-
ae as accountConfiguration,
|
|
237
|
-
K as accountHolder,
|
|
238
|
-
oe as accountHolderID,
|
|
239
|
-
ge as accountIdentifier,
|
|
240
|
-
j as address,
|
|
241
|
-
o as amount,
|
|
242
|
-
ht as anInternalErrorHappened,
|
|
243
|
-
U as apartmentSuite,
|
|
244
|
-
y as apply,
|
|
245
|
-
te as availableBalance,
|
|
246
|
-
d as balanceAccount,
|
|
247
|
-
I as balanceAccountId,
|
|
248
|
-
u as balancePlatform,
|
|
249
|
-
$ as balances,
|
|
250
|
-
T as category,
|
|
251
|
-
V as cityTown,
|
|
252
|
-
st as closeIconLabel,
|
|
253
|
-
q as companyDetails,
|
|
254
|
-
Se as companyType,
|
|
255
|
-
Ke as contactDetails,
|
|
256
|
-
ft as contactSupportForHelpAndShareErrorCode,
|
|
257
|
-
F as continueTo,
|
|
258
|
-
J as country,
|
|
259
|
-
Ne as countryOfResidence,
|
|
260
|
-
D as created,
|
|
261
|
-
r as creationTime,
|
|
262
|
-
nt as currency,
|
|
263
|
-
ee as currentBalance,
|
|
264
|
-
Ge as date,
|
|
265
|
-
E as dateOfBirth,
|
|
266
|
-
v as dateRange,
|
|
267
|
-
Ft as default,
|
|
268
|
-
A as defaultCurrency,
|
|
269
|
-
a as description,
|
|
270
|
-
He as dismiss,
|
|
271
|
-
l as editFilter,
|
|
272
|
-
De as email,
|
|
273
|
-
Ct as entityWasNotFound,
|
|
274
|
-
It as entityWasNotFoundDetail,
|
|
275
|
-
N as expandContent,
|
|
276
|
-
Ie as fax,
|
|
277
|
-
z as female,
|
|
278
|
-
Je as filterBar,
|
|
279
|
-
k as firstName,
|
|
280
|
-
x as from,
|
|
281
|
-
O as hideContent,
|
|
282
|
-
be as id,
|
|
283
|
-
pe as incompleteField,
|
|
284
|
-
Ue as individual,
|
|
285
|
-
L as infix,
|
|
286
|
-
je as instructedAmount,
|
|
287
|
-
Z as invalidFormatExpects,
|
|
288
|
-
Ae as landline,
|
|
289
|
-
w as lastName,
|
|
290
|
-
Q as legalEntity,
|
|
291
|
-
me as legalEntityDetails,
|
|
292
|
-
X as legalEntityID,
|
|
293
|
-
ve as legalEntityType,
|
|
294
|
-
Oe as legalNameOfTheCompany,
|
|
295
|
-
W as male,
|
|
296
|
-
Ce as mobile,
|
|
297
|
-
xe as name,
|
|
298
|
-
ye as no,
|
|
299
|
-
ut as noData,
|
|
300
|
-
Ot as noNegativeNumbersAllowed,
|
|
301
|
-
At as noResultsFoundSeekSupport,
|
|
302
|
-
it as noTransactionsFound,
|
|
303
|
-
i as notSet,
|
|
304
|
-
qe as organization,
|
|
305
|
-
Ye as originalAmount,
|
|
306
|
-
he as overview,
|
|
307
|
-
s as paginatedNavigation,
|
|
308
|
-
e as paymentId,
|
|
309
|
-
tt as paymentMethod,
|
|
310
|
-
H as personalDetails,
|
|
311
|
-
vt as pleaseReachOutToSupportForAssistance,
|
|
312
|
-
B as preauthorizeWith,
|
|
313
|
-
le as processingInformation,
|
|
314
|
-
G as provinceOrTerritory,
|
|
315
|
-
Nt as reachOutToSupport,
|
|
316
|
-
h as reference,
|
|
317
|
-
g as referenceForBeneficiary,
|
|
318
|
-
f as referenceID,
|
|
319
|
-
Rt as refresh,
|
|
320
|
-
ke as registeredBusinessAddress,
|
|
321
|
-
Fe as registrationNumber,
|
|
322
|
-
ne as reservedBalance,
|
|
323
|
-
m as reset,
|
|
324
|
-
Re as residentialAddress,
|
|
325
|
-
se as salesDayClosingTime,
|
|
326
|
-
St as secondValueShouldBeGreaterThanTheFirstOne,
|
|
327
|
-
Dt as seemsLikeThereIsAndInternalError,
|
|
328
|
-
ce as settlementDelayDays,
|
|
329
|
-
M as shopperEmail,
|
|
330
|
-
mt as somethingWentWrong,
|
|
331
|
-
Y as state,
|
|
332
|
-
R as status,
|
|
333
|
-
S as storeDetails,
|
|
334
|
-
Ve as structuredList,
|
|
335
|
-
_e as tabs,
|
|
336
|
-
Le as taxExempt,
|
|
337
|
-
Pe as taxNumber,
|
|
338
|
-
P as telephoneNumber,
|
|
339
|
-
bt as theErrorCodeIs,
|
|
340
|
-
xt as theRequestIsMissingRequiredFieldsOrContainsInvalidData,
|
|
341
|
-
Bt as theSelectedBalanceAccountIsIncorrect,
|
|
342
|
-
ct as thereAreNoResults,
|
|
343
|
-
pt as thereWasAnUnexpectedError,
|
|
344
|
-
re as timezone,
|
|
345
|
-
C as to,
|
|
346
|
-
p as toStart,
|
|
347
|
-
at as totalIncoming,
|
|
348
|
-
ot as totalOutgoing,
|
|
349
|
-
Be as tradingName,
|
|
350
|
-
ie as transactionDetails,
|
|
351
|
-
t as transactionType,
|
|
352
|
-
b as transactions,
|
|
353
|
-
et as transactionsOverview,
|
|
354
|
-
de as transferID,
|
|
355
|
-
Te as transferInstrumentId,
|
|
356
|
-
fe as transferInstruments,
|
|
357
|
-
dt as tryAgainPlease,
|
|
358
|
-
lt as tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain,
|
|
359
|
-
gt as tryRefreshingThePageOrComeBackLater,
|
|
360
|
-
we as txAmount,
|
|
361
|
-
ue as type,
|
|
362
|
-
Ee as unableToLoadAccountHolder,
|
|
363
|
-
Me as unableToLoadBalanceAccount,
|
|
364
|
-
We as unableToLoadLegalEntity,
|
|
365
|
-
ze as unableToLoadTransaction,
|
|
366
|
-
c as unableToLoadTransactions,
|
|
367
|
-
Ze as value,
|
|
368
|
-
yt as weCouldNotLoadTheTransactionsOverview,
|
|
369
|
-
Tt as weCouldNotLoadYourTransactions,
|
|
370
|
-
_ as zipCode
|
|
371
|
-
};
|