ts-graphviz 2.1.4-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c → 2.1.4-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 CHANGED
@@ -1,14 +1,18 @@
1
1
  # ts-graphviz
2
2
 
3
- ## 2.1.4-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c
3
+ ## 2.1.4-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - [#1205](https://github.com/ts-graphviz/ts-graphviz/pull/1205) [`9608151`](https://github.com/ts-graphviz/ts-graphviz/commit/9608151b1325484dbd01d5c902e91555219cc3cb) Thanks [@kamiazya](https://github.com/kamiazya)! - Update CI Badge URL
8
8
 
9
- - Updated dependencies [[`03bafa0`](https://github.com/ts-graphviz/ts-graphviz/commit/03bafa0e10b43807b5568df4ffba720752a0ac02)]:
10
- - @ts-graphviz/ast@2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c
11
- - @ts-graphviz/core@2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c
9
+ - [#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
10
+
11
+ - 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)]:
12
+ - @ts-graphviz/ast@2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
13
+ - @ts-graphviz/adapter@2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
14
+ - @ts-graphviz/common@2.1.4-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
15
+ - @ts-graphviz/core@2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7
12
16
 
13
17
  ## 2.1.3
14
18
 
package/README.md CHANGED
@@ -658,6 +658,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
658
658
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/nagasawaryoya"><img src="https://avatars.githubusercontent.com/u/53528726?v=4?s=100" width="100px;" alt="nagasawaryoya"/><br /><sub><b>nagasawaryoya</b></sub></a><br /><a href="https://github.com/ts-graphviz/ts-graphviz/commits?author=nagasawaryoya" title="Code">💻</a> <a href="https://github.com/ts-graphviz/ts-graphviz/commits?author=nagasawaryoya" title="Tests">⚠️</a></td>
659
659
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/tokidrill"><img src="https://avatars.githubusercontent.com/u/42460318?v=4?s=100" width="100px;" alt="YukiSasaki"/><br /><sub><b>YukiSasaki</b></sub></a><br /><a href="https://github.com/ts-graphviz/ts-graphviz/commits?author=tokidrill" title="Code">💻</a> <a href="https://github.com/ts-graphviz/ts-graphviz/commits?author=tokidrill" title="Tests">⚠️</a></td>
660
660
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/Madd0g"><img src="https://avatars.githubusercontent.com/u/1171003?v=4?s=100" width="100px;" alt="Madd0g"/><br /><sub><b>Madd0g</b></sub></a><br /><a href="https://github.com/ts-graphviz/ts-graphviz/issues?q=author%3AMadd0g" title="Bug reports">🐛</a></td>
661
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/j4k0xb"><img src="https://avatars.githubusercontent.com/u/55899582?v=4?s=100" width="100px;" alt="j4k0xb"/><br /><sub><b>j4k0xb</b></sub></a><br /><a href="https://github.com/ts-graphviz/ts-graphviz/issues?q=author%3Aj4k0xb" title="Bug reports">🐛</a></td>
661
662
  </tr>
662
663
  </tbody>
663
664
  </table>
@@ -1,2 +1,2 @@
1
- import type { Attribute } from '@ts-graphviz/common';
1
+ import { Attribute } from '@ts-graphviz/common';
2
2
  export declare const attribute: Attribute.keys;
package/lib/from-dot.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { type ConvertToModelOptions, type ParseOptions } from '@ts-graphviz/ast';
2
- import type { EdgeModel, NodeModel, RootGraphModel, SubgraphModel } from '@ts-graphviz/common';
1
+ import { ConvertToModelOptions, ParseOptions } from '@ts-graphviz/ast';
2
+ import { EdgeModel, NodeModel, RootGraphModel, SubgraphModel } from '@ts-graphviz/common';
3
3
  export interface FromDotOptions<T extends 'Dot' | 'Graph' | 'Node' | 'Edge' | 'Subgraph'> {
4
4
  parse?: ParseOptions<T>;
5
5
  convert?: ConvertToModelOptions;
@@ -1,5 +1,5 @@
1
- import { type ModelsContext } from '@ts-graphviz/common';
2
- import type { ModelFactory } from './types.js';
1
+ import { ModelsContext } from '@ts-graphviz/common';
2
+ import { ModelFactory } from './types.js';
3
3
  export declare function ModelFactoryBuilder(this: ModelsContext, directed: boolean, strictMode: boolean): ModelFactory;
4
4
  export declare function createModelFactories(strict: boolean, context?: ModelsContext): Readonly<{
5
5
  digraph: ModelFactory;
@@ -1,6 +1,6 @@
1
- import { type ModelsContext } from '@ts-graphviz/common';
2
- import type { ModelFactories, ModelFactoriesWithStrict } from './types.js';
3
- export declare const digraph: import("./types.js").ModelFactory;
4
- export declare const graph: import("./types.js").ModelFactory;
1
+ import { ModelsContext } from '@ts-graphviz/common';
2
+ import { ModelFactories, ModelFactoriesWithStrict } from './types.js';
3
+ export declare const digraph: import('./types.js').ModelFactory;
4
+ export declare const graph: import('./types.js').ModelFactory;
5
5
  export declare const strict: ModelFactories;
6
6
  export declare function withContext(models: Partial<ModelsContext>): ModelFactoriesWithStrict;
package/lib/to-dot.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { type ConvertFromModelOptions, type PrintOptions } from '@ts-graphviz/ast';
2
- import type { DotObjectModel } from '@ts-graphviz/common';
1
+ import { ConvertFromModelOptions, PrintOptions } from '@ts-graphviz/ast';
2
+ import { DotObjectModel } from '@ts-graphviz/common';
3
3
  export interface ToDotOptions {
4
4
  convert?: ConvertFromModelOptions;
5
5
  print?: PrintOptions;
package/lib/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { GraphAttributesObject, RootGraphModel } from '@ts-graphviz/common';
1
+ import { GraphAttributesObject, RootGraphModel } from '@ts-graphviz/common';
2
2
  export interface ModelFactory {
3
3
  (id?: string, attributes?: GraphAttributesObject, callback?: (g: RootGraphModel) => void): RootGraphModel;
4
4
  (attributes?: GraphAttributesObject, callback?: (g: RootGraphModel) => void): RootGraphModel;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-graphviz",
3
- "version": "2.1.4-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c",
3
+ "version": "2.1.4-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7",
4
4
  "description": "Graphviz library for TypeScript",
5
5
  "keywords": [
6
6
  "graphviz",
@@ -51,15 +51,15 @@
51
51
  "module": "./lib/ts-graphviz.js",
52
52
  "types": "lib/ts-graphviz.d.ts",
53
53
  "dependencies": {
54
- "@ts-graphviz/ast": "^2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c",
55
- "@ts-graphviz/adapter": "^2.0.4",
56
- "@ts-graphviz/common": "^2.1.3",
57
- "@ts-graphviz/core": "^2.0.5-next-026e7d1a8f96034e4475bbc8626a8be8fa7b925c"
54
+ "@ts-graphviz/adapter": "^2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7",
55
+ "@ts-graphviz/ast": "^2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7",
56
+ "@ts-graphviz/common": "^2.1.4-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7",
57
+ "@ts-graphviz/core": "^2.0.5-next-d0b54a18248207de01f60c17dcd24b13ee4f03d7"
58
58
  },
59
59
  "devDependencies": {
60
60
  "typescript": "^5.4.5",
61
61
  "vite": "^5.2.8",
62
- "vite-plugin-dts": "^3.7.3"
62
+ "vite-plugin-dts": "^4.2.1"
63
63
  },
64
64
  "engines": {
65
65
  "node": ">=18"