raft-ui 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 +24 -0
- package/dist/cn.d.mts +2 -0
- package/dist/cn.mjs +2 -0
- package/dist/index.d.mts +2710 -0
- package/dist/index.mjs +4821 -0
- package/dist/label-DWq4ia5I.mjs +115 -0
- package/dist/styled-props-B3SNekJg.d.mts +16 -0
- package/dist/wip.d.mts +1238 -0
- package/dist/wip.mjs +1416 -0
- package/package.json +70 -0
- package/src/components/avatar/avatar.tsx +375 -0
- package/src/components/avatar/index.ts +17 -0
- package/src/components/badge/badge.tsx +393 -0
- package/src/components/badge/index.ts +2 -0
- package/src/components/banner/banner.tsx +269 -0
- package/src/components/banner/index.ts +8 -0
- package/src/components/bottom-sheet/bottom-sheet.tsx +152 -0
- package/src/components/bottom-sheet/index.ts +22 -0
- package/src/components/button/button.tsx +497 -0
- package/src/components/button/index.ts +2 -0
- package/src/components/checkbox/checkbox-indicator.tsx +128 -0
- package/src/components/checkbox/checkbox.tsx +350 -0
- package/src/components/checkbox/index.ts +2 -0
- package/src/components/combobox/combobox.tsx +603 -0
- package/src/components/combobox/index.ts +52 -0
- package/src/components/context-menu/context-menu.tsx +380 -0
- package/src/components/context-menu/index.ts +34 -0
- package/src/components/conversation-preview-card/conversation-preview-card.tsx +336 -0
- package/src/components/conversation-preview-card/index.ts +32 -0
- package/src/components/description-list/description-list.tsx +116 -0
- package/src/components/description-list/index.ts +14 -0
- package/src/components/dropdown-menu/dropdown-menu.tsx +405 -0
- package/src/components/dropdown-menu/index.ts +38 -0
- package/src/components/empty-state/empty-state.tsx +177 -0
- package/src/components/empty-state/index.ts +16 -0
- package/src/components/field/field.tsx +125 -0
- package/src/components/field/index.ts +18 -0
- package/src/components/inline-code/index.ts +2 -0
- package/src/components/inline-code/inline-code.tsx +33 -0
- package/src/components/input/index.ts +2 -0
- package/src/components/input/input.tsx +76 -0
- package/src/components/input-group/index.ts +7 -0
- package/src/components/input-group/input-group.tsx +215 -0
- package/src/components/kbd/index.ts +2 -0
- package/src/components/kbd/kbd.tsx +43 -0
- package/src/components/label/index.ts +7 -0
- package/src/components/label/label.tsx +99 -0
- package/src/components/lightbox/index.ts +24 -0
- package/src/components/lightbox/lightbox.tsx +245 -0
- package/src/components/list-item/index.ts +20 -0
- package/src/components/list-item/list-item.tsx +263 -0
- package/src/components/media-list-item/index.ts +20 -0
- package/src/components/media-list-item/media-list-item.tsx +169 -0
- package/src/components/notification-center/index.ts +39 -0
- package/src/components/notification-center/notification-center.tsx +558 -0
- package/src/components/panel-header/index.ts +22 -0
- package/src/components/panel-header/panel-header.tsx +199 -0
- package/src/components/popover/index.ts +30 -0
- package/src/components/popover/popover.tsx +248 -0
- package/src/components/preview-shell/index.ts +2 -0
- package/src/components/preview-shell/preview-shell.tsx +51 -0
- package/src/components/quoted-message-card/index.ts +36 -0
- package/src/components/quoted-message-card/quoted-message-card.tsx +391 -0
- package/src/components/radio-group/index.ts +6 -0
- package/src/components/radio-group/radio-group.tsx +119 -0
- package/src/components/section-header/index.ts +16 -0
- package/src/components/section-header/section-header.tsx +117 -0
- package/src/components/section-label/index.ts +2 -0
- package/src/components/section-label/section-label.tsx +38 -0
- package/src/components/segmented-control/index.ts +12 -0
- package/src/components/segmented-control/segmented-control.tsx +129 -0
- package/src/components/select/index.ts +40 -0
- package/src/components/select/select.tsx +382 -0
- package/src/components/spinner/index.ts +2 -0
- package/src/components/spinner/spinner.tsx +228 -0
- package/src/components/status/index.ts +2 -0
- package/src/components/status/status.tsx +152 -0
- package/src/components/tabs/index.ts +24 -0
- package/src/components/tabs/tabs.tsx +417 -0
- package/src/components/text/index.ts +2 -0
- package/src/components/text/text.tsx +130 -0
- package/src/components/textarea/index.ts +2 -0
- package/src/components/textarea/textarea.tsx +136 -0
- package/src/components/toggle-group/index.ts +12 -0
- package/src/components/toggle-group/toggle-group.tsx +111 -0
- package/src/components/tooltip/index.ts +14 -0
- package/src/components/tooltip/tooltip.tsx +186 -0
- package/src/fonts/brutal.css +2 -0
- package/src/index.ts +404 -0
- package/src/legacy/AttentionDot.tsx +28 -0
- package/src/legacy/AvatarListRow.tsx +87 -0
- package/src/legacy/AvatarSlot.tsx +157 -0
- package/src/legacy/Badge.tsx +95 -0
- package/src/legacy/Banner.tsx +74 -0
- package/src/legacy/BottomSheet.tsx +76 -0
- package/src/legacy/CheckMarker.tsx +72 -0
- package/src/legacy/Checkbox.tsx +81 -0
- package/src/legacy/ConversationPreviewCard.tsx +169 -0
- package/src/legacy/DismissBackdrop.tsx +68 -0
- package/src/legacy/EmptyState.tsx +63 -0
- package/src/legacy/ExperimentalBadge.tsx +19 -0
- package/src/legacy/FormField.tsx +106 -0
- package/src/legacy/KeyValueRow.tsx +67 -0
- package/src/legacy/Lightbox.tsx +119 -0
- package/src/legacy/NotificationCenter.tsx +217 -0
- package/src/legacy/PanelHeader.tsx +94 -0
- package/src/legacy/PreviewShell.tsx +40 -0
- package/src/legacy/QuotedMessageCard.tsx +181 -0
- package/src/legacy/ReorderablePanelTabs.tsx +151 -0
- package/src/legacy/SandboxedPreviewFrame.tsx +59 -0
- package/src/legacy/SearchInput.tsx +23 -0
- package/src/legacy/SectionEyebrow.tsx +60 -0
- package/src/legacy/SectionHeader.tsx +68 -0
- package/src/legacy/SegmentedControl.tsx +74 -0
- package/src/legacy/SlugInput.tsx +29 -0
- package/src/legacy/Spinner.tsx +89 -0
- package/src/legacy/StatusDot.tsx +51 -0
- package/src/legacy/SurfaceListItem.tsx +32 -0
- package/src/legacy/Textarea.tsx +137 -0
- package/src/legacy/button.tsx +100 -0
- package/src/legacy/context-menu-divider.tsx +12 -0
- package/src/legacy/menu-item.tsx +66 -0
- package/src/legacy/selection-popover.tsx +212 -0
- package/src/legacy/server-switcher-menu.tsx +203 -0
- package/src/legacy/source.css +240 -0
- package/src/lib/cn.ts +1 -0
- package/src/lib/styled-props.ts +11 -0
- package/src/lib/theme/theme-context.ts +28 -0
- package/src/lib/theme/theme-provider.tsx +181 -0
- package/src/lib/theme/use-theme.ts +12 -0
- package/src/lib/tv.ts +29 -0
- package/src/lib/without-children.ts +6 -0
- package/src/styles.css +467 -0
- package/src/wip.ts +255 -0
package/dist/wip.d.mts
ADDED
|
@@ -0,0 +1,1238 @@
|
|
|
1
|
+
import { n as VariantProps, t as StyledProps } from "./styled-props-B3SNekJg.mjs";
|
|
2
|
+
import { ComponentPropsWithRef, ReactNode } from "react";
|
|
3
|
+
import { useRender } from "@base-ui/react/use-render";
|
|
4
|
+
import { Field as Field$1 } from "@base-ui/react/field";
|
|
5
|
+
import { Toggle } from "@base-ui/react/toggle";
|
|
6
|
+
import { ToggleGroup as ToggleGroup$1 } from "@base-ui/react/toggle-group";
|
|
7
|
+
import { Dialog } from "@base-ui/react/dialog";
|
|
8
|
+
|
|
9
|
+
//#region src/components/field/field.d.ts
|
|
10
|
+
declare const field: import("tailwind-variants/lite").TVReturnType<{
|
|
11
|
+
theme: {
|
|
12
|
+
brutal: {
|
|
13
|
+
root: string[];
|
|
14
|
+
label: string[];
|
|
15
|
+
description: string[];
|
|
16
|
+
error: string[];
|
|
17
|
+
};
|
|
18
|
+
elegant: {
|
|
19
|
+
label: string[];
|
|
20
|
+
description: string[];
|
|
21
|
+
error: string[];
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
size: {
|
|
25
|
+
sm: {
|
|
26
|
+
label: string;
|
|
27
|
+
};
|
|
28
|
+
md: {
|
|
29
|
+
label: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
}, {
|
|
33
|
+
root: string[];
|
|
34
|
+
item: string[];
|
|
35
|
+
label: string[];
|
|
36
|
+
description: string[];
|
|
37
|
+
error: string[];
|
|
38
|
+
}, undefined, {
|
|
39
|
+
theme: {
|
|
40
|
+
brutal: {
|
|
41
|
+
root: string[];
|
|
42
|
+
label: string[];
|
|
43
|
+
description: string[];
|
|
44
|
+
error: string[];
|
|
45
|
+
};
|
|
46
|
+
elegant: {
|
|
47
|
+
label: string[];
|
|
48
|
+
description: string[];
|
|
49
|
+
error: string[];
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
size: {
|
|
53
|
+
sm: {
|
|
54
|
+
label: string;
|
|
55
|
+
};
|
|
56
|
+
md: {
|
|
57
|
+
label: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
}, {
|
|
61
|
+
root: string[];
|
|
62
|
+
item: string[];
|
|
63
|
+
label: string[];
|
|
64
|
+
description: string[];
|
|
65
|
+
error: string[];
|
|
66
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
67
|
+
theme: {
|
|
68
|
+
brutal: {
|
|
69
|
+
root: string[];
|
|
70
|
+
label: string[];
|
|
71
|
+
description: string[];
|
|
72
|
+
error: string[];
|
|
73
|
+
};
|
|
74
|
+
elegant: {
|
|
75
|
+
label: string[];
|
|
76
|
+
description: string[];
|
|
77
|
+
error: string[];
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
size: {
|
|
81
|
+
sm: {
|
|
82
|
+
label: string;
|
|
83
|
+
};
|
|
84
|
+
md: {
|
|
85
|
+
label: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
}, {
|
|
89
|
+
root: string[];
|
|
90
|
+
item: string[];
|
|
91
|
+
label: string[];
|
|
92
|
+
description: string[];
|
|
93
|
+
error: string[];
|
|
94
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
95
|
+
type FieldProps = StyledProps<Field$1.Root.Props>;
|
|
96
|
+
declare function Field({
|
|
97
|
+
className,
|
|
98
|
+
...props
|
|
99
|
+
}: FieldProps): import("react").JSX.Element;
|
|
100
|
+
type FieldItemProps = StyledProps<Field$1.Item.Props>;
|
|
101
|
+
declare function FieldItem({
|
|
102
|
+
className,
|
|
103
|
+
...props
|
|
104
|
+
}: FieldItemProps): import("react").JSX.Element;
|
|
105
|
+
type LabelMarker = {
|
|
106
|
+
required?: boolean;
|
|
107
|
+
optional?: never;
|
|
108
|
+
} | {
|
|
109
|
+
optional?: boolean;
|
|
110
|
+
required?: never;
|
|
111
|
+
};
|
|
112
|
+
type FieldLabelProps = StyledProps<Field$1.Label.Props> & Omit<VariantProps<typeof field>, "theme"> & LabelMarker;
|
|
113
|
+
declare function FieldLabel({
|
|
114
|
+
size,
|
|
115
|
+
required,
|
|
116
|
+
optional,
|
|
117
|
+
className,
|
|
118
|
+
children,
|
|
119
|
+
...props
|
|
120
|
+
}: FieldLabelProps): import("react").JSX.Element;
|
|
121
|
+
type FieldDescriptionProps = StyledProps<Field$1.Description.Props>;
|
|
122
|
+
declare function FieldDescription({
|
|
123
|
+
className,
|
|
124
|
+
...props
|
|
125
|
+
}: FieldDescriptionProps): import("react").JSX.Element;
|
|
126
|
+
type FieldErrorProps = StyledProps<Field$1.Error.Props>;
|
|
127
|
+
declare function FieldError({
|
|
128
|
+
className,
|
|
129
|
+
role,
|
|
130
|
+
...props
|
|
131
|
+
}: FieldErrorProps): import("react").JSX.Element;
|
|
132
|
+
type FieldControlProps = Field$1.Control.Props;
|
|
133
|
+
declare function FieldControl(props: FieldControlProps): import("react").JSX.Element;
|
|
134
|
+
type FieldValidityProps = Field$1.Validity.Props;
|
|
135
|
+
declare function FieldValidity(props: FieldValidityProps): import("react").JSX.Element;
|
|
136
|
+
//#endregion
|
|
137
|
+
//#region src/components/text/text.d.ts
|
|
138
|
+
declare const heading: import("tailwind-variants/lite").TVReturnType<{
|
|
139
|
+
level: {
|
|
140
|
+
1: string[];
|
|
141
|
+
2: string[];
|
|
142
|
+
3: string[];
|
|
143
|
+
4: string[];
|
|
144
|
+
5: string[];
|
|
145
|
+
6: string[];
|
|
146
|
+
};
|
|
147
|
+
variant: {
|
|
148
|
+
default: string[];
|
|
149
|
+
primary: string[];
|
|
150
|
+
information: string[];
|
|
151
|
+
muted: string[];
|
|
152
|
+
accent: string[];
|
|
153
|
+
success: string[];
|
|
154
|
+
warning: string[];
|
|
155
|
+
danger: string[];
|
|
156
|
+
};
|
|
157
|
+
}, undefined, string[], {
|
|
158
|
+
level: {
|
|
159
|
+
1: string[];
|
|
160
|
+
2: string[];
|
|
161
|
+
3: string[];
|
|
162
|
+
4: string[];
|
|
163
|
+
5: string[];
|
|
164
|
+
6: string[];
|
|
165
|
+
};
|
|
166
|
+
variant: {
|
|
167
|
+
default: string[];
|
|
168
|
+
primary: string[];
|
|
169
|
+
information: string[];
|
|
170
|
+
muted: string[];
|
|
171
|
+
accent: string[];
|
|
172
|
+
success: string[];
|
|
173
|
+
warning: string[];
|
|
174
|
+
danger: string[];
|
|
175
|
+
};
|
|
176
|
+
}, undefined, import("tailwind-variants/lite").TVReturnType<{
|
|
177
|
+
level: {
|
|
178
|
+
1: string[];
|
|
179
|
+
2: string[];
|
|
180
|
+
3: string[];
|
|
181
|
+
4: string[];
|
|
182
|
+
5: string[];
|
|
183
|
+
6: string[];
|
|
184
|
+
};
|
|
185
|
+
variant: {
|
|
186
|
+
default: string[];
|
|
187
|
+
primary: string[];
|
|
188
|
+
information: string[];
|
|
189
|
+
muted: string[];
|
|
190
|
+
accent: string[];
|
|
191
|
+
success: string[];
|
|
192
|
+
warning: string[];
|
|
193
|
+
danger: string[];
|
|
194
|
+
};
|
|
195
|
+
}, undefined, string[], unknown, unknown, undefined>>;
|
|
196
|
+
declare const sans: import("tailwind-variants/lite").TVReturnType<{
|
|
197
|
+
size: {
|
|
198
|
+
large: string[];
|
|
199
|
+
body: string[];
|
|
200
|
+
small: string[];
|
|
201
|
+
caption: string[];
|
|
202
|
+
};
|
|
203
|
+
variant: {
|
|
204
|
+
default: string[];
|
|
205
|
+
primary: string[];
|
|
206
|
+
information: string[];
|
|
207
|
+
muted: string[];
|
|
208
|
+
accent: string[];
|
|
209
|
+
success: string[];
|
|
210
|
+
warning: string[];
|
|
211
|
+
danger: string[];
|
|
212
|
+
};
|
|
213
|
+
}, undefined, string[], {
|
|
214
|
+
size: {
|
|
215
|
+
large: string[];
|
|
216
|
+
body: string[];
|
|
217
|
+
small: string[];
|
|
218
|
+
caption: string[];
|
|
219
|
+
};
|
|
220
|
+
variant: {
|
|
221
|
+
default: string[];
|
|
222
|
+
primary: string[];
|
|
223
|
+
information: string[];
|
|
224
|
+
muted: string[];
|
|
225
|
+
accent: string[];
|
|
226
|
+
success: string[];
|
|
227
|
+
warning: string[];
|
|
228
|
+
danger: string[];
|
|
229
|
+
};
|
|
230
|
+
}, undefined, import("tailwind-variants/lite").TVReturnType<{
|
|
231
|
+
size: {
|
|
232
|
+
large: string[];
|
|
233
|
+
body: string[];
|
|
234
|
+
small: string[];
|
|
235
|
+
caption: string[];
|
|
236
|
+
};
|
|
237
|
+
variant: {
|
|
238
|
+
default: string[];
|
|
239
|
+
primary: string[];
|
|
240
|
+
information: string[];
|
|
241
|
+
muted: string[];
|
|
242
|
+
accent: string[];
|
|
243
|
+
success: string[];
|
|
244
|
+
warning: string[];
|
|
245
|
+
danger: string[];
|
|
246
|
+
};
|
|
247
|
+
}, undefined, string[], unknown, unknown, undefined>>;
|
|
248
|
+
declare const mono: import("tailwind-variants/lite").TVReturnType<{
|
|
249
|
+
size: {
|
|
250
|
+
code: string[];
|
|
251
|
+
meta: string[];
|
|
252
|
+
eyebrow: string[];
|
|
253
|
+
tabular: string[];
|
|
254
|
+
};
|
|
255
|
+
variant: {
|
|
256
|
+
default: string[];
|
|
257
|
+
primary: string[];
|
|
258
|
+
information: string[];
|
|
259
|
+
muted: string[];
|
|
260
|
+
accent: string[];
|
|
261
|
+
success: string[];
|
|
262
|
+
warning: string[];
|
|
263
|
+
danger: string[];
|
|
264
|
+
};
|
|
265
|
+
}, undefined, string[], {
|
|
266
|
+
size: {
|
|
267
|
+
code: string[];
|
|
268
|
+
meta: string[];
|
|
269
|
+
eyebrow: string[];
|
|
270
|
+
tabular: string[];
|
|
271
|
+
};
|
|
272
|
+
variant: {
|
|
273
|
+
default: string[];
|
|
274
|
+
primary: string[];
|
|
275
|
+
information: string[];
|
|
276
|
+
muted: string[];
|
|
277
|
+
accent: string[];
|
|
278
|
+
success: string[];
|
|
279
|
+
warning: string[];
|
|
280
|
+
danger: string[];
|
|
281
|
+
};
|
|
282
|
+
}, undefined, import("tailwind-variants/lite").TVReturnType<{
|
|
283
|
+
size: {
|
|
284
|
+
code: string[];
|
|
285
|
+
meta: string[];
|
|
286
|
+
eyebrow: string[];
|
|
287
|
+
tabular: string[];
|
|
288
|
+
};
|
|
289
|
+
variant: {
|
|
290
|
+
default: string[];
|
|
291
|
+
primary: string[];
|
|
292
|
+
information: string[];
|
|
293
|
+
muted: string[];
|
|
294
|
+
accent: string[];
|
|
295
|
+
success: string[];
|
|
296
|
+
warning: string[];
|
|
297
|
+
danger: string[];
|
|
298
|
+
};
|
|
299
|
+
}, undefined, string[], unknown, unknown, undefined>>;
|
|
300
|
+
type TextHeadingProps = useRender.ComponentProps<"h1"> & VariantProps<typeof heading>;
|
|
301
|
+
declare function TextHeading({
|
|
302
|
+
level,
|
|
303
|
+
variant,
|
|
304
|
+
className,
|
|
305
|
+
render,
|
|
306
|
+
...props
|
|
307
|
+
}: TextHeadingProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
308
|
+
type TextSansProps = useRender.ComponentProps<"p"> & VariantProps<typeof sans>;
|
|
309
|
+
declare function TextSans({
|
|
310
|
+
size,
|
|
311
|
+
variant,
|
|
312
|
+
className,
|
|
313
|
+
render,
|
|
314
|
+
...props
|
|
315
|
+
}: TextSansProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
316
|
+
type TextMonoProps = useRender.ComponentProps<"p"> & VariantProps<typeof mono>;
|
|
317
|
+
declare function TextMono({
|
|
318
|
+
size,
|
|
319
|
+
variant,
|
|
320
|
+
className,
|
|
321
|
+
render,
|
|
322
|
+
...props
|
|
323
|
+
}: TextMonoProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
324
|
+
declare const Text: {
|
|
325
|
+
Heading: typeof TextHeading;
|
|
326
|
+
Sans: typeof TextSans;
|
|
327
|
+
Mono: typeof TextMono;
|
|
328
|
+
};
|
|
329
|
+
//#endregion
|
|
330
|
+
//#region src/components/toggle-group/toggle-group.d.ts
|
|
331
|
+
declare const toggleGroup: import("tailwind-variants/lite").TVReturnType<{
|
|
332
|
+
theme: {
|
|
333
|
+
brutal: {
|
|
334
|
+
item: string[];
|
|
335
|
+
count: string[];
|
|
336
|
+
};
|
|
337
|
+
elegant: {};
|
|
338
|
+
};
|
|
339
|
+
disabled: {
|
|
340
|
+
true: {
|
|
341
|
+
root: string;
|
|
342
|
+
};
|
|
343
|
+
false: {
|
|
344
|
+
root: string;
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
}, {
|
|
348
|
+
root: string[];
|
|
349
|
+
item: string[];
|
|
350
|
+
label: string[];
|
|
351
|
+
count: string[];
|
|
352
|
+
}, undefined, {
|
|
353
|
+
theme: {
|
|
354
|
+
brutal: {
|
|
355
|
+
item: string[];
|
|
356
|
+
count: string[];
|
|
357
|
+
};
|
|
358
|
+
elegant: {};
|
|
359
|
+
};
|
|
360
|
+
disabled: {
|
|
361
|
+
true: {
|
|
362
|
+
root: string;
|
|
363
|
+
};
|
|
364
|
+
false: {
|
|
365
|
+
root: string;
|
|
366
|
+
};
|
|
367
|
+
};
|
|
368
|
+
}, {
|
|
369
|
+
root: string[];
|
|
370
|
+
item: string[];
|
|
371
|
+
label: string[];
|
|
372
|
+
count: string[];
|
|
373
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
374
|
+
theme: {
|
|
375
|
+
brutal: {
|
|
376
|
+
item: string[];
|
|
377
|
+
count: string[];
|
|
378
|
+
};
|
|
379
|
+
elegant: {};
|
|
380
|
+
};
|
|
381
|
+
disabled: {
|
|
382
|
+
true: {
|
|
383
|
+
root: string;
|
|
384
|
+
};
|
|
385
|
+
false: {
|
|
386
|
+
root: string;
|
|
387
|
+
};
|
|
388
|
+
};
|
|
389
|
+
}, {
|
|
390
|
+
root: string[];
|
|
391
|
+
item: string[];
|
|
392
|
+
label: string[];
|
|
393
|
+
count: string[];
|
|
394
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
395
|
+
type ToggleGroupProps<T extends string = string> = StyledProps<Omit<ToggleGroup$1.Props<T>, "defaultValue" | "multiple" | "onValueChange" | "value">> & Omit<VariantProps<typeof toggleGroup>, "theme"> & {
|
|
396
|
+
value: T;
|
|
397
|
+
onValueChange: (value: T, eventDetails: ToggleGroup$1.ChangeEventDetails) => void;
|
|
398
|
+
ariaLabel?: string;
|
|
399
|
+
};
|
|
400
|
+
declare function ToggleGroup<T extends string = string>({
|
|
401
|
+
value,
|
|
402
|
+
onValueChange,
|
|
403
|
+
ariaLabel,
|
|
404
|
+
disabled,
|
|
405
|
+
className,
|
|
406
|
+
...props
|
|
407
|
+
}: ToggleGroupProps<T>): import("react").JSX.Element;
|
|
408
|
+
type ToggleGroupItemProps<T extends string = string> = StyledProps<Toggle.Props<T>>;
|
|
409
|
+
declare function ToggleGroupItem<T extends string = string>({
|
|
410
|
+
className,
|
|
411
|
+
...props
|
|
412
|
+
}: ToggleGroupItemProps<T>): import("react").JSX.Element;
|
|
413
|
+
type ToggleGroupLabelProps = ComponentPropsWithRef<"span">;
|
|
414
|
+
declare function ToggleGroupLabel({
|
|
415
|
+
className,
|
|
416
|
+
...props
|
|
417
|
+
}: ToggleGroupLabelProps): import("react").JSX.Element;
|
|
418
|
+
type ToggleGroupCountProps = ComponentPropsWithRef<"span">;
|
|
419
|
+
declare function ToggleGroupCount({
|
|
420
|
+
className,
|
|
421
|
+
...props
|
|
422
|
+
}: ToggleGroupCountProps): import("react").JSX.Element;
|
|
423
|
+
//#endregion
|
|
424
|
+
//#region src/components/preview-shell/preview-shell.d.ts
|
|
425
|
+
declare const previewShell: import("tailwind-variants/lite").TVReturnType<{
|
|
426
|
+
theme: {
|
|
427
|
+
brutal: {};
|
|
428
|
+
elegant: {};
|
|
429
|
+
};
|
|
430
|
+
variant: {
|
|
431
|
+
default: {
|
|
432
|
+
root: string;
|
|
433
|
+
};
|
|
434
|
+
muted: {
|
|
435
|
+
root: string;
|
|
436
|
+
};
|
|
437
|
+
};
|
|
438
|
+
}, {
|
|
439
|
+
root: never[];
|
|
440
|
+
}, undefined, {
|
|
441
|
+
theme: {
|
|
442
|
+
brutal: {};
|
|
443
|
+
elegant: {};
|
|
444
|
+
};
|
|
445
|
+
variant: {
|
|
446
|
+
default: {
|
|
447
|
+
root: string;
|
|
448
|
+
};
|
|
449
|
+
muted: {
|
|
450
|
+
root: string;
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
}, {
|
|
454
|
+
root: never[];
|
|
455
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
456
|
+
theme: {
|
|
457
|
+
brutal: {};
|
|
458
|
+
elegant: {};
|
|
459
|
+
};
|
|
460
|
+
variant: {
|
|
461
|
+
default: {
|
|
462
|
+
root: string;
|
|
463
|
+
};
|
|
464
|
+
muted: {
|
|
465
|
+
root: string;
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
}, {
|
|
469
|
+
root: never[];
|
|
470
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
471
|
+
type PreviewShellProps = useRender.ComponentProps<"div"> & Omit<VariantProps<typeof previewShell>, "theme"> & {
|
|
472
|
+
"data-testid"?: string;
|
|
473
|
+
};
|
|
474
|
+
declare function PreviewShell({
|
|
475
|
+
variant,
|
|
476
|
+
className,
|
|
477
|
+
render,
|
|
478
|
+
...props
|
|
479
|
+
}: PreviewShellProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
480
|
+
//#endregion
|
|
481
|
+
//#region src/components/list-item/list-item.d.ts
|
|
482
|
+
declare const listItem: import("tailwind-variants/lite").TVReturnType<{
|
|
483
|
+
theme: {
|
|
484
|
+
brutal: {
|
|
485
|
+
root: string[];
|
|
486
|
+
icon: string[];
|
|
487
|
+
title: string;
|
|
488
|
+
description: string;
|
|
489
|
+
meta: string;
|
|
490
|
+
};
|
|
491
|
+
elegant: {
|
|
492
|
+
root: string[];
|
|
493
|
+
icon: string[];
|
|
494
|
+
row: string[];
|
|
495
|
+
title: string[];
|
|
496
|
+
description: string[];
|
|
497
|
+
meta: string[];
|
|
498
|
+
actionGroup: string[];
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
selected: {
|
|
502
|
+
true: {
|
|
503
|
+
root: string;
|
|
504
|
+
};
|
|
505
|
+
false: {
|
|
506
|
+
root: string;
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
interactive: {
|
|
510
|
+
true: {
|
|
511
|
+
root: string;
|
|
512
|
+
};
|
|
513
|
+
false: {
|
|
514
|
+
root: string;
|
|
515
|
+
};
|
|
516
|
+
};
|
|
517
|
+
}, {
|
|
518
|
+
root: string[];
|
|
519
|
+
body: string[];
|
|
520
|
+
icon: string[];
|
|
521
|
+
row: string[];
|
|
522
|
+
title: string[];
|
|
523
|
+
description: string[];
|
|
524
|
+
meta: string[];
|
|
525
|
+
actionGroup: string[];
|
|
526
|
+
}, undefined, {
|
|
527
|
+
theme: {
|
|
528
|
+
brutal: {
|
|
529
|
+
root: string[];
|
|
530
|
+
icon: string[];
|
|
531
|
+
title: string;
|
|
532
|
+
description: string;
|
|
533
|
+
meta: string;
|
|
534
|
+
};
|
|
535
|
+
elegant: {
|
|
536
|
+
root: string[];
|
|
537
|
+
icon: string[];
|
|
538
|
+
row: string[];
|
|
539
|
+
title: string[];
|
|
540
|
+
description: string[];
|
|
541
|
+
meta: string[];
|
|
542
|
+
actionGroup: string[];
|
|
543
|
+
};
|
|
544
|
+
};
|
|
545
|
+
selected: {
|
|
546
|
+
true: {
|
|
547
|
+
root: string;
|
|
548
|
+
};
|
|
549
|
+
false: {
|
|
550
|
+
root: string;
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
interactive: {
|
|
554
|
+
true: {
|
|
555
|
+
root: string;
|
|
556
|
+
};
|
|
557
|
+
false: {
|
|
558
|
+
root: string;
|
|
559
|
+
};
|
|
560
|
+
};
|
|
561
|
+
}, {
|
|
562
|
+
root: string[];
|
|
563
|
+
body: string[];
|
|
564
|
+
icon: string[];
|
|
565
|
+
row: string[];
|
|
566
|
+
title: string[];
|
|
567
|
+
description: string[];
|
|
568
|
+
meta: string[];
|
|
569
|
+
actionGroup: string[];
|
|
570
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
571
|
+
theme: {
|
|
572
|
+
brutal: {
|
|
573
|
+
root: string[];
|
|
574
|
+
icon: string[];
|
|
575
|
+
title: string;
|
|
576
|
+
description: string;
|
|
577
|
+
meta: string;
|
|
578
|
+
};
|
|
579
|
+
elegant: {
|
|
580
|
+
root: string[];
|
|
581
|
+
icon: string[];
|
|
582
|
+
row: string[];
|
|
583
|
+
title: string[];
|
|
584
|
+
description: string[];
|
|
585
|
+
meta: string[];
|
|
586
|
+
actionGroup: string[];
|
|
587
|
+
};
|
|
588
|
+
};
|
|
589
|
+
selected: {
|
|
590
|
+
true: {
|
|
591
|
+
root: string;
|
|
592
|
+
};
|
|
593
|
+
false: {
|
|
594
|
+
root: string;
|
|
595
|
+
};
|
|
596
|
+
};
|
|
597
|
+
interactive: {
|
|
598
|
+
true: {
|
|
599
|
+
root: string;
|
|
600
|
+
};
|
|
601
|
+
false: {
|
|
602
|
+
root: string;
|
|
603
|
+
};
|
|
604
|
+
};
|
|
605
|
+
}, {
|
|
606
|
+
root: string[];
|
|
607
|
+
body: string[];
|
|
608
|
+
icon: string[];
|
|
609
|
+
row: string[];
|
|
610
|
+
title: string[];
|
|
611
|
+
description: string[];
|
|
612
|
+
meta: string[];
|
|
613
|
+
actionGroup: string[];
|
|
614
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
615
|
+
type ListItemProps = useRender.ComponentProps<"div"> & Omit<VariantProps<typeof listItem>, "theme">;
|
|
616
|
+
declare function ListItem({
|
|
617
|
+
selected,
|
|
618
|
+
interactive,
|
|
619
|
+
className,
|
|
620
|
+
render,
|
|
621
|
+
...props
|
|
622
|
+
}: ListItemProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
623
|
+
type ListItemBodyProps = useRender.ComponentProps<"div">;
|
|
624
|
+
declare function ListItemBody({
|
|
625
|
+
className,
|
|
626
|
+
render,
|
|
627
|
+
...props
|
|
628
|
+
}: ListItemBodyProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
629
|
+
type ListItemIconProps = useRender.ComponentProps<"div">;
|
|
630
|
+
declare function ListItemIcon({
|
|
631
|
+
className,
|
|
632
|
+
render,
|
|
633
|
+
...props
|
|
634
|
+
}: ListItemIconProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
635
|
+
type ListItemRowProps = useRender.ComponentProps<"div">;
|
|
636
|
+
declare function ListItemRow({
|
|
637
|
+
className,
|
|
638
|
+
render,
|
|
639
|
+
...props
|
|
640
|
+
}: ListItemRowProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
641
|
+
type ListItemTitleProps = useRender.ComponentProps<"div">;
|
|
642
|
+
declare function ListItemTitle({
|
|
643
|
+
className,
|
|
644
|
+
render,
|
|
645
|
+
...props
|
|
646
|
+
}: ListItemTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
647
|
+
type ListItemDescriptionProps = useRender.ComponentProps<"p">;
|
|
648
|
+
declare function ListItemDescription({
|
|
649
|
+
className,
|
|
650
|
+
render,
|
|
651
|
+
...props
|
|
652
|
+
}: ListItemDescriptionProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
653
|
+
type ListItemMetaProps = useRender.ComponentProps<"div">;
|
|
654
|
+
declare function ListItemMeta({
|
|
655
|
+
className,
|
|
656
|
+
render,
|
|
657
|
+
...props
|
|
658
|
+
}: ListItemMetaProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
659
|
+
type ListItemActionGroupProps = useRender.ComponentProps<"div">;
|
|
660
|
+
declare function ListItemActionGroup({
|
|
661
|
+
className,
|
|
662
|
+
render,
|
|
663
|
+
...props
|
|
664
|
+
}: ListItemActionGroupProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
665
|
+
//#endregion
|
|
666
|
+
//#region src/components/media-list-item/media-list-item.d.ts
|
|
667
|
+
declare const mediaItem: import("tailwind-variants/lite").TVReturnType<{
|
|
668
|
+
theme: {
|
|
669
|
+
brutal: {
|
|
670
|
+
title: string;
|
|
671
|
+
subtitle: string;
|
|
672
|
+
};
|
|
673
|
+
elegant: {};
|
|
674
|
+
};
|
|
675
|
+
align: {
|
|
676
|
+
start: {
|
|
677
|
+
row: string;
|
|
678
|
+
};
|
|
679
|
+
center: {
|
|
680
|
+
row: string;
|
|
681
|
+
};
|
|
682
|
+
};
|
|
683
|
+
interactive: {
|
|
684
|
+
true: {
|
|
685
|
+
body: string;
|
|
686
|
+
};
|
|
687
|
+
false: {
|
|
688
|
+
body: string;
|
|
689
|
+
};
|
|
690
|
+
};
|
|
691
|
+
}, {
|
|
692
|
+
row: string[];
|
|
693
|
+
body: string[];
|
|
694
|
+
text: string[];
|
|
695
|
+
textInner: string[];
|
|
696
|
+
visual: string[];
|
|
697
|
+
title: string[];
|
|
698
|
+
subtitle: string[];
|
|
699
|
+
aside: string[];
|
|
700
|
+
actionGroup: string[];
|
|
701
|
+
}, undefined, {
|
|
702
|
+
theme: {
|
|
703
|
+
brutal: {
|
|
704
|
+
title: string;
|
|
705
|
+
subtitle: string;
|
|
706
|
+
};
|
|
707
|
+
elegant: {};
|
|
708
|
+
};
|
|
709
|
+
align: {
|
|
710
|
+
start: {
|
|
711
|
+
row: string;
|
|
712
|
+
};
|
|
713
|
+
center: {
|
|
714
|
+
row: string;
|
|
715
|
+
};
|
|
716
|
+
};
|
|
717
|
+
interactive: {
|
|
718
|
+
true: {
|
|
719
|
+
body: string;
|
|
720
|
+
};
|
|
721
|
+
false: {
|
|
722
|
+
body: string;
|
|
723
|
+
};
|
|
724
|
+
};
|
|
725
|
+
}, {
|
|
726
|
+
row: string[];
|
|
727
|
+
body: string[];
|
|
728
|
+
text: string[];
|
|
729
|
+
textInner: string[];
|
|
730
|
+
visual: string[];
|
|
731
|
+
title: string[];
|
|
732
|
+
subtitle: string[];
|
|
733
|
+
aside: string[];
|
|
734
|
+
actionGroup: string[];
|
|
735
|
+
}, import("tailwind-variants/lite").TVReturnType<{
|
|
736
|
+
theme: {
|
|
737
|
+
brutal: {
|
|
738
|
+
title: string;
|
|
739
|
+
subtitle: string;
|
|
740
|
+
};
|
|
741
|
+
elegant: {};
|
|
742
|
+
};
|
|
743
|
+
align: {
|
|
744
|
+
start: {
|
|
745
|
+
row: string;
|
|
746
|
+
};
|
|
747
|
+
center: {
|
|
748
|
+
row: string;
|
|
749
|
+
};
|
|
750
|
+
};
|
|
751
|
+
interactive: {
|
|
752
|
+
true: {
|
|
753
|
+
body: string;
|
|
754
|
+
};
|
|
755
|
+
false: {
|
|
756
|
+
body: string;
|
|
757
|
+
};
|
|
758
|
+
};
|
|
759
|
+
}, {
|
|
760
|
+
row: string[];
|
|
761
|
+
body: string[];
|
|
762
|
+
text: string[];
|
|
763
|
+
textInner: string[];
|
|
764
|
+
visual: string[];
|
|
765
|
+
title: string[];
|
|
766
|
+
subtitle: string[];
|
|
767
|
+
aside: string[];
|
|
768
|
+
actionGroup: string[];
|
|
769
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
770
|
+
type MediaListItemProps = Pick<VariantProps<typeof mediaItem>, "align"> & Pick<ListItemProps, "selected" | "interactive"> & ComponentPropsWithRef<"div">;
|
|
771
|
+
declare function MediaListItem({
|
|
772
|
+
align,
|
|
773
|
+
selected,
|
|
774
|
+
interactive,
|
|
775
|
+
className,
|
|
776
|
+
children,
|
|
777
|
+
...props
|
|
778
|
+
}: MediaListItemProps): import("react").JSX.Element;
|
|
779
|
+
type MediaListItemBodyProps = useRender.ComponentProps<"button">;
|
|
780
|
+
declare function MediaListItemBody({
|
|
781
|
+
render,
|
|
782
|
+
onClick,
|
|
783
|
+
className,
|
|
784
|
+
...props
|
|
785
|
+
}: MediaListItemBodyProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
786
|
+
type MediaListItemTextProps = ComponentPropsWithRef<"div">;
|
|
787
|
+
declare function MediaListItemText({
|
|
788
|
+
className,
|
|
789
|
+
children,
|
|
790
|
+
...props
|
|
791
|
+
}: MediaListItemTextProps): import("react").JSX.Element;
|
|
792
|
+
type MediaListItemVisualProps = ComponentPropsWithRef<"div">;
|
|
793
|
+
declare function MediaListItemVisual({
|
|
794
|
+
className,
|
|
795
|
+
...props
|
|
796
|
+
}: MediaListItemVisualProps): import("react").JSX.Element;
|
|
797
|
+
type MediaListItemTitleProps = ComponentPropsWithRef<"span">;
|
|
798
|
+
declare function MediaListItemTitle({
|
|
799
|
+
className,
|
|
800
|
+
...props
|
|
801
|
+
}: MediaListItemTitleProps): import("react").JSX.Element;
|
|
802
|
+
type MediaListItemSubtitleProps = ComponentPropsWithRef<"span">;
|
|
803
|
+
declare function MediaListItemSubtitle({
|
|
804
|
+
className,
|
|
805
|
+
...props
|
|
806
|
+
}: MediaListItemSubtitleProps): import("react").JSX.Element;
|
|
807
|
+
type MediaListItemAsideProps = ComponentPropsWithRef<"div">;
|
|
808
|
+
declare function MediaListItemAside({
|
|
809
|
+
className,
|
|
810
|
+
...props
|
|
811
|
+
}: MediaListItemAsideProps): import("react").JSX.Element;
|
|
812
|
+
type MediaListItemActionGroupProps = ComponentPropsWithRef<"div">;
|
|
813
|
+
declare function MediaListItemActionGroup({
|
|
814
|
+
className,
|
|
815
|
+
...props
|
|
816
|
+
}: MediaListItemActionGroupProps): import("react").JSX.Element;
|
|
817
|
+
//#endregion
|
|
818
|
+
//#region src/components/panel-header/panel-header.d.ts
|
|
819
|
+
type PanelHeaderProps = useRender.ComponentProps<"div">;
|
|
820
|
+
declare function PanelHeader({
|
|
821
|
+
className,
|
|
822
|
+
render,
|
|
823
|
+
...props
|
|
824
|
+
}: PanelHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
825
|
+
type PanelHeaderIconProps = useRender.ComponentProps<"div">;
|
|
826
|
+
declare function PanelHeaderIcon({
|
|
827
|
+
className,
|
|
828
|
+
render,
|
|
829
|
+
...props
|
|
830
|
+
}: PanelHeaderIconProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
831
|
+
type PanelHeaderVisualProps = useRender.ComponentProps<"div">;
|
|
832
|
+
declare function PanelHeaderVisual({
|
|
833
|
+
className,
|
|
834
|
+
render,
|
|
835
|
+
...props
|
|
836
|
+
}: PanelHeaderVisualProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
837
|
+
type PanelHeaderContentProps = useRender.ComponentProps<"div">;
|
|
838
|
+
declare function PanelHeaderContent({
|
|
839
|
+
className,
|
|
840
|
+
render,
|
|
841
|
+
...props
|
|
842
|
+
}: PanelHeaderContentProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
843
|
+
type PanelHeaderTitleRowProps = useRender.ComponentProps<"div">;
|
|
844
|
+
declare function PanelHeaderTitleRow({
|
|
845
|
+
className,
|
|
846
|
+
render,
|
|
847
|
+
...props
|
|
848
|
+
}: PanelHeaderTitleRowProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
849
|
+
type PanelHeaderTitleProps = useRender.ComponentProps<"h2">;
|
|
850
|
+
declare function PanelHeaderTitle({
|
|
851
|
+
className,
|
|
852
|
+
render,
|
|
853
|
+
...props
|
|
854
|
+
}: PanelHeaderTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
855
|
+
type PanelHeaderSuffixProps = useRender.ComponentProps<"div">;
|
|
856
|
+
declare function PanelHeaderSuffix({
|
|
857
|
+
className,
|
|
858
|
+
render,
|
|
859
|
+
...props
|
|
860
|
+
}: PanelHeaderSuffixProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
861
|
+
type PanelHeaderSubtitleProps = useRender.ComponentProps<"p">;
|
|
862
|
+
declare function PanelHeaderSubtitle({
|
|
863
|
+
className,
|
|
864
|
+
render,
|
|
865
|
+
...props
|
|
866
|
+
}: PanelHeaderSubtitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
867
|
+
type PanelHeaderActionsProps = useRender.ComponentProps<"div">;
|
|
868
|
+
declare function PanelHeaderActions({
|
|
869
|
+
className,
|
|
870
|
+
render,
|
|
871
|
+
...props
|
|
872
|
+
}: PanelHeaderActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
873
|
+
//#endregion
|
|
874
|
+
//#region src/components/quoted-message-card/quoted-message-card.d.ts
|
|
875
|
+
type QuotedMessageCardProps = PreviewShellProps;
|
|
876
|
+
declare function QuotedMessageCard({
|
|
877
|
+
className,
|
|
878
|
+
"data-testid": testId,
|
|
879
|
+
...props
|
|
880
|
+
}: QuotedMessageCardProps): import("react").JSX.Element;
|
|
881
|
+
type QuotedMessageCardBodyProps = useRender.ComponentProps<"div">;
|
|
882
|
+
declare function QuotedMessageCardBody({
|
|
883
|
+
className,
|
|
884
|
+
render,
|
|
885
|
+
...props
|
|
886
|
+
}: QuotedMessageCardBodyProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
887
|
+
type QuotedMessageCardUnavailableProps = useRender.ComponentProps<"div">;
|
|
888
|
+
declare function QuotedMessageCardUnavailable({
|
|
889
|
+
className,
|
|
890
|
+
render,
|
|
891
|
+
...props
|
|
892
|
+
}: QuotedMessageCardUnavailableProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
893
|
+
type QuotedMessageCardHeaderProps = useRender.ComponentProps<"div">;
|
|
894
|
+
declare function QuotedMessageCardHeader({
|
|
895
|
+
className,
|
|
896
|
+
render,
|
|
897
|
+
...props
|
|
898
|
+
}: QuotedMessageCardHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
899
|
+
type QuotedMessageCardMetaProps = useRender.ComponentProps<"div">;
|
|
900
|
+
declare function QuotedMessageCardMeta({
|
|
901
|
+
className,
|
|
902
|
+
render,
|
|
903
|
+
...props
|
|
904
|
+
}: QuotedMessageCardMetaProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
905
|
+
type QuotedMessageCardChannelProps = useRender.ComponentProps<"span">;
|
|
906
|
+
declare function QuotedMessageCardChannel({
|
|
907
|
+
className,
|
|
908
|
+
render,
|
|
909
|
+
...props
|
|
910
|
+
}: QuotedMessageCardChannelProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
911
|
+
type QuotedMessageCardSeparatorProps = useRender.ComponentProps<"span">;
|
|
912
|
+
declare function QuotedMessageCardSeparator({
|
|
913
|
+
className,
|
|
914
|
+
render,
|
|
915
|
+
...props
|
|
916
|
+
}: QuotedMessageCardSeparatorProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
917
|
+
type QuotedMessageCardAuthorProps = useRender.ComponentProps<"span">;
|
|
918
|
+
declare function QuotedMessageCardAuthor({
|
|
919
|
+
className,
|
|
920
|
+
render,
|
|
921
|
+
...props
|
|
922
|
+
}: QuotedMessageCardAuthorProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
923
|
+
type QuotedMessageCardAuthorNameProps = useRender.ComponentProps<"span">;
|
|
924
|
+
declare function QuotedMessageCardAuthorName({
|
|
925
|
+
className,
|
|
926
|
+
render,
|
|
927
|
+
...props
|
|
928
|
+
}: QuotedMessageCardAuthorNameProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
929
|
+
type QuotedMessageCardAuthorSubtitleProps = useRender.ComponentProps<"span">;
|
|
930
|
+
declare function QuotedMessageCardAuthorSubtitle({
|
|
931
|
+
className,
|
|
932
|
+
render,
|
|
933
|
+
...props
|
|
934
|
+
}: QuotedMessageCardAuthorSubtitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
935
|
+
type QuotedMessageCardThreadProps = useRender.ComponentProps<"span">;
|
|
936
|
+
declare function QuotedMessageCardThread({
|
|
937
|
+
className,
|
|
938
|
+
render,
|
|
939
|
+
children,
|
|
940
|
+
...props
|
|
941
|
+
}: QuotedMessageCardThreadProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
942
|
+
type QuotedMessageCardTagProps = useRender.ComponentProps<"span">;
|
|
943
|
+
declare function QuotedMessageCardTag({
|
|
944
|
+
className,
|
|
945
|
+
render,
|
|
946
|
+
...props
|
|
947
|
+
}: QuotedMessageCardTagProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
948
|
+
type QuotedMessageCardTimestampProps = useRender.ComponentProps<"span">;
|
|
949
|
+
declare function QuotedMessageCardTimestamp({
|
|
950
|
+
className,
|
|
951
|
+
render,
|
|
952
|
+
...props
|
|
953
|
+
}: QuotedMessageCardTimestampProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
954
|
+
type QuotedMessageCardContentWrapProps = useRender.ComponentProps<"div">;
|
|
955
|
+
declare function QuotedMessageCardContentWrap({
|
|
956
|
+
className,
|
|
957
|
+
render,
|
|
958
|
+
...props
|
|
959
|
+
}: QuotedMessageCardContentWrapProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
960
|
+
type QuotedMessageCardContentProps = useRender.ComponentProps<"div">;
|
|
961
|
+
declare function QuotedMessageCardContent({
|
|
962
|
+
className,
|
|
963
|
+
render,
|
|
964
|
+
...props
|
|
965
|
+
}: QuotedMessageCardContentProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
966
|
+
type QuotedMessageCardAttachmentsProps = useRender.ComponentProps<"div">;
|
|
967
|
+
declare function QuotedMessageCardAttachments({
|
|
968
|
+
className,
|
|
969
|
+
render,
|
|
970
|
+
...props
|
|
971
|
+
}: QuotedMessageCardAttachmentsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
972
|
+
//#endregion
|
|
973
|
+
//#region src/components/conversation-preview-card/conversation-preview-card.d.ts
|
|
974
|
+
type ConversationPreviewCardProps = useRender.ComponentProps<"button"> & {
|
|
975
|
+
testId?: string;
|
|
976
|
+
};
|
|
977
|
+
declare function ConversationPreviewCard({
|
|
978
|
+
onClick,
|
|
979
|
+
className,
|
|
980
|
+
render,
|
|
981
|
+
testId,
|
|
982
|
+
...props
|
|
983
|
+
}: ConversationPreviewCardProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
984
|
+
type ConversationPreviewCardContentProps = useRender.ComponentProps<"div">;
|
|
985
|
+
declare function ConversationPreviewCardContent({
|
|
986
|
+
className,
|
|
987
|
+
render,
|
|
988
|
+
...props
|
|
989
|
+
}: ConversationPreviewCardContentProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
990
|
+
type ConversationPreviewCardMetaProps = useRender.ComponentProps<"div">;
|
|
991
|
+
declare function ConversationPreviewCardMeta({
|
|
992
|
+
className,
|
|
993
|
+
render,
|
|
994
|
+
...props
|
|
995
|
+
}: ConversationPreviewCardMetaProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
996
|
+
type ConversationPreviewCardChannelProps = useRender.ComponentProps<"span">;
|
|
997
|
+
declare function ConversationPreviewCardChannel({
|
|
998
|
+
className,
|
|
999
|
+
render,
|
|
1000
|
+
...props
|
|
1001
|
+
}: ConversationPreviewCardChannelProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1002
|
+
type ConversationPreviewCardAuthorProps = useRender.ComponentProps<"span">;
|
|
1003
|
+
declare function ConversationPreviewCardAuthor({
|
|
1004
|
+
className,
|
|
1005
|
+
render,
|
|
1006
|
+
...props
|
|
1007
|
+
}: ConversationPreviewCardAuthorProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1008
|
+
type ConversationPreviewCardAuthorNameProps = useRender.ComponentProps<"span">;
|
|
1009
|
+
declare function ConversationPreviewCardAuthorName({
|
|
1010
|
+
className,
|
|
1011
|
+
render,
|
|
1012
|
+
...props
|
|
1013
|
+
}: ConversationPreviewCardAuthorNameProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1014
|
+
type ConversationPreviewCardAuthorSubtitleProps = useRender.ComponentProps<"span">;
|
|
1015
|
+
declare function ConversationPreviewCardAuthorSubtitle({
|
|
1016
|
+
className,
|
|
1017
|
+
render,
|
|
1018
|
+
...props
|
|
1019
|
+
}: ConversationPreviewCardAuthorSubtitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1020
|
+
type ConversationPreviewCardTimestampProps = useRender.ComponentProps<"span">;
|
|
1021
|
+
declare function ConversationPreviewCardTimestamp({
|
|
1022
|
+
className,
|
|
1023
|
+
render,
|
|
1024
|
+
...props
|
|
1025
|
+
}: ConversationPreviewCardTimestampProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1026
|
+
type ConversationPreviewCardPreviewProps = useRender.ComponentProps<"p">;
|
|
1027
|
+
declare function ConversationPreviewCardPreview({
|
|
1028
|
+
className,
|
|
1029
|
+
render,
|
|
1030
|
+
...props
|
|
1031
|
+
}: ConversationPreviewCardPreviewProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1032
|
+
type ConversationPreviewCardPreviewLeadingProps = useRender.ComponentProps<"span">;
|
|
1033
|
+
declare function ConversationPreviewCardPreviewLeading({
|
|
1034
|
+
className,
|
|
1035
|
+
render,
|
|
1036
|
+
...props
|
|
1037
|
+
}: ConversationPreviewCardPreviewLeadingProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1038
|
+
type ConversationPreviewCardPreviewAuthorProps = useRender.ComponentProps<"span">;
|
|
1039
|
+
declare function ConversationPreviewCardPreviewAuthor({
|
|
1040
|
+
className,
|
|
1041
|
+
render,
|
|
1042
|
+
...props
|
|
1043
|
+
}: ConversationPreviewCardPreviewAuthorProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1044
|
+
type ConversationPreviewCardSecondaryPreviewProps = useRender.ComponentProps<"p">;
|
|
1045
|
+
declare function ConversationPreviewCardSecondaryPreview({
|
|
1046
|
+
className,
|
|
1047
|
+
render,
|
|
1048
|
+
...props
|
|
1049
|
+
}: ConversationPreviewCardSecondaryPreviewProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1050
|
+
type ConversationPreviewCardFooterProps = useRender.ComponentProps<"div">;
|
|
1051
|
+
declare function ConversationPreviewCardFooter({
|
|
1052
|
+
className,
|
|
1053
|
+
render,
|
|
1054
|
+
...props
|
|
1055
|
+
}: ConversationPreviewCardFooterProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1056
|
+
type ConversationPreviewCardActionProps = useRender.ComponentProps<"div">;
|
|
1057
|
+
declare function ConversationPreviewCardAction({
|
|
1058
|
+
className,
|
|
1059
|
+
render,
|
|
1060
|
+
...props
|
|
1061
|
+
}: ConversationPreviewCardActionProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1062
|
+
//#endregion
|
|
1063
|
+
//#region src/components/section-label/section-label.d.ts
|
|
1064
|
+
type SectionLabelProps = useRender.ComponentProps<"span">;
|
|
1065
|
+
declare function SectionLabel({
|
|
1066
|
+
className,
|
|
1067
|
+
render,
|
|
1068
|
+
...props
|
|
1069
|
+
}: SectionLabelProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1070
|
+
//#endregion
|
|
1071
|
+
//#region src/components/section-header/section-header.d.ts
|
|
1072
|
+
type SectionHeaderProps = useRender.ComponentProps<"div">;
|
|
1073
|
+
declare function SectionHeader({
|
|
1074
|
+
className,
|
|
1075
|
+
render,
|
|
1076
|
+
...props
|
|
1077
|
+
}: SectionHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1078
|
+
type SectionHeaderContentProps = useRender.ComponentProps<"div">;
|
|
1079
|
+
declare function SectionHeaderContent({
|
|
1080
|
+
className,
|
|
1081
|
+
render,
|
|
1082
|
+
...props
|
|
1083
|
+
}: SectionHeaderContentProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1084
|
+
type SectionHeaderIconProps = useRender.ComponentProps<"span">;
|
|
1085
|
+
declare function SectionHeaderIcon({
|
|
1086
|
+
className,
|
|
1087
|
+
render,
|
|
1088
|
+
...props
|
|
1089
|
+
}: SectionHeaderIconProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1090
|
+
type SectionHeaderTitleProps = SectionLabelProps;
|
|
1091
|
+
declare function SectionHeaderTitle({
|
|
1092
|
+
render,
|
|
1093
|
+
...props
|
|
1094
|
+
}: SectionHeaderTitleProps): import("react").JSX.Element;
|
|
1095
|
+
type SectionHeaderCountProps = useRender.ComponentProps<"span">;
|
|
1096
|
+
declare function SectionHeaderCount({
|
|
1097
|
+
className,
|
|
1098
|
+
render,
|
|
1099
|
+
...props
|
|
1100
|
+
}: SectionHeaderCountProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1101
|
+
type SectionHeaderActionsProps = useRender.ComponentProps<"div">;
|
|
1102
|
+
declare function SectionHeaderActions({
|
|
1103
|
+
className,
|
|
1104
|
+
render,
|
|
1105
|
+
...props
|
|
1106
|
+
}: SectionHeaderActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1107
|
+
//#endregion
|
|
1108
|
+
//#region src/components/description-list/description-list.d.ts
|
|
1109
|
+
type DescriptionListProps = useRender.ComponentProps<"dl">;
|
|
1110
|
+
declare function DescriptionList({
|
|
1111
|
+
className,
|
|
1112
|
+
render,
|
|
1113
|
+
...props
|
|
1114
|
+
}: DescriptionListProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1115
|
+
type DescriptionItemProps = useRender.ComponentProps<"div">;
|
|
1116
|
+
declare function DescriptionItem({
|
|
1117
|
+
className,
|
|
1118
|
+
render,
|
|
1119
|
+
...props
|
|
1120
|
+
}: DescriptionItemProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1121
|
+
type DescriptionTermProps = useRender.ComponentProps<"dt">;
|
|
1122
|
+
declare function DescriptionTerm({
|
|
1123
|
+
className,
|
|
1124
|
+
render,
|
|
1125
|
+
...props
|
|
1126
|
+
}: DescriptionTermProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1127
|
+
type DescriptionDetailsProps = useRender.ComponentProps<"dd">;
|
|
1128
|
+
declare function DescriptionDetails({
|
|
1129
|
+
className,
|
|
1130
|
+
render,
|
|
1131
|
+
...props
|
|
1132
|
+
}: DescriptionDetailsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1133
|
+
type DescriptionActionProps = useRender.ComponentProps<"span">;
|
|
1134
|
+
declare function DescriptionAction({
|
|
1135
|
+
className,
|
|
1136
|
+
render,
|
|
1137
|
+
...props
|
|
1138
|
+
}: DescriptionActionProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1139
|
+
//#endregion
|
|
1140
|
+
//#region src/components/lightbox/lightbox.d.ts
|
|
1141
|
+
type LightboxProps<Payload = unknown> = Omit<Dialog.Root.Props<Payload>, "actionsRef" | "children" | "handle"> & {
|
|
1142
|
+
children?: ReactNode;
|
|
1143
|
+
closeOnModW?: boolean;
|
|
1144
|
+
};
|
|
1145
|
+
declare function Lightbox<Payload = unknown>({
|
|
1146
|
+
closeOnModW,
|
|
1147
|
+
defaultOpen,
|
|
1148
|
+
modal,
|
|
1149
|
+
onOpenChange,
|
|
1150
|
+
open,
|
|
1151
|
+
children,
|
|
1152
|
+
...props
|
|
1153
|
+
}: LightboxProps<Payload>): import("react").JSX.Element;
|
|
1154
|
+
type LightboxTriggerProps = Dialog.Trigger.Props;
|
|
1155
|
+
declare function LightboxTrigger(props: LightboxTriggerProps): import("react").JSX.Element;
|
|
1156
|
+
type LightboxPortalProps = Dialog.Portal.Props;
|
|
1157
|
+
declare function LightboxPortal(props: LightboxPortalProps): import("react").JSX.Element;
|
|
1158
|
+
type LightboxContentProps = StyledProps<Dialog.Popup.Props>;
|
|
1159
|
+
declare function LightboxContent({
|
|
1160
|
+
className,
|
|
1161
|
+
initialFocus,
|
|
1162
|
+
finalFocus,
|
|
1163
|
+
...props
|
|
1164
|
+
}: LightboxContentProps): import("react").JSX.Element;
|
|
1165
|
+
type LightboxHeaderProps = useRender.ComponentProps<"div">;
|
|
1166
|
+
declare function LightboxHeader({
|
|
1167
|
+
render,
|
|
1168
|
+
className,
|
|
1169
|
+
...props
|
|
1170
|
+
}: LightboxHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1171
|
+
type LightboxTitleProps = useRender.ComponentProps<"div">;
|
|
1172
|
+
declare function LightboxTitle({
|
|
1173
|
+
render,
|
|
1174
|
+
className,
|
|
1175
|
+
...props
|
|
1176
|
+
}: LightboxTitleProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1177
|
+
type LightboxActionsProps = useRender.ComponentProps<"div">;
|
|
1178
|
+
declare function LightboxActions({
|
|
1179
|
+
render,
|
|
1180
|
+
className,
|
|
1181
|
+
...props
|
|
1182
|
+
}: LightboxActionsProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1183
|
+
type LightboxStageProps = useRender.ComponentProps<"div">;
|
|
1184
|
+
declare function LightboxStage({
|
|
1185
|
+
render,
|
|
1186
|
+
className,
|
|
1187
|
+
...props
|
|
1188
|
+
}: LightboxStageProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1189
|
+
type LightboxMediaProps = useRender.ComponentProps<"div">;
|
|
1190
|
+
declare function LightboxMedia({
|
|
1191
|
+
render,
|
|
1192
|
+
className,
|
|
1193
|
+
...props
|
|
1194
|
+
}: LightboxMediaProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1195
|
+
type LightboxCloseProps = StyledProps<Dialog.Close.Props>;
|
|
1196
|
+
declare function LightboxClose({
|
|
1197
|
+
className,
|
|
1198
|
+
...props
|
|
1199
|
+
}: LightboxCloseProps): import("react").JSX.Element;
|
|
1200
|
+
//#endregion
|
|
1201
|
+
//#region src/components/bottom-sheet/bottom-sheet.d.ts
|
|
1202
|
+
type BottomSheetProps = Dialog.Root.Props;
|
|
1203
|
+
declare function BottomSheet(props: BottomSheetProps): import("react").JSX.Element;
|
|
1204
|
+
type BottomSheetTriggerProps = Dialog.Trigger.Props;
|
|
1205
|
+
declare function BottomSheetTrigger(props: BottomSheetTriggerProps): import("react").JSX.Element;
|
|
1206
|
+
type BottomSheetPortalProps = Dialog.Portal.Props;
|
|
1207
|
+
declare function BottomSheetPortal(props: BottomSheetPortalProps): import("react").JSX.Element;
|
|
1208
|
+
type BottomSheetContentProps = StyledProps<Dialog.Popup.Props>;
|
|
1209
|
+
declare function BottomSheetContent({
|
|
1210
|
+
className,
|
|
1211
|
+
...props
|
|
1212
|
+
}: BottomSheetContentProps): import("react").JSX.Element;
|
|
1213
|
+
type BottomSheetCloseProps = Dialog.Close.Props;
|
|
1214
|
+
declare function BottomSheetClose(props: BottomSheetCloseProps): import("react").JSX.Element;
|
|
1215
|
+
type BottomSheetHeaderProps = useRender.ComponentProps<"div">;
|
|
1216
|
+
declare function BottomSheetHeader({
|
|
1217
|
+
className,
|
|
1218
|
+
render,
|
|
1219
|
+
...props
|
|
1220
|
+
}: BottomSheetHeaderProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1221
|
+
type BottomSheetFooterProps = useRender.ComponentProps<"div">;
|
|
1222
|
+
declare function BottomSheetFooter({
|
|
1223
|
+
className,
|
|
1224
|
+
render,
|
|
1225
|
+
...props
|
|
1226
|
+
}: BottomSheetFooterProps): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;
|
|
1227
|
+
type BottomSheetTitleProps = StyledProps<Dialog.Title.Props>;
|
|
1228
|
+
declare function BottomSheetTitle({
|
|
1229
|
+
className,
|
|
1230
|
+
...props
|
|
1231
|
+
}: BottomSheetTitleProps): import("react").JSX.Element;
|
|
1232
|
+
type BottomSheetDescriptionProps = StyledProps<Dialog.Description.Props>;
|
|
1233
|
+
declare function BottomSheetDescription({
|
|
1234
|
+
className,
|
|
1235
|
+
...props
|
|
1236
|
+
}: BottomSheetDescriptionProps): import("react").JSX.Element;
|
|
1237
|
+
//#endregion
|
|
1238
|
+
export { BottomSheet, BottomSheetClose, type BottomSheetCloseProps, BottomSheetContent, type BottomSheetContentProps, BottomSheetDescription, type BottomSheetDescriptionProps, BottomSheetFooter, type BottomSheetFooterProps, BottomSheetHeader, type BottomSheetHeaderProps, BottomSheetPortal, type BottomSheetPortalProps, type BottomSheetProps, BottomSheetTitle, type BottomSheetTitleProps, BottomSheetTrigger, type BottomSheetTriggerProps, ConversationPreviewCard, ConversationPreviewCardAction, type ConversationPreviewCardActionProps, ConversationPreviewCardAuthor, ConversationPreviewCardAuthorName, type ConversationPreviewCardAuthorNameProps, type ConversationPreviewCardAuthorProps, ConversationPreviewCardAuthorSubtitle, type ConversationPreviewCardAuthorSubtitleProps, ConversationPreviewCardChannel, type ConversationPreviewCardChannelProps, ConversationPreviewCardContent, type ConversationPreviewCardContentProps, ConversationPreviewCardFooter, type ConversationPreviewCardFooterProps, ConversationPreviewCardMeta, type ConversationPreviewCardMetaProps, ConversationPreviewCardPreview, ConversationPreviewCardPreviewAuthor, type ConversationPreviewCardPreviewAuthorProps, ConversationPreviewCardPreviewLeading, type ConversationPreviewCardPreviewLeadingProps, type ConversationPreviewCardPreviewProps, type ConversationPreviewCardProps, ConversationPreviewCardSecondaryPreview, type ConversationPreviewCardSecondaryPreviewProps, ConversationPreviewCardTimestamp, type ConversationPreviewCardTimestampProps, DescriptionAction, type DescriptionActionProps, DescriptionDetails, type DescriptionDetailsProps, DescriptionItem, type DescriptionItemProps, DescriptionList, type DescriptionListProps, DescriptionTerm, type DescriptionTermProps, Field, FieldControl, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldValidity, type FieldValidityProps, Lightbox, LightboxActions, type LightboxActionsProps, LightboxClose, type LightboxCloseProps, LightboxContent, type LightboxContentProps, LightboxHeader, type LightboxHeaderProps, LightboxMedia, type LightboxMediaProps, LightboxPortal, type LightboxPortalProps, type LightboxProps, LightboxStage, type LightboxStageProps, LightboxTitle, type LightboxTitleProps, LightboxTrigger, type LightboxTriggerProps, ListItem, ListItemActionGroup, type ListItemActionGroupProps, ListItemBody, type ListItemBodyProps, ListItemDescription, type ListItemDescriptionProps, ListItemIcon, type ListItemIconProps, ListItemMeta, type ListItemMetaProps, type ListItemProps, ListItemRow, type ListItemRowProps, ListItemTitle, type ListItemTitleProps, MediaListItem, MediaListItemActionGroup, type MediaListItemActionGroupProps, MediaListItemAside, type MediaListItemAsideProps, MediaListItemBody, type MediaListItemBodyProps, type MediaListItemProps, MediaListItemSubtitle, type MediaListItemSubtitleProps, MediaListItemText, type MediaListItemTextProps, MediaListItemTitle, type MediaListItemTitleProps, MediaListItemVisual, type MediaListItemVisualProps, PanelHeader, PanelHeaderActions, type PanelHeaderActionsProps, PanelHeaderContent, type PanelHeaderContentProps, PanelHeaderIcon, type PanelHeaderIconProps, type PanelHeaderProps, PanelHeaderSubtitle, type PanelHeaderSubtitleProps, PanelHeaderSuffix, type PanelHeaderSuffixProps, PanelHeaderTitle, type PanelHeaderTitleProps, PanelHeaderTitleRow, type PanelHeaderTitleRowProps, PanelHeaderVisual, type PanelHeaderVisualProps, PreviewShell, type PreviewShellProps, QuotedMessageCard, QuotedMessageCardAttachments, type QuotedMessageCardAttachmentsProps, QuotedMessageCardAuthor, QuotedMessageCardAuthorName, type QuotedMessageCardAuthorNameProps, type QuotedMessageCardAuthorProps, QuotedMessageCardAuthorSubtitle, type QuotedMessageCardAuthorSubtitleProps, QuotedMessageCardBody, type QuotedMessageCardBodyProps, QuotedMessageCardChannel, type QuotedMessageCardChannelProps, QuotedMessageCardContent, type QuotedMessageCardContentProps, QuotedMessageCardContentWrap, type QuotedMessageCardContentWrapProps, QuotedMessageCardHeader, type QuotedMessageCardHeaderProps, QuotedMessageCardMeta, type QuotedMessageCardMetaProps, type QuotedMessageCardProps, QuotedMessageCardSeparator, type QuotedMessageCardSeparatorProps, QuotedMessageCardTag, type QuotedMessageCardTagProps, QuotedMessageCardThread, type QuotedMessageCardThreadProps, QuotedMessageCardTimestamp, type QuotedMessageCardTimestampProps, QuotedMessageCardUnavailable, type QuotedMessageCardUnavailableProps, SectionHeader, SectionHeaderActions, type SectionHeaderActionsProps, SectionHeaderContent, type SectionHeaderContentProps, SectionHeaderCount, type SectionHeaderCountProps, SectionHeaderIcon, type SectionHeaderIconProps, type SectionHeaderProps, SectionHeaderTitle, type SectionHeaderTitleProps, SectionLabel, type SectionLabelProps, Text, TextHeading, type TextHeadingProps, TextMono, type TextMonoProps, TextSans, type TextSansProps, ToggleGroup, ToggleGroupCount, type ToggleGroupCountProps, ToggleGroupItem, type ToggleGroupItemProps, ToggleGroupLabel, type ToggleGroupLabelProps, type ToggleGroupProps };
|