@hxdhxd/harmony-flow-ui 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +312 -197
- package/dist/index.cjs +3536 -1341
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1316 -132
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +329 -2
- package/dist/index.d.ts +329 -2
- package/dist/index.js +3485 -1312
- package/dist/index.js.map +1 -1
- package/package.json +118 -115
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,181 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { CSSProperties, PropsWithChildren, HTMLAttributes, ButtonHTMLAttributes,
|
|
2
|
+
import { ReactNode, CSSProperties, PropsWithChildren, HTMLAttributes, ButtonHTMLAttributes, InputHTMLAttributes, AnchorHTMLAttributes, ReactElement, SVGAttributes, SelectHTMLAttributes, FormEvent, TextareaHTMLAttributes, FormHTMLAttributes } from 'react';
|
|
3
|
+
|
|
4
|
+
interface HotspotGuideProps {
|
|
5
|
+
title: string;
|
|
6
|
+
children: ReactNode;
|
|
7
|
+
unread?: boolean;
|
|
8
|
+
open?: boolean;
|
|
9
|
+
defaultOpen?: boolean;
|
|
10
|
+
onOpenChange?: (open: boolean) => void;
|
|
11
|
+
onAcknowledge?: () => void;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
className?: string;
|
|
14
|
+
}
|
|
15
|
+
declare function HotspotGuide({ title, children, unread, open, defaultOpen, onOpenChange, onAcknowledge, disabled, className }: HotspotGuideProps): react.JSX.Element;
|
|
16
|
+
|
|
17
|
+
interface CrosshairPoint {
|
|
18
|
+
id: string;
|
|
19
|
+
label: string;
|
|
20
|
+
value: number | null;
|
|
21
|
+
}
|
|
22
|
+
interface ChartCrosshairProps {
|
|
23
|
+
points: readonly CrosshairPoint[];
|
|
24
|
+
label?: string;
|
|
25
|
+
selectedId?: string;
|
|
26
|
+
defaultSelectedId?: string;
|
|
27
|
+
onSelectedIdChange?: (id: string) => void;
|
|
28
|
+
formatValue?: (value: number) => string;
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
className?: string;
|
|
31
|
+
}
|
|
32
|
+
declare function ChartCrosshair({ points, label, selectedId, defaultSelectedId, onSelectedIdChange, formatValue, disabled, className }: ChartCrosshairProps): react.JSX.Element;
|
|
33
|
+
|
|
34
|
+
interface DrilldownItem {
|
|
35
|
+
id: string;
|
|
36
|
+
label: string;
|
|
37
|
+
value: number;
|
|
38
|
+
children?: readonly DrilldownItem[];
|
|
39
|
+
disabled?: boolean;
|
|
40
|
+
}
|
|
41
|
+
interface DrilldownChartProps {
|
|
42
|
+
items: readonly DrilldownItem[];
|
|
43
|
+
title?: string;
|
|
44
|
+
path?: readonly string[];
|
|
45
|
+
defaultPath?: readonly string[];
|
|
46
|
+
onPathChange?: (path: string[]) => void;
|
|
47
|
+
onLeafSelect?: (item: DrilldownItem, path: string[]) => void;
|
|
48
|
+
formatValue?: (value: number) => string;
|
|
49
|
+
disabled?: boolean;
|
|
50
|
+
className?: string;
|
|
51
|
+
}
|
|
52
|
+
declare function DrilldownChart({ items, title, path, defaultPath, onPathChange, onLeafSelect, formatValue, disabled, className }: DrilldownChartProps): react.JSX.Element;
|
|
53
|
+
|
|
54
|
+
interface LegendFilterItem {
|
|
55
|
+
id: string;
|
|
56
|
+
label: ReactNode;
|
|
57
|
+
color?: string;
|
|
58
|
+
disabled?: boolean;
|
|
59
|
+
}
|
|
60
|
+
interface LegendFilterProps {
|
|
61
|
+
items: readonly LegendFilterItem[];
|
|
62
|
+
visibleKeys: readonly string[];
|
|
63
|
+
onVisibleKeysChange: (keys: string[]) => void;
|
|
64
|
+
label?: string;
|
|
65
|
+
allowEmpty?: boolean;
|
|
66
|
+
disabled?: boolean;
|
|
67
|
+
className?: string;
|
|
68
|
+
}
|
|
69
|
+
declare function LegendFilter({ items, visibleKeys, onVisibleKeysChange, label, allowEmpty, disabled, className }: LegendFilterProps): react.JSX.Element;
|
|
70
|
+
|
|
71
|
+
interface RangeBrushProps {
|
|
72
|
+
value: readonly [number, number];
|
|
73
|
+
onValueChange: (value: [number, number]) => void;
|
|
74
|
+
min?: number;
|
|
75
|
+
max?: number;
|
|
76
|
+
step?: number;
|
|
77
|
+
label?: string;
|
|
78
|
+
disabled?: boolean;
|
|
79
|
+
formatValue?: (value: number) => string;
|
|
80
|
+
children?: ReactNode;
|
|
81
|
+
className?: string;
|
|
82
|
+
}
|
|
83
|
+
declare function RangeBrush({ value, onValueChange, min, max, step, label, disabled, formatValue, children, className }: RangeBrushProps): react.JSX.Element;
|
|
84
|
+
|
|
85
|
+
interface ExpandablePanelProps {
|
|
86
|
+
title: string;
|
|
87
|
+
summary?: ReactNode;
|
|
88
|
+
children: ReactNode;
|
|
89
|
+
expanded?: boolean;
|
|
90
|
+
defaultExpanded?: boolean;
|
|
91
|
+
onExpandedChange?: (expanded: boolean) => void;
|
|
92
|
+
disabled?: boolean;
|
|
93
|
+
className?: string;
|
|
94
|
+
}
|
|
95
|
+
declare function ExpandablePanel({ title, summary, children, expanded, defaultExpanded, onExpandedChange, disabled, className }: ExpandablePanelProps): react.JSX.Element;
|
|
96
|
+
|
|
97
|
+
interface ProductTourStep {
|
|
98
|
+
id: string;
|
|
99
|
+
title: string;
|
|
100
|
+
description: ReactNode;
|
|
101
|
+
target?: () => HTMLElement | null;
|
|
102
|
+
}
|
|
103
|
+
interface ProductTourProps {
|
|
104
|
+
steps: readonly ProductTourStep[];
|
|
105
|
+
open: boolean;
|
|
106
|
+
current: number;
|
|
107
|
+
onCurrentChange: (current: number) => void;
|
|
108
|
+
onClose: () => void;
|
|
109
|
+
onFinish?: () => void;
|
|
110
|
+
className?: string;
|
|
111
|
+
}
|
|
112
|
+
declare function ProductTour({ steps, open, current, onCurrentChange, onClose, onFinish, className }: ProductTourProps): react.JSX.Element;
|
|
113
|
+
|
|
114
|
+
interface ReadMoreProps {
|
|
115
|
+
text: string;
|
|
116
|
+
lines?: number;
|
|
117
|
+
expanded?: boolean;
|
|
118
|
+
defaultExpanded?: boolean;
|
|
119
|
+
onExpandedChange?: (expanded: boolean) => void;
|
|
120
|
+
expandLabel?: string;
|
|
121
|
+
collapseLabel?: string;
|
|
122
|
+
className?: string;
|
|
123
|
+
}
|
|
124
|
+
/** 仅截断纯文本,避免折叠区中出现不可见但可聚焦的链接或按钮。 */
|
|
125
|
+
declare function ReadMore({ text, lines, expanded, defaultExpanded, onExpandedChange, expandLabel, collapseLabel, className, }: ReadMoreProps): react.JSX.Element;
|
|
126
|
+
|
|
127
|
+
interface SortableListItem {
|
|
128
|
+
id: string;
|
|
129
|
+
label: string;
|
|
130
|
+
description?: ReactNode;
|
|
131
|
+
disabled?: boolean;
|
|
132
|
+
}
|
|
133
|
+
interface SortableListProps {
|
|
134
|
+
items: readonly SortableListItem[];
|
|
135
|
+
onOrderChange: (items: SortableListItem[]) => void;
|
|
136
|
+
label?: string;
|
|
137
|
+
disabled?: boolean;
|
|
138
|
+
emptyMessage?: ReactNode;
|
|
139
|
+
className?: string;
|
|
140
|
+
}
|
|
141
|
+
/** 指针预览不修改业务数据;只有松手或明确的键盘移动才提交新数组。 */
|
|
142
|
+
declare function SortableList({ items, onOrderChange, label, disabled, emptyMessage, className, }: SortableListProps): react.JSX.Element;
|
|
143
|
+
|
|
144
|
+
interface Announcement {
|
|
145
|
+
id: string;
|
|
146
|
+
message: string;
|
|
147
|
+
actionLabel?: string;
|
|
148
|
+
}
|
|
149
|
+
interface AnnouncementBarProps {
|
|
150
|
+
items: readonly Announcement[];
|
|
151
|
+
label?: string;
|
|
152
|
+
autoPlay?: boolean;
|
|
153
|
+
interval?: number;
|
|
154
|
+
onAction?: (id: string) => void;
|
|
155
|
+
onDismiss?: () => void;
|
|
156
|
+
className?: string;
|
|
157
|
+
}
|
|
158
|
+
declare function AnnouncementBar({ items, label, autoPlay, interval, onAction, onDismiss, className, }: AnnouncementBarProps): react.JSX.Element | null;
|
|
159
|
+
|
|
160
|
+
interface OnboardingTask {
|
|
161
|
+
id: string;
|
|
162
|
+
title: string;
|
|
163
|
+
description?: ReactNode;
|
|
164
|
+
completed?: boolean;
|
|
165
|
+
disabled?: boolean;
|
|
166
|
+
actionLabel?: string;
|
|
167
|
+
}
|
|
168
|
+
interface OnboardingChecklistProps {
|
|
169
|
+
items: readonly OnboardingTask[];
|
|
170
|
+
title?: string;
|
|
171
|
+
onTaskAction?: (id: string) => void;
|
|
172
|
+
onDismiss?: () => void;
|
|
173
|
+
completedMessage?: ReactNode;
|
|
174
|
+
emptyMessage?: ReactNode;
|
|
175
|
+
className?: string;
|
|
176
|
+
}
|
|
177
|
+
/** 只展示调用方确认的完成状态;点击操作不代表业务任务成功。 */
|
|
178
|
+
declare function OnboardingChecklist({ items, title, onTaskAction, onDismiss, completedMessage, emptyMessage, className, }: OnboardingChecklistProps): react.JSX.Element;
|
|
3
179
|
|
|
4
180
|
interface ThemeTokens {
|
|
5
181
|
colorPrimary: string;
|
|
@@ -1501,4 +1677,155 @@ interface FilterBuilderProps {
|
|
|
1501
1677
|
}
|
|
1502
1678
|
declare function FilterBuilder({ fields, value, onChange, disabled, addLabel }: FilterBuilderProps): react.JSX.Element;
|
|
1503
1679
|
|
|
1504
|
-
|
|
1680
|
+
interface ZoomableChartProps {
|
|
1681
|
+
points: readonly CrosshairPoint[];
|
|
1682
|
+
label?: string;
|
|
1683
|
+
window?: readonly [number, number];
|
|
1684
|
+
defaultWindow?: readonly [number, number];
|
|
1685
|
+
onWindowChange?: (window: [number, number]) => void;
|
|
1686
|
+
formatValue?: (value: number) => string;
|
|
1687
|
+
disabled?: boolean;
|
|
1688
|
+
className?: string;
|
|
1689
|
+
}
|
|
1690
|
+
declare function ZoomableChart({ points, label, window: controlled, defaultWindow, onWindowChange, formatValue, disabled, className }: ZoomableChartProps): react.JSX.Element;
|
|
1691
|
+
|
|
1692
|
+
interface HoldToConfirmProps {
|
|
1693
|
+
actionKey: string;
|
|
1694
|
+
label: string;
|
|
1695
|
+
onConfirm: () => void;
|
|
1696
|
+
duration?: number;
|
|
1697
|
+
disabled?: boolean;
|
|
1698
|
+
loading?: boolean;
|
|
1699
|
+
error?: string;
|
|
1700
|
+
className?: string;
|
|
1701
|
+
}
|
|
1702
|
+
declare function HoldToConfirm({ actionKey, label, onConfirm, duration, disabled, loading, error, className }: HoldToConfirmProps): react.JSX.Element;
|
|
1703
|
+
|
|
1704
|
+
interface TypedConfirmProps {
|
|
1705
|
+
actionKey: string;
|
|
1706
|
+
confirmationText: string;
|
|
1707
|
+
label: string;
|
|
1708
|
+
description?: string;
|
|
1709
|
+
confirmLabel?: string;
|
|
1710
|
+
onConfirm: () => void;
|
|
1711
|
+
disabled?: boolean;
|
|
1712
|
+
loading?: boolean;
|
|
1713
|
+
error?: string;
|
|
1714
|
+
className?: string;
|
|
1715
|
+
}
|
|
1716
|
+
/** key隔离不同操作对象,避免前一个对象的确认文字复用到新对象。 */
|
|
1717
|
+
declare function TypedConfirm(props: TypedConfirmProps): react.JSX.Element;
|
|
1718
|
+
|
|
1719
|
+
interface SwipeAction {
|
|
1720
|
+
id: string;
|
|
1721
|
+
label: string;
|
|
1722
|
+
onAction: () => void;
|
|
1723
|
+
disabled?: boolean;
|
|
1724
|
+
tone?: 'primary' | 'danger';
|
|
1725
|
+
}
|
|
1726
|
+
interface SwipeActionsProps {
|
|
1727
|
+
actionKey: string;
|
|
1728
|
+
label: string;
|
|
1729
|
+
children: ReactNode;
|
|
1730
|
+
actions: readonly SwipeAction[];
|
|
1731
|
+
open?: boolean;
|
|
1732
|
+
defaultOpen?: boolean;
|
|
1733
|
+
onOpenChange?: (open: boolean) => void;
|
|
1734
|
+
disabled?: boolean;
|
|
1735
|
+
className?: string;
|
|
1736
|
+
}
|
|
1737
|
+
declare function SwipeActions(props: SwipeActionsProps): react.JSX.Element;
|
|
1738
|
+
|
|
1739
|
+
interface ConfirmationItem {
|
|
1740
|
+
id: string;
|
|
1741
|
+
label: string;
|
|
1742
|
+
description?: string;
|
|
1743
|
+
}
|
|
1744
|
+
interface ChecklistConfirmProps {
|
|
1745
|
+
actionKey: string;
|
|
1746
|
+
title: string;
|
|
1747
|
+
items: readonly ConfirmationItem[];
|
|
1748
|
+
onConfirm: () => void;
|
|
1749
|
+
confirmLabel?: string;
|
|
1750
|
+
disabled?: boolean;
|
|
1751
|
+
loading?: boolean;
|
|
1752
|
+
error?: string;
|
|
1753
|
+
className?: string;
|
|
1754
|
+
}
|
|
1755
|
+
declare function ChecklistConfirm(props: ChecklistConfirmProps): react.JSX.Element;
|
|
1756
|
+
|
|
1757
|
+
interface UndoNoticeProps {
|
|
1758
|
+
operationKey: string;
|
|
1759
|
+
message: string;
|
|
1760
|
+
onUndo: (signal: AbortSignal) => Promise<void>;
|
|
1761
|
+
expiresAt?: number;
|
|
1762
|
+
undoLabel?: string;
|
|
1763
|
+
successMessage?: string;
|
|
1764
|
+
errorMessage?: string;
|
|
1765
|
+
disabled?: boolean;
|
|
1766
|
+
className?: string;
|
|
1767
|
+
}
|
|
1768
|
+
declare function UndoNotice(props: UndoNoticeProps): react.JSX.Element;
|
|
1769
|
+
|
|
1770
|
+
interface ReadingProgressProps {
|
|
1771
|
+
/** Omit for the whole document; pass an element for its scroll position, null while unavailable. */
|
|
1772
|
+
target?: HTMLElement | null;
|
|
1773
|
+
label?: string;
|
|
1774
|
+
showValue?: boolean;
|
|
1775
|
+
className?: string;
|
|
1776
|
+
}
|
|
1777
|
+
/** Scroll position, not proof that a person has read the content. */
|
|
1778
|
+
declare function ReadingProgress({ target, label, showValue, className }: ReadingProgressProps): react.JSX.Element;
|
|
1779
|
+
|
|
1780
|
+
interface LoadMoreProps {
|
|
1781
|
+
onLoad: (signal: AbortSignal) => Promise<void>;
|
|
1782
|
+
hasMore: boolean;
|
|
1783
|
+
disabled?: boolean;
|
|
1784
|
+
/** Change when replacing the query; aborts the previous session. */
|
|
1785
|
+
resetKey?: string | number;
|
|
1786
|
+
label?: string;
|
|
1787
|
+
errorMessage?: string;
|
|
1788
|
+
className?: string;
|
|
1789
|
+
}
|
|
1790
|
+
declare function LoadMore(props: LoadMoreProps): react.JSX.Element;
|
|
1791
|
+
|
|
1792
|
+
interface InfiniteScrollProps extends LoadMoreProps {
|
|
1793
|
+
children: ReactNode;
|
|
1794
|
+
/** undefined = viewport; null = root not mounted yet. */
|
|
1795
|
+
root?: HTMLElement | null;
|
|
1796
|
+
rootMargin?: string;
|
|
1797
|
+
}
|
|
1798
|
+
declare function InfiniteScroll(props: InfiniteScrollProps): react.JSX.Element;
|
|
1799
|
+
|
|
1800
|
+
interface LazyLoadProps {
|
|
1801
|
+
children: ReactNode;
|
|
1802
|
+
placeholder?: ReactNode;
|
|
1803
|
+
minHeight?: number;
|
|
1804
|
+
root?: HTMLElement | null;
|
|
1805
|
+
rootMargin?: string;
|
|
1806
|
+
disabled?: boolean;
|
|
1807
|
+
label?: string;
|
|
1808
|
+
className?: string;
|
|
1809
|
+
}
|
|
1810
|
+
declare function LazyLoad({ children, placeholder, minHeight, root, rootMargin, disabled, label, className }: LazyLoadProps): react.JSX.Element;
|
|
1811
|
+
|
|
1812
|
+
interface OptimisticUpdateState<T> {
|
|
1813
|
+
value: T;
|
|
1814
|
+
phase: 'idle' | 'pending' | 'success' | 'error';
|
|
1815
|
+
disabled: boolean;
|
|
1816
|
+
update: (next: T) => void;
|
|
1817
|
+
retry: () => void;
|
|
1818
|
+
}
|
|
1819
|
+
interface OptimisticUpdateProps<T> {
|
|
1820
|
+
operationKey: string | number;
|
|
1821
|
+
initialValue: T;
|
|
1822
|
+
onUpdate: (next: T, signal: AbortSignal) => Promise<T>;
|
|
1823
|
+
children: (state: OptimisticUpdateState<T>) => ReactNode;
|
|
1824
|
+
disabled?: boolean;
|
|
1825
|
+
label?: string;
|
|
1826
|
+
errorMessage?: string;
|
|
1827
|
+
className?: string;
|
|
1828
|
+
}
|
|
1829
|
+
declare function OptimisticUpdate<T>(props: OptimisticUpdateProps<T>): react.JSX.Element;
|
|
1830
|
+
|
|
1831
|
+
export { Accordion, type AccordionItem, type AccordionProps, ActivityFeed, type ActivityFeedProps, ActivityIndicator, type ActivityIndicatorProps, type ActivityItem, type AgentRunStatus, type AgentRunStep, AgentRunTimeline, type AgentRunTimelineProps, Alert, type Announcement, AnnouncementBar, type AnnouncementBarProps, ApprovalFlow, type ApprovalFlowProps, type ApprovalStatus, type ApprovalStep, type AuditEvent, AuditLog, type AuditLogProps, AuthLayout, type AuthLayoutProps, AvailabilityGrid, type AvailabilityState, Avatar, AvatarGroup, type AvatarGroupItem, type AvatarGroupProps, Badge, Breadcrumb, type BreadcrumbProps, Button, ButtonGroup, type ButtonProps, Calendar, type CalendarProps, type CalendarResource, Card, type CardProps, Cascader, type CascaderOption, ChartContainer, type ChartContainerProps, ChartCrosshair, type ChartCrosshairProps, type ChartLegendItem, type ChatAttachment, ChatComposer, type ChatComposerProps, ChatMessage, type ChatMessageProps, Checkbox, CheckboxGroup, ChecklistConfirm, type ChecklistConfirmProps, ChoiceGroup, type ChoiceOption, CircularProgress, type CircularProgressProps, type CitationItem, CitationList, type CitationListProps, CodeBlock, type CodeBlockProps, CodeEditor, type CodeEditorProps, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, type CommandItem, CommandPalette, type CommandPaletteProps, type CommentItem, CommentThread, type CommentThreadProps, type ConfirmationItem, Container, type ContainerProps, ContextMenu, type ContextMenuProps, ConversationBranch, type ConversationBranchProps, type CrosshairPoint, DataGrid, type DataGridColumn, type DataGridProps, DatePicker, type DatePickerProps, DateRangePicker, type DescriptionItem, Descriptions, DiffViewer, type DiffViewerProps, Divider, Drawer, type DrawerProps, DrilldownChart, type DrilldownChartProps, type DrilldownItem, Dropdown, type DropdownItem, DropdownMenu, type DropdownProps, EmptyState, EventCard, ExpandablePanel, type ExpandablePanelProps, FileExplorer, type FileItem, FilePreview, FilterBuilder, type FilterBuilderProps, type FilterField, type FilterOption, type FilterValue, FloatingNav, type FloatingNavProps, FlowCanvas, type FlowCanvasProps, type FlowEdge, type FlowNode, Form, FormItem, type FormItemProps, type FormProps, GanttChart, type GanttChartProps, type GanttTask, Grid, type GridProps, Hero, type HeroProps, HoldToConfirm, type HoldToConfirmProps, HotspotGuide, type HotspotGuideProps, Icon, IconButton, type IconButtonProps, type IconName, type IconProps, InfiniteScroll, type InfiniteScrollProps, Input, type InputProps, InsightBoard, type InsightBoardProps, JsonViewer, type JsonViewerProps, KanbanBoard, type KanbanBoardProps, type KanbanCard, type KanbanColumn, LazyLoad, type LazyLoadProps, LegendFilter, type LegendFilterItem, type LegendFilterProps, Link, List, type ListItem, LoadMore, type LoadMoreProps, LoadingDots, LoadingOverlay, type LoadingOverlayProps, MarkdownContent, type MarkdownContentProps, Masonry, type MasonryProps, MegaMenu, type MemberOption, MemberPicker, MentionInput, type MentionInputProps, type MentionOption, MobileNavigation, type MobileNavigationProps, Modal, type ModalProps, type ModelOption, ModelSelector, type ModelSelectorProps, MultiSelect, type MultiSelectProps, type NavigationItem, type NavigationSelectionProps, Notification, NotificationCenter, type NotificationCenterProps, type NotificationItem, type NotificationProps, NumberInput, type NumberInputProps, OnboardingChecklist, type OnboardingChecklistProps, type OnboardingTask, OptimisticUpdate, type OptimisticUpdateProps, type OptimisticUpdateState, PageLayout, type PageLayoutProps, Pagination, type PaginationProps, type PermissionLevel, PermissionMatrix, type PermissionResource, type PermissionSubject, PivotTable, type PivotTableProps, type PivotValue, Popconfirm, type PopconfirmProps, Popover, type PopoverProps, Presence, type PresenceProps, type PresenceStatus, ProductTour, type ProductTourProps, type ProductTourStep, Progress, ProgressBar, type ProgressProps, ProgressRing, type PromptSuggestion, PromptSuggestions, type PromptSuggestionsProps, QueryBuilder, type QueryBuilderProps, type QueryField, type QueryOperator, type QueryRule, Radio, RadioGroup, RangeBrush, type RangeBrushProps, ReadMore, type ReadMoreProps, ReadingProgress, type ReadingProgressProps, RecurrenceEditor, type RecurrenceValue, ResizablePanel, type ResizablePanelProps, ResourceCalendar, Result, type ResultProps, RichTextEditor, type RichTextEditorProps, type ScheduleEvent, Scheduler, Scrollspy, type ScrollspyProps, SearchInput, type SegmentOption, SegmentedControl, type SegmentedControlProps, Select, type SelectOption, type SelectProps, SharePanel, type ShareScope, ShrinkNav, type ShrinkNavProps, Sidebar, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, SortableList, type SortableListItem, type SortableListProps, Sparkline, type SparklineProps, Spinner, SplitButton, type SplitButtonOption, type SplitButtonProps, Stack, type StackProps, Stat, StatisticCard, type StatisticCardProps, type StepItem, StepProgress, type StepProgressProps, Steps, type StepsProps, type SwipeAction, SwipeActions, type SwipeActionsProps, Switch, type SwitchProps, type TabItem, Table, type TableColumn, type TableProps, Tabs, type TabsProps, Tag, Textarea, type TextareaProps, ThemeProvider, type ThemeProviderProps, type ThemeTokens, TimePicker, type TimePickerProps, Timeline, type TimelineItem, type TimezoneOption, TimezoneSelect, Toast, type ToastProps, TokenUsage, type TokenUsageProps, ToolCallCard, type ToolCallCardProps, type ToolCallStatus, Tooltip, Transfer, type TransferItem, Tree, type TreeNode, type TreeProps, TreeSelect, type TreeSelectOption, TypedConfirm, type TypedConfirmProps, Typography, type TypographyProps, type TypographyVariant, UndoNotice, type UndoNoticeProps, Upload, type UploadProps, type UploadRejection, type UploadRejectionReason, ValidatedInput, type ValidatedInputProps, type ValidationRule, VersionHistory, type VersionItem, VirtualList, type VirtualListProps, VoiceInput, type VoiceInputProps, ZoomableChart, type ZoomableChartProps, activateNavigationItem, darkTheme, defaultTheme, highContrastTheme, tokensToStyle, validateForm, validateValue };
|