@metadev/daga 1.3.1 → 1.4.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.
Files changed (38) hide show
  1. package/Changelog.md +24 -0
  2. package/assets/styles/_diagram-buttons.scss +71 -37
  3. package/assets/styles/_palette.scss +12 -4
  4. package/assets/styles/_property-editor.scss +0 -3
  5. package/assets/styles/daga.scss +9 -5
  6. package/fesm2022/metadev-daga.mjs +3063 -2589
  7. package/fesm2022/metadev-daga.mjs.map +1 -1
  8. package/index.d.ts +1 -1
  9. package/lib/diagram/diagram.component.d.ts +28 -3
  10. package/lib/diagram-buttons/diagram-buttons.component.d.ts +14 -3
  11. package/lib/diagram-editor/diagram/converters/daga-model.d.ts +5 -0
  12. package/lib/diagram-editor/diagram/diagram-action.d.ts +61 -10
  13. package/lib/diagram-editor/diagram/diagram-canvas.d.ts +25 -7
  14. package/lib/diagram-editor/diagram/diagram-config.d.ts +199 -41
  15. package/lib/diagram-editor/diagram/diagram-connection.d.ts +1 -0
  16. package/lib/diagram-editor/diagram/diagram-element.d.ts +10 -0
  17. package/lib/diagram-editor/diagram/diagram-field.d.ts +11 -4
  18. package/lib/diagram-editor/diagram/diagram-model.d.ts +0 -16
  19. package/lib/diagram-editor/diagram/diagram-node.d.ts +5 -4
  20. package/lib/diagram-editor/diagram/diagram-port.d.ts +1 -0
  21. package/lib/diagram-editor/diagram/diagram-section.d.ts +40 -8
  22. package/lib/diagram-editor/diagram-editor.component.d.ts +2 -1
  23. package/lib/interfaces/canvas.d.ts +42 -17
  24. package/lib/palette/palette.component.d.ts +8 -6
  25. package/lib/property-editor/property-editor.component.d.ts +9 -4
  26. package/lib/services/canvas-provider.service.d.ts +1 -1
  27. package/lib/services/daga-configuration.service.d.ts +1 -1
  28. package/lib/util/events.d.ts +5 -1
  29. package/lib/util/style.d.ts +13 -0
  30. package/lib/util/text-util.d.ts +2 -0
  31. package/package.json +1 -1
  32. package/assets/config/generic-diagram.json +0 -94
  33. package/assets/icon/connection/arrow.svg +0 -23
  34. package/assets/icon/connection/empty-arrow.svg +0 -19
  35. package/assets/icon/connection/empty-diamond.svg +0 -20
  36. package/assets/icon/connection/filled-arrow.svg +0 -19
  37. package/assets/icon/connection/filled-diamond.svg +0 -20
  38. package/assets/icon/connection/line.svg +0 -9
@@ -1,20 +0,0 @@
1
- <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
- <line
3
- x1="10"
4
- y1="25"
5
- x2="100"
6
- y2="25"
7
- stroke="black"
8
- />
9
- <path
10
- d="
11
- M 140, 25
12
- L 100, 5
13
- L 60, 25
14
- L 100, 45
15
- z
16
- "
17
- stroke="black"
18
- fill="white"
19
- />
20
- </svg>
@@ -1,19 +0,0 @@
1
- <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
- <line
3
- x1="10"
4
- y1="25"
5
- x2="120"
6
- y2="25"
7
- stroke="black"
8
- />
9
- <path
10
- d="
11
- M 140, 25
12
- L 120, 5
13
- L 120, 45
14
- z
15
- "
16
- stroke="none"
17
- fill="black"
18
- />
19
- </svg>
@@ -1,20 +0,0 @@
1
- <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
- <line
3
- x1="10"
4
- y1="25"
5
- x2="100"
6
- y2="25"
7
- stroke="black"
8
- />
9
- <path
10
- d="
11
- M 140, 25
12
- L 100, 5
13
- L 60, 25
14
- L 100, 45
15
- z
16
- "
17
- stroke="none"
18
- fill="black"
19
- />
20
- </svg>
@@ -1,9 +0,0 @@
1
- <svg viewBox="0 0 150 50" xmlns="http://www.w3.org/2000/svg">
2
- <line
3
- x1="10"
4
- y1="25"
5
- x2="140"
6
- y2="25"
7
- stroke="black"
8
- />
9
- </svg>