@metadev/daga 1.5.6 → 1.5.7
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 +6 -1
- package/assets/styles/_collapse-button.scss +37 -37
- package/assets/styles/_context-menu.scss +9 -9
- package/assets/styles/_diagram-buttons.scss +166 -166
- package/assets/styles/_diagram.scss +15 -15
- package/assets/styles/_errors.scss +83 -83
- package/assets/styles/_palette.scss +20 -20
- package/assets/styles/_property-editor.scss +47 -47
- package/assets/styles/daga.scss +17 -17
- package/fesm2022/metadev-daga.mjs +114 -94
- package/fesm2022/metadev-daga.mjs.map +1 -1
- package/lib/property-editor/property-editor.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -4,6 +4,10 @@ import { ValueSet } from '../diagram-editor/diagram/diagram-property';
|
|
|
4
4
|
import { PropertyEditor } from '../interfaces/property-editor';
|
|
5
5
|
import { Corner, Side } from '../util/svg-util';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Duration of the highlight property animation in milliseconds.
|
|
9
|
+
*/
|
|
10
|
+
export declare const HIGHLIGHT_ANIMATION_DURATION_MS = 1000;
|
|
7
11
|
/**
|
|
8
12
|
* Editor of the values of a value set.
|
|
9
13
|
* @see ValueSet
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metadev/daga",
|
|
3
3
|
"description": "Diagramming engine for editing models on the Web. Made by Metadev.",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.7",
|
|
5
5
|
"author": "Metadev (https://metadev.pro)",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
7
|
"repository": "git+https://github.com/metadevpro/daga-tutorial.git",
|