laif-ds 0.2.40 → 0.2.42
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/index4.js +5 -5
- package/dist/_virtual/index5.js +5 -5
- package/dist/_virtual/index6.js +2 -2
- package/dist/_virtual/index7.js +2 -2
- package/dist/components/ui/{form-composer.js → app-form.js} +55 -28
- package/dist/components/ui/tables/data-table/components/data-table-body.js +163 -144
- package/dist/components/ui/tables/data-table/data-table.js +294 -285
- package/dist/index.d.ts +26 -26
- package/dist/index.js +70 -70
- package/dist/node_modules/eventemitter3/index2.js +1 -1
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +1 -1
- package/dist/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/node_modules/unified/lib/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -145,6 +145,32 @@ declare interface AppEditorProps {
|
|
|
145
145
|
|
|
146
146
|
declare type AppEditorToolbar = "block-format" | "font-format" | "history";
|
|
147
147
|
|
|
148
|
+
export declare const AppForm: ({ items, cols, form, submitText, onSubmit, isSubmitting, }: AppFormProps) => JSX.Element;
|
|
149
|
+
|
|
150
|
+
declare interface AppFormItem {
|
|
151
|
+
label: string;
|
|
152
|
+
component: "input" | "select" | "textarea" | "checkbox" | "multiselect" | "datepicker" | "radio" | "switch" | "slider";
|
|
153
|
+
name: string;
|
|
154
|
+
defaultValue?: string | boolean | number | string[] | Date | number[];
|
|
155
|
+
options?: AppSelectOption[];
|
|
156
|
+
disabled?: boolean;
|
|
157
|
+
placeholder?: string;
|
|
158
|
+
caption?: string;
|
|
159
|
+
calendarRange?: [Date, Date];
|
|
160
|
+
min?: number;
|
|
161
|
+
max?: number;
|
|
162
|
+
step?: number;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
declare interface AppFormProps {
|
|
166
|
+
cols?: "2" | "1" | "3";
|
|
167
|
+
items: AppFormItem[];
|
|
168
|
+
form: UseFormReturn<any>;
|
|
169
|
+
submitText?: string;
|
|
170
|
+
onSubmit?: (data: any) => void;
|
|
171
|
+
isSubmitting?: boolean;
|
|
172
|
+
}
|
|
173
|
+
|
|
148
174
|
/**
|
|
149
175
|
* @deprecated This component is deprecated. Please use AppSelect component instead.
|
|
150
176
|
*/
|
|
@@ -1172,32 +1198,6 @@ declare type FilterOperator = "array_overlap" | "checked" | "date_after" | "date
|
|
|
1172
1198
|
|
|
1173
1199
|
export declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React_2.JSX.Element;
|
|
1174
1200
|
|
|
1175
|
-
export declare const FormComposer: ({ items, cols, form, submitText, onSubmit, isSubmitting, }: FormComposerProps) => JSX.Element;
|
|
1176
|
-
|
|
1177
|
-
declare interface FormComposerItem {
|
|
1178
|
-
label: string;
|
|
1179
|
-
component: "input" | "select" | "textarea" | "checkbox" | "multiselect" | "datepicker" | "radio" | "switch" | "slider";
|
|
1180
|
-
name: string;
|
|
1181
|
-
defaultValue?: string | boolean | number | string[] | Date | number[];
|
|
1182
|
-
options?: AppSelectOption[];
|
|
1183
|
-
disabled?: boolean;
|
|
1184
|
-
placeholder?: string;
|
|
1185
|
-
caption?: string;
|
|
1186
|
-
calendarRange?: [Date, Date];
|
|
1187
|
-
min?: number;
|
|
1188
|
-
max?: number;
|
|
1189
|
-
step?: number;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
declare interface FormComposerProps {
|
|
1193
|
-
cols?: "2" | "1" | "3";
|
|
1194
|
-
items: FormComposerItem[];
|
|
1195
|
-
form: UseFormReturn<any>;
|
|
1196
|
-
submitText?: string;
|
|
1197
|
-
onSubmit?: (data: any) => void;
|
|
1198
|
-
isSubmitting?: boolean;
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
1201
|
export declare function FormControl({ ...props }: React_2.ComponentProps<typeof Slot>): JSX.Element;
|
|
1202
1202
|
|
|
1203
1203
|
export declare function FormDescription({ className, ...props }: React_2.ComponentProps<"p">): JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ 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 f, buttonVariants as
|
|
6
|
+
import { Button as f, buttonVariants as g } from "./components/ui/button.js";
|
|
7
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";
|
|
@@ -23,22 +23,22 @@ import { Tooltip as _, TooltipContent as $, TooltipProvider as ee, TooltipTrigge
|
|
|
23
23
|
import { TypingIndicator as te } from "./components/ui/typing-indicator.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
29
|
import { Card as ve, CardContent as we, CardDescription as Ge, CardFooter as Le, CardHeader as Re, CardTitle as Be } from "./components/ui/card.js";
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
30
|
+
import { AppForm as ke } from "./components/ui/app-form.js";
|
|
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
|
+
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
|
+
import { DatePicker as lr } from "./components/ui/date-picker.js";
|
|
34
|
+
import { Dialog as xr, DialogContent as dr, DialogDescription as fr, DialogFooter as gr, DialogHeader as Cr, DialogTitle as br, DialogTrigger as sr } from "./components/ui/dialog.js";
|
|
35
|
+
import { Drawer as Mr, DrawerContent as cr, DrawerDescription as Tr, DrawerFooter as Dr, DrawerHeader as Ar, DrawerTitle as Ir, DrawerTrigger as Pr } from "./components/ui/drawer.js";
|
|
36
|
+
import { Form as Fr, FormControl as vr, FormDescription as wr, FormField as Gr, FormItem as Lr, FormLabel as Rr, FormMessage as Br, useFormField as Hr } from "./components/ui/form.js";
|
|
37
37
|
import { HoverCard as yr, HoverCardContent as Nr, HoverCardTrigger as Vr } from "./components/ui/hover-card.js";
|
|
38
38
|
import { InputSelector as Er } from "./components/ui/input-selector.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 fo, PaginationPrevious 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
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";
|
|
@@ -49,7 +49,7 @@ import { Table as Jo, TableBody as Ko, TableCaption as Qo, TableCell as Xo, Tabl
|
|
|
49
49
|
import { Typo as rt } from "./components/ui/typo.js";
|
|
50
50
|
import { Tabs as tt, TabsContent as at, TabsList as nt, TabsTrigger as it } from "./components/ui/tabs.js";
|
|
51
51
|
import { ToggleGroup as mt, ToggleGroupItem as lt } from "./components/ui/toggle-group.js";
|
|
52
|
-
import { Breadcrumb as xt, BreadcrumbEllipsis as dt, BreadcrumbItem as ft, BreadcrumbLink as
|
|
52
|
+
import { Breadcrumb as xt, BreadcrumbEllipsis as dt, BreadcrumbItem as ft, BreadcrumbLink as gt, BreadcrumbList as Ct, BreadcrumbPage as bt, BreadcrumbSeparator as st } from "./components/ui/breadcrumb.js";
|
|
53
53
|
import { CircularProgress as Mt } from "./components/ui/charts/circular.js";
|
|
54
54
|
import { DropdownMenu as Tt, DropdownMenuContent as Dt, DropdownMenuItem as At, DropdownMenuLabel as It, DropdownMenuSeparator as Pt, DropdownMenuTrigger as ht } from "./components/ui/dropdown-menu.js";
|
|
55
55
|
import { Slider as vt } from "./components/ui/slider.js";
|
|
@@ -66,7 +66,7 @@ import { AppRadioGroup as ta } from "./components/ui/app-radio-group.js";
|
|
|
66
66
|
import { AppSelect as na } from "./components/ui/app-select.js";
|
|
67
67
|
import { AppSidebar as pa } from "./components/ui/app-sidebar.js";
|
|
68
68
|
import { Chat as la, ChatContainer as ua, ChatForm as xa, ChatMessages as da } from "./components/ui/chat.js";
|
|
69
|
-
import { ChatMessage as
|
|
69
|
+
import { ChatMessage as ga } from "./components/ui/chat-message.js";
|
|
70
70
|
import { Confirmer as ba, confirm as sa } from "./components/ui/confirmer.js";
|
|
71
71
|
import { FilePreviewer as Ma, previewFileModal as ca, safePreviewFileModal as Ta } from "./components/ui/file-previewer.js";
|
|
72
72
|
import { DataRepeatTypes as Aa } from "./components/ui/gantt/enums/DataRepeatTimes.js";
|
|
@@ -79,7 +79,7 @@ import { MessageInput as ka } from "./components/ui/message-input.js";
|
|
|
79
79
|
import { MessageList as Na } from "./components/ui/message-list.js";
|
|
80
80
|
import { NavigationMenu as za, NavigationMenuContent as Ea, NavigationMenuIndicator as Oa, NavigationMenuItem as Ua, NavigationMenuLink as Wa, NavigationMenuList as ja, NavigationMenuTrigger as qa, NavigationMenuViewport as Ja } from "./components/ui/navigation-menu.js";
|
|
81
81
|
import { SecurePdfViewer as Qa } from "./components/ui/secure-pdf-viewer.js";
|
|
82
|
-
import { Sidebar as Ya, SidebarContent as Za, SidebarFooter as _a, SidebarGroup as $a, SidebarGroupAction as en, SidebarGroupContent as rn, SidebarGroupLabel as on, SidebarHeader as tn, SidebarInput as an, SidebarInset as nn, SidebarMenu as pn, SidebarMenuAction as mn, SidebarMenuBadge as ln, SidebarMenuButton as un, SidebarMenuItem as xn, SidebarMenuSkeleton as dn, SidebarMenuSub as fn, SidebarMenuSubButton as
|
|
82
|
+
import { Sidebar as Ya, SidebarContent as Za, SidebarFooter as _a, SidebarGroup as $a, SidebarGroupAction as en, SidebarGroupContent as rn, SidebarGroupLabel as on, SidebarHeader as tn, SidebarInput as an, SidebarInset as nn, SidebarMenu as pn, SidebarMenuAction as mn, SidebarMenuBadge as ln, SidebarMenuButton as un, SidebarMenuItem as xn, SidebarMenuSkeleton as dn, SidebarMenuSub as fn, SidebarMenuSubButton as gn, SidebarMenuSubItem as Cn, SidebarProvider as bn, SidebarRail as sn, SidebarSeparator as Sn, SidebarTrigger as Mn, useSidebar as cn } from "./components/ui/sidebar.js";
|
|
83
83
|
import { DataCrossTable as Dn } from "./components/ui/tables/data-cross-table/data-cross-table.js";
|
|
84
84
|
import { DataCrossTableButtonsGroup as In } from "./components/ui/tables/data-cross-table/data-cross-table-buttons.js";
|
|
85
85
|
import { DataCrossTableProvider as hn } from "./components/ui/tables/data-cross-table/data-cross-table-context.js";
|
|
@@ -101,8 +101,8 @@ export {
|
|
|
101
101
|
me as AccordionTrigger,
|
|
102
102
|
ue as Alert,
|
|
103
103
|
xe as AlertDescription,
|
|
104
|
-
|
|
105
|
-
|
|
104
|
+
ge as AlertDialog,
|
|
105
|
+
Ce as AlertDialogAction,
|
|
106
106
|
be as AlertDialogCancel,
|
|
107
107
|
se as AlertDialogContent,
|
|
108
108
|
Se as AlertDialogDescription,
|
|
@@ -112,6 +112,7 @@ export {
|
|
|
112
112
|
De as AlertDialogTrigger,
|
|
113
113
|
de as AlertTitle,
|
|
114
114
|
$t as AppEditor,
|
|
115
|
+
ke as AppForm,
|
|
115
116
|
ra as AppMultipleSelectDropdown,
|
|
116
117
|
ta as AppRadioGroup,
|
|
117
118
|
na as AppSelect,
|
|
@@ -127,8 +128,8 @@ export {
|
|
|
127
128
|
xt as Breadcrumb,
|
|
128
129
|
dt as BreadcrumbEllipsis,
|
|
129
130
|
ft as BreadcrumbItem,
|
|
130
|
-
|
|
131
|
-
|
|
131
|
+
gt as BreadcrumbLink,
|
|
132
|
+
Ct as BreadcrumbList,
|
|
132
133
|
bt as BreadcrumbPage,
|
|
133
134
|
st as BreadcrumbSeparator,
|
|
134
135
|
f as Button,
|
|
@@ -153,60 +154,60 @@ export {
|
|
|
153
154
|
la as Chat,
|
|
154
155
|
ua as ChatContainer,
|
|
155
156
|
xa as ChatForm,
|
|
156
|
-
|
|
157
|
+
ga as ChatMessage,
|
|
157
158
|
da as ChatMessages,
|
|
158
159
|
b as Checkbox,
|
|
159
160
|
Mt as CircularProgress,
|
|
160
161
|
S as Collapsible,
|
|
161
162
|
M as CollapsibleContent,
|
|
162
163
|
c as CollapsibleTrigger,
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
164
|
+
Ne as Command,
|
|
165
|
+
Ve as CommandDialog,
|
|
166
|
+
ze as CommandEmpty,
|
|
167
|
+
Ee as CommandGroup,
|
|
168
|
+
Oe as CommandInput,
|
|
169
|
+
Ue as CommandItem,
|
|
170
|
+
We as CommandList,
|
|
171
|
+
je as CommandSeparator,
|
|
172
|
+
qe as CommandShortcut,
|
|
172
173
|
ba as Confirmer,
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
174
|
+
Ke as ContextMenu,
|
|
175
|
+
Qe as ContextMenuCheckboxItem,
|
|
176
|
+
Xe as ContextMenuContent,
|
|
177
|
+
Ye as ContextMenuGroup,
|
|
178
|
+
Ze as ContextMenuItem,
|
|
179
|
+
_e as ContextMenuLabel,
|
|
180
|
+
$e as ContextMenuPortal,
|
|
181
|
+
er as ContextMenuRadioGroup,
|
|
182
|
+
rr as ContextMenuRadioItem,
|
|
183
|
+
or as ContextMenuSeparator,
|
|
184
|
+
tr as ContextMenuShortcut,
|
|
185
|
+
ar as ContextMenuSub,
|
|
186
|
+
nr as ContextMenuSubContent,
|
|
187
|
+
ir as ContextMenuSubTrigger,
|
|
188
|
+
pr as ContextMenuTrigger,
|
|
188
189
|
D as CopyButton,
|
|
189
190
|
Dn as DataCrossTable,
|
|
190
191
|
In as DataCrossTableButtonsGroup,
|
|
191
192
|
hn as DataCrossTableProvider,
|
|
192
193
|
Aa as DataRepeatTypes,
|
|
193
194
|
vn as DataTable,
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
195
|
+
lr as DatePicker,
|
|
196
|
+
xr as Dialog,
|
|
197
|
+
dr as DialogContent,
|
|
198
|
+
fr as DialogDescription,
|
|
199
|
+
gr as DialogFooter,
|
|
200
|
+
Cr as DialogHeader,
|
|
201
|
+
br as DialogTitle,
|
|
202
|
+
sr as DialogTrigger,
|
|
202
203
|
Pa as DragStepSizes,
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
204
|
+
Mr as Drawer,
|
|
205
|
+
cr as DrawerContent,
|
|
206
|
+
Tr as DrawerDescription,
|
|
207
|
+
Dr as DrawerFooter,
|
|
208
|
+
Ar as DrawerHeader,
|
|
209
|
+
Ir as DrawerTitle,
|
|
210
|
+
Pr as DrawerTrigger,
|
|
210
211
|
Tt as DropdownMenu,
|
|
211
212
|
Dt as DropdownMenuContent,
|
|
212
213
|
At as DropdownMenuItem,
|
|
@@ -217,14 +218,13 @@ export {
|
|
|
217
218
|
Rt as FilePreview,
|
|
218
219
|
Ma as FilePreviewer,
|
|
219
220
|
Ht as FileUploader,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
Lr as FormMessage,
|
|
221
|
+
Fr as Form,
|
|
222
|
+
vr as FormControl,
|
|
223
|
+
wr as FormDescription,
|
|
224
|
+
Gr as FormField,
|
|
225
|
+
Lr as FormItem,
|
|
226
|
+
Rr as FormLabel,
|
|
227
|
+
Br as FormMessage,
|
|
228
228
|
o as Gantt,
|
|
229
229
|
Fa as GanttConsts,
|
|
230
230
|
wa as GanttDimensions,
|
|
@@ -273,7 +273,7 @@ export {
|
|
|
273
273
|
uo as PaginationItem,
|
|
274
274
|
xo as PaginationLink,
|
|
275
275
|
fo as PaginationNext,
|
|
276
|
-
|
|
276
|
+
go as PaginationPrevious,
|
|
277
277
|
bo as Popover,
|
|
278
278
|
so as PopoverContent,
|
|
279
279
|
So as PopoverTrigger,
|
|
@@ -320,8 +320,8 @@ export {
|
|
|
320
320
|
xn as SidebarMenuItem,
|
|
321
321
|
dn as SidebarMenuSkeleton,
|
|
322
322
|
fn as SidebarMenuSub,
|
|
323
|
-
|
|
324
|
-
|
|
323
|
+
gn as SidebarMenuSubButton,
|
|
324
|
+
Cn as SidebarMenuSubItem,
|
|
325
325
|
bn as SidebarProvider,
|
|
326
326
|
sn as SidebarRail,
|
|
327
327
|
Sn as SidebarSeparator,
|
|
@@ -355,7 +355,7 @@ export {
|
|
|
355
355
|
rt as Typo,
|
|
356
356
|
Rn as WeeklyCalendar,
|
|
357
357
|
x as badgeVariants,
|
|
358
|
-
|
|
358
|
+
g as buttonVariants,
|
|
359
359
|
Hn as cn,
|
|
360
360
|
sa as confirm,
|
|
361
361
|
kn as downloadFile,
|
|
@@ -372,7 +372,7 @@ export {
|
|
|
372
372
|
Xn as useCopyToClipboard,
|
|
373
373
|
Zn as useDebounce,
|
|
374
374
|
Zt as useEditorModal,
|
|
375
|
-
|
|
375
|
+
Hr as useFormField,
|
|
376
376
|
$n as useIsMobile,
|
|
377
377
|
cn as useSidebar
|
|
378
378
|
};
|
|
@@ -3,7 +3,7 @@ import { stringify as w } from "../../comma-separated-tokens/index.js";
|
|
|
3
3
|
import { ok as u } from "../../devlop/lib/default.js";
|
|
4
4
|
import { svg as m, html as C } from "../../property-information/index.js";
|
|
5
5
|
import { stringify as N } from "../../space-separated-tokens/index.js";
|
|
6
|
-
import S from "../../../_virtual/
|
|
6
|
+
import S from "../../../_virtual/index4.js";
|
|
7
7
|
import { whitespace as j } from "../../hast-util-whitespace/lib/index.js";
|
|
8
8
|
import { name as x } from "../../estree-util-is-identifier-name/lib/index.js";
|
|
9
9
|
import { VFileMessage as h } from "../../vfile-message/lib/index.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { bail as P } from "../../bail/index.js";
|
|
3
|
-
import y from "../../../_virtual/
|
|
3
|
+
import y from "../../../_virtual/index5.js";
|
|
4
4
|
import z from "../../is-plain-obj/index.js";
|
|
5
5
|
import { CallableInstance as C } from "./callable-instance.js";
|
|
6
6
|
import { trough as A } from "../../trough/lib/index.js";
|