@metadev/daga 1.5.5 → 1.5.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/Changelog.md +9 -0
- package/fesm2022/metadev-daga.mjs +593 -181
- package/fesm2022/metadev-daga.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/lib/diagram-editor/diagram/diagram-config.d.ts +4 -4
- package/lib/diagram-editor/diagram/diagram-connection.d.ts +3 -2
- package/lib/diagram-editor/diagram/diagram-decorator.d.ts +2 -2
- package/lib/diagram-editor/diagram/diagram-element.d.ts +16 -91
- package/lib/diagram-editor/diagram/diagram-entity.d.ts +109 -0
- package/lib/diagram-editor/diagram/diagram-field.d.ts +11 -2
- package/lib/diagram-editor/diagram/diagram-node.d.ts +7 -6
- package/lib/diagram-editor/diagram/diagram-object.d.ts +2 -2
- package/lib/diagram-editor/diagram/diagram-port.d.ts +2 -2
- package/lib/diagram-editor/diagram/diagram-section.d.ts +5 -5
- package/package.json +1 -1
package/Changelog.md
CHANGED
|
@@ -6,6 +6,15 @@ List of releases and changes.
|
|
|
6
6
|
|
|
7
7
|
## Next release Lobera
|
|
8
8
|
|
|
9
|
+
## v. 1.5.6
|
|
10
|
+
|
|
11
|
+
Date: _2024-10-10_
|
|
12
|
+
|
|
13
|
+
- Filter away removed elements by default [#168](https://github.com/metadevpro/daga/pull/168)
|
|
14
|
+
- Generalize the margin and padding of fields to enable different amounts of margin on each side [#168](https://github.com/metadevpro/daga/pull/168)
|
|
15
|
+
- Enable using the - and + keys for zoom [#168](https://github.com/metadevpro/daga/pull/168)
|
|
16
|
+
- Enable using the arrow keys for panning [#168](https://github.com/metadevpro/daga/pull/168)
|
|
17
|
+
|
|
9
18
|
## v. 1.5.5
|
|
10
19
|
|
|
11
20
|
Date: _2024-10-02_
|