orbcafe-ui 1.4.1 → 1.4.3
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 +64 -8
- package/dist/index.d.ts +64 -8
- package/dist/index.js +15 -15
- package/dist/index.mjs +14 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -204,6 +204,9 @@ interface CValueHelpProps<TRecord extends CValueHelpRecord = CValueHelpRecord> e
|
|
|
204
204
|
noResultsText?: string;
|
|
205
205
|
loading?: boolean;
|
|
206
206
|
clearable?: boolean;
|
|
207
|
+
allowManualInput?: boolean;
|
|
208
|
+
validateManualInput?: boolean;
|
|
209
|
+
manualInputErrorText?: string;
|
|
207
210
|
selectedItems?: TRecord[];
|
|
208
211
|
displayValue?: string;
|
|
209
212
|
getOptionValue?: (item: TRecord) => CValueHelpPrimitive;
|
|
@@ -212,7 +215,7 @@ interface CValueHelpProps<TRecord extends CValueHelpRecord = CValueHelpRecord> e
|
|
|
212
215
|
onChange?: (value: CValueHelpSelectionValue, selection: TRecord | TRecord[] | null) => void;
|
|
213
216
|
onSearch?: (query: string) => Promise<TRecord[] | void> | TRecord[] | void;
|
|
214
217
|
}
|
|
215
|
-
declare const CValueHelp: <TRecord extends CValueHelpRecord = CValueHelpRecord>({ value, items, columns, mode, dialogTitle, searchPlaceholder, selectLabel, clearLabel, cancelLabel, valueHelpLabel, noResultsText, loading, clearable, selectedItems, displayValue, getOptionValue, getOptionLabel, getOptionDescription, onChange, onSearch, disabled, InputProps, onKeyDown, ...textFieldProps }: CValueHelpProps<TRecord>) => react_jsx_runtime.JSX.Element;
|
|
218
|
+
declare const CValueHelp: <TRecord extends CValueHelpRecord = CValueHelpRecord>({ value, items, columns, mode, dialogTitle, searchPlaceholder, selectLabel, clearLabel, cancelLabel, valueHelpLabel, noResultsText, loading, clearable, allowManualInput, validateManualInput, manualInputErrorText, selectedItems, displayValue, getOptionValue, getOptionLabel, getOptionDescription, onChange, onSearch, disabled, InputProps, onFocus, onBlur, onKeyDown, error, helperText, ...textFieldProps }: CValueHelpProps<TRecord>) => react_jsx_runtime.JSX.Element;
|
|
216
219
|
|
|
217
220
|
interface CustomizeAgentSettings {
|
|
218
221
|
baseUrl: string;
|
|
@@ -1578,6 +1581,7 @@ interface CAppHeaderUserMenuItem {
|
|
|
1578
1581
|
onClick?: () => void;
|
|
1579
1582
|
disabled?: boolean;
|
|
1580
1583
|
}
|
|
1584
|
+
type CAppHeaderSearchPlacement = 'header' | 'floating' | 'hidden';
|
|
1581
1585
|
interface CAppHeaderProps {
|
|
1582
1586
|
appTitle: string;
|
|
1583
1587
|
logo?: ReactNode;
|
|
@@ -1588,6 +1592,8 @@ interface CAppHeaderProps {
|
|
|
1588
1592
|
localeOptions?: OrbcafeLocale[];
|
|
1589
1593
|
onLocaleChange?: (locale: OrbcafeLocale) => void;
|
|
1590
1594
|
searchPlaceholder?: string;
|
|
1595
|
+
/** Header AI input is opt-in. Defaults to false. */
|
|
1596
|
+
showSearch?: boolean;
|
|
1591
1597
|
onSearch?: (query: string) => void;
|
|
1592
1598
|
onSearchAdd?: () => void;
|
|
1593
1599
|
user?: CAppHeaderUser;
|
|
@@ -1611,6 +1617,10 @@ interface CAppPageLayoutProps {
|
|
|
1611
1617
|
onUserLogout?: () => void;
|
|
1612
1618
|
userMenuItems?: CAppHeaderUserMenuItem[];
|
|
1613
1619
|
logo?: ReactNode;
|
|
1620
|
+
searchPlaceholder?: string;
|
|
1621
|
+
/** Defaults to hidden so standard layouts do not show the header AI input unless explicitly requested. */
|
|
1622
|
+
searchPlacement?: CAppHeaderSearchPlacement;
|
|
1623
|
+
floatingSearchSx?: SxProps<Theme>;
|
|
1614
1624
|
onSearch?: (query: string) => void;
|
|
1615
1625
|
onSearchAdd?: () => void;
|
|
1616
1626
|
rightHeaderSlot?: ReactNode;
|
|
@@ -1622,9 +1632,17 @@ interface CAppPageLayoutProps {
|
|
|
1622
1632
|
showNavigationModeToggle?: boolean;
|
|
1623
1633
|
}
|
|
1624
1634
|
|
|
1625
|
-
declare const CAppPageLayout: ({ appTitle, menuData, children, showNavigation, locale, localeLabel, localeOptions, onLocaleChange, user, onUserSetting, onUserLogout, userMenuItems, logo, onSearch, onSearchAdd, rightHeaderSlot, leftHeaderSlot, contentSx, navigationMode, defaultNavigationMode, onNavigationModeChange, showNavigationModeToggle, }: CAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
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;
|
|
1626
1636
|
|
|
1627
|
-
|
|
1637
|
+
interface CAppHeaderSearchProps {
|
|
1638
|
+
searchPlaceholder?: string;
|
|
1639
|
+
onSearch?: (query: string) => void;
|
|
1640
|
+
onSearchAdd?: () => void;
|
|
1641
|
+
maxWidth?: number | string;
|
|
1642
|
+
sx?: SxProps<Theme>;
|
|
1643
|
+
}
|
|
1644
|
+
declare const CAppHeaderSearch: ({ searchPlaceholder, onSearch, onSearchAdd, maxWidth, sx, }: CAppHeaderSearchProps) => react_jsx_runtime.JSX.Element;
|
|
1645
|
+
declare const CAppHeader: ({ appTitle, logo, mode, onToggleMode, locale: localeProp, localeLabel, localeOptions, onLocaleChange, searchPlaceholder, showSearch, onSearch, onSearchAdd, user, onUserSetting, onUserLogout, userMenuItems, leftSlot, rightSlot, }: CAppHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
1628
1646
|
|
|
1629
1647
|
interface UsePageLayoutOptions {
|
|
1630
1648
|
menuData?: TreeMenuItem[];
|
|
@@ -2100,6 +2118,7 @@ interface AgentUICardHooks {
|
|
|
2100
2118
|
|
|
2101
2119
|
interface AssistantActionContext {
|
|
2102
2120
|
isLatestAssistant: boolean;
|
|
2121
|
+
isResponding?: boolean;
|
|
2103
2122
|
onRegenerate?: () => Promise<void>;
|
|
2104
2123
|
}
|
|
2105
2124
|
interface ChatMessageProps {
|
|
@@ -2141,9 +2160,25 @@ interface AgentPanelProps extends StdChatProps {
|
|
|
2141
2160
|
description?: string;
|
|
2142
2161
|
headerActions?: React__default.ReactNode;
|
|
2143
2162
|
agentStatus?: AgentPanelStatus;
|
|
2163
|
+
onHeaderPointerDown?: React__default.PointerEventHandler<HTMLDivElement>;
|
|
2144
2164
|
}
|
|
2145
2165
|
declare const AgentPanel: React__default.FC<AgentPanelProps>;
|
|
2146
2166
|
|
|
2167
|
+
type FloatingAgentPanelAnchor = 'left' | 'center' | 'right';
|
|
2168
|
+
interface FloatingAgentPanelProps extends AgentPanelProps {
|
|
2169
|
+
anchor?: FloatingAgentPanelAnchor;
|
|
2170
|
+
defaultAnchor?: FloatingAgentPanelAnchor;
|
|
2171
|
+
onAnchorChange?: (anchor: FloatingAgentPanelAnchor) => void;
|
|
2172
|
+
width?: number | string;
|
|
2173
|
+
top?: number | string;
|
|
2174
|
+
bottom?: number | string;
|
|
2175
|
+
inset?: number;
|
|
2176
|
+
zIndex?: number;
|
|
2177
|
+
shellClassName?: string;
|
|
2178
|
+
shellStyle?: React__default.CSSProperties;
|
|
2179
|
+
}
|
|
2180
|
+
declare const FloatingAgentPanel: React__default.FC<FloatingAgentPanelProps>;
|
|
2181
|
+
|
|
2147
2182
|
type CopilotCorner = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
2148
2183
|
interface CopilotChatProps {
|
|
2149
2184
|
messages: ChatMessage[];
|
|
@@ -2266,6 +2301,9 @@ interface PlanningGanttSummaryItem {
|
|
|
2266
2301
|
tone?: 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
2267
2302
|
}
|
|
2268
2303
|
interface CPlanningGanttProps {
|
|
2304
|
+
appId?: string;
|
|
2305
|
+
tableKey?: string;
|
|
2306
|
+
serviceUrl?: string;
|
|
2269
2307
|
title?: string;
|
|
2270
2308
|
subtitle?: string;
|
|
2271
2309
|
extraTools?: ReactNode | ReactNode[];
|
|
@@ -2289,6 +2327,11 @@ interface CPlanningGanttProps {
|
|
|
2289
2327
|
activeTask: PlanningTaskRecord;
|
|
2290
2328
|
targetTask: PlanningTaskRecord;
|
|
2291
2329
|
}) => void;
|
|
2330
|
+
layout?: any;
|
|
2331
|
+
layoutVariant?: any;
|
|
2332
|
+
layoutVariantLoadKey?: number;
|
|
2333
|
+
onLayoutIdChange?: (layoutId: string) => void;
|
|
2334
|
+
onLayoutSave?: (layout: any) => void;
|
|
2292
2335
|
summaryItems?: PlanningGanttSummaryItem[];
|
|
2293
2336
|
emptyLabel?: string;
|
|
2294
2337
|
sx?: SxProps<Theme>;
|
|
@@ -2296,12 +2339,23 @@ interface CPlanningGanttProps {
|
|
|
2296
2339
|
|
|
2297
2340
|
interface UsePlanningGanttOptions {
|
|
2298
2341
|
tasks: PlanningTaskRecord[];
|
|
2342
|
+
appId?: string;
|
|
2343
|
+
tableKey?: string;
|
|
2299
2344
|
defaultScale?: PlanningGanttScale;
|
|
2300
2345
|
defaultSelectedTaskId?: string;
|
|
2301
2346
|
initialFilters?: Record<string, FilterValue>;
|
|
2302
2347
|
filterFields?: FilterField[];
|
|
2348
|
+
/**
|
|
2349
|
+
* @deprecated Use appId so SmartFilter variants and table layouts share one persistence namespace.
|
|
2350
|
+
*/
|
|
2303
2351
|
filterAppId?: string;
|
|
2352
|
+
/**
|
|
2353
|
+
* @deprecated Use tableKey so SmartFilter variants and table layouts share one persistence scope.
|
|
2354
|
+
*/
|
|
2304
2355
|
filterTableKey?: string;
|
|
2356
|
+
serviceUrl?: CSmartFilterProps['serviceUrl'];
|
|
2357
|
+
variantService?: CSmartFilterProps['variantService'];
|
|
2358
|
+
layout?: CPlanningGanttProps['layout'];
|
|
2305
2359
|
columns?: CPlanningGanttProps['columns'];
|
|
2306
2360
|
page?: CPlanningGanttProps['page'];
|
|
2307
2361
|
rowsPerPage?: CPlanningGanttProps['rowsPerPage'];
|
|
@@ -2313,6 +2367,8 @@ interface UsePlanningGanttOptions {
|
|
|
2313
2367
|
onFilterVariantLoad?: CSmartFilterProps['onVariantLoad'];
|
|
2314
2368
|
enableRowReorder?: CPlanningGanttProps['enableRowReorder'];
|
|
2315
2369
|
onTaskReorder?: CPlanningGanttProps['onTaskReorder'];
|
|
2370
|
+
onLayoutIdChange?: CPlanningGanttProps['onLayoutIdChange'];
|
|
2371
|
+
onLayoutSave?: CPlanningGanttProps['onLayoutSave'];
|
|
2316
2372
|
}
|
|
2317
2373
|
interface UsePlanningGanttResult {
|
|
2318
2374
|
scale: PlanningGanttScale;
|
|
@@ -2322,10 +2378,10 @@ interface UsePlanningGanttResult {
|
|
|
2322
2378
|
filters: Record<string, FilterValue>;
|
|
2323
2379
|
setFilters: (filters: Record<string, FilterValue>) => void;
|
|
2324
2380
|
filteredTasks: PlanningTaskRecord[];
|
|
2325
|
-
smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey'>;
|
|
2326
|
-
planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'page' | 'rowsPerPage' | 'rowsPerPageOptions' | 'count' | 'onPageChange' | 'onRowsPerPageChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder'>;
|
|
2381
|
+
smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey' | 'currentLayoutId' | 'layoutRefs' | 'variantService' | 'serviceUrl'>;
|
|
2382
|
+
planningGanttProps: Pick<CPlanningGanttProps, 'appId' | 'tableKey' | 'serviceUrl' | 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'page' | 'rowsPerPage' | 'rowsPerPageOptions' | 'count' | 'onPageChange' | 'onRowsPerPageChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder' | 'layout' | 'layoutVariant' | 'layoutVariantLoadKey' | 'onLayoutIdChange' | 'onLayoutSave'>;
|
|
2327
2383
|
}
|
|
2328
|
-
declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, columns, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2384
|
+
declare const usePlanningGantt: ({ tasks, appId, tableKey, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, serviceUrl, variantService, layout, columns, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, onLayoutIdChange, onLayoutSave, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2329
2385
|
|
|
2330
2386
|
interface CPlanningLayoutProps {
|
|
2331
2387
|
filterProps: CSmartFilterProps;
|
|
@@ -2343,7 +2399,7 @@ interface UsePlanningLayoutResult extends UsePlanningGanttResult {
|
|
|
2343
2399
|
}
|
|
2344
2400
|
declare const usePlanningLayout: (options: UsePlanningLayoutOptions) => UsePlanningLayoutResult;
|
|
2345
2401
|
|
|
2346
|
-
declare const CPlanningGantt: ({ title, extraTools, bodyHeight, tasks, columns, scale, onScaleChange, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, enableRowReorder, onTaskReorder, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
|
|
2402
|
+
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;
|
|
2347
2403
|
|
|
2348
2404
|
interface MarkdownRendererProps {
|
|
2349
2405
|
markdown?: string;
|
|
@@ -2439,4 +2495,4 @@ declare const PAGE_TRANSITION_PRESETS: {
|
|
|
2439
2495
|
};
|
|
2440
2496
|
};
|
|
2441
2497
|
|
|
2442
|
-
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, 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, 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 };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -204,6 +204,9 @@ interface CValueHelpProps<TRecord extends CValueHelpRecord = CValueHelpRecord> e
|
|
|
204
204
|
noResultsText?: string;
|
|
205
205
|
loading?: boolean;
|
|
206
206
|
clearable?: boolean;
|
|
207
|
+
allowManualInput?: boolean;
|
|
208
|
+
validateManualInput?: boolean;
|
|
209
|
+
manualInputErrorText?: string;
|
|
207
210
|
selectedItems?: TRecord[];
|
|
208
211
|
displayValue?: string;
|
|
209
212
|
getOptionValue?: (item: TRecord) => CValueHelpPrimitive;
|
|
@@ -212,7 +215,7 @@ interface CValueHelpProps<TRecord extends CValueHelpRecord = CValueHelpRecord> e
|
|
|
212
215
|
onChange?: (value: CValueHelpSelectionValue, selection: TRecord | TRecord[] | null) => void;
|
|
213
216
|
onSearch?: (query: string) => Promise<TRecord[] | void> | TRecord[] | void;
|
|
214
217
|
}
|
|
215
|
-
declare const CValueHelp: <TRecord extends CValueHelpRecord = CValueHelpRecord>({ value, items, columns, mode, dialogTitle, searchPlaceholder, selectLabel, clearLabel, cancelLabel, valueHelpLabel, noResultsText, loading, clearable, selectedItems, displayValue, getOptionValue, getOptionLabel, getOptionDescription, onChange, onSearch, disabled, InputProps, onKeyDown, ...textFieldProps }: CValueHelpProps<TRecord>) => react_jsx_runtime.JSX.Element;
|
|
218
|
+
declare const CValueHelp: <TRecord extends CValueHelpRecord = CValueHelpRecord>({ value, items, columns, mode, dialogTitle, searchPlaceholder, selectLabel, clearLabel, cancelLabel, valueHelpLabel, noResultsText, loading, clearable, allowManualInput, validateManualInput, manualInputErrorText, selectedItems, displayValue, getOptionValue, getOptionLabel, getOptionDescription, onChange, onSearch, disabled, InputProps, onFocus, onBlur, onKeyDown, error, helperText, ...textFieldProps }: CValueHelpProps<TRecord>) => react_jsx_runtime.JSX.Element;
|
|
216
219
|
|
|
217
220
|
interface CustomizeAgentSettings {
|
|
218
221
|
baseUrl: string;
|
|
@@ -1578,6 +1581,7 @@ interface CAppHeaderUserMenuItem {
|
|
|
1578
1581
|
onClick?: () => void;
|
|
1579
1582
|
disabled?: boolean;
|
|
1580
1583
|
}
|
|
1584
|
+
type CAppHeaderSearchPlacement = 'header' | 'floating' | 'hidden';
|
|
1581
1585
|
interface CAppHeaderProps {
|
|
1582
1586
|
appTitle: string;
|
|
1583
1587
|
logo?: ReactNode;
|
|
@@ -1588,6 +1592,8 @@ interface CAppHeaderProps {
|
|
|
1588
1592
|
localeOptions?: OrbcafeLocale[];
|
|
1589
1593
|
onLocaleChange?: (locale: OrbcafeLocale) => void;
|
|
1590
1594
|
searchPlaceholder?: string;
|
|
1595
|
+
/** Header AI input is opt-in. Defaults to false. */
|
|
1596
|
+
showSearch?: boolean;
|
|
1591
1597
|
onSearch?: (query: string) => void;
|
|
1592
1598
|
onSearchAdd?: () => void;
|
|
1593
1599
|
user?: CAppHeaderUser;
|
|
@@ -1611,6 +1617,10 @@ interface CAppPageLayoutProps {
|
|
|
1611
1617
|
onUserLogout?: () => void;
|
|
1612
1618
|
userMenuItems?: CAppHeaderUserMenuItem[];
|
|
1613
1619
|
logo?: ReactNode;
|
|
1620
|
+
searchPlaceholder?: string;
|
|
1621
|
+
/** Defaults to hidden so standard layouts do not show the header AI input unless explicitly requested. */
|
|
1622
|
+
searchPlacement?: CAppHeaderSearchPlacement;
|
|
1623
|
+
floatingSearchSx?: SxProps<Theme>;
|
|
1614
1624
|
onSearch?: (query: string) => void;
|
|
1615
1625
|
onSearchAdd?: () => void;
|
|
1616
1626
|
rightHeaderSlot?: ReactNode;
|
|
@@ -1622,9 +1632,17 @@ interface CAppPageLayoutProps {
|
|
|
1622
1632
|
showNavigationModeToggle?: boolean;
|
|
1623
1633
|
}
|
|
1624
1634
|
|
|
1625
|
-
declare const CAppPageLayout: ({ appTitle, menuData, children, showNavigation, locale, localeLabel, localeOptions, onLocaleChange, user, onUserSetting, onUserLogout, userMenuItems, logo, onSearch, onSearchAdd, rightHeaderSlot, leftHeaderSlot, contentSx, navigationMode, defaultNavigationMode, onNavigationModeChange, showNavigationModeToggle, }: CAppPageLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
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;
|
|
1626
1636
|
|
|
1627
|
-
|
|
1637
|
+
interface CAppHeaderSearchProps {
|
|
1638
|
+
searchPlaceholder?: string;
|
|
1639
|
+
onSearch?: (query: string) => void;
|
|
1640
|
+
onSearchAdd?: () => void;
|
|
1641
|
+
maxWidth?: number | string;
|
|
1642
|
+
sx?: SxProps<Theme>;
|
|
1643
|
+
}
|
|
1644
|
+
declare const CAppHeaderSearch: ({ searchPlaceholder, onSearch, onSearchAdd, maxWidth, sx, }: CAppHeaderSearchProps) => react_jsx_runtime.JSX.Element;
|
|
1645
|
+
declare const CAppHeader: ({ appTitle, logo, mode, onToggleMode, locale: localeProp, localeLabel, localeOptions, onLocaleChange, searchPlaceholder, showSearch, onSearch, onSearchAdd, user, onUserSetting, onUserLogout, userMenuItems, leftSlot, rightSlot, }: CAppHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
1628
1646
|
|
|
1629
1647
|
interface UsePageLayoutOptions {
|
|
1630
1648
|
menuData?: TreeMenuItem[];
|
|
@@ -2100,6 +2118,7 @@ interface AgentUICardHooks {
|
|
|
2100
2118
|
|
|
2101
2119
|
interface AssistantActionContext {
|
|
2102
2120
|
isLatestAssistant: boolean;
|
|
2121
|
+
isResponding?: boolean;
|
|
2103
2122
|
onRegenerate?: () => Promise<void>;
|
|
2104
2123
|
}
|
|
2105
2124
|
interface ChatMessageProps {
|
|
@@ -2141,9 +2160,25 @@ interface AgentPanelProps extends StdChatProps {
|
|
|
2141
2160
|
description?: string;
|
|
2142
2161
|
headerActions?: React__default.ReactNode;
|
|
2143
2162
|
agentStatus?: AgentPanelStatus;
|
|
2163
|
+
onHeaderPointerDown?: React__default.PointerEventHandler<HTMLDivElement>;
|
|
2144
2164
|
}
|
|
2145
2165
|
declare const AgentPanel: React__default.FC<AgentPanelProps>;
|
|
2146
2166
|
|
|
2167
|
+
type FloatingAgentPanelAnchor = 'left' | 'center' | 'right';
|
|
2168
|
+
interface FloatingAgentPanelProps extends AgentPanelProps {
|
|
2169
|
+
anchor?: FloatingAgentPanelAnchor;
|
|
2170
|
+
defaultAnchor?: FloatingAgentPanelAnchor;
|
|
2171
|
+
onAnchorChange?: (anchor: FloatingAgentPanelAnchor) => void;
|
|
2172
|
+
width?: number | string;
|
|
2173
|
+
top?: number | string;
|
|
2174
|
+
bottom?: number | string;
|
|
2175
|
+
inset?: number;
|
|
2176
|
+
zIndex?: number;
|
|
2177
|
+
shellClassName?: string;
|
|
2178
|
+
shellStyle?: React__default.CSSProperties;
|
|
2179
|
+
}
|
|
2180
|
+
declare const FloatingAgentPanel: React__default.FC<FloatingAgentPanelProps>;
|
|
2181
|
+
|
|
2147
2182
|
type CopilotCorner = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
|
|
2148
2183
|
interface CopilotChatProps {
|
|
2149
2184
|
messages: ChatMessage[];
|
|
@@ -2266,6 +2301,9 @@ interface PlanningGanttSummaryItem {
|
|
|
2266
2301
|
tone?: 'default' | 'success' | 'warning' | 'error' | 'info';
|
|
2267
2302
|
}
|
|
2268
2303
|
interface CPlanningGanttProps {
|
|
2304
|
+
appId?: string;
|
|
2305
|
+
tableKey?: string;
|
|
2306
|
+
serviceUrl?: string;
|
|
2269
2307
|
title?: string;
|
|
2270
2308
|
subtitle?: string;
|
|
2271
2309
|
extraTools?: ReactNode | ReactNode[];
|
|
@@ -2289,6 +2327,11 @@ interface CPlanningGanttProps {
|
|
|
2289
2327
|
activeTask: PlanningTaskRecord;
|
|
2290
2328
|
targetTask: PlanningTaskRecord;
|
|
2291
2329
|
}) => void;
|
|
2330
|
+
layout?: any;
|
|
2331
|
+
layoutVariant?: any;
|
|
2332
|
+
layoutVariantLoadKey?: number;
|
|
2333
|
+
onLayoutIdChange?: (layoutId: string) => void;
|
|
2334
|
+
onLayoutSave?: (layout: any) => void;
|
|
2292
2335
|
summaryItems?: PlanningGanttSummaryItem[];
|
|
2293
2336
|
emptyLabel?: string;
|
|
2294
2337
|
sx?: SxProps<Theme>;
|
|
@@ -2296,12 +2339,23 @@ interface CPlanningGanttProps {
|
|
|
2296
2339
|
|
|
2297
2340
|
interface UsePlanningGanttOptions {
|
|
2298
2341
|
tasks: PlanningTaskRecord[];
|
|
2342
|
+
appId?: string;
|
|
2343
|
+
tableKey?: string;
|
|
2299
2344
|
defaultScale?: PlanningGanttScale;
|
|
2300
2345
|
defaultSelectedTaskId?: string;
|
|
2301
2346
|
initialFilters?: Record<string, FilterValue>;
|
|
2302
2347
|
filterFields?: FilterField[];
|
|
2348
|
+
/**
|
|
2349
|
+
* @deprecated Use appId so SmartFilter variants and table layouts share one persistence namespace.
|
|
2350
|
+
*/
|
|
2303
2351
|
filterAppId?: string;
|
|
2352
|
+
/**
|
|
2353
|
+
* @deprecated Use tableKey so SmartFilter variants and table layouts share one persistence scope.
|
|
2354
|
+
*/
|
|
2304
2355
|
filterTableKey?: string;
|
|
2356
|
+
serviceUrl?: CSmartFilterProps['serviceUrl'];
|
|
2357
|
+
variantService?: CSmartFilterProps['variantService'];
|
|
2358
|
+
layout?: CPlanningGanttProps['layout'];
|
|
2305
2359
|
columns?: CPlanningGanttProps['columns'];
|
|
2306
2360
|
page?: CPlanningGanttProps['page'];
|
|
2307
2361
|
rowsPerPage?: CPlanningGanttProps['rowsPerPage'];
|
|
@@ -2313,6 +2367,8 @@ interface UsePlanningGanttOptions {
|
|
|
2313
2367
|
onFilterVariantLoad?: CSmartFilterProps['onVariantLoad'];
|
|
2314
2368
|
enableRowReorder?: CPlanningGanttProps['enableRowReorder'];
|
|
2315
2369
|
onTaskReorder?: CPlanningGanttProps['onTaskReorder'];
|
|
2370
|
+
onLayoutIdChange?: CPlanningGanttProps['onLayoutIdChange'];
|
|
2371
|
+
onLayoutSave?: CPlanningGanttProps['onLayoutSave'];
|
|
2316
2372
|
}
|
|
2317
2373
|
interface UsePlanningGanttResult {
|
|
2318
2374
|
scale: PlanningGanttScale;
|
|
@@ -2322,10 +2378,10 @@ interface UsePlanningGanttResult {
|
|
|
2322
2378
|
filters: Record<string, FilterValue>;
|
|
2323
2379
|
setFilters: (filters: Record<string, FilterValue>) => void;
|
|
2324
2380
|
filteredTasks: PlanningTaskRecord[];
|
|
2325
|
-
smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey'>;
|
|
2326
|
-
planningGanttProps: Pick<CPlanningGanttProps, 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'page' | 'rowsPerPage' | 'rowsPerPageOptions' | 'count' | 'onPageChange' | 'onRowsPerPageChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder'>;
|
|
2381
|
+
smartFilterProps: Pick<CSmartFilterProps, 'fields' | 'filters' | 'onFilterChange' | 'onVariantLoad' | 'onSearch' | 'appId' | 'tableKey' | 'currentLayoutId' | 'layoutRefs' | 'variantService' | 'serviceUrl'>;
|
|
2382
|
+
planningGanttProps: Pick<CPlanningGanttProps, 'appId' | 'tableKey' | 'serviceUrl' | 'tasks' | 'columns' | 'scale' | 'onScaleChange' | 'page' | 'rowsPerPage' | 'rowsPerPageOptions' | 'count' | 'onPageChange' | 'onRowsPerPageChange' | 'selectedTaskId' | 'onTaskSelect' | 'enableRowReorder' | 'onTaskReorder' | 'layout' | 'layoutVariant' | 'layoutVariantLoadKey' | 'onLayoutIdChange' | 'onLayoutSave'>;
|
|
2327
2383
|
}
|
|
2328
|
-
declare const usePlanningGantt: ({ tasks, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, columns, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2384
|
+
declare const usePlanningGantt: ({ tasks, appId, tableKey, defaultScale, defaultSelectedTaskId, initialFilters, filterFields, filterAppId, filterTableKey, serviceUrl, variantService, layout, columns, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, onFilterSearch, onFilterVariantLoad, enableRowReorder, onTaskReorder, onLayoutIdChange, onLayoutSave, }: UsePlanningGanttOptions) => UsePlanningGanttResult;
|
|
2329
2385
|
|
|
2330
2386
|
interface CPlanningLayoutProps {
|
|
2331
2387
|
filterProps: CSmartFilterProps;
|
|
@@ -2343,7 +2399,7 @@ interface UsePlanningLayoutResult extends UsePlanningGanttResult {
|
|
|
2343
2399
|
}
|
|
2344
2400
|
declare const usePlanningLayout: (options: UsePlanningLayoutOptions) => UsePlanningLayoutResult;
|
|
2345
2401
|
|
|
2346
|
-
declare const CPlanningGantt: ({ title, extraTools, bodyHeight, tasks, columns, scale, onScaleChange, page, rowsPerPage, rowsPerPageOptions, count, onPageChange, onRowsPerPageChange, timelineStart, timelineEnd, selectedTaskId, onTaskSelect, enableRowReorder, onTaskReorder, emptyLabel, sx, }: CPlanningGanttProps) => react_jsx_runtime.JSX.Element;
|
|
2402
|
+
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;
|
|
2347
2403
|
|
|
2348
2404
|
interface MarkdownRendererProps {
|
|
2349
2405
|
markdown?: string;
|
|
@@ -2439,4 +2495,4 @@ declare const PAGE_TRANSITION_PRESETS: {
|
|
|
2439
2495
|
};
|
|
2440
2496
|
};
|
|
2441
2497
|
|
|
2442
|
-
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, 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, 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 };
|
|
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 };
|