@skiddph/prui 0.7.0 → 0.9.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.
Files changed (79) hide show
  1. package/dist/app/resource.d.ts +44 -1
  2. package/dist/app.js +1 -1
  3. package/dist/chunks/auth-shell-DQJ4UmUv.js +1208 -0
  4. package/dist/chunks/data-table-toolbar-B-5J2Ozl.js +736 -0
  5. package/dist/core/accordion.d.ts +16 -0
  6. package/dist/core/accordion.js +108 -0
  7. package/dist/core/alert.d.ts +20 -0
  8. package/dist/core/alert.js +63 -0
  9. package/dist/core/anchor.d.ts +35 -0
  10. package/dist/core/anchor.js +39 -0
  11. package/dist/core/breadcrumb.d.ts +30 -0
  12. package/dist/core/breadcrumb.js +67 -0
  13. package/dist/core/button.d.ts +8 -1
  14. package/dist/core/button.js +23 -18
  15. package/dist/core/calendar.d.ts +29 -0
  16. package/dist/core/calendar.js +180 -0
  17. package/dist/core/card.d.ts +5 -1
  18. package/dist/core/card.js +33 -29
  19. package/dist/core/checkbox.d.ts +19 -0
  20. package/dist/core/checkbox.js +55 -0
  21. package/dist/core/combobox.d.ts +32 -0
  22. package/dist/core/combobox.js +193 -0
  23. package/dist/core/date-picker.d.ts +62 -0
  24. package/dist/core/date-picker.js +314 -0
  25. package/dist/core/dialog.d.ts +15 -0
  26. package/dist/core/dialog.js +77 -60
  27. package/dist/core/drawer.d.ts +34 -0
  28. package/dist/core/drawer.js +129 -0
  29. package/dist/core/dropdown.d.ts +8 -4
  30. package/dist/core/dropdown.js +136 -51
  31. package/dist/core/file-upload.d.ts +28 -0
  32. package/dist/core/file-upload.js +111 -0
  33. package/dist/core/index.d.ts +23 -1
  34. package/dist/core/list-nav.d.ts +27 -0
  35. package/dist/core/list-nav.js +51 -0
  36. package/dist/core/modal.d.ts +14 -5
  37. package/dist/core/modal.js +163 -156
  38. package/dist/core/overlay.d.ts +93 -0
  39. package/dist/core/overlay.js +189 -0
  40. package/dist/core/popover.d.ts +29 -0
  41. package/dist/core/popover.js +124 -0
  42. package/dist/core/progress.d.ts +21 -0
  43. package/dist/core/progress.js +59 -0
  44. package/dist/core/radio.d.ts +20 -0
  45. package/dist/core/radio.js +115 -0
  46. package/dist/core/select.d.ts +6 -0
  47. package/dist/core/select.js +187 -98
  48. package/dist/core/skeleton.d.ts +20 -0
  49. package/dist/core/skeleton.js +41 -0
  50. package/dist/core/spinner.d.ts +15 -0
  51. package/dist/core/spinner.js +41 -0
  52. package/dist/core/tabs.js +82 -53
  53. package/dist/core/time-picker.d.ts +68 -0
  54. package/dist/core/time-picker.js +305 -0
  55. package/dist/core/timeline.d.ts +22 -0
  56. package/dist/core/timeline.js +57 -0
  57. package/dist/core/toast.d.ts +36 -0
  58. package/dist/core/toast.js +123 -0
  59. package/dist/core/tooltip.d.ts +23 -0
  60. package/dist/core/tooltip.js +96 -0
  61. package/dist/core/tree-view.d.ts +34 -0
  62. package/dist/core/tree-view.js +133 -0
  63. package/dist/core.js +160 -62
  64. package/dist/data-table/data-table.d.ts +22 -1
  65. package/dist/data-table.js +1 -1
  66. package/dist/forms/form.d.ts +8 -0
  67. package/dist/forms.js +213 -200
  68. package/dist/i18n/index.d.ts +89 -0
  69. package/dist/i18n.js +105 -0
  70. package/dist/index.d.ts +1 -0
  71. package/dist/index.js +263 -155
  72. package/dist/prui-utilities.css +1 -1
  73. package/dist/prui.css +111 -4
  74. package/dist/theme/base.css +110 -3
  75. package/dist/theme/index.d.ts +27 -0
  76. package/dist/theme.js +86 -58
  77. package/package.json +9 -2
  78. package/dist/chunks/auth-shell-BG5vx9eG.js +0 -1054
  79. package/dist/chunks/data-table-toolbar-BUy2EWPy.js +0 -581
@@ -0,0 +1,89 @@
1
+ import * as React from "react";
2
+ /**
3
+ * PRUI internationalization.
4
+ *
5
+ * Every user-facing string PRUI renders comes from a dictionary. The
6
+ * default dictionary is English; apps override it wholesale or per-key via
7
+ * <PruiProvider dictionary={...}> or setPruiDictionary(). Components read
8
+ * strings through usePruiI18n().t("key") so translations need no re-render
9
+ * wiring beyond the provider.
10
+ */
11
+ export interface PruiDictionary {
12
+ close: string;
13
+ closeDialog: string;
14
+ cancel: string;
15
+ confirm: string;
16
+ delete: string;
17
+ save: string;
18
+ create: string;
19
+ edit: string;
20
+ loading: string;
21
+ commandPlaceholder: string;
22
+ commandNoMatches: string;
23
+ search: string;
24
+ noResults: string;
25
+ rowsPerPage: string;
26
+ page: string;
27
+ nextPage: string;
28
+ previousPage: string;
29
+ selectAllRows: string;
30
+ selectRow: string;
31
+ expandRow: string;
32
+ collapseRow: string;
33
+ yes: string;
34
+ no: string;
35
+ requiredField: string;
36
+ formErrorTitle: string;
37
+ invalidFormat: string;
38
+ minLength: string;
39
+ maxLength: string;
40
+ minNumber: string;
41
+ maxNumber: string;
42
+ newEntity: string;
43
+ editEntity: string;
44
+ searchEntity: string;
45
+ deleteConfirmMessage: string;
46
+ dismiss: string;
47
+ notifications: string;
48
+ mainNavigation: string;
49
+ openNavigation: string;
50
+ closeNavigation: string;
51
+ switchTheme: string;
52
+ expandSidebar: string;
53
+ collapseSidebar: string;
54
+ today: string;
55
+ clear: string;
56
+ apply: string;
57
+ time: string;
58
+ hours: string;
59
+ minutes: string;
60
+ seconds: string;
61
+ from: string;
62
+ to: string;
63
+ dropFiles: string;
64
+ browseFiles: string;
65
+ removeFile: string;
66
+ of: string;
67
+ }
68
+ export declare const defaultDictionary: PruiDictionary;
69
+ /**
70
+ * Replace the active PRUI dictionary globally (no React context needed,
71
+ * useful outside components / at startup). Merge partials for per-key
72
+ * overrides.
73
+ */
74
+ export declare function setPruiDictionary(dict: Partial<PruiDictionary>): void;
75
+ /** Reset to the built-in English dictionary. */
76
+ export declare function resetPruiDictionary(): void;
77
+ /** The active dictionary (readonly snapshot). */
78
+ export declare function getPruiDictionary(): Readonly<PruiDictionary>;
79
+ /** Provider that scopes a dictionary to a subtree. */
80
+ export declare function PruiProvider({ dictionary, children, }: {
81
+ dictionary?: Partial<PruiDictionary>;
82
+ children?: React.ReactNode;
83
+ }): React.JSX.Element;
84
+ export interface PruiI18n {
85
+ /** The active dictionary. */
86
+ t: Readonly<PruiDictionary>;
87
+ }
88
+ /** Read the active PRUI dictionary (falls back to the global one). */
89
+ export declare function usePruiI18n(): PruiI18n;
package/dist/i18n.js ADDED
@@ -0,0 +1,105 @@
1
+ import { jsx as m } from "react/jsx-runtime";
2
+ import * as r from "react";
3
+ const s = {
4
+ close: "Close",
5
+ closeDialog: "Close dialog",
6
+ cancel: "Cancel",
7
+ confirm: "Confirm",
8
+ delete: "Delete",
9
+ save: "Save",
10
+ create: "Create",
11
+ edit: "Edit",
12
+ loading: "Loading...",
13
+ commandPlaceholder: "Type a command or search...",
14
+ commandNoMatches: "No matches.",
15
+ search: "Search",
16
+ noResults: "No results.",
17
+ rowsPerPage: "Rows per page",
18
+ page: "Page",
19
+ nextPage: "Next page",
20
+ previousPage: "Previous page",
21
+ selectAllRows: "Select all rows",
22
+ selectRow: "Select row",
23
+ expandRow: "Expand row",
24
+ collapseRow: "Collapse row",
25
+ yes: "Yes",
26
+ no: "No",
27
+ requiredField: "{label} is required.",
28
+ formErrorTitle: "Form error",
29
+ invalidFormat: "{label} has an invalid format.",
30
+ minLength: "{label} must be at least {min} characters.",
31
+ maxLength: "{label} must be at most {max} characters.",
32
+ minNumber: "{label} must be {min} or more.",
33
+ maxNumber: "{label} must be {max} or less.",
34
+ newEntity: "New {name}",
35
+ editEntity: "Edit {name}",
36
+ searchEntity: "Search {name}...",
37
+ deleteConfirmMessage: "This action cannot be undone.",
38
+ dismiss: "Dismiss",
39
+ notifications: "Notifications",
40
+ mainNavigation: "Main",
41
+ openNavigation: "Open navigation",
42
+ closeNavigation: "Close navigation",
43
+ switchTheme: "Switch theme",
44
+ expandSidebar: "Expand sidebar",
45
+ collapseSidebar: "Collapse sidebar",
46
+ today: "Today",
47
+ clear: "Clear",
48
+ apply: "Apply",
49
+ time: "Time",
50
+ hours: "Hours",
51
+ minutes: "Minutes",
52
+ seconds: "Seconds",
53
+ from: "From",
54
+ to: "To",
55
+ dropFiles: "Drag files here or click to browse",
56
+ browseFiles: "Browse files",
57
+ removeFile: "Remove file",
58
+ of: "of"
59
+ };
60
+ let o = s;
61
+ const n = /* @__PURE__ */ new Set();
62
+ function i() {
63
+ for (const e of n) e();
64
+ }
65
+ function u(e) {
66
+ o = { ...o, ...e }, i();
67
+ }
68
+ function f() {
69
+ o = s, i();
70
+ }
71
+ function p() {
72
+ return o;
73
+ }
74
+ const l = r.createContext(null);
75
+ function g({
76
+ dictionary: e,
77
+ children: a
78
+ }) {
79
+ r.useEffect(() => {
80
+ if (!e) return;
81
+ const c = o;
82
+ return u(e), () => {
83
+ o = c, i();
84
+ };
85
+ }, [e]);
86
+ const t = r.useMemo(() => ({ ...o, ...e }), [e]);
87
+ return /* @__PURE__ */ m(l.Provider, { value: t, children: a });
88
+ }
89
+ function h() {
90
+ const e = r.useContext(l), [, a] = r.useReducer((t) => t + 1, 0);
91
+ return r.useEffect(() => {
92
+ const t = a;
93
+ return n.add(t), () => {
94
+ n.delete(t);
95
+ };
96
+ }, []), { t: e ?? o };
97
+ }
98
+ export {
99
+ g as PruiProvider,
100
+ s as defaultDictionary,
101
+ p as getPruiDictionary,
102
+ f as resetPruiDictionary,
103
+ u as setPruiDictionary,
104
+ h as usePruiI18n
105
+ };
package/dist/index.d.ts CHANGED
@@ -3,4 +3,5 @@ export * from './data-table';
3
3
  export * from './app';
4
4
  export * from './pages';
5
5
  export * from './theme';
6
+ export { PruiProvider, usePruiI18n, setPruiDictionary, resetPruiDictionary, getPruiDictionary, defaultDictionary, type PruiDictionary, } from './i18n';
6
7
  export { FormGroup, FormInput, FormButton, useFormApi, registerForm, getFormApi, formGroupPropsMeta, formInputPropsMeta, formButtonPropsMeta, type FormGroupProps, type FormInputProps, type FormButtonProps, type SafeParseSchema, } from './forms';
package/dist/index.js CHANGED
@@ -1,159 +1,267 @@
1
- import { cn as t } from "./core/cn.js";
2
- import { resolveSurface as r, withSurface as s } from "./core/surface.js";
3
- import { Button as P, buttonPropsMeta as i } from "./core/button.js";
4
- import { Input as g, Textarea as m, inputPropsMeta as n, textareaPropsMeta as M } from "./core/input.js";
5
- import { Label as T, Separator as f, labelPropsMeta as u, separatorPropsMeta as S } from "./core/label.js";
6
- import { Select as h, SelectContent as x, SelectItem as b, SelectTrigger as F, SelectValue as D, selectPropsMeta as R } from "./core/select.js";
7
- import { Switch as C, switchPropsMeta as w } from "./core/switch.js";
8
- import { Tabs as k, TabsContent as v, TabsList as L, TabsTrigger as I, tabsPropsMeta as y } from "./core/tabs.js";
9
- import { Avatar as B, Badge as H, Card as O, CardContent as G, CardDescription as U, CardFooter as _, CardHeader as j, CardTitle as K, avatarPropsMeta as V, badgePropsMeta as q, cardPropsMeta as z } from "./core/card.js";
10
- import { Dialog as Q, DialogContent as W, DialogDescription as X, DialogFooter as Y, DialogHeader as Z, DialogTitle as $, dialogPropsMeta as ee } from "./core/dialog.js";
11
- import { Dropdown as te, dropdownPropsMeta as oe } from "./core/dropdown.js";
12
- import { ScrollArea as se, scrollAreaPropsMeta as pe } from "./core/scroll-area.js";
13
- import { Modal as ie, confirmModal as le, confirmModalPropsMeta as ge, modalPropsMeta as me } from "./core/modal.js";
14
- import { D as Me, a as de, b as Te, c as fe, d as ue, F as Se, N as ce, P as he, T as xe, e as be, f as Fe, g as De } from "./chunks/data-table-toolbar-BUy2EWPy.js";
15
- import { Link as Ae, NavLink as Ce, Navigate as we, Outlet as Ne, Route as ke, Routes as ve } from "react-router-dom";
16
- import { A as Ie, a as ye, b as Ee, c as Be, C as He, F as Oe, R as Ge, S as Ue, d as _e, e as je, f as Ke, g as Ve, h as qe, i as ze, r as Je, s as Qe, j as We, k as Xe, u as Ye } from "./chunks/auth-shell-BG5vx9eG.js";
17
- import { AdminSetup as $e, EmptyState as ea, ErrorPage as aa, ForgotPasswordPage as ta, LoginPage as oa, LogoutPage as ra, NotFoundPage as sa, OtpPage as pa, PagesRegistry as Pa, ProfilePage as ia, RegisterPage as la, ResetPasswordPage as ga, SettingsPage as ma, adminSetupPropsMeta as na, emptyStatePropsMeta as Ma, errorPagePropsMeta as da, forgotPasswordPagePropsMeta as Ta, loginPagePropsMeta as fa, logoutPagePropsMeta as ua, notFoundPagePropsMeta as Sa, otpPagePropsMeta as ca, profilePagePropsMeta as ha, registerPagePropsMeta as xa, resetPasswordPagePropsMeta as ba, settingsPagePropsMeta as Fa } from "./pages.js";
18
- import { PRUI_THEMES as Ra, PRUI_TOKENS as Aa, applyTheme as Ca, applyThemeTokens as wa, clearAppliedTokens as Na, defineTheme as ka, isDarkTheme as va, isLightTheme as La, listThemes as Ia, nextTheme as ya, readPersistedTheme as Ea, resolveThemeName as Ba, restoreAppliedTokens as Ha, themeMeta as Oa, themeMode as Ga } from "./theme.js";
19
- import { FormButton as _a, FormGroup as ja, FormInput as Ka, formButtonPropsMeta as Va, formGroupPropsMeta as qa, formInputPropsMeta as za, getFormApi as Ja, registerForm as Qa, useFormApi as Wa } from "./forms.js";
1
+ import { cn as r } from "./core/cn.js";
2
+ import { resolveSurface as t, withSurface as s } from "./core/surface.js";
3
+ import { Portal as i, getFocusable as P, isTopOverlay as m, overlayCount as l, overlayPropsMeta as n, pushOverlay as d, removeOverlay as M, useEscapeKey as g, useFocusTrap as c, useInertBackground as u, useOverlay as f, useOverlayStack as x, useReducedMotion as T, useScrollLock as S } from "./core/overlay.js";
4
+ import { endIndex as h, homeIndex as D, moveIndex as F, typeaheadIndex as R } from "./core/list-nav.js";
5
+ import { Button as y, buttonPropsMeta as A } from "./core/button.js";
6
+ import { Input as I, Textarea as C, inputPropsMeta as w, textareaPropsMeta as B } from "./core/input.js";
7
+ import { Label as E, Separator as O, labelPropsMeta as L, separatorPropsMeta as K } from "./core/label.js";
8
+ import { Select as G, SelectContent as _, SelectItem as H, SelectTrigger as V, SelectValue as j, selectPropsMeta as q } from "./core/select.js";
9
+ import { Switch as J, switchPropsMeta as Q } from "./core/switch.js";
10
+ import { Tabs as X, TabsContent as Y, TabsList as Z, TabsTrigger as $, tabsPropsMeta as ee } from "./core/tabs.js";
11
+ import { Avatar as re, Badge as ae, Card as te, CardContent as se, CardDescription as pe, CardFooter as ie, CardHeader as Pe, CardTitle as me, avatarPropsMeta as le, badgePropsMeta as ne, cardPropsMeta as de } from "./core/card.js";
12
+ import { Dialog as ge, DialogBody as ce, DialogContent as ue, DialogDescription as fe, DialogFooter as xe, DialogHeader as Te, DialogTitle as Se, dialogBodyPropsMeta as be, dialogPropsMeta as he } from "./core/dialog.js";
13
+ import { Dropdown as Fe, dropdownPropsMeta as Re } from "./core/dropdown.js";
14
+ import { ScrollArea as ye, scrollAreaPropsMeta as Ae } from "./core/scroll-area.js";
15
+ import { Modal as Ie, confirmModal as Ce, confirmModalPropsMeta as we, modalPropsMeta as Be } from "./core/modal.js";
16
+ import { computePosition as Ee, useAnchoredPosition as Oe } from "./core/anchor.js";
17
+ import { Spinner as Ke, spinnerPropsMeta as Ue } from "./core/spinner.js";
18
+ import { Skeleton as _e, skeletonPropsMeta as He } from "./core/skeleton.js";
19
+ import { Alert as je, alertPropsMeta as qe } from "./core/alert.js";
20
+ import { Progress as Je, progressPropsMeta as Qe } from "./core/progress.js";
21
+ import { Toaster as Xe, dismissAllToasts as Ye, toast as Ze, toastPropsMeta as $e, toasterPropsMeta as eo } from "./core/toast.js";
22
+ import { Tooltip as ro, tooltipPropsMeta as ao } from "./core/tooltip.js";
23
+ import { Popover as so, popoverPropsMeta as po } from "./core/popover.js";
24
+ import { Drawer as Po, Sheet as mo, drawerPropsMeta as lo, sheetPropsMeta as no } from "./core/drawer.js";
25
+ import { Checkbox as go, checkboxPropsMeta as co } from "./core/checkbox.js";
26
+ import { Radio as fo, RadioGroup as xo, radioGroupPropsMeta as To } from "./core/radio.js";
27
+ import { Combobox as bo, comboboxPropsMeta as ho } from "./core/combobox.js";
28
+ import { Accordion as Fo, AccordionItem as Ro, accordionPropsMeta as ko } from "./core/accordion.js";
29
+ import { Breadcrumb as Ao, BreadcrumbEllipsis as vo, BreadcrumbItem as Io, breadcrumbPropsMeta as Co } from "./core/breadcrumb.js";
30
+ import { TreeView as Bo, treeViewPropsMeta as No } from "./core/tree-view.js";
31
+ import { Timeline as Oo, timelinePropsMeta as Lo } from "./core/timeline.js";
32
+ import { Calendar as Uo, calendarPropsMeta as Go, fromDateKey as _o, toDateKey as Ho } from "./core/calendar.js";
33
+ import { DatePicker as jo, DateRangePicker as qo, datePickerPropsMeta as zo, dateRangePickerPropsMeta as Jo } from "./core/date-picker.js";
34
+ import { TimePanel as Wo, TimePicker as Xo, TimeRangePicker as Yo, timePickerPropsMeta as Zo, timeRangePickerPropsMeta as $o } from "./core/time-picker.js";
35
+ import { FileUpload as or, fileUploadPropsMeta as rr } from "./core/file-upload.js";
36
+ import { D as tr, a as sr, b as pr, c as ir, d as Pr, F as mr, N as lr, P as nr, T as dr, e as Mr, f as gr, g as cr } from "./chunks/data-table-toolbar-B-5J2Ozl.js";
37
+ import { Link as fr, NavLink as xr, Navigate as Tr, Outlet as Sr, Route as br, Routes as hr } from "react-router-dom";
38
+ import { A as Fr, a as Rr, b as kr, c as yr, C as Ar, F as vr, R as Ir, S as Cr, d as wr, e as Br, f as Nr, g as Er, h as Or, i as Lr, r as Kr, s as Ur, j as Gr, k as _r, u as Hr } from "./chunks/auth-shell-DQJ4UmUv.js";
39
+ import { AdminSetup as jr, EmptyState as qr, ErrorPage as zr, ForgotPasswordPage as Jr, LoginPage as Qr, LogoutPage as Wr, NotFoundPage as Xr, OtpPage as Yr, PagesRegistry as Zr, ProfilePage as $r, RegisterPage as ea, ResetPasswordPage as oa, SettingsPage as ra, adminSetupPropsMeta as aa, emptyStatePropsMeta as ta, errorPagePropsMeta as sa, forgotPasswordPagePropsMeta as pa, loginPagePropsMeta as ia, logoutPagePropsMeta as Pa, notFoundPagePropsMeta as ma, otpPagePropsMeta as la, profilePagePropsMeta as na, registerPagePropsMeta as da, resetPasswordPagePropsMeta as Ma, settingsPagePropsMeta as ga } from "./pages.js";
40
+ import { PRUI_BREAKPOINTS as ua, PRUI_DESIGN_TOKENS as fa, PRUI_THEMES as xa, PRUI_TOKENS as Ta, applyTheme as Sa, applyThemeTokens as ba, clearAppliedTokens as ha, defineTheme as Da, isDarkTheme as Fa, isLightTheme as Ra, listThemes as ka, nextTheme as ya, readPersistedTheme as Aa, resolveThemeName as va, restoreAppliedTokens as Ia, themeMeta as Ca, themeMode as wa, useBreakpointAtLeast as Ba } from "./theme.js";
41
+ import { PruiProvider as Ea, defaultDictionary as Oa, getPruiDictionary as La, resetPruiDictionary as Ka, setPruiDictionary as Ua, usePruiI18n as Ga } from "./i18n.js";
42
+ import { FormButton as Ha, FormGroup as Va, FormInput as ja, formButtonPropsMeta as qa, formGroupPropsMeta as za, formInputPropsMeta as Ja, getFormApi as Qa, registerForm as Wa, useFormApi as Xa } from "./forms.js";
20
43
  export {
21
- $e as AdminSetup,
22
- Ie as App,
23
- ye as AppShell,
24
- Ee as AuthShell,
25
- Be as AutoPages,
26
- B as Avatar,
27
- H as Badge,
28
- P as Button,
29
- O as Card,
30
- G as CardContent,
31
- U as CardDescription,
32
- _ as CardFooter,
33
- j as CardHeader,
34
- K as CardTitle,
35
- He as CommandPalette,
36
- Me as DataTable,
37
- de as DataTablePagination,
38
- Te as DataTableToolbar,
39
- fe as DateFilter,
40
- ue as DateRangeFilter,
41
- Q as Dialog,
42
- W as DialogContent,
43
- X as DialogDescription,
44
- Y as DialogFooter,
45
- Z as DialogHeader,
46
- $ as DialogTitle,
47
- te as Dropdown,
48
- ea as EmptyState,
49
- aa as ErrorPage,
50
- Se as FacetedFilter,
51
- ta as ForgotPasswordPage,
52
- Oe as Form,
53
- _a as FormButton,
54
- ja as FormGroup,
55
- Ka as FormInput,
56
- g as Input,
57
- T as Label,
58
- Ae as Link,
59
- oa as LoginPage,
60
- ra as LogoutPage,
61
- ie as Modal,
62
- Ce as NavLink,
63
- we as Navigate,
64
- sa as NotFoundPage,
65
- ce as NumberRangeFilter,
66
- pa as OtpPage,
67
- Ne as Outlet,
68
- Ra as PRUI_THEMES,
69
- Aa as PRUI_TOKENS,
70
- Pa as PagesRegistry,
71
- he as PriceFilter,
72
- ia as ProfilePage,
73
- la as RegisterPage,
74
- ga as ResetPasswordPage,
75
- Ge as Resource,
76
- ke as Route,
77
- ve as Routes,
78
- se as ScrollArea,
79
- h as Select,
80
- x as SelectContent,
81
- b as SelectItem,
82
- F as SelectTrigger,
83
- D as SelectValue,
84
- f as Separator,
85
- Ue as SessionTimeout,
86
- _e as Settings,
87
- ma as SettingsPage,
88
- je as SidebarNav,
89
- Ke as StatRow,
90
- C as Switch,
91
- k as Tabs,
92
- v as TabsContent,
93
- L as TabsList,
94
- I as TabsTrigger,
95
- m as Textarea,
96
- xe as TimeRangeFilter,
97
- na as adminSetupPropsMeta,
98
- Ve as appPropsMeta,
99
- Ca as applyTheme,
100
- wa as applyThemeTokens,
101
- qe as authShellPropsMeta,
102
- V as avatarPropsMeta,
103
- q as badgePropsMeta,
104
- i as buttonPropsMeta,
105
- z as cardPropsMeta,
106
- Na as clearAppliedTokens,
107
- t as cn,
108
- le as confirmModal,
109
- ge as confirmModalPropsMeta,
110
- be as dataTablePaginationPropsMeta,
111
- Fe as dataTablePropsMeta,
112
- De as dataTableToolbarPropsMeta,
113
- ka as defineTheme,
114
- ee as dialogPropsMeta,
115
- oe as dropdownPropsMeta,
116
- Ma as emptyStatePropsMeta,
117
- da as errorPagePropsMeta,
118
- Ta as forgotPasswordPagePropsMeta,
119
- Va as formButtonPropsMeta,
120
- qa as formGroupPropsMeta,
121
- za as formInputPropsMeta,
122
- ze as formPropsMeta,
123
- Ja as getFormApi,
124
- n as inputPropsMeta,
125
- va as isDarkTheme,
126
- La as isLightTheme,
127
- u as labelPropsMeta,
128
- Ia as listThemes,
129
- fa as loginPagePropsMeta,
130
- ua as logoutPagePropsMeta,
131
- me as modalPropsMeta,
44
+ Fo as Accordion,
45
+ Ro as AccordionItem,
46
+ jr as AdminSetup,
47
+ je as Alert,
48
+ Fr as App,
49
+ Rr as AppShell,
50
+ kr as AuthShell,
51
+ yr as AutoPages,
52
+ re as Avatar,
53
+ ae as Badge,
54
+ Ao as Breadcrumb,
55
+ vo as BreadcrumbEllipsis,
56
+ Io as BreadcrumbItem,
57
+ y as Button,
58
+ Uo as Calendar,
59
+ te as Card,
60
+ se as CardContent,
61
+ pe as CardDescription,
62
+ ie as CardFooter,
63
+ Pe as CardHeader,
64
+ me as CardTitle,
65
+ go as Checkbox,
66
+ bo as Combobox,
67
+ Ar as CommandPalette,
68
+ tr as DataTable,
69
+ sr as DataTablePagination,
70
+ pr as DataTableToolbar,
71
+ ir as DateFilter,
72
+ jo as DatePicker,
73
+ Pr as DateRangeFilter,
74
+ qo as DateRangePicker,
75
+ ge as Dialog,
76
+ ce as DialogBody,
77
+ ue as DialogContent,
78
+ fe as DialogDescription,
79
+ xe as DialogFooter,
80
+ Te as DialogHeader,
81
+ Se as DialogTitle,
82
+ Po as Drawer,
83
+ Fe as Dropdown,
84
+ qr as EmptyState,
85
+ zr as ErrorPage,
86
+ mr as FacetedFilter,
87
+ or as FileUpload,
88
+ Jr as ForgotPasswordPage,
89
+ vr as Form,
90
+ Ha as FormButton,
91
+ Va as FormGroup,
92
+ ja as FormInput,
93
+ I as Input,
94
+ E as Label,
95
+ fr as Link,
96
+ Qr as LoginPage,
97
+ Wr as LogoutPage,
98
+ Ie as Modal,
99
+ xr as NavLink,
100
+ Tr as Navigate,
101
+ Xr as NotFoundPage,
102
+ lr as NumberRangeFilter,
103
+ Yr as OtpPage,
104
+ Sr as Outlet,
105
+ ua as PRUI_BREAKPOINTS,
106
+ fa as PRUI_DESIGN_TOKENS,
107
+ xa as PRUI_THEMES,
108
+ Ta as PRUI_TOKENS,
109
+ Zr as PagesRegistry,
110
+ so as Popover,
111
+ i as Portal,
112
+ nr as PriceFilter,
113
+ $r as ProfilePage,
114
+ Je as Progress,
115
+ Ea as PruiProvider,
116
+ fo as Radio,
117
+ xo as RadioGroup,
118
+ ea as RegisterPage,
119
+ oa as ResetPasswordPage,
120
+ Ir as Resource,
121
+ br as Route,
122
+ hr as Routes,
123
+ ye as ScrollArea,
124
+ G as Select,
125
+ _ as SelectContent,
126
+ H as SelectItem,
127
+ V as SelectTrigger,
128
+ j as SelectValue,
129
+ O as Separator,
130
+ Cr as SessionTimeout,
131
+ wr as Settings,
132
+ ra as SettingsPage,
133
+ mo as Sheet,
134
+ Br as SidebarNav,
135
+ _e as Skeleton,
136
+ Ke as Spinner,
137
+ Nr as StatRow,
138
+ J as Switch,
139
+ X as Tabs,
140
+ Y as TabsContent,
141
+ Z as TabsList,
142
+ $ as TabsTrigger,
143
+ C as Textarea,
144
+ Wo as TimePanel,
145
+ Xo as TimePicker,
146
+ dr as TimeRangeFilter,
147
+ Yo as TimeRangePicker,
148
+ Oo as Timeline,
149
+ Xe as Toaster,
150
+ ro as Tooltip,
151
+ Bo as TreeView,
152
+ ko as accordionPropsMeta,
153
+ aa as adminSetupPropsMeta,
154
+ qe as alertPropsMeta,
155
+ Er as appPropsMeta,
156
+ Sa as applyTheme,
157
+ ba as applyThemeTokens,
158
+ Or as authShellPropsMeta,
159
+ le as avatarPropsMeta,
160
+ ne as badgePropsMeta,
161
+ Co as breadcrumbPropsMeta,
162
+ A as buttonPropsMeta,
163
+ Go as calendarPropsMeta,
164
+ de as cardPropsMeta,
165
+ co as checkboxPropsMeta,
166
+ ha as clearAppliedTokens,
167
+ r as cn,
168
+ ho as comboboxPropsMeta,
169
+ Ee as computePosition,
170
+ Ce as confirmModal,
171
+ we as confirmModalPropsMeta,
172
+ Mr as dataTablePaginationPropsMeta,
173
+ gr as dataTablePropsMeta,
174
+ cr as dataTableToolbarPropsMeta,
175
+ zo as datePickerPropsMeta,
176
+ Jo as dateRangePickerPropsMeta,
177
+ Oa as defaultDictionary,
178
+ Da as defineTheme,
179
+ be as dialogBodyPropsMeta,
180
+ he as dialogPropsMeta,
181
+ Ye as dismissAllToasts,
182
+ lo as drawerPropsMeta,
183
+ Re as dropdownPropsMeta,
184
+ ta as emptyStatePropsMeta,
185
+ h as endIndex,
186
+ sa as errorPagePropsMeta,
187
+ rr as fileUploadPropsMeta,
188
+ pa as forgotPasswordPagePropsMeta,
189
+ qa as formButtonPropsMeta,
190
+ za as formGroupPropsMeta,
191
+ Ja as formInputPropsMeta,
192
+ Lr as formPropsMeta,
193
+ _o as fromDateKey,
194
+ P as getFocusable,
195
+ Qa as getFormApi,
196
+ La as getPruiDictionary,
197
+ D as homeIndex,
198
+ w as inputPropsMeta,
199
+ Fa as isDarkTheme,
200
+ Ra as isLightTheme,
201
+ m as isTopOverlay,
202
+ L as labelPropsMeta,
203
+ ka as listThemes,
204
+ ia as loginPagePropsMeta,
205
+ Pa as logoutPagePropsMeta,
206
+ Be as modalPropsMeta,
207
+ F as moveIndex,
132
208
  ya as nextTheme,
133
- Sa as notFoundPagePropsMeta,
134
- ca as otpPagePropsMeta,
135
- ha as profilePagePropsMeta,
136
- Ea as readPersistedTheme,
137
- Qa as registerForm,
138
- xa as registerPagePropsMeta,
139
- ba as resetPasswordPagePropsMeta,
140
- r as resolveSurface,
141
- Ba as resolveThemeName,
142
- Je as resourcePropsMeta,
143
- Ha as restoreAppliedTokens,
144
- pe as scrollAreaPropsMeta,
145
- R as selectPropsMeta,
146
- S as separatorPropsMeta,
147
- Qe as sessionTimeoutPropsMeta,
148
- Fa as settingsPagePropsMeta,
149
- We as settingsPropsMeta,
150
- Xe as statRowPropsMeta,
151
- w as switchPropsMeta,
152
- y as tabsPropsMeta,
153
- M as textareaPropsMeta,
154
- Oa as themeMeta,
155
- Ga as themeMode,
156
- Wa as useFormApi,
157
- Ye as useThemeState,
209
+ ma as notFoundPagePropsMeta,
210
+ la as otpPagePropsMeta,
211
+ l as overlayCount,
212
+ n as overlayPropsMeta,
213
+ po as popoverPropsMeta,
214
+ na as profilePagePropsMeta,
215
+ Qe as progressPropsMeta,
216
+ d as pushOverlay,
217
+ To as radioGroupPropsMeta,
218
+ Aa as readPersistedTheme,
219
+ Wa as registerForm,
220
+ da as registerPagePropsMeta,
221
+ M as removeOverlay,
222
+ Ma as resetPasswordPagePropsMeta,
223
+ Ka as resetPruiDictionary,
224
+ t as resolveSurface,
225
+ va as resolveThemeName,
226
+ Kr as resourcePropsMeta,
227
+ Ia as restoreAppliedTokens,
228
+ Ae as scrollAreaPropsMeta,
229
+ q as selectPropsMeta,
230
+ K as separatorPropsMeta,
231
+ Ur as sessionTimeoutPropsMeta,
232
+ Ua as setPruiDictionary,
233
+ ga as settingsPagePropsMeta,
234
+ Gr as settingsPropsMeta,
235
+ no as sheetPropsMeta,
236
+ He as skeletonPropsMeta,
237
+ Ue as spinnerPropsMeta,
238
+ _r as statRowPropsMeta,
239
+ Q as switchPropsMeta,
240
+ ee as tabsPropsMeta,
241
+ B as textareaPropsMeta,
242
+ Ca as themeMeta,
243
+ wa as themeMode,
244
+ Zo as timePickerPropsMeta,
245
+ $o as timeRangePickerPropsMeta,
246
+ Lo as timelinePropsMeta,
247
+ Ho as toDateKey,
248
+ Ze as toast,
249
+ $e as toastPropsMeta,
250
+ eo as toasterPropsMeta,
251
+ ao as tooltipPropsMeta,
252
+ No as treeViewPropsMeta,
253
+ R as typeaheadIndex,
254
+ Oe as useAnchoredPosition,
255
+ Ba as useBreakpointAtLeast,
256
+ g as useEscapeKey,
257
+ c as useFocusTrap,
258
+ Xa as useFormApi,
259
+ u as useInertBackground,
260
+ f as useOverlay,
261
+ x as useOverlayStack,
262
+ Ga as usePruiI18n,
263
+ T as useReducedMotion,
264
+ S as useScrollLock,
265
+ Hr as useThemeState,
158
266
  s as withSurface
159
267
  };