@ts-graphviz/adapter 2.0.4 → 2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af
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 +9 -0
- package/lib/create-command-and-args.d.ts +1 -1
- package/lib/create-command-args.d.ts +2 -2
- package/lib/deno.d.ts +1 -4
- package/lib/to-file.node.d.ts +1 -1
- package/lib/to-stream.node.d.ts +1 -2
- package/lib/types.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @ts-graphviz/adapter
|
|
2
2
|
|
|
3
|
+
## 2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1179](https://github.com/ts-graphviz/ts-graphviz/pull/1179) [`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946) Thanks [@kamiazya](https://github.com/kamiazya)! - build(deps-dev): bump vite-plugin-dts from 3.9.1 to 4.2.1
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946)]:
|
|
10
|
+
- @ts-graphviz/common@2.1.4-next-6bb5ab18682daa1410de4a35edc22316487989af
|
|
11
|
+
|
|
3
12
|
## 2.0.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { Attribute, AttributeKey } from '@ts-graphviz/common';
|
|
2
|
+
import { Layout, Options } from './types.js';
|
|
3
3
|
/**
|
|
4
4
|
* escapeValue is a function that escapes a given Attribute value of a given AttributeKey.
|
|
5
5
|
* It checks the type of the value and adds quotes if the value is of type string and contains whitespace.
|
package/lib/deno.d.ts
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
+
import { Layout, Options } from './types.js';
|
|
1
2
|
/// <reference lib="dom" />
|
|
2
3
|
export type * from './types.js';
|
|
3
|
-
/**
|
|
4
|
-
* @module @ts-graphviz/adapter
|
|
5
|
-
*/
|
|
6
|
-
import type { Layout, Options } from './types.js';
|
|
7
4
|
/**
|
|
8
5
|
* Execute the Graphviz dot command and make a Stream of the results.
|
|
9
6
|
*/
|
package/lib/to-file.node.d.ts
CHANGED
package/lib/to-stream.node.d.ts
CHANGED
package/lib/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { $keywords, $keywordsValidation, EdgeAttributesObject, GraphAttributesObject, NodeAttributesObject, SubgraphAttributesObject } from '@ts-graphviz/common';
|
|
2
2
|
export type Format = Format.values;
|
|
3
3
|
export declare namespace Format {
|
|
4
4
|
type values = Exclude<keyof $values, keyof $exclude | symbol | number>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-graphviz/adapter",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af",
|
|
4
4
|
"description": "Graphviz Runtime adapters for Cross Platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphviz",
|
|
@@ -51,13 +51,13 @@
|
|
|
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.4-next-6bb5ab18682daa1410de4a35edc22316487989af"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/node": "^20.12.7",
|
|
58
58
|
"typescript": "^5.4.5",
|
|
59
59
|
"vite": "^5.2.8",
|
|
60
|
-
"vite-plugin-dts": "^
|
|
60
|
+
"vite-plugin-dts": "^4.2.1"
|
|
61
61
|
},
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": ">=18"
|