@metadev/daga 3.0.0 → 3.1.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/Changelog.md +15 -1
- package/README.md +11 -1
- package/index.cjs.js +1052 -348
- package/index.esm.js +1040 -345
- package/package.json +1 -1
- package/src/index.d.ts +27 -21
- package/src/lib/diagram/canvas/diagram-canvas.d.ts +6 -11
- package/src/lib/diagram/collab/collab-action.d.ts +58 -2
- package/src/lib/diagram/converters/daga-model.d.ts +1 -0
- package/src/lib/diagram/diagram-action.d.ts +67 -4
- package/src/lib/diagram/diagram-config.d.ts +23 -4
- package/src/lib/diagram/diagram-event.d.ts +74 -8
- package/src/lib/diagram/layout/diagram-layout.d.ts +4 -0
- package/src/lib/diagram/model/diagram-connection.d.ts +3 -2
- package/src/lib/diagram/model/diagram-decorator.d.ts +1 -0
- package/src/lib/diagram/model/diagram-element.d.ts +5 -0
- package/src/lib/diagram/model/diagram-field.d.ts +1 -0
- package/src/lib/diagram/model/diagram-node.d.ts +69 -2
- package/src/lib/diagram/model/diagram-object.d.ts +1 -0
- package/src/lib/diagram/model/diagram-port.d.ts +1 -0
- package/src/lib/diagram/model/diagram-property.d.ts +3 -1
- package/src/lib/diagram/model/diagram-section.d.ts +1 -0
- package/src/lib/interfaces/canvas.d.ts +8 -11
- package/src/lib/util/line.d.ts +6 -1
- package/src/lib/util/shape.d.ts +6 -1
package/Changelog.md
CHANGED
|
@@ -4,7 +4,21 @@ List of releases and changes.
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
## Next release
|
|
7
|
+
## Next release Joyeuse
|
|
8
|
+
|
|
9
|
+
## v. 3.1.0 Excalibur
|
|
10
|
+
|
|
11
|
+
Date: _2025-01-21_
|
|
12
|
+
|
|
13
|
+
- Add node continence [#200](https://github.com/metadevpro/daga/pull/200)
|
|
14
|
+
- Enable defining custom shape functions for nodes in the configuration [#206](https://github.com/metadevpro/daga/pull/206)
|
|
15
|
+
- Fix order of diagram elements [#208](https://github.com/metadevpro/daga/pull/208)
|
|
16
|
+
- Simplify usage of `<daga-diagram>` tag in angular by removing the need to include a `<daga-diagram-editor>` inside [#210](https://github.com/metadevpro/daga/pull/210)
|
|
17
|
+
- Distinguish between diagram actions (which affect the model) and diagram events (which don't affect the model) [#210](https://github.com/metadevpro/daga/pull/210)
|
|
18
|
+
- Add layout action so layouts applied by the user can be undone and redone (which don't affect the model) [#210](https://github.com/metadevpro/daga/pull/210)
|
|
19
|
+
- Add diagram events for the selection and highlight of diagram elements [#212](https://github.com/metadevpro/daga/pull/212) [#214](https://github.com/metadevpro/daga/pull/214)
|
|
20
|
+
- Enable customizing the look of nodes in the palette [#216](https://github.com/metadevpro/daga/pull/216)
|
|
21
|
+
- Enable adding custom line shapes [#217](https://github.com/metadevpro/daga/pull/217)
|
|
8
22
|
|
|
9
23
|
## v. 3.0.0 Curtana
|
|
10
24
|
|
package/README.md
CHANGED
|
@@ -14,7 +14,17 @@ Made and comercial suport by [Metadev](https://metadev.pro).
|
|
|
14
14
|
|
|
15
15
|
## Requirements
|
|
16
16
|
|
|
17
|
-
- Angular
|
|
17
|
+
- Angular
|
|
18
|
+
|
|
19
|
+
### Compatibility Matrix
|
|
20
|
+
|
|
21
|
+
Please ensure you use a compatible Angular version with Daga version.
|
|
22
|
+
|
|
23
|
+
|Daga Version |Angular Version |
|
|
24
|
+
|---------:|-----:|
|
|
25
|
+
|3.x | 19.x |
|
|
26
|
+
|1.5 - 2.x | 18.x |
|
|
27
|
+
|1.x - 1.4 | 17.x |
|
|
18
28
|
|
|
19
29
|
## Build Daga
|
|
20
30
|
|