@xenide-io/the-old-ui-theme 0.2.6 → 0.3.0

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 (126) hide show
  1. package/README.md +1 -1
  2. package/dist/chunk-FDMD3IIN.mjs +3831 -0
  3. package/dist/index-D1RTT2Ap.d.mts +1044 -0
  4. package/dist/index-D1RTT2Ap.d.ts +1044 -0
  5. package/dist/index.d.mts +11 -758
  6. package/dist/index.d.ts +11 -758
  7. package/dist/index.js +1749 -768
  8. package/dist/index.mjs +312 -2846
  9. package/dist/tailwind-preset.js +7 -0
  10. package/dist/tailwind-preset.mjs +7 -0
  11. package/dist/ui.d.mts +4 -0
  12. package/dist/ui.d.ts +4 -0
  13. package/dist/ui.js +3864 -0
  14. package/dist/ui.mjs +169 -0
  15. package/package.json +28 -6
  16. package/src/app/globals.css +1005 -227
  17. package/src/components/charts/index.ts +8 -0
  18. package/src/components/charts/ph-insight-charts.tsx +162 -0
  19. package/src/components/dashboard/DashboardFiltersBar.tsx +19 -0
  20. package/src/components/dashboard/DashboardGrid.tsx +23 -0
  21. package/src/components/dashboard/DashboardInsightPlaceholder.tsx +37 -0
  22. package/src/components/dashboard/DashboardKpiCard.tsx +25 -0
  23. package/src/components/dashboard/DashboardToolbar.tsx +23 -0
  24. package/src/components/dashboard/DashboardWell.tsx +10 -0
  25. package/src/components/dashboard/InsightMiniCard.tsx +26 -0
  26. package/src/components/dashboard/InsightShell.tsx +37 -0
  27. package/src/components/dashboard/InsightShellHeader.tsx +22 -0
  28. package/src/components/dashboard/MiniTrendBars.tsx +51 -0
  29. package/src/components/dashboard/index.ts +31 -0
  30. package/src/components/dashboard/types.ts +9 -0
  31. package/src/components/icons/IconBase.tsx +47 -0
  32. package/src/components/icons/createIconBase.tsx +32 -0
  33. package/src/components/icons/icons.tsx +557 -0
  34. package/src/components/icons/index.ts +3 -0
  35. package/src/components/sections/AccordionShowcase.tsx +45 -0
  36. package/src/components/sections/AlertShowcase.tsx +40 -0
  37. package/src/components/sections/AvatarShowcase.tsx +80 -0
  38. package/src/components/sections/BadgeShowcase.tsx +65 -0
  39. package/src/components/sections/ButtonShowcase.tsx +308 -0
  40. package/src/components/sections/CalendarShowcase.tsx +35 -0
  41. package/src/components/sections/CardShowcase.tsx +159 -0
  42. package/src/components/sections/ChartShowcase.tsx +190 -0
  43. package/src/components/sections/CodeMockupShowcase.tsx +56 -0
  44. package/src/components/sections/ColorPalette.tsx +117 -0
  45. package/src/components/sections/CommandPaletteShowcase.tsx +48 -0
  46. package/src/components/sections/CountdownShowcase.tsx +43 -0
  47. package/src/components/sections/DashboardShowcase.tsx +191 -0
  48. package/src/components/sections/DiffShowcase.tsx +70 -0
  49. package/src/components/sections/DrawerShowcase.tsx +97 -0
  50. package/src/components/sections/DropdownShowcase.tsx +98 -0
  51. package/src/components/sections/EmptyStateShowcase.tsx +50 -0
  52. package/src/components/sections/FilterChipsShowcase.tsx +98 -0
  53. package/src/components/sections/FormShowcase.tsx +127 -0
  54. package/src/components/sections/HoverCardShowcase.tsx +50 -0
  55. package/src/components/sections/IconShowcase.tsx +127 -0
  56. package/src/components/sections/IndicatorShowcase.tsx +52 -0
  57. package/src/components/sections/KbdShowcase.tsx +57 -0
  58. package/src/components/sections/ModalShowcase.tsx +211 -0
  59. package/src/components/sections/NavigationShowcase.tsx +199 -0
  60. package/src/components/sections/ProductLayoutsShowcase.tsx +138 -0
  61. package/src/components/sections/ProgressShowcase.tsx +82 -0
  62. package/src/components/sections/SegmentedControlShowcase.tsx +49 -0
  63. package/src/components/sections/SetupThemeShowcase.tsx +262 -0
  64. package/src/components/sections/StackShowcase.tsx +33 -0
  65. package/src/components/sections/StatShowcase.tsx +129 -0
  66. package/src/components/sections/StepperShowcase.tsx +37 -0
  67. package/src/components/sections/SwapShowcase.tsx +99 -0
  68. package/src/components/sections/TabShowcase.tsx +84 -0
  69. package/src/components/sections/TableShowcase.tsx +140 -0
  70. package/src/components/sections/TimelineShowcase.tsx +83 -0
  71. package/src/components/sections/ToastShowcase.tsx +108 -0
  72. package/src/components/sections/TooltipShowcase.tsx +44 -0
  73. package/src/components/sections/UtilityShowcase.tsx +81 -0
  74. package/src/components/ui/Accordion.tsx +77 -0
  75. package/src/components/ui/Alert.tsx +77 -0
  76. package/src/components/ui/AuthLayout.tsx +58 -0
  77. package/src/components/ui/Avatar.tsx +97 -0
  78. package/src/components/ui/Badge.tsx +60 -0
  79. package/src/components/ui/Button.tsx +120 -0
  80. package/src/components/ui/ButtonChrome.tsx +20 -0
  81. package/src/components/ui/Calendar.tsx +115 -0
  82. package/src/components/ui/Card.tsx +70 -0
  83. package/src/components/ui/ChatBubble.tsx +71 -0
  84. package/src/components/ui/CodeBlock.tsx +48 -0
  85. package/src/components/ui/CollapsibleSection.tsx +49 -0
  86. package/src/components/ui/CommandPalette.tsx +137 -0
  87. package/src/components/ui/ComponentDocs.tsx +52 -0
  88. package/src/components/ui/Drawer.tsx +71 -0
  89. package/src/components/ui/DropdownMenu.tsx +262 -0
  90. package/src/components/ui/EmptyState.tsx +33 -0
  91. package/src/components/ui/FilterBar.tsx +165 -0
  92. package/src/components/ui/FilterChips.tsx +80 -0
  93. package/src/components/ui/FilterControls.tsx +30 -0
  94. package/src/components/ui/FormField.tsx +69 -0
  95. package/src/components/ui/HoverCard.tsx +36 -0
  96. package/src/components/ui/Indicator.tsx +61 -0
  97. package/src/components/ui/Input.tsx +385 -0
  98. package/src/components/ui/Kbd.tsx +113 -0
  99. package/src/components/ui/Loader.tsx +96 -0
  100. package/src/components/ui/Modal.tsx +105 -0
  101. package/src/components/ui/Navigation.tsx +94 -0
  102. package/src/components/ui/Panel.tsx +18 -0
  103. package/src/components/ui/Progress.tsx +59 -0
  104. package/src/components/ui/Rating.tsx +65 -0
  105. package/src/components/ui/SearchInput.tsx +106 -0
  106. package/src/components/ui/SegmentedControl.tsx +44 -0
  107. package/src/components/ui/SettingsLayout.tsx +94 -0
  108. package/src/components/ui/ShowcaseWrapper.tsx +124 -0
  109. package/src/components/ui/Stat.tsx +39 -0
  110. package/src/components/ui/Stepper.tsx +74 -0
  111. package/src/components/ui/Table.tsx +55 -0
  112. package/src/components/ui/Tabs.tsx +53 -0
  113. package/src/components/ui/Terminal.tsx +54 -0
  114. package/src/components/ui/ThemeDomSync.tsx +17 -0
  115. package/src/components/ui/ThemeManager.tsx +18 -0
  116. package/src/components/ui/ThemeSwitcher.tsx +46 -0
  117. package/src/components/ui/Timeline.tsx +60 -0
  118. package/src/components/ui/Toast.tsx +70 -0
  119. package/src/components/ui/Typography.tsx +129 -0
  120. package/src/components/ui/first-slice.test.tsx +98 -0
  121. package/src/components/ui/index.ts +151 -0
  122. package/src/components/ui/interaction-primitives.test.tsx +77 -0
  123. package/src/components/ui/kbd-icons.test.tsx +90 -0
  124. package/src/components/ui/product-patterns.test.tsx +77 -0
  125. package/src/styles/themes.css +528 -0
  126. package/tailwind-preset.ts +7 -0
@@ -0,0 +1,1044 @@
1
+ import * as react from 'react';
2
+ import { ButtonHTMLAttributes, ReactNode, HTMLAttributes, AriaAttributes, ComponentPropsWithoutRef, CSSProperties, SVGAttributes } from 'react';
3
+ import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import * as DropdownPrimitive from '@radix-ui/react-dropdown-menu';
5
+
6
+ type ButtonVariant = "primary" | "secondary" | "tertiary" | "signal" | "accent" | "neutral" | "info" | "success" | "warning" | "danger" | "ghost" | "link";
7
+ type ButtonSize = "xs" | "sm" | "md" | "lg";
8
+ type ButtonShape = "default" | "circle" | "square" | "wide";
9
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
10
+ variant?: ButtonVariant;
11
+ size?: ButtonSize;
12
+ shape?: ButtonShape;
13
+ outline?: boolean;
14
+ /** Toolbar split control (Run ▾) — adds divider before trailing icon slot */
15
+ split?: boolean;
16
+ icon?: ReactNode;
17
+ sideIcon?: ReactNode;
18
+ children?: ReactNode;
19
+ loading?: boolean;
20
+ loadingLabel?: ReactNode;
21
+ }
22
+ /** Filled variants keep a stationary depth plate while the face and content move together. */
23
+ declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
24
+
25
+ interface ButtonChromeProps {
26
+ label?: ReactNode;
27
+ icon?: ReactNode;
28
+ sideIcon?: ReactNode;
29
+ split?: boolean;
30
+ }
31
+ /** Content layer for tactile variants; CSS moves it with the independently rendered face. */
32
+ declare function ButtonChrome({ label, icon, sideIcon, split }: ButtonChromeProps): react_jsx_runtime.JSX.Element;
33
+
34
+ type AlertStatus = "info" | "success" | "warning" | "danger";
35
+ interface AlertProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
36
+ status?: AlertStatus;
37
+ title?: string;
38
+ description?: string;
39
+ icon?: ReactNode;
40
+ children?: ReactNode;
41
+ className?: string;
42
+ onDismiss?: () => void;
43
+ live?: AriaAttributes["aria-live"];
44
+ dismissLabel?: string;
45
+ }
46
+ declare const Alert: react.ForwardRefExoticComponent<AlertProps & react.RefAttributes<HTMLDivElement>>;
47
+
48
+ type BadgeVariant = "brand" | "neutral" | "success" | "warning" | "danger" | "info" | "outline";
49
+ type BadgeSize = "sm" | "md";
50
+ interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
51
+ variant?: BadgeVariant;
52
+ size?: BadgeSize;
53
+ children?: ReactNode;
54
+ className?: string;
55
+ }
56
+ declare const Badge: react.ForwardRefExoticComponent<BadgeProps & react.RefAttributes<HTMLSpanElement>>;
57
+
58
+ type CardVariant = "default" | "outlined" | "elevated" | "highlighted";
59
+ interface CardProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
60
+ children?: ReactNode;
61
+ title?: ReactNode;
62
+ description?: ReactNode;
63
+ actions?: ReactNode;
64
+ footer?: ReactNode;
65
+ media?: ReactNode;
66
+ variant?: CardVariant;
67
+ className?: string;
68
+ bodyClassName?: string;
69
+ interactive?: boolean;
70
+ titleAs?: "h2" | "h3" | "h4";
71
+ }
72
+ declare const Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
73
+
74
+ type DrawerSide = "left" | "right";
75
+ type DrawerSize = "sm" | "md" | "lg";
76
+ interface DrawerProps {
77
+ open?: boolean;
78
+ onClose?: () => void;
79
+ title?: ReactNode;
80
+ children?: ReactNode;
81
+ footer?: ReactNode;
82
+ side?: DrawerSide;
83
+ size?: DrawerSize;
84
+ className?: string;
85
+ showCloseButton?: boolean;
86
+ }
87
+ declare function Drawer({ open, onClose, title, children, footer, side, size, className, showCloseButton, }: DrawerProps): react_jsx_runtime.JSX.Element | null;
88
+
89
+ type KbdVariant = "shortcut" | "key" | "token";
90
+ type KbdPlatform = "text" | "mac" | "windows";
91
+ interface KbdProps extends HTMLAttributes<HTMLElement> {
92
+ variant?: KbdVariant;
93
+ keys?: readonly ReactNode[];
94
+ platform?: KbdPlatform;
95
+ separator?: ReactNode;
96
+ children?: ReactNode;
97
+ }
98
+ declare function Kbd({ variant, keys, platform, separator, children, className, "aria-label": ariaLabel, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
99
+
100
+ type LoaderVariant = "spinner" | "dots" | "pulse";
101
+ type LoaderSize = "sm" | "md" | "lg";
102
+ type SkeletonShape = "title" | "text" | "short-text" | "avatar" | "button" | "block";
103
+ interface LoaderProps extends Omit<ComponentPropsWithoutRef<"span">, "children"> {
104
+ variant?: LoaderVariant;
105
+ size?: LoaderSize;
106
+ label?: string;
107
+ }
108
+ interface SkeletonProps extends ComponentPropsWithoutRef<"span"> {
109
+ shape?: SkeletonShape;
110
+ }
111
+ interface LoadingStateProps extends Omit<ComponentPropsWithoutRef<"div">, "title"> {
112
+ label?: string;
113
+ title?: ReactNode;
114
+ description?: ReactNode;
115
+ variant?: LoaderVariant;
116
+ size?: LoaderSize;
117
+ }
118
+ declare function Loader({ variant, size, label, className, ...props }: LoaderProps): react_jsx_runtime.JSX.Element;
119
+ declare function Skeleton({ shape, className, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
120
+ declare function LoadingState({ label, title, description, variant, size, className, ...props }: LoadingStateProps): react_jsx_runtime.JSX.Element;
121
+
122
+ interface AuthLayoutProps extends ComponentPropsWithoutRef<"div"> {
123
+ brand?: ReactNode;
124
+ footer?: ReactNode;
125
+ aside?: ReactNode;
126
+ children: ReactNode;
127
+ }
128
+ interface AuthCardProps extends Omit<ComponentPropsWithoutRef<"section">, "title"> {
129
+ title: ReactNode;
130
+ description?: ReactNode;
131
+ footer?: ReactNode;
132
+ children: ReactNode;
133
+ }
134
+ interface AuthDividerProps extends ComponentPropsWithoutRef<"div"> {
135
+ children?: ReactNode;
136
+ }
137
+ declare function AuthLayout({ brand, footer, aside, children, className, ...props }: AuthLayoutProps): react_jsx_runtime.JSX.Element;
138
+ declare function AuthCard({ title, description, footer, children, className, ...props }: AuthCardProps): react_jsx_runtime.JSX.Element;
139
+ declare function AuthDivider({ children, className, ...props }: AuthDividerProps): react_jsx_runtime.JSX.Element;
140
+
141
+ interface SettingsNavItem {
142
+ id: string;
143
+ label: ReactNode;
144
+ href: string;
145
+ icon?: ReactNode;
146
+ active?: boolean;
147
+ badge?: ReactNode;
148
+ }
149
+ interface SettingsNavGroup {
150
+ label: ReactNode;
151
+ items: readonly SettingsNavItem[];
152
+ }
153
+ interface SettingsNavProps extends ComponentPropsWithoutRef<"div"> {
154
+ groups: readonly SettingsNavGroup[];
155
+ }
156
+ interface SettingsLayoutProps extends Omit<ComponentPropsWithoutRef<"section">, "title"> {
157
+ title: ReactNode;
158
+ description?: ReactNode;
159
+ actions?: ReactNode;
160
+ navigation: ReactNode;
161
+ navigationLabel?: string;
162
+ children: ReactNode;
163
+ }
164
+ declare function SettingsNav({ groups, className, ...props }: SettingsNavProps): react_jsx_runtime.JSX.Element;
165
+ declare function SettingsLayout({ title, description, actions, navigation, navigationLabel, children, className, ...props }: SettingsLayoutProps): react_jsx_runtime.JSX.Element;
166
+
167
+ type ContentProps = ComponentPropsWithoutRef<typeof DropdownPrimitive.Content>;
168
+ type DropdownAlign = NonNullable<ContentProps["align"]>;
169
+ type DropdownSide = NonNullable<ContentProps["side"]>;
170
+ interface DropdownPlacementProps {
171
+ align?: DropdownAlign;
172
+ side?: DropdownSide;
173
+ sideOffset?: number;
174
+ alignOffset?: number;
175
+ collisionPadding?: ContentProps["collisionPadding"];
176
+ avoidCollisions?: boolean;
177
+ panelClassName?: string;
178
+ }
179
+ interface DropdownOpenProps {
180
+ open?: boolean;
181
+ defaultOpen?: boolean;
182
+ onOpenChange?: (open: boolean) => void;
183
+ modal?: boolean;
184
+ }
185
+ interface DropdownMenuProps extends Omit<HTMLAttributes<HTMLDivElement>, "children">, DropdownPlacementProps, DropdownOpenProps {
186
+ /** Custom non-interactive trigger node, such as an avatar or icon chip. */
187
+ trigger: ReactNode;
188
+ /** Accessible name when the trigger has no visible text. */
189
+ "aria-label": string;
190
+ children: ReactNode;
191
+ disabled?: boolean;
192
+ }
193
+ interface DropdownButtonProps extends Omit<HTMLAttributes<HTMLDivElement>, "children">, DropdownPlacementProps, DropdownOpenProps {
194
+ /** Visible button label. */
195
+ label: string;
196
+ variant?: "primary" | "secondary" | "accent";
197
+ outline?: boolean;
198
+ size?: ButtonSize;
199
+ /** Split control styling with a divider before the trailing chevron. */
200
+ split?: boolean;
201
+ icon?: ReactNode;
202
+ /** Defaults to a chevron when omitted. */
203
+ sideIcon?: ReactNode;
204
+ children: ReactNode;
205
+ disabled?: boolean;
206
+ /** Overrides the accessible name; defaults to `label`. */
207
+ "aria-label"?: string;
208
+ }
209
+ type DropdownItemProps = ButtonHTMLAttributes<HTMLButtonElement>;
210
+ type DropdownRadioGroupProps = ComponentPropsWithoutRef<typeof DropdownPrimitive.RadioGroup>;
211
+ type DropdownRadioItemProps = ComponentPropsWithoutRef<typeof DropdownPrimitive.RadioItem>;
212
+ /** Collision-aware menu that flips sides and shifts its alignment to remain visible. */
213
+ declare function DropdownMenu({ trigger, children, align, side, sideOffset, alignOffset, collisionPadding, avoidCollisions, className, panelClassName, "aria-label": ariaLabel, open, defaultOpen, onOpenChange, modal, disabled, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
214
+ /** Tactile dropdown trigger backed by the same adaptive menu positioning. */
215
+ declare function DropdownButton({ label, variant, outline, size, split, icon, sideIcon, children, align, side, sideOffset, alignOffset, collisionPadding, avoidCollisions, className, panelClassName, "aria-label": ariaLabel, open, defaultOpen, onOpenChange, modal, disabled, ...props }: DropdownButtonProps): react_jsx_runtime.JSX.Element;
216
+ declare function DropdownItem({ className, children, disabled, ...props }: DropdownItemProps): react_jsx_runtime.JSX.Element;
217
+ declare function DropdownRadioGroup(props: DropdownRadioGroupProps): react_jsx_runtime.JSX.Element;
218
+ declare function DropdownRadioItem({ className, children, ...props }: DropdownRadioItemProps): react_jsx_runtime.JSX.Element;
219
+
220
+ type InputSize = "sm" | "md" | "lg";
221
+ type InputVariant = "default" | "ghost";
222
+ interface InputProps extends Omit<ComponentPropsWithoutRef<"input">, "size"> {
223
+ label?: string;
224
+ hideLabel?: boolean;
225
+ error?: string;
226
+ helperText?: string;
227
+ size?: InputSize;
228
+ variant?: InputVariant;
229
+ wrapperClassName?: string;
230
+ }
231
+ declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
232
+ interface SelectProps extends Omit<ComponentPropsWithoutRef<"select">, "size"> {
233
+ label?: string;
234
+ hideLabel?: boolean;
235
+ error?: string;
236
+ helperText?: string;
237
+ size?: InputSize;
238
+ wrapperClassName?: string;
239
+ children: ReactNode;
240
+ }
241
+ declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLSelectElement>>;
242
+ interface TextareaProps extends Omit<ComponentPropsWithoutRef<"textarea">, "size"> {
243
+ label?: string;
244
+ hideLabel?: boolean;
245
+ error?: string;
246
+ helperText?: string;
247
+ size?: InputSize;
248
+ wrapperClassName?: string;
249
+ }
250
+ declare const Textarea: react.ForwardRefExoticComponent<TextareaProps & react.RefAttributes<HTMLTextAreaElement>>;
251
+ interface CheckboxProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
252
+ label?: ReactNode;
253
+ error?: string;
254
+ helperText?: string;
255
+ wrapperClassName?: string;
256
+ }
257
+ declare const Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLInputElement>>;
258
+ interface RadioProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
259
+ label?: ReactNode;
260
+ wrapperClassName?: string;
261
+ }
262
+ declare const Radio: react.ForwardRefExoticComponent<RadioProps & react.RefAttributes<HTMLInputElement>>;
263
+ interface ToggleProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
264
+ label?: ReactNode;
265
+ wrapperClassName?: string;
266
+ }
267
+ declare const Toggle: react.ForwardRefExoticComponent<ToggleProps & react.RefAttributes<HTMLInputElement>>;
268
+ interface RangeProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
269
+ label?: string;
270
+ minLabel?: string;
271
+ maxLabel?: string;
272
+ valueLabel?: string;
273
+ wrapperClassName?: string;
274
+ }
275
+ declare const Range: react.ForwardRefExoticComponent<RangeProps & react.RefAttributes<HTMLInputElement>>;
276
+ interface FileUploadProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
277
+ label?: string;
278
+ prompt?: string;
279
+ wrapperClassName?: string;
280
+ }
281
+ declare const FileUpload: react.ForwardRefExoticComponent<FileUploadProps & react.RefAttributes<HTMLInputElement>>;
282
+
283
+ interface FormFieldControlProps {
284
+ id: string;
285
+ "aria-describedby"?: string;
286
+ "aria-errormessage"?: string;
287
+ "aria-invalid"?: true;
288
+ }
289
+ interface FormFieldProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
290
+ controlId?: string;
291
+ label?: ReactNode;
292
+ hideLabel?: boolean;
293
+ helperText?: ReactNode;
294
+ error?: ReactNode;
295
+ required?: boolean;
296
+ disabled?: boolean;
297
+ children: ReactNode | ((controlProps: FormFieldControlProps) => ReactNode);
298
+ }
299
+ declare function FormField({ controlId, label, hideLabel, helperText, error, required, disabled, children, className, ...props }: FormFieldProps): react_jsx_runtime.JSX.Element;
300
+
301
+ type ModalSize = "sm" | "md" | "lg" | "xl" | "full";
302
+ interface ModalProps {
303
+ open?: boolean;
304
+ onClose?: () => void;
305
+ title?: string;
306
+ description?: string;
307
+ children?: ReactNode;
308
+ footer?: ReactNode;
309
+ size?: ModalSize;
310
+ className?: string;
311
+ showCloseButton?: boolean;
312
+ closeOnOutsideClick?: boolean;
313
+ closeOnEscape?: boolean;
314
+ "aria-label"?: string;
315
+ }
316
+ declare function Modal({ open, onClose, title, description, children, footer, size, className, showCloseButton, closeOnOutsideClick, closeOnEscape, "aria-label": ariaLabel, }: ModalProps): react_jsx_runtime.JSX.Element;
317
+
318
+ interface BreadcrumbItem {
319
+ label: string;
320
+ href?: string;
321
+ current?: boolean;
322
+ }
323
+ interface BreadcrumbsProps {
324
+ items: BreadcrumbItem[];
325
+ label?: string;
326
+ className?: string;
327
+ }
328
+ declare function Breadcrumbs({ items, label, className }: BreadcrumbsProps): react_jsx_runtime.JSX.Element;
329
+ interface PaginationProps {
330
+ page: number;
331
+ totalPages: number;
332
+ onPageChange?: (page: number) => void;
333
+ label?: string;
334
+ compact?: boolean;
335
+ className?: string;
336
+ }
337
+ declare function Pagination({ page, totalPages, onPageChange, label, compact, className, }: PaginationProps): react_jsx_runtime.JSX.Element;
338
+
339
+ interface PanelProps extends Omit<ComponentPropsWithoutRef<"div">, "title"> {
340
+ title?: ReactNode;
341
+ description?: ReactNode;
342
+ children?: ReactNode;
343
+ }
344
+ declare function Panel({ title, description, children, className, ...props }: PanelProps): react_jsx_runtime.JSX.Element;
345
+
346
+ interface RatingProps extends Omit<ComponentPropsWithoutRef<"div">, "onChange"> {
347
+ label?: string;
348
+ value?: number;
349
+ max?: number;
350
+ readOnly?: boolean;
351
+ onChange?: (value: number) => void;
352
+ wrapperClassName?: string;
353
+ }
354
+ declare function Rating({ label, value, max, readOnly, onChange, className, wrapperClassName, ...props }: RatingProps): react_jsx_runtime.JSX.Element;
355
+
356
+ interface SearchInputProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
357
+ /** Associated label text — always rendered (visually hidden when `hideLabel`) */
358
+ label?: string;
359
+ hideLabel?: boolean;
360
+ /** Optional shortcut hint shown inside the field (e.g. "⌘K") */
361
+ shortcut?: string;
362
+ density?: "default" | "compact";
363
+ wrapperClassName?: string;
364
+ }
365
+ /** Labelled search field — use in nav bars and toolbars. */
366
+ declare function SearchInput({ id: idProp, label, hideLabel, shortcut, density, className, wrapperClassName, placeholder, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
367
+ interface SearchGroupProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
368
+ label?: string;
369
+ submitLabel?: string;
370
+ wrapperClassName?: string;
371
+ }
372
+ /** Input + primary search — one control shell, 1px vertical seam, matched height to `ph-input`. */
373
+ declare function SearchGroup({ id: idProp, label, submitLabel, placeholder, wrapperClassName, className, ...props }: SearchGroupProps): react_jsx_runtime.JSX.Element;
374
+
375
+ interface TableColumn<T> {
376
+ key: string;
377
+ header: ReactNode;
378
+ cell: (row: T) => ReactNode;
379
+ className?: string;
380
+ }
381
+ interface TableProps<T> {
382
+ data: T[];
383
+ columns: TableColumn<T>[];
384
+ zebra?: boolean;
385
+ compact?: boolean;
386
+ ribbon?: boolean;
387
+ getRowStyle?: (row: T) => CSSProperties | undefined;
388
+ className?: string;
389
+ caption?: string;
390
+ }
391
+ declare function Table<T>({ data, columns, zebra, compact, ribbon, getRowStyle, className, caption, }: TableProps<T>): react_jsx_runtime.JSX.Element;
392
+
393
+ type StatTone = "default" | "brand" | "blue" | "purple" | "warning";
394
+ interface StatProps extends ComponentPropsWithoutRef<"article"> {
395
+ icon?: ReactNode;
396
+ label: ReactNode;
397
+ value: ReactNode;
398
+ footer?: ReactNode;
399
+ tone?: StatTone;
400
+ }
401
+ declare function Stat({ icon, label, value, footer, tone, className, ...props }: StatProps): react_jsx_runtime.JSX.Element;
402
+
403
+ type ToastStatus = "info" | "success" | "warning" | "danger";
404
+ interface ToastProps {
405
+ status?: ToastStatus;
406
+ title: string;
407
+ description?: string;
408
+ onDismiss?: () => void;
409
+ className?: string;
410
+ }
411
+ declare function Toast({ status, title, description, onDismiss, className, }: ToastProps): react_jsx_runtime.JSX.Element;
412
+ interface ToastStackProps {
413
+ children?: ReactNode;
414
+ className?: string;
415
+ }
416
+ declare function ToastStack({ children, className }: ToastStackProps): react_jsx_runtime.JSX.Element;
417
+
418
+ interface TabItem {
419
+ value: string;
420
+ label: string;
421
+ }
422
+ type TabsVariant = "pill" | "underline";
423
+ interface TabsProps {
424
+ items: TabItem[];
425
+ value: string;
426
+ onChange: (value: string) => void;
427
+ variant?: TabsVariant;
428
+ className?: string;
429
+ }
430
+ declare function Tabs({ items, value, onChange, variant, className }: TabsProps): react_jsx_runtime.JSX.Element;
431
+
432
+ /**
433
+ * Re-applies `html[data-theme]` after React commits. Hydration can clear attributes
434
+ * that were set only by `THEME_INIT_SCRIPT` — without this sync, `:root`-scoped
435
+ * light tokens effectively win visually.
436
+ */
437
+ declare function ThemeDomSync(): null;
438
+
439
+ interface ThemeManagerProps {
440
+ children?: ReactNode;
441
+ }
442
+ /** Client wrapper that keeps html[data-theme] synced with localStorage. */
443
+ declare function ThemeManager({ children }: ThemeManagerProps): react_jsx_runtime.JSX.Element;
444
+
445
+ interface ThemeSwitcherProps {
446
+ className?: string;
447
+ }
448
+ /** Colour-only theme picker — persists to localStorage and sets html[data-theme]. */
449
+ declare function ThemeSwitcher({ className }: ThemeSwitcherProps): react_jsx_runtime.JSX.Element;
450
+
451
+ interface IconProps extends SVGAttributes<SVGSVGElement> {
452
+ /** Pixel size or CSS length; defaults to `1em`. */
453
+ size?: number | string;
454
+ }
455
+ /** Shared SVG wrapper with predictable sizing and accessible-name behavior. */
456
+ declare const IconBase: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
457
+
458
+ declare const IconAreaChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
459
+ declare const IconCumulativeChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
460
+ declare const IconTableChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
461
+ declare const IconHandClick: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
462
+ declare const IconSurveys: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
463
+ declare const IconCohort: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
464
+ declare const IconRecording: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
465
+ declare const IconFlare: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
466
+ declare const IconSelectEvents: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
467
+ declare const IconClipboardEdit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
468
+ declare const IconQueryEditor: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
469
+ declare const IconTuning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
470
+ declare const IconSync: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
471
+ declare const IconPlayCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
472
+ declare const IconGridView: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
473
+ declare const IconListView: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
474
+ declare const IconPremium: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
475
+ declare const IconGift: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
476
+ declare const IconRobot: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
477
+ declare const IconExclamation: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
478
+ declare const IconErrorOutline: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
479
+ declare const IconInfo: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
480
+ declare const IconCancel: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
481
+ declare const IconCheckCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
482
+ declare const IconArrowUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
483
+ declare const IconArrowDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
484
+ declare const IconChevronLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
485
+ declare const IconChevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
486
+ declare const IconChevronDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
487
+ declare const IconSubArrowRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
488
+ declare const IconSearch: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
489
+ declare const IconBell: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
490
+ declare const IconBellOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
491
+ declare const IconPerson: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
492
+ declare const IconHome: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
493
+ declare const IconPanelRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
494
+ declare const IconPlus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
495
+ declare const IconCheck: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
496
+ declare const IconClose: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
497
+ declare const IconTrash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
498
+ declare const IconDownload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
499
+ declare const IconUpload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
500
+ declare const IconSave: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
501
+ declare const IconCopy: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
502
+ declare const IconEdit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
503
+ declare const IconLogout: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
504
+ declare const IconStar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
505
+ declare const IconMail: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
506
+ declare const IconShoppingCart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
507
+ declare const IconMoon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
508
+ declare const IconSun: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
509
+ declare const IconVolume: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
510
+ declare const IconVolumeOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
511
+ declare const IconFlag: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
512
+ declare const IconDatabase: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
513
+ declare const IconLayers: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
514
+ declare const IconBox: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
515
+ declare const IconBolt: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
516
+ declare const IconRadar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
517
+ declare const IconToggle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
518
+ declare const IconRocket: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
519
+ declare const IconTerminal: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
520
+ declare const IconOldWindow: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
521
+ declare const IconCommandCursor: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
522
+ declare const IconDataReel: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
523
+ declare const IconCodePreview: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
524
+ declare const IconInsightBoard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
525
+ declare const IconEventStream: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
526
+ declare const IconFeatureGate: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
527
+ declare const IconReplayFrame: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
528
+ declare const IconQueryStack: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
529
+ declare const IconExperimentSplit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
530
+ declare const IconSurveyCard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
531
+ declare const OLD_UI_ICONS: {
532
+ readonly oldWindow: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
533
+ readonly commandCursor: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
534
+ readonly dataReel: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
535
+ readonly codePreview: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
536
+ readonly insightBoard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
537
+ readonly eventStream: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
538
+ readonly featureGate: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
539
+ readonly replayFrame: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
540
+ readonly queryStack: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
541
+ readonly experimentSplit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
542
+ readonly surveyCard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
543
+ };
544
+ declare const IconActivity: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
545
+ declare const IconFlask: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
546
+ /** Busy-state spinner — PostHog `IconSync` with spin animation. */
547
+ declare const IconSpinner: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
548
+ /** Canonical names power documentation and new dynamic-icon usage. */
549
+ declare const CANONICAL_ICONS: {
550
+ readonly activity: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
551
+ readonly areaChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
552
+ readonly arrowDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
553
+ readonly arrowUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
554
+ readonly bell: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
555
+ readonly bellOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
556
+ readonly bolt: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
557
+ readonly box: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
558
+ readonly cancel: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
559
+ readonly check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
560
+ readonly checkCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
561
+ readonly chevronDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
562
+ readonly chevronLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
563
+ readonly chevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
564
+ readonly clipboardEdit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
565
+ readonly close: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
566
+ readonly codePreview: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
567
+ readonly cohort: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
568
+ readonly commandCursor: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
569
+ readonly copy: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
570
+ readonly cumulativeChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
571
+ readonly dataReel: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
572
+ readonly database: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
573
+ readonly download: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
574
+ readonly edit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
575
+ readonly errorOutline: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
576
+ readonly eventStream: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
577
+ readonly exclamation: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
578
+ readonly experimentSplit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
579
+ readonly featureGate: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
580
+ readonly flag: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
581
+ readonly flare: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
582
+ readonly flask: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
583
+ readonly gift: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
584
+ readonly gridView: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
585
+ readonly handClick: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
586
+ readonly home: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
587
+ readonly info: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
588
+ readonly insightBoard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
589
+ readonly layers: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
590
+ readonly listView: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
591
+ readonly logout: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
592
+ readonly mail: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
593
+ readonly moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
594
+ readonly oldWindow: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
595
+ readonly panelRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
596
+ readonly person: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
597
+ readonly playCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
598
+ readonly plus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
599
+ readonly premium: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
600
+ readonly queryEditor: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
601
+ readonly queryStack: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
602
+ readonly radar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
603
+ readonly recording: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
604
+ readonly replayFrame: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
605
+ readonly robot: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
606
+ readonly rocket: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
607
+ readonly save: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
608
+ readonly search: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
609
+ readonly selectEvents: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
610
+ readonly shoppingCart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
611
+ readonly spinner: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
612
+ readonly star: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
613
+ readonly subArrowRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
614
+ readonly sun: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
615
+ readonly surveyCard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
616
+ readonly surveys: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
617
+ readonly sync: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
618
+ readonly tableChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
619
+ readonly terminal: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
620
+ readonly toggle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
621
+ readonly trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
622
+ readonly tuning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
623
+ readonly upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
624
+ readonly volume: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
625
+ readonly volumeOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
626
+ };
627
+ /** Compatibility names remain runtime-identical to their canonical glyphs. */
628
+ declare const PH_ICON_ALIASES: {
629
+ readonly clipboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
630
+ readonly grid: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
631
+ readonly list: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
632
+ readonly play: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
633
+ readonly settings: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
634
+ readonly trendingUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
635
+ readonly warning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
636
+ readonly xCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
637
+ };
638
+ declare const PH_ICONS: {
639
+ readonly clipboard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
640
+ readonly grid: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
641
+ readonly list: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
642
+ readonly play: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
643
+ readonly settings: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
644
+ readonly trendingUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
645
+ readonly warning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
646
+ readonly xCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
647
+ readonly activity: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
648
+ readonly areaChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
649
+ readonly arrowDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
650
+ readonly arrowUp: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
651
+ readonly bell: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
652
+ readonly bellOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
653
+ readonly bolt: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
654
+ readonly box: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
655
+ readonly cancel: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
656
+ readonly check: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
657
+ readonly checkCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
658
+ readonly chevronDown: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
659
+ readonly chevronLeft: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
660
+ readonly chevronRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
661
+ readonly clipboardEdit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
662
+ readonly close: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
663
+ readonly codePreview: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
664
+ readonly cohort: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
665
+ readonly commandCursor: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
666
+ readonly copy: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
667
+ readonly cumulativeChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
668
+ readonly dataReel: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
669
+ readonly database: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
670
+ readonly download: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
671
+ readonly edit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
672
+ readonly errorOutline: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
673
+ readonly eventStream: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
674
+ readonly exclamation: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
675
+ readonly experimentSplit: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
676
+ readonly featureGate: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
677
+ readonly flag: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
678
+ readonly flare: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
679
+ readonly flask: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
680
+ readonly gift: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
681
+ readonly gridView: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
682
+ readonly handClick: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
683
+ readonly home: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
684
+ readonly info: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
685
+ readonly insightBoard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
686
+ readonly layers: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
687
+ readonly listView: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
688
+ readonly logout: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
689
+ readonly mail: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
690
+ readonly moon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
691
+ readonly oldWindow: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
692
+ readonly panelRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
693
+ readonly person: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
694
+ readonly playCircle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
695
+ readonly plus: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
696
+ readonly premium: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
697
+ readonly queryEditor: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
698
+ readonly queryStack: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
699
+ readonly radar: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
700
+ readonly recording: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
701
+ readonly replayFrame: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
702
+ readonly robot: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
703
+ readonly rocket: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
704
+ readonly save: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
705
+ readonly search: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
706
+ readonly selectEvents: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
707
+ readonly shoppingCart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
708
+ readonly spinner: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
709
+ readonly star: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
710
+ readonly subArrowRight: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
711
+ readonly sun: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
712
+ readonly surveyCard: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
713
+ readonly surveys: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
714
+ readonly sync: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
715
+ readonly tableChart: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
716
+ readonly terminal: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
717
+ readonly toggle: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
718
+ readonly trash: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
719
+ readonly tuning: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
720
+ readonly upload: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
721
+ readonly volume: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
722
+ readonly volumeOff: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>;
723
+ };
724
+ type CanonicalIconName = keyof typeof CANONICAL_ICONS;
725
+ type IconAliasName = keyof typeof PH_ICON_ALIASES;
726
+ type IconName = keyof typeof PH_ICONS;
727
+ declare const IconByName: react.ForwardRefExoticComponent<IconProps & {
728
+ name: IconName;
729
+ } & react.RefAttributes<SVGSVGElement>>;
730
+
731
+ interface AccordionItem {
732
+ id: string;
733
+ title: string;
734
+ content: React.ReactNode;
735
+ }
736
+ interface AccordionProps {
737
+ items: AccordionItem[];
738
+ allowMultiple?: boolean;
739
+ defaultOpen?: string[];
740
+ className?: string;
741
+ }
742
+ declare function Accordion({ items, allowMultiple, defaultOpen, className, }: AccordionProps): react_jsx_runtime.JSX.Element;
743
+
744
+ interface Step {
745
+ id: string;
746
+ label: string;
747
+ description?: string;
748
+ status?: "pending" | "current" | "completed" | "error";
749
+ }
750
+ interface StepperProps {
751
+ steps: Step[];
752
+ currentStep: number;
753
+ className?: string;
754
+ }
755
+ declare function Stepper({ steps, currentStep, className }: StepperProps): react_jsx_runtime.JSX.Element;
756
+
757
+ interface SegmentedControlOption {
758
+ value: string;
759
+ label: string;
760
+ icon?: React.ReactNode;
761
+ }
762
+ interface SegmentedControlProps {
763
+ options: SegmentedControlOption[];
764
+ value: string;
765
+ onChange: (value: string) => void;
766
+ className?: string;
767
+ }
768
+ declare function SegmentedControl({ options, value, onChange, className }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
769
+
770
+ interface CommandItem {
771
+ id: string;
772
+ label: string;
773
+ shortcut?: string;
774
+ icon?: React.ReactNode;
775
+ onSelect: () => void;
776
+ }
777
+ interface CommandPaletteProps {
778
+ items: CommandItem[];
779
+ isOpen: boolean;
780
+ onClose: () => void;
781
+ placeholder?: string;
782
+ className?: string;
783
+ }
784
+ declare function CommandPalette({ items, isOpen, onClose, placeholder, className, }: CommandPaletteProps): react_jsx_runtime.JSX.Element | null;
785
+
786
+ interface CalendarProps {
787
+ value?: Date;
788
+ onChange?: (date: Date) => void;
789
+ className?: string;
790
+ }
791
+ declare function Calendar({ value, onChange, className }: CalendarProps): react_jsx_runtime.JSX.Element;
792
+
793
+ interface HoverCardProps {
794
+ trigger: React.ReactNode;
795
+ children: React.ReactNode;
796
+ className?: string;
797
+ }
798
+ declare function HoverCard({ trigger, children, className }: HoverCardProps): react_jsx_runtime.JSX.Element;
799
+
800
+ interface EmptyStateProps {
801
+ icon?: React.ReactNode;
802
+ title: string;
803
+ description?: string;
804
+ action?: React.ReactNode;
805
+ className?: string;
806
+ }
807
+ declare function EmptyState({ icon, title, description, action, className }: EmptyStateProps): react_jsx_runtime.JSX.Element;
808
+
809
+ interface FilterChip {
810
+ id: string;
811
+ label: ReactNode;
812
+ value?: ReactNode;
813
+ active?: boolean;
814
+ removeLabel?: string;
815
+ }
816
+ interface FilterChipsProps {
817
+ chips: readonly FilterChip[];
818
+ onToggle?: (id: string) => void;
819
+ onRemove?: (id: string) => void;
820
+ className?: string;
821
+ "aria-label"?: string;
822
+ }
823
+ declare function FilterChips({ chips, onToggle, onRemove, className, "aria-label": ariaLabel, }: FilterChipsProps): react_jsx_runtime.JSX.Element;
824
+
825
+ interface FilterMenuOption {
826
+ value: string;
827
+ label: ReactNode;
828
+ /** Plain-text label used for typeahead and accessible trigger naming. */
829
+ textValue?: string;
830
+ disabled?: boolean;
831
+ }
832
+ interface FilterMenuProps {
833
+ label: string;
834
+ value?: string;
835
+ options: readonly FilterMenuOption[];
836
+ onValueChange: (value: string) => void;
837
+ placeholder?: ReactNode;
838
+ align?: DropdownAlign;
839
+ disabled?: boolean;
840
+ className?: string;
841
+ }
842
+ interface SortMenuProps extends Omit<FilterMenuProps, "placeholder"> {
843
+ direction?: "ascending" | "descending";
844
+ }
845
+ interface FilterBarProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
846
+ children: ReactNode;
847
+ label?: string;
848
+ onClear?: () => void;
849
+ clearLabel?: string;
850
+ resultCount?: ReactNode;
851
+ }
852
+ declare function FilterBar({ children, label, onClear, clearLabel, resultCount, className, ...props }: FilterBarProps): react_jsx_runtime.JSX.Element;
853
+ declare function FilterMenu({ label, value, options, onValueChange, placeholder, align, disabled, className, }: FilterMenuProps): react_jsx_runtime.JSX.Element;
854
+ declare function SortMenu({ label, value, options, onValueChange, direction, align, disabled, className, }: SortMenuProps): react_jsx_runtime.JSX.Element;
855
+
856
+ interface FilterControlsProps extends ComponentPropsWithoutRef<"div"> {
857
+ children: ReactNode;
858
+ barProps?: Omit<FilterBarProps, "children">;
859
+ chipsProps?: FilterChipsProps;
860
+ emptyState?: ReactNode;
861
+ }
862
+ /** Combines filter controls and their applied chips without owning filter state. */
863
+ declare function FilterControls({ children, barProps, chipsProps, emptyState, className, ...props }: FilterControlsProps): react_jsx_runtime.JSX.Element;
864
+
865
+ interface CodeBlockProps {
866
+ code: string;
867
+ language?: string;
868
+ filename?: string;
869
+ className?: string;
870
+ }
871
+ declare function CodeBlock({ code, language, filename, className }: CodeBlockProps): react_jsx_runtime.JSX.Element;
872
+
873
+ interface ComponentPropRow {
874
+ name: string;
875
+ type: string;
876
+ defaultValue?: string;
877
+ description: ReactNode;
878
+ }
879
+ interface ComponentDocsProps {
880
+ title?: string;
881
+ rows: ComponentPropRow[];
882
+ defaultOpen?: boolean;
883
+ className?: string;
884
+ }
885
+ declare function ComponentDocs({ title, rows, defaultOpen, className }: ComponentDocsProps): react_jsx_runtime.JSX.Element;
886
+
887
+ interface ShowcaseWrapperProps {
888
+ id?: string;
889
+ title: string;
890
+ description?: string;
891
+ docs?: ReactNode;
892
+ code: string;
893
+ filename?: string;
894
+ children: ReactNode;
895
+ className?: string;
896
+ }
897
+ declare function ShowcaseWrapper({ id, title, description, docs, code, filename, children, className, }: ShowcaseWrapperProps): react_jsx_runtime.JSX.Element;
898
+
899
+ interface CollapsibleSectionProps {
900
+ title: string;
901
+ children: React.ReactNode;
902
+ defaultOpen?: boolean;
903
+ id?: string;
904
+ }
905
+ declare function CollapsibleSection({ title, children, defaultOpen, id }: CollapsibleSectionProps): react_jsx_runtime.JSX.Element;
906
+
907
+ type TextTone = "default" | "muted" | "subtle" | "brand" | "danger" | "success" | "warning" | "info" | "inherit";
908
+ type TextWeight = "normal" | "medium" | "semibold" | "bold" | "extrabold";
909
+ interface TextBaseProps {
910
+ tone?: TextTone;
911
+ weight?: TextWeight;
912
+ className?: string;
913
+ children?: ReactNode;
914
+ truncate?: boolean;
915
+ }
916
+ /** Display text — largest heading, use once per page */
917
+ declare function Display({ children, tone, weight, truncate, className, }: TextBaseProps): react_jsx_runtime.JSX.Element;
918
+ /** H1 — page title */
919
+ declare function H1({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
920
+ /** H2 — section title */
921
+ declare function H2({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
922
+ /** H3 — subsection title */
923
+ declare function H3({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
924
+ /** H4 — card / panel title */
925
+ declare function H4({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
926
+ /** H5 — small heading */
927
+ declare function H5({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
928
+ /** Body — default paragraph text */
929
+ declare function P({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
930
+ /** Small body text */
931
+ declare function Small({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
932
+ /** Extra small text — captions, meta */
933
+ declare function Caption({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
934
+ /** Overline — tiny eyebrow text */
935
+ declare function Overline({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
936
+ /** Lead — intro paragraph, larger and muted */
937
+ declare function Lead({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
938
+ /** Mono — code, data, technical text */
939
+ declare function Mono({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
940
+ /** Label — form labels, tags */
941
+ declare function Label({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
942
+
943
+ type AvatarSize = "xs" | "sm" | "md" | "lg" | "xl";
944
+ type AvatarStatus = "online" | "offline" | "away" | "busy";
945
+ interface AvatarProps extends ComponentPropsWithoutRef<"div"> {
946
+ /** Text initials or label (e.g. "JD") */
947
+ label?: string;
948
+ /** Optional icon or image */
949
+ icon?: ReactNode;
950
+ /** Size preset */
951
+ size?: AvatarSize;
952
+ /** Background colour class */
953
+ color?: string;
954
+ /** Status indicator dot */
955
+ status?: AvatarStatus;
956
+ /** Badge count or text */
957
+ badge?: string;
958
+ }
959
+ declare function Avatar({ label, icon, size, color, status, badge, className, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
960
+ interface AvatarGroupProps extends ComponentPropsWithoutRef<"div"> {
961
+ children?: ReactNode;
962
+ max?: number;
963
+ }
964
+ declare function AvatarGroup({ children, max, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
965
+
966
+ interface ProgressProps extends ComponentPropsWithoutRef<"div"> {
967
+ /** Current value (0-100) */
968
+ value: number;
969
+ /** Maximum value (default 100) */
970
+ max?: number;
971
+ /** Color class for the bar */
972
+ color?: string;
973
+ /** Optional label shown above */
974
+ label?: string;
975
+ /** Show percentage text */
976
+ showPercentage?: boolean;
977
+ /** Size variant */
978
+ size?: "sm" | "md" | "lg";
979
+ }
980
+ declare function Progress({ value, max, color, label, showPercentage, size, className, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
981
+
982
+ type ChatBubbleVariant = "from" | "self";
983
+ interface ChatBubbleProps extends ComponentPropsWithoutRef<"div"> {
984
+ /** Message content */
985
+ children?: ReactNode;
986
+ /** Avatar or icon */
987
+ avatar?: ReactNode;
988
+ /** Sender name */
989
+ name?: string;
990
+ /** Timestamp */
991
+ time?: string;
992
+ /** "from" = left/grey, "self" = right/brand */
993
+ variant?: ChatBubbleVariant;
994
+ /** Footer text (e.g. "Synced with...") */
995
+ footer?: ReactNode;
996
+ }
997
+ declare function ChatBubble({ children, avatar, name, time, variant, footer, className, ...props }: ChatBubbleProps): react_jsx_runtime.JSX.Element;
998
+
999
+ interface TerminalProps extends ComponentPropsWithoutRef<"div"> {
1000
+ /** Window title */
1001
+ title?: string;
1002
+ /** Terminal lines — array of { text, color? } or plain strings */
1003
+ lines?: Array<{
1004
+ text: string;
1005
+ color?: string;
1006
+ } | string>;
1007
+ /** Custom content instead of lines */
1008
+ children?: ReactNode;
1009
+ }
1010
+ declare function Terminal({ title, lines, children, className, ...props }: TerminalProps): react_jsx_runtime.JSX.Element;
1011
+
1012
+ type IndicatorPosition = "top-right" | "top-left" | "bottom-right" | "bottom-left";
1013
+ interface IndicatorProps extends ComponentPropsWithoutRef<"div"> {
1014
+ /** The element to attach the indicator to */
1015
+ children: ReactNode;
1016
+ /** Badge content (number, text, or "!") */
1017
+ badge?: ReactNode;
1018
+ /** Indicator colour */
1019
+ color?: string;
1020
+ /** Position of the indicator dot */
1021
+ position?: IndicatorPosition;
1022
+ /** Show a simple dot instead of a badge */
1023
+ dot?: boolean;
1024
+ /** Offset from corner (default: 2px) */
1025
+ offset?: number;
1026
+ }
1027
+ declare function Indicator({ children, badge, color, position, dot, className, ...props }: IndicatorProps): react_jsx_runtime.JSX.Element;
1028
+
1029
+ interface TimelineEvent {
1030
+ id: string;
1031
+ title: string;
1032
+ description?: string;
1033
+ time?: string;
1034
+ icon?: ReactNode;
1035
+ color?: string;
1036
+ }
1037
+ interface TimelineProps extends ComponentPropsWithoutRef<"ol"> {
1038
+ events: TimelineEvent[];
1039
+ /** Alternate left/right layout on large screens */
1040
+ alternate?: boolean;
1041
+ }
1042
+ declare function Timeline({ events, alternate, className, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
1043
+
1044
+ export { type DropdownAlign as $, Accordion as A, Badge as B, type ButtonSize as C, type ButtonVariant as D, CANONICAL_ICONS as E, Calendar as F, type CanonicalIconName as G, Caption as H, Card as I, type CardProps as J, type CardVariant as K, ChatBubble as L, type ChatBubbleProps as M, type ChatBubbleVariant as N, Checkbox as O, type CheckboxProps as P, CodeBlock as Q, CollapsibleSection as R, CommandPalette as S, ComponentDocs as T, type ComponentDocsProps as U, type ComponentPropRow as V, Display as W, Drawer as X, type DrawerProps as Y, type DrawerSide as Z, type DrawerSize as _, Alert as a, IconExclamation as a$, DropdownButton as a0, type DropdownButtonProps as a1, DropdownItem as a2, type DropdownItemProps as a3, DropdownMenu as a4, type DropdownMenuProps as a5, DropdownRadioGroup as a6, type DropdownRadioGroupProps as a7, DropdownRadioItem as a8, type DropdownRadioItemProps as a9, IconArrowDown as aA, IconArrowUp as aB, IconBase as aC, IconBell as aD, IconBellOff as aE, IconBolt as aF, IconBox as aG, IconByName as aH, IconCancel as aI, IconCheck as aJ, IconCheckCircle as aK, IconChevronDown as aL, IconChevronLeft as aM, IconChevronRight as aN, IconClipboardEdit as aO, IconClose as aP, IconCodePreview as aQ, IconCohort as aR, IconCommandCursor as aS, IconCopy as aT, IconCumulativeChart as aU, IconDataReel as aV, IconDatabase as aW, IconDownload as aX, IconEdit as aY, IconErrorOutline as aZ, IconEventStream as a_, type DropdownSide as aa, EmptyState as ab, FileUpload as ac, type FileUploadProps as ad, FilterBar as ae, type FilterBarProps as af, type FilterChip as ag, FilterChips as ah, type FilterChipsProps as ai, FilterControls as aj, type FilterControlsProps as ak, FilterMenu as al, type FilterMenuOption as am, type FilterMenuProps as an, FormField as ao, type FormFieldControlProps as ap, type FormFieldProps as aq, H1 as ar, H2 as as, H3 as at, H4 as au, H5 as av, HoverCard as aw, IconActivity as ax, type IconAliasName as ay, IconAreaChart as az, type AlertProps as b, Loader as b$, IconExperimentSplit as b0, IconFeatureGate as b1, IconFlag as b2, IconFlare as b3, IconFlask as b4, IconGift as b5, IconGridView as b6, IconHandClick as b7, IconHome as b8, IconInfo as b9, IconStar as bA, IconSubArrowRight as bB, IconSun as bC, IconSurveyCard as bD, IconSurveys as bE, IconSync as bF, IconTableChart as bG, IconTerminal as bH, IconToggle as bI, IconTrash as bJ, IconTuning as bK, IconUpload as bL, IconVolume as bM, IconVolumeOff as bN, Indicator as bO, type IndicatorPosition as bP, type IndicatorProps as bQ, Input as bR, type InputProps as bS, type InputSize as bT, type InputVariant as bU, Kbd as bV, type KbdPlatform as bW, type KbdProps as bX, type KbdVariant as bY, Label as bZ, Lead as b_, IconInsightBoard as ba, IconLayers as bb, IconListView as bc, IconLogout as bd, IconMail as be, IconMoon as bf, type IconName as bg, IconOldWindow as bh, IconPanelRight as bi, IconPerson as bj, IconPlayCircle as bk, IconPlus as bl, IconPremium as bm, type IconProps as bn, IconQueryEditor as bo, IconQueryStack as bp, IconRadar as bq, IconRecording as br, IconReplayFrame as bs, IconRobot as bt, IconRocket as bu, IconSave as bv, IconSearch as bw, IconSelectEvents as bx, IconShoppingCart as by, IconSpinner as bz, type AlertStatus as c, type ThemeManagerProps as c$, type LoaderProps as c0, type LoaderSize as c1, type LoaderVariant as c2, LoadingState as c3, type LoadingStateProps as c4, Modal as c5, type ModalProps as c6, type ModalSize as c7, Mono as c8, OLD_UI_ICONS as c9, type SettingsNavGroup as cA, type SettingsNavItem as cB, type SettingsNavProps as cC, ShowcaseWrapper as cD, Skeleton as cE, type SkeletonProps as cF, type SkeletonShape as cG, Small as cH, SortMenu as cI, type SortMenuProps as cJ, Stat as cK, type StatProps as cL, type StatTone as cM, Stepper as cN, type TabItem as cO, Table as cP, type TableColumn as cQ, type TableProps as cR, Tabs as cS, type TabsProps as cT, type TabsVariant as cU, Terminal as cV, type TerminalProps as cW, Textarea as cX, type TextareaProps as cY, ThemeDomSync as cZ, ThemeManager as c_, Overline as ca, P as cb, PH_ICONS as cc, PH_ICON_ALIASES as cd, Pagination as ce, type PaginationProps as cf, Panel as cg, type PanelProps as ch, Progress as ci, type ProgressProps as cj, Radio as ck, type RadioProps as cl, Range as cm, type RangeProps as cn, Rating as co, type RatingProps as cp, SearchGroup as cq, type SearchGroupProps as cr, SearchInput as cs, type SearchInputProps as ct, SegmentedControl as cu, Select as cv, type SelectProps as cw, SettingsLayout as cx, type SettingsLayoutProps as cy, SettingsNav as cz, AuthCard as d, ThemeSwitcher as d0, type ThemeSwitcherProps as d1, Timeline as d2, type TimelineEvent as d3, type TimelineProps as d4, Toast as d5, type ToastProps as d6, ToastStack as d7, type ToastStackProps as d8, type ToastStatus as d9, Toggle as da, type ToggleProps as db, type AuthCardProps as e, AuthDivider as f, type AuthDividerProps as g, AuthLayout as h, type AuthLayoutProps as i, Avatar as j, AvatarGroup as k, type AvatarGroupProps as l, type AvatarProps as m, type AvatarSize as n, type AvatarStatus as o, type BadgeProps as p, type BadgeSize as q, type BadgeVariant as r, type BreadcrumbItem as s, Breadcrumbs as t, type BreadcrumbsProps as u, Button as v, ButtonChrome as w, type ButtonChromeProps as x, type ButtonProps as y, type ButtonShape as z };