@ts-graphviz/core 2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c → 2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
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 -3
- package/lib/AttributeList.d.ts +7 -7
- package/lib/AttributesBase.d.ts +5 -5
- package/lib/AttributesGroup.d.ts +6 -6
- package/lib/Digraph.d.ts +7 -7
- package/lib/Graph.d.ts +7 -7
- package/lib/GraphBase.d.ts +4 -4
- package/lib/Node.d.ts +11 -11
- package/lib/RootGraph.d.ts +7 -7
- package/lib/Subgraph.d.ts +6 -6
- package/lib/core.d.ts +14 -14
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
# @ts-graphviz/core
|
|
2
2
|
|
|
3
|
-
## 2.0.5-next-
|
|
3
|
+
## 2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
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 [[`03bafa0`](https://github.com/ts-graphviz/ts-graphviz/commit/03bafa0e10b43807b5568df4ffba720752a0ac02), [`6bb5ab1`](https://github.com/ts-graphviz/ts-graphviz/commit/6bb5ab18682daa1410de4a35edc22316487989af), [`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946)]:
|
|
10
|
+
- @ts-graphviz/ast@2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
|
|
11
|
+
- @ts-graphviz/common@2.1.4-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
|
|
9
12
|
|
|
10
13
|
## 2.0.4
|
|
11
14
|
|
package/lib/AttributeList.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import { AttributeListKind } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributeListModel } from '@ts-graphviz/common';
|
|
5
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
6
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
7
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* A set of attribute values for any object.
|
package/lib/AttributesBase.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Base class for DOT objects with attributes.
|
package/lib/AttributesGroup.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesGroupModel } from '@ts-graphviz/common';
|
|
6
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Base class for DOT objects with attributes.
|
package/lib/Digraph.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
2
|
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
6
6
|
import { EdgeAttributesObject } from '@ts-graphviz/common';
|
|
7
7
|
import { EdgeModel } from '@ts-graphviz/common';
|
|
8
8
|
import { EdgeTargetLikeTuple } from '@ts-graphviz/common';
|
|
9
|
-
import
|
|
10
|
-
import
|
|
9
|
+
import { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
+
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
11
11
|
import { GraphBaseModel } from '@ts-graphviz/common';
|
|
12
12
|
import { GraphCommonAttributes } from '@ts-graphviz/common';
|
|
13
13
|
import { ModelsContext } from '@ts-graphviz/common';
|
|
14
14
|
import { NodeAttributesObject } from '@ts-graphviz/common';
|
|
15
15
|
import { NodeModel } from '@ts-graphviz/common';
|
|
16
|
-
import
|
|
16
|
+
import { RootGraphModel } from '@ts-graphviz/common';
|
|
17
17
|
import { SubgraphAttributesObject } from '@ts-graphviz/common';
|
|
18
18
|
import { SubgraphModel } from '@ts-graphviz/common';
|
|
19
19
|
|
package/lib/Graph.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
2
|
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
6
6
|
import { EdgeAttributesObject } from '@ts-graphviz/common';
|
|
7
7
|
import { EdgeModel } from '@ts-graphviz/common';
|
|
8
8
|
import { EdgeTargetLikeTuple } from '@ts-graphviz/common';
|
|
9
|
-
import
|
|
10
|
-
import
|
|
9
|
+
import { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
+
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
11
11
|
import { GraphBaseModel } from '@ts-graphviz/common';
|
|
12
12
|
import { GraphCommonAttributes } from '@ts-graphviz/common';
|
|
13
13
|
import { ModelsContext } from '@ts-graphviz/common';
|
|
14
14
|
import { NodeAttributesObject } from '@ts-graphviz/common';
|
|
15
15
|
import { NodeModel } from '@ts-graphviz/common';
|
|
16
|
-
import
|
|
16
|
+
import { RootGraphModel } from '@ts-graphviz/common';
|
|
17
17
|
import { SubgraphAttributesObject } from '@ts-graphviz/common';
|
|
18
18
|
import { SubgraphModel } from '@ts-graphviz/common';
|
|
19
19
|
|
package/lib/GraphBase.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
2
|
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
6
6
|
import { EdgeAttributesObject } from '@ts-graphviz/common';
|
|
7
7
|
import { EdgeModel } from '@ts-graphviz/common';
|
|
8
8
|
import { EdgeTargetLikeTuple } from '@ts-graphviz/common';
|
package/lib/Node.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesGroupModel } from '@ts-graphviz/common';
|
|
6
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
7
|
+
import { ForwardRefNode } from '@ts-graphviz/common';
|
|
8
|
+
import { NodeAttributeKey } from '@ts-graphviz/common';
|
|
9
|
+
import { NodeAttributesObject } from '@ts-graphviz/common';
|
|
10
|
+
import { NodeModel } from '@ts-graphviz/common';
|
|
11
|
+
import { Port } from '@ts-graphviz/common';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Base class for DOT objects with attributes.
|
package/lib/RootGraph.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
2
|
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
6
6
|
import { EdgeAttributesObject } from '@ts-graphviz/common';
|
|
7
7
|
import { EdgeModel } from '@ts-graphviz/common';
|
|
8
8
|
import { EdgeTargetLikeTuple } from '@ts-graphviz/common';
|
|
9
|
-
import
|
|
10
|
-
import
|
|
9
|
+
import { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
+
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
11
11
|
import { GraphBaseModel } from '@ts-graphviz/common';
|
|
12
12
|
import { GraphCommonAttributes } from '@ts-graphviz/common';
|
|
13
13
|
import { ModelsContext } from '@ts-graphviz/common';
|
|
14
14
|
import { NodeAttributesObject } from '@ts-graphviz/common';
|
|
15
15
|
import { NodeModel } from '@ts-graphviz/common';
|
|
16
|
-
import
|
|
16
|
+
import { RootGraphModel } from '@ts-graphviz/common';
|
|
17
17
|
import { SubgraphAttributesObject } from '@ts-graphviz/common';
|
|
18
18
|
import { SubgraphModel } from '@ts-graphviz/common';
|
|
19
19
|
|
package/lib/Subgraph.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
2
|
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
3
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
6
|
+
import { ClusterSubgraphAttributeKey } from '@ts-graphviz/common';
|
|
7
7
|
import { EdgeAttributesObject } from '@ts-graphviz/common';
|
|
8
8
|
import { EdgeModel } from '@ts-graphviz/common';
|
|
9
9
|
import { EdgeTargetLikeTuple } from '@ts-graphviz/common';
|
|
@@ -12,7 +12,7 @@ import { GraphCommonAttributes } from '@ts-graphviz/common';
|
|
|
12
12
|
import { ModelsContext } from '@ts-graphviz/common';
|
|
13
13
|
import { NodeAttributesObject } from '@ts-graphviz/common';
|
|
14
14
|
import { NodeModel } from '@ts-graphviz/common';
|
|
15
|
-
import
|
|
15
|
+
import { SubgraphAttributeKey } from '@ts-graphviz/common';
|
|
16
16
|
import { SubgraphAttributesObject } from '@ts-graphviz/common';
|
|
17
17
|
import { SubgraphModel } from '@ts-graphviz/common';
|
|
18
18
|
|
package/lib/core.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Attribute } from '@ts-graphviz/common';
|
|
2
2
|
import { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
3
|
+
import { AttributeListKind } from '@ts-graphviz/common';
|
|
4
|
+
import { AttributeListModel } from '@ts-graphviz/common';
|
|
5
|
+
import { Attributes } from '@ts-graphviz/common';
|
|
6
|
+
import { AttributesEntities } from '@ts-graphviz/common';
|
|
7
7
|
import { AttributesGroupModel } from '@ts-graphviz/common';
|
|
8
|
-
import
|
|
9
|
-
import
|
|
8
|
+
import { AttributesObject } from '@ts-graphviz/common';
|
|
9
|
+
import { ClusterSubgraphAttributeKey } from '@ts-graphviz/common';
|
|
10
10
|
import { EdgeAttributeKey } from '@ts-graphviz/common';
|
|
11
11
|
import { EdgeAttributesObject } from '@ts-graphviz/common';
|
|
12
12
|
import { EdgeModel } from '@ts-graphviz/common';
|
|
13
13
|
import { EdgeTargetLikeTuple } from '@ts-graphviz/common';
|
|
14
14
|
import { EdgeTargetTuple } from '@ts-graphviz/common';
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import
|
|
15
|
+
import { ForwardRefNode } from '@ts-graphviz/common';
|
|
16
|
+
import { GraphAttributeKey } from '@ts-graphviz/common';
|
|
17
|
+
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
18
18
|
import { GraphBaseModel } from '@ts-graphviz/common';
|
|
19
19
|
import { GraphCommonAttributes } from '@ts-graphviz/common';
|
|
20
20
|
import { ModelsContext } from '@ts-graphviz/common';
|
|
21
|
-
import
|
|
21
|
+
import { NodeAttributeKey } from '@ts-graphviz/common';
|
|
22
22
|
import { NodeAttributesObject } from '@ts-graphviz/common';
|
|
23
23
|
import { NodeModel } from '@ts-graphviz/common';
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import
|
|
24
|
+
import { Port } from '@ts-graphviz/common';
|
|
25
|
+
import { RootGraphModel } from '@ts-graphviz/common';
|
|
26
|
+
import { SubgraphAttributeKey } from '@ts-graphviz/common';
|
|
27
27
|
import { SubgraphAttributesObject } from '@ts-graphviz/common';
|
|
28
28
|
import { SubgraphModel } from '@ts-graphviz/common';
|
|
29
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-graphviz/core",
|
|
3
|
-
"version": "2.0.5-next-
|
|
3
|
+
"version": "2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7",
|
|
4
4
|
"description": "Graphviz Models for Object-Oriented Programming",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphviz",
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"module": "lib/core.js",
|
|
45
45
|
"types": "lib/core.d.ts",
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@ts-graphviz/ast": "^2.0.5-next-
|
|
48
|
-
"@ts-graphviz/common": "^2.1.
|
|
47
|
+
"@ts-graphviz/ast": "^2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7",
|
|
48
|
+
"@ts-graphviz/common": "^2.1.4-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"typescript": "^5.4.5",
|
|
52
52
|
"vite": "^5.2.8",
|
|
53
|
-
"vite-plugin-dts": "^
|
|
53
|
+
"vite-plugin-dts": "^4.2.1"
|
|
54
54
|
},
|
|
55
55
|
"engines": {
|
|
56
56
|
"node": ">=18"
|