@adyen/adyen-platform-experience-web 1.0.1 → 1.0.2
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/LICENSE +21 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/es/components/external/BaseElement.js +12 -3
- package/dist/es/components/external/PayoutDetails/PayoutDetails.js +18 -14
- package/dist/es/components/external/PayoutDetails/components/PayoutData.js +200 -85
- package/dist/es/components/external/PayoutDetails/components/constants.js +8 -7
- package/dist/es/components/external/PayoutsOverview/PayoutsOverviewElement.js +14 -20
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +137 -116
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.js +22 -14
- package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +92 -56
- package/dist/es/components/external/TransactionDetails/TransactionDetails.js +16 -12
- package/dist/es/components/external/TransactionDetails/components/TransactionData.js +81 -57
- package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +12 -9
- package/dist/es/components/external/TransactionsOverview/TransactionsOverviewElement.js +17 -23
- package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +16 -4
- package/dist/es/components/external/TransactionsOverview/components/BalanceItem/BalanceItem.js +35 -34
- package/dist/es/components/external/TransactionsOverview/components/Balances/Balances.js +52 -26
- package/dist/es/components/external/TransactionsOverview/components/Category/Category.js +17 -4
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +20 -25
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.js +1 -13
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.js +12 -7
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.js +4 -1
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +47 -20
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +22 -13
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotalItem/TransactionTotalItem.js +23 -28
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.js +30 -30
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +72 -41
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +215 -186
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.js +22 -14
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +21 -14
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +116 -83
- package/dist/es/components/external/TransactionsOverview/hooks/useMaxWidths.js +4 -6
- package/dist/es/components/external/UIElement/UIElement.js +39 -24
- package/dist/es/components/hooks/useBalanceAccountSelection.js +20 -11
- package/dist/es/components/hooks/useBalanceAccounts.js +22 -19
- package/dist/es/components/hooks/useDefaultOverviewFilterParams.js +28 -16
- package/dist/es/components/hooks/useTimezoneAwareDateFormatting.js +31 -0
- package/dist/es/components/internal/Accordion/Accordion.js +58 -0
- package/dist/es/components/internal/Accordion/Accordion.scss.js +4 -0
- package/dist/es/components/internal/Accordion/constants.js +8 -0
- package/dist/es/components/internal/BaseButton/BaseButton.js +26 -12
- package/dist/es/components/internal/BaseList/BaseList.js +8 -3
- package/dist/es/components/internal/Button/Button.js +31 -18
- package/dist/es/components/internal/Button/ButtonActions/ButtonActions.js +19 -13
- package/dist/es/components/internal/Button/ButtonActions/types.js +4 -1
- package/dist/es/components/internal/Button/hooks/useButton.js +7 -10
- package/dist/es/components/internal/Calendar/Calendar.js +16 -15
- package/dist/es/components/internal/Calendar/calendar/facade/Calendar.js +161 -162
- package/dist/es/components/internal/Calendar/calendar/facade/index.js +40 -13
- package/dist/es/components/internal/Calendar/calendar/timeframe/common/flags.js +17 -18
- package/dist/es/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.js +42 -26
- package/dist/es/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.js +32 -24
- package/dist/es/components/internal/Calendar/calendar/timerange/factory.js +14 -9
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/lastNDays.js +13 -10
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.js +10 -2
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.js +22 -15
- package/dist/es/components/internal/Calendar/calendar/timerange/presets/yearToDate.js +5 -1
- package/dist/es/components/internal/Calendar/calendar/timerange/utils.js +3 -1
- package/dist/es/components/internal/Calendar/calendar/timeslice/index.js +15 -5
- package/dist/es/components/internal/Calendar/components/CalendarControls/CalendarControls.js +11 -3
- package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGrid.js +46 -19
- package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.js +57 -39
- package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDayOfWeek.js +44 -26
- package/dist/es/components/internal/Calendar/components/CalendarGrid/utils.js +26 -12
- package/dist/es/components/internal/Calendar/hooks/useCalendar.js +53 -45
- package/dist/es/components/internal/Calendar/hooks/useCalendarControlsRendering.js +33 -38
- package/dist/es/components/internal/Calendar/hooks/useTimezone.js +24 -8
- package/dist/es/components/internal/Card/Card.js +28 -17
- package/dist/es/components/internal/CopyText/CopyText.js +15 -11
- package/dist/es/components/internal/DataGrid/DataGrid.js +104 -68
- package/dist/es/components/internal/DataGrid/DataGridCell.js +24 -23
- package/dist/es/components/internal/DataGrid/components/InteractiveBody.js +20 -12
- package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +24 -14
- package/dist/es/components/internal/DataGrid/components/TableBody.js +14 -9
- package/dist/es/components/internal/DataGrid/components/TableCells.js +31 -10
- package/dist/es/components/internal/DataGrid/components/TableHeaderCell.js +23 -16
- package/dist/es/components/internal/DataGrid/hooks/useInteractiveDataGrid.js +75 -68
- package/dist/es/components/internal/DataGrid/utils/DataGridProvider.js +23 -18
- package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +15 -15
- package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +80 -39
- package/dist/es/components/internal/DataOverviewDisplay/DataDetailsModal.js +19 -18
- package/dist/es/components/internal/DataOverviewDisplay/constants.js +20 -1
- package/dist/es/components/internal/DataOverviewError/DataOverviewError.js +13 -16
- package/dist/es/components/internal/DatePicker/DatePicker.js +43 -25
- package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/TimeRangeSelector.js +24 -15
- package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.js +25 -29
- package/dist/es/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.js +48 -27
- package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +59 -34
- package/dist/es/components/internal/FilterBar/FilterBar.js +29 -28
- package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +26 -5
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/AmountFilter.js +52 -47
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +54 -47
- package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +83 -90
- package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilter.js +40 -44
- package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilterCore.js +117 -102
- package/dist/es/components/internal/FormFields/InputBase.js +63 -54
- package/dist/es/components/internal/FormFields/InputText.js +11 -5
- package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +30 -33
- package/dist/es/components/internal/FormFields/Select/Select.js +142 -149
- package/dist/es/components/internal/FormFields/Select/components/SelectButton.js +81 -61
- package/dist/es/components/internal/FormFields/Select/components/SelectList.js +59 -54
- package/dist/es/components/internal/FormFields/Select/components/SelectListItem.js +51 -31
- package/dist/es/components/internal/FormFields/Select/hooks/useSelect.js +27 -28
- package/dist/es/components/internal/Image/Image.js +21 -8
- package/dist/es/components/internal/Img/Img.js +25 -9
- package/dist/es/components/internal/Modal/Modal.js +61 -81
- package/dist/es/components/internal/Modal/ModalContent/ModalContent.js +23 -4
- package/dist/es/components/internal/Pagination/Pagination.js +58 -51
- package/dist/es/components/internal/Pagination/hooks/useCursorPagination.js +11 -4
- package/dist/es/components/internal/Pagination/hooks/useOffsetPagination.js +12 -5
- package/dist/es/components/internal/Pagination/hooks/usePageLimit.js +30 -27
- package/dist/es/components/internal/Pagination/hooks/usePaginatedRecords.js +104 -67
- package/dist/es/components/internal/Pagination/hooks/usePaginatedRecordsFilters.js +7 -1
- package/dist/es/components/internal/Pagination/hooks/usePagination.js +34 -13
- package/dist/es/components/internal/Popover/Popover.js +118 -128
- package/dist/es/components/internal/Popover/PopoverDismissButton/PopoverDismissButton.js +27 -20
- package/dist/es/components/internal/Popover/PopoverTitle/PopoverTitle.js +13 -6
- package/dist/es/components/internal/Popover/utils/popoverUtil.js +15 -7
- package/dist/es/components/internal/Popover/utils/utils.js +9 -8
- package/dist/es/components/internal/SVGIcons/CheckedBox.js +18 -10
- package/dist/es/components/internal/SVGIcons/Checkmark.js +20 -12
- package/dist/es/components/internal/SVGIcons/ChevronDown.js +20 -12
- package/dist/es/components/internal/SVGIcons/ChevronLeft.js +18 -10
- package/dist/es/components/internal/SVGIcons/ChevronRight.js +18 -10
- package/dist/es/components/internal/SVGIcons/ChevronUp.js +20 -12
- package/dist/es/components/internal/SVGIcons/Close.js +11 -5
- package/dist/es/components/internal/SVGIcons/Copy.js +13 -1
- package/dist/es/components/internal/SVGIcons/Filter.js +12 -5
- package/dist/es/components/internal/SVGIcons/UncheckedBox.js +18 -4
- package/dist/es/components/internal/Spinner/Spinner.js +14 -0
- package/dist/es/components/internal/Spinner/Spinner.scss.js +4 -0
- package/dist/es/components/internal/StructuredList/StructuredList.js +24 -19
- package/dist/es/components/internal/StructuredList/useStructuredListItem.js +14 -15
- package/dist/es/components/internal/Tag/Tag.js +16 -16
- package/dist/es/components/internal/Tooltip/Tooltip.js +35 -18
- package/dist/es/components/internal/Tooltip/useTooltipListeners.js +7 -10
- package/dist/es/components/internal/Typography/Typography.js +38 -28
- package/dist/es/components/utils/getCommonErrorCode.js +4 -1
- package/dist/es/components/utils/getErrorMessage.js +7 -5
- package/dist/es/core/Auth/context.js +14 -8
- package/dist/es/core/Auth/session/AuthSession.js +53 -73
- package/dist/es/core/Auth/session/AuthSessionSpecification.js +54 -39
- package/dist/es/core/Auth/session/AuthSetupContext.js +67 -43
- package/dist/es/core/Auth/session/constants.js +8 -11
- package/dist/es/core/Context/CoreProvider.js +21 -11
- package/dist/es/core/Http/http.js +43 -33
- package/dist/es/core/Http/utils.js +18 -12
- package/dist/es/core/Localization/Localization.js +98 -82
- package/dist/es/core/Localization/constants/localization.js +5 -1
- package/dist/es/core/Localization/datetime/restamper/constants.js +12 -2
- package/dist/es/core/Localization/datetime/restamper/restamper.js +18 -5
- package/dist/es/core/Localization/datetime/restamper/utils.js +4 -1
- package/dist/es/core/Localization/localization-utils.js +30 -18
- package/dist/es/core/Localization/utils.js +6 -1
- package/dist/es/core/core.js +26 -17
- package/dist/es/hooks/element/useClickOutside.js +29 -35
- package/dist/es/hooks/element/useDetachedRender.js +7 -10
- package/dist/es/hooks/element/useFocusCursor.js +10 -18
- package/dist/es/hooks/element/useFocusTrap.js +3 -6
- package/dist/es/hooks/element/usePopoverPositioner.js +43 -65
- package/dist/es/hooks/element/useUniqueIdentifier.js +3 -9
- package/dist/es/hooks/useCommitAction/useCommitAction.js +25 -19
- package/dist/es/hooks/useFetch/useFetch.js +29 -7
- package/dist/es/hooks/useImageUrl/useImageUrl.js +12 -10
- package/dist/es/hooks/useModalDetails/useModalDetails.js +15 -15
- package/dist/es/hooks/useReactiveState/useReactiveState.js +21 -9
- package/dist/es/index.js +1 -1
- package/dist/es/primitives/async/abortable/main.js +19 -16
- package/dist/es/primitives/async/promisor/main.js +13 -12
- package/dist/es/primitives/auxiliary/indexed/main.js +18 -22
- package/dist/es/primitives/context/session/SessionContext.js +41 -129
- package/dist/es/primitives/context/session/constants.js +9 -6
- package/dist/es/primitives/context/session/internal/autofresher.js +34 -0
- package/dist/es/primitives/context/session/internal/constants.js +7 -0
- package/dist/es/primitives/context/session/internal/deadline.js +62 -0
- package/dist/es/primitives/context/session/internal/refresher.js +66 -0
- package/dist/es/primitives/dom/tabbableRoot/tabbable.js +3 -1
- package/dist/es/primitives/reactive/eventEmitter/main.js +11 -19
- package/dist/es/primitives/reactive/reflex/main.js +33 -19
- package/dist/es/primitives/reactive/reflex/register.js +9 -3
- package/dist/es/primitives/reactive/watchlist/helpers.js +12 -8
- package/dist/es/primitives/reactive/watchlist/main.js +4 -5
- package/dist/es/primitives/time/clock/main.js +6 -1
- package/dist/es/primitives/time/interval/main.js +1 -1
- package/dist/es/primitives/time/today/main.js +9 -2
- package/dist/es/translations/da-DK.json.js +48 -42
- package/dist/es/translations/de-DE.json.js +100 -94
- package/dist/es/translations/es-ES.json.js +48 -42
- package/dist/es/translations/fr-FR.json.js +35 -29
- package/dist/es/translations/index.js +21 -1
- package/dist/es/translations/it-IT.json.js +27 -21
- package/dist/es/translations/nl-NL.json.js +35 -29
- package/dist/es/translations/no-NO.json.js +58 -52
- package/dist/es/translations/pt-BR.json.js +27 -21
- package/dist/es/translations/sv-SE.json.js +53 -47
- package/dist/es/utils/abort/constants.js +5 -0
- package/dist/es/utils/abort/internals.js +29 -0
- package/dist/es/utils/abort/main.js +51 -0
- package/dist/es/utils/preact/memoComparator/main.js +3 -1
- package/dist/es/utils/struct/main.js +5 -1
- package/dist/style.css +1 -1
- package/dist/types/components/external/PayoutDetails/PayoutDetails.d.ts.map +1 -1
- package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts +40 -3
- package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts.map +1 -1
- package/dist/types/components/external/PayoutDetails/components/constants.d.ts +1 -0
- package/dist/types/components/external/PayoutDetails/components/constants.d.ts.map +1 -1
- package/dist/types/components/external/PayoutsOverview/PayoutsOverviewElement.d.ts.map +1 -1
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts +1 -1
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -1
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +1 -2
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts +2 -2
- package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +1 -1
- 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/index.d.ts +1 -1
- package/dist/types/components/external/TransactionDetails/index.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts +2 -5
- package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/TransactionsOverviewElement.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.d.ts +5 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/hooks/useMaxWidths.d.ts.map +1 -1
- package/dist/types/components/external/UIElement/UIElement.d.ts.map +1 -1
- package/dist/types/components/hooks/useBalanceAccounts.d.ts +1 -1
- package/dist/types/components/hooks/useBalanceAccounts.d.ts.map +1 -1
- package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts +2 -1
- package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts.map +1 -1
- package/dist/types/components/hooks/useTimezoneAwareDateFormatting.d.ts +6 -0
- package/dist/types/components/hooks/useTimezoneAwareDateFormatting.d.ts.map +1 -0
- package/dist/types/components/internal/Accordion/Accordion.d.ts +6 -0
- package/dist/types/components/internal/Accordion/Accordion.d.ts.map +1 -0
- package/dist/types/components/internal/Accordion/constants.d.ts +6 -0
- package/dist/types/components/internal/Accordion/constants.d.ts.map +1 -0
- package/dist/types/components/internal/Accordion/types.d.ts +7 -0
- package/dist/types/components/internal/Accordion/types.d.ts.map +1 -0
- package/dist/types/components/internal/Calendar/calendar/facade/Calendar.d.ts.map +1 -1
- package/dist/types/components/internal/Calendar/calendar/timeframe/common/utils.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts +1 -1
- package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts.map +1 -1
- package/dist/types/components/internal/CopyText/CopyText.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 +1 -1
- package/dist/types/components/internal/DataGrid/components/TableHeaderCell.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/hooks/useInteractiveDataGrid.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/utils/DataGridProvider.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts +3 -6
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +4 -1
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -1
- package/dist/types/components/internal/DatePicker/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 +2 -2
- package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilter.d.ts +7 -1
- 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.map +1 -1
- 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 +12 -3
- package/dist/types/components/internal/FormFields/Select/components/SelectListItem.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/index.d.ts.map +1 -1
- package/dist/types/components/internal/Modal/Modal.d.ts +1 -1
- package/dist/types/components/internal/Modal/Modal.d.ts.map +1 -1
- package/dist/types/components/internal/Pagination/hooks/types.d.ts +0 -1
- 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/useOffsetPagination.d.ts.map +1 -1
- package/dist/types/components/internal/Pagination/hooks/usePaginatedRecords.d.ts +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/Popover/Popover.d.ts.map +1 -1
- package/dist/types/components/internal/Spinner/Spinner.d.ts +18 -0
- package/dist/types/components/internal/Spinner/Spinner.d.ts.map +1 -0
- package/dist/types/components/internal/Spinner/index.d.ts +2 -0
- package/dist/types/components/internal/Spinner/index.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/types.d.ts +3 -2
- package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -1
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +9 -133
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -1
- package/dist/types/components/internal/Tooltip/useTooltipListeners.d.ts.map +1 -1
- package/dist/types/components/types.d.ts +7 -15
- package/dist/types/components/types.d.ts.map +1 -1
- package/dist/types/components/utils/getLabel.d.ts +1 -1
- package/dist/types/core/Auth/context.d.ts +56 -42
- package/dist/types/core/Auth/context.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSession.d.ts +62 -53
- package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts +7 -4
- package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts +58 -43
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -1
- package/dist/types/core/Auth/session/constants.d.ts +0 -3
- package/dist/types/core/Auth/session/constants.d.ts.map +1 -1
- package/dist/types/core/Auth/types.d.ts +6 -6
- package/dist/types/core/Auth/types.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 +2 -0
- package/dist/types/core/Context/types.d.ts.map +1 -1
- package/dist/types/core/Http/http.d.ts.map +1 -1
- package/dist/types/core/Http/utils.d.ts.map +1 -1
- package/dist/types/core/Localization/Localization.d.ts.map +1 -1
- package/dist/types/core/Localization/datetime/restamper/utils.d.ts.map +1 -1
- package/dist/types/core/Localization/localization-utils.d.ts.map +1 -1
- package/dist/types/core/Localization/utils.d.ts +4 -4
- package/dist/types/core/Localization/utils.d.ts.map +1 -1
- package/dist/types/core/core.d.ts +3 -2
- package/dist/types/core/core.d.ts.map +1 -1
- package/dist/types/core/types.d.ts +4 -6
- package/dist/types/core/types.d.ts.map +1 -1
- package/dist/types/hooks/element/useClickOutside.d.ts +2 -1
- package/dist/types/hooks/element/useClickOutside.d.ts.map +1 -1
- package/dist/types/hooks/element/useDetachedRender.d.ts.map +1 -1
- package/dist/types/hooks/element/useFocusTrap.d.ts.map +1 -1
- package/dist/types/hooks/useImageUrl/useImageUrl.d.ts.map +1 -1
- package/dist/types/hooks/useMediaQuery/useMediaQuery.d.ts.map +1 -1
- 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/useReflex.d.ts.map +1 -1
- package/dist/types/primitives/async/abortable/main.d.ts +1 -1
- package/dist/types/primitives/async/abortable/main.d.ts.map +1 -1
- package/dist/types/primitives/async/promisor/main.d.ts.map +1 -1
- package/dist/types/primitives/auxiliary/indexed/helpers.d.ts.map +1 -1
- package/dist/types/primitives/auxiliary/indexed/main.d.ts.map +1 -1
- package/dist/types/primitives/context/session/SessionContext.d.ts +6 -27
- package/dist/types/primitives/context/session/SessionContext.d.ts.map +1 -1
- package/dist/types/primitives/context/session/constants.d.ts +6 -3
- package/dist/types/primitives/context/session/constants.d.ts.map +1 -1
- package/dist/types/primitives/context/session/internal/autofresher.d.ts +7 -0
- package/dist/types/primitives/context/session/internal/autofresher.d.ts.map +1 -0
- package/dist/types/primitives/context/session/internal/constants.d.ts +5 -0
- package/dist/types/primitives/context/session/internal/constants.d.ts.map +1 -0
- package/dist/types/primitives/context/session/internal/deadline.d.ts +6 -0
- package/dist/types/primitives/context/session/internal/deadline.d.ts.map +1 -0
- package/dist/types/primitives/context/session/internal/refresher.d.ts +6 -0
- package/dist/types/primitives/context/session/internal/refresher.d.ts.map +1 -0
- package/dist/types/primitives/context/session/internal/types.d.ts +27 -0
- package/dist/types/primitives/context/session/internal/types.d.ts.map +1 -0
- package/dist/types/primitives/context/session/types.d.ts +8 -4
- package/dist/types/primitives/context/session/types.d.ts.map +1 -1
- package/dist/types/primitives/reactive/effectStack/main.d.ts.map +1 -1
- package/dist/types/primitives/reactive/reflex/helpers.d.ts.map +1 -1
- package/dist/types/primitives/reactive/reflex/main.d.ts.map +1 -1
- package/dist/types/primitives/reactive/watchlist/helpers.d.ts.map +1 -1
- package/dist/types/primitives/reactive/watchlist/main.d.ts +1 -1
- package/dist/types/primitives/reactive/watchlist/main.d.ts.map +1 -1
- package/dist/types/primitives/time/interval/main.d.ts.map +1 -1
- package/dist/types/translations/index.d.ts +108 -0
- package/dist/types/translations/index.d.ts.map +1 -1
- package/dist/types/types/api/endpoints.d.ts +18 -2
- package/dist/types/types/api/endpoints.d.ts.map +1 -1
- package/dist/types/types/api/models/index.d.ts +1 -0
- package/dist/types/types/api/models/index.d.ts.map +1 -1
- package/dist/types/types/api/models/reports.d.ts +4 -0
- package/dist/types/types/api/models/reports.d.ts.map +1 -0
- package/dist/types/types/api/resources/BalanceAccountsResource.d.ts +8 -8
- package/dist/types/types/api/resources/BalanceAccountsResource.d.ts.map +1 -1
- package/dist/types/types/api/resources/PayoutsResource.d.ts +19 -19
- package/dist/types/types/api/resources/PayoutsResource.d.ts.map +1 -1
- package/dist/types/types/api/resources/ReportsResource.d.ts +92 -0
- package/dist/types/types/api/resources/ReportsResource.d.ts.map +1 -0
- package/dist/types/types/api/resources/SetupResource.d.ts +1 -1
- package/dist/types/types/api/resources/SetupResource.d.ts.map +1 -1
- package/dist/types/types/api/resources/TransactionsResource.d.ts +25 -25
- package/dist/types/types/api/resources/TransactionsResource.d.ts.map +1 -1
- package/dist/types/utils/abort/constants.d.ts +5 -0
- package/dist/types/utils/abort/constants.d.ts.map +1 -0
- package/dist/types/utils/abort/internals.d.ts +4 -0
- package/dist/types/utils/abort/internals.d.ts.map +1 -0
- package/dist/types/utils/abort/main.d.ts +9 -0
- package/dist/types/utils/abort/main.d.ts.map +1 -0
- package/dist/types/utils/async/main.d.ts.map +1 -1
- package/dist/types/utils/collection/main.d.ts +1 -1
- package/dist/types/utils/collection/main.d.ts.map +1 -1
- package/dist/types/utils/common.d.ts +2 -2
- package/dist/types/utils/common.d.ts.map +1 -1
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/index.d.ts.map +1 -1
- package/dist/types/utils/preact/fixedForwardRef.d.ts +3 -3
- package/dist/types/utils/preact/fixedForwardRef.d.ts.map +1 -1
- package/dist/types/utils/struct/main.d.ts +1 -1
- package/dist/types/utils/struct/main.d.ts.map +1 -1
- package/dist/types/utils/struct/property.d.ts.map +1 -1
- package/dist/types/utils/value/is.d.ts +2 -2
- package/dist/types/utils/value/is.d.ts.map +1 -1
- package/dist/types/utils/value/number.d.ts.map +1 -1
- package/package.json +158 -106
- package/dist/es/primitives/auxiliary/abortSink/main.js +0 -42
- package/dist/types/core/Analytics/types.d.ts +0 -28
- package/dist/types/core/Analytics/types.d.ts.map +0 -1
- package/dist/types/primitives/auxiliary/abortSink/index.d.ts +0 -3
- package/dist/types/primitives/auxiliary/abortSink/index.d.ts.map +0 -1
- package/dist/types/primitives/auxiliary/abortSink/main.d.ts +0 -5
- package/dist/types/primitives/auxiliary/abortSink/main.d.ts.map +0 -1
- package/dist/types/primitives/auxiliary/abortSink/types.d.ts +0 -7
- package/dist/types/primitives/auxiliary/abortSink/types.d.ts.map +0 -1
- package/dist/types/types/api/resources/PaymentInstrumentsResource.d.ts +0 -70
- package/dist/types/types/api/resources/PaymentInstrumentsResource.d.ts.map +0 -1
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
var ri = Object.defineProperty;
|
|
2
|
-
var oi = (
|
|
3
|
-
var It = (
|
|
4
|
-
if (!i.has(
|
|
2
|
+
var oi = (m, i, e) => i in m ? ri(m, i, { enumerable: !0, configurable: !0, writable: !0, value: e }) : m[i] = e;
|
|
3
|
+
var It = (m, i, e) => (oi(m, typeof i != "symbol" ? i + "" : i, e), e), Dt = (m, i, e) => {
|
|
4
|
+
if (!i.has(m))
|
|
5
5
|
throw TypeError("Cannot " + e);
|
|
6
6
|
};
|
|
7
|
-
var t = (
|
|
8
|
-
if (i.has(
|
|
7
|
+
var t = (m, i, e) => (Dt(m, i, "read from private field"), e ? e.call(m) : i.get(m)), h = (m, i, e) => {
|
|
8
|
+
if (i.has(m))
|
|
9
9
|
throw TypeError("Cannot add the same private member more than once");
|
|
10
|
-
i instanceof WeakSet ? i.add(
|
|
11
|
-
}, r = (
|
|
12
|
-
var c = (
|
|
10
|
+
i instanceof WeakSet ? i.add(m) : i.set(m, e);
|
|
11
|
+
}, r = (m, i, e, o) => (Dt(m, i, "write to private field"), o ? o.call(m, e) : i.set(m, e), e);
|
|
12
|
+
var c = (m, i, e) => (Dt(m, i, "access private method"), e);
|
|
13
13
|
import { InteractionKeyCode as g } from "../../../../types.js";
|
|
14
|
-
import { SELECT_NONE as ot, CALENDAR_CONTROLS as xt, SHIFT_BLOCK as ai, SHIFT_PERIOD as Lt, SHIFT_FRAME as ni, CALENDAR_SELECTIONS as ci, SELECT_MANY as j, FRAME_SIZES as li, FIRST_WEEK_DAYS as fi, CURSOR_NEXT_BLOCK as ui, CURSOR_PREV_BLOCK as
|
|
14
|
+
import { SELECT_NONE as ot, CALENDAR_CONTROLS as xt, SHIFT_BLOCK as ai, SHIFT_PERIOD as Lt, SHIFT_FRAME as ni, CALENDAR_SELECTIONS as ci, SELECT_MANY as j, FRAME_SIZES as li, FIRST_WEEK_DAYS as fi, CURSOR_NEXT_BLOCK as ui, CURSOR_PREV_BLOCK as mi, CURSOR_BLOCK_END as di, CURSOR_LINE_END as Si, CURSOR_BLOCK_START as Ei, CURSOR_LINE_START as Oi, CURSOR_DOWNWARD as Ri, CURSOR_UPWARD as gi, CURSOR_FORWARD as Ci, CURSOR_BACKWARD as ki, SELECT_ONE as at, SELECTION_FROM as O, SELECTION_TO as N, CONTROLS_NONE as Ti, CONTROLS_MINIMAL as pi, CONTROLS_ALL as Fi, SELECTION_COLLAPSE as bi } from "../constants.js";
|
|
15
15
|
import { CalendarShiftControlsFlag as vt, CalendarShiftControlFlag as V } from "../types.js";
|
|
16
16
|
import Ni from "../../../../../primitives/time/today/main.js";
|
|
17
17
|
import { createIndexed as _t } from "../../../../../primitives/auxiliary/indexed/main.js";
|
|
@@ -25,10 +25,10 @@ import { withFreezeProxyHandlers as Di, structFrom as Li, struct as _i } from ".
|
|
|
25
25
|
import { isNullish as nt, isFunction as D, isString as Vt, isUndefined as Gt } from "../../../../../utils/value/is.js";
|
|
26
26
|
import { noop as zt } from "../../../../../utils/common.js";
|
|
27
27
|
import { isBitSafeInteger as Hi } from "../../../../../utils/value/number.js";
|
|
28
|
-
var qt, Jt, f, p, s, F, C, b, E, w, R,
|
|
28
|
+
var qt, Jt, f, p, s, F, C, b, E, w, R, K, A, I, k, y, U, ft, L, T, ut, _, x, M, Z, mt, dt, St, Et, Ot, Rt, gt, Ct, Zt, kt, $t, Tt, Qt, pt, v, ct, P, q, $, Ht, Ft, ti, bt, ii, Nt, si, yt, ei, Q, Wt, At, hi, B, J, tt, wt, Y, lt, it, Mt, st, Pt, et, Bt, ht, Kt;
|
|
29
29
|
const l = class l {
|
|
30
30
|
constructor() {
|
|
31
|
-
h(this,
|
|
31
|
+
h(this, P);
|
|
32
32
|
h(this, $);
|
|
33
33
|
h(this, Ft);
|
|
34
34
|
h(this, bt);
|
|
@@ -36,7 +36,7 @@ const l = class l {
|
|
|
36
36
|
h(this, yt);
|
|
37
37
|
h(this, Q);
|
|
38
38
|
h(this, At);
|
|
39
|
-
h(this,
|
|
39
|
+
h(this, B);
|
|
40
40
|
h(this, tt);
|
|
41
41
|
h(this, Y);
|
|
42
42
|
h(this, it);
|
|
@@ -54,28 +54,25 @@ const l = class l {
|
|
|
54
54
|
h(this, E, ot);
|
|
55
55
|
h(this, w, !1);
|
|
56
56
|
h(this, R, void 0);
|
|
57
|
-
h(this,
|
|
57
|
+
h(this, K, (qt = t(this, R)) == null ? void 0 : qt.join(" "));
|
|
58
58
|
h(this, A, void 0);
|
|
59
59
|
h(this, I, void 0);
|
|
60
60
|
h(this, k, void 0);
|
|
61
61
|
h(this, y, void 0);
|
|
62
|
-
h(this,
|
|
62
|
+
h(this, U, void 0);
|
|
63
63
|
h(this, ft, Ni());
|
|
64
64
|
h(this, L, []);
|
|
65
65
|
h(this, T, void 0);
|
|
66
|
-
h(this, ut, new Proxy(
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
})
|
|
78
|
-
));
|
|
66
|
+
h(this, ut, new Proxy(_t(() => {
|
|
67
|
+
var i;
|
|
68
|
+
return ((i = t(this, T)) == null ? void 0 : i.length) ?? 0;
|
|
69
|
+
}, c(this, Q, Wt).bind(this)), Di({
|
|
70
|
+
get: (i, e, o) => {
|
|
71
|
+
var n, u;
|
|
72
|
+
const a = ((n = t(this, T)) == null ? void 0 : n.indexOf(e)) ?? -1;
|
|
73
|
+
return a >= 0 ? (u = c(this, Q, Wt).call(this, a)) == null ? void 0 : u[1] : Reflect.get(i, e, o);
|
|
74
|
+
}
|
|
75
|
+
})));
|
|
79
76
|
h(this, _, yi({
|
|
80
77
|
blocks: () => {
|
|
81
78
|
var i;
|
|
@@ -111,121 +108,121 @@ const l = class l {
|
|
|
111
108
|
today: () => t(this, ft).timestamp
|
|
112
109
|
}));
|
|
113
110
|
h(this, x, (Jt = t(this, _)) == null ? void 0 : Jt.snapshot);
|
|
114
|
-
h(this,
|
|
111
|
+
h(this, M, jt(() => {
|
|
115
112
|
var i;
|
|
116
113
|
return t(this, k) && ((i = t(this, _)) == null ? void 0 : i.requestNotification());
|
|
117
114
|
}));
|
|
118
115
|
h(this, Z, jt(() => {
|
|
119
116
|
var i;
|
|
120
|
-
return (i = t(this, k)) == null ? void 0 : i.call(t(this,
|
|
117
|
+
return (i = t(this, k)) == null ? void 0 : i.call(t(this, P, q));
|
|
121
118
|
}));
|
|
122
|
-
h(this,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
t(this, p) || (nt(i) ? r(this, A, void 0) : D(i) && r(this, A, i));
|
|
142
|
-
}
|
|
143
|
-
},
|
|
144
|
-
shiftFactor: {
|
|
145
|
-
get: () => t(this, I),
|
|
146
|
-
set: (i) => {
|
|
147
|
-
t(this, p) || (nt(i) ? r(this, I, void 0) : D(i) && r(this, I, i));
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
watch: {
|
|
151
|
-
get: () => t(this, k),
|
|
152
|
-
set: (i) => {
|
|
153
|
-
var e, o, a, n, u;
|
|
154
|
-
if (!t(this, p))
|
|
155
|
-
if (D(i)) {
|
|
156
|
-
if (r(this, k, i), !t(this, y)) {
|
|
157
|
-
const S = (e = t(this, P)) == null ? void 0 : e.bind(t(l, pt).bind(this));
|
|
158
|
-
S && (r(this, y, (o = t(this, P)) == null ? void 0 : o.bind(zt)), r(this, M, (n = t(this, _)) == null ? void 0 : n.subscribe((a = t(this, Z)) == null ? void 0 : a.bind(S))), t(this, s) && (t(this, s).effect = t(this, y)));
|
|
159
|
-
}
|
|
160
|
-
if (!t(this, w))
|
|
161
|
-
return;
|
|
162
|
-
r(this, w, !1), (u = t(this, y)) == null || u.call(this);
|
|
163
|
-
} else
|
|
164
|
-
nt(i) && r(this, k, void 0);
|
|
165
|
-
}
|
|
166
|
-
}
|
|
119
|
+
h(this, mt, Li(_t(() => {
|
|
120
|
+
var i;
|
|
121
|
+
return ((i = t(this, s)) == null ? void 0 : i.size) ?? 0;
|
|
122
|
+
}, (i) => {
|
|
123
|
+
var e;
|
|
124
|
+
return (e = t(this, s)) == null ? void 0 : e.frameBlocks[i];
|
|
125
|
+
}), {
|
|
126
|
+
config: {
|
|
127
|
+
value: Object.defineProperties((i) => (i && c(this, bt, ii).call(this, i), t(this, P, q)), {
|
|
128
|
+
cursorIndex: {
|
|
129
|
+
get: () => t(this, A),
|
|
130
|
+
set: (i) => {
|
|
131
|
+
t(this, p) || (nt(i) ? r(this, A, void 0) : D(i) && r(this, A, i));
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
shiftFactor: {
|
|
135
|
+
get: () => t(this, I),
|
|
136
|
+
set: (i) => {
|
|
137
|
+
t(this, p) || (nt(i) ? r(this, I, void 0) : D(i) && r(this, I, i));
|
|
167
138
|
}
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
139
|
+
},
|
|
140
|
+
watch: {
|
|
141
|
+
get: () => t(this, k),
|
|
142
|
+
set: (i) => {
|
|
143
|
+
var e, o, a, n, u;
|
|
144
|
+
if (!t(this, p))
|
|
145
|
+
if (D(i)) {
|
|
146
|
+
if (r(this, k, i), !t(this, y)) {
|
|
147
|
+
const d = (e = t(this, M)) == null ? void 0 : e.bind(t(l, pt).bind(this));
|
|
148
|
+
d && (r(this, y, (o = t(this, M)) == null ? void 0 : o.bind(zt)), r(this, U, (n = t(this, _)) == null ? void 0 : n.subscribe((a = t(this, Z)) == null ? void 0 : a.bind(d))), t(this, s) && (t(this, s).effect = t(this, y)));
|
|
149
|
+
}
|
|
150
|
+
if (!t(this, w))
|
|
151
|
+
return;
|
|
152
|
+
r(this, w, !1), (u = t(this, y)) == null || u.call(this);
|
|
153
|
+
} else
|
|
154
|
+
nt(i) && r(this, k, void 0);
|
|
179
155
|
}
|
|
180
|
-
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
156
|
+
}
|
|
157
|
+
})
|
|
158
|
+
},
|
|
159
|
+
controls: {
|
|
160
|
+
value: t(this, ut)
|
|
161
|
+
},
|
|
162
|
+
cursor: {
|
|
163
|
+
value: Object.defineProperties((i) => c(l, v, ct).call(this, (e) => !!(e && c(this, Nt, si).call(this, e)))(i), {
|
|
164
|
+
valueOf: {
|
|
165
|
+
value: () => {
|
|
166
|
+
var i;
|
|
167
|
+
return ((i = t(this, s)) == null ? void 0 : i.cursor) ?? -1;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
})
|
|
171
|
+
},
|
|
172
|
+
highlight: {
|
|
173
|
+
value: (() => {
|
|
174
|
+
const i = () => t(this, F) === t(this, C) && Gt(t(this, C)), e = (o) => (a) => c(l, v, ct).call(this, (n) => {
|
|
175
|
+
var u, d, S, H, W;
|
|
176
|
+
if (!(t(this, p) || !t(this, E) || t(this, E) === ot)) {
|
|
177
|
+
if (nt(n))
|
|
178
|
+
return c(this, tt, wt).call(this);
|
|
179
|
+
i() ? (d = t(this, s)) == null || d.updateSelection(n, bi) : ((u = t(this, s)) == null || u.updateSelection(n, o), t(this, E) === j && t(this, R) && c(this, Y, lt).call(this, n, o === O ? N : O, t(this, R))), r(this, F, (S = t(this, s)) == null ? void 0 : S.selectionStart), r(this, C, (H = t(this, s)) == null ? void 0 : H.selectionEnd), (W = t(this, s)) == null || W.shiftFrameToTimestamp(o === O ? t(this, F) : t(this, C));
|
|
180
|
+
}
|
|
181
|
+
})(a);
|
|
182
|
+
return _i({
|
|
183
|
+
blank: {
|
|
184
|
+
get: i
|
|
185
|
+
},
|
|
186
|
+
from: {
|
|
187
|
+
get: () => {
|
|
188
|
+
var o;
|
|
189
|
+
return ((o = t(this, s)) == null ? void 0 : o.selectionStart) ?? t(this, F);
|
|
190
|
+
},
|
|
191
|
+
set: e(O)
|
|
192
|
+
},
|
|
193
|
+
to: {
|
|
194
|
+
get: () => {
|
|
195
|
+
var o;
|
|
196
|
+
return ((o = t(this, s)) == null ? void 0 : o.selectionEnd) ?? t(this, C);
|
|
200
197
|
},
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
});
|
|
209
|
-
})()
|
|
210
|
-
},
|
|
211
|
-
rowspan: { get: () => {
|
|
198
|
+
set: e(N)
|
|
199
|
+
}
|
|
200
|
+
});
|
|
201
|
+
})()
|
|
202
|
+
},
|
|
203
|
+
rowspan: {
|
|
204
|
+
get: () => {
|
|
212
205
|
var i;
|
|
213
206
|
return ((i = t(this, s)) == null ? void 0 : i.rowspan) ?? 0;
|
|
214
|
-
}
|
|
215
|
-
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
weekdays: {
|
|
210
|
+
get: () => {
|
|
216
211
|
var i;
|
|
217
212
|
return ((i = t(this, s)) == null ? void 0 : i.daysOfWeek) ?? t(l, Et);
|
|
218
|
-
}
|
|
213
|
+
}
|
|
219
214
|
}
|
|
220
|
-
));
|
|
221
|
-
this.grid = t(this,
|
|
215
|
+
}));
|
|
216
|
+
this.grid = t(this, mt), this.kill = c(this, yt, ei).bind(this);
|
|
222
217
|
}
|
|
223
218
|
};
|
|
224
|
-
f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C = new WeakMap(), b = new WeakMap(), E = new WeakMap(), w = new WeakMap(), R = new WeakMap(),
|
|
225
|
-
if (!Vt(i) || !t(l,
|
|
219
|
+
f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C = new WeakMap(), b = new WeakMap(), E = new WeakMap(), w = new WeakMap(), R = new WeakMap(), K = new WeakMap(), A = new WeakMap(), I = new WeakMap(), k = new WeakMap(), y = new WeakMap(), U = new WeakMap(), ft = new WeakMap(), L = new WeakMap(), T = new WeakMap(), ut = new WeakMap(), _ = new WeakMap(), x = new WeakMap(), M = new WeakMap(), Z = new WeakMap(), mt = new WeakMap(), dt = new WeakMap(), St = new WeakMap(), Et = new WeakMap(), Ot = new WeakMap(), Rt = new WeakMap(), gt = new WeakMap(), Ct = new WeakSet(), Zt = function(i) {
|
|
220
|
+
if (!Vt(i) || !t(l, dt).test(i))
|
|
226
221
|
return;
|
|
227
222
|
const e = i.split(/\s+/);
|
|
228
|
-
return Array.from({
|
|
223
|
+
return Array.from({
|
|
224
|
+
length: 6
|
|
225
|
+
}, (o, a) => parseInt(e[a] ?? "0"));
|
|
229
226
|
}, kt = new WeakSet(), $t = function(i) {
|
|
230
227
|
switch (i & ~V.PREV) {
|
|
231
228
|
case V.FRAME:
|
|
@@ -240,9 +237,11 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
240
237
|
return i & V.PREV ? -1 : 1;
|
|
241
238
|
}, pt = new WeakMap(), v = new WeakSet(), ct = function(i) {
|
|
242
239
|
var e;
|
|
243
|
-
return ((e = t(this,
|
|
244
|
-
},
|
|
245
|
-
return {
|
|
240
|
+
return ((e = t(this, M)) == null ? void 0 : e.bind(i)) ?? i;
|
|
241
|
+
}, P = new WeakSet(), q = function() {
|
|
242
|
+
return {
|
|
243
|
+
...t(this, f)
|
|
244
|
+
};
|
|
246
245
|
}, $ = new WeakSet(), Ht = function() {
|
|
247
246
|
return new Ii();
|
|
248
247
|
}, Ft = new WeakSet(), ti = function(i) {
|
|
@@ -264,10 +263,10 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
264
263
|
minified: z(i == null ? void 0 : i.minified, t(this, f).minified),
|
|
265
264
|
trackCurrentDay: z(i == null ? void 0 : i.trackCurrentDay, t(this, f).trackCurrentDay)
|
|
266
265
|
}), !D(t(this, k))) {
|
|
267
|
-
t(this, s) ? r(this, w, !0) : (r(this, s, t(this, $, Ht)), c(this, st,
|
|
266
|
+
t(this, s) ? r(this, w, !0) : (r(this, s, t(this, $, Ht)), c(this, st, Pt).call(this), c(this, ht, Kt).call(this), c(this, et, Bt).call(this));
|
|
268
267
|
return;
|
|
269
268
|
}
|
|
270
|
-
(!t(this, s) || o !== t(this, f).minified) && (r(this, s, t(this, $, Ht)), t(this, s).effect = t(this, y)), c(this, st,
|
|
269
|
+
(!t(this, s) || o !== t(this, f).minified) && (r(this, s, t(this, $, Ht)), t(this, s).effect = t(this, y)), c(this, st, Pt).call(this), (n = t(this, y)) == null || n.call(this);
|
|
271
270
|
}, Nt = new WeakSet(), si = function(i) {
|
|
272
271
|
if (i && t(this, s) && D(t(this, k))) {
|
|
273
272
|
if (i instanceof KeyboardEvent) {
|
|
@@ -288,51 +287,51 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
288
287
|
t(this, s).shiftFrameCursor(i.ctrlKey ? Ei : Oi);
|
|
289
288
|
break;
|
|
290
289
|
case g.END:
|
|
291
|
-
t(this, s).shiftFrameCursor(i.ctrlKey ?
|
|
290
|
+
t(this, s).shiftFrameCursor(i.ctrlKey ? di : Si);
|
|
292
291
|
break;
|
|
293
292
|
case g.PAGE_UP:
|
|
294
|
-
i.shiftKey ? t(this, s).shiftFrameByOffset(-1, Lt) : t(this, s).shiftFrameCursor(
|
|
293
|
+
i.shiftKey ? t(this, s).shiftFrameByOffset(-1, Lt) : t(this, s).shiftFrameCursor(mi);
|
|
295
294
|
break;
|
|
296
295
|
case g.PAGE_DOWN:
|
|
297
296
|
i.shiftKey ? t(this, s).shiftFrameByOffset(1, Lt) : t(this, s).shiftFrameCursor(ui);
|
|
298
297
|
break;
|
|
299
298
|
case g.SPACE:
|
|
300
299
|
case g.ENTER:
|
|
301
|
-
return c(this,
|
|
300
|
+
return c(this, B, J).call(this), !0;
|
|
302
301
|
default:
|
|
303
302
|
return;
|
|
304
303
|
}
|
|
305
|
-
return t(this, b) && c(this,
|
|
304
|
+
return t(this, b) && c(this, B, J).call(this, X), !0;
|
|
306
305
|
}
|
|
307
|
-
if (i instanceof MouseEvent && t(l,
|
|
308
|
-
const e = t(this, A).call(t(this,
|
|
306
|
+
if (i instanceof MouseEvent && t(l, St).includes(i.type) && D(t(this, A))) {
|
|
307
|
+
const e = t(this, A).call(t(this, P, q), i);
|
|
309
308
|
if (!Hi(e))
|
|
310
309
|
return;
|
|
311
310
|
const o = i.type === "click";
|
|
312
311
|
if (!(o || t(this, b)))
|
|
313
312
|
return;
|
|
314
313
|
if (t(this, s).shiftFrameCursor(e), t(this, s).cursor === e)
|
|
315
|
-
return o ? c(this,
|
|
314
|
+
return o ? c(this, B, J).call(this) : c(this, B, J).call(this, X), !0;
|
|
316
315
|
}
|
|
317
316
|
}
|
|
318
317
|
}, yt = new WeakSet(), ei = function() {
|
|
319
318
|
var i;
|
|
320
|
-
t(this, p) || ((i = t(this,
|
|
319
|
+
t(this, p) || ((i = t(this, U)) == null || i.call(this), r(this, M, r(this, Z, r(this, A, r(this, s, r(this, E, r(this, K, r(this, x, r(this, R, r(this, I, r(this, U, r(this, _, r(this, y, r(this, k, void 0))))))))))))), r(this, f, X), r(this, b, r(this, w, !1)), r(this, p, !0));
|
|
321
320
|
}, Q = new WeakSet(), Wt = function(i) {
|
|
322
321
|
var o, a;
|
|
323
322
|
if (!t(this, T) || i < 0 || i >= t(this, T).length)
|
|
324
323
|
return;
|
|
325
324
|
const e = t(this, T)[i];
|
|
326
325
|
if (!t(this, L)[i]) {
|
|
327
|
-
const n = vt[e], u = c(o = l, kt, $t).call(o, n),
|
|
328
|
-
t(this, L)[i] = (...
|
|
329
|
-
var
|
|
330
|
-
const W = c(this, Ft, ti).call(this,
|
|
326
|
+
const n = vt[e], u = c(o = l, kt, $t).call(o, n), d = c(a = l, Tt, Qt).call(a, n);
|
|
327
|
+
t(this, L)[i] = (...S) => c(l, v, ct).call(this, (...H) => {
|
|
328
|
+
var Ut;
|
|
329
|
+
const W = c(this, Ft, ti).call(this, d);
|
|
331
330
|
if (!(W && H.length))
|
|
332
331
|
return W;
|
|
333
332
|
const rt = c(this, At, hi).call(this, e, H[0]);
|
|
334
|
-
return Gt(rt) ? !1 : ((
|
|
335
|
-
})(...
|
|
333
|
+
return Gt(rt) ? !1 : ((Ut = t(this, s)) == null || Ut.shiftFrameByOffset(d * rt, u), !0);
|
|
334
|
+
})(...S);
|
|
336
335
|
}
|
|
337
336
|
return [e, t(this, L)[i]];
|
|
338
337
|
}, At = new WeakSet(), hi = function(i, e) {
|
|
@@ -348,11 +347,11 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
348
347
|
return;
|
|
349
348
|
let o = 1;
|
|
350
349
|
if (D(t(this, I))) {
|
|
351
|
-
const a = Number(t(this, I).call(t(this,
|
|
350
|
+
const a = Number(t(this, I).call(t(this, P, q), e, i));
|
|
352
351
|
o = Number.isInteger(a) && a >= 1 ? a : o;
|
|
353
352
|
}
|
|
354
353
|
return o;
|
|
355
|
-
},
|
|
354
|
+
}, B = new WeakSet(), J = function(i) {
|
|
356
355
|
if (t(this, p) || !t(this, s))
|
|
357
356
|
return;
|
|
358
357
|
switch (t(this, E)) {
|
|
@@ -363,7 +362,7 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
363
362
|
default:
|
|
364
363
|
return;
|
|
365
364
|
}
|
|
366
|
-
const e = t(this, s).cursor, o = t(this, s).getTimestampAtIndex(e), a = t(this, s).getTimestampAtIndex(e + 1) - 1, n = t(this, R);
|
|
365
|
+
const e = t(this, s).cursor, o = Math.max(t(this, s).getTimestampAtIndex(e), t(this, s).timeslice.from), a = Math.min(t(this, s).getTimestampAtIndex(e + 1) - 1, t(this, s).timeslice.to), n = t(this, R);
|
|
367
366
|
if (t(this, E) === at || t(this, s).blankSelection || n)
|
|
368
367
|
if (r(this, b, !(t(this, E) === at || n)), t(this, E) === j && n) {
|
|
369
368
|
const u = a >= t(this, s).selectionEnd ? O : N;
|
|
@@ -373,11 +372,11 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
373
372
|
else {
|
|
374
373
|
const u = i === X;
|
|
375
374
|
if (u || r(this, b, !1), o <= t(this, s).selectionStart) {
|
|
376
|
-
const
|
|
377
|
-
o === t(this, s).selectionStart && a <=
|
|
375
|
+
const d = new Date(t(this, s).selectionStart), S = Math.min(d.setDate(d.getDate() + 1) - 1, t(this, s).timeslice.to);
|
|
376
|
+
o === t(this, s).selectionStart && a <= S && t(this, s).updateSelection(a, N), t(this, s).updateSelection(o, O);
|
|
378
377
|
} else {
|
|
379
|
-
const
|
|
380
|
-
o <= t(this, s).selectionEnd && o >=
|
|
378
|
+
const d = new Date(t(this, s).selectionEnd), S = Math.max(d.setHours(0, 0, 0, 0), t(this, s).timeslice.from);
|
|
379
|
+
o <= t(this, s).selectionEnd && o >= S && t(this, s).updateSelection(o, O), t(this, s).updateSelection(a, N);
|
|
381
380
|
}
|
|
382
381
|
if (u)
|
|
383
382
|
return;
|
|
@@ -389,14 +388,14 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
389
388
|
}, Y = new WeakSet(), lt = function(i, e, o) {
|
|
390
389
|
if (!t(this, s))
|
|
391
390
|
return;
|
|
392
|
-
const a = new Date(i), n = e === O ? -1 : 1, [u = 0,
|
|
393
|
-
a.setFullYear(a.getFullYear() + u * n, a.getMonth() +
|
|
394
|
-
}, it = new WeakSet(),
|
|
391
|
+
const a = new Date(i), n = e === O ? -1 : 1, [u = 0, d = 0, S = 0, H = 0, W = 0, rt = 0] = o ?? [];
|
|
392
|
+
a.setFullYear(a.getFullYear() + u * n, a.getMonth() + d * n, a.getDate() + S * n), a.setHours(a.getHours() + H * n, a.getMinutes() + W * n, a.getSeconds() + rt * n), t(this, s).updateSelection(a.getTime() - n, e);
|
|
393
|
+
}, it = new WeakSet(), Mt = function() {
|
|
395
394
|
var i, e;
|
|
396
395
|
t(this, F) && ((i = t(this, s)) == null || i.updateSelection(t(this, F), O)), t(this, C) && ((e = t(this, s)) == null || e.updateSelection(t(this, C), N)), r(this, b, !1);
|
|
397
|
-
}, st = new WeakSet(),
|
|
398
|
-
t(this, s) && (t(this, s).timeslice = t(this, f).timeslice, t(this, s).dynamicBlockHeight = !t(this, f).fixedBlockHeight, t(this, s).firstWeekDay = t(this, f).firstWeekDay, t(this, s).locale = t(this, f).locale, t(this, s).size = t(this, f).blocks, t(this, s).trackCurrentDay = t(this, f).trackCurrentDay, c(this, it,
|
|
399
|
-
}, et = new WeakSet(),
|
|
396
|
+
}, st = new WeakSet(), Pt = function() {
|
|
397
|
+
t(this, s) && (t(this, s).timeslice = t(this, f).timeslice, t(this, s).dynamicBlockHeight = !t(this, f).fixedBlockHeight, t(this, s).firstWeekDay = t(this, f).firstWeekDay, t(this, s).locale = t(this, f).locale, t(this, s).size = t(this, f).blocks, t(this, s).trackCurrentDay = t(this, f).trackCurrentDay, c(this, it, Mt).call(this));
|
|
398
|
+
}, et = new WeakSet(), Bt = function() {
|
|
400
399
|
var i, e, o, a, n;
|
|
401
400
|
switch (t(this, E)) {
|
|
402
401
|
case j:
|
|
@@ -410,7 +409,7 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
410
409
|
c(this, tt, wt).call(this);
|
|
411
410
|
return;
|
|
412
411
|
}
|
|
413
|
-
}, ht = new WeakSet(),
|
|
412
|
+
}, ht = new WeakSet(), Kt = function() {
|
|
414
413
|
var i, e;
|
|
415
414
|
switch ((i = t(this, _)) == null ? void 0 : i.snapshot.controls) {
|
|
416
415
|
case Fi:
|
|
@@ -424,15 +423,15 @@ f = new WeakMap(), p = new WeakMap(), s = new WeakMap(), F = new WeakMap(), C =
|
|
|
424
423
|
r(this, T, void 0);
|
|
425
424
|
}
|
|
426
425
|
t(this, L).length = 0, t(this, L).length = ((e = t(this, T)) == null ? void 0 : e.length) ?? 0;
|
|
427
|
-
}, h(l, Ct), h(l, kt), h(l, Tt), h(l, v), h(l,
|
|
428
|
-
var u,
|
|
426
|
+
}, h(l, Ct), h(l, kt), h(l, Tt), h(l, v), h(l, dt, /^(?:0|[1-9]\d*)(\s+(?:0|[1-9]\d*)?){0,5}?$/), h(l, St, ["click", "mouseover", "pointerover"]), h(l, Et, _t(0, zt)), h(l, Ot, [g.ENTER, g.SPACE]), h(l, Rt, Object.keys(vt).filter((i) => isNaN(+i))), h(l, gt, ["PREV", "NEXT"]), h(l, pt, function(i) {
|
|
427
|
+
var u, d;
|
|
429
428
|
if (Ai(i))
|
|
430
429
|
return;
|
|
431
430
|
let e = !1, o = !1, a = !1;
|
|
432
431
|
const n = (u = t(this, R)) == null ? void 0 : u.join(" ");
|
|
433
|
-
for (const
|
|
434
|
-
i[
|
|
435
|
-
t(this,
|
|
432
|
+
for (const S of Object.keys(i))
|
|
433
|
+
i[S] !== ((d = t(this, x)) == null ? void 0 : d[S]) && (S === "controls" ? e = !0 : S === "highlight" ? o = !0 : (S === "from" || S === "to") && (a = !0));
|
|
434
|
+
t(this, K) !== n && (r(this, K, n), o = !0), r(this, x, i), t(this, b) && !a && c(this, it, Mt).call(this), e && c(this, ht, Kt).call(this), o && c(this, et, Bt).call(this);
|
|
436
435
|
});
|
|
437
436
|
let Xt = l;
|
|
438
437
|
export {
|
|
@@ -6,8 +6,13 @@ import { isNumber as v, isFunction as d } from "../../../../../utils/value/is.js
|
|
|
6
6
|
import { ALREADY_RESOLVED_PROMISE as p } from "../../../../../utils/async/constants.js";
|
|
7
7
|
import { enumerable as o } from "../../../../../utils/struct/property.js";
|
|
8
8
|
const A = (() => Object.defineProperties((e) => {
|
|
9
|
-
const {
|
|
10
|
-
|
|
9
|
+
const {
|
|
10
|
+
grid: r,
|
|
11
|
+
kill: N
|
|
12
|
+
} = new a();
|
|
13
|
+
return v(e) ? r.config({
|
|
14
|
+
blocks: e
|
|
15
|
+
}) : d(e) ? p.then(() => {
|
|
11
16
|
r.config.watch = e;
|
|
12
17
|
}) : r.config(e), l({
|
|
13
18
|
grid: o(r),
|
|
@@ -16,25 +21,47 @@ const A = (() => Object.defineProperties((e) => {
|
|
|
16
21
|
}, {
|
|
17
22
|
controls: {
|
|
18
23
|
value: l({
|
|
19
|
-
ALL: {
|
|
20
|
-
|
|
21
|
-
|
|
24
|
+
ALL: {
|
|
25
|
+
value: t
|
|
26
|
+
},
|
|
27
|
+
MINIMAL: {
|
|
28
|
+
value: O
|
|
29
|
+
},
|
|
30
|
+
NONE: {
|
|
31
|
+
value: i
|
|
32
|
+
}
|
|
22
33
|
})
|
|
23
34
|
},
|
|
24
35
|
highlight: {
|
|
25
36
|
value: l({
|
|
26
|
-
ONE: {
|
|
27
|
-
|
|
28
|
-
|
|
37
|
+
ONE: {
|
|
38
|
+
value: n
|
|
39
|
+
},
|
|
40
|
+
MANY: {
|
|
41
|
+
value: E
|
|
42
|
+
},
|
|
43
|
+
NONE: {
|
|
44
|
+
value: c
|
|
45
|
+
}
|
|
29
46
|
})
|
|
30
47
|
},
|
|
31
48
|
slice: {
|
|
32
49
|
value: Object.defineProperties(s.bind(null), {
|
|
33
|
-
FROM: {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
50
|
+
FROM: {
|
|
51
|
+
value: u
|
|
52
|
+
},
|
|
53
|
+
TO: {
|
|
54
|
+
value: m
|
|
55
|
+
},
|
|
56
|
+
UNBOUNDED: {
|
|
57
|
+
value: L
|
|
58
|
+
},
|
|
59
|
+
SINCE_NOW: {
|
|
60
|
+
get: f
|
|
61
|
+
},
|
|
62
|
+
UNTIL_NOW: {
|
|
63
|
+
get: _
|
|
64
|
+
}
|
|
38
65
|
})
|
|
39
66
|
}
|
|
40
67
|
}))(), D = A;
|
|
@@ -5,25 +5,24 @@ const f = (() => {
|
|
|
5
5
|
const r = {}, n = Object.keys(s).filter((e) => isNaN(+e)), c = (e) => e !== "ALL" && u(e) && n.includes(e);
|
|
6
6
|
return (e) => {
|
|
7
7
|
const t = e & s.ALL;
|
|
8
|
-
return r[t] || (r[t] = new Proxy(
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
return t & s[a] ? 1 : void 0;
|
|
8
|
+
return r[t] || (r[t] = new Proxy(i({
|
|
9
|
+
valueOf: {
|
|
10
|
+
value: () => t
|
|
11
|
+
}
|
|
12
|
+
}), l({
|
|
13
|
+
get: (o, a) => {
|
|
14
|
+
switch (a) {
|
|
15
|
+
case "valueOf":
|
|
16
|
+
return o.valueOf;
|
|
17
|
+
case Symbol.toStringTag:
|
|
18
|
+
return "_";
|
|
19
|
+
default:
|
|
20
|
+
if (!c(a))
|
|
21
|
+
return;
|
|
24
22
|
}
|
|
25
|
-
|
|
26
|
-
|
|
23
|
+
return t & s[a] ? 1 : void 0;
|
|
24
|
+
}
|
|
25
|
+
}))), r[t];
|
|
27
26
|
};
|
|
28
27
|
})(), F = f;
|
|
29
28
|
export {
|