fix: folder org
This commit is contained in:
@@ -4,7 +4,7 @@ import {
|
||||
createAbstractNodeComponent,
|
||||
useAbstractNode,
|
||||
} from '@/lib/graph/abstractNode'
|
||||
import { getConfigContent } from '@/lib/configTypes'
|
||||
import { getConfigContent } from '@/lib/graph/configTypes'
|
||||
import {
|
||||
BaseNode,
|
||||
BaseNodeContent,
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* Update mode is manual (user clicks Run on the renderer).
|
||||
*/
|
||||
|
||||
import type { SourceRenderingLogic } from '@/lib/sourceRenderingLogic'
|
||||
import type { SourceRenderingLogic } from '@/lib/graph/sourceRenderingLogic'
|
||||
|
||||
export const agentRenderingLogic: SourceRenderingLogic = {
|
||||
defaultUpdateMode: 'manual',
|
||||
|
||||
@@ -20,7 +20,7 @@ import {
|
||||
getConfigTypeId,
|
||||
isGroup,
|
||||
type ConfigTypeId,
|
||||
} from '@/lib/configTypes'
|
||||
} from '@/lib/graph/configTypes'
|
||||
import {
|
||||
BaseNode,
|
||||
BaseNodeContent,
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
*/
|
||||
|
||||
import nunjucks from 'nunjucks'
|
||||
import type { ResolvedContentResult, SourceRenderingLogicContext } from '@/lib/sourceRenderingLogic'
|
||||
import { getConfigContent, getConfigTypeId, type ConfigTypeId } from '@/lib/configTypes'
|
||||
import type { ResolvedContentResult, SourceRenderingLogicContext } from '@/lib/graph/sourceRenderingLogic'
|
||||
import { getConfigContent, getConfigTypeId, type ConfigTypeId } from '@/lib/graph/configTypes'
|
||||
|
||||
type Node = { id: string; type?: string; data?: unknown }
|
||||
type Edge = { id: string; source: string; target: string }
|
||||
|
||||
@@ -8,8 +8,8 @@ import {
|
||||
createAbstractNodeComponent,
|
||||
useAbstractNode,
|
||||
} from '@/lib/graph/abstractNode'
|
||||
import { getConfigContent, getConfigType, getConfigTypeId } from '@/lib/configTypes'
|
||||
import { getSourceRenderingLogic } from '@/lib/sourceRenderingLogic'
|
||||
import { getConfigContent, getConfigType, getConfigTypeId } from '@/lib/graph/configTypes'
|
||||
import { getSourceRenderingLogic } from '@/lib/graph/sourceRenderingLogic'
|
||||
import { useSyncConnectionStatus } from '@/lib/graph/nodeLifecycle'
|
||||
import { useResizeHeight } from '@/hooks/useResizeHeight'
|
||||
import { plantumlLanguage } from '@/lib/plantumlLanguage'
|
||||
|
||||
Reference in New Issue
Block a user