@xenide-io/the-old-ui-theme 0.2.9 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/chunk-5HSOBJ4F.mjs +5968 -0
- package/dist/index-BgG8Homu.d.mts +1461 -0
- package/dist/index-BgG8Homu.d.ts +1461 -0
- package/dist/index.d.mts +206 -100
- package/dist/index.d.ts +206 -100
- package/dist/index.js +4275 -1455
- package/dist/index.mjs +689 -735
- package/dist/tailwind-preset.js +7 -0
- package/dist/tailwind-preset.mjs +7 -0
- package/dist/ui.d.mts +3 -2
- package/dist/ui.d.ts +3 -2
- package/dist/ui.js +3449 -701
- package/dist/ui.mjs +106 -3
- package/package.json +20 -16
- package/src/app/globals.css +1953 -266
- package/src/components/charts/index.ts +9 -8
- package/src/components/charts/quill/BarChart.tsx +85 -0
- package/src/components/charts/quill/FunnelChart.tsx +49 -0
- package/src/components/charts/quill/InsightShell.tsx +27 -0
- package/src/components/charts/quill/MetricCard.tsx +44 -0
- package/src/components/charts/quill/PieChart.tsx +81 -0
- package/src/components/charts/quill/Sparkline.tsx +57 -0
- package/src/components/charts/quill/TimeSeriesLineChart.tsx +62 -0
- package/src/components/charts/quill/index.ts +9 -0
- package/src/components/icons/IconBase.tsx +20 -12
- package/src/components/icons/createIconBase.tsx +12 -7
- package/src/components/icons/icons.tsx +210 -18
- package/src/components/icons/index.ts +3 -0
- package/src/components/icons/lemon-brand-icons.tsx +16 -0
- package/src/components/icons/lemon-category-icons.tsx +72 -0
- package/src/components/icons/lemon-icons.tsx +57 -0
- package/src/components/sections/AlertShowcase.tsx +2 -1
- package/src/components/sections/BadgeShowcase.tsx +1 -1
- package/src/components/sections/ButtonShowcase.tsx +6 -10
- package/src/components/sections/CardShowcase.tsx +22 -6
- package/src/components/sections/DropdownShowcase.tsx +4 -6
- package/src/components/sections/FilterChipsShowcase.tsx +74 -26
- package/src/components/sections/FormShowcase.tsx +2 -1
- package/src/components/sections/IconShowcase.tsx +195 -212
- package/src/components/sections/KbdShowcase.tsx +47 -21
- package/src/components/sections/ModalShowcase.tsx +7 -6
- package/src/components/sections/NewComponentsShowcase.tsx +1052 -0
- package/src/components/sections/ProductLayoutsShowcase.tsx +78 -0
- package/src/components/sections/ProgressShowcase.tsx +50 -53
- package/src/components/sections/QuillChartShowcase.tsx +92 -0
- package/src/components/sections/QuillDashboardShowcase.tsx +149 -0
- package/src/components/sections/SidebarShowcase.tsx +151 -0
- package/src/components/sections/SwapShowcase.tsx +13 -5
- package/src/components/sections/TableShowcase.tsx +2 -0
- package/src/components/sections/TooltipShowcase.tsx +19 -25
- package/src/components/ui/Alert.tsx +28 -19
- package/src/components/ui/AlertDialog.tsx +62 -0
- package/src/components/ui/AppLayout.tsx +27 -0
- package/src/components/ui/AuthLayout.tsx +58 -0
- package/src/components/ui/Autocomplete.tsx +106 -0
- package/src/components/ui/Badge.tsx +10 -5
- package/src/components/ui/Banner.tsx +63 -0
- package/src/components/ui/Button.tsx +22 -12
- package/src/components/ui/ButtonChrome.tsx +1 -1
- package/src/components/ui/ButtonGroup.tsx +16 -0
- package/src/components/ui/Calendar.tsx +6 -7
- package/src/components/ui/Card.tsx +21 -11
- package/src/components/ui/Chip.tsx +46 -0
- package/src/components/ui/Collapsible.tsx +46 -0
- package/src/components/ui/CollapsibleSection.tsx +11 -11
- package/src/components/ui/Combobox.tsx +119 -0
- package/src/components/ui/ContextMenu.tsx +81 -0
- package/src/components/ui/DataTable.tsx +133 -0
- package/src/components/ui/DatePicker.tsx +96 -0
- package/src/components/ui/Dialog.tsx +75 -0
- package/src/components/ui/Divider.tsx +39 -0
- package/src/components/ui/Dot.tsx +32 -0
- package/src/components/ui/DropdownMenu.tsx +189 -65
- package/src/components/ui/FilterBar.tsx +165 -0
- package/src/components/ui/FilterChips.tsx +65 -35
- package/src/components/ui/FilterControls.tsx +30 -0
- package/src/components/ui/FormField.tsx +69 -0
- package/src/components/ui/Input.tsx +166 -140
- package/src/components/ui/InputGroup.tsx +16 -0
- package/src/components/ui/Kbd.tsx +88 -13
- package/src/components/ui/Lettermark.tsx +47 -0
- package/src/components/ui/Link.tsx +32 -0
- package/src/components/ui/Loader.tsx +96 -0
- package/src/components/ui/LoadingBar.tsx +25 -0
- package/src/components/ui/Menubar.tsx +66 -0
- package/src/components/ui/Metric.tsx +34 -0
- package/src/components/ui/Modal.tsx +66 -36
- package/src/components/ui/NumberField.tsx +76 -0
- package/src/components/ui/Popover.tsx +73 -0
- package/src/components/ui/ProgressCircle.tsx +63 -0
- package/src/components/ui/Resizable.tsx +71 -0
- package/src/components/ui/Row.tsx +51 -0
- package/src/components/ui/ScrollArea.tsx +54 -0
- package/src/components/ui/SettingsLayout.tsx +94 -0
- package/src/components/ui/ShowcaseWrapper.tsx +4 -16
- package/src/components/ui/Sidebar.tsx +77 -0
- package/src/components/ui/Snack.tsx +48 -0
- package/src/components/ui/Spinner.tsx +30 -0
- package/src/components/ui/Splotch.tsx +33 -0
- package/src/components/ui/Stepper.tsx +5 -6
- package/src/components/ui/Table.tsx +2 -0
- package/src/components/ui/Tag.tsx +65 -0
- package/src/components/ui/Toggle.tsx +62 -0
- package/src/components/ui/Tooltip.test.tsx +58 -0
- package/src/components/ui/Tooltip.tsx +211 -0
- package/src/components/ui/Widget.tsx +31 -0
- package/src/components/ui/first-slice.test.tsx +98 -0
- package/src/components/ui/index.ts +335 -22
- package/src/components/ui/interaction-primitives.test.tsx +77 -0
- package/src/components/ui/kbd-icons.test.tsx +90 -0
- package/src/components/ui/product-patterns.test.tsx +77 -0
- package/src/styles/themes.css +411 -1
- package/tailwind-preset.ts +7 -0
- package/dist/chunk-SHF57J7U.mjs +0 -2910
- package/dist/index-CmS6hcUk.d.mts +0 -753
- package/dist/index-CmS6hcUk.d.ts +0 -753
- package/src/components/charts/ph-insight-charts.tsx +0 -162
- package/src/components/dashboard/DashboardFiltersBar.tsx +0 -19
- package/src/components/dashboard/DashboardGrid.tsx +0 -23
- package/src/components/dashboard/DashboardInsightPlaceholder.tsx +0 -37
- package/src/components/dashboard/DashboardKpiCard.tsx +0 -25
- package/src/components/dashboard/DashboardToolbar.tsx +0 -23
- package/src/components/dashboard/DashboardWell.tsx +0 -10
- package/src/components/dashboard/InsightMiniCard.tsx +0 -26
- package/src/components/dashboard/InsightShell.tsx +0 -37
- package/src/components/dashboard/InsightShellHeader.tsx +0 -22
- package/src/components/dashboard/MiniTrendBars.tsx +0 -51
- package/src/components/dashboard/index.ts +0 -31
- package/src/components/dashboard/types.ts +0 -9
- package/src/components/sections/ChartShowcase.tsx +0 -190
- package/src/components/sections/DashboardShowcase.tsx +0 -191
- package/src/components/sections/StatShowcase.tsx +0 -129
|
@@ -0,0 +1,1461 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { ButtonHTMLAttributes, ReactNode, HTMLAttributes, AriaAttributes, ComponentPropsWithoutRef, CSSProperties, SVGAttributes, ReactElement, AnchorHTMLAttributes, InputHTMLAttributes } 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
|
+
type TooltipSide = "top" | "right" | "bottom" | "left";
|
|
801
|
+
type TooltipAlign = "start" | "center" | "end";
|
|
802
|
+
interface TooltipProviderProps {
|
|
803
|
+
children: ReactNode;
|
|
804
|
+
delayDuration?: number;
|
|
805
|
+
}
|
|
806
|
+
interface TooltipProps {
|
|
807
|
+
content: ReactNode;
|
|
808
|
+
children: ReactElement<HTMLAttributes<HTMLElement>>;
|
|
809
|
+
side?: TooltipSide;
|
|
810
|
+
align?: TooltipAlign;
|
|
811
|
+
sideOffset?: number;
|
|
812
|
+
collisionPadding?: number;
|
|
813
|
+
className?: string;
|
|
814
|
+
open?: boolean;
|
|
815
|
+
defaultOpen?: boolean;
|
|
816
|
+
onOpenChange?: (open: boolean) => void;
|
|
817
|
+
delayDuration?: number;
|
|
818
|
+
disableHoverableContent?: boolean;
|
|
819
|
+
}
|
|
820
|
+
declare function TooltipProvider({ children, delayDuration, }: TooltipProviderProps): react_jsx_runtime.JSX.Element;
|
|
821
|
+
declare function Tooltip({ content, children, side, align, sideOffset, className, open, defaultOpen, onOpenChange, delayDuration, }: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
822
|
+
|
|
823
|
+
interface EmptyStateProps {
|
|
824
|
+
icon?: React.ReactNode;
|
|
825
|
+
title: string;
|
|
826
|
+
description?: string;
|
|
827
|
+
action?: React.ReactNode;
|
|
828
|
+
className?: string;
|
|
829
|
+
}
|
|
830
|
+
declare function EmptyState({ icon, title, description, action, className }: EmptyStateProps): react_jsx_runtime.JSX.Element;
|
|
831
|
+
|
|
832
|
+
interface FilterChip {
|
|
833
|
+
id: string;
|
|
834
|
+
label: ReactNode;
|
|
835
|
+
value?: ReactNode;
|
|
836
|
+
active?: boolean;
|
|
837
|
+
removeLabel?: string;
|
|
838
|
+
}
|
|
839
|
+
interface FilterChipsProps {
|
|
840
|
+
chips: readonly FilterChip[];
|
|
841
|
+
onToggle?: (id: string) => void;
|
|
842
|
+
onRemove?: (id: string) => void;
|
|
843
|
+
className?: string;
|
|
844
|
+
"aria-label"?: string;
|
|
845
|
+
}
|
|
846
|
+
declare function FilterChips({ chips, onToggle, onRemove, className, "aria-label": ariaLabel, }: FilterChipsProps): react_jsx_runtime.JSX.Element;
|
|
847
|
+
|
|
848
|
+
interface FilterMenuOption {
|
|
849
|
+
value: string;
|
|
850
|
+
label: ReactNode;
|
|
851
|
+
/** Plain-text label used for typeahead and accessible trigger naming. */
|
|
852
|
+
textValue?: string;
|
|
853
|
+
disabled?: boolean;
|
|
854
|
+
}
|
|
855
|
+
interface FilterMenuProps {
|
|
856
|
+
label: string;
|
|
857
|
+
value?: string;
|
|
858
|
+
options: readonly FilterMenuOption[];
|
|
859
|
+
onValueChange: (value: string) => void;
|
|
860
|
+
placeholder?: ReactNode;
|
|
861
|
+
align?: DropdownAlign;
|
|
862
|
+
disabled?: boolean;
|
|
863
|
+
className?: string;
|
|
864
|
+
}
|
|
865
|
+
interface SortMenuProps extends Omit<FilterMenuProps, "placeholder"> {
|
|
866
|
+
direction?: "ascending" | "descending";
|
|
867
|
+
}
|
|
868
|
+
interface FilterBarProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
|
|
869
|
+
children: ReactNode;
|
|
870
|
+
label?: string;
|
|
871
|
+
onClear?: () => void;
|
|
872
|
+
clearLabel?: string;
|
|
873
|
+
resultCount?: ReactNode;
|
|
874
|
+
}
|
|
875
|
+
declare function FilterBar({ children, label, onClear, clearLabel, resultCount, className, ...props }: FilterBarProps): react_jsx_runtime.JSX.Element;
|
|
876
|
+
declare function FilterMenu({ label, value, options, onValueChange, placeholder, align, disabled, className, }: FilterMenuProps): react_jsx_runtime.JSX.Element;
|
|
877
|
+
declare function SortMenu({ label, value, options, onValueChange, direction, align, disabled, className, }: SortMenuProps): react_jsx_runtime.JSX.Element;
|
|
878
|
+
|
|
879
|
+
interface FilterControlsProps extends ComponentPropsWithoutRef<"div"> {
|
|
880
|
+
children: ReactNode;
|
|
881
|
+
barProps?: Omit<FilterBarProps, "children">;
|
|
882
|
+
chipsProps?: FilterChipsProps;
|
|
883
|
+
emptyState?: ReactNode;
|
|
884
|
+
}
|
|
885
|
+
/** Combines filter controls and their applied chips without owning filter state. */
|
|
886
|
+
declare function FilterControls({ children, barProps, chipsProps, emptyState, className, ...props }: FilterControlsProps): react_jsx_runtime.JSX.Element;
|
|
887
|
+
|
|
888
|
+
interface CodeBlockProps {
|
|
889
|
+
code: string;
|
|
890
|
+
language?: string;
|
|
891
|
+
filename?: string;
|
|
892
|
+
className?: string;
|
|
893
|
+
}
|
|
894
|
+
declare function CodeBlock({ code, language, filename, className }: CodeBlockProps): react_jsx_runtime.JSX.Element;
|
|
895
|
+
|
|
896
|
+
interface ComponentPropRow {
|
|
897
|
+
name: string;
|
|
898
|
+
type: string;
|
|
899
|
+
defaultValue?: string;
|
|
900
|
+
description: ReactNode;
|
|
901
|
+
}
|
|
902
|
+
interface ComponentDocsProps {
|
|
903
|
+
title?: string;
|
|
904
|
+
rows: ComponentPropRow[];
|
|
905
|
+
defaultOpen?: boolean;
|
|
906
|
+
className?: string;
|
|
907
|
+
}
|
|
908
|
+
declare function ComponentDocs({ title, rows, defaultOpen, className }: ComponentDocsProps): react_jsx_runtime.JSX.Element;
|
|
909
|
+
|
|
910
|
+
interface ShowcaseWrapperProps {
|
|
911
|
+
id?: string;
|
|
912
|
+
title: string;
|
|
913
|
+
description?: string;
|
|
914
|
+
docs?: ReactNode;
|
|
915
|
+
code: string;
|
|
916
|
+
filename?: string;
|
|
917
|
+
children: ReactNode;
|
|
918
|
+
className?: string;
|
|
919
|
+
}
|
|
920
|
+
declare function ShowcaseWrapper({ id, title, description, docs, code, filename, children, className, }: ShowcaseWrapperProps): react_jsx_runtime.JSX.Element;
|
|
921
|
+
|
|
922
|
+
interface CollapsibleSectionProps {
|
|
923
|
+
title: string;
|
|
924
|
+
children: React.ReactNode;
|
|
925
|
+
defaultOpen?: boolean;
|
|
926
|
+
id?: string;
|
|
927
|
+
}
|
|
928
|
+
declare function CollapsibleSection({ title, children, defaultOpen, id }: CollapsibleSectionProps): react_jsx_runtime.JSX.Element;
|
|
929
|
+
|
|
930
|
+
type TextTone = "default" | "muted" | "subtle" | "brand" | "danger" | "success" | "warning" | "info" | "inherit";
|
|
931
|
+
type TextWeight = "normal" | "medium" | "semibold" | "bold" | "extrabold";
|
|
932
|
+
interface TextBaseProps {
|
|
933
|
+
tone?: TextTone;
|
|
934
|
+
weight?: TextWeight;
|
|
935
|
+
className?: string;
|
|
936
|
+
children?: ReactNode;
|
|
937
|
+
truncate?: boolean;
|
|
938
|
+
}
|
|
939
|
+
/** Display text — largest heading, use once per page */
|
|
940
|
+
declare function Display({ children, tone, weight, truncate, className, }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
941
|
+
/** H1 — page title */
|
|
942
|
+
declare function H1({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
943
|
+
/** H2 — section title */
|
|
944
|
+
declare function H2({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
945
|
+
/** H3 — subsection title */
|
|
946
|
+
declare function H3({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
947
|
+
/** H4 — card / panel title */
|
|
948
|
+
declare function H4({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
949
|
+
/** H5 — small heading */
|
|
950
|
+
declare function H5({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
951
|
+
/** Body — default paragraph text */
|
|
952
|
+
declare function P({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
953
|
+
/** Small body text */
|
|
954
|
+
declare function Small({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
955
|
+
/** Extra small text — captions, meta */
|
|
956
|
+
declare function Caption({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
957
|
+
/** Overline — tiny eyebrow text */
|
|
958
|
+
declare function Overline({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
959
|
+
/** Lead — intro paragraph, larger and muted */
|
|
960
|
+
declare function Lead({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
961
|
+
/** Mono — code, data, technical text */
|
|
962
|
+
declare function Mono({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
963
|
+
/** Label — form labels, tags */
|
|
964
|
+
declare function Label({ children, tone, weight, truncate, className }: TextBaseProps): react_jsx_runtime.JSX.Element;
|
|
965
|
+
|
|
966
|
+
type AvatarSize = "xs" | "sm" | "md" | "lg" | "xl";
|
|
967
|
+
type AvatarStatus = "online" | "offline" | "away" | "busy";
|
|
968
|
+
interface AvatarProps extends ComponentPropsWithoutRef<"div"> {
|
|
969
|
+
/** Text initials or label (e.g. "JD") */
|
|
970
|
+
label?: string;
|
|
971
|
+
/** Optional icon or image */
|
|
972
|
+
icon?: ReactNode;
|
|
973
|
+
/** Size preset */
|
|
974
|
+
size?: AvatarSize;
|
|
975
|
+
/** Background colour class */
|
|
976
|
+
color?: string;
|
|
977
|
+
/** Status indicator dot */
|
|
978
|
+
status?: AvatarStatus;
|
|
979
|
+
/** Badge count or text */
|
|
980
|
+
badge?: string;
|
|
981
|
+
}
|
|
982
|
+
declare function Avatar({ label, icon, size, color, status, badge, className, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
|
|
983
|
+
interface AvatarGroupProps extends ComponentPropsWithoutRef<"div"> {
|
|
984
|
+
children?: ReactNode;
|
|
985
|
+
max?: number;
|
|
986
|
+
}
|
|
987
|
+
declare function AvatarGroup({ children, max, className, ...props }: AvatarGroupProps): react_jsx_runtime.JSX.Element;
|
|
988
|
+
|
|
989
|
+
interface ProgressProps extends ComponentPropsWithoutRef<"div"> {
|
|
990
|
+
/** Current value (0-100) */
|
|
991
|
+
value: number;
|
|
992
|
+
/** Maximum value (default 100) */
|
|
993
|
+
max?: number;
|
|
994
|
+
/** Color class for the bar */
|
|
995
|
+
color?: string;
|
|
996
|
+
/** Optional label shown above */
|
|
997
|
+
label?: string;
|
|
998
|
+
/** Show percentage text */
|
|
999
|
+
showPercentage?: boolean;
|
|
1000
|
+
/** Size variant */
|
|
1001
|
+
size?: "sm" | "md" | "lg";
|
|
1002
|
+
}
|
|
1003
|
+
declare function Progress({ value, max, color, label, showPercentage, size, className, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
|
|
1004
|
+
|
|
1005
|
+
type ChatBubbleVariant = "from" | "self";
|
|
1006
|
+
interface ChatBubbleProps extends ComponentPropsWithoutRef<"div"> {
|
|
1007
|
+
/** Message content */
|
|
1008
|
+
children?: ReactNode;
|
|
1009
|
+
/** Avatar or icon */
|
|
1010
|
+
avatar?: ReactNode;
|
|
1011
|
+
/** Sender name */
|
|
1012
|
+
name?: string;
|
|
1013
|
+
/** Timestamp */
|
|
1014
|
+
time?: string;
|
|
1015
|
+
/** "from" = left/grey, "self" = right/brand */
|
|
1016
|
+
variant?: ChatBubbleVariant;
|
|
1017
|
+
/** Footer text (e.g. "Synced with...") */
|
|
1018
|
+
footer?: ReactNode;
|
|
1019
|
+
}
|
|
1020
|
+
declare function ChatBubble({ children, avatar, name, time, variant, footer, className, ...props }: ChatBubbleProps): react_jsx_runtime.JSX.Element;
|
|
1021
|
+
|
|
1022
|
+
interface TerminalProps extends ComponentPropsWithoutRef<"div"> {
|
|
1023
|
+
/** Window title */
|
|
1024
|
+
title?: string;
|
|
1025
|
+
/** Terminal lines — array of { text, color? } or plain strings */
|
|
1026
|
+
lines?: Array<{
|
|
1027
|
+
text: string;
|
|
1028
|
+
color?: string;
|
|
1029
|
+
} | string>;
|
|
1030
|
+
/** Custom content instead of lines */
|
|
1031
|
+
children?: ReactNode;
|
|
1032
|
+
}
|
|
1033
|
+
declare function Terminal({ title, lines, children, className, ...props }: TerminalProps): react_jsx_runtime.JSX.Element;
|
|
1034
|
+
|
|
1035
|
+
type IndicatorPosition = "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1036
|
+
interface IndicatorProps extends ComponentPropsWithoutRef<"div"> {
|
|
1037
|
+
/** The element to attach the indicator to */
|
|
1038
|
+
children: ReactNode;
|
|
1039
|
+
/** Badge content (number, text, or "!") */
|
|
1040
|
+
badge?: ReactNode;
|
|
1041
|
+
/** Indicator colour */
|
|
1042
|
+
color?: string;
|
|
1043
|
+
/** Position of the indicator dot */
|
|
1044
|
+
position?: IndicatorPosition;
|
|
1045
|
+
/** Show a simple dot instead of a badge */
|
|
1046
|
+
dot?: boolean;
|
|
1047
|
+
/** Offset from corner (default: 2px) */
|
|
1048
|
+
offset?: number;
|
|
1049
|
+
}
|
|
1050
|
+
declare function Indicator({ children, badge, color, position, dot, className, ...props }: IndicatorProps): react_jsx_runtime.JSX.Element;
|
|
1051
|
+
|
|
1052
|
+
interface TimelineEvent {
|
|
1053
|
+
id: string;
|
|
1054
|
+
title: string;
|
|
1055
|
+
description?: string;
|
|
1056
|
+
time?: string;
|
|
1057
|
+
icon?: ReactNode;
|
|
1058
|
+
color?: string;
|
|
1059
|
+
}
|
|
1060
|
+
interface TimelineProps extends ComponentPropsWithoutRef<"ol"> {
|
|
1061
|
+
events: TimelineEvent[];
|
|
1062
|
+
/** Alternate left/right layout on large screens */
|
|
1063
|
+
alternate?: boolean;
|
|
1064
|
+
}
|
|
1065
|
+
declare function Timeline({ events, alternate, className, ...props }: TimelineProps): react_jsx_runtime.JSX.Element;
|
|
1066
|
+
|
|
1067
|
+
type BannerType = "info" | "success" | "warning" | "danger" | "ai";
|
|
1068
|
+
interface BannerProps extends HTMLAttributes<HTMLDivElement> {
|
|
1069
|
+
type?: BannerType;
|
|
1070
|
+
onClose?: () => void;
|
|
1071
|
+
action?: ReactNode;
|
|
1072
|
+
hideIcon?: boolean;
|
|
1073
|
+
square?: boolean;
|
|
1074
|
+
icon?: ReactNode;
|
|
1075
|
+
children: ReactNode;
|
|
1076
|
+
}
|
|
1077
|
+
declare const Banner: react.ForwardRefExoticComponent<BannerProps & react.RefAttributes<HTMLDivElement>>;
|
|
1078
|
+
|
|
1079
|
+
interface DialogProps extends Omit<ModalProps, "onClose"> {
|
|
1080
|
+
isOpen?: boolean;
|
|
1081
|
+
onClose?: () => void;
|
|
1082
|
+
onConfirm?: () => void | Promise<void>;
|
|
1083
|
+
confirmText?: string;
|
|
1084
|
+
cancelText?: string;
|
|
1085
|
+
confirmProps?: Partial<ButtonProps>;
|
|
1086
|
+
cancelProps?: Partial<ButtonProps>;
|
|
1087
|
+
children?: ReactNode;
|
|
1088
|
+
}
|
|
1089
|
+
declare function Dialog({ isOpen: openProp, onClose, onConfirm, confirmText, cancelText, confirmProps, cancelProps, children, title, ...modalProps }: DialogProps): react_jsx_runtime.JSX.Element;
|
|
1090
|
+
declare namespace Dialog {
|
|
1091
|
+
var displayName: string;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
interface DividerProps extends HTMLAttributes<HTMLDivElement> {
|
|
1095
|
+
vertical?: boolean;
|
|
1096
|
+
dashed?: boolean;
|
|
1097
|
+
thick?: boolean;
|
|
1098
|
+
label?: string;
|
|
1099
|
+
}
|
|
1100
|
+
declare function Divider({ vertical, dashed, thick, label, className, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
|
|
1101
|
+
declare namespace Divider {
|
|
1102
|
+
var displayName: string;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
type TagType = "default" | "primary" | "success" | "warning" | "danger" | "info" | "muted" | "highlight";
|
|
1106
|
+
interface TagProps extends HTMLAttributes<HTMLDivElement> {
|
|
1107
|
+
type?: TagType;
|
|
1108
|
+
size?: "sm" | "md";
|
|
1109
|
+
icon?: ReactNode;
|
|
1110
|
+
closable?: boolean;
|
|
1111
|
+
onClose?: () => void;
|
|
1112
|
+
children: ReactNode;
|
|
1113
|
+
}
|
|
1114
|
+
declare const Tag: react.ForwardRefExoticComponent<TagProps & react.RefAttributes<HTMLDivElement>>;
|
|
1115
|
+
|
|
1116
|
+
interface ProgressCircleProps extends HTMLAttributes<HTMLSpanElement> {
|
|
1117
|
+
progress: number;
|
|
1118
|
+
size?: number;
|
|
1119
|
+
strokeWidth?: number;
|
|
1120
|
+
children?: ReactNode;
|
|
1121
|
+
}
|
|
1122
|
+
declare function ProgressCircle({ progress, size, strokeWidth: sw, children, className, ...props }: ProgressCircleProps): react_jsx_runtime.JSX.Element;
|
|
1123
|
+
declare namespace ProgressCircle {
|
|
1124
|
+
var displayName: string;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
interface RowProps extends HTMLAttributes<HTMLDivElement> {
|
|
1128
|
+
icon?: ReactElement | null;
|
|
1129
|
+
sideIcon?: ReactElement | null;
|
|
1130
|
+
status?: "default" | "success" | "warning" | "danger" | "muted";
|
|
1131
|
+
fullWidth?: boolean;
|
|
1132
|
+
center?: boolean;
|
|
1133
|
+
size?: "sm" | "md" | "lg";
|
|
1134
|
+
children?: ReactNode;
|
|
1135
|
+
}
|
|
1136
|
+
declare const Row: react.ForwardRefExoticComponent<RowProps & react.RefAttributes<HTMLDivElement>>;
|
|
1137
|
+
|
|
1138
|
+
interface WidgetProps {
|
|
1139
|
+
title: ReactNode;
|
|
1140
|
+
onClose?: () => void;
|
|
1141
|
+
actions?: ReactNode;
|
|
1142
|
+
children?: ReactNode;
|
|
1143
|
+
className?: string;
|
|
1144
|
+
}
|
|
1145
|
+
declare function Widget({ title, onClose, actions, children, className }: WidgetProps): react_jsx_runtime.JSX.Element;
|
|
1146
|
+
declare namespace Widget {
|
|
1147
|
+
var displayName: string;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
interface LettermarkProps extends HTMLAttributes<HTMLDivElement> {
|
|
1151
|
+
name?: string | number | null;
|
|
1152
|
+
index?: number;
|
|
1153
|
+
rounded?: boolean;
|
|
1154
|
+
outlined?: boolean;
|
|
1155
|
+
size?: "xs" | "sm" | "md" | "lg";
|
|
1156
|
+
}
|
|
1157
|
+
declare const Lettermark: react.ForwardRefExoticComponent<LettermarkProps & react.RefAttributes<HTMLDivElement>>;
|
|
1158
|
+
|
|
1159
|
+
type SplotchColor = "purple" | "blue" | "green" | "black" | "white" | "orange" | "red" | "yellow";
|
|
1160
|
+
interface SplotchProps extends HTMLAttributes<HTMLDivElement> {
|
|
1161
|
+
color: SplotchColor;
|
|
1162
|
+
}
|
|
1163
|
+
declare function Splotch({ color, className, ...props }: SplotchProps): react_jsx_runtime.JSX.Element;
|
|
1164
|
+
declare namespace Splotch {
|
|
1165
|
+
var displayName: string;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
interface PopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
1169
|
+
trigger: ReactNode;
|
|
1170
|
+
children: ReactNode;
|
|
1171
|
+
open?: boolean;
|
|
1172
|
+
onOpenChange?: (open: boolean) => void;
|
|
1173
|
+
placement?: "top" | "bottom" | "left" | "right";
|
|
1174
|
+
matchTriggerWidth?: boolean;
|
|
1175
|
+
padded?: boolean;
|
|
1176
|
+
}
|
|
1177
|
+
declare function Popover({ trigger, children, open: controlledOpen, onOpenChange, placement, matchTriggerWidth, padded, className, ...props }: PopoverProps): react_jsx_runtime.JSX.Element;
|
|
1178
|
+
declare namespace Popover {
|
|
1179
|
+
var displayName: string;
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
interface LoadingBarProps extends HTMLAttributes<HTMLDivElement> {
|
|
1183
|
+
active?: boolean;
|
|
1184
|
+
}
|
|
1185
|
+
declare function LoadingBar({ active, className, ...props }: LoadingBarProps): react_jsx_runtime.JSX.Element;
|
|
1186
|
+
declare namespace LoadingBar {
|
|
1187
|
+
var displayName: string;
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1191
|
+
children: ReactNode;
|
|
1192
|
+
disabled?: boolean;
|
|
1193
|
+
}
|
|
1194
|
+
declare const Link: react.ForwardRefExoticComponent<LinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
1195
|
+
|
|
1196
|
+
interface SpinnerProps extends HTMLAttributes<HTMLSpanElement> {
|
|
1197
|
+
size?: "sm" | "md" | "lg";
|
|
1198
|
+
textColored?: boolean;
|
|
1199
|
+
}
|
|
1200
|
+
declare function Spinner({ size, textColored, className, ...props }: SpinnerProps): react_jsx_runtime.JSX.Element;
|
|
1201
|
+
declare namespace Spinner {
|
|
1202
|
+
var displayName: string;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
interface SnackProps extends HTMLAttributes<HTMLSpanElement> {
|
|
1206
|
+
type?: "regular" | "pill";
|
|
1207
|
+
onClose?: () => void;
|
|
1208
|
+
wrap?: boolean;
|
|
1209
|
+
children: ReactNode;
|
|
1210
|
+
}
|
|
1211
|
+
declare const Snack: react.ForwardRefExoticComponent<SnackProps & react.RefAttributes<HTMLSpanElement>>;
|
|
1212
|
+
|
|
1213
|
+
interface ComboboxOption {
|
|
1214
|
+
value: string;
|
|
1215
|
+
label: string;
|
|
1216
|
+
}
|
|
1217
|
+
interface ComboboxProps {
|
|
1218
|
+
options: ComboboxOption[];
|
|
1219
|
+
value?: string[];
|
|
1220
|
+
onChange?: (value: string[]) => void;
|
|
1221
|
+
placeholder?: string;
|
|
1222
|
+
className?: string;
|
|
1223
|
+
disabled?: boolean;
|
|
1224
|
+
}
|
|
1225
|
+
declare function Combobox({ options, value, onChange, placeholder, className, disabled, }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
1226
|
+
declare namespace Combobox {
|
|
1227
|
+
var displayName: string;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
interface AutocompleteOption {
|
|
1231
|
+
value: string;
|
|
1232
|
+
label: string;
|
|
1233
|
+
}
|
|
1234
|
+
interface AutocompleteProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onSelect"> {
|
|
1235
|
+
options: AutocompleteOption[];
|
|
1236
|
+
onSelect?: (option: AutocompleteOption) => void;
|
|
1237
|
+
}
|
|
1238
|
+
declare function Autocomplete({ options, onSelect, className, value: controlledValue, onChange, placeholder, ...inputProps }: AutocompleteProps): react_jsx_runtime.JSX.Element;
|
|
1239
|
+
declare namespace Autocomplete {
|
|
1240
|
+
var displayName: string;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
interface ContextMenuItem {
|
|
1244
|
+
label: string;
|
|
1245
|
+
onClick?: () => void;
|
|
1246
|
+
disabled?: boolean;
|
|
1247
|
+
separator?: boolean;
|
|
1248
|
+
icon?: ReactNode;
|
|
1249
|
+
}
|
|
1250
|
+
interface ContextMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
1251
|
+
items: ContextMenuItem[];
|
|
1252
|
+
children: ReactNode;
|
|
1253
|
+
}
|
|
1254
|
+
declare function ContextMenu({ items, children, className, ...props }: ContextMenuProps): react_jsx_runtime.JSX.Element;
|
|
1255
|
+
declare namespace ContextMenu {
|
|
1256
|
+
var displayName: string;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
interface ResizableProps extends HTMLAttributes<HTMLDivElement> {
|
|
1260
|
+
left: ReactNode;
|
|
1261
|
+
right: ReactNode;
|
|
1262
|
+
defaultLeftWidth?: number;
|
|
1263
|
+
minLeftWidth?: number;
|
|
1264
|
+
minRightWidth?: number;
|
|
1265
|
+
}
|
|
1266
|
+
declare function Resizable({ left, right, defaultLeftWidth, minLeftWidth, minRightWidth, className, ...props }: ResizableProps): react_jsx_runtime.JSX.Element;
|
|
1267
|
+
declare namespace Resizable {
|
|
1268
|
+
var displayName: string;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
|
|
1272
|
+
children: ReactNode;
|
|
1273
|
+
orientation?: "vertical" | "horizontal" | "both";
|
|
1274
|
+
}
|
|
1275
|
+
declare function ScrollArea({ children, orientation, className, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
|
|
1276
|
+
declare namespace ScrollArea {
|
|
1277
|
+
var displayName: string;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
interface NumberFieldProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "onChange"> {
|
|
1281
|
+
value?: number;
|
|
1282
|
+
onChange?: (value: number) => void;
|
|
1283
|
+
min?: number;
|
|
1284
|
+
max?: number;
|
|
1285
|
+
step?: number;
|
|
1286
|
+
label?: string;
|
|
1287
|
+
}
|
|
1288
|
+
declare function NumberField({ value: controlledValue, onChange, min, max, step, label, className, disabled, defaultValue, ...inputProps }: NumberFieldProps): react_jsx_runtime.JSX.Element;
|
|
1289
|
+
declare namespace NumberField {
|
|
1290
|
+
var displayName: string;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
interface InputGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
1294
|
+
children: ReactNode;
|
|
1295
|
+
}
|
|
1296
|
+
declare function InputGroup({ children, className, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
|
|
1297
|
+
declare namespace InputGroup {
|
|
1298
|
+
var displayName: string;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
interface ButtonGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
1302
|
+
children: ReactNode;
|
|
1303
|
+
}
|
|
1304
|
+
declare function ButtonGroup({ children, className, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
1305
|
+
declare namespace ButtonGroup {
|
|
1306
|
+
var displayName: string;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
interface ToggleButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1310
|
+
pressed?: boolean;
|
|
1311
|
+
onPressedChange?: (pressed: boolean) => void;
|
|
1312
|
+
icon?: ReactNode;
|
|
1313
|
+
children?: ReactNode;
|
|
1314
|
+
}
|
|
1315
|
+
declare const ToggleButton: react.ForwardRefExoticComponent<ToggleButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1316
|
+
interface ToggleGroupProps {
|
|
1317
|
+
type?: "single" | "multiple";
|
|
1318
|
+
value?: string | string[];
|
|
1319
|
+
onValueChange?: (value: string | string[]) => void;
|
|
1320
|
+
children: ReactNode;
|
|
1321
|
+
className?: string;
|
|
1322
|
+
}
|
|
1323
|
+
declare function ToggleGroup({ type, value, onValueChange, children, className, }: ToggleGroupProps): react_jsx_runtime.JSX.Element;
|
|
1324
|
+
declare namespace ToggleGroup {
|
|
1325
|
+
var displayName: string;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
interface MenubarItem {
|
|
1329
|
+
label: string;
|
|
1330
|
+
items?: {
|
|
1331
|
+
label: string;
|
|
1332
|
+
onClick?: () => void;
|
|
1333
|
+
disabled?: boolean;
|
|
1334
|
+
separator?: boolean;
|
|
1335
|
+
}[];
|
|
1336
|
+
}
|
|
1337
|
+
interface MenubarProps extends HTMLAttributes<HTMLDivElement> {
|
|
1338
|
+
items: MenubarItem[];
|
|
1339
|
+
}
|
|
1340
|
+
declare function Menubar({ items, className, ...props }: MenubarProps): react_jsx_runtime.JSX.Element;
|
|
1341
|
+
declare namespace Menubar {
|
|
1342
|
+
var displayName: string;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
interface AlertDialogProps extends Omit<ModalProps, "onClose"> {
|
|
1346
|
+
isOpen?: boolean;
|
|
1347
|
+
onClose?: () => void;
|
|
1348
|
+
onConfirm?: () => void | Promise<void>;
|
|
1349
|
+
confirmText?: string;
|
|
1350
|
+
cancelText?: string;
|
|
1351
|
+
confirmProps?: Partial<ButtonProps>;
|
|
1352
|
+
cancelProps?: Partial<ButtonProps>;
|
|
1353
|
+
children?: ReactNode;
|
|
1354
|
+
}
|
|
1355
|
+
declare function AlertDialog({ isOpen: openProp, onClose, onConfirm, confirmText, cancelText, confirmProps, cancelProps, children, title, ...modalProps }: AlertDialogProps): react_jsx_runtime.JSX.Element;
|
|
1356
|
+
declare namespace AlertDialog {
|
|
1357
|
+
var displayName: string;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
interface DotProps extends HTMLAttributes<HTMLSpanElement> {
|
|
1361
|
+
color?: "green" | "yellow" | "red" | "blue" | "gray";
|
|
1362
|
+
size?: "sm" | "md";
|
|
1363
|
+
}
|
|
1364
|
+
declare function Dot({ color, size, className, ...props }: DotProps): react_jsx_runtime.JSX.Element;
|
|
1365
|
+
declare namespace Dot {
|
|
1366
|
+
var displayName: string;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
interface CollapsibleProps extends HTMLAttributes<HTMLDivElement> {
|
|
1370
|
+
trigger: ReactNode;
|
|
1371
|
+
open?: boolean;
|
|
1372
|
+
onOpenChange?: (open: boolean) => void;
|
|
1373
|
+
children: ReactNode;
|
|
1374
|
+
}
|
|
1375
|
+
declare function Collapsible({ trigger, open: controlledOpen, onOpenChange, children, className, ...props }: CollapsibleProps): react_jsx_runtime.JSX.Element;
|
|
1376
|
+
declare namespace Collapsible {
|
|
1377
|
+
var displayName: string;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
interface MetricProps extends HTMLAttributes<HTMLDivElement> {
|
|
1381
|
+
value: string | number;
|
|
1382
|
+
label: string;
|
|
1383
|
+
badge?: ReactNode;
|
|
1384
|
+
trend?: ReactNode;
|
|
1385
|
+
icon?: ReactNode;
|
|
1386
|
+
}
|
|
1387
|
+
declare function Metric({ value, label, badge, trend, icon, className, ...props }: MetricProps): react_jsx_runtime.JSX.Element;
|
|
1388
|
+
declare namespace Metric {
|
|
1389
|
+
var displayName: string;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
interface ChipProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1393
|
+
selected?: boolean;
|
|
1394
|
+
onRemove?: () => void;
|
|
1395
|
+
children: ReactNode;
|
|
1396
|
+
}
|
|
1397
|
+
declare const Chip: react.ForwardRefExoticComponent<ChipProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1398
|
+
|
|
1399
|
+
interface DataTableColumn<T> {
|
|
1400
|
+
key: string;
|
|
1401
|
+
label: string;
|
|
1402
|
+
render?: (item: T) => ReactNode;
|
|
1403
|
+
sortable?: boolean;
|
|
1404
|
+
className?: string;
|
|
1405
|
+
}
|
|
1406
|
+
interface DataTableProps<T> {
|
|
1407
|
+
columns: DataTableColumn<T>[];
|
|
1408
|
+
data: T[];
|
|
1409
|
+
pageSize?: number;
|
|
1410
|
+
searchable?: boolean;
|
|
1411
|
+
searchPlaceholder?: string;
|
|
1412
|
+
className?: string;
|
|
1413
|
+
}
|
|
1414
|
+
declare function DataTable<T extends Record<string, any>>({ columns, data, pageSize, searchable, searchPlaceholder, className, }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
|
|
1415
|
+
declare namespace DataTable {
|
|
1416
|
+
var displayName: string;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
interface DatePickerProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "type"> {
|
|
1420
|
+
value?: Date;
|
|
1421
|
+
onChange?: (date: Date) => void;
|
|
1422
|
+
}
|
|
1423
|
+
declare function DatePicker({ value, onChange, className, ...props }: DatePickerProps): react_jsx_runtime.JSX.Element;
|
|
1424
|
+
declare namespace DatePicker {
|
|
1425
|
+
var displayName: string;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
interface AppLayoutProps {
|
|
1429
|
+
sidebar: ReactNode;
|
|
1430
|
+
children: ReactNode;
|
|
1431
|
+
sidebarWidth?: number;
|
|
1432
|
+
className?: string;
|
|
1433
|
+
}
|
|
1434
|
+
declare function AppLayout({ sidebar, children, sidebarWidth, className }: AppLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1435
|
+
|
|
1436
|
+
interface SidebarGroup {
|
|
1437
|
+
label: string;
|
|
1438
|
+
items: SidebarItemDef[];
|
|
1439
|
+
}
|
|
1440
|
+
interface SidebarItemDef {
|
|
1441
|
+
label: string;
|
|
1442
|
+
icon?: ReactNode;
|
|
1443
|
+
href?: string;
|
|
1444
|
+
badge?: ReactNode;
|
|
1445
|
+
active?: boolean;
|
|
1446
|
+
onClick?: () => void;
|
|
1447
|
+
}
|
|
1448
|
+
interface SidebarProps {
|
|
1449
|
+
groups: SidebarGroup[];
|
|
1450
|
+
className?: string;
|
|
1451
|
+
header?: ReactNode;
|
|
1452
|
+
footer?: ReactNode;
|
|
1453
|
+
collapsed?: boolean;
|
|
1454
|
+
onCollapse?: (collapsed: boolean) => void;
|
|
1455
|
+
}
|
|
1456
|
+
declare function Sidebar({ groups, className, header, footer, collapsed, onCollapse }: SidebarProps): react_jsx_runtime.JSX.Element;
|
|
1457
|
+
declare namespace Sidebar {
|
|
1458
|
+
var displayName: string;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
export { type CheckboxProps as $, Accordion as A, Badge as B, type BannerProps as C, type BannerType as D, type BreadcrumbItem as E, Breadcrumbs as F, type BreadcrumbsProps as G, Button as H, ButtonChrome as I, type ButtonChromeProps as J, ButtonGroup as K, type ButtonGroupProps as L, type ButtonProps as M, type ButtonShape as N, type ButtonSize as O, type ButtonVariant as P, CANONICAL_ICONS as Q, Calendar as R, type CanonicalIconName as S, Caption as T, Card as U, type CardProps as V, type CardVariant as W, ChatBubble as X, type ChatBubbleProps as Y, type ChatBubbleVariant as Z, Checkbox as _, Alert as a, H4 as a$, Chip as a0, type ChipProps as a1, CodeBlock as a2, Collapsible as a3, type CollapsibleProps as a4, CollapsibleSection as a5, Combobox as a6, type ComboboxOption as a7, type ComboboxProps as a8, CommandPalette as a9, type DropdownItemProps as aA, DropdownMenu as aB, type DropdownMenuProps as aC, DropdownRadioGroup as aD, type DropdownRadioGroupProps as aE, DropdownRadioItem as aF, type DropdownRadioItemProps as aG, type DropdownSide as aH, EmptyState as aI, FileUpload as aJ, type FileUploadProps as aK, FilterBar as aL, type FilterBarProps as aM, type FilterChip as aN, FilterChips as aO, type FilterChipsProps as aP, FilterControls as aQ, type FilterControlsProps as aR, FilterMenu as aS, type FilterMenuOption as aT, type FilterMenuProps as aU, FormField as aV, type FormFieldControlProps as aW, type FormFieldProps as aX, H1 as aY, H2 as aZ, H3 as a_, ComponentDocs as aa, type ComponentDocsProps as ab, type ComponentPropRow as ac, ContextMenu as ad, type ContextMenuItem as ae, type ContextMenuProps as af, DataTable as ag, type DataTableColumn as ah, type DataTableProps as ai, DatePicker as aj, type DatePickerProps as ak, Dialog as al, type DialogProps as am, Display as an, Divider as ao, type DividerProps as ap, Dot as aq, type DotProps as ar, Drawer as as, type DrawerProps as at, type DrawerSide as au, type DrawerSize as av, type DropdownAlign as aw, DropdownButton as ax, type DropdownButtonProps as ay, DropdownItem as az, AlertDialog as b, IconRocket as b$, H5 as b0, HoverCard as b1, IconActivity as b2, type IconAliasName as b3, IconAreaChart as b4, IconArrowDown as b5, IconArrowUp as b6, IconBase as b7, IconBell as b8, IconBellOff as b9, IconFlare as bA, IconFlask as bB, IconGift as bC, IconGridView as bD, IconHandClick as bE, IconHome as bF, IconInfo as bG, IconInsightBoard as bH, IconLayers as bI, IconListView as bJ, IconLogout as bK, IconMail as bL, IconMoon as bM, type IconName as bN, IconOldWindow as bO, IconPanelRight as bP, IconPerson as bQ, IconPlayCircle as bR, IconPlus as bS, IconPremium as bT, type IconProps as bU, IconQueryEditor as bV, IconQueryStack as bW, IconRadar as bX, IconRecording as bY, IconReplayFrame as bZ, IconRobot as b_, IconBolt as ba, IconBox as bb, IconByName as bc, IconCancel as bd, IconCheck as be, IconCheckCircle as bf, IconChevronDown as bg, IconChevronLeft as bh, IconChevronRight as bi, IconClipboardEdit as bj, IconClose as bk, IconCodePreview as bl, IconCohort as bm, IconCommandCursor as bn, IconCopy as bo, IconCumulativeChart as bp, IconDataReel as bq, IconDatabase as br, IconDownload as bs, IconEdit as bt, IconErrorOutline as bu, IconEventStream as bv, IconExclamation as bw, IconExperimentSplit as bx, IconFeatureGate as by, IconFlag as bz, type AlertDialogProps as c, type PaginationProps as c$, IconSave as c0, IconSearch as c1, IconSelectEvents as c2, IconShoppingCart as c3, IconSpinner as c4, IconStar as c5, IconSubArrowRight as c6, IconSun as c7, IconSurveyCard as c8, IconSurveys as c9, Link as cA, type LinkProps as cB, Loader as cC, type LoaderProps as cD, type LoaderSize as cE, type LoaderVariant as cF, LoadingBar as cG, type LoadingBarProps as cH, LoadingState as cI, type LoadingStateProps as cJ, Menubar as cK, type MenubarItem as cL, type MenubarProps as cM, Metric as cN, type MetricProps as cO, Modal as cP, type ModalProps as cQ, type ModalSize as cR, Mono as cS, NumberField as cT, type NumberFieldProps as cU, OLD_UI_ICONS as cV, Overline as cW, P as cX, PH_ICONS as cY, PH_ICON_ALIASES as cZ, Pagination as c_, IconSync as ca, IconTableChart as cb, IconTerminal as cc, IconToggle as cd, IconTrash as ce, IconTuning as cf, IconUpload as cg, IconVolume as ch, IconVolumeOff as ci, Indicator as cj, type IndicatorPosition as ck, type IndicatorProps as cl, Input as cm, InputGroup as cn, type InputGroupProps as co, type InputProps as cp, type InputSize as cq, type InputVariant as cr, Kbd as cs, type KbdPlatform as ct, type KbdProps as cu, type KbdVariant as cv, Label as cw, Lead as cx, Lettermark as cy, type LettermarkProps as cz, type AlertProps as d, Tag as d$, Panel as d0, type PanelProps as d1, Popover as d2, type PopoverProps as d3, Progress as d4, ProgressCircle as d5, type ProgressCircleProps as d6, type ProgressProps as d7, Radio as d8, type RadioProps as d9, type SidebarGroup as dA, type SidebarItemDef as dB, type SidebarProps as dC, Skeleton as dD, type SkeletonProps as dE, type SkeletonShape as dF, Small as dG, Snack as dH, type SnackProps as dI, SortMenu as dJ, type SortMenuProps as dK, Spinner as dL, type SpinnerProps as dM, Splotch as dN, type SplotchColor as dO, type SplotchProps as dP, Stat as dQ, type StatProps as dR, type StatTone as dS, Stepper as dT, type TabItem as dU, Table as dV, type TableColumn as dW, type TableProps as dX, Tabs as dY, type TabsProps as dZ, type TabsVariant as d_, Range as da, type RangeProps as db, Rating as dc, type RatingProps as dd, Resizable as de, type ResizableProps as df, Row as dg, type RowProps as dh, ScrollArea as di, type ScrollAreaProps as dj, SearchGroup as dk, type SearchGroupProps as dl, SearchInput as dm, type SearchInputProps as dn, SegmentedControl as dp, Select as dq, type SelectProps as dr, SettingsLayout as ds, type SettingsLayoutProps as dt, SettingsNav as du, type SettingsNavGroup as dv, type SettingsNavItem as dw, type SettingsNavProps as dx, ShowcaseWrapper as dy, Sidebar as dz, type AlertStatus as e, type TagProps as e0, type TagType as e1, Terminal as e2, type TerminalProps as e3, Textarea as e4, type TextareaProps as e5, ThemeDomSync as e6, ThemeManager as e7, type ThemeManagerProps as e8, ThemeSwitcher as e9, type ThemeSwitcherProps as ea, Timeline as eb, type TimelineEvent as ec, type TimelineProps as ed, Toast as ee, type ToastProps as ef, ToastStack as eg, type ToastStackProps as eh, type ToastStatus as ei, Toggle as ej, ToggleButton as ek, type ToggleButtonProps as el, ToggleGroup as em, type ToggleGroupProps as en, type ToggleProps as eo, Tooltip as ep, type TooltipAlign as eq, type TooltipProps as er, TooltipProvider as es, type TooltipProviderProps as et, type TooltipSide as eu, Widget as ev, type WidgetProps as ew, AppLayout as f, type AppLayoutProps as g, AuthCard as h, type AuthCardProps as i, AuthDivider as j, type AuthDividerProps as k, AuthLayout as l, type AuthLayoutProps as m, Autocomplete as n, type AutocompleteOption as o, type AutocompleteProps as p, Avatar as q, AvatarGroup as r, type AvatarGroupProps as s, type AvatarProps as t, type AvatarSize as u, type AvatarStatus as v, type BadgeProps as w, type BadgeSize as x, type BadgeVariant as y, Banner as z };
|