@adyen/adyen-platform-experience-web 1.0.2 → 1.1.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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/da-DK-a148e492.cjs +2 -0
- package/dist/da-DK-a148e492.cjs.map +1 -0
- package/dist/de-DE-a39a50e8.cjs +2 -0
- package/dist/de-DE-a39a50e8.cjs.map +1 -0
- package/dist/es/components/external/PayoutDetails/components/PayoutData.js +41 -41
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +93 -94
- package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +76 -69
- package/dist/es/components/external/ReportsOverview/ReportsOverviewElement.js +25 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.js +112 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.scss.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/constants.js +5 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.js +30 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.js +149 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.scss.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/constants.js +7 -0
- package/dist/es/components/external/TransactionDetails/components/TransactionData.js +67 -46
- package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +28 -17
- package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +13 -13
- package/dist/es/components/external/TransactionsOverview/components/Category/Category.js +19 -14
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +1 -1
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +10 -10
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +11 -11
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +1 -1
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +183 -164
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +31 -24
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +95 -89
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/constants.js +6 -5
- package/dist/es/components/hooks/useCustomColumnsData.js +29 -0
- package/dist/es/components/hooks/useFreezePeriod.js +18 -0
- package/dist/es/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.js +2 -2
- package/dist/es/components/hooks/useTableColumns.js +46 -0
- package/dist/es/components/internal/Accordion/Accordion.js +15 -15
- package/dist/es/components/internal/Alert/Alert.js +62 -0
- package/dist/es/components/internal/Alert/Alert.scss.js +4 -0
- package/dist/es/components/internal/Alert/types.js +4 -0
- package/dist/es/components/internal/Button/DownloadButton/DownloadButton.js +81 -0
- package/dist/es/components/internal/Button/DownloadButton/DownloadButton.scss.js +4 -0
- package/dist/es/components/internal/Button/DownloadButton/useDownload.js +18 -0
- package/dist/es/components/internal/Calendar/calendar/facade/Calendar.js +221 -211
- package/dist/es/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.js +103 -94
- package/dist/es/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.js +201 -200
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/lastNDays.js +19 -18
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.js +18 -17
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.js +17 -20
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/yearToDate.js +9 -12
- package/dist/es/components/internal/Calendar/calendar/timerange/utils.js +39 -43
- package/dist/es/components/internal/Calendar/calendar/timeslice/TimeSlice.js +10 -10
- package/dist/es/components/internal/Calendar/calendar/timeslice/index.js +25 -26
- package/dist/es/components/internal/Calendar/calendar/utils.js +64 -16
- package/dist/es/components/internal/Calendar/hooks/useCalendar.js +40 -38
- package/dist/es/components/internal/Calendar/hooks/useTimezone.js +2 -2
- package/dist/es/components/internal/Card/Card.js +15 -15
- package/dist/es/components/internal/DataGrid/DataGrid.js +4 -4
- package/dist/es/components/internal/DataGrid/DataGridCell.js +12 -12
- package/dist/es/components/internal/DataGrid/components/Icon.js +17 -0
- package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +7 -7
- package/dist/es/components/internal/DataGrid/components/TableCells.js +54 -37
- package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +11 -11
- package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +54 -54
- package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.js +45 -0
- package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.scss.js +4 -0
- package/dist/es/components/internal/DataOverviewDisplay/constants.js +30 -24
- package/dist/es/components/internal/DatePicker/DatePicker.js +17 -16
- package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +13 -13
- package/dist/es/components/internal/FilterBar/FilterBar.js +50 -42
- package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +7 -7
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/AmountFilter.js +14 -14
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +58 -52
- package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +1 -1
- package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilterCore.js +81 -76
- package/dist/es/components/internal/FormFields/InputBase.js +25 -25
- package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +1 -1
- package/dist/es/components/internal/FormFields/Select/Select.js +5 -5
- package/dist/es/components/internal/FormFields/Select/components/SelectList.js +5 -5
- package/dist/es/components/internal/Image/Image.js +6 -6
- package/dist/es/components/internal/Img/Img.js +4 -4
- package/dist/es/components/internal/Modal/Modal.js +6 -6
- package/dist/es/components/internal/Pagination/Pagination.js +17 -17
- package/dist/es/components/internal/Popover/Popover.js +11 -11
- package/dist/es/components/internal/SVGIcons/Download.js +21 -0
- package/dist/es/components/internal/SVGIcons/Warning.js +23 -0
- package/dist/es/components/internal/SVGIcons/WarningFilled.js +18 -0
- package/dist/es/components/internal/StructuredList/StructuredList.js +8 -8
- package/dist/es/components/internal/Tag/Tag.js +8 -8
- package/dist/es/components/internal/Tooltip/Tooltip.js +20 -20
- package/dist/es/components/internal/Typography/Typography.js +12 -12
- package/dist/es/components/utils/getLabel.js +6 -3
- package/dist/es/core/Http/http.js +34 -31
- package/dist/es/core/Http/utils.js +39 -30
- package/dist/es/core/Localization/Localization.js +74 -76
- package/dist/es/core/Localization/constants/localization.js +9 -6
- package/dist/es/core/Localization/datetime/restamper/utils.js +26 -26
- package/dist/es/core/Localization/localization-utils.js +11 -12
- package/dist/es/core/Localization/utils.js +45 -47
- package/dist/es/core/core.js +1 -1
- package/dist/es/index.js +14 -12
- package/dist/es/primitives/time/today/main.js +38 -43
- package/dist/es/translations/da-DK.json.js +2 -218
- package/dist/es/translations/de-DE.json.js +2 -218
- package/dist/es/translations/en-US.json.js +2 -218
- package/dist/es/translations/es-ES.json.js +2 -218
- package/dist/es/translations/fr-FR.json.js +2 -218
- package/dist/es/translations/index.js +39 -45
- package/dist/es/translations/it-IT.json.js +2 -218
- package/dist/es/translations/nl-NL.json.js +2 -218
- package/dist/es/translations/no-NO.json.js +2 -218
- package/dist/es/translations/pt-BR.json.js +2 -218
- package/dist/es/translations/sv-SE.json.js +2 -218
- package/dist/es/utils/preact/className.js +3 -3
- package/dist/es-ES-153e5f15.cjs +2 -0
- package/dist/es-ES-153e5f15.cjs.map +1 -0
- package/dist/fr-FR-69b3df0d.cjs +2 -0
- package/dist/fr-FR-69b3df0d.cjs.map +1 -0
- package/dist/it-IT-efca230f.cjs +2 -0
- package/dist/it-IT-efca230f.cjs.map +1 -0
- package/dist/nl-NL-ffbb8184.cjs +2 -0
- package/dist/nl-NL-ffbb8184.cjs.map +1 -0
- package/dist/no-NO-eaf65f6f.cjs +2 -0
- package/dist/no-NO-eaf65f6f.cjs.map +1 -0
- package/dist/pt-BR-590ccc53.cjs +2 -0
- package/dist/pt-BR-590ccc53.cjs.map +1 -0
- package/dist/style.css +1 -1
- package/dist/sv-SE-18f4e86e.cjs +2 -0
- package/dist/sv-SE-18f4e86e.cjs.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -1
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +2 -2
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -1
- package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts +9 -0
- package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts +8 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts +3 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts +4 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts +2 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts +15 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts +5 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/index.d.ts +2 -0
- package/dist/types/components/external/ReportsOverview/index.d.ts.map +1 -0
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +20 -2
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts +5 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/Category/Category.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts +3 -1
- 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 +5 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
- package/dist/types/components/external/index.d.ts +1 -0
- package/dist/types/components/external/index.d.ts.map +1 -1
- package/dist/types/components/hooks/useCustomColumnsData.d.ts +13 -0
- package/dist/types/components/hooks/useCustomColumnsData.d.ts.map +1 -0
- package/dist/types/components/hooks/useFreezePeriod.d.ts +6 -0
- package/dist/types/components/hooks/useFreezePeriod.d.ts.map +1 -0
- package/dist/types/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.d.ts +1 -1
- package/dist/types/components/hooks/useResponsiveViewport.d.ts.map +1 -0
- package/dist/types/components/hooks/useTableColumns.d.ts +20 -0
- package/dist/types/components/hooks/useTableColumns.d.ts.map +1 -0
- package/dist/types/components/internal/Alert/Alert.d.ts +5 -0
- package/dist/types/components/internal/Alert/Alert.d.ts.map +1 -0
- package/dist/types/components/internal/Alert/types.d.ts +17 -0
- package/dist/types/components/internal/Alert/types.d.ts.map +1 -0
- package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts +16 -0
- package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts.map +1 -0
- package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts +143 -0
- package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts.map +1 -0
- package/dist/types/components/internal/Calendar/calendar/facade/Calendar.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.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 +3 -3
- 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 +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/presets/lastNDays.d.ts.map +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.map +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/utils.d.ts +0 -5
- package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeslice/TimeSlice.d.ts +2 -2
- package/dist/types/components/internal/Calendar/calendar/timeslice/TimeSlice.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeslice/index.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/types.d.ts +6 -1
- package/dist/types/components/internal/Calendar/calendar/types.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/utils.d.ts +13 -4
- package/dist/types/components/internal/Calendar/calendar/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/useCalendar.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/types.d.ts +1 -0
- package/dist/types/components/internal/Calendar/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/DataGrid.d.ts +2 -5
- package/dist/types/components/internal/DataGrid/DataGrid.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/Icon.d.ts +7 -0
- package/dist/types/components/internal/DataGrid/components/Icon.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/components/TableCells.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/types.d.ts +4 -3
- package/dist/types/components/internal/DataGrid/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts +1 -1
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts +3 -2
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts +13 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts +3 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +5 -2
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -1
- package/dist/types/components/internal/DatePicker/DatePicker.d.ts.map +1 -1
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts +1 -1
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts.map +1 -1
- package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts +1 -1
- package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/FilterBar.d.ts +9 -2
- package/dist/types/components/internal/FilterBar/FilterBar.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/DateFilter/DateFilterCore.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/index.d.ts +1 -0
- package/dist/types/components/internal/FilterBar/index.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/types.d.ts +11 -1
- package/dist/types/components/internal/FilterBar/types.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/hooks/useSelect.d.ts +1 -1
- package/dist/types/components/internal/Pagination/Pagination.d.ts.map +1 -1
- package/dist/types/components/internal/SVGIcons/Download.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/Download.d.ts.map +1 -0
- package/dist/types/components/internal/SVGIcons/Warning.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/Warning.d.ts.map +1 -0
- package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/types.d.ts +1 -1
- package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -1
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +2 -2
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -1
- package/dist/types/components/types.d.ts +33 -1
- package/dist/types/components/types.d.ts.map +1 -1
- package/dist/types/components/utils/getCommonErrorCode.d.ts +1 -1
- package/dist/types/components/utils/getCommonErrorCode.d.ts.map +1 -1
- package/dist/types/components/utils/getErrorMessage.d.ts +1 -1
- package/dist/types/components/utils/getErrorMessage.d.ts.map +1 -1
- package/dist/types/components/utils/getLabel.d.ts +4 -1
- package/dist/types/components/utils/getLabel.d.ts.map +1 -1
- package/dist/types/core/Auth/context.d.ts +8 -6
- package/dist/types/core/Auth/context.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSession.d.ts +8 -6
- package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts +8 -6
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -1
- package/dist/types/core/Http/http.d.ts.map +1 -1
- package/dist/types/core/Http/utils.d.ts +2 -0
- package/dist/types/core/Http/utils.d.ts.map +1 -1
- package/dist/types/core/Localization/Localization.d.ts +8 -10
- package/dist/types/core/Localization/Localization.d.ts.map +1 -1
- package/dist/types/core/Localization/constants/localization.d.ts +5 -2
- package/dist/types/core/Localization/constants/localization.d.ts.map +1 -1
- package/dist/types/core/Localization/datetime/restamper/utils.d.ts.map +1 -1
- package/dist/types/core/Localization/localization-utils.d.ts +4 -4
- package/dist/types/core/Localization/localization-utils.d.ts.map +1 -1
- package/dist/types/core/Localization/types.d.ts +0 -19
- package/dist/types/core/Localization/types.d.ts.map +1 -1
- package/dist/types/core/Localization/utils.d.ts +7 -271
- package/dist/types/core/Localization/utils.d.ts.map +1 -1
- package/dist/types/core/core.d.ts +2 -3
- package/dist/types/core/core.d.ts.map +1 -1
- package/dist/types/core/types.d.ts +5 -4
- package/dist/types/core/types.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/useModalDetails/types.d.ts +1 -1
- package/dist/types/hooks/useModalDetails/types.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/primitives/time/today/main.d.ts.map +1 -1
- package/dist/types/translations/index.d.ts +44 -2529
- package/dist/types/translations/index.d.ts.map +1 -1
- package/dist/types/types/api/models/reports.d.ts +1 -1
- package/dist/types/types/api/models/reports.d.ts.map +1 -1
- package/dist/types/types/api/resources/ReportsResource.d.ts +18 -19
- package/dist/types/types/api/resources/ReportsResource.d.ts.map +1 -1
- package/dist/types/utils/types.d.ts +3 -0
- package/dist/types/utils/types.d.ts.map +1 -1
- package/package.json +8 -5
- package/dist/es/core/Localization/constants/locale.js +0 -7
- package/dist/types/components/external/TransactionsOverview/hooks/useResponsiveViewport.d.ts.map +0 -1
- package/dist/types/core/Localization/constants/locale.d.ts +0 -139
- package/dist/types/core/Localization/constants/locale.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/translations/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/translations/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,4BAA4B,EAAE,MAAM,gBAAgB,CAAC;AAChF,OAAO,MAAM,MAAM,cAAc,CAAC;AAElC,KAAK,gBAAgB,GAAG,WAAW,CAAC,OAAO,WAAW,CAAC,CAAC;AACxD,KAAK,aAAa,GAAG,YAAY,GAAG,WAAW,CAAC,YAAY,CAAC,CAAC;AAE9D,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;AAC9D,MAAM,MAAM,MAAM,GAAG,GAAG,SAAS,CAAC,MAAM,CAAC,IAAI,SAAS,CAAC,MAAM,CAAC,EAAE,CAAC;AACjE,MAAM,MAAM,eAAe,GAAG,4BAA4B,CAAC,gBAAgB,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC;AACvF,MAAM,MAAM,cAAc,GAAG,WAAW,CAAC,OAAO,MAAM,CAAC,CAAC;AACxD,MAAM,MAAM,YAAY,GAAG;KAAG,GAAG,IAAI,cAAc,CAAC,CAAC,EAAE,MAAM;CAAE,CAAC;AAChE,MAAM,MAAM,iBAAiB,GAAG,aAAa,GAAG,CAAC,MAAM,aAAa,CAAC,CAAC;AAEtE,MAAM,MAAM,uBAAuB,GAAG;KACjC,CAAC,IAAI,gBAAgB,GAAG;SACpB,CAAC,IAAI,CAAC,GAAG,iBAAiB;KAC9B;CACJ,CAAC,gBAAgB,CAAC,CAAC;AAEpB,MAAM,MAAM,kBAAkB,GAAG;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC;IACzC,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAKF,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAC/E,eAAO,MAAM,KAAK;;CAA4D,CAAC;AAE/E,eAAO,MAAM,KAAK;;CAAoC,CAAC;AAEvD,eAAO,MAAM,WAAW;;;;;;;;;;;CAWd,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reports.d.ts","sourceRoot":"","sources":["../../../../../src/types/api/models/reports.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE1D,MAAM,MAAM,OAAO,GAAG,MAAM,CAAC,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"reports.d.ts","sourceRoot":"","sources":["../../../../../src/types/api/models/reports.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE1D,MAAM,MAAM,OAAO,GAAG,MAAM,CAAC,UAAU,EAAE,iBAAiB,CAAC,CAAC"}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
1
5
|
export interface paths {
|
|
2
6
|
"/v1/reports": {
|
|
3
7
|
/**
|
|
@@ -10,33 +14,26 @@ export interface paths {
|
|
|
10
14
|
export type webhooks = Record<string, never>;
|
|
11
15
|
export interface components {
|
|
12
16
|
schemas: {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Format: date-time
|
|
17
|
-
* @description Date created
|
|
18
|
-
*/
|
|
17
|
+
GeneratedReport: {
|
|
18
|
+
/** Format: date-time */
|
|
19
19
|
createdAt: string;
|
|
20
|
-
|
|
21
|
-
* Format: string
|
|
22
|
-
* @description Name of the report
|
|
23
|
-
*/
|
|
24
|
-
name?: string;
|
|
20
|
+
type: components["schemas"]["ReportType"];
|
|
25
21
|
};
|
|
26
|
-
/** @description Link to a different page */
|
|
27
22
|
Link: {
|
|
28
23
|
/** @description Cursor for a different page */
|
|
29
24
|
cursor: string;
|
|
30
25
|
};
|
|
31
|
-
/** @description Links */
|
|
32
26
|
Links: {
|
|
27
|
+
/** @description Link to a different page */
|
|
33
28
|
next: components["schemas"]["Link"];
|
|
29
|
+
/** @description Link to a different page */
|
|
34
30
|
prev: components["schemas"]["Link"];
|
|
35
31
|
};
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
32
|
+
/** @enum {string} */
|
|
33
|
+
ReportType: "payout";
|
|
34
|
+
ReportsListResponseDTO: {
|
|
35
|
+
_links?: components["schemas"]["Links"];
|
|
36
|
+
data?: components["schemas"]["GeneratedReport"][];
|
|
40
37
|
};
|
|
41
38
|
DownloadReportResponseDTO: Uint8Array;
|
|
42
39
|
};
|
|
@@ -57,17 +54,18 @@ export interface operations {
|
|
|
57
54
|
parameters: {
|
|
58
55
|
query: {
|
|
59
56
|
balanceAccountId: string;
|
|
57
|
+
type: string;
|
|
60
58
|
createdSince?: string;
|
|
61
59
|
createdUntil?: string;
|
|
62
|
-
cursor?: string;
|
|
63
60
|
limit?: number;
|
|
61
|
+
cursor?: string;
|
|
64
62
|
};
|
|
65
63
|
};
|
|
66
64
|
responses: {
|
|
67
65
|
/** @description OK - the request has succeeded. */
|
|
68
66
|
200: {
|
|
69
67
|
content: {
|
|
70
|
-
"application/json": components["schemas"]["
|
|
68
|
+
"application/json": components["schemas"]["ReportsListResponseDTO"];
|
|
71
69
|
};
|
|
72
70
|
};
|
|
73
71
|
};
|
|
@@ -76,6 +74,7 @@ export interface operations {
|
|
|
76
74
|
parameters: {
|
|
77
75
|
query: {
|
|
78
76
|
balanceAccountId: string;
|
|
77
|
+
type: string;
|
|
79
78
|
createdAt?: string;
|
|
80
79
|
};
|
|
81
80
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReportsResource.d.ts","sourceRoot":"","sources":["../../../../../src/types/api/resources/ReportsResource.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;
|
|
1
|
+
{"version":3,"file":"ReportsResource.d.ts","sourceRoot":"","sources":["../../../../../src/types/api/resources/ReportsResource.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,MAAM,WAAW,KAAK;IACpB,aAAa,EAAE;QACb;;;WAGG;QACH,GAAG,EAAE,UAAU,CAAC,YAAY,CAAC,CAAC;KAC/B,CAAC;CACH;AAED,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AAE7C,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE;QACP,eAAe,EAAE;YACf,wBAAwB;YACxB,SAAS,EAAE,MAAM,CAAC;YAClB,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,YAAY,CAAC,CAAC;SAC3C,CAAC;QACF,IAAI,EAAE;YACJ,+CAA+C;YAC/C,MAAM,EAAE,MAAM,CAAC;SAChB,CAAC;QACF,KAAK,EAAE;YACL,4CAA4C;YAC5C,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC;YACpC,4CAA4C;YAC5C,IAAI,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,CAAC;SACrC,CAAC;QACF,qBAAqB;QACrB,UAAU,EAAE,QAAQ,CAAC;QACrB,sBAAsB,EAAE;YACtB,MAAM,CAAC,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC,CAAC;YACxC,IAAI,CAAC,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,iBAAiB,CAAC,EAAE,CAAC;SACnD,CAAC;QACF,yBAAyB,EAAE,UAAU,CAAC;KACvC,CAAC;IACF,SAAS,EAAE,KAAK,CAAC;IACjB,UAAU,EAAE,KAAK,CAAC;IAClB,aAAa,EAAE,KAAK,CAAC;IACrB,OAAO,EAAE,KAAK,CAAC;IACf,SAAS,EAAE,KAAK,CAAC;CAClB;AAED,MAAM,MAAM,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AAE1C,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;AAE7C,MAAM,WAAW,UAAU;IAEzB;;;OAGG;IACH,UAAU,EAAE;QACV,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,gBAAgB,EAAE,MAAM,CAAC;gBACzB,IAAI,EAAE,MAAM,CAAC;gBACb,YAAY,CAAC,EAAE,MAAM,CAAC;gBACtB,YAAY,CAAC,EAAE,MAAM,CAAC;gBACtB,KAAK,CAAC,EAAE,MAAM,CAAC;gBACf,MAAM,CAAC,EAAE,MAAM,CAAC;aACjB,CAAC;SACH,CAAC;QACF,SAAS,EAAE;YACT,mDAAmD;YACnD,GAAG,EAAE;gBACH,OAAO,EAAE;oBACP,kBAAkB,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,wBAAwB,CAAC,CAAC;iBACrE,CAAC;aACH,CAAC;SACH,CAAC;KACH,CAAC;IAEF,cAAc,EAAE;QACd,UAAU,EAAE;YACV,KAAK,EAAE;gBACL,gBAAgB,EAAE,MAAM,CAAC;gBACzB,IAAI,EAAE,MAAM,CAAC;gBACb,SAAS,CAAC,EAAE,MAAM,CAAC;aACpB,CAAC;SACH,CAAC;QACF,SAAS,EAAE;YACT,mDAAmD;YACnD,GAAG,EAAE;gBACH,OAAO,EAAE;oBACP,UAAU,EAAE,UAAU,CAAC,SAAS,CAAC,CAAC,2BAA2B,CAAC,CAAC;iBAChE,CAAC;aACH,CAAC;SACH,CAAC;KACH,CAAA;CACF"}
|
|
@@ -25,5 +25,8 @@ export type WithPartialField<T, Field extends KeyOfRecord<T>> = T extends T ? {
|
|
|
25
25
|
[P in keyof T]: Field extends P ? T[P] | undefined : T[P];
|
|
26
26
|
} : never;
|
|
27
27
|
export type WithReplacedUnderscoreOrDash<S extends string, Character extends '-' | '_', Replace extends '-' | '_'> = S extends `${infer T}${Character}${infer U}` ? `${T}${Replace}${U}` : S;
|
|
28
|
+
type StrictUnionHelper<T, TAll> = T extends any ? T & Partial<Record<Exclude<KeyOfRecord<TAll>, keyof T>, never>> : never;
|
|
29
|
+
export type StrictUnion<T> = StrictUnionHelper<T, T>;
|
|
30
|
+
export type StringWithAutocompleteOptions<T> = T | (string & {});
|
|
28
31
|
export {};
|
|
29
32
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/utils/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/utils/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adyen/adyen-platform-experience-web",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"adyen",
|
|
6
6
|
"adyen-pe",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"components",
|
|
12
12
|
"adyen-platform-experience"
|
|
13
13
|
],
|
|
14
|
+
"license": "MIT",
|
|
14
15
|
"type": "module",
|
|
15
16
|
"repository": "github:Adyen/adyen-platform-experience-web",
|
|
16
17
|
"apiVersion": "v1",
|
|
@@ -62,8 +63,8 @@
|
|
|
62
63
|
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet && stylelint 'src/**/*.scss' --fix",
|
|
63
64
|
"test": "vitest --config vite.config.ts",
|
|
64
65
|
"test:coverage": "vitest --config vite.config.ts --coverage",
|
|
65
|
-
"test:
|
|
66
|
-
"test:
|
|
66
|
+
"test:integration": "playwright test --project local-chrome",
|
|
67
|
+
"test:integration:debug": "cross-env PWDEBUG=console playwright test --debug --project local-chrome",
|
|
67
68
|
"type-check": "tsc --preserveWatchOutput",
|
|
68
69
|
"types:watch": "tsc --preserveWatchOutput --watch && tsc --project tsconfig-build.json --watch",
|
|
69
70
|
"format:all": "prettier --write 'src/**/*.{ts,js,css, scss, html}' && prettier --write 'src/**/*.{ts,js,css, scss, html}'",
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
"storybook:beta": "concurrently --kill-others-on-fail 'npm run types:watch' 'vite-node --mode beta .storybook/runStorybook.ts' ",
|
|
74
75
|
"storybook:mocked": "vite-node .storybook/runStorybook.ts --mode mocked",
|
|
75
76
|
"storybook:build": "vite-node ./.storybook/buildStorybook.ts",
|
|
76
|
-
"storybook:demo": "vite-node ./.storybook/buildStorybook.ts --mode demo && vite
|
|
77
|
+
"storybook:demo": "vite-node ./.storybook/buildStorybook.ts --mode demo && vite serve storybook-static --config vite.config.ts",
|
|
77
78
|
"demo:serve": "vite preview --mode demo --config vite.config.ts",
|
|
78
79
|
"demo:serve:e2e": "cross-env E2E_TEST=true vite preview --mode demo --config vite.config.ts",
|
|
79
80
|
"watchTS": "tsc -b ./tsconfig.json --watch",
|
|
@@ -128,11 +129,13 @@
|
|
|
128
129
|
"eslint-plugin-react": "^7.26.1",
|
|
129
130
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
130
131
|
"file-loader": "^6.2.0",
|
|
132
|
+
"http-server": "^14.1.1",
|
|
131
133
|
"husky": "^7.0.4",
|
|
132
134
|
"jsdom": "^20.0.3",
|
|
133
135
|
"lint-staged": "^13.0.1",
|
|
134
136
|
"mini-css-extract-plugin": "^2.4.5",
|
|
135
137
|
"msw": "^2.3.0",
|
|
138
|
+
"msw-storybook-addon": "^2.0.2",
|
|
136
139
|
"openapi-typescript": "^6.7.0",
|
|
137
140
|
"postcss": "^8.3.11",
|
|
138
141
|
"prettier": "^2.4.1",
|
|
@@ -157,4 +160,4 @@
|
|
|
157
160
|
"public"
|
|
158
161
|
]
|
|
159
162
|
}
|
|
160
|
-
}
|
|
163
|
+
}
|
package/dist/types/components/external/TransactionsOverview/hooks/useResponsiveViewport.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useResponsiveViewport.d.ts","sourceRoot":"","sources":["../../../../../../src/components/external/TransactionsOverview/hooks/useResponsiveViewport.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;CAiBf,CAAC;AAEX,KAAK,aAAa,GAAG,OAAO,YAAY,CAAC;AAEzC,MAAM,MAAM,4BAA4B,GAAG,aAAa,CAClD;KACK,CAAC,IAAI,MAAM,aAAa,GAAG,aAAa,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;CAC9D,GACD;IAAE,KAAK,EAAE,8BAA8B,CAAA;CAAE,CAC9C,CAAC;AAEF,eAAO,MAAM,qBAAqB,kDAA8C,CAAC"}
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* FALLBACK_LOCALE - **MUST** match the locale string in the above import
|
|
3
|
-
*/
|
|
4
|
-
export declare const FALLBACK_LOCALE: "en-US";
|
|
5
|
-
export declare const LOCALE_FORMAT_REGEX: RegExp;
|
|
6
|
-
export declare const defaultTranslation: {
|
|
7
|
-
account: string;
|
|
8
|
-
accountBalance: string;
|
|
9
|
-
additions: string;
|
|
10
|
-
adjustments: string;
|
|
11
|
-
amount: string;
|
|
12
|
-
apply: string;
|
|
13
|
-
balanceAccount: string;
|
|
14
|
-
balanceAccountId: string;
|
|
15
|
-
Booked: string;
|
|
16
|
-
"button.clearAll": string;
|
|
17
|
-
"calendar.controls": string;
|
|
18
|
-
"calendar.nextMonth": string;
|
|
19
|
-
"calendar.previousMonth": string;
|
|
20
|
-
"calendar.timezone": string;
|
|
21
|
-
capture: string;
|
|
22
|
-
category: string;
|
|
23
|
-
chargeback: string;
|
|
24
|
-
closeIconLabel: string;
|
|
25
|
-
contactSupportForHelpAndShareErrorCode: string;
|
|
26
|
-
correction: string;
|
|
27
|
-
currency: string;
|
|
28
|
-
date: string;
|
|
29
|
-
dateRange: string;
|
|
30
|
-
default: string;
|
|
31
|
-
description: string;
|
|
32
|
-
dismiss: string;
|
|
33
|
-
email: string;
|
|
34
|
-
entityWasNotFound: string;
|
|
35
|
-
entityWasNotFoundDetail: string;
|
|
36
|
-
"expandableCard.collapse": string;
|
|
37
|
-
"expandableCard.expand": string;
|
|
38
|
-
export: string;
|
|
39
|
-
fee: string;
|
|
40
|
-
"filter.date.since": string;
|
|
41
|
-
"filter.date.until": string;
|
|
42
|
-
filterBar: string;
|
|
43
|
-
"filterPlaceholder.category": string;
|
|
44
|
-
"filterPlaceholder.currency": string;
|
|
45
|
-
"filterPlaceholder.status": string;
|
|
46
|
-
from: string;
|
|
47
|
-
fundsCaptured: string;
|
|
48
|
-
grantIssued: string;
|
|
49
|
-
grantRepayment: string;
|
|
50
|
-
hideContent: string;
|
|
51
|
-
id: string;
|
|
52
|
-
incompleteField: string;
|
|
53
|
-
mobile: string;
|
|
54
|
-
netPayout: string;
|
|
55
|
-
nextPayouts: string;
|
|
56
|
-
noData: string;
|
|
57
|
-
noNegativeNumbersAllowed: string;
|
|
58
|
-
noPayoutsFound: string;
|
|
59
|
-
noTransactionsFound: string;
|
|
60
|
-
other: string;
|
|
61
|
-
paginatedNavigation: string;
|
|
62
|
-
"pagination.nextPage": string;
|
|
63
|
-
"pagination.previousPage": string;
|
|
64
|
-
"pagination.showing": string;
|
|
65
|
-
paymentId: string;
|
|
66
|
-
paymentMethod: string;
|
|
67
|
-
payoutDetails: string;
|
|
68
|
-
payoutsTitle: string;
|
|
69
|
-
Pending: string;
|
|
70
|
-
pleaseReachOutToSupportForAssistance: string;
|
|
71
|
-
"rangePreset.custom": string;
|
|
72
|
-
"rangePreset.last30Days": string;
|
|
73
|
-
"rangePreset.last7Days": string;
|
|
74
|
-
"rangePreset.lastMonth": string;
|
|
75
|
-
"rangePreset.lastWeek": string;
|
|
76
|
-
"rangePreset.thisMonth": string;
|
|
77
|
-
"rangePreset.thisWeek": string;
|
|
78
|
-
"rangePreset.yearToDate": string;
|
|
79
|
-
reachOutToSupport: string;
|
|
80
|
-
referenceID: string;
|
|
81
|
-
refresh: string;
|
|
82
|
-
refund: string;
|
|
83
|
-
remainingAmount: string;
|
|
84
|
-
reset: string;
|
|
85
|
-
Reversed: string;
|
|
86
|
-
"select.filter.placeholder": string;
|
|
87
|
-
"select.noOptionsFound": string;
|
|
88
|
-
somethingWentWrong: string;
|
|
89
|
-
status: string;
|
|
90
|
-
structuredList: string;
|
|
91
|
-
subtractions: string;
|
|
92
|
-
tabs: string;
|
|
93
|
-
theErrorCodeIs: string;
|
|
94
|
-
thereAreNoResults: string;
|
|
95
|
-
theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
|
|
96
|
-
thereWasAnUnexpectedError: string;
|
|
97
|
-
theSelectedBalanceAccountIsIncorrect: string;
|
|
98
|
-
timezone: string;
|
|
99
|
-
to: string;
|
|
100
|
-
"tooltip.ATM": string;
|
|
101
|
-
"tooltip.Capital": string;
|
|
102
|
-
"tooltip.Chargeback": string;
|
|
103
|
-
"tooltip.Correction": string;
|
|
104
|
-
"tooltip.Fee": string;
|
|
105
|
-
"tooltip.Other": string;
|
|
106
|
-
"tooltip.Payment": string;
|
|
107
|
-
"tooltip.Refund": string;
|
|
108
|
-
"tooltip.totalIncoming": string;
|
|
109
|
-
"tooltip.totalOutgoing": string;
|
|
110
|
-
"tooltip.Transfer": string;
|
|
111
|
-
totalIncoming: string;
|
|
112
|
-
totalOutgoing: string;
|
|
113
|
-
toValueShouldBeGreaterThanTheFromValue: string;
|
|
114
|
-
transactionDetails: string;
|
|
115
|
-
transactions: string;
|
|
116
|
-
transactionsOverviewTitle: string;
|
|
117
|
-
transactionType: string;
|
|
118
|
-
transfer: string;
|
|
119
|
-
tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
|
|
120
|
-
tryRefreshingThePageOrComeBackLater: string;
|
|
121
|
-
txAmount: string;
|
|
122
|
-
"txType.ATM": string;
|
|
123
|
-
"txType.Capital": string;
|
|
124
|
-
"txType.Chargeback": string;
|
|
125
|
-
"txType.Correction": string;
|
|
126
|
-
"txType.Fee": string;
|
|
127
|
-
"txType.Other": string;
|
|
128
|
-
"txType.Payment": string;
|
|
129
|
-
"txType.Refund": string;
|
|
130
|
-
"txType.Transfer": string;
|
|
131
|
-
type: string;
|
|
132
|
-
value: string;
|
|
133
|
-
weCouldNotLoadThePayoutsOverview: string;
|
|
134
|
-
weCouldNotLoadTheTransactionsOverview: string;
|
|
135
|
-
weCouldNotLoadYourBalanceAccounts: string;
|
|
136
|
-
weCouldNotLoadYourPayouts: string;
|
|
137
|
-
weCouldNotLoadYourTransactions: string;
|
|
138
|
-
};
|
|
139
|
-
//# sourceMappingURL=locale.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"locale.d.ts","sourceRoot":"","sources":["../../../../../src/core/Localization/constants/locale.ts"],"names":[],"mappings":"AAEA;;GAEG;AAEH,eAAO,MAAM,eAAe,SAAmB,CAAC;AAChD,eAAO,MAAM,mBAAmB,QAAwB,CAAC;AACzD,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA2B,CAAC"}
|