orbcafe-ui 1.4.3 → 1.4.6
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.d.mts +90 -7
- package/dist/index.d.ts +90 -7
- package/dist/index.js +16 -16
- package/dist/index.mjs +15 -15
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -16,6 +16,7 @@ interface TreeMenuItem {
|
|
|
16
16
|
appurl?: string;
|
|
17
17
|
children?: TreeMenuItem[];
|
|
18
18
|
isExpanded?: boolean;
|
|
19
|
+
pinnable?: boolean;
|
|
19
20
|
data?: any;
|
|
20
21
|
}
|
|
21
22
|
interface TreeMenuProps {
|
|
@@ -26,8 +27,11 @@ interface TreeMenuProps {
|
|
|
26
27
|
expandedIds?: Set<string>;
|
|
27
28
|
onToggleExpand?: (id: string) => void;
|
|
28
29
|
colorMode?: 'light' | 'dark';
|
|
30
|
+
enablePinning?: boolean;
|
|
31
|
+
pinnedIds?: Set<string>;
|
|
32
|
+
onTogglePin?: (item: TreeMenuItem) => void;
|
|
29
33
|
}
|
|
30
|
-
declare function TreeMenu({ items, onItemClick, className, level, expandedIds, onToggleExpand, colorMode, }: TreeMenuProps): react_jsx_runtime.JSX.Element;
|
|
34
|
+
declare function TreeMenu({ items, onItemClick, className, level, expandedIds, onToggleExpand, colorMode, enablePinning, pinnedIds, onTogglePin, }: TreeMenuProps): react_jsx_runtime.JSX.Element;
|
|
31
35
|
|
|
32
36
|
/**
|
|
33
37
|
* @file 10_Frontend/components/ui/molecules/navigation-island.tsx
|
|
@@ -62,6 +66,12 @@ interface NavigationIslandProps {
|
|
|
62
66
|
displayMode?: NavigationIslandDisplayMode;
|
|
63
67
|
onDisplayModeChange?: (mode: NavigationIslandDisplayMode) => void;
|
|
64
68
|
showDisplayModeToggle?: boolean;
|
|
69
|
+
enablePinning?: boolean;
|
|
70
|
+
pinStorageKey?: string;
|
|
71
|
+
pinnedItemIds?: string[];
|
|
72
|
+
defaultPinnedItemIds?: string[];
|
|
73
|
+
onPinnedItemIdsChange?: (ids: string[]) => void;
|
|
74
|
+
pinnedSectionTitle?: string;
|
|
65
75
|
}
|
|
66
76
|
declare const NavigationIsland: React__default.FC<NavigationIslandProps>;
|
|
67
77
|
|
|
@@ -79,6 +89,12 @@ interface UseNavigationIslandOptions {
|
|
|
79
89
|
initialCollapsed?: boolean;
|
|
80
90
|
initialDisplayMode?: NavigationIslandDisplayMode;
|
|
81
91
|
content?: TreeMenuItem[];
|
|
92
|
+
enablePinning?: boolean;
|
|
93
|
+
pinStorageKey?: string;
|
|
94
|
+
pinnedItemIds?: string[];
|
|
95
|
+
defaultPinnedItemIds?: string[];
|
|
96
|
+
onPinnedItemIdsChange?: (ids: string[]) => void;
|
|
97
|
+
pinnedSectionTitle?: string;
|
|
82
98
|
}
|
|
83
99
|
interface UseNavigationIslandResult {
|
|
84
100
|
collapsed: boolean;
|
|
@@ -89,7 +105,7 @@ interface UseNavigationIslandResult {
|
|
|
89
105
|
toggleDisplayMode: () => void;
|
|
90
106
|
menuData: TreeMenuItem[];
|
|
91
107
|
setMenuData: Dispatch<SetStateAction<TreeMenuItem[]>>;
|
|
92
|
-
navigationIslandProps: Pick<NavigationIslandProps, 'collapsed' | 'onToggle' | 'menuData' | 'displayMode' | 'onDisplayModeChange'>;
|
|
108
|
+
navigationIslandProps: Pick<NavigationIslandProps, 'collapsed' | 'onToggle' | 'menuData' | 'displayMode' | 'onDisplayModeChange' | 'enablePinning' | 'pinStorageKey' | 'pinnedItemIds' | 'defaultPinnedItemIds' | 'onPinnedItemIdsChange' | 'pinnedSectionTitle'>;
|
|
93
109
|
}
|
|
94
110
|
/**
|
|
95
111
|
* Hook for wiring NavigationIsland in a controlled and reusable way.
|
|
@@ -427,6 +443,8 @@ interface CTableProps {
|
|
|
427
443
|
quickEdit?: CTableQuickEditConfig;
|
|
428
444
|
quickDelete?: CTableQuickDeleteConfig;
|
|
429
445
|
serviceUrl?: string;
|
|
446
|
+
disableGrouping?: boolean;
|
|
447
|
+
disableSorting?: boolean;
|
|
430
448
|
}
|
|
431
449
|
interface CTableHeadProps {
|
|
432
450
|
columns: any[];
|
|
@@ -438,6 +456,7 @@ interface CTableHeadProps {
|
|
|
438
456
|
direction: 'asc' | 'desc';
|
|
439
457
|
}>;
|
|
440
458
|
onRequestSort: (property: string) => void;
|
|
459
|
+
disableSorting?: boolean;
|
|
441
460
|
onContextMenu?: (event: React.MouseEvent, columnId: string) => void;
|
|
442
461
|
selectionMode?: 'single' | 'multiple';
|
|
443
462
|
grouping?: string[];
|
|
@@ -1342,6 +1361,9 @@ declare const en: {
|
|
|
1342
1361
|
readonly 'navigation.expandView': "Expand {title}";
|
|
1343
1362
|
readonly 'navigation.mode.switchToFixed': "Switch to fixed navigation";
|
|
1344
1363
|
readonly 'navigation.mode.switchToFloating': "Switch to floating navigation";
|
|
1364
|
+
readonly 'navigation.pinned': "Pinned";
|
|
1365
|
+
readonly 'navigation.pin.add': "Pin to top";
|
|
1366
|
+
readonly 'navigation.pin.remove': "Unpin";
|
|
1345
1367
|
readonly 'table.toolbar.searchPlaceholder': "Search...";
|
|
1346
1368
|
readonly 'table.title.default': "Data Table";
|
|
1347
1369
|
readonly 'table.toolbar.groupBy': "Group By";
|
|
@@ -1630,9 +1652,15 @@ interface CAppPageLayoutProps {
|
|
|
1630
1652
|
defaultNavigationMode?: NavigationIslandDisplayMode;
|
|
1631
1653
|
onNavigationModeChange?: (mode: NavigationIslandDisplayMode) => void;
|
|
1632
1654
|
showNavigationModeToggle?: boolean;
|
|
1655
|
+
enableNavigationPinning?: boolean;
|
|
1656
|
+
navigationPinStorageKey?: string;
|
|
1657
|
+
pinnedNavigationItemIds?: string[];
|
|
1658
|
+
defaultPinnedNavigationItemIds?: string[];
|
|
1659
|
+
onPinnedNavigationItemIdsChange?: (ids: string[]) => void;
|
|
1660
|
+
pinnedNavigationSectionTitle?: string;
|
|
1633
1661
|
}
|
|
1634
1662
|
|
|
1635
|
-
declare const CAppPageLayout: ({ appTitle, menuData, children, showNavigation, locale, localeLabel, localeOptions, onLocaleChange, user, onUserSetting, onUserLogout, userMenuItems, logo, searchPlaceholder, searchPlacement, floatingSearchSx, onSearch, onSearchAdd, rightHeaderSlot, leftHeaderSlot, contentSx, navigationMode, defaultNavigationMode, onNavigationModeChange, showNavigationModeToggle, }: CAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1663
|
+
declare const CAppPageLayout: ({ appTitle, menuData, children, showNavigation, locale, localeLabel, localeOptions, onLocaleChange, user, onUserSetting, onUserLogout, userMenuItems, logo, searchPlaceholder, searchPlacement, floatingSearchSx, onSearch, onSearchAdd, rightHeaderSlot, leftHeaderSlot, contentSx, navigationMode, defaultNavigationMode, onNavigationModeChange, showNavigationModeToggle, enableNavigationPinning, navigationPinStorageKey, pinnedNavigationItemIds, defaultPinnedNavigationItemIds, onPinnedNavigationItemIdsChange, pinnedNavigationSectionTitle, }: CAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1636
1664
|
|
|
1637
1665
|
interface CAppHeaderSearchProps {
|
|
1638
1666
|
searchPlaceholder?: string;
|
|
@@ -1648,9 +1676,15 @@ interface UsePageLayoutOptions {
|
|
|
1648
1676
|
menuData?: TreeMenuItem[];
|
|
1649
1677
|
initialNavigationCollapsed?: boolean;
|
|
1650
1678
|
initialNavigationMode?: NavigationIslandDisplayMode;
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1679
|
+
enableNavigationPinning?: boolean;
|
|
1680
|
+
navigationPinStorageKey?: string;
|
|
1681
|
+
pinnedNavigationItemIds?: string[];
|
|
1682
|
+
defaultPinnedNavigationItemIds?: string[];
|
|
1683
|
+
onPinnedNavigationItemIdsChange?: (ids: string[]) => void;
|
|
1684
|
+
pinnedNavigationSectionTitle?: string;
|
|
1685
|
+
}
|
|
1686
|
+
declare const usePageLayout: ({ menuData, initialNavigationCollapsed, initialNavigationMode, enableNavigationPinning, navigationPinStorageKey, pinnedNavigationItemIds, defaultPinnedNavigationItemIds, onPinnedNavigationItemIdsChange, pinnedNavigationSectionTitle, }?: UsePageLayoutOptions) => {
|
|
1687
|
+
navigationIslandProps: Pick<NavigationIslandProps, "enablePinning" | "collapsed" | "onToggle" | "menuData" | "displayMode" | "onDisplayModeChange" | "pinStorageKey" | "pinnedItemIds" | "defaultPinnedItemIds" | "onPinnedItemIdsChange" | "pinnedSectionTitle">;
|
|
1654
1688
|
navigationMaxHeight: number;
|
|
1655
1689
|
};
|
|
1656
1690
|
|
|
@@ -2401,6 +2435,55 @@ declare const usePlanningLayout: (options: UsePlanningLayoutOptions) => UsePlann
|
|
|
2401
2435
|
|
|
2402
2436
|
declare const CPlanningGantt: ({ appId, tableKey, serviceUrl, title, extraTools, bodyHeight, tasks, columns, scale, onScaleChange, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, enableRowReorder, onTaskReorder, layout, layoutVariant, layoutVariantLoadKey, onLayoutIdChange, onLayoutSave, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
|
|
2403
2437
|
|
|
2438
|
+
type CTreeCompPaneMode = 'tree' | 'split' | 'detail';
|
|
2439
|
+
interface CTreeCompNode {
|
|
2440
|
+
id: string;
|
|
2441
|
+
label: string;
|
|
2442
|
+
subtitle?: string;
|
|
2443
|
+
markerColor?: string;
|
|
2444
|
+
children?: CTreeCompNode[];
|
|
2445
|
+
[key: string]: unknown;
|
|
2446
|
+
}
|
|
2447
|
+
interface CTreeCompColumn<TNode extends CTreeCompNode = CTreeCompNode> {
|
|
2448
|
+
id: string;
|
|
2449
|
+
label: ReactNode;
|
|
2450
|
+
width?: number | string;
|
|
2451
|
+
minWidth?: number;
|
|
2452
|
+
align?: 'left' | 'center' | 'right';
|
|
2453
|
+
numeric?: boolean;
|
|
2454
|
+
render?: (node: TNode) => ReactNode;
|
|
2455
|
+
}
|
|
2456
|
+
interface CTreeCompProps<TNode extends CTreeCompNode = CTreeCompNode> {
|
|
2457
|
+
title: ReactNode;
|
|
2458
|
+
subtitle?: ReactNode;
|
|
2459
|
+
nodes: TNode[];
|
|
2460
|
+
columns?: CTreeCompColumn<TNode>[];
|
|
2461
|
+
detail?: ReactNode | ((node: TNode | null) => ReactNode);
|
|
2462
|
+
selectedNodeId?: string | null;
|
|
2463
|
+
defaultSelectedNodeId?: string;
|
|
2464
|
+
onNodeSelect?: (node: TNode) => void;
|
|
2465
|
+
expandedNodeIds?: string[];
|
|
2466
|
+
defaultExpandedNodeIds?: string[];
|
|
2467
|
+
onExpandedNodeIdsChange?: (nodeIds: string[]) => void;
|
|
2468
|
+
defaultPaneMode?: CTreeCompPaneMode;
|
|
2469
|
+
minTreePaneWidth?: number;
|
|
2470
|
+
minDetailPaneWidth?: number;
|
|
2471
|
+
tableAppId?: string;
|
|
2472
|
+
tableKey?: string;
|
|
2473
|
+
tableTitle?: string;
|
|
2474
|
+
filterConfig?: CSmartFilterProps;
|
|
2475
|
+
searchQuery?: string;
|
|
2476
|
+
searchToken?: string | number;
|
|
2477
|
+
defaultRowsPerPage?: number;
|
|
2478
|
+
rowsPerPageOptions?: number[];
|
|
2479
|
+
serviceUrl?: string;
|
|
2480
|
+
emptyLabel?: ReactNode;
|
|
2481
|
+
headerAction?: ReactNode;
|
|
2482
|
+
sx?: SxProps<Theme>;
|
|
2483
|
+
className?: string;
|
|
2484
|
+
}
|
|
2485
|
+
declare const CTreeComp: <TNode extends CTreeCompNode = CTreeCompNode>({ title, subtitle, nodes, columns, detail, selectedNodeId, defaultSelectedNodeId, onNodeSelect, expandedNodeIds, defaultExpandedNodeIds, onExpandedNodeIdsChange, defaultPaneMode, minTreePaneWidth, minDetailPaneWidth, tableAppId, tableKey, tableTitle, filterConfig, searchQuery, searchToken, defaultRowsPerPage, rowsPerPageOptions, serviceUrl, emptyLabel, headerAction, sx, className, }: CTreeCompProps<TNode>) => react_jsx_runtime.JSX.Element;
|
|
2486
|
+
|
|
2404
2487
|
interface MarkdownRendererProps {
|
|
2405
2488
|
markdown?: string;
|
|
2406
2489
|
content?: string;
|
|
@@ -2495,4 +2578,4 @@ declare const PAGE_TRANSITION_PRESETS: {
|
|
|
2495
2578
|
};
|
|
2496
2579
|
};
|
|
2497
2580
|
|
|
2498
|
-
export { AIBrowserGlow, type AIBrowserGlowColors, type AIBrowserGlowProps, 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, CAppHeaderSearch, type CAppHeaderSearchPlacement, type CAppHeaderSearchProps, 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, CPlanningLayout, type CPlanningLayoutProps, 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, CValueHelp, type CValueHelpColumn, type CValueHelpMode, type CValueHelpPrimitive, type CValueHelpProps, type CValueHelpRecord, type CValueHelpSelectionValue, 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, FloatingAgentPanel, type FloatingAgentPanelAnchor, type FloatingAgentPanelProps, 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 NavigationIslandDisplayMode, 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 UsePlanningLayoutOptions, type UsePlanningLayoutResult, 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, usePlanningLayout, useStandardReport, useVoiceInput, useVoiceNavigator };
|
|
2581
|
+
export { AIBrowserGlow, type AIBrowserGlowColors, type AIBrowserGlowProps, 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, CAppHeaderSearch, type CAppHeaderSearchPlacement, type CAppHeaderSearchProps, 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, CPlanningLayout, type CPlanningLayoutProps, 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, CTreeComp, type CTreeCompColumn, type CTreeCompNode, type CTreeCompPaneMode, type CTreeCompProps, CValueHelp, type CValueHelpColumn, type CValueHelpMode, type CValueHelpPrimitive, type CValueHelpProps, type CValueHelpRecord, type CValueHelpSelectionValue, 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, FloatingAgentPanel, type FloatingAgentPanelAnchor, type FloatingAgentPanelProps, 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 NavigationIslandDisplayMode, 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 UsePlanningLayoutOptions, type UsePlanningLayoutResult, 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, usePlanningLayout, useStandardReport, useVoiceInput, useVoiceNavigator };
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ interface TreeMenuItem {
|
|
|
16
16
|
appurl?: string;
|
|
17
17
|
children?: TreeMenuItem[];
|
|
18
18
|
isExpanded?: boolean;
|
|
19
|
+
pinnable?: boolean;
|
|
19
20
|
data?: any;
|
|
20
21
|
}
|
|
21
22
|
interface TreeMenuProps {
|
|
@@ -26,8 +27,11 @@ interface TreeMenuProps {
|
|
|
26
27
|
expandedIds?: Set<string>;
|
|
27
28
|
onToggleExpand?: (id: string) => void;
|
|
28
29
|
colorMode?: 'light' | 'dark';
|
|
30
|
+
enablePinning?: boolean;
|
|
31
|
+
pinnedIds?: Set<string>;
|
|
32
|
+
onTogglePin?: (item: TreeMenuItem) => void;
|
|
29
33
|
}
|
|
30
|
-
declare function TreeMenu({ items, onItemClick, className, level, expandedIds, onToggleExpand, colorMode, }: TreeMenuProps): react_jsx_runtime.JSX.Element;
|
|
34
|
+
declare function TreeMenu({ items, onItemClick, className, level, expandedIds, onToggleExpand, colorMode, enablePinning, pinnedIds, onTogglePin, }: TreeMenuProps): react_jsx_runtime.JSX.Element;
|
|
31
35
|
|
|
32
36
|
/**
|
|
33
37
|
* @file 10_Frontend/components/ui/molecules/navigation-island.tsx
|
|
@@ -62,6 +66,12 @@ interface NavigationIslandProps {
|
|
|
62
66
|
displayMode?: NavigationIslandDisplayMode;
|
|
63
67
|
onDisplayModeChange?: (mode: NavigationIslandDisplayMode) => void;
|
|
64
68
|
showDisplayModeToggle?: boolean;
|
|
69
|
+
enablePinning?: boolean;
|
|
70
|
+
pinStorageKey?: string;
|
|
71
|
+
pinnedItemIds?: string[];
|
|
72
|
+
defaultPinnedItemIds?: string[];
|
|
73
|
+
onPinnedItemIdsChange?: (ids: string[]) => void;
|
|
74
|
+
pinnedSectionTitle?: string;
|
|
65
75
|
}
|
|
66
76
|
declare const NavigationIsland: React__default.FC<NavigationIslandProps>;
|
|
67
77
|
|
|
@@ -79,6 +89,12 @@ interface UseNavigationIslandOptions {
|
|
|
79
89
|
initialCollapsed?: boolean;
|
|
80
90
|
initialDisplayMode?: NavigationIslandDisplayMode;
|
|
81
91
|
content?: TreeMenuItem[];
|
|
92
|
+
enablePinning?: boolean;
|
|
93
|
+
pinStorageKey?: string;
|
|
94
|
+
pinnedItemIds?: string[];
|
|
95
|
+
defaultPinnedItemIds?: string[];
|
|
96
|
+
onPinnedItemIdsChange?: (ids: string[]) => void;
|
|
97
|
+
pinnedSectionTitle?: string;
|
|
82
98
|
}
|
|
83
99
|
interface UseNavigationIslandResult {
|
|
84
100
|
collapsed: boolean;
|
|
@@ -89,7 +105,7 @@ interface UseNavigationIslandResult {
|
|
|
89
105
|
toggleDisplayMode: () => void;
|
|
90
106
|
menuData: TreeMenuItem[];
|
|
91
107
|
setMenuData: Dispatch<SetStateAction<TreeMenuItem[]>>;
|
|
92
|
-
navigationIslandProps: Pick<NavigationIslandProps, 'collapsed' | 'onToggle' | 'menuData' | 'displayMode' | 'onDisplayModeChange'>;
|
|
108
|
+
navigationIslandProps: Pick<NavigationIslandProps, 'collapsed' | 'onToggle' | 'menuData' | 'displayMode' | 'onDisplayModeChange' | 'enablePinning' | 'pinStorageKey' | 'pinnedItemIds' | 'defaultPinnedItemIds' | 'onPinnedItemIdsChange' | 'pinnedSectionTitle'>;
|
|
93
109
|
}
|
|
94
110
|
/**
|
|
95
111
|
* Hook for wiring NavigationIsland in a controlled and reusable way.
|
|
@@ -427,6 +443,8 @@ interface CTableProps {
|
|
|
427
443
|
quickEdit?: CTableQuickEditConfig;
|
|
428
444
|
quickDelete?: CTableQuickDeleteConfig;
|
|
429
445
|
serviceUrl?: string;
|
|
446
|
+
disableGrouping?: boolean;
|
|
447
|
+
disableSorting?: boolean;
|
|
430
448
|
}
|
|
431
449
|
interface CTableHeadProps {
|
|
432
450
|
columns: any[];
|
|
@@ -438,6 +456,7 @@ interface CTableHeadProps {
|
|
|
438
456
|
direction: 'asc' | 'desc';
|
|
439
457
|
}>;
|
|
440
458
|
onRequestSort: (property: string) => void;
|
|
459
|
+
disableSorting?: boolean;
|
|
441
460
|
onContextMenu?: (event: React.MouseEvent, columnId: string) => void;
|
|
442
461
|
selectionMode?: 'single' | 'multiple';
|
|
443
462
|
grouping?: string[];
|
|
@@ -1342,6 +1361,9 @@ declare const en: {
|
|
|
1342
1361
|
readonly 'navigation.expandView': "Expand {title}";
|
|
1343
1362
|
readonly 'navigation.mode.switchToFixed': "Switch to fixed navigation";
|
|
1344
1363
|
readonly 'navigation.mode.switchToFloating': "Switch to floating navigation";
|
|
1364
|
+
readonly 'navigation.pinned': "Pinned";
|
|
1365
|
+
readonly 'navigation.pin.add': "Pin to top";
|
|
1366
|
+
readonly 'navigation.pin.remove': "Unpin";
|
|
1345
1367
|
readonly 'table.toolbar.searchPlaceholder': "Search...";
|
|
1346
1368
|
readonly 'table.title.default': "Data Table";
|
|
1347
1369
|
readonly 'table.toolbar.groupBy': "Group By";
|
|
@@ -1630,9 +1652,15 @@ interface CAppPageLayoutProps {
|
|
|
1630
1652
|
defaultNavigationMode?: NavigationIslandDisplayMode;
|
|
1631
1653
|
onNavigationModeChange?: (mode: NavigationIslandDisplayMode) => void;
|
|
1632
1654
|
showNavigationModeToggle?: boolean;
|
|
1655
|
+
enableNavigationPinning?: boolean;
|
|
1656
|
+
navigationPinStorageKey?: string;
|
|
1657
|
+
pinnedNavigationItemIds?: string[];
|
|
1658
|
+
defaultPinnedNavigationItemIds?: string[];
|
|
1659
|
+
onPinnedNavigationItemIdsChange?: (ids: string[]) => void;
|
|
1660
|
+
pinnedNavigationSectionTitle?: string;
|
|
1633
1661
|
}
|
|
1634
1662
|
|
|
1635
|
-
declare const CAppPageLayout: ({ appTitle, menuData, children, showNavigation, locale, localeLabel, localeOptions, onLocaleChange, user, onUserSetting, onUserLogout, userMenuItems, logo, searchPlaceholder, searchPlacement, floatingSearchSx, onSearch, onSearchAdd, rightHeaderSlot, leftHeaderSlot, contentSx, navigationMode, defaultNavigationMode, onNavigationModeChange, showNavigationModeToggle, }: CAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1663
|
+
declare const CAppPageLayout: ({ appTitle, menuData, children, showNavigation, locale, localeLabel, localeOptions, onLocaleChange, user, onUserSetting, onUserLogout, userMenuItems, logo, searchPlaceholder, searchPlacement, floatingSearchSx, onSearch, onSearchAdd, rightHeaderSlot, leftHeaderSlot, contentSx, navigationMode, defaultNavigationMode, onNavigationModeChange, showNavigationModeToggle, enableNavigationPinning, navigationPinStorageKey, pinnedNavigationItemIds, defaultPinnedNavigationItemIds, onPinnedNavigationItemIdsChange, pinnedNavigationSectionTitle, }: CAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
1636
1664
|
|
|
1637
1665
|
interface CAppHeaderSearchProps {
|
|
1638
1666
|
searchPlaceholder?: string;
|
|
@@ -1648,9 +1676,15 @@ interface UsePageLayoutOptions {
|
|
|
1648
1676
|
menuData?: TreeMenuItem[];
|
|
1649
1677
|
initialNavigationCollapsed?: boolean;
|
|
1650
1678
|
initialNavigationMode?: NavigationIslandDisplayMode;
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1679
|
+
enableNavigationPinning?: boolean;
|
|
1680
|
+
navigationPinStorageKey?: string;
|
|
1681
|
+
pinnedNavigationItemIds?: string[];
|
|
1682
|
+
defaultPinnedNavigationItemIds?: string[];
|
|
1683
|
+
onPinnedNavigationItemIdsChange?: (ids: string[]) => void;
|
|
1684
|
+
pinnedNavigationSectionTitle?: string;
|
|
1685
|
+
}
|
|
1686
|
+
declare const usePageLayout: ({ menuData, initialNavigationCollapsed, initialNavigationMode, enableNavigationPinning, navigationPinStorageKey, pinnedNavigationItemIds, defaultPinnedNavigationItemIds, onPinnedNavigationItemIdsChange, pinnedNavigationSectionTitle, }?: UsePageLayoutOptions) => {
|
|
1687
|
+
navigationIslandProps: Pick<NavigationIslandProps, "enablePinning" | "collapsed" | "onToggle" | "menuData" | "displayMode" | "onDisplayModeChange" | "pinStorageKey" | "pinnedItemIds" | "defaultPinnedItemIds" | "onPinnedItemIdsChange" | "pinnedSectionTitle">;
|
|
1654
1688
|
navigationMaxHeight: number;
|
|
1655
1689
|
};
|
|
1656
1690
|
|
|
@@ -2401,6 +2435,55 @@ declare const usePlanningLayout: (options: UsePlanningLayoutOptions) => UsePlann
|
|
|
2401
2435
|
|
|
2402
2436
|
declare const CPlanningGantt: ({ appId, tableKey, serviceUrl, title, extraTools, bodyHeight, tasks, columns, scale, onScaleChange, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, enableRowReorder, onTaskReorder, layout, layoutVariant, layoutVariantLoadKey, onLayoutIdChange, onLayoutSave, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
|
|
2403
2437
|
|
|
2438
|
+
type CTreeCompPaneMode = 'tree' | 'split' | 'detail';
|
|
2439
|
+
interface CTreeCompNode {
|
|
2440
|
+
id: string;
|
|
2441
|
+
label: string;
|
|
2442
|
+
subtitle?: string;
|
|
2443
|
+
markerColor?: string;
|
|
2444
|
+
children?: CTreeCompNode[];
|
|
2445
|
+
[key: string]: unknown;
|
|
2446
|
+
}
|
|
2447
|
+
interface CTreeCompColumn<TNode extends CTreeCompNode = CTreeCompNode> {
|
|
2448
|
+
id: string;
|
|
2449
|
+
label: ReactNode;
|
|
2450
|
+
width?: number | string;
|
|
2451
|
+
minWidth?: number;
|
|
2452
|
+
align?: 'left' | 'center' | 'right';
|
|
2453
|
+
numeric?: boolean;
|
|
2454
|
+
render?: (node: TNode) => ReactNode;
|
|
2455
|
+
}
|
|
2456
|
+
interface CTreeCompProps<TNode extends CTreeCompNode = CTreeCompNode> {
|
|
2457
|
+
title: ReactNode;
|
|
2458
|
+
subtitle?: ReactNode;
|
|
2459
|
+
nodes: TNode[];
|
|
2460
|
+
columns?: CTreeCompColumn<TNode>[];
|
|
2461
|
+
detail?: ReactNode | ((node: TNode | null) => ReactNode);
|
|
2462
|
+
selectedNodeId?: string | null;
|
|
2463
|
+
defaultSelectedNodeId?: string;
|
|
2464
|
+
onNodeSelect?: (node: TNode) => void;
|
|
2465
|
+
expandedNodeIds?: string[];
|
|
2466
|
+
defaultExpandedNodeIds?: string[];
|
|
2467
|
+
onExpandedNodeIdsChange?: (nodeIds: string[]) => void;
|
|
2468
|
+
defaultPaneMode?: CTreeCompPaneMode;
|
|
2469
|
+
minTreePaneWidth?: number;
|
|
2470
|
+
minDetailPaneWidth?: number;
|
|
2471
|
+
tableAppId?: string;
|
|
2472
|
+
tableKey?: string;
|
|
2473
|
+
tableTitle?: string;
|
|
2474
|
+
filterConfig?: CSmartFilterProps;
|
|
2475
|
+
searchQuery?: string;
|
|
2476
|
+
searchToken?: string | number;
|
|
2477
|
+
defaultRowsPerPage?: number;
|
|
2478
|
+
rowsPerPageOptions?: number[];
|
|
2479
|
+
serviceUrl?: string;
|
|
2480
|
+
emptyLabel?: ReactNode;
|
|
2481
|
+
headerAction?: ReactNode;
|
|
2482
|
+
sx?: SxProps<Theme>;
|
|
2483
|
+
className?: string;
|
|
2484
|
+
}
|
|
2485
|
+
declare const CTreeComp: <TNode extends CTreeCompNode = CTreeCompNode>({ title, subtitle, nodes, columns, detail, selectedNodeId, defaultSelectedNodeId, onNodeSelect, expandedNodeIds, defaultExpandedNodeIds, onExpandedNodeIdsChange, defaultPaneMode, minTreePaneWidth, minDetailPaneWidth, tableAppId, tableKey, tableTitle, filterConfig, searchQuery, searchToken, defaultRowsPerPage, rowsPerPageOptions, serviceUrl, emptyLabel, headerAction, sx, className, }: CTreeCompProps<TNode>) => react_jsx_runtime.JSX.Element;
|
|
2486
|
+
|
|
2404
2487
|
interface MarkdownRendererProps {
|
|
2405
2488
|
markdown?: string;
|
|
2406
2489
|
content?: string;
|
|
@@ -2495,4 +2578,4 @@ declare const PAGE_TRANSITION_PRESETS: {
|
|
|
2495
2578
|
};
|
|
2496
2579
|
};
|
|
2497
2580
|
|
|
2498
|
-
export { AIBrowserGlow, type AIBrowserGlowColors, type AIBrowserGlowProps, 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, CAppHeaderSearch, type CAppHeaderSearchPlacement, type CAppHeaderSearchProps, 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, CPlanningLayout, type CPlanningLayoutProps, 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, CValueHelp, type CValueHelpColumn, type CValueHelpMode, type CValueHelpPrimitive, type CValueHelpProps, type CValueHelpRecord, type CValueHelpSelectionValue, 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, FloatingAgentPanel, type FloatingAgentPanelAnchor, type FloatingAgentPanelProps, 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 NavigationIslandDisplayMode, 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 UsePlanningLayoutOptions, type UsePlanningLayoutResult, 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, usePlanningLayout, useStandardReport, useVoiceInput, useVoiceNavigator };
|
|
2581
|
+
export { AIBrowserGlow, type AIBrowserGlowColors, type AIBrowserGlowProps, 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, CAppHeaderSearch, type CAppHeaderSearchPlacement, type CAppHeaderSearchProps, 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, CPlanningLayout, type CPlanningLayoutProps, 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, CTreeComp, type CTreeCompColumn, type CTreeCompNode, type CTreeCompPaneMode, type CTreeCompProps, CValueHelp, type CValueHelpColumn, type CValueHelpMode, type CValueHelpPrimitive, type CValueHelpProps, type CValueHelpRecord, type CValueHelpSelectionValue, 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, FloatingAgentPanel, type FloatingAgentPanelAnchor, type FloatingAgentPanelProps, 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 NavigationIslandDisplayMode, 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 UsePlanningLayoutOptions, type UsePlanningLayoutResult, 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, usePlanningLayout, useStandardReport, useVoiceInput, useVoiceNavigator };
|