@lglab/compose-ui 0.30.0 → 0.30.1

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 (60) 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/badge.d.ts +4 -4
  8. package/dist/button.d.ts +2 -2
  9. package/dist/card.d.ts +8 -8
  10. package/dist/checkbox-group.d.ts +2 -2
  11. package/dist/checkbox.d.ts +3 -3
  12. package/dist/checkbox.d.ts.map +1 -1
  13. package/dist/collapsible.d.ts +4 -4
  14. package/dist/combobox.d.ts +25 -25
  15. package/dist/context-menu.d.ts +20 -20
  16. package/dist/dialog.d.ts +11 -11
  17. package/dist/field.d.ts +8 -8
  18. package/dist/fieldset.d.ts +3 -3
  19. package/dist/fieldset.d.ts.map +1 -1
  20. package/dist/form.d.ts +2 -2
  21. package/dist/form.d.ts.map +1 -1
  22. package/dist/input.d.ts +2 -2
  23. package/dist/input.d.ts.map +1 -1
  24. package/dist/menu.d.ts +20 -20
  25. package/dist/menubar.d.ts +21 -21
  26. package/dist/meter.d.ts +6 -6
  27. package/dist/navigation-menu.d.ts +14 -14
  28. package/dist/navigation-menu.d.ts.map +1 -1
  29. package/dist/number-field.d.ts +8 -8
  30. package/dist/number-field.d.ts.map +1 -1
  31. package/dist/pagination.d.ts +10 -10
  32. package/dist/popover.d.ts +12 -12
  33. package/dist/popover.d.ts.map +1 -1
  34. package/dist/preview-card.d.ts +8 -8
  35. package/dist/progress.d.ts +6 -6
  36. package/dist/progress.d.ts.map +1 -1
  37. package/dist/radio-group.d.ts +2 -2
  38. package/dist/radio-group.d.ts.map +1 -1
  39. package/dist/radio.d.ts +3 -3
  40. package/dist/radio.d.ts.map +1 -1
  41. package/dist/scroll-area.d.ts +7 -7
  42. package/dist/scroll-area.d.ts.map +1 -1
  43. package/dist/select.d.ts +19 -19
  44. package/dist/separator.d.ts +2 -2
  45. package/dist/skeleton.d.ts +2 -2
  46. package/dist/skeleton.d.ts.map +1 -1
  47. package/dist/slider.d.ts +7 -7
  48. package/dist/slider.d.ts.map +1 -1
  49. package/dist/switch.d.ts +3 -3
  50. package/dist/tabs.d.ts +6 -6
  51. package/dist/textarea.d.ts +2 -2
  52. package/dist/textarea.d.ts.map +1 -1
  53. package/dist/toast.d.ts +10 -10
  54. package/dist/toggle-group.d.ts +3 -3
  55. package/dist/toggle.d.ts +2 -2
  56. package/dist/toolbar.d.ts +7 -7
  57. package/dist/toolbar.js +1 -1
  58. package/dist/toolbar.js.map +1 -1
  59. package/dist/tooltip.d.ts +8 -8
  60. package/package.json +1 -1
package/dist/menu.d.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime11 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime34 from "react/jsx-runtime";
3
3
  import { Menu } from "@base-ui/react/menu";
4
4
 
5
5
  //#region src/components/menu.d.ts
6
6
  type MenuRootProps = React.ComponentProps<typeof Menu.Root>;
7
7
  declare const MenuRoot: {
8
- (props: MenuRootProps): react_jsx_runtime11.JSX.Element;
8
+ (props: MenuRootProps): react_jsx_runtime34.JSX.Element;
9
9
  displayName: string;
10
10
  };
11
11
  type MenuTriggerProps = React.ComponentProps<typeof Menu.Trigger>;
@@ -13,12 +13,12 @@ declare const MenuTrigger: {
13
13
  ({
14
14
  className,
15
15
  ...props
16
- }: MenuTriggerProps): react_jsx_runtime11.JSX.Element;
16
+ }: MenuTriggerProps): react_jsx_runtime34.JSX.Element;
17
17
  displayName: string;
18
18
  };
19
19
  type MenuPortalProps = React.ComponentProps<typeof Menu.Portal>;
20
20
  declare const MenuPortal: {
21
- (props: MenuPortalProps): react_jsx_runtime11.JSX.Element;
21
+ (props: MenuPortalProps): react_jsx_runtime34.JSX.Element;
22
22
  displayName: string;
23
23
  };
24
24
  type MenuPositionerProps = React.ComponentProps<typeof Menu.Positioner>;
@@ -26,7 +26,7 @@ declare const MenuPositioner: {
26
26
  ({
27
27
  className,
28
28
  ...props
29
- }: MenuPositionerProps): react_jsx_runtime11.JSX.Element;
29
+ }: MenuPositionerProps): react_jsx_runtime34.JSX.Element;
30
30
  displayName: string;
31
31
  };
32
32
  type MenuPopupProps = React.ComponentProps<typeof Menu.Popup>;
@@ -34,7 +34,7 @@ declare const MenuPopup: {
34
34
  ({
35
35
  className,
36
36
  ...props
37
- }: MenuPopupProps): react_jsx_runtime11.JSX.Element;
37
+ }: MenuPopupProps): react_jsx_runtime34.JSX.Element;
38
38
  displayName: string;
39
39
  };
40
40
  type MenuArrowProps = React.ComponentProps<typeof Menu.Arrow>;
@@ -42,7 +42,7 @@ declare const MenuArrow: {
42
42
  ({
43
43
  className,
44
44
  ...props
45
- }: MenuArrowProps): react_jsx_runtime11.JSX.Element;
45
+ }: MenuArrowProps): react_jsx_runtime34.JSX.Element;
46
46
  displayName: string;
47
47
  };
48
48
  type MenuItemProps = React.ComponentProps<typeof Menu.Item>;
@@ -50,7 +50,7 @@ declare const MenuItem: {
50
50
  ({
51
51
  className,
52
52
  ...props
53
- }: MenuItemProps): react_jsx_runtime11.JSX.Element;
53
+ }: MenuItemProps): react_jsx_runtime34.JSX.Element;
54
54
  displayName: string;
55
55
  };
56
56
  type MenuSeparatorProps = React.ComponentProps<typeof Menu.Separator>;
@@ -58,7 +58,7 @@ declare const MenuSeparator: {
58
58
  ({
59
59
  className,
60
60
  ...props
61
- }: MenuSeparatorProps): react_jsx_runtime11.JSX.Element;
61
+ }: MenuSeparatorProps): react_jsx_runtime34.JSX.Element;
62
62
  displayName: string;
63
63
  };
64
64
  type MenuGroupProps = React.ComponentProps<typeof Menu.Group>;
@@ -66,7 +66,7 @@ declare const MenuGroup: {
66
66
  ({
67
67
  className,
68
68
  ...props
69
- }: MenuGroupProps): react_jsx_runtime11.JSX.Element;
69
+ }: MenuGroupProps): react_jsx_runtime34.JSX.Element;
70
70
  displayName: string;
71
71
  };
72
72
  type MenuGroupLabelProps = React.ComponentProps<typeof Menu.GroupLabel>;
@@ -74,7 +74,7 @@ declare const MenuGroupLabel: {
74
74
  ({
75
75
  className,
76
76
  ...props
77
- }: MenuGroupLabelProps): react_jsx_runtime11.JSX.Element;
77
+ }: MenuGroupLabelProps): react_jsx_runtime34.JSX.Element;
78
78
  displayName: string;
79
79
  };
80
80
  type MenuRadioGroupProps = React.ComponentProps<typeof Menu.RadioGroup>;
@@ -82,7 +82,7 @@ declare const MenuRadioGroup: {
82
82
  ({
83
83
  className,
84
84
  ...props
85
- }: MenuRadioGroupProps): react_jsx_runtime11.JSX.Element;
85
+ }: MenuRadioGroupProps): react_jsx_runtime34.JSX.Element;
86
86
  displayName: string;
87
87
  };
88
88
  type MenuRadioItemProps = React.ComponentProps<typeof Menu.RadioItem>;
@@ -90,7 +90,7 @@ declare const MenuRadioItem: {
90
90
  ({
91
91
  className,
92
92
  ...props
93
- }: MenuRadioItemProps): react_jsx_runtime11.JSX.Element;
93
+ }: MenuRadioItemProps): react_jsx_runtime34.JSX.Element;
94
94
  displayName: string;
95
95
  };
96
96
  type MenuCheckboxItemProps = React.ComponentProps<typeof Menu.CheckboxItem>;
@@ -98,7 +98,7 @@ declare const MenuCheckboxItem: {
98
98
  ({
99
99
  className,
100
100
  ...props
101
- }: MenuCheckboxItemProps): react_jsx_runtime11.JSX.Element;
101
+ }: MenuCheckboxItemProps): react_jsx_runtime34.JSX.Element;
102
102
  displayName: string;
103
103
  };
104
104
  type MenuRadioItemIndicatorProps = React.ComponentProps<typeof Menu.RadioItemIndicator>;
@@ -106,7 +106,7 @@ declare const MenuRadioItemIndicator: {
106
106
  ({
107
107
  className,
108
108
  ...props
109
- }: MenuRadioItemIndicatorProps): react_jsx_runtime11.JSX.Element;
109
+ }: MenuRadioItemIndicatorProps): react_jsx_runtime34.JSX.Element;
110
110
  displayName: string;
111
111
  };
112
112
  type MenuCheckboxItemIndicatorProps = React.ComponentProps<typeof Menu.CheckboxItemIndicator>;
@@ -114,7 +114,7 @@ declare const MenuCheckboxItemIndicator: {
114
114
  ({
115
115
  className,
116
116
  ...props
117
- }: MenuCheckboxItemIndicatorProps): react_jsx_runtime11.JSX.Element;
117
+ }: MenuCheckboxItemIndicatorProps): react_jsx_runtime34.JSX.Element;
118
118
  displayName: string;
119
119
  };
120
120
  type MenuCheckboxItemLabelProps = React.ComponentProps<'span'>;
@@ -122,7 +122,7 @@ declare const MenuCheckboxItemLabel: {
122
122
  ({
123
123
  className,
124
124
  ...props
125
- }: MenuCheckboxItemLabelProps): react_jsx_runtime11.JSX.Element;
125
+ }: MenuCheckboxItemLabelProps): react_jsx_runtime34.JSX.Element;
126
126
  displayName: string;
127
127
  };
128
128
  type MenuRadioItemLabelProps = React.ComponentProps<'span'>;
@@ -130,7 +130,7 @@ declare const MenuRadioItemLabel: {
130
130
  ({
131
131
  className,
132
132
  ...props
133
- }: MenuRadioItemLabelProps): react_jsx_runtime11.JSX.Element;
133
+ }: MenuRadioItemLabelProps): react_jsx_runtime34.JSX.Element;
134
134
  displayName: string;
135
135
  };
136
136
  type MenuSubmenuTriggerProps = React.ComponentProps<typeof Menu.SubmenuTrigger>;
@@ -138,12 +138,12 @@ declare const MenuSubmenuTrigger: {
138
138
  ({
139
139
  className,
140
140
  ...props
141
- }: MenuSubmenuTriggerProps): react_jsx_runtime11.JSX.Element;
141
+ }: MenuSubmenuTriggerProps): react_jsx_runtime34.JSX.Element;
142
142
  displayName: string;
143
143
  };
144
144
  type MenuSubmenuRootProps = React.ComponentProps<typeof Menu.SubmenuRoot>;
145
145
  declare const MenuSubmenuRoot: {
146
- (props: MenuSubmenuRootProps): react_jsx_runtime11.JSX.Element;
146
+ (props: MenuSubmenuRootProps): react_jsx_runtime34.JSX.Element;
147
147
  displayName: string;
148
148
  };
149
149
  //#endregion
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_runtime30 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime12 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_runtime30.JSX.Element;
13
+ }: MenubarRootProps): react_jsx_runtime12.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_runtime30.JSX.Element;
18
+ (props: MenubarMenuProps): react_jsx_runtime12.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_runtime30.JSX.Element;
33
+ }: MenubarTriggerProps): react_jsx_runtime12.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_runtime30.JSX.Element;
38
+ (props: MenubarPortalProps): react_jsx_runtime12.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_runtime30.JSX.Element;
46
+ }: MenubarPositionerProps): react_jsx_runtime12.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_runtime30.JSX.Element;
54
+ }: MenubarPopupProps): react_jsx_runtime12.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_runtime30.JSX.Element;
62
+ }: MenubarArrowProps): react_jsx_runtime12.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_runtime30.JSX.Element;
70
+ }: MenubarItemProps): react_jsx_runtime12.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_runtime30.JSX.Element;
78
+ }: MenubarSeparatorProps): react_jsx_runtime12.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_runtime30.JSX.Element;
86
+ }: MenubarGroupProps): react_jsx_runtime12.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_runtime30.JSX.Element;
94
+ }: MenubarGroupLabelProps): react_jsx_runtime12.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_runtime30.JSX.Element;
102
+ }: MenubarRadioGroupProps): react_jsx_runtime12.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_runtime30.JSX.Element;
110
+ }: MenubarRadioItemProps): react_jsx_runtime12.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_runtime30.JSX.Element;
118
+ }: MenubarCheckboxItemProps): react_jsx_runtime12.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_runtime30.JSX.Element;
126
+ }: MenubarRadioItemIndicatorProps): react_jsx_runtime12.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_runtime30.JSX.Element;
134
+ }: MenubarCheckboxItemIndicatorProps): react_jsx_runtime12.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_runtime30.JSX.Element;
142
+ }: MenubarCheckboxItemLabelProps): react_jsx_runtime12.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_runtime30.JSX.Element;
150
+ }: MenubarRadioItemLabelProps): react_jsx_runtime12.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_runtime30.JSX.Element;
158
+ }: MenubarSubmenuTriggerProps): react_jsx_runtime12.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_runtime30.JSX.Element;
163
+ (props: MenubarSubmenuRootProps): react_jsx_runtime12.JSX.Element;
164
164
  displayName: string;
165
165
  };
166
166
  //#endregion
package/dist/meter.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime50 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime53 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_runtime50.JSX.Element;
16
+ }: MeterRootProps): react_jsx_runtime53.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_runtime50.JSX.Element;
24
+ }: MeterTrackProps): react_jsx_runtime53.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_runtime50.JSX.Element;
32
+ }: MeterIndicatorProps): react_jsx_runtime53.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_runtime50.JSX.Element;
40
+ }: MeterValueProps): react_jsx_runtime53.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_runtime50.JSX.Element;
48
+ }: MeterLabelProps): react_jsx_runtime53.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_runtime55 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime112 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_runtime55.JSX.Element;
11
+ }: NavigationMenuRootProps): react_jsx_runtime112.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_runtime55.JSX.Element;
19
+ }: NavigationMenuListProps): react_jsx_runtime112.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_runtime55.JSX.Element;
27
+ }: NavigationMenuItemProps): react_jsx_runtime112.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_runtime55.JSX.Element;
35
+ }: NavigationMenuTriggerProps): react_jsx_runtime112.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_runtime55.JSX.Element;
43
+ }: NavigationMenuIconProps): react_jsx_runtime112.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_runtime55.JSX.Element;
51
+ }: NavigationMenuContentProps): react_jsx_runtime112.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_runtime55.JSX.Element;
59
+ }: NavigationMenuLinkProps): react_jsx_runtime112.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_runtime55.JSX.Element;
64
+ (props: NavigationMenuPortalProps): react_jsx_runtime112.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_runtime55.JSX.Element;
74
+ }: NavigationMenuPositionerProps): react_jsx_runtime112.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_runtime55.JSX.Element;
82
+ }: NavigationMenuPopupProps): react_jsx_runtime112.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_runtime55.JSX.Element;
90
+ }: NavigationMenuViewportProps): react_jsx_runtime112.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_runtime55.JSX.Element;
98
+ }: NavigationMenuArrowProps): react_jsx_runtime112.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_runtime55.JSX.Element;
106
+ }: NavigationMenuBackdropProps): react_jsx_runtime112.JSX.Element;
107
107
  displayName: string;
108
108
  };
109
109
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"navigation-menu.d.ts","names":[],"sources":["../src/components/navigation-menu.tsx"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"navigation-menu.d.ts","names":[],"sources":["../src/components/navigation-menu.tsx"],"sourcesContent":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  import * as React from "react";
2
- import * as react_jsx_runtime155 from "react/jsx-runtime";
2
+ import * as react_jsx_runtime59 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_runtime155.JSX.Element;
11
+ }: NumberFieldRootProps): react_jsx_runtime59.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_runtime155.JSX.Element;
19
+ }: NumberFieldScrubAreaProps): react_jsx_runtime59.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_runtime155.JSX.Element;
27
+ }: NumberFieldScrubAreaCursorProps): react_jsx_runtime59.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_runtime155.JSX.Element;
35
+ }: NumberFieldGroupProps): react_jsx_runtime59.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_runtime155.JSX.Element;
43
+ }: NumberFieldInputProps): react_jsx_runtime59.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_runtime155.JSX.Element;
51
+ }: NumberFieldDecrementProps): react_jsx_runtime59.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_runtime155.JSX.Element;
59
+ }: NumberFieldIncrementProps): react_jsx_runtime59.JSX.Element;
60
60
  displayName: string;
61
61
  };
62
62
  //#endregion
@@ -1 +1 @@
1
- {"version":3,"file":"number-field.d.ts","names":[],"sources":["../src/components/number-field.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,oBAAA,GAAuB,KAAA,CAAM,sBAAsB,WAAA,CAAgB;cAElE;;;;KAA4C,uBAAoB,oBAAA,CAAA,GAAA,CAAA;EAFjE,WAAA,EAAA,MAAA;CAAoB;KAYpB,yBAAA,GAA4B,KAAA,CAAM,cAZiC,CAAA,OAYX,WAAA,CAAgB,SAZL,CAAA;cAclE,oBAd4B,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcO,yBAdP,CAAA,EAcgC,oBAAA,CAAA,GAAA,CAAA,OAdhC;EAE1C,WAAA,EAAA,MAEL;CAAA;KAyBI,+BAAA,GAAkC,KAAA,CAAM,sBACpC,WAAA,CAAgB;cAGnB,0BA/B4C,EAAA;;IAAoB,SAAA;IAAA,GAAA;EAAA,CAAA,EAkCnE,+BAlCmE,CAAA,EAkCpC,oBAAA,CAAA,GAAA,CAAA,OAlCoC;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAiDjE,qBAAA,GAAwB,KAAA,CAAM,cAvCL,CAAA,OAuC2B,WAAA,CAAgB,KAvC3C,CAAA;cAyCxB,gBAzCuE,EAAA;;IAA5C,SAAM;IAAA,GAAA;EAAA,CAAA,EAyCY,qBAzCZ,CAAA,EAyCiC,oBAAA,CAAA,GAAA,CAAA,OAzCjC;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAmDhD,qBAAA,GAAwB,KAAA,CAAM,cA1ClC,CAAA,OA0CwD,WAAA,CAAgB,KA1CxE,CAAA;cA4CK;;IAnDiD,SAAA;IAAA,GAAA;EAAA,CAAA,EAmDJ,qBAnDI,CAAA,EAmDiB,oBAAA,CAAA,GAAA,CAAA,OAnDjB;aAAyB,EAAA,MAAA;CAAA;AAAA,KAqE3E,yBAAA,GAA4B,KAAA,CAAM,cAtDH,CAAA,OAsDyB,WAAA,CAAgB,SAtDzC,CAAA;cAwD9B,oBAxD8B,EAAA;;IAC3B,SAAA;IAAA,GAAgB;EAAA,CAAA,EAuD8B,yBAvD9B,CAAA,EAuDuD,oBAAA,CAAA,GAAA,CAAA,OAvDvD;aADoB,EAAA,MAAA;CAAc;AAAA,KA0EtD,yBAAA,GAA4B,KAAA,CAAM,cA5DtC,CAAA,OA4D4D,WAAA,CAAgB,SA5D5E,CAAA;cA8DK,oBA9DL,EAAA;;;;KA8DsD,4BAAyB,oBAAA,CAAA,GAAA,CAAA;aArE7E,EAAA,MAAA"}
1
+ {"version":3,"file":"number-field.d.ts","names":[],"sources":["../src/components/number-field.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,oBAAA,GAAuB,KAAA,CAAM,sBAAsB,WAAA,CAAgB;cAElE;;;;KAA4C,uBAAoB,mBAAA,CAAA,GAAA,CAAA;EAFjE,WAAA,EAAA,MAAA;CAAoB;KAYpB,yBAAA,GAA4B,KAAA,CAAM,cAZiC,CAAA,OAYX,WAAA,CAAgB,SAZL,CAAA;cAclE,oBAd4B,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAcO,yBAdP,CAAA,EAcgC,mBAAA,CAAA,GAAA,CAAA,OAdhC;EAE1C,WAAA,EAAA,MAEL;CAAA;KAyBI,+BAAA,GAAkC,KAAA,CAAM,sBACpC,WAAA,CAAgB;cAGnB,0BA/B4C,EAAA;;IAAoB,SAAA;IAAA,GAAA;EAAA,CAAA,EAkCnE,+BAlCmE,CAAA,EAkCpC,mBAAA,CAAA,GAAA,CAAA,OAlCoC;EAAA,WAAA,EAAA,MAAA;AAAA,CAAA;KAiDjE,qBAAA,GAAwB,KAAA,CAAM,cAvCL,CAAA,OAuC2B,WAAA,CAAgB,KAvC3C,CAAA;cAyCxB,gBAzCuE,EAAA;;IAA5C,SAAM;IAAA,GAAA;EAAA,CAAA,EAyCY,qBAzCZ,CAAA,EAyCiC,mBAAA,CAAA,GAAA,CAAA,OAzCjC;EAAc,WAAA,EAAA,MAAA;AAAA,CAAA;KAmDhD,qBAAA,GAAwB,KAAA,CAAM,cA1ClC,CAAA,OA0CwD,WAAA,CAAgB,KA1CxE,CAAA;cA4CK;;IAnDiD,SAAA;IAAA,GAAA;EAAA,CAAA,EAmDJ,qBAnDI,CAAA,EAmDiB,mBAAA,CAAA,GAAA,CAAA,OAnDjB;aAAyB,EAAA,MAAA;CAAA;AAAA,KAqE3E,yBAAA,GAA4B,KAAA,CAAM,cAtDH,CAAA,OAsDyB,WAAA,CAAgB,SAtDzC,CAAA;cAwD9B,oBAxD8B,EAAA;;IAC3B,SAAA;IAAA,GAAgB;EAAA,CAAA,EAuD8B,yBAvD9B,CAAA,EAuDuD,mBAAA,CAAA,GAAA,CAAA,OAvDvD;aADoB,EAAA,MAAA;CAAc;AAAA,KA0EtD,yBAAA,GAA4B,KAAA,CAAM,cA5DtC,CAAA,OA4D4D,WAAA,CAAgB,SA5D5E,CAAA;cA8DK,oBA9DL,EAAA;;;;KA8DsD,4BAAyB,mBAAA,CAAA,GAAA,CAAA;aArE7E,EAAA,MAAA"}
@@ -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_runtime82 from "react/jsx-runtime";
3
+ import * as react_jsx_runtime66 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_runtime82.JSX.Element;
65
+ }: PaginationRootProps): react_jsx_runtime66.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_runtime82.JSX.Element;
73
+ }: PaginationContentProps): react_jsx_runtime66.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_runtime82.JSX.Element;
81
+ }: PaginationItemProps): react_jsx_runtime66.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_runtime82.JSX.Element;
99
+ }: PaginationButtonProps): react_jsx_runtime66.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_runtime82.JSX.Element;
116
+ }: PaginationPreviousProps): react_jsx_runtime66.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_runtime82.JSX.Element;
133
+ }: PaginationNextProps): react_jsx_runtime66.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_runtime82.JSX.Element;
150
+ }: PaginationFirstProps): react_jsx_runtime66.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_runtime82.JSX.Element;
167
+ }: PaginationLastProps): react_jsx_runtime66.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_runtime82.JSX.Element;
179
+ }: PaginationEllipsisProps): react_jsx_runtime66.JSX.Element;
180
180
  displayName: string;
181
181
  };
182
182
  //#endregion