@adyen/adyen-platform-experience-web 1.0.0-beta.2 → 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 +8 -8
- 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 +5 -5
- package/dist/es/components/external/TransactionsOverview/components/Balances/Balances.js +41 -33
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +7 -7
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.js +7 -11
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.js +14 -13
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.js +2 -7
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +16 -16
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +8 -8
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotalItem/TransactionTotalItem.js +6 -6
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.js +31 -31
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +41 -41
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +156 -117
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/constants.js +4 -2
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.js +17 -39
- 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 +77 -72
- 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/useMaxWidths.js +4 -4
- 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 +10 -10
- package/dist/es/components/internal/BaseList/BaseList.js +2 -2
- package/dist/es/components/internal/Button/Button.js +14 -14
- package/dist/es/components/internal/Button/hooks/useButton.js +7 -7
- 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 +5 -5
- package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.js +33 -30
- package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDayOfWeek.js +9 -9
- package/dist/es/components/internal/Calendar/components/CalendarGrid/utils.js +37 -38
- package/dist/es/components/internal/Calendar/hooks/useCalendar.js +15 -15
- 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 +62 -57
- package/dist/es/components/internal/DataGrid/DataGridCell.js +36 -4
- package/dist/es/components/internal/DataGrid/components/InteractiveBody.js +29 -27
- package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +7 -7
- package/dist/es/components/internal/DataGrid/components/TableBody.js +21 -19
- 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 +3 -3
- 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 +20 -19
- package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/TimeRangeSelector.js +9 -9
- package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.js +43 -42
- package/dist/es/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.js +28 -29
- package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +17 -17
- package/dist/es/components/internal/FilterBar/FilterBar.js +22 -22
- package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +8 -8
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/AmountFilter.js +34 -33
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +43 -42
- package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +71 -70
- 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 +32 -32
- package/dist/es/components/internal/FormFields/InputText.js +2 -2
- package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +43 -0
- package/dist/es/components/internal/FormFields/Select/Select.js +51 -50
- package/dist/es/components/internal/FormFields/Select/components/SelectButton.js +11 -10
- package/dist/es/components/internal/FormFields/Select/components/SelectList.js +30 -29
- 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 +8 -8
- package/dist/es/components/internal/Image/Image.js +4 -4
- package/dist/es/components/internal/Img/Img.js +7 -7
- package/dist/es/components/internal/Modal/Modal.js +33 -31
- package/dist/es/components/internal/Modal/ModalContent/ModalContent.js +16 -0
- package/dist/es/components/internal/Pagination/Pagination.js +22 -21
- package/dist/es/components/internal/Pagination/hooks/useCursorPagination.js +11 -11
- package/dist/es/components/internal/Pagination/hooks/usePageLimit.js +10 -9
- package/dist/es/components/internal/Pagination/hooks/usePaginatedRecords.js +48 -49
- package/dist/es/components/internal/Pagination/hooks/usePaginatedRecordsFilters.js +1 -1
- package/dist/es/components/internal/Pagination/hooks/usePagination.js +12 -12
- package/dist/es/components/internal/Popover/Popover.js +44 -43
- package/dist/es/components/internal/Popover/PopoverTitle/PopoverTitle.js +2 -2
- 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 +4 -4
- package/dist/es/components/internal/SVGIcons/ChevronRight.js +4 -4
- package/dist/es/components/internal/SVGIcons/ChevronUp.js +3 -3
- package/dist/es/components/internal/SVGIcons/Close.js +5 -5
- package/dist/es/components/internal/SVGIcons/Filter.js +2 -2
- 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 +8 -8
- 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 +15 -14
- 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 +42 -40
- 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 +92 -108
- package/dist/es/external/preact/dist/preact.module.js +244 -234
- package/dist/es/external/preact/hooks/dist/hooks.module.js +86 -84
- package/dist/es/external/preact/jsx-runtime/dist/jsxRuntime.module.js +5 -5
- package/dist/es/hooks/element/useClickOutside.js +4 -4
- package/dist/es/hooks/element/useDetachedRender.js +3 -3
- 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 +27 -27
- 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 +23 -22
- package/dist/es/hooks/useImageUrl/useImageUrl.js +1 -1
- package/dist/es/hooks/useMediaQuery/useMediaQuery.js +14 -0
- package/dist/es/hooks/useModalDetails/useModalDetails.js +4 -4
- package/dist/es/hooks/useReactiveState/useReactiveState.js +11 -11
- 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 +3 -2
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.d.ts +2 -2
- package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.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/MultiSelectionFilter.d.ts +1 -5
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.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 +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/useMaxWidths.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 +2 -2
- 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/Button/constants.d.ts +7 -7
- package/dist/types/components/internal/Button/constants.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 +10 -5
- 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 +2 -2
- 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/CopyText/CopyText.d.ts.map +1 -1
- 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/SkeletonBody.d.ts +1 -1
- package/dist/types/components/internal/DataGrid/components/SkeletonBody.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/TableBody.d.ts +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 +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/hooks/useInteractiveDataGrid.d.ts.map +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/TimeRangeSelector.d.ts +1 -1
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/TimeRangeSelector.d.ts.map +1 -1
- 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 -3
- package/dist/types/components/internal/FormFields/Select/components/SelectListItem.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/constants.d.ts +21 -21
- package/dist/types/components/internal/FormFields/Select/constants.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/hooks/useSelect.d.ts +1 -1
- package/dist/types/components/internal/FormFields/Select/hooks/useSelect.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/FormFields/index.d.ts +1 -1
- package/dist/types/components/internal/FormFields/index.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/Pagination/hooks/useCursorPaginatedRecords.d.ts.map +1 -1
- package/dist/types/components/internal/Pagination/hooks/useOffsetPaginatedRecords.d.ts.map +1 -1
- package/dist/types/components/internal/Pagination/hooks/usePaginatedRecords.d.ts.map +1 -1
- package/dist/types/components/internal/Pagination/hooks/usePaginatedRecordsFilters.d.ts.map +1 -1
- package/dist/types/components/internal/Pagination/hooks/usePagination.d.ts +1 -1
- package/dist/types/components/internal/Pagination/hooks/usePagination.d.ts.map +1 -1
- package/dist/types/components/internal/Pagination/types.d.ts +5 -1
- package/dist/types/components/internal/Pagination/types.d.ts.map +1 -1
- package/dist/types/components/internal/Popover/constants.d.ts +6 -6
- package/dist/types/components/internal/Popover/constants.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/internal/Tooltip/useTooltipListeners.d.ts.map +1 -1
- package/dist/types/components/types.d.ts +54 -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/amount/amount-util.d.ts +28 -0
- package/dist/types/core/Localization/amount/amount-util.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/datetime/restamper/utils.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/localization-utils.d.ts.map +1 -1
- 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 +246 -227
- package/dist/types/core/Localization/utils.d.ts.map +1 -1
- package/dist/types/core/core.d.ts +29 -21
- package/dist/types/core/core.d.ts.map +1 -1
- package/dist/types/core/types.d.ts +21 -24
- 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/useImageUrl/useImageUrl.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/useMounted/useMounted.d.ts +1 -1
- package/dist/types/hooks/useMounted/useMounted.d.ts.map +1 -1
- package/dist/types/hooks/useReactiveState/useReactiveState.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 +104 -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 +59 -0
- package/dist/types/types/api/resources/SetupResource.d.ts.map +1 -0
- package/dist/types/types/api/resources/TransactionsResource.d.ts +198 -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} +3 -3
- 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 +7 -5
- package/LICENSE +0 -21
- package/README.md +0 -69
- package/dist/ModalContent-88fdb6f4.js +0 -2
- package/dist/ModalContent-88fdb6f4.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/Storage.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-7e2df524.js +0 -12
- package/dist/index-7e2df524.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/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/Storage.d.ts +0 -11
- package/dist/types/utils/Storage.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 -15
- package/dist/types/utils/watchable/core/Watchable.d.ts.map +0 -1
- package/dist/types/utils/watchable/core/helpers.d.ts +0 -7
- 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/utils/{memoComparator → preact/memoComparator}/types.d.ts +0 -0
|
@@ -1,131 +1,133 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
1
|
+
var Et = Object.defineProperty;
|
|
2
|
+
var Rt = (m, s, e) => s in m ? Et(m, s, { enumerable: !0, configurable: !0, writable: !0, value: e }) : m[s] = e;
|
|
3
|
+
var tt = (m, s, e) => (Rt(m, typeof s != "symbol" ? s + "" : s, e), e), at = (m, s, e) => {
|
|
4
4
|
if (!s.has(m))
|
|
5
|
-
throw TypeError("Cannot " +
|
|
5
|
+
throw TypeError("Cannot " + e);
|
|
6
6
|
};
|
|
7
|
-
var t = (m, s,
|
|
7
|
+
var t = (m, s, e) => (at(m, s, "read from private field"), e ? e.call(m) : s.get(m)), r = (m, s, e) => {
|
|
8
8
|
if (s.has(m))
|
|
9
9
|
throw TypeError("Cannot add the same private member more than once");
|
|
10
|
-
s instanceof WeakSet ? s.add(m) : s.set(m,
|
|
11
|
-
},
|
|
12
|
-
var
|
|
10
|
+
s instanceof WeakSet ? s.add(m) : s.set(m, e);
|
|
11
|
+
}, i = (m, s, e, h) => (at(m, s, "write to private field"), h ? h.call(m, e) : s.set(m, e), e);
|
|
12
|
+
var v = (m, s, e, h) => ({
|
|
13
13
|
set _(o) {
|
|
14
|
-
|
|
14
|
+
i(m, s, o, e);
|
|
15
15
|
},
|
|
16
16
|
get _() {
|
|
17
17
|
return t(m, s, h);
|
|
18
18
|
}
|
|
19
|
-
}), n = (m, s,
|
|
20
|
-
import { resolveTimeFrameBlockSize as
|
|
21
|
-
import { UNBOUNDED_SLICE as
|
|
22
|
-
import { computeTimestampOffset as
|
|
23
|
-
import { FIRST_WEEK_DAYS as
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import {
|
|
27
|
-
import Xt from "
|
|
28
|
-
|
|
29
|
-
|
|
19
|
+
}), n = (m, s, e) => (at(m, s, "access private method"), e);
|
|
20
|
+
import { resolveTimeFrameBlockSize as yt, downsizeTimeFrame as ut } from "../common/utils.js";
|
|
21
|
+
import { UNBOUNDED_SLICE as dt } from "../../timeslice/index.js";
|
|
22
|
+
import { computeTimestampOffset as Dt } from "../../utils.js";
|
|
23
|
+
import { FIRST_WEEK_DAYS as At, SHIFT_FRAME as mt, SHIFT_PERIOD as _t, SHIFT_BLOCK as Ut, CURSOR_NEXT_BLOCK as xt, CURSOR_PREV_BLOCK as bt, CURSOR_LINE_END as wt, CURSOR_LINE_START as Nt, CURSOR_BLOCK_END as Lt, CURSOR_BLOCK_START as Wt, CURSOR_DOWNWARD as Mt, CURSOR_UPWARD as Ht, CURSOR_FORWARD as vt, CURSOR_BACKWARD as zt, SELECTION_TO as ot, SELECTION_FROM as st, SELECTION_COLLAPSE as Kt, SELECTION_NEAREST as gt, SELECTION_FARTHEST as pt } from "../../constants.js";
|
|
24
|
+
import $t from "../common/flags.js";
|
|
25
|
+
import Vt from "../../../../../../primitives/time/today/main.js";
|
|
26
|
+
import { createIndexed as et } from "../../../../../../primitives/auxiliary/indexed/main.js";
|
|
27
|
+
import { isUndefined as z, isNullish as D, isBoolean as Ot, isFunction as Xt } from "../../../../../../utils/value/is.js";
|
|
28
|
+
import { isInfinity as ft, clamp as ct, mid as Yt, isBitSafeInteger as Ft, mod as jt } from "../../../../../../utils/value/number.js";
|
|
29
|
+
import { enumerable as k } from "../../../../../../utils/struct/property.js";
|
|
30
|
+
import { struct as qt } from "../../../../../../utils/struct/main.js";
|
|
31
|
+
var w, g, $, V, X, Y, T, F, _, N, L, W, U, S, j, l, c, u, E, M, R, q, G, y, B, J, P, it, rt, ht, kt, C, A, nt, It, p, O, x, K, Q, lt;
|
|
32
|
+
const b = class b {
|
|
30
33
|
constructor() {
|
|
31
|
-
r(this,
|
|
34
|
+
r(this, ht);
|
|
32
35
|
r(this, C);
|
|
33
|
-
r(this,
|
|
36
|
+
r(this, nt);
|
|
34
37
|
r(this, p);
|
|
35
|
-
r(this,
|
|
36
|
-
r(this,
|
|
38
|
+
r(this, x);
|
|
39
|
+
r(this, Q);
|
|
37
40
|
r(this, g, 0);
|
|
38
|
-
r(this,
|
|
39
|
-
r(this,
|
|
40
|
-
r(this,
|
|
41
|
-
r(this,
|
|
41
|
+
r(this, $, void 0);
|
|
42
|
+
r(this, V, void 0);
|
|
43
|
+
r(this, X, -1);
|
|
44
|
+
r(this, Y, -1);
|
|
42
45
|
r(this, T, void 0);
|
|
43
46
|
r(this, F, void 0);
|
|
44
|
-
r(this,
|
|
45
|
-
r(this,
|
|
47
|
+
r(this, _, void 0);
|
|
48
|
+
r(this, N, !1);
|
|
46
49
|
r(this, L, void 0);
|
|
47
|
-
r(this,
|
|
48
|
-
r(this,
|
|
49
|
-
r(this,
|
|
50
|
-
r(this,
|
|
50
|
+
r(this, W, 0);
|
|
51
|
+
r(this, U, []);
|
|
52
|
+
r(this, S, t(b, w));
|
|
53
|
+
r(this, j, 12);
|
|
51
54
|
r(this, l, void 0);
|
|
52
55
|
r(this, c, void 0);
|
|
53
56
|
r(this, u, 1);
|
|
54
57
|
r(this, E, void 0);
|
|
55
|
-
r(this,
|
|
58
|
+
r(this, M, Vt());
|
|
56
59
|
r(this, R, void 0);
|
|
57
|
-
r(this,
|
|
58
|
-
r(this,
|
|
60
|
+
r(this, q, -1 / 0);
|
|
61
|
+
r(this, G, 1 / 0);
|
|
59
62
|
r(this, y, -1 / 0);
|
|
60
|
-
r(this,
|
|
61
|
-
r(this,
|
|
62
|
-
r(this,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
r(this,
|
|
67
|
-
r(this,
|
|
63
|
+
r(this, B, 1 / 0);
|
|
64
|
+
r(this, J, 1 / 0);
|
|
65
|
+
r(this, P, 0);
|
|
66
|
+
tt(this, "daysInWeek", 0);
|
|
67
|
+
tt(this, "origin");
|
|
68
|
+
tt(this, "originTimestamp");
|
|
69
|
+
r(this, it, et(() => this.daysInWeek, this.getDayOfWeekAtIndex.bind(this)));
|
|
70
|
+
r(this, rt, et(() => t(this, u), n(this, nt, It).bind(this)));
|
|
68
71
|
}
|
|
69
72
|
get fromTimestamp() {
|
|
70
|
-
return t(this,
|
|
73
|
+
return t(this, q);
|
|
71
74
|
}
|
|
72
75
|
get toTimestamp() {
|
|
73
|
-
return t(this,
|
|
76
|
+
return t(this, G);
|
|
74
77
|
}
|
|
75
78
|
get numberOfBlocks() {
|
|
76
|
-
return t(this,
|
|
79
|
+
return t(this, J);
|
|
77
80
|
}
|
|
78
81
|
get blankSelection() {
|
|
79
|
-
return t(this, l) === t(this, c) && t(this, c)
|
|
82
|
+
return t(this, l) === t(this, c) && z(t(this, c));
|
|
80
83
|
}
|
|
81
84
|
get cursor() {
|
|
82
85
|
return t(this, T) ?? -1;
|
|
83
86
|
}
|
|
84
87
|
get daysOfWeek() {
|
|
85
|
-
return t(this,
|
|
88
|
+
return t(this, it);
|
|
86
89
|
}
|
|
87
90
|
get dynamicBlockHeight() {
|
|
88
|
-
return t(this,
|
|
91
|
+
return t(this, N);
|
|
89
92
|
}
|
|
90
93
|
set dynamicBlockHeight(s) {
|
|
91
|
-
s
|
|
94
|
+
D(s) ? i(this, N, !!s) : Ot(s) && i(this, N, s);
|
|
92
95
|
}
|
|
93
96
|
set effect(s) {
|
|
94
|
-
s
|
|
97
|
+
D(s) ? i(this, L, void 0) : Xt(s) && i(this, L, s);
|
|
95
98
|
}
|
|
96
99
|
get firstWeekDay() {
|
|
97
|
-
return t(this,
|
|
100
|
+
return t(this, W);
|
|
98
101
|
}
|
|
99
102
|
set firstWeekDay(s) {
|
|
100
|
-
if (s
|
|
101
|
-
if (!Rt.includes(s) || t(this, N) === e(this, N, s))
|
|
102
|
-
return;
|
|
103
|
-
} else
|
|
103
|
+
if (D(s))
|
|
104
104
|
this.firstWeekDay = 0;
|
|
105
|
+
else if (!At.includes(s) || t(this, W) === i(this, W, s))
|
|
106
|
+
return;
|
|
105
107
|
}
|
|
106
108
|
get frameBlocks() {
|
|
107
|
-
return t(this,
|
|
109
|
+
return t(this, rt);
|
|
108
110
|
}
|
|
109
111
|
get isAtEnd() {
|
|
110
|
-
return !
|
|
112
|
+
return !ft(t(this, B)) && t(this, B) === t(this, u) - 1;
|
|
111
113
|
}
|
|
112
114
|
get isAtStart() {
|
|
113
|
-
return !
|
|
115
|
+
return !ft(t(this, y)) && t(this, y) === 0;
|
|
114
116
|
}
|
|
115
117
|
get locale() {
|
|
116
|
-
return t(this,
|
|
118
|
+
return t(this, S);
|
|
117
119
|
}
|
|
118
120
|
set locale(s) {
|
|
119
|
-
const
|
|
120
|
-
if (s
|
|
121
|
-
|
|
121
|
+
const e = t(this, S);
|
|
122
|
+
if (D(s))
|
|
123
|
+
i(this, S, t(b, w));
|
|
122
124
|
else if (typeof Intl < "u")
|
|
123
125
|
try {
|
|
124
|
-
|
|
126
|
+
i(this, S, new Intl.Locale(s).toString());
|
|
125
127
|
} catch {
|
|
126
|
-
|
|
128
|
+
i(this, S, t(b, w));
|
|
127
129
|
}
|
|
128
|
-
t(this,
|
|
130
|
+
t(this, S) !== e && this.refreshFrame(!0);
|
|
129
131
|
}
|
|
130
132
|
get selectionStart() {
|
|
131
133
|
return t(this, l);
|
|
@@ -137,180 +139,180 @@ const x = class x {
|
|
|
137
139
|
return t(this, u);
|
|
138
140
|
}
|
|
139
141
|
set size(s) {
|
|
140
|
-
const
|
|
141
|
-
t(this, u) !==
|
|
142
|
+
const e = Math.min(!D(s) && yt(s) || 1, t(this, j));
|
|
143
|
+
t(this, u) !== i(this, u, e) && (n(this, Q, lt).call(this), this.refreshFrame());
|
|
142
144
|
}
|
|
143
145
|
get timeslice() {
|
|
144
146
|
return t(this, E);
|
|
145
147
|
}
|
|
146
148
|
set timeslice(s) {
|
|
147
|
-
if (s === t(this, E) || s
|
|
149
|
+
if (s === t(this, E) || D(s) && t(this, E) === dt)
|
|
148
150
|
return;
|
|
149
|
-
const { from:
|
|
150
|
-
|
|
151
|
-
const d = t(this, l)
|
|
152
|
-
d === t(this, l) || f === t(this, c) ? (
|
|
151
|
+
const { from: e, to: h, span: o, offsets: a } = s;
|
|
152
|
+
i(this, E, s), i(this, q, e - a.from), i(this, G, h - a.to), i(this, J, o);
|
|
153
|
+
const d = z(t(this, l)) ? t(this, l) : Math.max(t(this, l), e), f = z(t(this, c)) ? t(this, c) : Math.min(t(this, c), h);
|
|
154
|
+
d === t(this, l) || f === t(this, c) ? (i(this, l, d), i(this, c, f)) : i(this, l, i(this, c, void 0)), this.reslice(), i(this, j, ut(12, this.numberOfBlocks)), i(this, u, ut(t(this, u), this.numberOfBlocks)), this.shiftFrameToTimestamp(t(this, _));
|
|
153
155
|
}
|
|
154
156
|
set trackCurrentDay(s) {
|
|
155
|
-
s
|
|
157
|
+
Ot(s) ? s && !t(this, R) ? i(this, R, t(this, M).subscribe(this.refreshFrame.bind(this, !0))) : !s && t(this, R) && (t(this, R).call(this), i(this, R, void 0)) : D(s) && (this.trackCurrentDay = !1);
|
|
156
158
|
}
|
|
157
159
|
get units() {
|
|
158
|
-
return t(this,
|
|
160
|
+
return t(this, P);
|
|
159
161
|
}
|
|
160
162
|
initialize() {
|
|
161
|
-
this.withCurrentDayTimestamp(t(this,
|
|
163
|
+
this.withCurrentDayTimestamp(t(this, M).timestamp), this.timeslice = dt;
|
|
162
164
|
}
|
|
163
165
|
refreshFrame(s = !1) {
|
|
164
|
-
var
|
|
165
|
-
if (t(this,
|
|
166
|
-
const h = this.getFrameBlockAtIndex(t(this, g)), { from: o, to: a } = h.inner, [d] = n(this, C,
|
|
167
|
-
|
|
168
|
-
const f = o + t(this, F), I =
|
|
166
|
+
var e;
|
|
167
|
+
if (t(this, U).length = 0, !(z(t(this, F)) || s)) {
|
|
168
|
+
const h = this.getFrameBlockAtIndex(t(this, g)), { from: o, to: a } = h.inner, [d] = n(this, C, A).call(this, this.getTimestampAtIndex(o + t(this, F)), !1);
|
|
169
|
+
i(this, F, this.getUnitsOffsetForTimestamp(this.getTimestampAtIndex(o), d));
|
|
170
|
+
const f = o + t(this, F), I = ct(o, f, a);
|
|
169
171
|
if (I > f)
|
|
170
|
-
return
|
|
172
|
+
return i(this, F, this.getUnitsForFrameBlockAtIndex(--v(this, g)._) + f - I), t(this, g) >= 0 ? this.refreshFrame() : (i(this, g, t(this, u) - 1), this.shiftFrameByOffset(-1, mt));
|
|
171
173
|
if (I < f)
|
|
172
|
-
return
|
|
173
|
-
|
|
174
|
-
const
|
|
175
|
-
|
|
174
|
+
return i(this, F, f - I - 1), ++v(this, g)._ < t(this, u) ? this.refreshFrame() : (i(this, g, 0), this.shiftFrameByOffset(1, mt));
|
|
175
|
+
i(this, $, o), i(this, V, a), i(this, _, n(this, C, A).call(this, this.getTimestampAtIndex(f), !1)[0]), i(this, F, this.getCursorBlockOriginTimestampOffset(t(this, _))), i(this, T, o + t(this, F));
|
|
176
|
+
const Z = t(this, g) > 0 ? this.getFrameBlockAtIndex(0) : h, H = t(this, g) < t(this, u) - 1 ? this.getFrameBlockAtIndex(t(this, u) - 1) : h;
|
|
177
|
+
i(this, X, Z.inner.from), i(this, Y, H.inner.to), i(this, P, H.outer.to);
|
|
176
178
|
}
|
|
177
|
-
this.withCurrentDayTimestamp(t(this,
|
|
178
|
-
}
|
|
179
|
-
shiftFrameByOffset(s,
|
|
180
|
-
if (s &&
|
|
181
|
-
switch (
|
|
182
|
-
case
|
|
183
|
-
return n(this,
|
|
184
|
-
case
|
|
185
|
-
return n(this,
|
|
186
|
-
case
|
|
179
|
+
this.withCurrentDayTimestamp(t(this, M).timestamp), (e = t(this, L)) == null || e.call(this);
|
|
180
|
+
}
|
|
181
|
+
shiftFrameByOffset(s, e) {
|
|
182
|
+
if (s && Ft(s))
|
|
183
|
+
switch (e) {
|
|
184
|
+
case Ut:
|
|
185
|
+
return n(this, x, K).call(this, s);
|
|
186
|
+
case _t:
|
|
187
|
+
return n(this, x, K).call(this, s * 12);
|
|
188
|
+
case mt:
|
|
187
189
|
default:
|
|
188
|
-
return n(this,
|
|
190
|
+
return n(this, x, K).call(this, s * t(this, u));
|
|
189
191
|
}
|
|
190
192
|
}
|
|
191
193
|
shiftFrameCursor(s) {
|
|
192
194
|
switch (s) {
|
|
193
|
-
case
|
|
195
|
+
case zt:
|
|
194
196
|
return n(this, p, O).call(this, -1);
|
|
195
|
-
case
|
|
197
|
+
case vt:
|
|
196
198
|
return n(this, p, O).call(this, 1);
|
|
197
|
-
case
|
|
199
|
+
case Ht:
|
|
198
200
|
return n(this, p, O).call(this, -this.rowspan);
|
|
199
|
-
case
|
|
201
|
+
case Mt:
|
|
200
202
|
return n(this, p, O).call(this, this.rowspan);
|
|
201
|
-
case
|
|
202
|
-
return n(this, p, O).call(this, t(this,
|
|
203
|
-
case
|
|
204
|
-
return n(this, p, O).call(this, t(this,
|
|
205
|
-
case
|
|
203
|
+
case Wt:
|
|
204
|
+
return n(this, p, O).call(this, t(this, $) - t(this, T));
|
|
205
|
+
case Lt:
|
|
206
|
+
return n(this, p, O).call(this, t(this, V) - t(this, T));
|
|
207
|
+
case Nt:
|
|
206
208
|
return n(this, p, O).call(this, -(t(this, T) % this.rowspan));
|
|
207
209
|
case wt:
|
|
208
210
|
return n(this, p, O).call(this, this.rowspan - (t(this, T) % this.rowspan + 1));
|
|
209
|
-
case
|
|
211
|
+
case bt:
|
|
210
212
|
return n(this, p, O).call(this, -this.getUnitsForFrameBlockAtIndex((t(this, g) ?? 0) - 1));
|
|
211
|
-
case
|
|
213
|
+
case xt:
|
|
212
214
|
return n(this, p, O).call(this, this.getUnitsForFrameBlockAtIndex(t(this, g) ?? 0));
|
|
213
215
|
}
|
|
214
|
-
if (!(s < 0) && s >= t(this,
|
|
216
|
+
if (!(s < 0) && s >= t(this, X) && s <= t(this, Y))
|
|
215
217
|
return n(this, p, O).call(this, s - t(this, T));
|
|
216
218
|
}
|
|
217
219
|
shiftFrameToTimestamp(s) {
|
|
218
|
-
const
|
|
219
|
-
|
|
220
|
+
const e = n(this, C, A).call(this, s, !1)[0];
|
|
221
|
+
i(this, F, this.getCursorBlockOriginTimestampOffset(i(this, _, this.originTimestamp = e))), this.reoriginate(), [v(this, y)._, v(this, B)._] = this.getEdgeBlockOffsetsFromOrigin(), n(this, Q, lt).call(this), this.refreshFrame(), n(this, p, O).call(this, this.getUnitsOffsetForTimestamp(this.getTimestampAtIndex(t(this, T)), e));
|
|
220
222
|
}
|
|
221
223
|
clearSelection() {
|
|
222
|
-
this.blankSelection || (
|
|
224
|
+
this.blankSelection || (i(this, l, i(this, c, void 0)), this.refreshFrame(!0));
|
|
223
225
|
}
|
|
224
|
-
getCursorOrderForTimeRelativeToSelectionEdge(s,
|
|
226
|
+
getCursorOrderForTimeRelativeToSelectionEdge(s, e = st) {
|
|
225
227
|
let h, o = !1;
|
|
226
|
-
switch (
|
|
227
|
-
case
|
|
228
|
+
switch (e) {
|
|
229
|
+
case st:
|
|
228
230
|
h = t(this, l);
|
|
229
231
|
break;
|
|
230
|
-
case
|
|
232
|
+
case ot:
|
|
231
233
|
h = t(this, c), o = !0;
|
|
232
234
|
break;
|
|
233
235
|
}
|
|
234
|
-
if (h
|
|
236
|
+
if (z(h))
|
|
235
237
|
return 0;
|
|
236
|
-
const a = n(this, C,
|
|
238
|
+
const a = n(this, C, A).call(this, s, !1).reduce((f, I) => f + I, 0), d = this.getUnitsOffsetForTimestamp(h, a) * (o ? -1 : 1);
|
|
237
239
|
return d && (d > 0 ? 1 : -1);
|
|
238
240
|
}
|
|
239
|
-
updateSelection(s,
|
|
240
|
-
const h = t(this, l), o = t(this, c), a = n(this, C,
|
|
241
|
-
switch (
|
|
242
|
-
case
|
|
243
|
-
|
|
241
|
+
updateSelection(s, e) {
|
|
242
|
+
const h = t(this, l), o = t(this, c), a = n(this, C, A).call(this, s, !1).reduce((d, f) => d + f, 0);
|
|
243
|
+
switch (e === pt && (a <= h ? e = ot : a >= o && (e = st)), e) {
|
|
244
|
+
case st:
|
|
245
|
+
i(this, l, a), i(this, c, Math.max(t(this, l), o ?? a));
|
|
244
246
|
break;
|
|
245
|
-
case
|
|
246
|
-
|
|
247
|
+
case ot:
|
|
248
|
+
i(this, c, a), i(this, l, Math.min(h ?? a, t(this, c)));
|
|
247
249
|
break;
|
|
248
|
-
case
|
|
249
|
-
case
|
|
250
|
+
case pt:
|
|
251
|
+
case gt: {
|
|
250
252
|
let d = Math.abs(a - (h ?? a)), f = Math.abs(a - (o ?? a));
|
|
251
|
-
|
|
253
|
+
e === gt && ([d, f] = [f, d]), d > f ? i(this, l, a) : i(this, c, a);
|
|
252
254
|
break;
|
|
253
255
|
}
|
|
254
|
-
case
|
|
256
|
+
case Kt:
|
|
255
257
|
default:
|
|
256
|
-
|
|
258
|
+
i(this, l, i(this, c, a));
|
|
257
259
|
break;
|
|
258
260
|
}
|
|
259
261
|
(t(this, l) !== h || t(this, c) !== o) && this.refreshFrame(!0);
|
|
260
262
|
}
|
|
261
263
|
};
|
|
262
|
-
|
|
263
|
-
return
|
|
264
|
-
}, C = new WeakSet(),
|
|
264
|
+
w = new WeakMap(), g = new WeakMap(), $ = new WeakMap(), V = new WeakMap(), X = new WeakMap(), Y = new WeakMap(), T = new WeakMap(), F = new WeakMap(), _ = new WeakMap(), N = new WeakMap(), L = new WeakMap(), W = new WeakMap(), U = new WeakMap(), S = new WeakMap(), j = new WeakMap(), l = new WeakMap(), c = new WeakMap(), u = new WeakMap(), E = new WeakMap(), M = new WeakMap(), R = new WeakMap(), q = new WeakMap(), G = new WeakMap(), y = new WeakMap(), B = new WeakMap(), J = new WeakMap(), P = new WeakMap(), it = new WeakMap(), rt = new WeakMap(), ht = new WeakSet(), kt = function(s) {
|
|
265
|
+
return ct(t(this, y), s || 0, t(this, B) - t(this, u) + 1);
|
|
266
|
+
}, C = new WeakSet(), A = function(s, e = !0) {
|
|
265
267
|
let h = new Date(s).getTime();
|
|
266
268
|
if (isNaN(h))
|
|
267
|
-
return n(this, C,
|
|
268
|
-
const { from: o, to: a } = t(this, E), d =
|
|
269
|
-
d !== h &&
|
|
270
|
-
const f =
|
|
269
|
+
return n(this, C, A).call(this, Date.now());
|
|
270
|
+
const { from: o, to: a } = t(this, E), d = ct(o, h, a);
|
|
271
|
+
d !== h && e ? (h = Yt(o, a), (isNaN(h) || ft(h)) && (h = d)) : h = d;
|
|
272
|
+
const f = Dt(h);
|
|
271
273
|
return [h - f, f];
|
|
272
|
-
},
|
|
273
|
-
if (
|
|
274
|
-
if (!t(this,
|
|
275
|
-
const
|
|
276
|
-
if (!
|
|
274
|
+
}, nt = new WeakSet(), It = function(s) {
|
|
275
|
+
if (Ft(s) && s >= 0 && s < t(this, u)) {
|
|
276
|
+
if (!t(this, U)[s]) {
|
|
277
|
+
const e = this.getFrameBlockAtIndex(s);
|
|
278
|
+
if (!e)
|
|
277
279
|
return;
|
|
278
|
-
const h = `${
|
|
279
|
-
t(this,
|
|
280
|
+
const h = `${e.year}-${`0${1 + e.month}`.slice(-2)}-01`, [o, a] = this.getFormattedDataForFrameBlock(new Date(h).setHours(12)), d = e.outer.from;
|
|
281
|
+
t(this, U)[s] = et(
|
|
280
282
|
{
|
|
281
283
|
datetime: k(a),
|
|
282
284
|
label: k(o),
|
|
283
|
-
length: k(Math.ceil(
|
|
284
|
-
month: k(
|
|
285
|
-
year: k(
|
|
285
|
+
length: k(Math.ceil(e.outer.units / this.rowspan)),
|
|
286
|
+
month: k(e.month),
|
|
287
|
+
year: k(e.year)
|
|
286
288
|
},
|
|
287
289
|
(f) => {
|
|
288
290
|
const I = f * this.rowspan;
|
|
289
|
-
return
|
|
290
|
-
const [
|
|
291
|
-
return
|
|
292
|
-
datetime: k(
|
|
293
|
-
flags: k(
|
|
294
|
-
index: k(d +
|
|
295
|
-
label: k(
|
|
296
|
-
timestamp: k(
|
|
291
|
+
return et(this.rowspan, (Z) => {
|
|
292
|
+
const [H, St] = e[Z + I], [Bt, Ct] = this.getFormattedDataForBlockCell(new Date(H).setHours(12));
|
|
293
|
+
return qt({
|
|
294
|
+
datetime: k(Ct),
|
|
295
|
+
flags: k($t(St)),
|
|
296
|
+
index: k(d + Z + I),
|
|
297
|
+
label: k(Bt),
|
|
298
|
+
timestamp: k(H)
|
|
297
299
|
});
|
|
298
300
|
});
|
|
299
301
|
}
|
|
300
302
|
);
|
|
301
303
|
}
|
|
302
|
-
return t(this,
|
|
304
|
+
return t(this, U)[s];
|
|
303
305
|
}
|
|
304
306
|
}, p = new WeakSet(), O = function(s) {
|
|
305
|
-
s !== 0 && (
|
|
306
|
-
},
|
|
307
|
-
const
|
|
308
|
-
|
|
309
|
-
},
|
|
310
|
-
const s = t(this, u) - 1,
|
|
311
|
-
|
|
312
|
-
}, r(
|
|
313
|
-
let
|
|
307
|
+
s !== 0 && (i(this, F, t(this, F) + s), this.refreshFrame());
|
|
308
|
+
}, x = new WeakSet(), K = function(s) {
|
|
309
|
+
const e = n(this, ht, kt).call(this, s);
|
|
310
|
+
e && (this.shiftOrigin(e), i(this, y, t(this, y) - e), i(this, B, t(this, B) - e), i(this, g, jt(t(this, g) - e, t(this, u))), this.refreshFrame());
|
|
311
|
+
}, Q = new WeakSet(), lt = function() {
|
|
312
|
+
const s = t(this, u) - 1, e = Math.min(s - this.origin % t(this, u), t(this, B)) - s;
|
|
313
|
+
e && n(this, x, K).call(this, e);
|
|
314
|
+
}, r(b, w, "en-US");
|
|
315
|
+
let Tt = b;
|
|
314
316
|
export {
|
|
315
|
-
|
|
317
|
+
Tt as default
|
|
316
318
|
};
|
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { asPlainObject as R, createRangeTimestampsConfigRestampingContext as W, getter as c, parseRangeTimestamp as a, isRangeTimestampsConfigWithoutOffsets as Y, isRangeTimestampsConfigWithFromOffsets as b, getRangeTimestampsConfigParameterUnwrapper as E } from "./utils.js";
|
|
1
|
+
import { createRangeTimestampsConfigRestampingContext as W, parseRangeTimestamp as a, isRangeTimestampsConfigWithoutOffsets as Y, isRangeTimestampsConfigWithFromOffsets as b, getRangeTimestampsConfigParameterUnwrapper as E } from "./utils.js";
|
|
3
2
|
import H from "../../../../../core/Localization/datetime/restamper/restamper.js";
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
import { asPlainObject as d, struct as R } from "../../../../../utils/struct/main.js";
|
|
4
|
+
import { getter as c } from "../../../../../utils/struct/property.js";
|
|
5
|
+
import { EMPTY_OBJECT as u } from "../../../../../utils/value/constants.js";
|
|
6
|
+
const $ = (C = u, D = u) => {
|
|
7
|
+
const s = d(C), h = d(D);
|
|
7
8
|
return () => {
|
|
8
|
-
const
|
|
9
|
+
const i = H(), l = c(() => o), T = c(() => i.tz.current), f = R({
|
|
9
10
|
now: l,
|
|
10
11
|
timezone: T,
|
|
11
|
-
...W(
|
|
12
|
-
}),
|
|
12
|
+
...W(i)
|
|
13
|
+
}), m = E(s, f);
|
|
13
14
|
let { from: n, to: r, now: o } = u;
|
|
14
15
|
const g = (p) => {
|
|
15
16
|
o = a(p ?? Date.now()) ?? o;
|
|
16
17
|
t: {
|
|
17
18
|
if (Y(s)) {
|
|
18
|
-
n = a(
|
|
19
|
+
n = a(m(s.from)) ?? o, r = a(m(s.to)) ?? o;
|
|
19
20
|
break t;
|
|
20
21
|
}
|
|
21
22
|
let t, e, w;
|
|
22
|
-
(w = b(s)) ? (t = new Date(n = a(
|
|
23
|
-
const [F = 0, O = 0, x = 0, M = 0, S = 0, _ = 0, P = 0] =
|
|
23
|
+
(w = b(s)) ? (t = new Date(n = a(m(s.from)) ?? o), e = 1) : (t = new Date(r = a(m(s.to)) ?? o), e = -1), t = new Date(f.timezoneToSystem(t));
|
|
24
|
+
const [F = 0, O = 0, x = 0, M = 0, S = 0, _ = 0, P = 0] = m(s.offsets);
|
|
24
25
|
t.setFullYear(t.getFullYear() + F * e, t.getMonth() + O * e, t.getDate() + x * e), t.setHours(
|
|
25
26
|
t.getHours() + M * e,
|
|
26
27
|
t.getMinutes() + S * e,
|
|
@@ -32,10 +33,10 @@ const j = (C = u, D = u) => {
|
|
|
32
33
|
}
|
|
33
34
|
n > r && ([n, r] = [r, n]);
|
|
34
35
|
}, y = (p) => {
|
|
35
|
-
const t =
|
|
36
|
-
|
|
36
|
+
const t = i.tz, e = t.current;
|
|
37
|
+
i.tz = p, t.current !== e && g(o);
|
|
37
38
|
};
|
|
38
|
-
return g(),
|
|
39
|
+
return g(), R({
|
|
39
40
|
...h,
|
|
40
41
|
from: c(() => n),
|
|
41
42
|
now: { ...l, set: g },
|
|
@@ -43,7 +44,7 @@ const j = (C = u, D = u) => {
|
|
|
43
44
|
to: c(() => r)
|
|
44
45
|
});
|
|
45
46
|
};
|
|
46
|
-
}, U =
|
|
47
|
+
}, U = $;
|
|
47
48
|
export {
|
|
48
49
|
U as default
|
|
49
50
|
};
|
package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import
|
|
2
|
-
import i from "../../
|
|
3
|
-
import {
|
|
1
|
+
import c from "../../factory.js";
|
|
2
|
+
import { startOfMonth as i, nowTimestamp as h } from "../../utils.js";
|
|
3
|
+
import { clamp as p } from "../../../../../../../utils/value/number.js";
|
|
4
4
|
const M = Object.freeze([0, 1, 0, 0, 0, 0, -1]), g = (f = 0) => {
|
|
5
|
-
const e = ~~
|
|
6
|
-
return
|
|
5
|
+
const e = ~~p(0, f, 1 / 0) || 0;
|
|
6
|
+
return c({
|
|
7
7
|
from: ({ now: n, systemToTimezone: r, timezoneToSystem: m }) => {
|
|
8
8
|
const t = new Date(n), a = new Date(m(n)), o = t.getMonth() - a.getMonth();
|
|
9
9
|
let s = e;
|
|
10
|
-
return o && (s += o > 1 ? -1 : o < -1 ? 1 : o),
|
|
10
|
+
return o && (s += o > 1 ? -1 : o < -1 ? 1 : o), i(t), t.setMonth(t.getMonth() - s), r(t);
|
|
11
11
|
},
|
|
12
|
-
...e ? { offsets: M } : { to:
|
|
12
|
+
...e ? { offsets: M } : { to: h }
|
|
13
13
|
});
|
|
14
14
|
}, l = g;
|
|
15
15
|
export {
|
package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import
|
|
2
|
-
import F from "../../
|
|
3
|
-
import {
|
|
4
|
-
const r = 1, T =
|
|
5
|
-
const s = ~~
|
|
1
|
+
import p from "../../factory.js";
|
|
2
|
+
import { offsetsForNDays as F, startOfDay as W, startOfWeekOffset as d, getRangeTimestampsContextIntegerPropertyFactory as k, nowTimestamp as E } from "../../utils.js";
|
|
3
|
+
import { clamp as O } from "../../../../../../../utils/value/number.js";
|
|
4
|
+
const r = 1, T = F(7), _ = k(0, 6, r), u = (f = 0) => {
|
|
5
|
+
const s = ~~O(0, f, 1 / 0) || 0;
|
|
6
6
|
return (n = r) => {
|
|
7
|
-
const D = s ? { offsets: T } : { to:
|
|
8
|
-
return
|
|
7
|
+
const D = s ? { offsets: T } : { to: E }, o = _(n);
|
|
8
|
+
return p(
|
|
9
9
|
{
|
|
10
10
|
from: ({ now: a, systemToTimezone: c, timezoneToSystem: i }) => {
|
|
11
11
|
const t = new Date(a), m = new Date(i(a)), e = t.getDay() - m.getDay();
|
|
12
|
-
if (
|
|
12
|
+
if (W(t), e) {
|
|
13
13
|
const g = e > 1 ? -1 : e < -1 ? 1 : e;
|
|
14
14
|
t.setDate(t.getDate() - g);
|
|
15
15
|
}
|
|
16
|
-
const y =
|
|
16
|
+
const y = d(o.value, t.getDay()) - s * 7;
|
|
17
17
|
return t.setDate(t.getDate() + y), c(t);
|
|
18
18
|
},
|
|
19
19
|
...D
|