@payfit/unity-components 2.47.5 → 2.47.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/adapters/standardSchemaAdapter.js +18 -19
- package/dist/esm/adapters/zodAdapter.js +59 -73
- package/dist/esm/components/action-bar/ActionBar.js +46 -69
- package/dist/esm/components/action-bar/ActionBar.variants.js +18 -25
- package/dist/esm/components/action-bar/hooks/use-action-bar-state.js +31 -21
- package/dist/esm/components/action-bar/parts/ActionBarButton.js +29 -35
- package/dist/esm/components/action-bar/parts/ActionBarIconButton.js +29 -41
- package/dist/esm/components/action-bar/parts/ActionBarOverflowMenu.js +39 -45
- package/dist/esm/components/action-bar/parts/ActionBarPrefixArea.js +22 -33
- package/dist/esm/components/action-bar/parts/ActionBarRoot.js +44 -56
- package/dist/esm/components/action-bar/utils/action-bar-helpers.js +23 -28
- package/dist/esm/components/actionable/Actionable.js +66 -82
- package/dist/esm/components/alert/Alert.js +84 -99
- package/dist/esm/components/alert/parts/AlertActions.js +19 -21
- package/dist/esm/components/alert/parts/AlertContent.js +13 -10
- package/dist/esm/components/alert/parts/AlertTitle.js +15 -20
- package/dist/esm/components/anchor/Anchor.js +40 -48
- package/dist/esm/components/app-layout/AppLayout.js +62 -76
- package/dist/esm/components/app-menu/AppMenu.js +11 -14
- package/dist/esm/components/app-menu/parts/AppMenu.context.js +21 -22
- package/dist/esm/components/app-menu/parts/AppMenuFooter.js +189 -246
- package/dist/esm/components/app-menu/parts/AppMenuHeader.js +52 -49
- package/dist/esm/components/app-menu/parts/AppMenuNavContent.js +14 -22
- package/dist/esm/components/autocomplete/Autocomplete.js +136 -168
- package/dist/esm/components/autocomplete/parts/AutocompleteClearButton.js +23 -33
- package/dist/esm/components/autocomplete/parts/AutocompleteItem.js +28 -36
- package/dist/esm/components/autocomplete/parts/AutocompleteItemGroup.js +38 -32
- package/dist/esm/components/autocomplete/parts/AutocompletePanel.js +44 -46
- package/dist/esm/components/avatar/Avatar.context.js +24 -25
- package/dist/esm/components/avatar/Avatar.js +38 -46
- package/dist/esm/components/avatar/Avatar.variants.js +62 -62
- package/dist/esm/components/avatar/parts/AvatarFallback.js +77 -81
- package/dist/esm/components/avatar/parts/AvatarIcon.js +32 -40
- package/dist/esm/components/avatar/parts/AvatarImage.js +22 -18
- package/dist/esm/components/avatar/parts/AvatarPair.js +49 -47
- package/dist/esm/components/avatar/utils.js +4 -4
- package/dist/esm/components/badge/Badge.js +57 -92
- package/dist/esm/components/badge/parts/BadgeDot.js +42 -83
- package/dist/esm/components/bottom-sheet/BottomSheet.js +48 -69
- package/dist/esm/components/bottom-sheet/parts/BottomSheetContent.js +26 -26
- package/dist/esm/components/bottom-sheet/parts/BottomSheetDragIndicator.js +44 -65
- package/dist/esm/components/bottom-sheet/parts/BottomSheetFooter.js +20 -28
- package/dist/esm/components/bottom-sheet/parts/BottomSheetHeader.js +49 -45
- package/dist/esm/components/breadcrumbs/Breadcrumbs.context.js +22 -25
- package/dist/esm/components/breadcrumbs/Breadcrumbs.js +124 -159
- package/dist/esm/components/breadcrumbs/Breadcrumbs.variant.js +13 -19
- package/dist/esm/components/breadcrumbs/parts/Breadcrumb.js +35 -41
- package/dist/esm/components/breadcrumbs/parts/RawBreadcrumbLink.js +53 -62
- package/dist/esm/components/button/Button.js +90 -107
- package/dist/esm/components/button/Button.variants.js +172 -179
- package/dist/esm/components/card/Card.context.js +9 -13
- package/dist/esm/components/card/Card.js +63 -99
- package/dist/esm/components/card/parts/CardContent.js +11 -7
- package/dist/esm/components/card/parts/CardTitle.js +24 -31
- package/dist/esm/components/carousel/Carousel.context.js +8 -12
- package/dist/esm/components/carousel/Carousel.js +67 -106
- package/dist/esm/components/carousel/Carousel.options.js +69 -61
- package/dist/esm/components/carousel/hooks/useCarouselAccessibility.js +81 -85
- package/dist/esm/components/carousel/hooks/useCarouselState.js +54 -61
- package/dist/esm/components/carousel/parts/CarouselContent.js +52 -68
- package/dist/esm/components/carousel/parts/CarouselHeader.js +43 -58
- package/dist/esm/components/carousel/parts/CarouselNav.js +64 -79
- package/dist/esm/components/carousel/parts/CarouselSlide.js +26 -35
- package/dist/esm/components/checkbox/Checkbox.js +83 -105
- package/dist/esm/components/checkbox/Checkbox.variants.js +60 -80
- package/dist/esm/components/checkbox/CheckboxStandalone.js +33 -28
- package/dist/esm/components/checkbox/TanstackCheckbox.js +35 -51
- package/dist/esm/components/checkbox/parts/CheckboxIndicator.js +131 -161
- package/dist/esm/components/checkbox-field/CheckboxField.js +38 -65
- package/dist/esm/components/checkbox-field/TanstackCheckboxField.js +23 -39
- package/dist/esm/components/checkbox-group/CheckboxGroup.js +44 -73
- package/dist/esm/components/checkbox-group/TanstackCheckboxGroup.js +32 -37
- package/dist/esm/components/checkbox-group-field/CheckboxGroupField.js +35 -55
- package/dist/esm/components/checkbox-group-field/TanstackCheckGroupField.js +26 -39
- package/dist/esm/components/client-side-pagination/ClientSidePagination.js +130 -177
- package/dist/esm/components/client-side-pagination/hooks/use-pagination.js +20 -27
- package/dist/esm/components/client-side-pagination/parts/PaginationEllipsis.js +29 -29
- package/dist/esm/components/client-side-pagination/parts/PaginationJumpDialog.js +110 -143
- package/dist/esm/components/client-side-pagination/parts/PaginationNavButton.js +23 -31
- package/dist/esm/components/client-side-pagination/parts/RawPaginationLink.js +35 -48
- package/dist/esm/components/client-side-pagination/utils/pagination-window.js +37 -31
- package/dist/esm/components/code/Code.js +34 -38
- package/dist/esm/components/code/copyToClipboard.js +9 -9
- package/dist/esm/components/collapsible/Collapsible.js +21 -28
- package/dist/esm/components/collapsible/parts/CollapsibleContent.js +16 -18
- package/dist/esm/components/collapsible/parts/CollapsibleTitle.js +53 -53
- package/dist/esm/components/data-table/DataTable.js +101 -155
- package/dist/esm/components/data-table/parts/ColumnSortHeader.js +24 -36
- package/dist/esm/components/data-table/parts/DataTableBulkActions.js +95 -148
- package/dist/esm/components/data-table/parts/DataTableRoot.js +13 -13
- package/dist/esm/components/date-calendar/DateCalendar.js +121 -174
- package/dist/esm/components/date-calendar/DateCalendar.variants.js +32 -49
- package/dist/esm/components/date-calendar/hooks/useMonthsList.js +18 -25
- package/dist/esm/components/date-calendar/hooks/useYearsList.js +23 -32
- package/dist/esm/components/date-calendar/parts/DateSegmentSelect.js +62 -65
- package/dist/esm/components/date-picker/DatePicker.js +131 -174
- package/dist/esm/components/date-picker/TanstackDatePicker.js +39 -53
- package/dist/esm/components/date-picker/parts/DateInput.js +101 -135
- package/dist/esm/components/date-picker-field/DatePickerField.js +52 -71
- package/dist/esm/components/date-picker-field/TanstackDatePickerField.js +28 -41
- package/dist/esm/components/date-picker-field/test-utils.js +26 -51
- package/dist/esm/components/date-range-calendar/DateRangeCalendar.js +148 -211
- package/dist/esm/components/date-range-picker/DateRangePicker.js +132 -175
- package/dist/esm/components/date-range-picker/TanstackDateRangePicker.js +39 -53
- package/dist/esm/components/date-range-picker/parts/DateRangeInput.js +90 -101
- package/dist/esm/components/date-range-picker-field/TanstackDateRangePickerField.js +28 -41
- package/dist/esm/components/date-range-picker-field/test-utils.js +37 -65
- package/dist/esm/components/definition-list/DefinitionList.context.js +12 -16
- package/dist/esm/components/definition-list/DefinitionList.js +23 -22
- package/dist/esm/components/definition-list/parts/DefinitionItem.js +49 -50
- package/dist/esm/components/definition-tooltip/DefinitionTooltip.js +25 -28
- package/dist/esm/components/dialog/Dialog.js +79 -110
- package/dist/esm/components/dialog/parts/DialogActions/DialogButton.js +41 -61
- package/dist/esm/components/dialog/parts/DialogActions.js +10 -13
- package/dist/esm/components/dialog/parts/DialogContent.js +17 -22
- package/dist/esm/components/dialog/parts/DialogTitle.js +12 -9
- package/dist/esm/components/dialog/test-utils.js +46 -88
- package/dist/esm/components/empty-state/EmptyState.js +20 -25
- package/dist/esm/components/empty-state/EmptyState.variants.js +15 -22
- package/dist/esm/components/empty-state/parts/EmptyStateActions.js +12 -17
- package/dist/esm/components/empty-state/parts/EmptyStateContent.js +21 -21
- package/dist/esm/components/empty-state/parts/EmptyStateIcon.js +19 -14
- package/dist/esm/components/empty-state/presets/EmptyStateGetStarted.js +30 -26
- package/dist/esm/components/empty-state/presets/EmptyStateGoodJob.js +35 -55
- package/dist/esm/components/empty-state/presets/EmptyStateNoSearchResults.js +31 -27
- package/dist/esm/components/empty-state/presets/EmptyStateUpgradeRequired.js +30 -26
- package/dist/esm/components/empty-state/presets/EmptyStateUseDesktop.js +26 -25
- package/dist/esm/components/empty-state/presets/EmptyStateWaitingForData.js +30 -26
- package/dist/esm/components/error-state/ErrorState.js +155 -239
- package/dist/esm/components/error-state/initConfig.js +90 -148
- package/dist/esm/components/error-state/parts/Collapsible.js +68 -67
- package/dist/esm/components/fieldset/Fieldset.js +63 -72
- package/dist/esm/components/fieldset/parts/FieldGroup.js +13 -18
- package/dist/esm/components/filter/Filter.controls.js +49 -42
- package/dist/esm/components/filter/Filter.js +101 -146
- package/dist/esm/components/filter/hooks/useFilterIds.js +12 -12
- package/dist/esm/components/filter/hooks/useFilterState.js +16 -22
- package/dist/esm/components/filter/hooks/useFilterValue.js +31 -30
- package/dist/esm/components/filter/parts/FilterButton.js +40 -54
- package/dist/esm/components/filter/parts/FilterLabel.js +38 -56
- package/dist/esm/components/filter/parts/FilterPopover.js +68 -80
- package/dist/esm/components/filter/utils/value-formatters.js +9 -11
- package/dist/esm/components/filter-toolbar/FilterToolbar.js +124 -173
- package/dist/esm/components/filter-toolbar/hooks/use-filter-toolbar-state.js +128 -130
- package/dist/esm/components/filter-toolbar/parts/AddFilter.js +81 -109
- package/dist/esm/components/filter-toolbar/parts/AddFilterItem.js +20 -18
- package/dist/esm/components/filter-toolbar/utils/filter-adapters.js +17 -88
- package/dist/esm/components/filter-toolbar/utils/normalize-filter-value.js +12 -18
- package/dist/esm/components/flex/Flex.js +38 -57
- package/dist/esm/components/flex/Flex.variants.js +198 -199
- package/dist/esm/components/flex/FlexItem.js +21 -32
- package/dist/esm/components/floating-action-bar/FloatingActionBar.js +55 -68
- package/dist/esm/components/form/Form.context.js +15 -26
- package/dist/esm/components/form/Form.js +40 -57
- package/dist/esm/components/form/TanstackForm.js +22 -29
- package/dist/esm/components/form-field/FormField.context.js +44 -70
- package/dist/esm/components/form-field/FormField.js +50 -56
- package/dist/esm/components/form-field/TanstackFormField.context.js +11 -12
- package/dist/esm/components/form-field/TanstackFormField.js +44 -45
- package/dist/esm/components/form-field/parts/FormControl.js +41 -52
- package/dist/esm/components/form-field/parts/FormFeedbackText.js +24 -26
- package/dist/esm/components/form-field/parts/FormHelperText.js +21 -26
- package/dist/esm/components/form-field/parts/FormLabel.js +21 -30
- package/dist/esm/components/form-field/parts/RawFormContextualLink.js +32 -38
- package/dist/esm/components/form-field/parts/TanstackFormFeedbackText.js +28 -31
- package/dist/esm/components/form-field/parts/TanstackFormHelperText.js +22 -25
- package/dist/esm/components/form-field/parts/TanstackFormLabel.js +21 -26
- package/dist/esm/components/form-field/parts/TanstackRawFormContextualLink.js +33 -45
- package/dist/esm/components/form-field/utils/isFieldRequired.js +7 -7
- package/dist/esm/components/full-page-loader/FullPageLoader.js +26 -35
- package/dist/esm/components/funnel-layout/FunnelLayout.context.js +12 -26
- package/dist/esm/components/funnel-layout/FunnelLayout.js +75 -91
- package/dist/esm/components/funnel-layout/parts/FunnelBackButton.js +24 -34
- package/dist/esm/components/funnel-layout/parts/FunnelBody.js +15 -23
- package/dist/esm/components/funnel-layout/parts/FunnelPage.js +27 -35
- package/dist/esm/components/funnel-layout/parts/FunnelPageAction.js +32 -39
- package/dist/esm/components/funnel-layout/parts/FunnelPageActions.js +30 -41
- package/dist/esm/components/funnel-layout/parts/FunnelPageContent.js +15 -23
- package/dist/esm/components/funnel-layout/parts/FunnelPageFooter.js +20 -28
- package/dist/esm/components/funnel-layout/parts/FunnelPageHeader.js +53 -55
- package/dist/esm/components/funnel-layout/parts/FunnelProgressBar.js +39 -50
- package/dist/esm/components/funnel-layout/parts/FunnelSidebar.js +47 -54
- package/dist/esm/components/funnel-layout/parts/FunnelTopBar.js +88 -119
- package/dist/esm/components/grid/Grid.js +27 -38
- package/dist/esm/components/grid/Grid.variants.js +147 -164
- package/dist/esm/components/grid/GridItem.js +24 -43
- package/dist/esm/components/icon/Icon.js +112 -115
- package/dist/esm/components/icon-button/CircularIconButton.js +117 -119
- package/dist/esm/components/icon-button/IconButton.js +82 -93
- package/dist/esm/components/icon-button/IconButton.variants.js +167 -174
- package/dist/esm/components/inline-field/InlineField.context.js +8 -9
- package/dist/esm/components/inline-field/InlineField.js +48 -57
- package/dist/esm/components/inline-field/hooks/useInlineFieldMode.js +23 -26
- package/dist/esm/components/inline-field/parts/InlineFieldEditView.js +113 -149
- package/dist/esm/components/inline-field/parts/InlineFieldReadView.js +52 -57
- package/dist/esm/components/inline-field-group/InlineFieldGroup.context.js +5 -5
- package/dist/esm/components/inline-field-group/InlineFieldGroup.js +188 -216
- package/dist/esm/components/inline-field-group/hooks/useInlineFieldGroupMode.js +23 -26
- package/dist/esm/components/inline-field-group/parts/InlineFieldGroupActions.js +109 -156
- package/dist/esm/components/inline-field-group/parts/InlineFieldGroupEditView.js +51 -55
- package/dist/esm/components/inline-field-group/parts/InlineFieldGroupHeader.js +39 -38
- package/dist/esm/components/inline-field-group/parts/InlineFieldGroupReadView.js +18 -27
- package/dist/esm/components/input/Input.js +123 -150
- package/dist/esm/components/input/TanstackInput.js +33 -38
- package/dist/esm/components/label/Label.js +52 -66
- package/dist/esm/components/link/RawLink.js +109 -165
- package/dist/esm/components/link/utils.js +12 -15
- package/dist/esm/components/link-button/RawLinkButton.js +100 -127
- package/dist/esm/components/list-view/ListView.js +40 -45
- package/dist/esm/components/list-view/parts/ListViewItemLabel.js +17 -22
- package/dist/esm/components/list-view/parts/ListViewItemText.js +17 -22
- package/dist/esm/components/list-view/parts/ListViewSection.js +25 -23
- package/dist/esm/components/list-view/parts/RawListViewItem.js +68 -81
- package/dist/esm/components/menu/Menu.js +21 -30
- package/dist/esm/components/menu/parts/MenuContent.js +17 -29
- package/dist/esm/components/menu/parts/MenuHeader.js +13 -16
- package/dist/esm/components/menu/parts/MenuSection.js +32 -42
- package/dist/esm/components/menu/parts/MenuSeparator.js +8 -8
- package/dist/esm/components/menu/parts/MenuTrigger.js +12 -13
- package/dist/esm/components/menu/parts/RawMenuItem.js +29 -42
- package/dist/esm/components/multi-select/MultiSelect.js +249 -299
- package/dist/esm/components/multi-select/Multiselect.context.js +6 -6
- package/dist/esm/components/multi-select/TanstackMultiSelect.js +31 -41
- package/dist/esm/components/multi-select/parts/MultiSelectOptGroup.js +35 -43
- package/dist/esm/components/multi-select/parts/MultiSelectOption.js +60 -76
- package/dist/esm/components/multi-select/utils/selection-adapter.js +9 -15
- package/dist/esm/components/multi-select-field/MultiSelectField.js +56 -71
- package/dist/esm/components/multi-select-field/TanstackMultiSelectField.js +27 -48
- package/dist/esm/components/multi-select-field/test-utils.js +22 -45
- package/dist/esm/components/nav/Nav.js +21 -27
- package/dist/esm/components/nav/parts/NavGroup.js +103 -123
- package/dist/esm/components/nav/parts/RawNavItem.js +99 -118
- package/dist/esm/components/navigation-card/NavigationCard.context.js +10 -11
- package/dist/esm/components/navigation-card/NavigationCard.js +53 -63
- package/dist/esm/components/navigation-card/NavigationCard.variants.js +162 -162
- package/dist/esm/components/navigation-card/parts/NavigationCardDescription.js +17 -20
- package/dist/esm/components/navigation-card/parts/NavigationCardGroup.js +76 -93
- package/dist/esm/components/navigation-card/parts/NavigationCardLabel.js +18 -23
- package/dist/esm/components/number-field/NumberField.js +48 -69
- package/dist/esm/components/number-field/TanstackNumberField.js +30 -43
- package/dist/esm/components/number-input/NumberInput.js +161 -216
- package/dist/esm/components/number-input/TanstackNumberInput.js +33 -38
- package/dist/esm/components/page/Page.js +33 -48
- package/dist/esm/components/page/parts/PageHeader.js +41 -36
- package/dist/esm/components/page/parts/PageHeading.js +17 -19
- package/dist/esm/components/pagination/Pagination.js +78 -102
- package/dist/esm/components/pagination/PaginationContext.js +8 -14
- package/dist/esm/components/pagination/hooks/use-pagination-state.js +20 -26
- package/dist/esm/components/pagination/hooks/use-pagination-window.js +10 -13
- package/dist/esm/components/pagination/parts/PaginationContent.js +26 -37
- package/dist/esm/components/pagination/parts/PaginationEllipsis.js +33 -33
- package/dist/esm/components/pagination/parts/PaginationItem.js +17 -22
- package/dist/esm/components/pagination/parts/RawPaginationLink.js +50 -60
- package/dist/esm/components/pagination/parts/RawPaginationNext.js +53 -70
- package/dist/esm/components/pagination/parts/RawPaginationPrevious.js +52 -66
- package/dist/esm/components/pagination/utils/pagination-window.js +55 -40
- package/dist/esm/components/password-field/TanstackPasswordField.js +55 -82
- package/dist/esm/components/password-field/hooks/use-caps-lock.js +11 -11
- package/dist/esm/components/password-field/parts/PasswordFieldDetails.js +42 -41
- package/dist/esm/components/password-field/parts/PasswordInput.js +153 -188
- package/dist/esm/components/password-field/parts/ValidationRuleItem.js +38 -43
- package/dist/esm/components/payfit-brand/PayFitBrand.js +74 -84
- package/dist/esm/components/payfit-brand/PayFitPreprod.js +53 -57
- package/dist/esm/components/phone-number/PhoneNumberInput.js +214 -331
- package/dist/esm/components/phone-number/TanstackPhoneNumberInput.js +29 -32
- package/dist/esm/components/phone-number/parts/PhoneNumberItem.js +49 -65
- package/dist/esm/components/phone-number/unknownFlag.js +4 -0
- package/dist/esm/components/phone-number-field/TanstackPhoneNumberField.js +21 -32
- package/dist/esm/components/pill/Pill.js +48 -58
- package/dist/esm/components/popover/Popover.js +37 -41
- package/dist/esm/components/popover/parts/PopoverHeader.js +48 -60
- package/dist/esm/components/progress-bar/ProgressBar.js +66 -76
- package/dist/esm/components/promo-dialog/PromoDialog.js +135 -218
- package/dist/esm/components/promo-dialog/parts/PromoDialogActions.js +19 -29
- package/dist/esm/components/promo-dialog/parts/PromoDialogContent.js +14 -19
- package/dist/esm/components/promo-dialog/parts/PromoDialogHero.js +17 -24
- package/dist/esm/components/promo-dialog/parts/PromoDialogSubtitle.js +15 -21
- package/dist/esm/components/promo-dialog/parts/PromoDialogTitle.js +11 -16
- package/dist/esm/components/radio-button-group/RadioButtonGroup.js +18 -23
- package/dist/esm/components/radio-button-group/TanstackRadioButtonGroup.js +32 -42
- package/dist/esm/components/radio-button-group/parts/RadioButton.js +61 -66
- package/dist/esm/components/radio-button-group/parts/RadioButtonHelper.js +14 -19
- package/dist/esm/components/radio-button-group/parts/RadioIndicator.js +107 -129
- package/dist/esm/components/radio-button-group-field/RadioButtonGroupField.js +37 -52
- package/dist/esm/components/radio-button-group-field/TanstackRadioButtonGroupField.js +31 -37
- package/dist/esm/components/search/Search.js +120 -166
- package/dist/esm/components/segmented-button-group/SegmentedButtonGroup.js +20 -20
- package/dist/esm/components/segmented-button-group/SegmentedButtonGroups.context.js +11 -14
- package/dist/esm/components/segmented-button-group/parts/ToggleButton.js +105 -125
- package/dist/esm/components/select/Select.js +85 -130
- package/dist/esm/components/select/TanstackSelect.js +31 -40
- package/dist/esm/components/select/parts/SelectButton.js +79 -103
- package/dist/esm/components/select/parts/SelectOption.context.js +14 -21
- package/dist/esm/components/select/parts/SelectOption.js +53 -64
- package/dist/esm/components/select/parts/SelectOptionGroup.js +34 -27
- package/dist/esm/components/select/parts/SelectOptionHelper.js +22 -21
- package/dist/esm/components/select-field/SelectField.js +44 -66
- package/dist/esm/components/select-field/TanstackSelectField.js +29 -45
- package/dist/esm/components/select-field/test-utils.js +10 -25
- package/dist/esm/components/select-list/SelectList.js +70 -81
- package/dist/esm/components/select-list/constants.js +13 -28
- package/dist/esm/components/select-list/helpers.js +37 -43
- package/dist/esm/components/select-list/hooks/useControlledSelection.js +13 -15
- package/dist/esm/components/select-list/hooks/useSelectedFirstSorting.js +30 -30
- package/dist/esm/components/select-list/parts/SelectListEmptyState.js +24 -24
- package/dist/esm/components/select-list/parts/SelectListOptGroup.js +33 -30
- package/dist/esm/components/select-list/parts/SelectListOption.js +54 -70
- package/dist/esm/components/select-list/parts/SelectListSearchInput.js +43 -49
- package/dist/esm/components/select-list/parts/SelectedItemsSection.js +29 -35
- package/dist/esm/components/select-list/utils/partition.js +7 -8
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.context.js +5 -5
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.js +32 -38
- package/dist/esm/components/selectable-button-group/TanstackSelectableButtonGroup.js +27 -33
- package/dist/esm/components/selectable-button-group/parts/SelectableButton.js +81 -123
- package/dist/esm/components/selectable-button-group-field/SelectableButtonGroupField.js +41 -44
- package/dist/esm/components/selectable-button-group-field/TanstackSelectableButtonGroupField.js +29 -46
- package/dist/esm/components/selectable-card/internals/Content.js +8 -8
- package/dist/esm/components/selectable-card/internals/Description.js +11 -10
- package/dist/esm/components/selectable-card/internals/Illustration.js +8 -8
- package/dist/esm/components/selectable-card/internals/SelectedIndicator.js +9 -9
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.js +13 -16
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/TanstackSelectableCardCheckboxGroup.js +28 -31
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.js +37 -37
- package/dist/esm/components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.js +18 -21
- package/dist/esm/components/selectable-card/selectable-card-radio-group/TanstackSelectableCardRadioGroup.js +28 -31
- package/dist/esm/components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.js +40 -47
- package/dist/esm/components/selectable-card/selectableCard.variant.js +16 -22
- package/dist/esm/components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.js +38 -46
- package/dist/esm/components/selectable-card-checkbox-group-field/TanstackSelectableCardCheckboxGroupField.js +29 -37
- package/dist/esm/components/selectable-card-radio-group-field/SelectableCardRadioGroupField.js +37 -45
- package/dist/esm/components/selectable-card-radio-group-field/TanstackSelectableCardRadioGroupField.js +29 -37
- package/dist/esm/components/side-panel/SidePanel.js +53 -71
- package/dist/esm/components/side-panel/parts/SidePanelContent.js +25 -25
- package/dist/esm/components/side-panel/parts/SidePanelDragIndicator.js +44 -65
- package/dist/esm/components/side-panel/parts/SidePanelFooter.js +26 -29
- package/dist/esm/components/side-panel/parts/SidePanelHeader.js +41 -43
- package/dist/esm/components/skip-links/SkipLinks.js +69 -87
- package/dist/esm/components/spinner/Spinner.js +76 -106
- package/dist/esm/components/stepper/Stepper.context.js +15 -20
- package/dist/esm/components/stepper/Stepper.js +16 -18
- package/dist/esm/components/stepper/hooks/useStepper.js +20 -25
- package/dist/esm/components/stepper/parts/Step.js +47 -56
- package/dist/esm/components/table/Table.context.js +35 -41
- package/dist/esm/components/table/Table.js +155 -225
- package/dist/esm/components/table/hooks/useTableKeyboardNavigation.js +180 -208
- package/dist/esm/components/table/parts/TableBody.js +81 -104
- package/dist/esm/components/table/parts/TableCell.js +38 -62
- package/dist/esm/components/table/parts/TableColumnHeader.js +62 -78
- package/dist/esm/components/table/parts/TableEmptyState.js +131 -161
- package/dist/esm/components/table/parts/TableHeader.js +24 -37
- package/dist/esm/components/table/parts/TablePagination.js +119 -141
- package/dist/esm/components/table/parts/TableRow.js +36 -52
- package/dist/esm/components/tabs/Tabs.context.js +19 -20
- package/dist/esm/components/tabs/Tabs.js +26 -24
- package/dist/esm/components/tabs/Tabs.variant.js +35 -41
- package/dist/esm/components/tabs/parts/NavigationButton.js +37 -46
- package/dist/esm/components/tabs/parts/RawTab.js +22 -18
- package/dist/esm/components/tabs/parts/TabList.js +84 -83
- package/dist/esm/components/tabs/parts/TabPanel.js +13 -9
- package/dist/esm/components/task-menu/TaskMenu.context.js +44 -58
- package/dist/esm/components/task-menu/TaskMenu.js +21 -28
- package/dist/esm/components/task-menu/parts/Content.js +43 -48
- package/dist/esm/components/task-menu/parts/Header.js +39 -54
- package/dist/esm/components/task-menu/parts/RawSubTask.js +141 -166
- package/dist/esm/components/task-menu/parts/RawTask.js +115 -145
- package/dist/esm/components/task-menu/parts/TaskGroup.js +103 -140
- package/dist/esm/components/task-menu/parts/dot.js +19 -0
- package/dist/esm/components/task-menu/parts/task.variants.js +59 -64
- package/dist/esm/components/text/Text.js +56 -71
- package/dist/esm/components/text/Text.variants.js +106 -112
- package/dist/esm/components/text-area/TanstackTextArea.js +30 -35
- package/dist/esm/components/text-area/TextArea.js +121 -164
- package/dist/esm/components/text-field/TanstackTextField.js +39 -59
- package/dist/esm/components/text-field/TextField.js +53 -76
- package/dist/esm/components/timeline/Timeline.context.js +18 -21
- package/dist/esm/components/timeline/Timeline.js +33 -37
- package/dist/esm/components/timeline/Timeline.utils.js +8 -8
- package/dist/esm/components/timeline/Timeline.variants.js +93 -118
- package/dist/esm/components/timeline/parts/TimelineMarker.js +36 -26
- package/dist/esm/components/timeline/parts/TimelineStep.context.js +15 -19
- package/dist/esm/components/timeline/parts/TimelineStep.js +57 -52
- package/dist/esm/components/timeline/parts/TimelineStepContent.context.js +15 -20
- package/dist/esm/components/timeline/parts/TimelineStepContent.js +30 -17
- package/dist/esm/components/timeline/parts/TimelineStepDescription.js +12 -7
- package/dist/esm/components/timeline/parts/TimelineStepHeader.js +34 -36
- package/dist/esm/components/timeline/parts/check.js +23 -0
- package/dist/esm/components/toast/Toast.context.js +15 -20
- package/dist/esm/components/toast/ToastManager.js +13 -21
- package/dist/esm/components/toast/UnityToast.js +82 -95
- package/dist/esm/components/toast/parts/ToastAction.js +18 -13
- package/dist/esm/components/toast/parts/ToastContent.js +13 -9
- package/dist/esm/components/toast/parts/ToastTitle.js +13 -8
- package/dist/esm/components/toast/test-utils.js +63 -117
- package/dist/esm/components/toast/toast.js +27 -38
- package/dist/esm/components/toggle-switch/TanstackToggleSwitch.js +21 -24
- package/dist/esm/components/toggle-switch/ToggleSwitch.js +111 -112
- package/dist/esm/components/toggle-switch-field/TanstackToggleSwitchField.js +19 -33
- package/dist/esm/components/toggle-switch-field/ToggleSwitchField.js +33 -58
- package/dist/esm/components/toggle-switch-group/TanstackToggleSwitchGroup.js +18 -21
- package/dist/esm/components/toggle-switch-group/ToggleSwitchGroup.js +83 -108
- package/dist/esm/components/toggle-switch-group-field/TanstackToggleSwitchGroupField.js +30 -49
- package/dist/esm/components/toggle-switch-group-field/ToggleSwitchGroupField.js +41 -61
- package/dist/esm/components/tooltip/Tooltip.js +30 -31
- package/dist/esm/hooks/tanstack-form-context.js +5 -8
- package/dist/esm/hooks/tanstack-form-default-values.js +5 -5
- package/dist/esm/hooks/use-async-list.js +2 -0
- package/dist/esm/hooks/use-breakpoint-listener.js +16 -25
- package/dist/esm/hooks/use-container-query-level.js +30 -31
- package/dist/esm/hooks/use-form.js +35 -29
- package/dist/esm/hooks/use-has-scroll.js +76 -74
- package/dist/esm/hooks/use-id.js +18 -24
- package/dist/esm/hooks/use-media-query.js +15 -18
- package/dist/esm/hooks/use-resizable.js +49 -49
- package/dist/esm/hooks/use-responsive-value.js +22 -26
- package/dist/esm/hooks/use-scroll-direction.js +50 -52
- package/dist/esm/hooks/use-tanstack-form.js +60 -287
- package/dist/esm/index.js +240 -577
- package/dist/esm/integrations/tanstack-router/components/breadcrumbs/BreadcrumbLink.js +7 -7
- package/dist/esm/integrations/tanstack-router/components/form-contextual-link/FormContextualLink.js +7 -7
- package/dist/esm/integrations/tanstack-router/components/link/Link.js +7 -7
- package/dist/esm/integrations/tanstack-router/components/link-button/LinkButton.js +5 -5
- package/dist/esm/integrations/tanstack-router/components/list-view/ListView.js +20 -23
- package/dist/esm/integrations/tanstack-router/components/list-view/parts/ListViewItem.js +17 -30
- package/dist/esm/integrations/tanstack-router/components/menu-item/MenuItem.js +17 -15
- package/dist/esm/integrations/tanstack-router/components/nav-item/NavItem.js +21 -27
- package/dist/esm/integrations/tanstack-router/components/navigation-card/NavigationCard.js +19 -35
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationLink.js +18 -20
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationNext.js +17 -20
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationPrevious.js +18 -21
- package/dist/esm/integrations/tanstack-router/components/tabs/Tabs.js +52 -67
- package/dist/esm/integrations/tanstack-router/components/tabs/parts/Tab.js +16 -22
- package/dist/esm/integrations/tanstack-router/components/tabs/parts/TabPanel.js +14 -14
- package/dist/esm/integrations/tanstack-router/components/task-menu/SubTask.js +15 -12
- package/dist/esm/integrations/tanstack-router/components/task-menu/Task.js +15 -12
- package/dist/esm/integrations/tanstack-router.js +19 -40
- package/dist/esm/providers/router/RouterProvider.js +24 -20
- package/dist/esm/storybook-testing.js +7 -14
- package/dist/esm/utils/createSchemaAdapter.js +7 -12
- package/dist/esm/utils/field-revalidate-logic.js +41 -38
- package/dist/esm/utils/platform.js +4 -4
- package/dist/esm/utils/scroll-detection.js +31 -32
- package/dist/esm/utils/spacing.js +14 -14
- package/package.json +12 -12
- package/dist/esm/components/phone-number/unknownFlag.svg.js +0 -4
- package/dist/esm/components/task-menu/parts/dot.svg.js +0 -5
- package/dist/esm/components/timeline/parts/check.svg.js +0 -5
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
export {
|
|
18
|
-
i as PageHeading
|
|
19
|
-
};
|
|
1
|
+
import { Text as e } from "../../text/Text.js";
|
|
2
|
+
import { forwardRef as t } from "react";
|
|
3
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
4
|
+
//#region src/components/page/parts/PageHeading.tsx
|
|
5
|
+
var r = t(({ variant: t, ...r }, i) => {
|
|
6
|
+
let a = t === "title" ? "h1" : "subtitle", o = t === "title" ? "content.neutral" : "content.neutral.low";
|
|
7
|
+
return /* @__PURE__ */ n(e, {
|
|
8
|
+
"data-dd-privacy": "mask",
|
|
9
|
+
...r,
|
|
10
|
+
ref: i,
|
|
11
|
+
variant: a,
|
|
12
|
+
color: o
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
r.displayName = "PageHeading";
|
|
16
|
+
//#endregion
|
|
17
|
+
export { r as PageHeading };
|
|
@@ -1,102 +1,78 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"aria-label": w.paginationLabel,
|
|
80
|
-
"aria-describedby": l.paginationListId,
|
|
81
|
-
children: [
|
|
82
|
-
/* @__PURE__ */ r(
|
|
83
|
-
T,
|
|
84
|
-
{
|
|
85
|
-
pageCount: o,
|
|
86
|
-
onJumpToPage: u,
|
|
87
|
-
state: n
|
|
88
|
-
}
|
|
89
|
-
),
|
|
90
|
-
c
|
|
91
|
-
]
|
|
92
|
-
}
|
|
93
|
-
)
|
|
94
|
-
}
|
|
95
|
-
);
|
|
96
|
-
}
|
|
97
|
-
);
|
|
98
|
-
j.displayName = "Pagination";
|
|
99
|
-
export {
|
|
100
|
-
j as Pagination,
|
|
101
|
-
g as pagination
|
|
102
|
-
};
|
|
1
|
+
import { PaginationJumpDialog as e } from "../client-side-pagination/parts/PaginationJumpDialog.js";
|
|
2
|
+
import { PaginationContext as t } from "./PaginationContext.js";
|
|
3
|
+
import { forwardRef as n, useCallback as r, useRef as i } from "react";
|
|
4
|
+
import { uyTv as a } from "@payfit/unity-themes";
|
|
5
|
+
import { jsx as o, jsxs as s } from "react/jsx-runtime";
|
|
6
|
+
import { useIntl as c } from "react-intl";
|
|
7
|
+
import { useId as l } from "react-aria/useId";
|
|
8
|
+
import { useOverlayTriggerState as u } from "react-stately/useOverlayTriggerState";
|
|
9
|
+
//#region src/components/pagination/Pagination.tsx
|
|
10
|
+
var d = a({ slots: { base: "uy:flex uy:gap-100 uy:relative" } }), f = n(({ children: n, pageCount: a, currentPage: f, onPageChange: p, ...m }, h) => {
|
|
11
|
+
let g = l(), _ = c(), v = u({}), y = i(/* @__PURE__ */ new Map()), b = { paginationLabel: _.formatMessage({
|
|
12
|
+
id: "unity:component:pagination:label",
|
|
13
|
+
defaultMessage: "Pagination"
|
|
14
|
+
}) }, x = { paginationListId: `uy:pagination-${g}__list` }, S = r((e) => {
|
|
15
|
+
p(e, f, Math.sign(e - f)), v.close(), requestAnimationFrame(() => {
|
|
16
|
+
let t = y.current.get(e);
|
|
17
|
+
t && t.focus();
|
|
18
|
+
});
|
|
19
|
+
}, [
|
|
20
|
+
p,
|
|
21
|
+
v,
|
|
22
|
+
y,
|
|
23
|
+
f
|
|
24
|
+
]), C = r((e) => {
|
|
25
|
+
e.preventDefault();
|
|
26
|
+
let t = f;
|
|
27
|
+
switch (e.key) {
|
|
28
|
+
case "ArrowLeft":
|
|
29
|
+
case "ArrowDown":
|
|
30
|
+
t = Math.max(1, f - 1);
|
|
31
|
+
break;
|
|
32
|
+
case "ArrowRight":
|
|
33
|
+
case "ArrowUp":
|
|
34
|
+
t = a === -1 ? f + 1 : Math.min(f + 1, a);
|
|
35
|
+
break;
|
|
36
|
+
case "Home":
|
|
37
|
+
t = 1;
|
|
38
|
+
break;
|
|
39
|
+
case "End":
|
|
40
|
+
a !== -1 && (t = a);
|
|
41
|
+
break;
|
|
42
|
+
}
|
|
43
|
+
t !== f && (p(t, f, Math.sign(t - f)), setTimeout(() => {
|
|
44
|
+
let e = y.current.get(t);
|
|
45
|
+
e && e.focus();
|
|
46
|
+
}, 0));
|
|
47
|
+
}, [
|
|
48
|
+
a,
|
|
49
|
+
f,
|
|
50
|
+
p
|
|
51
|
+
]), { base: w } = d();
|
|
52
|
+
return /* @__PURE__ */ o(t.Provider, {
|
|
53
|
+
value: {
|
|
54
|
+
pageCount: a,
|
|
55
|
+
currentPage: f,
|
|
56
|
+
onPageChange: p,
|
|
57
|
+
a11yIds: x,
|
|
58
|
+
pageRefs: y,
|
|
59
|
+
onKeyDown: C
|
|
60
|
+
},
|
|
61
|
+
children: /* @__PURE__ */ s("nav", {
|
|
62
|
+
"data-dd-privacy": "allow",
|
|
63
|
+
...m,
|
|
64
|
+
ref: h,
|
|
65
|
+
className: w(),
|
|
66
|
+
"aria-label": b.paginationLabel,
|
|
67
|
+
"aria-describedby": x.paginationListId,
|
|
68
|
+
children: [/* @__PURE__ */ o(e, {
|
|
69
|
+
pageCount: a,
|
|
70
|
+
onJumpToPage: S,
|
|
71
|
+
state: v
|
|
72
|
+
}), n]
|
|
73
|
+
})
|
|
74
|
+
});
|
|
75
|
+
});
|
|
76
|
+
f.displayName = "Pagination";
|
|
77
|
+
//#endregion
|
|
78
|
+
export { f as Pagination, d as pagination };
|
|
@@ -1,15 +1,9 @@
|
|
|
1
|
-
import { createContext as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
throw new Error(
|
|
8
|
-
"usePaginationContext must be used within a Pagination component"
|
|
9
|
-
);
|
|
10
|
-
return t;
|
|
11
|
-
};
|
|
12
|
-
export {
|
|
13
|
-
e as PaginationContext,
|
|
14
|
-
a as usePaginationContext
|
|
1
|
+
import { createContext as e, useContext as t } from "react";
|
|
2
|
+
//#region src/components/pagination/PaginationContext.tsx
|
|
3
|
+
var n = e(null), r = () => {
|
|
4
|
+
let e = t(n);
|
|
5
|
+
if (!e) throw Error("usePaginationContext must be used within a Pagination component");
|
|
6
|
+
return e;
|
|
15
7
|
};
|
|
8
|
+
//#endregion
|
|
9
|
+
export { n as PaginationContext, r as usePaginationContext };
|
|
@@ -1,27 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
currentPage: t,
|
|
20
|
-
previousPage: c,
|
|
21
|
-
nextPage: u,
|
|
22
|
-
goToPage: f
|
|
23
|
-
};
|
|
1
|
+
import { useCallback as e, useState as t } from "react";
|
|
2
|
+
//#region src/components/pagination/hooks/use-pagination-state.ts
|
|
3
|
+
function n({ pageCount: n, initialPage: r = 1, onPageChange: i }) {
|
|
4
|
+
let [a, o] = t(r), s = a - 1, c = a + 1, l = e((e) => {
|
|
5
|
+
i && i(e, a, Math.sign(e - a)), o(Math.max(1, Math.min(n, e)));
|
|
6
|
+
}, [
|
|
7
|
+
a,
|
|
8
|
+
n,
|
|
9
|
+
i
|
|
10
|
+
]);
|
|
11
|
+
return {
|
|
12
|
+
currentPage: a,
|
|
13
|
+
previousPage: s,
|
|
14
|
+
nextPage: c,
|
|
15
|
+
goToPage: e((e) => {
|
|
16
|
+
l(e === "previous" ? a - 1 : e === "next" ? a + 1 : e);
|
|
17
|
+
}, [a, l])
|
|
18
|
+
};
|
|
24
19
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
};
|
|
20
|
+
//#endregion
|
|
21
|
+
export { n as usePaginationState };
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
+
import { generatePaginationWithWindow as e } from "../utils/pagination-window.js";
|
|
1
2
|
import { useMemo as t } from "react";
|
|
2
|
-
|
|
3
|
-
function
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
() => r(o, i, n),
|
|
10
|
-
[o, i, n]
|
|
11
|
-
);
|
|
3
|
+
//#region src/components/pagination/hooks/use-pagination-window.ts
|
|
4
|
+
function n({ pageCount: n, currentPage: r, windowSize: i = 7 }) {
|
|
5
|
+
return t(() => e(n, r, i), [
|
|
6
|
+
n,
|
|
7
|
+
r,
|
|
8
|
+
i
|
|
9
|
+
]);
|
|
12
10
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
};
|
|
11
|
+
//#endregion
|
|
12
|
+
export { n as usePaginationWindow };
|
|
@@ -1,37 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import { uyTv as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"aria-label": s,
|
|
28
|
-
children: t
|
|
29
|
-
}
|
|
30
|
-
);
|
|
31
|
-
}
|
|
32
|
-
);
|
|
33
|
-
d.displayName = "PaginationContent";
|
|
34
|
-
export {
|
|
35
|
-
d as PaginationContent,
|
|
36
|
-
y as paginationContent
|
|
37
|
-
};
|
|
1
|
+
import { usePaginationContext as e } from "../PaginationContext.js";
|
|
2
|
+
import { forwardRef as t, useMemo as n } from "react";
|
|
3
|
+
import { uyTv as r } from "@payfit/unity-themes";
|
|
4
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
5
|
+
import { useIntl as a } from "react-intl";
|
|
6
|
+
//#region src/components/pagination/parts/PaginationContent.tsx
|
|
7
|
+
var o = r({ base: "uy:flex uy:gap-100 uy:list-none uy:m-0 uy:p-0" }), s = t(({ children: t, ...r }, s) => {
|
|
8
|
+
let c = a(), { pageCount: l, currentPage: u, a11yIds: d } = e(), f = c.formatMessage({
|
|
9
|
+
id: "unity:component:pagination:page-list:label",
|
|
10
|
+
defaultMessage: "Page {current} of {total}"
|
|
11
|
+
}, {
|
|
12
|
+
current: u,
|
|
13
|
+
total: l
|
|
14
|
+
}), p = n(() => o(), []);
|
|
15
|
+
return /* @__PURE__ */ i("ul", {
|
|
16
|
+
...r,
|
|
17
|
+
ref: s,
|
|
18
|
+
id: d.pagesList,
|
|
19
|
+
className: p,
|
|
20
|
+
"aria-label": f,
|
|
21
|
+
children: t
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
s.displayName = "PaginationContent";
|
|
25
|
+
//#endregion
|
|
26
|
+
export { s as PaginationContent, o as paginationContent };
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
})
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
1
|
+
import { forwardRef as e } from "react";
|
|
2
|
+
import { uyTv as t } from "@payfit/unity-themes";
|
|
3
|
+
import { jsx as n, jsxs as r } from "react/jsx-runtime";
|
|
4
|
+
import { FormattedMessage as i, useIntl as a } from "react-intl";
|
|
5
|
+
import { Button as o } from "react-aria-components/Button";
|
|
6
|
+
//#region src/components/pagination/parts/PaginationEllipsis.tsx
|
|
7
|
+
var s = t({ base: ["uy:min-w-300 uy:h-300 uy:p-25 uy:flex uy:justify-center uy:items-center uy:typography-action uy:rounded-pill uy:cursor-default", "uy:focus-visible:outline-2 uy:focus-visible:outline-solid uy:focus-visible:outline-utility-focus-ring uy:focus-visible:outline-offset-2"] }), c = e(({ value: e, ...t }, c) => {
|
|
8
|
+
let l = a(), [u, d] = e, f = d === Infinity ? l.formatMessage({
|
|
9
|
+
id: "unity:component:common:unknown",
|
|
10
|
+
defaultMessage: "unknown"
|
|
11
|
+
}) : d;
|
|
12
|
+
return /* @__PURE__ */ r(o, {
|
|
13
|
+
ref: c,
|
|
14
|
+
className: s(),
|
|
15
|
+
...t,
|
|
16
|
+
children: [/* @__PURE__ */ n("span", {
|
|
17
|
+
"aria-hidden": !0,
|
|
18
|
+
children: "…"
|
|
19
|
+
}), /* @__PURE__ */ n("span", {
|
|
20
|
+
className: "uy:sr-only",
|
|
21
|
+
children: /* @__PURE__ */ n(i, {
|
|
22
|
+
id: "unity:component:pagination:ellipsis:label",
|
|
23
|
+
defaultMessage: "More pages",
|
|
24
|
+
values: {
|
|
25
|
+
start: u,
|
|
26
|
+
end: f
|
|
27
|
+
}
|
|
28
|
+
})
|
|
29
|
+
})]
|
|
30
|
+
});
|
|
30
31
|
});
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
};
|
|
32
|
+
c.displayName = "PaginationEllipsis";
|
|
33
|
+
//#endregion
|
|
34
|
+
export { c as PaginationEllipsis };
|
|
@@ -1,22 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
);
|
|
19
|
-
f.displayName = "PaginationItem";
|
|
20
|
-
export {
|
|
21
|
-
f as PaginationItem
|
|
22
|
-
};
|
|
1
|
+
import { usePaginationContext as e } from "../PaginationContext.js";
|
|
2
|
+
import { forwardRef as t } from "react";
|
|
3
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
4
|
+
//#region src/components/pagination/parts/PaginationItem.tsx
|
|
5
|
+
var r = t(({ children: t, pageNumber: r, pageCount: i, ...a }, o) => {
|
|
6
|
+
let { pageCount: s } = e(), c = i ?? s, l = c === -1 ? void 0 : c;
|
|
7
|
+
return /* @__PURE__ */ n("li", {
|
|
8
|
+
...a,
|
|
9
|
+
ref: o,
|
|
10
|
+
"aria-setsize": l,
|
|
11
|
+
"aria-posinset": r,
|
|
12
|
+
children: t
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
r.displayName = "PaginationItem";
|
|
16
|
+
//#endregion
|
|
17
|
+
export { r as PaginationItem };
|
|
@@ -1,60 +1,50 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import { uyTv as
|
|
4
|
-
import {
|
|
5
|
-
import { useIntl as
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}),
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
);
|
|
56
|
-
C.displayName = "RawPaginationLink";
|
|
57
|
-
export {
|
|
58
|
-
C as RawPaginationLink,
|
|
59
|
-
R as paginationLink
|
|
60
|
-
};
|
|
1
|
+
import { usePaginationContext as e } from "../PaginationContext.js";
|
|
2
|
+
import { forwardRef as t, useCallback as n, useRef as r } from "react";
|
|
3
|
+
import { uyTv as i } from "@payfit/unity-themes";
|
|
4
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
5
|
+
import { useIntl as o } from "react-intl";
|
|
6
|
+
import { Link as s } from "react-aria-components/Link";
|
|
7
|
+
//#region src/components/pagination/parts/RawPaginationLink.tsx
|
|
8
|
+
var c = i({ base: [
|
|
9
|
+
"uy:min-w-300 uy:h-300 uy:p-25 uy:flex uy:justify-center uy:items-center uy:typography-action uy:rounded-pill uy:transition-colors",
|
|
10
|
+
"uy:enabled:text-content-neutral-enabled uy:enabled:bg-transparent uy:cursor-pointer",
|
|
11
|
+
"uy:data-[disabled]:text-content-neutral-disabled uy:data-[disabled]:bg-surface-neutral-lowest-disabled uy:data-[disabled]:cursor-not-allowed",
|
|
12
|
+
"uy:hover:text-content-neutral-hover uy:hover:bg-surface-neutral-lowest-hover",
|
|
13
|
+
"uy:active:text-content-neutral-pressed uy:active:bg-surface-neutral-lowest-pressed uy:data-[pressed]:text-content-neutral-pressed uy:data-[pressed]:bg-surface-neutral-lowest-pressed",
|
|
14
|
+
"uy:aria-[current=page]:bg-surface-neutral-lowest-selected",
|
|
15
|
+
"uy:focus-visible:outline-2 uy:focus-visible:outline-solid uy:focus-visible:outline-utility-focus-ring uy:focus-visible:outline-offset-2",
|
|
16
|
+
"uy:data-[focus-visible]:outline-2 uy:data-[focus-visible]:outline-solid uy:data-[focus-visible]:outline-utility-focus-ring uy:data-[focus-visible]:outline-offset-2"
|
|
17
|
+
] }), l = t(({ isCurrent: t, isDisabled: i, value: l, onPress: u, ...d }, f) => {
|
|
18
|
+
let p = o(), { currentPage: m, onKeyDown: h, pageRefs: g, onPageChange: _ } = e(), v = r(null), y = n((e) => {
|
|
19
|
+
v.current = e, e ? g.current.set(l, e) : g.current.delete(l), typeof f == "function" ? f(e) : f && (f.current = e);
|
|
20
|
+
}, [
|
|
21
|
+
l,
|
|
22
|
+
g,
|
|
23
|
+
f
|
|
24
|
+
]), b = t ?? m === l, x = n(() => {
|
|
25
|
+
d.href || _(l, m, l > m ? 1 : -1);
|
|
26
|
+
}, [
|
|
27
|
+
l,
|
|
28
|
+
m,
|
|
29
|
+
_,
|
|
30
|
+
d.href
|
|
31
|
+
]);
|
|
32
|
+
return /* @__PURE__ */ a(s, {
|
|
33
|
+
...d,
|
|
34
|
+
ref: y,
|
|
35
|
+
className: c(),
|
|
36
|
+
isDisabled: i,
|
|
37
|
+
onPress: u ?? x,
|
|
38
|
+
"aria-current": b ? "page" : void 0,
|
|
39
|
+
"aria-label": p.formatMessage({
|
|
40
|
+
id: "unity:component:pagination:link:label",
|
|
41
|
+
defaultMessage: "Page {page}"
|
|
42
|
+
}, { page: l }),
|
|
43
|
+
onKeyDown: (e) => {
|
|
44
|
+
h(e);
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
l.displayName = "RawPaginationLink";
|
|
49
|
+
//#endregion
|
|
50
|
+
export { l as RawPaginationLink, c as paginationLink };
|