@lglab/compose-ui 0.31.0 → 0.33.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 (77) 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/autocomplete.d.ts +13 -13
  6. package/dist/avatar.d.ts +5 -5
  7. package/dist/avatar.d.ts.map +1 -1
  8. package/dist/badge.d.ts +4 -4
  9. package/dist/badge.d.ts.map +1 -1
  10. package/dist/button.d.ts +2 -2
  11. package/dist/calendar.d.ts +19 -0
  12. package/dist/calendar.d.ts.map +1 -0
  13. package/dist/calendar.js +52 -0
  14. package/dist/calendar.js.map +1 -0
  15. package/dist/card.d.ts +8 -8
  16. package/dist/checkbox-group.d.ts +2 -2
  17. package/dist/checkbox.d.ts +3 -3
  18. package/dist/collapsible.d.ts +4 -4
  19. package/dist/combobox.d.ts +25 -25
  20. package/dist/combobox.d.ts.map +1 -1
  21. package/dist/components/chart/context.d.ts +2 -2
  22. package/dist/components/chart/legend.d.ts +2 -2
  23. package/dist/components/chart/tooltip.d.ts +2 -2
  24. package/dist/components/table/primitives.d.ts +9 -9
  25. package/dist/context-menu.d.ts +20 -20
  26. package/dist/context-menu.d.ts.map +1 -1
  27. package/dist/dialog.d.ts +11 -11
  28. package/dist/drawer.d.ts +12 -12
  29. package/dist/field.d.ts +8 -8
  30. package/dist/fieldset.d.ts +3 -3
  31. package/dist/form.d.ts +2 -2
  32. package/dist/group.d.ts +36 -0
  33. package/dist/group.d.ts.map +1 -0
  34. package/dist/group.js +72 -0
  35. package/dist/group.js.map +1 -0
  36. package/dist/index.d.ts +3 -1
  37. package/dist/index.js +3 -1
  38. package/dist/input.d.ts +2 -2
  39. package/dist/menu.d.ts +20 -20
  40. package/dist/menubar.d.ts +21 -21
  41. package/dist/menubar.d.ts.map +1 -1
  42. package/dist/meter.d.ts +6 -6
  43. package/dist/navigation-menu.d.ts +14 -14
  44. package/dist/number-field.d.ts +8 -8
  45. package/dist/pagination.d.ts +10 -10
  46. package/dist/popover.d.ts +12 -12
  47. package/dist/preview-card.d.ts +8 -8
  48. package/dist/progress.d.ts +6 -6
  49. package/dist/progress.d.ts.map +1 -1
  50. package/dist/radio-group.d.ts +2 -2
  51. package/dist/radio-group.d.ts.map +1 -1
  52. package/dist/radio.d.ts +3 -3
  53. package/dist/radio.d.ts.map +1 -1
  54. package/dist/scroll-area.d.ts +7 -7
  55. package/dist/scroll-area.d.ts.map +1 -1
  56. package/dist/select.d.ts +19 -19
  57. package/dist/select.d.ts.map +1 -1
  58. package/dist/separator.d.ts +2 -2
  59. package/dist/separator.d.ts.map +1 -1
  60. package/dist/skeleton.d.ts +2 -2
  61. package/dist/skeleton.d.ts.map +1 -1
  62. package/dist/slider.d.ts +7 -7
  63. package/dist/slider.d.ts.map +1 -1
  64. package/dist/switch.d.ts +3 -3
  65. package/dist/switch.d.ts.map +1 -1
  66. package/dist/tabs.d.ts +6 -6
  67. package/dist/textarea.d.ts +2 -2
  68. package/dist/textarea.d.ts.map +1 -1
  69. package/dist/toast.d.ts +10 -10
  70. package/dist/toast.d.ts.map +1 -1
  71. package/dist/toggle-group.d.ts +3 -3
  72. package/dist/toggle-group.d.ts.map +1 -1
  73. package/dist/toggle.d.ts +2 -2
  74. package/dist/toggle.d.ts.map +1 -1
  75. package/dist/toolbar.d.ts +7 -7
  76. package/dist/tooltip.d.ts +8 -8
  77. package/package.json +13 -1
package/dist/menubar.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ControlSize, ControlVariant } from "./lib/control-variants.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime0 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime236 from "react/jsx-runtime";
4
4
  import { Menu } from "@base-ui/react/menu";
5
5
  import { Menubar } from "@base-ui/react/menubar";
6
6
 
@@ -10,12 +10,12 @@ declare const MenubarRoot: {
10
10
  ({
11
11
  className,
12
12
  ...props
13
- }: MenubarRootProps): react_jsx_runtime0.JSX.Element;
13
+ }: MenubarRootProps): react_jsx_runtime236.JSX.Element;
14
14
  displayName: string;
15
15
  };
16
16
  type MenubarMenuProps = React.ComponentProps<typeof Menu.Root>;
17
17
  declare const MenubarMenu: {
18
- (props: MenubarMenuProps): react_jsx_runtime0.JSX.Element;
18
+ (props: MenubarMenuProps): react_jsx_runtime236.JSX.Element;
19
19
  displayName: string;
20
20
  };
21
21
  type MenubarTriggerProps = React.ComponentProps<typeof Menu.Trigger> & {
@@ -30,12 +30,12 @@ declare const MenubarTrigger: {
30
30
  variant,
31
31
  size,
32
32
  ...props
33
- }: MenubarTriggerProps): react_jsx_runtime0.JSX.Element;
33
+ }: MenubarTriggerProps): react_jsx_runtime236.JSX.Element;
34
34
  displayName: string;
35
35
  };
36
36
  type MenubarPortalProps = React.ComponentProps<typeof Menu.Portal>;
37
37
  declare const MenubarPortal: {
38
- (props: MenubarPortalProps): react_jsx_runtime0.JSX.Element;
38
+ (props: MenubarPortalProps): react_jsx_runtime236.JSX.Element;
39
39
  displayName: string;
40
40
  };
41
41
  type MenubarPositionerProps = React.ComponentProps<typeof Menu.Positioner>;
@@ -43,7 +43,7 @@ declare const MenubarPositioner: {
43
43
  ({
44
44
  className,
45
45
  ...props
46
- }: MenubarPositionerProps): react_jsx_runtime0.JSX.Element;
46
+ }: MenubarPositionerProps): react_jsx_runtime236.JSX.Element;
47
47
  displayName: string;
48
48
  };
49
49
  type MenubarPopupProps = React.ComponentProps<typeof Menu.Popup>;
@@ -51,7 +51,7 @@ declare const MenubarPopup: {
51
51
  ({
52
52
  className,
53
53
  ...props
54
- }: MenubarPopupProps): react_jsx_runtime0.JSX.Element;
54
+ }: MenubarPopupProps): react_jsx_runtime236.JSX.Element;
55
55
  displayName: string;
56
56
  };
57
57
  type MenubarArrowProps = React.ComponentProps<typeof Menu.Arrow>;
@@ -59,7 +59,7 @@ declare const MenubarArrow: {
59
59
  ({
60
60
  className,
61
61
  ...props
62
- }: MenubarArrowProps): react_jsx_runtime0.JSX.Element;
62
+ }: MenubarArrowProps): react_jsx_runtime236.JSX.Element;
63
63
  displayName: string;
64
64
  };
65
65
  type MenubarItemProps = React.ComponentProps<typeof Menu.Item>;
@@ -67,7 +67,7 @@ declare const MenubarItem: {
67
67
  ({
68
68
  className,
69
69
  ...props
70
- }: MenubarItemProps): react_jsx_runtime0.JSX.Element;
70
+ }: MenubarItemProps): react_jsx_runtime236.JSX.Element;
71
71
  displayName: string;
72
72
  };
73
73
  type MenubarSeparatorProps = React.ComponentProps<typeof Menu.Separator>;
@@ -75,7 +75,7 @@ declare const MenubarSeparator: {
75
75
  ({
76
76
  className,
77
77
  ...props
78
- }: MenubarSeparatorProps): react_jsx_runtime0.JSX.Element;
78
+ }: MenubarSeparatorProps): react_jsx_runtime236.JSX.Element;
79
79
  displayName: string;
80
80
  };
81
81
  type MenubarGroupProps = React.ComponentProps<typeof Menu.Group>;
@@ -83,7 +83,7 @@ declare const MenubarGroup: {
83
83
  ({
84
84
  className,
85
85
  ...props
86
- }: MenubarGroupProps): react_jsx_runtime0.JSX.Element;
86
+ }: MenubarGroupProps): react_jsx_runtime236.JSX.Element;
87
87
  displayName: string;
88
88
  };
89
89
  type MenubarGroupLabelProps = React.ComponentProps<typeof Menu.GroupLabel>;
@@ -91,7 +91,7 @@ declare const MenubarGroupLabel: {
91
91
  ({
92
92
  className,
93
93
  ...props
94
- }: MenubarGroupLabelProps): react_jsx_runtime0.JSX.Element;
94
+ }: MenubarGroupLabelProps): react_jsx_runtime236.JSX.Element;
95
95
  displayName: string;
96
96
  };
97
97
  type MenubarRadioGroupProps = React.ComponentProps<typeof Menu.RadioGroup>;
@@ -99,7 +99,7 @@ declare const MenubarRadioGroup: {
99
99
  ({
100
100
  className,
101
101
  ...props
102
- }: MenubarRadioGroupProps): react_jsx_runtime0.JSX.Element;
102
+ }: MenubarRadioGroupProps): react_jsx_runtime236.JSX.Element;
103
103
  displayName: string;
104
104
  };
105
105
  type MenubarRadioItemProps = React.ComponentProps<typeof Menu.RadioItem>;
@@ -107,7 +107,7 @@ declare const MenubarRadioItem: {
107
107
  ({
108
108
  className,
109
109
  ...props
110
- }: MenubarRadioItemProps): react_jsx_runtime0.JSX.Element;
110
+ }: MenubarRadioItemProps): react_jsx_runtime236.JSX.Element;
111
111
  displayName: string;
112
112
  };
113
113
  type MenubarCheckboxItemProps = React.ComponentProps<typeof Menu.CheckboxItem>;
@@ -115,7 +115,7 @@ declare const MenubarCheckboxItem: {
115
115
  ({
116
116
  className,
117
117
  ...props
118
- }: MenubarCheckboxItemProps): react_jsx_runtime0.JSX.Element;
118
+ }: MenubarCheckboxItemProps): react_jsx_runtime236.JSX.Element;
119
119
  displayName: string;
120
120
  };
121
121
  type MenubarRadioItemIndicatorProps = React.ComponentProps<typeof Menu.RadioItemIndicator>;
@@ -123,7 +123,7 @@ declare const MenubarRadioItemIndicator: {
123
123
  ({
124
124
  className,
125
125
  ...props
126
- }: MenubarRadioItemIndicatorProps): react_jsx_runtime0.JSX.Element;
126
+ }: MenubarRadioItemIndicatorProps): react_jsx_runtime236.JSX.Element;
127
127
  displayName: string;
128
128
  };
129
129
  type MenubarCheckboxItemIndicatorProps = React.ComponentProps<typeof Menu.CheckboxItemIndicator>;
@@ -131,7 +131,7 @@ declare const MenubarCheckboxItemIndicator: {
131
131
  ({
132
132
  className,
133
133
  ...props
134
- }: MenubarCheckboxItemIndicatorProps): react_jsx_runtime0.JSX.Element;
134
+ }: MenubarCheckboxItemIndicatorProps): react_jsx_runtime236.JSX.Element;
135
135
  displayName: string;
136
136
  };
137
137
  type MenubarCheckboxItemLabelProps = React.ComponentProps<'span'>;
@@ -139,7 +139,7 @@ declare const MenubarCheckboxItemLabel: {
139
139
  ({
140
140
  className,
141
141
  ...props
142
- }: MenubarCheckboxItemLabelProps): react_jsx_runtime0.JSX.Element;
142
+ }: MenubarCheckboxItemLabelProps): react_jsx_runtime236.JSX.Element;
143
143
  displayName: string;
144
144
  };
145
145
  type MenubarRadioItemLabelProps = React.ComponentProps<'span'>;
@@ -147,7 +147,7 @@ declare const MenubarRadioItemLabel: {
147
147
  ({
148
148
  className,
149
149
  ...props
150
- }: MenubarRadioItemLabelProps): react_jsx_runtime0.JSX.Element;
150
+ }: MenubarRadioItemLabelProps): react_jsx_runtime236.JSX.Element;
151
151
  displayName: string;
152
152
  };
153
153
  type MenubarSubmenuTriggerProps = React.ComponentProps<typeof Menu.SubmenuTrigger>;
@@ -155,12 +155,12 @@ declare const MenubarSubmenuTrigger: {
155
155
  ({
156
156
  className,
157
157
  ...props
158
- }: MenubarSubmenuTriggerProps): react_jsx_runtime0.JSX.Element;
158
+ }: MenubarSubmenuTriggerProps): react_jsx_runtime236.JSX.Element;
159
159
  displayName: string;
160
160
  };
161
161
  type MenubarSubmenuRootProps = React.ComponentProps<typeof Menu.SubmenuRoot>;
162
162
  declare const MenubarSubmenuRoot: {
163
- (props: MenubarSubmenuRootProps): react_jsx_runtime0.JSX.Element;
163
+ (props: MenubarSubmenuRootProps): react_jsx_runtime236.JSX.Element;
164
164
  displayName: string;
165
165
  };
166
166
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"menubar.d.ts","names":[],"sources":["../src/components/menubar.tsx"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"menubar.d.ts","names":[],"sources":["../src/components/menubar.tsx"],"sourcesContent":[],"mappings":";;;;;;;KAmBK,gBAAA,GAAmB,KAAA,CAAM,sBAAsB;cAE9C;;;;KAAwC,mBAAgB,oBAAA,CAAA,GAAA,CAAA;EAFzD,WAAA,EAAA,MAAgB;CAAA;KAuBhB,gBAAA,GAAmB,KAAA,CAAM,cAvBsB,CAAA,OAuBA,IAAA,CAAK,IAvBL,CAAA;cAyB9C,WAzBwB,EAAA;EAAc,CAAA,KAAA,EAyBhB,gBAzBgB,CAAA,EAyBA,oBAAA,CAAA,GAAA,CAAA,OAzBA;EAEtC,WAAA,EAAA,MAaL;CAAA;KAoBI,mBAAA,GAAsB,KAAA,CAAM,sBAAsB,IAAA,CAAK;;SAjCE,CAAA,EAmClD,cAnCkD;EAAA;EAqBzD,IAAA,CAAA,EAgBI,WAhBJ;CAAgB;cAmBf,cAnBmD,EAAA;;IAAjC,SAAM;IAAA,OAAA;IAAA,IAAA;IAAA,GAAA;EAAA,CAAA,EAmBkC,mBAnBlC,CAAA,EAmBqD,oBAAA,CAAA,GAAA,CAAA,OAnBrD;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAkCvC,kBAAA,GAAqB,KAAA,CAAM,cA9B/B,CAAA,OA8BqD,IAAA,CAAK,MA9B1D,CAAA;cAgCK,aAlCsB,EAAA;QAAgB,EAkCd,kBAlCc,CAAA,EAkCI,oBAAA,CAAA,GAAA,CAAA,OAlCJ;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA4CvC,sBAAA,GAAyB,KAAA,CAAM,cAlCZ,CAAA,OAkCkC,IAAA,CAAK,UAlCvC,CAAA;cAoClB,iBApCsD,EAAA;;IAAjC,SAAM;IAAA,GAAA;EAAA,CAAA,EAoCmB,sBApCnB,CAAA,EAoCyC,oBAAA,CAAA,GAAA,CAAA,OApCzC;aAErB,EAAA,MAAA;;KAkDP,iBAAA,GAAoB,KAAA,CAAM,cAhDX,CAAA,OAgDiC,IAAA,CAAK,KAhDtC,CAAA;AAAA,cAkDd,YAxCL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAwC8C,iBAxC9C,CAAA,EAwC+D,oBAAA,CAAA,GAAA,CAAA,OAxC/D;;;KA2DI,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,IAAA,CAAK;cAEpD,YApE0D,EAAA;;IAAmB,SAAA;IAAA,GAAA;EAAA,CAAA,EAoEpC,iBApEoC,CAAA,EAoEnB,oBAAA,CAAA,GAAA,CAAA,OApEmB;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAwF9E,gBAAA,GAAmB,KAAA,CAAM,cAzEP,CAAA,OAyE6B,IAAA,CAAK,IAzElC,CAAA;cA2EjB,WA3EqD,EAAA;;IAAjC,SAAM;IAAA,GAAA;EAAA,CAAA,EA2Ec,gBA3Ed,CAAA,EA2E8B,oBAAA,CAAA,GAAA,CAAA,OA3E9B;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KA8FzC,qBAAA,GAAwB,KAAA,CAAM,cA1FlC,CAAA,OA0FwD,IAAA,CAAK,SA1F7D,CAAA;cA4FK,gBA9FwB,EAAA;;IAAkB,SAAA;IAAA,GAAA;EAAA,CAAA,EA8FG,qBA9FH,CAAA,EA8FwB,oBAAA,CAAA,GAAA,CAAA,OA9FxB;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KA0G3C,iBAAA,GAAoB,KAAA,CAAM,cAhGJ,CAAA,OAgG0B,IAAA,CAAK,KAhG/B,CAAA;cAkGrB,YAlGyD,EAAA;;IAAjC,SAAM;IAAA,GAAA;EAAA,CAAA,EAkGW,iBAlGX,CAAA,EAkG4B,oBAAA,CAAA,GAAA,CAAA,OAlG5B;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KA4G7C,sBAAA,GAAyB,KAAA,CAAM,cAlGnC,CAAA,OAkGyD,IAAA,CAAK,UAlG9D,CAAA;cAoGK;;IA5G8C,SAAA;IAAA,GAAA;EAAA,CAAA,EA4GA,sBA5GA,CAAA,EA4GsB,oBAAA,CAAA,GAAA,CAAA,OA5GtB;aAAsB,EAAA,MAAA;CAAA;AAAA,KA2HrE,sBAAA,GAAyB,KAAA,CAAM,cA3Gd,CAAA,OA2GoC,IAAA,CAAK,UA3GzC,CAAA;cA6GhB,iBA7GgB,EAAA;;IAA+B,SAAK;IAAA,GAAA;EAAA,CAAA,EA6GN,sBA7GM,CAAA,EA6GgB,oBAAA,CAAA,GAAA,CAAA,OA7GhB;aAA3B,EAAA,MAAA;CAAc;AAAA,KAuHxC,qBAAA,GAAwB,KAAA,CAAM,cA1GlC,CAAA,OA0GwD,IAAA,CAAK,SA1G7D,CAAA;cA4GK,gBA5GL,EAAA;;;;KA4GkD,wBAAqB,oBAAA,CAAA,GAAA,CAAA;aAvHzB,EAAA,MAAA;;KA0I1C,wBAAA,GAA2B,KAAA,CAAM,cA1I0B,CAAA,OA0IJ,IAAA,CAAK,YA1ID,CAAA;AAAA,cA4I1D,mBAzHgB,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAyHgC,wBAzHhC,CAAA,EAyHwD,oBAAA,CAAA,GAAA,CAAA,OAzHxD;aAAoC,EAAA,MAAA;;KA4IrD,8BAAA,GAAiC,KAAA,CAAM,cA5IC,CAAA,OA4IqB,IAAA,CAAK,kBA5I1B,CAAA;AAAA,cA8IvC,yBAhIL,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAmIE,8BAnIF,CAAA,EAmIgC,oBAAA,CAAA,GAAA,CAAA,OAnIhC;;;KA6II,iCAAA,GAAoC,KAAA,CAAM,cAzJiB,CAAA,OA0JvD,IAAA,CAAK,qBA1JkD,CAAA;cA6J1D,4BA7J0D,EAAA;EAoB3D,CAAA;IAAA,SAAA;IAAA,GAAA;EAAgB,CAAA,EA4IlB,iCA5IkB,CAAA,EA4Ie,oBAAA,CAAA,GAAA,CAAA,OA5If;EAAA,WAAA,EAAA,MAAA;;KAwJhB,6BAAA,GAAgC,KAAA,CAAM,cAxJb,CAAA,MAAA,CAAA;cA0JxB,wBA1JsC,EAAA;EAEtC,CAAA;IAAA,SAAA;IAWL,GAAA;EAAA,CAAA,EAgJE,6BAhJF,CAAA,EAgJ+B,oBAAA,CAAA,GAAA,CAAA,OAhJ/B;EAAA,WAAA,EAAA,MAAA;;KA0JI,0BAAA,GAA6B,KAAA,CAAM,cArKM,CAAA,MAAA,CAAA;cAuKxC,qBAvKwD,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAuKN,0BAvKM,CAAA,EAuKoB,oBAAA,CAAA,GAAA,CAAA,OAvKpB;EAmBzD,WAAA,EAAA,MAAA;CAAqB;KA8JrB,0BAAA,GAA6B,KAAA,CAAM,cA9JsB,CAAA,OA8JA,IAAA,CAAK,cA9JL,CAAA;cAgKxD,qBAhK6B,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAgKO,0BAhKP,CAAA,EAgKiC,oBAAA,CAAA,GAAA,CAAA,OAhKjC;EAE3C,WAAA,EAAA,MAIL;CAAA;KA6KI,uBAAA,GAA0B,KAAA,CAAM,sBAAsB,IAAA,CAAK;cAE1D,kBAnL6C,EAAA;QAAqB,EAmLrC,uBAnLqC,CAAA,EAmLd,oBAAA,CAAA,GAAA,CAAA,OAnLc;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA"}
package/dist/meter.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime166 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime264 from "react/jsx-runtime";
3
3
  import { Meter } from "@base-ui/react/meter";
4
4
 
5
5
  //#region src/components/meter.d.ts
@@ -13,7 +13,7 @@ declare const MeterRoot: {
13
13
  animated,
14
14
  value,
15
15
  ...props
16
- }: MeterRootProps): react_jsx_runtime166.JSX.Element;
16
+ }: MeterRootProps): react_jsx_runtime264.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type MeterTrackProps = React.ComponentProps<typeof Meter.Track>;
@@ -21,7 +21,7 @@ declare const MeterTrack: {
21
21
  ({
22
22
  className,
23
23
  ...props
24
- }: MeterTrackProps): react_jsx_runtime166.JSX.Element;
24
+ }: MeterTrackProps): react_jsx_runtime264.JSX.Element;
25
25
  displayName: string;
26
26
  };
27
27
  type MeterIndicatorProps = React.ComponentProps<typeof Meter.Indicator>;
@@ -29,7 +29,7 @@ declare const MeterIndicator: {
29
29
  ({
30
30
  className,
31
31
  ...props
32
- }: MeterIndicatorProps): react_jsx_runtime166.JSX.Element;
32
+ }: MeterIndicatorProps): react_jsx_runtime264.JSX.Element;
33
33
  displayName: string;
34
34
  };
35
35
  type MeterValueProps = React.ComponentProps<typeof Meter.Value>;
@@ -37,7 +37,7 @@ declare const MeterValue: {
37
37
  ({
38
38
  className,
39
39
  ...props
40
- }: MeterValueProps): react_jsx_runtime166.JSX.Element;
40
+ }: MeterValueProps): react_jsx_runtime264.JSX.Element;
41
41
  displayName: string;
42
42
  };
43
43
  type MeterLabelProps = React.ComponentProps<typeof Meter.Label>;
@@ -45,7 +45,7 @@ declare const MeterLabel: {
45
45
  ({
46
46
  className,
47
47
  ...props
48
- }: MeterLabelProps): react_jsx_runtime166.JSX.Element;
48
+ }: MeterLabelProps): react_jsx_runtime264.JSX.Element;
49
49
  displayName: string;
50
50
  };
51
51
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime171 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime156 from "react/jsx-runtime";
3
3
  import { NavigationMenu } from "@base-ui/react/navigation-menu";
4
4
 
5
5
  //#region src/components/navigation-menu.d.ts
@@ -8,7 +8,7 @@ declare const NavigationMenuRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: NavigationMenuRootProps): react_jsx_runtime171.JSX.Element;
11
+ }: NavigationMenuRootProps): react_jsx_runtime156.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type NavigationMenuListProps = React.ComponentProps<typeof NavigationMenu.List>;
@@ -16,7 +16,7 @@ declare const NavigationMenuList: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: NavigationMenuListProps): react_jsx_runtime171.JSX.Element;
19
+ }: NavigationMenuListProps): react_jsx_runtime156.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  type NavigationMenuItemProps = React.ComponentProps<typeof NavigationMenu.Item>;
@@ -24,7 +24,7 @@ declare const NavigationMenuItem: {
24
24
  ({
25
25
  className,
26
26
  ...props
27
- }: NavigationMenuItemProps): react_jsx_runtime171.JSX.Element;
27
+ }: NavigationMenuItemProps): react_jsx_runtime156.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type NavigationMenuTriggerProps = React.ComponentProps<typeof NavigationMenu.Trigger>;
@@ -32,7 +32,7 @@ declare const NavigationMenuTrigger: {
32
32
  ({
33
33
  className,
34
34
  ...props
35
- }: NavigationMenuTriggerProps): react_jsx_runtime171.JSX.Element;
35
+ }: NavigationMenuTriggerProps): react_jsx_runtime156.JSX.Element;
36
36
  displayName: string;
37
37
  };
38
38
  type NavigationMenuIconProps = React.ComponentProps<typeof NavigationMenu.Icon>;
@@ -40,7 +40,7 @@ declare const NavigationMenuIcon: {
40
40
  ({
41
41
  className,
42
42
  ...props
43
- }: NavigationMenuIconProps): react_jsx_runtime171.JSX.Element;
43
+ }: NavigationMenuIconProps): react_jsx_runtime156.JSX.Element;
44
44
  displayName: string;
45
45
  };
46
46
  type NavigationMenuContentProps = React.ComponentProps<typeof NavigationMenu.Content>;
@@ -48,7 +48,7 @@ declare const NavigationMenuContent: {
48
48
  ({
49
49
  className,
50
50
  ...props
51
- }: NavigationMenuContentProps): react_jsx_runtime171.JSX.Element;
51
+ }: NavigationMenuContentProps): react_jsx_runtime156.JSX.Element;
52
52
  displayName: string;
53
53
  };
54
54
  type NavigationMenuLinkProps = React.ComponentProps<typeof NavigationMenu.Link>;
@@ -56,12 +56,12 @@ declare const NavigationMenuLink: {
56
56
  ({
57
57
  className,
58
58
  ...props
59
- }: NavigationMenuLinkProps): react_jsx_runtime171.JSX.Element;
59
+ }: NavigationMenuLinkProps): react_jsx_runtime156.JSX.Element;
60
60
  displayName: string;
61
61
  };
62
62
  type NavigationMenuPortalProps = React.ComponentProps<typeof NavigationMenu.Portal>;
63
63
  declare const NavigationMenuPortal: {
64
- (props: NavigationMenuPortalProps): react_jsx_runtime171.JSX.Element;
64
+ (props: NavigationMenuPortalProps): react_jsx_runtime156.JSX.Element;
65
65
  displayName: string;
66
66
  };
67
67
  type NavigationMenuPositionerProps = React.ComponentProps<typeof NavigationMenu.Positioner>;
@@ -71,7 +71,7 @@ declare const NavigationMenuPositioner: {
71
71
  sideOffset,
72
72
  collisionPadding,
73
73
  ...props
74
- }: NavigationMenuPositionerProps): react_jsx_runtime171.JSX.Element;
74
+ }: NavigationMenuPositionerProps): react_jsx_runtime156.JSX.Element;
75
75
  displayName: string;
76
76
  };
77
77
  type NavigationMenuPopupProps = React.ComponentProps<typeof NavigationMenu.Popup>;
@@ -79,7 +79,7 @@ declare const NavigationMenuPopup: {
79
79
  ({
80
80
  className,
81
81
  ...props
82
- }: NavigationMenuPopupProps): react_jsx_runtime171.JSX.Element;
82
+ }: NavigationMenuPopupProps): react_jsx_runtime156.JSX.Element;
83
83
  displayName: string;
84
84
  };
85
85
  type NavigationMenuViewportProps = React.ComponentProps<typeof NavigationMenu.Viewport>;
@@ -87,7 +87,7 @@ declare const NavigationMenuViewport: {
87
87
  ({
88
88
  className,
89
89
  ...props
90
- }: NavigationMenuViewportProps): react_jsx_runtime171.JSX.Element;
90
+ }: NavigationMenuViewportProps): react_jsx_runtime156.JSX.Element;
91
91
  displayName: string;
92
92
  };
93
93
  type NavigationMenuArrowProps = React.ComponentProps<typeof NavigationMenu.Arrow>;
@@ -95,7 +95,7 @@ declare const NavigationMenuArrow: {
95
95
  ({
96
96
  className,
97
97
  ...props
98
- }: NavigationMenuArrowProps): react_jsx_runtime171.JSX.Element;
98
+ }: NavigationMenuArrowProps): react_jsx_runtime156.JSX.Element;
99
99
  displayName: string;
100
100
  };
101
101
  type NavigationMenuBackdropProps = React.ComponentProps<typeof NavigationMenu.Backdrop>;
@@ -103,7 +103,7 @@ declare const NavigationMenuBackdrop: {
103
103
  ({
104
104
  className,
105
105
  ...props
106
- }: NavigationMenuBackdropProps): react_jsx_runtime171.JSX.Element;
106
+ }: NavigationMenuBackdropProps): react_jsx_runtime156.JSX.Element;
107
107
  displayName: string;
108
108
  };
109
109
  //#endregion
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime184 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime169 from "react/jsx-runtime";
3
3
  import { NumberField } from "@base-ui/react/number-field";
4
4
 
5
5
  //#region src/components/number-field.d.ts
@@ -8,7 +8,7 @@ declare const NumberFieldRoot: {
8
8
  ({
9
9
  className,
10
10
  ...props
11
- }: NumberFieldRootProps): react_jsx_runtime184.JSX.Element;
11
+ }: NumberFieldRootProps): react_jsx_runtime169.JSX.Element;
12
12
  displayName: string;
13
13
  };
14
14
  type NumberFieldScrubAreaProps = React.ComponentProps<typeof NumberField.ScrubArea>;
@@ -16,7 +16,7 @@ declare const NumberFieldScrubArea: {
16
16
  ({
17
17
  className,
18
18
  ...props
19
- }: NumberFieldScrubAreaProps): react_jsx_runtime184.JSX.Element;
19
+ }: NumberFieldScrubAreaProps): react_jsx_runtime169.JSX.Element;
20
20
  displayName: string;
21
21
  };
22
22
  type NumberFieldScrubAreaCursorProps = React.ComponentProps<typeof NumberField.ScrubAreaCursor>;
@@ -24,7 +24,7 @@ declare const NumberFieldScrubAreaCursor: {
24
24
  ({
25
25
  className,
26
26
  ...props
27
- }: NumberFieldScrubAreaCursorProps): react_jsx_runtime184.JSX.Element;
27
+ }: NumberFieldScrubAreaCursorProps): react_jsx_runtime169.JSX.Element;
28
28
  displayName: string;
29
29
  };
30
30
  type NumberFieldGroupProps = React.ComponentProps<typeof NumberField.Group>;
@@ -32,7 +32,7 @@ declare const NumberFieldGroup: {
32
32
  ({
33
33
  className,
34
34
  ...props
35
- }: NumberFieldGroupProps): react_jsx_runtime184.JSX.Element;
35
+ }: NumberFieldGroupProps): react_jsx_runtime169.JSX.Element;
36
36
  displayName: string;
37
37
  };
38
38
  type NumberFieldInputProps = React.ComponentProps<typeof NumberField.Input>;
@@ -40,7 +40,7 @@ declare const NumberFieldInput: {
40
40
  ({
41
41
  className,
42
42
  ...props
43
- }: NumberFieldInputProps): react_jsx_runtime184.JSX.Element;
43
+ }: NumberFieldInputProps): react_jsx_runtime169.JSX.Element;
44
44
  displayName: string;
45
45
  };
46
46
  type NumberFieldDecrementProps = React.ComponentProps<typeof NumberField.Decrement>;
@@ -48,7 +48,7 @@ declare const NumberFieldDecrement: {
48
48
  ({
49
49
  className,
50
50
  ...props
51
- }: NumberFieldDecrementProps): react_jsx_runtime184.JSX.Element;
51
+ }: NumberFieldDecrementProps): react_jsx_runtime169.JSX.Element;
52
52
  displayName: string;
53
53
  };
54
54
  type NumberFieldIncrementProps = React.ComponentProps<typeof NumberField.Increment>;
@@ -56,7 +56,7 @@ declare const NumberFieldIncrement: {
56
56
  ({
57
57
  className,
58
58
  ...props
59
- }: NumberFieldIncrementProps): react_jsx_runtime184.JSX.Element;
59
+ }: NumberFieldIncrementProps): react_jsx_runtime169.JSX.Element;
60
60
  displayName: string;
61
61
  };
62
62
  //#endregion
@@ -1,6 +1,6 @@
1
1
  import { ControlSize, ControlVariant } from "./lib/control-variants.js";
2
2
  import * as React from "react";
3
- import * as react_jsx_runtime191 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime204 from "react/jsx-runtime";
4
4
 
5
5
  //#region src/components/pagination.d.ts
6
6
  type PaginationPage = number | 'ellipsis';
@@ -62,7 +62,7 @@ declare const PaginationRoot: {
62
62
  ({
63
63
  className,
64
64
  ...props
65
- }: PaginationRootProps): react_jsx_runtime191.JSX.Element;
65
+ }: PaginationRootProps): react_jsx_runtime204.JSX.Element;
66
66
  displayName: string;
67
67
  };
68
68
  type PaginationContentProps = React.ComponentProps<'ul'>;
@@ -70,7 +70,7 @@ declare const PaginationContent: {
70
70
  ({
71
71
  className,
72
72
  ...props
73
- }: PaginationContentProps): react_jsx_runtime191.JSX.Element;
73
+ }: PaginationContentProps): react_jsx_runtime204.JSX.Element;
74
74
  displayName: string;
75
75
  };
76
76
  type PaginationItemProps = React.ComponentProps<'li'>;
@@ -78,7 +78,7 @@ declare const PaginationItem: {
78
78
  ({
79
79
  className,
80
80
  ...props
81
- }: PaginationItemProps): react_jsx_runtime191.JSX.Element;
81
+ }: PaginationItemProps): react_jsx_runtime204.JSX.Element;
82
82
  displayName: string;
83
83
  };
84
84
  type PaginationButtonProps = React.ComponentProps<'button'> & {
@@ -96,7 +96,7 @@ declare const PaginationButton: {
96
96
  variant,
97
97
  size,
98
98
  ...props
99
- }: PaginationButtonProps): react_jsx_runtime191.JSX.Element;
99
+ }: PaginationButtonProps): react_jsx_runtime204.JSX.Element;
100
100
  displayName: string;
101
101
  };
102
102
  type PaginationPreviousProps = React.ComponentProps<'button'> & {
@@ -113,7 +113,7 @@ declare const PaginationPrevious: {
113
113
  size,
114
114
  children,
115
115
  ...props
116
- }: PaginationPreviousProps): react_jsx_runtime191.JSX.Element;
116
+ }: PaginationPreviousProps): react_jsx_runtime204.JSX.Element;
117
117
  displayName: string;
118
118
  };
119
119
  type PaginationNextProps = React.ComponentProps<'button'> & {
@@ -130,7 +130,7 @@ declare const PaginationNext: {
130
130
  size,
131
131
  children,
132
132
  ...props
133
- }: PaginationNextProps): react_jsx_runtime191.JSX.Element;
133
+ }: PaginationNextProps): react_jsx_runtime204.JSX.Element;
134
134
  displayName: string;
135
135
  };
136
136
  type PaginationFirstProps = React.ComponentProps<'button'> & {
@@ -147,7 +147,7 @@ declare const PaginationFirst: {
147
147
  size,
148
148
  children,
149
149
  ...props
150
- }: PaginationFirstProps): react_jsx_runtime191.JSX.Element;
150
+ }: PaginationFirstProps): react_jsx_runtime204.JSX.Element;
151
151
  displayName: string;
152
152
  };
153
153
  type PaginationLastProps = React.ComponentProps<'button'> & {
@@ -164,7 +164,7 @@ declare const PaginationLast: {
164
164
  size,
165
165
  children,
166
166
  ...props
167
- }: PaginationLastProps): react_jsx_runtime191.JSX.Element;
167
+ }: PaginationLastProps): react_jsx_runtime204.JSX.Element;
168
168
  displayName: string;
169
169
  };
170
170
  type PaginationEllipsisProps = React.ComponentProps<'span'> & {
@@ -176,7 +176,7 @@ declare const PaginationEllipsis: {
176
176
  className,
177
177
  size,
178
178
  ...props
179
- }: PaginationEllipsisProps): react_jsx_runtime191.JSX.Element;
179
+ }: PaginationEllipsisProps): react_jsx_runtime204.JSX.Element;
180
180
  displayName: string;
181
181
  };
182
182
  //#endregion
package/dist/popover.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime200 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime215 from "react/jsx-runtime";
3
3
  import { Popover } from "@base-ui/react/popover";
4
4
 
5
5
  //#region src/components/popover.d.ts
6
6
  type PopoverRootProps = React.ComponentProps<typeof Popover.Root>;
7
7
  declare const PopoverRoot: {
8
- (props: PopoverRootProps): react_jsx_runtime200.JSX.Element;
8
+ (props: PopoverRootProps): react_jsx_runtime215.JSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  type PopoverTriggerProps = React.ComponentProps<typeof Popover.Trigger>;
@@ -13,12 +13,12 @@ declare const PopoverTrigger: {
13
13
  ({
14
14
  className,
15
15
  ...props
16
- }: PopoverTriggerProps): react_jsx_runtime200.JSX.Element;
16
+ }: PopoverTriggerProps): react_jsx_runtime215.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type PopoverPortalProps = React.ComponentProps<typeof Popover.Portal>;
20
20
  declare const PopoverPortal: {
21
- (props: PopoverPortalProps): react_jsx_runtime200.JSX.Element;
21
+ (props: PopoverPortalProps): react_jsx_runtime215.JSX.Element;
22
22
  displayName: string;
23
23
  };
24
24
  type PopoverBackdropProps = React.ComponentProps<typeof Popover.Backdrop>;
@@ -26,7 +26,7 @@ declare const PopoverBackdrop: {
26
26
  ({
27
27
  className,
28
28
  ...props
29
- }: PopoverBackdropProps): react_jsx_runtime200.JSX.Element;
29
+ }: PopoverBackdropProps): react_jsx_runtime215.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type PopoverPositionerProps = React.ComponentProps<typeof Popover.Positioner>;
@@ -34,7 +34,7 @@ declare const PopoverPositioner: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: PopoverPositionerProps): react_jsx_runtime200.JSX.Element;
37
+ }: PopoverPositionerProps): react_jsx_runtime215.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type PopoverPopupProps = React.ComponentProps<typeof Popover.Popup>;
@@ -42,7 +42,7 @@ declare const PopoverPopup: {
42
42
  ({
43
43
  className,
44
44
  ...props
45
- }: PopoverPopupProps): react_jsx_runtime200.JSX.Element;
45
+ }: PopoverPopupProps): react_jsx_runtime215.JSX.Element;
46
46
  displayName: string;
47
47
  };
48
48
  type PopoverArrowProps = React.ComponentProps<typeof Popover.Arrow>;
@@ -50,7 +50,7 @@ declare const PopoverArrow: {
50
50
  ({
51
51
  className,
52
52
  ...props
53
- }: PopoverArrowProps): react_jsx_runtime200.JSX.Element;
53
+ }: PopoverArrowProps): react_jsx_runtime215.JSX.Element;
54
54
  displayName: string;
55
55
  };
56
56
  type PopoverTitleProps = React.ComponentProps<typeof Popover.Title>;
@@ -58,7 +58,7 @@ declare const PopoverTitle: {
58
58
  ({
59
59
  className,
60
60
  ...props
61
- }: PopoverTitleProps): react_jsx_runtime200.JSX.Element;
61
+ }: PopoverTitleProps): react_jsx_runtime215.JSX.Element;
62
62
  displayName: string;
63
63
  };
64
64
  type PopoverDescriptionProps = React.ComponentProps<typeof Popover.Description>;
@@ -66,7 +66,7 @@ declare const PopoverDescription: {
66
66
  ({
67
67
  className,
68
68
  ...props
69
- }: PopoverDescriptionProps): react_jsx_runtime200.JSX.Element;
69
+ }: PopoverDescriptionProps): react_jsx_runtime215.JSX.Element;
70
70
  displayName: string;
71
71
  };
72
72
  type PopoverCloseProps = React.ComponentProps<typeof Popover.Close>;
@@ -74,7 +74,7 @@ declare const PopoverClose: {
74
74
  ({
75
75
  className,
76
76
  ...props
77
- }: PopoverCloseProps): react_jsx_runtime200.JSX.Element;
77
+ }: PopoverCloseProps): react_jsx_runtime215.JSX.Element;
78
78
  displayName: string;
79
79
  };
80
80
  type PopoverViewportProps = React.ComponentProps<typeof Popover.Viewport>;
@@ -82,7 +82,7 @@ declare const PopoverViewport: {
82
82
  ({
83
83
  className,
84
84
  ...props
85
- }: PopoverViewportProps): react_jsx_runtime200.JSX.Element;
85
+ }: PopoverViewportProps): react_jsx_runtime215.JSX.Element;
86
86
  displayName: string;
87
87
  };
88
88
  //#endregion
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime233 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime227 from "react/jsx-runtime";
3
3
  import { PreviewCard } from "@base-ui/react/preview-card";
4
4
 
5
5
  //#region src/components/preview-card.d.ts
6
6
  type PreviewCardRootProps = React.ComponentProps<typeof PreviewCard.Root>;
7
7
  declare const PreviewCardRoot: {
8
- (props: PreviewCardRootProps): react_jsx_runtime233.JSX.Element;
8
+ (props: PreviewCardRootProps): react_jsx_runtime227.JSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  type PreviewCardTriggerProps = React.ComponentProps<typeof PreviewCard.Trigger>;
@@ -13,12 +13,12 @@ declare const PreviewCardTrigger: {
13
13
  ({
14
14
  className,
15
15
  ...props
16
- }: PreviewCardTriggerProps): react_jsx_runtime233.JSX.Element;
16
+ }: PreviewCardTriggerProps): react_jsx_runtime227.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type PreviewCardPortalProps = React.ComponentProps<typeof PreviewCard.Portal>;
20
20
  declare const PreviewCardPortal: {
21
- (props: PreviewCardPortalProps): react_jsx_runtime233.JSX.Element;
21
+ (props: PreviewCardPortalProps): react_jsx_runtime227.JSX.Element;
22
22
  displayName: string;
23
23
  };
24
24
  type PreviewCardBackdropProps = React.ComponentProps<typeof PreviewCard.Backdrop>;
@@ -26,7 +26,7 @@ declare const PreviewCardBackdrop: {
26
26
  ({
27
27
  className,
28
28
  ...props
29
- }: PreviewCardBackdropProps): react_jsx_runtime233.JSX.Element;
29
+ }: PreviewCardBackdropProps): react_jsx_runtime227.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type PreviewCardPositionerProps = React.ComponentProps<typeof PreviewCard.Positioner>;
@@ -34,7 +34,7 @@ declare const PreviewCardPositioner: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: PreviewCardPositionerProps): react_jsx_runtime233.JSX.Element;
37
+ }: PreviewCardPositionerProps): react_jsx_runtime227.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type PreviewCardPopupProps = React.ComponentProps<typeof PreviewCard.Popup>;
@@ -42,7 +42,7 @@ declare const PreviewCardPopup: {
42
42
  ({
43
43
  className,
44
44
  ...props
45
- }: PreviewCardPopupProps): react_jsx_runtime233.JSX.Element;
45
+ }: PreviewCardPopupProps): react_jsx_runtime227.JSX.Element;
46
46
  displayName: string;
47
47
  };
48
48
  type PreviewCardArrowProps = React.ComponentProps<typeof PreviewCard.Arrow>;
@@ -50,7 +50,7 @@ declare const PreviewCardArrow: {
50
50
  ({
51
51
  className,
52
52
  ...props
53
- }: PreviewCardArrowProps): react_jsx_runtime233.JSX.Element;
53
+ }: PreviewCardArrowProps): react_jsx_runtime227.JSX.Element;
54
54
  displayName: string;
55
55
  };
56
56
  //#endregion