@lglab/compose-ui 0.36.0 → 0.37.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.
Files changed (81) hide show
  1. package/dist/accordion.d.ts +6 -6
  2. package/dist/accordion.d.ts.map +1 -1
  3. package/dist/alert-dialog.d.ts +10 -10
  4. package/dist/alert-dialog.d.ts.map +1 -1
  5. package/dist/alert.d.ts +8 -8
  6. package/dist/alert.d.ts.map +1 -1
  7. package/dist/autocomplete.d.ts +13 -13
  8. package/dist/autocomplete.d.ts.map +1 -1
  9. package/dist/avatar.d.ts +5 -5
  10. package/dist/badge.d.ts +4 -4
  11. package/dist/breadcrumb.d.ts +6 -6
  12. package/dist/button.d.ts +2 -2
  13. package/dist/calendar.d.ts +2 -2
  14. package/dist/calendar.d.ts.map +1 -1
  15. package/dist/card.d.ts +8 -8
  16. package/dist/card.d.ts.map +1 -1
  17. package/dist/checkbox-group.d.ts +2 -2
  18. package/dist/checkbox-group.d.ts.map +1 -1
  19. package/dist/checkbox.d.ts +3 -3
  20. package/dist/checkbox.d.ts.map +1 -1
  21. package/dist/collapsible.d.ts +4 -4
  22. package/dist/collapsible.d.ts.map +1 -1
  23. package/dist/combobox.d.ts +25 -25
  24. package/dist/components/chart/context.d.ts +2 -2
  25. package/dist/components/chart/legend.d.ts +2 -2
  26. package/dist/components/chart/tooltip.d.ts +2 -2
  27. package/dist/components/table/primitives.d.ts +11 -11
  28. package/dist/components/table/primitives.js +1 -1
  29. package/dist/components/table/primitives.js.map +1 -1
  30. package/dist/context-menu.d.ts +20 -20
  31. package/dist/context-menu.d.ts.map +1 -1
  32. package/dist/dialog.d.ts +11 -11
  33. package/dist/drawer.d.ts +12 -12
  34. package/dist/empty.d.ts +7 -7
  35. package/dist/empty.d.ts.map +1 -1
  36. package/dist/field.d.ts +8 -8
  37. package/dist/field.d.ts.map +1 -1
  38. package/dist/fieldset.d.ts +3 -3
  39. package/dist/fieldset.d.ts.map +1 -1
  40. package/dist/form.d.ts +2 -2
  41. package/dist/form.d.ts.map +1 -1
  42. package/dist/group.d.ts +3 -3
  43. package/dist/group.d.ts.map +1 -1
  44. package/dist/index.d.ts +2 -1
  45. package/dist/index.js +2 -1
  46. package/dist/input.d.ts +2 -2
  47. package/dist/input.d.ts.map +1 -1
  48. package/dist/menu.d.ts +20 -20
  49. package/dist/menu.d.ts.map +1 -1
  50. package/dist/menubar.d.ts +21 -21
  51. package/dist/meter.d.ts +6 -6
  52. package/dist/navigation-menu.d.ts +14 -14
  53. package/dist/number-field.d.ts +8 -8
  54. package/dist/pagination.d.ts +10 -10
  55. package/dist/popover.d.ts +12 -12
  56. package/dist/preview-card.d.ts +8 -8
  57. package/dist/progress.d.ts +6 -6
  58. package/dist/radio-group.d.ts +2 -2
  59. package/dist/radio.d.ts +3 -3
  60. package/dist/scroll-area.d.ts +7 -7
  61. package/dist/scroll-area.d.ts.map +1 -1
  62. package/dist/select.d.ts +19 -19
  63. package/dist/separator.d.ts +2 -2
  64. package/dist/skeleton.d.ts +2 -2
  65. package/dist/slider.d.ts +7 -7
  66. package/dist/slider.d.ts.map +1 -1
  67. package/dist/switch.d.ts +3 -3
  68. package/dist/switch.d.ts.map +1 -1
  69. package/dist/tabs.d.ts +6 -6
  70. package/dist/textarea.d.ts +2 -2
  71. package/dist/timeline.d.ts +81 -0
  72. package/dist/timeline.d.ts.map +1 -0
  73. package/dist/timeline.js +165 -0
  74. package/dist/timeline.js.map +1 -0
  75. package/dist/toast.d.ts +10 -10
  76. package/dist/toggle-group.d.ts +3 -3
  77. package/dist/toggle.d.ts +2 -2
  78. package/dist/toggle.d.ts.map +1 -1
  79. package/dist/toolbar.d.ts +7 -7
  80. package/dist/tooltip.d.ts +8 -8
  81. package/package.json +5 -1
package/dist/dialog.d.ts CHANGED
@@ -1,12 +1,12 @@
1
1
  import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime152 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime232 from "react/jsx-runtime";
4
4
  import { Dialog } from "@base-ui/react/dialog";
5
5
 
6
6
  //#region src/components/dialog.d.ts
7
7
  type DialogRootProps = React.ComponentProps<typeof Dialog.Root>;
8
8
  declare const DialogRoot: {
9
- (props: DialogRootProps): react_jsx_runtime152.JSX.Element;
9
+ (props: DialogRootProps): react_jsx_runtime232.JSX.Element;
10
10
  displayName: string;
11
11
  };
12
12
  type DialogTriggerProps = React.ComponentProps<typeof Dialog.Trigger> & {
@@ -21,12 +21,12 @@ declare const DialogTrigger: {
21
21
  variant,
22
22
  size,
23
23
  ...props
24
- }: DialogTriggerProps): react_jsx_runtime152.JSX.Element;
24
+ }: DialogTriggerProps): react_jsx_runtime232.JSX.Element;
25
25
  displayName: string;
26
26
  };
27
27
  type DialogPortalProps = React.ComponentProps<typeof Dialog.Portal>;
28
28
  declare const DialogPortal: {
29
- (props: DialogPortalProps): react_jsx_runtime152.JSX.Element;
29
+ (props: DialogPortalProps): react_jsx_runtime232.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type DialogBackdropProps = React.ComponentProps<typeof Dialog.Backdrop>;
@@ -34,7 +34,7 @@ declare const DialogBackdrop: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: DialogBackdropProps): react_jsx_runtime152.JSX.Element;
37
+ }: DialogBackdropProps): react_jsx_runtime232.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type DialogPopupProps = React.ComponentProps<typeof Dialog.Popup> & {
@@ -46,7 +46,7 @@ declare const DialogPopup: {
46
46
  className,
47
47
  size,
48
48
  ...props
49
- }: DialogPopupProps): react_jsx_runtime152.JSX.Element;
49
+ }: DialogPopupProps): react_jsx_runtime232.JSX.Element;
50
50
  displayName: string;
51
51
  };
52
52
  type DialogTitleProps = React.ComponentProps<typeof Dialog.Title>;
@@ -54,7 +54,7 @@ declare const DialogTitle: {
54
54
  ({
55
55
  className,
56
56
  ...props
57
- }: DialogTitleProps): react_jsx_runtime152.JSX.Element;
57
+ }: DialogTitleProps): react_jsx_runtime232.JSX.Element;
58
58
  displayName: string;
59
59
  };
60
60
  type DialogDescriptionProps = React.ComponentProps<typeof Dialog.Description>;
@@ -62,7 +62,7 @@ declare const DialogDescription: {
62
62
  ({
63
63
  className,
64
64
  ...props
65
- }: DialogDescriptionProps): react_jsx_runtime152.JSX.Element;
65
+ }: DialogDescriptionProps): react_jsx_runtime232.JSX.Element;
66
66
  displayName: string;
67
67
  };
68
68
  type DialogCloseProps = React.ComponentProps<typeof Dialog.Close> & {
@@ -77,7 +77,7 @@ declare const DialogClose: {
77
77
  variant,
78
78
  size,
79
79
  ...props
80
- }: DialogCloseProps): react_jsx_runtime152.JSX.Element;
80
+ }: DialogCloseProps): react_jsx_runtime232.JSX.Element;
81
81
  displayName: string;
82
82
  };
83
83
  type DialogHeaderProps = React.HTMLAttributes<HTMLDivElement>;
@@ -85,7 +85,7 @@ declare const DialogHeader: {
85
85
  ({
86
86
  className,
87
87
  ...props
88
- }: DialogHeaderProps): react_jsx_runtime152.JSX.Element;
88
+ }: DialogHeaderProps): react_jsx_runtime232.JSX.Element;
89
89
  displayName: string;
90
90
  };
91
91
  type DialogFooterProps = React.HTMLAttributes<HTMLDivElement>;
@@ -93,7 +93,7 @@ declare const DialogFooter: {
93
93
  ({
94
94
  className,
95
95
  ...props
96
- }: DialogFooterProps): react_jsx_runtime152.JSX.Element;
96
+ }: DialogFooterProps): react_jsx_runtime232.JSX.Element;
97
97
  displayName: string;
98
98
  };
99
99
  //#endregion
package/dist/drawer.d.ts CHANGED
@@ -1,12 +1,12 @@
1
1
  import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime141 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime270 from "react/jsx-runtime";
4
4
  import { Dialog } from "@base-ui/react/dialog";
5
5
 
6
6
  //#region src/components/drawer.d.ts
7
7
  type DrawerRootProps = React.ComponentProps<typeof Dialog.Root>;
8
8
  declare const DrawerRoot: {
9
- (props: DrawerRootProps): react_jsx_runtime141.JSX.Element;
9
+ (props: DrawerRootProps): react_jsx_runtime270.JSX.Element;
10
10
  displayName: string;
11
11
  };
12
12
  type DrawerTriggerProps = React.ComponentProps<typeof Dialog.Trigger> & {
@@ -21,12 +21,12 @@ declare const DrawerTrigger: {
21
21
  variant,
22
22
  size,
23
23
  ...props
24
- }: DrawerTriggerProps): react_jsx_runtime141.JSX.Element;
24
+ }: DrawerTriggerProps): react_jsx_runtime270.JSX.Element;
25
25
  displayName: string;
26
26
  };
27
27
  type DrawerPortalProps = React.ComponentProps<typeof Dialog.Portal>;
28
28
  declare const DrawerPortal: {
29
- (props: DrawerPortalProps): react_jsx_runtime141.JSX.Element;
29
+ (props: DrawerPortalProps): react_jsx_runtime270.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type DrawerBackdropProps = React.ComponentProps<typeof Dialog.Backdrop>;
@@ -34,7 +34,7 @@ declare const DrawerBackdrop: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: DrawerBackdropProps): react_jsx_runtime141.JSX.Element;
37
+ }: DrawerBackdropProps): react_jsx_runtime270.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type DrawerPopupProps = React.ComponentProps<typeof Dialog.Popup> & {
@@ -46,7 +46,7 @@ declare const DrawerPopup: {
46
46
  className,
47
47
  side,
48
48
  ...props
49
- }: DrawerPopupProps): react_jsx_runtime141.JSX.Element;
49
+ }: DrawerPopupProps): react_jsx_runtime270.JSX.Element;
50
50
  displayName: string;
51
51
  };
52
52
  type DrawerTitleProps = React.ComponentProps<typeof Dialog.Title>;
@@ -54,7 +54,7 @@ declare const DrawerTitle: {
54
54
  ({
55
55
  className,
56
56
  ...props
57
- }: DrawerTitleProps): react_jsx_runtime141.JSX.Element;
57
+ }: DrawerTitleProps): react_jsx_runtime270.JSX.Element;
58
58
  displayName: string;
59
59
  };
60
60
  type DrawerDescriptionProps = React.ComponentProps<typeof Dialog.Description>;
@@ -62,7 +62,7 @@ declare const DrawerDescription: {
62
62
  ({
63
63
  className,
64
64
  ...props
65
- }: DrawerDescriptionProps): react_jsx_runtime141.JSX.Element;
65
+ }: DrawerDescriptionProps): react_jsx_runtime270.JSX.Element;
66
66
  displayName: string;
67
67
  };
68
68
  type DrawerCloseProps = React.ComponentProps<typeof Dialog.Close> & {
@@ -77,7 +77,7 @@ declare const DrawerClose: {
77
77
  variant,
78
78
  size,
79
79
  ...props
80
- }: DrawerCloseProps): react_jsx_runtime141.JSX.Element;
80
+ }: DrawerCloseProps): react_jsx_runtime270.JSX.Element;
81
81
  displayName: string;
82
82
  };
83
83
  type DrawerHeaderProps = React.HTMLAttributes<HTMLDivElement>;
@@ -85,7 +85,7 @@ declare const DrawerHeader: {
85
85
  ({
86
86
  className,
87
87
  ...props
88
- }: DrawerHeaderProps): react_jsx_runtime141.JSX.Element;
88
+ }: DrawerHeaderProps): react_jsx_runtime270.JSX.Element;
89
89
  displayName: string;
90
90
  };
91
91
  type DrawerContentProps = React.HTMLAttributes<HTMLDivElement>;
@@ -93,7 +93,7 @@ declare const DrawerContent: {
93
93
  ({
94
94
  className,
95
95
  ...props
96
- }: DrawerContentProps): react_jsx_runtime141.JSX.Element;
96
+ }: DrawerContentProps): react_jsx_runtime270.JSX.Element;
97
97
  displayName: string;
98
98
  };
99
99
  type DrawerFooterProps = React.HTMLAttributes<HTMLDivElement>;
@@ -101,7 +101,7 @@ declare const DrawerFooter: {
101
101
  ({
102
102
  className,
103
103
  ...props
104
- }: DrawerFooterProps): react_jsx_runtime141.JSX.Element;
104
+ }: DrawerFooterProps): react_jsx_runtime270.JSX.Element;
105
105
  displayName: string;
106
106
  };
107
107
  //#endregion
package/dist/empty.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime96 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime242 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/empty.d.ts
5
5
  type EmptySize = 'sm' | 'md' | 'lg';
@@ -12,7 +12,7 @@ declare const EmptyRoot: {
12
12
  className,
13
13
  size,
14
14
  ...props
15
- }: EmptyRootProps): react_jsx_runtime96.JSX.Element;
15
+ }: EmptyRootProps): react_jsx_runtime242.JSX.Element;
16
16
  displayName: string;
17
17
  };
18
18
  type EmptyBackgroundProps = React.ComponentProps<'div'>;
@@ -20,7 +20,7 @@ declare const EmptyBackground: {
20
20
  ({
21
21
  className,
22
22
  ...props
23
- }: EmptyBackgroundProps): react_jsx_runtime96.JSX.Element;
23
+ }: EmptyBackgroundProps): react_jsx_runtime242.JSX.Element;
24
24
  displayName: string;
25
25
  };
26
26
  type EmptyIconSize = 'sm' | 'md' | 'lg';
@@ -33,7 +33,7 @@ declare const EmptyIcon: {
33
33
  className,
34
34
  size,
35
35
  ...props
36
- }: EmptyIconProps): react_jsx_runtime96.JSX.Element;
36
+ }: EmptyIconProps): react_jsx_runtime242.JSX.Element;
37
37
  displayName: string;
38
38
  };
39
39
  type EmptyTitleProps<T extends React.ElementType = 'h2'> = {
@@ -46,7 +46,7 @@ declare const EmptyTitle: {
46
46
  as,
47
47
  className,
48
48
  ...props
49
- }: EmptyTitleProps<T>): react_jsx_runtime96.JSX.Element;
49
+ }: EmptyTitleProps<T>): react_jsx_runtime242.JSX.Element;
50
50
  displayName: string;
51
51
  };
52
52
  type EmptyDescriptionProps = React.ComponentProps<'p'>;
@@ -54,7 +54,7 @@ declare const EmptyDescription: {
54
54
  ({
55
55
  className,
56
56
  ...props
57
- }: EmptyDescriptionProps): react_jsx_runtime96.JSX.Element;
57
+ }: EmptyDescriptionProps): react_jsx_runtime242.JSX.Element;
58
58
  displayName: string;
59
59
  };
60
60
  type EmptyActionsProps = React.ComponentProps<'div'>;
@@ -62,7 +62,7 @@ declare const EmptyActions: {
62
62
  ({
63
63
  className,
64
64
  ...props
65
- }: EmptyActionsProps): react_jsx_runtime96.JSX.Element;
65
+ }: EmptyActionsProps): react_jsx_runtime242.JSX.Element;
66
66
  displayName: string;
67
67
  };
68
68
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"empty.d.ts","names":[],"sources":["../src/components/empty.tsx"],"sourcesContent":[],"mappings":";;;;KA2BY,SAAA;KAMP,cAAA,GAAiB,KAAA,CAAM;;EANhB,IAAA,CAAA,EAQH,SARY;AAAqB,CAAA;cAWpC,SALa,EAAA;;IAAG,SAAM;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAKsB,cALtB,CAAA,EAKoC,mBAAA,CAAA,GAAA,CAAA,OALpC;aAEnB,EAAA,MAAA;CAAS;AAAA,KAmBb,oBAAA,GAAuB,KAAA,CAAM,cARjC,CAAA,KAAA,CAAA;cAUK,eAVL,EAAA;;;;KAUiD,uBAAoB,mBAAA,CAAA,GAAA,CAAA;;;AAlBN,KAmDpD,aAAA,GAnDoD,IAAA,GAAA,IAAA,GAAA,IAAA;KAyD3D,cAAA,GAAiB,KAAA,CAAM,cAzDoC,CAAA,KAAA,CAAA,GAAA;EAgB3D;EAEC,IAAA,CAAA,EAyCG,aAhCR;CAAA;cAmCK;;IA5C4C,SAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EA4CA,cA5CA,CAAA,EA4Cc,mBAAA,CAAA,GAAA,CAAA,OA5Cd;aAAoB,EAAA,MAAA;CAAA;AAiCtE,KA2BK,eA3BoB,CAAA,UA2BM,KAAA,CAAM,WA3BZ,GAAA,IAAA,CAAA,GAAA;EAMpB,EAAA,CAAA,EAsBE,CAtBF;EAAc,SAAA,CAAA,EAAA,MAAA;UAAG,CAAM,EAwBf,KAAA,CAAM,SAxBS;IAyBxB,IAvBK,CAuBA,KAAA,CAAM,cAvBN,CAuBqB,CAvBrB,CAAA,EAAA,IAAA,GAAA,WAAA,GAAA,UAAA,CAAA;cAyBH,UAzBgB,EAAA;EAGhB,CAAA,UAsBwB,KAAA,CAAM,WAdnC,GAAA,IAAA,CAAA,CAAA;IAAA,EAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAkBE,eAlBF,CAkBkB,CAlBlB,CAAA,CAAA,EAkBoB,mBAAA,CAAA,GAAA,CAAA,OAlBpB;EAAA,WAAA,EAAA,MAAA;;KAmCI,qBAAA,GAAwB,KAAA,CAAM;cAE7B,gBA7C4C,EAAA;;IAAc,SAAA;IAAA,GAAA;EAAA,CAAA,EA6Cb,qBA7Ca,CAAA,EA6CQ,mBAAA,CAAA,GAAA,CAAA,OA7CR;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA6D3D,iBAAA,GAAoB,KAAA,CAAM,cA7CX,CAAA,KAAA,CAAA;cA+Cd,YA/C+B,EAAA;;IAC9B,SAAA;IAAA,GAAA;EAAA,CAAA,EA8CwC,iBA9CxC,CAAA,EA8CyD,mBAAA,CAAA,GAAA,CAAA,OA9CzD;aAEY,EAAA,MAAA"}
1
+ {"version":3,"file":"empty.d.ts","names":[],"sources":["../src/components/empty.tsx"],"sourcesContent":[],"mappings":";;;;KA2BY,SAAA;KAMP,cAAA,GAAiB,KAAA,CAAM;;EANhB,IAAA,CAAA,EAQH,SARY;AAAqB,CAAA;cAWpC,SALa,EAAA;;IAAG,SAAM;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAKsB,cALtB,CAAA,EAKoC,oBAAA,CAAA,GAAA,CAAA,OALpC;aAEnB,EAAA,MAAA;CAAS;AAAA,KAmBb,oBAAA,GAAuB,KAAA,CAAM,cARjC,CAAA,KAAA,CAAA;cAUK,eAVL,EAAA;;;;KAUiD,uBAAoB,oBAAA,CAAA,GAAA,CAAA;;;AAlBN,KAmDpD,aAAA,GAnDoD,IAAA,GAAA,IAAA,GAAA,IAAA;KAyD3D,cAAA,GAAiB,KAAA,CAAM,cAzDoC,CAAA,KAAA,CAAA,GAAA;EAgB3D;EAEC,IAAA,CAAA,EAyCG,aAhCR;CAAA;cAmCK;;IA5C4C,SAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EA4CA,cA5CA,CAAA,EA4Cc,oBAAA,CAAA,GAAA,CAAA,OA5Cd;aAAoB,EAAA,MAAA;CAAA;AAiCtE,KA2BK,eA3BoB,CAAA,UA2BM,KAAA,CAAM,WA3BZ,GAAA,IAAA,CAAA,GAAA;EAMpB,EAAA,CAAA,EAsBE,CAtBF;EAAc,SAAA,CAAA,EAAA,MAAA;UAAG,CAAM,EAwBf,KAAA,CAAM,SAxBS;IAyBxB,IAvBK,CAuBA,KAAA,CAAM,cAvBN,CAuBqB,CAvBrB,CAAA,EAAA,IAAA,GAAA,WAAA,GAAA,UAAA,CAAA;cAyBH,UAzBgB,EAAA;EAGhB,CAAA,UAsBwB,KAAA,CAAM,WAdnC,GAAA,IAAA,CAAA,CAAA;IAAA,EAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAkBE,eAlBF,CAkBkB,CAlBlB,CAAA,CAAA,EAkBoB,oBAAA,CAAA,GAAA,CAAA,OAlBpB;EAAA,WAAA,EAAA,MAAA;;KAmCI,qBAAA,GAAwB,KAAA,CAAM;cAE7B,gBA7C4C,EAAA;;IAAc,SAAA;IAAA,GAAA;EAAA,CAAA,EA6Cb,qBA7Ca,CAAA,EA6CQ,oBAAA,CAAA,GAAA,CAAA,OA7CR;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA6D3D,iBAAA,GAAoB,KAAA,CAAM,cA7CX,CAAA,KAAA,CAAA;cA+Cd,YA/C+B,EAAA;;IAC9B,SAAA;IAAA,GAAA;EAAA,CAAA,EA8CwC,iBA9CxC,CAAA,EA8CyD,oBAAA,CAAA,GAAA,CAAA,OA9CzD;aAEY,EAAA,MAAA"}
package/dist/field.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime0 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime257 from "react/jsx-runtime";
3
3
  import { Field } from "@base-ui/react/field";
4
4
 
5
5
  //#region src/components/field.d.ts
@@ -8,7 +8,7 @@ declare const FieldRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: FieldRootProps): react_jsx_runtime0.JSX.Element;
11
+ }: FieldRootProps): react_jsx_runtime257.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type FieldLabelProps = React.ComponentProps<typeof Field.Label>;
@@ -16,7 +16,7 @@ declare const FieldLabel: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: FieldLabelProps): react_jsx_runtime0.JSX.Element;
19
+ }: FieldLabelProps): react_jsx_runtime257.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  type FieldControlProps = React.ComponentProps<typeof Field.Control>;
@@ -24,7 +24,7 @@ declare const FieldControl: {
24
24
  ({
25
25
  className,
26
26
  ...props
27
- }: FieldControlProps): react_jsx_runtime0.JSX.Element;
27
+ }: FieldControlProps): react_jsx_runtime257.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type FieldDescriptionProps = React.ComponentProps<typeof Field.Description>;
@@ -32,7 +32,7 @@ declare const FieldDescription: {
32
32
  ({
33
33
  className,
34
34
  ...props
35
- }: FieldDescriptionProps): react_jsx_runtime0.JSX.Element;
35
+ }: FieldDescriptionProps): react_jsx_runtime257.JSX.Element;
36
36
  displayName: string;
37
37
  };
38
38
  type FieldErrorProps = React.ComponentProps<typeof Field.Error>;
@@ -40,7 +40,7 @@ declare const FieldError: {
40
40
  ({
41
41
  className,
42
42
  ...props
43
- }: FieldErrorProps): react_jsx_runtime0.JSX.Element;
43
+ }: FieldErrorProps): react_jsx_runtime257.JSX.Element;
44
44
  displayName: string;
45
45
  };
46
46
  type FieldItemProps = React.ComponentProps<typeof Field.Item>;
@@ -48,12 +48,12 @@ declare const FieldItem: {
48
48
  ({
49
49
  className,
50
50
  ...props
51
- }: FieldItemProps): react_jsx_runtime0.JSX.Element;
51
+ }: FieldItemProps): react_jsx_runtime257.JSX.Element;
52
52
  displayName: string;
53
53
  };
54
54
  type FieldValidityProps = React.ComponentProps<typeof Field.Validity>;
55
55
  declare const FieldValidity: {
56
- (props: FieldValidityProps): react_jsx_runtime0.JSX.Element;
56
+ (props: FieldValidityProps): react_jsx_runtime257.JSX.Element;
57
57
  displayName: string;
58
58
  };
59
59
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"field.d.ts","names":[],"sources":["../src/components/field.tsx"],"sourcesContent":[],"mappings":";;;;;KAmBK,cAAA,GAAiB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEtD;;;;KAAsC,iBAAc,kBAAA,CAAA,GAAA,CAAA;EAFrD,WAAA,EAAA,MAAc;CAAA;KAYd,eAAA,GAAkB,KAAA,CAAM,cAZ+B,CAAA,OAYT,KAAA,CAAU,KAZD,CAAA;cActD,UAdsB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcG,eAdH,CAAA,EAckB,kBAAA,CAAA,GAAA,CAAA,OAdlB;EAEpC,WAAA,EAEL,MAAA;CAAA;KAoBI,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEzD,YAxBsC,EAAA;;IAAc,SAAA;IAAA,GAAA;EAAA,CAAA,EAwBX,iBAxBW,CAAA,EAwBM,kBAAA,CAAA,GAAA,CAAA,OAxBN;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAkCrD,qBAAA,GAAwB,KAAA,CAAM,cAxBf,CAAA,OAwBqC,KAAA,CAAU,WAxB/C,CAAA;cA0Bd,gBA1BuD,EAAA;;IAAtC,SAAM;IAAA,GAAA;EAAA,CAAA,EA0BsB,qBA1BtB,CAAA,EA0B2C,kBAAA,CAAA,GAAA,CAAA,OA1B3C;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAoCtC,eAAA,GAAkB,KAAA,CAAM,cAhC5B,CAAA,OAgCkD,KAAA,CAAU,KAhC5D,CAAA;cAkCK;;IApCuC,SAAA;IAAA,GAAA;EAAA,CAAA,EAoCA,eApCA,CAAA,EAoCe,kBAAA,CAAA,GAAA,CAAA,OApCf;aAAe,EAAA,MAAA;CAAA;AAAA,KA8CvD,cAAA,GAAiB,KAAA,CAAM,cApCN,CAAA,OAoC4B,KAAA,CAAU,IApCtC,CAAA;cAsChB,SAtCgB,EAAA;;IAA+B,SAAU;IAAA,GAAA;EAAA,CAAA,EAsCnB,cAtCmB,CAAA,EAsCL,kBAAA,CAAA,GAAA,CAAA,OAtCK;aAAhC,EAAA,MAAA;CAAc;AAAA,KAgDxC,kBAAA,GAAqB,KAAA,CAAM,cA5C/B,CAAA,OA4CqD,KAAA,CAAU,QA5C/D,CAAA;cA8CK,aA9CL,EAAA;UA8C6B,qBAAkB,kBAAA,CAAA,GAAA,CAAA;aAhDD,EAAA,MAAA"}
1
+ {"version":3,"file":"field.d.ts","names":[],"sources":["../src/components/field.tsx"],"sourcesContent":[],"mappings":";;;;;KAmBK,cAAA,GAAiB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEtD;;;;KAAsC,iBAAc,oBAAA,CAAA,GAAA,CAAA;EAFrD,WAAA,EAAA,MAAc;CAAA;KAYd,eAAA,GAAkB,KAAA,CAAM,cAZ+B,CAAA,OAYT,KAAA,CAAU,KAZD,CAAA;cActD,UAdsB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcG,eAdH,CAAA,EAckB,oBAAA,CAAA,GAAA,CAAA,OAdlB;EAEpC,WAAA,EAEL,MAAA;CAAA;KAoBI,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,KAAA,CAAU;cAEzD,YAxBsC,EAAA;;IAAc,SAAA;IAAA,GAAA;EAAA,CAAA,EAwBX,iBAxBW,CAAA,EAwBM,oBAAA,CAAA,GAAA,CAAA,OAxBN;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAkCrD,qBAAA,GAAwB,KAAA,CAAM,cAxBf,CAAA,OAwBqC,KAAA,CAAU,WAxB/C,CAAA;cA0Bd,gBA1BuD,EAAA;;IAAtC,SAAM;IAAA,GAAA;EAAA,CAAA,EA0BsB,qBA1BtB,CAAA,EA0B2C,oBAAA,CAAA,GAAA,CAAA,OA1B3C;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAoCtC,eAAA,GAAkB,KAAA,CAAM,cAhC5B,CAAA,OAgCkD,KAAA,CAAU,KAhC5D,CAAA;cAkCK;;IApCuC,SAAA;IAAA,GAAA;EAAA,CAAA,EAoCA,eApCA,CAAA,EAoCe,oBAAA,CAAA,GAAA,CAAA,OApCf;aAAe,EAAA,MAAA;CAAA;AAAA,KA8CvD,cAAA,GAAiB,KAAA,CAAM,cApCN,CAAA,OAoC4B,KAAA,CAAU,IApCtC,CAAA;cAsChB,SAtCgB,EAAA;;IAA+B,SAAU;IAAA,GAAA;EAAA,CAAA,EAsCnB,cAtCmB,CAAA,EAsCL,oBAAA,CAAA,GAAA,CAAA,OAtCK;aAAhC,EAAA,MAAA;CAAc;AAAA,KAgDxC,kBAAA,GAAqB,KAAA,CAAM,cA5C/B,CAAA,OA4CqD,KAAA,CAAU,QA5C/D,CAAA;cA8CK,aA9CL,EAAA;UA8C6B,qBAAkB,oBAAA,CAAA,GAAA,CAAA;aAhDD,EAAA,MAAA"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime304 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime15 from "react/jsx-runtime";
3
3
  import { Fieldset } from "@base-ui/react/fieldset";
4
4
 
5
5
  //#region src/components/fieldset.d.ts
@@ -8,7 +8,7 @@ declare const FieldsetRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: FieldsetRootProps): react_jsx_runtime304.JSX.Element;
11
+ }: FieldsetRootProps): react_jsx_runtime15.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type FieldsetLegendProps = React.ComponentProps<typeof Fieldset.Legend>;
@@ -16,7 +16,7 @@ declare const FieldsetLegend: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: FieldsetLegendProps): react_jsx_runtime304.JSX.Element;
19
+ }: FieldsetLegendProps): react_jsx_runtime15.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"fieldset.d.ts","names":[],"sources":["../src/components/fieldset.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,oBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAYjB,mBAAA,GAAsB,KAAA,CAAM,cAZiC,CAAA,OAYX,QAAA,CAAa,MAZF,CAAA;cAc5D,cAdyB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcI,mBAdJ,CAAA,EAcuB,oBAAA,CAAA,GAAA,CAAA,OAdvB;EAEvC,WAAA,EAAA,MAEL;CAAA"}
1
+ {"version":3,"file":"fieldset.d.ts","names":[],"sources":["../src/components/fieldset.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,mBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAYjB,mBAAA,GAAsB,KAAA,CAAM,cAZiC,CAAA,OAYX,QAAA,CAAa,MAZF,CAAA;cAc5D,cAdyB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcI,mBAdJ,CAAA,EAcuB,mBAAA,CAAA,GAAA,CAAA,OAdvB;EAEvC,WAAA,EAAA,MAEL;CAAA"}
package/dist/form.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime281 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime68 from "react/jsx-runtime";
3
3
  import { Form } from "@base-ui/react/form";
4
4
 
5
5
  //#region src/components/form.d.ts
@@ -8,7 +8,7 @@ declare const FormRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: FormRootProps): react_jsx_runtime281.JSX.Element;
11
+ }: FormRootProps): react_jsx_runtime68.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"form.d.ts","names":[],"sources":["../src/components/form.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,aAAA,GAAgB,KAAA,CAAM,sBAAsB;cAE3C;;;;KAAqC,gBAAa,oBAAA,CAAA,GAAA,CAAA;EAFnD,WAAA,EAAA,MAAa;CAAA"}
1
+ {"version":3,"file":"form.d.ts","names":[],"sources":["../src/components/form.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,aAAA,GAAgB,KAAA,CAAM,sBAAsB;cAE3C;;;;KAAqC,gBAAa,mBAAA,CAAA,GAAA,CAAA;EAFnD,WAAA,EAAA,MAAa;CAAA"}
package/dist/group.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime302 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime69 from "react/jsx-runtime";
3
3
 
4
4
  //#region src/components/group.d.ts
5
5
  type GroupRootProps = React.ComponentProps<'div'> & {
@@ -11,7 +11,7 @@ declare const GroupRoot: {
11
11
  className,
12
12
  orientation,
13
13
  ...props
14
- }: GroupRootProps): react_jsx_runtime302.JSX.Element;
14
+ }: GroupRootProps): react_jsx_runtime69.JSX.Element;
15
15
  displayName: string;
16
16
  };
17
17
  type GroupAddonVariant = 'primary' | 'secondary' | 'destructive' | 'ghost';
@@ -28,7 +28,7 @@ declare const GroupAddon: {
28
28
  variant,
29
29
  size,
30
30
  ...props
31
- }: GroupAddonProps): react_jsx_runtime302.JSX.Element;
31
+ }: GroupAddonProps): react_jsx_runtime69.JSX.Element;
32
32
  displayName: string;
33
33
  };
34
34
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"group.d.ts","names":[],"sources":["../src/components/group.tsx"],"sourcesContent":[],"mappings":";;;;KAmCK,cAAA,GAAiB,KAAA,CAAM;;;AAhCE,CAAA;AAgCY,cAKpC,SAYL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,WAAA;IAAA,GAAA;EAAA,CAAA,EARE,cAQF,CAAA,EARgB,oBAAA,CAAA,GAAA,CAAA,OAQhB;;;KAQI,iBAAA,GAhBF,SAAA,GAAA,WAAA,GAAA,aAAA,GAAA,OAAA;KAiBE,cAAA,GAjBY,IAAA,GAAA,SAAA,GAAA,IAAA,GAAA,MAAA,GAAA,SAAA,GAAA,SAAA;KAgDZ,eAAA,GAAkB,KAAA,CAAM,cAhDZ,CAAA,KAAA,CAAA,GAAA;EAgBZ;EACA,OAAA,CAAA,EAiCO,iBAjCO;EA+Bd;EAAe,IAAA,CAAA,EAIX,cAJW;;cAOd,UALM,EAAA;;IAEH,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAGmD,eAHnD,CAAA,EAGkE,oBAAA,CAAA,GAAA,CAAA,OAHlE;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA"}
1
+ {"version":3,"file":"group.d.ts","names":[],"sources":["../src/components/group.tsx"],"sourcesContent":[],"mappings":";;;;KAmCK,cAAA,GAAiB,KAAA,CAAM;;;AAhCE,CAAA;AAgCY,cAKpC,SAYL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,WAAA;IAAA,GAAA;EAAA,CAAA,EARE,cAQF,CAAA,EARgB,mBAAA,CAAA,GAAA,CAAA,OAQhB;;;KAQI,iBAAA,GAhBF,SAAA,GAAA,WAAA,GAAA,aAAA,GAAA,OAAA;KAiBE,cAAA,GAjBY,IAAA,GAAA,SAAA,GAAA,IAAA,GAAA,MAAA,GAAA,SAAA,GAAA,SAAA;KAgDZ,eAAA,GAAkB,KAAA,CAAM,cAhDZ,CAAA,KAAA,CAAA,GAAA;EAgBZ;EACA,OAAA,CAAA,EAiCO,iBAjCO;EA+Bd;EAAe,IAAA,CAAA,EAIX,cAJW;;cAOd,UALM,EAAA;;IAEH,SAAA;IAAA,OAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAGmD,eAHnD,CAAA,EAGkE,mBAAA,CAAA,GAAA,CAAA,OAHlE;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA"}
package/dist/index.d.ts CHANGED
@@ -49,10 +49,11 @@ import { TableBody, TableBodyProps, TableCaption, TableCaptionProps, TableCell,
49
49
  import { useTable } from "./table/use-table.js";
50
50
  import { TabsIndicator, TabsIndicatorProps, TabsList, TabsListProps, TabsPanel, TabsPanelProps, TabsRoot, TabsRootProps, TabsTab, TabsTabProps } from "./tabs.js";
51
51
  import { Textarea, TextareaProps } from "./textarea.js";
52
+ import { TimelineContent, TimelineDescription, TimelineItem, TimelineMarker, TimelineMarkerProps, TimelineRoot, TimelineRootProps, TimelineSpacer, TimelineTime, TimelineTitle } from "./timeline.js";
52
53
  import { Toast, ToastAction, ToastActionProps, ToastClose, ToastCloseProps, ToastContent, ToastContentProps, ToastDescription, ToastDescriptionProps, ToastPositioner, ToastPositionerProps, ToastProvider, ToastProviderProps, ToastRoot, ToastRootProps, ToastTitle, ToastTitleProps, ToastViewport, ToastViewportProps } from "./toast.js";
53
54
  import { ToggleGroupItem, ToggleGroupItemProps, ToggleGroupRoot, ToggleGroupRootProps } from "./toggle-group.js";
54
55
  import { Toggle, ToggleProps } from "./toggle.js";
55
56
  import { ToolbarButton, ToolbarButtonProps, ToolbarGroup, ToolbarGroupProps, ToolbarInput, ToolbarInputProps, ToolbarLink, ToolbarLinkProps, ToolbarRoot, ToolbarRootProps, ToolbarSeparator, ToolbarSeparatorProps } from "./toolbar.js";
56
57
  import { TooltipArrow, TooltipArrowProps, TooltipPopup, TooltipPopupProps, TooltipPortal, TooltipPortalProps, TooltipPositioner, TooltipPositionerProps, TooltipProvider, TooltipProviderProps, TooltipRoot, TooltipRootProps, TooltipTrigger, TooltipTriggerProps } from "./tooltip.js";
57
58
  import { AlertDialog } from "@base-ui/react/alert-dialog";
58
- export { AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, AccordionRoot, type AccordionRootProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertAction, type AlertActionProps, type AlertAppearance, AlertClose, type AlertCloseProps, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogBackdrop, type AlertDialogBackdropProps, AlertDialogClose, type AlertDialogCloseProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogPopup, type AlertDialogPopupProps, AlertDialogPortal, type AlertDialogPortalProps, AlertDialogRoot, type AlertDialogRootProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AlertDialogViewport, type AlertDialogViewportProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertSize, AlertTitle, type AlertTitleProps, type AlertVariant, AutocompleteEmpty, type AutocompleteEmptyProps, AutocompleteInput, type AutocompleteInputProps, AutocompleteItem, type AutocompleteItemProps, AutocompleteList, type AutocompleteListProps, AutocompletePopup, type AutocompletePopupProps, AutocompletePortal, type AutocompletePortalProps, AutocompletePositioner, type AutocompletePositionerProps, AutocompleteRoot, type AutocompleteRootProps, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, AvatarRoot, type AvatarRootProps, AvatarStack, type AvatarStackProps, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbRoot, type BreadcrumbRootProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Calendar, type CalendarProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardRoot, type CardRootProps, CardSection, type CardSectionProps, CardTitle, type CardTitleProps, type ChartConfig, ChartLegendContent, type ChartLegendContentProps, ChartRoot, type ChartRootProps, ChartTooltipContent, type ChartTooltipContentProps, CheckboxGroupRoot, type CheckboxGroupRootProps, CheckboxIndicator, type CheckboxIndicatorProps, CheckboxRoot, type CheckboxRootProps, CollapsiblePanel, type CollapsiblePanelProps, CollapsibleRoot, type CollapsibleRootProps, CollapsibleTrigger, type CollapsibleTriggerProps, type ColumnDef, ComboboxArrow, type ComboboxArrowProps, ComboboxBackdrop, type ComboboxBackdropProps, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxControl, type ComboboxControlProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxIcon, type ComboboxIconProps, ComboboxInput, type ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, type ComboboxItemIndicatorProps, type ComboboxItemProps, ComboboxItemText, type ComboboxItemTextProps, ComboboxList, type ComboboxListProps, ComboboxPopup, type ComboboxPopupProps, ComboboxPortal, type ComboboxPortalProps, ComboboxPositioner, type ComboboxPositionerProps, ComboboxRoot, type ComboboxRootProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, ContextMenuArrow, type ContextMenuArrowProps, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, type ContextMenuCheckboxItemIndicatorProps, ContextMenuCheckboxItemLabel, type ContextMenuCheckboxItemLabelProps, type ContextMenuCheckboxItemProps, ContextMenuGroup, ContextMenuGroupLabel, type ContextMenuGroupLabelProps, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuPopup, type ContextMenuPopupProps, ContextMenuPortal, type ContextMenuPortalProps, ContextMenuPositioner, type ContextMenuPositionerProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, ContextMenuRadioItemIndicator, type ContextMenuRadioItemIndicatorProps, ContextMenuRadioItemLabel, type ContextMenuRadioItemLabelProps, type ContextMenuRadioItemProps, ContextMenuRoot, type ContextMenuRootProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuSubmenuRoot, type ContextMenuSubmenuRootProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type ControlSize, DialogBackdrop, type DialogBackdropProps, DialogClose, type DialogCloseProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogPopup, type DialogPopupProps, DialogPortal, type DialogPortalProps, DialogRoot, type DialogRootProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DrawerBackdrop, type DrawerBackdropProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerPopup, type DrawerPopupProps, DrawerPortal, type DrawerPortalProps, DrawerRoot, type DrawerRootProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, EmptyActions, type EmptyActionsProps, EmptyBackground, type EmptyBackgroundProps, EmptyDescription, type EmptyDescriptionProps, EmptyIcon, type EmptyIconProps, type EmptyIconSize, EmptyRoot, type EmptyRootProps, type EmptySize, EmptyTitle, type EmptyTitleProps, FieldControl, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, FieldRoot, type FieldRootProps, FieldValidity, type FieldValidityProps, FieldsetLegend, type FieldsetLegendProps, FieldsetRoot, type FieldsetRootProps, FormRoot, type FormRootProps, GroupAddon, type GroupAddonProps, type GroupAddonSize, type GroupAddonVariant, GroupRoot, type GroupRootProps, type IndicatorType, Input, type InputProps, MenuArrow, type MenuArrowProps, MenuCheckboxItem, MenuCheckboxItemIndicator, type MenuCheckboxItemIndicatorProps, MenuCheckboxItemLabel, type MenuCheckboxItemLabelProps, type MenuCheckboxItemProps, MenuGroup, MenuGroupLabel, type MenuGroupLabelProps, type MenuGroupProps, MenuItem, type MenuItemProps, MenuPopup, type MenuPopupProps, MenuPortal, type MenuPortalProps, MenuPositioner, type MenuPositionerProps, MenuRadioGroup, type MenuRadioGroupProps, MenuRadioItem, MenuRadioItemIndicator, type MenuRadioItemIndicatorProps, MenuRadioItemLabel, type MenuRadioItemLabelProps, type MenuRadioItemProps, MenuRoot, type MenuRootProps, MenuSeparator, type MenuSeparatorProps, MenuSubmenuRoot, type MenuSubmenuRootProps, MenuSubmenuTrigger, type MenuSubmenuTriggerProps, MenuTrigger, type MenuTriggerProps, MenubarArrow, type MenubarArrowProps, MenubarCheckboxItem, MenubarCheckboxItemIndicator, type MenubarCheckboxItemIndicatorProps, MenubarCheckboxItemLabel, type MenubarCheckboxItemLabelProps, type MenubarCheckboxItemProps, MenubarGroup, MenubarGroupLabel, type MenubarGroupLabelProps, type MenubarGroupProps, MenubarItem, type MenubarItemProps, MenubarMenu, type MenubarMenuProps, MenubarPopup, type MenubarPopupProps, MenubarPortal, type MenubarPortalProps, MenubarPositioner, type MenubarPositionerProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, MenubarRadioItemIndicator, type MenubarRadioItemIndicatorProps, MenubarRadioItemLabel, type MenubarRadioItemLabelProps, type MenubarRadioItemProps, MenubarRoot, type MenubarRootProps, MenubarSeparator, type MenubarSeparatorProps, MenubarSubmenuRoot, type MenubarSubmenuRootProps, MenubarSubmenuTrigger, type MenubarSubmenuTriggerProps, MenubarTrigger, type MenubarTriggerProps, MeterIndicator, type MeterIndicatorProps, MeterLabel, type MeterLabelProps, MeterRoot, type MeterRootProps, MeterTrack, type MeterTrackProps, MeterValue, type MeterValueProps, NavigationMenuArrow, type NavigationMenuArrowProps, NavigationMenuBackdrop, type NavigationMenuBackdropProps, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIcon, type NavigationMenuIconProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, NavigationMenuPopup, type NavigationMenuPopupProps, NavigationMenuPortal, type NavigationMenuPortalProps, NavigationMenuPositioner, type NavigationMenuPositionerProps, NavigationMenuRoot, type NavigationMenuRootProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, type NavigationMenuViewportProps, NumberFieldDecrement, type NumberFieldDecrementProps, NumberFieldGroup, type NumberFieldGroupProps, NumberFieldIncrement, type NumberFieldIncrementProps, NumberFieldInput, type NumberFieldInputProps, NumberFieldRoot, type NumberFieldRootProps, NumberFieldScrubArea, NumberFieldScrubAreaCursor, type NumberFieldScrubAreaCursorProps, type NumberFieldScrubAreaProps, PaginationButton, type PaginationButtonProps, type PaginationConfig, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationFirst, type PaginationFirstProps, PaginationItem, type PaginationItemProps, PaginationLast, type PaginationLastProps, PaginationNext, type PaginationNextProps, type PaginationPage, PaginationPrevious, type PaginationPreviousProps, PaginationRoot, type PaginationRootProps, PopoverArrow, type PopoverArrowProps, PopoverBackdrop, type PopoverBackdropProps, PopoverClose, type PopoverCloseProps, PopoverDescription, type PopoverDescriptionProps, PopoverPopup, type PopoverPopupProps, PopoverPortal, type PopoverPortalProps, PopoverPositioner, type PopoverPositionerProps, PopoverRoot, type PopoverRootProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PopoverViewport, type PopoverViewportProps, PreviewCardArrow, type PreviewCardArrowProps, PreviewCardBackdrop, type PreviewCardBackdropProps, PreviewCardPopup, type PreviewCardPopupProps, PreviewCardPortal, type PreviewCardPortalProps, PreviewCardPositioner, type PreviewCardPositionerProps, PreviewCardRoot, type PreviewCardRootProps, PreviewCardTrigger, type PreviewCardTriggerProps, type ProcessedColumn, ProgressIndicator, type ProgressIndicatorProps, ProgressLabel, type ProgressLabelProps, ProgressRoot, type ProgressRootProps, ProgressTrack, type ProgressTrackProps, ProgressValue, type ProgressValueProps, RadioGroupRoot, type RadioGroupRootProps, RadioIndicator, type RadioIndicatorProps, RadioRoot, type RadioRootProps, ScrollAreaContent, type ScrollAreaContentProps, ScrollAreaCorner, type ScrollAreaCornerProps, ScrollAreaRoot, type ScrollAreaRootProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, ScrollAreaViewport, type ScrollAreaViewportProps, SelectArrow, type SelectArrowProps, SelectBackdrop, type SelectBackdropProps, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectList, type SelectListProps, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, SelectPositioner, type SelectPositionerProps, SelectRoot, type SelectRootProps, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, Separator, type SeparatorProps, Skeleton, type SkeletonProps, SliderControl, type SliderControlProps, SliderIndicator, type SliderIndicatorProps, SliderRoot, type SliderRootProps, SliderThumb, type SliderThumbProps, SliderTrack, type SliderTrackProps, SliderValue, type SliderValueProps, type SortDirection, SwitchRoot, type SwitchRootProps, SwitchThumb, type SwitchThumbProps, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableRoot, type TableRootProps, TableRow, type TableRowProps, TabsIndicator, type TabsIndicatorProps, TabsList, type TabsListProps, TabsPanel, type TabsPanelProps, TabsRoot, type TabsRootProps, TabsTab, type TabsTabProps, Textarea, type TextareaProps, Toast, ToastAction, type ToastActionProps, ToastClose, type ToastCloseProps, ToastContent, type ToastContentProps, ToastDescription, type ToastDescriptionProps, ToastPositioner, type ToastPositionerProps, ToastProvider, type ToastProviderProps, ToastRoot, type ToastRootProps, ToastTitle, type ToastTitleProps, ToastViewport, type ToastViewportProps, Toggle, ToggleGroupItem, type ToggleGroupItemProps, ToggleGroupRoot, type ToggleGroupRootProps, type ToggleProps, ToolbarButton, type ToolbarButtonProps, ToolbarGroup, type ToolbarGroupProps, ToolbarInput, type ToolbarInputProps, ToolbarLink, type ToolbarLinkProps, ToolbarRoot, type ToolbarRootProps, ToolbarSeparator, type ToolbarSeparatorProps, TooltipArrow, type TooltipArrowProps, TooltipPopup, type TooltipPopupProps, TooltipPortal, type TooltipPortalProps, TooltipPositioner, type TooltipPositionerProps, TooltipProvider, type TooltipProviderProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerProps, type UsePaginationOptions, type UsePaginationReturn, type UseTableOptions, type UseTableReturn, useChartContext, usePagination, useTable };
59
+ export { AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemProps, AccordionPanel, type AccordionPanelProps, AccordionRoot, type AccordionRootProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertAction, type AlertActionProps, type AlertAppearance, AlertClose, type AlertCloseProps, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogBackdrop, type AlertDialogBackdropProps, AlertDialogClose, type AlertDialogCloseProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogPopup, type AlertDialogPopupProps, AlertDialogPortal, type AlertDialogPortalProps, AlertDialogRoot, type AlertDialogRootProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, AlertDialogViewport, type AlertDialogViewportProps, AlertIcon, type AlertIconProps, type AlertProps, type AlertSize, AlertTitle, type AlertTitleProps, type AlertVariant, AutocompleteEmpty, type AutocompleteEmptyProps, AutocompleteInput, type AutocompleteInputProps, AutocompleteItem, type AutocompleteItemProps, AutocompleteList, type AutocompleteListProps, AutocompletePopup, type AutocompletePopupProps, AutocompletePortal, type AutocompletePortalProps, AutocompletePositioner, type AutocompletePositionerProps, AutocompleteRoot, type AutocompleteRootProps, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, AvatarRoot, type AvatarRootProps, AvatarStack, type AvatarStackProps, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbRoot, type BreadcrumbRootProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Calendar, type CalendarProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, CardMedia, type CardMediaProps, CardRoot, type CardRootProps, CardSection, type CardSectionProps, CardTitle, type CardTitleProps, type ChartConfig, ChartLegendContent, type ChartLegendContentProps, ChartRoot, type ChartRootProps, ChartTooltipContent, type ChartTooltipContentProps, CheckboxGroupRoot, type CheckboxGroupRootProps, CheckboxIndicator, type CheckboxIndicatorProps, CheckboxRoot, type CheckboxRootProps, CollapsiblePanel, type CollapsiblePanelProps, CollapsibleRoot, type CollapsibleRootProps, CollapsibleTrigger, type CollapsibleTriggerProps, type ColumnDef, ComboboxArrow, type ComboboxArrowProps, ComboboxBackdrop, type ComboboxBackdropProps, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxControl, type ComboboxControlProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxIcon, type ComboboxIconProps, ComboboxInput, type ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, type ComboboxItemIndicatorProps, type ComboboxItemProps, ComboboxItemText, type ComboboxItemTextProps, ComboboxList, type ComboboxListProps, ComboboxPopup, type ComboboxPopupProps, ComboboxPortal, type ComboboxPortalProps, ComboboxPositioner, type ComboboxPositionerProps, ComboboxRoot, type ComboboxRootProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, ContextMenuArrow, type ContextMenuArrowProps, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, type ContextMenuCheckboxItemIndicatorProps, ContextMenuCheckboxItemLabel, type ContextMenuCheckboxItemLabelProps, type ContextMenuCheckboxItemProps, ContextMenuGroup, ContextMenuGroupLabel, type ContextMenuGroupLabelProps, type ContextMenuGroupProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuPopup, type ContextMenuPopupProps, ContextMenuPortal, type ContextMenuPortalProps, ContextMenuPositioner, type ContextMenuPositionerProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, ContextMenuRadioItemIndicator, type ContextMenuRadioItemIndicatorProps, ContextMenuRadioItemLabel, type ContextMenuRadioItemLabelProps, type ContextMenuRadioItemProps, ContextMenuRoot, type ContextMenuRootProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuSubmenuRoot, type ContextMenuSubmenuRootProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type ControlSize, DialogBackdrop, type DialogBackdropProps, DialogClose, type DialogCloseProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogPopup, type DialogPopupProps, DialogPortal, type DialogPortalProps, DialogRoot, type DialogRootProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DrawerBackdrop, type DrawerBackdropProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerPopup, type DrawerPopupProps, DrawerPortal, type DrawerPortalProps, DrawerRoot, type DrawerRootProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, EmptyActions, type EmptyActionsProps, EmptyBackground, type EmptyBackgroundProps, EmptyDescription, type EmptyDescriptionProps, EmptyIcon, type EmptyIconProps, type EmptyIconSize, EmptyRoot, type EmptyRootProps, type EmptySize, EmptyTitle, type EmptyTitleProps, FieldControl, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, FieldRoot, type FieldRootProps, FieldValidity, type FieldValidityProps, FieldsetLegend, type FieldsetLegendProps, FieldsetRoot, type FieldsetRootProps, FormRoot, type FormRootProps, GroupAddon, type GroupAddonProps, type GroupAddonSize, type GroupAddonVariant, GroupRoot, type GroupRootProps, type IndicatorType, Input, type InputProps, MenuArrow, type MenuArrowProps, MenuCheckboxItem, MenuCheckboxItemIndicator, type MenuCheckboxItemIndicatorProps, MenuCheckboxItemLabel, type MenuCheckboxItemLabelProps, type MenuCheckboxItemProps, MenuGroup, MenuGroupLabel, type MenuGroupLabelProps, type MenuGroupProps, MenuItem, type MenuItemProps, MenuPopup, type MenuPopupProps, MenuPortal, type MenuPortalProps, MenuPositioner, type MenuPositionerProps, MenuRadioGroup, type MenuRadioGroupProps, MenuRadioItem, MenuRadioItemIndicator, type MenuRadioItemIndicatorProps, MenuRadioItemLabel, type MenuRadioItemLabelProps, type MenuRadioItemProps, MenuRoot, type MenuRootProps, MenuSeparator, type MenuSeparatorProps, MenuSubmenuRoot, type MenuSubmenuRootProps, MenuSubmenuTrigger, type MenuSubmenuTriggerProps, MenuTrigger, type MenuTriggerProps, MenubarArrow, type MenubarArrowProps, MenubarCheckboxItem, MenubarCheckboxItemIndicator, type MenubarCheckboxItemIndicatorProps, MenubarCheckboxItemLabel, type MenubarCheckboxItemLabelProps, type MenubarCheckboxItemProps, MenubarGroup, MenubarGroupLabel, type MenubarGroupLabelProps, type MenubarGroupProps, MenubarItem, type MenubarItemProps, MenubarMenu, type MenubarMenuProps, MenubarPopup, type MenubarPopupProps, MenubarPortal, type MenubarPortalProps, MenubarPositioner, type MenubarPositionerProps, MenubarRadioGroup, type MenubarRadioGroupProps, MenubarRadioItem, MenubarRadioItemIndicator, type MenubarRadioItemIndicatorProps, MenubarRadioItemLabel, type MenubarRadioItemLabelProps, type MenubarRadioItemProps, MenubarRoot, type MenubarRootProps, MenubarSeparator, type MenubarSeparatorProps, MenubarSubmenuRoot, type MenubarSubmenuRootProps, MenubarSubmenuTrigger, type MenubarSubmenuTriggerProps, MenubarTrigger, type MenubarTriggerProps, MeterIndicator, type MeterIndicatorProps, MeterLabel, type MeterLabelProps, MeterRoot, type MeterRootProps, MeterTrack, type MeterTrackProps, MeterValue, type MeterValueProps, NavigationMenuArrow, type NavigationMenuArrowProps, NavigationMenuBackdrop, type NavigationMenuBackdropProps, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIcon, type NavigationMenuIconProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, NavigationMenuPopup, type NavigationMenuPopupProps, NavigationMenuPortal, type NavigationMenuPortalProps, NavigationMenuPositioner, type NavigationMenuPositionerProps, NavigationMenuRoot, type NavigationMenuRootProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, NavigationMenuViewport, type NavigationMenuViewportProps, NumberFieldDecrement, type NumberFieldDecrementProps, NumberFieldGroup, type NumberFieldGroupProps, NumberFieldIncrement, type NumberFieldIncrementProps, NumberFieldInput, type NumberFieldInputProps, NumberFieldRoot, type NumberFieldRootProps, NumberFieldScrubArea, NumberFieldScrubAreaCursor, type NumberFieldScrubAreaCursorProps, type NumberFieldScrubAreaProps, PaginationButton, type PaginationButtonProps, type PaginationConfig, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationFirst, type PaginationFirstProps, PaginationItem, type PaginationItemProps, PaginationLast, type PaginationLastProps, PaginationNext, type PaginationNextProps, type PaginationPage, PaginationPrevious, type PaginationPreviousProps, PaginationRoot, type PaginationRootProps, PopoverArrow, type PopoverArrowProps, PopoverBackdrop, type PopoverBackdropProps, PopoverClose, type PopoverCloseProps, PopoverDescription, type PopoverDescriptionProps, PopoverPopup, type PopoverPopupProps, PopoverPortal, type PopoverPortalProps, PopoverPositioner, type PopoverPositionerProps, PopoverRoot, type PopoverRootProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PopoverViewport, type PopoverViewportProps, PreviewCardArrow, type PreviewCardArrowProps, PreviewCardBackdrop, type PreviewCardBackdropProps, PreviewCardPopup, type PreviewCardPopupProps, PreviewCardPortal, type PreviewCardPortalProps, PreviewCardPositioner, type PreviewCardPositionerProps, PreviewCardRoot, type PreviewCardRootProps, PreviewCardTrigger, type PreviewCardTriggerProps, type ProcessedColumn, ProgressIndicator, type ProgressIndicatorProps, ProgressLabel, type ProgressLabelProps, ProgressRoot, type ProgressRootProps, ProgressTrack, type ProgressTrackProps, ProgressValue, type ProgressValueProps, RadioGroupRoot, type RadioGroupRootProps, RadioIndicator, type RadioIndicatorProps, RadioRoot, type RadioRootProps, ScrollAreaContent, type ScrollAreaContentProps, ScrollAreaCorner, type ScrollAreaCornerProps, ScrollAreaRoot, type ScrollAreaRootProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, ScrollAreaViewport, type ScrollAreaViewportProps, SelectArrow, type SelectArrowProps, SelectBackdrop, type SelectBackdropProps, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectList, type SelectListProps, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, SelectPositioner, type SelectPositionerProps, SelectRoot, type SelectRootProps, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, Separator, type SeparatorProps, Skeleton, type SkeletonProps, SliderControl, type SliderControlProps, SliderIndicator, type SliderIndicatorProps, SliderRoot, type SliderRootProps, SliderThumb, type SliderThumbProps, SliderTrack, type SliderTrackProps, SliderValue, type SliderValueProps, type SortDirection, SwitchRoot, type SwitchRootProps, SwitchThumb, type SwitchThumbProps, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableRoot, type TableRootProps, TableRow, type TableRowProps, TabsIndicator, type TabsIndicatorProps, TabsList, type TabsListProps, TabsPanel, type TabsPanelProps, TabsRoot, type TabsRootProps, TabsTab, type TabsTabProps, Textarea, type TextareaProps, TimelineContent, TimelineDescription, TimelineItem, TimelineMarker, type TimelineMarkerProps, TimelineRoot, type TimelineRootProps, TimelineSpacer, TimelineTime, TimelineTitle, Toast, ToastAction, type ToastActionProps, ToastClose, type ToastCloseProps, ToastContent, type ToastContentProps, ToastDescription, type ToastDescriptionProps, ToastPositioner, type ToastPositionerProps, ToastProvider, type ToastProviderProps, ToastRoot, type ToastRootProps, ToastTitle, type ToastTitleProps, ToastViewport, type ToastViewportProps, Toggle, ToggleGroupItem, type ToggleGroupItemProps, ToggleGroupRoot, type ToggleGroupRootProps, type ToggleProps, ToolbarButton, type ToolbarButtonProps, ToolbarGroup, type ToolbarGroupProps, ToolbarInput, type ToolbarInputProps, ToolbarLink, type ToolbarLinkProps, ToolbarRoot, type ToolbarRootProps, ToolbarSeparator, type ToolbarSeparatorProps, TooltipArrow, type TooltipArrowProps, TooltipPopup, type TooltipPopupProps, TooltipPortal, type TooltipPortalProps, TooltipPositioner, type TooltipPositionerProps, TooltipProvider, type TooltipProviderProps, TooltipRoot, type TooltipRootProps, TooltipTrigger, type TooltipTriggerProps, type UsePaginationOptions, type UsePaginationReturn, type UseTableOptions, type UseTableReturn, useChartContext, usePagination, useTable };
package/dist/index.js CHANGED
@@ -18,6 +18,7 @@ import { Toggle } from "./toggle.js";
18
18
  import { TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsTab } from "./tabs.js";
19
19
  import { TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRoot, TableRow } from "./components/table/primitives.js";
20
20
  import { useTable } from "./table/use-table.js";
21
+ import { TimelineContent, TimelineDescription, TimelineItem, TimelineMarker, TimelineRoot, TimelineSpacer, TimelineTime, TimelineTitle } from "./timeline.js";
21
22
  import { Toast, ToastAction, ToastClose, ToastContent, ToastDescription, ToastPositioner, ToastProvider, ToastRoot, ToastTitle, ToastViewport } from "./toast.js";
22
23
  import { DialogBackdrop, DialogClose, DialogDescription, DialogFooter, DialogHeader, DialogPopup, DialogPortal, DialogRoot, DialogTitle, DialogTrigger } from "./dialog.js";
23
24
  import { DrawerBackdrop, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerPopup, DrawerPortal, DrawerRoot, DrawerTitle, DrawerTrigger } from "./drawer.js";
@@ -53,4 +54,4 @@ import { ChartTooltipContent } from "./components/chart/tooltip.js";
53
54
  import { ChartLegendContent } from "./components/chart/legend.js";
54
55
  import { AlertDialog } from "@base-ui/react/alert-dialog";
55
56
 
56
- export { AccordionHeader, AccordionItem, AccordionPanel, AccordionRoot, AccordionTrigger, Alert, AlertAction, AlertClose, AlertContent, AlertDescription, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogDescription, AlertDialogPopup, AlertDialogPortal, AlertDialogRoot, AlertDialogTitle, AlertDialogTrigger, AlertDialogViewport, AlertIcon, AlertTitle, AutocompleteEmpty, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePopup, AutocompletePortal, AutocompletePositioner, AutocompleteRoot, AvatarFallback, AvatarImage, AvatarRoot, AvatarStack, Badge, BadgeButton, BadgeDot, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbRoot, BreadcrumbSeparator, Button, Calendar, CardContent, CardDescription, CardFooter, CardHeader, CardMedia, CardRoot, CardSection, CardTitle, ChartLegendContent, ChartRoot, ChartTooltipContent, CheckboxGroupRoot, CheckboxIndicator, CheckboxRoot, CollapsiblePanel, CollapsibleRoot, CollapsibleTrigger, ComboboxArrow, ComboboxBackdrop, ComboboxChip, ComboboxChipRemove, ComboboxChips, ComboboxClear, ComboboxControl, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxIcon, ComboboxInput, ComboboxItem, ComboboxItemIndicator, ComboboxItemText, ComboboxList, ComboboxPopup, ComboboxPortal, ComboboxPositioner, ComboboxRoot, ComboboxSeparator, ComboboxTrigger, ComboboxValue, ContextMenuArrow, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, ContextMenuCheckboxItemLabel, ContextMenuGroup, ContextMenuGroupLabel, ContextMenuItem, ContextMenuPopup, ContextMenuPortal, ContextMenuPositioner, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuRadioItemIndicator, ContextMenuRadioItemLabel, ContextMenuRoot, ContextMenuSeparator, ContextMenuSubmenuRoot, ContextMenuSubmenuTrigger, ContextMenuTrigger, DialogBackdrop, DialogClose, DialogDescription, DialogFooter, DialogHeader, DialogPopup, DialogPortal, DialogRoot, DialogTitle, DialogTrigger, DrawerBackdrop, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerPopup, DrawerPortal, DrawerRoot, DrawerTitle, DrawerTrigger, EmptyActions, EmptyBackground, EmptyDescription, EmptyIcon, EmptyRoot, EmptyTitle, FieldControl, FieldDescription, FieldError, FieldItem, FieldLabel, FieldRoot, FieldValidity, FieldsetLegend, FieldsetRoot, FormRoot, GroupAddon, GroupRoot, Input, MenuArrow, MenuCheckboxItem, MenuCheckboxItemIndicator, MenuCheckboxItemLabel, MenuGroup, MenuGroupLabel, MenuItem, MenuPopup, MenuPortal, MenuPositioner, MenuRadioGroup, MenuRadioItem, MenuRadioItemIndicator, MenuRadioItemLabel, MenuRoot, MenuSeparator, MenuSubmenuRoot, MenuSubmenuTrigger, MenuTrigger, MenubarArrow, MenubarCheckboxItem, MenubarCheckboxItemIndicator, MenubarCheckboxItemLabel, MenubarGroup, MenubarGroupLabel, MenubarItem, MenubarMenu, MenubarPopup, MenubarPortal, MenubarPositioner, MenubarRadioGroup, MenubarRadioItem, MenubarRadioItemIndicator, MenubarRadioItemLabel, MenubarRoot, MenubarSeparator, MenubarSubmenuRoot, MenubarSubmenuTrigger, MenubarTrigger, MeterIndicator, MeterLabel, MeterRoot, MeterTrack, MeterValue, NavigationMenuArrow, NavigationMenuBackdrop, NavigationMenuContent, NavigationMenuIcon, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPopup, NavigationMenuPortal, NavigationMenuPositioner, NavigationMenuRoot, NavigationMenuTrigger, NavigationMenuViewport, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldRoot, NumberFieldScrubArea, NumberFieldScrubAreaCursor, PaginationButton, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationNext, PaginationPrevious, PaginationRoot, PopoverArrow, PopoverBackdrop, PopoverClose, PopoverDescription, PopoverPopup, PopoverPortal, PopoverPositioner, PopoverRoot, PopoverTitle, PopoverTrigger, PopoverViewport, PreviewCardArrow, PreviewCardBackdrop, PreviewCardPopup, PreviewCardPortal, PreviewCardPositioner, PreviewCardRoot, PreviewCardTrigger, ProgressIndicator, ProgressLabel, ProgressRoot, ProgressTrack, ProgressValue, RadioGroupRoot, RadioIndicator, RadioRoot, ScrollAreaContent, ScrollAreaCorner, ScrollAreaRoot, ScrollAreaScrollbar, ScrollAreaThumb, ScrollAreaViewport, SelectArrow, SelectBackdrop, SelectGroup, SelectGroupLabel, SelectIcon, SelectItem, SelectItemIndicator, SelectItemText, SelectList, SelectPopup, SelectPortal, SelectPositioner, SelectRoot, SelectScrollDownArrow, SelectScrollUpArrow, SelectSeparator, SelectTrigger, SelectValue, Separator, Skeleton, SliderControl, SliderIndicator, SliderRoot, SliderThumb, SliderTrack, SliderValue, SwitchRoot, SwitchThumb, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRoot, TableRow, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsTab, Textarea, Toast, ToastAction, ToastClose, ToastContent, ToastDescription, ToastPositioner, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toggle, ToggleGroupItem, ToggleGroupRoot, ToolbarButton, ToolbarGroup, ToolbarInput, ToolbarLink, ToolbarRoot, ToolbarSeparator, TooltipArrow, TooltipPopup, TooltipPortal, TooltipPositioner, TooltipProvider, TooltipRoot, TooltipTrigger, useChartContext, usePagination, useTable };
57
+ export { AccordionHeader, AccordionItem, AccordionPanel, AccordionRoot, AccordionTrigger, Alert, AlertAction, AlertClose, AlertContent, AlertDescription, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogDescription, AlertDialogPopup, AlertDialogPortal, AlertDialogRoot, AlertDialogTitle, AlertDialogTrigger, AlertDialogViewport, AlertIcon, AlertTitle, AutocompleteEmpty, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePopup, AutocompletePortal, AutocompletePositioner, AutocompleteRoot, AvatarFallback, AvatarImage, AvatarRoot, AvatarStack, Badge, BadgeButton, BadgeDot, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbPage, BreadcrumbRoot, BreadcrumbSeparator, Button, Calendar, CardContent, CardDescription, CardFooter, CardHeader, CardMedia, CardRoot, CardSection, CardTitle, ChartLegendContent, ChartRoot, ChartTooltipContent, CheckboxGroupRoot, CheckboxIndicator, CheckboxRoot, CollapsiblePanel, CollapsibleRoot, CollapsibleTrigger, ComboboxArrow, ComboboxBackdrop, ComboboxChip, ComboboxChipRemove, ComboboxChips, ComboboxClear, ComboboxControl, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxIcon, ComboboxInput, ComboboxItem, ComboboxItemIndicator, ComboboxItemText, ComboboxList, ComboboxPopup, ComboboxPortal, ComboboxPositioner, ComboboxRoot, ComboboxSeparator, ComboboxTrigger, ComboboxValue, ContextMenuArrow, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, ContextMenuCheckboxItemLabel, ContextMenuGroup, ContextMenuGroupLabel, ContextMenuItem, ContextMenuPopup, ContextMenuPortal, ContextMenuPositioner, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuRadioItemIndicator, ContextMenuRadioItemLabel, ContextMenuRoot, ContextMenuSeparator, ContextMenuSubmenuRoot, ContextMenuSubmenuTrigger, ContextMenuTrigger, DialogBackdrop, DialogClose, DialogDescription, DialogFooter, DialogHeader, DialogPopup, DialogPortal, DialogRoot, DialogTitle, DialogTrigger, DrawerBackdrop, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerPopup, DrawerPortal, DrawerRoot, DrawerTitle, DrawerTrigger, EmptyActions, EmptyBackground, EmptyDescription, EmptyIcon, EmptyRoot, EmptyTitle, FieldControl, FieldDescription, FieldError, FieldItem, FieldLabel, FieldRoot, FieldValidity, FieldsetLegend, FieldsetRoot, FormRoot, GroupAddon, GroupRoot, Input, MenuArrow, MenuCheckboxItem, MenuCheckboxItemIndicator, MenuCheckboxItemLabel, MenuGroup, MenuGroupLabel, MenuItem, MenuPopup, MenuPortal, MenuPositioner, MenuRadioGroup, MenuRadioItem, MenuRadioItemIndicator, MenuRadioItemLabel, MenuRoot, MenuSeparator, MenuSubmenuRoot, MenuSubmenuTrigger, MenuTrigger, MenubarArrow, MenubarCheckboxItem, MenubarCheckboxItemIndicator, MenubarCheckboxItemLabel, MenubarGroup, MenubarGroupLabel, MenubarItem, MenubarMenu, MenubarPopup, MenubarPortal, MenubarPositioner, MenubarRadioGroup, MenubarRadioItem, MenubarRadioItemIndicator, MenubarRadioItemLabel, MenubarRoot, MenubarSeparator, MenubarSubmenuRoot, MenubarSubmenuTrigger, MenubarTrigger, MeterIndicator, MeterLabel, MeterRoot, MeterTrack, MeterValue, NavigationMenuArrow, NavigationMenuBackdrop, NavigationMenuContent, NavigationMenuIcon, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPopup, NavigationMenuPortal, NavigationMenuPositioner, NavigationMenuRoot, NavigationMenuTrigger, NavigationMenuViewport, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldRoot, NumberFieldScrubArea, NumberFieldScrubAreaCursor, PaginationButton, PaginationContent, PaginationEllipsis, PaginationFirst, PaginationItem, PaginationLast, PaginationNext, PaginationPrevious, PaginationRoot, PopoverArrow, PopoverBackdrop, PopoverClose, PopoverDescription, PopoverPopup, PopoverPortal, PopoverPositioner, PopoverRoot, PopoverTitle, PopoverTrigger, PopoverViewport, PreviewCardArrow, PreviewCardBackdrop, PreviewCardPopup, PreviewCardPortal, PreviewCardPositioner, PreviewCardRoot, PreviewCardTrigger, ProgressIndicator, ProgressLabel, ProgressRoot, ProgressTrack, ProgressValue, RadioGroupRoot, RadioIndicator, RadioRoot, ScrollAreaContent, ScrollAreaCorner, ScrollAreaRoot, ScrollAreaScrollbar, ScrollAreaThumb, ScrollAreaViewport, SelectArrow, SelectBackdrop, SelectGroup, SelectGroupLabel, SelectIcon, SelectItem, SelectItemIndicator, SelectItemText, SelectList, SelectPopup, SelectPortal, SelectPositioner, SelectRoot, SelectScrollDownArrow, SelectScrollUpArrow, SelectSeparator, SelectTrigger, SelectValue, Separator, Skeleton, SliderControl, SliderIndicator, SliderRoot, SliderThumb, SliderTrack, SliderValue, SwitchRoot, SwitchThumb, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRoot, TableRow, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsTab, Textarea, TimelineContent, TimelineDescription, TimelineItem, TimelineMarker, TimelineRoot, TimelineSpacer, TimelineTime, TimelineTitle, Toast, ToastAction, ToastClose, ToastContent, ToastDescription, ToastPositioner, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toggle, ToggleGroupItem, ToggleGroupRoot, ToolbarButton, ToolbarGroup, ToolbarInput, ToolbarLink, ToolbarRoot, ToolbarSeparator, TooltipArrow, TooltipPopup, TooltipPortal, TooltipPositioner, TooltipProvider, TooltipRoot, TooltipTrigger, useChartContext, usePagination, useTable };
package/dist/input.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime282 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime71 from "react/jsx-runtime";
3
3
  import { Input as Input$1 } from "@base-ui/react/input";
4
4
 
5
5
  //#region src/components/input.d.ts
@@ -8,7 +8,7 @@ declare const Input: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: InputProps): react_jsx_runtime282.JSX.Element;
11
+ }: InputProps): react_jsx_runtime71.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"input.d.ts","names":[],"sources":["../src/components/input.tsx"],"sourcesContent":[],"mappings":";;;;;KAQK,UAAA,GAAa,KAAA,CAAM,sBAAsB;cAExC;;;;KAAkC,aAAU,oBAAA,CAAA,GAAA,CAAA;EAF7C,WAAA,EAAU,MAAA;CAAA"}
1
+ {"version":3,"file":"input.d.ts","names":[],"sources":["../src/components/input.tsx"],"sourcesContent":[],"mappings":";;;;;KAQK,UAAA,GAAa,KAAA,CAAM,sBAAsB;cAExC;;;;KAAkC,aAAU,mBAAA,CAAA,GAAA,CAAA;EAF7C,WAAA,EAAU,MAAA;CAAA"}