@ts-graphviz/core 0.0.0-next-20240316100427 → 0.0.0-next-20240317133942
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 +4 -4
- 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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ts-graphviz/core
|
|
2
2
|
|
|
3
|
-
## 0.0.0-next-
|
|
3
|
+
## 0.0.0-next-20240317133942
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
|
|
19
19
|
- [#986](https://github.com/ts-graphviz/ts-graphviz/pull/986) [`81a50ff`](https://github.com/ts-graphviz/ts-graphviz/commit/81a50ff94b461f44256f2eea5b86af5eb26afd94) Thanks [@dependabot](https://github.com/apps/dependabot)! - build(deps): bump actions/dependency-review-action from 2.5.1 to 4.1.3
|
|
20
20
|
|
|
21
|
-
- Updated dependencies [[`cb5517a`](https://github.com/ts-graphviz/ts-graphviz/commit/cb5517a0236ce33527d200df9770390f4eb40064), [`0589b4f`](https://github.com/ts-graphviz/ts-graphviz/commit/0589b4f8849290d2c4a39beceb9b633f059f2e3f), [`5ce6b59`](https://github.com/ts-graphviz/ts-graphviz/commit/5ce6b59fa395bc344de2bfb15061b158a9ea5586), [`122336b`](https://github.com/ts-graphviz/ts-graphviz/commit/122336bede1033f73a2a94c82d499fda238f6b2e), [`b5f36fa`](https://github.com/ts-graphviz/ts-graphviz/commit/b5f36faf9cf70dfc263130c4480dc21770475c5a), [`c55f2d0`](https://github.com/ts-graphviz/ts-graphviz/commit/c55f2d0dfa851d318cc16a36499c69c0a34f1588), [`81a50ff`](https://github.com/ts-graphviz/ts-graphviz/commit/81a50ff94b461f44256f2eea5b86af5eb26afd94)]:
|
|
22
|
-
- @ts-graphviz/common@0.0.0-next-
|
|
23
|
-
- @ts-graphviz/ast@0.0.0-next-
|
|
21
|
+
- Updated dependencies [[`cb5517a`](https://github.com/ts-graphviz/ts-graphviz/commit/cb5517a0236ce33527d200df9770390f4eb40064), [`0589b4f`](https://github.com/ts-graphviz/ts-graphviz/commit/0589b4f8849290d2c4a39beceb9b633f059f2e3f), [`5ce6b59`](https://github.com/ts-graphviz/ts-graphviz/commit/5ce6b59fa395bc344de2bfb15061b158a9ea5586), [`122336b`](https://github.com/ts-graphviz/ts-graphviz/commit/122336bede1033f73a2a94c82d499fda238f6b2e), [`b5f36fa`](https://github.com/ts-graphviz/ts-graphviz/commit/b5f36faf9cf70dfc263130c4480dc21770475c5a), [`c55f2d0`](https://github.com/ts-graphviz/ts-graphviz/commit/c55f2d0dfa851d318cc16a36499c69c0a34f1588), [`81a50ff`](https://github.com/ts-graphviz/ts-graphviz/commit/81a50ff94b461f44256f2eea5b86af5eb26afd94), [`391e98e`](https://github.com/ts-graphviz/ts-graphviz/commit/391e98edf70bb43c1feb4a00f832fa9d96dd9d39)]:
|
|
22
|
+
- @ts-graphviz/common@0.0.0-next-20240317133942
|
|
23
|
+
- @ts-graphviz/ast@0.0.0-next-20240317133942
|
|
24
24
|
|
|
25
25
|
## 2.0.0
|
|
26
26
|
|
package/lib/AttributeList.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
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';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import type { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import type { AttributeListKind } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributeListModel } from '@ts-graphviz/common';
|
|
5
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
6
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
7
|
+
import type { 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 { 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';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import type { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { 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 { 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';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import type { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { AttributesGroupModel } from '@ts-graphviz/common';
|
|
6
|
+
import type { 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 { Attribute } from '@ts-graphviz/common';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
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';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { 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 { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
-
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
9
|
+
import type { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
+
import type { 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 { RootGraphModel } from '@ts-graphviz/common';
|
|
16
|
+
import type { 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 { Attribute } from '@ts-graphviz/common';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
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';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { 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 { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
-
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
9
|
+
import type { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
+
import type { 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 { RootGraphModel } from '@ts-graphviz/common';
|
|
16
|
+
import type { 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 { Attribute } from '@ts-graphviz/common';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
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';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { 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 { 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';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
|
+
import type { AttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { AttributesGroupModel } from '@ts-graphviz/common';
|
|
6
|
+
import type { AttributesObject } from '@ts-graphviz/common';
|
|
7
|
+
import type { ForwardRefNode } from '@ts-graphviz/common';
|
|
8
|
+
import type { NodeAttributeKey } from '@ts-graphviz/common';
|
|
9
|
+
import type { NodeAttributesObject } from '@ts-graphviz/common';
|
|
10
|
+
import type { NodeModel } from '@ts-graphviz/common';
|
|
11
|
+
import type { 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 { Attribute } from '@ts-graphviz/common';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
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';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { 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 { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
-
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
9
|
+
import type { GraphAttributeKey } from '@ts-graphviz/common';
|
|
10
|
+
import type { 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 { RootGraphModel } from '@ts-graphviz/common';
|
|
16
|
+
import type { 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 { Attribute } from '@ts-graphviz/common';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
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
|
-
import { ClusterSubgraphAttributeKey } from '@ts-graphviz/common';
|
|
3
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
5
|
+
import type { AttributesObject } from '@ts-graphviz/common';
|
|
6
|
+
import type { 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 { SubgraphAttributeKey } from '@ts-graphviz/common';
|
|
15
|
+
import type { 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 { Attribute } from '@ts-graphviz/common';
|
|
1
|
+
import type { Attribute } from '@ts-graphviz/common';
|
|
2
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';
|
|
3
|
+
import type { AttributeListKind } from '@ts-graphviz/common';
|
|
4
|
+
import type { AttributeListModel } from '@ts-graphviz/common';
|
|
5
|
+
import type { Attributes } from '@ts-graphviz/common';
|
|
6
|
+
import type { AttributesEntities } from '@ts-graphviz/common';
|
|
7
7
|
import { AttributesGroupModel } from '@ts-graphviz/common';
|
|
8
|
-
import { AttributesObject } from '@ts-graphviz/common';
|
|
9
|
-
import { ClusterSubgraphAttributeKey } from '@ts-graphviz/common';
|
|
8
|
+
import type { AttributesObject } from '@ts-graphviz/common';
|
|
9
|
+
import type { 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 { ForwardRefNode } from '@ts-graphviz/common';
|
|
16
|
-
import { GraphAttributeKey } from '@ts-graphviz/common';
|
|
17
|
-
import { GraphAttributesObject } from '@ts-graphviz/common';
|
|
15
|
+
import type { ForwardRefNode } from '@ts-graphviz/common';
|
|
16
|
+
import type { GraphAttributeKey } from '@ts-graphviz/common';
|
|
17
|
+
import type { 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 { NodeAttributeKey } from '@ts-graphviz/common';
|
|
21
|
+
import type { NodeAttributeKey } from '@ts-graphviz/common';
|
|
22
22
|
import { NodeAttributesObject } from '@ts-graphviz/common';
|
|
23
23
|
import { NodeModel } from '@ts-graphviz/common';
|
|
24
|
-
import { Port } from '@ts-graphviz/common';
|
|
25
|
-
import { RootGraphModel } from '@ts-graphviz/common';
|
|
26
|
-
import { SubgraphAttributeKey } from '@ts-graphviz/common';
|
|
24
|
+
import type { Port } from '@ts-graphviz/common';
|
|
25
|
+
import type { RootGraphModel } from '@ts-graphviz/common';
|
|
26
|
+
import type { 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": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-20240317133942",
|
|
4
4
|
"description": "Graphviz Models for Object-Oriented Programming",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphviz",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"LICENSE"
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@ts-graphviz/ast": "^0.0.0-next-
|
|
59
|
-
"@ts-graphviz/common": "^0.0.0-next-
|
|
58
|
+
"@ts-graphviz/ast": "^0.0.0-next-20240317133942",
|
|
59
|
+
"@ts-graphviz/common": "^0.0.0-next-20240317133942"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"typescript": "^5.3.3",
|