@burdenoff/fe-libs 2026.623.4 → 2026.623.6
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/shared/hooks/index.d.ts +1 -0
- package/dist/shared/hooks/index.d.ts.map +1 -1
- package/dist/shared/hooks/useExclusiveMenu.d.ts +2 -0
- package/dist/shared/hooks/useExclusiveMenu.d.ts.map +1 -0
- package/dist/shared/hooks/useExclusiveMenu.js +19 -0
- package/dist/shared/hooks/usePagination.d.ts +20 -0
- package/dist/shared/hooks/usePagination.d.ts.map +1 -0
- package/dist/shared/hooks/usePagination.js +29 -0
- package/dist/shared/motion/variants.d.ts +1 -8
- package/dist/shared/motion/variants.d.ts.map +1 -1
- package/dist/shared/motion/variants.js +2 -9
- package/dist/shared/pages/NotFoundPage.d.ts +23 -0
- package/dist/shared/pages/NotFoundPage.d.ts.map +1 -0
- package/dist/shared/pages/NotFoundPage.js +68 -0
- package/dist/shared/pages/index.d.ts +2 -0
- package/dist/shared/pages/index.d.ts.map +1 -1
- package/dist/shared/tours/TourTrigger.d.ts.map +1 -1
- package/dist/shared/tours/TourTrigger.js +95 -92
- package/dist/shared-hooks.js +32 -31
- package/dist/shared-pages.js +2 -1
- package/dist/shared.js +108 -107
- package/dist/ui/entity-id-modal.d.ts +35 -0
- package/dist/ui/entity-id-modal.d.ts.map +1 -0
- package/dist/ui/entity-id-modal.js +88 -0
- package/dist/ui/index.d.ts +2 -0
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/pagination.d.ts +15 -0
- package/dist/ui/pagination.d.ts.map +1 -0
- package/dist/ui/pagination.js +86 -0
- package/dist/ui/responsive-dialog.js +13 -13
- package/dist/ui.js +34 -32
- package/package.json +1 -1
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { Dialog as e, DialogClose as t, DialogContent as n, DialogDescription as r, DialogFooter as i, DialogHeader as a, DialogTitle as o, DialogTrigger as s } from "./dialog.js";
|
|
2
|
+
import { BottomSheet as c, BottomSheetClose as l, BottomSheetContent as u, BottomSheetDescription as d, BottomSheetFooter as f, BottomSheetHeader as p, BottomSheetTitle as m, BottomSheetTrigger as h } from "./bottom-sheet.js";
|
|
3
|
+
import { useMediaQuery as g } from "../shared/hooks/useMediaQuery.js";
|
|
4
4
|
import "react";
|
|
5
5
|
import { jsx as _ } from "react/jsx-runtime";
|
|
6
6
|
//#region src/ui/responsive-dialog.tsx
|
|
7
7
|
function v() {
|
|
8
|
-
return
|
|
8
|
+
return g("(max-width: 767px)");
|
|
9
9
|
}
|
|
10
10
|
function y(t) {
|
|
11
|
-
return v() ? /* @__PURE__ */ _(
|
|
11
|
+
return v() ? /* @__PURE__ */ _(c, { ...t }) : /* @__PURE__ */ _(e, { ...t });
|
|
12
12
|
}
|
|
13
13
|
function b(e) {
|
|
14
|
-
return v() ? /* @__PURE__ */ _(
|
|
14
|
+
return v() ? /* @__PURE__ */ _(h, { ...e }) : /* @__PURE__ */ _(s, { ...e });
|
|
15
15
|
}
|
|
16
16
|
function x(e) {
|
|
17
|
-
return v() ? /* @__PURE__ */ _(
|
|
17
|
+
return v() ? /* @__PURE__ */ _(l, { ...e }) : /* @__PURE__ */ _(t, { ...e });
|
|
18
18
|
}
|
|
19
19
|
function S({ showHandle: e = !0, ...t }) {
|
|
20
|
-
return v() ? /* @__PURE__ */ _(
|
|
20
|
+
return v() ? /* @__PURE__ */ _(u, {
|
|
21
21
|
showHandle: e,
|
|
22
22
|
...t
|
|
23
|
-
}) : /* @__PURE__ */ _(
|
|
23
|
+
}) : /* @__PURE__ */ _(n, { ...t });
|
|
24
24
|
}
|
|
25
25
|
function C(e) {
|
|
26
|
-
return v() ? /* @__PURE__ */ _(
|
|
26
|
+
return v() ? /* @__PURE__ */ _(p, { ...e }) : /* @__PURE__ */ _(a, { ...e });
|
|
27
27
|
}
|
|
28
28
|
function w(e) {
|
|
29
|
-
return v() ? /* @__PURE__ */ _(
|
|
29
|
+
return v() ? /* @__PURE__ */ _(f, { ...e }) : /* @__PURE__ */ _(i, { ...e });
|
|
30
30
|
}
|
|
31
31
|
function T(e) {
|
|
32
|
-
return v() ? /* @__PURE__ */ _(
|
|
32
|
+
return v() ? /* @__PURE__ */ _(m, { ...e }) : /* @__PURE__ */ _(o, { ...e });
|
|
33
33
|
}
|
|
34
34
|
function E(e) {
|
|
35
|
-
return v() ? /* @__PURE__ */ _(
|
|
35
|
+
return v() ? /* @__PURE__ */ _(d, { ...e }) : /* @__PURE__ */ _(r, { ...e });
|
|
36
36
|
}
|
|
37
37
|
//#endregion
|
|
38
38
|
export { y as ResponsiveDialog, x as ResponsiveDialogClose, S as ResponsiveDialogContent, E as ResponsiveDialogDescription, w as ResponsiveDialogFooter, C as ResponsiveDialogHeader, T as ResponsiveDialogTitle, b as ResponsiveDialogTrigger };
|
package/dist/ui.js
CHANGED
|
@@ -1,33 +1,35 @@
|
|
|
1
1
|
import { Accordion as e, AccordionContent as t, AccordionItem as n, AccordionTrigger as r } from "./ui/accordion.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
|
|
2
|
+
import { Dialog as i, DialogClose as a, DialogContent as o, DialogDescription as s, DialogFooter as c, DialogHeader as l, DialogOverlay as u, DialogPortal as d, DialogTitle as f, DialogTrigger as p } from "./ui/dialog.js";
|
|
3
|
+
import { EntityIdModal as m, useEntityIdModal as h } from "./ui/entity-id-modal.js";
|
|
4
|
+
import { OptionalFields as g } from "./ui/optional-fields.js";
|
|
5
|
+
import { BottomSheet as _, BottomSheetClose as v, BottomSheetContent as y, BottomSheetDescription as b, BottomSheetFooter as x, BottomSheetHeader as S, BottomSheetTitle as C, BottomSheetTrigger as w } from "./ui/bottom-sheet.js";
|
|
6
|
+
import { ResponsiveDialog as T, ResponsiveDialogClose as E, ResponsiveDialogContent as D, ResponsiveDialogDescription as O, ResponsiveDialogFooter as k, ResponsiveDialogHeader as A, ResponsiveDialogTitle as j, ResponsiveDialogTrigger as M } from "./ui/responsive-dialog.js";
|
|
7
|
+
import { Table as N, TableBody as P, TableCaption as F, TableCell as I, TableFooter as L, TableHead as R, TableHeader as z, TableRow as B } from "./ui/table.js";
|
|
8
|
+
import { ResponsiveTable as V } from "./ui/responsive-table.js";
|
|
9
|
+
import { Button as H, buttonVariants as U } from "./ui/button.js";
|
|
10
|
+
import { Select as W, SelectContent as G, SelectGroup as K, SelectItem as q, SelectLabel as J, SelectScrollDownButton as Y, SelectScrollUpButton as X, SelectSeparator as Z, SelectTrigger as Q, SelectValue as $ } from "./ui/select.js";
|
|
11
|
+
import { Pagination as ee } from "./ui/pagination.js";
|
|
12
|
+
import { Stepper as te } from "./ui/stepper.js";
|
|
13
|
+
import { ResponsiveStack as ne } from "./ui/responsive-stack.js";
|
|
14
|
+
import { EmptyState as re } from "./ui/empty-state.js";
|
|
15
|
+
import { AlertDialog as ie, AlertDialogAction as ae, AlertDialogCancel as oe, AlertDialogContent as se, AlertDialogDescription as ce, AlertDialogFooter as le, AlertDialogHeader as ue, AlertDialogOverlay as de, AlertDialogPortal as fe, AlertDialogTitle as pe, AlertDialogTrigger as me } from "./ui/alert-dialog.js";
|
|
16
|
+
import { Badge as he, badgeVariants as ge } from "./ui/badge.js";
|
|
17
|
+
import { Card as _e, CardContent as ve, CardDescription as ye, CardFooter as be, CardHeader as xe, CardTitle as Se } from "./ui/card.js";
|
|
18
|
+
import { Checkbox as Ce } from "./ui/checkbox.js";
|
|
19
|
+
import { Command as we, CommandDialog as Te, CommandEmpty as Ee, CommandGroup as De, CommandInput as Oe, CommandItem as ke, CommandList as Ae, CommandSeparator as je, CommandShortcut as Me } from "./ui/command.js";
|
|
20
|
+
import { DropdownMenu as Ne, DropdownMenuCheckboxItem as Pe, DropdownMenuContent as Fe, DropdownMenuGroup as Ie, DropdownMenuItem as Le, DropdownMenuLabel as Re, DropdownMenuPortal as ze, DropdownMenuRadioGroup as Be, DropdownMenuRadioItem as Ve, DropdownMenuSeparator as He, DropdownMenuShortcut as Ue, DropdownMenuSub as We, DropdownMenuSubContent as Ge, DropdownMenuSubTrigger as Ke, DropdownMenuTrigger as qe } from "./ui/dropdown-menu.js";
|
|
21
|
+
import { Input as Je } from "./ui/input.js";
|
|
22
|
+
import { Label as Ye } from "./ui/label.js";
|
|
23
|
+
import { Popover as Xe, PopoverAnchor as Ze, PopoverContent as Qe, PopoverTrigger as $e } from "./ui/popover.js";
|
|
24
|
+
import { ScrollArea as et, ScrollBar as tt } from "./ui/scroll-area.js";
|
|
25
|
+
import { Separator as nt } from "./ui/separator.js";
|
|
26
|
+
import { Sheet as rt, SheetClose as it, SheetContent as at, SheetDescription as ot, SheetFooter as st, SheetHeader as ct, SheetTitle as lt, SheetTrigger as ut } from "./ui/sheet.js";
|
|
27
|
+
import { Skeleton as dt } from "./ui/skeleton.js";
|
|
28
|
+
import { Toaster as ft } from "./ui/sonner.js";
|
|
29
|
+
import { Spinner as pt } from "./ui/spinner.js";
|
|
30
|
+
import { Switch as mt } from "./ui/switch.js";
|
|
31
|
+
import { Tabs as ht, TabsContent as gt, TabsList as _t, TabsTrigger as vt } from "./ui/tabs.js";
|
|
32
|
+
import { Textarea as yt } from "./ui/textarea.js";
|
|
33
|
+
import { Tooltip as bt, TooltipContent as xt, TooltipProvider as St, TooltipTrigger as Ct } from "./ui/tooltip.js";
|
|
34
|
+
import { PageContainer as wt } from "./ui/page-container.js";
|
|
35
|
+
export { e as Accordion, t as AccordionContent, n as AccordionItem, r as AccordionTrigger, ie as AlertDialog, ae as AlertDialogAction, oe as AlertDialogCancel, se as AlertDialogContent, ce as AlertDialogDescription, le as AlertDialogFooter, ue as AlertDialogHeader, de as AlertDialogOverlay, fe as AlertDialogPortal, pe as AlertDialogTitle, me as AlertDialogTrigger, he as Badge, _ as BottomSheet, v as BottomSheetClose, y as BottomSheetContent, b as BottomSheetDescription, x as BottomSheetFooter, S as BottomSheetHeader, C as BottomSheetTitle, w as BottomSheetTrigger, H as Button, _e as Card, ve as CardContent, ye as CardDescription, be as CardFooter, xe as CardHeader, Se as CardTitle, Ce as Checkbox, we as Command, Te as CommandDialog, Ee as CommandEmpty, De as CommandGroup, Oe as CommandInput, ke as CommandItem, Ae as CommandList, je as CommandSeparator, Me as CommandShortcut, i as Dialog, a as DialogClose, o as DialogContent, s as DialogDescription, c as DialogFooter, l as DialogHeader, u as DialogOverlay, d as DialogPortal, f as DialogTitle, p as DialogTrigger, Ne as DropdownMenu, Pe as DropdownMenuCheckboxItem, Fe as DropdownMenuContent, Ie as DropdownMenuGroup, Le as DropdownMenuItem, Re as DropdownMenuLabel, ze as DropdownMenuPortal, Be as DropdownMenuRadioGroup, Ve as DropdownMenuRadioItem, He as DropdownMenuSeparator, Ue as DropdownMenuShortcut, We as DropdownMenuSub, Ge as DropdownMenuSubContent, Ke as DropdownMenuSubTrigger, qe as DropdownMenuTrigger, re as EmptyState, m as EntityIdModal, Je as Input, Ye as Label, g as OptionalFields, wt as PageContainer, ee as Pagination, Xe as Popover, Ze as PopoverAnchor, Qe as PopoverContent, $e as PopoverTrigger, T as ResponsiveDialog, E as ResponsiveDialogClose, D as ResponsiveDialogContent, O as ResponsiveDialogDescription, k as ResponsiveDialogFooter, A as ResponsiveDialogHeader, j as ResponsiveDialogTitle, M as ResponsiveDialogTrigger, ne as ResponsiveStack, V as ResponsiveTable, et as ScrollArea, tt as ScrollBar, W as Select, G as SelectContent, K as SelectGroup, q as SelectItem, J as SelectLabel, Y as SelectScrollDownButton, X as SelectScrollUpButton, Z as SelectSeparator, Q as SelectTrigger, $ as SelectValue, nt as Separator, rt as Sheet, it as SheetClose, at as SheetContent, ot as SheetDescription, st as SheetFooter, ct as SheetHeader, lt as SheetTitle, ut as SheetTrigger, dt as Skeleton, pt as Spinner, te as Stepper, mt as Switch, N as Table, P as TableBody, F as TableCaption, I as TableCell, L as TableFooter, R as TableHead, z as TableHeader, B as TableRow, ht as Tabs, gt as TabsContent, _t as TabsList, vt as TabsTrigger, yt as Textarea, ft as Toaster, bt as Tooltip, xt as TooltipContent, St as TooltipProvider, Ct as TooltipTrigger, ge as badgeVariants, U as buttonVariants, h as useEntityIdModal };
|