orbcafe-ui 1.0.9 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +38 -3
- package/dist/index.d.ts +38 -3
- package/dist/index.js +11 -11
- package/dist/index.mjs +11 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -88,6 +88,39 @@ interface UseNavigationIslandResult {
|
|
|
88
88
|
*/
|
|
89
89
|
declare const useNavigationIsland: (options?: UseNavigationIslandOptions) => UseNavigationIslandResult;
|
|
90
90
|
|
|
91
|
+
type CMessageBoxType = 'success' | 'warning' | 'error' | 'info' | 'default';
|
|
92
|
+
type MessageContent = string | ReactNode;
|
|
93
|
+
interface MessageOptions {
|
|
94
|
+
title?: string;
|
|
95
|
+
onClose?: () => void;
|
|
96
|
+
onConfirm?: () => void;
|
|
97
|
+
confirmText?: string;
|
|
98
|
+
cancelText?: string;
|
|
99
|
+
showCancel?: boolean;
|
|
100
|
+
maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
101
|
+
}
|
|
102
|
+
interface MessageEvent {
|
|
103
|
+
type: CMessageBoxType;
|
|
104
|
+
content: MessageContent;
|
|
105
|
+
options?: MessageOptions;
|
|
106
|
+
}
|
|
107
|
+
declare class MessageManager {
|
|
108
|
+
private listener;
|
|
109
|
+
register(listener: (event: MessageEvent | null) => void): void;
|
|
110
|
+
unregister(): void;
|
|
111
|
+
show(type: CMessageBoxType, content: MessageContent, options?: MessageOptions): void;
|
|
112
|
+
hide(): void;
|
|
113
|
+
}
|
|
114
|
+
declare const messageManager: MessageManager;
|
|
115
|
+
declare const message: {
|
|
116
|
+
success: (content: MessageContent, options?: MessageOptions) => void;
|
|
117
|
+
error: (content: MessageContent, options?: MessageOptions) => void;
|
|
118
|
+
warning: (content: MessageContent, options?: MessageOptions) => void;
|
|
119
|
+
info: (content: MessageContent, options?: MessageOptions) => void;
|
|
120
|
+
show: (type: CMessageBoxType, content: MessageContent, options?: MessageOptions) => void;
|
|
121
|
+
hide: () => void;
|
|
122
|
+
};
|
|
123
|
+
|
|
91
124
|
/**
|
|
92
125
|
* @file 10_Frontend/components/sap/ui/Common/Molecules/CMessageBox.tsx
|
|
93
126
|
*
|
|
@@ -120,7 +153,6 @@ declare const useNavigationIsland: (options?: UseNavigationIslandOptions) => Use
|
|
|
120
153
|
* --------------------------
|
|
121
154
|
*/
|
|
122
155
|
|
|
123
|
-
type CMessageBoxType = 'success' | 'warning' | 'error' | 'info' | 'default';
|
|
124
156
|
interface CMessageBoxProps {
|
|
125
157
|
open: boolean;
|
|
126
158
|
title?: string;
|
|
@@ -134,6 +166,7 @@ interface CMessageBoxProps {
|
|
|
134
166
|
type?: CMessageBoxType;
|
|
135
167
|
}
|
|
136
168
|
declare const CMessageBox: React__default.FC<CMessageBoxProps>;
|
|
169
|
+
declare const GlobalMessage: React__default.FC;
|
|
137
170
|
|
|
138
171
|
interface CustomizeAgentSettings {
|
|
139
172
|
baseUrl: string;
|
|
@@ -344,6 +377,7 @@ interface CTableProps {
|
|
|
344
377
|
quickCreate?: CTableQuickCreateConfig;
|
|
345
378
|
quickEdit?: CTableQuickEditConfig;
|
|
346
379
|
quickDelete?: CTableQuickDeleteConfig;
|
|
380
|
+
serviceUrl?: string;
|
|
347
381
|
}
|
|
348
382
|
interface CTableHeadProps {
|
|
349
383
|
columns: any[];
|
|
@@ -517,13 +551,14 @@ interface CSmartFilterProps {
|
|
|
517
551
|
layoutId: string | null;
|
|
518
552
|
}>;
|
|
519
553
|
variantService?: IVariantService;
|
|
554
|
+
serviceUrl?: string;
|
|
520
555
|
}
|
|
521
556
|
/**
|
|
522
557
|
* CSmartFilter Component
|
|
523
558
|
*
|
|
524
559
|
* Renders a filter bar with "Go" button, variant management, and "Adapt Filters" capability.
|
|
525
560
|
*/
|
|
526
|
-
declare const CSmartFilter: ({ fields, filters, onFilterChange, variants, currentVariantId, onVariantLoad, onVariantSave, onVariantDelete, onVariantSetDefault, onSearch, loading, appId, tableKey, currentLayout, currentLayoutId, layoutRefs, variantService }: CSmartFilterProps) => react_jsx_runtime.JSX.Element;
|
|
561
|
+
declare const CSmartFilter: ({ fields, filters, onFilterChange, variants, currentVariantId, onVariantLoad, onVariantSave, onVariantDelete, onVariantSetDefault, onSearch, loading, appId, tableKey, currentLayout, currentLayoutId, layoutRefs, variantService, serviceUrl }: CSmartFilterProps) => react_jsx_runtime.JSX.Element;
|
|
527
562
|
|
|
528
563
|
interface CStandardPageProps {
|
|
529
564
|
/** Page Title */
|
|
@@ -1355,4 +1390,4 @@ declare const PAGE_TRANSITION_PRESETS: {
|
|
|
1355
1390
|
};
|
|
1356
1391
|
};
|
|
1357
1392
|
|
|
1358
|
-
export { type AmapEmbedOptions, Button, type ButtonProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CBarChart, type CBarChartProps, CChartCard, type CChartCardProps, CComboChart, type CComboChartProps, CCustomizeAgent, type CCustomizeAgentProps, CDetailInfoPage, type CDetailInfoPageProps, CDetailSearchAiBar, type CDetailSearchAiBarProps, CDetailSectionCard, type CDetailSectionCardProps, CFishboneChart, type CFishboneChartProps, CGoogleMapChart, type CGoogleMapChartProps, CGraphCharts, CGraphKpiCards, CGraphReport, type CGraphReportProps, CHeatmapChart, type CHeatmapChartProps, CLayoutManagement, type CLayoutManagementProps, CLayoutManager, type CLayoutManagerProps, CLineChart, type CLineChartProps, CMessageBox, type CMessageBoxProps, type CMessageBoxType, CPageLayout, type CPageLayoutProps, CPageTransition, type CPageTransitionProps, CPieChart, type CPieChartProps, CSmartFilter, type CSmartFilterProps, CSmartTable, CStandardPage, type CStandardPageProps, CTable, CTableBody, type CTableBodyProps, CTableCell, type CTableCellProps, CTableContainer, type CTableContainerProps, CTableHead, type CTableHeadProps, type CTableProps, type CTableQuickCreateConfig, type CTableQuickDeleteConfig, type CTableQuickEditConfig, CTableRow, type CTableRowProps, CVariantManagement, type CVariantManagementProps, CVariantManager, CWaterfallChart, type CWaterfallChartProps, CodeBlock, type CodeBlockProps, 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, type GoogleMapEmbedOptions, type GraphBarDatum, type GraphComboDatum, type GraphFishboneBranch, type GraphHeatmapDatum, type GraphLineDatum, type GraphMapLocation, type GraphPieDatum, type GraphReportConfig, type GraphReportFieldMapping, type GraphReportInteractionState, type GraphReportKpis, type GraphReportModel, type GraphRow, type GraphTableColumn, type GraphWaterfallDatum, type IVariantService, type LayoutMetadata, MarkdownRenderer, type MarkdownRendererProps, MathBlock, type MathBlockProps, MermaidBlock, type MermaidBlockProps, NavigationIsland, type NavigationIslandProps, type NumberOperator, ORBCAFE_I18N_MESSAGES, type OrbcafeI18nContextValue, OrbcafeI18nProvider, type OrbcafeI18nProviderProps, type OrbcafeLocale, type OrbcafeLocaleMessages, type OrbcafeMessageKey, type OrbcafeMessageParams, PAGE_TRANSITION_PRESETS, type PageTransitionVariant, type ParsedMarkdownTable, type ReportColumn, type ReportFilter, type ReportMetadata, type SelectOperator, type TableAlign, TableBlock, type TableBlockProps, type TextOperator, ThinkBlock, type ThinkBlockProps, TreeMenu, type TreeMenuItem, type UseAmapEmbedUrlOptions, type UseDetailInfoOptions, type UseDetailInfoResult, type UseGoogleMapEmbedUrlOptions, type UseGraphChartDataOptions, type UseGraphChartDataResult, type UseGraphInteractionResult, type UseGraphReportOptions, type UseGraphReportResult, type UseNavigationIslandOptions, type UseNavigationIslandResult, type UsePageLayoutOptions, type UseStandardReportOptions, type VariantMetadata, buildAmapEmbedUrl, buildGoogleMapEmbedUrl, buildGoogleMapIframe, buttonVariants, parseMarkdownTable, renderMarkdown, useAmapEmbedUrl, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useNavigationIsland, useOrbcafeI18n, usePageLayout, useStandardReport };
|
|
1393
|
+
export { type AmapEmbedOptions, Button, type ButtonProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CBarChart, type CBarChartProps, CChartCard, type CChartCardProps, CComboChart, type CComboChartProps, CCustomizeAgent, type CCustomizeAgentProps, CDetailInfoPage, type CDetailInfoPageProps, CDetailSearchAiBar, type CDetailSearchAiBarProps, CDetailSectionCard, type CDetailSectionCardProps, CFishboneChart, type CFishboneChartProps, CGoogleMapChart, type CGoogleMapChartProps, CGraphCharts, CGraphKpiCards, CGraphReport, type CGraphReportProps, CHeatmapChart, type CHeatmapChartProps, CLayoutManagement, type CLayoutManagementProps, CLayoutManager, type CLayoutManagerProps, CLineChart, type CLineChartProps, CMessageBox, type CMessageBoxProps, type CMessageBoxType, CPageLayout, type CPageLayoutProps, CPageTransition, type CPageTransitionProps, CPieChart, type CPieChartProps, CSmartFilter, type CSmartFilterProps, CSmartTable, CStandardPage, type CStandardPageProps, CTable, CTableBody, type CTableBodyProps, CTableCell, type CTableCellProps, CTableContainer, type CTableContainerProps, CTableHead, type CTableHeadProps, type CTableProps, type CTableQuickCreateConfig, type CTableQuickDeleteConfig, type CTableQuickEditConfig, CTableRow, type CTableRowProps, CVariantManagement, type CVariantManagementProps, CVariantManager, CWaterfallChart, type CWaterfallChartProps, CodeBlock, type CodeBlockProps, type CustomizeAgentSavePayload, type CustomizeAgentSettings, type CustomizeAgentTemplateOption, type DateOperator, type DetailInfoAiConfig, type DetailInfoField, type DetailInfoSearchHit, type DetailInfoSearchMode, type DetailInfoSection, type DetailInfoTab, type DetailInfoTableConfig, type FilterField, type FilterOperator, type FilterType, type FilterValue, GlobalMessage, type GoogleMapEmbedOptions, type GraphBarDatum, type GraphComboDatum, type GraphFishboneBranch, type GraphHeatmapDatum, type GraphLineDatum, type GraphMapLocation, type GraphPieDatum, type GraphReportConfig, type GraphReportFieldMapping, type GraphReportInteractionState, type GraphReportKpis, type GraphReportModel, type GraphRow, type GraphTableColumn, type GraphWaterfallDatum, type IVariantService, type LayoutMetadata, MarkdownRenderer, type MarkdownRendererProps, MathBlock, type MathBlockProps, MermaidBlock, type MermaidBlockProps, type MessageContent, type MessageEvent, type MessageOptions, NavigationIsland, type NavigationIslandProps, type NumberOperator, ORBCAFE_I18N_MESSAGES, type OrbcafeI18nContextValue, OrbcafeI18nProvider, type OrbcafeI18nProviderProps, type OrbcafeLocale, type OrbcafeLocaleMessages, type OrbcafeMessageKey, type OrbcafeMessageParams, PAGE_TRANSITION_PRESETS, type PageTransitionVariant, type ParsedMarkdownTable, type ReportColumn, type ReportFilter, type ReportMetadata, type SelectOperator, type TableAlign, TableBlock, type TableBlockProps, type TextOperator, ThinkBlock, type ThinkBlockProps, TreeMenu, type TreeMenuItem, type UseAmapEmbedUrlOptions, type UseDetailInfoOptions, type UseDetailInfoResult, type UseGoogleMapEmbedUrlOptions, type UseGraphChartDataOptions, type UseGraphChartDataResult, type UseGraphInteractionResult, type UseGraphReportOptions, type UseGraphReportResult, type UseNavigationIslandOptions, type UseNavigationIslandResult, type UsePageLayoutOptions, type UseStandardReportOptions, type VariantMetadata, buildAmapEmbedUrl, buildGoogleMapEmbedUrl, buildGoogleMapIframe, buttonVariants, message, messageManager, parseMarkdownTable, renderMarkdown, useAmapEmbedUrl, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useNavigationIsland, useOrbcafeI18n, usePageLayout, useStandardReport };
|
package/dist/index.d.ts
CHANGED
|
@@ -88,6 +88,39 @@ interface UseNavigationIslandResult {
|
|
|
88
88
|
*/
|
|
89
89
|
declare const useNavigationIsland: (options?: UseNavigationIslandOptions) => UseNavigationIslandResult;
|
|
90
90
|
|
|
91
|
+
type CMessageBoxType = 'success' | 'warning' | 'error' | 'info' | 'default';
|
|
92
|
+
type MessageContent = string | ReactNode;
|
|
93
|
+
interface MessageOptions {
|
|
94
|
+
title?: string;
|
|
95
|
+
onClose?: () => void;
|
|
96
|
+
onConfirm?: () => void;
|
|
97
|
+
confirmText?: string;
|
|
98
|
+
cancelText?: string;
|
|
99
|
+
showCancel?: boolean;
|
|
100
|
+
maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
101
|
+
}
|
|
102
|
+
interface MessageEvent {
|
|
103
|
+
type: CMessageBoxType;
|
|
104
|
+
content: MessageContent;
|
|
105
|
+
options?: MessageOptions;
|
|
106
|
+
}
|
|
107
|
+
declare class MessageManager {
|
|
108
|
+
private listener;
|
|
109
|
+
register(listener: (event: MessageEvent | null) => void): void;
|
|
110
|
+
unregister(): void;
|
|
111
|
+
show(type: CMessageBoxType, content: MessageContent, options?: MessageOptions): void;
|
|
112
|
+
hide(): void;
|
|
113
|
+
}
|
|
114
|
+
declare const messageManager: MessageManager;
|
|
115
|
+
declare const message: {
|
|
116
|
+
success: (content: MessageContent, options?: MessageOptions) => void;
|
|
117
|
+
error: (content: MessageContent, options?: MessageOptions) => void;
|
|
118
|
+
warning: (content: MessageContent, options?: MessageOptions) => void;
|
|
119
|
+
info: (content: MessageContent, options?: MessageOptions) => void;
|
|
120
|
+
show: (type: CMessageBoxType, content: MessageContent, options?: MessageOptions) => void;
|
|
121
|
+
hide: () => void;
|
|
122
|
+
};
|
|
123
|
+
|
|
91
124
|
/**
|
|
92
125
|
* @file 10_Frontend/components/sap/ui/Common/Molecules/CMessageBox.tsx
|
|
93
126
|
*
|
|
@@ -120,7 +153,6 @@ declare const useNavigationIsland: (options?: UseNavigationIslandOptions) => Use
|
|
|
120
153
|
* --------------------------
|
|
121
154
|
*/
|
|
122
155
|
|
|
123
|
-
type CMessageBoxType = 'success' | 'warning' | 'error' | 'info' | 'default';
|
|
124
156
|
interface CMessageBoxProps {
|
|
125
157
|
open: boolean;
|
|
126
158
|
title?: string;
|
|
@@ -134,6 +166,7 @@ interface CMessageBoxProps {
|
|
|
134
166
|
type?: CMessageBoxType;
|
|
135
167
|
}
|
|
136
168
|
declare const CMessageBox: React__default.FC<CMessageBoxProps>;
|
|
169
|
+
declare const GlobalMessage: React__default.FC;
|
|
137
170
|
|
|
138
171
|
interface CustomizeAgentSettings {
|
|
139
172
|
baseUrl: string;
|
|
@@ -344,6 +377,7 @@ interface CTableProps {
|
|
|
344
377
|
quickCreate?: CTableQuickCreateConfig;
|
|
345
378
|
quickEdit?: CTableQuickEditConfig;
|
|
346
379
|
quickDelete?: CTableQuickDeleteConfig;
|
|
380
|
+
serviceUrl?: string;
|
|
347
381
|
}
|
|
348
382
|
interface CTableHeadProps {
|
|
349
383
|
columns: any[];
|
|
@@ -517,13 +551,14 @@ interface CSmartFilterProps {
|
|
|
517
551
|
layoutId: string | null;
|
|
518
552
|
}>;
|
|
519
553
|
variantService?: IVariantService;
|
|
554
|
+
serviceUrl?: string;
|
|
520
555
|
}
|
|
521
556
|
/**
|
|
522
557
|
* CSmartFilter Component
|
|
523
558
|
*
|
|
524
559
|
* Renders a filter bar with "Go" button, variant management, and "Adapt Filters" capability.
|
|
525
560
|
*/
|
|
526
|
-
declare const CSmartFilter: ({ fields, filters, onFilterChange, variants, currentVariantId, onVariantLoad, onVariantSave, onVariantDelete, onVariantSetDefault, onSearch, loading, appId, tableKey, currentLayout, currentLayoutId, layoutRefs, variantService }: CSmartFilterProps) => react_jsx_runtime.JSX.Element;
|
|
561
|
+
declare const CSmartFilter: ({ fields, filters, onFilterChange, variants, currentVariantId, onVariantLoad, onVariantSave, onVariantDelete, onVariantSetDefault, onSearch, loading, appId, tableKey, currentLayout, currentLayoutId, layoutRefs, variantService, serviceUrl }: CSmartFilterProps) => react_jsx_runtime.JSX.Element;
|
|
527
562
|
|
|
528
563
|
interface CStandardPageProps {
|
|
529
564
|
/** Page Title */
|
|
@@ -1355,4 +1390,4 @@ declare const PAGE_TRANSITION_PRESETS: {
|
|
|
1355
1390
|
};
|
|
1356
1391
|
};
|
|
1357
1392
|
|
|
1358
|
-
export { type AmapEmbedOptions, Button, type ButtonProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CBarChart, type CBarChartProps, CChartCard, type CChartCardProps, CComboChart, type CComboChartProps, CCustomizeAgent, type CCustomizeAgentProps, CDetailInfoPage, type CDetailInfoPageProps, CDetailSearchAiBar, type CDetailSearchAiBarProps, CDetailSectionCard, type CDetailSectionCardProps, CFishboneChart, type CFishboneChartProps, CGoogleMapChart, type CGoogleMapChartProps, CGraphCharts, CGraphKpiCards, CGraphReport, type CGraphReportProps, CHeatmapChart, type CHeatmapChartProps, CLayoutManagement, type CLayoutManagementProps, CLayoutManager, type CLayoutManagerProps, CLineChart, type CLineChartProps, CMessageBox, type CMessageBoxProps, type CMessageBoxType, CPageLayout, type CPageLayoutProps, CPageTransition, type CPageTransitionProps, CPieChart, type CPieChartProps, CSmartFilter, type CSmartFilterProps, CSmartTable, CStandardPage, type CStandardPageProps, CTable, CTableBody, type CTableBodyProps, CTableCell, type CTableCellProps, CTableContainer, type CTableContainerProps, CTableHead, type CTableHeadProps, type CTableProps, type CTableQuickCreateConfig, type CTableQuickDeleteConfig, type CTableQuickEditConfig, CTableRow, type CTableRowProps, CVariantManagement, type CVariantManagementProps, CVariantManager, CWaterfallChart, type CWaterfallChartProps, CodeBlock, type CodeBlockProps, 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, type GoogleMapEmbedOptions, type GraphBarDatum, type GraphComboDatum, type GraphFishboneBranch, type GraphHeatmapDatum, type GraphLineDatum, type GraphMapLocation, type GraphPieDatum, type GraphReportConfig, type GraphReportFieldMapping, type GraphReportInteractionState, type GraphReportKpis, type GraphReportModel, type GraphRow, type GraphTableColumn, type GraphWaterfallDatum, type IVariantService, type LayoutMetadata, MarkdownRenderer, type MarkdownRendererProps, MathBlock, type MathBlockProps, MermaidBlock, type MermaidBlockProps, NavigationIsland, type NavigationIslandProps, type NumberOperator, ORBCAFE_I18N_MESSAGES, type OrbcafeI18nContextValue, OrbcafeI18nProvider, type OrbcafeI18nProviderProps, type OrbcafeLocale, type OrbcafeLocaleMessages, type OrbcafeMessageKey, type OrbcafeMessageParams, PAGE_TRANSITION_PRESETS, type PageTransitionVariant, type ParsedMarkdownTable, type ReportColumn, type ReportFilter, type ReportMetadata, type SelectOperator, type TableAlign, TableBlock, type TableBlockProps, type TextOperator, ThinkBlock, type ThinkBlockProps, TreeMenu, type TreeMenuItem, type UseAmapEmbedUrlOptions, type UseDetailInfoOptions, type UseDetailInfoResult, type UseGoogleMapEmbedUrlOptions, type UseGraphChartDataOptions, type UseGraphChartDataResult, type UseGraphInteractionResult, type UseGraphReportOptions, type UseGraphReportResult, type UseNavigationIslandOptions, type UseNavigationIslandResult, type UsePageLayoutOptions, type UseStandardReportOptions, type VariantMetadata, buildAmapEmbedUrl, buildGoogleMapEmbedUrl, buildGoogleMapIframe, buttonVariants, parseMarkdownTable, renderMarkdown, useAmapEmbedUrl, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useNavigationIsland, useOrbcafeI18n, usePageLayout, useStandardReport };
|
|
1393
|
+
export { type AmapEmbedOptions, Button, type ButtonProps, CAmapChart, type CAmapChartProps, CAppHeader, type CAppHeaderProps, type CAppHeaderUser, type CAppHeaderUserMenuItem, CAppPageLayout, type CAppPageLayoutProps, CBarChart, type CBarChartProps, CChartCard, type CChartCardProps, CComboChart, type CComboChartProps, CCustomizeAgent, type CCustomizeAgentProps, CDetailInfoPage, type CDetailInfoPageProps, CDetailSearchAiBar, type CDetailSearchAiBarProps, CDetailSectionCard, type CDetailSectionCardProps, CFishboneChart, type CFishboneChartProps, CGoogleMapChart, type CGoogleMapChartProps, CGraphCharts, CGraphKpiCards, CGraphReport, type CGraphReportProps, CHeatmapChart, type CHeatmapChartProps, CLayoutManagement, type CLayoutManagementProps, CLayoutManager, type CLayoutManagerProps, CLineChart, type CLineChartProps, CMessageBox, type CMessageBoxProps, type CMessageBoxType, CPageLayout, type CPageLayoutProps, CPageTransition, type CPageTransitionProps, CPieChart, type CPieChartProps, CSmartFilter, type CSmartFilterProps, CSmartTable, CStandardPage, type CStandardPageProps, CTable, CTableBody, type CTableBodyProps, CTableCell, type CTableCellProps, CTableContainer, type CTableContainerProps, CTableHead, type CTableHeadProps, type CTableProps, type CTableQuickCreateConfig, type CTableQuickDeleteConfig, type CTableQuickEditConfig, CTableRow, type CTableRowProps, CVariantManagement, type CVariantManagementProps, CVariantManager, CWaterfallChart, type CWaterfallChartProps, CodeBlock, type CodeBlockProps, type CustomizeAgentSavePayload, type CustomizeAgentSettings, type CustomizeAgentTemplateOption, type DateOperator, type DetailInfoAiConfig, type DetailInfoField, type DetailInfoSearchHit, type DetailInfoSearchMode, type DetailInfoSection, type DetailInfoTab, type DetailInfoTableConfig, type FilterField, type FilterOperator, type FilterType, type FilterValue, GlobalMessage, type GoogleMapEmbedOptions, type GraphBarDatum, type GraphComboDatum, type GraphFishboneBranch, type GraphHeatmapDatum, type GraphLineDatum, type GraphMapLocation, type GraphPieDatum, type GraphReportConfig, type GraphReportFieldMapping, type GraphReportInteractionState, type GraphReportKpis, type GraphReportModel, type GraphRow, type GraphTableColumn, type GraphWaterfallDatum, type IVariantService, type LayoutMetadata, MarkdownRenderer, type MarkdownRendererProps, MathBlock, type MathBlockProps, MermaidBlock, type MermaidBlockProps, type MessageContent, type MessageEvent, type MessageOptions, NavigationIsland, type NavigationIslandProps, type NumberOperator, ORBCAFE_I18N_MESSAGES, type OrbcafeI18nContextValue, OrbcafeI18nProvider, type OrbcafeI18nProviderProps, type OrbcafeLocale, type OrbcafeLocaleMessages, type OrbcafeMessageKey, type OrbcafeMessageParams, PAGE_TRANSITION_PRESETS, type PageTransitionVariant, type ParsedMarkdownTable, type ReportColumn, type ReportFilter, type ReportMetadata, type SelectOperator, type TableAlign, TableBlock, type TableBlockProps, type TextOperator, ThinkBlock, type ThinkBlockProps, TreeMenu, type TreeMenuItem, type UseAmapEmbedUrlOptions, type UseDetailInfoOptions, type UseDetailInfoResult, type UseGoogleMapEmbedUrlOptions, type UseGraphChartDataOptions, type UseGraphChartDataResult, type UseGraphInteractionResult, type UseGraphReportOptions, type UseGraphReportResult, type UseNavigationIslandOptions, type UseNavigationIslandResult, type UsePageLayoutOptions, type UseStandardReportOptions, type VariantMetadata, buildAmapEmbedUrl, buildGoogleMapEmbedUrl, buildGoogleMapIframe, buttonVariants, message, messageManager, parseMarkdownTable, renderMarkdown, useAmapEmbedUrl, useDetailInfo, useGoogleMapEmbedUrl, useGraphChartData, useGraphInteraction, useGraphReport, useNavigationIsland, useOrbcafeI18n, usePageLayout, useStandardReport };
|