@adyen/adyen-platform-experience-web 1.0.0 → 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.
Files changed (426) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +69 -0
  3. package/dist/cjs/index.js +2 -2
  4. package/dist/cjs/index.js.map +1 -1
  5. package/dist/es/components/external/BaseElement.js +12 -3
  6. package/dist/es/components/external/PayoutDetails/PayoutDetails.js +18 -14
  7. package/dist/es/components/external/PayoutDetails/components/PayoutData.js +200 -85
  8. package/dist/es/components/external/PayoutDetails/components/constants.js +8 -7
  9. package/dist/es/components/external/PayoutsOverview/PayoutsOverviewElement.js +14 -20
  10. package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +137 -116
  11. package/dist/es/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.js +22 -14
  12. package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +92 -56
  13. package/dist/es/components/external/TransactionDetails/TransactionDetails.js +16 -12
  14. package/dist/es/components/external/TransactionDetails/components/TransactionData.js +81 -57
  15. package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +12 -9
  16. package/dist/es/components/external/TransactionsOverview/TransactionsOverviewElement.js +17 -23
  17. package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +16 -4
  18. package/dist/es/components/external/TransactionsOverview/components/BalanceItem/BalanceItem.js +35 -34
  19. package/dist/es/components/external/TransactionsOverview/components/Balances/Balances.js +52 -26
  20. package/dist/es/components/external/TransactionsOverview/components/Category/Category.js +17 -4
  21. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +20 -25
  22. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.js +1 -13
  23. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.js +12 -7
  24. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.js +4 -1
  25. package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +47 -20
  26. package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +22 -13
  27. package/dist/es/components/external/TransactionsOverview/components/TransactionTotalItem/TransactionTotalItem.js +23 -28
  28. package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.js +30 -30
  29. package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +72 -41
  30. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +215 -186
  31. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.js +22 -14
  32. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +21 -14
  33. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +116 -83
  34. package/dist/es/components/external/TransactionsOverview/hooks/useMaxWidths.js +4 -6
  35. package/dist/es/components/external/UIElement/UIElement.js +39 -24
  36. package/dist/es/components/hooks/useBalanceAccountSelection.js +20 -11
  37. package/dist/es/components/hooks/useBalanceAccounts.js +22 -19
  38. package/dist/es/components/hooks/useDefaultOverviewFilterParams.js +28 -16
  39. package/dist/es/components/hooks/useTimezoneAwareDateFormatting.js +31 -0
  40. package/dist/es/components/internal/Accordion/Accordion.js +58 -0
  41. package/dist/es/components/internal/Accordion/Accordion.scss.js +4 -0
  42. package/dist/es/components/internal/Accordion/constants.js +8 -0
  43. package/dist/es/components/internal/BaseButton/BaseButton.js +26 -12
  44. package/dist/es/components/internal/BaseList/BaseList.js +8 -3
  45. package/dist/es/components/internal/Button/Button.js +31 -18
  46. package/dist/es/components/internal/Button/ButtonActions/ButtonActions.js +19 -13
  47. package/dist/es/components/internal/Button/ButtonActions/types.js +4 -1
  48. package/dist/es/components/internal/Button/hooks/useButton.js +7 -10
  49. package/dist/es/components/internal/Calendar/Calendar.js +16 -15
  50. package/dist/es/components/internal/Calendar/calendar/facade/Calendar.js +161 -162
  51. package/dist/es/components/internal/Calendar/calendar/facade/index.js +40 -13
  52. package/dist/es/components/internal/Calendar/calendar/timeframe/common/flags.js +17 -18
  53. package/dist/es/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.js +42 -26
  54. package/dist/es/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.js +32 -24
  55. package/dist/es/components/internal/Calendar/calendar/timerange/factory.js +14 -9
  56. package/dist/es/components/internal/Calendar/calendar/timerange/presets/lastNDays.js +13 -10
  57. package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.js +10 -2
  58. package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.js +22 -15
  59. package/dist/es/components/internal/Calendar/calendar/timerange/presets/yearToDate.js +5 -1
  60. package/dist/es/components/internal/Calendar/calendar/timerange/utils.js +3 -1
  61. package/dist/es/components/internal/Calendar/calendar/timeslice/index.js +15 -5
  62. package/dist/es/components/internal/Calendar/components/CalendarControls/CalendarControls.js +11 -3
  63. package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGrid.js +46 -19
  64. package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.js +57 -39
  65. package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDayOfWeek.js +44 -26
  66. package/dist/es/components/internal/Calendar/components/CalendarGrid/utils.js +26 -12
  67. package/dist/es/components/internal/Calendar/hooks/useCalendar.js +53 -45
  68. package/dist/es/components/internal/Calendar/hooks/useCalendarControlsRendering.js +33 -38
  69. package/dist/es/components/internal/Calendar/hooks/useTimezone.js +24 -8
  70. package/dist/es/components/internal/Card/Card.js +28 -17
  71. package/dist/es/components/internal/CopyText/CopyText.js +15 -11
  72. package/dist/es/components/internal/DataGrid/DataGrid.js +104 -68
  73. package/dist/es/components/internal/DataGrid/DataGridCell.js +24 -23
  74. package/dist/es/components/internal/DataGrid/components/InteractiveBody.js +20 -12
  75. package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +24 -14
  76. package/dist/es/components/internal/DataGrid/components/TableBody.js +14 -9
  77. package/dist/es/components/internal/DataGrid/components/TableCells.js +31 -10
  78. package/dist/es/components/internal/DataGrid/components/TableHeaderCell.js +23 -16
  79. package/dist/es/components/internal/DataGrid/hooks/useInteractiveDataGrid.js +75 -68
  80. package/dist/es/components/internal/DataGrid/utils/DataGridProvider.js +23 -18
  81. package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +15 -15
  82. package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +80 -39
  83. package/dist/es/components/internal/DataOverviewDisplay/DataDetailsModal.js +19 -18
  84. package/dist/es/components/internal/DataOverviewDisplay/constants.js +20 -1
  85. package/dist/es/components/internal/DataOverviewError/DataOverviewError.js +13 -16
  86. package/dist/es/components/internal/DatePicker/DatePicker.js +43 -25
  87. package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/TimeRangeSelector.js +24 -15
  88. package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.js +25 -29
  89. package/dist/es/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.js +48 -27
  90. package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +59 -34
  91. package/dist/es/components/internal/FilterBar/FilterBar.js +29 -28
  92. package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +26 -5
  93. package/dist/es/components/internal/FilterBar/filters/AmountFilter/AmountFilter.js +52 -47
  94. package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +54 -47
  95. package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +83 -90
  96. package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilter.js +40 -44
  97. package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilterCore.js +117 -102
  98. package/dist/es/components/internal/FormFields/InputBase.js +63 -54
  99. package/dist/es/components/internal/FormFields/InputText.js +11 -5
  100. package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +30 -33
  101. package/dist/es/components/internal/FormFields/Select/Select.js +142 -149
  102. package/dist/es/components/internal/FormFields/Select/components/SelectButton.js +81 -61
  103. package/dist/es/components/internal/FormFields/Select/components/SelectList.js +59 -54
  104. package/dist/es/components/internal/FormFields/Select/components/SelectListItem.js +51 -31
  105. package/dist/es/components/internal/FormFields/Select/hooks/useSelect.js +27 -28
  106. package/dist/es/components/internal/Image/Image.js +21 -8
  107. package/dist/es/components/internal/Img/Img.js +25 -9
  108. package/dist/es/components/internal/Modal/Modal.js +61 -81
  109. package/dist/es/components/internal/Modal/ModalContent/ModalContent.js +23 -4
  110. package/dist/es/components/internal/Pagination/Pagination.js +58 -51
  111. package/dist/es/components/internal/Pagination/hooks/useCursorPagination.js +11 -4
  112. package/dist/es/components/internal/Pagination/hooks/useOffsetPagination.js +12 -5
  113. package/dist/es/components/internal/Pagination/hooks/usePageLimit.js +30 -27
  114. package/dist/es/components/internal/Pagination/hooks/usePaginatedRecords.js +104 -67
  115. package/dist/es/components/internal/Pagination/hooks/usePaginatedRecordsFilters.js +7 -1
  116. package/dist/es/components/internal/Pagination/hooks/usePagination.js +34 -13
  117. package/dist/es/components/internal/Popover/Popover.js +118 -128
  118. package/dist/es/components/internal/Popover/PopoverDismissButton/PopoverDismissButton.js +27 -20
  119. package/dist/es/components/internal/Popover/PopoverTitle/PopoverTitle.js +13 -6
  120. package/dist/es/components/internal/Popover/utils/popoverUtil.js +15 -7
  121. package/dist/es/components/internal/Popover/utils/utils.js +9 -8
  122. package/dist/es/components/internal/SVGIcons/CheckedBox.js +18 -10
  123. package/dist/es/components/internal/SVGIcons/Checkmark.js +20 -12
  124. package/dist/es/components/internal/SVGIcons/ChevronDown.js +20 -12
  125. package/dist/es/components/internal/SVGIcons/ChevronLeft.js +18 -10
  126. package/dist/es/components/internal/SVGIcons/ChevronRight.js +18 -10
  127. package/dist/es/components/internal/SVGIcons/ChevronUp.js +20 -12
  128. package/dist/es/components/internal/SVGIcons/Close.js +11 -5
  129. package/dist/es/components/internal/SVGIcons/Copy.js +13 -1
  130. package/dist/es/components/internal/SVGIcons/Filter.js +12 -5
  131. package/dist/es/components/internal/SVGIcons/UncheckedBox.js +18 -4
  132. package/dist/es/components/internal/Spinner/Spinner.js +14 -0
  133. package/dist/es/components/internal/Spinner/Spinner.scss.js +4 -0
  134. package/dist/es/components/internal/StructuredList/StructuredList.js +24 -19
  135. package/dist/es/components/internal/StructuredList/useStructuredListItem.js +14 -15
  136. package/dist/es/components/internal/Tag/Tag.js +16 -16
  137. package/dist/es/components/internal/Tooltip/Tooltip.js +35 -18
  138. package/dist/es/components/internal/Tooltip/useTooltipListeners.js +7 -10
  139. package/dist/es/components/internal/Typography/Typography.js +38 -28
  140. package/dist/es/components/utils/getCommonErrorCode.js +4 -1
  141. package/dist/es/components/utils/getErrorMessage.js +7 -5
  142. package/dist/es/core/Auth/context.js +14 -8
  143. package/dist/es/core/Auth/session/AuthSession.js +53 -73
  144. package/dist/es/core/Auth/session/AuthSessionSpecification.js +54 -39
  145. package/dist/es/core/Auth/session/AuthSetupContext.js +67 -43
  146. package/dist/es/core/Auth/session/constants.js +8 -11
  147. package/dist/es/core/Context/CoreProvider.js +21 -11
  148. package/dist/es/core/Http/http.js +43 -33
  149. package/dist/es/core/Http/utils.js +18 -12
  150. package/dist/es/core/Localization/Localization.js +98 -82
  151. package/dist/es/core/Localization/constants/localization.js +5 -1
  152. package/dist/es/core/Localization/datetime/restamper/constants.js +12 -2
  153. package/dist/es/core/Localization/datetime/restamper/restamper.js +18 -5
  154. package/dist/es/core/Localization/datetime/restamper/utils.js +4 -1
  155. package/dist/es/core/Localization/localization-utils.js +30 -18
  156. package/dist/es/core/Localization/utils.js +6 -1
  157. package/dist/es/core/core.js +26 -17
  158. package/dist/es/hooks/element/useClickOutside.js +29 -35
  159. package/dist/es/hooks/element/useDetachedRender.js +7 -10
  160. package/dist/es/hooks/element/useFocusCursor.js +10 -18
  161. package/dist/es/hooks/element/useFocusTrap.js +3 -6
  162. package/dist/es/hooks/element/usePopoverPositioner.js +43 -65
  163. package/dist/es/hooks/element/useUniqueIdentifier.js +3 -9
  164. package/dist/es/hooks/useCommitAction/useCommitAction.js +25 -19
  165. package/dist/es/hooks/useFetch/useFetch.js +29 -7
  166. package/dist/es/hooks/useImageUrl/useImageUrl.js +12 -10
  167. package/dist/es/hooks/useModalDetails/useModalDetails.js +15 -15
  168. package/dist/es/hooks/useReactiveState/useReactiveState.js +21 -9
  169. package/dist/es/index.js +1 -1
  170. package/dist/es/primitives/async/abortable/main.js +19 -16
  171. package/dist/es/primitives/async/promisor/main.js +13 -12
  172. package/dist/es/primitives/auxiliary/indexed/main.js +18 -22
  173. package/dist/es/primitives/context/session/SessionContext.js +41 -129
  174. package/dist/es/primitives/context/session/constants.js +9 -6
  175. package/dist/es/primitives/context/session/internal/autofresher.js +34 -0
  176. package/dist/es/primitives/context/session/internal/constants.js +7 -0
  177. package/dist/es/primitives/context/session/internal/deadline.js +62 -0
  178. package/dist/es/primitives/context/session/internal/refresher.js +66 -0
  179. package/dist/es/primitives/dom/tabbableRoot/tabbable.js +3 -1
  180. package/dist/es/primitives/reactive/eventEmitter/main.js +11 -19
  181. package/dist/es/primitives/reactive/reflex/main.js +33 -19
  182. package/dist/es/primitives/reactive/reflex/register.js +9 -3
  183. package/dist/es/primitives/reactive/watchlist/helpers.js +12 -8
  184. package/dist/es/primitives/reactive/watchlist/main.js +4 -5
  185. package/dist/es/primitives/time/clock/main.js +6 -1
  186. package/dist/es/primitives/time/interval/main.js +1 -1
  187. package/dist/es/primitives/time/today/main.js +9 -2
  188. package/dist/es/translations/da-DK.json.js +48 -42
  189. package/dist/es/translations/de-DE.json.js +100 -94
  190. package/dist/es/translations/es-ES.json.js +48 -42
  191. package/dist/es/translations/fr-FR.json.js +35 -29
  192. package/dist/es/translations/index.js +21 -1
  193. package/dist/es/translations/it-IT.json.js +27 -21
  194. package/dist/es/translations/nl-NL.json.js +35 -29
  195. package/dist/es/translations/no-NO.json.js +58 -52
  196. package/dist/es/translations/pt-BR.json.js +27 -21
  197. package/dist/es/translations/sv-SE.json.js +53 -47
  198. package/dist/es/utils/abort/constants.js +5 -0
  199. package/dist/es/utils/abort/internals.js +29 -0
  200. package/dist/es/utils/abort/main.js +51 -0
  201. package/dist/es/utils/preact/memoComparator/main.js +3 -1
  202. package/dist/es/utils/struct/main.js +5 -1
  203. package/dist/style.css +1 -1
  204. package/dist/types/components/external/PayoutDetails/PayoutDetails.d.ts.map +1 -1
  205. package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts +40 -3
  206. package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts.map +1 -1
  207. package/dist/types/components/external/PayoutDetails/components/constants.d.ts +1 -0
  208. package/dist/types/components/external/PayoutDetails/components/constants.d.ts.map +1 -1
  209. package/dist/types/components/external/PayoutsOverview/PayoutsOverviewElement.d.ts.map +1 -1
  210. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts +1 -1
  211. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -1
  212. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +1 -2
  213. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -1
  214. package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts +2 -2
  215. package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts.map +1 -1
  216. package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +1 -1
  217. package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
  218. package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.d.ts +2 -2
  219. package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.d.ts.map +1 -1
  220. package/dist/types/components/external/TransactionDetails/index.d.ts +1 -1
  221. package/dist/types/components/external/TransactionDetails/index.d.ts.map +1 -1
  222. package/dist/types/components/external/TransactionDetails/types.d.ts +2 -5
  223. package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
  224. package/dist/types/components/external/TransactionsOverview/TransactionsOverviewElement.d.ts.map +1 -1
  225. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.d.ts +5 -1
  226. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.d.ts.map +1 -1
  227. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.d.ts.map +1 -1
  228. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.d.ts.map +1 -1
  229. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +1 -1
  230. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
  231. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -1
  232. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts.map +1 -1
  233. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts +1 -1
  234. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
  235. package/dist/types/components/external/TransactionsOverview/hooks/useMaxWidths.d.ts.map +1 -1
  236. package/dist/types/components/external/UIElement/UIElement.d.ts.map +1 -1
  237. package/dist/types/components/hooks/useBalanceAccounts.d.ts +1 -1
  238. package/dist/types/components/hooks/useBalanceAccounts.d.ts.map +1 -1
  239. package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts +2 -1
  240. package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts.map +1 -1
  241. package/dist/types/components/hooks/useTimezoneAwareDateFormatting.d.ts +6 -0
  242. package/dist/types/components/hooks/useTimezoneAwareDateFormatting.d.ts.map +1 -0
  243. package/dist/types/components/internal/Accordion/Accordion.d.ts +6 -0
  244. package/dist/types/components/internal/Accordion/Accordion.d.ts.map +1 -0
  245. package/dist/types/components/internal/Accordion/constants.d.ts +6 -0
  246. package/dist/types/components/internal/Accordion/constants.d.ts.map +1 -0
  247. package/dist/types/components/internal/Accordion/types.d.ts +7 -0
  248. package/dist/types/components/internal/Accordion/types.d.ts.map +1 -0
  249. package/dist/types/components/internal/Calendar/calendar/facade/Calendar.d.ts.map +1 -1
  250. package/dist/types/components/internal/Calendar/calendar/timeframe/common/utils.d.ts +1 -1
  251. package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts +1 -1
  252. package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts.map +1 -1
  253. package/dist/types/components/internal/CopyText/CopyText.d.ts.map +1 -1
  254. package/dist/types/components/internal/DataGrid/components/InteractiveBody.d.ts.map +1 -1
  255. package/dist/types/components/internal/DataGrid/components/SkeletonBody.d.ts +1 -1
  256. package/dist/types/components/internal/DataGrid/components/SkeletonBody.d.ts.map +1 -1
  257. package/dist/types/components/internal/DataGrid/components/TableBody.d.ts +1 -1
  258. package/dist/types/components/internal/DataGrid/components/TableBody.d.ts.map +1 -1
  259. package/dist/types/components/internal/DataGrid/components/TableCells.d.ts +1 -1
  260. package/dist/types/components/internal/DataGrid/components/TableCells.d.ts.map +1 -1
  261. package/dist/types/components/internal/DataGrid/components/TableHeaderCell.d.ts +1 -1
  262. package/dist/types/components/internal/DataGrid/components/TableHeaderCell.d.ts.map +1 -1
  263. package/dist/types/components/internal/DataGrid/hooks/useInteractiveDataGrid.d.ts.map +1 -1
  264. package/dist/types/components/internal/DataGrid/utils/DataGridProvider.d.ts.map +1 -1
  265. package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -1
  266. package/dist/types/components/internal/DataOverviewDetails/types.d.ts +3 -6
  267. package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -1
  268. package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +4 -1
  269. package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -1
  270. package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +1 -1
  271. package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -1
  272. package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/TimeRangeSelector.d.ts +1 -1
  273. package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/TimeRangeSelector.d.ts.map +1 -1
  274. package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts +2 -2
  275. package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilter.d.ts +7 -1
  276. package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilter.d.ts.map +1 -1
  277. package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilterCore.d.ts.map +1 -1
  278. package/dist/types/components/internal/FormFields/Select/Select.d.ts.map +1 -1
  279. package/dist/types/components/internal/FormFields/Select/components/SelectButton.d.ts.map +1 -1
  280. package/dist/types/components/internal/FormFields/Select/components/SelectListItem.d.ts +12 -3
  281. package/dist/types/components/internal/FormFields/Select/components/SelectListItem.d.ts.map +1 -1
  282. package/dist/types/components/internal/FormFields/Select/hooks/useSelect.d.ts +1 -1
  283. package/dist/types/components/internal/FormFields/Select/hooks/useSelect.d.ts.map +1 -1
  284. package/dist/types/components/internal/FormFields/index.d.ts.map +1 -1
  285. package/dist/types/components/internal/Modal/Modal.d.ts +1 -1
  286. package/dist/types/components/internal/Modal/Modal.d.ts.map +1 -1
  287. package/dist/types/components/internal/Pagination/hooks/types.d.ts +0 -1
  288. package/dist/types/components/internal/Pagination/hooks/types.d.ts.map +1 -1
  289. package/dist/types/components/internal/Pagination/hooks/useCursorPaginatedRecords.d.ts.map +1 -1
  290. package/dist/types/components/internal/Pagination/hooks/useOffsetPaginatedRecords.d.ts.map +1 -1
  291. package/dist/types/components/internal/Pagination/hooks/useOffsetPagination.d.ts.map +1 -1
  292. package/dist/types/components/internal/Pagination/hooks/usePaginatedRecords.d.ts +1 -1
  293. package/dist/types/components/internal/Pagination/hooks/usePaginatedRecords.d.ts.map +1 -1
  294. package/dist/types/components/internal/Pagination/hooks/usePaginatedRecordsFilters.d.ts.map +1 -1
  295. package/dist/types/components/internal/Pagination/hooks/usePagination.d.ts +1 -1
  296. package/dist/types/components/internal/Pagination/hooks/usePagination.d.ts.map +1 -1
  297. package/dist/types/components/internal/Popover/Popover.d.ts.map +1 -1
  298. package/dist/types/components/internal/Spinner/Spinner.d.ts +18 -0
  299. package/dist/types/components/internal/Spinner/Spinner.d.ts.map +1 -0
  300. package/dist/types/components/internal/Spinner/index.d.ts +2 -0
  301. package/dist/types/components/internal/Spinner/index.d.ts.map +1 -0
  302. package/dist/types/components/internal/StructuredList/types.d.ts +3 -2
  303. package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -1
  304. package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +9 -133
  305. package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -1
  306. package/dist/types/components/internal/Tooltip/useTooltipListeners.d.ts.map +1 -1
  307. package/dist/types/components/types.d.ts +7 -15
  308. package/dist/types/components/types.d.ts.map +1 -1
  309. package/dist/types/components/utils/getLabel.d.ts +1 -1
  310. package/dist/types/core/Auth/context.d.ts +56 -42
  311. package/dist/types/core/Auth/context.d.ts.map +1 -1
  312. package/dist/types/core/Auth/session/AuthSession.d.ts +62 -53
  313. package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -1
  314. package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts +7 -4
  315. package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts.map +1 -1
  316. package/dist/types/core/Auth/session/AuthSetupContext.d.ts +58 -43
  317. package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -1
  318. package/dist/types/core/Auth/session/constants.d.ts +0 -3
  319. package/dist/types/core/Auth/session/constants.d.ts.map +1 -1
  320. package/dist/types/core/Auth/types.d.ts +6 -6
  321. package/dist/types/core/Auth/types.d.ts.map +1 -1
  322. package/dist/types/core/Context/CoreProvider.d.ts +1 -1
  323. package/dist/types/core/Context/CoreProvider.d.ts.map +1 -1
  324. package/dist/types/core/Context/types.d.ts +2 -0
  325. package/dist/types/core/Context/types.d.ts.map +1 -1
  326. package/dist/types/core/Http/http.d.ts.map +1 -1
  327. package/dist/types/core/Http/utils.d.ts.map +1 -1
  328. package/dist/types/core/Localization/Localization.d.ts.map +1 -1
  329. package/dist/types/core/Localization/datetime/restamper/utils.d.ts.map +1 -1
  330. package/dist/types/core/Localization/localization-utils.d.ts.map +1 -1
  331. package/dist/types/core/Localization/utils.d.ts +4 -4
  332. package/dist/types/core/Localization/utils.d.ts.map +1 -1
  333. package/dist/types/core/core.d.ts +3 -2
  334. package/dist/types/core/core.d.ts.map +1 -1
  335. package/dist/types/core/types.d.ts +4 -6
  336. package/dist/types/core/types.d.ts.map +1 -1
  337. package/dist/types/hooks/element/useClickOutside.d.ts +2 -1
  338. package/dist/types/hooks/element/useClickOutside.d.ts.map +1 -1
  339. package/dist/types/hooks/element/useDetachedRender.d.ts.map +1 -1
  340. package/dist/types/hooks/element/useFocusTrap.d.ts.map +1 -1
  341. package/dist/types/hooks/useImageUrl/useImageUrl.d.ts.map +1 -1
  342. package/dist/types/hooks/useMediaQuery/useMediaQuery.d.ts.map +1 -1
  343. package/dist/types/hooks/useModalDetails/useModalDetails.d.ts.map +1 -1
  344. package/dist/types/hooks/useMounted/useMounted.d.ts +1 -1
  345. package/dist/types/hooks/useMounted/useMounted.d.ts.map +1 -1
  346. package/dist/types/hooks/useReactiveState/useReactiveState.d.ts.map +1 -1
  347. package/dist/types/hooks/useReflex/useReflex.d.ts.map +1 -1
  348. package/dist/types/primitives/async/abortable/main.d.ts +1 -1
  349. package/dist/types/primitives/async/abortable/main.d.ts.map +1 -1
  350. package/dist/types/primitives/async/promisor/main.d.ts.map +1 -1
  351. package/dist/types/primitives/auxiliary/indexed/helpers.d.ts.map +1 -1
  352. package/dist/types/primitives/auxiliary/indexed/main.d.ts.map +1 -1
  353. package/dist/types/primitives/context/session/SessionContext.d.ts +6 -27
  354. package/dist/types/primitives/context/session/SessionContext.d.ts.map +1 -1
  355. package/dist/types/primitives/context/session/constants.d.ts +6 -3
  356. package/dist/types/primitives/context/session/constants.d.ts.map +1 -1
  357. package/dist/types/primitives/context/session/internal/autofresher.d.ts +7 -0
  358. package/dist/types/primitives/context/session/internal/autofresher.d.ts.map +1 -0
  359. package/dist/types/primitives/context/session/internal/constants.d.ts +5 -0
  360. package/dist/types/primitives/context/session/internal/constants.d.ts.map +1 -0
  361. package/dist/types/primitives/context/session/internal/deadline.d.ts +6 -0
  362. package/dist/types/primitives/context/session/internal/deadline.d.ts.map +1 -0
  363. package/dist/types/primitives/context/session/internal/refresher.d.ts +6 -0
  364. package/dist/types/primitives/context/session/internal/refresher.d.ts.map +1 -0
  365. package/dist/types/primitives/context/session/internal/types.d.ts +27 -0
  366. package/dist/types/primitives/context/session/internal/types.d.ts.map +1 -0
  367. package/dist/types/primitives/context/session/types.d.ts +8 -4
  368. package/dist/types/primitives/context/session/types.d.ts.map +1 -1
  369. package/dist/types/primitives/reactive/effectStack/main.d.ts.map +1 -1
  370. package/dist/types/primitives/reactive/reflex/helpers.d.ts.map +1 -1
  371. package/dist/types/primitives/reactive/reflex/main.d.ts.map +1 -1
  372. package/dist/types/primitives/reactive/watchlist/helpers.d.ts.map +1 -1
  373. package/dist/types/primitives/reactive/watchlist/main.d.ts +1 -1
  374. package/dist/types/primitives/reactive/watchlist/main.d.ts.map +1 -1
  375. package/dist/types/primitives/time/interval/main.d.ts.map +1 -1
  376. package/dist/types/translations/index.d.ts +108 -0
  377. package/dist/types/translations/index.d.ts.map +1 -1
  378. package/dist/types/types/api/endpoints.d.ts +18 -2
  379. package/dist/types/types/api/endpoints.d.ts.map +1 -1
  380. package/dist/types/types/api/models/index.d.ts +1 -0
  381. package/dist/types/types/api/models/index.d.ts.map +1 -1
  382. package/dist/types/types/api/models/reports.d.ts +4 -0
  383. package/dist/types/types/api/models/reports.d.ts.map +1 -0
  384. package/dist/types/types/api/resources/BalanceAccountsResource.d.ts +8 -8
  385. package/dist/types/types/api/resources/BalanceAccountsResource.d.ts.map +1 -1
  386. package/dist/types/types/api/resources/PayoutsResource.d.ts +19 -19
  387. package/dist/types/types/api/resources/PayoutsResource.d.ts.map +1 -1
  388. package/dist/types/types/api/resources/ReportsResource.d.ts +92 -0
  389. package/dist/types/types/api/resources/ReportsResource.d.ts.map +1 -0
  390. package/dist/types/types/api/resources/SetupResource.d.ts +1 -1
  391. package/dist/types/types/api/resources/SetupResource.d.ts.map +1 -1
  392. package/dist/types/types/api/resources/TransactionsResource.d.ts +25 -25
  393. package/dist/types/types/api/resources/TransactionsResource.d.ts.map +1 -1
  394. package/dist/types/utils/abort/constants.d.ts +5 -0
  395. package/dist/types/utils/abort/constants.d.ts.map +1 -0
  396. package/dist/types/utils/abort/internals.d.ts +4 -0
  397. package/dist/types/utils/abort/internals.d.ts.map +1 -0
  398. package/dist/types/utils/abort/main.d.ts +9 -0
  399. package/dist/types/utils/abort/main.d.ts.map +1 -0
  400. package/dist/types/utils/async/main.d.ts.map +1 -1
  401. package/dist/types/utils/collection/main.d.ts +1 -1
  402. package/dist/types/utils/collection/main.d.ts.map +1 -1
  403. package/dist/types/utils/common.d.ts +2 -2
  404. package/dist/types/utils/common.d.ts.map +1 -1
  405. package/dist/types/utils/index.d.ts +1 -0
  406. package/dist/types/utils/index.d.ts.map +1 -1
  407. package/dist/types/utils/preact/fixedForwardRef.d.ts +3 -3
  408. package/dist/types/utils/preact/fixedForwardRef.d.ts.map +1 -1
  409. package/dist/types/utils/struct/main.d.ts +1 -1
  410. package/dist/types/utils/struct/main.d.ts.map +1 -1
  411. package/dist/types/utils/struct/property.d.ts.map +1 -1
  412. package/dist/types/utils/value/is.d.ts +2 -2
  413. package/dist/types/utils/value/is.d.ts.map +1 -1
  414. package/dist/types/utils/value/number.d.ts.map +1 -1
  415. package/package.json +158 -106
  416. package/dist/es/primitives/auxiliary/abortSink/main.js +0 -42
  417. package/dist/types/core/Analytics/types.d.ts +0 -28
  418. package/dist/types/core/Analytics/types.d.ts.map +0 -1
  419. package/dist/types/primitives/auxiliary/abortSink/index.d.ts +0 -3
  420. package/dist/types/primitives/auxiliary/abortSink/index.d.ts.map +0 -1
  421. package/dist/types/primitives/auxiliary/abortSink/main.d.ts +0 -5
  422. package/dist/types/primitives/auxiliary/abortSink/main.d.ts.map +0 -1
  423. package/dist/types/primitives/auxiliary/abortSink/types.d.ts +0 -7
  424. package/dist/types/primitives/auxiliary/abortSink/types.d.ts.map +0 -1
  425. package/dist/types/types/api/resources/PaymentInstrumentsResource.d.ts +0 -70
  426. 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 = (d, i, e) => i in d ? ri(d, i, { enumerable: !0, configurable: !0, writable: !0, value: e }) : d[i] = e;
3
- var It = (d, i, e) => (oi(d, typeof i != "symbol" ? i + "" : i, e), e), Dt = (d, i, e) => {
4
- if (!i.has(d))
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 = (d, i, e) => (Dt(d, i, "read from private field"), e ? e.call(d) : i.get(d)), h = (d, i, e) => {
8
- if (i.has(d))
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(d) : i.set(d, e);
11
- }, r = (d, i, e, o) => (Dt(d, i, "write to private field"), o ? o.call(d, e) : i.set(d, e), e);
12
- var c = (d, i, e) => (Dt(d, i, "access private method"), e);
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 di, CURSOR_BLOCK_END as Si, CURSOR_LINE_END as mi, 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";
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, U, A, I, k, y, M, ft, L, T, ut, _, x, P, Z, dt, St, mt, Et, Ot, Rt, gt, Ct, Zt, kt, $t, Tt, Qt, pt, v, ct, B, q, $, Ht, Ft, ti, bt, ii, Nt, si, yt, ei, Q, Wt, At, hi, K, J, tt, wt, Y, lt, it, Pt, st, Bt, et, Kt, ht, Ut;
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, B);
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, K);
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, U, (qt = t(this, R)) == null ? void 0 : qt.join(" "));
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, M, void 0);
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
- _t(() => {
68
- var i;
69
- return ((i = t(this, T)) == null ? void 0 : i.length) ?? 0;
70
- }, c(this, Q, Wt).bind(this)),
71
- Di({
72
- get: (i, e, o) => {
73
- var n, u;
74
- const a = ((n = t(this, T)) == null ? void 0 : n.indexOf(e)) ?? -1;
75
- return a >= 0 ? (u = c(this, Q, Wt).call(this, a)) == null ? void 0 : u[1] : Reflect.get(i, e, o);
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, P, jt(() => {
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, B, q));
117
+ return (i = t(this, k)) == null ? void 0 : i.call(t(this, P, q));
121
118
  }));
122
- h(this, dt, Li(
123
- _t(
124
- () => {
125
- var i;
126
- return ((i = t(this, s)) == null ? void 0 : i.size) ?? 0;
127
- },
128
- (i) => {
129
- var e;
130
- return (e = t(this, s)) == null ? void 0 : e.frameBlocks[i];
131
- }
132
- ),
133
- {
134
- config: {
135
- value: Object.defineProperties(
136
- (i) => (i && c(this, bt, ii).call(this, i), t(this, B, q)),
137
- {
138
- cursorIndex: {
139
- get: () => t(this, A),
140
- set: (i) => {
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
- controls: { value: t(this, ut) },
171
- cursor: {
172
- value: Object.defineProperties(
173
- (i) => c(l, v, ct).call(this, (e) => !!(e && c(this, Nt, si).call(this, e)))(i),
174
- {
175
- valueOf: { value: () => {
176
- var i;
177
- return ((i = t(this, s)) == null ? void 0 : i.cursor) ?? -1;
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
- highlight: {
183
- value: (() => {
184
- const i = () => t(this, F) === t(this, C) && Gt(t(this, C)), e = (o) => (a) => c(l, v, ct).call(this, (n) => {
185
- var u, S, m, H, W;
186
- if (!(t(this, p) || !t(this, E) || t(this, E) === ot)) {
187
- if (nt(n))
188
- return c(this, tt, wt).call(this);
189
- i() ? (S = t(this, s)) == null || S.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, (m = t(this, s)) == null ? void 0 : m.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));
190
- }
191
- })(a);
192
- return _i({
193
- blank: { get: i },
194
- from: {
195
- get: () => {
196
- var o;
197
- return ((o = t(this, s)) == null ? void 0 : o.selectionStart) ?? t(this, F);
198
- },
199
- set: e(O)
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
- to: {
202
- get: () => {
203
- var o;
204
- return ((o = t(this, s)) == null ? void 0 : o.selectionEnd) ?? t(this, C);
205
- },
206
- set: e(N)
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
- weekdays: { get: () => {
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, dt), this.kill = c(this, yt, ei).bind(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(), U = new WeakMap(), A = new WeakMap(), I = new WeakMap(), k = new WeakMap(), y = new WeakMap(), M = new WeakMap(), ft = new WeakMap(), L = new WeakMap(), T = new WeakMap(), ut = new WeakMap(), _ = new WeakMap(), x = new WeakMap(), P = new WeakMap(), Z = new WeakMap(), dt = new WeakMap(), St = new WeakMap(), mt = new WeakMap(), Et = new WeakMap(), Ot = new WeakMap(), Rt = new WeakMap(), gt = new WeakMap(), Ct = new WeakSet(), Zt = function(i) {
225
- if (!Vt(i) || !t(l, St).test(i))
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({ length: 6 }, (o, a) => parseInt(e[a] ?? "0"));
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, P)) == null ? void 0 : e.bind(i)) ?? i;
244
- }, B = new WeakSet(), q = function() {
245
- return { ...t(this, f) };
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, Bt).call(this), c(this, ht, Ut).call(this), c(this, et, Kt).call(this));
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, Bt).call(this), (n = t(this, y)) == null || n.call(this);
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 ? Si : mi);
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(di);
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, K, J).call(this), !0;
300
+ return c(this, B, J).call(this), !0;
302
301
  default:
303
302
  return;
304
303
  }
305
- return t(this, b) && c(this, K, J).call(this, X), !0;
304
+ return t(this, b) && c(this, B, J).call(this, X), !0;
306
305
  }
307
- if (i instanceof MouseEvent && t(l, mt).includes(i.type) && D(t(this, A))) {
308
- const e = t(this, A).call(t(this, B, q), i);
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, K, J).call(this) : c(this, K, J).call(this, X), !0;
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, M)) == null || i.call(this), r(this, P, r(this, Z, r(this, A, r(this, s, r(this, E, r(this, U, r(this, x, r(this, R, r(this, I, r(this, M, 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));
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), S = c(a = l, Tt, Qt).call(a, n);
328
- t(this, L)[i] = (...m) => c(l, v, ct).call(this, (...H) => {
329
- var Mt;
330
- const W = c(this, Ft, ti).call(this, S);
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 : ((Mt = t(this, s)) == null || Mt.shiftFrameByOffset(S * rt, u), !0);
335
- })(...m);
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, B, q), e, i));
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
- }, K = new WeakSet(), J = function(i) {
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 S = new Date(t(this, s).selectionStart), m = S.setDate(S.getDate() + 1) - 1;
377
- o === t(this, s).selectionStart && a <= m && t(this, s).updateSelection(a, N), t(this, s).updateSelection(o, O);
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 m = new Date(t(this, s).selectionEnd).setHours(0, 0, 0, 0);
380
- o <= t(this, s).selectionEnd && o >= m && t(this, s).updateSelection(o, O), t(this, s).updateSelection(a, N);
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, S = 0, m = 0, H = 0, W = 0, rt = 0] = o ?? [];
393
- a.setFullYear(a.getFullYear() + u * n, a.getMonth() + S * n, a.getDate() + m * n), a.setHours(a.getHours() + H * n, a.getMinutes() + W * n, a.getSeconds() + rt * n), t(this, s).updateSelection(a.getTime() - n, e);
394
- }, it = new WeakSet(), Pt = function() {
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(), Bt = function() {
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, Pt).call(this));
399
- }, et = new WeakSet(), Kt = function() {
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(), Ut = function() {
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, St, /^(?:0|[1-9]\d*)(\s+(?:0|[1-9]\d*)?){0,5}?$/), h(l, mt, ["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) {
428
- var u, S;
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 m of Object.keys(i))
434
- i[m] !== ((S = t(this, x)) == null ? void 0 : S[m]) && (m === "controls" ? e = !0 : m === "highlight" ? o = !0 : (m === "from" || m === "to") && (a = !0));
435
- t(this, U) !== n && (r(this, U, n), o = !0), r(this, x, i), t(this, b) && !a && c(this, it, Pt).call(this), e && c(this, ht, Ut).call(this), o && c(this, et, Kt).call(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 { grid: r, kill: N } = new a();
10
- return v(e) ? r.config({ blocks: e }) : d(e) ? p.then(() => {
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: { value: t },
20
- MINIMAL: { value: O },
21
- NONE: { value: i }
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: { value: n },
27
- MANY: { value: E },
28
- NONE: { value: c }
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: { value: u },
34
- TO: { value: m },
35
- UNBOUNDED: { value: L },
36
- SINCE_NOW: { get: f },
37
- UNTIL_NOW: { get: _ }
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
- i({
10
- valueOf: { 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;
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
- )), r[t];
23
+ return t & s[a] ? 1 : void 0;
24
+ }
25
+ }))), r[t];
27
26
  };
28
27
  })(), F = f;
29
28
  export {