@xenide-io/the-old-ui-theme 0.5.3 → 0.5.4
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/dist/{index-Od4pIP4F.d.mts → Chip-C5hRFAhe.d.mts} +10 -606
- package/dist/{index-Od4pIP4F.d.ts → Chip-C5hRFAhe.d.ts} +10 -606
- package/dist/{chunk-G53YLHVE.mjs → chunk-E5ZBQYEX.mjs} +59 -9
- package/dist/{chunk-VFTZXPXM.mjs → chunk-SBBKXV35.mjs} +144 -79
- package/dist/index.d.mts +3 -79
- package/dist/index.d.ts +3 -79
- package/dist/index.js +524 -3595
- package/dist/index.mjs +3 -765
- package/dist/suite.d.mts +38 -12
- package/dist/suite.d.ts +38 -12
- package/dist/suite.js +84 -15
- package/dist/suite.mjs +53 -13
- package/dist/ui.d.mts +608 -2
- package/dist/ui.d.ts +608 -2
- package/dist/ui.js +202 -87
- package/dist/ui.mjs +2 -2
- package/package.json +2 -6
- package/scripts/install-theme-dev.sh +60 -0
- package/scripts/sync-posthog-icons.mjs +75 -0
- package/src/components/ui/Chip.tsx +36 -18
- package/src/components/ui/CommandPalette.test.tsx +41 -0
- package/src/components/ui/CommandPalette.tsx +58 -9
- package/src/components/ui/DropdownMenu.tsx +50 -11
- package/src/components/ui/SegmentedControl.tsx +2 -1
- package/src/components/ui/SettingsLayout.tsx +19 -5
- package/src/components/ui/interaction-primitives.test.tsx +52 -0
- package/src/styles/suite-skin.css +17 -35
- package/src/suite/components/app-switcher.tsx +32 -25
- package/src/suite/components/command-palette-host.tsx +20 -8
- package/src/suite/components/suite-app-layout.tsx +1 -1
- package/src/suite/components/suite-bottom-nav.tsx +23 -18
- package/src/suite/components/suite-layout.test.tsx +44 -0
- package/src/suite/components/suite-layout.tsx +3 -3
- package/src/suite/components/suite-mobile-drawer.tsx +12 -0
- package/src/suite/components/suite-mobile-header.tsx +15 -9
- package/src/suite/components/suite-notification-bell.tsx +23 -11
- package/src/suite/components/suite-settings-mobile-nav.tsx +2 -0
- package/src/suite/components/suite-sidebar.tsx +6 -3
- package/src/suite/components/suite-user-menu.tsx +6 -0
- package/src/suite/lib/injected.ts +12 -11
- package/src/components/charts/index.ts +0 -9
- package/src/components/charts/quill/BarChart.tsx +0 -85
- package/src/components/charts/quill/FunnelChart.tsx +0 -49
- package/src/components/charts/quill/InsightShell.tsx +0 -27
- package/src/components/charts/quill/MetricCard.tsx +0 -44
- package/src/components/charts/quill/PieChart.tsx +0 -81
- package/src/components/charts/quill/Sparkline.tsx +0 -57
- package/src/components/charts/quill/TimeSeriesLineChart.tsx +0 -62
- package/src/components/charts/quill/index.ts +0 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ButtonHTMLAttributes, ReactNode, HTMLAttributes, AriaAttributes, ComponentPropsWithoutRef, CSSProperties, SVGAttributes, ReactElement, AnchorHTMLAttributes
|
|
2
|
+
import { ButtonHTMLAttributes, ReactNode, HTMLAttributes, AriaAttributes, ComponentPropsWithoutRef, CSSProperties, SVGAttributes, ReactElement, AnchorHTMLAttributes } from 'react';
|
|
3
3
|
import * as DropdownPrimitive from '@radix-ui/react-dropdown-menu';
|
|
4
4
|
|
|
5
5
|
type ButtonVariant = "primary" | "secondary" | "tertiary" | "signal" | "accent" | "neutral" | "info" | "success" | "warning" | "danger" | "ghost" | "link";
|
|
@@ -70,32 +70,6 @@ interface CardProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
|
|
|
70
70
|
}
|
|
71
71
|
declare const Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
|
|
72
72
|
|
|
73
|
-
type DrawerSide = "left" | "right";
|
|
74
|
-
type DrawerSize = "sm" | "md" | "lg";
|
|
75
|
-
interface DrawerProps {
|
|
76
|
-
open?: boolean;
|
|
77
|
-
onClose?: () => void;
|
|
78
|
-
title?: ReactNode;
|
|
79
|
-
children?: ReactNode;
|
|
80
|
-
footer?: ReactNode;
|
|
81
|
-
side?: DrawerSide;
|
|
82
|
-
size?: DrawerSize;
|
|
83
|
-
className?: string;
|
|
84
|
-
showCloseButton?: boolean;
|
|
85
|
-
}
|
|
86
|
-
declare function Drawer({ open, onClose, title, children, footer, side, size, className, showCloseButton, }: DrawerProps): react.JSX.Element | null;
|
|
87
|
-
|
|
88
|
-
type KbdVariant = "shortcut" | "key" | "token";
|
|
89
|
-
type KbdPlatform = "text" | "mac" | "windows";
|
|
90
|
-
interface KbdProps extends HTMLAttributes<HTMLElement> {
|
|
91
|
-
variant?: KbdVariant;
|
|
92
|
-
keys?: readonly ReactNode[];
|
|
93
|
-
platform?: KbdPlatform;
|
|
94
|
-
separator?: ReactNode;
|
|
95
|
-
children?: ReactNode;
|
|
96
|
-
}
|
|
97
|
-
declare function Kbd({ variant, keys, platform, separator, children, className, "aria-label": ariaLabel, ...props }: KbdProps): react.JSX.Element;
|
|
98
|
-
|
|
99
73
|
type LoaderVariant = "spinner" | "dots" | "pulse";
|
|
100
74
|
type LoaderSize = "sm" | "md" | "lg";
|
|
101
75
|
type SkeletonShape = "title" | "text" | "short-text" | "avatar" | "button" | "block";
|
|
@@ -184,6 +158,8 @@ interface DropdownOpenProps {
|
|
|
184
158
|
interface DropdownMenuProps extends Omit<HTMLAttributes<HTMLDivElement>, "children">, DropdownPlacementProps, DropdownOpenProps {
|
|
185
159
|
/** Custom non-interactive trigger node, such as an avatar or icon chip. */
|
|
186
160
|
trigger: ReactNode;
|
|
161
|
+
triggerId?: string;
|
|
162
|
+
triggerDataTest?: string;
|
|
187
163
|
/** Accessible name when the trigger has no visible text. */
|
|
188
164
|
"aria-label": string;
|
|
189
165
|
children: ReactNode;
|
|
@@ -209,7 +185,7 @@ type DropdownItemProps = ButtonHTMLAttributes<HTMLButtonElement>;
|
|
|
209
185
|
type DropdownRadioGroupProps = ComponentPropsWithoutRef<typeof DropdownPrimitive.RadioGroup>;
|
|
210
186
|
type DropdownRadioItemProps = ComponentPropsWithoutRef<typeof DropdownPrimitive.RadioItem>;
|
|
211
187
|
/** Collision-aware menu that flips sides and shifts its alignment to remain visible. */
|
|
212
|
-
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.Element;
|
|
188
|
+
declare function DropdownMenu({ trigger, triggerId, triggerDataTest, children, align, side, sideOffset, alignOffset, collisionPadding, avoidCollisions, className, panelClassName, "aria-label": ariaLabel, open, defaultOpen, onOpenChange, modal, disabled, ...props }: DropdownMenuProps): react.JSX.Element;
|
|
213
189
|
/** Tactile dropdown trigger backed by the same adaptive menu positioning. */
|
|
214
190
|
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.Element;
|
|
215
191
|
declare function DropdownItem({ className, children, disabled, ...props }: DropdownItemProps): react.JSX.Element;
|
|
@@ -320,27 +296,6 @@ interface ModalProps {
|
|
|
320
296
|
}
|
|
321
297
|
declare function Modal({ open, onClose, title, description, children, footer, size, className, customLayout, showCloseButton, closeOnOutsideClick, closeOnEscape, dataTest, panelDataTest, zIndex, id, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, }: ModalProps): react.JSX.Element;
|
|
322
298
|
|
|
323
|
-
interface BreadcrumbItem {
|
|
324
|
-
label: string;
|
|
325
|
-
href?: string;
|
|
326
|
-
current?: boolean;
|
|
327
|
-
}
|
|
328
|
-
interface BreadcrumbsProps {
|
|
329
|
-
items: BreadcrumbItem[];
|
|
330
|
-
label?: string;
|
|
331
|
-
className?: string;
|
|
332
|
-
}
|
|
333
|
-
declare function Breadcrumbs({ items, label, className }: BreadcrumbsProps): react.JSX.Element;
|
|
334
|
-
interface PaginationProps {
|
|
335
|
-
page: number;
|
|
336
|
-
totalPages: number;
|
|
337
|
-
onPageChange?: (page: number) => void;
|
|
338
|
-
label?: string;
|
|
339
|
-
compact?: boolean;
|
|
340
|
-
className?: string;
|
|
341
|
-
}
|
|
342
|
-
declare function Pagination({ page, totalPages, onPageChange, label, compact, className, }: PaginationProps): react.JSX.Element;
|
|
343
|
-
|
|
344
299
|
interface PanelProps extends Omit<ComponentPropsWithoutRef<"div">, "title"> {
|
|
345
300
|
title?: ReactNode;
|
|
346
301
|
description?: ReactNode;
|
|
@@ -348,16 +303,6 @@ interface PanelProps extends Omit<ComponentPropsWithoutRef<"div">, "title"> {
|
|
|
348
303
|
}
|
|
349
304
|
declare function Panel({ title, description, children, className, ...props }: PanelProps): react.JSX.Element;
|
|
350
305
|
|
|
351
|
-
interface RatingProps extends Omit<ComponentPropsWithoutRef<"div">, "onChange"> {
|
|
352
|
-
label?: string;
|
|
353
|
-
value?: number;
|
|
354
|
-
max?: number;
|
|
355
|
-
readOnly?: boolean;
|
|
356
|
-
onChange?: (value: number) => void;
|
|
357
|
-
wrapperClassName?: string;
|
|
358
|
-
}
|
|
359
|
-
declare function Rating({ label, value, max, readOnly, onChange, className, wrapperClassName, ...props }: RatingProps): react.JSX.Element;
|
|
360
|
-
|
|
361
306
|
interface SearchInputProps extends Omit<ComponentPropsWithoutRef<"input">, "type"> {
|
|
362
307
|
/** Associated label text — always rendered (visually hidden when `hideLabel`) */
|
|
363
308
|
label?: string;
|
|
@@ -405,54 +350,6 @@ interface StatProps extends ComponentPropsWithoutRef<"article"> {
|
|
|
405
350
|
}
|
|
406
351
|
declare function Stat({ icon, label, value, footer, tone, className, ...props }: StatProps): react.JSX.Element;
|
|
407
352
|
|
|
408
|
-
type ToastStatus = "info" | "success" | "warning" | "danger";
|
|
409
|
-
interface ToastProps {
|
|
410
|
-
status?: ToastStatus;
|
|
411
|
-
title: string;
|
|
412
|
-
description?: string;
|
|
413
|
-
onDismiss?: () => void;
|
|
414
|
-
className?: string;
|
|
415
|
-
}
|
|
416
|
-
declare function Toast({ status, title, description, onDismiss, className, }: ToastProps): react.JSX.Element;
|
|
417
|
-
interface ToastStackProps {
|
|
418
|
-
children?: ReactNode;
|
|
419
|
-
className?: string;
|
|
420
|
-
}
|
|
421
|
-
declare function ToastStack({ children, className }: ToastStackProps): react.JSX.Element;
|
|
422
|
-
|
|
423
|
-
interface TabItem {
|
|
424
|
-
value: string;
|
|
425
|
-
label: string;
|
|
426
|
-
}
|
|
427
|
-
type TabsVariant = "pill" | "underline";
|
|
428
|
-
interface TabsProps {
|
|
429
|
-
items: TabItem[];
|
|
430
|
-
value: string;
|
|
431
|
-
onChange: (value: string) => void;
|
|
432
|
-
variant?: TabsVariant;
|
|
433
|
-
className?: string;
|
|
434
|
-
}
|
|
435
|
-
declare function Tabs({ items, value, onChange, variant, className }: TabsProps): react.JSX.Element;
|
|
436
|
-
|
|
437
|
-
/**
|
|
438
|
-
* Re-applies `html[data-theme]` after React commits. Hydration can clear attributes
|
|
439
|
-
* that were set only by `THEME_INIT_SCRIPT` — without this sync, `:root`-scoped
|
|
440
|
-
* light tokens effectively win visually.
|
|
441
|
-
*/
|
|
442
|
-
declare function ThemeDomSync(): null;
|
|
443
|
-
|
|
444
|
-
interface ThemeManagerProps {
|
|
445
|
-
children?: ReactNode;
|
|
446
|
-
}
|
|
447
|
-
/** Client wrapper that keeps html[data-theme] synced with localStorage. */
|
|
448
|
-
declare function ThemeManager({ children }: ThemeManagerProps): react.JSX.Element;
|
|
449
|
-
|
|
450
|
-
interface ThemeSwitcherProps {
|
|
451
|
-
className?: string;
|
|
452
|
-
}
|
|
453
|
-
/** Colour-only theme picker — persists to localStorage and sets html[data-theme]. */
|
|
454
|
-
declare function ThemeSwitcher({ className }: ThemeSwitcherProps): react.JSX.Element;
|
|
455
|
-
|
|
456
353
|
interface IconProps extends SVGAttributes<SVGSVGElement> {
|
|
457
354
|
/** Pixel size or CSS length; defaults to `1em`. */
|
|
458
355
|
size?: number | string;
|
|
@@ -746,19 +643,6 @@ interface AccordionProps {
|
|
|
746
643
|
}
|
|
747
644
|
declare function Accordion({ items, allowMultiple, defaultOpen, className, }: AccordionProps): react.JSX.Element;
|
|
748
645
|
|
|
749
|
-
interface Step {
|
|
750
|
-
id: string;
|
|
751
|
-
label: string;
|
|
752
|
-
description?: string;
|
|
753
|
-
status?: "pending" | "current" | "completed" | "error";
|
|
754
|
-
}
|
|
755
|
-
interface StepperProps {
|
|
756
|
-
steps: Step[];
|
|
757
|
-
currentStep: number;
|
|
758
|
-
className?: string;
|
|
759
|
-
}
|
|
760
|
-
declare function Stepper({ steps, currentStep, className }: StepperProps): react.JSX.Element;
|
|
761
|
-
|
|
762
646
|
interface SegmentedControlOption {
|
|
763
647
|
value: string;
|
|
764
648
|
label: string;
|
|
@@ -785,8 +669,12 @@ interface CommandPaletteProps {
|
|
|
785
669
|
onClose: () => void;
|
|
786
670
|
placeholder?: string;
|
|
787
671
|
className?: string;
|
|
672
|
+
id?: string;
|
|
673
|
+
dataTest?: string;
|
|
674
|
+
inputId?: string;
|
|
675
|
+
inputDataTest?: string;
|
|
788
676
|
}
|
|
789
|
-
declare function CommandPalette({ items, isOpen, onClose, placeholder, className, }: CommandPaletteProps): react.JSX.Element | null;
|
|
677
|
+
declare function CommandPalette({ items, isOpen, onClose, placeholder, className, id, dataTest, inputId, inputDataTest, }: CommandPaletteProps): react.JSX.Element | null;
|
|
790
678
|
|
|
791
679
|
interface CalendarProps {
|
|
792
680
|
value?: Date;
|
|
@@ -795,13 +683,6 @@ interface CalendarProps {
|
|
|
795
683
|
}
|
|
796
684
|
declare function Calendar({ value, onChange, className }: CalendarProps): react.JSX.Element;
|
|
797
685
|
|
|
798
|
-
interface HoverCardProps {
|
|
799
|
-
trigger: React.ReactNode;
|
|
800
|
-
children: React.ReactNode;
|
|
801
|
-
className?: string;
|
|
802
|
-
}
|
|
803
|
-
declare function HoverCard({ trigger, children, className }: HoverCardProps): react.JSX.Element;
|
|
804
|
-
|
|
805
686
|
type TooltipSide = "top" | "right" | "bottom" | "left";
|
|
806
687
|
type TooltipAlign = "start" | "center" | "end";
|
|
807
688
|
interface TooltipProviderProps {
|
|
@@ -881,57 +762,6 @@ declare function FilterBar({ children, label, onClear, clearLabel, resultCount,
|
|
|
881
762
|
declare function FilterMenu({ label, value, options, onValueChange, placeholder, align, disabled, className, }: FilterMenuProps): react.JSX.Element;
|
|
882
763
|
declare function SortMenu({ label, value, options, onValueChange, direction, align, disabled, className, }: SortMenuProps): react.JSX.Element;
|
|
883
764
|
|
|
884
|
-
interface FilterControlsProps extends ComponentPropsWithoutRef<"div"> {
|
|
885
|
-
children: ReactNode;
|
|
886
|
-
barProps?: Omit<FilterBarProps, "children">;
|
|
887
|
-
chipsProps?: FilterChipsProps;
|
|
888
|
-
emptyState?: ReactNode;
|
|
889
|
-
}
|
|
890
|
-
/** Combines filter controls and their applied chips without owning filter state. */
|
|
891
|
-
declare function FilterControls({ children, barProps, chipsProps, emptyState, className, ...props }: FilterControlsProps): react.JSX.Element;
|
|
892
|
-
|
|
893
|
-
interface CodeBlockProps {
|
|
894
|
-
code: string;
|
|
895
|
-
language?: string;
|
|
896
|
-
filename?: string;
|
|
897
|
-
className?: string;
|
|
898
|
-
}
|
|
899
|
-
declare function CodeBlock({ code, language, filename, className }: CodeBlockProps): react.JSX.Element;
|
|
900
|
-
|
|
901
|
-
interface ComponentPropRow {
|
|
902
|
-
name: string;
|
|
903
|
-
type: string;
|
|
904
|
-
defaultValue?: string;
|
|
905
|
-
description?: ReactNode;
|
|
906
|
-
}
|
|
907
|
-
interface ComponentDocsProps {
|
|
908
|
-
title?: string;
|
|
909
|
-
rows: ComponentPropRow[];
|
|
910
|
-
defaultOpen?: boolean;
|
|
911
|
-
className?: string;
|
|
912
|
-
}
|
|
913
|
-
declare function ComponentDocs({ title, rows, defaultOpen, className }: ComponentDocsProps): react.JSX.Element;
|
|
914
|
-
|
|
915
|
-
interface ShowcaseWrapperProps {
|
|
916
|
-
id?: string;
|
|
917
|
-
title: string;
|
|
918
|
-
description?: string;
|
|
919
|
-
docs?: ReactNode;
|
|
920
|
-
code: string;
|
|
921
|
-
filename?: string;
|
|
922
|
-
children: ReactNode;
|
|
923
|
-
className?: string;
|
|
924
|
-
}
|
|
925
|
-
declare function ShowcaseWrapper({ id, title, description, docs, code, filename, children, className, }: ShowcaseWrapperProps): react.JSX.Element;
|
|
926
|
-
|
|
927
|
-
interface CollapsibleSectionProps {
|
|
928
|
-
title: string;
|
|
929
|
-
children: React.ReactNode;
|
|
930
|
-
defaultOpen?: boolean;
|
|
931
|
-
id?: string;
|
|
932
|
-
}
|
|
933
|
-
declare function CollapsibleSection({ title, children, defaultOpen, id }: CollapsibleSectionProps): react.JSX.Element;
|
|
934
|
-
|
|
935
765
|
type TextTone = "default" | "muted" | "subtle" | "brand" | "danger" | "success" | "warning" | "info" | "inherit";
|
|
936
766
|
type TextWeight = "normal" | "medium" | "semibold" | "bold" | "extrabold";
|
|
937
767
|
interface TextBaseProps {
|
|
@@ -1007,191 +837,6 @@ interface ProgressProps extends ComponentPropsWithoutRef<"div"> {
|
|
|
1007
837
|
}
|
|
1008
838
|
declare function Progress({ value, max, color, label, showPercentage, size, className, ...props }: ProgressProps): react.JSX.Element;
|
|
1009
839
|
|
|
1010
|
-
type ChatBubbleVariant = "from" | "self";
|
|
1011
|
-
interface ChatBubbleProps extends ComponentPropsWithoutRef<"div"> {
|
|
1012
|
-
/** Message content */
|
|
1013
|
-
children?: ReactNode;
|
|
1014
|
-
/** Avatar or icon */
|
|
1015
|
-
avatar?: ReactNode;
|
|
1016
|
-
/** Sender name */
|
|
1017
|
-
name?: string;
|
|
1018
|
-
/** Timestamp */
|
|
1019
|
-
time?: string;
|
|
1020
|
-
/** "from" = left/grey, "self" = right/brand */
|
|
1021
|
-
variant?: ChatBubbleVariant;
|
|
1022
|
-
/** Footer text (e.g. "Synced with...") */
|
|
1023
|
-
footer?: ReactNode;
|
|
1024
|
-
}
|
|
1025
|
-
declare function ChatBubble({ children, avatar, name, time, variant, footer, className, ...props }: ChatBubbleProps): react.JSX.Element;
|
|
1026
|
-
|
|
1027
|
-
interface TerminalProps extends ComponentPropsWithoutRef<"div"> {
|
|
1028
|
-
/** Window title */
|
|
1029
|
-
title?: string;
|
|
1030
|
-
/** Terminal lines — array of { text, color? } or plain strings */
|
|
1031
|
-
lines?: Array<{
|
|
1032
|
-
text: string;
|
|
1033
|
-
color?: string;
|
|
1034
|
-
} | string>;
|
|
1035
|
-
/** Custom content instead of lines */
|
|
1036
|
-
children?: ReactNode;
|
|
1037
|
-
}
|
|
1038
|
-
declare function Terminal({ title, lines, children, className, ...props }: TerminalProps): react.JSX.Element;
|
|
1039
|
-
|
|
1040
|
-
type IndicatorPosition = "top-right" | "top-left" | "bottom-right" | "bottom-left";
|
|
1041
|
-
interface IndicatorProps extends ComponentPropsWithoutRef<"div"> {
|
|
1042
|
-
/** The element to attach the indicator to */
|
|
1043
|
-
children: ReactNode;
|
|
1044
|
-
/** Badge content (number, text, or "!") */
|
|
1045
|
-
badge?: ReactNode;
|
|
1046
|
-
/** Indicator colour */
|
|
1047
|
-
color?: string;
|
|
1048
|
-
/** Position of the indicator dot */
|
|
1049
|
-
position?: IndicatorPosition;
|
|
1050
|
-
/** Show a simple dot instead of a badge */
|
|
1051
|
-
dot?: boolean;
|
|
1052
|
-
/** Offset from corner (default: 2px) */
|
|
1053
|
-
offset?: number;
|
|
1054
|
-
}
|
|
1055
|
-
declare function Indicator({ children, badge, color, position, dot, className, ...props }: IndicatorProps): react.JSX.Element;
|
|
1056
|
-
|
|
1057
|
-
interface TimelineEvent {
|
|
1058
|
-
id: string;
|
|
1059
|
-
title: string;
|
|
1060
|
-
description?: string;
|
|
1061
|
-
time?: string;
|
|
1062
|
-
icon?: ReactNode;
|
|
1063
|
-
color?: string;
|
|
1064
|
-
}
|
|
1065
|
-
interface TimelineProps extends ComponentPropsWithoutRef<"ol"> {
|
|
1066
|
-
events: TimelineEvent[];
|
|
1067
|
-
/** Alternate left/right layout on large screens */
|
|
1068
|
-
alternate?: boolean;
|
|
1069
|
-
}
|
|
1070
|
-
declare function Timeline({ events, alternate, className, ...props }: TimelineProps): react.JSX.Element;
|
|
1071
|
-
|
|
1072
|
-
type BannerType = "info" | "success" | "warning" | "danger" | "ai";
|
|
1073
|
-
interface BannerProps extends HTMLAttributes<HTMLDivElement> {
|
|
1074
|
-
type?: BannerType;
|
|
1075
|
-
onClose?: () => void;
|
|
1076
|
-
action?: ReactNode;
|
|
1077
|
-
hideIcon?: boolean;
|
|
1078
|
-
square?: boolean;
|
|
1079
|
-
icon?: ReactNode;
|
|
1080
|
-
children: ReactNode;
|
|
1081
|
-
}
|
|
1082
|
-
declare const Banner: react.ForwardRefExoticComponent<BannerProps & react.RefAttributes<HTMLDivElement>>;
|
|
1083
|
-
|
|
1084
|
-
interface DialogProps extends Omit<ModalProps, "onClose"> {
|
|
1085
|
-
isOpen?: boolean;
|
|
1086
|
-
onClose?: () => void;
|
|
1087
|
-
onConfirm?: () => void | Promise<void>;
|
|
1088
|
-
confirmText?: string;
|
|
1089
|
-
cancelText?: string;
|
|
1090
|
-
confirmProps?: Partial<ButtonProps>;
|
|
1091
|
-
cancelProps?: Partial<ButtonProps>;
|
|
1092
|
-
children?: ReactNode;
|
|
1093
|
-
}
|
|
1094
|
-
declare function Dialog({ isOpen: openProp, onClose, onConfirm, confirmText, cancelText, confirmProps, cancelProps, children, title, ...modalProps }: DialogProps): react.JSX.Element;
|
|
1095
|
-
declare namespace Dialog {
|
|
1096
|
-
var displayName: string;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
interface DividerProps extends HTMLAttributes<HTMLDivElement> {
|
|
1100
|
-
vertical?: boolean;
|
|
1101
|
-
dashed?: boolean;
|
|
1102
|
-
thick?: boolean;
|
|
1103
|
-
label?: string;
|
|
1104
|
-
}
|
|
1105
|
-
declare function Divider({ vertical, dashed, thick, label, className, ...props }: DividerProps): react.JSX.Element;
|
|
1106
|
-
declare namespace Divider {
|
|
1107
|
-
var displayName: string;
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
type TagType = "default" | "primary" | "success" | "warning" | "danger" | "info" | "muted" | "highlight";
|
|
1111
|
-
interface TagProps extends HTMLAttributes<HTMLDivElement> {
|
|
1112
|
-
type?: TagType;
|
|
1113
|
-
size?: "sm" | "md";
|
|
1114
|
-
icon?: ReactNode;
|
|
1115
|
-
closable?: boolean;
|
|
1116
|
-
onClose?: () => void;
|
|
1117
|
-
children: ReactNode;
|
|
1118
|
-
}
|
|
1119
|
-
declare const Tag: react.ForwardRefExoticComponent<TagProps & react.RefAttributes<HTMLDivElement>>;
|
|
1120
|
-
|
|
1121
|
-
interface ProgressCircleProps extends HTMLAttributes<HTMLSpanElement> {
|
|
1122
|
-
progress: number;
|
|
1123
|
-
size?: number;
|
|
1124
|
-
strokeWidth?: number;
|
|
1125
|
-
children?: ReactNode;
|
|
1126
|
-
}
|
|
1127
|
-
declare function ProgressCircle({ progress, size, strokeWidth: sw, children, className, ...props }: ProgressCircleProps): react.JSX.Element;
|
|
1128
|
-
declare namespace ProgressCircle {
|
|
1129
|
-
var displayName: string;
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
interface RowProps extends HTMLAttributes<HTMLDivElement> {
|
|
1133
|
-
icon?: ReactElement | null;
|
|
1134
|
-
sideIcon?: ReactElement | null;
|
|
1135
|
-
status?: "default" | "success" | "warning" | "danger" | "muted";
|
|
1136
|
-
fullWidth?: boolean;
|
|
1137
|
-
center?: boolean;
|
|
1138
|
-
size?: "sm" | "md" | "lg";
|
|
1139
|
-
children?: ReactNode;
|
|
1140
|
-
}
|
|
1141
|
-
declare const Row: react.ForwardRefExoticComponent<RowProps & react.RefAttributes<HTMLDivElement>>;
|
|
1142
|
-
|
|
1143
|
-
interface WidgetProps {
|
|
1144
|
-
title: ReactNode;
|
|
1145
|
-
onClose?: () => void;
|
|
1146
|
-
actions?: ReactNode;
|
|
1147
|
-
children?: ReactNode;
|
|
1148
|
-
className?: string;
|
|
1149
|
-
}
|
|
1150
|
-
declare function Widget({ title, onClose, actions, children, className }: WidgetProps): react.JSX.Element;
|
|
1151
|
-
declare namespace Widget {
|
|
1152
|
-
var displayName: string;
|
|
1153
|
-
}
|
|
1154
|
-
|
|
1155
|
-
interface LettermarkProps extends HTMLAttributes<HTMLDivElement> {
|
|
1156
|
-
name?: string | number | null;
|
|
1157
|
-
index?: number;
|
|
1158
|
-
rounded?: boolean;
|
|
1159
|
-
outlined?: boolean;
|
|
1160
|
-
size?: "xs" | "sm" | "md" | "lg";
|
|
1161
|
-
}
|
|
1162
|
-
declare const Lettermark: react.ForwardRefExoticComponent<LettermarkProps & react.RefAttributes<HTMLDivElement>>;
|
|
1163
|
-
|
|
1164
|
-
type SplotchColor = "purple" | "blue" | "green" | "black" | "white" | "orange" | "red" | "yellow";
|
|
1165
|
-
interface SplotchProps extends HTMLAttributes<HTMLDivElement> {
|
|
1166
|
-
color: SplotchColor;
|
|
1167
|
-
}
|
|
1168
|
-
declare function Splotch({ color, className, ...props }: SplotchProps): react.JSX.Element;
|
|
1169
|
-
declare namespace Splotch {
|
|
1170
|
-
var displayName: string;
|
|
1171
|
-
}
|
|
1172
|
-
|
|
1173
|
-
interface PopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
1174
|
-
trigger: ReactNode;
|
|
1175
|
-
children: ReactNode;
|
|
1176
|
-
open?: boolean;
|
|
1177
|
-
onOpenChange?: (open: boolean) => void;
|
|
1178
|
-
placement?: "top" | "bottom" | "left" | "right";
|
|
1179
|
-
matchTriggerWidth?: boolean;
|
|
1180
|
-
padded?: boolean;
|
|
1181
|
-
}
|
|
1182
|
-
declare function Popover({ trigger, children, open: controlledOpen, onOpenChange, placement, matchTriggerWidth, padded, className, ...props }: PopoverProps): react.JSX.Element;
|
|
1183
|
-
declare namespace Popover {
|
|
1184
|
-
var displayName: string;
|
|
1185
|
-
}
|
|
1186
|
-
|
|
1187
|
-
interface LoadingBarProps extends HTMLAttributes<HTMLDivElement> {
|
|
1188
|
-
active?: boolean;
|
|
1189
|
-
}
|
|
1190
|
-
declare function LoadingBar({ active, className, ...props }: LoadingBarProps): react.JSX.Element;
|
|
1191
|
-
declare namespace LoadingBar {
|
|
1192
|
-
var displayName: string;
|
|
1193
|
-
}
|
|
1194
|
-
|
|
1195
840
|
interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1196
841
|
children: ReactNode;
|
|
1197
842
|
disabled?: boolean;
|
|
@@ -1207,161 +852,6 @@ declare namespace Spinner {
|
|
|
1207
852
|
var displayName: string;
|
|
1208
853
|
}
|
|
1209
854
|
|
|
1210
|
-
interface SnackProps extends HTMLAttributes<HTMLSpanElement> {
|
|
1211
|
-
type?: "regular" | "pill";
|
|
1212
|
-
onClose?: () => void;
|
|
1213
|
-
wrap?: boolean;
|
|
1214
|
-
children: ReactNode;
|
|
1215
|
-
}
|
|
1216
|
-
declare const Snack: react.ForwardRefExoticComponent<SnackProps & react.RefAttributes<HTMLSpanElement>>;
|
|
1217
|
-
|
|
1218
|
-
interface ComboboxOption {
|
|
1219
|
-
value: string;
|
|
1220
|
-
label: string;
|
|
1221
|
-
}
|
|
1222
|
-
interface ComboboxProps {
|
|
1223
|
-
options: ComboboxOption[];
|
|
1224
|
-
value?: string[];
|
|
1225
|
-
onChange?: (value: string[]) => void;
|
|
1226
|
-
placeholder?: string;
|
|
1227
|
-
className?: string;
|
|
1228
|
-
disabled?: boolean;
|
|
1229
|
-
}
|
|
1230
|
-
declare function Combobox({ options, value, onChange, placeholder, className, disabled, }: ComboboxProps): react.JSX.Element;
|
|
1231
|
-
declare namespace Combobox {
|
|
1232
|
-
var displayName: string;
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
interface AutocompleteOption {
|
|
1236
|
-
value: string;
|
|
1237
|
-
label: string;
|
|
1238
|
-
}
|
|
1239
|
-
interface AutocompleteProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onSelect"> {
|
|
1240
|
-
options: AutocompleteOption[];
|
|
1241
|
-
onSelect?: (option: AutocompleteOption) => void;
|
|
1242
|
-
}
|
|
1243
|
-
declare function Autocomplete({ options, onSelect, className, value: controlledValue, onChange, placeholder, ...inputProps }: AutocompleteProps): react.JSX.Element;
|
|
1244
|
-
declare namespace Autocomplete {
|
|
1245
|
-
var displayName: string;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
|
-
interface ContextMenuItem {
|
|
1249
|
-
label?: string;
|
|
1250
|
-
onClick?: () => void;
|
|
1251
|
-
disabled?: boolean;
|
|
1252
|
-
separator?: boolean;
|
|
1253
|
-
icon?: ReactNode;
|
|
1254
|
-
}
|
|
1255
|
-
interface ContextMenuProps extends HTMLAttributes<HTMLDivElement> {
|
|
1256
|
-
items: ContextMenuItem[];
|
|
1257
|
-
children: ReactNode;
|
|
1258
|
-
}
|
|
1259
|
-
declare function ContextMenu({ items, children, className, ...props }: ContextMenuProps): react.JSX.Element;
|
|
1260
|
-
declare namespace ContextMenu {
|
|
1261
|
-
var displayName: string;
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
interface ResizableProps extends HTMLAttributes<HTMLDivElement> {
|
|
1265
|
-
left: ReactNode;
|
|
1266
|
-
right: ReactNode;
|
|
1267
|
-
defaultLeftWidth?: number;
|
|
1268
|
-
minLeftWidth?: number;
|
|
1269
|
-
minRightWidth?: number;
|
|
1270
|
-
}
|
|
1271
|
-
declare function Resizable({ left, right, defaultLeftWidth, minLeftWidth, minRightWidth, className, ...props }: ResizableProps): react.JSX.Element;
|
|
1272
|
-
declare namespace Resizable {
|
|
1273
|
-
var displayName: string;
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
|
-
interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
|
|
1277
|
-
children: ReactNode;
|
|
1278
|
-
orientation?: "vertical" | "horizontal" | "both";
|
|
1279
|
-
}
|
|
1280
|
-
declare function ScrollArea({ children, orientation, className, ...props }: ScrollAreaProps): react.JSX.Element;
|
|
1281
|
-
declare namespace ScrollArea {
|
|
1282
|
-
var displayName: string;
|
|
1283
|
-
}
|
|
1284
|
-
|
|
1285
|
-
interface NumberFieldProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "type" | "onChange"> {
|
|
1286
|
-
value?: number;
|
|
1287
|
-
onChange?: (value: number) => void;
|
|
1288
|
-
min?: number;
|
|
1289
|
-
max?: number;
|
|
1290
|
-
step?: number;
|
|
1291
|
-
label?: string;
|
|
1292
|
-
}
|
|
1293
|
-
declare function NumberField({ value: controlledValue, onChange, min, max, step, label, className, disabled, defaultValue, ...inputProps }: NumberFieldProps): react.JSX.Element;
|
|
1294
|
-
declare namespace NumberField {
|
|
1295
|
-
var displayName: string;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
interface InputGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
1299
|
-
children: ReactNode;
|
|
1300
|
-
}
|
|
1301
|
-
declare function InputGroup({ children, className, ...props }: InputGroupProps): react.JSX.Element;
|
|
1302
|
-
declare namespace InputGroup {
|
|
1303
|
-
var displayName: string;
|
|
1304
|
-
}
|
|
1305
|
-
|
|
1306
|
-
interface ButtonGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
1307
|
-
children: ReactNode;
|
|
1308
|
-
}
|
|
1309
|
-
declare function ButtonGroup({ children, className, ...props }: ButtonGroupProps): react.JSX.Element;
|
|
1310
|
-
declare namespace ButtonGroup {
|
|
1311
|
-
var displayName: string;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
interface ToggleButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1315
|
-
pressed?: boolean;
|
|
1316
|
-
onPressedChange?: (pressed: boolean) => void;
|
|
1317
|
-
icon?: ReactNode;
|
|
1318
|
-
children?: ReactNode;
|
|
1319
|
-
}
|
|
1320
|
-
declare const ToggleButton: react.ForwardRefExoticComponent<ToggleButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1321
|
-
interface ToggleGroupProps {
|
|
1322
|
-
type?: "single" | "multiple";
|
|
1323
|
-
value?: string | string[];
|
|
1324
|
-
onValueChange?: (value: string | string[]) => void;
|
|
1325
|
-
children: ReactNode;
|
|
1326
|
-
className?: string;
|
|
1327
|
-
}
|
|
1328
|
-
declare function ToggleGroup({ type, value, onValueChange, children, className, }: ToggleGroupProps): react.JSX.Element;
|
|
1329
|
-
declare namespace ToggleGroup {
|
|
1330
|
-
var displayName: string;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
|
-
interface MenubarItem {
|
|
1334
|
-
label: string;
|
|
1335
|
-
items?: {
|
|
1336
|
-
label?: string;
|
|
1337
|
-
onClick?: () => void;
|
|
1338
|
-
disabled?: boolean;
|
|
1339
|
-
separator?: boolean;
|
|
1340
|
-
}[];
|
|
1341
|
-
}
|
|
1342
|
-
interface MenubarProps extends HTMLAttributes<HTMLDivElement> {
|
|
1343
|
-
items: MenubarItem[];
|
|
1344
|
-
}
|
|
1345
|
-
declare function Menubar({ items, className, ...props }: MenubarProps): react.JSX.Element;
|
|
1346
|
-
declare namespace Menubar {
|
|
1347
|
-
var displayName: string;
|
|
1348
|
-
}
|
|
1349
|
-
|
|
1350
|
-
interface AlertDialogProps extends Omit<ModalProps, "onClose"> {
|
|
1351
|
-
isOpen?: boolean;
|
|
1352
|
-
onClose?: () => void;
|
|
1353
|
-
onConfirm?: () => void | Promise<void>;
|
|
1354
|
-
confirmText?: string;
|
|
1355
|
-
cancelText?: string;
|
|
1356
|
-
confirmProps?: Partial<ButtonProps>;
|
|
1357
|
-
cancelProps?: Partial<ButtonProps>;
|
|
1358
|
-
children?: ReactNode;
|
|
1359
|
-
}
|
|
1360
|
-
declare function AlertDialog({ isOpen: openProp, onClose, onConfirm, confirmText, cancelText, confirmProps, cancelProps, children, title, ...modalProps }: AlertDialogProps): react.JSX.Element;
|
|
1361
|
-
declare namespace AlertDialog {
|
|
1362
|
-
var displayName: string;
|
|
1363
|
-
}
|
|
1364
|
-
|
|
1365
855
|
interface DotProps extends HTMLAttributes<HTMLSpanElement> {
|
|
1366
856
|
color?: "green" | "yellow" | "red" | "blue" | "gray";
|
|
1367
857
|
size?: "sm" | "md";
|
|
@@ -1371,29 +861,6 @@ declare namespace Dot {
|
|
|
1371
861
|
var displayName: string;
|
|
1372
862
|
}
|
|
1373
863
|
|
|
1374
|
-
interface CollapsibleProps extends HTMLAttributes<HTMLDivElement> {
|
|
1375
|
-
trigger: ReactNode;
|
|
1376
|
-
open?: boolean;
|
|
1377
|
-
onOpenChange?: (open: boolean) => void;
|
|
1378
|
-
children: ReactNode;
|
|
1379
|
-
}
|
|
1380
|
-
declare function Collapsible({ trigger, open: controlledOpen, onOpenChange, children, className, ...props }: CollapsibleProps): react.JSX.Element;
|
|
1381
|
-
declare namespace Collapsible {
|
|
1382
|
-
var displayName: string;
|
|
1383
|
-
}
|
|
1384
|
-
|
|
1385
|
-
interface MetricProps extends HTMLAttributes<HTMLDivElement> {
|
|
1386
|
-
value: string | number;
|
|
1387
|
-
label: string;
|
|
1388
|
-
badge?: ReactNode;
|
|
1389
|
-
trend?: ReactNode;
|
|
1390
|
-
icon?: ReactNode;
|
|
1391
|
-
}
|
|
1392
|
-
declare function Metric({ value, label, badge, trend, icon, className, ...props }: MetricProps): react.JSX.Element;
|
|
1393
|
-
declare namespace Metric {
|
|
1394
|
-
var displayName: string;
|
|
1395
|
-
}
|
|
1396
|
-
|
|
1397
864
|
interface ChipProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1398
865
|
selected?: boolean;
|
|
1399
866
|
onRemove?: () => void;
|
|
@@ -1401,67 +868,4 @@ interface ChipProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
|
1401
868
|
}
|
|
1402
869
|
declare const Chip: react.ForwardRefExoticComponent<ChipProps & react.RefAttributes<HTMLButtonElement>>;
|
|
1403
870
|
|
|
1404
|
-
|
|
1405
|
-
key: string;
|
|
1406
|
-
label: string;
|
|
1407
|
-
render?: (item: T) => ReactNode;
|
|
1408
|
-
sortable?: boolean;
|
|
1409
|
-
className?: string;
|
|
1410
|
-
}
|
|
1411
|
-
interface DataTableProps<T> {
|
|
1412
|
-
columns: DataTableColumn<T>[];
|
|
1413
|
-
data: T[];
|
|
1414
|
-
pageSize?: number;
|
|
1415
|
-
searchable?: boolean;
|
|
1416
|
-
searchPlaceholder?: string;
|
|
1417
|
-
className?: string;
|
|
1418
|
-
}
|
|
1419
|
-
declare function DataTable<T extends Record<string, any>>({ columns, data, pageSize, searchable, searchPlaceholder, className, }: DataTableProps<T>): react.JSX.Element;
|
|
1420
|
-
declare namespace DataTable {
|
|
1421
|
-
var displayName: string;
|
|
1422
|
-
}
|
|
1423
|
-
|
|
1424
|
-
interface DatePickerProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "type"> {
|
|
1425
|
-
value?: Date;
|
|
1426
|
-
onChange?: (date: Date) => void;
|
|
1427
|
-
}
|
|
1428
|
-
declare function DatePicker({ value, onChange, className, ...props }: DatePickerProps): react.JSX.Element;
|
|
1429
|
-
declare namespace DatePicker {
|
|
1430
|
-
var displayName: string;
|
|
1431
|
-
}
|
|
1432
|
-
|
|
1433
|
-
interface AppLayoutProps {
|
|
1434
|
-
sidebar: ReactNode;
|
|
1435
|
-
children: ReactNode;
|
|
1436
|
-
sidebarWidth?: number;
|
|
1437
|
-
className?: string;
|
|
1438
|
-
}
|
|
1439
|
-
declare function AppLayout({ sidebar, children, sidebarWidth, className }: AppLayoutProps): react.JSX.Element;
|
|
1440
|
-
|
|
1441
|
-
interface SidebarGroup {
|
|
1442
|
-
label?: string;
|
|
1443
|
-
items: SidebarItemDef[];
|
|
1444
|
-
}
|
|
1445
|
-
interface SidebarItemDef {
|
|
1446
|
-
label: string;
|
|
1447
|
-
icon?: ReactNode;
|
|
1448
|
-
href?: string;
|
|
1449
|
-
badge?: ReactNode;
|
|
1450
|
-
active?: boolean;
|
|
1451
|
-
onClick?: () => void;
|
|
1452
|
-
}
|
|
1453
|
-
interface SidebarProps {
|
|
1454
|
-
groups: SidebarGroup[];
|
|
1455
|
-
className?: string;
|
|
1456
|
-
header?: ReactNode;
|
|
1457
|
-
footer?: ReactNode;
|
|
1458
|
-
children?: ReactNode;
|
|
1459
|
-
collapsed?: boolean;
|
|
1460
|
-
onCollapse?: (collapsed: boolean) => void;
|
|
1461
|
-
}
|
|
1462
|
-
declare function Sidebar({ groups, className, header, footer, children, collapsed, onCollapse }: SidebarProps): react.JSX.Element;
|
|
1463
|
-
declare namespace Sidebar {
|
|
1464
|
-
var displayName: string;
|
|
1465
|
-
}
|
|
1466
|
-
|
|
1467
|
-
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 };
|
|
871
|
+
export { type DropdownSide as $, Accordion as A, Badge as B, CANONICAL_ICONS as C, type CanonicalIconName as D, Caption as E, Card as F, type CardProps as G, type CardVariant as H, Checkbox as I, type CheckboxProps as J, Chip as K, type ChipProps as L, CommandPalette as M, Display as N, Dot as O, type DotProps as P, type DropdownAlign as Q, DropdownButton as R, type DropdownButtonProps as S, DropdownItem as T, type DropdownItemProps as U, DropdownMenu as V, type DropdownMenuProps as W, DropdownRadioGroup as X, type DropdownRadioGroupProps as Y, DropdownRadioItem as Z, type DropdownRadioItemProps as _, Alert as a, IconLogout as a$, EmptyState as a0, FileUpload as a1, type FileUploadProps as a2, FilterBar as a3, type FilterBarProps as a4, type FilterChip as a5, FilterChips as a6, type FilterChipsProps as a7, FilterMenu as a8, type FilterMenuOption as a9, IconClipboardEdit as aA, IconClose as aB, IconCodePreview as aC, IconCohort as aD, IconCommandCursor as aE, IconCopy as aF, IconCumulativeChart as aG, IconDataReel as aH, IconDatabase as aI, IconDownload as aJ, IconEdit as aK, IconErrorOutline as aL, IconEventStream as aM, IconExclamation as aN, IconExperimentSplit as aO, IconFeatureGate as aP, IconFlag as aQ, IconFlare as aR, IconFlask as aS, IconGift as aT, IconGridView as aU, IconHandClick as aV, IconHome as aW, IconInfo as aX, IconInsightBoard as aY, IconLayers as aZ, IconListView as a_, type FilterMenuProps as aa, FormField as ab, type FormFieldControlProps as ac, type FormFieldProps as ad, H1 as ae, H2 as af, H3 as ag, H4 as ah, H5 as ai, IconActivity as aj, type IconAliasName as ak, IconAreaChart as al, IconArrowDown as am, IconArrowUp as an, IconBase as ao, IconBell as ap, IconBellOff as aq, IconBolt as ar, IconBox as as, IconByName as at, IconCancel as au, IconCheck as av, IconCheckCircle as aw, IconChevronDown as ax, IconChevronLeft as ay, IconChevronRight as az, type AlertProps as b, Radio as b$, IconMail as b0, IconMoon as b1, type IconName as b2, IconOldWindow as b3, IconPanelRight as b4, IconPerson as b5, IconPlayCircle as b6, IconPlus as b7, IconPremium as b8, type IconProps as b9, Input as bA, type InputProps as bB, type InputSize as bC, type InputVariant as bD, Label as bE, Lead as bF, Link as bG, type LinkProps as bH, Loader as bI, type LoaderProps as bJ, type LoaderSize as bK, type LoaderVariant as bL, LoadingState as bM, type LoadingStateProps as bN, Modal as bO, type ModalProps as bP, type ModalSize as bQ, Mono as bR, OLD_UI_ICONS as bS, Overline as bT, P as bU, PH_ICONS as bV, PH_ICON_ALIASES as bW, Panel as bX, type PanelProps as bY, Progress as bZ, type ProgressProps as b_, IconQueryEditor as ba, IconQueryStack as bb, IconRadar as bc, IconRecording as bd, IconReplayFrame as be, IconRobot as bf, IconRocket as bg, IconSave as bh, IconSearch as bi, IconSelectEvents as bj, IconShoppingCart as bk, IconSpinner as bl, IconStar as bm, IconSubArrowRight as bn, IconSun as bo, IconSurveyCard as bp, IconSurveys as bq, IconSync as br, IconTableChart as bs, IconTerminal as bt, IconToggle as bu, IconTrash as bv, IconTuning as bw, IconUpload as bx, IconVolume as by, IconVolumeOff as bz, type AlertStatus as c, type RadioProps as c0, Range as c1, type RangeProps as c2, SearchGroup as c3, type SearchGroupProps as c4, SearchInput as c5, type SearchInputProps as c6, SegmentedControl as c7, Select as c8, type SelectProps as c9, type TooltipProps as cA, TooltipProvider as cB, type TooltipProviderProps as cC, type TooltipSide as cD, SettingsLayout as ca, type SettingsLayoutProps as cb, SettingsNav as cc, type SettingsNavGroup as cd, type SettingsNavItem as ce, type SettingsNavProps as cf, Skeleton as cg, type SkeletonProps as ch, type SkeletonShape as ci, Small as cj, SortMenu as ck, type SortMenuProps as cl, Spinner as cm, type SpinnerProps as cn, Stat as co, type StatProps as cp, type StatTone as cq, Table as cr, type TableColumn as cs, type TableProps as ct, Textarea as cu, type TextareaProps as cv, Toggle as cw, type ToggleProps as cx, Tooltip as cy, type TooltipAlign as cz, AuthCard as d, type AuthCardProps as e, AuthDivider as f, type AuthDividerProps as g, AuthLayout as h, type AuthLayoutProps as i, Avatar as j, AvatarGroup as k, type AvatarGroupProps as l, type AvatarProps as m, type AvatarSize as n, type AvatarStatus as o, type BadgeProps as p, type BadgeSize as q, type BadgeVariant as r, Button as s, ButtonChrome as t, type ButtonChromeProps as u, type ButtonProps as v, type ButtonShape as w, type ButtonSize as x, type ButtonVariant as y, Calendar as z };
|