@metadev/daga 3.1.5 → 4.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 +16 -0
- package/index.cjs.js +759 -365
- package/index.esm.js +759 -365
- package/package.json +1 -1
- package/src/index.d.ts +5 -2
- package/src/lib/diagram/canvas/diagram-canvas-util.d.ts +26 -0
- package/src/lib/diagram/canvas/diagram-canvas.d.ts +1 -3
- package/src/lib/diagram/canvas/diagram-context-menu.d.ts +6 -1
- package/src/lib/diagram/config/diagram-canvas-config.d.ts +97 -0
- package/src/lib/diagram/{diagram-config.d.ts → config/diagram-config.d.ts} +23 -294
- package/src/lib/diagram/config/diagram-look-config.d.ts +220 -0
- package/src/lib/diagram/model/diagram-connection.d.ts +86 -26
- package/src/lib/diagram/model/diagram-decorator.d.ts +8 -2
- package/src/lib/diagram/model/diagram-element.d.ts +4 -0
- package/src/lib/diagram/model/diagram-field.d.ts +1 -2
- package/src/lib/diagram/model/diagram-node.d.ts +38 -8
- package/src/lib/diagram/model/diagram-object.d.ts +8 -2
- package/src/lib/diagram/model/diagram-port.d.ts +47 -12
- package/src/lib/diagram/model/diagram-property.d.ts +18 -3
- package/src/lib/diagram/model/diagram-section.d.ts +44 -20
- package/src/lib/interfaces/canvas.d.ts +1 -1
- package/src/lib/util/html-util.d.ts +1 -0
- package/src/lib/util/test-util.d.ts +1 -1
package/Changelog.md
CHANGED
|
@@ -6,6 +6,22 @@ List of releases and changes.
|
|
|
6
6
|
|
|
7
7
|
## Next release Joyeuse
|
|
8
8
|
|
|
9
|
+
## v. 4.0.1
|
|
10
|
+
|
|
11
|
+
- Ensure borders of nodes are fully contained within palette [#253](https://github.com/metadevpro/daga/pull/253)
|
|
12
|
+
- Adjust nodes in palette [#254](https://github.com/metadevpro/daga/pull/254)
|
|
13
|
+
- Fix bug where dragging a decorator creates a multiple selection instead of dragging the node [#257](https://github.com/metadevpro/daga/pull/257)
|
|
14
|
+
- Allow special characters in diagram element identifiers [#258](https://github.com/metadevpro/daga/pull/258)
|
|
15
|
+
- Add custom context menu buttons [#259](https://github.com/metadevpro/daga/pull/259)
|
|
16
|
+
|
|
17
|
+
## v. 4.0.0 Hielo
|
|
18
|
+
|
|
19
|
+
- Expose `viewInitialized$` observable in diagram component [#239](https://github.com/metadevpro/daga/pull/239)
|
|
20
|
+
- Throw error when a diagram element is initialized with an empty or null id to prevent errors with selectors caused by empty ids [#240](https://github.com/metadevpro/daga/pull/240)
|
|
21
|
+
- Change the structure of the configuration for the looks of nodes, sections, ports and connections [#244](https://github.com/metadevpro/daga/pull/244)
|
|
22
|
+
- Ensure that the type of a node can be changed safely [#244](https://github.com/metadevpro/daga/pull/244)
|
|
23
|
+
- Fix error with text map properties disappearing on update [#245](https://github.com/metadevpro/daga/pull/245)
|
|
24
|
+
|
|
9
25
|
## v. 3.1.5
|
|
10
26
|
|
|
11
27
|
Date: _2025-02-07_
|