@ts-graphviz/core 2.0.5-next-03bafa0e10b43807b5568df4ffba720752a0ac02 → 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 CHANGED
@@ -1,11 +1,14 @@
1
1
  # @ts-graphviz/core
2
2
 
3
- ## 2.0.5-next-03bafa0e10b43807b5568df4ffba720752a0ac02
3
+ ## 2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Updated dependencies [[`03bafa0`](https://github.com/ts-graphviz/ts-graphviz/commit/03bafa0e10b43807b5568df4ffba720752a0ac02)]:
8
- - @ts-graphviz/ast@2.0.5-next-03bafa0e10b43807b5568df4ffba720752a0ac02
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-6bb5ab18682daa1410de4a35edc22316487989af
11
+ - @ts-graphviz/common@2.1.4-next-6bb5ab18682daa1410de4a35edc22316487989af
9
12
 
10
13
  ## 2.0.4
11
14
 
@@ -1,10 +1,10 @@
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';
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.
@@ -1,8 +1,8 @@
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';
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.
@@ -1,9 +1,9 @@
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';
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 type { Attribute } from '@ts-graphviz/common';
1
+ import { Attribute } from '@ts-graphviz/common';
2
2
  import { 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';
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 type { GraphAttributeKey } from '@ts-graphviz/common';
10
- import type { GraphAttributesObject } from '@ts-graphviz/common';
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 type { RootGraphModel } from '@ts-graphviz/common';
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 type { Attribute } from '@ts-graphviz/common';
1
+ import { Attribute } from '@ts-graphviz/common';
2
2
  import { 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';
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 type { GraphAttributeKey } from '@ts-graphviz/common';
10
- import type { GraphAttributesObject } from '@ts-graphviz/common';
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 type { RootGraphModel } from '@ts-graphviz/common';
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
 
@@ -1,8 +1,8 @@
1
- import type { Attribute } from '@ts-graphviz/common';
1
+ import { Attribute } from '@ts-graphviz/common';
2
2
  import { 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';
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 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';
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.
@@ -1,19 +1,19 @@
1
- import type { Attribute } from '@ts-graphviz/common';
1
+ import { Attribute } from '@ts-graphviz/common';
2
2
  import { 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';
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 type { GraphAttributeKey } from '@ts-graphviz/common';
10
- import type { GraphAttributesObject } from '@ts-graphviz/common';
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 type { RootGraphModel } from '@ts-graphviz/common';
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 type { Attribute } from '@ts-graphviz/common';
1
+ import { Attribute } from '@ts-graphviz/common';
2
2
  import { 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
- import type { ClusterSubgraphAttributeKey } 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';
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 type { SubgraphAttributeKey } from '@ts-graphviz/common';
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 type { Attribute } from '@ts-graphviz/common';
1
+ import { Attribute } from '@ts-graphviz/common';
2
2
  import { 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';
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 type { AttributesObject } from '@ts-graphviz/common';
9
- import type { ClusterSubgraphAttributeKey } from '@ts-graphviz/common';
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 type { ForwardRefNode } from '@ts-graphviz/common';
16
- import type { GraphAttributeKey } from '@ts-graphviz/common';
17
- import type { GraphAttributesObject } 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';
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 type { NodeAttributeKey } from '@ts-graphviz/common';
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 type { Port } from '@ts-graphviz/common';
25
- import type { RootGraphModel } from '@ts-graphviz/common';
26
- import type { SubgraphAttributeKey } 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';
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-03bafa0e10b43807b5568df4ffba720752a0ac02",
3
+ "version": "2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af",
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-03bafa0e10b43807b5568df4ffba720752a0ac02",
48
- "@ts-graphviz/common": "^2.1.3"
47
+ "@ts-graphviz/common": "^2.1.4-next-6bb5ab18682daa1410de4a35edc22316487989af",
48
+ "@ts-graphviz/ast": "^2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af"
49
49
  },
50
50
  "devDependencies": {
51
51
  "typescript": "^5.4.5",
52
52
  "vite": "^5.2.8",
53
- "vite-plugin-dts": "^3.7.3"
53
+ "vite-plugin-dts": "^4.2.1"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">=18"