orbcafe-ui 1.1.7 → 1.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,6 +23,7 @@
23
23
  | `GraphReport` | 图形报表弹窗(KPI、图表、联动、AI 输入区) | `src/components/GraphReport` | `src/components/GraphReport/README.md` |
24
24
  | `CustomizeAgent` | AI 参数与 Prompt 模板设置弹窗 | `src/components/CustomizeAgent` | `src/components/CustomizeAgent/README.md` |
25
25
  | `DetailInfo` | 标准详情页容器(信息块 + Tabs + 底部表格 + AI/搜索) | `src/components/DetailInfo` | `src/components/DetailInfo/README.md` |
26
+ | `Kanban` | 标准看板模块(Bucket + Card + Drag/Drop + Detail 跳转) | `src/components/Kanban` | `src/components/Kanban/README.md` |
26
27
  | `PageLayout` | 页面壳层(Header + Navigation + Content) | `src/components/PageLayout` | `src/components/PageLayout/README.md` |
27
28
  | `AgentUI` | 聊天 UI 与 Copilot UI(StdChat / CopilotChat / AgentPanel) | `src/components/AgentUI` | `src/components/AgentUI/README.md` |
28
29
 
@@ -39,6 +40,9 @@
39
40
  - `StdReport Hooks`:`src/components/StdReport/Hooks/README.md`
40
41
  - `PageLayout Hooks`:`src/components/PageLayout/Hooks/README.md`
41
42
  - `DetailInfo` 模块文档:`src/components/DetailInfo/README.md`
43
+ - `Kanban` 模块文档:`src/components/Kanban/README.md`
44
+ - `Kanban Hooks`:`src/components/Kanban/Hooks/README.md`
45
+ - `Kanban Tools`:`src/components/Kanban/Utils/README.md`
42
46
  - `AgentUI` 模块文档:`src/components/AgentUI/README.md`
43
47
  - `AI 模块契约索引`:`skills/orbcafe-ui-component-usage/references/module-contracts.md`
44
48
 
@@ -105,7 +109,7 @@ import {
105
109
 
106
110
  不是所有模块都以 hooks 为主入口。
107
111
 
108
- - `StdReport`、`DetailInfo`、`PivotTable`、`AINav`、`PageLayout` 明确公开了 hooks。
112
+ - `StdReport`、`DetailInfo`、`Kanban`、`PivotTable`、`AINav`、`PageLayout` 明确公开了 hooks。
109
113
  - `AgentUI` 当前不公开自定义 hook,稳定入口是组件 props 和回调契约。
110
114
 
111
115
  这条规则对 AI 很重要,因为它决定了应该生成“hook 驱动代码”还是“组件 + callbacks 驱动代码”。
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { Dispatch, SetStateAction, ReactNode } from 'react';
2
+ import React__default, { Dispatch, SetStateAction, ReactNode, HTMLAttributes } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
5
  import { VariantProps } from 'class-variance-authority';
@@ -1117,6 +1117,142 @@ interface CDetailSectionCardProps {
1117
1117
  }
1118
1118
  declare const CDetailSectionCard: ({ section, highlightQuery }: CDetailSectionCardProps) => react_jsx_runtime.JSX.Element;
1119
1119
 
1120
+ type KanbanCardPriority = 'critical' | 'high' | 'medium' | 'low';
1121
+ type KanbanCardTone = 'default' | 'success' | 'warning' | 'info' | 'error';
1122
+ interface KanbanCardAssignee {
1123
+ id?: string;
1124
+ name: string;
1125
+ avatarSrc?: string;
1126
+ initials?: string;
1127
+ }
1128
+ interface KanbanCardTag {
1129
+ id: string;
1130
+ label: string;
1131
+ color?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
1132
+ }
1133
+ interface KanbanCardMetric {
1134
+ id: string;
1135
+ label: string;
1136
+ value: string | number;
1137
+ }
1138
+ interface KanbanCardRecord {
1139
+ id: string;
1140
+ bucketId: string;
1141
+ title: string;
1142
+ summary?: string;
1143
+ kicker?: string;
1144
+ priority?: KanbanCardPriority;
1145
+ tone?: KanbanCardTone;
1146
+ progress?: number;
1147
+ dueDate?: string;
1148
+ assignee?: KanbanCardAssignee;
1149
+ tags?: KanbanCardTag[];
1150
+ metrics?: KanbanCardMetric[];
1151
+ detailHref?: string;
1152
+ footer?: ReactNode;
1153
+ position?: number;
1154
+ }
1155
+ interface KanbanBucketDefinition {
1156
+ id: string;
1157
+ title: string;
1158
+ description?: string;
1159
+ accentColor?: string;
1160
+ icon?: ReactNode;
1161
+ limit?: number;
1162
+ emptyLabel?: string;
1163
+ }
1164
+ interface KanbanBucketModel extends KanbanBucketDefinition {
1165
+ cards: KanbanCardRecord[];
1166
+ }
1167
+ interface KanbanBoardModel {
1168
+ buckets: KanbanBucketModel[];
1169
+ }
1170
+ interface KanbanCardLookup {
1171
+ card: KanbanCardRecord;
1172
+ bucket: KanbanBucketModel;
1173
+ bucketIndex: number;
1174
+ cardIndex: number;
1175
+ }
1176
+ interface KanbanCardMoveInput {
1177
+ cardId: string;
1178
+ fromBucketId: string;
1179
+ toBucketId: string;
1180
+ targetIndex?: number;
1181
+ }
1182
+ interface KanbanCardMoveEvent extends KanbanCardMoveInput {
1183
+ card: KanbanCardRecord;
1184
+ model: KanbanBoardModel;
1185
+ }
1186
+ interface KanbanCardClickContext {
1187
+ card: KanbanCardRecord;
1188
+ bucket: KanbanBucketDefinition;
1189
+ }
1190
+ interface CKanbanCardProps {
1191
+ card: KanbanCardRecord;
1192
+ bucket?: KanbanBucketDefinition;
1193
+ dragging?: boolean;
1194
+ overlay?: boolean;
1195
+ onClick?: (context: KanbanCardClickContext) => void;
1196
+ sx?: SxProps<Theme>;
1197
+ }
1198
+ interface CKanbanBucketProps {
1199
+ bucket: KanbanBucketDefinition;
1200
+ cardCount: number;
1201
+ highlighted?: boolean;
1202
+ children?: ReactNode;
1203
+ emptyLabel?: string;
1204
+ maxHeight?: number | string;
1205
+ sx?: SxProps<Theme>;
1206
+ }
1207
+ interface CKanbanBoardProps {
1208
+ model: KanbanBoardModel;
1209
+ onCardMove?: (event: KanbanCardMoveEvent) => void;
1210
+ onCardClick?: (context: KanbanCardClickContext) => void;
1211
+ minBucketWidth?: number;
1212
+ bucketMaxHeight?: number | string;
1213
+ emptyBucketLabel?: string;
1214
+ sx?: SxProps<Theme>;
1215
+ }
1216
+ interface CreateKanbanBoardModelOptions {
1217
+ buckets: KanbanBucketDefinition[];
1218
+ cards: KanbanCardRecord[];
1219
+ }
1220
+ interface UseKanbanBoardBindings {
1221
+ model: KanbanBoardModel;
1222
+ onCardMove: (event: KanbanCardMoveEvent) => void;
1223
+ onCardClick?: (context: KanbanCardClickContext) => void;
1224
+ }
1225
+
1226
+ declare const CKanbanBoard: ({ model, onCardMove, onCardClick, minBucketWidth, bucketMaxHeight, emptyBucketLabel, sx, }: CKanbanBoardProps) => react_jsx_runtime.JSX.Element;
1227
+
1228
+ declare const createKanbanBoardModel: ({ buckets, cards }: CreateKanbanBoardModelOptions) => KanbanBoardModel;
1229
+ declare const findKanbanCard: (model: KanbanBoardModel, cardId: string) => KanbanCardLookup | undefined;
1230
+ declare const moveKanbanCard: (model: KanbanBoardModel, move: KanbanCardMoveInput) => KanbanBoardModel;
1231
+
1232
+ interface UseKanbanBoardOptions {
1233
+ initialModel?: KanbanBoardModel;
1234
+ initialBuckets?: CreateKanbanBoardModelOptions['buckets'];
1235
+ initialCards?: CreateKanbanBoardModelOptions['cards'];
1236
+ onCardMove?: (event: KanbanCardMoveEvent) => void;
1237
+ onCardClick?: (context: KanbanCardClickContext) => void;
1238
+ }
1239
+ interface UseKanbanBoardActions {
1240
+ replaceModel: (nextModel: KanbanBoardModel | ((current: KanbanBoardModel) => KanbanBoardModel)) => void;
1241
+ moveCard: (cardId: string, toBucketId: string, targetIndex?: number) => KanbanCardMoveEvent | undefined;
1242
+ updateCard: (cardId: string, updater: Partial<KanbanCardRecord> | ((card: KanbanCardRecord) => KanbanCardRecord)) => void;
1243
+ getCard: (cardId: string) => ReturnType<typeof findKanbanCard>;
1244
+ }
1245
+ interface UseKanbanBoardResult {
1246
+ model: KanbanBoardModel;
1247
+ actions: UseKanbanBoardActions;
1248
+ boardProps: UseKanbanBoardBindings;
1249
+ }
1250
+ declare const useKanbanBoard: (options: UseKanbanBoardOptions) => UseKanbanBoardResult;
1251
+
1252
+ declare const CKanbanBucket: ({ bucket, cardCount, highlighted, children, emptyLabel, maxHeight, sx, }: CKanbanBucketProps) => react_jsx_runtime.JSX.Element;
1253
+
1254
+ declare const CKanbanCard: ({ card, bucket, dragging, overlay, onClick, sx }: CKanbanCardProps) => react_jsx_runtime.JSX.Element;
1255
+
1120
1256
  type OrbcafeLocale = 'en' | 'zh' | 'fr' | 'de' | 'ja' | 'ko';
1121
1257
  declare const en: {
1122
1258
  readonly 'common.cancel': "Cancel";
@@ -1318,6 +1454,15 @@ declare const en: {
1318
1454
  readonly 'detail.searchAi.autoAiFallback': "No direct match. Triggering AI analysis...";
1319
1455
  readonly 'detail.searchAi.aiResultTitle': "AI Insight";
1320
1456
  readonly 'detail.table.title': "Related Records";
1457
+ readonly 'kanban.empty': "Drop cards here";
1458
+ readonly 'kanban.bucket.limit': "Limit";
1459
+ readonly 'kanban.bucket.dropHere': "Release to move into this bucket";
1460
+ readonly 'kanban.card.progress': "Progress";
1461
+ readonly 'kanban.card.openDetail': "Open Detail";
1462
+ readonly 'kanban.priority.critical': "Critical";
1463
+ readonly 'kanban.priority.high': "High";
1464
+ readonly 'kanban.priority.medium': "Medium";
1465
+ readonly 'kanban.priority.low': "Low";
1321
1466
  readonly 'quickCreate.newItem': "New Item";
1322
1467
  readonly 'quickCreate.createWithTitle': "Create {title}";
1323
1468
  readonly 'quickEdit.editWithTitle': "Edit {title}";
@@ -1405,7 +1550,7 @@ interface UsePageLayoutOptions {
1405
1550
  initialNavigationCollapsed?: boolean;
1406
1551
  }
1407
1552
  declare const usePageLayout: ({ menuData, initialNavigationCollapsed, }?: UsePageLayoutOptions) => {
1408
- navigationIslandProps: Pick<NavigationIslandProps, "onToggle" | "collapsed" | "menuData">;
1553
+ navigationIslandProps: Pick<NavigationIslandProps, "collapsed" | "onToggle" | "menuData">;
1409
1554
  navigationMaxHeight: number;
1410
1555
  };
1411
1556
 
@@ -1565,6 +1710,209 @@ interface PivotChartPanelProps {
1565
1710
  }
1566
1711
  declare const PivotChartPanel: React__default.FC<PivotChartPanelProps>;
1567
1712
 
1713
+ type POrientation = 'auto' | 'portrait' | 'landscape';
1714
+ interface PTouchCardSwipeAction {
1715
+ id: string;
1716
+ label: string;
1717
+ icon?: ReactNode;
1718
+ tone?: 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info';
1719
+ backgroundColor?: string;
1720
+ onTrigger?: () => void;
1721
+ }
1722
+ interface PTouchCardMetric {
1723
+ id: string;
1724
+ label: string;
1725
+ value: ReactNode;
1726
+ }
1727
+ interface PTouchCardProps {
1728
+ title: ReactNode;
1729
+ description?: ReactNode;
1730
+ kicker?: ReactNode;
1731
+ icon?: ReactNode;
1732
+ badges?: ReactNode[];
1733
+ metrics?: PTouchCardMetric[];
1734
+ footer?: ReactNode;
1735
+ children?: ReactNode;
1736
+ selected?: boolean;
1737
+ draggable?: boolean;
1738
+ isDragging?: boolean;
1739
+ swipeThreshold?: number;
1740
+ startAction?: PTouchCardSwipeAction;
1741
+ endAction?: PTouchCardSwipeAction;
1742
+ dragHandleProps?: HTMLAttributes<HTMLElement>;
1743
+ onClick?: () => void;
1744
+ onSwipe?: (direction: 'start' | 'end') => void;
1745
+ sx?: SxProps<Theme>;
1746
+ }
1747
+ interface PNumericKeypadProps {
1748
+ value?: string;
1749
+ defaultValue?: string;
1750
+ title?: ReactNode;
1751
+ subtitle?: ReactNode;
1752
+ placeholder?: string;
1753
+ allowDecimal?: boolean;
1754
+ allowNegative?: boolean;
1755
+ maxLength?: number;
1756
+ confirmLabel?: ReactNode;
1757
+ clearLabel?: ReactNode;
1758
+ backspaceLabel?: ReactNode;
1759
+ onChange?: (value: string) => void;
1760
+ onSubmit?: (value: string) => void;
1761
+ onClose?: () => void;
1762
+ sx?: SxProps<Theme>;
1763
+ }
1764
+ interface PBarcodeScannerDetectedValue {
1765
+ rawValue: string;
1766
+ format?: string;
1767
+ }
1768
+ interface PBarcodeScannerProps {
1769
+ open: boolean;
1770
+ onClose: () => void;
1771
+ title?: ReactNode;
1772
+ subtitle?: ReactNode;
1773
+ formats?: string[];
1774
+ facingMode?: 'environment' | 'user';
1775
+ manualEntry?: boolean;
1776
+ autoCloseOnDetect?: boolean;
1777
+ scanIntervalMs?: number;
1778
+ confirmLabel?: ReactNode;
1779
+ cancelLabel?: ReactNode;
1780
+ manualPlaceholder?: string;
1781
+ onDetected?: (value: PBarcodeScannerDetectedValue) => void;
1782
+ onError?: (message: string) => void;
1783
+ sx?: SxProps<Theme>;
1784
+ }
1785
+ interface PWorkloadNavItem {
1786
+ id: string;
1787
+ title: string;
1788
+ description?: string;
1789
+ caption?: string;
1790
+ badge?: string | number;
1791
+ icon?: ReactNode;
1792
+ href?: string;
1793
+ color?: string;
1794
+ disabled?: boolean;
1795
+ }
1796
+ interface PWorkloadNavProps {
1797
+ items: PWorkloadNavItem[];
1798
+ selectedId?: string;
1799
+ orientation?: POrientation;
1800
+ onItemSelect?: (item: PWorkloadNavItem) => void;
1801
+ sx?: SxProps<Theme>;
1802
+ }
1803
+ interface PNavIslandProps {
1804
+ collapsed?: boolean;
1805
+ onToggle?: () => void;
1806
+ className?: string;
1807
+ maxHeight?: number;
1808
+ menuData?: TreeMenuItem[];
1809
+ colorMode?: 'light' | 'dark';
1810
+ orientation?: POrientation;
1811
+ headerSlot?: ReactNode;
1812
+ footerSlot?: ReactNode;
1813
+ activeHref?: string;
1814
+ onItemSelect?: (item: TreeMenuItem) => void;
1815
+ }
1816
+ interface PSmartFilterProps extends CSmartFilterProps {
1817
+ touchMode?: 'comfortable' | 'expanded';
1818
+ sx?: SxProps<Theme>;
1819
+ }
1820
+ interface PTableProps extends CTableProps {
1821
+ orientation?: POrientation;
1822
+ cardTitleField?: string;
1823
+ cardSubtitleFields?: string[];
1824
+ toolbarSlot?: ReactNode;
1825
+ emptyState?: ReactNode;
1826
+ rowHeight?: 'compact' | 'comfortable';
1827
+ cardActionSlot?: (row: Record<string, any>) => ReactNode;
1828
+ renderCardFooter?: (row: Record<string, any>) => ReactNode;
1829
+ onRowClick?: (row: Record<string, any>) => void;
1830
+ }
1831
+ interface PAppPageLayoutProps {
1832
+ appTitle: string;
1833
+ children: ReactNode;
1834
+ menuData?: TreeMenuItem[];
1835
+ workloadItems?: PWorkloadNavItem[];
1836
+ workloadSelectedId?: string;
1837
+ showNavigation?: boolean;
1838
+ showWorkloadNav?: boolean;
1839
+ orientation?: POrientation;
1840
+ logo?: ReactNode;
1841
+ headerSlot?: ReactNode;
1842
+ actionSlot?: ReactNode;
1843
+ portraitBottomSlot?: ReactNode;
1844
+ contentSx?: SxProps<Theme>;
1845
+ containerSx?: SxProps<Theme>;
1846
+ user?: CAppHeaderUser;
1847
+ onSearch?: (query: string) => void;
1848
+ defaultNavigationOpen?: boolean;
1849
+ navOpen?: boolean;
1850
+ onNavOpenChange?: (open: boolean) => void;
1851
+ onWorkloadSelect?: (item: PWorkloadNavItem) => void;
1852
+ }
1853
+
1854
+ interface UsePadLayoutOptions {
1855
+ orientation?: POrientation;
1856
+ defaultNavigationOpen?: boolean;
1857
+ onNavOpenChange?: (open: boolean) => void;
1858
+ }
1859
+ interface UsePadLayoutResult {
1860
+ resolvedOrientation: Exclude<POrientation, 'auto'>;
1861
+ isPortraitViewport: boolean;
1862
+ isCompactViewport: boolean;
1863
+ navigationOpen: boolean;
1864
+ setNavigationOpen: (open: boolean) => void;
1865
+ toggleNavigationOpen: () => void;
1866
+ }
1867
+ declare const usePadLayout: ({ orientation, defaultNavigationOpen, onNavOpenChange, }?: UsePadLayoutOptions) => UsePadLayoutResult;
1868
+
1869
+ interface UsePadRecordEditorOptions<TRecord extends Record<string, any>> {
1870
+ rows: TRecord[];
1871
+ rowKey?: keyof TRecord | string;
1872
+ numericField: keyof TRecord | string;
1873
+ defaultSelectedId?: string | number;
1874
+ }
1875
+ interface UsePadRecordEditorResult<TRecord extends Record<string, any>> {
1876
+ selectedId?: string | number;
1877
+ selectedRecord?: TRecord;
1878
+ editorValue: string;
1879
+ setEditorValue: (value: string) => void;
1880
+ selectRecord: (row: TRecord) => void;
1881
+ applyEditorValue: (updater: (nextRows: TRecord[]) => void) => void;
1882
+ }
1883
+ declare const usePadRecordEditor: <TRecord extends Record<string, any>>({ rows, rowKey, numericField, defaultSelectedId, }: UsePadRecordEditorOptions<TRecord>) => UsePadRecordEditorResult<TRecord>;
1884
+
1885
+ declare global {
1886
+ interface Window {
1887
+ BarcodeDetector?: {
1888
+ new (options?: {
1889
+ formats?: string[];
1890
+ }): {
1891
+ detect: (source: ImageBitmapSource) => Promise<Array<{
1892
+ rawValue?: string;
1893
+ format?: string;
1894
+ }>>;
1895
+ };
1896
+ getSupportedFormats?: () => Promise<string[]>;
1897
+ };
1898
+ }
1899
+ }
1900
+ declare const PBarcodeScanner: ({ open, onClose, title, subtitle, formats, facingMode, manualEntry, autoCloseOnDetect, scanIntervalMs, confirmLabel, cancelLabel, manualPlaceholder, onDetected, onError, sx, }: PBarcodeScannerProps) => react_jsx_runtime.JSX.Element;
1901
+
1902
+ declare const PTouchCard: ({ title, description, kicker, icon, badges, metrics, footer, children, selected, draggable, isDragging, swipeThreshold, startAction, endAction, dragHandleProps, onClick, onSwipe, sx, }: PTouchCardProps) => react_jsx_runtime.JSX.Element;
1903
+
1904
+ declare const PNumericKeypad: ({ value, defaultValue, title, subtitle, placeholder, allowDecimal, allowNegative, maxLength, confirmLabel, clearLabel, backspaceLabel, onChange, onSubmit, onClose, sx, }: PNumericKeypadProps) => react_jsx_runtime.JSX.Element;
1905
+
1906
+ declare const PSmartFilter: ({ touchMode, sx, ...props }: PSmartFilterProps) => react_jsx_runtime.JSX.Element;
1907
+
1908
+ declare const PWorkloadNav: ({ items, selectedId, orientation, onItemSelect, sx }: PWorkloadNavProps) => react_jsx_runtime.JSX.Element;
1909
+
1910
+ declare const PNavIsland: ({ collapsed, onToggle, className, maxHeight, menuData, colorMode, orientation, headerSlot, footerSlot, activeHref, onItemSelect, }: PNavIslandProps) => react_jsx_runtime.JSX.Element;
1911
+
1912
+ declare const PTable: React__default.FC<PTableProps>;
1913
+
1914
+ declare const PAppPageLayout: ({ appTitle, children, menuData, workloadItems, workloadSelectedId, showNavigation, showWorkloadNav, orientation, logo, headerSlot, actionSlot, portraitBottomSlot, contentSx, containerSx, user, onSearch, defaultNavigationOpen, navOpen, onNavOpenChange, onWorkloadSelect, }: PAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
1915
+
1568
1916
  interface UseVoiceInputOptions {
1569
1917
  onTextUpdate?: (text: string) => void;
1570
1918
  onComplete: (text: string) => void | Promise<void>;
@@ -1820,4 +2168,4 @@ declare const PAGE_TRANSITION_PRESETS: {
1820
2168
  };
1821
2169
  };
1822
2170
 
1823
- export { type AINavContextValue, AgentPanel, type AgentPanelProps, type AgentPanelStatus, type AgentUICardAction, type AgentUICardHookEvent, type AgentUICardHooks, type AgentUICardType, type AmapEmbedOptions, Button, type ButtonProps, CAINavProvider, type CAINavProviderProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CBarChart, type CBarChartProps, CChartCard, type CChartCardProps, CComboChart, type CComboChartProps, CCustomizeAgent, type CCustomizeAgentProps, CDetailInfoPage, type CDetailInfoPageProps, CDetailSearchAiBar, type CDetailSearchAiBarProps, CDetailSectionCard, type CDetailSectionCardProps, CFishboneChart, type CFishboneChartProps, CGoogleMapChart, type CGoogleMapChartProps, CGraphCharts, CGraphKpiCards, CGraphReport, type CGraphReportProps, CHeatmapChart, type CHeatmapChartProps, CLayoutManagement, type CLayoutManagementProps, CLayoutManager, type CLayoutManagerProps, CLineChart, type CLineChartProps, CMessageBox, type CMessageBoxProps, type CMessageBoxType, COrbCanvas, type COrbCanvasProps, CPageLayout, type CPageLayoutProps, CPageTransition, type CPageTransitionProps, CPieChart, type CPieChartProps, CPivotTable, type CPivotTableProps, CSmartFilter, type CSmartFilterProps, CSmartTable, CStandardPage, type CStandardPageProps, CTable, CTableBody, type CTableBodyProps, CTableCell, type CTableCellProps, CTableContainer, type CTableContainerProps, CTableHead, type CTableHeadProps, type CTableProps, type CTableQuickCreateConfig, type CTableQuickDeleteConfig, type CTableQuickEditConfig, CTableRow, type CTableRowProps, CVariantManagement, type CVariantManagementProps, CVariantManager, CVoiceWaveOverlay, type CVoiceWaveOverlayProps, CWaterfallChart, type CWaterfallChartProps, ChatMessage, CodeBlock, type CodeBlockProps, CopilotChat, type CopilotChatProps, type CustomizeAgentSavePayload, type CustomizeAgentSettings, type CustomizeAgentTemplateOption, type DateOperator, type DetailInfoAiConfig, type DetailInfoField, type DetailInfoSearchHit, type DetailInfoSearchMode, type DetailInfoSection, type DetailInfoTab, type DetailInfoTableConfig, type FilterField, type FilterOperator, type FilterType, type FilterValue, GlobalMessage, type GoogleMapEmbedOptions, type GraphBarDatum, type GraphComboDatum, type GraphFishboneBranch, type GraphHeatmapDatum, type GraphLineDatum, type GraphMapLocation, type GraphPieDatum, type GraphReportConfig, type GraphReportFieldMapping, type GraphReportInteractionState, type GraphReportKpis, type GraphReportModel, type GraphRow, type GraphTableColumn, type GraphWaterfallDatum, type IVariantService, type LayoutMetadata, MarkdownRenderer, type MarkdownRendererProps, MathBlock, type MathBlockProps, MermaidBlock, type MermaidBlockProps, type MessageContent, type MessageEvent, type MessageOptions, NavigationIsland, type NavigationIslandProps, type NumberOperator, ORBCAFE_I18N_MESSAGES, type OrbcafeI18nContextValue, OrbcafeI18nProvider, type OrbcafeI18nProviderProps, type OrbcafeLocale, type OrbcafeLocaleMessages, type OrbcafeMessageKey, type OrbcafeMessageParams, PAGE_TRANSITION_PRESETS, type PageTransitionVariant, type ParsedMarkdownTable, type PivotAggregation, type PivotChartConfig, PivotChartPanel, type PivotChartType, type PivotFieldDefinition, type PivotFieldType, type PivotFilterSelections, type PivotLayoutConfig, type PivotTableModel, type PivotTablePreset, type PivotValueFieldConfig, type PivotValueFieldState, type ReportColumn, type ReportFilter, type ReportMetadata, type SelectOperator, StdChat, type StdChatProps, type TableAlign, TableBlock, type TableBlockProps, type TextOperator, ThinkBlock, type ThinkBlockProps, TreeMenu, type TreeMenuItem, type UseAmapEmbedUrlOptions, type UseDetailInfoOptions, type UseDetailInfoResult, type UseGoogleMapEmbedUrlOptions, type UseGraphChartDataOptions, type UseGraphChartDataResult, type UseGraphInteractionResult, type UseGraphReportOptions, type UseGraphReportResult, type UseNavigationIslandOptions, type UseNavigationIslandResult, type UsePageLayoutOptions, type UsePivotTableOptions, type UsePivotTableResult, type UseStandardReportOptions, type UseVoiceInputOptions, type UseVoiceInputResult, type VariantMetadata, type VoiceNavigatorContextValue, VoiceNavigatorProvider, type VoiceNavigatorProviderProps, VoiceWaveOverlay, type VoiceWaveOverlayProps, buildAmapEmbedUrl, buildGoogleMapEmbedUrl, buildGoogleMapIframe, buttonVariants, message, messageManager, parseMarkdownTable, renderMarkdown, resolveVariantFilters, resolveVariantLayout, useAINav, useAmapEmbedUrl, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useNavigationIsland, useOrbcafeI18n, usePageLayout, usePivotTable, useStandardReport, useVoiceInput, useVoiceNavigator };
2171
+ export { type AINavContextValue, AgentPanel, type AgentPanelProps, type AgentPanelStatus, type AgentUICardAction, type AgentUICardHookEvent, type AgentUICardHooks, type AgentUICardType, type AmapEmbedOptions, Button, type ButtonProps, CAINavProvider, type CAINavProviderProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CBarChart, type CBarChartProps, CChartCard, type CChartCardProps, CComboChart, type CComboChartProps, CCustomizeAgent, type CCustomizeAgentProps, CDetailInfoPage, type CDetailInfoPageProps, CDetailSearchAiBar, type CDetailSearchAiBarProps, CDetailSectionCard, type CDetailSectionCardProps, CFishboneChart, type CFishboneChartProps, CGoogleMapChart, type CGoogleMapChartProps, CGraphCharts, CGraphKpiCards, CGraphReport, type CGraphReportProps, CHeatmapChart, type CHeatmapChartProps, CKanbanBoard, type CKanbanBoardProps, CKanbanBucket, type CKanbanBucketProps, CKanbanCard, type CKanbanCardProps, CLayoutManagement, type CLayoutManagementProps, CLayoutManager, type CLayoutManagerProps, CLineChart, type CLineChartProps, CMessageBox, type CMessageBoxProps, type CMessageBoxType, COrbCanvas, type COrbCanvasProps, CPageLayout, type CPageLayoutProps, CPageTransition, type CPageTransitionProps, CPieChart, type CPieChartProps, CPivotTable, type CPivotTableProps, CSmartFilter, type CSmartFilterProps, CSmartTable, CStandardPage, type CStandardPageProps, CTable, CTableBody, type CTableBodyProps, CTableCell, type CTableCellProps, CTableContainer, type CTableContainerProps, CTableHead, type CTableHeadProps, type CTableProps, type CTableQuickCreateConfig, type CTableQuickDeleteConfig, type CTableQuickEditConfig, CTableRow, type CTableRowProps, CVariantManagement, type CVariantManagementProps, CVariantManager, CVoiceWaveOverlay, type CVoiceWaveOverlayProps, CWaterfallChart, type CWaterfallChartProps, ChatMessage, CodeBlock, type CodeBlockProps, CopilotChat, type CopilotChatProps, type CreateKanbanBoardModelOptions, type CustomizeAgentSavePayload, type CustomizeAgentSettings, type CustomizeAgentTemplateOption, type DateOperator, type DetailInfoAiConfig, type DetailInfoField, type DetailInfoSearchHit, type DetailInfoSearchMode, type DetailInfoSection, type DetailInfoTab, type DetailInfoTableConfig, type FilterField, type FilterOperator, type FilterType, type FilterValue, GlobalMessage, type GoogleMapEmbedOptions, type GraphBarDatum, type GraphComboDatum, type GraphFishboneBranch, type GraphHeatmapDatum, type GraphLineDatum, type GraphMapLocation, type GraphPieDatum, type GraphReportConfig, type GraphReportFieldMapping, type GraphReportInteractionState, type GraphReportKpis, type GraphReportModel, type GraphRow, type GraphTableColumn, type GraphWaterfallDatum, type IVariantService, type KanbanBoardModel, type KanbanBucketDefinition, type KanbanBucketModel, type KanbanCardAssignee, type KanbanCardClickContext, type KanbanCardLookup, type KanbanCardMetric, type KanbanCardMoveEvent, type KanbanCardMoveInput, type KanbanCardPriority, type KanbanCardRecord, type KanbanCardTag, type KanbanCardTone, type LayoutMetadata, MarkdownRenderer, type MarkdownRendererProps, MathBlock, type MathBlockProps, MermaidBlock, type MermaidBlockProps, type MessageContent, type MessageEvent, type MessageOptions, NavigationIsland, type NavigationIslandProps, type NumberOperator, ORBCAFE_I18N_MESSAGES, type OrbcafeI18nContextValue, OrbcafeI18nProvider, type OrbcafeI18nProviderProps, type OrbcafeLocale, type OrbcafeLocaleMessages, type OrbcafeMessageKey, type OrbcafeMessageParams, PAGE_TRANSITION_PRESETS, PAppPageLayout, type PAppPageLayoutProps, PBarcodeScanner, type PBarcodeScannerDetectedValue, type PBarcodeScannerProps, PNavIsland, type PNavIslandProps, PNumericKeypad, type PNumericKeypadProps, type POrientation, PSmartFilter, type PSmartFilterProps, PTable, type PTableProps, PTouchCard, type PTouchCardMetric, type PTouchCardProps, type PTouchCardSwipeAction, PWorkloadNav, type PWorkloadNavItem, type PWorkloadNavProps, type PageTransitionVariant, type ParsedMarkdownTable, type PivotAggregation, type PivotChartConfig, PivotChartPanel, type PivotChartType, type PivotFieldDefinition, type PivotFieldType, type PivotFilterSelections, type PivotLayoutConfig, type PivotTableModel, type PivotTablePreset, type PivotValueFieldConfig, type PivotValueFieldState, type ReportColumn, type ReportFilter, type ReportMetadata, type SelectOperator, StdChat, type StdChatProps, type TableAlign, TableBlock, type TableBlockProps, type TextOperator, ThinkBlock, type ThinkBlockProps, TreeMenu, type TreeMenuItem, type UseAmapEmbedUrlOptions, type UseDetailInfoOptions, type UseDetailInfoResult, type UseGoogleMapEmbedUrlOptions, type UseGraphChartDataOptions, type UseGraphChartDataResult, type UseGraphInteractionResult, type UseGraphReportOptions, type UseGraphReportResult, type UseKanbanBoardActions, type UseKanbanBoardBindings, type UseKanbanBoardOptions, type UseKanbanBoardResult, type UseNavigationIslandOptions, type UseNavigationIslandResult, type UsePadLayoutOptions, type UsePadLayoutResult, type UsePadRecordEditorOptions, type UsePadRecordEditorResult, type UsePageLayoutOptions, type UsePivotTableOptions, type UsePivotTableResult, type UseStandardReportOptions, type UseVoiceInputOptions, type UseVoiceInputResult, type VariantMetadata, type VoiceNavigatorContextValue, VoiceNavigatorProvider, type VoiceNavigatorProviderProps, VoiceWaveOverlay, type VoiceWaveOverlayProps, buildAmapEmbedUrl, buildGoogleMapEmbedUrl, buildGoogleMapIframe, buttonVariants, createKanbanBoardModel, findKanbanCard, message, messageManager, moveKanbanCard, parseMarkdownTable, renderMarkdown, resolveVariantFilters, resolveVariantLayout, useAINav, useAmapEmbedUrl, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useKanbanBoard, useNavigationIsland, useOrbcafeI18n, usePadLayout, usePadRecordEditor, usePageLayout, usePivotTable, useStandardReport, useVoiceInput, useVoiceNavigator };