@payfit/unity-components 2.31.3 → 2.33.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.
- package/dist/esm/components/menu/parts/MenuSection.d.ts +83 -0
- package/dist/esm/components/menu/parts/MenuSection.js +44 -0
- package/dist/esm/components/menu/parts/RawMenuItem.js +3 -3
- package/dist/esm/components/timeline/Timeline.variants.js +6 -6
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +295 -293
- package/package.json +10 -10
|
@@ -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-
|
|
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
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { uyTv as e } from "@payfit/unity-themes";
|
|
2
|
-
const
|
|
2
|
+
const t = e({
|
|
3
3
|
base: "uy:flex uy:list-none uy:m-0 uy:p-0",
|
|
4
4
|
variants: {
|
|
5
5
|
orientation: {
|
|
@@ -43,12 +43,12 @@ const r = e({
|
|
|
43
43
|
variants: {
|
|
44
44
|
state: {
|
|
45
45
|
completed: {
|
|
46
|
-
ball: "uy:bg-surface-primary-active uy:border-transparent uy:w-300 uy:h-300",
|
|
47
|
-
line: "uy:border-border-primary uy:border-solid",
|
|
46
|
+
ball: "uy:theme-legacy:bg-surface-primary-active uy:theme-rebrand:bg-surface-neutral-highest-enabled uy:border-transparent uy:w-300 uy:h-300",
|
|
47
|
+
line: "uy:theme-legacy:border-border-primary uy:theme-rebrand:border-border-neutral-highest uy:border-solid",
|
|
48
48
|
icon: "uy:text-content-inverted"
|
|
49
49
|
},
|
|
50
50
|
current: {
|
|
51
|
-
ball: "uy:bg-transparent uy:border-border-primary-enabled",
|
|
51
|
+
ball: "uy:bg-transparent uy:theme-legacy:border-border-primary-enabled uy:theme-rebrand:border-border-neutral-highest",
|
|
52
52
|
line: "uy:border-border-neutral uy:border-dashed",
|
|
53
53
|
number: "uy:text-content-primary-active"
|
|
54
54
|
},
|
|
@@ -82,7 +82,7 @@ const r = e({
|
|
|
82
82
|
state: "current",
|
|
83
83
|
type: "numbered",
|
|
84
84
|
className: {
|
|
85
|
-
ball: "uy:bg-surface-primary uy:border-transparent",
|
|
85
|
+
ball: "uy:theme-legacy:bg-surface-primary uy:theme-rebrand:bg-surface-neutral-highest-enabled uy:border-transparent",
|
|
86
86
|
number: "uy:text-content-inverted-active"
|
|
87
87
|
}
|
|
88
88
|
},
|
|
@@ -114,7 +114,7 @@ const r = e({
|
|
|
114
114
|
}
|
|
115
115
|
});
|
|
116
116
|
export {
|
|
117
|
-
|
|
117
|
+
t as timeline,
|
|
118
118
|
y as timelineContent,
|
|
119
119
|
n as timelineMarker,
|
|
120
120
|
u as timelineStep
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -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 {
|
|
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 {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
203
|
-
import {
|
|
204
|
-
import {
|
|
205
|
-
import {
|
|
206
|
-
import {
|
|
207
|
-
import {
|
|
208
|
-
import {
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
211
|
-
import {
|
|
212
|
-
import {
|
|
213
|
-
import {
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import {
|
|
229
|
-
import {
|
|
230
|
-
import {
|
|
231
|
-
import {
|
|
232
|
-
import {
|
|
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
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
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
|
-
|
|
279
|
+
on as CheckboxField,
|
|
279
280
|
vo as CheckboxGroup,
|
|
280
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
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
|
-
|
|
352
|
+
Kx as MOBILE_BREAKPOINTS,
|
|
352
353
|
Jt as Menu,
|
|
353
354
|
jt as MenuContent,
|
|
354
355
|
Yt as MenuHeader,
|
|
355
|
-
|
|
356
|
-
tp as
|
|
357
|
-
ap as
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
fp as
|
|
361
|
-
lp as
|
|
362
|
-
dp as
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
Np as
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
xa as
|
|
378
|
-
fa as
|
|
379
|
-
la as
|
|
380
|
-
da as
|
|
381
|
-
|
|
382
|
-
|
|
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
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
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
|
-
|
|
397
|
+
nn as RawFormContextualLink,
|
|
396
398
|
ht as RawLink,
|
|
397
399
|
Lt as RawLinkButton,
|
|
398
400
|
Ht as RawListViewItem,
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
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
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
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
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
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
|
-
|
|
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
|
-
|
|
509
|
-
|
|
510
|
+
Wx as isDesktopBreakpoint,
|
|
511
|
+
Qx as isMobileBreakpoint,
|
|
510
512
|
yt as link,
|
|
511
513
|
Nt as listViewItem,
|
|
512
514
|
_t as listViewSection,
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
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
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
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
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
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.
|
|
3
|
+
"version": "2.33.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.
|
|
45
|
+
"@payfit/unity-illustrations": "2.33.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.
|
|
78
|
-
"@payfit/unity-themes": "2.
|
|
77
|
+
"@payfit/unity-icons": "2.33.0",
|
|
78
|
+
"@payfit/unity-themes": "2.33.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.
|
|
93
|
-
"@payfit/unity-illustrations": "2.
|
|
94
|
-
"@payfit/unity-themes": "2.
|
|
92
|
+
"@payfit/unity-icons": "2.33.0",
|
|
93
|
+
"@payfit/unity-illustrations": "2.33.0",
|
|
94
|
+
"@payfit/unity-themes": "2.33.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",
|
|
@@ -131,10 +131,10 @@
|
|
|
131
131
|
"vitest": "4.1.0",
|
|
132
132
|
"@payfit/code-pushup-tools": "0.0.0-use.local",
|
|
133
133
|
"@payfit/hr-app-eslint": "0.0.0-use.local",
|
|
134
|
-
"@payfit/storybook-addon-console-errors": "0.0.0-use.local",
|
|
135
|
-
"@payfit/vite-configs": "0.0.0-use.local",
|
|
136
134
|
"@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
|
|
137
|
-
"@payfit/storybook-
|
|
135
|
+
"@payfit/storybook-addon-console-errors": "0.0.0-use.local",
|
|
136
|
+
"@payfit/storybook-config": "0.0.0-use.local",
|
|
137
|
+
"@payfit/vite-configs": "0.0.0-use.local"
|
|
138
138
|
},
|
|
139
139
|
"peerDependenciesMeta": {
|
|
140
140
|
"@hookform/devtools": {
|