@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.
- package/dist/app/resource.d.ts +44 -1
- package/dist/app.js +1 -1
- package/dist/chunks/auth-shell-DQJ4UmUv.js +1208 -0
- package/dist/chunks/data-table-toolbar-B-5J2Ozl.js +736 -0
- package/dist/core/accordion.d.ts +16 -0
- package/dist/core/accordion.js +108 -0
- package/dist/core/alert.d.ts +20 -0
- package/dist/core/alert.js +63 -0
- package/dist/core/anchor.d.ts +35 -0
- package/dist/core/anchor.js +39 -0
- package/dist/core/breadcrumb.d.ts +30 -0
- package/dist/core/breadcrumb.js +67 -0
- package/dist/core/button.d.ts +8 -1
- package/dist/core/button.js +23 -18
- package/dist/core/calendar.d.ts +29 -0
- package/dist/core/calendar.js +180 -0
- package/dist/core/card.d.ts +5 -1
- package/dist/core/card.js +33 -29
- package/dist/core/checkbox.d.ts +19 -0
- package/dist/core/checkbox.js +55 -0
- package/dist/core/combobox.d.ts +32 -0
- package/dist/core/combobox.js +193 -0
- package/dist/core/date-picker.d.ts +62 -0
- package/dist/core/date-picker.js +314 -0
- package/dist/core/dialog.d.ts +15 -0
- package/dist/core/dialog.js +77 -60
- package/dist/core/drawer.d.ts +34 -0
- package/dist/core/drawer.js +129 -0
- package/dist/core/dropdown.d.ts +8 -4
- package/dist/core/dropdown.js +136 -51
- package/dist/core/file-upload.d.ts +28 -0
- package/dist/core/file-upload.js +111 -0
- package/dist/core/index.d.ts +23 -1
- package/dist/core/list-nav.d.ts +27 -0
- package/dist/core/list-nav.js +51 -0
- package/dist/core/modal.d.ts +14 -5
- package/dist/core/modal.js +163 -156
- package/dist/core/overlay.d.ts +93 -0
- package/dist/core/overlay.js +189 -0
- package/dist/core/popover.d.ts +29 -0
- package/dist/core/popover.js +124 -0
- package/dist/core/progress.d.ts +21 -0
- package/dist/core/progress.js +59 -0
- package/dist/core/radio.d.ts +20 -0
- package/dist/core/radio.js +115 -0
- package/dist/core/select.d.ts +6 -0
- package/dist/core/select.js +187 -98
- package/dist/core/skeleton.d.ts +20 -0
- package/dist/core/skeleton.js +41 -0
- package/dist/core/spinner.d.ts +15 -0
- package/dist/core/spinner.js +41 -0
- package/dist/core/tabs.js +82 -53
- package/dist/core/time-picker.d.ts +68 -0
- package/dist/core/time-picker.js +305 -0
- package/dist/core/timeline.d.ts +22 -0
- package/dist/core/timeline.js +57 -0
- package/dist/core/toast.d.ts +36 -0
- package/dist/core/toast.js +123 -0
- package/dist/core/tooltip.d.ts +23 -0
- package/dist/core/tooltip.js +96 -0
- package/dist/core/tree-view.d.ts +34 -0
- package/dist/core/tree-view.js +133 -0
- package/dist/core.js +160 -62
- package/dist/data-table/data-table.d.ts +22 -1
- package/dist/data-table.js +1 -1
- package/dist/forms/form.d.ts +8 -0
- package/dist/forms.js +213 -200
- package/dist/i18n/index.d.ts +89 -0
- package/dist/i18n.js +105 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +263 -155
- package/dist/prui-utilities.css +1 -1
- package/dist/prui.css +111 -4
- package/dist/theme/base.css +110 -3
- package/dist/theme/index.d.ts +27 -0
- package/dist/theme.js +86 -58
- package/package.json +9 -2
- package/dist/chunks/auth-shell-BG5vx9eG.js +0 -1054
- 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
|
|
2
|
-
import { resolveSurface as
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
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
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
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
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
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
|
};
|