ts-graphviz 1.7.1-dev.882b92253 → 1.7.1-dev.fc3f7256a

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.
@@ -272,12 +272,7 @@ declare namespace QuadType {
272
272
  * @see {@link https://graphviz.gitlab.io/docs/attr-types/rankdir/ rankdir}
273
273
  * @group Attribute Types
274
274
  */
275
- type Rankdir = `${Rankdir.TB}${Rankdir.RL}`;
276
- /** @hidden */
277
- declare namespace Rankdir {
278
- type TB = 'T' | 'B';
279
- type RL = 'R' | 'L';
280
- }
275
+ type Rankdir = 'TB' | 'BT' | 'LR' | 'RL';
281
276
  /**
282
277
  * @see {@link https://graphviz.gitlab.io/docs/attr-types/rankType/ rankType}
283
278
  * @group Attribute Types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-graphviz",
3
- "version": "1.7.1-dev.882b92253",
3
+ "version": "1.7.1-dev.fc3f7256a",
4
4
  "author": "kamiazya <yuki@kamiazya.tech>",
5
5
  "description": "Graphviz library for TypeScript.",
6
6
  "homepage": "https://ts-graphviz.github.io/ts-graphviz/",