@flowuent-org/diagramming-core 1.0.8 → 1.1.1
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/apps/diagramming/src/AutomationDiagramData.ts +22 -0
- package/apps/diagramming/src/components/AddNodeView.tsx +252 -252
- package/apps/diagramming/src/main.tsx +463 -463
- package/apps/diagramming/src/node-data.ts +664 -664
- package/apps/diagramming/src/stencil-items.ts +31 -31
- package/apps/diagramming/src/vite-env.d.ts +1 -1
- package/package.json +1 -1
- package/packages/diagrams/NODE_DATA_UPDATE_API.md +430 -430
- package/packages/diagrams/README.md +7 -463
- package/packages/diagrams/UNDO_REDO_API.md +306 -306
- package/packages/diagrams/package.json +27 -27
- package/packages/diagrams/project.json +42 -42
- package/packages/diagrams/rollup.config.js +26 -26
- package/packages/diagrams/src/DiagramFlow.tsx +7 -7
- package/packages/diagrams/src/index.ts +116 -116
- package/packages/diagrams/src/index.ts.bak +99 -99
- package/packages/diagrams/src/lib/atoms/CardEditableTitle.tsx +76 -76
- package/packages/diagrams/src/lib/atoms/ExpressionInput.tsx +437 -437
- package/packages/diagrams/src/lib/components/DiagramPanel.tsx +331 -331
- package/packages/diagrams/src/lib/components/automation/AISuggestionsModal.tsx +269 -0
- package/packages/diagrams/src/lib/components/automation/AISuggestionsPanel.tsx +227 -0
- package/packages/diagrams/src/lib/components/automation/AutomationAISuggestionNode.tsx +178 -115
- package/packages/diagrams/src/lib/components/automation/AutomationApiNode.tsx +133 -27
- package/packages/diagrams/src/lib/components/automation/AutomationEndNode.tsx +134 -28
- package/packages/diagrams/src/lib/components/automation/AutomationFormattingNode.tsx +132 -27
- package/packages/diagrams/src/lib/components/automation/AutomationNoteNode.tsx +124 -17
- package/packages/diagrams/src/lib/components/automation/AutomationSheetsNode.tsx +122 -15
- package/packages/diagrams/src/lib/components/automation/index.ts +3 -0
- package/packages/diagrams/src/lib/contexts/onWorkflowNodeDelete.ts +65 -65
- package/packages/diagrams/src/lib/organisms/CustomEdge/useCreateBendPoint.tsx +121 -121
- package/packages/diagrams/src/lib/organisms/WorkFlowNode/NodeActionButtons.tsx +45 -45
- package/packages/diagrams/src/lib/templates/node-forms/CallForm.tsx +370 -370
- package/packages/diagrams/src/lib/templates/systemFlow/components/FloatingEdge.tsx +219 -219
- package/packages/diagrams/src/lib/types/card-node.ts +68 -68
- package/packages/diagrams/src/lib/types/node-types.ts +29 -29
- package/packages/diagrams/src/lib/utils/AutomationExecutionEngine.ts +1179 -1179
- package/packages/diagrams/tsconfig.lib.json +25 -25
- package/tsconfig.base.json +29 -30
- package/TRANSLATION_FIX_SUMMARY.md +0 -118
- package/packages/diagrams/I18N_SETUP.md +0 -126
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "diagrams",
|
|
3
|
-
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
-
"sourceRoot": "packages/diagrams/src",
|
|
5
|
-
"projectType": "library",
|
|
6
|
-
"tags": [],
|
|
7
|
-
"targets": {
|
|
8
|
-
"build": {
|
|
9
|
-
"executor": "@nx/rollup:rollup",
|
|
10
|
-
"outputs": ["{options.outputPath}"],
|
|
11
|
-
"options": {
|
|
12
|
-
"outputPath": "dist/packages/diagrams",
|
|
13
|
-
"tsConfig": "packages/diagrams/tsconfig.lib.json",
|
|
14
|
-
"project": "packages/diagrams/package.json",
|
|
15
|
-
"entryFile": "packages/diagrams/src/index.ts",
|
|
16
|
-
"external": ["react", "react-dom", "react/jsx-runtime"],
|
|
17
|
-
"rollupConfig": "packages/diagrams/rollup.config.js",
|
|
18
|
-
"compiler": "babel",
|
|
19
|
-
"assets": [
|
|
20
|
-
{
|
|
21
|
-
"glob": "packages/diagrams/README.md",
|
|
22
|
-
"input": ".",
|
|
23
|
-
"output": "."
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"glob": "**/*",
|
|
27
|
-
"input": "packages/diagrams/locales",
|
|
28
|
-
"output": "locales"
|
|
29
|
-
}
|
|
30
|
-
],
|
|
31
|
-
"buildableProjectDepsInPackageJsonType": "peerDependencies"
|
|
32
|
-
},
|
|
33
|
-
"configurations": {
|
|
34
|
-
"production": {
|
|
35
|
-
"optimization": true,
|
|
36
|
-
"extractLicenses": true,
|
|
37
|
-
"inspect": false
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "diagrams",
|
|
3
|
+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
+
"sourceRoot": "packages/diagrams/src",
|
|
5
|
+
"projectType": "library",
|
|
6
|
+
"tags": [],
|
|
7
|
+
"targets": {
|
|
8
|
+
"build": {
|
|
9
|
+
"executor": "@nx/rollup:rollup",
|
|
10
|
+
"outputs": ["{options.outputPath}"],
|
|
11
|
+
"options": {
|
|
12
|
+
"outputPath": "dist/packages/diagrams",
|
|
13
|
+
"tsConfig": "packages/diagrams/tsconfig.lib.json",
|
|
14
|
+
"project": "packages/diagrams/package.json",
|
|
15
|
+
"entryFile": "packages/diagrams/src/index.ts",
|
|
16
|
+
"external": ["react", "react-dom", "react/jsx-runtime"],
|
|
17
|
+
"rollupConfig": "packages/diagrams/rollup.config.js",
|
|
18
|
+
"compiler": "babel",
|
|
19
|
+
"assets": [
|
|
20
|
+
{
|
|
21
|
+
"glob": "packages/diagrams/README.md",
|
|
22
|
+
"input": ".",
|
|
23
|
+
"output": "."
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"glob": "**/*",
|
|
27
|
+
"input": "packages/diagrams/locales",
|
|
28
|
+
"output": "locales"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"buildableProjectDepsInPackageJsonType": "peerDependencies"
|
|
32
|
+
},
|
|
33
|
+
"configurations": {
|
|
34
|
+
"production": {
|
|
35
|
+
"optimization": true,
|
|
36
|
+
"extractLicenses": true,
|
|
37
|
+
"inspect": false
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
const getRollupOptions = require('@nx/react/plugins/bundle-rollup');
|
|
2
|
-
const preserveDirectives = require('rollup-preserve-directives').default;
|
|
3
|
-
|
|
4
|
-
module.exports = (options) => {
|
|
5
|
-
// Get the default Nx Rollup options
|
|
6
|
-
const nxRollupOptions = getRollupOptions(options);
|
|
7
|
-
|
|
8
|
-
// Enable tree shaking
|
|
9
|
-
nxRollupOptions.treeshake = true; // Explicitly enable tree shaking
|
|
10
|
-
|
|
11
|
-
// Add the preserveDirectives plugin to the existing plugins
|
|
12
|
-
nxRollupOptions.plugins = [
|
|
13
|
-
...(Array.isArray(nxRollupOptions.plugins) ? nxRollupOptions.plugins : []),
|
|
14
|
-
preserveDirectives(),
|
|
15
|
-
];
|
|
16
|
-
|
|
17
|
-
// Externalize MUI packages
|
|
18
|
-
nxRollupOptions.external = [
|
|
19
|
-
...(Array.isArray(nxRollupOptions.external) ? nxRollupOptions.external : []),
|
|
20
|
-
'@mui/material',
|
|
21
|
-
'@mui/icons-material',
|
|
22
|
-
/^@mui\/icons-material\/.*/,
|
|
23
|
-
];
|
|
24
|
-
|
|
25
|
-
return nxRollupOptions;
|
|
26
|
-
};
|
|
1
|
+
const getRollupOptions = require('@nx/react/plugins/bundle-rollup');
|
|
2
|
+
const preserveDirectives = require('rollup-preserve-directives').default;
|
|
3
|
+
|
|
4
|
+
module.exports = (options) => {
|
|
5
|
+
// Get the default Nx Rollup options
|
|
6
|
+
const nxRollupOptions = getRollupOptions(options);
|
|
7
|
+
|
|
8
|
+
// Enable tree shaking
|
|
9
|
+
nxRollupOptions.treeshake = true; // Explicitly enable tree shaking
|
|
10
|
+
|
|
11
|
+
// Add the preserveDirectives plugin to the existing plugins
|
|
12
|
+
nxRollupOptions.plugins = [
|
|
13
|
+
...(Array.isArray(nxRollupOptions.plugins) ? nxRollupOptions.plugins : []),
|
|
14
|
+
preserveDirectives(),
|
|
15
|
+
];
|
|
16
|
+
|
|
17
|
+
// Externalize MUI packages
|
|
18
|
+
nxRollupOptions.external = [
|
|
19
|
+
...(Array.isArray(nxRollupOptions.external) ? nxRollupOptions.external : []),
|
|
20
|
+
'@mui/material',
|
|
21
|
+
'@mui/icons-material',
|
|
22
|
+
/^@mui\/icons-material\/.*/,
|
|
23
|
+
];
|
|
24
|
+
|
|
25
|
+
return nxRollupOptions;
|
|
26
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
|
|
3
|
-
export default function DiagramFlow() {
|
|
4
|
-
return (
|
|
5
|
-
<div>DiagramFlow</div>
|
|
6
|
-
)
|
|
7
|
-
}
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
export default function DiagramFlow() {
|
|
4
|
+
return (
|
|
5
|
+
<div>DiagramFlow</div>
|
|
6
|
+
)
|
|
7
|
+
}
|
|
@@ -1,116 +1,116 @@
|
|
|
1
|
-
export * from './lib/externals';
|
|
2
|
-
export * from './lib/i18n';
|
|
3
|
-
export * from './lib/templates/systemFlow';
|
|
4
|
-
export * from './lib/theme';
|
|
5
|
-
export * from './lib/atoms/AddNodeAnchor';
|
|
6
|
-
export * from './lib/atoms/AddParallelColButton';
|
|
7
|
-
export * from './lib/atoms/BendpointNode';
|
|
8
|
-
export * from './lib/atoms/CardBlockTypeSelector';
|
|
9
|
-
export * from './lib/atoms/CardMainContent';
|
|
10
|
-
export * from './lib/atoms/FloatingConnectionLine';
|
|
11
|
-
export * from './lib/atoms/MarkerSelector';
|
|
12
|
-
export * from './lib/atoms/PropertyInput';
|
|
13
|
-
export * from './lib/atoms/StyledBox';
|
|
14
|
-
export * from './lib/contexts/CardDataProvider';
|
|
15
|
-
export * from './lib/contexts/DiagramProvider';
|
|
16
|
-
export * from './lib/contexts/diagramStoreTypes';
|
|
17
|
-
export * from './lib/contexts/onConnect';
|
|
18
|
-
export * from './lib/contexts/onDragStart';
|
|
19
|
-
export * from './lib/contexts/onNodeDragEnd';
|
|
20
|
-
export * from './lib/contexts/onNodesChange';
|
|
21
|
-
export * from './lib/contexts/setContentHeight';
|
|
22
|
-
export * from './lib/contexts/setDiagramType';
|
|
23
|
-
export * from './lib/contexts/setEdges';
|
|
24
|
-
export * from './lib/contexts/setEdgeShapeType';
|
|
25
|
-
export * from './lib/contexts/setNodes';
|
|
26
|
-
export * from './lib/contexts/setNodeSetting';
|
|
27
|
-
export * from './lib/contexts/setPannable';
|
|
28
|
-
export * from './lib/contexts/setSelectedEdge';
|
|
29
|
-
export * from './lib/contexts/setSelectedNode';
|
|
30
|
-
export * from './lib/contexts/undo';
|
|
31
|
-
export * from './lib/contexts/updateNodeSetting';
|
|
32
|
-
export * from './lib/hooks/customUseReactFlow';
|
|
33
|
-
export * from './lib/hooks/updateNodes';
|
|
34
|
-
export * from './lib/hooks/useDragCallbacks';
|
|
35
|
-
export * from './lib/hooks/useModalControls';
|
|
36
|
-
export * from './lib/hooks/useWorkflowNodeActiont';
|
|
37
|
-
export * from './lib/hooks/useAutoRegisterFunctions';
|
|
38
|
-
export * from './lib/molecules/AddingBlock';
|
|
39
|
-
export * from './lib/molecules/animated-add-button';
|
|
40
|
-
export * from './lib/molecules/Block';
|
|
41
|
-
export * from './lib/molecules/BlockProvider';
|
|
42
|
-
export * from './lib/molecules/BlockWrapper';
|
|
43
|
-
export * from './lib/molecules/DraggablePane';
|
|
44
|
-
export * from './lib/molecules/EntityNodeBlocks';
|
|
45
|
-
export * from './lib/molecules/json-viewer';
|
|
46
|
-
export * from './lib/molecules/SideHandles';
|
|
47
|
-
export * from './lib/molecules/StencilItem';
|
|
48
|
-
export * from './lib/molecules/WorkflowNodeActionButtons';
|
|
49
|
-
export * from './lib/organisms/AddNodeView';
|
|
50
|
-
export * from './lib/organisms/DownloadPanel';
|
|
51
|
-
export * from './lib/organisms/EdgeModal';
|
|
52
|
-
export * from './lib/organisms/NodeContextMenu';
|
|
53
|
-
export * from './lib/organisms/SmartDynamicForm';
|
|
54
|
-
export * from './lib/organisms/Stencil';
|
|
55
|
-
export * from './lib/organisms/UseDiagramStore';
|
|
56
|
-
export * from './lib/organisms/ConditionRuleGroup';
|
|
57
|
-
export * from './lib/organisms/WorkflowNode';
|
|
58
|
-
export * from './lib/templates/DiagramContainer';
|
|
59
|
-
export * from './lib/templates/DiagramContent';
|
|
60
|
-
export * from './lib/templates/Diagramming';
|
|
61
|
-
export type { DiagrammingPageRef } from './lib/templates/Diagramming';
|
|
62
|
-
export * from './lib/templates/PageLinks';
|
|
63
|
-
export * from './lib/types/card-node';
|
|
64
|
-
export * from './lib/types/collaboration-types';
|
|
65
|
-
export * from './lib/types/colors';
|
|
66
|
-
export * from './lib/types/edge-types';
|
|
67
|
-
export * from './lib/types/hooks.types';
|
|
68
|
-
export * from './lib/types/node-types';
|
|
69
|
-
export * from './lib/types/SmartDynamicFormField';
|
|
70
|
-
export * from './lib/types/stencil-item';
|
|
71
|
-
export * from './lib/types/structures';
|
|
72
|
-
export * from './lib/types/workflow-content-dynamic-form-type';
|
|
73
|
-
export * from './lib/types/FunctionSignature';
|
|
74
|
-
export * from './lib/utils/add-new-block';
|
|
75
|
-
export * from './lib/utils/add-new-node';
|
|
76
|
-
export * from './lib/utils/addToHistory';
|
|
77
|
-
export * from './lib/utils/closestPoint';
|
|
78
|
-
export * from './lib/utils/color-options';
|
|
79
|
-
export * from './lib/utils/compress-img';
|
|
80
|
-
export * from './lib/utils/constant-lengths';
|
|
81
|
-
export * from './lib/utils/create-updated';
|
|
82
|
-
export * from './lib/utils/createHistoryChange';
|
|
83
|
-
export * from './lib/utils/edge-hooks';
|
|
84
|
-
export * from './lib/utils/elkLayout';
|
|
85
|
-
export * from './lib/utils/event-hooks';
|
|
86
|
-
export * from './lib/utils/event-store';
|
|
87
|
-
export * from './lib/utils/flow-node-hooks';
|
|
88
|
-
export * from './lib/utils/flow-to-js';
|
|
89
|
-
export * from './lib/utils/helpers.types';
|
|
90
|
-
export * from './lib/utils/logger';
|
|
91
|
-
export * from './lib/utils/model-hooks';
|
|
92
|
-
export * from './lib/utils/node-hooks';
|
|
93
|
-
export { useHistory, useHistoryIndex } from './lib/contexts/DiagramProvider';
|
|
94
|
-
export * from './lib/utils/object';
|
|
95
|
-
export * from './lib/utils/nodeutils';
|
|
96
|
-
export * from './lib/utils/utilities';
|
|
97
|
-
export * from './lib/utils/vhToPixels';
|
|
98
|
-
export * from './lib/assets/markers/markers.param';
|
|
99
|
-
export * from './lib/assets/markers/markers.type';
|
|
100
|
-
export * from './lib/organisms/Card/card.params';
|
|
101
|
-
export * from './lib/organisms/Card/card.types';
|
|
102
|
-
export * from './lib/organisms/Card/EntityNode';
|
|
103
|
-
export * from './lib/organisms/CustomEdge/custom-edge-generator';
|
|
104
|
-
export * from './lib/organisms/CustomEdge/custom-edge.params';
|
|
105
|
-
export * from './lib/organisms/CustomEdge/custom-edge.type';
|
|
106
|
-
export * from './lib/organisms/PropertiesPane';
|
|
107
|
-
export * from './lib/organisms/HistoryPane';
|
|
108
|
-
//export * from './lib/types/workflow-node-data-types';
|
|
109
|
-
export * from './lib/templates/node-forms/NodeForm';
|
|
110
|
-
export { AutomationExecutionEngine } from './lib/utils/AutomationExecutionEngine';
|
|
111
|
-
export type {
|
|
112
|
-
AutomationLog,
|
|
113
|
-
AutomationResult,
|
|
114
|
-
} from './lib/utils/AutomationExecutionEngine';
|
|
115
|
-
export * from './lib/components/automation';
|
|
116
|
-
export * from './lib/types/automation-node-data-types';
|
|
1
|
+
export * from './lib/externals';
|
|
2
|
+
export * from './lib/i18n';
|
|
3
|
+
export * from './lib/templates/systemFlow';
|
|
4
|
+
export * from './lib/theme';
|
|
5
|
+
export * from './lib/atoms/AddNodeAnchor';
|
|
6
|
+
export * from './lib/atoms/AddParallelColButton';
|
|
7
|
+
export * from './lib/atoms/BendpointNode';
|
|
8
|
+
export * from './lib/atoms/CardBlockTypeSelector';
|
|
9
|
+
export * from './lib/atoms/CardMainContent';
|
|
10
|
+
export * from './lib/atoms/FloatingConnectionLine';
|
|
11
|
+
export * from './lib/atoms/MarkerSelector';
|
|
12
|
+
export * from './lib/atoms/PropertyInput';
|
|
13
|
+
export * from './lib/atoms/StyledBox';
|
|
14
|
+
export * from './lib/contexts/CardDataProvider';
|
|
15
|
+
export * from './lib/contexts/DiagramProvider';
|
|
16
|
+
export * from './lib/contexts/diagramStoreTypes';
|
|
17
|
+
export * from './lib/contexts/onConnect';
|
|
18
|
+
export * from './lib/contexts/onDragStart';
|
|
19
|
+
export * from './lib/contexts/onNodeDragEnd';
|
|
20
|
+
export * from './lib/contexts/onNodesChange';
|
|
21
|
+
export * from './lib/contexts/setContentHeight';
|
|
22
|
+
export * from './lib/contexts/setDiagramType';
|
|
23
|
+
export * from './lib/contexts/setEdges';
|
|
24
|
+
export * from './lib/contexts/setEdgeShapeType';
|
|
25
|
+
export * from './lib/contexts/setNodes';
|
|
26
|
+
export * from './lib/contexts/setNodeSetting';
|
|
27
|
+
export * from './lib/contexts/setPannable';
|
|
28
|
+
export * from './lib/contexts/setSelectedEdge';
|
|
29
|
+
export * from './lib/contexts/setSelectedNode';
|
|
30
|
+
export * from './lib/contexts/undo';
|
|
31
|
+
export * from './lib/contexts/updateNodeSetting';
|
|
32
|
+
export * from './lib/hooks/customUseReactFlow';
|
|
33
|
+
export * from './lib/hooks/updateNodes';
|
|
34
|
+
export * from './lib/hooks/useDragCallbacks';
|
|
35
|
+
export * from './lib/hooks/useModalControls';
|
|
36
|
+
export * from './lib/hooks/useWorkflowNodeActiont';
|
|
37
|
+
export * from './lib/hooks/useAutoRegisterFunctions';
|
|
38
|
+
export * from './lib/molecules/AddingBlock';
|
|
39
|
+
export * from './lib/molecules/animated-add-button';
|
|
40
|
+
export * from './lib/molecules/Block';
|
|
41
|
+
export * from './lib/molecules/BlockProvider';
|
|
42
|
+
export * from './lib/molecules/BlockWrapper';
|
|
43
|
+
export * from './lib/molecules/DraggablePane';
|
|
44
|
+
export * from './lib/molecules/EntityNodeBlocks';
|
|
45
|
+
export * from './lib/molecules/json-viewer';
|
|
46
|
+
export * from './lib/molecules/SideHandles';
|
|
47
|
+
export * from './lib/molecules/StencilItem';
|
|
48
|
+
export * from './lib/molecules/WorkflowNodeActionButtons';
|
|
49
|
+
export * from './lib/organisms/AddNodeView';
|
|
50
|
+
export * from './lib/organisms/DownloadPanel';
|
|
51
|
+
export * from './lib/organisms/EdgeModal';
|
|
52
|
+
export * from './lib/organisms/NodeContextMenu';
|
|
53
|
+
export * from './lib/organisms/SmartDynamicForm';
|
|
54
|
+
export * from './lib/organisms/Stencil';
|
|
55
|
+
export * from './lib/organisms/UseDiagramStore';
|
|
56
|
+
export * from './lib/organisms/ConditionRuleGroup';
|
|
57
|
+
export * from './lib/organisms/WorkflowNode';
|
|
58
|
+
export * from './lib/templates/DiagramContainer';
|
|
59
|
+
export * from './lib/templates/DiagramContent';
|
|
60
|
+
export * from './lib/templates/Diagramming';
|
|
61
|
+
export type { DiagrammingPageRef } from './lib/templates/Diagramming';
|
|
62
|
+
export * from './lib/templates/PageLinks';
|
|
63
|
+
export * from './lib/types/card-node';
|
|
64
|
+
export * from './lib/types/collaboration-types';
|
|
65
|
+
export * from './lib/types/colors';
|
|
66
|
+
export * from './lib/types/edge-types';
|
|
67
|
+
export * from './lib/types/hooks.types';
|
|
68
|
+
export * from './lib/types/node-types';
|
|
69
|
+
export * from './lib/types/SmartDynamicFormField';
|
|
70
|
+
export * from './lib/types/stencil-item';
|
|
71
|
+
export * from './lib/types/structures';
|
|
72
|
+
export * from './lib/types/workflow-content-dynamic-form-type';
|
|
73
|
+
export * from './lib/types/FunctionSignature';
|
|
74
|
+
export * from './lib/utils/add-new-block';
|
|
75
|
+
export * from './lib/utils/add-new-node';
|
|
76
|
+
export * from './lib/utils/addToHistory';
|
|
77
|
+
export * from './lib/utils/closestPoint';
|
|
78
|
+
export * from './lib/utils/color-options';
|
|
79
|
+
export * from './lib/utils/compress-img';
|
|
80
|
+
export * from './lib/utils/constant-lengths';
|
|
81
|
+
export * from './lib/utils/create-updated';
|
|
82
|
+
export * from './lib/utils/createHistoryChange';
|
|
83
|
+
export * from './lib/utils/edge-hooks';
|
|
84
|
+
export * from './lib/utils/elkLayout';
|
|
85
|
+
export * from './lib/utils/event-hooks';
|
|
86
|
+
export * from './lib/utils/event-store';
|
|
87
|
+
export * from './lib/utils/flow-node-hooks';
|
|
88
|
+
export * from './lib/utils/flow-to-js';
|
|
89
|
+
export * from './lib/utils/helpers.types';
|
|
90
|
+
export * from './lib/utils/logger';
|
|
91
|
+
export * from './lib/utils/model-hooks';
|
|
92
|
+
export * from './lib/utils/node-hooks';
|
|
93
|
+
export { useHistory, useHistoryIndex } from './lib/contexts/DiagramProvider';
|
|
94
|
+
export * from './lib/utils/object';
|
|
95
|
+
export * from './lib/utils/nodeutils';
|
|
96
|
+
export * from './lib/utils/utilities';
|
|
97
|
+
export * from './lib/utils/vhToPixels';
|
|
98
|
+
export * from './lib/assets/markers/markers.param';
|
|
99
|
+
export * from './lib/assets/markers/markers.type';
|
|
100
|
+
export * from './lib/organisms/Card/card.params';
|
|
101
|
+
export * from './lib/organisms/Card/card.types';
|
|
102
|
+
export * from './lib/organisms/Card/EntityNode';
|
|
103
|
+
export * from './lib/organisms/CustomEdge/custom-edge-generator';
|
|
104
|
+
export * from './lib/organisms/CustomEdge/custom-edge.params';
|
|
105
|
+
export * from './lib/organisms/CustomEdge/custom-edge.type';
|
|
106
|
+
export * from './lib/organisms/PropertiesPane';
|
|
107
|
+
export * from './lib/organisms/HistoryPane';
|
|
108
|
+
//export * from './lib/types/workflow-node-data-types';
|
|
109
|
+
export * from './lib/templates/node-forms/NodeForm';
|
|
110
|
+
export { AutomationExecutionEngine } from './lib/utils/AutomationExecutionEngine';
|
|
111
|
+
export type {
|
|
112
|
+
AutomationLog,
|
|
113
|
+
AutomationResult,
|
|
114
|
+
} from './lib/utils/AutomationExecutionEngine';
|
|
115
|
+
export * from './lib/components/automation';
|
|
116
|
+
export * from './lib/types/automation-node-data-types';
|
|
@@ -1,99 +1,99 @@
|
|
|
1
|
-
export * from './lib/externals';
|
|
2
|
-
export * from './lib/theme';
|
|
3
|
-
export * from './lib/atoms/AddNodeAnchor';
|
|
4
|
-
export * from './lib/atoms/AddParallelColButton';
|
|
5
|
-
export * from './lib/atoms/BendpointNode';
|
|
6
|
-
export * from './lib/atoms/CardBlockTypeSelector';
|
|
7
|
-
export * from './lib/atoms/CardMainContent';
|
|
8
|
-
export * from './lib/atoms/editable-title';
|
|
9
|
-
export * from './lib/atoms/FloatingConnectionLine';
|
|
10
|
-
export * from './lib/atoms/LazyIcon';
|
|
11
|
-
export * from './lib/atoms/MarkerSelector';
|
|
12
|
-
export * from './lib/atoms/PropertyInput';
|
|
13
|
-
export * from './lib/atoms/StyledBox';
|
|
14
|
-
export * from './lib/contexts/CardDataProvider';
|
|
15
|
-
export * from './lib/contexts/DiagramProvider';
|
|
16
|
-
export * from './lib/contexts/diagramStoreTypes';
|
|
17
|
-
export * from './lib/contexts/onBeforeBendPointCreation';
|
|
18
|
-
export * from './lib/contexts/onConnect';
|
|
19
|
-
export * from './lib/contexts/onDragStart';
|
|
20
|
-
export * from './lib/contexts/onNodeDragEnd';
|
|
21
|
-
export * from './lib/contexts/onNodesChange';
|
|
22
|
-
export * from './lib/contexts/setContentHeight';
|
|
23
|
-
export * from './lib/contexts/setDiagramType';
|
|
24
|
-
export * from './lib/contexts/setEdges';
|
|
25
|
-
export * from './lib/contexts/setEdgeShapeType';
|
|
26
|
-
export * from './lib/contexts/setNodes';
|
|
27
|
-
export * from './lib/contexts/setNodeSetting';
|
|
28
|
-
export * from './lib/contexts/setPannable';
|
|
29
|
-
export * from './lib/contexts/setSelectedEdge';
|
|
30
|
-
export * from './lib/contexts/setSelectedNode';
|
|
31
|
-
export * from './lib/contexts/undo';
|
|
32
|
-
export * from './lib/contexts/updateNodeSetting';
|
|
33
|
-
export * from './lib/hooks/customUseReactFlow';
|
|
34
|
-
export * from './lib/hooks/updateNodes';
|
|
35
|
-
export * from './lib/hooks/useDragCallbacks';
|
|
36
|
-
export * from './lib/hooks/useModalControls';
|
|
37
|
-
export * from './lib/hooks/useWorkflowNodeActiont';
|
|
38
|
-
export * from './lib/molecules/AddingBlock';
|
|
39
|
-
export * from './lib/molecules/animated-add-button';
|
|
40
|
-
export * from './lib/molecules/Block';
|
|
41
|
-
export * from './lib/molecules/BlockProvider';
|
|
42
|
-
export * from './lib/molecules/BlockWrapper';
|
|
43
|
-
export * from './lib/molecules/DraggablePane';
|
|
44
|
-
export * from './lib/molecules/EntityNodeBlocks';
|
|
45
|
-
export * from './lib/molecules/json-viewer';
|
|
46
|
-
export * from './lib/molecules/SideHandles';
|
|
47
|
-
export * from './lib/molecules/StencilItem';
|
|
48
|
-
export * from './lib/molecules/WorkflowNodeActionButtons';
|
|
49
|
-
export * from './lib/organisms/AddNodeView';
|
|
50
|
-
export * from './lib/organisms/DownloadPanel';
|
|
51
|
-
export * from './lib/organisms/EdgeModal';
|
|
52
|
-
export * from './lib/organisms/NodeContextMenu';
|
|
53
|
-
export * from './lib/organisms/SmartDynamicForm';
|
|
54
|
-
export * from './lib/organisms/Stencil';
|
|
55
|
-
export * from './lib/organisms/UseDiagramStore';
|
|
56
|
-
export * from './lib/organisms/WorkflowNode';
|
|
57
|
-
export * from './lib/templates/DiagramContainer';
|
|
58
|
-
export * from './lib/templates/DiagramContent';
|
|
59
|
-
export * from './lib/templates/Diagramming';
|
|
60
|
-
export * from './lib/templates/PageLinks';
|
|
61
|
-
export * from './lib/types/card-node';
|
|
62
|
-
export * from './lib/types/colors';
|
|
63
|
-
export * from './lib/types/edge-types';
|
|
64
|
-
export * from './lib/types/hooks.types';
|
|
65
|
-
export * from './lib/types/node-types';
|
|
66
|
-
export * from './lib/types/SmartDynamicFormField';
|
|
67
|
-
export * from './lib/types/stencil-item';
|
|
68
|
-
export * from './lib/types/structures';
|
|
69
|
-
export * from './lib/types/workflow-content-dynamic-form-type';
|
|
70
|
-
export * from './lib/utils/add-new-block';
|
|
71
|
-
export * from './lib/utils/add-new-node';
|
|
72
|
-
export * from './lib/utils/addToHistory';
|
|
73
|
-
export * from './lib/utils/closestPoint';
|
|
74
|
-
export * from './lib/utils/color-options';
|
|
75
|
-
export * from './lib/utils/compress-img';
|
|
76
|
-
export * from './lib/utils/constant-lengths';
|
|
77
|
-
export * from './lib/utils/create-updated';
|
|
78
|
-
export * from './lib/utils/createHistoryChange';
|
|
79
|
-
export * from './lib/utils/edge-hooks';
|
|
80
|
-
export * from './lib/utils/elkLayout';
|
|
81
|
-
export * from './lib/utils/event-hooks';
|
|
82
|
-
export * from './lib/utils/event-store';
|
|
83
|
-
export * from './lib/utils/flow-node-hooks';
|
|
84
|
-
export * from './lib/utils/helpers.types';
|
|
85
|
-
export * from './lib/utils/logger';
|
|
86
|
-
export * from './lib/utils/model-hooks';
|
|
87
|
-
export * from './lib/utils/node-hooks';
|
|
88
|
-
export * from './lib/utils/object';
|
|
89
|
-
export * from './lib/utils/nodeutils';
|
|
90
|
-
export * from './lib/utils/utilities';
|
|
91
|
-
export * from './lib/utils/vhToPixels';
|
|
92
|
-
export * from './lib/assets/markers/markers.param';
|
|
93
|
-
export * from './lib/assets/markers/markers.type';
|
|
94
|
-
export * from './lib/organisms/Card/card.params';
|
|
95
|
-
export * from './lib/organisms/Card/card.types';
|
|
96
|
-
export * from './lib/organisms/Card/EntityNode';
|
|
97
|
-
export * from './lib/organisms/CustomEdge/custom-edge-generator';
|
|
98
|
-
export * from './lib/organisms/CustomEdge/custom-edge.params';
|
|
99
|
-
export * from './lib/organisms/CustomEdge/custom-edge.type';
|
|
1
|
+
export * from './lib/externals';
|
|
2
|
+
export * from './lib/theme';
|
|
3
|
+
export * from './lib/atoms/AddNodeAnchor';
|
|
4
|
+
export * from './lib/atoms/AddParallelColButton';
|
|
5
|
+
export * from './lib/atoms/BendpointNode';
|
|
6
|
+
export * from './lib/atoms/CardBlockTypeSelector';
|
|
7
|
+
export * from './lib/atoms/CardMainContent';
|
|
8
|
+
export * from './lib/atoms/editable-title';
|
|
9
|
+
export * from './lib/atoms/FloatingConnectionLine';
|
|
10
|
+
export * from './lib/atoms/LazyIcon';
|
|
11
|
+
export * from './lib/atoms/MarkerSelector';
|
|
12
|
+
export * from './lib/atoms/PropertyInput';
|
|
13
|
+
export * from './lib/atoms/StyledBox';
|
|
14
|
+
export * from './lib/contexts/CardDataProvider';
|
|
15
|
+
export * from './lib/contexts/DiagramProvider';
|
|
16
|
+
export * from './lib/contexts/diagramStoreTypes';
|
|
17
|
+
export * from './lib/contexts/onBeforeBendPointCreation';
|
|
18
|
+
export * from './lib/contexts/onConnect';
|
|
19
|
+
export * from './lib/contexts/onDragStart';
|
|
20
|
+
export * from './lib/contexts/onNodeDragEnd';
|
|
21
|
+
export * from './lib/contexts/onNodesChange';
|
|
22
|
+
export * from './lib/contexts/setContentHeight';
|
|
23
|
+
export * from './lib/contexts/setDiagramType';
|
|
24
|
+
export * from './lib/contexts/setEdges';
|
|
25
|
+
export * from './lib/contexts/setEdgeShapeType';
|
|
26
|
+
export * from './lib/contexts/setNodes';
|
|
27
|
+
export * from './lib/contexts/setNodeSetting';
|
|
28
|
+
export * from './lib/contexts/setPannable';
|
|
29
|
+
export * from './lib/contexts/setSelectedEdge';
|
|
30
|
+
export * from './lib/contexts/setSelectedNode';
|
|
31
|
+
export * from './lib/contexts/undo';
|
|
32
|
+
export * from './lib/contexts/updateNodeSetting';
|
|
33
|
+
export * from './lib/hooks/customUseReactFlow';
|
|
34
|
+
export * from './lib/hooks/updateNodes';
|
|
35
|
+
export * from './lib/hooks/useDragCallbacks';
|
|
36
|
+
export * from './lib/hooks/useModalControls';
|
|
37
|
+
export * from './lib/hooks/useWorkflowNodeActiont';
|
|
38
|
+
export * from './lib/molecules/AddingBlock';
|
|
39
|
+
export * from './lib/molecules/animated-add-button';
|
|
40
|
+
export * from './lib/molecules/Block';
|
|
41
|
+
export * from './lib/molecules/BlockProvider';
|
|
42
|
+
export * from './lib/molecules/BlockWrapper';
|
|
43
|
+
export * from './lib/molecules/DraggablePane';
|
|
44
|
+
export * from './lib/molecules/EntityNodeBlocks';
|
|
45
|
+
export * from './lib/molecules/json-viewer';
|
|
46
|
+
export * from './lib/molecules/SideHandles';
|
|
47
|
+
export * from './lib/molecules/StencilItem';
|
|
48
|
+
export * from './lib/molecules/WorkflowNodeActionButtons';
|
|
49
|
+
export * from './lib/organisms/AddNodeView';
|
|
50
|
+
export * from './lib/organisms/DownloadPanel';
|
|
51
|
+
export * from './lib/organisms/EdgeModal';
|
|
52
|
+
export * from './lib/organisms/NodeContextMenu';
|
|
53
|
+
export * from './lib/organisms/SmartDynamicForm';
|
|
54
|
+
export * from './lib/organisms/Stencil';
|
|
55
|
+
export * from './lib/organisms/UseDiagramStore';
|
|
56
|
+
export * from './lib/organisms/WorkflowNode';
|
|
57
|
+
export * from './lib/templates/DiagramContainer';
|
|
58
|
+
export * from './lib/templates/DiagramContent';
|
|
59
|
+
export * from './lib/templates/Diagramming';
|
|
60
|
+
export * from './lib/templates/PageLinks';
|
|
61
|
+
export * from './lib/types/card-node';
|
|
62
|
+
export * from './lib/types/colors';
|
|
63
|
+
export * from './lib/types/edge-types';
|
|
64
|
+
export * from './lib/types/hooks.types';
|
|
65
|
+
export * from './lib/types/node-types';
|
|
66
|
+
export * from './lib/types/SmartDynamicFormField';
|
|
67
|
+
export * from './lib/types/stencil-item';
|
|
68
|
+
export * from './lib/types/structures';
|
|
69
|
+
export * from './lib/types/workflow-content-dynamic-form-type';
|
|
70
|
+
export * from './lib/utils/add-new-block';
|
|
71
|
+
export * from './lib/utils/add-new-node';
|
|
72
|
+
export * from './lib/utils/addToHistory';
|
|
73
|
+
export * from './lib/utils/closestPoint';
|
|
74
|
+
export * from './lib/utils/color-options';
|
|
75
|
+
export * from './lib/utils/compress-img';
|
|
76
|
+
export * from './lib/utils/constant-lengths';
|
|
77
|
+
export * from './lib/utils/create-updated';
|
|
78
|
+
export * from './lib/utils/createHistoryChange';
|
|
79
|
+
export * from './lib/utils/edge-hooks';
|
|
80
|
+
export * from './lib/utils/elkLayout';
|
|
81
|
+
export * from './lib/utils/event-hooks';
|
|
82
|
+
export * from './lib/utils/event-store';
|
|
83
|
+
export * from './lib/utils/flow-node-hooks';
|
|
84
|
+
export * from './lib/utils/helpers.types';
|
|
85
|
+
export * from './lib/utils/logger';
|
|
86
|
+
export * from './lib/utils/model-hooks';
|
|
87
|
+
export * from './lib/utils/node-hooks';
|
|
88
|
+
export * from './lib/utils/object';
|
|
89
|
+
export * from './lib/utils/nodeutils';
|
|
90
|
+
export * from './lib/utils/utilities';
|
|
91
|
+
export * from './lib/utils/vhToPixels';
|
|
92
|
+
export * from './lib/assets/markers/markers.param';
|
|
93
|
+
export * from './lib/assets/markers/markers.type';
|
|
94
|
+
export * from './lib/organisms/Card/card.params';
|
|
95
|
+
export * from './lib/organisms/Card/card.types';
|
|
96
|
+
export * from './lib/organisms/Card/EntityNode';
|
|
97
|
+
export * from './lib/organisms/CustomEdge/custom-edge-generator';
|
|
98
|
+
export * from './lib/organisms/CustomEdge/custom-edge.params';
|
|
99
|
+
export * from './lib/organisms/CustomEdge/custom-edge.type';
|