@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.
- package/Changelog.md +24 -0
- package/assets/styles/_diagram-buttons.scss +71 -37
- package/assets/styles/_palette.scss +12 -4
- package/assets/styles/_property-editor.scss +0 -3
- package/assets/styles/daga.scss +9 -5
- package/fesm2022/metadev-daga.mjs +3063 -2589
- package/fesm2022/metadev-daga.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/lib/diagram/diagram.component.d.ts +28 -3
- package/lib/diagram-buttons/diagram-buttons.component.d.ts +14 -3
- package/lib/diagram-editor/diagram/converters/daga-model.d.ts +5 -0
- package/lib/diagram-editor/diagram/diagram-action.d.ts +61 -10
- package/lib/diagram-editor/diagram/diagram-canvas.d.ts +25 -7
- package/lib/diagram-editor/diagram/diagram-config.d.ts +199 -41
- package/lib/diagram-editor/diagram/diagram-connection.d.ts +1 -0
- package/lib/diagram-editor/diagram/diagram-element.d.ts +10 -0
- package/lib/diagram-editor/diagram/diagram-field.d.ts +11 -4
- package/lib/diagram-editor/diagram/diagram-model.d.ts +0 -16
- package/lib/diagram-editor/diagram/diagram-node.d.ts +5 -4
- package/lib/diagram-editor/diagram/diagram-port.d.ts +1 -0
- package/lib/diagram-editor/diagram/diagram-section.d.ts +40 -8
- package/lib/diagram-editor/diagram-editor.component.d.ts +2 -1
- package/lib/interfaces/canvas.d.ts +42 -17
- package/lib/palette/palette.component.d.ts +8 -6
- package/lib/property-editor/property-editor.component.d.ts +9 -4
- package/lib/services/canvas-provider.service.d.ts +1 -1
- package/lib/services/daga-configuration.service.d.ts +1 -1
- package/lib/util/events.d.ts +5 -1
- package/lib/util/style.d.ts +13 -0
- package/lib/util/text-util.d.ts +2 -0
- package/package.json +1 -1
- package/assets/config/generic-diagram.json +0 -94
- package/assets/icon/connection/arrow.svg +0 -23
- package/assets/icon/connection/empty-arrow.svg +0 -19
- package/assets/icon/connection/empty-diamond.svg +0 -20
- package/assets/icon/connection/filled-arrow.svg +0 -19
- package/assets/icon/connection/filled-diamond.svg +0 -20
- 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>
|