@metadev/daga 4.0.1 → 4.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 +25 -0
- package/index.cjs.js +478 -194
- package/index.esm.js +478 -194
- package/package.json +1 -1
- package/src/index.d.ts +8 -5
- package/src/lib/diagram/canvas/diagram-canvas-util.d.ts +10 -0
- package/src/lib/diagram/canvas/diagram-canvas.d.ts +4 -1
- package/src/lib/diagram/canvas/diagram-user-selection.d.ts +1 -1
- package/src/lib/diagram/collab/collab-action.d.ts +32 -2
- package/src/lib/diagram/config/diagram-canvas-config.d.ts +6 -0
- package/src/lib/diagram/config/diagram-components-config.d.ts +249 -0
- package/src/lib/diagram/config/diagram-config.d.ts +33 -248
- package/src/lib/diagram/diagram-action.d.ts +23 -0
- package/src/lib/diagram/layout/adjacency-layout.d.ts +2 -0
- package/src/lib/diagram/layout/breadth-adjacency-layout.d.ts +2 -0
- package/src/lib/diagram/layout/breadth-layout.d.ts +2 -0
- package/src/lib/diagram/layout/force-layout.d.ts +2 -0
- package/src/lib/diagram/layout/horizontal-layout.d.ts +2 -0
- package/src/lib/diagram/layout/priority-layout.d.ts +2 -0
- package/src/lib/diagram/layout/tree-layout.d.ts +2 -0
- package/src/lib/diagram/layout/vertical-layout.d.ts +2 -0
- package/src/lib/diagram/model/diagram-connection.d.ts +2 -1
- package/src/lib/diagram/model/diagram-model.d.ts +2 -1
- package/src/lib/diagram/model/diagram-node.d.ts +25 -2
- package/src/lib/diagram/property/property-util.d.ts +61 -0
- package/src/lib/diagram/property/property.d.ts +146 -0
- package/src/lib/diagram/property/value.d.ts +163 -0
- package/src/lib/interfaces/canvas.d.ts +14 -1
- package/src/lib/interfaces/property-editor.d.ts +1 -1
- package/src/lib/diagram/model/diagram-property.d.ts +0 -368
package/Changelog.md
CHANGED
|
@@ -6,6 +6,31 @@ List of releases and changes.
|
|
|
6
6
|
|
|
7
7
|
## Next release Joyeuse
|
|
8
8
|
|
|
9
|
+
## v. 4.1.0
|
|
10
|
+
|
|
11
|
+
- Add methods for adding and removing rows and columns of sections in a node.
|
|
12
|
+
- Allow toggling gapSize in layout algorithms [#279](https://github.com/metadevpro/daga/pull/279)
|
|
13
|
+
- Raise ports after raising sections inside nodes so that sections don't hide ports [#280](https://github.com/metadevpro/daga/pull/280)
|
|
14
|
+
- Add `fieldRootFitsInView()` method to canvas [#281](https://github.com/metadevpro/daga/pull/281)
|
|
15
|
+
- Add `shrink` parameter to canvas method `fitFieldRootInView()` to toggle whether nodes and sections should be shrunk as part of the fitting process [#282](https://github.com/metadevpro/daga/pull/282)
|
|
16
|
+
- Set root vlaue of property to default value when resetting values [#284](https://github.com/metadevpro/daga/pull/284)
|
|
17
|
+
|
|
18
|
+
## v. 4.0.3
|
|
19
|
+
|
|
20
|
+
- Allow angular 20.
|
|
21
|
+
- Fix bug with connections breaking when they have an id which is not a valid CSS selector [#277](https://github.com/metadevpro/daga/pull/277)
|
|
22
|
+
|
|
23
|
+
## v. 4.0.2
|
|
24
|
+
|
|
25
|
+
- Add grid style [#261](https://github.com/metadevpro/daga/pull/261)
|
|
26
|
+
- Fix bug where user could perform an action they are not allowed to by using the keyboard [#264](https://github.com/metadevpro/daga/pull/264)
|
|
27
|
+
- Fix bug with boolean input not displaying properly in React [#266](https://github.com/metadevpro/daga/pull/266)
|
|
28
|
+
- Fix bug with not being able to edit nested value sets in property editor in React [#267](https://github.com/metadevpro/daga/pull/267)
|
|
29
|
+
- Fix bug with hexadecimal characters not allowed in colors [#268](https://github.com/metadevpro/daga/pull/268)
|
|
30
|
+
- Make diagram decorators behave as extensions of their diagram node when clicking or hovering over them [#270](https://github.com/metadevpro/daga/pull/270)
|
|
31
|
+
- Make zoom not affect multiple selection rectangle [#271](https://github.com/metadevpro/daga/pull/271)
|
|
32
|
+
- Enable making decorators inherent to a node type [#272](https://github.com/metadevpro/daga/pull/272)
|
|
33
|
+
|
|
9
34
|
## v. 4.0.1
|
|
10
35
|
|
|
11
36
|
- Ensure borders of nodes are fully contained within palette [#253](https://github.com/metadevpro/daga/pull/253)
|