laif-ds 0.2.40 → 0.2.41

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.
@@ -1,8 +1,8 @@
1
1
  "use client";
2
- import { getDefaultExportFromCjs as e } from "./_commonjsHelpers.js";
3
- import { __require as r } from "../node_modules/extend/index.js";
4
- var t = r();
5
- const x = /* @__PURE__ */ e(t);
2
+ import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
3
+ import { __require as e } from "../node_modules/style-to-js/cjs/index.js";
4
+ var t = e();
5
+ const a = /* @__PURE__ */ r(t);
6
6
  export {
7
- x as default
7
+ a as default
8
8
  };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
- import { getDefaultExportFromCjs as r } from "./_commonjsHelpers.js";
3
- import { __require as e } from "../node_modules/style-to-js/cjs/index.js";
4
- var t = e();
5
- const a = /* @__PURE__ */ r(t);
2
+ import { getDefaultExportFromCjs as e } from "./_commonjsHelpers.js";
3
+ import { __require as r } from "../node_modules/extend/index.js";
4
+ var t = r();
5
+ const x = /* @__PURE__ */ e(t);
6
6
  export {
7
- a as default
7
+ x as default
8
8
  };
@@ -5,10 +5,10 @@ import { Controller as w } from "../../node_modules/react-hook-form/dist/index.e
5
5
  import { AppSelect as m } from "./app-select.js";
6
6
  import { Button as V } from "./button.js";
7
7
  import { Checkbox as j } from "./checkbox.js";
8
- import { DatePicker as F } from "./date-picker.js";
9
- import { Input as I } from "./input.js";
8
+ import { DatePicker as A } from "./date-picker.js";
9
+ import { Input as F } from "./input.js";
10
10
  import { Label as t } from "./label.js";
11
- import { RadioGroup as R, RadioGroupItem as A } from "./radio-group.js";
11
+ import { RadioGroup as I, RadioGroupItem as R } from "./radio-group.js";
12
12
  import { Slider as B } from "./slider.js";
13
13
  import { Switch as $ } from "./switch.js";
14
14
  import { Textarea as D } from "./textarea.js";
@@ -42,7 +42,7 @@ const U = ({
42
42
  return /* @__PURE__ */ l("div", { children: [
43
43
  s,
44
44
  /* @__PURE__ */ a(
45
- I,
45
+ F,
46
46
  {
47
47
  ...r,
48
48
  placeholder: e.placeholder,
@@ -68,7 +68,7 @@ const U = ({
68
68
  return /* @__PURE__ */ l("div", { children: [
69
69
  s,
70
70
  /* @__PURE__ */ a(
71
- R,
71
+ I,
72
72
  {
73
73
  value: r.value != null ? String(r.value) : "",
74
74
  onValueChange: (n) => r.onChange(n),
@@ -76,24 +76,34 @@ const U = ({
76
76
  disabled: e.disabled,
77
77
  children: (e.options ?? []).map((n) => {
78
78
  const u = `${e.name}-${n.value}`;
79
- return /* @__PURE__ */ l("div", { className: "flex items-center gap-2", children: [
80
- /* @__PURE__ */ a(
81
- A,
82
- {
83
- id: u,
84
- value: String(n.value),
85
- disabled: e.disabled
86
- }
87
- ),
88
- /* @__PURE__ */ a(
89
- t,
90
- {
91
- htmlFor: u,
92
- className: o("cursor-pointer", e.disabled && "cursor-not-allowed opacity-60"),
93
- children: n.label
94
- }
95
- )
96
- ] }, n.value);
79
+ return /* @__PURE__ */ l(
80
+ "div",
81
+ {
82
+ className: "flex items-center gap-2",
83
+ children: [
84
+ /* @__PURE__ */ a(
85
+ R,
86
+ {
87
+ id: u,
88
+ value: String(n.value),
89
+ disabled: e.disabled
90
+ }
91
+ ),
92
+ /* @__PURE__ */ a(
93
+ t,
94
+ {
95
+ htmlFor: u,
96
+ className: o(
97
+ "cursor-pointer",
98
+ e.disabled && "cursor-not-allowed opacity-60"
99
+ ),
100
+ children: n.label
101
+ }
102
+ )
103
+ ]
104
+ },
105
+ n.value
106
+ );
97
107
  })
98
108
  }
99
109
  )
@@ -131,7 +141,7 @@ const U = ({
131
141
  return /* @__PURE__ */ l("div", { className: "relative", children: [
132
142
  s,
133
143
  /* @__PURE__ */ a(
134
- F,
144
+ A,
135
145
  {
136
146
  value: r.value,
137
147
  onChange: e.disabled || e.calendarRange ? void 0 : (n) => r.onChange(n),
@@ -165,7 +175,10 @@ const U = ({
165
175
  t,
166
176
  {
167
177
  htmlFor: e.name,
168
- className: o("cursor-pointer", e.disabled && "cursor-not-allowed opacity-60"),
178
+ className: o(
179
+ "cursor-pointer",
180
+ e.disabled && "cursor-not-allowed opacity-60"
181
+ ),
169
182
  children: e.label
170
183
  }
171
184
  ),
@@ -185,7 +198,14 @@ const U = ({
185
198
  /* @__PURE__ */ l("div", { className: "flex items-center justify-between", children: [
186
199
  /* @__PURE__ */ l("div", { children: [
187
200
  /* @__PURE__ */ a(t, { htmlFor: e.name, children: e.label }),
188
- e.caption && /* @__PURE__ */ a(i, { variant: "caption", className: "text-d-muted-foreground mt-0.5", children: e.caption })
201
+ e.caption && /* @__PURE__ */ a(
202
+ i,
203
+ {
204
+ variant: "caption",
205
+ className: "text-d-muted-foreground mt-0.5",
206
+ children: e.caption
207
+ }
208
+ )
189
209
  ] }),
190
210
  /* @__PURE__ */ a(
191
211
  $,
@@ -214,7 +234,14 @@ const U = ({
214
234
  showValues: !0
215
235
  }
216
236
  ),
217
- e.caption && /* @__PURE__ */ a(i, { variant: "caption", className: "text-d-muted-foreground mt-1", children: e.caption })
237
+ e.caption && /* @__PURE__ */ a(
238
+ i,
239
+ {
240
+ variant: "caption",
241
+ className: "text-d-muted-foreground mt-1",
242
+ children: e.caption
243
+ }
244
+ )
218
245
  ] });
219
246
  }
220
247
  }
@@ -242,5 +269,5 @@ const U = ({
242
269
  ] });
243
270
  };
244
271
  export {
245
- U as FormComposer
272
+ U as AppForm
246
273
  };
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 C } from "./components/ui/button.js";
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 Ce, AlertDialogAction as ge, 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";
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 { Command as ke, CommandDialog as ye, CommandEmpty as Ne, CommandGroup as Ve, CommandInput as ze, CommandItem as Ee, CommandList as Oe, CommandSeparator as Ue, CommandShortcut as We } from "./components/ui/command.js";
31
- import { ContextMenu as qe, ContextMenuCheckboxItem as Je, ContextMenuContent as Ke, ContextMenuGroup as Qe, ContextMenuItem as Xe, ContextMenuLabel as Ye, ContextMenuPortal as Ze, ContextMenuRadioGroup as _e, ContextMenuRadioItem as $e, ContextMenuSeparator as er, ContextMenuShortcut as rr, ContextMenuSub as or, ContextMenuSubContent as tr, ContextMenuSubTrigger as ar, ContextMenuTrigger as nr } from "./components/ui/context-menu.js";
32
- import { DatePicker as pr } from "./components/ui/date-picker.js";
33
- import { Dialog as lr, DialogContent as ur, DialogDescription as xr, DialogFooter as dr, DialogHeader as fr, DialogTitle as Cr, DialogTrigger as gr } from "./components/ui/dialog.js";
34
- import { Drawer as sr, DrawerContent as Sr, DrawerDescription as Mr, DrawerFooter as cr, DrawerHeader as Tr, DrawerTitle as Dr, DrawerTrigger as Ar } from "./components/ui/drawer.js";
35
- import { Form as Pr, FormControl as hr, FormDescription as Fr, FormField as vr, FormItem as wr, FormLabel as Gr, FormMessage as Lr, useFormField as Rr } from "./components/ui/form.js";
36
- import { FormComposer as Hr } from "./components/ui/form-composer.js";
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 Co } from "./components/ui/pagination.js";
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 Ct, BreadcrumbList as gt, BreadcrumbPage as bt, BreadcrumbSeparator as st } from "./components/ui/breadcrumb.js";
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 Ca } from "./components/ui/chat-message.js";
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 Cn, SidebarMenuSubItem as gn, SidebarProvider as bn, SidebarRail as sn, SidebarSeparator as Sn, SidebarTrigger as Mn, useSidebar as cn } from "./components/ui/sidebar.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 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
- Ce as AlertDialog,
105
- ge as AlertDialogAction,
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
- Ct as BreadcrumbLink,
131
- gt as BreadcrumbList,
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
- Ca as ChatMessage,
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
- ke as Command,
164
- ye as CommandDialog,
165
- Ne as CommandEmpty,
166
- Ve as CommandGroup,
167
- ze as CommandInput,
168
- Ee as CommandItem,
169
- Oe as CommandList,
170
- Ue as CommandSeparator,
171
- We as CommandShortcut,
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
- qe as ContextMenu,
174
- Je as ContextMenuCheckboxItem,
175
- Ke as ContextMenuContent,
176
- Qe as ContextMenuGroup,
177
- Xe as ContextMenuItem,
178
- Ye as ContextMenuLabel,
179
- Ze as ContextMenuPortal,
180
- _e as ContextMenuRadioGroup,
181
- $e as ContextMenuRadioItem,
182
- er as ContextMenuSeparator,
183
- rr as ContextMenuShortcut,
184
- or as ContextMenuSub,
185
- tr as ContextMenuSubContent,
186
- ar as ContextMenuSubTrigger,
187
- nr as ContextMenuTrigger,
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
- pr as DatePicker,
195
- lr as Dialog,
196
- ur as DialogContent,
197
- xr as DialogDescription,
198
- dr as DialogFooter,
199
- fr as DialogHeader,
200
- Cr as DialogTitle,
201
- gr as DialogTrigger,
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
- sr as Drawer,
204
- Sr as DrawerContent,
205
- Mr as DrawerDescription,
206
- cr as DrawerFooter,
207
- Tr as DrawerHeader,
208
- Dr as DrawerTitle,
209
- Ar as DrawerTrigger,
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
- Pr as Form,
221
- Hr as FormComposer,
222
- hr as FormControl,
223
- Fr as FormDescription,
224
- vr as FormField,
225
- wr as FormItem,
226
- Gr as FormLabel,
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
- Co as PaginationPrevious,
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
- Cn as SidebarMenuSubButton,
324
- gn as SidebarMenuSubItem,
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
- C as buttonVariants,
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
- Rr as useFormField,
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/index5.js";
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/index4.js";
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";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "laif-ds",
3
3
  "private": false,
4
- "version": "0.2.40",
4
+ "version": "0.2.41",
5
5
  "type": "module",
6
6
  "main": "dist/index.es.js",
7
7
  "module": "dist/index.es.js",