@huanban/rulego-editor-react 1.1.0 → 1.1.2
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/LICENSE +190 -0
- package/dist/components/AIAssistant.d.ts +22 -0
- package/dist/components/ComponentSidebar.d.ts +8 -0
- package/dist/components/ContextMenu.d.ts +7 -3
- package/dist/components/CopilotChat.d.ts +31 -0
- package/dist/components/DataViewDialog.d.ts +8 -0
- package/dist/components/DebugPanel.d.ts +8 -0
- package/dist/components/DynamicForm.d.ts +65 -0
- package/dist/components/EdgePropertyDrawer.d.ts +14 -0
- package/dist/components/EditorToolbar.d.ts +8 -0
- package/dist/components/ImportExportDialog.d.ts +8 -0
- package/dist/components/LogViewer.d.ts +45 -0
- package/dist/components/MiniMap.d.ts +8 -0
- package/dist/components/NodePropertyDrawer.d.ts +93 -1
- package/dist/components/RuleChainSettings.d.ts +8 -0
- package/dist/components/RuleGoEditor.d.ts +52 -7
- package/dist/components/RuleMaintenancePanel.d.ts +15 -0
- package/dist/components/SearchPanel.d.ts +8 -0
- package/dist/components/SearchableSelect.d.ts +29 -0
- package/dist/components/ValidationPanel.d.ts +8 -0
- package/dist/components/WorkflowInfoPanel.d.ts +17 -1
- package/dist/components/WorkflowList.d.ts +8 -1
- package/dist/components/properties/AgentOrchestrationProperties.d.ts +13 -0
- package/dist/i18n.d.ts +14 -0
- package/dist/index.cjs.js +5762 -927
- package/dist/index.d.ts +16 -2
- package/dist/index.esm.js +77742 -44579
- package/dist/style.css +1 -1
- package/package.json +13 -13
package/dist/index.d.ts
CHANGED
|
@@ -74,13 +74,15 @@ export { default as EditorToolbar } from './components/EditorToolbar';
|
|
|
74
74
|
export type { EditorToolbarProps, ToolbarButton, } from './components/EditorToolbar';
|
|
75
75
|
export { default as ContextMenu } from './components/ContextMenu';
|
|
76
76
|
export { getNodeContextMenuItems, getEdgeContextMenuItems, getCanvasContextMenuItems, } from './components/ContextMenu';
|
|
77
|
-
export type { ContextMenuProps, ContextMenuItem, ContextMenuTarget, } from './components/ContextMenu';
|
|
77
|
+
export type { ContextMenuProps, ContextMenuItem, ContextMenuTarget, ContextMenuI18nOptions, } from './components/ContextMenu';
|
|
78
78
|
export { default as MiniMap } from './components/MiniMap';
|
|
79
79
|
export type { MiniMapProps, MiniMapNode, MiniMapViewport, } from './components/MiniMap';
|
|
80
80
|
export { default as ValidationPanel } from './components/ValidationPanel';
|
|
81
81
|
export type { ValidationPanelProps, ValidationItem, } from './components/ValidationPanel';
|
|
82
82
|
export { default as RuleChainSettings } from './components/RuleChainSettings';
|
|
83
83
|
export type { RuleChainSettingsProps, RuleChainSettingsData, } from './components/RuleChainSettings';
|
|
84
|
+
export { SearchableSelect } from './components/SearchableSelect';
|
|
85
|
+
export type { SearchableSelectProps, SearchableSelectOption, } from './components/SearchableSelect';
|
|
84
86
|
export { default as ImportExportDialog } from './components/ImportExportDialog';
|
|
85
87
|
export type { ImportExportDialogProps, ImportExportMode, } from './components/ImportExportDialog';
|
|
86
88
|
export { default as SearchPanel } from './components/SearchPanel';
|
|
@@ -89,16 +91,28 @@ export { WorkflowList } from './components/WorkflowList';
|
|
|
89
91
|
export type { WorkflowListProps } from './components/WorkflowList';
|
|
90
92
|
export { WorkflowInfoPanel } from './components/WorkflowInfoPanel';
|
|
91
93
|
export type { WorkflowInfoPanelProps, ExtraTab } from './components/WorkflowInfoPanel';
|
|
94
|
+
export { RuleMaintenancePanel } from './components/RuleMaintenancePanel';
|
|
95
|
+
export type { RuleMaintenancePanelProps } from './components/RuleMaintenancePanel';
|
|
96
|
+
export { CopilotChat } from './components/CopilotChat';
|
|
97
|
+
export type { CopilotChatProps } from './components/CopilotChat';
|
|
98
|
+
export { AIAssistant } from './components/AIAssistant';
|
|
99
|
+
export type { AIAssistantProps } from './components/AIAssistant';
|
|
100
|
+
export { DynamicForm } from './components/DynamicForm';
|
|
101
|
+
export type { DynamicFormProps, FormField } from './components/DynamicForm';
|
|
102
|
+
export { LogViewer } from './components/LogViewer';
|
|
103
|
+
export type { LogViewerProps, LogEntry } from './components/LogViewer';
|
|
92
104
|
export { useEditorCore } from './hooks/useEditorCore';
|
|
93
105
|
export type { UseEditorCoreReturn } from './hooks/useEditorCore';
|
|
94
106
|
export { useEditorTheme } from './hooks/useEditorTheme';
|
|
95
107
|
export type { UseEditorThemeReturn } from './hooks/useEditorTheme';
|
|
96
108
|
export { useEditorI18n } from './hooks/useEditorI18n';
|
|
97
109
|
export type { UseEditorI18nReturn } from './hooks/useEditorI18n';
|
|
110
|
+
export { createFrameworkTranslator, normalizeFrameworkLocale, relationTypeLabel, } from './i18n';
|
|
111
|
+
export type { EditorTranslate, FrameworkI18nProps, } from './i18n';
|
|
98
112
|
export { useKeyboardShortcuts, getShortcutLabel, getDefaultEditorShortcuts, } from './hooks/useKeyboardShortcuts';
|
|
99
113
|
export type { ShortcutConfig, UseKeyboardShortcutsOptions, } from './hooks/useKeyboardShortcuts';
|
|
100
114
|
export { useClipboard } from './hooks/useClipboard';
|
|
101
115
|
export type { ClipboardNode, ClipboardCallbacks, ClipboardManager, } from './hooks/useClipboard';
|
|
102
|
-
export type { EditorOptions, RuleChainData, RuleChainConfig, RuleNodeConfig, RuleConnectionConfig, RuleEndpointConfig, ComponentDefinition, ComponentGroup, ComponentField, EditorEventMap, EditorEventName, WorkflowItem, PagedResponse, ApiResult, WorkflowFetcher, RuleChainAPIOptions, RuleChainRoutes, WorkflowListIcons, WorkflowInfoIcons, WorkflowTheme, } from '@huanban/rulego-editor-core';
|
|
116
|
+
export type { EditorOptions, RuleChainData, RuleChainConfig, RuleNodeConfig, RuleConnectionConfig, RuleEndpointConfig, ComponentDefinition, ComponentGroup, ComponentField, EditorEventMap, EditorEventName, WorkflowItem, PagedResponse, ApiResult, WorkflowFetcher, RuleChainAPIOptions, RuleChainRoutes, WorkflowListIcons, WorkflowInfoIcons, WorkflowTheme, AIAssistantOpenOptions, } from '@huanban/rulego-editor-core';
|
|
103
117
|
export { RuleChainAPI, DEFAULT_ROUTES } from '@huanban/rulego-editor-core';
|
|
104
118
|
//# sourceMappingURL=index.d.ts.map
|