pareto-graphviz 0.2.3 → 0.2.5
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/dist/implementation/generated/liana/schemas/graphviz/migrate_boilerplate.d.ts +3 -0
- package/dist/implementation/generated/liana/schemas/graphviz/migrate_boilerplate.js +389 -0
- package/dist/implementation/manual/primitives/integer/serializers/decimal.d.ts +2 -0
- package/dist/implementation/manual/primitives/integer/serializers/decimal.js +57 -0
- package/dist/implementation/manual/primitives/text/serializers/escaped_character.js +6 -6
- package/dist/implementation/manual/primitives/text/serializers/quoted.js +4 -4
- package/dist/implementation/manual/schemas/graphviz/transformers/fountain_pen.d.ts +6 -4
- package/dist/implementation/manual/schemas/graphviz/transformers/fountain_pen.js +352 -4
- package/dist/interface/generated/{pareto/core → liana/generic}/location.js +1 -1
- package/dist/interface/generated/liana/generic/resolve.d.ts +39 -0
- package/dist/interface/generated/liana/generic/resolve.js +3 -0
- package/dist/interface/generated/liana/schemas/graphviz/data.d.ts +337 -0
- package/dist/interface/generated/{pareto → liana}/schemas/graphviz/data.js +1 -1
- package/dist/interface/generated/liana/schemas/graphviz/deserialize.d.ts +16 -0
- package/dist/interface/generated/liana/schemas/graphviz/deserialize.js +3 -0
- package/dist/interface/generated/liana/schemas/graphviz/marshall.d.ts +17 -0
- package/dist/interface/generated/liana/schemas/graphviz/marshall.js +3 -0
- package/dist/interface/generated/liana/schemas/graphviz/migrate_boilerplate.d.ts +17 -0
- package/dist/interface/generated/{pareto → liana}/schemas/graphviz/migrate_boilerplate.js +1 -1
- package/dist/interface/generated/liana/schemas/graphviz/serialize.d.ts +16 -0
- package/dist/interface/generated/liana/schemas/graphviz/serialize.js +3 -0
- package/dist/interface/generated/liana/schemas/graphviz/unmarshall.d.ts +17 -0
- package/dist/interface/generated/liana/schemas/graphviz/unmarshall.js +3 -0
- package/package.json +3 -3
- package/dist/interface/generated/pareto/schemas/graphviz/data.d.ts +0 -23
- package/dist/interface/generated/pareto/schemas/graphviz/migrate_boilerplate.d.ts +0 -10
- /package/dist/interface/generated/{pareto/core → liana/generic}/location.d.ts +0 -0
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
import * as _pi from "pareto-core/dist/interface";
|
|
2
|
+
export declare namespace Attributes_ {
|
|
3
|
+
namespace L {
|
|
4
|
+
namespace freeform {
|
|
5
|
+
type key = string;
|
|
6
|
+
type value = string;
|
|
7
|
+
}
|
|
8
|
+
type freeform = {
|
|
9
|
+
readonly 'key': freeform.key;
|
|
10
|
+
readonly 'value': freeform.value;
|
|
11
|
+
};
|
|
12
|
+
type color = string;
|
|
13
|
+
type fillcolor = string;
|
|
14
|
+
type penwidth = number;
|
|
15
|
+
type label = string;
|
|
16
|
+
type fontcolor = string;
|
|
17
|
+
type fontname = string;
|
|
18
|
+
type fontsize = number;
|
|
19
|
+
type URL = string;
|
|
20
|
+
type href = string;
|
|
21
|
+
type target = string;
|
|
22
|
+
type tooltip = string;
|
|
23
|
+
type id = string;
|
|
24
|
+
type class_ = string;
|
|
25
|
+
type comment = string;
|
|
26
|
+
namespace style {
|
|
27
|
+
type filled = null;
|
|
28
|
+
type rounded = null;
|
|
29
|
+
type bold = null;
|
|
30
|
+
type solid = null;
|
|
31
|
+
type dashed = null;
|
|
32
|
+
type dotted = null;
|
|
33
|
+
type striped = null;
|
|
34
|
+
type wedged = null;
|
|
35
|
+
type diagonals = null;
|
|
36
|
+
type invis = null;
|
|
37
|
+
type tapered = null;
|
|
38
|
+
type custom = string;
|
|
39
|
+
}
|
|
40
|
+
type style = readonly ['filled', style.filled] | readonly ['rounded', style.rounded] | readonly ['bold', style.bold] | readonly ['solid', style.solid] | readonly ['dashed', style.dashed] | readonly ['dotted', style.dotted] | readonly ['striped', style.striped] | readonly ['wedged', style.wedged] | readonly ['diagonals', style.diagonals] | readonly ['invis', style.invis] | readonly ['tapered', style.tapered] | readonly ['custom', style.custom];
|
|
41
|
+
namespace layout {
|
|
42
|
+
type dot = null;
|
|
43
|
+
type neato = null;
|
|
44
|
+
type fdp = null;
|
|
45
|
+
type sfdp = null;
|
|
46
|
+
type twopi = null;
|
|
47
|
+
type circo = null;
|
|
48
|
+
type custom = string;
|
|
49
|
+
}
|
|
50
|
+
type layout = readonly ['dot', layout.dot] | readonly ['neato', layout.neato] | readonly ['fdp', layout.fdp] | readonly ['sfdp', layout.sfdp] | readonly ['twopi', layout.twopi] | readonly ['circo', layout.circo] | readonly ['custom', layout.custom];
|
|
51
|
+
namespace rankdir {
|
|
52
|
+
type TB = null;
|
|
53
|
+
type BT = null;
|
|
54
|
+
type LR = null;
|
|
55
|
+
type RL = null;
|
|
56
|
+
}
|
|
57
|
+
type rankdir = readonly ['TB', rankdir.TB] | readonly ['BT', rankdir.BT] | readonly ['LR', rankdir.LR] | readonly ['RL', rankdir.RL];
|
|
58
|
+
type bgcolor = string;
|
|
59
|
+
namespace labelloc {
|
|
60
|
+
type t = null;
|
|
61
|
+
type b = null;
|
|
62
|
+
}
|
|
63
|
+
type labelloc = readonly ['t', labelloc.t] | readonly ['b', labelloc.b];
|
|
64
|
+
namespace labeljust {
|
|
65
|
+
type l = null;
|
|
66
|
+
type c = null;
|
|
67
|
+
type r = null;
|
|
68
|
+
}
|
|
69
|
+
type labeljust = readonly ['l', labeljust.l] | readonly ['c', labeljust.c] | readonly ['r', labeljust.r];
|
|
70
|
+
type size = string;
|
|
71
|
+
type ratio = string;
|
|
72
|
+
type pad = string;
|
|
73
|
+
type nodesep = number;
|
|
74
|
+
type ranksep = number;
|
|
75
|
+
type dpi = number;
|
|
76
|
+
namespace overlap {
|
|
77
|
+
type true_ = null;
|
|
78
|
+
type false_ = null;
|
|
79
|
+
type scale = null;
|
|
80
|
+
type scalexy = null;
|
|
81
|
+
type orthoxy = null;
|
|
82
|
+
type orthoyx = null;
|
|
83
|
+
type compress = null;
|
|
84
|
+
type vpsc = null;
|
|
85
|
+
type ipsep = null;
|
|
86
|
+
type prism = null;
|
|
87
|
+
}
|
|
88
|
+
type overlap = readonly ['true', overlap.true_] | readonly ['false', overlap.false_] | readonly ['scale', overlap.scale] | readonly ['scalexy', overlap.scalexy] | readonly ['orthoxy', overlap.orthoxy] | readonly ['orthoyx', overlap.orthoyx] | readonly ['compress', overlap.compress] | readonly ['vpsc', overlap.vpsc] | readonly ['ipsep', overlap.ipsep] | readonly ['prism', overlap.prism];
|
|
89
|
+
namespace pack {
|
|
90
|
+
type true_ = null;
|
|
91
|
+
type false_ = null;
|
|
92
|
+
type custom = number;
|
|
93
|
+
}
|
|
94
|
+
type pack = readonly ['true', pack.true_] | readonly ['false', pack.false_] | readonly ['custom', pack.custom];
|
|
95
|
+
namespace packmode {
|
|
96
|
+
type node = null;
|
|
97
|
+
type clust = null;
|
|
98
|
+
type graph = null;
|
|
99
|
+
}
|
|
100
|
+
type packmode = readonly ['node', packmode.node] | readonly ['clust', packmode.clust] | readonly ['graph', packmode.graph];
|
|
101
|
+
type concentrate = boolean;
|
|
102
|
+
type compound = boolean;
|
|
103
|
+
type center = boolean;
|
|
104
|
+
type normalize = boolean;
|
|
105
|
+
type landscape = boolean;
|
|
106
|
+
namespace outputorder {
|
|
107
|
+
type breadthfirst = null;
|
|
108
|
+
type nodesfirst = null;
|
|
109
|
+
type edgesfirst = null;
|
|
110
|
+
}
|
|
111
|
+
type outputorder = readonly ['breadthfirst', outputorder.breadthfirst] | readonly ['nodesfirst', outputorder.nodesfirst] | readonly ['edgesfirst', outputorder.edgesfirst];
|
|
112
|
+
type charset = string;
|
|
113
|
+
namespace clusterrank {
|
|
114
|
+
type local = null;
|
|
115
|
+
type global = null;
|
|
116
|
+
type none = null;
|
|
117
|
+
}
|
|
118
|
+
type clusterrank = readonly ['local', clusterrank.local] | readonly ['global', clusterrank.global] | readonly ['none', clusterrank.none];
|
|
119
|
+
namespace shape {
|
|
120
|
+
type box = null;
|
|
121
|
+
type circle = null;
|
|
122
|
+
type ellipse = null;
|
|
123
|
+
type oval = null;
|
|
124
|
+
type point = null;
|
|
125
|
+
type egg = null;
|
|
126
|
+
type triangle = null;
|
|
127
|
+
type plaintext = null;
|
|
128
|
+
type plain = null;
|
|
129
|
+
type diamond = null;
|
|
130
|
+
type trapezium = null;
|
|
131
|
+
type parallelogram = null;
|
|
132
|
+
type house = null;
|
|
133
|
+
type pentagon = null;
|
|
134
|
+
type hexagon = null;
|
|
135
|
+
type septagon = null;
|
|
136
|
+
type octagon = null;
|
|
137
|
+
type polygon = null;
|
|
138
|
+
type record = null;
|
|
139
|
+
type Mrecord = null;
|
|
140
|
+
type custom = string;
|
|
141
|
+
}
|
|
142
|
+
type shape = readonly ['box', shape.box] | readonly ['circle', shape.circle] | readonly ['ellipse', shape.ellipse] | readonly ['oval', shape.oval] | readonly ['point', shape.point] | readonly ['egg', shape.egg] | readonly ['triangle', shape.triangle] | readonly ['plaintext', shape.plaintext] | readonly ['plain', shape.plain] | readonly ['diamond', shape.diamond] | readonly ['trapezium', shape.trapezium] | readonly ['parallelogram', shape.parallelogram] | readonly ['house', shape.house] | readonly ['pentagon', shape.pentagon] | readonly ['hexagon', shape.hexagon] | readonly ['septagon', shape.septagon] | readonly ['octagon', shape.octagon] | readonly ['polygon', shape.polygon] | readonly ['record', shape.record] | readonly ['Mrecord', shape.Mrecord] | readonly ['custom', shape.custom];
|
|
143
|
+
type width = number;
|
|
144
|
+
type height = number;
|
|
145
|
+
type fixedsize = boolean;
|
|
146
|
+
type regular = boolean;
|
|
147
|
+
type sides = number;
|
|
148
|
+
type skew = number;
|
|
149
|
+
type distortion = number;
|
|
150
|
+
type orientation = number;
|
|
151
|
+
type peripheries = number;
|
|
152
|
+
type pin = boolean;
|
|
153
|
+
type image = string;
|
|
154
|
+
namespace imagepos {
|
|
155
|
+
type tl = null;
|
|
156
|
+
type tc = null;
|
|
157
|
+
type tr = null;
|
|
158
|
+
type ml = null;
|
|
159
|
+
type mc = null;
|
|
160
|
+
type mr = null;
|
|
161
|
+
type bl = null;
|
|
162
|
+
type bc = null;
|
|
163
|
+
type br = null;
|
|
164
|
+
}
|
|
165
|
+
type imagepos = readonly ['tl', imagepos.tl] | readonly ['tc', imagepos.tc] | readonly ['tr', imagepos.tr] | readonly ['ml', imagepos.ml] | readonly ['mc', imagepos.mc] | readonly ['mr', imagepos.mr] | readonly ['bl', imagepos.bl] | readonly ['bc', imagepos.bc] | readonly ['br', imagepos.br];
|
|
166
|
+
namespace imagescale {
|
|
167
|
+
type false_ = null;
|
|
168
|
+
type true_ = null;
|
|
169
|
+
type width = null;
|
|
170
|
+
type height = null;
|
|
171
|
+
type both = null;
|
|
172
|
+
}
|
|
173
|
+
type imagescale = readonly ['false', imagescale.false_] | readonly ['true', imagescale.true_] | readonly ['width', imagescale.width] | readonly ['height', imagescale.height] | readonly ['both', imagescale.both];
|
|
174
|
+
type group = string;
|
|
175
|
+
type sortv = number;
|
|
176
|
+
type area = number;
|
|
177
|
+
type z = number;
|
|
178
|
+
type margin = string;
|
|
179
|
+
namespace arrowhead {
|
|
180
|
+
type normal = null;
|
|
181
|
+
type box = null;
|
|
182
|
+
type crow = null;
|
|
183
|
+
type diamond = null;
|
|
184
|
+
type dot = null;
|
|
185
|
+
type inv = null;
|
|
186
|
+
type none = null;
|
|
187
|
+
type tee = null;
|
|
188
|
+
type vee = null;
|
|
189
|
+
type open = null;
|
|
190
|
+
type halfopen = null;
|
|
191
|
+
type empty = null;
|
|
192
|
+
type invempty = null;
|
|
193
|
+
type odiamond = null;
|
|
194
|
+
type odot = null;
|
|
195
|
+
type obox = null;
|
|
196
|
+
type custom = string;
|
|
197
|
+
}
|
|
198
|
+
type arrowhead = readonly ['normal', arrowhead.normal] | readonly ['box', arrowhead.box] | readonly ['crow', arrowhead.crow] | readonly ['diamond', arrowhead.diamond] | readonly ['dot', arrowhead.dot] | readonly ['inv', arrowhead.inv] | readonly ['none', arrowhead.none] | readonly ['tee', arrowhead.tee] | readonly ['vee', arrowhead.vee] | readonly ['open', arrowhead.open] | readonly ['halfopen', arrowhead.halfopen] | readonly ['empty', arrowhead.empty] | readonly ['invempty', arrowhead.invempty] | readonly ['odiamond', arrowhead.odiamond] | readonly ['odot', arrowhead.odot] | readonly ['obox', arrowhead.obox] | readonly ['custom', arrowhead.custom];
|
|
199
|
+
namespace arrowtail {
|
|
200
|
+
type normal = null;
|
|
201
|
+
type box = null;
|
|
202
|
+
type crow = null;
|
|
203
|
+
type diamond = null;
|
|
204
|
+
type dot = null;
|
|
205
|
+
type inv = null;
|
|
206
|
+
type none = null;
|
|
207
|
+
type tee = null;
|
|
208
|
+
type vee = null;
|
|
209
|
+
type open = null;
|
|
210
|
+
type halfopen = null;
|
|
211
|
+
type empty = null;
|
|
212
|
+
type invempty = null;
|
|
213
|
+
type odiamond = null;
|
|
214
|
+
type odot = null;
|
|
215
|
+
type obox = null;
|
|
216
|
+
type custom = string;
|
|
217
|
+
}
|
|
218
|
+
type arrowtail = readonly ['normal', arrowtail.normal] | readonly ['box', arrowtail.box] | readonly ['crow', arrowtail.crow] | readonly ['diamond', arrowtail.diamond] | readonly ['dot', arrowtail.dot] | readonly ['inv', arrowtail.inv] | readonly ['none', arrowtail.none] | readonly ['tee', arrowtail.tee] | readonly ['vee', arrowtail.vee] | readonly ['open', arrowtail.open] | readonly ['halfopen', arrowtail.halfopen] | readonly ['empty', arrowtail.empty] | readonly ['invempty', arrowtail.invempty] | readonly ['odiamond', arrowtail.odiamond] | readonly ['odot', arrowtail.odot] | readonly ['obox', arrowtail.obox] | readonly ['custom', arrowtail.custom];
|
|
219
|
+
type arrowsize = number;
|
|
220
|
+
namespace dir {
|
|
221
|
+
type forward = null;
|
|
222
|
+
type back = null;
|
|
223
|
+
type both = null;
|
|
224
|
+
type none = null;
|
|
225
|
+
}
|
|
226
|
+
type dir = readonly ['forward', dir.forward] | readonly ['back', dir.back] | readonly ['both', dir.both] | readonly ['none', dir.none];
|
|
227
|
+
type headlabel = string;
|
|
228
|
+
type taillabel = string;
|
|
229
|
+
type labelfontcolor = string;
|
|
230
|
+
type labelfontname = string;
|
|
231
|
+
type labelfontsize = number;
|
|
232
|
+
type labelangle = number;
|
|
233
|
+
type labeldistance = number;
|
|
234
|
+
type labelfloat = boolean;
|
|
235
|
+
type weight = number;
|
|
236
|
+
type len = number;
|
|
237
|
+
type minlen = number;
|
|
238
|
+
type constraint = boolean;
|
|
239
|
+
type decorate = boolean;
|
|
240
|
+
namespace headport {
|
|
241
|
+
type center = null;
|
|
242
|
+
type n = null;
|
|
243
|
+
type ne = null;
|
|
244
|
+
type e = null;
|
|
245
|
+
type se = null;
|
|
246
|
+
type s = null;
|
|
247
|
+
type sw = null;
|
|
248
|
+
type w = null;
|
|
249
|
+
type nw = null;
|
|
250
|
+
type custom = string;
|
|
251
|
+
}
|
|
252
|
+
type headport = readonly ['center', headport.center] | readonly ['n', headport.n] | readonly ['ne', headport.ne] | readonly ['e', headport.e] | readonly ['se', headport.se] | readonly ['s', headport.s] | readonly ['sw', headport.sw] | readonly ['w', headport.w] | readonly ['nw', headport.nw] | readonly ['custom', headport.custom];
|
|
253
|
+
namespace tailport {
|
|
254
|
+
type center = null;
|
|
255
|
+
type n = null;
|
|
256
|
+
type ne = null;
|
|
257
|
+
type e = null;
|
|
258
|
+
type se = null;
|
|
259
|
+
type s = null;
|
|
260
|
+
type sw = null;
|
|
261
|
+
type w = null;
|
|
262
|
+
type nw = null;
|
|
263
|
+
type custom = string;
|
|
264
|
+
}
|
|
265
|
+
type tailport = readonly ['center', tailport.center] | readonly ['n', tailport.n] | readonly ['ne', tailport.ne] | readonly ['e', tailport.e] | readonly ['se', tailport.se] | readonly ['s', tailport.s] | readonly ['sw', tailport.sw] | readonly ['w', tailport.w] | readonly ['nw', tailport.nw] | readonly ['custom', tailport.custom];
|
|
266
|
+
type headclip = boolean;
|
|
267
|
+
type tailclip = boolean;
|
|
268
|
+
type lhead = string;
|
|
269
|
+
type ltail = string;
|
|
270
|
+
type samehead = string;
|
|
271
|
+
type sametail = string;
|
|
272
|
+
type edgeURL = string;
|
|
273
|
+
type headURL = string;
|
|
274
|
+
type tailURL = string;
|
|
275
|
+
type labelURL = string;
|
|
276
|
+
type edgehref = string;
|
|
277
|
+
type headhref = string;
|
|
278
|
+
type tailhref = string;
|
|
279
|
+
type labelhref = string;
|
|
280
|
+
type edgetarget = string;
|
|
281
|
+
type headtarget = string;
|
|
282
|
+
type tailtarget = string;
|
|
283
|
+
type edgetooltip = string;
|
|
284
|
+
type headtooltip = string;
|
|
285
|
+
type tailtooltip = string;
|
|
286
|
+
type labeltooltip = string;
|
|
287
|
+
type radius = number;
|
|
288
|
+
namespace splines {
|
|
289
|
+
type true_ = null;
|
|
290
|
+
type false_ = null;
|
|
291
|
+
type none = null;
|
|
292
|
+
type line = null;
|
|
293
|
+
type spline = null;
|
|
294
|
+
type polyline = null;
|
|
295
|
+
type ortho = null;
|
|
296
|
+
type curved = null;
|
|
297
|
+
type compound = null;
|
|
298
|
+
}
|
|
299
|
+
type splines = readonly ['true', splines.true_] | readonly ['false', splines.false_] | readonly ['none', splines.none] | readonly ['line', splines.line] | readonly ['spline', splines.spline] | readonly ['polyline', splines.polyline] | readonly ['ortho', splines.ortho] | readonly ['curved', splines.curved] | readonly ['compound', splines.compound];
|
|
300
|
+
type pos = string;
|
|
301
|
+
type xlabel = string;
|
|
302
|
+
type layer = string;
|
|
303
|
+
}
|
|
304
|
+
type L = readonly ['freeform', L.freeform] | readonly ['color', L.color] | readonly ['fillcolor', L.fillcolor] | readonly ['penwidth', L.penwidth] | readonly ['label', L.label] | readonly ['fontcolor', L.fontcolor] | readonly ['fontname', L.fontname] | readonly ['fontsize', L.fontsize] | readonly ['URL', L.URL] | readonly ['href', L.href] | readonly ['target', L.target] | readonly ['tooltip', L.tooltip] | readonly ['id', L.id] | readonly ['class', L.class_] | readonly ['comment', L.comment] | readonly ['style', L.style] | readonly ['layout', L.layout] | readonly ['rankdir', L.rankdir] | readonly ['bgcolor', L.bgcolor] | readonly ['labelloc', L.labelloc] | readonly ['labeljust', L.labeljust] | readonly ['size', L.size] | readonly ['ratio', L.ratio] | readonly ['pad', L.pad] | readonly ['nodesep', L.nodesep] | readonly ['ranksep', L.ranksep] | readonly ['dpi', L.dpi] | readonly ['overlap', L.overlap] | readonly ['pack', L.pack] | readonly ['packmode', L.packmode] | readonly ['concentrate', L.concentrate] | readonly ['compound', L.compound] | readonly ['center', L.center] | readonly ['normalize', L.normalize] | readonly ['landscape', L.landscape] | readonly ['outputorder', L.outputorder] | readonly ['charset', L.charset] | readonly ['clusterrank', L.clusterrank] | readonly ['shape', L.shape] | readonly ['width', L.width] | readonly ['height', L.height] | readonly ['fixedsize', L.fixedsize] | readonly ['regular', L.regular] | readonly ['sides', L.sides] | readonly ['skew', L.skew] | readonly ['distortion', L.distortion] | readonly ['orientation', L.orientation] | readonly ['peripheries', L.peripheries] | readonly ['pin', L.pin] | readonly ['image', L.image] | readonly ['imagepos', L.imagepos] | readonly ['imagescale', L.imagescale] | readonly ['group', L.group] | readonly ['sortv', L.sortv] | readonly ['area', L.area] | readonly ['z', L.z] | readonly ['margin', L.margin] | readonly ['arrowhead', L.arrowhead] | readonly ['arrowtail', L.arrowtail] | readonly ['arrowsize', L.arrowsize] | readonly ['dir', L.dir] | readonly ['headlabel', L.headlabel] | readonly ['taillabel', L.taillabel] | readonly ['labelfontcolor', L.labelfontcolor] | readonly ['labelfontname', L.labelfontname] | readonly ['labelfontsize', L.labelfontsize] | readonly ['labelangle', L.labelangle] | readonly ['labeldistance', L.labeldistance] | readonly ['labelfloat', L.labelfloat] | readonly ['weight', L.weight] | readonly ['len', L.len] | readonly ['minlen', L.minlen] | readonly ['constraint', L.constraint] | readonly ['decorate', L.decorate] | readonly ['headport', L.headport] | readonly ['tailport', L.tailport] | readonly ['headclip', L.headclip] | readonly ['tailclip', L.tailclip] | readonly ['lhead', L.lhead] | readonly ['ltail', L.ltail] | readonly ['samehead', L.samehead] | readonly ['sametail', L.sametail] | readonly ['edgeURL', L.edgeURL] | readonly ['headURL', L.headURL] | readonly ['tailURL', L.tailURL] | readonly ['labelURL', L.labelURL] | readonly ['edgehref', L.edgehref] | readonly ['headhref', L.headhref] | readonly ['tailhref', L.tailhref] | readonly ['labelhref', L.labelhref] | readonly ['edgetarget', L.edgetarget] | readonly ['headtarget', L.headtarget] | readonly ['tailtarget', L.tailtarget] | readonly ['edgetooltip', L.edgetooltip] | readonly ['headtooltip', L.headtooltip] | readonly ['tailtooltip', L.tailtooltip] | readonly ['labeltooltip', L.labeltooltip] | readonly ['radius', L.radius] | readonly ['splines', L.splines] | readonly ['pos', L.pos] | readonly ['xlabel', L.xlabel] | readonly ['layer', L.layer];
|
|
305
|
+
}
|
|
306
|
+
export type Attributes_ = _pi.List<Attributes_.L>;
|
|
307
|
+
export declare namespace Graph_ {
|
|
308
|
+
type attributes = Attributes_;
|
|
309
|
+
namespace nodes {
|
|
310
|
+
namespace D {
|
|
311
|
+
type attributes = Attributes_;
|
|
312
|
+
}
|
|
313
|
+
type D = {
|
|
314
|
+
readonly 'attributes': D.attributes;
|
|
315
|
+
};
|
|
316
|
+
}
|
|
317
|
+
type nodes = _pi.Dictionary<nodes.D>;
|
|
318
|
+
namespace edges {
|
|
319
|
+
namespace L {
|
|
320
|
+
type from_ = string;
|
|
321
|
+
type to = string;
|
|
322
|
+
type attributes = Attributes_;
|
|
323
|
+
}
|
|
324
|
+
type L = {
|
|
325
|
+
readonly 'from': L.from_;
|
|
326
|
+
readonly 'to': L.to;
|
|
327
|
+
readonly 'attributes': L.attributes;
|
|
328
|
+
};
|
|
329
|
+
}
|
|
330
|
+
type edges = _pi.List<edges.L>;
|
|
331
|
+
}
|
|
332
|
+
export type Graph_ = {
|
|
333
|
+
readonly 'attributes': Graph_.attributes;
|
|
334
|
+
readonly 'nodes': Graph_.nodes;
|
|
335
|
+
readonly 'edges': Graph_.edges;
|
|
336
|
+
};
|
|
337
|
+
export { Attributes_ as Attributes, Graph_ as Graph, };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL2xpYW5hL3NjaGVtYXMvZ3JhcGh2aXovZGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i_out from "./data";
|
|
2
|
+
export declare namespace Attributes_ {
|
|
3
|
+
type I = string;
|
|
4
|
+
type O = i_out.Attributes;
|
|
5
|
+
namespace P {
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export type Attributes_ = (context: Attributes_.I) => Attributes_.O;
|
|
9
|
+
export declare namespace Graph_ {
|
|
10
|
+
type I = string;
|
|
11
|
+
type O = i_out.Graph;
|
|
12
|
+
namespace P {
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export type Graph_ = (context: Graph_.I) => Graph_.O;
|
|
16
|
+
export { Attributes_ as Attributes, Graph_ as Graph, };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzZXJpYWxpemUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9saWFuYS9zY2hlbWFzL2dyYXBodml6L2Rlc2VyaWFsaXplLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i_out from "astn-core/dist/interface/generated/liana/schemas/sealed_target/data";
|
|
2
|
+
import * as i_in from "./data";
|
|
3
|
+
export declare namespace Attributes_ {
|
|
4
|
+
type I = i_in.Attributes;
|
|
5
|
+
type O = i_out.Value;
|
|
6
|
+
namespace P {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export type Attributes_ = (context: Attributes_.I) => Attributes_.O;
|
|
10
|
+
export declare namespace Graph_ {
|
|
11
|
+
type I = i_in.Graph;
|
|
12
|
+
type O = i_out.Value;
|
|
13
|
+
namespace P {
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export type Graph_ = (context: Graph_.I) => Graph_.O;
|
|
17
|
+
export { Attributes_ as Attributes, Graph_ as Graph, };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvaW50ZXJmYWNlL2dlbmVyYXRlZC9saWFuYS9zY2hlbWFzL2dyYXBodml6L21hcnNoYWxsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i_out from "./data";
|
|
2
|
+
import * as i_in from "./data";
|
|
3
|
+
export declare namespace Attributes_ {
|
|
4
|
+
type I = i_in.Attributes;
|
|
5
|
+
type O = i_out.Attributes;
|
|
6
|
+
namespace P {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export type Attributes_ = (context: Attributes_.I) => Attributes_.O;
|
|
10
|
+
export declare namespace Graph_ {
|
|
11
|
+
type I = i_in.Graph;
|
|
12
|
+
type O = i_out.Graph;
|
|
13
|
+
namespace P {
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export type Graph_ = (context: Graph_.I) => Graph_.O;
|
|
17
|
+
export { Attributes_ as Attributes, Graph_ as Graph, };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL2xpYW5hL3NjaGVtYXMvZ3JhcGh2aXovbWlncmF0ZV9ib2lsZXJwbGF0ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i_in from "./data";
|
|
2
|
+
export declare namespace Attributes_ {
|
|
3
|
+
type I = i_in.Attributes;
|
|
4
|
+
type O = string;
|
|
5
|
+
namespace P {
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export type Attributes_ = (context: Attributes_.I) => Attributes_.O;
|
|
9
|
+
export declare namespace Graph_ {
|
|
10
|
+
type I = i_in.Graph;
|
|
11
|
+
type O = string;
|
|
12
|
+
namespace P {
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
export type Graph_ = (context: Graph_.I) => Graph_.O;
|
|
16
|
+
export { Attributes_ as Attributes, Graph_ as Graph, };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vc3JjL2ludGVyZmFjZS9nZW5lcmF0ZWQvbGlhbmEvc2NoZW1hcy9ncmFwaHZpei9zZXJpYWxpemUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i_out from "./data";
|
|
2
|
+
import * as i_in from "astn-core/dist/interface/generated/liana/schemas/parse_tree/data";
|
|
3
|
+
export declare namespace Attributes_ {
|
|
4
|
+
type I = i_in.Value;
|
|
5
|
+
type O = i_out.Attributes;
|
|
6
|
+
namespace P {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
export type Attributes_ = (context: Attributes_.I) => Attributes_.O;
|
|
10
|
+
export declare namespace Graph_ {
|
|
11
|
+
type I = i_in.Value;
|
|
12
|
+
type O = i_out.Graph;
|
|
13
|
+
namespace P {
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export type Graph_ = (context: Graph_.I) => Graph_.O;
|
|
17
|
+
export { Attributes_ as Attributes, Graph_ as Graph, };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3NyYy9pbnRlcmZhY2UvZ2VuZXJhdGVkL2xpYW5hL3NjaGVtYXMvZ3JhcGh2aXovdW5tYXJzaGFsbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pareto-graphviz",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "A TypeScript library for creating Graphviz graphs with pareto",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"node": ">=14.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"astn-core": "^0.5.
|
|
31
|
-
"pareto-fountain-pen": "^0.4.
|
|
30
|
+
"astn-core": "^0.5.7",
|
|
31
|
+
"pareto-fountain-pen": "^0.4.7"
|
|
32
32
|
}
|
|
33
33
|
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as _pi from "pareto-core/dist/interface";
|
|
2
|
-
export declare namespace Graph_ {
|
|
3
|
-
namespace nodes {
|
|
4
|
-
type D = null;
|
|
5
|
-
}
|
|
6
|
-
type nodes = _pi.Dictionary<nodes.D>;
|
|
7
|
-
namespace edges {
|
|
8
|
-
namespace L {
|
|
9
|
-
type _from = string;
|
|
10
|
-
type to = string;
|
|
11
|
-
}
|
|
12
|
-
type L = {
|
|
13
|
-
readonly 'from': L._from;
|
|
14
|
-
readonly 'to': L.to;
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
type edges = _pi.List<edges.L>;
|
|
18
|
-
}
|
|
19
|
-
export type Graph_ = {
|
|
20
|
-
readonly 'nodes': Graph_.nodes;
|
|
21
|
-
readonly 'edges': Graph_.edges;
|
|
22
|
-
};
|
|
23
|
-
export { Graph_ as Graph, };
|
|
File without changes
|