@metadev/daga-react 0.0.1 → 0.0.3

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 CHANGED
@@ -4,15 +4,69 @@ List of releases and changes.
4
4
 
5
5
  ![Daga logo](https://metadev.pro/icons/daga-logo-header.svg)
6
6
 
7
- ## Next release Excalibur
7
+ ## Next release Joyeuse
8
8
 
9
+ ## v. 3.1.5
10
+
11
+ Date: _2025-02-07_
12
+
13
+ - Fix bug with the initial loading of a diagram not working [#226](https://github.com/metadevpro/daga/pull/226)
14
+ - Ensure that the parent element of a diagram has fully loaded before initializing the view [#226](https://github.com/metadevpro/daga/pull/226)
15
+ - Ensure that the elements of a diagram are rendered in the correct order after importing a diagram [#228](https://github.com/metadevpro/daga/pull/228)
16
+ - Add port directionality such that ports can be configured as only allowing incoming connections or only allowing outgoing connections [#229](https://github.com/metadevpro/daga/pull/229)
17
+ - Add port types and enable configuring the look of ports and the start/end point of connections within the port [#230](https://github.com/metadevpro/daga/pull/230)
18
+ - Fix bug where the close icons for some property editor inputs wasn't showing [#231](https://github.com/metadevpro/daga/pull/231)
19
+ - Enable configuring the labels of ports [#233](https://github.com/metadevpro/daga/pull/233)
20
+
21
+ ## v. 3.1.4
22
+
23
+ Date: _2025-01-30_
24
+
25
+ - Make dragging the palette node templates create a clone of the node appended to the diagram root instead of a child of the palette to prevent the palette from being affected by CSS transforms on the diagram [#224](https://github.com/metadevpro/daga/pull/224)
26
+
27
+ ## v. 3.1.3
28
+
29
+ Date: _2025-01-26_
30
+
31
+ - Fix null-check on `DiagramField` setter [#223](https://github.com/metadevpro/daga/pull/223)
32
+
33
+ ## v. 3.1.2
34
+
35
+ Date: _2025-01-24_
36
+
37
+ - Expose configuration and canvas observables in diagram component [#221](https://github.com/metadevpro/daga/pull/221)
38
+ - Fix bug where palette fails to reload properly [#221](https://github.com/metadevpro/daga/pull/221)
39
+
40
+ ## v. 3.1.1
41
+
42
+ Date: _2025-01-23_
43
+
44
+ - Enable switching the configuration of a diagram [#220](https://github.com/metadevpro/daga/pull/220)
45
+ - Remove `viewInitialized$` subject in canvas [#220](https://github.com/metadevpro/daga/pull/220)
46
+
47
+ ## v. 3.1.0 Excalibur
48
+
49
+ Date: _2025-01-21_
50
+
51
+ - Add node continence [#200](https://github.com/metadevpro/daga/pull/200)
52
+ - Enable defining custom shape functions for nodes in the configuration [#206](https://github.com/metadevpro/daga/pull/206)
53
+ - Fix order of diagram elements [#208](https://github.com/metadevpro/daga/pull/208)
54
+ - 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)
55
+ - 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)
56
+ - 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)
57
+ - 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)
58
+ - Enable customizing the look of nodes in the palette [#216](https://github.com/metadevpro/daga/pull/216)
59
+ - Enable adding custom line shapes [#217](https://github.com/metadevpro/daga/pull/217)
60
+
61
+ ## v. 3.0.0 Curtana
62
+
63
+ Date: _2025-01-03_
64
+
65
+ - Port to Angular 19 and update libraries [#202](https://github.com/metadevpro/daga/pull/202)
9
66
  - Enable configuring different looks for palette connection templates based on whether the connection type is the one currently selected or not [#197](https://github.com/metadevpro/daga/pull/197)
10
67
  - Enable configuring the gap in palette elements [#197](https://github.com/metadevpro/daga/pull/197)
11
68
  - Enable placing palette templates in multiple columns if they fit [#197](https://github.com/metadevpro/daga/pull/197)
12
69
  - Use grab cursor style when hovering cursor on node palette templates and pointer cursor style when hovering cursor on connection palette templates [#197](https://github.com/metadevpro/daga/pull/197)
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
70
 
17
71
  ## v. 2.0.0 Lobera
18
72
 
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 18
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