@metadev/daga 1.4.3 → 1.5.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.
|
@@ -327,9 +327,12 @@ export declare const diff: (a: {
|
|
|
327
327
|
[key: string]: unknown;
|
|
328
328
|
}, b: {
|
|
329
329
|
[key: string]: unknown;
|
|
330
|
-
}) => [
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
330
|
+
}) => [
|
|
331
|
+
{
|
|
332
|
+
[key: string]: unknown;
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
[key: string]: unknown;
|
|
336
|
+
}
|
|
337
|
+
];
|
|
335
338
|
export declare const isObject: (x: unknown) => boolean;
|
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.
|
|
4
|
+
"version": "1.5.0",
|
|
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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"angular"
|
|
19
19
|
],
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@angular/common": "^
|
|
22
|
-
"@angular/core": "^
|
|
23
|
-
"@angular/forms": "^
|
|
21
|
+
"@angular/common": "^18.0.1",
|
|
22
|
+
"@angular/core": "^18.0.1",
|
|
23
|
+
"@angular/forms": "^18.0.1",
|
|
24
24
|
"d3": "^7.9.0",
|
|
25
25
|
"rxjs": "~7.8.1",
|
|
26
26
|
"uuid": "^9.0.0"
|