@foblex/flow 17.9.3 → 17.9.6
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/esm2022/drag-toolkit/event.extensions.mjs +2 -2
- package/esm2022/f-canvas/f-canvas.component.mjs +3 -3
- package/esm2022/f-connection/common/f-connection-base.mjs +3 -3
- package/esm2022/f-connection/f-connection/f-connection.component.mjs +3 -3
- package/esm2022/f-draggable/f-draggable.directive.mjs +1 -1
- package/esm2022/f-flow/f-flow.component.mjs +2 -2
- package/esm2022/f-zoom/f-zoom.directive.mjs +42 -33
- package/f-canvas/f-canvas.component.d.ts +1 -1
- package/f-connection/common/f-connection-base.d.ts +1 -1
- package/f-zoom/f-zoom.directive.d.ts +11 -10
- package/fesm2022/foblex-flow.mjs +48 -40
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/collection.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foblex/flow",
|
|
3
|
-
"version": "17.9.
|
|
3
|
+
"version": "17.9.6",
|
|
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",
|
|
@@ -6,10 +6,15 @@
|
|
|
6
6
|
"factory": "./ng-add/index#ngAdd",
|
|
7
7
|
"schema": "./ng-add/schema.json"
|
|
8
8
|
},
|
|
9
|
+
"add": {
|
|
10
|
+
"description": "Installs @foblex/flow and its dependencies (alias for Nx users)",
|
|
11
|
+
"factory": "./ng-add/index#ngAdd",
|
|
12
|
+
"schema": "./ng-add/schema.json"
|
|
13
|
+
},
|
|
9
14
|
"ng-update": {
|
|
10
15
|
"description": "Updates @foblex/flow to the latest version",
|
|
11
16
|
"factory": "./ng-update/index#ngUpdate",
|
|
12
17
|
"schema": "./ng-update/schema.json"
|
|
13
|
-
}
|
|
18
|
+
}
|
|
14
19
|
}
|
|
15
20
|
}
|