@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowuent-org/diagramming-core",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -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 '@flowuent-labs/molecules';
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 '@flowuent-labs/molecules';
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 '@flowuent-labs/molecules';
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 '@flowuent-labs/molecules';
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 '@flowuent-labs/molecules';
20
+ } from '../../../../../molecules/src/lib/SvgIcons/icons';
21
21
 
22
22
  // Re-export types for backward compatibility
23
- export type { SvgIconProps as IconProps } from '@flowuent-labs/molecules';
23
+ export type { SvgIconProps as IconProps } from '../../../../../molecules/src/lib/SvgIcons/types';