raft-ui 0.0.5 → 0.0.6

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.
Files changed (110) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/button-CJqMhTPQ.mjs +621 -0
  3. package/dist/index-CpGciYPW.d.mts +267 -0
  4. package/dist/index.d.mts +11 -253
  5. package/dist/index.mjs +32 -587
  6. package/dist/wip.d.mts +133 -15
  7. package/dist/wip.mjs +289 -16
  8. package/package.json +5 -7
  9. package/src/components/alert-dialog/alert-dialog.tsx +215 -0
  10. package/src/components/alert-dialog/index.ts +30 -0
  11. package/src/components/avatar/avatar.tsx +3 -3
  12. package/src/components/avatar/index.ts +2 -2
  13. package/src/components/badge/badge.tsx +2 -2
  14. package/src/components/badge/index.ts +2 -2
  15. package/src/components/banner/banner.tsx +2 -2
  16. package/src/components/banner/index.ts +2 -2
  17. package/src/components/bottom-sheet/bottom-sheet.tsx +3 -3
  18. package/src/components/bottom-sheet/index.ts +2 -2
  19. package/src/components/button/button.tsx +7 -5
  20. package/src/components/button/index.ts +2 -2
  21. package/src/components/checkbox/checkbox-indicator.tsx +2 -2
  22. package/src/components/checkbox/checkbox.tsx +4 -4
  23. package/src/components/checkbox/index.ts +2 -2
  24. package/src/components/combobox/combobox.tsx +4 -4
  25. package/src/components/combobox/index.ts +1 -1
  26. package/src/components/context-menu/context-menu.tsx +4 -4
  27. package/src/components/context-menu/index.ts +2 -2
  28. package/src/components/conversation-preview-card/conversation-preview-card.tsx +2 -2
  29. package/src/components/conversation-preview-card/index.ts +2 -2
  30. package/src/components/description-list/description-list.tsx +2 -2
  31. package/src/components/description-list/index.ts +2 -2
  32. package/src/components/dialog/dialog.tsx +152 -0
  33. package/src/components/dialog/index.ts +26 -0
  34. package/src/components/dropdown-menu/dropdown-menu.tsx +5 -5
  35. package/src/components/dropdown-menu/index.ts +2 -2
  36. package/src/components/empty-state/empty-state.tsx +2 -2
  37. package/src/components/empty-state/index.ts +2 -2
  38. package/src/components/field/field.tsx +4 -4
  39. package/src/components/field/index.ts +2 -2
  40. package/src/components/inline-code/index.ts +2 -2
  41. package/src/components/inline-code/inline-code.tsx +2 -2
  42. package/src/components/input/index.ts +2 -2
  43. package/src/components/input/input.tsx +4 -4
  44. package/src/components/input-group/index.ts +2 -2
  45. package/src/components/input-group/input-group.tsx +5 -5
  46. package/src/components/kbd/index.ts +2 -2
  47. package/src/components/kbd/kbd.tsx +2 -2
  48. package/src/components/label/index.ts +2 -7
  49. package/src/components/label/label.tsx +2 -2
  50. package/src/components/lightbox/index.ts +2 -2
  51. package/src/components/lightbox/lightbox.tsx +3 -3
  52. package/src/components/list-item/index.ts +2 -2
  53. package/src/components/list-item/list-item.tsx +2 -2
  54. package/src/components/media-list-item/index.ts +2 -2
  55. package/src/components/media-list-item/media-list-item.tsx +4 -4
  56. package/src/components/notification-center/index.ts +2 -2
  57. package/src/components/notification-center/notification-center.tsx +5 -5
  58. package/src/components/panel-header/index.ts +2 -2
  59. package/src/components/panel-header/panel-header.tsx +2 -2
  60. package/src/components/popover/index.ts +2 -2
  61. package/src/components/popover/popover.tsx +3 -3
  62. package/src/components/preview-shell/index.ts +2 -2
  63. package/src/components/preview-shell/preview-shell.tsx +2 -2
  64. package/src/components/quoted-message-card/index.ts +2 -2
  65. package/src/components/quoted-message-card/quoted-message-card.tsx +3 -3
  66. package/src/components/radio-group/index.ts +2 -6
  67. package/src/components/radio-group/radio-group.tsx +4 -4
  68. package/src/components/section-header/index.ts +2 -2
  69. package/src/components/section-header/section-header.tsx +2 -2
  70. package/src/components/section-label/index.ts +2 -2
  71. package/src/components/section-label/section-label.tsx +2 -2
  72. package/src/components/segmented-control/index.ts +2 -2
  73. package/src/components/segmented-control/segmented-control.tsx +3 -3
  74. package/src/components/select/index.ts +2 -2
  75. package/src/components/select/select.tsx +4 -4
  76. package/src/components/separator/index.ts +2 -0
  77. package/src/components/separator/separator.tsx +40 -0
  78. package/src/components/spinner/index.ts +2 -2
  79. package/src/components/spinner/spinner.tsx +3 -3
  80. package/src/components/status/index.ts +2 -2
  81. package/src/components/status/status.tsx +2 -2
  82. package/src/components/tabs/index.ts +2 -2
  83. package/src/components/tabs/tabs.tsx +3 -3
  84. package/src/components/text/index.ts +2 -2
  85. package/src/components/text/text.tsx +1 -1
  86. package/src/components/textarea/index.ts +2 -2
  87. package/src/components/textarea/textarea.tsx +3 -3
  88. package/src/components/toggle-group/index.ts +2 -7
  89. package/src/components/toggle-group/toggle-group.tsx +3 -3
  90. package/src/components/tooltip/index.ts +2 -8
  91. package/src/components/tooltip/tooltip.tsx +3 -3
  92. package/src/index.ts +60 -57
  93. package/src/legacy/AvatarListRow.tsx +1 -1
  94. package/src/legacy/Checkbox.tsx +1 -1
  95. package/src/legacy/ConversationPreviewCard.tsx +1 -1
  96. package/src/legacy/DismissBackdrop.tsx +1 -1
  97. package/src/legacy/ExperimentalBadge.tsx +1 -1
  98. package/src/legacy/NotificationCenter.tsx +2 -2
  99. package/src/legacy/PanelHeader.tsx +1 -1
  100. package/src/legacy/QuotedMessageCard.tsx +1 -1
  101. package/src/legacy/SectionHeader.tsx +1 -1
  102. package/src/legacy/Spinner.tsx +1 -1
  103. package/src/legacy/SurfaceListItem.tsx +1 -1
  104. package/src/legacy/selection-popover.tsx +2 -2
  105. package/src/legacy/server-switcher-menu.tsx +2 -2
  106. package/src/lib/theme/theme-provider.tsx +1 -1
  107. package/src/lib/theme/use-theme.ts +1 -1
  108. package/src/wip.ts +82 -24
  109. package/dist/styled-props-B3SNekJg.d.mts +0 -16
  110. package/dist/use-theme-Y_h1DKll.mjs +0 -34
@@ -0,0 +1,267 @@
1
+ import { Button } from "@base-ui/react/button";
2
+ import { VariantProps } from "tailwind-variants/lite";
3
+
4
+ //#region src/lib/styled-props.d.ts
5
+ /**
6
+ * Base UI components type `className` as `string | ((state) => string)`, but our
7
+ * tv() recipes only accept a plain string. `StyledProps` narrows a Base UI
8
+ * component's props to a string `className` so they can flow into a recipe.
9
+ *
10
+ * The state-callback form is intentionally dropped: our components express every
11
+ * state through `data-*` variants in the recipe, so a caller never needs it.
12
+ */
13
+ type StyledProps<P> = Omit<P, "className"> & {
14
+ className?: string;
15
+ };
16
+ //#endregion
17
+ //#region src/components/button/button.d.ts
18
+ declare const buttonVariants: import("tailwind-variants/lite").TVReturnType<{
19
+ theme: {
20
+ brutal: {
21
+ root: string[];
22
+ };
23
+ elegant: {
24
+ root: string[];
25
+ };
26
+ };
27
+ variant: {
28
+ primary: {
29
+ root: string[];
30
+ };
31
+ default: {
32
+ root: string[];
33
+ };
34
+ information: {
35
+ root: string[];
36
+ };
37
+ muted: {
38
+ root: string[];
39
+ };
40
+ accent: {
41
+ root: string[];
42
+ };
43
+ warning: {
44
+ root: string[];
45
+ };
46
+ outline: {
47
+ root: string[];
48
+ };
49
+ ghost: {
50
+ root: string[];
51
+ };
52
+ link: {
53
+ root: string[];
54
+ };
55
+ "danger-secondary": {
56
+ root: string[];
57
+ };
58
+ danger: {
59
+ root: string[];
60
+ };
61
+ "danger-outline": {
62
+ root: string[];
63
+ };
64
+ };
65
+ size: {
66
+ xs: {
67
+ root: string[];
68
+ };
69
+ sm: {
70
+ root: string[];
71
+ };
72
+ md: {
73
+ root: string[];
74
+ };
75
+ lg: {
76
+ root: string[];
77
+ };
78
+ "icon-xs": {
79
+ root: string[];
80
+ };
81
+ "icon-sm": {
82
+ root: string[];
83
+ };
84
+ "icon-md": {
85
+ root: string[];
86
+ };
87
+ "icon-lg": {
88
+ root: string[];
89
+ };
90
+ };
91
+ }, {
92
+ root: string[];
93
+ content: string;
94
+ loadingIndicator: string;
95
+ }, undefined, {
96
+ theme: {
97
+ brutal: {
98
+ root: string[];
99
+ };
100
+ elegant: {
101
+ root: string[];
102
+ };
103
+ };
104
+ variant: {
105
+ primary: {
106
+ root: string[];
107
+ };
108
+ default: {
109
+ root: string[];
110
+ };
111
+ information: {
112
+ root: string[];
113
+ };
114
+ muted: {
115
+ root: string[];
116
+ };
117
+ accent: {
118
+ root: string[];
119
+ };
120
+ warning: {
121
+ root: string[];
122
+ };
123
+ outline: {
124
+ root: string[];
125
+ };
126
+ ghost: {
127
+ root: string[];
128
+ };
129
+ link: {
130
+ root: string[];
131
+ };
132
+ "danger-secondary": {
133
+ root: string[];
134
+ };
135
+ danger: {
136
+ root: string[];
137
+ };
138
+ "danger-outline": {
139
+ root: string[];
140
+ };
141
+ };
142
+ size: {
143
+ xs: {
144
+ root: string[];
145
+ };
146
+ sm: {
147
+ root: string[];
148
+ };
149
+ md: {
150
+ root: string[];
151
+ };
152
+ lg: {
153
+ root: string[];
154
+ };
155
+ "icon-xs": {
156
+ root: string[];
157
+ };
158
+ "icon-sm": {
159
+ root: string[];
160
+ };
161
+ "icon-md": {
162
+ root: string[];
163
+ };
164
+ "icon-lg": {
165
+ root: string[];
166
+ };
167
+ };
168
+ }, {
169
+ root: string[];
170
+ content: string;
171
+ loadingIndicator: string;
172
+ }, import("tailwind-variants/lite").TVReturnType<{
173
+ theme: {
174
+ brutal: {
175
+ root: string[];
176
+ };
177
+ elegant: {
178
+ root: string[];
179
+ };
180
+ };
181
+ variant: {
182
+ primary: {
183
+ root: string[];
184
+ };
185
+ default: {
186
+ root: string[];
187
+ };
188
+ information: {
189
+ root: string[];
190
+ };
191
+ muted: {
192
+ root: string[];
193
+ };
194
+ accent: {
195
+ root: string[];
196
+ };
197
+ warning: {
198
+ root: string[];
199
+ };
200
+ outline: {
201
+ root: string[];
202
+ };
203
+ ghost: {
204
+ root: string[];
205
+ };
206
+ link: {
207
+ root: string[];
208
+ };
209
+ "danger-secondary": {
210
+ root: string[];
211
+ };
212
+ danger: {
213
+ root: string[];
214
+ };
215
+ "danger-outline": {
216
+ root: string[];
217
+ };
218
+ };
219
+ size: {
220
+ xs: {
221
+ root: string[];
222
+ };
223
+ sm: {
224
+ root: string[];
225
+ };
226
+ md: {
227
+ root: string[];
228
+ };
229
+ lg: {
230
+ root: string[];
231
+ };
232
+ "icon-xs": {
233
+ root: string[];
234
+ };
235
+ "icon-sm": {
236
+ root: string[];
237
+ };
238
+ "icon-md": {
239
+ root: string[];
240
+ };
241
+ "icon-lg": {
242
+ root: string[];
243
+ };
244
+ };
245
+ }, {
246
+ root: string[];
247
+ content: string;
248
+ loadingIndicator: string;
249
+ }, undefined, unknown, unknown, undefined>>;
250
+ type ButtonProps = StyledProps<Button.Props> & Omit<VariantProps<typeof buttonVariants>, "theme"> & {
251
+ loading?: boolean;
252
+ loadingLabel?: string;
253
+ };
254
+ declare function Button$1({
255
+ variant,
256
+ size,
257
+ loading,
258
+ loadingLabel,
259
+ disabled,
260
+ className,
261
+ children,
262
+ render,
263
+ nativeButton,
264
+ ...props
265
+ }: ButtonProps): import("react").JSX.Element;
266
+ //#endregion
267
+ export { VariantProps as a, StyledProps as i, ButtonProps as n, buttonVariants as r, Button$1 as t };
package/dist/index.d.mts CHANGED
@@ -1,6 +1,5 @@
1
- import { n as VariantProps, t as StyledProps } from "./styled-props-B3SNekJg.mjs";
1
+ import { a as VariantProps, i as StyledProps, n as ButtonProps, r as buttonVariants, t as Button } from "./index-CpGciYPW.mjs";
2
2
  import { cn } from "./cn.mjs";
3
- import { Button as Button$1 } from "@base-ui/react/button";
4
3
  import { ComponentPropsWithRef, ReactNode } from "react";
5
4
  import { useRender } from "@base-ui/react/use-render";
6
5
  import { Checkbox as Checkbox$1 } from "@base-ui/react/checkbox";
@@ -15,257 +14,8 @@ import { Select as Select$1 } from "@base-ui/react/select";
15
14
  import { Radio } from "@base-ui/react/radio";
16
15
  import { RadioGroup as RadioGroup$1 } from "@base-ui/react/radio-group";
17
16
  import { Tabs as Tabs$1 } from "@base-ui/react/tabs";
17
+ import { Separator as Separator$1 } from "@base-ui/react/separator";
18
18
 
19
- //#region src/components/button/button.d.ts
20
- declare const buttonVariants: import("tailwind-variants/lite").TVReturnType<{
21
- theme: {
22
- brutal: {
23
- root: string[];
24
- };
25
- elegant: {
26
- root: string[];
27
- };
28
- };
29
- variant: {
30
- primary: {
31
- root: string[];
32
- };
33
- default: {
34
- root: string[];
35
- };
36
- information: {
37
- root: string[];
38
- };
39
- muted: {
40
- root: string[];
41
- };
42
- accent: {
43
- root: string[];
44
- };
45
- warning: {
46
- root: string[];
47
- };
48
- outline: {
49
- root: string[];
50
- };
51
- ghost: {
52
- root: string[];
53
- };
54
- link: {
55
- root: string[];
56
- };
57
- "danger-secondary": {
58
- root: string[];
59
- };
60
- danger: {
61
- root: string[];
62
- };
63
- "danger-outline": {
64
- root: string[];
65
- };
66
- };
67
- size: {
68
- xs: {
69
- root: string[];
70
- };
71
- sm: {
72
- root: string[];
73
- };
74
- md: {
75
- root: string[];
76
- };
77
- lg: {
78
- root: string[];
79
- };
80
- "icon-xs": {
81
- root: string[];
82
- };
83
- "icon-sm": {
84
- root: string[];
85
- };
86
- "icon-md": {
87
- root: string[];
88
- };
89
- "icon-lg": {
90
- root: string[];
91
- };
92
- };
93
- }, {
94
- root: string[];
95
- content: string;
96
- loadingIndicator: string;
97
- }, undefined, {
98
- theme: {
99
- brutal: {
100
- root: string[];
101
- };
102
- elegant: {
103
- root: string[];
104
- };
105
- };
106
- variant: {
107
- primary: {
108
- root: string[];
109
- };
110
- default: {
111
- root: string[];
112
- };
113
- information: {
114
- root: string[];
115
- };
116
- muted: {
117
- root: string[];
118
- };
119
- accent: {
120
- root: string[];
121
- };
122
- warning: {
123
- root: string[];
124
- };
125
- outline: {
126
- root: string[];
127
- };
128
- ghost: {
129
- root: string[];
130
- };
131
- link: {
132
- root: string[];
133
- };
134
- "danger-secondary": {
135
- root: string[];
136
- };
137
- danger: {
138
- root: string[];
139
- };
140
- "danger-outline": {
141
- root: string[];
142
- };
143
- };
144
- size: {
145
- xs: {
146
- root: string[];
147
- };
148
- sm: {
149
- root: string[];
150
- };
151
- md: {
152
- root: string[];
153
- };
154
- lg: {
155
- root: string[];
156
- };
157
- "icon-xs": {
158
- root: string[];
159
- };
160
- "icon-sm": {
161
- root: string[];
162
- };
163
- "icon-md": {
164
- root: string[];
165
- };
166
- "icon-lg": {
167
- root: string[];
168
- };
169
- };
170
- }, {
171
- root: string[];
172
- content: string;
173
- loadingIndicator: string;
174
- }, import("tailwind-variants/lite").TVReturnType<{
175
- theme: {
176
- brutal: {
177
- root: string[];
178
- };
179
- elegant: {
180
- root: string[];
181
- };
182
- };
183
- variant: {
184
- primary: {
185
- root: string[];
186
- };
187
- default: {
188
- root: string[];
189
- };
190
- information: {
191
- root: string[];
192
- };
193
- muted: {
194
- root: string[];
195
- };
196
- accent: {
197
- root: string[];
198
- };
199
- warning: {
200
- root: string[];
201
- };
202
- outline: {
203
- root: string[];
204
- };
205
- ghost: {
206
- root: string[];
207
- };
208
- link: {
209
- root: string[];
210
- };
211
- "danger-secondary": {
212
- root: string[];
213
- };
214
- danger: {
215
- root: string[];
216
- };
217
- "danger-outline": {
218
- root: string[];
219
- };
220
- };
221
- size: {
222
- xs: {
223
- root: string[];
224
- };
225
- sm: {
226
- root: string[];
227
- };
228
- md: {
229
- root: string[];
230
- };
231
- lg: {
232
- root: string[];
233
- };
234
- "icon-xs": {
235
- root: string[];
236
- };
237
- "icon-sm": {
238
- root: string[];
239
- };
240
- "icon-md": {
241
- root: string[];
242
- };
243
- "icon-lg": {
244
- root: string[];
245
- };
246
- };
247
- }, {
248
- root: string[];
249
- content: string;
250
- loadingIndicator: string;
251
- }, undefined, unknown, unknown, undefined>>;
252
- type ButtonProps = StyledProps<Button$1.Props> & Omit<VariantProps<typeof buttonVariants>, "theme"> & {
253
- loading?: boolean;
254
- loadingLabel?: string;
255
- };
256
- declare function Button({
257
- variant,
258
- size,
259
- loading,
260
- loadingLabel,
261
- disabled,
262
- className,
263
- children,
264
- render,
265
- nativeButton,
266
- ...props
267
- }: ButtonProps): import("react").JSX.Element;
268
- //#endregion
269
19
  //#region src/components/checkbox/checkbox.d.ts
270
20
  declare const checkbox: import("tailwind-variants/lite").TVReturnType<{
271
21
  theme: {
@@ -3042,6 +2792,14 @@ type OrderedTabItem<T extends string = string> = {
3042
2792
  };
3043
2793
  declare function useOrderedTabs<T extends OrderedTabItem<string>>(items: readonly T[], storedOrder: readonly string[]): T[];
3044
2794
  //#endregion
2795
+ //#region src/components/separator/separator.d.ts
2796
+ type SeparatorProps = StyledProps<Separator$1.Props>;
2797
+ declare function Separator({
2798
+ className,
2799
+ orientation,
2800
+ ...props
2801
+ }: SeparatorProps): import("react").JSX.Element;
2802
+ //#endregion
3045
2803
  //#region src/lib/theme/theme-context.d.ts
3046
2804
  /** Visual style family. Mode (light/dark/system) is a separate axis. */
3047
2805
  type Theme = "brutal" | "elegant";
@@ -3107,4 +2865,4 @@ declare function useThemeFamily(): Theme;
3107
2865
  /** Read and update the application-level RUI theme selection. */
3108
2866
  declare function useTheme(): ThemeState;
3109
2867
  //#endregion
3110
- export { Avatar, AvatarBadge, type AvatarBadgeProps, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarSize, Badge, type BadgeProps, Banner, BannerAction, type BannerActionProps, BannerDescription, type BannerDescriptionProps, type BannerProps, type BannerStatus, BannerTitle, type BannerTitleProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Combobox, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxContent, type ComboboxContentProps, ComboboxControl, type ComboboxControlProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxHeader, type ComboboxHeaderProps, ComboboxInput, ComboboxInputGroup, type ComboboxInputGroupProps, type ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, type ComboboxItemIndicatorProps, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxList, type ComboboxListProps, ComboboxPopup, type ComboboxPopupProps, ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, ComboboxRow, type ComboboxRowProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, ComboboxTriggerIndicator, type ComboboxTriggerIndicatorProps, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, type ContextMenuCheckboxItemIndicatorProps, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, ContextMenuRadioItemIndicator, type ContextMenuRadioItemIndicatorProps, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSubmenu, type ContextMenuSubmenuProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemIndicator, type DropdownMenuCheckboxItemIndicatorProps, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, DropdownMenuItemCount, type DropdownMenuItemCountProps, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPopup, type DropdownMenuPopupProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemIndicator, type DropdownMenuRadioItemIndicatorProps, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSubmenu, type DropdownMenuSubmenuProps, DropdownMenuSubmenuTrigger, type DropdownMenuSubmenuTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyState, EmptyStateActions, type EmptyStateActionsProps, EmptyStateContent, type EmptyStateContentProps, EmptyStateDescription, type EmptyStateDescriptionProps, EmptyStateIcon, type EmptyStateIconProps, type EmptyStateProps, EmptyStateTitle, type EmptyStateTitleProps, Field, FieldControl, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldValidity, type FieldValidityProps, InlineCode, type InlineCodeProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupAddonTextProps, InputGroupInput, type InputGroupInputProps, type InputGroupProps, type InputProps, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, Label, LabelAsterisk, type LabelAsteriskProps, LabelOptional, type LabelOptionalProps, type LabelProps, LabelSub, type LabelSubProps, NotificationCenter, NotificationCenterActionButton, type NotificationCenterActionButtonProps, NotificationCenterCount, type NotificationCenterCountProps, NotificationCenterEmptyState, type NotificationCenterEmptyStateProps, NotificationCenterHeader, type NotificationCenterHeaderProps, NotificationCenterItem, NotificationCenterItemActions, type NotificationCenterItemActionsProps, NotificationCenterItemBody, type NotificationCenterItemBodyProps, NotificationCenterItemContent, type NotificationCenterItemContentProps, NotificationCenterItemIcon, type NotificationCenterItemIconProps, type NotificationCenterItemProps, NotificationCenterItemRow, type NotificationCenterItemRowProps, NotificationCenterItemTitle, type NotificationCenterItemTitleProps, NotificationCenterList, type NotificationCenterListProps, NotificationCenterPopup, type NotificationCenterPopupProps, type NotificationCenterPortalProps, type NotificationCenterProps, NotificationCenterScroller, type NotificationCenterScrollerProps, NotificationCenterTitle, type NotificationCenterTitleProps, NotificationCenterTrigger, type NotificationCenterTriggerProps, type OrderedTabItem, Popover, PopoverArrow, type PopoverArrowProps, PopoverBackdrop, type PopoverBackdropProps, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, PopoverPopup, type PopoverPopupProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverSeparator, type PopoverSeparatorProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PopoverViewport, type PopoverViewportProps, RadioGroup, RadioGroupIndicator, type RadioGroupIndicatorProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type ResolvedThemeMode, SegmentedControl, SegmentedControlCount, type SegmentedControlCountProps, SegmentedControlItem, type SegmentedControlItemProps, SegmentedControlLabel, type SegmentedControlLabelProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectList, type SelectListProps, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, type SetTheme, type SetThemeOptions, SortableTabsList, type SortableTabsListProps, SortableTabsTab, type SortableTabsTabProps, Spinner, type SpinnerProps, Status, type StatusProps, Tabs, TabsBackground, type TabsBackgroundProps, TabsIndicator, type TabsIndicatorProps, TabsLabel, type TabsLabelProps, TabsList, type TabsListProps, TabsPanel, type TabsPanelProps, type TabsProps, TabsTab, type TabsTabProps, Text, TextHeading, type TextHeadingProps, TextMono, type TextMonoProps, TextSans, type TextSansProps, Textarea, TextareaCounter, type TextareaCounterProps, TextareaGroup, type TextareaGroupProps, type TextareaProps, type Theme, type ThemeMode, ThemeProvider, type ThemeProviderProps, type ThemeState, Tooltip, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipPortalProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, buttonVariants, cn, useOrderedTabs, useTheme, useThemeFamily };
2868
+ export { Avatar, AvatarBadge, type AvatarBadgeProps, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarImage, type AvatarImageProps, type AvatarProps, type AvatarSize, Badge, type BadgeProps, Banner, BannerAction, type BannerActionProps, BannerDescription, type BannerDescriptionProps, type BannerProps, type BannerStatus, BannerTitle, type BannerTitleProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Combobox, ComboboxChip, type ComboboxChipProps, ComboboxChipRemove, type ComboboxChipRemoveProps, ComboboxChips, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxContent, type ComboboxContentProps, ComboboxControl, type ComboboxControlProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, type ComboboxGroupLabelProps, type ComboboxGroupProps, ComboboxHeader, type ComboboxHeaderProps, ComboboxInput, ComboboxInputGroup, type ComboboxInputGroupProps, type ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, type ComboboxItemIndicatorProps, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxList, type ComboboxListProps, ComboboxPopup, type ComboboxPopupProps, ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, ComboboxRow, type ComboboxRowProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, ComboboxTriggerIndicator, type ComboboxTriggerIndicatorProps, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuCheckboxItemIndicator, type ContextMenuCheckboxItemIndicatorProps, type ContextMenuCheckboxItemProps, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, type ContextMenuLabelProps, ContextMenuPortal, type ContextMenuPortalProps, type ContextMenuProps, ContextMenuRadioGroup, type ContextMenuRadioGroupProps, ContextMenuRadioItem, ContextMenuRadioItemIndicator, type ContextMenuRadioItemIndicatorProps, type ContextMenuRadioItemProps, ContextMenuSeparator, type ContextMenuSeparatorProps, ContextMenuShortcut, type ContextMenuShortcutProps, ContextMenuSubmenu, type ContextMenuSubmenuProps, ContextMenuSubmenuTrigger, type ContextMenuSubmenuTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemIndicator, type DropdownMenuCheckboxItemIndicatorProps, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuItem, DropdownMenuItemCount, type DropdownMenuItemCountProps, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPopup, type DropdownMenuPopupProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemIndicator, type DropdownMenuRadioItemIndicatorProps, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSubmenu, type DropdownMenuSubmenuProps, DropdownMenuSubmenuTrigger, type DropdownMenuSubmenuTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, EmptyState, EmptyStateActions, type EmptyStateActionsProps, EmptyStateContent, type EmptyStateContentProps, EmptyStateDescription, type EmptyStateDescriptionProps, EmptyStateIcon, type EmptyStateIconProps, type EmptyStateProps, EmptyStateTitle, type EmptyStateTitleProps, Field, FieldControl, type FieldControlProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldItem, type FieldItemProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldValidity, type FieldValidityProps, InlineCode, type InlineCodeProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupAddonTextProps, InputGroupInput, type InputGroupInputProps, type InputGroupProps, type InputProps, Kbd, KbdGroup, type KbdGroupProps, type KbdProps, Label, LabelAsterisk, type LabelAsteriskProps, LabelOptional, type LabelOptionalProps, type LabelProps, LabelSub, type LabelSubProps, NotificationCenter, NotificationCenterActionButton, type NotificationCenterActionButtonProps, NotificationCenterCount, type NotificationCenterCountProps, NotificationCenterEmptyState, type NotificationCenterEmptyStateProps, NotificationCenterHeader, type NotificationCenterHeaderProps, NotificationCenterItem, NotificationCenterItemActions, type NotificationCenterItemActionsProps, NotificationCenterItemBody, type NotificationCenterItemBodyProps, NotificationCenterItemContent, type NotificationCenterItemContentProps, NotificationCenterItemIcon, type NotificationCenterItemIconProps, type NotificationCenterItemProps, NotificationCenterItemRow, type NotificationCenterItemRowProps, NotificationCenterItemTitle, type NotificationCenterItemTitleProps, NotificationCenterList, type NotificationCenterListProps, NotificationCenterPopup, type NotificationCenterPopupProps, type NotificationCenterPortalProps, type NotificationCenterProps, NotificationCenterScroller, type NotificationCenterScrollerProps, NotificationCenterTitle, type NotificationCenterTitleProps, NotificationCenterTrigger, type NotificationCenterTriggerProps, type OrderedTabItem, Popover, PopoverArrow, type PopoverArrowProps, PopoverBackdrop, type PopoverBackdropProps, PopoverClose, type PopoverCloseProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, PopoverPopup, type PopoverPopupProps, PopoverPortal, type PopoverPortalProps, type PopoverProps, PopoverSeparator, type PopoverSeparatorProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, PopoverViewport, type PopoverViewportProps, RadioGroup, RadioGroupIndicator, type RadioGroupIndicatorProps, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type ResolvedThemeMode, SegmentedControl, SegmentedControlCount, type SegmentedControlCountProps, SegmentedControlItem, type SegmentedControlItemProps, SegmentedControlLabel, type SegmentedControlLabelProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, SelectGroupLabel, type SelectGroupLabelProps, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectList, type SelectListProps, SelectPopup, type SelectPopupProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownArrow, type SelectScrollDownArrowProps, SelectScrollUpArrow, type SelectScrollUpArrowProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerProps, SelectValue, type SelectValueProps, Separator, type SeparatorProps, type SetTheme, type SetThemeOptions, SortableTabsList, type SortableTabsListProps, SortableTabsTab, type SortableTabsTabProps, Spinner, type SpinnerProps, Status, type StatusProps, Tabs, TabsBackground, type TabsBackgroundProps, TabsIndicator, type TabsIndicatorProps, TabsLabel, type TabsLabelProps, TabsList, type TabsListProps, TabsPanel, type TabsPanelProps, type TabsProps, TabsTab, type TabsTabProps, Text, TextHeading, type TextHeadingProps, TextMono, type TextMonoProps, TextSans, type TextSansProps, Textarea, TextareaCounter, type TextareaCounterProps, TextareaGroup, type TextareaGroupProps, type TextareaProps, type Theme, type ThemeMode, ThemeProvider, type ThemeProviderProps, type ThemeState, Tooltip, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipPortalProps, type TooltipProps, TooltipProvider, type TooltipProviderProps, TooltipTrigger, type TooltipTriggerProps, buttonVariants, cn, useOrderedTabs, useTheme, useThemeFamily };