@flowuent-org/diagramming-core 1.3.6 → 1.3.7
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/package.json +1 -1
- package/packages/diagrams/src/lib/components/automation/AutomationEndNode.tsx +1 -1
- package/packages/diagrams/src/lib/components/automation/AutomationFormattingNode.tsx +1 -1
- package/packages/diagrams/src/lib/components/automation/AutomationNavigationNode.tsx +1 -1
- package/packages/diagrams/src/lib/organisms/WorkFlowNode/NodeTypeDisplay.tsx +1 -1
- package/packages/diagrams/src/lib/organisms/WorkFlowNode/WorkflowNodeIcons.tsx +2 -2
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ import { NodeActionButtons } from './NodeActionButtons';
|
|
|
14
14
|
import { showNodeAIAssistantPopup } from './NodeAIAssistantPopup';
|
|
15
15
|
import { useSearch } from '../../contexts/SearchContext';
|
|
16
16
|
import { getStatusColor } from './statusColors';
|
|
17
|
-
import { EndNodeIcon } from '
|
|
17
|
+
import { EndNodeIcon } from '../../../../../molecules/src/lib/SvgIcons/icons';
|
|
18
18
|
|
|
19
19
|
interface AutomationEndNodeProps {
|
|
20
20
|
data: {
|
|
@@ -23,7 +23,7 @@ import { NodeActionButtons } from './NodeActionButtons';
|
|
|
23
23
|
import { showNodeAIAssistantPopup } from './NodeAIAssistantPopup';
|
|
24
24
|
import { useSearch } from '../../contexts/SearchContext';
|
|
25
25
|
import { getStatusColor } from './statusColors';
|
|
26
|
-
import { ArticleAnalyzerIcon } from '
|
|
26
|
+
import { ArticleAnalyzerIcon } from '../../../../../molecules/src/lib/SvgIcons/icons';
|
|
27
27
|
|
|
28
28
|
interface AutomationFormattingNodeProps {
|
|
29
29
|
data: {
|
|
@@ -19,7 +19,7 @@ import { NodeActionButtons } from './NodeActionButtons';
|
|
|
19
19
|
import { showNodeAIAssistantPopup } from './NodeAIAssistantPopup';
|
|
20
20
|
import { useSearch } from '../../contexts/SearchContext';
|
|
21
21
|
import { getStatusColor } from './statusColors';
|
|
22
|
-
import { NavigationIcon } from '
|
|
22
|
+
import { NavigationIcon } from '../../../../../molecules/src/lib/SvgIcons/icons';
|
|
23
23
|
|
|
24
24
|
interface AutomationNavigationNodeProps {
|
|
25
25
|
data: {
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
SetIcon,
|
|
19
19
|
EmptyNodeIcon,
|
|
20
20
|
EntityIcon,
|
|
21
|
-
} from '
|
|
21
|
+
} from '../../../../../molecules/src/lib/SvgIcons/icons';
|
|
22
22
|
|
|
23
23
|
// Icon mapping for different node types
|
|
24
24
|
const getNodeIcon = (type: NodeVariant | string | undefined) => {
|
|
@@ -17,7 +17,7 @@ export {
|
|
|
17
17
|
EntityIcon,
|
|
18
18
|
StartNodeIcon,
|
|
19
19
|
NavigationIcon,
|
|
20
|
-
} from '
|
|
20
|
+
} from '../../../../../molecules/src/lib/SvgIcons/icons';
|
|
21
21
|
|
|
22
22
|
// Re-export types for backward compatibility
|
|
23
|
-
export type { SvgIconProps as IconProps } from '
|
|
23
|
+
export type { SvgIconProps as IconProps } from '../../../../../molecules/src/lib/SvgIcons/types';
|