@ts-graphviz/adapter 2.0.1 → 2.0.3

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 CHANGED
@@ -1,5 +1,33 @@
1
1
  # @ts-graphviz/adapter
2
2
 
3
+ ## 2.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1018](https://github.com/ts-graphviz/ts-graphviz/pull/1018) [`4b3c7d4`](https://github.com/ts-graphviz/ts-graphviz/commit/4b3c7d46e49a18ca05d6ecacbfa13d550039419f) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump lefthook from 1.6.7 to 1.6.10
8
+
9
+ - [#1022](https://github.com/ts-graphviz/ts-graphviz/pull/1022) [`70bbd56`](https://github.com/ts-graphviz/ts-graphviz/commit/70bbd5673da3b83c3655e5f0d23454af6a8dc1d1) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump @types/node from 20.11.24 to 20.12.7
10
+
11
+ - [#1023](https://github.com/ts-graphviz/ts-graphviz/pull/1023) [`fb6789b`](https://github.com/ts-graphviz/ts-graphviz/commit/fb6789b82ce3bc890fa93a59b7d3fb3dc6417b5e) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump typescript from 5.3.3 to 5.4.5
12
+
13
+ - [#1020](https://github.com/ts-graphviz/ts-graphviz/pull/1020) [`7035af8`](https://github.com/ts-graphviz/ts-graphviz/commit/7035af80c275f8e3dd7e94fa2bfd22de45a96d67) Thanks [@kamiazya](https://github.com/kamiazya)! - Support Node.js v22
14
+
15
+ - [#1025](https://github.com/ts-graphviz/ts-graphviz/pull/1025) [`54f6569`](https://github.com/ts-graphviz/ts-graphviz/commit/54f6569c58a91410da97177a6735a1e414467ddd) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps-dev): bump vitest and @vitest/coverage-istanbul
16
+
17
+ - Updated dependencies [[`4b3c7d4`](https://github.com/ts-graphviz/ts-graphviz/commit/4b3c7d46e49a18ca05d6ecacbfa13d550039419f), [`70bbd56`](https://github.com/ts-graphviz/ts-graphviz/commit/70bbd5673da3b83c3655e5f0d23454af6a8dc1d1), [`fb6789b`](https://github.com/ts-graphviz/ts-graphviz/commit/fb6789b82ce3bc890fa93a59b7d3fb3dc6417b5e), [`7035af8`](https://github.com/ts-graphviz/ts-graphviz/commit/7035af80c275f8e3dd7e94fa2bfd22de45a96d67), [`54f6569`](https://github.com/ts-graphviz/ts-graphviz/commit/54f6569c58a91410da97177a6735a1e414467ddd)]:
18
+ - @ts-graphviz/common@2.1.2
19
+
20
+ ## 2.0.2
21
+
22
+ ### Patch Changes
23
+
24
+ - [#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
25
+
26
+ - [#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
27
+
28
+ - Updated dependencies [[`24f4174`](https://github.com/ts-graphviz/ts-graphviz/commit/24f4174a76eaef50fc7d30ae3401c1b23b00789b), [`fabb8c8`](https://github.com/ts-graphviz/ts-graphviz/commit/fabb8c8b9f3ded57d41d7d4f1d669084ab4e91c9)]:
29
+ - @ts-graphviz/common@2.1.1
30
+
3
31
  ## 2.0.1
4
32
 
5
33
  ### Patch Changes
package/lib/deno.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  /// <reference lib="dom" />
2
+ export type * from './types.js';
2
3
  /**
3
4
  * @module @ts-graphviz/adapter
4
5
  */
package/lib/node.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @module @ts-graphviz/adapter
3
3
  */
4
- export type { Options, Format, Layout } from './types.js';
4
+ export type * from './types.js';
5
5
  export * from './to-stream.node.js';
6
6
  export * from './to-file.node.js';
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.1",
3
+ "version": "2.0.3",
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.0"
54
+ "@ts-graphviz/common": "^2.1.2"
55
55
  },
56
56
  "devDependencies": {
57
- "@types/node": "^20.11.24",
58
- "typescript": "^5.3.3",
59
- "vite": "^5.1.3",
57
+ "@types/node": "^20.12.7",
58
+ "typescript": "^5.4.5",
59
+ "vite": "^5.2.8",
60
60
  "vite-plugin-dts": "^3.7.3"
61
61
  },
62
62
  "engines": {