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

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/dist/chunk-SHF57J7U.mjs +2910 -0
  2. package/dist/index-CmS6hcUk.d.mts +753 -0
  3. package/dist/index-CmS6hcUk.d.ts +753 -0
  4. package/dist/index.d.mts +5 -755
  5. package/dist/index.d.ts +5 -755
  6. package/dist/index.js +43 -23
  7. package/dist/index.mjs +252 -2846
  8. package/dist/ui.d.mts +3 -0
  9. package/dist/ui.d.ts +3 -0
  10. package/dist/ui.js +2946 -0
  11. package/dist/ui.mjs +139 -0
  12. package/package.json +11 -3
  13. package/src/components/charts/index.ts +8 -0
  14. package/src/components/charts/ph-insight-charts.tsx +162 -0
  15. package/src/components/dashboard/DashboardFiltersBar.tsx +19 -0
  16. package/src/components/dashboard/DashboardGrid.tsx +23 -0
  17. package/src/components/dashboard/DashboardInsightPlaceholder.tsx +37 -0
  18. package/src/components/dashboard/DashboardKpiCard.tsx +25 -0
  19. package/src/components/dashboard/DashboardToolbar.tsx +23 -0
  20. package/src/components/dashboard/DashboardWell.tsx +10 -0
  21. package/src/components/dashboard/InsightMiniCard.tsx +26 -0
  22. package/src/components/dashboard/InsightShell.tsx +37 -0
  23. package/src/components/dashboard/InsightShellHeader.tsx +22 -0
  24. package/src/components/dashboard/MiniTrendBars.tsx +51 -0
  25. package/src/components/dashboard/index.ts +31 -0
  26. package/src/components/dashboard/types.ts +9 -0
  27. package/src/components/icons/IconBase.tsx +39 -0
  28. package/src/components/icons/createIconBase.tsx +27 -0
  29. package/src/components/icons/icons.tsx +367 -0
  30. package/src/components/icons/index.ts +3 -0
  31. package/src/components/sections/AccordionShowcase.tsx +45 -0
  32. package/src/components/sections/AlertShowcase.tsx +39 -0
  33. package/src/components/sections/AvatarShowcase.tsx +80 -0
  34. package/src/components/sections/BadgeShowcase.tsx +65 -0
  35. package/src/components/sections/ButtonShowcase.tsx +312 -0
  36. package/src/components/sections/CalendarShowcase.tsx +35 -0
  37. package/src/components/sections/CardShowcase.tsx +143 -0
  38. package/src/components/sections/ChartShowcase.tsx +190 -0
  39. package/src/components/sections/CodeMockupShowcase.tsx +56 -0
  40. package/src/components/sections/ColorPalette.tsx +117 -0
  41. package/src/components/sections/CommandPaletteShowcase.tsx +48 -0
  42. package/src/components/sections/CountdownShowcase.tsx +43 -0
  43. package/src/components/sections/DashboardShowcase.tsx +191 -0
  44. package/src/components/sections/DiffShowcase.tsx +70 -0
  45. package/src/components/sections/DrawerShowcase.tsx +97 -0
  46. package/src/components/sections/DropdownShowcase.tsx +100 -0
  47. package/src/components/sections/EmptyStateShowcase.tsx +50 -0
  48. package/src/components/sections/FilterChipsShowcase.tsx +50 -0
  49. package/src/components/sections/FormShowcase.tsx +126 -0
  50. package/src/components/sections/HoverCardShowcase.tsx +50 -0
  51. package/src/components/sections/IconShowcase.tsx +247 -0
  52. package/src/components/sections/IndicatorShowcase.tsx +52 -0
  53. package/src/components/sections/KbdShowcase.tsx +31 -0
  54. package/src/components/sections/ModalShowcase.tsx +210 -0
  55. package/src/components/sections/NavigationShowcase.tsx +199 -0
  56. package/src/components/sections/ProgressShowcase.tsx +85 -0
  57. package/src/components/sections/SegmentedControlShowcase.tsx +49 -0
  58. package/src/components/sections/SetupThemeShowcase.tsx +262 -0
  59. package/src/components/sections/StackShowcase.tsx +33 -0
  60. package/src/components/sections/StatShowcase.tsx +129 -0
  61. package/src/components/sections/StepperShowcase.tsx +37 -0
  62. package/src/components/sections/SwapShowcase.tsx +91 -0
  63. package/src/components/sections/TabShowcase.tsx +84 -0
  64. package/src/components/sections/TableShowcase.tsx +140 -0
  65. package/src/components/sections/TimelineShowcase.tsx +83 -0
  66. package/src/components/sections/ToastShowcase.tsx +108 -0
  67. package/src/components/sections/TooltipShowcase.tsx +44 -0
  68. package/src/components/sections/UtilityShowcase.tsx +81 -0
  69. package/src/components/ui/Accordion.tsx +77 -0
  70. package/src/components/ui/Alert.tsx +68 -0
  71. package/src/components/ui/Avatar.tsx +97 -0
  72. package/src/components/ui/Badge.tsx +55 -0
  73. package/src/components/ui/Button.tsx +110 -0
  74. package/src/components/ui/ButtonChrome.tsx +20 -0
  75. package/src/components/ui/Calendar.tsx +116 -0
  76. package/src/components/ui/Card.tsx +60 -0
  77. package/src/components/ui/ChatBubble.tsx +71 -0
  78. package/src/components/ui/CodeBlock.tsx +48 -0
  79. package/src/components/ui/CollapsibleSection.tsx +49 -0
  80. package/src/components/ui/CommandPalette.tsx +137 -0
  81. package/src/components/ui/ComponentDocs.tsx +52 -0
  82. package/src/components/ui/Drawer.tsx +71 -0
  83. package/src/components/ui/DropdownMenu.tsx +138 -0
  84. package/src/components/ui/EmptyState.tsx +33 -0
  85. package/src/components/ui/FilterChips.tsx +50 -0
  86. package/src/components/ui/HoverCard.tsx +36 -0
  87. package/src/components/ui/Indicator.tsx +61 -0
  88. package/src/components/ui/Input.tsx +359 -0
  89. package/src/components/ui/Kbd.tsx +38 -0
  90. package/src/components/ui/Modal.tsx +75 -0
  91. package/src/components/ui/Navigation.tsx +94 -0
  92. package/src/components/ui/Panel.tsx +18 -0
  93. package/src/components/ui/Progress.tsx +59 -0
  94. package/src/components/ui/Rating.tsx +65 -0
  95. package/src/components/ui/SearchInput.tsx +106 -0
  96. package/src/components/ui/SegmentedControl.tsx +44 -0
  97. package/src/components/ui/ShowcaseWrapper.tsx +136 -0
  98. package/src/components/ui/Stat.tsx +39 -0
  99. package/src/components/ui/Stepper.tsx +75 -0
  100. package/src/components/ui/Table.tsx +55 -0
  101. package/src/components/ui/Tabs.tsx +53 -0
  102. package/src/components/ui/Terminal.tsx +54 -0
  103. package/src/components/ui/ThemeDomSync.tsx +17 -0
  104. package/src/components/ui/ThemeManager.tsx +18 -0
  105. package/src/components/ui/ThemeSwitcher.tsx +46 -0
  106. package/src/components/ui/Timeline.tsx +60 -0
  107. package/src/components/ui/Toast.tsx +70 -0
  108. package/src/components/ui/Typography.tsx +129 -0
  109. package/src/components/ui/index.ts +92 -0
  110. package/src/styles/themes.css +118 -0
@@ -0,0 +1,753 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { ButtonHTMLAttributes, ReactNode, HTMLAttributes, ComponentPropsWithoutRef, CSSProperties, SVGAttributes } from 'react';
3
+
4
+ type ButtonVariant = "primary" | "secondary" | "tertiary" | "signal" | "accent" | "neutral" | "info" | "success" | "warning" | "danger" | "ghost" | "link";
5
+ type ButtonSize = "xs" | "sm" | "md" | "lg";
6
+ type ButtonShape = "default" | "circle" | "square" | "wide";
7
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
8
+ variant?: ButtonVariant;
9
+ size?: ButtonSize;
10
+ shape?: ButtonShape;
11
+ outline?: boolean;
12
+ /** Toolbar split control (Run ▾) — adds divider before trailing icon slot */
13
+ split?: boolean;
14
+ icon?: ReactNode;
15
+ sideIcon?: ReactNode;
16
+ children?: ReactNode;
17
+ }
18
+ /**
19
+ * PostHog LemonButton parity — primary/secondary use ::before border ring + ::after face/ridge
20
+ * (see PostHog `LemonButton.scss`). Prefer this over raw `<button className="ph-btn …">`.
21
+ */
22
+ declare function Button({ variant, size, shape, outline, split, icon, sideIcon, className, children, type, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
23
+
24
+ interface ButtonChromeProps {
25
+ label?: ReactNode;
26
+ icon?: ReactNode;
27
+ sideIcon?: ReactNode;
28
+ split?: boolean;
29
+ }
30
+ /** Inner face for Lemon primary/secondary — keeps labels above ::after ridge. */
31
+ declare function ButtonChrome({ label, icon, sideIcon, split }: ButtonChromeProps): react_jsx_runtime.JSX.Element;
32
+
33
+ type AlertStatus = "info" | "success" | "warning" | "danger";
34
+ interface AlertProps {
35
+ status?: AlertStatus;
36
+ title?: string;
37
+ description?: string;
38
+ icon?: ReactNode;
39
+ children?: ReactNode;
40
+ className?: string;
41
+ onDismiss?: () => void;
42
+ }
43
+ declare function Alert({ status, title, description, icon, children, className, onDismiss, }: AlertProps): react_jsx_runtime.JSX.Element;
44
+
45
+ type BadgeVariant = "brand" | "neutral" | "success" | "warning" | "danger" | "info" | "outline";
46
+ type BadgeSize = "sm" | "md";
47
+ interface BadgeProps {
48
+ variant?: BadgeVariant;
49
+ size?: BadgeSize;
50
+ children?: ReactNode;
51
+ className?: string;
52
+ }
53
+ declare function Badge({ variant, size, children, className, }: BadgeProps): react_jsx_runtime.JSX.Element;
54
+
55
+ type CardVariant = "default" | "outlined" | "elevated" | "highlighted";
56
+ interface CardProps {
57
+ children?: ReactNode;
58
+ title?: ReactNode;
59
+ description?: ReactNode;
60
+ actions?: ReactNode;
61
+ footer?: ReactNode;
62
+ media?: ReactNode;
63
+ variant?: CardVariant;
64
+ className?: string;
65
+ bodyClassName?: string;
66
+ }
67
+ declare function Card({ children, title, description, actions, footer, media, variant, className, bodyClassName, }: CardProps): react_jsx_runtime.JSX.Element;
68
+
69
+ type DrawerSide = "left" | "right";
70
+ type DrawerSize = "sm" | "md" | "lg";
71
+ interface DrawerProps {
72
+ open?: boolean;
73
+ onClose?: () => void;
74
+ title?: ReactNode;
75
+ children?: ReactNode;
76
+ footer?: ReactNode;
77
+ side?: DrawerSide;
78
+ size?: DrawerSize;
79
+ className?: string;
80
+ showCloseButton?: boolean;
81
+ }
82
+ declare function Drawer({ open, onClose, title, children, footer, side, size, className, showCloseButton, }: DrawerProps): react_jsx_runtime.JSX.Element | null;
83
+
84
+ type KbdVariant = "shortcut" | "key" | "token";
85
+ interface KbdProps extends HTMLAttributes<HTMLElement> {
86
+ variant?: KbdVariant;
87
+ keys?: ReactNode[];
88
+ children?: ReactNode;
89
+ }
90
+ declare function Kbd({ variant, keys, children, className, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
91
+
92
+ type DropdownAlign = "start" | "end";
93
+ interface DropdownMenuProps extends HTMLAttributes<HTMLDetailsElement> {
94
+ /** Custom trigger node (avatar, icon chip, etc.) */
95
+ trigger: ReactNode;
96
+ /** Accessible name when trigger has no visible text */
97
+ "aria-label": string;
98
+ children: ReactNode;
99
+ align?: DropdownAlign;
100
+ panelClassName?: string;
101
+ }
102
+ interface DropdownButtonProps extends Omit<HTMLAttributes<HTMLDetailsElement>, "children"> {
103
+ /** Visible button label */
104
+ label: string;
105
+ variant?: "primary" | "secondary" | "accent";
106
+ outline?: boolean;
107
+ size?: ButtonSize;
108
+ /** Split control (Run ▾) — divider before trailing chevron */
109
+ split?: boolean;
110
+ icon?: ReactNode;
111
+ /** Defaults to chevron when omitted */
112
+ sideIcon?: ReactNode;
113
+ children: ReactNode;
114
+ align?: DropdownAlign;
115
+ panelClassName?: string;
116
+ /** Overrides accessible name; defaults to `label` */
117
+ "aria-label"?: string;
118
+ }
119
+ /** Generic `<details>` menu — pass any trigger (avatar, icon chip, etc.). */
120
+ declare function DropdownMenu({ trigger, children, align, className, panelClassName, "aria-label": ariaLabel, ...props }: DropdownMenuProps): react_jsx_runtime.JSX.Element;
121
+ /** Lemon-styled dropdown trigger (primary / secondary / accent) with labelled chrome. */
122
+ declare function DropdownButton({ label, variant, outline, size, split, icon, sideIcon, children, align, className, panelClassName, "aria-label": ariaLabel, ...props }: DropdownButtonProps): react_jsx_runtime.JSX.Element;
123
+ declare function DropdownItem({ className, children, ...props }: ButtonHTMLAttributes<HTMLButtonElement>): react_jsx_runtime.JSX.Element;
124
+
125
+ type InputSize = "sm" | "md" | "lg";
126
+ type InputVariant = "default" | "ghost";
127
+ interface InputProps extends Omit<ComponentPropsWithoutRef<"input">, "size"> {
128
+ label?: string;
129
+ hideLabel?: boolean;
130
+ error?: string;
131
+ helperText?: string;
132
+ size?: InputSize;
133
+ variant?: InputVariant;
134
+ wrapperClassName?: string;
135
+ }
136
+ declare function Input({ id: idProp, label, hideLabel, error, helperText, size, variant, className, wrapperClassName, disabled, ...props }: InputProps): react_jsx_runtime.JSX.Element;
137
+ interface SelectProps extends Omit<ComponentPropsWithoutRef<"select">, "size"> {
138
+ label?: string;
139
+ hideLabel?: boolean;
140
+ error?: string;
141
+ helperText?: string;
142
+ size?: InputSize;
143
+ wrapperClassName?: string;
144
+ children: ReactNode;
145
+ }
146
+ declare function Select({ id: idProp, label, hideLabel, error, helperText, size, className, wrapperClassName, disabled, children, ...props }: SelectProps): react_jsx_runtime.JSX.Element;
147
+ interface TextareaProps extends Omit<ComponentPropsWithoutRef<"textarea">, "size"> {
148
+ label?: string;
149
+ hideLabel?: boolean;
150
+ error?: string;
151
+ helperText?: string;
152
+ size?: InputSize;
153
+ wrapperClassName?: string;
154
+ }
155
+ declare function Textarea({ id: idProp, label, hideLabel, error, helperText, size, className, wrapperClassName, disabled, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
156
+ interface CheckboxProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
157
+ label?: ReactNode;
158
+ error?: string;
159
+ helperText?: string;
160
+ wrapperClassName?: string;
161
+ }
162
+ declare function Checkbox({ id: idProp, label, error, helperText, className, wrapperClassName, disabled, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
163
+ interface RadioProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
164
+ label?: ReactNode;
165
+ wrapperClassName?: string;
166
+ }
167
+ declare function Radio({ id: idProp, label, className, wrapperClassName, disabled, ...props }: RadioProps): react_jsx_runtime.JSX.Element;
168
+ interface ToggleProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
169
+ label?: ReactNode;
170
+ wrapperClassName?: string;
171
+ }
172
+ declare function Toggle({ id: idProp, label, className, wrapperClassName, disabled, ...props }: ToggleProps): react_jsx_runtime.JSX.Element;
173
+ interface RangeProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
174
+ label?: string;
175
+ minLabel?: string;
176
+ maxLabel?: string;
177
+ valueLabel?: string;
178
+ wrapperClassName?: string;
179
+ }
180
+ declare function Range({ label, minLabel, maxLabel, valueLabel, wrapperClassName, className, ...props }: RangeProps): react_jsx_runtime.JSX.Element;
181
+ interface FileUploadProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
182
+ label?: string;
183
+ prompt?: string;
184
+ wrapperClassName?: string;
185
+ }
186
+ declare function FileUpload({ label, prompt, wrapperClassName, className, ...props }: FileUploadProps): react_jsx_runtime.JSX.Element;
187
+
188
+ type ModalSize = "sm" | "md" | "lg" | "xl" | "full";
189
+ interface ModalProps {
190
+ open?: boolean;
191
+ onClose?: () => void;
192
+ title?: string;
193
+ description?: string;
194
+ children?: ReactNode;
195
+ footer?: ReactNode;
196
+ size?: ModalSize;
197
+ className?: string;
198
+ showCloseButton?: boolean;
199
+ }
200
+ declare function Modal({ open, onClose, title, description, children, footer, size, className, showCloseButton, }: ModalProps): react_jsx_runtime.JSX.Element | null;
201
+
202
+ interface BreadcrumbItem {
203
+ label: string;
204
+ href?: string;
205
+ current?: boolean;
206
+ }
207
+ interface BreadcrumbsProps {
208
+ items: BreadcrumbItem[];
209
+ label?: string;
210
+ className?: string;
211
+ }
212
+ declare function Breadcrumbs({ items, label, className }: BreadcrumbsProps): react_jsx_runtime.JSX.Element;
213
+ interface PaginationProps {
214
+ page: number;
215
+ totalPages: number;
216
+ onPageChange?: (page: number) => void;
217
+ label?: string;
218
+ compact?: boolean;
219
+ className?: string;
220
+ }
221
+ declare function Pagination({ page, totalPages, onPageChange, label, compact, className, }: PaginationProps): react_jsx_runtime.JSX.Element;
222
+
223
+ interface PanelProps extends Omit<ComponentPropsWithoutRef<"div">, "title"> {
224
+ title?: ReactNode;
225
+ description?: ReactNode;
226
+ children?: ReactNode;
227
+ }
228
+ declare function Panel({ title, description, children, className, ...props }: PanelProps): react_jsx_runtime.JSX.Element;
229
+
230
+ interface RatingProps extends Omit<ComponentPropsWithoutRef<"div">, "onChange"> {
231
+ label?: string;
232
+ value?: number;
233
+ max?: number;
234
+ readOnly?: boolean;
235
+ onChange?: (value: number) => void;
236
+ wrapperClassName?: string;
237
+ }
238
+ declare function Rating({ label, value, max, readOnly, onChange, className, wrapperClassName, ...props }: RatingProps): react_jsx_runtime.JSX.Element;
239
+
240
+ interface SearchInputProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
241
+ /** Associated label text — always rendered (visually hidden when `hideLabel`) */
242
+ label?: string;
243
+ hideLabel?: boolean;
244
+ /** Optional shortcut hint shown inside the field (e.g. "⌘K") */
245
+ shortcut?: string;
246
+ density?: "default" | "compact";
247
+ wrapperClassName?: string;
248
+ }
249
+ /** Labelled search field — use in nav bars and toolbars. */
250
+ declare function SearchInput({ id: idProp, label, hideLabel, shortcut, density, className, wrapperClassName, placeholder, ...props }: SearchInputProps): react_jsx_runtime.JSX.Element;
251
+ interface SearchGroupProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
252
+ label?: string;
253
+ submitLabel?: string;
254
+ wrapperClassName?: string;
255
+ }
256
+ /** Input + primary search — one control shell, 1px vertical seam, matched height to `ph-input`. */
257
+ declare function SearchGroup({ id: idProp, label, submitLabel, placeholder, wrapperClassName, className, ...props }: SearchGroupProps): react_jsx_runtime.JSX.Element;
258
+
259
+ interface TableColumn<T> {
260
+ key: string;
261
+ header: ReactNode;
262
+ cell: (row: T) => ReactNode;
263
+ className?: string;
264
+ }
265
+ interface TableProps<T> {
266
+ data: T[];
267
+ columns: TableColumn<T>[];
268
+ zebra?: boolean;
269
+ compact?: boolean;
270
+ ribbon?: boolean;
271
+ getRowStyle?: (row: T) => CSSProperties | undefined;
272
+ className?: string;
273
+ caption?: string;
274
+ }
275
+ declare function Table<T>({ data, columns, zebra, compact, ribbon, getRowStyle, className, caption, }: TableProps<T>): react_jsx_runtime.JSX.Element;
276
+
277
+ type StatTone = "default" | "brand" | "blue" | "purple" | "warning";
278
+ interface StatProps extends ComponentPropsWithoutRef<"article"> {
279
+ icon?: ReactNode;
280
+ label: ReactNode;
281
+ value: ReactNode;
282
+ footer?: ReactNode;
283
+ tone?: StatTone;
284
+ }
285
+ declare function Stat({ icon, label, value, footer, tone, className, ...props }: StatProps): react_jsx_runtime.JSX.Element;
286
+
287
+ type ToastStatus = "info" | "success" | "warning" | "danger";
288
+ interface ToastProps {
289
+ status?: ToastStatus;
290
+ title: string;
291
+ description?: string;
292
+ onDismiss?: () => void;
293
+ className?: string;
294
+ }
295
+ declare function Toast({ status, title, description, onDismiss, className, }: ToastProps): react_jsx_runtime.JSX.Element;
296
+ interface ToastStackProps {
297
+ children?: ReactNode;
298
+ className?: string;
299
+ }
300
+ declare function ToastStack({ children, className }: ToastStackProps): react_jsx_runtime.JSX.Element;
301
+
302
+ interface TabItem {
303
+ value: string;
304
+ label: string;
305
+ }
306
+ type TabsVariant = "pill" | "underline";
307
+ interface TabsProps {
308
+ items: TabItem[];
309
+ value: string;
310
+ onChange: (value: string) => void;
311
+ variant?: TabsVariant;
312
+ className?: string;
313
+ }
314
+ declare function Tabs({ items, value, onChange, variant, className }: TabsProps): react_jsx_runtime.JSX.Element;
315
+
316
+ /**
317
+ * Re-applies `html[data-theme]` after React commits. Hydration can clear attributes
318
+ * that were set only by `THEME_INIT_SCRIPT` — without this sync, `:root`-scoped
319
+ * light tokens effectively win visually.
320
+ */
321
+ declare function ThemeDomSync(): null;
322
+
323
+ interface ThemeManagerProps {
324
+ children?: ReactNode;
325
+ }
326
+ /** Client wrapper that keeps html[data-theme] synced with localStorage. */
327
+ declare function ThemeManager({ children }: ThemeManagerProps): react_jsx_runtime.JSX.Element;
328
+
329
+ interface ThemeSwitcherProps {
330
+ className?: string;
331
+ }
332
+ /** Colour-only theme picker — persists to localStorage and sets html[data-theme]. */
333
+ declare function ThemeSwitcher({ className }: ThemeSwitcherProps): react_jsx_runtime.JSX.Element;
334
+
335
+ interface IconProps extends SVGAttributes<SVGSVGElement> {
336
+ /** Pixel size or CSS length — defaults to `1em` (Lemon parity). */
337
+ size?: number | string;
338
+ }
339
+ /** Base SVG wrapper — mirrors PostHog `LemonIconBase` + `.LemonIcon` metrics. */
340
+ declare function IconBase({ className, size, children, viewBox, fill, xmlns, focusable, ...props }: IconProps): react_jsx_runtime.JSX.Element;
341
+
342
+ declare const IconAreaChart: (props: IconProps) => react_jsx_runtime.JSX.Element;
343
+ declare const IconCumulativeChart: (props: IconProps) => react_jsx_runtime.JSX.Element;
344
+ declare const IconTableChart: (props: IconProps) => react_jsx_runtime.JSX.Element;
345
+ declare const IconHandClick: (props: IconProps) => react_jsx_runtime.JSX.Element;
346
+ declare const IconSurveys: (props: IconProps) => react_jsx_runtime.JSX.Element;
347
+ declare const IconCohort: (props: IconProps) => react_jsx_runtime.JSX.Element;
348
+ declare const IconRecording: (props: IconProps) => react_jsx_runtime.JSX.Element;
349
+ declare const IconFlare: (props: IconProps) => react_jsx_runtime.JSX.Element;
350
+ declare const IconSelectEvents: (props: IconProps) => react_jsx_runtime.JSX.Element;
351
+ declare const IconClipboardEdit: (props: IconProps) => react_jsx_runtime.JSX.Element;
352
+ declare const IconQueryEditor: (props: IconProps) => react_jsx_runtime.JSX.Element;
353
+ declare const IconTuning: (props: IconProps) => react_jsx_runtime.JSX.Element;
354
+ declare const IconSync: (props: IconProps) => react_jsx_runtime.JSX.Element;
355
+ declare const IconPlayCircle: (props: IconProps) => react_jsx_runtime.JSX.Element;
356
+ declare const IconGridView: (props: IconProps) => react_jsx_runtime.JSX.Element;
357
+ declare const IconListView: (props: IconProps) => react_jsx_runtime.JSX.Element;
358
+ declare const IconPremium: (props: IconProps) => react_jsx_runtime.JSX.Element;
359
+ declare const IconGift: (props: IconProps) => react_jsx_runtime.JSX.Element;
360
+ declare const IconRobot: (props: IconProps) => react_jsx_runtime.JSX.Element;
361
+ declare const IconExclamation: (props: IconProps) => react_jsx_runtime.JSX.Element;
362
+ declare const IconErrorOutline: (props: IconProps) => react_jsx_runtime.JSX.Element;
363
+ declare const IconCancel: (props: IconProps) => react_jsx_runtime.JSX.Element;
364
+ declare const IconCheckCircle: (props: IconProps) => react_jsx_runtime.JSX.Element;
365
+ declare const IconArrowUp: (props: IconProps) => react_jsx_runtime.JSX.Element;
366
+ declare const IconArrowDown: (props: IconProps) => react_jsx_runtime.JSX.Element;
367
+ declare const IconChevronLeft: (props: IconProps) => react_jsx_runtime.JSX.Element;
368
+ declare const IconChevronRight: (props: IconProps) => react_jsx_runtime.JSX.Element;
369
+ declare const IconChevronDown: (props: IconProps) => react_jsx_runtime.JSX.Element;
370
+ declare const IconSubArrowRight: (props: IconProps) => react_jsx_runtime.JSX.Element;
371
+ declare const IconSearch: (props: IconProps) => react_jsx_runtime.JSX.Element;
372
+ declare const IconBell: (props: IconProps) => react_jsx_runtime.JSX.Element;
373
+ declare const IconBellOff: (props: IconProps) => react_jsx_runtime.JSX.Element;
374
+ declare const IconPerson: (props: IconProps) => react_jsx_runtime.JSX.Element;
375
+ declare const IconHome: (props: IconProps) => react_jsx_runtime.JSX.Element;
376
+ declare const IconPanelRight: (props: IconProps) => react_jsx_runtime.JSX.Element;
377
+ declare const IconPlus: (props: IconProps) => react_jsx_runtime.JSX.Element;
378
+ declare const IconCheck: (props: IconProps) => react_jsx_runtime.JSX.Element;
379
+ declare const IconClose: (props: IconProps) => react_jsx_runtime.JSX.Element;
380
+ declare const IconTrash: (props: IconProps) => react_jsx_runtime.JSX.Element;
381
+ declare const IconDownload: (props: IconProps) => react_jsx_runtime.JSX.Element;
382
+ declare const IconUpload: (props: IconProps) => react_jsx_runtime.JSX.Element;
383
+ declare const IconSave: (props: IconProps) => react_jsx_runtime.JSX.Element;
384
+ declare const IconCopy: (props: IconProps) => react_jsx_runtime.JSX.Element;
385
+ declare const IconEdit: (props: IconProps) => react_jsx_runtime.JSX.Element;
386
+ declare const IconLogout: (props: IconProps) => react_jsx_runtime.JSX.Element;
387
+ declare const IconStar: (props: IconProps) => react_jsx_runtime.JSX.Element;
388
+ declare const IconMail: (props: IconProps) => react_jsx_runtime.JSX.Element;
389
+ declare const IconShoppingCart: (props: IconProps) => react_jsx_runtime.JSX.Element;
390
+ declare const IconMoon: (props: IconProps) => react_jsx_runtime.JSX.Element;
391
+ declare const IconSun: (props: IconProps) => react_jsx_runtime.JSX.Element;
392
+ declare const IconVolume: (props: IconProps) => react_jsx_runtime.JSX.Element;
393
+ declare const IconVolumeOff: (props: IconProps) => react_jsx_runtime.JSX.Element;
394
+ declare const IconFlag: (props: IconProps) => react_jsx_runtime.JSX.Element;
395
+ declare const IconDatabase: (props: IconProps) => react_jsx_runtime.JSX.Element;
396
+ declare const IconLayers: (props: IconProps) => react_jsx_runtime.JSX.Element;
397
+ declare const IconBox: (props: IconProps) => react_jsx_runtime.JSX.Element;
398
+ declare const IconBolt: (props: IconProps) => react_jsx_runtime.JSX.Element;
399
+ declare const IconRadar: (props: IconProps) => react_jsx_runtime.JSX.Element;
400
+ declare const IconToggle: (props: IconProps) => react_jsx_runtime.JSX.Element;
401
+ declare const IconRocket: (props: IconProps) => react_jsx_runtime.JSX.Element;
402
+ declare const IconTerminal: (props: IconProps) => react_jsx_runtime.JSX.Element;
403
+ declare const IconActivity: (props: IconProps) => react_jsx_runtime.JSX.Element;
404
+ declare const IconFlask: (props: IconProps) => react_jsx_runtime.JSX.Element;
405
+ /** Busy-state spinner — PostHog `IconSync` with spin animation. */
406
+ declare function IconSpinner({ className, ...props }: IconProps): react_jsx_runtime.JSX.Element;
407
+ /** Alias map for showcase / migration from Lucide names. */
408
+ declare const PH_ICONS: {
409
+ readonly activity: (props: IconProps) => react_jsx_runtime.JSX.Element;
410
+ readonly areaChart: (props: IconProps) => react_jsx_runtime.JSX.Element;
411
+ readonly arrowDown: (props: IconProps) => react_jsx_runtime.JSX.Element;
412
+ readonly arrowUp: (props: IconProps) => react_jsx_runtime.JSX.Element;
413
+ readonly bell: (props: IconProps) => react_jsx_runtime.JSX.Element;
414
+ readonly bellOff: (props: IconProps) => react_jsx_runtime.JSX.Element;
415
+ readonly bolt: (props: IconProps) => react_jsx_runtime.JSX.Element;
416
+ readonly box: (props: IconProps) => react_jsx_runtime.JSX.Element;
417
+ readonly cancel: (props: IconProps) => react_jsx_runtime.JSX.Element;
418
+ readonly check: (props: IconProps) => react_jsx_runtime.JSX.Element;
419
+ readonly checkCircle: (props: IconProps) => react_jsx_runtime.JSX.Element;
420
+ readonly chevronDown: (props: IconProps) => react_jsx_runtime.JSX.Element;
421
+ readonly chevronLeft: (props: IconProps) => react_jsx_runtime.JSX.Element;
422
+ readonly chevronRight: (props: IconProps) => react_jsx_runtime.JSX.Element;
423
+ readonly clipboard: (props: IconProps) => react_jsx_runtime.JSX.Element;
424
+ readonly close: (props: IconProps) => react_jsx_runtime.JSX.Element;
425
+ readonly cohort: (props: IconProps) => react_jsx_runtime.JSX.Element;
426
+ readonly copy: (props: IconProps) => react_jsx_runtime.JSX.Element;
427
+ readonly cumulativeChart: (props: IconProps) => react_jsx_runtime.JSX.Element;
428
+ readonly database: (props: IconProps) => react_jsx_runtime.JSX.Element;
429
+ readonly download: (props: IconProps) => react_jsx_runtime.JSX.Element;
430
+ readonly edit: (props: IconProps) => react_jsx_runtime.JSX.Element;
431
+ readonly errorOutline: (props: IconProps) => react_jsx_runtime.JSX.Element;
432
+ readonly exclamation: (props: IconProps) => react_jsx_runtime.JSX.Element;
433
+ readonly flag: (props: IconProps) => react_jsx_runtime.JSX.Element;
434
+ readonly flare: (props: IconProps) => react_jsx_runtime.JSX.Element;
435
+ readonly flask: (props: IconProps) => react_jsx_runtime.JSX.Element;
436
+ readonly gift: (props: IconProps) => react_jsx_runtime.JSX.Element;
437
+ readonly grid: (props: IconProps) => react_jsx_runtime.JSX.Element;
438
+ readonly handClick: (props: IconProps) => react_jsx_runtime.JSX.Element;
439
+ readonly home: (props: IconProps) => react_jsx_runtime.JSX.Element;
440
+ readonly info: (props: IconProps) => react_jsx_runtime.JSX.Element;
441
+ readonly layers: (props: IconProps) => react_jsx_runtime.JSX.Element;
442
+ readonly list: (props: IconProps) => react_jsx_runtime.JSX.Element;
443
+ readonly logout: (props: IconProps) => react_jsx_runtime.JSX.Element;
444
+ readonly mail: (props: IconProps) => react_jsx_runtime.JSX.Element;
445
+ readonly moon: (props: IconProps) => react_jsx_runtime.JSX.Element;
446
+ readonly panelRight: (props: IconProps) => react_jsx_runtime.JSX.Element;
447
+ readonly person: (props: IconProps) => react_jsx_runtime.JSX.Element;
448
+ readonly play: (props: IconProps) => react_jsx_runtime.JSX.Element;
449
+ readonly plus: (props: IconProps) => react_jsx_runtime.JSX.Element;
450
+ readonly premium: (props: IconProps) => react_jsx_runtime.JSX.Element;
451
+ readonly queryEditor: (props: IconProps) => react_jsx_runtime.JSX.Element;
452
+ readonly radar: (props: IconProps) => react_jsx_runtime.JSX.Element;
453
+ readonly recording: (props: IconProps) => react_jsx_runtime.JSX.Element;
454
+ readonly robot: (props: IconProps) => react_jsx_runtime.JSX.Element;
455
+ readonly rocket: (props: IconProps) => react_jsx_runtime.JSX.Element;
456
+ readonly save: (props: IconProps) => react_jsx_runtime.JSX.Element;
457
+ readonly search: (props: IconProps) => react_jsx_runtime.JSX.Element;
458
+ readonly selectEvents: (props: IconProps) => react_jsx_runtime.JSX.Element;
459
+ readonly settings: (props: IconProps) => react_jsx_runtime.JSX.Element;
460
+ readonly shoppingCart: (props: IconProps) => react_jsx_runtime.JSX.Element;
461
+ readonly spinner: typeof IconSpinner;
462
+ readonly star: (props: IconProps) => react_jsx_runtime.JSX.Element;
463
+ readonly subArrowRight: (props: IconProps) => react_jsx_runtime.JSX.Element;
464
+ readonly sun: (props: IconProps) => react_jsx_runtime.JSX.Element;
465
+ readonly surveys: (props: IconProps) => react_jsx_runtime.JSX.Element;
466
+ readonly sync: (props: IconProps) => react_jsx_runtime.JSX.Element;
467
+ readonly tableChart: (props: IconProps) => react_jsx_runtime.JSX.Element;
468
+ readonly terminal: (props: IconProps) => react_jsx_runtime.JSX.Element;
469
+ readonly toggle: (props: IconProps) => react_jsx_runtime.JSX.Element;
470
+ readonly trash: (props: IconProps) => react_jsx_runtime.JSX.Element;
471
+ readonly trendingUp: (props: IconProps) => react_jsx_runtime.JSX.Element;
472
+ readonly upload: (props: IconProps) => react_jsx_runtime.JSX.Element;
473
+ readonly volume: (props: IconProps) => react_jsx_runtime.JSX.Element;
474
+ readonly volumeOff: (props: IconProps) => react_jsx_runtime.JSX.Element;
475
+ readonly warning: (props: IconProps) => react_jsx_runtime.JSX.Element;
476
+ readonly xCircle: (props: IconProps) => react_jsx_runtime.JSX.Element;
477
+ };
478
+ type IconName = keyof typeof PH_ICONS;
479
+ declare function IconByName({ name, ...props }: IconProps & {
480
+ name: IconName;
481
+ }): react_jsx_runtime.JSX.Element;
482
+
483
+ interface AccordionItem {
484
+ id: string;
485
+ title: string;
486
+ content: React.ReactNode;
487
+ }
488
+ interface AccordionProps {
489
+ items: AccordionItem[];
490
+ allowMultiple?: boolean;
491
+ defaultOpen?: string[];
492
+ className?: string;
493
+ }
494
+ declare function Accordion({ items, allowMultiple, defaultOpen, className, }: AccordionProps): react_jsx_runtime.JSX.Element;
495
+
496
+ interface Step {
497
+ id: string;
498
+ label: string;
499
+ description?: string;
500
+ status?: "pending" | "current" | "completed" | "error";
501
+ }
502
+ interface StepperProps {
503
+ steps: Step[];
504
+ currentStep: number;
505
+ className?: string;
506
+ }
507
+ declare function Stepper({ steps, currentStep, className }: StepperProps): react_jsx_runtime.JSX.Element;
508
+
509
+ interface SegmentedControlOption {
510
+ value: string;
511
+ label: string;
512
+ icon?: React.ReactNode;
513
+ }
514
+ interface SegmentedControlProps {
515
+ options: SegmentedControlOption[];
516
+ value: string;
517
+ onChange: (value: string) => void;
518
+ className?: string;
519
+ }
520
+ declare function SegmentedControl({ options, value, onChange, className }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
521
+
522
+ interface CommandItem {
523
+ id: string;
524
+ label: string;
525
+ shortcut?: string;
526
+ icon?: React.ReactNode;
527
+ onSelect: () => void;
528
+ }
529
+ interface CommandPaletteProps {
530
+ items: CommandItem[];
531
+ isOpen: boolean;
532
+ onClose: () => void;
533
+ placeholder?: string;
534
+ className?: string;
535
+ }
536
+ declare function CommandPalette({ items, isOpen, onClose, placeholder, className, }: CommandPaletteProps): react_jsx_runtime.JSX.Element | null;
537
+
538
+ interface CalendarProps {
539
+ value?: Date;
540
+ onChange?: (date: Date) => void;
541
+ className?: string;
542
+ }
543
+ declare function Calendar({ value, onChange, className }: CalendarProps): react_jsx_runtime.JSX.Element;
544
+
545
+ interface HoverCardProps {
546
+ trigger: React.ReactNode;
547
+ children: React.ReactNode;
548
+ className?: string;
549
+ }
550
+ declare function HoverCard({ trigger, children, className }: HoverCardProps): react_jsx_runtime.JSX.Element;
551
+
552
+ interface EmptyStateProps {
553
+ icon?: React.ReactNode;
554
+ title: string;
555
+ description?: string;
556
+ action?: React.ReactNode;
557
+ className?: string;
558
+ }
559
+ declare function EmptyState({ icon, title, description, action, className }: EmptyStateProps): react_jsx_runtime.JSX.Element;
560
+
561
+ interface FilterChip {
562
+ id: string;
563
+ label: string;
564
+ active?: boolean;
565
+ }
566
+ interface FilterChipsProps {
567
+ chips: FilterChip[];
568
+ onToggle: (id: string) => void;
569
+ onRemove: (id: string) => void;
570
+ className?: string;
571
+ }
572
+ declare function FilterChips({ chips, onToggle, onRemove, className }: FilterChipsProps): react_jsx_runtime.JSX.Element;
573
+
574
+ interface CodeBlockProps {
575
+ code: string;
576
+ language?: string;
577
+ filename?: string;
578
+ className?: string;
579
+ }
580
+ declare function CodeBlock({ code, language, filename, className }: CodeBlockProps): react_jsx_runtime.JSX.Element;
581
+
582
+ interface ComponentPropRow {
583
+ name: string;
584
+ type: string;
585
+ defaultValue?: string;
586
+ description: ReactNode;
587
+ }
588
+ interface ComponentDocsProps {
589
+ title?: string;
590
+ rows: ComponentPropRow[];
591
+ defaultOpen?: boolean;
592
+ className?: string;
593
+ }
594
+ declare function ComponentDocs({ title, rows, defaultOpen, className }: ComponentDocsProps): react_jsx_runtime.JSX.Element;
595
+
596
+ interface ShowcaseWrapperProps {
597
+ id?: string;
598
+ title: string;
599
+ description?: string;
600
+ docs?: ReactNode;
601
+ code: string;
602
+ filename?: string;
603
+ children: ReactNode;
604
+ className?: string;
605
+ }
606
+ declare function ShowcaseWrapper({ id, title, description, docs, code, filename, children, className, }: ShowcaseWrapperProps): react_jsx_runtime.JSX.Element;
607
+
608
+ interface CollapsibleSectionProps {
609
+ title: string;
610
+ children: React.ReactNode;
611
+ defaultOpen?: boolean;
612
+ id?: string;
613
+ }
614
+ declare function CollapsibleSection({ title, children, defaultOpen, id }: CollapsibleSectionProps): react_jsx_runtime.JSX.Element;
615
+
616
+ type TextTone = "default" | "muted" | "subtle" | "brand" | "danger" | "success" | "warning" | "info" | "inherit";
617
+ type TextWeight = "normal" | "medium" | "semibold" | "bold" | "extrabold";
618
+ interface TextBaseProps {
619
+ tone?: TextTone;
620
+ weight?: TextWeight;
621
+ className?: string;
622
+ children?: ReactNode;
623
+ truncate?: boolean;
624
+ }
625
+ /** Display text — largest heading, use once per page */
626
+ declare function Display({ children, tone, weight, truncate, className, }: TextBaseProps): react_jsx_runtime.JSX.Element;
627
+ /** H1 — page title */
628
+ declare function H1({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
629
+ /** H2 — section title */
630
+ declare function H2({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
631
+ /** H3 — subsection title */
632
+ declare function H3({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
633
+ /** H4 — card / panel title */
634
+ declare function H4({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
635
+ /** H5 — small heading */
636
+ declare function H5({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
637
+ /** Body — default paragraph text */
638
+ declare function P({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
639
+ /** Small body text */
640
+ declare function Small({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
641
+ /** Extra small text — captions, meta */
642
+ declare function Caption({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
643
+ /** Overline — tiny eyebrow text */
644
+ declare function Overline({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
645
+ /** Lead — intro paragraph, larger and muted */
646
+ declare function Lead({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
647
+ /** Mono — code, data, technical text */
648
+ declare function Mono({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
649
+ /** Label — form labels, tags */
650
+ declare function Label({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
651
+
652
+ type AvatarSize = "xs" | "sm" | "md" | "lg" | "xl";
653
+ type AvatarStatus = "online" | "offline" | "away" | "busy";
654
+ interface AvatarProps extends ComponentPropsWithoutRef<"div"> {
655
+ /** Text initials or label (e.g. "JD") */
656
+ label?: string;
657
+ /** Optional icon or image */
658
+ icon?: ReactNode;
659
+ /** Size preset */
660
+ size?: AvatarSize;
661
+ /** Background colour class */
662
+ color?: string;
663
+ /** Status indicator dot */
664
+ status?: AvatarStatus;
665
+ /** Badge count or text */
666
+ badge?: string;
667
+ }
668
+ declare function Avatar({ label, icon, size, color, status, badge, className, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
669
+ interface AvatarGroupProps extends ComponentPropsWithoutRef<"div"> {
670
+ children?: ReactNode;
671
+ max?: number;
672
+ }
673
+ declare function AvatarGroup({ children, max, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
674
+
675
+ interface ProgressProps extends ComponentPropsWithoutRef<"div"> {
676
+ /** Current value (0-100) */
677
+ value: number;
678
+ /** Maximum value (default 100) */
679
+ max?: number;
680
+ /** Color class for the bar */
681
+ color?: string;
682
+ /** Optional label shown above */
683
+ label?: string;
684
+ /** Show percentage text */
685
+ showPercentage?: boolean;
686
+ /** Size variant */
687
+ size?: "sm" | "md" | "lg";
688
+ }
689
+ declare function Progress({ value, max, color, label, showPercentage, size, className, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
690
+
691
+ type ChatBubbleVariant = "from" | "self";
692
+ interface ChatBubbleProps extends ComponentPropsWithoutRef<"div"> {
693
+ /** Message content */
694
+ children?: ReactNode;
695
+ /** Avatar or icon */
696
+ avatar?: ReactNode;
697
+ /** Sender name */
698
+ name?: string;
699
+ /** Timestamp */
700
+ time?: string;
701
+ /** "from" = left/grey, "self" = right/brand */
702
+ variant?: ChatBubbleVariant;
703
+ /** Footer text (e.g. "Synced with...") */
704
+ footer?: ReactNode;
705
+ }
706
+ declare function ChatBubble({ children, avatar, name, time, variant, footer, className, ...props }: ChatBubbleProps): react_jsx_runtime.JSX.Element;
707
+
708
+ interface TerminalProps extends ComponentPropsWithoutRef<"div"> {
709
+ /** Window title */
710
+ title?: string;
711
+ /** Terminal lines — array of { text, color? } or plain strings */
712
+ lines?: Array<{
713
+ text: string;
714
+ color?: string;
715
+ } | string>;
716
+ /** Custom content instead of lines */
717
+ children?: ReactNode;
718
+ }
719
+ declare function Terminal({ title, lines, children, className, ...props }: TerminalProps): react_jsx_runtime.JSX.Element;
720
+
721
+ type IndicatorPosition = "top-right" | "top-left" | "bottom-right" | "bottom-left";
722
+ interface IndicatorProps extends ComponentPropsWithoutRef<"div"> {
723
+ /** The element to attach the indicator to */
724
+ children: ReactNode;
725
+ /** Badge content (number, text, or "!") */
726
+ badge?: ReactNode;
727
+ /** Indicator colour */
728
+ color?: string;
729
+ /** Position of the indicator dot */
730
+ position?: IndicatorPosition;
731
+ /** Show a simple dot instead of a badge */
732
+ dot?: boolean;
733
+ /** Offset from corner (default: 2px) */
734
+ offset?: number;
735
+ }
736
+ declare function Indicator({ children, badge, color, position, dot, className, ...props }: IndicatorProps): react_jsx_runtime.JSX.Element;
737
+
738
+ interface TimelineEvent {
739
+ id: string;
740
+ title: string;
741
+ description?: string;
742
+ time?: string;
743
+ icon?: ReactNode;
744
+ color?: string;
745
+ }
746
+ interface TimelineProps extends ComponentPropsWithoutRef<"ol"> {
747
+ events: TimelineEvent[];
748
+ /** Alternate left/right layout on large screens */
749
+ alternate?: boolean;
750
+ }
751
+ declare function Timeline({ events, alternate, className, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
752
+
753
+ export { type FileUploadProps as $, Accordion as A, Badge as B, Calendar as C, ChatBubble as D, type ChatBubbleProps as E, type ChatBubbleVariant as F, Checkbox as G, type CheckboxProps as H, CodeBlock as I, CollapsibleSection as J, CommandPalette as K, ComponentDocs as L, type ComponentDocsProps as M, type ComponentPropRow as N, Display as O, Drawer as P, type DrawerProps as Q, type DrawerSide as R, type DrawerSize as S, type DropdownAlign as T, DropdownButton as U, type DropdownButtonProps as V, DropdownItem as W, DropdownMenu as X, type DropdownMenuProps as Y, EmptyState as Z, FileUpload as _, Alert as a, IconSubArrowRight as a$, FilterChips as a0, H1 as a1, H2 as a2, H3 as a3, H4 as a4, H5 as a5, HoverCard as a6, IconActivity as a7, IconAreaChart as a8, IconArrowDown as a9, IconGift as aA, IconGridView as aB, IconHandClick as aC, IconHome as aD, IconLayers as aE, IconListView as aF, IconLogout as aG, IconMail as aH, IconMoon as aI, type IconName as aJ, IconPanelRight as aK, IconPerson as aL, IconPlayCircle as aM, IconPlus as aN, IconPremium as aO, type IconProps as aP, IconQueryEditor as aQ, IconRadar as aR, IconRecording as aS, IconRobot as aT, IconRocket as aU, IconSave as aV, IconSearch as aW, IconSelectEvents as aX, IconShoppingCart as aY, IconSpinner as aZ, IconStar as a_, IconArrowUp as aa, IconBase as ab, IconBell as ac, IconBellOff as ad, IconBolt as ae, IconBox as af, IconByName as ag, IconCancel as ah, IconCheck as ai, IconCheckCircle as aj, IconChevronDown as ak, IconChevronLeft as al, IconChevronRight as am, IconClipboardEdit as an, IconClose as ao, IconCohort as ap, IconCopy as aq, IconCumulativeChart as ar, IconDatabase as as, IconDownload as at, IconEdit as au, IconErrorOutline as av, IconExclamation as aw, IconFlag as ax, IconFlare as ay, IconFlask as az, type AlertProps as b, type TerminalProps as b$, IconSun as b0, IconSurveys as b1, IconSync as b2, IconTableChart as b3, IconTerminal as b4, IconToggle as b5, IconTrash as b6, IconTuning as b7, IconUpload as b8, IconVolume as b9, Radio as bA, type RadioProps as bB, Range as bC, type RangeProps as bD, Rating as bE, type RatingProps as bF, SearchGroup as bG, type SearchGroupProps as bH, SearchInput as bI, type SearchInputProps as bJ, SegmentedControl as bK, Select as bL, type SelectProps as bM, ShowcaseWrapper as bN, Small as bO, Stat as bP, type StatProps as bQ, type StatTone as bR, Stepper as bS, type TabItem as bT, Table as bU, type TableColumn as bV, type TableProps as bW, Tabs as bX, type TabsProps as bY, type TabsVariant as bZ, Terminal as b_, IconVolumeOff as ba, Indicator as bb, type IndicatorPosition as bc, type IndicatorProps as bd, Input as be, type InputProps as bf, type InputSize as bg, type InputVariant as bh, Kbd as bi, type KbdProps as bj, type KbdVariant as bk, Label as bl, Lead as bm, Modal as bn, type ModalProps as bo, type ModalSize as bp, Mono as bq, Overline as br, P as bs, PH_ICONS as bt, Pagination as bu, type PaginationProps as bv, Panel as bw, type PanelProps as bx, Progress as by, type ProgressProps as bz, type AlertStatus as c, Textarea as c0, type TextareaProps as c1, ThemeDomSync as c2, ThemeManager as c3, type ThemeManagerProps as c4, ThemeSwitcher as c5, type ThemeSwitcherProps as c6, Timeline as c7, type TimelineEvent as c8, type TimelineProps as c9, Toast as ca, type ToastProps as cb, ToastStack as cc, type ToastStackProps as cd, type ToastStatus as ce, Toggle as cf, type ToggleProps as cg, Avatar as d, AvatarGroup as e, type AvatarGroupProps as f, type AvatarProps as g, type AvatarSize as h, type AvatarStatus as i, type BadgeProps as j, type BadgeSize as k, type BadgeVariant as l, type BreadcrumbItem as m, Breadcrumbs as n, type BreadcrumbsProps as o, Button as p, ButtonChrome as q, type ButtonChromeProps as r, type ButtonProps as s, type ButtonShape as t, type ButtonSize as u, type ButtonVariant as v, Caption as w, Card as x, type CardProps as y, type CardVariant as z };