orbcafe-ui 1.2.3 → 1.2.5

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
@@ -59,6 +59,8 @@ npm install orbcafe-ui @mui/material@^7.3.9 @mui/icons-material@^7.3.9 @mui/x-da
59
59
  | `AINav` | 语音导航与命令输入能力 | `src/components/AINav` | `src/components/AINav/README.md` |
60
60
  | `Pad` | 平板触摸场景 UI(壳层、触摸表格、数字键盘、扫码) | `src/components/Pad` | `src/components/Pad/README.md` |
61
61
  | `AgentUI` | 聊天 UI 与 Copilot UI(StdChat / CopilotChat / AgentPanel) | `src/components/AgentUI` | `src/components/AgentUI/README.md` |
62
+ | `Auth` | 登录、用户注册、忘记密码的入口页 | `src/components/Auth` | `src/components/Auth/README.md` |
63
+ | `Planning` | 项目管理/生产计划表格 + 甘特图 | `src/components/Planning` | `src/components/Planning/README.md` |
62
64
 
63
65
  ### 文档查阅顺序(推荐)
64
66
 
@@ -79,6 +81,8 @@ npm install orbcafe-ui @mui/material@^7.3.9 @mui/icons-material@^7.3.9 @mui/x-da
79
81
  - `Kanban Hooks`:`src/components/Kanban/Hooks/README.md`
80
82
  - `Kanban Tools`:`src/components/Kanban/Utils/README.md`
81
83
  - `AgentUI` 模块文档:`src/components/AgentUI/README.md`
84
+ - `Auth` 模块文档:`src/components/Auth/README.md`
85
+ - `Planning` 模块文档:`src/components/Planning/README.md`
82
86
  - `AI 模块契约索引`:`skills/orbcafe-ui-component-usage/references/module-contracts.md`
83
87
  - `Pad skill`:`skills/orbcafe-pad-workflow/SKILL.md`
84
88
  - `组件通俗名映射(多语言)`:`skills/orbcafe-ui-component-usage/references/component-glossary-i18n.md`
package/dist/index.d.mts CHANGED
@@ -1849,6 +1849,15 @@ interface PAppPageLayoutProps {
1849
1849
  navOpen?: boolean;
1850
1850
  onNavOpenChange?: (open: boolean) => void;
1851
1851
  onWorkloadSelect?: (item: PWorkloadNavItem) => void;
1852
+ locale?: OrbcafeLocale;
1853
+ localeLabel?: string;
1854
+ localeOptions?: OrbcafeLocale[];
1855
+ onLocaleChange?: (locale: OrbcafeLocale) => void;
1856
+ onUserSetting?: () => void;
1857
+ onUserLogout?: () => void;
1858
+ userMenuItems?: CAppHeaderUserMenuItem[];
1859
+ leftHeaderSlot?: ReactNode;
1860
+ rightHeaderSlot?: ReactNode;
1852
1861
  }
1853
1862
 
1854
1863
  interface UsePadLayoutOptions {
@@ -1911,7 +1920,7 @@ declare const PNavIsland: ({ collapsed, onToggle, className, maxHeight, menuData
1911
1920
 
1912
1921
  declare const PTable: React__default.FC<PTableProps>;
1913
1922
 
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;
1923
+ declare const PAppPageLayout: ({ appTitle, children, menuData, workloadItems, workloadSelectedId, showNavigation, showWorkloadNav, orientation, logo, headerSlot, actionSlot, portraitBottomSlot, contentSx, containerSx, user, onSearch, defaultNavigationOpen, navOpen, onNavOpenChange, onWorkloadSelect, locale, localeLabel, localeOptions, onLocaleChange, onUserSetting, onUserLogout, userMenuItems, leftHeaderSlot, rightHeaderSlot, }: PAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
1915
1924
 
1916
1925
  interface UseVoiceInputOptions {
1917
1926
  onTextUpdate?: (text: string) => void;
@@ -2074,6 +2083,134 @@ interface CopilotChatProps {
2074
2083
  }
2075
2084
  declare const CopilotChat: React__default.FC<CopilotChatProps>;
2076
2085
 
2086
+ type AuthPageMode = 'login' | 'register' | 'forgot';
2087
+ interface AuthLoginPayload {
2088
+ username: string;
2089
+ password: string;
2090
+ remember: boolean;
2091
+ }
2092
+ interface AuthRegisterPayload {
2093
+ name: string;
2094
+ email: string;
2095
+ password: string;
2096
+ confirmPassword: string;
2097
+ acceptedTerms: boolean;
2098
+ }
2099
+ interface AuthForgotPasswordPayload {
2100
+ email: string;
2101
+ }
2102
+ interface AuthPageCopy {
2103
+ productName?: string;
2104
+ headline?: string;
2105
+ subheadline?: string;
2106
+ loginTitle?: string;
2107
+ loginSubtitle?: string;
2108
+ registerTitle?: string;
2109
+ registerSubtitle?: string;
2110
+ forgotTitle?: string;
2111
+ forgotSubtitle?: string;
2112
+ }
2113
+ interface CAuthPageProps {
2114
+ mode?: AuthPageMode;
2115
+ defaultMode?: AuthPageMode;
2116
+ onModeChange?: (mode: AuthPageMode) => void;
2117
+ onLogin?: (payload: AuthLoginPayload) => void | Promise<void>;
2118
+ onRegister?: (payload: AuthRegisterPayload) => void | Promise<void>;
2119
+ onForgotPassword?: (payload: AuthForgotPasswordPayload) => void | Promise<void>;
2120
+ loading?: boolean;
2121
+ logo?: ReactNode;
2122
+ copy?: AuthPageCopy;
2123
+ sx?: SxProps<Theme>;
2124
+ }
2125
+
2126
+ interface UseAuthPageOptions {
2127
+ defaultMode?: AuthPageMode;
2128
+ onLogin?: (payload: AuthLoginPayload) => void | Promise<void>;
2129
+ onRegister?: (payload: AuthRegisterPayload) => void | Promise<void>;
2130
+ onForgotPassword?: (payload: AuthForgotPasswordPayload) => void | Promise<void>;
2131
+ }
2132
+ interface UseAuthPageResult {
2133
+ mode: AuthPageMode;
2134
+ loading: boolean;
2135
+ setMode: (mode: AuthPageMode) => void;
2136
+ authPageProps: Pick<CAuthPageProps, 'mode' | 'loading' | 'onModeChange' | 'onLogin' | 'onRegister' | 'onForgotPassword'>;
2137
+ }
2138
+ declare const useAuthPage: ({ defaultMode, onLogin, onRegister, onForgotPassword, }?: UseAuthPageOptions) => UseAuthPageResult;
2139
+
2140
+ declare const CAuthPage: ({ mode, defaultMode, onModeChange, onLogin, onRegister, onForgotPassword, loading, logo, copy, sx, }: CAuthPageProps) => react_jsx_runtime.JSX.Element;
2141
+
2142
+ type PlanningGanttScale = 'hour' | 'day' | 'week' | 'month';
2143
+ type PlanningTaskStatus = 'not-started' | 'planned' | 'in-progress' | 'blocked' | 'done' | string;
2144
+ interface PlanningTaskOwner {
2145
+ name: string;
2146
+ avatarSrc?: string;
2147
+ initials?: string;
2148
+ }
2149
+ interface PlanningTaskRecord {
2150
+ id: string;
2151
+ title: string;
2152
+ code?: string;
2153
+ startDate: string;
2154
+ endDate: string;
2155
+ progress?: number;
2156
+ status?: PlanningTaskStatus;
2157
+ owner?: PlanningTaskOwner;
2158
+ project?: string;
2159
+ workCenter?: string;
2160
+ priority?: 'low' | 'medium' | 'high' | 'critical';
2161
+ dependencyIds?: string[];
2162
+ color?: string;
2163
+ children?: PlanningTaskRecord[];
2164
+ }
2165
+ interface PlanningGanttColumn {
2166
+ id: 'code' | 'title' | 'project' | 'workCenter' | 'owner' | 'status' | 'progress' | string;
2167
+ label: string;
2168
+ width?: number;
2169
+ render?: (task: PlanningTaskRecord) => ReactNode;
2170
+ }
2171
+ interface PlanningGanttSummaryItem {
2172
+ label: string;
2173
+ value: ReactNode;
2174
+ tone?: 'default' | 'success' | 'warning' | 'error' | 'info';
2175
+ }
2176
+ interface CPlanningGanttProps {
2177
+ title?: string;
2178
+ subtitle?: string;
2179
+ extraTools?: ReactNode | ReactNode[];
2180
+ tasks: PlanningTaskRecord[];
2181
+ columns?: PlanningGanttColumn[];
2182
+ scale?: PlanningGanttScale;
2183
+ onScaleChange?: (scale: PlanningGanttScale) => void;
2184
+ timelineStart?: string;
2185
+ timelineEnd?: string;
2186
+ selectedTaskId?: string;
2187
+ onTaskSelect?: (task: PlanningTaskRecord) => void;
2188
+ summaryItems?: PlanningGanttSummaryItem[];
2189
+ emptyLabel?: string;
2190
+ sx?: SxProps<Theme>;
2191
+ }
2192
+
2193
+ interface UsePlanningGanttOptions {
2194
+ tasks: PlanningTaskRecord[];
2195
+ defaultScale?: PlanningGanttScale;
2196
+ defaultSelectedTaskId?: string;
2197
+ initialFilters?: Record<string, FilterValue>;
2198
+ }
2199
+ interface UsePlanningGanttResult {
2200
+ scale: PlanningGanttScale;
2201
+ setScale: (scale: PlanningGanttScale) => void;
2202
+ selectedTaskId: string;
2203
+ setSelectedTaskId: (taskId: string) => void;
2204
+ filters: Record<string, FilterValue>;
2205
+ setFilters: (filters: Record<string, FilterValue>) => void;
2206
+ filteredTasks: PlanningTaskRecord[];
2207
+ smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey'>;
2208
+ planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'scale' | 'onScaleChange' | 'selectedTaskId' | 'onTaskSelect'>;
2209
+ }
2210
+ declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
2211
+
2212
+ declare const CPlanningGantt: ({ title, subtitle, extraTools, tasks, scale, onScaleChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
2213
+
2077
2214
  interface MarkdownRendererProps {
2078
2215
  markdown?: string;
2079
2216
  content?: string;
@@ -2168,4 +2305,4 @@ declare const PAGE_TRANSITION_PRESETS: {
2168
2305
  };
2169
2306
  };
2170
2307
 
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 };
2308
+ export { type AINavContextValue, AgentPanel, type AgentPanelProps, type AgentPanelStatus, type AgentUICardAction, type AgentUICardHookEvent, type AgentUICardHooks, type AgentUICardType, type AmapEmbedOptions, type AuthForgotPasswordPayload, type AuthLoginPayload, type AuthPageCopy, type AuthPageMode, type AuthRegisterPayload, Button, type ButtonProps, CAINavProvider, type CAINavProviderProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CAuthPage, type CAuthPageProps, 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, CPlanningGantt, type CPlanningGanttProps, 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 PlanningGanttColumn, type PlanningGanttScale, type PlanningGanttSummaryItem, type PlanningTaskOwner, type PlanningTaskRecord, type PlanningTaskStatus, 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 UseAuthPageOptions, type UseAuthPageResult, 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 UsePlanningGanttOptions, type UsePlanningGanttResult, 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, useAuthPage, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useKanbanBoard, useNavigationIsland, useOrbcafeI18n, usePadLayout, usePadRecordEditor, usePageLayout, usePivotTable, usePlanningGantt, useStandardReport, useVoiceInput, useVoiceNavigator };
package/dist/index.d.ts CHANGED
@@ -1849,6 +1849,15 @@ interface PAppPageLayoutProps {
1849
1849
  navOpen?: boolean;
1850
1850
  onNavOpenChange?: (open: boolean) => void;
1851
1851
  onWorkloadSelect?: (item: PWorkloadNavItem) => void;
1852
+ locale?: OrbcafeLocale;
1853
+ localeLabel?: string;
1854
+ localeOptions?: OrbcafeLocale[];
1855
+ onLocaleChange?: (locale: OrbcafeLocale) => void;
1856
+ onUserSetting?: () => void;
1857
+ onUserLogout?: () => void;
1858
+ userMenuItems?: CAppHeaderUserMenuItem[];
1859
+ leftHeaderSlot?: ReactNode;
1860
+ rightHeaderSlot?: ReactNode;
1852
1861
  }
1853
1862
 
1854
1863
  interface UsePadLayoutOptions {
@@ -1911,7 +1920,7 @@ declare const PNavIsland: ({ collapsed, onToggle, className, maxHeight, menuData
1911
1920
 
1912
1921
  declare const PTable: React__default.FC<PTableProps>;
1913
1922
 
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;
1923
+ declare const PAppPageLayout: ({ appTitle, children, menuData, workloadItems, workloadSelectedId, showNavigation, showWorkloadNav, orientation, logo, headerSlot, actionSlot, portraitBottomSlot, contentSx, containerSx, user, onSearch, defaultNavigationOpen, navOpen, onNavOpenChange, onWorkloadSelect, locale, localeLabel, localeOptions, onLocaleChange, onUserSetting, onUserLogout, userMenuItems, leftHeaderSlot, rightHeaderSlot, }: PAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
1915
1924
 
1916
1925
  interface UseVoiceInputOptions {
1917
1926
  onTextUpdate?: (text: string) => void;
@@ -2074,6 +2083,134 @@ interface CopilotChatProps {
2074
2083
  }
2075
2084
  declare const CopilotChat: React__default.FC<CopilotChatProps>;
2076
2085
 
2086
+ type AuthPageMode = 'login' | 'register' | 'forgot';
2087
+ interface AuthLoginPayload {
2088
+ username: string;
2089
+ password: string;
2090
+ remember: boolean;
2091
+ }
2092
+ interface AuthRegisterPayload {
2093
+ name: string;
2094
+ email: string;
2095
+ password: string;
2096
+ confirmPassword: string;
2097
+ acceptedTerms: boolean;
2098
+ }
2099
+ interface AuthForgotPasswordPayload {
2100
+ email: string;
2101
+ }
2102
+ interface AuthPageCopy {
2103
+ productName?: string;
2104
+ headline?: string;
2105
+ subheadline?: string;
2106
+ loginTitle?: string;
2107
+ loginSubtitle?: string;
2108
+ registerTitle?: string;
2109
+ registerSubtitle?: string;
2110
+ forgotTitle?: string;
2111
+ forgotSubtitle?: string;
2112
+ }
2113
+ interface CAuthPageProps {
2114
+ mode?: AuthPageMode;
2115
+ defaultMode?: AuthPageMode;
2116
+ onModeChange?: (mode: AuthPageMode) => void;
2117
+ onLogin?: (payload: AuthLoginPayload) => void | Promise<void>;
2118
+ onRegister?: (payload: AuthRegisterPayload) => void | Promise<void>;
2119
+ onForgotPassword?: (payload: AuthForgotPasswordPayload) => void | Promise<void>;
2120
+ loading?: boolean;
2121
+ logo?: ReactNode;
2122
+ copy?: AuthPageCopy;
2123
+ sx?: SxProps<Theme>;
2124
+ }
2125
+
2126
+ interface UseAuthPageOptions {
2127
+ defaultMode?: AuthPageMode;
2128
+ onLogin?: (payload: AuthLoginPayload) => void | Promise<void>;
2129
+ onRegister?: (payload: AuthRegisterPayload) => void | Promise<void>;
2130
+ onForgotPassword?: (payload: AuthForgotPasswordPayload) => void | Promise<void>;
2131
+ }
2132
+ interface UseAuthPageResult {
2133
+ mode: AuthPageMode;
2134
+ loading: boolean;
2135
+ setMode: (mode: AuthPageMode) => void;
2136
+ authPageProps: Pick<CAuthPageProps, 'mode' | 'loading' | 'onModeChange' | 'onLogin' | 'onRegister' | 'onForgotPassword'>;
2137
+ }
2138
+ declare const useAuthPage: ({ defaultMode, onLogin, onRegister, onForgotPassword, }?: UseAuthPageOptions) => UseAuthPageResult;
2139
+
2140
+ declare const CAuthPage: ({ mode, defaultMode, onModeChange, onLogin, onRegister, onForgotPassword, loading, logo, copy, sx, }: CAuthPageProps) => react_jsx_runtime.JSX.Element;
2141
+
2142
+ type PlanningGanttScale = 'hour' | 'day' | 'week' | 'month';
2143
+ type PlanningTaskStatus = 'not-started' | 'planned' | 'in-progress' | 'blocked' | 'done' | string;
2144
+ interface PlanningTaskOwner {
2145
+ name: string;
2146
+ avatarSrc?: string;
2147
+ initials?: string;
2148
+ }
2149
+ interface PlanningTaskRecord {
2150
+ id: string;
2151
+ title: string;
2152
+ code?: string;
2153
+ startDate: string;
2154
+ endDate: string;
2155
+ progress?: number;
2156
+ status?: PlanningTaskStatus;
2157
+ owner?: PlanningTaskOwner;
2158
+ project?: string;
2159
+ workCenter?: string;
2160
+ priority?: 'low' | 'medium' | 'high' | 'critical';
2161
+ dependencyIds?: string[];
2162
+ color?: string;
2163
+ children?: PlanningTaskRecord[];
2164
+ }
2165
+ interface PlanningGanttColumn {
2166
+ id: 'code' | 'title' | 'project' | 'workCenter' | 'owner' | 'status' | 'progress' | string;
2167
+ label: string;
2168
+ width?: number;
2169
+ render?: (task: PlanningTaskRecord) => ReactNode;
2170
+ }
2171
+ interface PlanningGanttSummaryItem {
2172
+ label: string;
2173
+ value: ReactNode;
2174
+ tone?: 'default' | 'success' | 'warning' | 'error' | 'info';
2175
+ }
2176
+ interface CPlanningGanttProps {
2177
+ title?: string;
2178
+ subtitle?: string;
2179
+ extraTools?: ReactNode | ReactNode[];
2180
+ tasks: PlanningTaskRecord[];
2181
+ columns?: PlanningGanttColumn[];
2182
+ scale?: PlanningGanttScale;
2183
+ onScaleChange?: (scale: PlanningGanttScale) => void;
2184
+ timelineStart?: string;
2185
+ timelineEnd?: string;
2186
+ selectedTaskId?: string;
2187
+ onTaskSelect?: (task: PlanningTaskRecord) => void;
2188
+ summaryItems?: PlanningGanttSummaryItem[];
2189
+ emptyLabel?: string;
2190
+ sx?: SxProps<Theme>;
2191
+ }
2192
+
2193
+ interface UsePlanningGanttOptions {
2194
+ tasks: PlanningTaskRecord[];
2195
+ defaultScale?: PlanningGanttScale;
2196
+ defaultSelectedTaskId?: string;
2197
+ initialFilters?: Record<string, FilterValue>;
2198
+ }
2199
+ interface UsePlanningGanttResult {
2200
+ scale: PlanningGanttScale;
2201
+ setScale: (scale: PlanningGanttScale) => void;
2202
+ selectedTaskId: string;
2203
+ setSelectedTaskId: (taskId: string) => void;
2204
+ filters: Record<string, FilterValue>;
2205
+ setFilters: (filters: Record<string, FilterValue>) => void;
2206
+ filteredTasks: PlanningTaskRecord[];
2207
+ smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey'>;
2208
+ planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'scale' | 'onScaleChange' | 'selectedTaskId' | 'onTaskSelect'>;
2209
+ }
2210
+ declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
2211
+
2212
+ declare const CPlanningGantt: ({ title, subtitle, extraTools, tasks, scale, onScaleChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
2213
+
2077
2214
  interface MarkdownRendererProps {
2078
2215
  markdown?: string;
2079
2216
  content?: string;
@@ -2168,4 +2305,4 @@ declare const PAGE_TRANSITION_PRESETS: {
2168
2305
  };
2169
2306
  };
2170
2307
 
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 };
2308
+ export { type AINavContextValue, AgentPanel, type AgentPanelProps, type AgentPanelStatus, type AgentUICardAction, type AgentUICardHookEvent, type AgentUICardHooks, type AgentUICardType, type AmapEmbedOptions, type AuthForgotPasswordPayload, type AuthLoginPayload, type AuthPageCopy, type AuthPageMode, type AuthRegisterPayload, Button, type ButtonProps, CAINavProvider, type CAINavProviderProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CAuthPage, type CAuthPageProps, 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, CPlanningGantt, type CPlanningGanttProps, 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 PlanningGanttColumn, type PlanningGanttScale, type PlanningGanttSummaryItem, type PlanningTaskOwner, type PlanningTaskRecord, type PlanningTaskStatus, 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 UseAuthPageOptions, type UseAuthPageResult, 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 UsePlanningGanttOptions, type UsePlanningGanttResult, 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, useAuthPage, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useKanbanBoard, useNavigationIsland, useOrbcafeI18n, usePadLayout, usePadRecordEditor, usePageLayout, usePivotTable, usePlanningGantt, useStandardReport, useVoiceInput, useVoiceNavigator };