@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.
- 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/badge.d.ts +4 -4
- package/dist/button.d.ts +2 -2
- package/dist/card.d.ts +8 -8
- package/dist/checkbox-group.d.ts +2 -2
- package/dist/checkbox.d.ts +3 -3
- package/dist/checkbox.d.ts.map +1 -1
- package/dist/collapsible.d.ts +4 -4
- package/dist/combobox.d.ts +25 -25
- package/dist/context-menu.d.ts +20 -20
- package/dist/dialog.d.ts +11 -11
- package/dist/field.d.ts +8 -8
- package/dist/fieldset.d.ts +3 -3
- package/dist/fieldset.d.ts.map +1 -1
- package/dist/form.d.ts +2 -2
- package/dist/form.d.ts.map +1 -1
- package/dist/input.d.ts +2 -2
- package/dist/input.d.ts.map +1 -1
- package/dist/menu.d.ts +20 -20
- package/dist/menubar.d.ts +21 -21
- package/dist/meter.d.ts +6 -6
- package/dist/navigation-menu.d.ts +14 -14
- package/dist/navigation-menu.d.ts.map +1 -1
- package/dist/number-field.d.ts +8 -8
- package/dist/number-field.d.ts.map +1 -1
- package/dist/pagination.d.ts +10 -10
- package/dist/popover.d.ts +12 -12
- package/dist/popover.d.ts.map +1 -1
- 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/separator.d.ts +2 -2
- 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/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/toggle-group.d.ts +3 -3
- package/dist/toggle.d.ts +2 -2
- package/dist/toolbar.d.ts +7 -7
- package/dist/toolbar.js +1 -1
- package/dist/toolbar.js.map +1 -1
- package/dist/tooltip.d.ts +8 -8
- package/package.json +1 -1
package/dist/combobox.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime171 from "react/jsx-runtime";
|
|
3
3
|
import { Combobox as BaseCombobox, ComboboxRootProps as ComboboxRootProps$1 } from "@base-ui/react/combobox";
|
|
4
4
|
import * as _base_ui_react0 from "@base-ui/react";
|
|
5
5
|
|
|
6
6
|
//#region src/components/combobox.d.ts
|
|
7
|
-
declare function ComboboxRoot<Value, Multiple extends boolean | undefined = false>(props: ComboboxRootProps$1<Value, Multiple>):
|
|
7
|
+
declare function ComboboxRoot<Value, Multiple extends boolean | undefined = false>(props: ComboboxRootProps$1<Value, Multiple>): react_jsx_runtime171.JSX.Element;
|
|
8
8
|
declare namespace ComboboxRoot {
|
|
9
9
|
var displayName: string;
|
|
10
10
|
}
|
|
11
11
|
type ComboboxRootProps<Value, Multiple extends boolean | undefined = false> = ComboboxRootProps$1<Value, Multiple>;
|
|
12
12
|
type ComboboxValueProps = React.ComponentProps<typeof BaseCombobox.Value>;
|
|
13
13
|
declare const ComboboxValue: {
|
|
14
|
-
(props: ComboboxValueProps):
|
|
14
|
+
(props: ComboboxValueProps): react_jsx_runtime171.JSX.Element;
|
|
15
15
|
displayName: string;
|
|
16
16
|
};
|
|
17
17
|
type ComboboxIconProps = React.ComponentProps<typeof BaseCombobox.Icon>;
|
|
@@ -19,7 +19,7 @@ declare const ComboboxIcon: {
|
|
|
19
19
|
({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: ComboboxIconProps):
|
|
22
|
+
}: ComboboxIconProps): react_jsx_runtime171.JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
};
|
|
25
25
|
type ComboboxInputProps = React.ComponentProps<typeof BaseCombobox.Input>;
|
|
@@ -27,7 +27,7 @@ declare const ComboboxInput: {
|
|
|
27
27
|
({
|
|
28
28
|
className,
|
|
29
29
|
...props
|
|
30
|
-
}: ComboboxInputProps):
|
|
30
|
+
}: ComboboxInputProps): react_jsx_runtime171.JSX.Element;
|
|
31
31
|
displayName: string;
|
|
32
32
|
};
|
|
33
33
|
type ComboboxControlProps = React.ComponentProps<'div'>;
|
|
@@ -35,7 +35,7 @@ declare const ComboboxControl: {
|
|
|
35
35
|
({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: ComboboxControlProps):
|
|
38
|
+
}: ComboboxControlProps): react_jsx_runtime171.JSX.Element;
|
|
39
39
|
displayName: string;
|
|
40
40
|
};
|
|
41
41
|
type ComboboxClearProps = React.ComponentProps<typeof BaseCombobox.Clear>;
|
|
@@ -43,7 +43,7 @@ declare const ComboboxClear: {
|
|
|
43
43
|
({
|
|
44
44
|
className,
|
|
45
45
|
...props
|
|
46
|
-
}: ComboboxClearProps):
|
|
46
|
+
}: ComboboxClearProps): react_jsx_runtime171.JSX.Element;
|
|
47
47
|
displayName: string;
|
|
48
48
|
};
|
|
49
49
|
type ComboboxTriggerProps = React.ComponentProps<typeof BaseCombobox.Trigger>;
|
|
@@ -51,7 +51,7 @@ declare const ComboboxTrigger: {
|
|
|
51
51
|
({
|
|
52
52
|
className,
|
|
53
53
|
...props
|
|
54
|
-
}: ComboboxTriggerProps):
|
|
54
|
+
}: ComboboxTriggerProps): react_jsx_runtime171.JSX.Element;
|
|
55
55
|
displayName: string;
|
|
56
56
|
};
|
|
57
57
|
type ComboboxBackdropProps = React.ComponentProps<typeof BaseCombobox.Backdrop>;
|
|
@@ -59,12 +59,12 @@ declare const ComboboxBackdrop: {
|
|
|
59
59
|
({
|
|
60
60
|
className,
|
|
61
61
|
...props
|
|
62
|
-
}: ComboboxBackdropProps):
|
|
62
|
+
}: ComboboxBackdropProps): react_jsx_runtime171.JSX.Element;
|
|
63
63
|
displayName: string;
|
|
64
64
|
};
|
|
65
65
|
type ComboboxPortalProps = React.ComponentProps<typeof BaseCombobox.Portal>;
|
|
66
66
|
declare const ComboboxPortal: {
|
|
67
|
-
(props: ComboboxPortalProps):
|
|
67
|
+
(props: ComboboxPortalProps): react_jsx_runtime171.JSX.Element;
|
|
68
68
|
displayName: string;
|
|
69
69
|
};
|
|
70
70
|
type ComboboxPositionerProps = React.ComponentProps<typeof BaseCombobox.Positioner>;
|
|
@@ -72,7 +72,7 @@ declare const ComboboxPositioner: {
|
|
|
72
72
|
({
|
|
73
73
|
className,
|
|
74
74
|
...props
|
|
75
|
-
}: ComboboxPositionerProps):
|
|
75
|
+
}: ComboboxPositionerProps): react_jsx_runtime171.JSX.Element;
|
|
76
76
|
displayName: string;
|
|
77
77
|
};
|
|
78
78
|
type ComboboxPopupProps = React.ComponentProps<typeof BaseCombobox.Popup>;
|
|
@@ -80,7 +80,7 @@ declare const ComboboxPopup: {
|
|
|
80
80
|
({
|
|
81
81
|
className,
|
|
82
82
|
...props
|
|
83
|
-
}: ComboboxPopupProps):
|
|
83
|
+
}: ComboboxPopupProps): react_jsx_runtime171.JSX.Element;
|
|
84
84
|
displayName: string;
|
|
85
85
|
};
|
|
86
86
|
type ComboboxListProps = React.ComponentProps<typeof BaseCombobox.List>;
|
|
@@ -88,7 +88,7 @@ declare const ComboboxList: {
|
|
|
88
88
|
({
|
|
89
89
|
className,
|
|
90
90
|
...props
|
|
91
|
-
}: ComboboxListProps):
|
|
91
|
+
}: ComboboxListProps): react_jsx_runtime171.JSX.Element;
|
|
92
92
|
displayName: string;
|
|
93
93
|
};
|
|
94
94
|
type ComboboxEmptyProps = React.ComponentProps<typeof BaseCombobox.Empty>;
|
|
@@ -96,7 +96,7 @@ declare const ComboboxEmpty: {
|
|
|
96
96
|
({
|
|
97
97
|
className,
|
|
98
98
|
...props
|
|
99
|
-
}: ComboboxEmptyProps):
|
|
99
|
+
}: ComboboxEmptyProps): react_jsx_runtime171.JSX.Element;
|
|
100
100
|
displayName: string;
|
|
101
101
|
};
|
|
102
102
|
type ComboboxItemProps = React.ComponentProps<typeof BaseCombobox.Item>;
|
|
@@ -104,7 +104,7 @@ declare const ComboboxItem: {
|
|
|
104
104
|
({
|
|
105
105
|
className,
|
|
106
106
|
...props
|
|
107
|
-
}: ComboboxItemProps):
|
|
107
|
+
}: ComboboxItemProps): react_jsx_runtime171.JSX.Element;
|
|
108
108
|
displayName: string;
|
|
109
109
|
};
|
|
110
110
|
type ComboboxItemTextProps = React.ComponentProps<'span'>;
|
|
@@ -112,7 +112,7 @@ declare const ComboboxItemText: {
|
|
|
112
112
|
({
|
|
113
113
|
className,
|
|
114
114
|
...props
|
|
115
|
-
}: ComboboxItemTextProps):
|
|
115
|
+
}: ComboboxItemTextProps): react_jsx_runtime171.JSX.Element;
|
|
116
116
|
displayName: string;
|
|
117
117
|
};
|
|
118
118
|
type ComboboxItemIndicatorProps = React.ComponentProps<typeof BaseCombobox.ItemIndicator>;
|
|
@@ -120,7 +120,7 @@ declare const ComboboxItemIndicator: {
|
|
|
120
120
|
({
|
|
121
121
|
className,
|
|
122
122
|
...props
|
|
123
|
-
}: ComboboxItemIndicatorProps):
|
|
123
|
+
}: ComboboxItemIndicatorProps): react_jsx_runtime171.JSX.Element;
|
|
124
124
|
displayName: string;
|
|
125
125
|
};
|
|
126
126
|
type ComboboxGroupProps = React.ComponentProps<typeof BaseCombobox.Group>;
|
|
@@ -128,7 +128,7 @@ declare const ComboboxGroup: {
|
|
|
128
128
|
({
|
|
129
129
|
className,
|
|
130
130
|
...props
|
|
131
|
-
}: ComboboxGroupProps):
|
|
131
|
+
}: ComboboxGroupProps): react_jsx_runtime171.JSX.Element;
|
|
132
132
|
displayName: string;
|
|
133
133
|
};
|
|
134
134
|
type ComboboxGroupLabelProps = React.ComponentProps<typeof BaseCombobox.GroupLabel>;
|
|
@@ -136,12 +136,12 @@ declare const ComboboxGroupLabel: {
|
|
|
136
136
|
({
|
|
137
137
|
className,
|
|
138
138
|
...props
|
|
139
|
-
}: ComboboxGroupLabelProps):
|
|
139
|
+
}: ComboboxGroupLabelProps): react_jsx_runtime171.JSX.Element;
|
|
140
140
|
displayName: string;
|
|
141
141
|
};
|
|
142
142
|
type ComboboxCollectionProps = React.ComponentProps<typeof BaseCombobox.Collection>;
|
|
143
143
|
declare const ComboboxCollection: {
|
|
144
|
-
(props: ComboboxCollectionProps):
|
|
144
|
+
(props: ComboboxCollectionProps): react_jsx_runtime171.JSX.Element;
|
|
145
145
|
displayName: string;
|
|
146
146
|
};
|
|
147
147
|
type ComboboxSeparatorProps = React.ComponentProps<typeof BaseCombobox.Separator>;
|
|
@@ -149,7 +149,7 @@ declare const ComboboxSeparator: {
|
|
|
149
149
|
({
|
|
150
150
|
className,
|
|
151
151
|
...props
|
|
152
|
-
}: ComboboxSeparatorProps):
|
|
152
|
+
}: ComboboxSeparatorProps): react_jsx_runtime171.JSX.Element;
|
|
153
153
|
displayName: string;
|
|
154
154
|
};
|
|
155
155
|
type ComboboxStatusProps = React.ComponentProps<typeof BaseCombobox.Status>;
|
|
@@ -157,7 +157,7 @@ declare const ComboboxStatus: {
|
|
|
157
157
|
({
|
|
158
158
|
className,
|
|
159
159
|
...props
|
|
160
|
-
}: ComboboxStatusProps):
|
|
160
|
+
}: ComboboxStatusProps): react_jsx_runtime171.JSX.Element;
|
|
161
161
|
displayName: string;
|
|
162
162
|
};
|
|
163
163
|
type ComboboxChipsProps = React.ComponentProps<typeof BaseCombobox.Chips>;
|
|
@@ -167,7 +167,7 @@ declare const ComboboxChip: {
|
|
|
167
167
|
({
|
|
168
168
|
className,
|
|
169
169
|
...props
|
|
170
|
-
}: ComboboxChipProps):
|
|
170
|
+
}: ComboboxChipProps): react_jsx_runtime171.JSX.Element;
|
|
171
171
|
displayName: string;
|
|
172
172
|
};
|
|
173
173
|
type ComboboxChipRemoveProps = React.ComponentProps<typeof BaseCombobox.ChipRemove>;
|
|
@@ -175,7 +175,7 @@ declare const ComboboxChipRemove: {
|
|
|
175
175
|
({
|
|
176
176
|
className,
|
|
177
177
|
...props
|
|
178
|
-
}: ComboboxChipRemoveProps):
|
|
178
|
+
}: ComboboxChipRemoveProps): react_jsx_runtime171.JSX.Element;
|
|
179
179
|
displayName: string;
|
|
180
180
|
};
|
|
181
181
|
type ComboboxArrowProps = React.ComponentProps<typeof BaseCombobox.Arrow>;
|
|
@@ -183,7 +183,7 @@ declare const ComboboxArrow: {
|
|
|
183
183
|
({
|
|
184
184
|
className,
|
|
185
185
|
...props
|
|
186
|
-
}: ComboboxArrowProps):
|
|
186
|
+
}: ComboboxArrowProps): react_jsx_runtime171.JSX.Element;
|
|
187
187
|
displayName: string;
|
|
188
188
|
};
|
|
189
189
|
//#endregion
|
package/dist/context-menu.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime232 from "react/jsx-runtime";
|
|
3
3
|
import { ContextMenu } from "@base-ui/react/context-menu";
|
|
4
4
|
|
|
5
5
|
//#region src/components/context-menu.d.ts
|
|
6
6
|
type ContextMenuRootProps = React.ComponentProps<typeof ContextMenu.Root>;
|
|
7
7
|
declare const ContextMenuRoot: {
|
|
8
|
-
(props: ContextMenuRootProps):
|
|
8
|
+
(props: ContextMenuRootProps): react_jsx_runtime232.JSX.Element;
|
|
9
9
|
displayName: string;
|
|
10
10
|
};
|
|
11
11
|
type ContextMenuTriggerProps = React.ComponentProps<typeof ContextMenu.Trigger>;
|
|
@@ -13,12 +13,12 @@ declare const ContextMenuTrigger: {
|
|
|
13
13
|
({
|
|
14
14
|
className,
|
|
15
15
|
...props
|
|
16
|
-
}: ContextMenuTriggerProps):
|
|
16
|
+
}: ContextMenuTriggerProps): react_jsx_runtime232.JSX.Element;
|
|
17
17
|
displayName: string;
|
|
18
18
|
};
|
|
19
19
|
type ContextMenuPortalProps = React.ComponentProps<typeof ContextMenu.Portal>;
|
|
20
20
|
declare const ContextMenuPortal: {
|
|
21
|
-
(props: ContextMenuPortalProps):
|
|
21
|
+
(props: ContextMenuPortalProps): react_jsx_runtime232.JSX.Element;
|
|
22
22
|
displayName: string;
|
|
23
23
|
};
|
|
24
24
|
type ContextMenuPositionerProps = React.ComponentProps<typeof ContextMenu.Positioner>;
|
|
@@ -26,7 +26,7 @@ declare const ContextMenuPositioner: {
|
|
|
26
26
|
({
|
|
27
27
|
className,
|
|
28
28
|
...props
|
|
29
|
-
}: ContextMenuPositionerProps):
|
|
29
|
+
}: ContextMenuPositionerProps): react_jsx_runtime232.JSX.Element;
|
|
30
30
|
displayName: string;
|
|
31
31
|
};
|
|
32
32
|
type ContextMenuPopupProps = React.ComponentProps<typeof ContextMenu.Popup>;
|
|
@@ -34,7 +34,7 @@ declare const ContextMenuPopup: {
|
|
|
34
34
|
({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: ContextMenuPopupProps):
|
|
37
|
+
}: ContextMenuPopupProps): react_jsx_runtime232.JSX.Element;
|
|
38
38
|
displayName: string;
|
|
39
39
|
};
|
|
40
40
|
type ContextMenuArrowProps = React.ComponentProps<typeof ContextMenu.Arrow>;
|
|
@@ -42,7 +42,7 @@ declare const ContextMenuArrow: {
|
|
|
42
42
|
({
|
|
43
43
|
className,
|
|
44
44
|
...props
|
|
45
|
-
}: ContextMenuArrowProps):
|
|
45
|
+
}: ContextMenuArrowProps): react_jsx_runtime232.JSX.Element;
|
|
46
46
|
displayName: string;
|
|
47
47
|
};
|
|
48
48
|
type ContextMenuItemProps = React.ComponentProps<typeof ContextMenu.Item>;
|
|
@@ -50,7 +50,7 @@ declare const ContextMenuItem: {
|
|
|
50
50
|
({
|
|
51
51
|
className,
|
|
52
52
|
...props
|
|
53
|
-
}: ContextMenuItemProps):
|
|
53
|
+
}: ContextMenuItemProps): react_jsx_runtime232.JSX.Element;
|
|
54
54
|
displayName: string;
|
|
55
55
|
};
|
|
56
56
|
type ContextMenuSeparatorProps = React.ComponentProps<typeof ContextMenu.Separator>;
|
|
@@ -58,7 +58,7 @@ declare const ContextMenuSeparator: {
|
|
|
58
58
|
({
|
|
59
59
|
className,
|
|
60
60
|
...props
|
|
61
|
-
}: ContextMenuSeparatorProps):
|
|
61
|
+
}: ContextMenuSeparatorProps): react_jsx_runtime232.JSX.Element;
|
|
62
62
|
displayName: string;
|
|
63
63
|
};
|
|
64
64
|
type ContextMenuGroupProps = React.ComponentProps<typeof ContextMenu.Group>;
|
|
@@ -66,7 +66,7 @@ declare const ContextMenuGroup: {
|
|
|
66
66
|
({
|
|
67
67
|
className,
|
|
68
68
|
...props
|
|
69
|
-
}: ContextMenuGroupProps):
|
|
69
|
+
}: ContextMenuGroupProps): react_jsx_runtime232.JSX.Element;
|
|
70
70
|
displayName: string;
|
|
71
71
|
};
|
|
72
72
|
type ContextMenuGroupLabelProps = React.ComponentProps<typeof ContextMenu.GroupLabel>;
|
|
@@ -74,7 +74,7 @@ declare const ContextMenuGroupLabel: {
|
|
|
74
74
|
({
|
|
75
75
|
className,
|
|
76
76
|
...props
|
|
77
|
-
}: ContextMenuGroupLabelProps):
|
|
77
|
+
}: ContextMenuGroupLabelProps): react_jsx_runtime232.JSX.Element;
|
|
78
78
|
displayName: string;
|
|
79
79
|
};
|
|
80
80
|
type ContextMenuRadioGroupProps = React.ComponentProps<typeof ContextMenu.RadioGroup>;
|
|
@@ -82,7 +82,7 @@ declare const ContextMenuRadioGroup: {
|
|
|
82
82
|
({
|
|
83
83
|
className,
|
|
84
84
|
...props
|
|
85
|
-
}: ContextMenuRadioGroupProps):
|
|
85
|
+
}: ContextMenuRadioGroupProps): react_jsx_runtime232.JSX.Element;
|
|
86
86
|
displayName: string;
|
|
87
87
|
};
|
|
88
88
|
type ContextMenuRadioItemProps = React.ComponentProps<typeof ContextMenu.RadioItem>;
|
|
@@ -90,7 +90,7 @@ declare const ContextMenuRadioItem: {
|
|
|
90
90
|
({
|
|
91
91
|
className,
|
|
92
92
|
...props
|
|
93
|
-
}: ContextMenuRadioItemProps):
|
|
93
|
+
}: ContextMenuRadioItemProps): react_jsx_runtime232.JSX.Element;
|
|
94
94
|
displayName: string;
|
|
95
95
|
};
|
|
96
96
|
type ContextMenuCheckboxItemProps = React.ComponentProps<typeof ContextMenu.CheckboxItem>;
|
|
@@ -98,7 +98,7 @@ declare const ContextMenuCheckboxItem: {
|
|
|
98
98
|
({
|
|
99
99
|
className,
|
|
100
100
|
...props
|
|
101
|
-
}: ContextMenuCheckboxItemProps):
|
|
101
|
+
}: ContextMenuCheckboxItemProps): react_jsx_runtime232.JSX.Element;
|
|
102
102
|
displayName: string;
|
|
103
103
|
};
|
|
104
104
|
type ContextMenuRadioItemIndicatorProps = React.ComponentProps<typeof ContextMenu.RadioItemIndicator>;
|
|
@@ -106,7 +106,7 @@ declare const ContextMenuRadioItemIndicator: {
|
|
|
106
106
|
({
|
|
107
107
|
className,
|
|
108
108
|
...props
|
|
109
|
-
}: ContextMenuRadioItemIndicatorProps):
|
|
109
|
+
}: ContextMenuRadioItemIndicatorProps): react_jsx_runtime232.JSX.Element;
|
|
110
110
|
displayName: string;
|
|
111
111
|
};
|
|
112
112
|
type ContextMenuCheckboxItemIndicatorProps = React.ComponentProps<typeof ContextMenu.CheckboxItemIndicator>;
|
|
@@ -114,7 +114,7 @@ declare const ContextMenuCheckboxItemIndicator: {
|
|
|
114
114
|
({
|
|
115
115
|
className,
|
|
116
116
|
...props
|
|
117
|
-
}: ContextMenuCheckboxItemIndicatorProps):
|
|
117
|
+
}: ContextMenuCheckboxItemIndicatorProps): react_jsx_runtime232.JSX.Element;
|
|
118
118
|
displayName: string;
|
|
119
119
|
};
|
|
120
120
|
type ContextMenuCheckboxItemLabelProps = React.ComponentProps<'span'>;
|
|
@@ -122,7 +122,7 @@ declare const ContextMenuCheckboxItemLabel: {
|
|
|
122
122
|
({
|
|
123
123
|
className,
|
|
124
124
|
...props
|
|
125
|
-
}: ContextMenuCheckboxItemLabelProps):
|
|
125
|
+
}: ContextMenuCheckboxItemLabelProps): react_jsx_runtime232.JSX.Element;
|
|
126
126
|
displayName: string;
|
|
127
127
|
};
|
|
128
128
|
type ContextMenuRadioItemLabelProps = React.ComponentProps<'span'>;
|
|
@@ -130,7 +130,7 @@ declare const ContextMenuRadioItemLabel: {
|
|
|
130
130
|
({
|
|
131
131
|
className,
|
|
132
132
|
...props
|
|
133
|
-
}: ContextMenuRadioItemLabelProps):
|
|
133
|
+
}: ContextMenuRadioItemLabelProps): react_jsx_runtime232.JSX.Element;
|
|
134
134
|
displayName: string;
|
|
135
135
|
};
|
|
136
136
|
type ContextMenuSubmenuTriggerProps = React.ComponentProps<typeof ContextMenu.SubmenuTrigger>;
|
|
@@ -138,12 +138,12 @@ declare const ContextMenuSubmenuTrigger: {
|
|
|
138
138
|
({
|
|
139
139
|
className,
|
|
140
140
|
...props
|
|
141
|
-
}: ContextMenuSubmenuTriggerProps):
|
|
141
|
+
}: ContextMenuSubmenuTriggerProps): react_jsx_runtime232.JSX.Element;
|
|
142
142
|
displayName: string;
|
|
143
143
|
};
|
|
144
144
|
type ContextMenuSubmenuRootProps = React.ComponentProps<typeof ContextMenu.SubmenuRoot>;
|
|
145
145
|
declare const ContextMenuSubmenuRoot: {
|
|
146
|
-
(props: ContextMenuSubmenuRootProps):
|
|
146
|
+
(props: ContextMenuSubmenuRootProps): react_jsx_runtime232.JSX.Element;
|
|
147
147
|
displayName: string;
|
|
148
148
|
};
|
|
149
149
|
//#endregion
|
package/dist/dialog.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ButtonSize, ButtonVariant } from "./lib/button-variants.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime254 from "react/jsx-runtime";
|
|
4
4
|
import { Dialog } from "@base-ui/react/dialog";
|
|
5
5
|
|
|
6
6
|
//#region src/components/dialog.d.ts
|
|
7
7
|
type DialogRootProps = React.ComponentProps<typeof Dialog.Root>;
|
|
8
8
|
declare const DialogRoot: {
|
|
9
|
-
(props: DialogRootProps):
|
|
9
|
+
(props: DialogRootProps): react_jsx_runtime254.JSX.Element;
|
|
10
10
|
displayName: string;
|
|
11
11
|
};
|
|
12
12
|
type DialogTriggerProps = React.ComponentProps<typeof Dialog.Trigger> & {
|
|
@@ -21,12 +21,12 @@ declare const DialogTrigger: {
|
|
|
21
21
|
variant,
|
|
22
22
|
size,
|
|
23
23
|
...props
|
|
24
|
-
}: DialogTriggerProps):
|
|
24
|
+
}: DialogTriggerProps): react_jsx_runtime254.JSX.Element;
|
|
25
25
|
displayName: string;
|
|
26
26
|
};
|
|
27
27
|
type DialogPortalProps = React.ComponentProps<typeof Dialog.Portal>;
|
|
28
28
|
declare const DialogPortal: {
|
|
29
|
-
(props: DialogPortalProps):
|
|
29
|
+
(props: DialogPortalProps): react_jsx_runtime254.JSX.Element;
|
|
30
30
|
displayName: string;
|
|
31
31
|
};
|
|
32
32
|
type DialogBackdropProps = React.ComponentProps<typeof Dialog.Backdrop>;
|
|
@@ -34,7 +34,7 @@ declare const DialogBackdrop: {
|
|
|
34
34
|
({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: DialogBackdropProps):
|
|
37
|
+
}: DialogBackdropProps): react_jsx_runtime254.JSX.Element;
|
|
38
38
|
displayName: string;
|
|
39
39
|
};
|
|
40
40
|
type DialogPopupProps = React.ComponentProps<typeof Dialog.Popup> & {
|
|
@@ -46,7 +46,7 @@ declare const DialogPopup: {
|
|
|
46
46
|
className,
|
|
47
47
|
size,
|
|
48
48
|
...props
|
|
49
|
-
}: DialogPopupProps):
|
|
49
|
+
}: DialogPopupProps): react_jsx_runtime254.JSX.Element;
|
|
50
50
|
displayName: string;
|
|
51
51
|
};
|
|
52
52
|
type DialogTitleProps = React.ComponentProps<typeof Dialog.Title>;
|
|
@@ -54,7 +54,7 @@ declare const DialogTitle: {
|
|
|
54
54
|
({
|
|
55
55
|
className,
|
|
56
56
|
...props
|
|
57
|
-
}: DialogTitleProps):
|
|
57
|
+
}: DialogTitleProps): react_jsx_runtime254.JSX.Element;
|
|
58
58
|
displayName: string;
|
|
59
59
|
};
|
|
60
60
|
type DialogDescriptionProps = React.ComponentProps<typeof Dialog.Description>;
|
|
@@ -62,7 +62,7 @@ declare const DialogDescription: {
|
|
|
62
62
|
({
|
|
63
63
|
className,
|
|
64
64
|
...props
|
|
65
|
-
}: DialogDescriptionProps):
|
|
65
|
+
}: DialogDescriptionProps): react_jsx_runtime254.JSX.Element;
|
|
66
66
|
displayName: string;
|
|
67
67
|
};
|
|
68
68
|
type DialogCloseProps = React.ComponentProps<typeof Dialog.Close> & {
|
|
@@ -77,7 +77,7 @@ declare const DialogClose: {
|
|
|
77
77
|
variant,
|
|
78
78
|
size,
|
|
79
79
|
...props
|
|
80
|
-
}: DialogCloseProps):
|
|
80
|
+
}: DialogCloseProps): react_jsx_runtime254.JSX.Element;
|
|
81
81
|
displayName: string;
|
|
82
82
|
};
|
|
83
83
|
type DialogHeaderProps = React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -85,7 +85,7 @@ declare const DialogHeader: {
|
|
|
85
85
|
({
|
|
86
86
|
className,
|
|
87
87
|
...props
|
|
88
|
-
}: DialogHeaderProps):
|
|
88
|
+
}: DialogHeaderProps): react_jsx_runtime254.JSX.Element;
|
|
89
89
|
displayName: string;
|
|
90
90
|
};
|
|
91
91
|
type DialogFooterProps = React.HTMLAttributes<HTMLDivElement>;
|
|
@@ -93,7 +93,7 @@ declare const DialogFooter: {
|
|
|
93
93
|
({
|
|
94
94
|
className,
|
|
95
95
|
...props
|
|
96
|
-
}: DialogFooterProps):
|
|
96
|
+
}: DialogFooterProps): react_jsx_runtime254.JSX.Element;
|
|
97
97
|
displayName: string;
|
|
98
98
|
};
|
|
99
99
|
//#endregion
|
package/dist/field.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime218 from "react/jsx-runtime";
|
|
3
3
|
import { Field } from "@base-ui/react/field";
|
|
4
4
|
|
|
5
5
|
//#region src/components/field.d.ts
|
|
@@ -8,7 +8,7 @@ declare const FieldRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: FieldRootProps):
|
|
11
|
+
}: FieldRootProps): react_jsx_runtime218.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
type FieldLabelProps = React.ComponentProps<typeof Field.Label>;
|
|
@@ -16,7 +16,7 @@ declare const FieldLabel: {
|
|
|
16
16
|
({
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: FieldLabelProps):
|
|
19
|
+
}: FieldLabelProps): react_jsx_runtime218.JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
type FieldControlProps = React.ComponentProps<typeof Field.Control>;
|
|
@@ -24,7 +24,7 @@ declare const FieldControl: {
|
|
|
24
24
|
({
|
|
25
25
|
className,
|
|
26
26
|
...props
|
|
27
|
-
}: FieldControlProps):
|
|
27
|
+
}: FieldControlProps): react_jsx_runtime218.JSX.Element;
|
|
28
28
|
displayName: string;
|
|
29
29
|
};
|
|
30
30
|
type FieldDescriptionProps = React.ComponentProps<typeof Field.Description>;
|
|
@@ -32,7 +32,7 @@ declare const FieldDescription: {
|
|
|
32
32
|
({
|
|
33
33
|
className,
|
|
34
34
|
...props
|
|
35
|
-
}: FieldDescriptionProps):
|
|
35
|
+
}: FieldDescriptionProps): react_jsx_runtime218.JSX.Element;
|
|
36
36
|
displayName: string;
|
|
37
37
|
};
|
|
38
38
|
type FieldErrorProps = React.ComponentProps<typeof Field.Error>;
|
|
@@ -40,7 +40,7 @@ declare const FieldError: {
|
|
|
40
40
|
({
|
|
41
41
|
className,
|
|
42
42
|
...props
|
|
43
|
-
}: FieldErrorProps):
|
|
43
|
+
}: FieldErrorProps): react_jsx_runtime218.JSX.Element;
|
|
44
44
|
displayName: string;
|
|
45
45
|
};
|
|
46
46
|
type FieldItemProps = React.ComponentProps<typeof Field.Item>;
|
|
@@ -48,12 +48,12 @@ declare const FieldItem: {
|
|
|
48
48
|
({
|
|
49
49
|
className,
|
|
50
50
|
...props
|
|
51
|
-
}: FieldItemProps):
|
|
51
|
+
}: FieldItemProps): react_jsx_runtime218.JSX.Element;
|
|
52
52
|
displayName: string;
|
|
53
53
|
};
|
|
54
54
|
type FieldValidityProps = React.ComponentProps<typeof Field.Validity>;
|
|
55
55
|
declare const FieldValidity: {
|
|
56
|
-
(props: FieldValidityProps):
|
|
56
|
+
(props: FieldValidityProps): react_jsx_runtime218.JSX.Element;
|
|
57
57
|
displayName: string;
|
|
58
58
|
};
|
|
59
59
|
//#endregion
|
package/dist/fieldset.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime4 from "react/jsx-runtime";
|
|
3
3
|
import { Fieldset } from "@base-ui/react/fieldset";
|
|
4
4
|
|
|
5
5
|
//#region src/components/fieldset.d.ts
|
|
@@ -8,7 +8,7 @@ declare const FieldsetRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: FieldsetRootProps):
|
|
11
|
+
}: FieldsetRootProps): react_jsx_runtime4.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
type FieldsetLegendProps = React.ComponentProps<typeof Fieldset.Legend>;
|
|
@@ -16,7 +16,7 @@ declare const FieldsetLegend: {
|
|
|
16
16
|
({
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: FieldsetLegendProps):
|
|
19
|
+
}: FieldsetLegendProps): react_jsx_runtime4.JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
//#endregion
|
package/dist/fieldset.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fieldset.d.ts","names":[],"sources":["../src/components/fieldset.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,
|
|
1
|
+
{"version":3,"file":"fieldset.d.ts","names":[],"sources":["../src/components/fieldset.tsx"],"sourcesContent":[],"mappings":";;;;;KAYK,iBAAA,GAAoB,KAAA,CAAM,sBAAsB,QAAA,CAAa;cAE5D;;;;KAAyC,oBAAiB,kBAAA,CAAA,GAAA,CAAA;EAF3D,WAAA,EAAA,MAAA;CAAiB;KAiBjB,mBAAA,GAAsB,KAAA,CAAM,cAjBiC,CAAA,OAiBX,QAAA,CAAa,MAjBF,CAAA;cAmB5D,cAnByB,EAAA;EAAc,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAmBI,mBAnBJ,CAAA,EAmBuB,kBAAA,CAAA,GAAA,CAAA,OAnBvB;EAEvC,WAAA,EAAA,MAOL;CAAA"}
|
package/dist/form.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime33 from "react/jsx-runtime";
|
|
3
3
|
import { Form } from "@base-ui/react/form";
|
|
4
4
|
|
|
5
5
|
//#region src/components/form.d.ts
|
|
@@ -8,7 +8,7 @@ declare const FormRoot: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: FormRootProps):
|
|
11
|
+
}: FormRootProps): react_jsx_runtime33.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
//#endregion
|
package/dist/form.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"form.d.ts","names":[],"sources":["../src/components/form.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,aAAA,GAAgB,KAAA,CAAM,sBAAsB;cAE3C;;;;KAAqC,gBAAa,
|
|
1
|
+
{"version":3,"file":"form.d.ts","names":[],"sources":["../src/components/form.tsx"],"sourcesContent":[],"mappings":";;;;;KAWK,aAAA,GAAgB,KAAA,CAAM,sBAAsB;cAE3C;;;;KAAqC,gBAAa,mBAAA,CAAA,GAAA,CAAA;EAFnD,WAAA,EAAA,MAAa;CAAA"}
|
package/dist/input.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime32 from "react/jsx-runtime";
|
|
3
3
|
import { Input as Input$1 } from "@base-ui/react/input";
|
|
4
4
|
|
|
5
5
|
//#region src/components/input.d.ts
|
|
@@ -8,7 +8,7 @@ declare const Input: {
|
|
|
8
8
|
({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: InputProps):
|
|
11
|
+
}: InputProps): react_jsx_runtime32.JSX.Element;
|
|
12
12
|
displayName: string;
|
|
13
13
|
};
|
|
14
14
|
//#endregion
|
package/dist/input.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","names":[],"sources":["../src/components/input.tsx"],"sourcesContent":[],"mappings":";;;;;KAQK,UAAA,GAAa,KAAA,CAAM,sBAAsB;cAExC;;;;KAAkC,aAAU,
|
|
1
|
+
{"version":3,"file":"input.d.ts","names":[],"sources":["../src/components/input.tsx"],"sourcesContent":[],"mappings":";;;;;KAQK,UAAA,GAAa,KAAA,CAAM,sBAAsB;cAExC;;;;KAAkC,aAAU,mBAAA,CAAA,GAAA,CAAA;EAF7C,WAAA,EAAU,MAAA;CAAA"}
|