@payfit/unity-components 1.2.0 → 2.1.4
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/components/action-bar/ActionBar.js +14 -14
- package/dist/esm/components/actionable/Actionable.js +31 -28
- package/dist/esm/components/alert/Alert.js +41 -29
- package/dist/esm/components/alert/parts/AlertTitle.js +8 -8
- package/dist/esm/components/app-layout/AppLayout.d.ts +2 -0
- package/dist/esm/components/app-layout/AppLayout.js +17 -17
- package/dist/esm/components/app-menu/parts/AppMenuFooter.js +23 -23
- package/dist/esm/components/app-menu/parts/AppMenuHeader.d.ts +87 -5
- package/dist/esm/components/app-menu/parts/AppMenuHeader.js +25 -25
- package/dist/esm/components/autocomplete/Autocomplete.d.ts +0 -9
- package/dist/esm/components/autocomplete/Autocomplete.js +54 -57
- package/dist/esm/components/autocomplete/parts/AutocompleteItem.js +8 -8
- package/dist/esm/components/avatar/Avatar.variants.js +1 -1
- package/dist/esm/components/avatar/parts/AvatarFallback.js +26 -27
- package/dist/esm/components/badge/Badge.js +1 -1
- package/dist/esm/components/breadcrumbs/Breadcrumbs.context.js +3 -3
- package/dist/esm/components/breadcrumbs/Breadcrumbs.d.ts +19 -11
- package/dist/esm/components/breadcrumbs/Breadcrumbs.js +29 -18
- package/dist/esm/components/breadcrumbs/Breadcrumbs.variant.js +1 -1
- package/dist/esm/components/breadcrumbs/parts/Breadcrumb.d.ts +30 -5
- package/dist/esm/components/breadcrumbs/parts/Breadcrumb.js +35 -27
- package/dist/esm/components/breadcrumbs/parts/RawBreadcrumbLink.d.ts +37 -0
- package/dist/esm/components/breadcrumbs/parts/RawBreadcrumbLink.js +36 -0
- package/dist/esm/components/button/Button.js +6 -6
- package/dist/esm/components/button/Button.variants.d.ts +1 -0
- package/dist/esm/components/button/Button.variants.js +22 -15
- package/dist/esm/components/card/Card.context.d.ts +5 -0
- package/dist/esm/components/card/Card.context.js +14 -0
- package/dist/esm/components/card/Card.d.ts +210 -0
- package/dist/esm/components/card/Card.js +93 -0
- package/dist/esm/components/card/parts/CardContent.d.ts +37 -0
- package/dist/esm/components/card/parts/CardContent.js +8 -0
- package/dist/esm/components/card/parts/CardTitle.d.ts +55 -0
- package/dist/esm/components/card/parts/CardTitle.js +33 -0
- package/dist/esm/components/checkbox/Checkbox.js +38 -30
- package/dist/esm/components/checkbox/Checkbox.variants.d.ts +9 -9
- package/dist/esm/components/checkbox/Checkbox.variants.js +23 -7
- package/dist/esm/components/checkbox/TanstackCheckbox.d.ts +28 -0
- package/dist/esm/components/checkbox/TanstackCheckbox.js +51 -0
- package/dist/esm/components/checkbox/parts/CheckboxIndicator.js +7 -7
- package/dist/esm/components/checkbox-field/CheckboxField.d.ts +2 -0
- package/dist/esm/components/checkbox-field/TanstackCheckboxField.d.ts +14 -0
- package/dist/esm/components/checkbox-field/TanstackCheckboxField.js +40 -0
- package/dist/esm/components/checkbox-group/TanstackCheckboxGroup.d.ts +4 -0
- package/dist/esm/components/checkbox-group/TanstackCheckboxGroup.js +37 -0
- package/dist/esm/components/checkbox-group-field/CheckboxGroupField.d.ts +2 -0
- package/dist/esm/components/checkbox-group-field/TanstackCheckGroupField.d.ts +72 -0
- package/dist/esm/components/checkbox-group-field/TanstackCheckGroupField.js +40 -0
- package/dist/esm/components/client-side-pagination/ClientSidePagination.d.ts +103 -0
- package/dist/esm/components/client-side-pagination/ClientSidePagination.js +177 -0
- package/dist/esm/components/client-side-pagination/parts/PaginationEllipsis.d.ts +11 -0
- package/dist/esm/components/client-side-pagination/parts/PaginationEllipsis.js +30 -0
- package/dist/esm/components/client-side-pagination/parts/PaginationJumpDialog.d.ts +8 -0
- package/dist/esm/components/{pagination → client-side-pagination}/parts/PaginationNavButton.js +1 -1
- package/dist/esm/components/{pagination/parts/PaginationLink.d.ts → client-side-pagination/parts/RawPaginationLink.d.ts} +2 -2
- package/dist/esm/components/{pagination/parts/PaginationLink.js → client-side-pagination/parts/RawPaginationLink.js} +12 -12
- package/dist/esm/components/client-side-pagination/utils/pagination-window.d.ts +8 -0
- package/dist/esm/components/client-side-pagination/utils/pagination-window.js +33 -0
- package/dist/esm/components/collapsible/parts/CollapsibleContent.js +5 -5
- package/dist/esm/components/collapsible/parts/CollapsibleTitle.js +8 -8
- package/dist/esm/components/data-table/DataTable.d.ts +109 -16
- package/dist/esm/components/data-table/DataTable.js +107 -93
- package/dist/esm/components/data-table/mocks/employee-data.d.ts +1 -0
- package/dist/esm/components/date-calendar/DateCalendar.js +1 -1
- package/dist/esm/components/date-calendar/parts/DateSegmentSelect.js +1 -1
- package/dist/esm/components/date-picker/DatePicker.d.ts +1 -1
- package/dist/esm/components/date-picker/DatePicker.js +59 -50
- package/dist/esm/components/date-picker/TanstackDatePicker.d.ts +22 -0
- package/dist/esm/components/date-picker/TanstackDatePicker.js +53 -0
- package/dist/esm/components/date-picker/parts/DateInput.js +4 -4
- package/dist/esm/components/date-picker-field/DatePickerField.d.ts +2 -0
- package/dist/esm/components/date-picker-field/TanstackDatePickerField.d.ts +71 -0
- package/dist/esm/components/date-picker-field/TanstackDatePickerField.js +41 -0
- package/dist/esm/components/definition-list/DefinitionList.context.d.ts +19 -0
- package/dist/esm/components/definition-list/DefinitionList.d.ts +24 -0
- package/dist/esm/components/definition-list/parts/DefinitionItem.d.ts +25 -0
- package/dist/esm/components/dialog/Dialog.d.ts +34 -22
- package/dist/esm/components/dialog/Dialog.js +90 -52
- package/dist/esm/components/dialog/parts/DialogActions.js +6 -6
- package/dist/esm/components/dialog/parts/DialogTitle.js +7 -4
- package/dist/esm/components/dialog/test-utils.d.ts +28 -0
- package/dist/esm/components/dialog/test-utils.js +78 -0
- package/dist/esm/components/error-state/ErrorState.d.ts +13 -1
- package/dist/esm/components/error-state/ErrorState.js +133 -92
- package/dist/esm/components/error-state/initConfig.js +1 -1
- package/dist/esm/components/fieldset/Fieldset.d.ts +19 -0
- package/dist/esm/components/fieldset/Fieldset.js +32 -26
- package/dist/esm/components/filter/Filter.controls.d.ts +192 -0
- package/dist/esm/components/filter/Filter.controls.js +45 -0
- package/dist/esm/components/filter/Filter.d.ts +189 -0
- package/dist/esm/components/filter/Filter.js +147 -0
- package/dist/esm/components/filter/Filter.types.d.ts +121 -0
- package/dist/esm/components/filter/hooks/useFilterIds.d.ts +49 -0
- package/dist/esm/components/filter/hooks/useFilterIds.js +13 -0
- package/dist/esm/components/filter/hooks/useFilterState.d.ts +74 -0
- package/dist/esm/components/filter/hooks/useFilterState.js +23 -0
- package/dist/esm/components/filter/hooks/useFilterValue.d.ts +61 -0
- package/dist/esm/components/filter/hooks/useFilterValue.js +31 -0
- package/dist/esm/components/filter/parts/FilterButton.d.ts +75 -0
- package/dist/esm/components/filter/parts/FilterButton.js +55 -0
- package/dist/esm/components/filter/parts/FilterLabel.d.ts +96 -0
- package/dist/esm/components/filter/parts/FilterLabel.js +57 -0
- package/dist/esm/components/filter/parts/FilterPopover.d.ts +95 -0
- package/dist/esm/components/filter/parts/FilterPopover.js +79 -0
- package/dist/esm/components/filter/utils/value-formatters.d.ts +62 -0
- package/dist/esm/components/filter/utils/value-formatters.js +14 -0
- package/dist/esm/components/filter-toolbar/FilterToolbar.d.ts +110 -0
- package/dist/esm/components/filter-toolbar/FilterToolbar.js +172 -0
- package/dist/esm/components/filter-toolbar/FilterToolbar.types.d.ts +119 -0
- package/dist/esm/components/filter-toolbar/hooks/use-filter-toolbar-state.d.ts +96 -0
- package/dist/esm/components/filter-toolbar/hooks/use-filter-toolbar-state.js +132 -0
- package/dist/esm/components/filter-toolbar/parts/AddFilter.d.ts +63 -0
- package/dist/esm/components/filter-toolbar/parts/AddFilter.js +107 -0
- package/dist/esm/components/filter-toolbar/parts/AddFilterItem.d.ts +18 -0
- package/dist/esm/components/filter-toolbar/parts/AddFilterItem.js +18 -0
- package/dist/esm/components/filter-toolbar/utils/filter-adapters.d.ts +93 -0
- package/dist/esm/components/filter-toolbar/utils/filter-adapters.js +88 -0
- package/dist/esm/components/filter-toolbar/utils/normalize-filter-value.d.ts +24 -0
- package/dist/esm/components/filter-toolbar/utils/normalize-filter-value.js +19 -0
- package/dist/esm/components/flex/Flex.js +52 -37
- package/dist/esm/components/form/Form.d.ts +2 -0
- package/dist/esm/components/form/TanstackForm.d.ts +24 -0
- package/dist/esm/components/form/TanstackForm.js +29 -0
- package/dist/esm/components/form-field/FormField.d.ts +2 -0
- package/dist/esm/components/form-field/FormField.js +12 -12
- package/dist/esm/components/form-field/TanstackFormField.context.d.ts +10 -0
- package/dist/esm/components/form-field/TanstackFormField.context.js +14 -0
- package/dist/esm/components/form-field/TanstackFormField.d.ts +49 -0
- package/dist/esm/components/form-field/TanstackFormField.js +46 -0
- package/dist/esm/components/form-field/parts/FormControl.d.ts +2 -0
- package/dist/esm/components/form-field/parts/FormFeedbackText.d.ts +2 -0
- package/dist/esm/components/form-field/parts/FormHelperText.d.ts +2 -0
- package/dist/esm/components/form-field/parts/FormLabel.d.ts +2 -0
- package/dist/esm/components/form-field/parts/RawFormContextualLink.d.ts +22 -0
- package/dist/esm/components/form-field/parts/RawFormContextualLink.js +39 -0
- package/dist/esm/components/form-field/parts/TanstackFormFeedbackText.d.ts +12 -0
- package/dist/esm/components/form-field/parts/TanstackFormFeedbackText.js +32 -0
- package/dist/esm/components/form-field/parts/TanstackFormHelperText.d.ts +11 -0
- package/dist/esm/components/form-field/parts/TanstackFormHelperText.js +25 -0
- package/dist/esm/components/form-field/parts/TanstackFormLabel.d.ts +8 -0
- package/dist/esm/components/form-field/parts/TanstackFormLabel.js +26 -0
- package/dist/esm/components/form-field/parts/TanstackRawFormContextualLink.d.ts +26 -0
- package/dist/esm/components/form-field/parts/TanstackRawFormContextualLink.js +45 -0
- package/dist/esm/components/funnel-layout/parts/FunnelSidebar.d.ts +2 -2
- package/dist/esm/components/icon/Icon.js +23 -19
- package/dist/esm/components/icon-button/CircularIconButton.d.ts +9 -9
- package/dist/esm/components/icon-button/CircularIconButton.js +53 -36
- package/dist/esm/components/icon-button/IconButton.variants.d.ts +1 -0
- package/dist/esm/components/icon-button/IconButton.variants.js +44 -28
- package/dist/esm/components/input/Input.js +36 -35
- package/dist/esm/components/input/TanstackInput.d.ts +22 -0
- package/dist/esm/components/input/TanstackInput.js +38 -0
- package/dist/esm/components/label/Label.js +12 -12
- package/dist/esm/components/link/{Link.variants.d.ts → RawLink.d.ts} +92 -0
- package/dist/esm/components/link/{Link.variants.js → RawLink.js} +78 -5
- package/dist/esm/components/list-view/ListView.d.ts +56 -0
- package/dist/esm/components/list-view/ListView.fixtures.d.ts +20 -0
- package/dist/esm/components/list-view/ListView.js +44 -0
- package/dist/esm/components/list-view/parts/ListViewItemLabel.d.ts +34 -0
- package/dist/esm/components/list-view/parts/ListViewItemLabel.js +22 -0
- package/dist/esm/components/list-view/parts/ListViewItemText.d.ts +33 -0
- package/dist/esm/components/list-view/parts/ListViewItemText.js +22 -0
- package/dist/esm/components/list-view/parts/ListViewSection.d.ts +14 -0
- package/dist/esm/components/list-view/parts/ListViewSection.js +21 -0
- package/dist/esm/components/list-view/parts/RawListViewItem.d.ts +102 -0
- package/dist/esm/components/list-view/parts/RawListViewItem.js +80 -0
- package/dist/esm/components/menu/parts/{MenuItem.d.ts → RawMenuItem.d.ts} +3 -4
- package/dist/esm/components/menu/parts/{MenuItem.js → RawMenuItem.js} +9 -9
- package/dist/esm/components/multi-select/MultiSelect.d.ts +5 -7
- package/dist/esm/components/multi-select/MultiSelect.js +199 -176
- package/dist/esm/components/multi-select/MultiselectTypes.d.ts +114 -0
- package/dist/esm/components/multi-select/TanstackMultiSelect.d.ts +7 -0
- package/dist/esm/components/multi-select/TanstackMultiSelect.js +41 -0
- package/dist/esm/components/multi-select/parts/MultiSelectButton.d.ts +2 -0
- package/dist/esm/components/multi-select/parts/MultiSelectButton.js +62 -46
- package/dist/esm/components/multi-select/parts/MultiSelectPopover.js +15 -15
- package/dist/esm/components/multi-select-field/MultiSelectField.d.ts +45 -12
- package/dist/esm/components/multi-select-field/MultiSelectField.js +56 -66
- package/dist/esm/components/multi-select-field/TanstackMultiSelectField.d.ts +92 -0
- package/dist/esm/components/multi-select-field/TanstackMultiSelectField.js +48 -0
- package/dist/esm/components/multi-select-field/test-utils.d.ts +17 -0
- package/dist/esm/components/multi-select-field/test-utils.js +45 -0
- package/dist/esm/components/nav/parts/NavGroup.d.ts +3 -3
- package/dist/esm/components/nav/parts/NavGroup.js +62 -51
- package/dist/esm/components/nav/parts/{NavItem.d.ts → RawNavItem.d.ts} +102 -5
- package/dist/esm/components/nav/parts/RawNavItem.js +106 -0
- package/dist/esm/components/navigation-card/NavigationCard.context.d.ts +31 -0
- package/dist/esm/components/navigation-card/NavigationCard.context.js +13 -0
- package/dist/esm/components/navigation-card/NavigationCard.d.ts +46 -0
- package/dist/esm/components/navigation-card/NavigationCard.js +62 -0
- package/dist/esm/components/navigation-card/NavigationCard.types.d.ts +37 -0
- package/dist/esm/components/navigation-card/NavigationCard.variants.d.ts +1147 -0
- package/dist/esm/components/navigation-card/NavigationCard.variants.js +164 -0
- package/dist/esm/components/navigation-card/parts/NavigationCardDescription.d.ts +39 -0
- package/dist/esm/components/navigation-card/parts/NavigationCardDescription.js +22 -0
- package/dist/esm/components/navigation-card/parts/NavigationCardGroup.d.ts +146 -0
- package/dist/esm/components/navigation-card/parts/NavigationCardGroup.js +93 -0
- package/dist/esm/components/navigation-card/parts/NavigationCardLabel.d.ts +32 -0
- package/dist/esm/components/navigation-card/parts/NavigationCardLabel.js +24 -0
- package/dist/esm/components/number-field/NumberField.d.ts +2 -0
- package/dist/esm/components/number-field/TanstackNumberField.d.ts +74 -0
- package/dist/esm/components/number-field/TanstackNumberField.js +44 -0
- package/dist/esm/components/number-input/NumberInput.js +31 -29
- package/dist/esm/components/number-input/TanstackNumberInput.d.ts +58 -0
- package/dist/esm/components/number-input/TanstackNumberInput.js +38 -0
- package/dist/esm/components/page/Page.js +13 -12
- package/dist/esm/components/page/parts/PageHeader.d.ts +79 -9
- package/dist/esm/components/page/parts/PageHeader.js +22 -20
- package/dist/esm/components/pagination/Pagination.d.ts +23 -44
- package/dist/esm/components/pagination/Pagination.js +89 -163
- package/dist/esm/components/pagination/PaginationContext.d.ts +11 -0
- package/dist/esm/components/pagination/PaginationContext.js +15 -0
- package/dist/esm/components/pagination/hooks/use-pagination-state.d.ts +63 -0
- package/dist/esm/components/pagination/hooks/use-pagination-state.js +27 -0
- package/dist/esm/components/pagination/hooks/use-pagination-window.d.ts +64 -0
- package/dist/esm/components/pagination/hooks/use-pagination-window.js +15 -0
- package/dist/esm/components/pagination/parts/PaginationContent.d.ts +30 -0
- package/dist/esm/components/pagination/parts/PaginationContent.js +37 -0
- package/dist/esm/components/pagination/parts/PaginationEllipsis.d.ts +23 -4
- package/dist/esm/components/pagination/parts/PaginationEllipsis.js +20 -16
- package/dist/esm/components/pagination/parts/PaginationItem.d.ts +38 -0
- package/dist/esm/components/pagination/parts/PaginationItem.js +22 -0
- package/dist/esm/components/pagination/parts/RawPaginationLink.d.ts +11 -0
- package/dist/esm/components/pagination/parts/RawPaginationLink.js +60 -0
- package/dist/esm/components/pagination/parts/RawPaginationNext.d.ts +22 -0
- package/dist/esm/components/pagination/parts/RawPaginationNext.js +70 -0
- package/dist/esm/components/pagination/parts/RawPaginationPrevious.d.ts +22 -0
- package/dist/esm/components/pagination/parts/RawPaginationPrevious.js +67 -0
- package/dist/esm/components/pagination/utils/pagination-window.js +29 -20
- package/dist/esm/components/payfit-brand/PayFitBrand.d.ts +4 -0
- package/dist/esm/components/payfit-brand/PayFitBrand.js +30 -22
- package/dist/esm/components/payfit-brand/PayFitPreprod.js +25 -25
- package/dist/esm/components/phone-number/PhoneNumberInput.d.ts +67 -0
- package/dist/esm/components/phone-number/PhoneNumberInput.js +322 -0
- package/dist/esm/components/phone-number/TanstackPhoneNumberInput.d.ts +64 -0
- package/dist/esm/components/phone-number/TanstackPhoneNumberInput.js +33 -0
- package/dist/esm/components/phone-number/parts/PhoneNumberItem.d.ts +42 -0
- package/dist/esm/components/phone-number/parts/PhoneNumberItem.js +68 -0
- package/dist/esm/components/phone-number/unknownFlag.svg.js +4 -0
- package/dist/esm/components/phone-number-field/TanstackPhoneNumberField.d.ts +15 -0
- package/dist/esm/components/phone-number-field/TanstackPhoneNumberField.js +32 -0
- package/dist/esm/components/pill/Pill.d.ts +2 -2
- package/dist/esm/components/pill/Pill.js +8 -8
- package/dist/esm/components/popover/Popover.js +6 -6
- package/dist/esm/components/promo-dialog/PromoDialog.d.ts +149 -0
- package/dist/esm/components/promo-dialog/PromoDialog.js +219 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogActions.d.ts +44 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogActions.js +29 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogContent.d.ts +43 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogContent.js +20 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogHero.d.ts +47 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogHero.js +25 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogSubtitle.d.ts +53 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogSubtitle.js +21 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogTitle.d.ts +6 -0
- package/dist/esm/components/promo-dialog/parts/PromoDialogTitle.js +18 -0
- package/dist/esm/components/radio-button-group/TanstackRadioButtonGroup.d.ts +13 -0
- package/dist/esm/components/radio-button-group/TanstackRadioButtonGroup.js +43 -0
- package/dist/esm/components/radio-button-group/parts/RadioButton.d.ts +29 -11
- package/dist/esm/components/radio-button-group/parts/RadioButton.js +53 -51
- package/dist/esm/components/radio-button-group-field/RadioButtonGroupField.d.ts +2 -0
- package/dist/esm/components/radio-button-group-field/TanstackRadioButtonGroupField.d.ts +13 -0
- package/dist/esm/components/radio-button-group-field/TanstackRadioButtonGroupField.js +38 -0
- package/dist/esm/components/search/Search.js +46 -46
- package/dist/esm/components/segmented-button-group/parts/ToggleButton.js +5 -5
- package/dist/esm/components/select/Select.d.ts +5 -4
- package/dist/esm/components/select/Select.js +79 -53
- package/dist/esm/components/select/TanstackSelect.d.ts +80 -0
- package/dist/esm/components/select/TanstackSelect.js +34 -0
- package/dist/esm/components/select/parts/SearchInput.d.ts +4 -1
- package/dist/esm/components/select/parts/SearchInput.js +49 -31
- package/dist/esm/components/select/parts/SelectButton.js +19 -17
- package/dist/esm/components/select/parts/SelectOption.js +9 -9
- package/dist/esm/components/select-field/SelectField.d.ts +2 -0
- package/dist/esm/components/select-field/SelectField.js +8 -9
- package/dist/esm/components/select-field/TanstackSelectField.d.ts +124 -0
- package/dist/esm/components/select-field/TanstackSelectField.js +44 -0
- package/dist/esm/components/select-list/SelectList.d.ts +95 -0
- package/dist/esm/components/select-list/SelectList.js +79 -0
- package/dist/esm/components/select-list/SelectList.types.d.ts +29 -0
- package/dist/esm/components/select-list/constants.d.ts +36 -0
- package/dist/esm/components/select-list/constants.js +29 -0
- package/dist/esm/components/select-list/helpers.d.ts +42 -0
- package/dist/esm/components/select-list/helpers.js +48 -0
- package/dist/esm/components/select-list/hooks/useControlledSelection.d.ts +23 -0
- package/dist/esm/components/select-list/hooks/useControlledSelection.js +16 -0
- package/dist/esm/components/select-list/hooks/useSelectedFirstSorting.d.ts +23 -0
- package/dist/esm/components/select-list/hooks/useSelectedFirstSorting.js +31 -0
- package/dist/esm/components/select-list/parts/SelectListEmptyState.d.ts +8 -0
- package/dist/esm/components/select-list/parts/SelectListEmptyState.js +25 -0
- package/dist/esm/components/select-list/parts/SelectListOptGroup.d.ts +118 -0
- package/dist/esm/components/select-list/parts/SelectListOptGroup.js +28 -0
- package/dist/esm/components/select-list/parts/SelectListOption.d.ts +24 -0
- package/dist/esm/components/select-list/parts/SelectListOption.js +72 -0
- package/dist/esm/components/select-list/parts/SelectListSearchInput.d.ts +2 -0
- package/dist/esm/components/select-list/parts/SelectListSearchInput.js +43 -0
- package/dist/esm/components/select-list/parts/SelectedItemsSection.d.ts +54 -0
- package/dist/esm/components/select-list/parts/SelectedItemsSection.js +35 -0
- package/dist/esm/components/select-list/utils/partition.d.ts +13 -0
- package/dist/esm/components/select-list/utils/partition.js +9 -0
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.context.d.ts +1 -5
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.d.ts +6 -1
- package/dist/esm/components/selectable-button-group/SelectableButtonGroup.js +23 -23
- package/dist/esm/components/selectable-button-group/TanstackSelectableButtonGroup.d.ts +27 -0
- package/dist/esm/components/selectable-button-group/TanstackSelectableButtonGroup.js +34 -0
- package/dist/esm/components/selectable-button-group/parts/SelectableButton.d.ts +1 -16
- package/dist/esm/components/selectable-button-group/parts/SelectableButton.js +56 -57
- package/dist/esm/components/selectable-button-group-field/SelectableButtonGroupField.d.ts +2 -0
- package/dist/esm/components/selectable-button-group-field/TanstackSelectableButtonGroupField.d.ts +81 -0
- package/dist/esm/components/selectable-button-group-field/TanstackSelectableButtonGroupField.js +47 -0
- package/dist/esm/components/selectable-card/internals/Description.js +1 -1
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.js +1 -1
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/TanstackSelectableCardCheckboxGroup.d.ts +26 -0
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/TanstackSelectableCardCheckboxGroup.js +32 -0
- package/dist/esm/components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.js +24 -24
- package/dist/esm/components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.d.ts +2 -0
- package/dist/esm/components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.js +12 -14
- package/dist/esm/components/selectable-card/selectable-card-radio-group/TanstackSelectableCardRadioGroup.d.ts +28 -0
- package/dist/esm/components/selectable-card/selectable-card-radio-group/TanstackSelectableCardRadioGroup.js +32 -0
- package/dist/esm/components/selectable-card/selectable-card-radio-group/parts/RadioIndicator.js +14 -13
- package/dist/esm/components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.js +27 -25
- package/dist/esm/components/selectable-card/selectableCard.variant.js +5 -5
- package/dist/esm/components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.d.ts +2 -0
- package/dist/esm/components/selectable-card-checkbox-group-field/TanstackSelectableCardCheckboxGroupField.d.ts +10 -0
- package/dist/esm/components/selectable-card-checkbox-group-field/TanstackSelectableCardCheckboxGroupField.js +38 -0
- package/dist/esm/components/selectable-card-radio-group-field/SelectableCardRadioGroupField.d.ts +2 -0
- package/dist/esm/components/selectable-card-radio-group-field/TanstackSelectableCardRadioGroupField.d.ts +10 -0
- package/dist/esm/components/selectable-card-radio-group-field/TanstackSelectableCardRadioGroupField.js +38 -0
- package/dist/esm/components/skip-links/SkipLinks.js +1 -1
- package/dist/esm/components/table/Table.context.d.ts +5 -0
- package/dist/esm/components/table/Table.context.js +14 -13
- package/dist/esm/components/table/Table.d.ts +94 -0
- package/dist/esm/components/table/Table.js +145 -108
- package/dist/esm/components/table/hooks/useTableKeyboardNavigation.js +6 -6
- package/dist/esm/components/table/parts/TableBody.js +83 -21
- package/dist/esm/components/table/parts/TableCell.js +29 -26
- package/dist/esm/components/table/parts/TableEmptyState.js +6 -6
- package/dist/esm/components/table/parts/TableHeader.js +1 -1
- package/dist/esm/components/table/parts/TablePagination.d.ts +5 -5
- package/dist/esm/components/table/parts/TablePagination.js +11 -11
- package/dist/esm/components/table/parts/TableRow.js +22 -18
- package/dist/esm/components/tabs/Tabs.variant.d.ts +0 -6
- package/dist/esm/components/tabs/Tabs.variant.js +11 -12
- package/dist/esm/components/tabs/parts/{Tab.d.ts → RawTab.d.ts} +2 -2
- package/dist/esm/components/tabs/parts/{Tab.js → RawTab.js} +6 -6
- package/dist/esm/components/task-menu/TaskMenu.d.ts +4 -4
- package/dist/esm/components/task-menu/parts/{SubTask.d.ts → RawSubTask.d.ts} +7 -7
- package/dist/esm/components/task-menu/parts/{SubTask.js → RawSubTask.js} +43 -43
- package/dist/esm/components/task-menu/parts/{Task.d.ts → RawTask.d.ts} +7 -7
- package/dist/esm/components/task-menu/parts/{Task.js → RawTask.js} +45 -41
- package/dist/esm/components/task-menu/parts/TaskGroup.d.ts +5 -5
- package/dist/esm/components/task-menu/parts/TaskGroup.js +30 -26
- package/dist/esm/components/task-menu/parts/task.variants.js +4 -2
- package/dist/esm/components/text/Text.d.ts +11 -1
- package/dist/esm/components/text/Text.js +43 -30
- package/dist/esm/components/text/Text.variants.d.ts +12 -0
- package/dist/esm/components/text/Text.variants.js +4 -0
- package/dist/esm/components/text-area/TanstackTextArea.d.ts +21 -0
- package/dist/esm/components/text-area/TanstackTextArea.js +35 -0
- package/dist/esm/components/text-area/TextArea.js +31 -29
- package/dist/esm/components/text-field/TanstackTextField.d.ts +79 -0
- package/dist/esm/components/text-field/TanstackTextField.js +60 -0
- package/dist/esm/components/text-field/TextField.d.ts +2 -0
- package/dist/esm/components/toast/UnityToast.js +5 -5
- package/dist/esm/components/toast/test-utils.d.ts +36 -0
- package/dist/esm/components/toast/test-utils.js +118 -0
- package/dist/esm/components/toggle-switch/TanstackToggleSwitch.d.ts +46 -0
- package/dist/esm/components/toggle-switch/TanstackToggleSwitch.js +25 -0
- package/dist/esm/components/toggle-switch/ToggleSwitch.d.ts +21 -9
- package/dist/esm/components/toggle-switch/ToggleSwitch.js +71 -32
- package/dist/esm/components/toggle-switch-field/TanstackToggleSwitchField.d.ts +11 -0
- package/dist/esm/components/toggle-switch-field/TanstackToggleSwitchField.js +34 -0
- package/dist/esm/components/toggle-switch-field/ToggleSwitchField.d.ts +2 -0
- package/dist/esm/components/toggle-switch-group/TanstackToggleSwitchGroup.d.ts +57 -0
- package/dist/esm/components/toggle-switch-group/TanstackToggleSwitchGroup.js +23 -0
- package/dist/esm/components/toggle-switch-group/ToggleSwitchGroup.js +1 -1
- package/dist/esm/components/toggle-switch-group-field/TanstackToggleSwitchGroupField.d.ts +19 -0
- package/dist/esm/components/toggle-switch-group-field/TanstackToggleSwitchGroupField.js +50 -0
- package/dist/esm/components/toggle-switch-group-field/ToggleSwitchGroupField.d.ts +2 -0
- package/dist/esm/docs/{table → examples/data}/mocks/employee-columns.d.ts +1 -1
- package/dist/esm/hooks/tanstack-form-context.d.ts +1 -0
- package/dist/esm/hooks/tanstack-form-context.js +8 -0
- package/dist/esm/hooks/use-container-query-level.d.ts +42 -0
- package/dist/esm/hooks/use-container-query-level.js +33 -0
- package/dist/esm/hooks/use-form.d.ts +2 -0
- package/dist/esm/hooks/use-has-scroll.d.ts +71 -0
- package/dist/esm/hooks/use-has-scroll.js +75 -0
- package/dist/esm/hooks/use-tanstack-form.d.ts +369 -0
- package/dist/esm/hooks/use-tanstack-form.js +209 -0
- package/dist/esm/index.d.ts +64 -30
- package/dist/esm/index.js +482 -394
- package/dist/esm/index.storybook-testing.d.ts +3 -0
- package/dist/esm/integrations/tanstack-router/components/breadcrumbs/Breadcrumb.d.ts +23 -0
- package/dist/esm/integrations/tanstack-router/components/breadcrumbs/BreadcrumbLink.d.ts +38 -0
- package/dist/esm/integrations/tanstack-router/components/breadcrumbs/BreadcrumbLink.js +7 -0
- package/dist/esm/integrations/tanstack-router/components/breadcrumbs/Breadcrumbs.d.ts +23 -0
- package/dist/esm/integrations/tanstack-router/components/breadcrumbs/use-route-breadcrumb.d.ts +53 -0
- package/dist/esm/integrations/tanstack-router/components/form-contextual-link/FormContextualLink.d.ts +45 -0
- package/dist/esm/integrations/tanstack-router/components/form-contextual-link/FormContextualLink.js +7 -0
- package/dist/esm/integrations/tanstack-router/components/form-contextual-link/TanstackFormContextualLink.d.ts +43 -0
- package/dist/esm/integrations/tanstack-router/components/link/Link.d.ts +33 -0
- package/dist/esm/integrations/tanstack-router/components/link/Link.js +7 -0
- package/dist/esm/integrations/tanstack-router/components/list-view/ListView.d.ts +34 -0
- package/dist/esm/integrations/tanstack-router/components/list-view/ListView.js +25 -0
- package/dist/esm/integrations/tanstack-router/components/list-view/parts/ListViewItem.d.ts +51 -0
- package/dist/esm/integrations/tanstack-router/components/list-view/parts/ListViewItem.js +32 -0
- package/dist/esm/integrations/tanstack-router/components/menu-item/MenuItem.d.ts +49 -0
- package/dist/esm/integrations/tanstack-router/components/menu-item/MenuItem.js +16 -0
- package/dist/esm/integrations/tanstack-router/components/nav-item/NavItem.d.ts +52 -0
- package/dist/esm/integrations/tanstack-router/components/nav-item/NavItem.js +29 -0
- package/dist/esm/integrations/tanstack-router/components/navigation-card/NavigationCard.d.ts +73 -0
- package/dist/esm/integrations/tanstack-router/components/navigation-card/NavigationCard.js +37 -0
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationLink.d.ts +54 -0
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationLink.js +21 -0
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationNext.d.ts +52 -0
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationNext.js +22 -0
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationPrevious.d.ts +51 -0
- package/dist/esm/integrations/tanstack-router/components/pagination/PaginationPrevious.js +22 -0
- package/dist/esm/integrations/tanstack-router/components/tabs/Tabs.d.ts +82 -0
- package/dist/esm/integrations/tanstack-router/components/tabs/Tabs.js +41 -0
- package/dist/esm/integrations/tanstack-router/components/tabs/parts/Tab.d.ts +52 -0
- package/dist/esm/integrations/tanstack-router/components/tabs/parts/Tab.js +15 -0
- package/dist/esm/integrations/tanstack-router/components/tabs/parts/TabList.d.ts +5 -0
- package/dist/esm/integrations/tanstack-router/components/tabs/parts/TabPanel.d.ts +77 -0
- package/dist/esm/integrations/tanstack-router/components/tabs/parts/TabPanel.js +16 -0
- package/dist/esm/integrations/tanstack-router/components/task-menu/SubTask.d.ts +69 -0
- package/dist/esm/integrations/tanstack-router/components/task-menu/SubTask.js +14 -0
- package/dist/esm/integrations/tanstack-router/components/task-menu/Task.d.ts +64 -0
- package/dist/esm/integrations/tanstack-router/components/task-menu/Task.js +14 -0
- package/dist/esm/integrations/tanstack-router/index.d.ts +19 -0
- package/dist/esm/integrations/tanstack-router/utils/decorators.d.ts +23 -0
- package/dist/esm/integrations/tanstack-router.js +40 -0
- package/dist/esm/mocks/employees.d.ts +1 -5
- package/dist/esm/providers/router/RouterProvider.d.ts +7 -2
- package/dist/esm/providers/router/RouterProvider.js +14 -10
- package/dist/esm/storybook-testing.js +8 -2
- package/dist/esm/storybook-utilities/previewTransform.d.ts +1 -0
- package/dist/esm/types/DataAttributes.d.ts +1 -1
- package/dist/esm/utils/scroll-detection.d.ts +77 -0
- package/dist/esm/utils/scroll-detection.js +33 -0
- package/dist/esm/utils/spacing.d.ts +63 -0
- package/dist/esm/utils/spacing.js +15 -0
- package/i18n/en-GB.json +22 -8
- package/i18n/es-ES.json +24 -10
- package/i18n/fr-FR.json +25 -11
- package/package.json +66 -45
- package/dist/esm/components/form-field/parts/FormContextualLink.d.ts +0 -20
- package/dist/esm/components/form-field/parts/FormContextualLink.js +0 -37
- package/dist/esm/components/link/Link.d.ts +0 -93
- package/dist/esm/components/link/Link.js +0 -68
- package/dist/esm/components/multi-select/Multiselect.types.d.ts +0 -109
- package/dist/esm/components/nav/parts/NavItem.js +0 -95
- package/dist/esm/integrations/react-router/v5/UnityReactRouterV5Provider.d.ts +0 -6
- package/dist/esm/integrations/react-router/v5/UnityReactRouterV5Provider.js +0 -28
- package/dist/esm/integrations/react-router/v5/index.d.ts +0 -1
- package/dist/esm/integrations/react-router/v5.js +0 -4
- /package/dist/esm/components/{pagination → client-side-pagination}/hooks/use-pagination.d.ts +0 -0
- /package/dist/esm/components/{pagination → client-side-pagination}/hooks/use-pagination.js +0 -0
- /package/dist/esm/components/{pagination → client-side-pagination}/parts/PaginationJumpDialog.js +0 -0
- /package/dist/esm/components/{pagination → client-side-pagination}/parts/PaginationNavButton.d.ts +0 -0
package/dist/esm/index.js
CHANGED
|
@@ -1,403 +1,491 @@
|
|
|
1
1
|
import { Actionable as r } from "./components/actionable/Actionable.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
2
|
+
import { ActionBar as p, actionBar as a } from "./components/action-bar/ActionBar.js";
|
|
3
|
+
import { ActionBarAction as x } from "./components/action-bar/parts/ActionBarAction.js";
|
|
4
|
+
import { ActionBarRoot as n, actionBarRoot as i } from "./components/action-bar/parts/ActionBarRoot.js";
|
|
5
|
+
import { Alert as u } from "./components/alert/Alert.js";
|
|
6
|
+
import { AlertActions as g } from "./components/alert/parts/AlertActions.js";
|
|
7
|
+
import { AlertContent as c } from "./components/alert/parts/AlertContent.js";
|
|
8
|
+
import { AlertTitle as S } from "./components/alert/parts/AlertTitle.js";
|
|
9
|
+
import { Anchor as T } from "./components/anchor/Anchor.js";
|
|
10
|
+
import { AppLayout as P } from "./components/app-layout/AppLayout.js";
|
|
11
|
+
import { AppMenu as A } from "./components/app-menu/AppMenu.js";
|
|
12
|
+
import { AppMenuContext as w, AppMenuContextProvider as R, useAppMenuContext as G } from "./components/app-menu/parts/AppMenu.context.js";
|
|
13
|
+
import { AppMenuFooter as L } from "./components/app-menu/parts/AppMenuFooter.js";
|
|
14
|
+
import { AppMenuHeader as D } from "./components/app-menu/parts/AppMenuHeader.js";
|
|
15
|
+
import { AppMenuNavContent as v } from "./components/app-menu/parts/AppMenuNavContent.js";
|
|
16
|
+
import { Autocomplete as H } from "./components/autocomplete/Autocomplete.js";
|
|
17
|
+
import { AutocompleteItem as E, autocompleteItem as O } from "./components/autocomplete/parts/AutocompleteItem.js";
|
|
18
|
+
import { AutocompleteItemGroup as _, autocompleteItemGroup as U } from "./components/autocomplete/parts/AutocompleteItemGroup.js";
|
|
19
|
+
import { Avatar as W } from "./components/avatar/Avatar.js";
|
|
20
|
+
import { AvatarFallback as j } from "./components/avatar/parts/AvatarFallback.js";
|
|
21
|
+
import { AvatarImage as z } from "./components/avatar/parts/AvatarImage.js";
|
|
22
|
+
import { AvatarPair as K } from "./components/avatar/parts/AvatarPair.js";
|
|
23
|
+
import { getInitials as Z } from "./components/avatar/utils.js";
|
|
24
|
+
import { Badge as oo } from "./components/badge/Badge.js";
|
|
25
|
+
import { BottomSheet as ro, bottomSheet as to } from "./components/bottom-sheet/BottomSheet.js";
|
|
26
|
+
import { BottomSheetContent as ao, bottomSheetContent as mo } from "./components/bottom-sheet/parts/BottomSheetContent.js";
|
|
27
|
+
import { BottomSheetFooter as fo, bottomSheetFooter as no } from "./components/bottom-sheet/parts/BottomSheetFooter.js";
|
|
28
|
+
import { BottomSheetHeader as lo, bottomSheetHeader as uo } from "./components/bottom-sheet/parts/BottomSheetHeader.js";
|
|
29
|
+
import { Breadcrumbs as bo } from "./components/breadcrumbs/Breadcrumbs.js";
|
|
30
|
+
import { Breadcrumb as so } from "./components/breadcrumbs/parts/Breadcrumb.js";
|
|
31
|
+
import { BREADCRUMB_CONTENT_MAX_LENGTH as Fo, RawBreadcrumbLink as To } from "./components/breadcrumbs/parts/RawBreadcrumbLink.js";
|
|
32
|
+
import { Button as Po } from "./components/button/Button.js";
|
|
33
|
+
import { Card as Ao, card as ko } from "./components/card/Card.js";
|
|
34
|
+
import { CardTitle as Ro } from "./components/card/parts/CardTitle.js";
|
|
35
|
+
import { CardContent as ho } from "./components/card/parts/CardContent.js";
|
|
36
|
+
import { CheckboxGroup as Io, checkboxGroup as Do } from "./components/checkbox-group/CheckboxGroup.js";
|
|
37
|
+
import { Checkbox as vo } from "./components/checkbox/Checkbox.js";
|
|
38
|
+
import { CheckboxStandalone as Ho } from "./components/checkbox/CheckboxStandalone.js";
|
|
39
|
+
import { Collapsible as Eo } from "./components/collapsible/Collapsible.js";
|
|
40
|
+
import { CollapsibleContent as Vo } from "./components/collapsible/parts/CollapsibleContent.js";
|
|
41
|
+
import { CollapsibleTitle as Uo } from "./components/collapsible/parts/CollapsibleTitle.js";
|
|
42
|
+
import { DataTable as Wo } from "./components/data-table/DataTable.js";
|
|
43
|
+
import { DataTableRoot as jo, dataTableRoot as qo } from "./components/data-table/parts/DataTableRoot.js";
|
|
44
|
+
import { DataTableBulkActions as Jo } from "./components/data-table/parts/DataTableBulkActions.js";
|
|
45
|
+
import { DateCalendar as Yo } from "./components/date-calendar/DateCalendar.js";
|
|
46
|
+
import { DatePicker as $o } from "./components/date-picker/DatePicker.js";
|
|
47
|
+
import { DefinitionTooltip as ee } from "./components/definition-tooltip/DefinitionTooltip.js";
|
|
48
|
+
import { Dialog as te, dialog as pe } from "./components/dialog/Dialog.js";
|
|
49
|
+
import { DialogActions as me } from "./components/dialog/parts/DialogActions.js";
|
|
50
|
+
import { DialogButton as fe } from "./components/dialog/parts/DialogActions/DialogButton.js";
|
|
51
|
+
import { DialogContent as ie } from "./components/dialog/parts/DialogContent.js";
|
|
52
|
+
import { DialogTitle as ue } from "./components/dialog/parts/DialogTitle.js";
|
|
53
|
+
import { PromoDialog as ge, promoDialog as be } from "./components/promo-dialog/PromoDialog.js";
|
|
54
|
+
import { PromoDialogHero as se } from "./components/promo-dialog/parts/PromoDialogHero.js";
|
|
55
|
+
import { PromoDialogSubtitle as Fe } from "./components/promo-dialog/parts/PromoDialogSubtitle.js";
|
|
56
|
+
import { PromoDialogContent as Ce } from "./components/promo-dialog/parts/PromoDialogContent.js";
|
|
57
|
+
import { PromoDialogActions as Be } from "./components/promo-dialog/parts/PromoDialogActions.js";
|
|
58
|
+
import { PromoDialogTitle as ke } from "./components/promo-dialog/parts/PromoDialogTitle.js";
|
|
59
|
+
import { ErrorState as Re, errorState as Ge } from "./components/error-state/ErrorState.js";
|
|
60
|
+
import { Fieldset as Le, fieldset as Ie } from "./components/fieldset/Fieldset.js";
|
|
61
|
+
import { FieldGroup as Me } from "./components/fieldset/parts/FieldGroup.js";
|
|
62
|
+
import { Filter as ye, FilterControls as He, FilterLabels as Ne, filterContainer as Ee, filterDismissButton as Oe } from "./components/filter/Filter.js";
|
|
63
|
+
import { FilterToolbar as _e, filterToolbar as Ue } from "./components/filter-toolbar/FilterToolbar.js";
|
|
64
|
+
import { Flex as We, Stack as Xe } from "./components/flex/Flex.js";
|
|
65
|
+
import { flex as qe, flexItem as ze } from "./components/flex/Flex.variants.js";
|
|
66
|
+
import { FlexItem as Ke, StackItem as Ye } from "./components/flex/FlexItem.js";
|
|
67
|
+
import { Form as $e } from "./components/form/Form.js";
|
|
68
|
+
import { FullPageLoader as er, fullPageLoader as rr } from "./components/full-page-loader/FullPageLoader.js";
|
|
69
|
+
import { FunnelLayout as pr, funnelLayout as ar } from "./components/funnel-layout/FunnelLayout.js";
|
|
70
|
+
import { FunnelBody as xr, funnelBody as fr } from "./components/funnel-layout/parts/FunnelBody.js";
|
|
71
|
+
import { FunnelPage as ir, funnelPage as lr } from "./components/funnel-layout/parts/FunnelPage.js";
|
|
72
|
+
import { FunnelPageAction as dr } from "./components/funnel-layout/parts/FunnelPageAction.js";
|
|
73
|
+
import { FunnelPageActions as br, funnelPageActions as cr } from "./components/funnel-layout/parts/FunnelPageActions.js";
|
|
74
|
+
import { FunnelPageContent as Sr, funnelPageContent as Fr } from "./components/funnel-layout/parts/FunnelPageContent.js";
|
|
75
|
+
import { FunnelPageFooter as Cr, funnelPageFooter as Pr } from "./components/funnel-layout/parts/FunnelPageFooter.js";
|
|
76
|
+
import { FunnelPageHeader as Ar, funnelPageHeader as kr } from "./components/funnel-layout/parts/FunnelPageHeader.js";
|
|
77
|
+
import { FunnelSidebar as Rr, funnelSidebar as Gr } from "./components/funnel-layout/parts/FunnelSidebar.js";
|
|
78
|
+
import { FunnelTopBar as Lr, funnelTopBar as Ir } from "./components/funnel-layout/parts/FunnelTopBar.js";
|
|
79
|
+
import { Grid as Mr } from "./components/grid/Grid.js";
|
|
80
|
+
import { grid as yr, gridItem as Hr } from "./components/grid/Grid.variants.js";
|
|
81
|
+
import { GridItem as Er } from "./components/grid/GridItem.js";
|
|
82
|
+
import { IconButton as Vr } from "./components/icon-button/IconButton.js";
|
|
83
|
+
import { Icon as Ur } from "./components/icon/Icon.js";
|
|
84
|
+
import { Input as Wr } from "./components/input/Input.js";
|
|
85
|
+
import { Label as jr } from "./components/label/Label.js";
|
|
86
|
+
import { RawLink as zr, link as Jr } from "./components/link/RawLink.js";
|
|
87
|
+
import { ListView as Yr } from "./components/list-view/ListView.js";
|
|
88
|
+
import { RawListViewItem as $r, listViewItem as ot } from "./components/list-view/parts/RawListViewItem.js";
|
|
89
|
+
import { ListViewSection as rt, listViewSection as tt } from "./components/list-view/parts/ListViewSection.js";
|
|
90
|
+
import { ListViewItemLabel as at } from "./components/list-view/parts/ListViewItemLabel.js";
|
|
91
|
+
import { ListViewItemText as xt } from "./components/list-view/parts/ListViewItemText.js";
|
|
92
|
+
import { Menu as nt } from "./components/menu/Menu.js";
|
|
93
|
+
import { MenuContent as lt } from "./components/menu/parts/MenuContent.js";
|
|
94
|
+
import { MenuHeader as dt } from "./components/menu/parts/MenuHeader.js";
|
|
95
|
+
import { RawMenuItem as bt } from "./components/menu/parts/RawMenuItem.js";
|
|
96
|
+
import { MenuSeparator as st } from "./components/menu/parts/MenuSeparator.js";
|
|
97
|
+
import { MenuTrigger as Ft } from "./components/menu/parts/MenuTrigger.js";
|
|
98
|
+
import { MultiSelect as Ct } from "./components/multi-select/MultiSelect.js";
|
|
99
|
+
import { MultiSelectOptGroup as Bt } from "./components/multi-select/parts/MultiSelectOptGroup.js";
|
|
100
|
+
import { MultiSelectOption as kt } from "./components/multi-select/parts/MultiSelectOption.js";
|
|
101
|
+
import { Nav as Rt } from "./components/nav/Nav.js";
|
|
102
|
+
import { NavGroup as ht } from "./components/nav/parts/NavGroup.js";
|
|
103
|
+
import { RawNavItem as It, navItemBase as Dt } from "./components/nav/parts/RawNavItem.js";
|
|
104
|
+
import { RawNavigationCard as vt } from "./components/navigation-card/NavigationCard.js";
|
|
105
|
+
import { NavigationCardGroup as Ht, navigationCardGroup as Nt } from "./components/navigation-card/parts/NavigationCardGroup.js";
|
|
106
|
+
import { NavigationCardLabel as Ot } from "./components/navigation-card/parts/NavigationCardLabel.js";
|
|
107
|
+
import { NavigationCardDescription as _t } from "./components/navigation-card/parts/NavigationCardDescription.js";
|
|
108
|
+
import { NumberInput as Qt, numberInput as Wt } from "./components/number-input/NumberInput.js";
|
|
109
|
+
import { Page as jt, page as qt } from "./components/page/Page.js";
|
|
110
|
+
import { PageHeader as Jt, pageHeader as Kt } from "./components/page/parts/PageHeader.js";
|
|
111
|
+
import { PageHeading as Zt } from "./components/page/parts/PageHeading.js";
|
|
112
|
+
import { Pagination as op, pagination as ep } from "./components/pagination/Pagination.js";
|
|
113
|
+
import { PaginationContent as tp, paginationContent as pp } from "./components/pagination/parts/PaginationContent.js";
|
|
114
|
+
import { PaginationItem as mp } from "./components/pagination/parts/PaginationItem.js";
|
|
115
|
+
import { RawPaginationLink as fp, paginationLink as np } from "./components/pagination/parts/RawPaginationLink.js";
|
|
116
|
+
import { RawPaginationPrevious as lp } from "./components/pagination/parts/RawPaginationPrevious.js";
|
|
117
|
+
import { RawPaginationNext as dp } from "./components/pagination/parts/RawPaginationNext.js";
|
|
118
|
+
import { PaginationEllipsis as bp } from "./components/pagination/parts/PaginationEllipsis.js";
|
|
119
|
+
import { usePaginationWindow as sp } from "./components/pagination/hooks/use-pagination-window.js";
|
|
120
|
+
import { usePaginationState as Fp } from "./components/pagination/hooks/use-pagination-state.js";
|
|
121
|
+
import { PayFitBrand as Cp } from "./components/payfit-brand/PayFitBrand.js";
|
|
122
|
+
import { PayFitBrandPreprod as Bp } from "./components/payfit-brand/PayFitPreprod.js";
|
|
123
|
+
import { PhoneNumberInput as kp } from "./components/phone-number/PhoneNumberInput.js";
|
|
124
|
+
import { Pill as Rp } from "./components/pill/Pill.js";
|
|
125
|
+
import { Popover as hp } from "./components/popover/Popover.js";
|
|
126
|
+
import { ProgressBar as Ip } from "./components/progress-bar/ProgressBar.js";
|
|
127
|
+
import { RadioButtonGroup as Mp } from "./components/radio-button-group/RadioButtonGroup.js";
|
|
128
|
+
import { RadioButton as yp, radioButton as Hp } from "./components/radio-button-group/parts/RadioButton.js";
|
|
129
|
+
import { RadioButtonHelper as Ep } from "./components/radio-button-group/parts/RadioButtonHelper.js";
|
|
130
|
+
import { Search as Vp, search as _p } from "./components/search/Search.js";
|
|
131
|
+
import { SegmentedButtonGroup as Qp } from "./components/segmented-button-group/SegmentedButtonGroup.js";
|
|
132
|
+
import { ToggleButton as Xp } from "./components/segmented-button-group/parts/ToggleButton.js";
|
|
133
|
+
import { SelectableButtonGroup as qp, selectableButtonGroup as zp } from "./components/selectable-button-group/SelectableButtonGroup.js";
|
|
134
|
+
import { SelectableButton as Kp, selectableButton as Yp } from "./components/selectable-button-group/parts/SelectableButton.js";
|
|
135
|
+
import { SelectableCardCheckboxGroup as $p } from "./components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.js";
|
|
136
|
+
import { SelectableCardCheckbox as ea } from "./components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.js";
|
|
137
|
+
import { SelectableCardRadioGroup as ta } from "./components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.js";
|
|
138
|
+
import { SelectableCardRadio as aa } from "./components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.js";
|
|
139
|
+
import { Select as xa } from "./components/select/Select.js";
|
|
140
|
+
import { SelectButton as na } from "./components/select/parts/SelectButton.js";
|
|
141
|
+
import { SelectOption as la } from "./components/select/parts/SelectOption.js";
|
|
142
|
+
import { SelectOptionGroup as da } from "./components/select/parts/SelectOptionGroup.js";
|
|
143
|
+
import { SelectOptionHelper as ba } from "./components/select/parts/SelectOptionHelper.js";
|
|
144
|
+
import { SidePanel as sa, sidePanel as Sa } from "./components/side-panel/SidePanel.js";
|
|
145
|
+
import { SidePanelContent as Ta, sidePanelContent as Ca } from "./components/side-panel/parts/SidePanelContent.js";
|
|
146
|
+
import { SidePanelFooter as Ba, sidePanelFooter as Aa } from "./components/side-panel/parts/SidePanelFooter.js";
|
|
147
|
+
import { SidePanelHeader as wa, sidePanelHeader as Ra } from "./components/side-panel/parts/SidePanelHeader.js";
|
|
148
|
+
import { SkipLink as ha, SkipLinks as La } from "./components/skip-links/SkipLinks.js";
|
|
149
|
+
import { Spinner as Da } from "./components/spinner/Spinner.js";
|
|
150
|
+
import { Table as va, TableRoot as ya } from "./components/table/Table.js";
|
|
151
|
+
import { TableBody as Na, tableBody as Ea } from "./components/table/parts/TableBody.js";
|
|
152
|
+
import { TableCell as Va, tableCell as _a } from "./components/table/parts/TableCell.js";
|
|
153
|
+
import { TableColumnHeader as Qa, tableColumnHeader as Wa } from "./components/table/parts/TableColumnHeader.js";
|
|
154
|
+
import { TableEmptyState as ja, TableEmptyStateError as qa, TableEmptyStateLoading as za, TableEmptyStateNoData as Ja, TableEmptyStateText as Ka, tableEmptyState as Ya } from "./components/table/parts/TableEmptyState.js";
|
|
155
|
+
import { TableHeader as $a, tableHeader as om } from "./components/table/parts/TableHeader.js";
|
|
156
|
+
import { TablePagination as rm, tablePagination as tm } from "./components/table/parts/TablePagination.js";
|
|
157
|
+
import { TableRow as am, tableRow as mm } from "./components/table/parts/TableRow.js";
|
|
158
|
+
import { Tabs as fm } from "./components/tabs/Tabs.js";
|
|
159
|
+
import { RawTab as im } from "./components/tabs/parts/RawTab.js";
|
|
160
|
+
import { TabList as um } from "./components/tabs/parts/TabList.js";
|
|
143
161
|
import { TabPanel as gm } from "./components/tabs/parts/TabPanel.js";
|
|
144
|
-
import { TaskMenu as
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import { TaskGroup as
|
|
148
|
-
import { TextArea as
|
|
149
|
-
import { TextField as Rm } from "./components/text-field/TextField.js";
|
|
162
|
+
import { TaskMenu as cm, taskMenu as sm } from "./components/task-menu/TaskMenu.js";
|
|
163
|
+
import { RawSubTask as Fm, rawSubTask as Tm } from "./components/task-menu/parts/RawSubTask.js";
|
|
164
|
+
import { RawTask as Pm, rawTask as Bm } from "./components/task-menu/parts/RawTask.js";
|
|
165
|
+
import { TaskGroup as km } from "./components/task-menu/parts/TaskGroup.js";
|
|
166
|
+
import { TextArea as Rm, textArea as Gm } from "./components/text-area/TextArea.js";
|
|
150
167
|
import { Text as Lm } from "./components/text/Text.js";
|
|
151
|
-
import { text as
|
|
152
|
-
import { TOAST_CONFIG as
|
|
153
|
-
import { toast as
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import { useUnityForm as
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
168
|
+
import { text as Dm } from "./components/text/Text.variants.js";
|
|
169
|
+
import { TOAST_CONFIG as vm, ToastManager as ym } from "./components/toast/ToastManager.js";
|
|
170
|
+
import { toast as Nm } from "./components/toast/toast.js";
|
|
171
|
+
import { ToggleSwitchGroup as Om, toggleSwitchGroup as Vm } from "./components/toggle-switch-group/ToggleSwitchGroup.js";
|
|
172
|
+
import { ToggleSwitch as Um, toggleSwitch as Qm } from "./components/toggle-switch/ToggleSwitch.js";
|
|
173
|
+
import { Tooltip as Xm } from "./components/tooltip/Tooltip.js";
|
|
174
|
+
import { useBreakpointListener as qm } from "./hooks/use-breakpoint-listener.js";
|
|
175
|
+
import { useContainerQueryLevel as Jm } from "./hooks/use-container-query-level.js";
|
|
176
|
+
import { useMediaQuery as Ym } from "./hooks/use-media-query.js";
|
|
177
|
+
import { useUnityForm as $m } from "./hooks/use-form.js";
|
|
178
|
+
import { CheckboxField as ex } from "./components/checkbox-field/CheckboxField.js";
|
|
179
|
+
import { CheckboxGroupField as tx } from "./components/checkbox-group-field/CheckboxGroupField.js";
|
|
180
|
+
import { DatePickerField as ax } from "./components/date-picker-field/DatePickerField.js";
|
|
181
|
+
import { FormField as xx } from "./components/form-field/FormField.js";
|
|
182
|
+
import { RawFormContextualLink as nx } from "./components/form-field/parts/RawFormContextualLink.js";
|
|
183
|
+
import { FormControl as lx } from "./components/form-field/parts/FormControl.js";
|
|
184
|
+
import { FormFeedbackText as dx } from "./components/form-field/parts/FormFeedbackText.js";
|
|
185
|
+
import { FormHelperText as bx } from "./components/form-field/parts/FormHelperText.js";
|
|
186
|
+
import { FormLabel as sx } from "./components/form-field/parts/FormLabel.js";
|
|
187
|
+
import { MultiSelectField as Fx } from "./components/multi-select-field/MultiSelectField.js";
|
|
188
|
+
import { NumberField as Cx, numberField as Px } from "./components/number-field/NumberField.js";
|
|
189
|
+
import { RadioButtonGroupField as Ax } from "./components/radio-button-group-field/RadioButtonGroupField.js";
|
|
190
|
+
import { SelectableButtonGroupField as wx } from "./components/selectable-button-group-field/SelectableButtonGroupField.js";
|
|
191
|
+
import { SelectableCardCheckboxGroupField as Gx } from "./components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.js";
|
|
192
|
+
import { SelectableCardRadioGroupField as Lx } from "./components/selectable-card-radio-group-field/SelectableCardRadioGroupField.js";
|
|
193
|
+
import { SelectField as Dx } from "./components/select-field/SelectField.js";
|
|
194
|
+
import { TextField as vx } from "./components/text-field/TextField.js";
|
|
195
|
+
import { ToggleSwitchField as Hx } from "./components/toggle-switch-field/ToggleSwitchField.js";
|
|
196
|
+
import { ToggleSwitchGroupField as Ex } from "./components/toggle-switch-group-field/ToggleSwitchGroupField.js";
|
|
197
|
+
import { useTanstackUnityForm as Vx, withFieldGroup as _x, withForm as Ux } from "./hooks/use-tanstack-form.js";
|
|
198
|
+
import { useFieldContext as Wx, useFormContext as Xx } from "./hooks/tanstack-form-context.js";
|
|
199
|
+
import { useFieldA11yContext as qx } from "./components/form-field/TanstackFormField.context.js";
|
|
200
|
+
import { NoopRouterProvider as Jx, RouterProvider as Kx, useRouter as Yx } from "./providers/router/RouterProvider.js";
|
|
201
|
+
import { DialogTrigger as $x, DialogTrigger as of } from "react-aria-components";
|
|
202
|
+
import { FilterAdapters as rf } from "./components/filter-toolbar/utils/filter-adapters.js";
|
|
203
|
+
import { useAsyncList as pf } from "react-stately";
|
|
169
204
|
export {
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
205
|
+
p as ActionBar,
|
|
206
|
+
x as ActionBarAction,
|
|
207
|
+
n as ActionBarRoot,
|
|
173
208
|
r as Actionable,
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
jo as
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
Me as
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
dr as
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
209
|
+
u as Alert,
|
|
210
|
+
g as AlertActions,
|
|
211
|
+
c as AlertContent,
|
|
212
|
+
S as AlertTitle,
|
|
213
|
+
T as Anchor,
|
|
214
|
+
P as AppLayout,
|
|
215
|
+
A as AppMenu,
|
|
216
|
+
w as AppMenuContext,
|
|
217
|
+
R as AppMenuContextProvider,
|
|
218
|
+
L as AppMenuFooter,
|
|
219
|
+
D as AppMenuHeader,
|
|
220
|
+
v as AppMenuNavContent,
|
|
221
|
+
H as Autocomplete,
|
|
222
|
+
E as AutocompleteItem,
|
|
223
|
+
_ as AutocompleteItemGroup,
|
|
224
|
+
W as Avatar,
|
|
225
|
+
j as AvatarFallback,
|
|
226
|
+
z as AvatarImage,
|
|
227
|
+
K as AvatarPair,
|
|
228
|
+
Fo as BREADCRUMB_CONTENT_MAX_LENGTH,
|
|
229
|
+
oo as Badge,
|
|
230
|
+
ro as BottomSheet,
|
|
231
|
+
ao as BottomSheetContent,
|
|
232
|
+
fo as BottomSheetFooter,
|
|
233
|
+
lo as BottomSheetHeader,
|
|
234
|
+
so as Breadcrumb,
|
|
235
|
+
bo as Breadcrumbs,
|
|
236
|
+
Po as Button,
|
|
237
|
+
Ao as Card,
|
|
238
|
+
ho as CardContent,
|
|
239
|
+
Ro as CardTitle,
|
|
240
|
+
vo as Checkbox,
|
|
241
|
+
ex as CheckboxField,
|
|
242
|
+
Io as CheckboxGroup,
|
|
243
|
+
tx as CheckboxGroupField,
|
|
244
|
+
Ho as CheckboxStandalone,
|
|
245
|
+
Eo as Collapsible,
|
|
246
|
+
Vo as CollapsibleContent,
|
|
247
|
+
Uo as CollapsibleTitle,
|
|
248
|
+
Wo as DataTable,
|
|
249
|
+
Jo as DataTableBulkActions,
|
|
250
|
+
jo as DataTableRoot,
|
|
251
|
+
Yo as DateCalendar,
|
|
252
|
+
$o as DatePicker,
|
|
253
|
+
ax as DatePickerField,
|
|
254
|
+
ee as DefinitionTooltip,
|
|
255
|
+
te as Dialog,
|
|
256
|
+
me as DialogActions,
|
|
257
|
+
fe as DialogButton,
|
|
258
|
+
ie as DialogContent,
|
|
259
|
+
ue as DialogTitle,
|
|
260
|
+
$x as DialogTrigger,
|
|
261
|
+
Re as ErrorState,
|
|
262
|
+
Me as FieldGroup,
|
|
263
|
+
Le as Fieldset,
|
|
264
|
+
ye as Filter,
|
|
265
|
+
rf as FilterAdapters,
|
|
266
|
+
He as FilterControls,
|
|
267
|
+
Ne as FilterLabels,
|
|
268
|
+
_e as FilterToolbar,
|
|
269
|
+
We as Flex,
|
|
270
|
+
Ke as FlexItem,
|
|
271
|
+
$e as Form,
|
|
272
|
+
lx as FormControl,
|
|
273
|
+
dx as FormFeedbackText,
|
|
274
|
+
xx as FormField,
|
|
275
|
+
bx as FormHelperText,
|
|
276
|
+
sx as FormLabel,
|
|
277
|
+
er as FullPageLoader,
|
|
278
|
+
xr as FunnelBody,
|
|
279
|
+
pr as FunnelLayout,
|
|
280
|
+
ir as FunnelPage,
|
|
281
|
+
dr as FunnelPageAction,
|
|
282
|
+
br as FunnelPageActions,
|
|
283
|
+
Sr as FunnelPageContent,
|
|
284
|
+
Cr as FunnelPageFooter,
|
|
285
|
+
Ar as FunnelPageHeader,
|
|
286
|
+
Rr as FunnelSidebar,
|
|
287
|
+
Lr as FunnelTopBar,
|
|
288
|
+
Mr as Grid,
|
|
289
|
+
Er as GridItem,
|
|
290
|
+
Ur as Icon,
|
|
291
|
+
Vr as IconButton,
|
|
292
|
+
Wr as Input,
|
|
293
|
+
jr as Label,
|
|
294
|
+
Yr as ListView,
|
|
295
|
+
at as ListViewItemLabel,
|
|
296
|
+
xt as ListViewItemText,
|
|
297
|
+
rt as ListViewSection,
|
|
298
|
+
nt as Menu,
|
|
299
|
+
lt as MenuContent,
|
|
300
|
+
dt as MenuHeader,
|
|
301
|
+
st as MenuSeparator,
|
|
302
|
+
Ft as MenuTrigger,
|
|
303
|
+
Ct as MultiSelect,
|
|
304
|
+
Fx as MultiSelectField,
|
|
305
|
+
Bt as MultiSelectOptGroup,
|
|
306
|
+
kt as MultiSelectOption,
|
|
307
|
+
Rt as Nav,
|
|
308
|
+
ht as NavGroup,
|
|
309
|
+
_t as NavigationCardDescription,
|
|
310
|
+
Ht as NavigationCardGroup,
|
|
311
|
+
Ot as NavigationCardLabel,
|
|
312
|
+
Jx as NoopRouterProvider,
|
|
313
|
+
Cx as NumberField,
|
|
314
|
+
Qt as NumberInput,
|
|
315
|
+
jt as Page,
|
|
316
|
+
Jt as PageHeader,
|
|
317
|
+
Zt as PageHeading,
|
|
318
|
+
op as Pagination,
|
|
319
|
+
tp as PaginationContent,
|
|
320
|
+
bp as PaginationEllipsis,
|
|
321
|
+
mp as PaginationItem,
|
|
322
|
+
Cp as PayFitBrand,
|
|
323
|
+
Bp as PayFitBrandPreprod,
|
|
324
|
+
kp as PhoneNumberInput,
|
|
325
|
+
Rp as Pill,
|
|
326
|
+
hp as Popover,
|
|
327
|
+
of as PopoverTrigger,
|
|
328
|
+
Ip as ProgressBar,
|
|
329
|
+
ge as PromoDialog,
|
|
330
|
+
Be as PromoDialogActions,
|
|
331
|
+
Ce as PromoDialogContent,
|
|
332
|
+
se as PromoDialogHero,
|
|
333
|
+
Fe as PromoDialogSubtitle,
|
|
334
|
+
ke as PromoDialogTitle,
|
|
335
|
+
yp as RadioButton,
|
|
336
|
+
Mp as RadioButtonGroup,
|
|
337
|
+
Ax as RadioButtonGroupField,
|
|
338
|
+
Ep as RadioButtonHelper,
|
|
339
|
+
To as RawBreadcrumbLink,
|
|
340
|
+
nx as RawFormContextualLink,
|
|
341
|
+
zr as RawLink,
|
|
342
|
+
$r as RawListViewItem,
|
|
343
|
+
bt as RawMenuItem,
|
|
344
|
+
It as RawNavItem,
|
|
345
|
+
vt as RawNavigationCard,
|
|
346
|
+
fp as RawPaginationLink,
|
|
347
|
+
dp as RawPaginationNext,
|
|
348
|
+
lp as RawPaginationPrevious,
|
|
349
|
+
Fm as RawSubTask,
|
|
350
|
+
im as RawTab,
|
|
351
|
+
Pm as RawTask,
|
|
352
|
+
Kx as RouterProvider,
|
|
353
|
+
Vp as Search,
|
|
354
|
+
Qp as SegmentedButtonGroup,
|
|
355
|
+
xa as Select,
|
|
356
|
+
na as SelectButton,
|
|
357
|
+
Dx as SelectField,
|
|
358
|
+
la as SelectOption,
|
|
359
|
+
da as SelectOptionGroup,
|
|
360
|
+
ba as SelectOptionHelper,
|
|
361
|
+
Kp as SelectableButton,
|
|
362
|
+
qp as SelectableButtonGroup,
|
|
363
|
+
wx as SelectableButtonGroupField,
|
|
364
|
+
ea as SelectableCardCheckbox,
|
|
365
|
+
$p as SelectableCardCheckboxGroup,
|
|
366
|
+
Gx as SelectableCardCheckboxGroupField,
|
|
367
|
+
aa as SelectableCardRadio,
|
|
368
|
+
ta as SelectableCardRadioGroup,
|
|
369
|
+
Lx as SelectableCardRadioGroupField,
|
|
370
|
+
sa as SidePanel,
|
|
371
|
+
Ta as SidePanelContent,
|
|
372
|
+
Ba as SidePanelFooter,
|
|
373
|
+
wa as SidePanelHeader,
|
|
374
|
+
ha as SkipLink,
|
|
375
|
+
La as SkipLinks,
|
|
376
|
+
Da as Spinner,
|
|
377
|
+
Xe as Stack,
|
|
378
|
+
Ye as StackItem,
|
|
379
|
+
vm as TOAST_CONFIG,
|
|
380
|
+
um as TabList,
|
|
312
381
|
gm as TabPanel,
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
Tm as TaskMenu,
|
|
382
|
+
va as Table,
|
|
383
|
+
Na as TableBody,
|
|
384
|
+
Va as TableCell,
|
|
385
|
+
Qa as TableColumnHeader,
|
|
386
|
+
ja as TableEmptyState,
|
|
387
|
+
qa as TableEmptyStateError,
|
|
388
|
+
za as TableEmptyStateLoading,
|
|
389
|
+
Ja as TableEmptyStateNoData,
|
|
390
|
+
Ka as TableEmptyStateText,
|
|
391
|
+
$a as TableHeader,
|
|
392
|
+
rm as TablePagination,
|
|
393
|
+
ya as TableRoot,
|
|
394
|
+
am as TableRow,
|
|
395
|
+
fm as Tabs,
|
|
396
|
+
km as TaskGroup,
|
|
397
|
+
cm as TaskMenu,
|
|
330
398
|
Lm as Text,
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
Do as
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
399
|
+
Rm as TextArea,
|
|
400
|
+
vx as TextField,
|
|
401
|
+
ym as ToastManager,
|
|
402
|
+
Xp as ToggleButton,
|
|
403
|
+
Um as ToggleSwitch,
|
|
404
|
+
Hx as ToggleSwitchField,
|
|
405
|
+
Om as ToggleSwitchGroup,
|
|
406
|
+
Ex as ToggleSwitchGroupField,
|
|
407
|
+
Xm as Tooltip,
|
|
408
|
+
a as actionBar,
|
|
409
|
+
i as actionBarRoot,
|
|
410
|
+
O as autocompleteItem,
|
|
411
|
+
U as autocompleteItemGroup,
|
|
412
|
+
to as bottomSheet,
|
|
413
|
+
mo as bottomSheetContent,
|
|
414
|
+
no as bottomSheetFooter,
|
|
415
|
+
uo as bottomSheetHeader,
|
|
416
|
+
ko as card,
|
|
417
|
+
Do as checkboxGroup,
|
|
418
|
+
qo as dataTableRoot,
|
|
419
|
+
pe as dialog,
|
|
420
|
+
Ge as errorState,
|
|
421
|
+
Ie as fieldset,
|
|
422
|
+
Ee as filterContainer,
|
|
423
|
+
Oe as filterDismissButton,
|
|
424
|
+
Ue as filterToolbar,
|
|
425
|
+
qe as flex,
|
|
426
|
+
ze as flexItem,
|
|
427
|
+
rr as fullPageLoader,
|
|
428
|
+
fr as funnelBody,
|
|
429
|
+
ar as funnelLayout,
|
|
430
|
+
lr as funnelPage,
|
|
431
|
+
cr as funnelPageActions,
|
|
432
|
+
Fr as funnelPageContent,
|
|
433
|
+
Pr as funnelPageFooter,
|
|
434
|
+
kr as funnelPageHeader,
|
|
435
|
+
Gr as funnelSidebar,
|
|
436
|
+
Ir as funnelTopBar,
|
|
437
|
+
Z as getInitials,
|
|
438
|
+
yr as grid,
|
|
439
|
+
Hr as gridItem,
|
|
440
|
+
Jr as link,
|
|
441
|
+
ot as listViewItem,
|
|
442
|
+
tt as listViewSection,
|
|
443
|
+
Dt as navItemBase,
|
|
444
|
+
Nt as navigationCardGroup,
|
|
445
|
+
Px as numberField,
|
|
446
|
+
Wt as numberInput,
|
|
447
|
+
qt as page,
|
|
448
|
+
Kt as pageHeader,
|
|
449
|
+
ep as pagination,
|
|
450
|
+
pp as paginationContent,
|
|
451
|
+
np as paginationLink,
|
|
452
|
+
be as promoDialog,
|
|
453
|
+
Hp as radioButton,
|
|
454
|
+
Tm as rawSubTask,
|
|
455
|
+
Bm as rawTask,
|
|
456
|
+
_p as search,
|
|
457
|
+
Yp as selectableButton,
|
|
458
|
+
zp as selectableButtonGroup,
|
|
459
|
+
Sa as sidePanel,
|
|
460
|
+
Ca as sidePanelContent,
|
|
461
|
+
Aa as sidePanelFooter,
|
|
462
|
+
Ra as sidePanelHeader,
|
|
463
|
+
Ea as tableBody,
|
|
464
|
+
_a as tableCell,
|
|
465
|
+
Wa as tableColumnHeader,
|
|
466
|
+
Ya as tableEmptyState,
|
|
467
|
+
om as tableHeader,
|
|
468
|
+
tm as tablePagination,
|
|
469
|
+
mm as tableRow,
|
|
470
|
+
sm as taskMenu,
|
|
471
|
+
Dm as text,
|
|
472
|
+
Gm as textArea,
|
|
473
|
+
Nm as toast,
|
|
474
|
+
Qm as toggleSwitch,
|
|
396
475
|
Vm as toggleSwitchGroup,
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
476
|
+
G as useAppMenuContext,
|
|
477
|
+
pf as useAsyncList,
|
|
478
|
+
qm as useBreakpointListener,
|
|
479
|
+
Jm as useContainerQueryLevel,
|
|
480
|
+
qx as useFieldA11yContext,
|
|
481
|
+
Wx as useFieldContext,
|
|
482
|
+
Xx as useFormContext,
|
|
483
|
+
Ym as useMediaQuery,
|
|
484
|
+
Fp as usePaginationState,
|
|
485
|
+
sp as usePaginationWindow,
|
|
486
|
+
Yx as useRouter,
|
|
487
|
+
Vx as useTanstackUnityForm,
|
|
488
|
+
$m as useUnityForm,
|
|
489
|
+
_x as withFieldGroup,
|
|
490
|
+
Ux as withForm
|
|
403
491
|
};
|