@tetrascience-npm/tetrascience-react-ui 0.5.0-beta.36.1 → 0.5.0-beta.37.1
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/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +77 -0
- package/dist/index.js +144 -141
- package/dist/index.js.map +1 -1
- package/dist/index.tailwind.css +1 -1
- package/dist/utils/colors.cjs +1 -1
- package/dist/utils/colors.cjs.map +1 -1
- package/dist/utils/colors.js +3 -2
- package/dist/utils/colors.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -315,6 +315,12 @@ declare type CarouselProps = {
|
|
|
315
315
|
setApi?: (api: CarouselApi) => void;
|
|
316
316
|
};
|
|
317
317
|
|
|
318
|
+
/**
|
|
319
|
+
* Chart color palette for consistent graph styling
|
|
320
|
+
* Uses the primary graph colors from the design system
|
|
321
|
+
*/
|
|
322
|
+
export declare const CHART_COLORS: readonly [string, string, string, string, string, string, string, string, string, string, string, string];
|
|
323
|
+
|
|
318
324
|
export declare function Checkbox({ className, ...props }: React_2.ComponentProps<typeof Checkbox_2.Root>): JSX.Element;
|
|
319
325
|
|
|
320
326
|
export declare const Chromatogram: default_2.FC<ChromatogramProps>;
|
|
@@ -432,6 +438,75 @@ export declare function CollapsibleContent({ ...props }: React.ComponentProps<ty
|
|
|
432
438
|
|
|
433
439
|
export declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof Collapsible_2.CollapsibleTrigger>): JSX.Element;
|
|
434
440
|
|
|
441
|
+
/**
|
|
442
|
+
* Centralized color tokens that map to CSS variables
|
|
443
|
+
* This provides TypeScript support while leveraging CSS custom properties
|
|
444
|
+
*/
|
|
445
|
+
export declare const COLORS: {
|
|
446
|
+
readonly BLACK_50: string;
|
|
447
|
+
readonly BLACK_100: string;
|
|
448
|
+
readonly BLACK_200: string;
|
|
449
|
+
readonly BLACK_300: string;
|
|
450
|
+
readonly BLACK_400: string;
|
|
451
|
+
readonly BLACK_500: string;
|
|
452
|
+
readonly BLACK_600: string;
|
|
453
|
+
readonly BLACK_700: string;
|
|
454
|
+
readonly BLACK_800: string;
|
|
455
|
+
readonly BLACK_900: string;
|
|
456
|
+
readonly BLACK: string;
|
|
457
|
+
readonly BLACK_OPACITY_20: "rgba(26, 26, 26, 0.2)";
|
|
458
|
+
readonly WHITE_50: string;
|
|
459
|
+
readonly WHITE_100: string;
|
|
460
|
+
readonly WHITE_200: string;
|
|
461
|
+
readonly WHITE_300: string;
|
|
462
|
+
readonly WHITE_400: string;
|
|
463
|
+
readonly WHITE_500: string;
|
|
464
|
+
readonly WHITE_600: string;
|
|
465
|
+
readonly WHITE_700: string;
|
|
466
|
+
readonly WHITE_800: string;
|
|
467
|
+
readonly WHITE_900: string;
|
|
468
|
+
readonly WHITE: string;
|
|
469
|
+
readonly BLUE_50: string;
|
|
470
|
+
readonly BLUE_100: string;
|
|
471
|
+
readonly BLUE_200: string;
|
|
472
|
+
readonly BLUE_300: string;
|
|
473
|
+
readonly BLUE_400: string;
|
|
474
|
+
readonly BLUE_500: string;
|
|
475
|
+
readonly BLUE_600: string;
|
|
476
|
+
readonly BLUE_700: string;
|
|
477
|
+
readonly BLUE_800: string;
|
|
478
|
+
readonly BLUE_900: string;
|
|
479
|
+
readonly BLUE: string;
|
|
480
|
+
readonly GREY_50: string;
|
|
481
|
+
readonly GREY_100: string;
|
|
482
|
+
readonly GREY_200: string;
|
|
483
|
+
readonly GREY_300: string;
|
|
484
|
+
readonly GREY_400: string;
|
|
485
|
+
readonly GREY_500: string;
|
|
486
|
+
readonly GREY_600: string;
|
|
487
|
+
readonly GREY_700: string;
|
|
488
|
+
readonly GREY_800: string;
|
|
489
|
+
readonly GREY_900: string;
|
|
490
|
+
readonly GREY: string;
|
|
491
|
+
readonly ORANGE: string;
|
|
492
|
+
readonly RED: string;
|
|
493
|
+
readonly GREEN: string;
|
|
494
|
+
readonly YELLOW: string;
|
|
495
|
+
readonly PURPLE: string;
|
|
496
|
+
readonly GREEN_BG: string;
|
|
497
|
+
readonly GREEN_SUCCESS: string;
|
|
498
|
+
readonly ORANGE_BG: string;
|
|
499
|
+
readonly ORANGE_CAUTION: string;
|
|
500
|
+
readonly RED_BG: string;
|
|
501
|
+
readonly RED_ERROR: string;
|
|
502
|
+
readonly GRAPH_SECONDARY_BROWN: string;
|
|
503
|
+
readonly GRAPH_SECONDARY_PINK: string;
|
|
504
|
+
readonly GRAPH_SECONDARY_TEAL: string;
|
|
505
|
+
readonly GRAPH_SECONDARY_DARK_BLUE: string;
|
|
506
|
+
readonly GRAPH_SECONDARY_BLACK: string;
|
|
507
|
+
readonly GRAPH_SECONDARY_GREY: string;
|
|
508
|
+
};
|
|
509
|
+
|
|
435
510
|
/**
|
|
436
511
|
* Color scale definition for the heatmap visualization mode.
|
|
437
512
|
*
|
|
@@ -453,6 +528,8 @@ export declare function CollapsibleTrigger({ ...props }: React.ComponentProps<ty
|
|
|
453
528
|
*/
|
|
454
529
|
export declare type ColorScale = string | Array<[number, string]>;
|
|
455
530
|
|
|
531
|
+
export declare type ColorToken = keyof typeof COLORS;
|
|
532
|
+
|
|
456
533
|
export declare const Combobox: typeof Combobox_2.Root;
|
|
457
534
|
|
|
458
535
|
export declare function ComboboxChip({ className, children, showRemove, ...props }: Combobox_2.Chip.Props & {
|
package/dist/index.js
CHANGED
|
@@ -6,77 +6,78 @@ import { buildTdpUrl as x, getTdpBaseUrlFromReferrer as C, navigateToTdpUrl as g
|
|
|
6
6
|
import { AreaGraph as f } from "./components/charts/AreaGraph/AreaGraph.js";
|
|
7
7
|
import { BarGraph as D } from "./components/charts/BarGraph/BarGraph.js";
|
|
8
8
|
import { Boxplot as s } from "./components/charts/Boxplot/Boxplot.js";
|
|
9
|
-
import { Chromatogram as
|
|
9
|
+
import { Chromatogram as A } from "./components/charts/Chromatogram/Chromatogram.js";
|
|
10
10
|
import { ChromatogramChart as h } from "./components/charts/ChromatogramChart/ChromatogramChart.js";
|
|
11
11
|
import { DotPlot as w } from "./components/charts/DotPlot/DotPlot.js";
|
|
12
12
|
import { Heatmap as P } from "./components/charts/Heatmap/Heatmap.js";
|
|
13
|
-
import { Histogram as
|
|
14
|
-
import { LineGraph as
|
|
15
|
-
import { PieChart as
|
|
16
|
-
import { PlateMap as
|
|
13
|
+
import { Histogram as F } from "./components/charts/Histogram/Histogram.js";
|
|
14
|
+
import { LineGraph as H } from "./components/charts/LineGraph/LineGraph.js";
|
|
15
|
+
import { PieChart as O } from "./components/charts/PieChart/PieChart.js";
|
|
16
|
+
import { PlateMap as y } from "./components/charts/PlateMap/PlateMap.js";
|
|
17
17
|
import { ScatterGraph as E } from "./components/charts/ScatterGraph/ScatterGraph.js";
|
|
18
|
-
import { Accordion as z, AccordionContent as K, AccordionItem as
|
|
19
|
-
import { Alert as
|
|
20
|
-
import { AlertDialog as
|
|
18
|
+
import { Accordion as z, AccordionContent as K, AccordionItem as _, AccordionTrigger as j } from "./components/ui/accordion.js";
|
|
19
|
+
import { Alert as J, AlertAction as Q, AlertDescription as W, AlertTitle as X } from "./components/ui/alert.js";
|
|
20
|
+
import { AlertDialog as Z, AlertDialogAction as $, AlertDialogCancel as ee, AlertDialogContent as oe, AlertDialogDescription as re, AlertDialogFooter as te, AlertDialogHeader as ae, AlertDialogMedia as ne, AlertDialogOverlay as ie, AlertDialogPortal as pe, AlertDialogTitle as ue, AlertDialogTrigger as le } from "./components/ui/alert-dialog.js";
|
|
21
21
|
import { AspectRatio as be } from "./components/ui/aspect-ratio.js";
|
|
22
22
|
import { Avatar as xe, AvatarBadge as Ce, AvatarFallback as ge, AvatarGroup as Se, AvatarGroupCount as Te, AvatarImage as fe } from "./components/ui/avatar.js";
|
|
23
23
|
import { Badge as De, badgeVariants as ce } from "./components/ui/badge.js";
|
|
24
|
-
import { Breadcrumb as Ie, BreadcrumbEllipsis as
|
|
25
|
-
import { Button as
|
|
26
|
-
import { ButtonGroup as
|
|
27
|
-
import { Calendar as
|
|
28
|
-
import { Card as ze, CardAction as Ke, CardContent as
|
|
29
|
-
import { Carousel as
|
|
24
|
+
import { Breadcrumb as Ie, BreadcrumbEllipsis as Ae, BreadcrumbItem as Ge, BreadcrumbLink as he, BreadcrumbList as ve, BreadcrumbPage as we, BreadcrumbSeparator as Be } from "./components/ui/breadcrumb.js";
|
|
25
|
+
import { Button as Le, buttonVariants as Fe } from "./components/ui/button.js";
|
|
26
|
+
import { ButtonGroup as He, ButtonGroupSeparator as Ne, ButtonGroupText as Oe, buttonGroupVariants as ke } from "./components/ui/button-group.js";
|
|
27
|
+
import { Calendar as Ve, CalendarDayButton as Ee } from "./components/ui/calendar.js";
|
|
28
|
+
import { Card as ze, CardAction as Ke, CardContent as _e, CardDescription as je, CardFooter as qe, CardHeader as Je, CardTitle as Qe } from "./components/ui/card.js";
|
|
29
|
+
import { Carousel as Xe, CarouselContent as Ye, CarouselItem as Ze, CarouselNext as $e, CarouselPrevious as eo, useCarousel as oo } from "./components/ui/carousel.js";
|
|
30
30
|
import { Checkbox as to } from "./components/ui/checkbox.js";
|
|
31
31
|
import { Collapsible as no, CollapsibleContent as io, CollapsibleTrigger as po } from "./components/ui/collapsible.js";
|
|
32
|
-
import { Combobox as lo, ComboboxChip as mo, ComboboxChips as bo, ComboboxChipsInput as xo, ComboboxCollection as Co, ComboboxContent as go, ComboboxEmpty as So, ComboboxGroup as To, ComboboxInput as fo, ComboboxItem as Mo, ComboboxLabel as Do, ComboboxList as co, ComboboxSeparator as so, ComboboxTrigger as Io, ComboboxValue as
|
|
33
|
-
import { Command as vo, CommandDialog as wo, CommandEmpty as Bo, CommandGroup as Po, CommandInput as
|
|
34
|
-
import { ContextMenu as
|
|
32
|
+
import { Combobox as lo, ComboboxChip as mo, ComboboxChips as bo, ComboboxChipsInput as xo, ComboboxCollection as Co, ComboboxContent as go, ComboboxEmpty as So, ComboboxGroup as To, ComboboxInput as fo, ComboboxItem as Mo, ComboboxLabel as Do, ComboboxList as co, ComboboxSeparator as so, ComboboxTrigger as Io, ComboboxValue as Ao, useComboboxAnchor as Go } from "./components/ui/combobox.js";
|
|
33
|
+
import { Command as vo, CommandDialog as wo, CommandEmpty as Bo, CommandGroup as Po, CommandInput as Lo, CommandItem as Fo, CommandList as Ro, CommandSeparator as Ho, CommandShortcut as No } from "./components/ui/command.js";
|
|
34
|
+
import { ContextMenu as ko, ContextMenuCheckboxItem as yo, ContextMenuContent as Vo, ContextMenuGroup as Eo, ContextMenuItem as Uo, ContextMenuLabel as zo, ContextMenuPortal as Ko, ContextMenuRadioGroup as _o, ContextMenuRadioItem as jo, ContextMenuSeparator as qo, ContextMenuShortcut as Jo, ContextMenuSub as Qo, ContextMenuSubContent as Wo, ContextMenuSubTrigger as Xo, ContextMenuTrigger as Yo } from "./components/ui/context-menu.js";
|
|
35
35
|
import { DataTable as $o, TableToolbar as er, useDataTable as or } from "./components/ui/data-table/data-table.js";
|
|
36
36
|
import { DataTableColumnToggle as tr } from "./components/ui/data-table/data-table-column-toggle.js";
|
|
37
37
|
import { DataTablePagination as nr } from "./components/ui/data-table/data-table-pagination.js";
|
|
38
38
|
import { Dialog as pr, DialogBody as ur, DialogClose as lr, DialogContent as mr, DialogDescription as br, DialogFooter as dr, DialogHeader as xr, DialogOverlay as Cr, DialogPortal as gr, DialogTitle as Sr, DialogTrigger as Tr } from "./components/ui/dialog.js";
|
|
39
|
-
import { Drawer as Mr, DrawerClose as Dr, DrawerContent as cr, DrawerDescription as sr, DrawerFooter as Ir, DrawerHeader as
|
|
40
|
-
import { DropdownMenu as Pr, DropdownMenuCheckboxItem as
|
|
41
|
-
import { Field as
|
|
39
|
+
import { Drawer as Mr, DrawerClose as Dr, DrawerContent as cr, DrawerDescription as sr, DrawerFooter as Ir, DrawerHeader as Ar, DrawerOverlay as Gr, DrawerPortal as hr, DrawerTitle as vr, DrawerTrigger as wr } from "./components/ui/drawer.js";
|
|
40
|
+
import { DropdownMenu as Pr, DropdownMenuCheckboxItem as Lr, DropdownMenuContent as Fr, DropdownMenuGroup as Rr, DropdownMenuItem as Hr, DropdownMenuLabel as Nr, DropdownMenuPortal as Or, DropdownMenuRadioGroup as kr, DropdownMenuRadioItem as yr, DropdownMenuSeparator as Vr, DropdownMenuShortcut as Er, DropdownMenuSub as Ur, DropdownMenuSubContent as zr, DropdownMenuSubTrigger as Kr, DropdownMenuTrigger as _r } from "./components/ui/dropdown-menu.js";
|
|
41
|
+
import { Field as qr, FieldContent as Jr, FieldDescription as Qr, FieldError as Wr, FieldGroup as Xr, FieldLabel as Yr, FieldLegend as Zr, FieldSeparator as $r, FieldSet as et, FieldTitle as ot } from "./components/ui/field.js";
|
|
42
42
|
import { HoverCard as tt, HoverCardContent as at, HoverCardTrigger as nt } from "./components/ui/hover-card.js";
|
|
43
43
|
import { Input as pt } from "./components/ui/input.js";
|
|
44
44
|
import { InputGroup as lt, InputGroupAddon as mt, InputGroupButton as bt, InputGroupInput as dt, InputGroupText as xt, InputGroupTextarea as Ct } from "./components/ui/input-group.js";
|
|
45
45
|
import { InputOTP as St, InputOTPGroup as Tt, InputOTPSeparator as ft, InputOTPSlot as Mt } from "./components/ui/input-otp.js";
|
|
46
|
-
import { Item as ct, ItemActions as st, ItemContent as It, ItemDescription as
|
|
47
|
-
import { Kbd as
|
|
46
|
+
import { Item as ct, ItemActions as st, ItemContent as It, ItemDescription as At, ItemFooter as Gt, ItemGroup as ht, ItemHeader as vt, ItemMedia as wt, ItemSeparator as Bt, ItemTitle as Pt } from "./components/ui/item.js";
|
|
47
|
+
import { Kbd as Ft, KbdGroup as Rt } from "./components/ui/kbd.js";
|
|
48
48
|
import { Label as Nt } from "./components/ui/label.js";
|
|
49
|
-
import { Menubar as
|
|
49
|
+
import { Menubar as kt, MenubarCheckboxItem as yt, MenubarContent as Vt, MenubarGroup as Et, MenubarItem as Ut, MenubarLabel as zt, MenubarMenu as Kt, MenubarPortal as _t, MenubarRadioGroup as jt, MenubarRadioItem as qt, MenubarSeparator as Jt, MenubarShortcut as Qt, MenubarSub as Wt, MenubarSubContent as Xt, MenubarSubTrigger as Yt, MenubarTrigger as Zt } from "./components/ui/menubar.js";
|
|
50
50
|
import { NavigationMenu as ea, NavigationMenuContent as oa, NavigationMenuIndicator as ra, NavigationMenuItem as ta, NavigationMenuLink as aa, NavigationMenuList as na, NavigationMenuTrigger as ia, NavigationMenuViewport as pa, navigationMenuTriggerStyle as ua } from "./components/ui/navigation-menu.js";
|
|
51
51
|
import { RadioGroup as ma, RadioGroupItem as ba } from "./components/ui/radio-group.js";
|
|
52
52
|
import { ResizableHandle as xa, ResizablePanel as Ca, ResizablePanelGroup as ga } from "./components/ui/resizable.js";
|
|
53
53
|
import { ScrollArea as Ta, ScrollBar as fa } from "./components/ui/scroll-area.js";
|
|
54
|
-
import { Select as Da, SelectContent as ca, SelectGroup as sa, SelectItem as Ia, SelectLabel as
|
|
55
|
-
import { Separator as
|
|
56
|
-
import { Sheet as
|
|
57
|
-
import { Sidebar as za, SidebarContent as Ka, SidebarFooter as
|
|
54
|
+
import { Select as Da, SelectContent as ca, SelectGroup as sa, SelectItem as Ia, SelectLabel as Aa, SelectScrollDownButton as Ga, SelectScrollUpButton as ha, SelectSeparator as va, SelectTrigger as wa, SelectValue as Ba } from "./components/ui/select.js";
|
|
55
|
+
import { Separator as La } from "./components/ui/separator.js";
|
|
56
|
+
import { Sheet as Ra, SheetClose as Ha, SheetContent as Na, SheetDescription as Oa, SheetFooter as ka, SheetHeader as ya, SheetTitle as Va, SheetTrigger as Ea } from "./components/ui/sheet.js";
|
|
57
|
+
import { Sidebar as za, SidebarContent as Ka, SidebarFooter as _a, SidebarGroup as ja, SidebarGroupAction as qa, SidebarGroupContent as Ja, SidebarGroupLabel as Qa, SidebarHeader as Wa, SidebarInput as Xa, SidebarInset as Ya, SidebarMenu as Za, SidebarMenuAction as $a, SidebarMenuBadge as en, SidebarMenuButton as on, SidebarMenuItem as rn, SidebarMenuSkeleton as tn, SidebarMenuSub as an, SidebarMenuSubButton as nn, SidebarMenuSubItem as pn, SidebarProvider as un, SidebarRail as ln, SidebarSeparator as mn, SidebarTrigger as bn, useSidebar as dn } from "./components/ui/sidebar.js";
|
|
58
58
|
import { Skeleton as Cn } from "./components/ui/skeleton.js";
|
|
59
59
|
import { Slider as Sn } from "./components/ui/slider.js";
|
|
60
60
|
import { Toaster as fn } from "./components/ui/sonner.js";
|
|
61
61
|
import { Spinner as Dn, spinnerVariants as cn } from "./components/ui/spinner.js";
|
|
62
62
|
import { Switch as In } from "./components/ui/switch.js";
|
|
63
|
-
import { Table as
|
|
64
|
-
import { Tabs as
|
|
63
|
+
import { Table as Gn, TableBody as hn, TableCaption as vn, TableCell as wn, TableFooter as Bn, TableHead as Pn, TableHeader as Ln, TableRow as Fn } from "./components/ui/table.js";
|
|
64
|
+
import { Tabs as Hn, TabsContent as Nn, TabsList as On, TabsTrigger as kn, tabsListVariants as yn } from "./components/ui/tabs.js";
|
|
65
65
|
import { Textarea as En } from "./components/ui/textarea.js";
|
|
66
66
|
import { Toggle as zn, toggleVariants as Kn } from "./components/ui/toggle.js";
|
|
67
|
-
import { ToggleGroup as
|
|
68
|
-
import { Tooltip as
|
|
67
|
+
import { ToggleGroup as jn, ToggleGroupItem as qn } from "./components/ui/toggle-group.js";
|
|
68
|
+
import { Tooltip as Qn, TooltipContent as Wn, TooltipProvider as Xn, TooltipTrigger as Yn } from "./components/ui/tooltip.js";
|
|
69
69
|
import { CodeEditor as $n } from "./components/ui/code-editor.js";
|
|
70
70
|
import { TetraScienceIcon as oi } from "./components/ui/tetrascience-icon.js";
|
|
71
|
+
import { CHART_COLORS as ti, COLORS as ai } from "./utils/colors.js";
|
|
71
72
|
export {
|
|
72
73
|
z as Accordion,
|
|
73
74
|
K as AccordionContent,
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
75
|
+
_ as AccordionItem,
|
|
76
|
+
j as AccordionTrigger,
|
|
77
|
+
J as Alert,
|
|
78
|
+
Q as AlertAction,
|
|
79
|
+
W as AlertDescription,
|
|
80
|
+
Z as AlertDialog,
|
|
80
81
|
$ as AlertDialogAction,
|
|
81
82
|
ee as AlertDialogCancel,
|
|
82
83
|
oe as AlertDialogContent,
|
|
@@ -88,7 +89,7 @@ export {
|
|
|
88
89
|
pe as AlertDialogPortal,
|
|
89
90
|
ue as AlertDialogTitle,
|
|
90
91
|
le as AlertDialogTrigger,
|
|
91
|
-
|
|
92
|
+
X as AlertTitle,
|
|
92
93
|
f as AreaGraph,
|
|
93
94
|
be as AspectRatio,
|
|
94
95
|
xe as Avatar,
|
|
@@ -101,32 +102,34 @@ export {
|
|
|
101
102
|
D as BarGraph,
|
|
102
103
|
s as Boxplot,
|
|
103
104
|
Ie as Breadcrumb,
|
|
104
|
-
|
|
105
|
-
|
|
105
|
+
Ae as BreadcrumbEllipsis,
|
|
106
|
+
Ge as BreadcrumbItem,
|
|
106
107
|
he as BreadcrumbLink,
|
|
107
108
|
ve as BreadcrumbList,
|
|
108
109
|
we as BreadcrumbPage,
|
|
109
110
|
Be as BreadcrumbSeparator,
|
|
110
|
-
|
|
111
|
-
|
|
111
|
+
Le as Button,
|
|
112
|
+
He as ButtonGroup,
|
|
112
113
|
Ne as ButtonGroupSeparator,
|
|
113
|
-
|
|
114
|
-
|
|
114
|
+
Oe as ButtonGroupText,
|
|
115
|
+
ti as CHART_COLORS,
|
|
116
|
+
ai as COLORS,
|
|
117
|
+
Ve as Calendar,
|
|
115
118
|
Ee as CalendarDayButton,
|
|
116
119
|
ze as Card,
|
|
117
120
|
Ke as CardAction,
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
121
|
+
_e as CardContent,
|
|
122
|
+
je as CardDescription,
|
|
123
|
+
qe as CardFooter,
|
|
124
|
+
Je as CardHeader,
|
|
125
|
+
Qe as CardTitle,
|
|
126
|
+
Xe as Carousel,
|
|
127
|
+
Ye as CarouselContent,
|
|
128
|
+
Ze as CarouselItem,
|
|
126
129
|
$e as CarouselNext,
|
|
127
130
|
eo as CarouselPrevious,
|
|
128
131
|
to as Checkbox,
|
|
129
|
-
|
|
132
|
+
A as Chromatogram,
|
|
130
133
|
h as ChromatogramChart,
|
|
131
134
|
$n as CodeEditor,
|
|
132
135
|
no as Collapsible,
|
|
@@ -146,31 +149,31 @@ export {
|
|
|
146
149
|
co as ComboboxList,
|
|
147
150
|
so as ComboboxSeparator,
|
|
148
151
|
Io as ComboboxTrigger,
|
|
149
|
-
|
|
152
|
+
Ao as ComboboxValue,
|
|
150
153
|
vo as Command,
|
|
151
154
|
wo as CommandDialog,
|
|
152
155
|
Bo as CommandEmpty,
|
|
153
156
|
Po as CommandGroup,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
157
|
+
Lo as CommandInput,
|
|
158
|
+
Fo as CommandItem,
|
|
159
|
+
Ro as CommandList,
|
|
160
|
+
Ho as CommandSeparator,
|
|
158
161
|
No as CommandShortcut,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
+
ko as ContextMenu,
|
|
163
|
+
yo as ContextMenuCheckboxItem,
|
|
164
|
+
Vo as ContextMenuContent,
|
|
162
165
|
Eo as ContextMenuGroup,
|
|
163
166
|
Uo as ContextMenuItem,
|
|
164
167
|
zo as ContextMenuLabel,
|
|
165
168
|
Ko as ContextMenuPortal,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
169
|
+
_o as ContextMenuRadioGroup,
|
|
170
|
+
jo as ContextMenuRadioItem,
|
|
171
|
+
qo as ContextMenuSeparator,
|
|
172
|
+
Jo as ContextMenuShortcut,
|
|
173
|
+
Qo as ContextMenuSub,
|
|
174
|
+
Wo as ContextMenuSubContent,
|
|
175
|
+
Xo as ContextMenuSubTrigger,
|
|
176
|
+
Yo as ContextMenuTrigger,
|
|
174
177
|
$o as DataTable,
|
|
175
178
|
tr as DataTableColumnToggle,
|
|
176
179
|
nr as DataTablePagination,
|
|
@@ -191,38 +194,38 @@ export {
|
|
|
191
194
|
cr as DrawerContent,
|
|
192
195
|
sr as DrawerDescription,
|
|
193
196
|
Ir as DrawerFooter,
|
|
194
|
-
|
|
195
|
-
|
|
197
|
+
Ar as DrawerHeader,
|
|
198
|
+
Gr as DrawerOverlay,
|
|
196
199
|
hr as DrawerPortal,
|
|
197
200
|
vr as DrawerTitle,
|
|
198
201
|
wr as DrawerTrigger,
|
|
199
202
|
Pr as DropdownMenu,
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
203
|
+
Lr as DropdownMenuCheckboxItem,
|
|
204
|
+
Fr as DropdownMenuContent,
|
|
205
|
+
Rr as DropdownMenuGroup,
|
|
206
|
+
Hr as DropdownMenuItem,
|
|
204
207
|
Nr as DropdownMenuLabel,
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
208
|
+
Or as DropdownMenuPortal,
|
|
209
|
+
kr as DropdownMenuRadioGroup,
|
|
210
|
+
yr as DropdownMenuRadioItem,
|
|
211
|
+
Vr as DropdownMenuSeparator,
|
|
209
212
|
Er as DropdownMenuShortcut,
|
|
210
213
|
Ur as DropdownMenuSub,
|
|
211
214
|
zr as DropdownMenuSubContent,
|
|
212
215
|
Kr as DropdownMenuSubTrigger,
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
216
|
+
_r as DropdownMenuTrigger,
|
|
217
|
+
qr as Field,
|
|
218
|
+
Jr as FieldContent,
|
|
219
|
+
Qr as FieldDescription,
|
|
220
|
+
Wr as FieldError,
|
|
221
|
+
Xr as FieldGroup,
|
|
222
|
+
Yr as FieldLabel,
|
|
223
|
+
Zr as FieldLegend,
|
|
221
224
|
$r as FieldSeparator,
|
|
222
225
|
et as FieldSet,
|
|
223
226
|
ot as FieldTitle,
|
|
224
227
|
P as Heatmap,
|
|
225
|
-
|
|
228
|
+
F as Histogram,
|
|
226
229
|
tt as HoverCard,
|
|
227
230
|
at as HoverCardContent,
|
|
228
231
|
nt as HoverCardTrigger,
|
|
@@ -240,33 +243,33 @@ export {
|
|
|
240
243
|
ct as Item,
|
|
241
244
|
st as ItemActions,
|
|
242
245
|
It as ItemContent,
|
|
243
|
-
|
|
244
|
-
|
|
246
|
+
At as ItemDescription,
|
|
247
|
+
Gt as ItemFooter,
|
|
245
248
|
ht as ItemGroup,
|
|
246
249
|
vt as ItemHeader,
|
|
247
250
|
wt as ItemMedia,
|
|
248
251
|
Bt as ItemSeparator,
|
|
249
252
|
Pt as ItemTitle,
|
|
250
|
-
|
|
251
|
-
|
|
253
|
+
Ft as Kbd,
|
|
254
|
+
Rt as KbdGroup,
|
|
252
255
|
Nt as Label,
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
256
|
+
H as LineGraph,
|
|
257
|
+
kt as Menubar,
|
|
258
|
+
yt as MenubarCheckboxItem,
|
|
259
|
+
Vt as MenubarContent,
|
|
257
260
|
Et as MenubarGroup,
|
|
258
261
|
Ut as MenubarItem,
|
|
259
262
|
zt as MenubarLabel,
|
|
260
263
|
Kt as MenubarMenu,
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
264
|
+
_t as MenubarPortal,
|
|
265
|
+
jt as MenubarRadioGroup,
|
|
266
|
+
qt as MenubarRadioItem,
|
|
267
|
+
Jt as MenubarSeparator,
|
|
268
|
+
Qt as MenubarShortcut,
|
|
269
|
+
Wt as MenubarSub,
|
|
270
|
+
Xt as MenubarSubContent,
|
|
271
|
+
Yt as MenubarSubTrigger,
|
|
272
|
+
Zt as MenubarTrigger,
|
|
270
273
|
ea as NavigationMenu,
|
|
271
274
|
oa as NavigationMenuContent,
|
|
272
275
|
ra as NavigationMenuIndicator,
|
|
@@ -275,8 +278,8 @@ export {
|
|
|
275
278
|
na as NavigationMenuList,
|
|
276
279
|
ia as NavigationMenuTrigger,
|
|
277
280
|
pa as NavigationMenuViewport,
|
|
278
|
-
|
|
279
|
-
|
|
281
|
+
O as PieChart,
|
|
282
|
+
y as PlateMap,
|
|
280
283
|
ma as RadioGroup,
|
|
281
284
|
ba as RadioGroupItem,
|
|
282
285
|
xa as ResizableHandle,
|
|
@@ -289,32 +292,32 @@ export {
|
|
|
289
292
|
ca as SelectContent,
|
|
290
293
|
sa as SelectGroup,
|
|
291
294
|
Ia as SelectItem,
|
|
292
|
-
|
|
293
|
-
|
|
295
|
+
Aa as SelectLabel,
|
|
296
|
+
Ga as SelectScrollDownButton,
|
|
294
297
|
ha as SelectScrollUpButton,
|
|
295
298
|
va as SelectSeparator,
|
|
296
299
|
wa as SelectTrigger,
|
|
297
300
|
Ba as SelectValue,
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
+
La as Separator,
|
|
302
|
+
Ra as Sheet,
|
|
303
|
+
Ha as SheetClose,
|
|
301
304
|
Na as SheetContent,
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
305
|
+
Oa as SheetDescription,
|
|
306
|
+
ka as SheetFooter,
|
|
307
|
+
ya as SheetHeader,
|
|
308
|
+
Va as SheetTitle,
|
|
306
309
|
Ea as SheetTrigger,
|
|
307
310
|
za as Sidebar,
|
|
308
311
|
Ka as SidebarContent,
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
312
|
+
_a as SidebarFooter,
|
|
313
|
+
ja as SidebarGroup,
|
|
314
|
+
qa as SidebarGroupAction,
|
|
315
|
+
Ja as SidebarGroupContent,
|
|
316
|
+
Qa as SidebarGroupLabel,
|
|
317
|
+
Wa as SidebarHeader,
|
|
318
|
+
Xa as SidebarInput,
|
|
319
|
+
Ya as SidebarInset,
|
|
320
|
+
Za as SidebarMenu,
|
|
318
321
|
$a as SidebarMenuAction,
|
|
319
322
|
en as SidebarMenuBadge,
|
|
320
323
|
on as SidebarMenuButton,
|
|
@@ -332,19 +335,19 @@ export {
|
|
|
332
335
|
Dn as Spinner,
|
|
333
336
|
In as Switch,
|
|
334
337
|
p as TDPLink,
|
|
335
|
-
|
|
338
|
+
Gn as Table,
|
|
336
339
|
hn as TableBody,
|
|
337
340
|
vn as TableCaption,
|
|
338
341
|
wn as TableCell,
|
|
339
342
|
Bn as TableFooter,
|
|
340
343
|
Pn as TableHead,
|
|
341
|
-
|
|
342
|
-
|
|
344
|
+
Ln as TableHeader,
|
|
345
|
+
Fn as TableRow,
|
|
343
346
|
er as TableToolbar,
|
|
344
|
-
|
|
347
|
+
Hn as Tabs,
|
|
345
348
|
Nn as TabsContent,
|
|
346
|
-
|
|
347
|
-
|
|
349
|
+
On as TabsList,
|
|
350
|
+
kn as TabsTrigger,
|
|
348
351
|
u as TdpNavigationContext,
|
|
349
352
|
l as TdpNavigationProvider,
|
|
350
353
|
t as TdpSearch,
|
|
@@ -352,25 +355,25 @@ export {
|
|
|
352
355
|
En as Textarea,
|
|
353
356
|
fn as Toaster,
|
|
354
357
|
zn as Toggle,
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
358
|
+
jn as ToggleGroup,
|
|
359
|
+
qn as ToggleGroupItem,
|
|
360
|
+
Qn as Tooltip,
|
|
361
|
+
Wn as TooltipContent,
|
|
362
|
+
Xn as TooltipProvider,
|
|
363
|
+
Yn as TooltipTrigger,
|
|
361
364
|
ce as badgeVariants,
|
|
362
365
|
x as buildTdpUrl,
|
|
363
|
-
|
|
364
|
-
|
|
366
|
+
ke as buttonGroupVariants,
|
|
367
|
+
Fe as buttonVariants,
|
|
365
368
|
C as getTdpBaseUrlFromReferrer,
|
|
366
369
|
g as navigateToTdpUrl,
|
|
367
370
|
ua as navigationMenuTriggerStyle,
|
|
368
371
|
cn as spinnerVariants,
|
|
369
|
-
|
|
372
|
+
yn as tabsListVariants,
|
|
370
373
|
S as tdpPaths,
|
|
371
374
|
Kn as toggleVariants,
|
|
372
375
|
oo as useCarousel,
|
|
373
|
-
|
|
376
|
+
Go as useComboboxAnchor,
|
|
374
377
|
or as useDataTable,
|
|
375
378
|
n as useSearch,
|
|
376
379
|
dn as useSidebar,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|