@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.
- package/dist/accordion.d.ts +6 -6
- package/dist/accordion.d.ts.map +1 -1
- package/dist/alert-dialog.d.ts +10 -10
- package/dist/alert-dialog.d.ts.map +1 -1
- package/dist/autocomplete.d.ts +13 -13
- package/dist/avatar.d.ts +5 -5
- package/dist/avatar.d.ts.map +1 -1
- package/dist/badge.d.ts +4 -4
- package/dist/badge.d.ts.map +1 -1
- package/dist/button.d.ts +2 -2
- package/dist/calendar.d.ts +19 -0
- package/dist/calendar.d.ts.map +1 -0
- package/dist/calendar.js +52 -0
- package/dist/calendar.js.map +1 -0
- package/dist/card.d.ts +8 -8
- package/dist/checkbox-group.d.ts +2 -2
- package/dist/checkbox.d.ts +3 -3
- package/dist/collapsible.d.ts +4 -4
- package/dist/combobox.d.ts +25 -25
- package/dist/combobox.d.ts.map +1 -1
- package/dist/components/chart/context.d.ts +2 -2
- package/dist/components/chart/legend.d.ts +2 -2
- package/dist/components/chart/tooltip.d.ts +2 -2
- package/dist/components/table/primitives.d.ts +9 -9
- package/dist/context-menu.d.ts +20 -20
- package/dist/context-menu.d.ts.map +1 -1
- package/dist/dialog.d.ts +11 -11
- package/dist/drawer.d.ts +12 -12
- package/dist/field.d.ts +8 -8
- package/dist/fieldset.d.ts +3 -3
- package/dist/form.d.ts +2 -2
- package/dist/group.d.ts +36 -0
- package/dist/group.d.ts.map +1 -0
- package/dist/group.js +72 -0
- package/dist/group.js.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -1
- package/dist/input.d.ts +2 -2
- package/dist/menu.d.ts +20 -20
- package/dist/menubar.d.ts +21 -21
- package/dist/menubar.d.ts.map +1 -1
- package/dist/meter.d.ts +6 -6
- package/dist/navigation-menu.d.ts +14 -14
- package/dist/number-field.d.ts +8 -8
- package/dist/pagination.d.ts +10 -10
- package/dist/popover.d.ts +12 -12
- package/dist/preview-card.d.ts +8 -8
- package/dist/progress.d.ts +6 -6
- package/dist/progress.d.ts.map +1 -1
- package/dist/radio-group.d.ts +2 -2
- package/dist/radio-group.d.ts.map +1 -1
- package/dist/radio.d.ts +3 -3
- package/dist/radio.d.ts.map +1 -1
- package/dist/scroll-area.d.ts +7 -7
- package/dist/scroll-area.d.ts.map +1 -1
- package/dist/select.d.ts +19 -19
- package/dist/select.d.ts.map +1 -1
- package/dist/separator.d.ts +2 -2
- package/dist/separator.d.ts.map +1 -1
- package/dist/skeleton.d.ts +2 -2
- package/dist/skeleton.d.ts.map +1 -1
- package/dist/slider.d.ts +7 -7
- package/dist/slider.d.ts.map +1 -1
- package/dist/switch.d.ts +3 -3
- package/dist/switch.d.ts.map +1 -1
- package/dist/tabs.d.ts +6 -6
- package/dist/textarea.d.ts +2 -2
- package/dist/textarea.d.ts.map +1 -1
- package/dist/toast.d.ts +10 -10
- package/dist/toast.d.ts.map +1 -1
- package/dist/toggle-group.d.ts +3 -3
- package/dist/toggle-group.d.ts.map +1 -1
- package/dist/toggle.d.ts +2 -2
- package/dist/toggle.d.ts.map +1 -1
- package/dist/toolbar.d.ts +7 -7
- package/dist/tooltip.d.ts +8 -8
- 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
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
163
|
+
(props: MenubarSubmenuRootProps): react_jsx_runtime236.JSX.Element;
|
|
164
164
|
displayName: string;
|
|
165
165
|
};
|
|
166
166
|
//#endregion
|
package/dist/menubar.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menubar.d.ts","names":[],"sources":["../src/components/menubar.tsx"],"sourcesContent":[],"mappings":";;;;;;;KAmBK,gBAAA,GAAmB,KAAA,CAAM,sBAAsB;cAE9C;;;;KAAwC,mBAAgB,
|
|
1
|
+
{"version":3,"file":"menubar.d.ts","names":[],"sources":["../src/components/menubar.tsx"],"sourcesContent":[],"mappings":"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"}
|
package/dist/meter.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
106
|
+
}: NavigationMenuBackdropProps): react_jsx_runtime156.JSX.Element;
|
|
107
107
|
displayName: string;
|
|
108
108
|
};
|
|
109
109
|
//#endregion
|
package/dist/number-field.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
59
|
+
}: NumberFieldIncrementProps): react_jsx_runtime169.JSX.Element;
|
|
60
60
|
displayName: string;
|
|
61
61
|
};
|
|
62
62
|
//#endregion
|
package/dist/pagination.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
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
85
|
+
}: PopoverViewportProps): react_jsx_runtime215.JSX.Element;
|
|
86
86
|
displayName: string;
|
|
87
87
|
};
|
|
88
88
|
//#endregion
|
package/dist/preview-card.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
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):
|
|
53
|
+
}: PreviewCardArrowProps): react_jsx_runtime227.JSX.Element;
|
|
54
54
|
displayName: string;
|
|
55
55
|
};
|
|
56
56
|
//#endregion
|