@metadev/daga-react 4.2.10 → 5.0.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/Changelog.md +13 -2
- package/index.d.ts +1 -1
- package/index.js +2 -2
- package/index.mjs +2239 -2198
- package/package.json +2 -2
package/Changelog.md
CHANGED
|
@@ -4,7 +4,18 @@ List of releases and changes.
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
## Next release
|
|
7
|
+
## Next release Durendal
|
|
8
|
+
|
|
9
|
+
## 5.0.1
|
|
10
|
+
|
|
11
|
+
- Update libraries and peer dependences
|
|
12
|
+
|
|
13
|
+
## 5.0.0 Joyeuse
|
|
14
|
+
|
|
15
|
+
- Support for Angular 21 [#346](https://github.com/metadevpro/daga/pull/346)
|
|
16
|
+
- Ensure that an array remains an array after cloning [#349](https://github.com/metadevpro/daga/pull/349)
|
|
17
|
+
- When checking if a port is being shared, ignore connections that have been removed [#350](https://github.com/metadevpro/daga/pull/350)
|
|
18
|
+
- Create `DiagramZoomEvent` to enable listening to user zooming and panning events [#351](https://github.com/metadevpro/daga/pull/351)
|
|
8
19
|
|
|
9
20
|
## v. 4.2.10
|
|
10
21
|
|
|
@@ -161,7 +172,7 @@ Date: _2025-01-21_
|
|
|
161
172
|
- Add node continence [#200](https://github.com/metadevpro/daga/pull/200)
|
|
162
173
|
- Enable defining custom shape functions for nodes in the configuration [#206](https://github.com/metadevpro/daga/pull/206)
|
|
163
174
|
- Fix order of diagram elements [#208](https://github.com/metadevpro/daga/pull/208)
|
|
164
|
-
- Simplify usage of `<daga-diagram>` tag in
|
|
175
|
+
- 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)
|
|
165
176
|
- 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)
|
|
166
177
|
- 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)
|
|
167
178
|
- 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)
|
package/index.d.ts
CHANGED