laif-ds 0.2.30 → 0.2.32
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/_virtual/index2.js +2 -5
- package/dist/_virtual/index3.js +5 -2
- package/dist/_virtual/index6.js +2 -2
- package/dist/_virtual/index7.js +2 -2
- package/dist/_virtual/warning.js +8 -0
- package/dist/components/ui/app-radio-group.js +115 -0
- package/dist/components/ui/file-previewer.js +46 -36
- package/dist/components/ui/radio-group.js +39 -24
- package/dist/components/ui/secure-pdf-viewer.js +115 -0
- package/dist/components/ui/textarea.js +16 -15
- package/dist/index.d.ts +61 -2
- package/dist/index.js +159 -155
- package/dist/laif-ds.css +1 -1
- package/dist/node_modules/dequal/dist/index.js +56 -0
- package/dist/node_modules/eventemitter3/index.js +1 -1
- package/dist/node_modules/eventemitter3/index2.js +1 -1
- package/dist/node_modules/make-cancellable-promise/dist/index.js +15 -0
- package/dist/node_modules/make-event-props/dist/index.js +114 -0
- package/dist/node_modules/merge-refs/dist/index.js +19 -0
- package/dist/node_modules/react-pdf/dist/Document.js +180 -0
- package/dist/node_modules/react-pdf/dist/DocumentContext.js +6 -0
- package/dist/node_modules/react-pdf/dist/LinkService.js +94 -0
- package/dist/node_modules/react-pdf/dist/Message.js +8 -0
- package/dist/node_modules/react-pdf/dist/Page/AnnotationLayer.js +97 -0
- package/dist/node_modules/react-pdf/dist/Page/Canvas.js +55 -0
- package/dist/node_modules/react-pdf/dist/Page/TextLayer.js +111 -0
- package/dist/node_modules/react-pdf/dist/Page.js +180 -0
- package/dist/node_modules/react-pdf/dist/PageContext.js +6 -0
- package/dist/node_modules/react-pdf/dist/PasswordResponses.js +8 -0
- package/dist/node_modules/react-pdf/dist/StructTree.js +44 -0
- package/dist/node_modules/react-pdf/dist/StructTreeItem.js +14 -0
- package/dist/node_modules/react-pdf/dist/index.js +9 -0
- package/dist/node_modules/react-pdf/dist/shared/constants.js +62 -0
- package/dist/node_modules/react-pdf/dist/shared/hooks/useDocumentContext.js +9 -0
- package/dist/node_modules/react-pdf/dist/shared/hooks/usePageContext.js +9 -0
- package/dist/node_modules/react-pdf/dist/shared/hooks/useResolver.js +20 -0
- package/dist/node_modules/react-pdf/dist/shared/structTreeUtils.js +55 -0
- package/dist/node_modules/react-pdf/dist/shared/utils.js +110 -0
- package/dist/node_modules/react-pdf/node_modules/pdfjs-dist/build/pdf.js +15282 -0
- package/dist/node_modules/recharts/es6/util/Events.js +1 -1
- package/dist/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/node_modules/tiny-invariant/dist/esm/tiny-invariant.js +13 -0
- package/dist/node_modules/use-sync-external-store/shim/index.js +1 -1
- package/dist/node_modules/warning/warning.js +39 -0
- package/dist/styles.v3.css +1 -1
- package/package.json +3 -1
package/dist/index.d.ts
CHANGED
|
@@ -143,14 +143,49 @@ declare interface AppEditorProps {
|
|
|
143
143
|
|
|
144
144
|
declare type AppEditorToolbar = "block-format" | "font-format" | "history";
|
|
145
145
|
|
|
146
|
+
/**
|
|
147
|
+
* @deprecated This component is deprecated. Please use AppSelect component instead.
|
|
148
|
+
*/
|
|
146
149
|
export declare function AppMultipleSelectDropdown({ options, value, onChange, onClear, placeholder, disabled, size, label, labelClassName, emptyMessage, className, searchPlaceholder, searchable, cancelLabel, maxSelectedItems, }: MultipleSelectDropdownProps): JSX.Element;
|
|
147
150
|
|
|
151
|
+
/**
|
|
152
|
+
* @deprecated This interface is deprecated. Please use AppSelect component instead.
|
|
153
|
+
*/
|
|
148
154
|
export declare interface AppMultipleSelectOption {
|
|
149
155
|
value: string;
|
|
150
156
|
label: string;
|
|
151
157
|
disabled?: boolean;
|
|
152
158
|
}
|
|
153
159
|
|
|
160
|
+
export declare function AppRadioGroup({ options, value, defaultValue, onValueChange, label, description, disabled, required, name, orientation, loop, className, wrpClassName, optionClassName, layout, error, }: AppRadioGroupProps): JSX.Element;
|
|
161
|
+
|
|
162
|
+
export declare interface AppRadioGroupOption {
|
|
163
|
+
value: string;
|
|
164
|
+
label: string | React_2.ReactNode;
|
|
165
|
+
description?: string | React_2.ReactNode;
|
|
166
|
+
disabled?: boolean;
|
|
167
|
+
icon?: IconName;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export declare interface AppRadioGroupProps {
|
|
171
|
+
options: AppRadioGroupOption[];
|
|
172
|
+
value?: string;
|
|
173
|
+
defaultValue?: string;
|
|
174
|
+
onValueChange?: (value: string) => void;
|
|
175
|
+
label?: string | React_2.ReactNode;
|
|
176
|
+
description?: string | React_2.ReactNode;
|
|
177
|
+
disabled?: boolean;
|
|
178
|
+
required?: boolean;
|
|
179
|
+
name?: string;
|
|
180
|
+
orientation?: "horizontal" | "vertical";
|
|
181
|
+
loop?: boolean;
|
|
182
|
+
className?: string;
|
|
183
|
+
wrpClassName?: string;
|
|
184
|
+
optionClassName?: string;
|
|
185
|
+
layout?: "default" | "card";
|
|
186
|
+
error?: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
154
189
|
export declare function AppSelect(props: AppSelectProps): JSX.Element;
|
|
155
190
|
|
|
156
191
|
export declare interface AppSelectOption {
|
|
@@ -1412,6 +1447,9 @@ declare interface MessageListProps {
|
|
|
1412
1447
|
|
|
1413
1448
|
declare type MessagePart = TextPart | ReasoningPart | ToolInvocationPart | SourcePart;
|
|
1414
1449
|
|
|
1450
|
+
/**
|
|
1451
|
+
* @deprecated This component is deprecated. Please use AppSelect component instead.
|
|
1452
|
+
*/
|
|
1415
1453
|
declare interface MultipleSelectDropdownProps {
|
|
1416
1454
|
options: AppMultipleSelectOption[];
|
|
1417
1455
|
value: string[];
|
|
@@ -1430,8 +1468,14 @@ declare interface MultipleSelectDropdownProps {
|
|
|
1430
1468
|
cancelLabel?: string;
|
|
1431
1469
|
}
|
|
1432
1470
|
|
|
1471
|
+
/**
|
|
1472
|
+
* @deprecated This component is deprecated. Please use AppSelect component instead.
|
|
1473
|
+
*/
|
|
1433
1474
|
export declare const MultipleSelector: React_2.ForwardRefExoticComponent<MultipleSelectorProps & React_2.RefAttributes<MultipleSelectorRef>>;
|
|
1434
1475
|
|
|
1476
|
+
/**
|
|
1477
|
+
* @deprecated This component is deprecated. Please use AppSelect component instead.
|
|
1478
|
+
*/
|
|
1435
1479
|
declare interface MultipleSelectorProps {
|
|
1436
1480
|
value?: Option_2[];
|
|
1437
1481
|
defaultOptions?: Option_2[];
|
|
@@ -1487,6 +1531,9 @@ declare interface MultipleSelectorProps {
|
|
|
1487
1531
|
hideClearAllButton?: boolean;
|
|
1488
1532
|
}
|
|
1489
1533
|
|
|
1534
|
+
/**
|
|
1535
|
+
* @deprecated This interface is deprecated. Please use AppSelect component instead.
|
|
1536
|
+
*/
|
|
1490
1537
|
export declare interface MultipleSelectorRef {
|
|
1491
1538
|
selectedValue: Option_2[];
|
|
1492
1539
|
input: HTMLInputElement;
|
|
@@ -1564,6 +1611,9 @@ declare type OnBarChangeType<T extends Record<string, unknown> = any> = (barData
|
|
|
1564
1611
|
|
|
1565
1612
|
declare type OnBarDoubleClickType<T extends Record<string, unknown> = any> = (barData: GanttItemDataType<T>) => any;
|
|
1566
1613
|
|
|
1614
|
+
/**
|
|
1615
|
+
* @deprecated This interface is deprecated. Please use AppSelect component instead.
|
|
1616
|
+
*/
|
|
1567
1617
|
declare interface Option_2 {
|
|
1568
1618
|
value: string;
|
|
1569
1619
|
label: string;
|
|
@@ -1637,7 +1687,7 @@ declare interface PromptSuggestionsProps {
|
|
|
1637
1687
|
|
|
1638
1688
|
export declare function RadioGroup({ className, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Root>): JSX.Element;
|
|
1639
1689
|
|
|
1640
|
-
export declare function RadioGroupItem({ className, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Item>): JSX.Element;
|
|
1690
|
+
export declare function RadioGroupItem({ className, disabled, ...props }: React_2.ComponentProps<typeof RadioGroupPrimitive.Item>): JSX.Element;
|
|
1641
1691
|
|
|
1642
1692
|
declare type RawGanttDataType<T = Record<string, unknown>> = {
|
|
1643
1693
|
/**
|
|
@@ -1719,6 +1769,14 @@ export declare function ScrollArea({ className, children, ...props }: React_2.Co
|
|
|
1719
1769
|
|
|
1720
1770
|
export declare function ScrollBar({ className, orientation, ...props }: React_2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): JSX.Element;
|
|
1721
1771
|
|
|
1772
|
+
export declare function SecurePdfViewer({ url, initialPage, className, }: SecurePdfViewerProps): JSX.Element;
|
|
1773
|
+
|
|
1774
|
+
declare interface SecurePdfViewerProps {
|
|
1775
|
+
url: string;
|
|
1776
|
+
initialPage?: number;
|
|
1777
|
+
className?: string;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1722
1780
|
export declare function Select({ size, label, className, labelClassName, ...props }: SelectProps): JSX.Element;
|
|
1723
1781
|
|
|
1724
1782
|
export declare function SelectContent({ className, children, position, ...props }: React_2.ComponentProps<typeof SelectPrimitive.Content>): JSX.Element;
|
|
@@ -1955,7 +2013,8 @@ export declare function TabsList({ className, ...props }: React_2.ComponentProps
|
|
|
1955
2013
|
|
|
1956
2014
|
export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX.Element;
|
|
1957
2015
|
|
|
1958
|
-
export declare function Textarea({ className, label, labelClassName, id, ...props }: React_2.ComponentProps<"textarea"> & {
|
|
2016
|
+
export declare function Textarea({ wrpClassName, className, label, labelClassName, id, ...props }: React_2.ComponentProps<"textarea"> & {
|
|
2017
|
+
wrpClassName?: string;
|
|
1959
2018
|
label?: React_2.ReactNode;
|
|
1960
2019
|
labelClassName?: string;
|
|
1961
2020
|
}): JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -3,17 +3,17 @@ import { default as o } from "./components/ui/gantt/components/Gantt/Gantt.js";
|
|
|
3
3
|
import { AspectRatio as a } from "./components/ui/aspect-ratio.js";
|
|
4
4
|
import { Avatar as i, AvatarFallback as p, AvatarImage as m } from "./components/ui/avatar.js";
|
|
5
5
|
import { Badge as u, badgeVariants as x } from "./components/ui/badge.js";
|
|
6
|
-
import { Button as
|
|
7
|
-
import { Checkbox as
|
|
6
|
+
import { Button as f, buttonVariants as g } from "./components/ui/button.js";
|
|
7
|
+
import { Checkbox as b } from "./components/ui/checkbox.js";
|
|
8
8
|
import { Collapsible as S, CollapsibleContent as M, CollapsibleTrigger as c } from "./components/ui/collapsible.js";
|
|
9
9
|
import { CopyButton as D } from "./components/ui/copy-button.js";
|
|
10
10
|
import { Icon as I } from "./components/ui/icon.js";
|
|
11
11
|
import { Input as h } from "./components/ui/input.js";
|
|
12
12
|
import { InputOTP as F, InputOTPGroup as w, InputOTPSlot as G } from "./components/ui/input-otp.js";
|
|
13
|
-
import { Label as
|
|
13
|
+
import { Label as R } from "./components/ui/label.js";
|
|
14
14
|
import { Progress as H } from "./components/ui/progress.js";
|
|
15
15
|
import { RadioGroup as y, RadioGroupItem as N } from "./components/ui/radio-group.js";
|
|
16
|
-
import { Separator as
|
|
16
|
+
import { Separator as z } from "./components/ui/separator.js";
|
|
17
17
|
import { Skeleton as O } from "./components/ui/skeleton.js";
|
|
18
18
|
import { Switch as W } from "./components/ui/switch.js";
|
|
19
19
|
import { Textarea as q } from "./components/ui/textarea.js";
|
|
@@ -23,74 +23,76 @@ import { TypingIndicator as re } from "./components/ui/typing-indicator.js";
|
|
|
23
23
|
import { Toaster as te } from "./components/ui/toaster.js";
|
|
24
24
|
import { Accordion as ne, AccordionContent as ie, AccordionItem as pe, AccordionTrigger as me } from "./components/ui/accordion.js";
|
|
25
25
|
import { Alert as ue, AlertDescription as xe, AlertTitle as de } from "./components/ui/alert.js";
|
|
26
|
-
import { AlertDialog as
|
|
26
|
+
import { AlertDialog as ge, AlertDialogAction as Ce, AlertDialogCancel as be, AlertDialogContent as se, AlertDialogDescription as Se, AlertDialogFooter as Me, AlertDialogHeader as ce, AlertDialogTitle as Te, AlertDialogTrigger as De } from "./components/ui/alert-dialog.js";
|
|
27
27
|
import { AsyncSelect as Ie } from "./components/ui/async-select.js";
|
|
28
28
|
import { Calendar as he } from "./components/ui/calendar.js";
|
|
29
|
-
import { Card as Fe, CardContent as we, CardDescription as Ge, CardFooter as Le, CardHeader as
|
|
29
|
+
import { Card as Fe, CardContent as we, CardDescription as Ge, CardFooter as Le, CardHeader as Re, CardTitle as Be } from "./components/ui/card.js";
|
|
30
30
|
import { Typo as ke } from "./components/ui/typo.js";
|
|
31
|
-
import { Command as Ne, CommandDialog as
|
|
31
|
+
import { Command as Ne, CommandDialog as Ve, CommandEmpty as ze, CommandGroup as Ee, CommandInput as Oe, CommandItem as Ue, CommandList as We, CommandSeparator as je, CommandShortcut as qe } from "./components/ui/command.js";
|
|
32
32
|
import { ContextMenu as Ke, ContextMenuCheckboxItem as Qe, ContextMenuContent as Xe, ContextMenuGroup as Ye, ContextMenuItem as Ze, ContextMenuLabel as _e, ContextMenuPortal as $e, ContextMenuRadioGroup as er, ContextMenuRadioItem as rr, ContextMenuSeparator as or, ContextMenuShortcut as tr, ContextMenuSub as ar, ContextMenuSubContent as nr, ContextMenuSubTrigger as ir, ContextMenuTrigger as pr } from "./components/ui/context-menu.js";
|
|
33
33
|
import { DatePicker as lr } from "./components/ui/date-picker.js";
|
|
34
34
|
import { InputSelector as xr } from "./components/ui/input-selector.js";
|
|
35
|
-
import { Dialog as
|
|
35
|
+
import { Dialog as fr, DialogContent as gr, DialogDescription as Cr, DialogFooter as br, DialogHeader as sr, DialogTitle as Sr, DialogTrigger as Mr } from "./components/ui/dialog.js";
|
|
36
36
|
import { Drawer as Tr, DrawerContent as Dr, DrawerDescription as Ar, DrawerFooter as Ir, DrawerHeader as Pr, DrawerTitle as hr, DrawerTrigger as vr } from "./components/ui/drawer.js";
|
|
37
|
-
import { Form as wr, FormControl as Gr, FormDescription as Lr, FormField as
|
|
38
|
-
import { HoverCard as
|
|
37
|
+
import { Form as wr, FormControl as Gr, FormDescription as Lr, FormField as Rr, FormItem as Br, FormLabel as Hr, FormMessage as kr, useFormField as yr } from "./components/ui/form.js";
|
|
38
|
+
import { HoverCard as Vr, HoverCardContent as zr, HoverCardTrigger as Er } from "./components/ui/hover-card.js";
|
|
39
39
|
import { Menubar as Ur, MenubarCheckboxItem as Wr, MenubarContent as jr, MenubarGroup as qr, MenubarItem as Jr, MenubarLabel as Kr, MenubarMenu as Qr, MenubarPortal as Xr, MenubarRadioGroup as Yr, MenubarRadioItem as Zr, MenubarSeparator as _r, MenubarShortcut as $r, MenubarSub as eo, MenubarSubContent as ro, MenubarSubTrigger as oo, MenubarTrigger as to } from "./components/ui/menubar.js";
|
|
40
40
|
import { MultipleSelector as no } from "./components/ui/multiple-selector.js";
|
|
41
|
-
import { Pagination as po, PaginationContent as mo, PaginationEllipsis as lo, PaginationItem as uo, PaginationLink as xo, PaginationNext as
|
|
42
|
-
import { Popover as
|
|
41
|
+
import { Pagination as po, PaginationContent as mo, PaginationEllipsis as lo, PaginationItem as uo, PaginationLink as xo, PaginationNext as fo, PaginationPrevious as go } from "./components/ui/pagination.js";
|
|
42
|
+
import { Popover as bo, PopoverContent as so, PopoverTrigger as So } from "./components/ui/popover.js";
|
|
43
43
|
import { PromptSuggestions as co } from "./components/ui/prompt-suggestions.js";
|
|
44
44
|
import { ResizableHandle as Do, ResizablePanel as Ao, ResizablePanelGroup as Io } from "./components/ui/resizable.js";
|
|
45
45
|
import { ScrollArea as ho, ScrollBar as vo } from "./components/ui/scroll-area.js";
|
|
46
|
-
import { Select as wo, SelectContent as Go, SelectGroup as Lo, SelectItem as
|
|
47
|
-
import { Sheet as
|
|
46
|
+
import { Select as wo, SelectContent as Go, SelectGroup as Lo, SelectItem as Ro, SelectLabel as Bo, SelectSeparator as Ho, SelectTrigger as ko, SelectValue as yo } from "./components/ui/select.js";
|
|
47
|
+
import { Sheet as Vo, SheetContent as zo, SheetDescription as Eo, SheetFooter as Oo, SheetHeader as Uo, SheetTitle as Wo, SheetTrigger as jo } from "./components/ui/sheet.js";
|
|
48
48
|
import { Table as Jo, TableBody as Ko, TableCaption as Qo, TableCell as Xo, TableFooter as Yo, TableHead as Zo, TableHeader as _o, TableRow as $o } from "./components/ui/table.js";
|
|
49
49
|
import { Tabs as rt, TabsContent as ot, TabsList as tt, TabsTrigger as at } from "./components/ui/tabs.js";
|
|
50
50
|
import { ToggleGroup as it, ToggleGroupItem as pt } from "./components/ui/toggle-group.js";
|
|
51
|
-
import { Breadcrumb as lt, BreadcrumbEllipsis as ut, BreadcrumbItem as xt, BreadcrumbLink as dt, BreadcrumbList as
|
|
51
|
+
import { Breadcrumb as lt, BreadcrumbEllipsis as ut, BreadcrumbItem as xt, BreadcrumbLink as dt, BreadcrumbList as ft, BreadcrumbPage as gt, BreadcrumbSeparator as Ct } from "./components/ui/breadcrumb.js";
|
|
52
52
|
import { Slider as st } from "./components/ui/slider.js";
|
|
53
53
|
import { CircularProgress as Mt } from "./components/ui/charts/circular.js";
|
|
54
54
|
import { ThemeSwitcher as Tt } from "./components/ui/theme-switcher.js";
|
|
55
55
|
import { DropdownMenu as At, DropdownMenuContent as It, DropdownMenuItem as Pt, DropdownMenuLabel as ht, DropdownMenuSeparator as vt, DropdownMenuTrigger as Ft } from "./components/ui/dropdown-menu.js";
|
|
56
56
|
import { FileUploader as Gt } from "./components/ui/file-uploader.js";
|
|
57
|
-
import { FilePreview as
|
|
57
|
+
import { FilePreview as Rt } from "./components/ui/file-preview.js";
|
|
58
58
|
import { AudioVisualizer as Ht } from "./components/ui/audio-visualizer.js";
|
|
59
|
-
import { Carousel as yt, CarouselContent as Nt, CarouselItem as
|
|
59
|
+
import { Carousel as yt, CarouselContent as Nt, CarouselItem as Vt, CarouselNext as zt, CarouselPrevious as Et } from "./components/ui/carousel.js";
|
|
60
60
|
import { ChartContainer as Ut, ChartLegend as Wt, ChartLegendContent as jt, ChartStyle as qt, ChartTooltip as Jt, ChartTooltipContent as Kt } from "./components/ui/chart.js";
|
|
61
61
|
import { useEditorModal as Xt } from "./components/editor/editor-hooks/use-modal.js";
|
|
62
62
|
import { AppEditor as Zt } from "./components/ui/app-editor.js";
|
|
63
63
|
import { AppMultipleSelectDropdown as $t } from "./components/ui/app-multiple-select-dropdown.js";
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
64
|
+
import { AppRadioGroup as ra } from "./components/ui/app-radio-group.js";
|
|
65
|
+
import { AppSelect as ta } from "./components/ui/app-select.js";
|
|
66
|
+
import { AppSidebar as na } from "./components/ui/app-sidebar.js";
|
|
67
|
+
import { Chat as pa, ChatContainer as ma, ChatForm as la, ChatMessages as ua } from "./components/ui/chat.js";
|
|
68
|
+
import { ChatMessage as da } from "./components/ui/chat-message.js";
|
|
69
|
+
import { Confirmer as ga, confirm as Ca } from "./components/ui/confirmer.js";
|
|
70
|
+
import { FilePreviewer as sa, previewFileModal as Sa, safePreviewFileModal as Ma } from "./components/ui/file-previewer.js";
|
|
71
|
+
import { DataRepeatTypes as Ta } from "./components/ui/gantt/enums/DataRepeatTimes.js";
|
|
72
|
+
import { DragStepSizes as Aa } from "./components/ui/gantt/enums/DragStepSizes.js";
|
|
73
|
+
import { GanttConsts as Pa } from "./components/ui/gantt/constants/GanttConsts.js";
|
|
74
|
+
import { GanttDimensions as va } from "./components/ui/gantt/enums/GanttDimensions.js";
|
|
75
|
+
import { InterruptPrompt as wa } from "./components/ui/interrupt-prompt.js";
|
|
76
|
+
import { MarkdownRenderer as La } from "./components/ui/markdown-renderer.js";
|
|
77
|
+
import { MessageInput as Ba } from "./components/ui/message-input.js";
|
|
78
|
+
import { MessageList as ka } from "./components/ui/message-list.js";
|
|
79
|
+
import { NavigationMenu as Na, NavigationMenuContent as Va, NavigationMenuIndicator as za, NavigationMenuItem as Ea, NavigationMenuLink as Oa, NavigationMenuList as Ua, NavigationMenuTrigger as Wa, NavigationMenuViewport as ja } from "./components/ui/navigation-menu.js";
|
|
80
|
+
import { SecurePdfViewer as Ja } from "./components/ui/secure-pdf-viewer.js";
|
|
81
|
+
import { Sidebar as Qa, SidebarContent as Xa, SidebarFooter as Ya, SidebarGroup as Za, SidebarGroupAction as _a, SidebarGroupContent as $a, SidebarGroupLabel as en, SidebarHeader as rn, SidebarInput as on, SidebarInset as tn, SidebarMenu as an, SidebarMenuAction as nn, SidebarMenuBadge as pn, SidebarMenuButton as mn, SidebarMenuItem as ln, SidebarMenuSkeleton as un, SidebarMenuSub as xn, SidebarMenuSubButton as dn, SidebarMenuSubItem as fn, SidebarProvider as gn, SidebarRail as Cn, SidebarSeparator as bn, SidebarTrigger as sn, useSidebar as Sn } from "./components/ui/sidebar.js";
|
|
82
|
+
import { DataCrossTable as cn } from "./components/ui/tables/data-cross-table/data-cross-table.js";
|
|
83
|
+
import { DataCrossTableButtonsGroup as Dn } from "./components/ui/tables/data-cross-table/data-cross-table-buttons.js";
|
|
84
|
+
import { DataCrossTableProvider as In } from "./components/ui/tables/data-cross-table/data-cross-table-context.js";
|
|
85
|
+
import { DataTable as hn } from "./components/ui/tables/data-table/data-table.js";
|
|
86
|
+
import { ELogicalFilterOperator as Fn } from "./components/ui/tables/data-table/data-table-constants.js";
|
|
87
|
+
import { WeeklyCalendar as Gn } from "./components/ui/weekly-calendar/weekly-calendar.js";
|
|
88
|
+
import { cn as Rn, downloadFile as Bn, hexContrast as Hn, hexToRgba as kn, previewFile as yn, stringToHexColor as Nn } from "./lib/utils.js";
|
|
89
|
+
import { AppStepper as zn } from "./components/ui/app-stepper.js";
|
|
90
|
+
import { useAudioRecording as On } from "./hooks/use-audio-recording.js";
|
|
91
|
+
import { useAutoScroll as Wn } from "./hooks/use-auto-scroll.js";
|
|
92
|
+
import { useAutosizeTextArea as qn } from "./hooks/use-autosize-textarea.js";
|
|
93
|
+
import { useCopyToClipboard as Kn } from "./hooks/use-copy-to-clipboard.js";
|
|
94
|
+
import { useDebounce as Xn } from "./hooks/use-debounce.js";
|
|
95
|
+
import { useIsMobile as Zn } from "./hooks/use-mobile.js";
|
|
94
96
|
export {
|
|
95
97
|
ne as Accordion,
|
|
96
98
|
ie as AccordionContent,
|
|
@@ -98,9 +100,9 @@ export {
|
|
|
98
100
|
me as AccordionTrigger,
|
|
99
101
|
ue as Alert,
|
|
100
102
|
xe as AlertDescription,
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
103
|
+
ge as AlertDialog,
|
|
104
|
+
Ce as AlertDialogAction,
|
|
105
|
+
be as AlertDialogCancel,
|
|
104
106
|
se as AlertDialogContent,
|
|
105
107
|
Se as AlertDialogDescription,
|
|
106
108
|
Me as AlertDialogFooter,
|
|
@@ -110,9 +112,10 @@ export {
|
|
|
110
112
|
de as AlertTitle,
|
|
111
113
|
Zt as AppEditor,
|
|
112
114
|
$t as AppMultipleSelectDropdown,
|
|
113
|
-
ra as
|
|
114
|
-
ta as
|
|
115
|
-
|
|
115
|
+
ra as AppRadioGroup,
|
|
116
|
+
ta as AppSelect,
|
|
117
|
+
na as AppSidebar,
|
|
118
|
+
zn as AppStepper,
|
|
116
119
|
a as AspectRatio,
|
|
117
120
|
Ie as AsyncSelect,
|
|
118
121
|
Ht as AudioVisualizer,
|
|
@@ -124,48 +127,48 @@ export {
|
|
|
124
127
|
ut as BreadcrumbEllipsis,
|
|
125
128
|
xt as BreadcrumbItem,
|
|
126
129
|
dt as BreadcrumbLink,
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
130
|
+
ft as BreadcrumbList,
|
|
131
|
+
gt as BreadcrumbPage,
|
|
132
|
+
Ct as BreadcrumbSeparator,
|
|
133
|
+
f as Button,
|
|
131
134
|
he as Calendar,
|
|
132
135
|
Fe as Card,
|
|
133
136
|
we as CardContent,
|
|
134
137
|
Ge as CardDescription,
|
|
135
138
|
Le as CardFooter,
|
|
136
|
-
|
|
137
|
-
|
|
139
|
+
Re as CardHeader,
|
|
140
|
+
Be as CardTitle,
|
|
138
141
|
yt as Carousel,
|
|
139
142
|
Nt as CarouselContent,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
+
Vt as CarouselItem,
|
|
144
|
+
zt as CarouselNext,
|
|
145
|
+
Et as CarouselPrevious,
|
|
143
146
|
Ut as ChartContainer,
|
|
144
147
|
Wt as ChartLegend,
|
|
145
148
|
jt as ChartLegendContent,
|
|
146
149
|
qt as ChartStyle,
|
|
147
150
|
Jt as ChartTooltip,
|
|
148
151
|
Kt as ChartTooltipContent,
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
152
|
+
pa as Chat,
|
|
153
|
+
ma as ChatContainer,
|
|
154
|
+
la as ChatForm,
|
|
155
|
+
da as ChatMessage,
|
|
156
|
+
ua as ChatMessages,
|
|
157
|
+
b as Checkbox,
|
|
155
158
|
Mt as CircularProgress,
|
|
156
159
|
S as Collapsible,
|
|
157
160
|
M as CollapsibleContent,
|
|
158
161
|
c as CollapsibleTrigger,
|
|
159
162
|
Ne as Command,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
+
Ve as CommandDialog,
|
|
164
|
+
ze as CommandEmpty,
|
|
165
|
+
Ee as CommandGroup,
|
|
163
166
|
Oe as CommandInput,
|
|
164
167
|
Ue as CommandItem,
|
|
165
168
|
We as CommandList,
|
|
166
169
|
je as CommandSeparator,
|
|
167
170
|
qe as CommandShortcut,
|
|
168
|
-
|
|
171
|
+
ga as Confirmer,
|
|
169
172
|
Ke as ContextMenu,
|
|
170
173
|
Qe as ContextMenuCheckboxItem,
|
|
171
174
|
Xe as ContextMenuContent,
|
|
@@ -182,20 +185,20 @@ export {
|
|
|
182
185
|
ir as ContextMenuSubTrigger,
|
|
183
186
|
pr as ContextMenuTrigger,
|
|
184
187
|
D as CopyButton,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
188
|
+
cn as DataCrossTable,
|
|
189
|
+
Dn as DataCrossTableButtonsGroup,
|
|
190
|
+
In as DataCrossTableProvider,
|
|
191
|
+
Ta as DataRepeatTypes,
|
|
192
|
+
hn as DataTable,
|
|
190
193
|
lr as DatePicker,
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
194
|
+
fr as Dialog,
|
|
195
|
+
gr as DialogContent,
|
|
196
|
+
Cr as DialogDescription,
|
|
197
|
+
br as DialogFooter,
|
|
195
198
|
sr as DialogHeader,
|
|
196
199
|
Sr as DialogTitle,
|
|
197
200
|
Mr as DialogTrigger,
|
|
198
|
-
|
|
201
|
+
Aa as DragStepSizes,
|
|
199
202
|
Tr as Drawer,
|
|
200
203
|
Dr as DrawerContent,
|
|
201
204
|
Ar as DrawerDescription,
|
|
@@ -209,32 +212,32 @@ export {
|
|
|
209
212
|
ht as DropdownMenuLabel,
|
|
210
213
|
vt as DropdownMenuSeparator,
|
|
211
214
|
Ft as DropdownMenuTrigger,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
+
Fn as ELogicalFilterOperator,
|
|
216
|
+
Rt as FilePreview,
|
|
217
|
+
sa as FilePreviewer,
|
|
215
218
|
Gt as FileUploader,
|
|
216
219
|
wr as Form,
|
|
217
220
|
Gr as FormControl,
|
|
218
221
|
Lr as FormDescription,
|
|
219
|
-
|
|
220
|
-
|
|
222
|
+
Rr as FormField,
|
|
223
|
+
Br as FormItem,
|
|
221
224
|
Hr as FormLabel,
|
|
222
225
|
kr as FormMessage,
|
|
223
226
|
o as Gantt,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
Pa as GanttConsts,
|
|
228
|
+
va as GanttDimensions,
|
|
229
|
+
Vr as HoverCard,
|
|
230
|
+
zr as HoverCardContent,
|
|
231
|
+
Er as HoverCardTrigger,
|
|
229
232
|
I as Icon,
|
|
230
233
|
h as Input,
|
|
231
234
|
F as InputOTP,
|
|
232
235
|
w as InputOTPGroup,
|
|
233
236
|
G as InputOTPSlot,
|
|
234
237
|
xr as InputSelector,
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
+
wa as InterruptPrompt,
|
|
239
|
+
R as Label,
|
|
240
|
+
La as MarkdownRenderer,
|
|
238
241
|
Ur as Menubar,
|
|
239
242
|
Wr as MenubarCheckboxItem,
|
|
240
243
|
jr as MenubarContent,
|
|
@@ -251,25 +254,25 @@ export {
|
|
|
251
254
|
ro as MenubarSubContent,
|
|
252
255
|
oo as MenubarSubTrigger,
|
|
253
256
|
to as MenubarTrigger,
|
|
254
|
-
|
|
255
|
-
|
|
257
|
+
Ba as MessageInput,
|
|
258
|
+
ka as MessageList,
|
|
256
259
|
no as MultipleSelector,
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
260
|
+
Na as NavigationMenu,
|
|
261
|
+
Va as NavigationMenuContent,
|
|
262
|
+
za as NavigationMenuIndicator,
|
|
263
|
+
Ea as NavigationMenuItem,
|
|
264
|
+
Oa as NavigationMenuLink,
|
|
265
|
+
Ua as NavigationMenuList,
|
|
266
|
+
Wa as NavigationMenuTrigger,
|
|
267
|
+
ja as NavigationMenuViewport,
|
|
265
268
|
po as Pagination,
|
|
266
269
|
mo as PaginationContent,
|
|
267
270
|
lo as PaginationEllipsis,
|
|
268
271
|
uo as PaginationItem,
|
|
269
272
|
xo as PaginationLink,
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
+
fo as PaginationNext,
|
|
274
|
+
go as PaginationPrevious,
|
|
275
|
+
bo as Popover,
|
|
273
276
|
so as PopoverContent,
|
|
274
277
|
So as PopoverTrigger,
|
|
275
278
|
H as Progress,
|
|
@@ -281,45 +284,46 @@ export {
|
|
|
281
284
|
Io as ResizablePanelGroup,
|
|
282
285
|
ho as ScrollArea,
|
|
283
286
|
vo as ScrollBar,
|
|
287
|
+
Ja as SecurePdfViewer,
|
|
284
288
|
wo as Select,
|
|
285
289
|
Go as SelectContent,
|
|
286
290
|
Lo as SelectGroup,
|
|
287
|
-
|
|
288
|
-
|
|
291
|
+
Ro as SelectItem,
|
|
292
|
+
Bo as SelectLabel,
|
|
289
293
|
Ho as SelectSeparator,
|
|
290
294
|
ko as SelectTrigger,
|
|
291
295
|
yo as SelectValue,
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
+
z as Separator,
|
|
297
|
+
Vo as Sheet,
|
|
298
|
+
zo as SheetContent,
|
|
299
|
+
Eo as SheetDescription,
|
|
296
300
|
Oo as SheetFooter,
|
|
297
301
|
Uo as SheetHeader,
|
|
298
302
|
Wo as SheetTitle,
|
|
299
303
|
jo as SheetTrigger,
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
304
|
+
Qa as Sidebar,
|
|
305
|
+
Xa as SidebarContent,
|
|
306
|
+
Ya as SidebarFooter,
|
|
307
|
+
Za as SidebarGroup,
|
|
308
|
+
_a as SidebarGroupAction,
|
|
309
|
+
$a as SidebarGroupContent,
|
|
310
|
+
en as SidebarGroupLabel,
|
|
311
|
+
rn as SidebarHeader,
|
|
312
|
+
on as SidebarInput,
|
|
313
|
+
tn as SidebarInset,
|
|
314
|
+
an as SidebarMenu,
|
|
315
|
+
nn as SidebarMenuAction,
|
|
316
|
+
pn as SidebarMenuBadge,
|
|
317
|
+
mn as SidebarMenuButton,
|
|
318
|
+
ln as SidebarMenuItem,
|
|
319
|
+
un as SidebarMenuSkeleton,
|
|
320
|
+
xn as SidebarMenuSub,
|
|
321
|
+
dn as SidebarMenuSubButton,
|
|
322
|
+
fn as SidebarMenuSubItem,
|
|
323
|
+
gn as SidebarProvider,
|
|
324
|
+
Cn as SidebarRail,
|
|
325
|
+
bn as SidebarSeparator,
|
|
326
|
+
sn as SidebarTrigger,
|
|
323
327
|
O as Skeleton,
|
|
324
328
|
st as Slider,
|
|
325
329
|
W as Switch,
|
|
@@ -347,26 +351,26 @@ export {
|
|
|
347
351
|
$ as TooltipTrigger,
|
|
348
352
|
re as TypingIndicator,
|
|
349
353
|
ke as Typo,
|
|
350
|
-
|
|
354
|
+
Gn as WeeklyCalendar,
|
|
351
355
|
x as badgeVariants,
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
356
|
+
g as buttonVariants,
|
|
357
|
+
Rn as cn,
|
|
358
|
+
Ca as confirm,
|
|
359
|
+
Bn as downloadFile,
|
|
360
|
+
Hn as hexContrast,
|
|
361
|
+
kn as hexToRgba,
|
|
362
|
+
yn as previewFile,
|
|
363
|
+
Sa as previewFileModal,
|
|
364
|
+
Ma as safePreviewFileModal,
|
|
365
|
+
Nn as stringToHexColor,
|
|
362
366
|
Q as toggleVariants,
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
367
|
+
On as useAudioRecording,
|
|
368
|
+
Wn as useAutoScroll,
|
|
369
|
+
qn as useAutosizeTextArea,
|
|
370
|
+
Kn as useCopyToClipboard,
|
|
371
|
+
Xn as useDebounce,
|
|
368
372
|
Xt as useEditorModal,
|
|
369
373
|
yr as useFormField,
|
|
370
|
-
|
|
371
|
-
|
|
374
|
+
Zn as useIsMobile,
|
|
375
|
+
Sn as useSidebar
|
|
372
376
|
};
|
package/dist/laif-ds.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.EditorTheme__code{background-color:transparent;font-family:Menlo,Consolas,Monaco,monospace;display:block;padding:8px 8px 8px 52px;line-height:1.53;font-size:13px;margin:8px 0;overflow-x:auto;border:1px solid #ccc;position:relative;border-radius:8px;tab-size:2}.EditorTheme__code:before{content:attr(data-gutter);position:absolute;background-color:transparent;border-right:1px solid #ccc;left:0;top:0;padding:8px;color:#777;white-space:pre-wrap;text-align:right;min-width:25px}.EditorTheme__table{border-collapse:collapse;border-spacing:0;overflow-y:scroll;overflow-x:scroll;table-layout:fixed;width:fit-content;width:100%;margin:0 25px 30px 0}.EditorTheme__tokenComment{color:#708090}.EditorTheme__tokenPunctuation{color:#999}.EditorTheme__tokenProperty{color:#905}.EditorTheme__tokenSelector{color:#690}.EditorTheme__tokenOperator{color:#9a6e3a}.EditorTheme__tokenAttr{color:#07a}.EditorTheme__tokenVariable{color:#e90}.EditorTheme__tokenFunction{color:#dd4a68}.Collapsible__container{background-color:var(--background);border:1px solid #ccc;border-radius:.5rem;margin-bottom:.5rem}.Collapsible__title{padding:.25rem .25rem .25rem 1rem;position:relative;font-weight:700;outline:none;cursor:pointer;list-style-type:disclosure-closed;list-style-position:inside}.Collapsible__title p{display:inline-flex}.Collapsible__title::marker{color:#d3d3d3}.Collapsible__container[open]>.Collapsible__title{list-style-type:disclosure-open}
|
|
1
|
+
.EditorTheme__code{background-color:transparent;font-family:Menlo,Consolas,Monaco,monospace;display:block;padding:8px 8px 8px 52px;line-height:1.53;font-size:13px;margin:8px 0;overflow-x:auto;border:1px solid #ccc;position:relative;border-radius:8px;tab-size:2}.EditorTheme__code:before{content:attr(data-gutter);position:absolute;background-color:transparent;border-right:1px solid #ccc;left:0;top:0;padding:8px;color:#777;white-space:pre-wrap;text-align:right;min-width:25px}.EditorTheme__table{border-collapse:collapse;border-spacing:0;overflow-y:scroll;overflow-x:scroll;table-layout:fixed;width:fit-content;width:100%;margin:0 25px 30px 0}.EditorTheme__tokenComment{color:#708090}.EditorTheme__tokenPunctuation{color:#999}.EditorTheme__tokenProperty{color:#905}.EditorTheme__tokenSelector{color:#690}.EditorTheme__tokenOperator{color:#9a6e3a}.EditorTheme__tokenAttr{color:#07a}.EditorTheme__tokenVariable{color:#e90}.EditorTheme__tokenFunction{color:#dd4a68}.Collapsible__container{background-color:var(--background);border:1px solid #ccc;border-radius:.5rem;margin-bottom:.5rem}.Collapsible__title{padding:.25rem .25rem .25rem 1rem;position:relative;font-weight:700;outline:none;cursor:pointer;list-style-type:disclosure-closed;list-style-position:inside}.Collapsible__title p{display:inline-flex}.Collapsible__title::marker{color:#d3d3d3}.Collapsible__container[open]>.Collapsible__title{list-style-type:disclosure-open}:root{--react-pdf-annotation-layer: 1;--annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");--input-focus-border-color: Highlight;--input-focus-outline: 1px solid Canvas;--input-unfocused-border-color: transparent;--input-disabled-border-color: transparent;--input-hover-border-color: black;--link-outline: none}@media screen and (forced-colors: active){:root{--input-focus-border-color: CanvasText;--input-unfocused-border-color: ActiveText;--input-disabled-border-color: GrayText;--input-hover-border-color: Highlight;--link-outline: 1.5px solid LinkText}.annotationLayer .textWidgetAnnotation :is(input,textarea):required,.annotationLayer .choiceWidgetAnnotation select:required,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:required{outline:1.5px solid selectedItem}.annotationLayer .linkAnnotation:hover{-webkit-backdrop-filter:invert(100%);backdrop-filter:invert(100%)}}.annotationLayer{position:absolute;top:0;left:0;pointer-events:none;transform-origin:0 0;z-index:3}.annotationLayer[data-main-rotation="90"] .norotate{transform:rotate(270deg) translate(-100%)}.annotationLayer[data-main-rotation="180"] .norotate{transform:rotate(180deg) translate(-100%,-100%)}.annotationLayer[data-main-rotation="270"] .norotate{transform:rotate(90deg) translateY(-100%)}.annotationLayer canvas{position:absolute;width:100%;height:100%}.annotationLayer section{position:absolute;text-align:initial;pointer-events:auto;box-sizing:border-box;margin:0;transform-origin:0 0}.annotationLayer .linkAnnotation{outline:var(--link-outline)}.textLayer.selecting~.annotationLayer section{pointer-events:none}.annotationLayer :is(.linkAnnotation,.buttonWidgetAnnotation.pushButton)>a{position:absolute;font-size:1em;top:0;left:0;width:100%;height:100%}.annotationLayer :is(.linkAnnotation,.buttonWidgetAnnotation.pushButton)>a:hover{opacity:.2;background:#ff0;box-shadow:0 2px 10px #ff0}.annotationLayer .textAnnotation img{position:absolute;cursor:pointer;width:100%;height:100%;top:0;left:0}.annotationLayer .textWidgetAnnotation :is(input,textarea),.annotationLayer .choiceWidgetAnnotation select,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input{background-image:var(--annotation-unfocused-field-background);border:2px solid var(--input-unfocused-border-color);box-sizing:border-box;font:calc(9px * var(--total-scale-factor)) sans-serif;height:100%;margin:0;vertical-align:top;width:100%}.annotationLayer .textWidgetAnnotation :is(input,textarea):required,.annotationLayer .choiceWidgetAnnotation select:required,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:required{outline:1.5px solid red}.annotationLayer .choiceWidgetAnnotation select option{padding:0}.annotationLayer .buttonWidgetAnnotation.radioButton input{border-radius:50%}.annotationLayer .textWidgetAnnotation textarea{resize:none}.annotationLayer .textWidgetAnnotation :is(input,textarea)[disabled],.annotationLayer .choiceWidgetAnnotation select[disabled],.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input[disabled]{background:none;border:2px solid var(--input-disabled-border-color);cursor:not-allowed}.annotationLayer .textWidgetAnnotation :is(input,textarea):hover,.annotationLayer .choiceWidgetAnnotation select:hover,.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input:hover{border:2px solid var(--input-hover-border-color)}.annotationLayer .textWidgetAnnotation :is(input,textarea):hover,.annotationLayer .choiceWidgetAnnotation select:hover,.annotationLayer .buttonWidgetAnnotation.checkBox input:hover{border-radius:2px}.annotationLayer .textWidgetAnnotation :is(input,textarea):focus,.annotationLayer .choiceWidgetAnnotation select:focus{background:none;border:2px solid var(--input-focus-border-color);border-radius:2px;outline:var(--input-focus-outline)}.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) :focus{background-image:none;background-color:transparent}.annotationLayer .buttonWidgetAnnotation.checkBox :focus{border:2px solid var(--input-focus-border-color);border-radius:2px;outline:var(--input-focus-outline)}.annotationLayer .buttonWidgetAnnotation.radioButton :focus{border:2px solid var(--input-focus-border-color);outline:var(--input-focus-outline)}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before{background-color:CanvasText;content:"";display:block;position:absolute}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after{height:80%;left:45%;width:1px}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before{transform:rotate(45deg)}.annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after{transform:rotate(-45deg)}.annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before{border-radius:50%;height:50%;left:30%;top:20%;width:50%}.annotationLayer .textWidgetAnnotation input.comb{font-family:monospace;padding-left:2px;padding-right:0}.annotationLayer .textWidgetAnnotation input.comb:focus{width:103%}.annotationLayer .buttonWidgetAnnotation:is(.checkBox,.radioButton) input{appearance:none}.annotationLayer .popupTriggerArea{height:100%;width:100%}.annotationLayer .fileAttachmentAnnotation .popupTriggerArea{position:absolute}.annotationLayer .popupWrapper{position:absolute;font-size:calc(9px * var(--total-scale-factor));width:100%;min-width:calc(180px * var(--total-scale-factor));pointer-events:none}.annotationLayer .popup{position:absolute;max-width:calc(180px * var(--total-scale-factor));background-color:#ff9;box-shadow:0 calc(2px * var(--total-scale-factor)) calc(5px * var(--total-scale-factor)) #888;border-radius:calc(2px * var(--total-scale-factor));padding:calc(6px * var(--total-scale-factor));margin-left:calc(5px * var(--total-scale-factor));cursor:pointer;font:message-box;white-space:normal;word-wrap:break-word;pointer-events:auto}.annotationLayer .popup>*{font-size:calc(9px * var(--total-scale-factor))}.annotationLayer .popup h1{display:inline-block}.annotationLayer .popupDate{display:inline-block;margin-left:calc(5px * var(--total-scale-factor))}.annotationLayer .popupContent{border-top:1px solid rgba(51,51,51,1);margin-top:calc(2px * var(--total-scale-factor));padding-top:calc(2px * var(--total-scale-factor))}.annotationLayer .richText>*{white-space:pre-wrap;font-size:calc(9px * var(--total-scale-factor))}.annotationLayer .highlightAnnotation,.annotationLayer .underlineAnnotation,.annotationLayer .squigglyAnnotation,.annotationLayer .strikeoutAnnotation,.annotationLayer .freeTextAnnotation,.annotationLayer .lineAnnotation svg line,.annotationLayer .squareAnnotation svg rect,.annotationLayer .circleAnnotation svg ellipse,.annotationLayer .polylineAnnotation svg polyline,.annotationLayer .polygonAnnotation svg polygon,.annotationLayer .caretAnnotation,.annotationLayer .inkAnnotation svg polyline,.annotationLayer .stampAnnotation,.annotationLayer .fileAttachmentAnnotation{cursor:pointer}.annotationLayer section svg{position:absolute;width:100%;height:100%;top:0;left:0}.annotationLayer .annotationTextContent{position:absolute;width:100%;height:100%;opacity:0;color:transparent;-webkit-user-select:none;user-select:none;pointer-events:none}.annotationLayer .annotationTextContent span{width:100%;display:inline-block}:root{--react-pdf-text-layer: 1;--highlight-bg-color: rgba(180, 0, 170, 1);--highlight-selected-bg-color: rgba(0, 100, 0, 1)}@media screen and (forced-colors: active){:root{--highlight-bg-color: Highlight;--highlight-selected-bg-color: ButtonText}}[data-main-rotation="90"]{transform:rotate(90deg) translateY(-100%)}[data-main-rotation="180"]{transform:rotate(180deg) translate(-100%,-100%)}[data-main-rotation="270"]{transform:rotate(270deg) translate(-100%)}.textLayer{position:absolute;text-align:initial;inset:0;overflow:hidden;line-height:1;text-size-adjust:none;forced-color-adjust:none;transform-origin:0 0;z-index:2}.textLayer :is(span,br){color:transparent;position:absolute;white-space:pre;cursor:text;margin:0;transform-origin:0 0}.textLayer span.markedContent{top:0;height:0}.textLayer .highlight{margin:-1px;padding:1px;background-color:var(--highlight-bg-color);border-radius:4px}.textLayer .highlight.appended{position:initial}.textLayer .highlight.begin{border-radius:4px 0 0 4px}.textLayer .highlight.end{border-radius:0 4px 4px 0}.textLayer .highlight.middle{border-radius:0}.textLayer .highlight.selected{background-color:var(--highlight-selected-bg-color)}.textLayer br::selection{background:transparent}.textLayer .endOfContent{display:block;position:absolute;inset:100% 0 0;z-index:-1;cursor:default;-webkit-user-select:none;user-select:none}.textLayer.selecting .endOfContent{top:0}.hiddenCanvasElement{position:absolute;top:0;left:0;width:0;height:0;display:none}
|