@react-spot/ui-components 0.0.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/README.md +91 -0
- package/dist/index.cjs +853 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +313 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.ts +313 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +825 -0
- package/dist/index.js.map +1 -0
- package/dist/index.prod.cjs +105 -0
- package/dist/index.prod.cjs.map +1 -0
- package/dist/index.prod.d.cts +106 -0
- package/dist/index.prod.d.cts.map +1 -0
- package/dist/index.prod.d.ts +106 -0
- package/dist/index.prod.d.ts.map +1 -0
- package/dist/index.prod.js +77 -0
- package/dist/index.prod.js.map +1 -0
- package/package.json +80 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
|
+
import { Tooltip as Tooltip$1 } from "@base-ui/react/tooltip";
|
|
3
|
+
import * as react from "react";
|
|
4
|
+
import { ButtonHTMLAttributes, CSSProperties, ComponentProps, ReactElement, ReactNode } from "react";
|
|
5
|
+
import { Popover as Popover$1 } from "@base-ui/react/popover";
|
|
6
|
+
import { Combobox as Combobox$1 } from "@base-ui/react/combobox";
|
|
7
|
+
import { Menu, MenuItemState, MenuItemState as DropdownMenuItemState, MenuRootProps as DropdownMenuRootProps, MenuSubmenuTriggerState } from "@base-ui/react/menu";
|
|
8
|
+
import { Select as Select$1 } from "@base-ui/react/select";
|
|
9
|
+
import * as _base_ui_react0 from "@base-ui/react";
|
|
10
|
+
|
|
11
|
+
//#region src/Kbd.d.ts
|
|
12
|
+
declare function Kbd({
|
|
13
|
+
style,
|
|
14
|
+
...props
|
|
15
|
+
}: ComponentProps<'kbd'>): react_jsx_runtime0.JSX.Element;
|
|
16
|
+
declare function KbdGroup({
|
|
17
|
+
style,
|
|
18
|
+
...props
|
|
19
|
+
}: ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
|
|
20
|
+
//#endregion
|
|
21
|
+
//#region src/Tooltip.d.ts
|
|
22
|
+
interface TooltipProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
23
|
+
label: ReactNode;
|
|
24
|
+
shortcut?: string;
|
|
25
|
+
container: Tooltip$1.Portal.Props['container'];
|
|
26
|
+
render?: ReactElement;
|
|
27
|
+
children: ReactNode;
|
|
28
|
+
}
|
|
29
|
+
declare function Tooltip({
|
|
30
|
+
label,
|
|
31
|
+
shortcut,
|
|
32
|
+
container,
|
|
33
|
+
render,
|
|
34
|
+
children,
|
|
35
|
+
...triggerProps
|
|
36
|
+
}: TooltipProps): react_jsx_runtime0.JSX.Element;
|
|
37
|
+
declare namespace Tooltip {
|
|
38
|
+
var Provider: react.FC<_base_ui_react0.TooltipProviderProps>;
|
|
39
|
+
}
|
|
40
|
+
//#endregion
|
|
41
|
+
//#region src/Button.d.ts
|
|
42
|
+
interface ButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'style'> {
|
|
43
|
+
variant: 'primary' | 'secondary' | 'accent';
|
|
44
|
+
style?: CSSProperties;
|
|
45
|
+
render?: React.ReactElement;
|
|
46
|
+
}
|
|
47
|
+
declare function Button({
|
|
48
|
+
variant,
|
|
49
|
+
style,
|
|
50
|
+
render,
|
|
51
|
+
...props
|
|
52
|
+
}: ButtonProps): react_jsx_runtime0.JSX.Element;
|
|
53
|
+
//#endregion
|
|
54
|
+
//#region src/IconButton.d.ts
|
|
55
|
+
interface IconButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'style'> {
|
|
56
|
+
style?: CSSProperties;
|
|
57
|
+
render?: ReactElement;
|
|
58
|
+
}
|
|
59
|
+
declare function IconButton({
|
|
60
|
+
style,
|
|
61
|
+
render,
|
|
62
|
+
...props
|
|
63
|
+
}: IconButtonProps): react_jsx_runtime0.JSX.Element;
|
|
64
|
+
//#endregion
|
|
65
|
+
//#region src/ToolbarButton.d.ts
|
|
66
|
+
interface ToolbarButtonProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'style'> {
|
|
67
|
+
style?: CSSProperties;
|
|
68
|
+
render?: ReactElement;
|
|
69
|
+
}
|
|
70
|
+
declare const ToolbarButton: react.ForwardRefExoticComponent<ToolbarButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
71
|
+
//#endregion
|
|
72
|
+
//#region src/PanelHeader.d.ts
|
|
73
|
+
interface PanelHeaderProps {
|
|
74
|
+
title: ReactNode;
|
|
75
|
+
actionsRender?: ReactNode;
|
|
76
|
+
style?: CSSProperties;
|
|
77
|
+
titleStyle?: CSSProperties;
|
|
78
|
+
}
|
|
79
|
+
declare function PanelHeader({
|
|
80
|
+
title,
|
|
81
|
+
actionsRender,
|
|
82
|
+
style,
|
|
83
|
+
titleStyle
|
|
84
|
+
}: PanelHeaderProps): react_jsx_runtime0.JSX.Element;
|
|
85
|
+
//#endregion
|
|
86
|
+
//#region src/Textarea.d.ts
|
|
87
|
+
interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'style'> {
|
|
88
|
+
style?: CSSProperties;
|
|
89
|
+
}
|
|
90
|
+
declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
|
|
91
|
+
//#endregion
|
|
92
|
+
//#region src/Separator.d.ts
|
|
93
|
+
interface SeparatorProps {
|
|
94
|
+
style?: CSSProperties;
|
|
95
|
+
}
|
|
96
|
+
declare function Separator({
|
|
97
|
+
style
|
|
98
|
+
}: SeparatorProps): react_jsx_runtime0.JSX.Element;
|
|
99
|
+
//#endregion
|
|
100
|
+
//#region src/icons.d.ts
|
|
101
|
+
declare function SettingsIcon({
|
|
102
|
+
size
|
|
103
|
+
}: {
|
|
104
|
+
size?: number;
|
|
105
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
106
|
+
declare function ClipboardIcon({
|
|
107
|
+
size
|
|
108
|
+
}: {
|
|
109
|
+
size?: number;
|
|
110
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
111
|
+
declare function XIcon({
|
|
112
|
+
size
|
|
113
|
+
}: {
|
|
114
|
+
size?: number;
|
|
115
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
116
|
+
declare function ChevronLeftIcon({
|
|
117
|
+
size
|
|
118
|
+
}: {
|
|
119
|
+
size?: number;
|
|
120
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
121
|
+
declare function ChevronRightIcon({
|
|
122
|
+
size
|
|
123
|
+
}: {
|
|
124
|
+
size?: number;
|
|
125
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
126
|
+
declare function OpenInEditorIcon({
|
|
127
|
+
size
|
|
128
|
+
}: {
|
|
129
|
+
size?: number;
|
|
130
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
131
|
+
declare function ChatBubbleIcon({
|
|
132
|
+
size
|
|
133
|
+
}: {
|
|
134
|
+
size?: number;
|
|
135
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
136
|
+
declare function TrashIcon({
|
|
137
|
+
size
|
|
138
|
+
}: {
|
|
139
|
+
size?: number;
|
|
140
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
141
|
+
declare function SaveIcon({
|
|
142
|
+
size
|
|
143
|
+
}: {
|
|
144
|
+
size?: number;
|
|
145
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
146
|
+
declare function ExpandIcon({
|
|
147
|
+
size
|
|
148
|
+
}: {
|
|
149
|
+
size?: number;
|
|
150
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
151
|
+
declare function CollapseIcon({
|
|
152
|
+
size
|
|
153
|
+
}: {
|
|
154
|
+
size?: number;
|
|
155
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
156
|
+
declare function FolderIcon({
|
|
157
|
+
size
|
|
158
|
+
}: {
|
|
159
|
+
size?: number;
|
|
160
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
161
|
+
declare function OpencodeIcon({
|
|
162
|
+
size
|
|
163
|
+
}: {
|
|
164
|
+
size?: number;
|
|
165
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
166
|
+
//#endregion
|
|
167
|
+
//#region src/Popover.d.ts
|
|
168
|
+
/**
|
|
169
|
+
* Shared panel popup style (exported for callers that extend it)
|
|
170
|
+
*/
|
|
171
|
+
declare const panelPopupStyle: CSSProperties;
|
|
172
|
+
declare function StyledPopup$3({
|
|
173
|
+
style,
|
|
174
|
+
...props
|
|
175
|
+
}: ComponentProps<typeof Popover$1.Popup>): react_jsx_runtime0.JSX.Element;
|
|
176
|
+
declare const Popover: {
|
|
177
|
+
Root: typeof Popover$1.Root;
|
|
178
|
+
Trigger: Popover$1.Trigger;
|
|
179
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.PopoverPortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
180
|
+
Positioner: react.ForwardRefExoticComponent<Omit<_base_ui_react0.PopoverPositionerProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
181
|
+
Close: react.ForwardRefExoticComponent<Omit<_base_ui_react0.PopoverCloseProps, "ref"> & react.RefAttributes<HTMLButtonElement>>;
|
|
182
|
+
Popup: typeof StyledPopup$3;
|
|
183
|
+
};
|
|
184
|
+
//#endregion
|
|
185
|
+
//#region src/Combobox.d.ts
|
|
186
|
+
declare function StyledTrigger$1({
|
|
187
|
+
style,
|
|
188
|
+
children,
|
|
189
|
+
...props
|
|
190
|
+
}: ComponentProps<typeof Combobox$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
191
|
+
declare function StyledInput(): react_jsx_runtime0.JSX.Element;
|
|
192
|
+
declare function StyledPositioner$1({
|
|
193
|
+
...props
|
|
194
|
+
}: ComponentProps<typeof Combobox$1.Positioner>): react_jsx_runtime0.JSX.Element;
|
|
195
|
+
declare function StyledPopup$2({
|
|
196
|
+
style,
|
|
197
|
+
...props
|
|
198
|
+
}: ComponentProps<typeof Combobox$1.Popup>): react_jsx_runtime0.JSX.Element;
|
|
199
|
+
declare function StyledList$1({
|
|
200
|
+
style,
|
|
201
|
+
...props
|
|
202
|
+
}: ComponentProps<typeof Combobox$1.List>): react_jsx_runtime0.JSX.Element;
|
|
203
|
+
interface StyledItemProps$2 extends Omit<ComponentProps<typeof Combobox$1.Item>, 'style'> {
|
|
204
|
+
style?: CSSProperties;
|
|
205
|
+
}
|
|
206
|
+
declare function StyledItem$2({
|
|
207
|
+
style: callerStyle,
|
|
208
|
+
...props
|
|
209
|
+
}: StyledItemProps$2): react_jsx_runtime0.JSX.Element;
|
|
210
|
+
declare const Combobox: {
|
|
211
|
+
Root: typeof Combobox$1.Root;
|
|
212
|
+
Trigger: typeof StyledTrigger$1;
|
|
213
|
+
Value: typeof Combobox$1.Value;
|
|
214
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompletePortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
215
|
+
Positioner: typeof StyledPositioner$1;
|
|
216
|
+
Popup: typeof StyledPopup$2;
|
|
217
|
+
List: typeof StyledList$1;
|
|
218
|
+
Empty: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteEmptyProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
219
|
+
Item: typeof StyledItem$2;
|
|
220
|
+
Input: typeof StyledInput;
|
|
221
|
+
ItemIndicator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.ComboboxItemIndicatorProps, "ref"> & react.RefAttributes<HTMLSpanElement>>;
|
|
222
|
+
Group: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
223
|
+
GroupLabel: react.ForwardRefExoticComponent<Omit<_base_ui_react0.AutocompleteGroupLabelProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
224
|
+
Separator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SeparatorProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
225
|
+
};
|
|
226
|
+
//#endregion
|
|
227
|
+
//#region src/DropdownMenu.d.ts
|
|
228
|
+
declare function StyledPopup$1({
|
|
229
|
+
style,
|
|
230
|
+
...props
|
|
231
|
+
}: ComponentProps<typeof Menu.Popup>): react_jsx_runtime0.JSX.Element;
|
|
232
|
+
interface StyledItemProps extends Omit<ComponentProps<typeof Menu.Item>, 'style'> {
|
|
233
|
+
style?: CSSProperties | ((state: MenuItemState) => CSSProperties);
|
|
234
|
+
}
|
|
235
|
+
declare function StyledItem$1({
|
|
236
|
+
style: callerStyle,
|
|
237
|
+
...props
|
|
238
|
+
}: StyledItemProps): react_jsx_runtime0.JSX.Element;
|
|
239
|
+
declare function StyledSeparator({
|
|
240
|
+
style
|
|
241
|
+
}: {
|
|
242
|
+
style?: CSSProperties;
|
|
243
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
244
|
+
interface StyledSubmenuTriggerProps extends Omit<ComponentProps<typeof Menu.SubmenuTrigger>, 'style'> {
|
|
245
|
+
style?: CSSProperties | ((state: MenuSubmenuTriggerState) => CSSProperties);
|
|
246
|
+
}
|
|
247
|
+
declare function StyledSubmenuTrigger({
|
|
248
|
+
style: callerStyle,
|
|
249
|
+
...props
|
|
250
|
+
}: StyledSubmenuTriggerProps): react_jsx_runtime0.JSX.Element;
|
|
251
|
+
declare const DropdownMenu: {
|
|
252
|
+
Root: <Payload>(props: Menu.Root.Props<Payload>) => react_jsx_runtime0.JSX.Element;
|
|
253
|
+
Trigger: Menu.Trigger;
|
|
254
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.ContextMenuPortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
255
|
+
Positioner: react.ForwardRefExoticComponent<Omit<_base_ui_react0.ContextMenuPositionerProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
256
|
+
Popup: typeof StyledPopup$1;
|
|
257
|
+
Item: typeof StyledItem$1;
|
|
258
|
+
Separator: typeof StyledSeparator;
|
|
259
|
+
SubmenuRoot: typeof Menu.SubmenuRoot;
|
|
260
|
+
SubmenuTrigger: typeof StyledSubmenuTrigger;
|
|
261
|
+
};
|
|
262
|
+
//#endregion
|
|
263
|
+
//#region src/Select.d.ts
|
|
264
|
+
declare function StyledTrigger({
|
|
265
|
+
style,
|
|
266
|
+
children,
|
|
267
|
+
...props
|
|
268
|
+
}: ComponentProps<typeof Select$1.Trigger>): react_jsx_runtime0.JSX.Element;
|
|
269
|
+
declare function StyledPositioner({
|
|
270
|
+
...props
|
|
271
|
+
}: ComponentProps<typeof Select$1.Positioner>): react_jsx_runtime0.JSX.Element;
|
|
272
|
+
declare function StyledPopup({
|
|
273
|
+
style,
|
|
274
|
+
...props
|
|
275
|
+
}: ComponentProps<typeof Select$1.Popup>): react_jsx_runtime0.JSX.Element;
|
|
276
|
+
declare function StyledList({
|
|
277
|
+
style,
|
|
278
|
+
...props
|
|
279
|
+
}: ComponentProps<typeof Select$1.List>): react_jsx_runtime0.JSX.Element;
|
|
280
|
+
interface StyledItemProps$1 extends Omit<ComponentProps<typeof Select$1.Item>, 'style'> {
|
|
281
|
+
style?: CSSProperties;
|
|
282
|
+
}
|
|
283
|
+
declare function StyledItem({
|
|
284
|
+
style: callerStyle,
|
|
285
|
+
...props
|
|
286
|
+
}: StyledItemProps$1): react_jsx_runtime0.JSX.Element;
|
|
287
|
+
declare const Select: {
|
|
288
|
+
Root: typeof Select$1.Root;
|
|
289
|
+
Trigger: typeof StyledTrigger;
|
|
290
|
+
Value: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectValueProps, "ref"> & react.RefAttributes<HTMLSpanElement>>;
|
|
291
|
+
Portal: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectPortalProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
292
|
+
Positioner: typeof StyledPositioner;
|
|
293
|
+
Popup: typeof StyledPopup;
|
|
294
|
+
List: typeof StyledList;
|
|
295
|
+
Item: typeof StyledItem;
|
|
296
|
+
ItemText: react.NamedExoticComponent<Omit<_base_ui_react0.SelectItemTextProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
297
|
+
ItemIndicator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectItemIndicatorProps, "ref"> & react.RefAttributes<HTMLSpanElement>>;
|
|
298
|
+
Group: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectGroupProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
299
|
+
GroupLabel: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SelectGroupLabelProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
300
|
+
Separator: react.ForwardRefExoticComponent<Omit<_base_ui_react0.SeparatorProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
301
|
+
};
|
|
302
|
+
//#endregion
|
|
303
|
+
//#region src/Logo.d.ts
|
|
304
|
+
declare function Logo({
|
|
305
|
+
bgColor,
|
|
306
|
+
size
|
|
307
|
+
}: {
|
|
308
|
+
bgColor?: string;
|
|
309
|
+
size?: number;
|
|
310
|
+
}): react_jsx_runtime0.JSX.Element;
|
|
311
|
+
//#endregion
|
|
312
|
+
export { Button, type ButtonProps, ChatBubbleIcon, ChevronLeftIcon, ChevronRightIcon, ClipboardIcon, CollapseIcon, Combobox, DropdownMenu, type StyledItemProps as DropdownMenuItemProps, type DropdownMenuItemState, type DropdownMenuRootProps, ExpandIcon, FolderIcon, IconButton, type IconButtonProps, Kbd, KbdGroup, Logo, OpenInEditorIcon, OpencodeIcon, PanelHeader, type PanelHeaderProps, Popover, SaveIcon, Select, Separator, type SeparatorProps, SettingsIcon, Textarea, type TextareaProps, ToolbarButton, type ToolbarButtonProps, Tooltip, type TooltipProps, TrashIcon, XIcon, panelPopupStyle };
|
|
313
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/Kbd.tsx","../src/Tooltip.tsx","../src/Button.tsx","../src/IconButton.tsx","../src/ToolbarButton.tsx","../src/PanelHeader.tsx","../src/Textarea.tsx","../src/Separator.tsx","../src/icons.tsx","../src/Popover.tsx","../src/Combobox.tsx","../src/DropdownMenu.tsx","../src/Select.tsx","../src/Logo.tsx"],"mappings":"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"}
|