@sqlrooms/ui 0.29.0-rc.2 → 0.29.0-rc.4
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/components/resizable.d.ts +302 -20
- package/dist/components/resizable.d.ts.map +1 -1
- package/dist/components/resizable.js +12 -5
- package/dist/components/resizable.js.map +1 -1
- package/dist/components/tab-strip.d.ts +21 -5
- package/dist/components/tab-strip.d.ts.map +1 -1
- package/dist/components/tab-strip.js +133 -17
- package/dist/components/tab-strip.js.map +1 -1
- package/dist/hooks/use-mobile.d.ts.map +1 -1
- package/dist/hooks/use-mobile.js +1 -0
- package/dist/hooks/use-mobile.js.map +1 -1
- package/dist/hooks/useDebouncedValue.d.ts.map +1 -1
- package/dist/hooks/useDebouncedValue.js +1 -0
- package/dist/hooks/useDebouncedValue.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +14 -14
- package/tailwind-preset.css +3 -1
- package/dist/components/toast.d.ts +0 -16
- package/dist/components/toast.d.ts.map +0 -1
- package/dist/components/toast.js +0 -35
- package/dist/components/toast.js.map +0 -1
- package/dist/components/toaster.d.ts +0 -3
- package/dist/components/toaster.d.ts.map +0 -1
- package/dist/components/toaster.js +0 -24
- package/dist/components/toaster.js.map +0 -1
- package/dist/hooks/use-toast.d.ts +0 -45
- package/dist/hooks/use-toast.d.ts.map +0 -1
- package/dist/hooks/use-toast.js +0 -129
- package/dist/hooks/use-toast.js.map +0 -1
- package/dist/tailwind-preset.d.ts +0 -3
- package/dist/tailwind-preset.d.ts.map +0 -1
- package/dist/tailwind-preset.js +0 -152
- package/dist/tailwind-preset.js.map +0 -1
|
@@ -1,24 +1,306 @@
|
|
|
1
1
|
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
2
|
-
|
|
3
|
-
declare
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
type ResizablePanelOrientation = Exclude<ResizablePrimitive.GroupProps['orientation'], undefined>;
|
|
3
|
+
declare function ResizablePanelGroup({ className, ...props }: ResizablePrimitive.GroupProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
declare const ResizablePanel: import("react").ForwardRefExoticComponent<{
|
|
5
|
+
slot?: string | undefined | undefined;
|
|
6
|
+
style?: import("react").CSSProperties | undefined;
|
|
7
|
+
title?: string | undefined | undefined;
|
|
8
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
9
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
10
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
11
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
12
|
+
accessKey?: string | undefined | undefined;
|
|
13
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
14
|
+
autoFocus?: boolean | undefined | undefined;
|
|
15
|
+
className?: string | undefined | undefined;
|
|
16
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
17
|
+
contextMenu?: string | undefined | undefined;
|
|
18
|
+
dir?: string | undefined | undefined;
|
|
19
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
20
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
21
|
+
hidden?: boolean | undefined | undefined;
|
|
22
|
+
id?: string | undefined | undefined;
|
|
23
|
+
lang?: string | undefined | undefined;
|
|
24
|
+
nonce?: string | undefined | undefined;
|
|
25
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
26
|
+
tabIndex?: number | undefined | undefined;
|
|
27
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
28
|
+
radioGroup?: string | undefined | undefined;
|
|
29
|
+
role?: import("react").AriaRole | undefined;
|
|
30
|
+
about?: string | undefined | undefined;
|
|
31
|
+
content?: string | undefined | undefined;
|
|
32
|
+
datatype?: string | undefined | undefined;
|
|
33
|
+
inlist?: any;
|
|
34
|
+
prefix?: string | undefined | undefined;
|
|
35
|
+
property?: string | undefined | undefined;
|
|
36
|
+
rel?: string | undefined | undefined;
|
|
37
|
+
resource?: string | undefined | undefined;
|
|
38
|
+
rev?: string | undefined | undefined;
|
|
39
|
+
typeof?: string | undefined | undefined;
|
|
40
|
+
vocab?: string | undefined | undefined;
|
|
41
|
+
autoCorrect?: string | undefined | undefined;
|
|
42
|
+
autoSave?: string | undefined | undefined;
|
|
43
|
+
color?: string | undefined | undefined;
|
|
44
|
+
itemProp?: string | undefined | undefined;
|
|
45
|
+
itemScope?: boolean | undefined | undefined;
|
|
46
|
+
itemType?: string | undefined | undefined;
|
|
47
|
+
itemID?: string | undefined | undefined;
|
|
48
|
+
itemRef?: string | undefined | undefined;
|
|
49
|
+
results?: number | undefined | undefined;
|
|
50
|
+
security?: string | undefined | undefined;
|
|
51
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
52
|
+
popover?: "" | "auto" | "manual" | "hint" | undefined | undefined;
|
|
53
|
+
popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
|
|
54
|
+
popoverTarget?: string | undefined | undefined;
|
|
55
|
+
inert?: boolean | undefined | undefined;
|
|
56
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
57
|
+
is?: string | undefined | undefined;
|
|
58
|
+
exportparts?: string | undefined | undefined;
|
|
59
|
+
part?: string | undefined | undefined;
|
|
60
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
61
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
62
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
63
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
64
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
65
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
66
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
67
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
68
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
69
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
70
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
71
|
+
"aria-controls"?: string | undefined | undefined;
|
|
72
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
73
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
74
|
+
"aria-description"?: string | undefined | undefined;
|
|
75
|
+
"aria-details"?: string | undefined | undefined;
|
|
76
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
77
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
78
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
79
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
80
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
81
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
82
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
83
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
84
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
85
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
86
|
+
"aria-label"?: string | undefined | undefined;
|
|
87
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
88
|
+
"aria-level"?: number | undefined | undefined;
|
|
89
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
90
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
91
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
92
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
94
|
+
"aria-owns"?: string | undefined | undefined;
|
|
95
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
96
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
97
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
98
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
99
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
100
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
101
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
102
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
103
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
104
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
105
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
106
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
107
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
108
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
109
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
110
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
111
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
112
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
113
|
+
children?: import("react").ReactNode;
|
|
114
|
+
dangerouslySetInnerHTML?: {
|
|
115
|
+
__html: string | TrustedHTML;
|
|
116
|
+
} | undefined | undefined;
|
|
117
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
118
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
119
|
+
onCut?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
120
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
121
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
122
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
123
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
124
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
125
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
126
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
127
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
128
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
|
|
129
|
+
onFocus?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
130
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
131
|
+
onBlur?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
132
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
|
|
133
|
+
onChange?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
134
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
135
|
+
onBeforeInput?: import("react").InputEventHandler<HTMLDivElement> | undefined;
|
|
136
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
137
|
+
onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
138
|
+
onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
139
|
+
onReset?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
140
|
+
onResetCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
141
|
+
onSubmit?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
142
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
143
|
+
onInvalid?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
144
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
|
|
145
|
+
onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
146
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
147
|
+
onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
148
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
149
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
150
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
151
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
152
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
153
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
154
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
155
|
+
onAbort?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
156
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
157
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
158
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
159
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
160
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
161
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
162
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
163
|
+
onEmptied?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
164
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
165
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
166
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
167
|
+
onEnded?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
168
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
169
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
170
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
171
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
172
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
173
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
174
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
175
|
+
onPause?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
176
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
177
|
+
onPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
178
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
179
|
+
onPlaying?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
180
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
181
|
+
onProgress?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
182
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
183
|
+
onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
184
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
185
|
+
onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
186
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
187
|
+
onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
188
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
189
|
+
onStalled?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
190
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
191
|
+
onSuspend?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
192
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
193
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
194
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
195
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
196
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
197
|
+
onWaiting?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
198
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
199
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
200
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
201
|
+
onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
202
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
203
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
204
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
205
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
206
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
207
|
+
onDrag?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
208
|
+
onDragCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
209
|
+
onDragEnd?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
210
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
211
|
+
onDragEnter?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
212
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
213
|
+
onDragExit?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
214
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
215
|
+
onDragLeave?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
216
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
217
|
+
onDragOver?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
218
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
219
|
+
onDragStart?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
220
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
221
|
+
onDrop?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
222
|
+
onDropCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
|
|
223
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
224
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
225
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
226
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
227
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
228
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
229
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
230
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
231
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
232
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
233
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
234
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
235
|
+
onSelect?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
236
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
|
|
237
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
238
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
239
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
240
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
241
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
242
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
243
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
244
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
|
|
245
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
246
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
247
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
248
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
249
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
250
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
251
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
252
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
253
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
254
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
255
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
256
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
257
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
258
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
259
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
260
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
261
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
262
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
|
|
263
|
+
onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
264
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
265
|
+
onScrollEnd?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
266
|
+
onScrollEndCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
|
|
267
|
+
onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
268
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
|
|
269
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
270
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
271
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
272
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
273
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
274
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
|
|
275
|
+
onToggle?: import("react").ToggleEventHandler<HTMLDivElement> | undefined;
|
|
276
|
+
onBeforeToggle?: import("react").ToggleEventHandler<HTMLDivElement> | undefined;
|
|
277
|
+
onTransitionCancel?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
278
|
+
onTransitionCancelCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
279
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
280
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
281
|
+
onTransitionRun?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
282
|
+
onTransitionRunCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
283
|
+
onTransitionStart?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
284
|
+
onTransitionStartCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
|
|
17
285
|
} & {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
286
|
+
className?: string | undefined;
|
|
287
|
+
collapsedSize?: number | string | undefined;
|
|
288
|
+
collapsible?: boolean | undefined;
|
|
289
|
+
defaultSize?: number | string | undefined;
|
|
290
|
+
disabled?: boolean | undefined;
|
|
291
|
+
elementRef?: import("react").Ref<HTMLDivElement | null> | undefined;
|
|
292
|
+
groupResizeBehavior?: "preserve-relative-size" | "preserve-pixel-size" | undefined;
|
|
293
|
+
id?: string | number | undefined;
|
|
294
|
+
maxSize?: number | string | undefined;
|
|
295
|
+
minSize?: number | string | undefined;
|
|
296
|
+
onResize?: ((panelSize: ResizablePrimitive.PanelSize, id: string | number | undefined, prevPanelSize: ResizablePrimitive.PanelSize | undefined) => void) | undefined;
|
|
297
|
+
panelRef?: import("react").Ref<ResizablePrimitive.PanelImperativeHandle | null> | undefined;
|
|
298
|
+
style?: import("react").CSSProperties | undefined;
|
|
299
|
+
} & import("react").RefAttributes<ResizablePrimitive.PanelImperativeHandle>>;
|
|
300
|
+
declare function ResizableHandle({ withHandle, className, ...props }: ResizablePrimitive.SeparatorProps & {
|
|
21
301
|
withHandle?: boolean;
|
|
22
|
-
})
|
|
23
|
-
export {
|
|
302
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
303
|
+
export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
|
|
304
|
+
export type { ResizablePanelOrientation };
|
|
305
|
+
export type { PanelImperativeHandle as ResizablePanelHandle } from 'react-resizable-panels';
|
|
24
306
|
//# sourceMappingURL=resizable.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resizable.d.ts","sourceRoot":"","sources":["../../src/components/resizable.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"resizable.d.ts","sourceRoot":"","sources":["../../src/components/resizable.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,kBAAkB,MAAM,wBAAwB,CAAC;AAK7D,KAAK,yBAAyB,GAAG,OAAO,CACtC,kBAAkB,CAAC,UAAU,CAAC,aAAa,CAAC,EAC5C,SAAS,CACV,CAAC;AAEF,iBAAS,mBAAmB,CAAC,EAC3B,SAAS,EACT,GAAG,KAAK,EACT,EAAE,kBAAkB,CAAC,UAAU,2CAW/B;AAED,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAWlB,CAAC;AAIH,iBAAS,eAAe,CAAC,EACvB,UAAU,EACV,SAAS,EACT,GAAG,KAAK,EACT,EAAE,kBAAkB,CAAC,cAAc,GAAG;IACrC,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,2CAeA;AAED,OAAO,EAAC,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAC,CAAC;AAC9D,YAAY,EAAC,yBAAyB,EAAC,CAAC;AACxC,YAAY,EAAC,qBAAqB,IAAI,oBAAoB,EAAC,MAAM,wBAAwB,CAAC"}
|
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
-
import { GripVertical } from 'lucide-react';
|
|
4
3
|
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
5
4
|
import { cn } from '../lib/utils';
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
5
|
+
import { forwardRef } from 'react';
|
|
6
|
+
function ResizablePanelGroup({ className, ...props }) {
|
|
7
|
+
return (_jsx(ResizablePrimitive.Group, { "data-slot": "resizable-panel-group", className: cn('flex h-full w-full aria-[orientation=vertical]:flex-col', className), ...props }));
|
|
8
|
+
}
|
|
9
|
+
const ResizablePanel = forwardRef(({ ...props }, ref) => {
|
|
10
|
+
return (_jsx(ResizablePrimitive.Panel, { panelRef: ref, "data-slot": "resizable-panel", ...props }));
|
|
11
|
+
});
|
|
12
|
+
ResizablePanel.displayName = 'ResizablePanel';
|
|
13
|
+
function ResizableHandle({ withHandle, className, ...props }) {
|
|
14
|
+
return (_jsx(ResizablePrimitive.Separator, { "data-slot": "resizable-handle", className: cn('bg-border ring-offset-background focus-visible:ring-ring relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:outline-hidden aria-[orientation=horizontal]:h-px aria-[orientation=horizontal]:w-full aria-[orientation=horizontal]:after:left-0 aria-[orientation=horizontal]:after:h-1 aria-[orientation=horizontal]:after:w-full aria-[orientation=horizontal]:after:translate-x-0 aria-[orientation=horizontal]:after:-translate-y-1/2 [&[aria-orientation=horizontal]>div]:rotate-90', className), ...props, children: withHandle && (_jsx("div", { className: "bg-border z-10 flex h-6 w-1 shrink-0 rounded-lg" })) }));
|
|
15
|
+
}
|
|
16
|
+
export { ResizableHandle, ResizablePanel, ResizablePanelGroup };
|
|
10
17
|
//# sourceMappingURL=resizable.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resizable.js","sourceRoot":"","sources":["../../src/components/resizable.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,
|
|
1
|
+
{"version":3,"file":"resizable.js","sourceRoot":"","sources":["../../src/components/resizable.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;AAEb,OAAO,KAAK,kBAAkB,MAAM,wBAAwB,CAAC;AAE7D,OAAO,EAAC,EAAE,EAAC,MAAM,cAAc,CAAC;AAChC,OAAO,EAAC,UAAU,EAAC,MAAM,OAAO,CAAC;AAOjC,SAAS,mBAAmB,CAAC,EAC3B,SAAS,EACT,GAAG,KAAK,EACsB;IAC9B,OAAO,CACL,KAAC,kBAAkB,CAAC,KAAK,iBACb,uBAAuB,EACjC,SAAS,EAAE,EAAE,CACX,yDAAyD,EACzD,SAAS,CACV,KACG,KAAK,GACT,CACH,CAAC;AACJ,CAAC;AAED,MAAM,cAAc,GAAG,UAAU,CAG/B,CAAC,EAAC,GAAG,KAAK,EAAC,EAAE,GAAG,EAAE,EAAE;IACpB,OAAO,CACL,KAAC,kBAAkB,CAAC,KAAK,IACvB,QAAQ,EAAE,GAAG,eACH,iBAAiB,KACvB,KAAK,GACT,CACH,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH,cAAc,CAAC,WAAW,GAAG,gBAAgB,CAAC;AAE9C,SAAS,eAAe,CAAC,EACvB,UAAU,EACV,SAAS,EACT,GAAG,KAAK,EAGT;IACC,OAAO,CACL,KAAC,kBAAkB,CAAC,SAAS,iBACjB,kBAAkB,EAC5B,SAAS,EAAE,EAAE,CACX,skBAAskB,EACtkB,SAAS,CACV,KACG,KAAK,YAER,UAAU,IAAI,CACb,cAAK,SAAS,EAAC,iDAAiD,GAAG,CACpE,GAC4B,CAChC,CAAC;AACJ,CAAC;AAED,OAAO,EAAC,eAAe,EAAE,cAAc,EAAE,mBAAmB,EAAC,CAAC","sourcesContent":["'use client';\n\nimport * as ResizablePrimitive from 'react-resizable-panels';\n\nimport {cn} from '../lib/utils';\nimport {forwardRef} from 'react';\n\ntype ResizablePanelOrientation = Exclude<\n ResizablePrimitive.GroupProps['orientation'],\n undefined\n>;\n\nfunction ResizablePanelGroup({\n className,\n ...props\n}: ResizablePrimitive.GroupProps) {\n return (\n <ResizablePrimitive.Group\n data-slot=\"resizable-panel-group\"\n className={cn(\n 'flex h-full w-full aria-[orientation=vertical]:flex-col',\n className,\n )}\n {...props}\n />\n );\n}\n\nconst ResizablePanel = forwardRef<\n ResizablePrimitive.PanelImperativeHandle,\n ResizablePrimitive.PanelProps\n>(({...props}, ref) => {\n return (\n <ResizablePrimitive.Panel\n panelRef={ref}\n data-slot=\"resizable-panel\"\n {...props}\n />\n );\n});\n\nResizablePanel.displayName = 'ResizablePanel';\n\nfunction ResizableHandle({\n withHandle,\n className,\n ...props\n}: ResizablePrimitive.SeparatorProps & {\n withHandle?: boolean;\n}) {\n return (\n <ResizablePrimitive.Separator\n data-slot=\"resizable-handle\"\n className={cn(\n 'bg-border ring-offset-background focus-visible:ring-ring relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:outline-hidden aria-[orientation=horizontal]:h-px aria-[orientation=horizontal]:w-full aria-[orientation=horizontal]:after:left-0 aria-[orientation=horizontal]:after:h-1 aria-[orientation=horizontal]:after:w-full aria-[orientation=horizontal]:after:translate-x-0 aria-[orientation=horizontal]:after:-translate-y-1/2 [&[aria-orientation=horizontal]>div]:rotate-90',\n className,\n )}\n {...props}\n >\n {withHandle && (\n <div className=\"bg-border z-10 flex h-6 w-1 shrink-0 rounded-lg\" />\n )}\n </ResizablePrimitive.Separator>\n );\n}\n\nexport {ResizableHandle, ResizablePanel, ResizablePanelGroup};\nexport type {ResizablePanelOrientation};\nexport type {PanelImperativeHandle as ResizablePanelHandle} from 'react-resizable-panels';\n"]}
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { ButtonProps } from './button';
|
|
2
3
|
export interface TabDescriptor {
|
|
3
4
|
id: string;
|
|
4
5
|
name: string;
|
|
5
6
|
[key: string]: unknown;
|
|
6
7
|
}
|
|
8
|
+
export type TabStripDndMode = 'internal' | 'shared';
|
|
9
|
+
/**
|
|
10
|
+
* Extra payload attached to tab drags. `TabStrip` always preserves `tabId` and
|
|
11
|
+
* `tabStripId`; callers may intentionally override `kind` for cross-component
|
|
12
|
+
* drags such as artifact tabs.
|
|
13
|
+
*/
|
|
14
|
+
export type TabStripDragData = Record<string, unknown>;
|
|
7
15
|
interface TabStripTabsProps {
|
|
8
16
|
className?: string;
|
|
9
17
|
/** Custom className for individual tab triggers. */
|
|
@@ -66,15 +74,14 @@ interface TabStripSearchDropdownProps {
|
|
|
66
74
|
* Shows open tabs first and closed tabs second (dimmed). When searching, shows all matching tabs.
|
|
67
75
|
*/
|
|
68
76
|
declare function TabStripSearchDropdown({ className, triggerClassName, autoFocus, tooltip, triggerIcon, emptyMessage, searchEmptyMessage, closedTabsLabel, sortSearchItems, getTabLastOpenedAt, }: TabStripSearchDropdownProps): import("react/jsx-runtime").JSX.Element;
|
|
69
|
-
|
|
70
|
-
className?: string;
|
|
77
|
+
type TabStripNewButtonProps = ButtonProps & {
|
|
71
78
|
/** Optional tooltip content for the button. */
|
|
72
79
|
tooltip?: React.ReactNode;
|
|
73
|
-
}
|
|
80
|
+
};
|
|
74
81
|
/**
|
|
75
82
|
* Renders a button to create a new tab.
|
|
76
83
|
*/
|
|
77
|
-
declare function TabStripNewButton({
|
|
84
|
+
declare function TabStripNewButton({ tooltip, ...props }: TabStripNewButtonProps): import("react/jsx-runtime").JSX.Element | null;
|
|
78
85
|
export interface TabStripProps {
|
|
79
86
|
className?: string;
|
|
80
87
|
tabsListClassName?: string;
|
|
@@ -87,6 +94,8 @@ export interface TabStripProps {
|
|
|
87
94
|
selectedTabId?: string | null;
|
|
88
95
|
/** If true, hides the close button when only one tab remains open. */
|
|
89
96
|
preventCloseLastTab?: boolean;
|
|
97
|
+
/** Whether tabs can be closed. Defaults to true. */
|
|
98
|
+
closeable?: boolean;
|
|
90
99
|
/** Called when a tab is closed (hidden, can be reopened). */
|
|
91
100
|
onClose?: (tabId: string) => void;
|
|
92
101
|
/** Called when the list of open tabs changes (open from dropdown or reorder). */
|
|
@@ -105,6 +114,12 @@ export interface TabStripProps {
|
|
|
105
114
|
renderSearchItemActions?: (tab: TabDescriptor) => React.ReactNode;
|
|
106
115
|
/** Render function for custom tab content. Receives the tab and returns the content to display. */
|
|
107
116
|
renderTabLabel?: (tab: TabDescriptor) => React.ReactNode;
|
|
117
|
+
/** Whether this tab strip owns its dnd context or participates in a shared parent context. */
|
|
118
|
+
dndMode?: TabStripDndMode;
|
|
119
|
+
/** Unique scope for shared dnd tab ids. Defaults to a generated component id. */
|
|
120
|
+
dndScopeId?: string;
|
|
121
|
+
/** Extra drag payload attached to tab drags; may intentionally override `kind`. */
|
|
122
|
+
getTabDragData?: (tab: TabDescriptor) => TabStripDragData | undefined;
|
|
108
123
|
}
|
|
109
124
|
/**
|
|
110
125
|
* A composable tab strip component with search dropdown and tab management.
|
|
@@ -127,10 +142,11 @@ export interface TabStripProps {
|
|
|
127
142
|
* <TabStrip.NewButton />
|
|
128
143
|
* </TabStrip>
|
|
129
144
|
*/
|
|
130
|
-
declare function TabStripRoot({ className, tabsListClassName, children, tabs, openTabs, selectedTabId, preventCloseLastTab, onClose, onOpenTabsChange, onSelect, onCreate, onRename, renderTabTitle, renderTabMenu, renderSearchItemActions, renderTabLabel, }: TabStripProps): import("react/jsx-runtime").JSX.Element;
|
|
145
|
+
declare function TabStripRoot({ className, tabsListClassName, children, tabs, openTabs, selectedTabId, preventCloseLastTab, closeable, onClose, onOpenTabsChange, onSelect, onCreate, onRename, renderTabTitle, renderTabMenu, renderSearchItemActions, renderTabLabel, dndMode, dndScopeId, getTabDragData, }: TabStripProps): import("react/jsx-runtime").JSX.Element;
|
|
131
146
|
export declare const TabStrip: typeof TabStripRoot & {
|
|
132
147
|
Tabs: typeof TabStripTabs;
|
|
133
148
|
SearchDropdown: typeof TabStripSearchDropdown;
|
|
149
|
+
Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
134
150
|
NewButton: typeof TabStripNewButton;
|
|
135
151
|
MenuItem: typeof TabStripMenuItem;
|
|
136
152
|
MenuSeparator: typeof TabStripMenuSeparator;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab-strip.d.ts","sourceRoot":"","sources":["../../src/components/tab-strip.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"tab-strip.d.ts","sourceRoot":"","sources":["../../src/components/tab-strip.tsx"],"names":[],"mappings":"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"}
|