@foblex/flow 1.4.5 → 1.5.0
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/README.md +18 -38
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,49 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
`@foblex/flow` is an Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.
|
|
1
|
+
### Welcome to the @foblex/flow
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
`@foblex/flow` is an Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
### Features
|
|
7
6
|
|
|
8
|
-
1. Node and
|
|
9
|
-
2. Connection and
|
|
10
|
-
3. Reassigning
|
|
11
|
-
4. Customizable
|
|
7
|
+
1. Node and Connection creation and manipulation.
|
|
8
|
+
2. Connection and Node events.
|
|
9
|
+
3. Reassigning Nodes and Connections.
|
|
10
|
+
4. Customizable Node and Connection templates.
|
|
12
11
|
5. Drag-and-drop support.
|
|
13
12
|
6. Zoom and pan support.
|
|
14
13
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
```typescript
|
|
26
|
-
<f-flow>
|
|
27
|
-
<f-canvas>
|
|
28
|
-
<f-connection fOutputId="1" fInputId="2"></f-connection>
|
|
29
|
-
<div fNode [fNodePosition]="{ x:100, y:100 }">
|
|
30
|
-
<div fNodeOutput fOutputId="1">
|
|
31
|
-
Node content
|
|
32
|
-
</div>
|
|
33
|
-
</div>
|
|
34
|
-
<div fNode [fNodePosition]="{ x:300, y:100 }">
|
|
35
|
-
<div fNodeInput fInputId="2">
|
|
36
|
-
Node content
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
</f-canvas>
|
|
40
|
-
</f-flow>
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
## License and Access to Source Code
|
|
14
|
+
### Getting Started and Documentation
|
|
15
|
+
|
|
16
|
+
Visit the [Foblex Flow Documentation](https://www.foblex.com/flow/documentation) to learn how to install and use the library in your Angular project.
|
|
17
|
+
|
|
18
|
+
### Support and Community
|
|
19
|
+
|
|
20
|
+
For questions, feedback, and support, visit the [Foblex Portal](https://www.foblex.com/flow/home) to connect with the community and the development team.
|
|
21
|
+
You can also report [issues](https://github.com/Foblex/flow/issues) and request [features](https://github.com/Foblex/flow/discussions) on the [GitHub repository](https://github.com/Foblex/flow).
|
|
22
|
+
|
|
23
|
+
### License and Access to Source Code
|
|
44
24
|
|
|
45
25
|
This library is available for use under the MIT License, allowing free use, modification, and distribution of the minified version of the library in your projects.
|
|
46
26
|
|
|
47
27
|
If you are interested in accessing the full source code of the library for purposes of study, modification, or deeper integration with your projects, we offer separate licenses for the source code. Purchasing such a license will grant you the right to use, modify, and distribute the source code according to the terms set forth in the licensing agreement.
|
|
48
28
|
|
|
49
|
-
For more information and to purchase a source code license, please contact us at www.foblex.com.
|
|
29
|
+
For more information and to purchase a source code license, please contact us at [Foblex](https://www.foblex.com/flow/home).
|
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foblex/flow",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "An Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"author": "Siarhei Huzarevich",
|
|
8
|
-
"docs": "https://foblex.com/flow/documentation
|
|
9
|
-
"repository":
|
|
8
|
+
"docs": "https://foblex.com/flow/documentation",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/foblex/flow.git"
|
|
12
|
+
},
|
|
10
13
|
"license": "MIT",
|
|
11
14
|
"private": false,
|
|
12
15
|
"keywords": [
|