@payfit/unity-components 2.31.2 → 2.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,83 @@
1
+ import { PropsWithChildren } from 'react';
2
+ import { MenuSectionProps as AriaMenuSectionProps } from 'react-aria-components/Menu';
3
+ interface MenuSectionProps<TItemType extends object> extends AriaMenuSectionProps<TItemType> {
4
+ /**
5
+ * The label rendered above the section's items.
6
+ * Always present in the DOM for accessibility; use `isTitleHidden` to hide it visually.
7
+ */
8
+ title: string;
9
+ /**
10
+ * When `true`, hides the section title visually while keeping it accessible to screen readers.
11
+ * @default false
12
+ */
13
+ isTitleHidden?: boolean;
14
+ className?: string;
15
+ }
16
+ /**
17
+ * `MenuSection` groups related menu items under a labelled heading inside a `MenuContent` panel.
18
+ * The section title provides both visual context and an accessible label for assistive technologies.
19
+ * Use multiple `MenuSection` blocks separated by `MenuSeparator` to divide a menu into distinct
20
+ * named categories.
21
+ *
22
+ * For collection-based rendering pass an `items` array and a render function as children.
23
+ * For static content pass `RawMenuItem` elements directly as children.
24
+ * @template TItemType - The shape of each item object when using collection-based rendering via the `items` prop.
25
+ * @param {MenuSectionProps<TItemType>} props - The component props
26
+ * @example
27
+ * ```tsx
28
+ * import { Menu, MenuContent, MenuSection, MenuTrigger, RawMenuItem } from '@payfit/unity-components'
29
+ *
30
+ * function ActionsMenu() {
31
+ * return (
32
+ * <Menu>
33
+ * <MenuTrigger>Actions</MenuTrigger>
34
+ * <MenuContent>
35
+ * <MenuSection title="File">
36
+ * <RawMenuItem>New</RawMenuItem>
37
+ * <RawMenuItem>Open</RawMenuItem>
38
+ * </MenuSection>
39
+ * <MenuSeparator />
40
+ * <MenuSection title="Edit">
41
+ * <RawMenuItem>Cut</RawMenuItem>
42
+ * <RawMenuItem>Copy</RawMenuItem>
43
+ * </MenuSection>
44
+ * </MenuContent>
45
+ * </Menu>
46
+ * )
47
+ * }
48
+ * ```
49
+ * @example
50
+ * ```tsx
51
+ * // Collection-based rendering with items prop
52
+ * import { Menu, MenuContent, MenuSection, MenuTrigger, RawMenuItem } from '@payfit/unity-components'
53
+ *
54
+ * const items = [
55
+ * { id: '1', label: 'New' },
56
+ * { id: '2', label: 'Open' },
57
+ * ]
58
+ *
59
+ * function ActionsMenu() {
60
+ * return (
61
+ * <Menu>
62
+ * <MenuTrigger>Actions</MenuTrigger>
63
+ * <MenuContent>
64
+ * <MenuSection title="File" items={items}>
65
+ * {(item) => <RawMenuItem key={item.id}>{item.label}</RawMenuItem>}
66
+ * </MenuSection>
67
+ * </MenuContent>
68
+ * </Menu>
69
+ * )
70
+ * }
71
+ * ```
72
+ * @remarks
73
+ * - The `title` is always rendered in the DOM. Set `isTitleHidden` to `true` to visually hide it
74
+ * while preserving screen reader accessibility — useful when the grouping is implied by context
75
+ * - Wrap multiple sections in a `MenuContent` and separate them with `MenuSeparator` to create
76
+ * visually distinct groups within a single menu
77
+ * @see {@link https://github.com/PayFit/hr-apps/blob/master/libs/shared/unity/components/src/components/menu/parts/MenuSection.tsx Source code on GitHub}
78
+ */
79
+ export declare function MenuSection<TItemType extends object>({ children, items, className, title, isTitleHidden, ...rest }: PropsWithChildren<MenuSectionProps<TItemType>>): import("react/jsx-runtime").JSX.Element;
80
+ export declare namespace MenuSection {
81
+ var displayName: string;
82
+ }
83
+ export {};
@@ -0,0 +1,44 @@
1
+ import { jsxs as u, jsx as e } from "react/jsx-runtime";
2
+ import { uyTv as d } from "@payfit/unity-themes";
3
+ import { Collection as c } from "react-aria-components/Collection";
4
+ import { Header as m } from "react-aria-components/Header";
5
+ import { MenuSection as y } from "react-aria-components/Menu";
6
+ const p = d({
7
+ slots: {
8
+ base: [""],
9
+ header: [
10
+ "uy:px-150 uy:py-100 uy:typography-body-strong uy:text-content-neutral-enabled"
11
+ ]
12
+ },
13
+ variants: {
14
+ isTitleHidden: {
15
+ true: {
16
+ header: "uy:sr-only"
17
+ },
18
+ false: {
19
+ header: ""
20
+ }
21
+ }
22
+ },
23
+ defaultVariants: {
24
+ isTitleHidden: !1
25
+ }
26
+ });
27
+ function f({
28
+ children: t,
29
+ items: n,
30
+ className: o,
31
+ title: r,
32
+ isTitleHidden: a,
33
+ ...i
34
+ }) {
35
+ const { base: s, header: l } = p({ isTitleHidden: a });
36
+ return /* @__PURE__ */ u(y, { ...i, className: s({ className: o }), children: [
37
+ /* @__PURE__ */ e(m, { className: l(), children: r }),
38
+ /* @__PURE__ */ e(c, { items: n, children: t })
39
+ ] });
40
+ }
41
+ f.displayName = "MenuSection";
42
+ export {
43
+ f as MenuSection
44
+ };
@@ -3,12 +3,12 @@ import { uyTv as l } from "@payfit/unity-themes";
3
3
  import { MenuItem as d } from "react-aria-components/Menu";
4
4
  const y = l({
5
5
  base: [
6
- "uy:cursor-pointer",
6
+ "uy:cursor-pointer uy:group",
7
7
  "uy:flex uy:p-100 uy:items-start uy:gap-100 uy:rounded-25 uy:typography-body uy:text-content-neutral",
8
8
  "uy:not-aria-disabled:data-[hovered=true]:bg-surface-neutral-hover",
9
9
  "uy:not-aria-disabled:data-[pressed=true]:bg-surface-neutral-pressed",
10
10
  "uy:active:bg-surface-neutral-active",
11
- "uy:focus-visible:outline-none uy:data-[focus-visible=true]:outline-2 uy:data-[focus-visible=true]:outline-offset-2 uy:data-[focus-visible=true]:outline-utility-focus-ring",
11
+ "uy:data-[focused=true]:not-data-[focus-visible=true]:outline-0 uy:data-[focus-visible=true]:outline-2 uy:data-[focus-visible=true]:outline-offset-2 uy:data-[focus-visible=true]:outline-utility-focus-ring",
12
12
  "uy:aria-disabled:text-content-neutral-disabled uy:aria-disabled:cursor-not-allowed"
13
13
  ]
14
14
  });
@@ -30,7 +30,7 @@ function c({
30
30
  className: y({ className: r }),
31
31
  ...s,
32
32
  children: [
33
- /* @__PURE__ */ n("div", { className: "uy:text-content-neutral-low", children: e || null }),
33
+ /* @__PURE__ */ n("div", { className: "uy:text-content-neutral-low uy:group-aria-disabled:text-content-neutral-disabled", children: e || null }),
34
34
  t
35
35
  ]
36
36
  }
@@ -110,6 +110,7 @@ export * from './components/list-view/parts/ListViewItemText.js';
110
110
  export * from './components/menu/Menu.js';
111
111
  export * from './components/menu/parts/MenuContent.js';
112
112
  export * from './components/menu/parts/MenuHeader.js';
113
+ export * from './components/menu/parts/MenuSection.js';
113
114
  export * from './components/menu/parts/RawMenuItem.js';
114
115
  export * from './components/menu/parts/MenuSeparator.js';
115
116
  export * from './components/menu/parts/MenuTrigger.js';
package/dist/esm/index.js CHANGED
@@ -110,126 +110,127 @@ import { ListViewItemText as Qt } from "./components/list-view/parts/ListViewIte
110
110
  import { Menu as Jt } from "./components/menu/Menu.js";
111
111
  import { MenuContent as jt } from "./components/menu/parts/MenuContent.js";
112
112
  import { MenuHeader as Yt } from "./components/menu/parts/MenuHeader.js";
113
- import { RawMenuItem as $t } from "./components/menu/parts/RawMenuItem.js";
114
- import { MenuSeparator as ep } from "./components/menu/parts/MenuSeparator.js";
115
- import { MenuTrigger as tp } from "./components/menu/parts/MenuTrigger.js";
116
- import { MultiSelect as ap } from "./components/multi-select/MultiSelect.js";
117
- import { MultiSelectOptGroup as xp } from "./components/multi-select/parts/MultiSelectOptGroup.js";
118
- import { MultiSelectOption as fp } from "./components/multi-select/parts/MultiSelectOption.js";
119
- import { Nav as lp } from "./components/nav/Nav.js";
120
- import { NavGroup as dp } from "./components/nav/parts/NavGroup.js";
121
- import { RawNavItem as gp, navItemBase as sp } from "./components/nav/parts/RawNavItem.js";
122
- import { RawNavigationCard as bp } from "./components/navigation-card/NavigationCard.js";
123
- import { NavigationCardGroup as Tp, navigationCardGroup as Fp } from "./components/navigation-card/parts/NavigationCardGroup.js";
124
- import { NavigationCardLabel as Bp } from "./components/navigation-card/parts/NavigationCardLabel.js";
125
- import { NavigationCardDescription as kp } from "./components/navigation-card/parts/NavigationCardDescription.js";
126
- import { NumberInput as Ip, numberInput as wp } from "./components/number-input/NumberInput.js";
127
- import { Page as hp, page as yp } from "./components/page/Page.js";
128
- import { PageHeader as Lp, pageHeader as Mp } from "./components/page/parts/PageHeader.js";
129
- import { PageHeading as Ep } from "./components/page/parts/PageHeading.js";
130
- import { Pagination as Np, pagination as Op } from "./components/pagination/Pagination.js";
131
- import { PaginationContent as _p, paginationContent as Up } from "./components/pagination/parts/PaginationContent.js";
132
- import { PaginationItem as Wp } from "./components/pagination/parts/PaginationItem.js";
133
- import { RawPaginationLink as qp, paginationLink as Jp } from "./components/pagination/parts/RawPaginationLink.js";
134
- import { RawPaginationPrevious as jp } from "./components/pagination/parts/RawPaginationPrevious.js";
135
- import { RawPaginationNext as Yp } from "./components/pagination/parts/RawPaginationNext.js";
136
- import { PaginationEllipsis as $p } from "./components/pagination/parts/PaginationEllipsis.js";
137
- import { usePaginationWindow as ea } from "./components/pagination/hooks/use-pagination-window.js";
138
- import { usePaginationState as ta } from "./components/pagination/hooks/use-pagination-state.js";
139
- import { PayFitBrand as aa } from "./components/payfit-brand/PayFitBrand.js";
140
- import { PayFitBrandPreprod as xa } from "./components/payfit-brand/PayFitPreprod.js";
141
- import { PhoneNumberInput as fa } from "./components/phone-number/PhoneNumberInput.js";
142
- import { Pill as la } from "./components/pill/Pill.js";
143
- import { Popover as da } from "./components/popover/Popover.js";
144
- import { ProgressBar as ga } from "./components/progress-bar/ProgressBar.js";
145
- import { RadioButtonGroup as Sa } from "./components/radio-button-group/RadioButtonGroup.js";
146
- import { RadioButton as Ca, radioButton as Ta } from "./components/radio-button-group/parts/RadioButton.js";
147
- import { RadioButtonHelper as Pa } from "./components/radio-button-group/parts/RadioButtonHelper.js";
148
- import { Search as Aa, search as ka } from "./components/search/Search.js";
149
- import { SegmentedButtonGroup as Ia } from "./components/segmented-button-group/SegmentedButtonGroup.js";
150
- import { ToggleButton as Da } from "./components/segmented-button-group/parts/ToggleButton.js";
151
- import { SelectableButtonGroup as ya, selectableButtonGroup as Ga } from "./components/selectable-button-group/SelectableButtonGroup.js";
152
- import { SelectableButton as Ma, selectableButton as va } from "./components/selectable-button-group/parts/SelectableButton.js";
153
- import { SelectableCardCheckboxGroup as Ha } from "./components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.js";
154
- import { SelectableCardCheckbox as Oa } from "./components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.js";
155
- import { SelectableCardRadioGroup as _a } from "./components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.js";
156
- import { SelectableCardRadio as Ka } from "./components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.js";
157
- import { Select as Qa } from "./components/select/Select.js";
158
- import { SelectButton as Ja } from "./components/select/parts/SelectButton.js";
159
- import { SelectOption as ja } from "./components/select/parts/SelectOption.js";
160
- import { SelectOptionGroup as Ya } from "./components/select/parts/SelectOptionGroup.js";
161
- import { SelectOptionHelper as $a } from "./components/select/parts/SelectOptionHelper.js";
162
- import { SidePanel as em, sidePanel as rm } from "./components/side-panel/SidePanel.js";
163
- import { SidePanelContent as pm, sidePanelContent as am } from "./components/side-panel/parts/SidePanelContent.js";
164
- import { SidePanelFooter as xm, sidePanelFooter as nm } from "./components/side-panel/parts/SidePanelFooter.js";
165
- import { SidePanelHeader as im, sidePanelHeader as lm } from "./components/side-panel/parts/SidePanelHeader.js";
166
- import { SkipLink as dm, SkipLinks as cm } from "./components/skip-links/SkipLinks.js";
167
- import { Spinner as sm } from "./components/spinner/Spinner.js";
168
- import { Table as bm, TableRoot as Cm } from "./components/table/Table.js";
169
- import { TableBody as Fm, tableBody as Pm } from "./components/table/parts/TableBody.js";
170
- import { TableCell as Am, tableCell as km } from "./components/table/parts/TableCell.js";
171
- import { TableColumnHeader as Im, tableColumnHeader as wm } from "./components/table/parts/TableColumnHeader.js";
172
- import { TableEmptyState as hm, TableEmptyStateError as ym, TableEmptyStateLoading as Gm, TableEmptyStateNoData as Lm, TableEmptyStateText as Mm, TableNoSearchResults as vm, tableEmptyState as Em } from "./components/table/parts/TableEmptyState.js";
173
- import { TableHeader as Nm, tableHeader as Om } from "./components/table/parts/TableHeader.js";
174
- import { TablePagination as _m, tablePagination as Um } from "./components/table/parts/TablePagination.js";
175
- import { TableRow as Wm, tableRow as Qm } from "./components/table/parts/TableRow.js";
176
- import { Tabs as Jm } from "./components/tabs/Tabs.js";
177
- import { RawTab as jm } from "./components/tabs/parts/RawTab.js";
178
- import { TabList as Ym } from "./components/tabs/parts/TabList.js";
179
- import { TabPanel as $m } from "./components/tabs/parts/TabPanel.js";
180
- import { TaskMenu as ex, taskMenu as rx } from "./components/task-menu/TaskMenu.js";
181
- import { RawSubTask as px, rawSubTask as ax } from "./components/task-menu/parts/RawSubTask.js";
182
- import { RawTask as xx, rawTask as nx } from "./components/task-menu/parts/RawTask.js";
183
- import { TaskGroup as ix } from "./components/task-menu/parts/TaskGroup.js";
184
- import { TextArea as ux, textArea as dx } from "./components/text-area/TextArea.js";
185
- import { Text as gx } from "./components/text/Text.js";
186
- import { text as Sx } from "./components/text/Text.variants.js";
187
- import { Timeline as Cx } from "./components/timeline/Timeline.js";
188
- import { TimelineStep as Fx } from "./components/timeline/parts/TimelineStep.js";
189
- import { TimelineStepHeader as Bx } from "./components/timeline/parts/TimelineStepHeader.js";
190
- import { TimelineStepDescription as kx } from "./components/timeline/parts/TimelineStepDescription.js";
191
- import { TOAST_CONFIG as Ix, ToastManager as wx } from "./components/toast/ToastManager.js";
192
- import { toast as hx } from "./components/toast/toast.js";
193
- import { ToggleSwitchGroup as Gx, toggleSwitchGroup as Lx } from "./components/toggle-switch-group/ToggleSwitchGroup.js";
194
- import { ToggleSwitch as vx, toggleSwitch as Ex } from "./components/toggle-switch/ToggleSwitch.js";
195
- import { Tooltip as Nx } from "./components/tooltip/Tooltip.js";
196
- import { DESKTOP_BREAKPOINTS as Vx, MOBILE_BREAKPOINTS as _x, isDesktopBreakpoint as Ux, isMobileBreakpoint as Kx, useBreakpointListener as Wx } from "./hooks/use-breakpoint-listener.js";
197
- import { useContainerQueryLevel as qx } from "./hooks/use-container-query-level.js";
198
- import { useMediaQuery as Xx } from "./hooks/use-media-query.js";
199
- import { useUnityForm as zx } from "./hooks/use-form.js";
200
- import { CheckboxField as Zx } from "./components/checkbox-field/CheckboxField.js";
201
- import { CheckboxGroupField as on } from "./components/checkbox-group-field/CheckboxGroupField.js";
202
- import { DatePickerField as rn } from "./components/date-picker-field/DatePickerField.js";
203
- import { FormField as pn } from "./components/form-field/FormField.js";
204
- import { RawFormContextualLink as mn } from "./components/form-field/parts/RawFormContextualLink.js";
205
- import { FormControl as nn } from "./components/form-field/parts/FormControl.js";
206
- import { FormFeedbackText as ln } from "./components/form-field/parts/FormFeedbackText.js";
207
- import { FormHelperText as dn } from "./components/form-field/parts/FormHelperText.js";
208
- import { FormLabel as gn } from "./components/form-field/parts/FormLabel.js";
209
- import { MultiSelectField as Sn } from "./components/multi-select-field/MultiSelectField.js";
210
- import { NumberField as Cn, numberField as Tn } from "./components/number-field/NumberField.js";
211
- import { RadioButtonGroupField as Pn } from "./components/radio-button-group-field/RadioButtonGroupField.js";
212
- import { SelectableButtonGroupField as An } from "./components/selectable-button-group-field/SelectableButtonGroupField.js";
213
- import { SelectableCardCheckboxGroupField as Rn } from "./components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.js";
214
- import { SelectableCardRadioGroupField as wn } from "./components/selectable-card-radio-group-field/SelectableCardRadioGroupField.js";
215
- import { SelectField as hn } from "./components/select-field/SelectField.js";
216
- import { TextField as Gn } from "./components/text-field/TextField.js";
217
- import { ToggleSwitchField as Mn } from "./components/toggle-switch-field/ToggleSwitchField.js";
218
- import { ToggleSwitchGroupField as En } from "./components/toggle-switch-group-field/ToggleSwitchGroupField.js";
219
- import { useTanstackUnityForm as Nn, withFieldGroup as On, withForm as Vn } from "./hooks/use-tanstack-form.js";
220
- import { useFieldContext as Un, useFormContext as Kn } from "./hooks/tanstack-form-context.js";
221
- import { useFieldA11yContext as Qn } from "./components/form-field/TanstackFormField.context.js";
222
- import { fieldRevalidateLogic as Jn } from "./utils/field-revalidate-logic.js";
223
- import { NoopRouterProvider as jn, RouterProvider as zn, useRouter as Yn } from "./providers/router/RouterProvider.js";
224
- import { Carousel as $n, carousel as of } from "./components/carousel/Carousel.js";
225
- import { CarouselHeader as rf, carouselHeader as tf } from "./components/carousel/parts/CarouselHeader.js";
226
- import { CarouselNav as af, carouselNav as mf } from "./components/carousel/parts/CarouselNav.js";
227
- import { CarouselContent as nf, carouselContent as ff } from "./components/carousel/parts/CarouselContent.js";
228
- import { CarouselSlide as uf, carouselSlide as df } from "./components/carousel/parts/CarouselSlide.js";
229
- import { DialogTrigger as gf, DialogTrigger as sf } from "react-aria-components/Dialog";
230
- import { FilterAdapters as bf } from "./components/filter-toolbar/utils/filter-adapters.js";
231
- import { RadioIndicator as Tf } from "./components/radio-button-group/parts/RadioIndicator.js";
232
- import { useAsyncList as Pf } from "react-stately/useAsyncList";
113
+ import { MenuSection as $t } from "./components/menu/parts/MenuSection.js";
114
+ import { RawMenuItem as ep } from "./components/menu/parts/RawMenuItem.js";
115
+ import { MenuSeparator as tp } from "./components/menu/parts/MenuSeparator.js";
116
+ import { MenuTrigger as ap } from "./components/menu/parts/MenuTrigger.js";
117
+ import { MultiSelect as xp } from "./components/multi-select/MultiSelect.js";
118
+ import { MultiSelectOptGroup as fp } from "./components/multi-select/parts/MultiSelectOptGroup.js";
119
+ import { MultiSelectOption as lp } from "./components/multi-select/parts/MultiSelectOption.js";
120
+ import { Nav as dp } from "./components/nav/Nav.js";
121
+ import { NavGroup as gp } from "./components/nav/parts/NavGroup.js";
122
+ import { RawNavItem as Sp, navItemBase as bp } from "./components/nav/parts/RawNavItem.js";
123
+ import { RawNavigationCard as Tp } from "./components/navigation-card/NavigationCard.js";
124
+ import { NavigationCardGroup as Pp, navigationCardGroup as Bp } from "./components/navigation-card/parts/NavigationCardGroup.js";
125
+ import { NavigationCardLabel as kp } from "./components/navigation-card/parts/NavigationCardLabel.js";
126
+ import { NavigationCardDescription as Ip } from "./components/navigation-card/parts/NavigationCardDescription.js";
127
+ import { NumberInput as Dp, numberInput as hp } from "./components/number-input/NumberInput.js";
128
+ import { Page as Gp, page as Lp } from "./components/page/Page.js";
129
+ import { PageHeader as vp, pageHeader as Ep } from "./components/page/parts/PageHeader.js";
130
+ import { PageHeading as Np } from "./components/page/parts/PageHeading.js";
131
+ import { Pagination as Vp, pagination as _p } from "./components/pagination/Pagination.js";
132
+ import { PaginationContent as Kp, paginationContent as Wp } from "./components/pagination/parts/PaginationContent.js";
133
+ import { PaginationItem as qp } from "./components/pagination/parts/PaginationItem.js";
134
+ import { RawPaginationLink as Xp, paginationLink as jp } from "./components/pagination/parts/RawPaginationLink.js";
135
+ import { RawPaginationPrevious as Yp } from "./components/pagination/parts/RawPaginationPrevious.js";
136
+ import { RawPaginationNext as $p } from "./components/pagination/parts/RawPaginationNext.js";
137
+ import { PaginationEllipsis as ea } from "./components/pagination/parts/PaginationEllipsis.js";
138
+ import { usePaginationWindow as ta } from "./components/pagination/hooks/use-pagination-window.js";
139
+ import { usePaginationState as aa } from "./components/pagination/hooks/use-pagination-state.js";
140
+ import { PayFitBrand as xa } from "./components/payfit-brand/PayFitBrand.js";
141
+ import { PayFitBrandPreprod as fa } from "./components/payfit-brand/PayFitPreprod.js";
142
+ import { PhoneNumberInput as la } from "./components/phone-number/PhoneNumberInput.js";
143
+ import { Pill as da } from "./components/pill/Pill.js";
144
+ import { Popover as ga } from "./components/popover/Popover.js";
145
+ import { ProgressBar as Sa } from "./components/progress-bar/ProgressBar.js";
146
+ import { RadioButtonGroup as Ca } from "./components/radio-button-group/RadioButtonGroup.js";
147
+ import { RadioButton as Fa, radioButton as Pa } from "./components/radio-button-group/parts/RadioButton.js";
148
+ import { RadioButtonHelper as Aa } from "./components/radio-button-group/parts/RadioButtonHelper.js";
149
+ import { Search as Ra, search as Ia } from "./components/search/Search.js";
150
+ import { SegmentedButtonGroup as Da } from "./components/segmented-button-group/SegmentedButtonGroup.js";
151
+ import { ToggleButton as ya } from "./components/segmented-button-group/parts/ToggleButton.js";
152
+ import { SelectableButtonGroup as La, selectableButtonGroup as Ma } from "./components/selectable-button-group/SelectableButtonGroup.js";
153
+ import { SelectableButton as Ea, selectableButton as Ha } from "./components/selectable-button-group/parts/SelectableButton.js";
154
+ import { SelectableCardCheckboxGroup as Oa } from "./components/selectable-card/selectable-card-checkbox-group/SelectableCardCheckboxGroup.js";
155
+ import { SelectableCardCheckbox as _a } from "./components/selectable-card/selectable-card-checkbox-group/parts/SelectableCardCheckbox.js";
156
+ import { SelectableCardRadioGroup as Ka } from "./components/selectable-card/selectable-card-radio-group/SelectableCardRadioGroup.js";
157
+ import { SelectableCardRadio as Qa } from "./components/selectable-card/selectable-card-radio-group/parts/SelectableCardRadio.js";
158
+ import { Select as Ja } from "./components/select/Select.js";
159
+ import { SelectButton as ja } from "./components/select/parts/SelectButton.js";
160
+ import { SelectOption as Ya } from "./components/select/parts/SelectOption.js";
161
+ import { SelectOptionGroup as $a } from "./components/select/parts/SelectOptionGroup.js";
162
+ import { SelectOptionHelper as em } from "./components/select/parts/SelectOptionHelper.js";
163
+ import { SidePanel as tm, sidePanel as pm } from "./components/side-panel/SidePanel.js";
164
+ import { SidePanelContent as mm, sidePanelContent as xm } from "./components/side-panel/parts/SidePanelContent.js";
165
+ import { SidePanelFooter as fm, sidePanelFooter as im } from "./components/side-panel/parts/SidePanelFooter.js";
166
+ import { SidePanelHeader as um, sidePanelHeader as dm } from "./components/side-panel/parts/SidePanelHeader.js";
167
+ import { SkipLink as gm, SkipLinks as sm } from "./components/skip-links/SkipLinks.js";
168
+ import { Spinner as bm } from "./components/spinner/Spinner.js";
169
+ import { Table as Tm, TableRoot as Fm } from "./components/table/Table.js";
170
+ import { TableBody as Bm, tableBody as Am } from "./components/table/parts/TableBody.js";
171
+ import { TableCell as Rm, tableCell as Im } from "./components/table/parts/TableCell.js";
172
+ import { TableColumnHeader as Dm, tableColumnHeader as hm } from "./components/table/parts/TableColumnHeader.js";
173
+ import { TableEmptyState as Gm, TableEmptyStateError as Lm, TableEmptyStateLoading as Mm, TableEmptyStateNoData as vm, TableEmptyStateText as Em, TableNoSearchResults as Hm, tableEmptyState as Nm } from "./components/table/parts/TableEmptyState.js";
174
+ import { TableHeader as Vm, tableHeader as _m } from "./components/table/parts/TableHeader.js";
175
+ import { TablePagination as Km, tablePagination as Wm } from "./components/table/parts/TablePagination.js";
176
+ import { TableRow as qm, tableRow as Jm } from "./components/table/parts/TableRow.js";
177
+ import { Tabs as jm } from "./components/tabs/Tabs.js";
178
+ import { RawTab as Ym } from "./components/tabs/parts/RawTab.js";
179
+ import { TabList as $m } from "./components/tabs/parts/TabList.js";
180
+ import { TabPanel as ex } from "./components/tabs/parts/TabPanel.js";
181
+ import { TaskMenu as tx, taskMenu as px } from "./components/task-menu/TaskMenu.js";
182
+ import { RawSubTask as mx, rawSubTask as xx } from "./components/task-menu/parts/RawSubTask.js";
183
+ import { RawTask as fx, rawTask as ix } from "./components/task-menu/parts/RawTask.js";
184
+ import { TaskGroup as ux } from "./components/task-menu/parts/TaskGroup.js";
185
+ import { TextArea as cx, textArea as gx } from "./components/text-area/TextArea.js";
186
+ import { Text as Sx } from "./components/text/Text.js";
187
+ import { text as Cx } from "./components/text/Text.variants.js";
188
+ import { Timeline as Fx } from "./components/timeline/Timeline.js";
189
+ import { TimelineStep as Bx } from "./components/timeline/parts/TimelineStep.js";
190
+ import { TimelineStepHeader as kx } from "./components/timeline/parts/TimelineStepHeader.js";
191
+ import { TimelineStepDescription as Ix } from "./components/timeline/parts/TimelineStepDescription.js";
192
+ import { TOAST_CONFIG as Dx, ToastManager as hx } from "./components/toast/ToastManager.js";
193
+ import { toast as Gx } from "./components/toast/toast.js";
194
+ import { ToggleSwitchGroup as Mx, toggleSwitchGroup as vx } from "./components/toggle-switch-group/ToggleSwitchGroup.js";
195
+ import { ToggleSwitch as Hx, toggleSwitch as Nx } from "./components/toggle-switch/ToggleSwitch.js";
196
+ import { Tooltip as Vx } from "./components/tooltip/Tooltip.js";
197
+ import { DESKTOP_BREAKPOINTS as Ux, MOBILE_BREAKPOINTS as Kx, isDesktopBreakpoint as Wx, isMobileBreakpoint as Qx, useBreakpointListener as qx } from "./hooks/use-breakpoint-listener.js";
198
+ import { useContainerQueryLevel as Xx } from "./hooks/use-container-query-level.js";
199
+ import { useMediaQuery as zx } from "./hooks/use-media-query.js";
200
+ import { useUnityForm as Zx } from "./hooks/use-form.js";
201
+ import { CheckboxField as on } from "./components/checkbox-field/CheckboxField.js";
202
+ import { CheckboxGroupField as rn } from "./components/checkbox-group-field/CheckboxGroupField.js";
203
+ import { DatePickerField as pn } from "./components/date-picker-field/DatePickerField.js";
204
+ import { FormField as mn } from "./components/form-field/FormField.js";
205
+ import { RawFormContextualLink as nn } from "./components/form-field/parts/RawFormContextualLink.js";
206
+ import { FormControl as ln } from "./components/form-field/parts/FormControl.js";
207
+ import { FormFeedbackText as dn } from "./components/form-field/parts/FormFeedbackText.js";
208
+ import { FormHelperText as gn } from "./components/form-field/parts/FormHelperText.js";
209
+ import { FormLabel as Sn } from "./components/form-field/parts/FormLabel.js";
210
+ import { MultiSelectField as Cn } from "./components/multi-select-field/MultiSelectField.js";
211
+ import { NumberField as Fn, numberField as Pn } from "./components/number-field/NumberField.js";
212
+ import { RadioButtonGroupField as An } from "./components/radio-button-group-field/RadioButtonGroupField.js";
213
+ import { SelectableButtonGroupField as Rn } from "./components/selectable-button-group-field/SelectableButtonGroupField.js";
214
+ import { SelectableCardCheckboxGroupField as wn } from "./components/selectable-card-checkbox-group-field/SelectableCardCheckboxGroupField.js";
215
+ import { SelectableCardRadioGroupField as hn } from "./components/selectable-card-radio-group-field/SelectableCardRadioGroupField.js";
216
+ import { SelectField as Gn } from "./components/select-field/SelectField.js";
217
+ import { TextField as Mn } from "./components/text-field/TextField.js";
218
+ import { ToggleSwitchField as En } from "./components/toggle-switch-field/ToggleSwitchField.js";
219
+ import { ToggleSwitchGroupField as Nn } from "./components/toggle-switch-group-field/ToggleSwitchGroupField.js";
220
+ import { useTanstackUnityForm as Vn, withFieldGroup as _n, withForm as Un } from "./hooks/use-tanstack-form.js";
221
+ import { useFieldContext as Wn, useFormContext as Qn } from "./hooks/tanstack-form-context.js";
222
+ import { useFieldA11yContext as Jn } from "./components/form-field/TanstackFormField.context.js";
223
+ import { fieldRevalidateLogic as jn } from "./utils/field-revalidate-logic.js";
224
+ import { NoopRouterProvider as Yn, RouterProvider as Zn, useRouter as $n } from "./providers/router/RouterProvider.js";
225
+ import { Carousel as ef, carousel as rf } from "./components/carousel/Carousel.js";
226
+ import { CarouselHeader as pf, carouselHeader as af } from "./components/carousel/parts/CarouselHeader.js";
227
+ import { CarouselNav as xf, carouselNav as nf } from "./components/carousel/parts/CarouselNav.js";
228
+ import { CarouselContent as lf, carouselContent as uf } from "./components/carousel/parts/CarouselContent.js";
229
+ import { CarouselSlide as cf, carouselSlide as gf } from "./components/carousel/parts/CarouselSlide.js";
230
+ import { DialogTrigger as Sf, DialogTrigger as bf } from "react-aria-components/Dialog";
231
+ import { FilterAdapters as Tf } from "./components/filter-toolbar/utils/filter-adapters.js";
232
+ import { RadioIndicator as Pf } from "./components/radio-button-group/parts/RadioIndicator.js";
233
+ import { useAsyncList as Af } from "react-stately/useAsyncList";
233
234
  export {
234
235
  p as ActionBar,
235
236
  m as ActionBarAction,
@@ -269,27 +270,27 @@ export {
269
270
  wo as Card,
270
271
  Lo as CardContent,
271
272
  yo as CardTitle,
272
- $n as Carousel,
273
- nf as CarouselContent,
274
- rf as CarouselHeader,
275
- af as CarouselNav,
276
- uf as CarouselSlide,
273
+ ef as Carousel,
274
+ lf as CarouselContent,
275
+ pf as CarouselHeader,
276
+ xf as CarouselNav,
277
+ cf as CarouselSlide,
277
278
  No as Checkbox,
278
- Zx as CheckboxField,
279
+ on as CheckboxField,
279
280
  vo as CheckboxGroup,
280
- on as CheckboxGroupField,
281
+ rn as CheckboxGroupField,
281
282
  Vo as CheckboxStandalone,
282
283
  Ft as CircularIconButton,
283
284
  Uo as Collapsible,
284
285
  Wo as CollapsibleContent,
285
286
  qo as CollapsibleTitle,
286
- Vx as DESKTOP_BREAKPOINTS,
287
+ Ux as DESKTOP_BREAKPOINTS,
287
288
  Xo as DataTable,
288
289
  $o as DataTableBulkActions,
289
290
  zo as DataTableRoot,
290
291
  ee as DateCalendar,
291
292
  te as DatePicker,
292
- rn as DatePickerField,
293
+ pn as DatePickerField,
293
294
  ae as DateRangeCalendar,
294
295
  xe as DateRangePicker,
295
296
  fe as DefinitionTooltip,
@@ -298,7 +299,7 @@ export {
298
299
  se as DialogButton,
299
300
  be as DialogContent,
300
301
  Te as DialogTitle,
301
- gf as DialogTrigger,
302
+ Sf as DialogTrigger,
302
303
  ve as EmptyState,
303
304
  _e as EmptyStateActions,
304
305
  Oe as EmptyStateContent,
@@ -313,7 +314,7 @@ export {
313
314
  xr as FieldGroup,
314
315
  pr as Fieldset,
315
316
  fr as Filter,
316
- bf as FilterAdapters,
317
+ Tf as FilterAdapters,
317
318
  ir as FilterControls,
318
319
  lr as FilterLabels,
319
320
  br as FilterToolbar,
@@ -321,11 +322,11 @@ export {
321
322
  Ir as FlexItem,
322
323
  gr as FloatingActionBar,
323
324
  hr as Form,
324
- nn as FormControl,
325
- ln as FormFeedbackText,
326
- pn as FormField,
327
- dn as FormHelperText,
328
- gn as FormLabel,
325
+ ln as FormControl,
326
+ dn as FormFeedbackText,
327
+ mn as FormField,
328
+ gn as FormHelperText,
329
+ Sn as FormLabel,
329
330
  Gr as FullPageLoader,
330
331
  Zr as FunnelBackButton,
331
332
  Nr as FunnelBody,
@@ -348,124 +349,125 @@ export {
348
349
  Kt as ListViewItemLabel,
349
350
  Qt as ListViewItemText,
350
351
  Vt as ListViewSection,
351
- _x as MOBILE_BREAKPOINTS,
352
+ Kx as MOBILE_BREAKPOINTS,
352
353
  Jt as Menu,
353
354
  jt as MenuContent,
354
355
  Yt as MenuHeader,
355
- ep as MenuSeparator,
356
- tp as MenuTrigger,
357
- ap as MultiSelect,
358
- Sn as MultiSelectField,
359
- xp as MultiSelectOptGroup,
360
- fp as MultiSelectOption,
361
- lp as Nav,
362
- dp as NavGroup,
363
- kp as NavigationCardDescription,
364
- Tp as NavigationCardGroup,
365
- Bp as NavigationCardLabel,
366
- jn as NoopRouterProvider,
367
- Cn as NumberField,
368
- Ip as NumberInput,
369
- hp as Page,
370
- Lp as PageHeader,
371
- Ep as PageHeading,
372
- Np as Pagination,
373
- _p as PaginationContent,
374
- $p as PaginationEllipsis,
375
- Wp as PaginationItem,
376
- aa as PayFitBrand,
377
- xa as PayFitBrandPreprod,
378
- fa as PhoneNumberInput,
379
- la as Pill,
380
- da as Popover,
381
- sf as PopoverTrigger,
382
- ga as ProgressBar,
356
+ $t as MenuSection,
357
+ tp as MenuSeparator,
358
+ ap as MenuTrigger,
359
+ xp as MultiSelect,
360
+ Cn as MultiSelectField,
361
+ fp as MultiSelectOptGroup,
362
+ lp as MultiSelectOption,
363
+ dp as Nav,
364
+ gp as NavGroup,
365
+ Ip as NavigationCardDescription,
366
+ Pp as NavigationCardGroup,
367
+ kp as NavigationCardLabel,
368
+ Yn as NoopRouterProvider,
369
+ Fn as NumberField,
370
+ Dp as NumberInput,
371
+ Gp as Page,
372
+ vp as PageHeader,
373
+ Np as PageHeading,
374
+ Vp as Pagination,
375
+ Kp as PaginationContent,
376
+ ea as PaginationEllipsis,
377
+ qp as PaginationItem,
378
+ xa as PayFitBrand,
379
+ fa as PayFitBrandPreprod,
380
+ la as PhoneNumberInput,
381
+ da as Pill,
382
+ ga as Popover,
383
+ bf as PopoverTrigger,
384
+ Sa as ProgressBar,
383
385
  Pe as PromoDialog,
384
386
  ye as PromoDialogActions,
385
387
  De as PromoDialogContent,
386
388
  ke as PromoDialogHero,
387
389
  Ie as PromoDialogSubtitle,
388
390
  Le as PromoDialogTitle,
389
- Ca as RadioButton,
390
- Sa as RadioButtonGroup,
391
- Pn as RadioButtonGroupField,
392
- Pa as RadioButtonHelper,
393
- Tf as RadioIndicator,
391
+ Fa as RadioButton,
392
+ Ca as RadioButtonGroup,
393
+ An as RadioButtonGroupField,
394
+ Aa as RadioButtonHelper,
395
+ Pf as RadioIndicator,
394
396
  Ao as RawBreadcrumbLink,
395
- mn as RawFormContextualLink,
397
+ nn as RawFormContextualLink,
396
398
  ht as RawLink,
397
399
  Lt as RawLinkButton,
398
400
  Ht as RawListViewItem,
399
- $t as RawMenuItem,
400
- gp as RawNavItem,
401
- bp as RawNavigationCard,
402
- qp as RawPaginationLink,
403
- Yp as RawPaginationNext,
404
- jp as RawPaginationPrevious,
405
- px as RawSubTask,
406
- jm as RawTab,
407
- xx as RawTask,
408
- zn as RouterProvider,
409
- Aa as Search,
410
- Ia as SegmentedButtonGroup,
411
- Qa as Select,
412
- Ja as SelectButton,
413
- hn as SelectField,
414
- ja as SelectOption,
415
- Ya as SelectOptionGroup,
416
- $a as SelectOptionHelper,
417
- Ma as SelectableButton,
418
- ya as SelectableButtonGroup,
419
- An as SelectableButtonGroupField,
420
- Oa as SelectableCardCheckbox,
421
- Ha as SelectableCardCheckboxGroup,
422
- Rn as SelectableCardCheckboxGroupField,
423
- Ka as SelectableCardRadio,
424
- _a as SelectableCardRadioGroup,
425
- wn as SelectableCardRadioGroupField,
426
- em as SidePanel,
427
- pm as SidePanelContent,
428
- xm as SidePanelFooter,
429
- im as SidePanelHeader,
430
- dm as SkipLink,
431
- cm as SkipLinks,
432
- sm as Spinner,
401
+ ep as RawMenuItem,
402
+ Sp as RawNavItem,
403
+ Tp as RawNavigationCard,
404
+ Xp as RawPaginationLink,
405
+ $p as RawPaginationNext,
406
+ Yp as RawPaginationPrevious,
407
+ mx as RawSubTask,
408
+ Ym as RawTab,
409
+ fx as RawTask,
410
+ Zn as RouterProvider,
411
+ Ra as Search,
412
+ Da as SegmentedButtonGroup,
413
+ Ja as Select,
414
+ ja as SelectButton,
415
+ Gn as SelectField,
416
+ Ya as SelectOption,
417
+ $a as SelectOptionGroup,
418
+ em as SelectOptionHelper,
419
+ Ea as SelectableButton,
420
+ La as SelectableButtonGroup,
421
+ Rn as SelectableButtonGroupField,
422
+ _a as SelectableCardCheckbox,
423
+ Oa as SelectableCardCheckboxGroup,
424
+ wn as SelectableCardCheckboxGroupField,
425
+ Qa as SelectableCardRadio,
426
+ Ka as SelectableCardRadioGroup,
427
+ hn as SelectableCardRadioGroupField,
428
+ tm as SidePanel,
429
+ mm as SidePanelContent,
430
+ fm as SidePanelFooter,
431
+ um as SidePanelHeader,
432
+ gm as SkipLink,
433
+ sm as SkipLinks,
434
+ bm as Spinner,
433
435
  Pr as Stack,
434
436
  wr as StackItem,
435
- Ix as TOAST_CONFIG,
436
- Ym as TabList,
437
- $m as TabPanel,
438
- bm as Table,
439
- Fm as TableBody,
440
- Am as TableCell,
441
- Im as TableColumnHeader,
442
- hm as TableEmptyState,
443
- ym as TableEmptyStateError,
444
- Gm as TableEmptyStateLoading,
445
- Lm as TableEmptyStateNoData,
446
- Mm as TableEmptyStateText,
447
- Nm as TableHeader,
448
- vm as TableNoSearchResults,
449
- _m as TablePagination,
450
- Cm as TableRoot,
451
- Wm as TableRow,
452
- Jm as Tabs,
453
- ix as TaskGroup,
454
- ex as TaskMenu,
455
- gx as Text,
456
- ux as TextArea,
457
- Gn as TextField,
458
- Cx as Timeline,
459
- Fx as TimelineStep,
460
- kx as TimelineStepDescription,
461
- Bx as TimelineStepHeader,
462
- wx as ToastManager,
463
- Da as ToggleButton,
464
- vx as ToggleSwitch,
465
- Mn as ToggleSwitchField,
466
- Gx as ToggleSwitchGroup,
467
- En as ToggleSwitchGroupField,
468
- Nx as Tooltip,
437
+ Dx as TOAST_CONFIG,
438
+ $m as TabList,
439
+ ex as TabPanel,
440
+ Tm as Table,
441
+ Bm as TableBody,
442
+ Rm as TableCell,
443
+ Dm as TableColumnHeader,
444
+ Gm as TableEmptyState,
445
+ Lm as TableEmptyStateError,
446
+ Mm as TableEmptyStateLoading,
447
+ vm as TableEmptyStateNoData,
448
+ Em as TableEmptyStateText,
449
+ Vm as TableHeader,
450
+ Hm as TableNoSearchResults,
451
+ Km as TablePagination,
452
+ Fm as TableRoot,
453
+ qm as TableRow,
454
+ jm as Tabs,
455
+ ux as TaskGroup,
456
+ tx as TaskMenu,
457
+ Sx as Text,
458
+ cx as TextArea,
459
+ Mn as TextField,
460
+ Fx as Timeline,
461
+ Bx as TimelineStep,
462
+ Ix as TimelineStepDescription,
463
+ kx as TimelineStepHeader,
464
+ hx as ToastManager,
465
+ ya as ToggleButton,
466
+ Hx as ToggleSwitch,
467
+ En as ToggleSwitchField,
468
+ Mx as ToggleSwitchGroup,
469
+ Nn as ToggleSwitchGroupField,
470
+ Vx as Tooltip,
469
471
  u as actionBarRoot,
470
472
  _ as autocompleteItem,
471
473
  W as autocompleteItemGroup,
@@ -474,17 +476,17 @@ export {
474
476
  co as bottomSheetFooter,
475
477
  So as bottomSheetHeader,
476
478
  Do as card,
477
- of as carousel,
478
- ff as carouselContent,
479
- tf as carouselHeader,
480
- mf as carouselNav,
481
- df as carouselSlide,
479
+ rf as carousel,
480
+ uf as carouselContent,
481
+ af as carouselHeader,
482
+ nf as carouselNav,
483
+ gf as carouselSlide,
482
484
  Eo as checkboxGroup,
483
485
  Pt as circularIconButton,
484
486
  Yo as dataTableRoot,
485
487
  ue as dialog,
486
488
  rr as errorState,
487
- Jn as fieldRevalidateLogic,
489
+ jn as fieldRevalidateLogic,
488
490
  ar as fieldset,
489
491
  ur as filterContainer,
490
492
  dr as filterDismissButton,
@@ -505,57 +507,57 @@ export {
505
507
  ro as getInitials,
506
508
  ct as grid,
507
509
  gt as gridItem,
508
- Ux as isDesktopBreakpoint,
509
- Kx as isMobileBreakpoint,
510
+ Wx as isDesktopBreakpoint,
511
+ Qx as isMobileBreakpoint,
510
512
  yt as link,
511
513
  Nt as listViewItem,
512
514
  _t as listViewSection,
513
- sp as navItemBase,
514
- Fp as navigationCardGroup,
515
- Tn as numberField,
516
- wp as numberInput,
517
- yp as page,
518
- Mp as pageHeader,
519
- Op as pagination,
520
- Up as paginationContent,
521
- Jp as paginationLink,
515
+ bp as navItemBase,
516
+ Bp as navigationCardGroup,
517
+ Pn as numberField,
518
+ hp as numberInput,
519
+ Lp as page,
520
+ Ep as pageHeader,
521
+ _p as pagination,
522
+ Wp as paginationContent,
523
+ jp as paginationLink,
522
524
  Be as promoDialog,
523
- Ta as radioButton,
524
- ax as rawSubTask,
525
- nx as rawTask,
526
- ka as search,
527
- va as selectableButton,
528
- Ga as selectableButtonGroup,
529
- rm as sidePanel,
530
- am as sidePanelContent,
531
- nm as sidePanelFooter,
532
- lm as sidePanelHeader,
533
- Pm as tableBody,
534
- km as tableCell,
535
- wm as tableColumnHeader,
536
- Em as tableEmptyState,
537
- Om as tableHeader,
538
- Um as tablePagination,
539
- Qm as tableRow,
540
- rx as taskMenu,
541
- Sx as text,
542
- dx as textArea,
543
- hx as toast,
544
- Ex as toggleSwitch,
545
- Lx as toggleSwitchGroup,
525
+ Pa as radioButton,
526
+ xx as rawSubTask,
527
+ ix as rawTask,
528
+ Ia as search,
529
+ Ha as selectableButton,
530
+ Ma as selectableButtonGroup,
531
+ pm as sidePanel,
532
+ xm as sidePanelContent,
533
+ im as sidePanelFooter,
534
+ dm as sidePanelHeader,
535
+ Am as tableBody,
536
+ Im as tableCell,
537
+ hm as tableColumnHeader,
538
+ Nm as tableEmptyState,
539
+ _m as tableHeader,
540
+ Wm as tablePagination,
541
+ Jm as tableRow,
542
+ px as taskMenu,
543
+ Cx as text,
544
+ gx as textArea,
545
+ Gx as toast,
546
+ Nx as toggleSwitch,
547
+ vx as toggleSwitchGroup,
546
548
  h as useAppMenuContext,
547
- Pf as useAsyncList,
548
- Wx as useBreakpointListener,
549
- qx as useContainerQueryLevel,
550
- Qn as useFieldA11yContext,
551
- Un as useFieldContext,
552
- Kn as useFormContext,
553
- Xx as useMediaQuery,
554
- ta as usePaginationState,
555
- ea as usePaginationWindow,
556
- Yn as useRouter,
557
- Nn as useTanstackUnityForm,
558
- zx as useUnityForm,
559
- On as withFieldGroup,
560
- Vn as withForm
549
+ Af as useAsyncList,
550
+ qx as useBreakpointListener,
551
+ Xx as useContainerQueryLevel,
552
+ Jn as useFieldA11yContext,
553
+ Wn as useFieldContext,
554
+ Qn as useFormContext,
555
+ zx as useMediaQuery,
556
+ aa as usePaginationState,
557
+ ta as usePaginationWindow,
558
+ $n as useRouter,
559
+ Vn as useTanstackUnityForm,
560
+ Zx as useUnityForm,
561
+ _n as withFieldGroup,
562
+ Un as withForm
561
563
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payfit/unity-components",
3
- "version": "2.31.2",
3
+ "version": "2.32.0",
4
4
  "module": "./dist/esm/index.js",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -42,7 +42,7 @@
42
42
  "@hookform/devtools": "4.4.0",
43
43
  "@hookform/resolvers": "5.2.1",
44
44
  "@internationalized/date": "3.12.1",
45
- "@payfit/unity-illustrations": "2.31.2",
45
+ "@payfit/unity-illustrations": "2.32.0",
46
46
  "@radix-ui/react-avatar": "1.1.11",
47
47
  "@radix-ui/react-slot": "1.2.4",
48
48
  "@react-aria/interactions": "3.28.0",
@@ -74,8 +74,8 @@
74
74
  },
75
75
  "peerDependencies": {
76
76
  "@hookform/devtools": "^4",
77
- "@payfit/unity-icons": "2.31.2",
78
- "@payfit/unity-themes": "2.31.2",
77
+ "@payfit/unity-icons": "2.32.0",
78
+ "@payfit/unity-themes": "2.32.0",
79
79
  "@storybook/react-vite": "^10.3.2",
80
80
  "@tanstack/react-query": "^5",
81
81
  "@tanstack/react-router": "^1.131",
@@ -89,9 +89,9 @@
89
89
  "@figma/code-connect": "1.4.3",
90
90
  "@hookform/devtools": "4.4.0",
91
91
  "@internationalized/date": "3.12.1",
92
- "@payfit/unity-icons": "2.31.2",
93
- "@payfit/unity-illustrations": "2.31.2",
94
- "@payfit/unity-themes": "2.31.2",
92
+ "@payfit/unity-icons": "2.32.0",
93
+ "@payfit/unity-illustrations": "2.32.0",
94
+ "@payfit/unity-themes": "2.32.0",
95
95
  "@storybook/addon-a11y": "10.3.5",
96
96
  "@storybook/addon-designs": "11.1.3",
97
97
  "@storybook/addon-docs": "10.3.5",
@@ -130,10 +130,10 @@
130
130
  "vite-plugin-node-polyfills": "0.24.0",
131
131
  "vitest": "4.1.0",
132
132
  "@payfit/code-pushup-tools": "0.0.0-use.local",
133
- "@payfit/hr-app-eslint": "0.0.0-use.local",
134
- "@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
135
133
  "@payfit/storybook-addon-console-errors": "0.0.0-use.local",
136
134
  "@payfit/storybook-config": "0.0.0-use.local",
135
+ "@payfit/hr-app-eslint": "0.0.0-use.local",
136
+ "@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
137
137
  "@payfit/vite-configs": "0.0.0-use.local"
138
138
  },
139
139
  "peerDependenciesMeta": {