@lglab/compose-ui 0.24.0 → 0.25.0

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.
@@ -0,0 +1,12 @@
1
+ import { CheckboxGroup } from '@base-ui/react/checkbox-group';
2
+ import { JSX } from 'react/jsx-runtime';
3
+ import * as React_2 from 'react';
4
+
5
+ export declare const CheckboxGroupRoot: {
6
+ ({ className, ...props }: CheckboxGroupRootProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+
10
+ export declare type CheckboxGroupRootProps = React_2.ComponentProps<typeof CheckboxGroup>;
11
+
12
+ export { }
@@ -0,0 +1,15 @@
1
+ "use client";
2
+ import { jsx as e } from "react/jsx-runtime";
3
+ import { CheckboxGroup as t } from "@base-ui/react/checkbox-group";
4
+ import { c } from "./utils-B6yFEsav.js";
5
+ const m = ({ className: o, ...r }) => /* @__PURE__ */ e(
6
+ t,
7
+ {
8
+ className: c("flex flex-col items-start gap-2", o),
9
+ ...r
10
+ }
11
+ );
12
+ m.displayName = "CheckboxGroupRoot";
13
+ export {
14
+ m as CheckboxGroupRoot
15
+ };
@@ -0,0 +1,19 @@
1
+ import { Checkbox } from '@base-ui/react/checkbox';
2
+ import { JSX } from 'react/jsx-runtime';
3
+ import * as React_2 from 'react';
4
+
5
+ export declare const CheckboxIndicator: {
6
+ ({ className, children, ...props }: CheckboxIndicatorProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+
10
+ export declare type CheckboxIndicatorProps = React_2.ComponentProps<typeof Checkbox.Indicator>;
11
+
12
+ export declare const CheckboxRoot: {
13
+ ({ className, ...props }: CheckboxRootProps): JSX.Element;
14
+ displayName: string;
15
+ };
16
+
17
+ export declare type CheckboxRootProps = React_2.ComponentProps<typeof Checkbox.Root>;
18
+
19
+ export { }
@@ -0,0 +1,33 @@
1
+ "use client";
2
+ import { jsx as t } from "react/jsx-runtime";
3
+ import { Checkbox as a } from "@base-ui/react/checkbox";
4
+ import { c as o } from "./utils-B6yFEsav.js";
5
+ const d = ({ className: e, ...r }) => /* @__PURE__ */ t(
6
+ a.Root,
7
+ {
8
+ className: o(
9
+ "flex size-5 items-center justify-center rounded-sm border border-input bg-transparent",
10
+ "transition-colors duration-150",
11
+ "focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-ring",
12
+ "data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground",
13
+ "data-indeterminate:border-primary data-indeterminate:bg-primary data-indeterminate:text-primary-foreground",
14
+ "data-disabled:cursor-not-allowed data-disabled:opacity-50",
15
+ e
16
+ ),
17
+ ...r
18
+ }
19
+ );
20
+ d.displayName = "CheckboxRoot";
21
+ const n = ({ className: e, children: r, ...i }) => /* @__PURE__ */ t(
22
+ a.Indicator,
23
+ {
24
+ className: o("flex items-center justify-center data-unchecked:hidden", e),
25
+ ...i,
26
+ children: r
27
+ }
28
+ );
29
+ n.displayName = "CheckboxIndicator";
30
+ export {
31
+ n as CheckboxIndicator,
32
+ d as CheckboxRoot
33
+ };
@@ -0,0 +1,54 @@
1
+ import { Field } from '@base-ui/react/field';
2
+ import { JSX } from 'react/jsx-runtime';
3
+ import * as React_2 from 'react';
4
+
5
+ export declare const FieldControl: {
6
+ ({ className, ...props }: FieldControlProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+
10
+ export declare type FieldControlProps = React_2.ComponentProps<typeof Field.Control>;
11
+
12
+ export declare const FieldDescription: {
13
+ ({ className, ...props }: FieldDescriptionProps): JSX.Element;
14
+ displayName: string;
15
+ };
16
+
17
+ export declare type FieldDescriptionProps = React_2.ComponentProps<typeof Field.Description>;
18
+
19
+ export declare const FieldError: {
20
+ ({ className, ...props }: FieldErrorProps): JSX.Element;
21
+ displayName: string;
22
+ };
23
+
24
+ export declare type FieldErrorProps = React_2.ComponentProps<typeof Field.Error>;
25
+
26
+ export declare const FieldItem: {
27
+ ({ className, ...props }: FieldItemProps): JSX.Element;
28
+ displayName: string;
29
+ };
30
+
31
+ export declare type FieldItemProps = React_2.ComponentProps<typeof Field.Item>;
32
+
33
+ export declare const FieldLabel: {
34
+ ({ className, ...props }: FieldLabelProps): JSX.Element;
35
+ displayName: string;
36
+ };
37
+
38
+ export declare type FieldLabelProps = React_2.ComponentProps<typeof Field.Label>;
39
+
40
+ export declare const FieldRoot: {
41
+ ({ className, ...props }: FieldRootProps): JSX.Element;
42
+ displayName: string;
43
+ };
44
+
45
+ export declare type FieldRootProps = React_2.ComponentProps<typeof Field.Root>;
46
+
47
+ export declare const FieldValidity: {
48
+ (props: FieldValidityProps): JSX.Element;
49
+ displayName: string;
50
+ };
51
+
52
+ export declare type FieldValidityProps = React_2.ComponentProps<typeof Field.Validity>;
53
+
54
+ export { }
package/dist/field.js ADDED
@@ -0,0 +1,28 @@
1
+ "use client";
2
+ import { jsx as s } from "react/jsx-runtime";
3
+ import { Field as i } from "@base-ui/react/field";
4
+ import { f as a, l as r, i as o, d, e as m, a as n } from "./form-variants-D4ge0qav.js";
5
+ import { c as t } from "./utils-B6yFEsav.js";
6
+ const c = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Root, { className: t(a, e), ...l });
7
+ c.displayName = "FieldRoot";
8
+ const p = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Label, { className: t(r, e), ...l });
9
+ p.displayName = "FieldLabel";
10
+ const y = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Control, { className: t(o, e), ...l });
11
+ y.displayName = "FieldControl";
12
+ const F = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Description, { className: t(d, e), ...l });
13
+ F.displayName = "FieldDescription";
14
+ const N = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Error, { className: t(m, e), ...l });
15
+ N.displayName = "FieldError";
16
+ const u = ({ className: e, ...l }) => /* @__PURE__ */ s(i.Item, { className: t(n, e), ...l });
17
+ u.displayName = "FieldItem";
18
+ const f = (e) => /* @__PURE__ */ s(i.Validity, { ...e });
19
+ f.displayName = "FieldValidity";
20
+ export {
21
+ y as FieldControl,
22
+ F as FieldDescription,
23
+ N as FieldError,
24
+ u as FieldItem,
25
+ p as FieldLabel,
26
+ c as FieldRoot,
27
+ f as FieldValidity
28
+ };
@@ -0,0 +1,19 @@
1
+ import { Fieldset } from '@base-ui/react/fieldset';
2
+ import { JSX } from 'react/jsx-runtime';
3
+ import * as React_2 from 'react';
4
+
5
+ export declare const FieldsetLegend: {
6
+ ({ className, ...props }: FieldsetLegendProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+
10
+ export declare type FieldsetLegendProps = React_2.ComponentProps<typeof Fieldset.Legend>;
11
+
12
+ export declare const FieldsetRoot: {
13
+ ({ className, ...props }: FieldsetRootProps): JSX.Element;
14
+ displayName: string;
15
+ };
16
+
17
+ export declare type FieldsetRootProps = React_2.ComponentProps<typeof Fieldset.Root>;
18
+
19
+ export { }
@@ -0,0 +1,19 @@
1
+ "use client";
2
+ import { jsx as s } from "react/jsx-runtime";
3
+ import { Fieldset as o } from "@base-ui/react/fieldset";
4
+ import { l as r } from "./form-variants-D4ge0qav.js";
5
+ import { c as l } from "./utils-B6yFEsav.js";
6
+ const a = ({ className: e, ...t }) => /* @__PURE__ */ s(
7
+ o.Root,
8
+ {
9
+ className: l("flex flex-col items-start gap-2", e),
10
+ ...t
11
+ }
12
+ );
13
+ a.displayName = "FieldsetRoot";
14
+ const i = ({ className: e, ...t }) => /* @__PURE__ */ s(o.Legend, { className: l(r, e), ...t });
15
+ i.displayName = "FieldsetLegend";
16
+ export {
17
+ i as FieldsetLegend,
18
+ a as FieldsetRoot
19
+ };
@@ -0,0 +1,9 @@
1
+ const e = "flex w-full rounded-md text-sm h-9 px-3 bg-transparent text-foreground border border-input transition-colors duration-200 placeholder:text-muted-foreground aria-invalid:border-destructive aria-invalid:ring-destructive/20", t = "flex items-center gap-2 text-sm font-medium text-foreground data-disabled:opacity-50", r = "text-sm text-muted-foreground", s = "text-sm text-destructive", o = "flex flex-col gap-1.5", a = "flex items-center gap-2";
2
+ export {
3
+ a,
4
+ r as d,
5
+ s as e,
6
+ o as f,
7
+ e as i,
8
+ t as l
9
+ };
package/dist/form.d.ts ADDED
@@ -0,0 +1,12 @@
1
+ import { Form } from '@base-ui/react/form';
2
+ import { JSX } from 'react/jsx-runtime';
3
+ import * as React_2 from 'react';
4
+
5
+ export declare const FormRoot: {
6
+ ({ className, ...props }: FormRootProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+
10
+ export declare type FormRootProps = React_2.ComponentProps<typeof Form>;
11
+
12
+ export { }
package/dist/form.js ADDED
@@ -0,0 +1,9 @@
1
+ "use client";
2
+ import { jsx as m } from "react/jsx-runtime";
3
+ import { Form as t } from "@base-ui/react/form";
4
+ import { c as e } from "./utils-B6yFEsav.js";
5
+ const s = ({ className: o, ...r }) => /* @__PURE__ */ m(t, { className: e("flex flex-col gap-4", o), ...r });
6
+ s.displayName = "FormRoot";
7
+ export {
8
+ s as FormRoot
9
+ };
package/dist/index.d.ts CHANGED
@@ -2,10 +2,16 @@ import { Accordion } from '@base-ui/react/accordion';
2
2
  import { AlertDialog } from '@base-ui/react/alert-dialog';
3
3
  import { Avatar } from '@base-ui/react/avatar';
4
4
  import { Button as Button_2 } from '@base-ui/react/button';
5
+ import { Checkbox } from '@base-ui/react/checkbox';
6
+ import { CheckboxGroup } from '@base-ui/react/checkbox-group';
5
7
  import { ClassProp } from 'class-variance-authority/types';
6
8
  import { Collapsible } from '@base-ui/react/collapsible';
7
9
  import { ContextMenu } from '@base-ui/react/context-menu';
8
10
  import { Dialog } from '@base-ui/react/dialog';
11
+ import { Field } from '@base-ui/react/field';
12
+ import { Fieldset } from '@base-ui/react/fieldset';
13
+ import { Form } from '@base-ui/react/form';
14
+ import { Input as Input_2 } from '@base-ui/react/input';
9
15
  import { JSX } from 'react/jsx-runtime';
10
16
  import { Menu } from '@base-ui/react/menu';
11
17
  import { Menubar } from '@base-ui/react/menubar';
@@ -286,6 +292,27 @@ declare const cardVariants: (props?: ({
286
292
  variant?: "default" | "outline" | "elevated" | null | undefined;
287
293
  } & ClassProp) | undefined) => string;
288
294
 
295
+ export declare const CheckboxGroupRoot: {
296
+ ({ className, ...props }: CheckboxGroupRootProps): JSX.Element;
297
+ displayName: string;
298
+ };
299
+
300
+ export declare type CheckboxGroupRootProps = React_2.ComponentProps<typeof CheckboxGroup>;
301
+
302
+ export declare const CheckboxIndicator: {
303
+ ({ className, children, ...props }: CheckboxIndicatorProps): JSX.Element;
304
+ displayName: string;
305
+ };
306
+
307
+ export declare type CheckboxIndicatorProps = React_2.ComponentProps<typeof Checkbox.Indicator>;
308
+
309
+ export declare const CheckboxRoot: {
310
+ ({ className, ...props }: CheckboxRootProps): JSX.Element;
311
+ displayName: string;
312
+ };
313
+
314
+ export declare type CheckboxRootProps = React_2.ComponentProps<typeof Checkbox.Root>;
315
+
289
316
  export declare const CollapsiblePanel: {
290
317
  ({ className, ...props }: CollapsiblePanelProps): JSX.Element;
291
318
  displayName: string;
@@ -617,8 +644,85 @@ export declare type DrawerTriggerProps = React_2.ComponentProps<typeof Dialog.Tr
617
644
  size?: ButtonSize;
618
645
  };
619
646
 
647
+ export declare const FieldControl: {
648
+ ({ className, ...props }: FieldControlProps): JSX.Element;
649
+ displayName: string;
650
+ };
651
+
652
+ export declare type FieldControlProps = React_2.ComponentProps<typeof Field.Control>;
653
+
654
+ export declare const FieldDescription: {
655
+ ({ className, ...props }: FieldDescriptionProps): JSX.Element;
656
+ displayName: string;
657
+ };
658
+
659
+ export declare type FieldDescriptionProps = React_2.ComponentProps<typeof Field.Description>;
660
+
661
+ export declare const FieldError: {
662
+ ({ className, ...props }: FieldErrorProps): JSX.Element;
663
+ displayName: string;
664
+ };
665
+
666
+ export declare type FieldErrorProps = React_2.ComponentProps<typeof Field.Error>;
667
+
668
+ export declare const FieldItem: {
669
+ ({ className, ...props }: FieldItemProps): JSX.Element;
670
+ displayName: string;
671
+ };
672
+
673
+ export declare type FieldItemProps = React_2.ComponentProps<typeof Field.Item>;
674
+
675
+ export declare const FieldLabel: {
676
+ ({ className, ...props }: FieldLabelProps): JSX.Element;
677
+ displayName: string;
678
+ };
679
+
680
+ export declare type FieldLabelProps = React_2.ComponentProps<typeof Field.Label>;
681
+
682
+ export declare const FieldRoot: {
683
+ ({ className, ...props }: FieldRootProps): JSX.Element;
684
+ displayName: string;
685
+ };
686
+
687
+ export declare type FieldRootProps = React_2.ComponentProps<typeof Field.Root>;
688
+
689
+ export declare const FieldsetLegend: {
690
+ ({ className, ...props }: FieldsetLegendProps): JSX.Element;
691
+ displayName: string;
692
+ };
693
+
694
+ export declare type FieldsetLegendProps = React_2.ComponentProps<typeof Fieldset.Legend>;
695
+
696
+ export declare const FieldsetRoot: {
697
+ ({ className, ...props }: FieldsetRootProps): JSX.Element;
698
+ displayName: string;
699
+ };
700
+
701
+ export declare type FieldsetRootProps = React_2.ComponentProps<typeof Fieldset.Root>;
702
+
703
+ export declare const FieldValidity: {
704
+ (props: FieldValidityProps): JSX.Element;
705
+ displayName: string;
706
+ };
707
+
708
+ export declare type FieldValidityProps = React_2.ComponentProps<typeof Field.Validity>;
709
+
710
+ export declare const FormRoot: {
711
+ ({ className, ...props }: FormRootProps): JSX.Element;
712
+ displayName: string;
713
+ };
714
+
715
+ export declare type FormRootProps = React_2.ComponentProps<typeof Form>;
716
+
620
717
  declare type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
621
718
 
719
+ export declare const Input: {
720
+ ({ className, ...props }: InputProps): JSX.Element;
721
+ displayName: string;
722
+ };
723
+
724
+ export declare type InputProps = React_2.ComponentProps<typeof Input_2>;
725
+
622
726
  export declare const MenuArrow: {
623
727
  ({ className, ...props }: MenuArrowProps): JSX.Element;
624
728
  displayName: string;
@@ -1336,6 +1440,13 @@ export declare type TabsTabProps = React_2.ComponentProps<typeof Tabs.Tab> & {
1336
1440
  size?: 'sm' | 'default' | 'lg';
1337
1441
  };
1338
1442
 
1443
+ export declare const Textarea: {
1444
+ ({ className, ...props }: TextareaProps): JSX.Element;
1445
+ displayName: string;
1446
+ };
1447
+
1448
+ export declare type TextareaProps = React_2.ComponentProps<'textarea'>;
1449
+
1339
1450
  export { Toast }
1340
1451
 
1341
1452
  export declare const ToastAction: {
package/dist/index.js CHANGED
@@ -1,220 +1,242 @@
1
1
  import { Button as r } from "./button.js";
2
- import { CollapsiblePanel as a, CollapsibleRoot as i, CollapsibleTrigger as n } from "./collapsible.js";
3
- import { AlertDialogBackdrop as l, AlertDialogClose as p, AlertDialogDescription as M, AlertDialogPopup as g, AlertDialogPortal as d, AlertDialogRoot as m, AlertDialogTitle as b, AlertDialogTrigger as c, AlertDialogViewport as C } from "./alert-dialog.js";
4
- import { AlertDialog as x } from "@base-ui/react/alert-dialog";
5
- import { AvatarFallback as s, AvatarImage as v, AvatarRoot as D, AvatarStack as R } from "./avatar.js";
6
- import { ScrollAreaContent as A, ScrollAreaCorner as w, ScrollAreaRoot as f, ScrollAreaScrollbar as S, ScrollAreaThumb as k, ScrollAreaViewport as h } from "./scroll-area.js";
7
- import { Separator as N } from "./separator.js";
8
- import { SwitchRoot as V, SwitchThumb as B } from "./switch.js";
9
- import { Toggle as H } from "./toggle.js";
10
- import { TabsIndicator as q, TabsList as y, TabsPanel as z, TabsRoot as E, TabsTab as J } from "./tabs.js";
11
- import { ToastAction as O, ToastClose as Q, ToastContent as U, ToastDescription as W, ToastPositioner as X, ToastProvider as Y, ToastRoot as Z, ToastTitle as _, ToastViewport as $ } from "./toast.js";
12
- import { DialogBackdrop as eo, DialogClose as ro, DialogDescription as to, DialogFooter as ao, DialogHeader as io, DialogPopup as no, DialogPortal as uo, DialogRoot as lo, DialogTitle as po, DialogTrigger as Mo } from "./dialog.js";
13
- import { DrawerBackdrop as mo, DrawerClose as bo, DrawerContent as co, DrawerDescription as Co, DrawerFooter as Po, DrawerHeader as xo, DrawerPopup as To, DrawerPortal as so, DrawerRoot as vo, DrawerTitle as Do, DrawerTrigger as Ro } from "./drawer.js";
14
- import { AccordionHeader as Ao, AccordionItem as wo, AccordionPanel as fo, AccordionRoot as So, AccordionTrigger as ko } from "./accordion.js";
15
- import { MeterIndicator as Lo, MeterLabel as No, MeterRoot as Go, MeterTrack as Vo, MeterValue as Bo } from "./meter.js";
16
- import { NavigationMenuArrow as Ho, NavigationMenuBackdrop as jo, NavigationMenuContent as qo, NavigationMenuIcon as yo, NavigationMenuItem as zo, NavigationMenuLink as Eo, NavigationMenuList as Jo, NavigationMenuPopup as Ko, NavigationMenuPortal as Oo, NavigationMenuPositioner as Qo, NavigationMenuRoot as Uo, NavigationMenuTrigger as Wo, NavigationMenuViewport as Xo } from "./navigation-menu.js";
17
- import { MenuArrow as Zo, MenuCheckboxItem as _o, MenuCheckboxItemIndicator as $o, MenuCheckboxItemLabel as oe, MenuGroup as ee, MenuGroupLabel as re, MenuItem as te, MenuPopup as ae, MenuPortal as ie, MenuPositioner as ne, MenuRadioGroup as ue, MenuRadioItem as le, MenuRadioItemIndicator as pe, MenuRadioItemLabel as Me, MenuRoot as ge, MenuSeparator as de, MenuSubmenuRoot as me, MenuSubmenuTrigger as be, MenuTrigger as ce } from "./menu.js";
18
- import { PopoverArrow as Pe, PopoverBackdrop as xe, PopoverClose as Te, PopoverDescription as se, PopoverPopup as ve, PopoverPortal as De, PopoverPositioner as Re, PopoverRoot as Ie, PopoverTitle as Ae, PopoverTrigger as we, PopoverViewport as fe } from "./popover.js";
19
- import { ProgressIndicator as ke, ProgressLabel as he, ProgressRoot as Le, ProgressTrack as Ne, ProgressValue as Ge } from "./progress.js";
20
- import { ToggleGroupItem as Be, ToggleGroupRoot as Fe } from "./toggle-group.js";
21
- import { CardContent as je, CardDescription as qe, CardFooter as ye, CardHeader as ze, CardMedia as Ee, CardRoot as Je, CardSection as Ke, CardTitle as Oe } from "./card.js";
22
- import { ContextMenuArrow as Ue, ContextMenuCheckboxItem as We, ContextMenuCheckboxItemIndicator as Xe, ContextMenuCheckboxItemLabel as Ye, ContextMenuGroup as Ze, ContextMenuGroupLabel as _e, ContextMenuItem as $e, ContextMenuPopup as or, ContextMenuPortal as er, ContextMenuPositioner as rr, ContextMenuRadioGroup as tr, ContextMenuRadioItem as ar, ContextMenuRadioItemIndicator as ir, ContextMenuRadioItemLabel as nr, ContextMenuRoot as ur, ContextMenuSeparator as lr, ContextMenuSubmenuRoot as pr, ContextMenuSubmenuTrigger as Mr, ContextMenuTrigger as gr } from "./context-menu.js";
23
- import { MenubarArrow as mr, MenubarCheckboxItem as br, MenubarCheckboxItemIndicator as cr, MenubarCheckboxItemLabel as Cr, MenubarGroup as Pr, MenubarGroupLabel as xr, MenubarItem as Tr, MenubarMenu as sr, MenubarPopup as vr, MenubarPortal as Dr, MenubarPositioner as Rr, MenubarRadioGroup as Ir, MenubarRadioItem as Ar, MenubarRadioItemIndicator as wr, MenubarRadioItemLabel as fr, MenubarRoot as Sr, MenubarSeparator as kr, MenubarSubmenuRoot as hr, MenubarSubmenuTrigger as Lr, MenubarTrigger as Nr } from "./menubar.js";
24
- import { SliderControl as Vr, SliderIndicator as Br, SliderRoot as Fr, SliderThumb as Hr, SliderTrack as jr, SliderValue as qr } from "./slider.js";
25
- import { TooltipArrow as zr, TooltipPopup as Er, TooltipPortal as Jr, TooltipPositioner as Kr, TooltipProvider as Or, TooltipRoot as Qr, TooltipTrigger as Ur } from "./tooltip.js";
26
- import { PreviewCardArrow as Xr, PreviewCardBackdrop as Yr, PreviewCardPopup as Zr, PreviewCardPortal as _r, PreviewCardPositioner as $r, PreviewCardRoot as ot, PreviewCardTrigger as et } from "./preview-card.js";
27
- import { Toast as tt } from "@base-ui/react/toast";
2
+ import { CheckboxIndicator as a, CheckboxRoot as i } from "./checkbox.js";
3
+ import { CheckboxGroupRoot as l } from "./checkbox-group.js";
4
+ import { CollapsiblePanel as p, CollapsibleRoot as M, CollapsibleTrigger as g } from "./collapsible.js";
5
+ import { AlertDialogBackdrop as m, AlertDialogClose as x, AlertDialogDescription as b, AlertDialogPopup as c, AlertDialogPortal as C, AlertDialogRoot as P, AlertDialogTitle as T, AlertDialogTrigger as s, AlertDialogViewport as R } from "./alert-dialog.js";
6
+ import { AlertDialog as D } from "@base-ui/react/alert-dialog";
7
+ import { AvatarFallback as f, AvatarImage as A, AvatarRoot as w, AvatarStack as S } from "./avatar.js";
8
+ import { ScrollAreaContent as h, ScrollAreaCorner as L, ScrollAreaRoot as F, ScrollAreaScrollbar as N, ScrollAreaThumb as G, ScrollAreaViewport as V } from "./scroll-area.js";
9
+ import { Separator as H } from "./separator.js";
10
+ import { SwitchRoot as E, SwitchThumb as j } from "./switch.js";
11
+ import { Toggle as z } from "./toggle.js";
12
+ import { TabsIndicator as K, TabsList as O, TabsPanel as Q, TabsRoot as U, TabsTab as W } from "./tabs.js";
13
+ import { ToastAction as Y, ToastClose as Z, ToastContent as _, ToastDescription as $, ToastPositioner as oo, ToastProvider as eo, ToastRoot as ro, ToastTitle as to, ToastViewport as ao } from "./toast.js";
14
+ import { DialogBackdrop as no, DialogClose as lo, DialogDescription as uo, DialogFooter as po, DialogHeader as Mo, DialogPopup as go, DialogPortal as mo, DialogRoot as xo, DialogTitle as bo, DialogTrigger as co } from "./dialog.js";
15
+ import { DrawerBackdrop as Po, DrawerClose as To, DrawerContent as so, DrawerDescription as Ro, DrawerFooter as Io, DrawerHeader as Do, DrawerPopup as vo, DrawerPortal as fo, DrawerRoot as Ao, DrawerTitle as wo, DrawerTrigger as So } from "./drawer.js";
16
+ import { Input as ho } from "./input.js";
17
+ import { Textarea as Fo } from "./textarea.js";
18
+ import { FieldControl as Go, FieldDescription as Vo, FieldError as Bo, FieldItem as Ho, FieldLabel as yo, FieldRoot as Eo, FieldValidity as jo } from "./field.js";
19
+ import { FieldsetLegend as zo, FieldsetRoot as Jo } from "./fieldset.js";
20
+ import { FormRoot as Oo } from "./form.js";
21
+ import { AccordionHeader as Uo, AccordionItem as Wo, AccordionPanel as Xo, AccordionRoot as Yo, AccordionTrigger as Zo } from "./accordion.js";
22
+ import { MeterIndicator as $o, MeterLabel as oe, MeterRoot as ee, MeterTrack as re, MeterValue as te } from "./meter.js";
23
+ import { NavigationMenuArrow as ie, NavigationMenuBackdrop as ne, NavigationMenuContent as le, NavigationMenuIcon as ue, NavigationMenuItem as pe, NavigationMenuLink as Me, NavigationMenuList as ge, NavigationMenuPopup as de, NavigationMenuPortal as me, NavigationMenuPositioner as xe, NavigationMenuRoot as be, NavigationMenuTrigger as ce, NavigationMenuViewport as Ce } from "./navigation-menu.js";
24
+ import { MenuArrow as Te, MenuCheckboxItem as se, MenuCheckboxItemIndicator as Re, MenuCheckboxItemLabel as Ie, MenuGroup as De, MenuGroupLabel as ve, MenuItem as fe, MenuPopup as Ae, MenuPortal as we, MenuPositioner as Se, MenuRadioGroup as ke, MenuRadioItem as he, MenuRadioItemIndicator as Le, MenuRadioItemLabel as Fe, MenuRoot as Ne, MenuSeparator as Ge, MenuSubmenuRoot as Ve, MenuSubmenuTrigger as Be, MenuTrigger as He } from "./menu.js";
25
+ import { PopoverArrow as Ee, PopoverBackdrop as je, PopoverClose as qe, PopoverDescription as ze, PopoverPopup as Je, PopoverPortal as Ke, PopoverPositioner as Oe, PopoverRoot as Qe, PopoverTitle as Ue, PopoverTrigger as We, PopoverViewport as Xe } from "./popover.js";
26
+ import { ProgressIndicator as Ze, ProgressLabel as _e, ProgressRoot as $e, ProgressTrack as or, ProgressValue as er } from "./progress.js";
27
+ import { ToggleGroupItem as tr, ToggleGroupRoot as ar } from "./toggle-group.js";
28
+ import { CardContent as nr, CardDescription as lr, CardFooter as ur, CardHeader as pr, CardMedia as Mr, CardRoot as gr, CardSection as dr, CardTitle as mr } from "./card.js";
29
+ import { ContextMenuArrow as br, ContextMenuCheckboxItem as cr, ContextMenuCheckboxItemIndicator as Cr, ContextMenuCheckboxItemLabel as Pr, ContextMenuGroup as Tr, ContextMenuGroupLabel as sr, ContextMenuItem as Rr, ContextMenuPopup as Ir, ContextMenuPortal as Dr, ContextMenuPositioner as vr, ContextMenuRadioGroup as fr, ContextMenuRadioItem as Ar, ContextMenuRadioItemIndicator as wr, ContextMenuRadioItemLabel as Sr, ContextMenuRoot as kr, ContextMenuSeparator as hr, ContextMenuSubmenuRoot as Lr, ContextMenuSubmenuTrigger as Fr, ContextMenuTrigger as Nr } from "./context-menu.js";
30
+ import { MenubarArrow as Vr, MenubarCheckboxItem as Br, MenubarCheckboxItemIndicator as Hr, MenubarCheckboxItemLabel as yr, MenubarGroup as Er, MenubarGroupLabel as jr, MenubarItem as qr, MenubarMenu as zr, MenubarPopup as Jr, MenubarPortal as Kr, MenubarPositioner as Or, MenubarRadioGroup as Qr, MenubarRadioItem as Ur, MenubarRadioItemIndicator as Wr, MenubarRadioItemLabel as Xr, MenubarRoot as Yr, MenubarSeparator as Zr, MenubarSubmenuRoot as _r, MenubarSubmenuTrigger as $r, MenubarTrigger as ot } from "./menubar.js";
31
+ import { SliderControl as rt, SliderIndicator as tt, SliderRoot as at, SliderThumb as it, SliderTrack as nt, SliderValue as lt } from "./slider.js";
32
+ import { TooltipArrow as pt, TooltipPopup as Mt, TooltipPortal as gt, TooltipPositioner as dt, TooltipProvider as mt, TooltipRoot as xt, TooltipTrigger as bt } from "./tooltip.js";
33
+ import { PreviewCardArrow as Ct, PreviewCardBackdrop as Pt, PreviewCardPopup as Tt, PreviewCardPortal as st, PreviewCardPositioner as Rt, PreviewCardRoot as It, PreviewCardTrigger as Dt } from "./preview-card.js";
34
+ import { Toast as ft } from "@base-ui/react/toast";
28
35
  export {
29
- Ao as AccordionHeader,
30
- wo as AccordionItem,
31
- fo as AccordionPanel,
32
- So as AccordionRoot,
33
- ko as AccordionTrigger,
34
- x as AlertDialog,
35
- l as AlertDialogBackdrop,
36
- p as AlertDialogClose,
37
- M as AlertDialogDescription,
38
- g as AlertDialogPopup,
39
- d as AlertDialogPortal,
40
- m as AlertDialogRoot,
41
- b as AlertDialogTitle,
42
- c as AlertDialogTrigger,
43
- C as AlertDialogViewport,
44
- s as AvatarFallback,
45
- v as AvatarImage,
46
- D as AvatarRoot,
47
- R as AvatarStack,
36
+ Uo as AccordionHeader,
37
+ Wo as AccordionItem,
38
+ Xo as AccordionPanel,
39
+ Yo as AccordionRoot,
40
+ Zo as AccordionTrigger,
41
+ D as AlertDialog,
42
+ m as AlertDialogBackdrop,
43
+ x as AlertDialogClose,
44
+ b as AlertDialogDescription,
45
+ c as AlertDialogPopup,
46
+ C as AlertDialogPortal,
47
+ P as AlertDialogRoot,
48
+ T as AlertDialogTitle,
49
+ s as AlertDialogTrigger,
50
+ R as AlertDialogViewport,
51
+ f as AvatarFallback,
52
+ A as AvatarImage,
53
+ w as AvatarRoot,
54
+ S as AvatarStack,
48
55
  r as Button,
49
- je as CardContent,
50
- qe as CardDescription,
51
- ye as CardFooter,
52
- ze as CardHeader,
53
- Ee as CardMedia,
54
- Je as CardRoot,
55
- Ke as CardSection,
56
- Oe as CardTitle,
57
- a as CollapsiblePanel,
58
- i as CollapsibleRoot,
59
- n as CollapsibleTrigger,
60
- Ue as ContextMenuArrow,
61
- We as ContextMenuCheckboxItem,
62
- Xe as ContextMenuCheckboxItemIndicator,
63
- Ye as ContextMenuCheckboxItemLabel,
64
- Ze as ContextMenuGroup,
65
- _e as ContextMenuGroupLabel,
66
- $e as ContextMenuItem,
67
- or as ContextMenuPopup,
68
- er as ContextMenuPortal,
69
- rr as ContextMenuPositioner,
70
- tr as ContextMenuRadioGroup,
71
- ar as ContextMenuRadioItem,
72
- ir as ContextMenuRadioItemIndicator,
73
- nr as ContextMenuRadioItemLabel,
74
- ur as ContextMenuRoot,
75
- lr as ContextMenuSeparator,
76
- pr as ContextMenuSubmenuRoot,
77
- Mr as ContextMenuSubmenuTrigger,
78
- gr as ContextMenuTrigger,
79
- eo as DialogBackdrop,
80
- ro as DialogClose,
81
- to as DialogDescription,
82
- ao as DialogFooter,
83
- io as DialogHeader,
84
- no as DialogPopup,
85
- uo as DialogPortal,
86
- lo as DialogRoot,
87
- po as DialogTitle,
88
- Mo as DialogTrigger,
89
- mo as DrawerBackdrop,
90
- bo as DrawerClose,
91
- co as DrawerContent,
92
- Co as DrawerDescription,
93
- Po as DrawerFooter,
94
- xo as DrawerHeader,
95
- To as DrawerPopup,
96
- so as DrawerPortal,
97
- vo as DrawerRoot,
98
- Do as DrawerTitle,
99
- Ro as DrawerTrigger,
100
- Zo as MenuArrow,
101
- _o as MenuCheckboxItem,
102
- $o as MenuCheckboxItemIndicator,
103
- oe as MenuCheckboxItemLabel,
104
- ee as MenuGroup,
105
- re as MenuGroupLabel,
106
- te as MenuItem,
107
- ae as MenuPopup,
108
- ie as MenuPortal,
109
- ne as MenuPositioner,
110
- ue as MenuRadioGroup,
111
- le as MenuRadioItem,
112
- pe as MenuRadioItemIndicator,
113
- Me as MenuRadioItemLabel,
114
- ge as MenuRoot,
115
- de as MenuSeparator,
116
- me as MenuSubmenuRoot,
117
- be as MenuSubmenuTrigger,
118
- ce as MenuTrigger,
119
- mr as MenubarArrow,
120
- br as MenubarCheckboxItem,
121
- cr as MenubarCheckboxItemIndicator,
122
- Cr as MenubarCheckboxItemLabel,
123
- Pr as MenubarGroup,
124
- xr as MenubarGroupLabel,
125
- Tr as MenubarItem,
126
- sr as MenubarMenu,
127
- vr as MenubarPopup,
128
- Dr as MenubarPortal,
129
- Rr as MenubarPositioner,
130
- Ir as MenubarRadioGroup,
131
- Ar as MenubarRadioItem,
132
- wr as MenubarRadioItemIndicator,
133
- fr as MenubarRadioItemLabel,
134
- Sr as MenubarRoot,
135
- kr as MenubarSeparator,
136
- hr as MenubarSubmenuRoot,
137
- Lr as MenubarSubmenuTrigger,
138
- Nr as MenubarTrigger,
139
- Lo as MeterIndicator,
140
- No as MeterLabel,
141
- Go as MeterRoot,
142
- Vo as MeterTrack,
143
- Bo as MeterValue,
144
- Ho as NavigationMenuArrow,
145
- jo as NavigationMenuBackdrop,
146
- qo as NavigationMenuContent,
147
- yo as NavigationMenuIcon,
148
- zo as NavigationMenuItem,
149
- Eo as NavigationMenuLink,
150
- Jo as NavigationMenuList,
151
- Ko as NavigationMenuPopup,
152
- Oo as NavigationMenuPortal,
153
- Qo as NavigationMenuPositioner,
154
- Uo as NavigationMenuRoot,
155
- Wo as NavigationMenuTrigger,
156
- Xo as NavigationMenuViewport,
157
- Pe as PopoverArrow,
158
- xe as PopoverBackdrop,
159
- Te as PopoverClose,
160
- se as PopoverDescription,
161
- ve as PopoverPopup,
162
- De as PopoverPortal,
163
- Re as PopoverPositioner,
164
- Ie as PopoverRoot,
165
- Ae as PopoverTitle,
166
- we as PopoverTrigger,
167
- fe as PopoverViewport,
168
- Xr as PreviewCardArrow,
169
- Yr as PreviewCardBackdrop,
170
- Zr as PreviewCardPopup,
171
- _r as PreviewCardPortal,
172
- $r as PreviewCardPositioner,
173
- ot as PreviewCardRoot,
174
- et as PreviewCardTrigger,
175
- ke as ProgressIndicator,
176
- he as ProgressLabel,
177
- Le as ProgressRoot,
178
- Ne as ProgressTrack,
179
- Ge as ProgressValue,
180
- A as ScrollAreaContent,
181
- w as ScrollAreaCorner,
182
- f as ScrollAreaRoot,
183
- S as ScrollAreaScrollbar,
184
- k as ScrollAreaThumb,
185
- h as ScrollAreaViewport,
186
- N as Separator,
187
- Vr as SliderControl,
188
- Br as SliderIndicator,
189
- Fr as SliderRoot,
190
- Hr as SliderThumb,
191
- jr as SliderTrack,
192
- qr as SliderValue,
193
- V as SwitchRoot,
194
- B as SwitchThumb,
195
- q as TabsIndicator,
196
- y as TabsList,
197
- z as TabsPanel,
198
- E as TabsRoot,
199
- J as TabsTab,
200
- tt as Toast,
201
- O as ToastAction,
202
- Q as ToastClose,
203
- U as ToastContent,
204
- W as ToastDescription,
205
- X as ToastPositioner,
206
- Y as ToastProvider,
207
- Z as ToastRoot,
208
- _ as ToastTitle,
209
- $ as ToastViewport,
210
- H as Toggle,
211
- Be as ToggleGroupItem,
212
- Fe as ToggleGroupRoot,
213
- zr as TooltipArrow,
214
- Er as TooltipPopup,
215
- Jr as TooltipPortal,
216
- Kr as TooltipPositioner,
217
- Or as TooltipProvider,
218
- Qr as TooltipRoot,
219
- Ur as TooltipTrigger
56
+ nr as CardContent,
57
+ lr as CardDescription,
58
+ ur as CardFooter,
59
+ pr as CardHeader,
60
+ Mr as CardMedia,
61
+ gr as CardRoot,
62
+ dr as CardSection,
63
+ mr as CardTitle,
64
+ l as CheckboxGroupRoot,
65
+ a as CheckboxIndicator,
66
+ i as CheckboxRoot,
67
+ p as CollapsiblePanel,
68
+ M as CollapsibleRoot,
69
+ g as CollapsibleTrigger,
70
+ br as ContextMenuArrow,
71
+ cr as ContextMenuCheckboxItem,
72
+ Cr as ContextMenuCheckboxItemIndicator,
73
+ Pr as ContextMenuCheckboxItemLabel,
74
+ Tr as ContextMenuGroup,
75
+ sr as ContextMenuGroupLabel,
76
+ Rr as ContextMenuItem,
77
+ Ir as ContextMenuPopup,
78
+ Dr as ContextMenuPortal,
79
+ vr as ContextMenuPositioner,
80
+ fr as ContextMenuRadioGroup,
81
+ Ar as ContextMenuRadioItem,
82
+ wr as ContextMenuRadioItemIndicator,
83
+ Sr as ContextMenuRadioItemLabel,
84
+ kr as ContextMenuRoot,
85
+ hr as ContextMenuSeparator,
86
+ Lr as ContextMenuSubmenuRoot,
87
+ Fr as ContextMenuSubmenuTrigger,
88
+ Nr as ContextMenuTrigger,
89
+ no as DialogBackdrop,
90
+ lo as DialogClose,
91
+ uo as DialogDescription,
92
+ po as DialogFooter,
93
+ Mo as DialogHeader,
94
+ go as DialogPopup,
95
+ mo as DialogPortal,
96
+ xo as DialogRoot,
97
+ bo as DialogTitle,
98
+ co as DialogTrigger,
99
+ Po as DrawerBackdrop,
100
+ To as DrawerClose,
101
+ so as DrawerContent,
102
+ Ro as DrawerDescription,
103
+ Io as DrawerFooter,
104
+ Do as DrawerHeader,
105
+ vo as DrawerPopup,
106
+ fo as DrawerPortal,
107
+ Ao as DrawerRoot,
108
+ wo as DrawerTitle,
109
+ So as DrawerTrigger,
110
+ Go as FieldControl,
111
+ Vo as FieldDescription,
112
+ Bo as FieldError,
113
+ Ho as FieldItem,
114
+ yo as FieldLabel,
115
+ Eo as FieldRoot,
116
+ jo as FieldValidity,
117
+ zo as FieldsetLegend,
118
+ Jo as FieldsetRoot,
119
+ Oo as FormRoot,
120
+ ho as Input,
121
+ Te as MenuArrow,
122
+ se as MenuCheckboxItem,
123
+ Re as MenuCheckboxItemIndicator,
124
+ Ie as MenuCheckboxItemLabel,
125
+ De as MenuGroup,
126
+ ve as MenuGroupLabel,
127
+ fe as MenuItem,
128
+ Ae as MenuPopup,
129
+ we as MenuPortal,
130
+ Se as MenuPositioner,
131
+ ke as MenuRadioGroup,
132
+ he as MenuRadioItem,
133
+ Le as MenuRadioItemIndicator,
134
+ Fe as MenuRadioItemLabel,
135
+ Ne as MenuRoot,
136
+ Ge as MenuSeparator,
137
+ Ve as MenuSubmenuRoot,
138
+ Be as MenuSubmenuTrigger,
139
+ He as MenuTrigger,
140
+ Vr as MenubarArrow,
141
+ Br as MenubarCheckboxItem,
142
+ Hr as MenubarCheckboxItemIndicator,
143
+ yr as MenubarCheckboxItemLabel,
144
+ Er as MenubarGroup,
145
+ jr as MenubarGroupLabel,
146
+ qr as MenubarItem,
147
+ zr as MenubarMenu,
148
+ Jr as MenubarPopup,
149
+ Kr as MenubarPortal,
150
+ Or as MenubarPositioner,
151
+ Qr as MenubarRadioGroup,
152
+ Ur as MenubarRadioItem,
153
+ Wr as MenubarRadioItemIndicator,
154
+ Xr as MenubarRadioItemLabel,
155
+ Yr as MenubarRoot,
156
+ Zr as MenubarSeparator,
157
+ _r as MenubarSubmenuRoot,
158
+ $r as MenubarSubmenuTrigger,
159
+ ot as MenubarTrigger,
160
+ $o as MeterIndicator,
161
+ oe as MeterLabel,
162
+ ee as MeterRoot,
163
+ re as MeterTrack,
164
+ te as MeterValue,
165
+ ie as NavigationMenuArrow,
166
+ ne as NavigationMenuBackdrop,
167
+ le as NavigationMenuContent,
168
+ ue as NavigationMenuIcon,
169
+ pe as NavigationMenuItem,
170
+ Me as NavigationMenuLink,
171
+ ge as NavigationMenuList,
172
+ de as NavigationMenuPopup,
173
+ me as NavigationMenuPortal,
174
+ xe as NavigationMenuPositioner,
175
+ be as NavigationMenuRoot,
176
+ ce as NavigationMenuTrigger,
177
+ Ce as NavigationMenuViewport,
178
+ Ee as PopoverArrow,
179
+ je as PopoverBackdrop,
180
+ qe as PopoverClose,
181
+ ze as PopoverDescription,
182
+ Je as PopoverPopup,
183
+ Ke as PopoverPortal,
184
+ Oe as PopoverPositioner,
185
+ Qe as PopoverRoot,
186
+ Ue as PopoverTitle,
187
+ We as PopoverTrigger,
188
+ Xe as PopoverViewport,
189
+ Ct as PreviewCardArrow,
190
+ Pt as PreviewCardBackdrop,
191
+ Tt as PreviewCardPopup,
192
+ st as PreviewCardPortal,
193
+ Rt as PreviewCardPositioner,
194
+ It as PreviewCardRoot,
195
+ Dt as PreviewCardTrigger,
196
+ Ze as ProgressIndicator,
197
+ _e as ProgressLabel,
198
+ $e as ProgressRoot,
199
+ or as ProgressTrack,
200
+ er as ProgressValue,
201
+ h as ScrollAreaContent,
202
+ L as ScrollAreaCorner,
203
+ F as ScrollAreaRoot,
204
+ N as ScrollAreaScrollbar,
205
+ G as ScrollAreaThumb,
206
+ V as ScrollAreaViewport,
207
+ H as Separator,
208
+ rt as SliderControl,
209
+ tt as SliderIndicator,
210
+ at as SliderRoot,
211
+ it as SliderThumb,
212
+ nt as SliderTrack,
213
+ lt as SliderValue,
214
+ E as SwitchRoot,
215
+ j as SwitchThumb,
216
+ K as TabsIndicator,
217
+ O as TabsList,
218
+ Q as TabsPanel,
219
+ U as TabsRoot,
220
+ W as TabsTab,
221
+ Fo as Textarea,
222
+ ft as Toast,
223
+ Y as ToastAction,
224
+ Z as ToastClose,
225
+ _ as ToastContent,
226
+ $ as ToastDescription,
227
+ oo as ToastPositioner,
228
+ eo as ToastProvider,
229
+ ro as ToastRoot,
230
+ to as ToastTitle,
231
+ ao as ToastViewport,
232
+ z as Toggle,
233
+ tr as ToggleGroupItem,
234
+ ar as ToggleGroupRoot,
235
+ pt as TooltipArrow,
236
+ Mt as TooltipPopup,
237
+ gt as TooltipPortal,
238
+ dt as TooltipPositioner,
239
+ mt as TooltipProvider,
240
+ xt as TooltipRoot,
241
+ bt as TooltipTrigger
220
242
  };
@@ -0,0 +1,12 @@
1
+ import { Input as Input_2 } from '@base-ui/react/input';
2
+ import { JSX } from 'react/jsx-runtime';
3
+ import * as React_2 from 'react';
4
+
5
+ export declare const Input: {
6
+ ({ className, ...props }: InputProps): JSX.Element;
7
+ displayName: string;
8
+ };
9
+
10
+ export declare type InputProps = React_2.ComponentProps<typeof Input_2>;
11
+
12
+ export { }
package/dist/input.js ADDED
@@ -0,0 +1,10 @@
1
+ "use client";
2
+ import { jsx as r } from "react/jsx-runtime";
3
+ import { Input as s } from "@base-ui/react/input";
4
+ import { i as m } from "./form-variants-D4ge0qav.js";
5
+ import { c as o } from "./utils-B6yFEsav.js";
6
+ const n = ({ className: t, ...p }) => /* @__PURE__ */ r(s, { className: o(m, t), ...p });
7
+ n.displayName = "Input";
8
+ export {
9
+ n as Input
10
+ };
@@ -0,0 +1,11 @@
1
+ import { JSX } from 'react/jsx-runtime';
2
+ import * as React_2 from 'react';
3
+
4
+ export declare const Textarea: {
5
+ ({ className, ...props }: TextareaProps): JSX.Element;
6
+ displayName: string;
7
+ };
8
+
9
+ export declare type TextareaProps = React_2.ComponentProps<'textarea'>;
10
+
11
+ export { }
@@ -0,0 +1,15 @@
1
+ "use client";
2
+ import { jsx as t } from "react/jsx-runtime";
3
+ import { i as r } from "./form-variants-D4ge0qav.js";
4
+ import { c as s } from "./utils-B6yFEsav.js";
5
+ const m = ({ className: a, ...e }) => /* @__PURE__ */ t(
6
+ "textarea",
7
+ {
8
+ className: s(r, "h-auto min-h-20 py-2", a),
9
+ ...e
10
+ }
11
+ );
12
+ m.displayName = "Textarea";
13
+ export {
14
+ m as Textarea
15
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lglab/compose-ui",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "A collection of components built with Base UI & Tailwind CSS",
5
5
  "author": "LGLab",
6
6
  "license": "MIT",
@@ -46,6 +46,14 @@
46
46
  "import": "./dist/card.js",
47
47
  "types": "./dist/card.d.ts"
48
48
  },
49
+ "./checkbox": {
50
+ "import": "./dist/checkbox.js",
51
+ "types": "./dist/checkbox.d.ts"
52
+ },
53
+ "./checkbox-group": {
54
+ "import": "./dist/checkbox-group.js",
55
+ "types": "./dist/checkbox-group.d.ts"
56
+ },
49
57
  "./collapsible": {
50
58
  "import": "./dist/collapsible.js",
51
59
  "types": "./dist/collapsible.d.ts"
@@ -62,6 +70,22 @@
62
70
  "import": "./dist/drawer.js",
63
71
  "types": "./dist/drawer.d.ts"
64
72
  },
73
+ "./field": {
74
+ "import": "./dist/field.js",
75
+ "types": "./dist/field.d.ts"
76
+ },
77
+ "./fieldset": {
78
+ "import": "./dist/fieldset.js",
79
+ "types": "./dist/fieldset.d.ts"
80
+ },
81
+ "./form": {
82
+ "import": "./dist/form.js",
83
+ "types": "./dist/form.d.ts"
84
+ },
85
+ "./input": {
86
+ "import": "./dist/input.js",
87
+ "types": "./dist/input.d.ts"
88
+ },
65
89
  "./menu": {
66
90
  "import": "./dist/menu.js",
67
91
  "types": "./dist/menu.d.ts"
@@ -110,6 +134,10 @@
110
134
  "import": "./dist/tabs.js",
111
135
  "types": "./dist/tabs.d.ts"
112
136
  },
137
+ "./textarea": {
138
+ "import": "./dist/textarea.js",
139
+ "types": "./dist/textarea.d.ts"
140
+ },
113
141
  "./toast": {
114
142
  "import": "./dist/toast.js",
115
143
  "types": "./dist/toast.d.ts"