@ts-graphviz/adapter 2.0.1 → 2.0.2
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 +11 -0
- package/lib/deno.d.ts +1 -0
- package/lib/node.d.ts +1 -1
- package/lib/types.d.ts +4 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @ts-graphviz/adapter
|
|
2
2
|
|
|
3
|
+
## 2.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1003](https://github.com/ts-graphviz/ts-graphviz/pull/1003) [`24f4174`](https://github.com/ts-graphviz/ts-graphviz/commit/24f4174a76eaef50fc7d30ae3401c1b23b00789b) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump vite from 5.1.3 to 5.2.8
|
|
8
|
+
|
|
9
|
+
- [#1004](https://github.com/ts-graphviz/ts-graphviz/pull/1004) [`fabb8c8`](https://github.com/ts-graphviz/ts-graphviz/commit/fabb8c8b9f3ded57d41d7d4f1d669084ab4e91c9) Thanks [@kamiazya](https://github.com/kamiazya)! - Fix documentation build failed
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`24f4174`](https://github.com/ts-graphviz/ts-graphviz/commit/24f4174a76eaef50fc7d30ae3401c1b23b00789b), [`fabb8c8`](https://github.com/ts-graphviz/ts-graphviz/commit/fabb8c8b9f3ded57d41d7d4f1d669084ab4e91c9)]:
|
|
12
|
+
- @ts-graphviz/common@2.1.1
|
|
13
|
+
|
|
3
14
|
## 2.0.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/lib/deno.d.ts
CHANGED
package/lib/node.d.ts
CHANGED
package/lib/types.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare namespace Layout {
|
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* NeatoOptions interface provides options for the neato layout.
|
|
20
|
+
* @public
|
|
20
21
|
*/
|
|
21
22
|
export interface NeatoOptions {
|
|
22
23
|
layout: 'neato';
|
|
@@ -31,6 +32,7 @@ export interface NeatoOptions {
|
|
|
31
32
|
}
|
|
32
33
|
/**
|
|
33
34
|
* FdpOptions interface provides options for the fdp layout.
|
|
35
|
+
* @public
|
|
34
36
|
*/
|
|
35
37
|
export interface FdpOptions {
|
|
36
38
|
layout: 'fdp';
|
|
@@ -64,10 +66,10 @@ export interface FdpOptions {
|
|
|
64
66
|
temperature?: number;
|
|
65
67
|
}
|
|
66
68
|
/**
|
|
67
|
-
* @description
|
|
68
69
|
* This interface describes an optional parameter called "layout" which is used to set a layout engine.
|
|
69
70
|
* The default value for this parameter is 'dot', and it must be an option of the Layout type,
|
|
70
71
|
* excluding 'neato' and 'fdp'.
|
|
72
|
+
* @public
|
|
71
73
|
*/
|
|
72
74
|
export interface OtherOptions {
|
|
73
75
|
/**
|
|
@@ -79,6 +81,7 @@ export interface OtherOptions {
|
|
|
79
81
|
}
|
|
80
82
|
/**
|
|
81
83
|
* This interface represents the CommonOptions for setting output format.
|
|
84
|
+
* @public
|
|
82
85
|
*/
|
|
83
86
|
export interface CommonOptions {
|
|
84
87
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-graphviz/adapter",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Graphviz Runtime adapters for Cross Platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphviz",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"module": "./lib/node.js",
|
|
52
52
|
"types": "./lib/node.d.ts",
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@ts-graphviz/common": "^2.1.
|
|
54
|
+
"@ts-graphviz/common": "^2.1.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/node": "^20.11.24",
|
|
58
58
|
"typescript": "^5.3.3",
|
|
59
|
-
"vite": "^5.
|
|
59
|
+
"vite": "^5.2.8",
|
|
60
60
|
"vite-plugin-dts": "^3.7.3"
|
|
61
61
|
},
|
|
62
62
|
"engines": {
|