@metadev/daga-react 0.0.4 → 1.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 +22 -0
- package/index.js +2 -2
- package/index.mjs +3090 -2977
- package/lib/property-editor/PropertyEditor.d.ts +1 -1
- package/lib/property-editor/object-editor/DagaObjectEditorComponent.d.ts +1 -1
- package/package.json +2 -2
package/Changelog.md
CHANGED
|
@@ -6,10 +6,32 @@ List of releases and changes.
|
|
|
6
6
|
|
|
7
7
|
## Next release Joyeuse
|
|
8
8
|
|
|
9
|
+
## v. 4.0.2
|
|
10
|
+
|
|
11
|
+
- Add grid style [#261](https://github.com/metadevpro/daga/pull/261)
|
|
12
|
+
- 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)
|
|
13
|
+
- Fix bug with boolean input not displaying properly in React [#266](https://github.com/metadevpro/daga/pull/266)
|
|
14
|
+
- Fix bug with not being able to edit nested value sets in property editor in React [#267](https://github.com/metadevpro/daga/pull/267)
|
|
15
|
+
- Fix bug with hexadecimal characters not allowed in colors [#268](https://github.com/metadevpro/daga/pull/268)
|
|
16
|
+
- Make diagram decorators behave as extensions of their diagram node when clicking or hovering over them [#270](https://github.com/metadevpro/daga/pull/270)
|
|
17
|
+
- Make zoom not affect multiple selection rectangle [#271](https://github.com/metadevpro/daga/pull/271)
|
|
18
|
+
- Enable making decorators inherent to a node type [#272](https://github.com/metadevpro/daga/pull/272)
|
|
19
|
+
|
|
20
|
+
## v. 4.0.1
|
|
21
|
+
|
|
22
|
+
- Ensure borders of nodes are fully contained within palette [#253](https://github.com/metadevpro/daga/pull/253)
|
|
23
|
+
- Adjust nodes in palette [#254](https://github.com/metadevpro/daga/pull/254)
|
|
24
|
+
- Fix bug where dragging a decorator creates a multiple selection instead of dragging the node [#257](https://github.com/metadevpro/daga/pull/257)
|
|
25
|
+
- Allow special characters in diagram element identifiers [#258](https://github.com/metadevpro/daga/pull/258)
|
|
26
|
+
- Add custom context menu buttons [#259](https://github.com/metadevpro/daga/pull/259)
|
|
27
|
+
|
|
28
|
+
## v. 4.0.0 Hielo
|
|
29
|
+
|
|
9
30
|
- Expose `viewInitialized$` observable in diagram component [#239](https://github.com/metadevpro/daga/pull/239)
|
|
10
31
|
- 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)
|
|
11
32
|
- Change the structure of the configuration for the looks of nodes, sections, ports and connections [#244](https://github.com/metadevpro/daga/pull/244)
|
|
12
33
|
- Ensure that the type of a node can be changed safely [#244](https://github.com/metadevpro/daga/pull/244)
|
|
34
|
+
- Fix error with text map properties disappearing on update [#245](https://github.com/metadevpro/daga/pull/245)
|
|
13
35
|
|
|
14
36
|
## v. 3.1.5
|
|
15
37
|
|