@things-factory/integration-ui 6.1.103 → 6.1.104
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/client/analysis/graph-viewer-style.ts +117 -0
- package/client/analysis/graph-viewer.ts +1811 -0
- package/client/pages/integration-analysis.ts +148 -0
- package/client/route.ts +4 -0
- package/dist-client/analysis/graph-viewer-style.d.ts +1 -0
- package/dist-client/analysis/graph-viewer-style.js +117 -0
- package/dist-client/analysis/graph-viewer-style.js.map +1 -0
- package/dist-client/analysis/graph-viewer.d.ts +749 -0
- package/dist-client/analysis/graph-viewer.js +1516 -0
- package/dist-client/analysis/graph-viewer.js.map +1 -0
- package/dist-client/pages/integration-analysis.d.ts +19 -0
- package/dist-client/pages/integration-analysis.js +150 -0
- package/dist-client/pages/integration-analysis.js.map +1 -0
- package/dist-client/route.js +3 -0
- package/dist-client/route.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -3
- package/things-factory.config.js +4 -0
- package/translations/en.json +1 -1
- package/translations/ja.json +1 -1
- package/translations/ko.json +1 -1
- package/translations/ms.json +61 -61
- package/translations/zh.json +1 -1
|
@@ -0,0 +1,749 @@
|
|
|
1
|
+
export declare class GraphViewer {
|
|
2
|
+
private container;
|
|
3
|
+
private info;
|
|
4
|
+
private node;
|
|
5
|
+
private nodes;
|
|
6
|
+
private relationship;
|
|
7
|
+
private relationshipOutline;
|
|
8
|
+
private relationshipOverlay;
|
|
9
|
+
private relationshipText;
|
|
10
|
+
private relationships;
|
|
11
|
+
private selector;
|
|
12
|
+
private simulation;
|
|
13
|
+
private svg;
|
|
14
|
+
private svgNodes;
|
|
15
|
+
private svgRelationships;
|
|
16
|
+
private svgScale;
|
|
17
|
+
private svgTranslate;
|
|
18
|
+
private classes2colors;
|
|
19
|
+
private justLoaded;
|
|
20
|
+
private numClasses;
|
|
21
|
+
private options;
|
|
22
|
+
constructor(_selector: any, _options: any);
|
|
23
|
+
appendGraph(container: any): void;
|
|
24
|
+
appendImageToNode(node: any): any;
|
|
25
|
+
appendInfoPanel(container: any): any;
|
|
26
|
+
appendInfoElement(cls: any, isNode: any, property: any, value?: any): void;
|
|
27
|
+
appendInfoElementClass(cls: any, node: any): void;
|
|
28
|
+
appendInfoElementProperty(cls: any, property: any, value: any): void;
|
|
29
|
+
appendInfoElementRelationship(cls: any, relationship: any): void;
|
|
30
|
+
appendNode(): any;
|
|
31
|
+
appendNodeToGraph(): any;
|
|
32
|
+
appendOutlineToNode(node: any): any;
|
|
33
|
+
appendBoxToNode(node: any): any;
|
|
34
|
+
appendRingToNode(node: any): any;
|
|
35
|
+
appendTextToNode(node: any): any;
|
|
36
|
+
appendRandomDataToNode(d: any, maxNodesToGenerate: any): void;
|
|
37
|
+
appendRelationship(): any;
|
|
38
|
+
appendOutlineToRelationship(r: any): any;
|
|
39
|
+
appendOverlayToRelationship(r: any): any;
|
|
40
|
+
appendTextToRelationship(r: any): any;
|
|
41
|
+
appendRelationshipToGraph(): {
|
|
42
|
+
outline: any;
|
|
43
|
+
overlay: any;
|
|
44
|
+
relationship: any;
|
|
45
|
+
text: any;
|
|
46
|
+
};
|
|
47
|
+
class2color(cls: any): any;
|
|
48
|
+
class2darkenColor(cls: any): any;
|
|
49
|
+
clearInfo(): void;
|
|
50
|
+
color(): any;
|
|
51
|
+
colors(): string[];
|
|
52
|
+
contains(array: any, id: any): boolean;
|
|
53
|
+
defaultColor(): any;
|
|
54
|
+
defaultDarkenColor(): any;
|
|
55
|
+
dragEnded(d: any, event: any): void;
|
|
56
|
+
dragged(d: any, event: any): void;
|
|
57
|
+
dragStarted(d: any, event: any): void;
|
|
58
|
+
extend(obj1: any, obj2: any): {};
|
|
59
|
+
fontAwesomeIcons(): {
|
|
60
|
+
glass: string;
|
|
61
|
+
music: string;
|
|
62
|
+
search: string;
|
|
63
|
+
'envelope-o': string;
|
|
64
|
+
heart: string;
|
|
65
|
+
star: string;
|
|
66
|
+
'star-o': string;
|
|
67
|
+
user: string;
|
|
68
|
+
film: string;
|
|
69
|
+
'th-large': string;
|
|
70
|
+
th: string;
|
|
71
|
+
'th-list': string;
|
|
72
|
+
check: string;
|
|
73
|
+
'remove,close,times': string;
|
|
74
|
+
'search-plus': string;
|
|
75
|
+
'search-minus': string;
|
|
76
|
+
'power-off': string;
|
|
77
|
+
signal: string;
|
|
78
|
+
'gear,cog': string;
|
|
79
|
+
'trash-o': string;
|
|
80
|
+
home: string;
|
|
81
|
+
'file-o': string;
|
|
82
|
+
'clock-o': string;
|
|
83
|
+
road: string;
|
|
84
|
+
download: string;
|
|
85
|
+
'arrow-circle-o-down': string;
|
|
86
|
+
'arrow-circle-o-up': string;
|
|
87
|
+
inbox: string;
|
|
88
|
+
'play-circle-o': string;
|
|
89
|
+
'rotate-right,repeat': string;
|
|
90
|
+
refresh: string;
|
|
91
|
+
'list-alt': string;
|
|
92
|
+
lock: string;
|
|
93
|
+
flag: string;
|
|
94
|
+
headphones: string;
|
|
95
|
+
'volume-off': string;
|
|
96
|
+
'volume-down': string;
|
|
97
|
+
'volume-up': string;
|
|
98
|
+
qrcode: string;
|
|
99
|
+
barcode: string;
|
|
100
|
+
tag: string;
|
|
101
|
+
tags: string;
|
|
102
|
+
book: string;
|
|
103
|
+
bookmark: string;
|
|
104
|
+
print: string;
|
|
105
|
+
camera: string;
|
|
106
|
+
font: string;
|
|
107
|
+
bold: string;
|
|
108
|
+
italic: string;
|
|
109
|
+
'text-height': string;
|
|
110
|
+
'text-width': string;
|
|
111
|
+
'align-left': string;
|
|
112
|
+
'align-center': string;
|
|
113
|
+
'align-right': string;
|
|
114
|
+
'align-justify': string;
|
|
115
|
+
list: string;
|
|
116
|
+
'dedent,outdent': string;
|
|
117
|
+
indent: string;
|
|
118
|
+
'video-camera': string;
|
|
119
|
+
'photo,image,picture-o': string;
|
|
120
|
+
pencil: string;
|
|
121
|
+
'map-marker': string;
|
|
122
|
+
adjust: string;
|
|
123
|
+
tint: string;
|
|
124
|
+
'edit,pencil-square-o': string;
|
|
125
|
+
'share-square-o': string;
|
|
126
|
+
'check-square-o': string;
|
|
127
|
+
arrows: string;
|
|
128
|
+
'step-backward': string;
|
|
129
|
+
'fast-backward': string;
|
|
130
|
+
backward: string;
|
|
131
|
+
play: string;
|
|
132
|
+
pause: string;
|
|
133
|
+
stop: string;
|
|
134
|
+
forward: string;
|
|
135
|
+
'fast-forward': string;
|
|
136
|
+
'step-forward': string;
|
|
137
|
+
eject: string;
|
|
138
|
+
'chevron-left': string;
|
|
139
|
+
'chevron-right': string;
|
|
140
|
+
'plus-circle': string;
|
|
141
|
+
'minus-circle': string;
|
|
142
|
+
'times-circle': string;
|
|
143
|
+
'check-circle': string;
|
|
144
|
+
'question-circle': string;
|
|
145
|
+
'info-circle': string;
|
|
146
|
+
crosshairs: string;
|
|
147
|
+
'times-circle-o': string;
|
|
148
|
+
'check-circle-o': string;
|
|
149
|
+
ban: string;
|
|
150
|
+
'arrow-left': string;
|
|
151
|
+
'arrow-right': string;
|
|
152
|
+
'arrow-up': string;
|
|
153
|
+
'arrow-down': string;
|
|
154
|
+
'mail-forward,share': string;
|
|
155
|
+
expand: string;
|
|
156
|
+
compress: string;
|
|
157
|
+
plus: string;
|
|
158
|
+
minus: string;
|
|
159
|
+
asterisk: string;
|
|
160
|
+
'exclamation-circle': string;
|
|
161
|
+
gift: string;
|
|
162
|
+
leaf: string;
|
|
163
|
+
fire: string;
|
|
164
|
+
eye: string;
|
|
165
|
+
'eye-slash': string;
|
|
166
|
+
'warning,exclamation-triangle': string;
|
|
167
|
+
plane: string;
|
|
168
|
+
calendar: string;
|
|
169
|
+
random: string;
|
|
170
|
+
comment: string;
|
|
171
|
+
magnet: string;
|
|
172
|
+
'chevron-up': string;
|
|
173
|
+
'chevron-down': string;
|
|
174
|
+
retweet: string;
|
|
175
|
+
'shopping-cart': string;
|
|
176
|
+
folder: string;
|
|
177
|
+
'folder-open': string;
|
|
178
|
+
'arrows-v': string;
|
|
179
|
+
'arrows-h': string;
|
|
180
|
+
'bar-chart-o,bar-chart': string;
|
|
181
|
+
'twitter-square': string;
|
|
182
|
+
'facebook-square': string;
|
|
183
|
+
'camera-retro': string;
|
|
184
|
+
key: string;
|
|
185
|
+
'gears,cogs': string;
|
|
186
|
+
comments: string;
|
|
187
|
+
'thumbs-o-up': string;
|
|
188
|
+
'thumbs-o-down': string;
|
|
189
|
+
'star-half': string;
|
|
190
|
+
'heart-o': string;
|
|
191
|
+
'sign-out': string;
|
|
192
|
+
'linkedin-square': string;
|
|
193
|
+
'thumb-tack': string;
|
|
194
|
+
'external-link': string;
|
|
195
|
+
'sign-in': string;
|
|
196
|
+
trophy: string;
|
|
197
|
+
'github-square': string;
|
|
198
|
+
upload: string;
|
|
199
|
+
'lemon-o': string;
|
|
200
|
+
phone: string;
|
|
201
|
+
'square-o': string;
|
|
202
|
+
'bookmark-o': string;
|
|
203
|
+
'phone-square': string;
|
|
204
|
+
twitter: string;
|
|
205
|
+
'facebook-f,facebook': string;
|
|
206
|
+
github: string;
|
|
207
|
+
unlock: string;
|
|
208
|
+
'credit-card': string;
|
|
209
|
+
'feed,rss': string;
|
|
210
|
+
'hdd-o': string;
|
|
211
|
+
bullhorn: string;
|
|
212
|
+
bell: string;
|
|
213
|
+
certificate: string;
|
|
214
|
+
'hand-o-right': string;
|
|
215
|
+
'hand-o-left': string;
|
|
216
|
+
'hand-o-up': string;
|
|
217
|
+
'hand-o-down': string;
|
|
218
|
+
'arrow-circle-left': string;
|
|
219
|
+
'arrow-circle-right': string;
|
|
220
|
+
'arrow-circle-up': string;
|
|
221
|
+
'arrow-circle-down': string;
|
|
222
|
+
globe: string;
|
|
223
|
+
wrench: string;
|
|
224
|
+
tasks: string;
|
|
225
|
+
filter: string;
|
|
226
|
+
briefcase: string;
|
|
227
|
+
'arrows-alt': string;
|
|
228
|
+
'group,users': string;
|
|
229
|
+
'chain,link': string;
|
|
230
|
+
cloud: string;
|
|
231
|
+
flask: string;
|
|
232
|
+
'cut,scissors': string;
|
|
233
|
+
'copy,files-o': string;
|
|
234
|
+
paperclip: string;
|
|
235
|
+
'save,floppy-o': string;
|
|
236
|
+
square: string;
|
|
237
|
+
'navicon,reorder,bars': string;
|
|
238
|
+
'list-ul': string;
|
|
239
|
+
'list-ol': string;
|
|
240
|
+
strikethrough: string;
|
|
241
|
+
underline: string;
|
|
242
|
+
table: string;
|
|
243
|
+
magic: string;
|
|
244
|
+
truck: string;
|
|
245
|
+
pinterest: string;
|
|
246
|
+
'pinterest-square': string;
|
|
247
|
+
'google-plus-square': string;
|
|
248
|
+
'google-plus': string;
|
|
249
|
+
money: string;
|
|
250
|
+
'caret-down': string;
|
|
251
|
+
'caret-up': string;
|
|
252
|
+
'caret-left': string;
|
|
253
|
+
'caret-right': string;
|
|
254
|
+
columns: string;
|
|
255
|
+
'unsorted,sort': string;
|
|
256
|
+
'sort-down,sort-desc': string;
|
|
257
|
+
'sort-up,sort-asc': string;
|
|
258
|
+
envelope: string;
|
|
259
|
+
linkedin: string;
|
|
260
|
+
'rotate-left,undo': string;
|
|
261
|
+
'legal,gavel': string;
|
|
262
|
+
'dashboard,tachometer': string;
|
|
263
|
+
'comment-o': string;
|
|
264
|
+
'comments-o': string;
|
|
265
|
+
'flash,bolt': string;
|
|
266
|
+
sitemap: string;
|
|
267
|
+
umbrella: string;
|
|
268
|
+
'paste,clipboard': string;
|
|
269
|
+
'lightbulb-o': string;
|
|
270
|
+
exchange: string;
|
|
271
|
+
'cloud-download': string;
|
|
272
|
+
'cloud-upload': string;
|
|
273
|
+
'user-md': string;
|
|
274
|
+
stethoscope: string;
|
|
275
|
+
suitcase: string;
|
|
276
|
+
'bell-o': string;
|
|
277
|
+
coffee: string;
|
|
278
|
+
cutlery: string;
|
|
279
|
+
'file-text-o': string;
|
|
280
|
+
'building-o': string;
|
|
281
|
+
'hospital-o': string;
|
|
282
|
+
ambulance: string;
|
|
283
|
+
medkit: string;
|
|
284
|
+
'fighter-jet': string;
|
|
285
|
+
beer: string;
|
|
286
|
+
'h-square': string;
|
|
287
|
+
'plus-square': string;
|
|
288
|
+
'angle-double-left': string;
|
|
289
|
+
'angle-double-right': string;
|
|
290
|
+
'angle-double-up': string;
|
|
291
|
+
'angle-double-down': string;
|
|
292
|
+
'angle-left': string;
|
|
293
|
+
'angle-right': string;
|
|
294
|
+
'angle-up': string;
|
|
295
|
+
'angle-down': string;
|
|
296
|
+
desktop: string;
|
|
297
|
+
laptop: string;
|
|
298
|
+
tablet: string;
|
|
299
|
+
'mobile-phone,mobile': string;
|
|
300
|
+
'circle-o': string;
|
|
301
|
+
'quote-left': string;
|
|
302
|
+
'quote-right': string;
|
|
303
|
+
spinner: string;
|
|
304
|
+
circle: string;
|
|
305
|
+
'mail-reply,reply': string;
|
|
306
|
+
'github-alt': string;
|
|
307
|
+
'folder-o': string;
|
|
308
|
+
'folder-open-o': string;
|
|
309
|
+
'smile-o': string;
|
|
310
|
+
'frown-o': string;
|
|
311
|
+
'meh-o': string;
|
|
312
|
+
gamepad: string;
|
|
313
|
+
'keyboard-o': string;
|
|
314
|
+
'flag-o': string;
|
|
315
|
+
'flag-checkered': string;
|
|
316
|
+
terminal: string;
|
|
317
|
+
code: string;
|
|
318
|
+
'mail-reply-all,reply-all': string;
|
|
319
|
+
'star-half-empty,star-half-full,star-half-o': string;
|
|
320
|
+
'location-arrow': string;
|
|
321
|
+
crop: string;
|
|
322
|
+
'code-fork': string;
|
|
323
|
+
'unlink,chain-broken': string;
|
|
324
|
+
question: string;
|
|
325
|
+
info: string;
|
|
326
|
+
exclamation: string;
|
|
327
|
+
superscript: string;
|
|
328
|
+
subscript: string;
|
|
329
|
+
eraser: string;
|
|
330
|
+
'puzzle-piece': string;
|
|
331
|
+
microphone: string;
|
|
332
|
+
'microphone-slash': string;
|
|
333
|
+
shield: string;
|
|
334
|
+
'calendar-o': string;
|
|
335
|
+
'fire-extinguisher': string;
|
|
336
|
+
rocket: string;
|
|
337
|
+
maxcdn: string;
|
|
338
|
+
'chevron-circle-left': string;
|
|
339
|
+
'chevron-circle-right': string;
|
|
340
|
+
'chevron-circle-up': string;
|
|
341
|
+
'chevron-circle-down': string;
|
|
342
|
+
html5: string;
|
|
343
|
+
css3: string;
|
|
344
|
+
anchor: string;
|
|
345
|
+
'unlock-alt': string;
|
|
346
|
+
bullseye: string;
|
|
347
|
+
'ellipsis-h': string;
|
|
348
|
+
'ellipsis-v': string;
|
|
349
|
+
'rss-square': string;
|
|
350
|
+
'play-circle': string;
|
|
351
|
+
ticket: string;
|
|
352
|
+
'minus-square': string;
|
|
353
|
+
'minus-square-o': string;
|
|
354
|
+
'level-up': string;
|
|
355
|
+
'level-down': string;
|
|
356
|
+
'check-square': string;
|
|
357
|
+
'pencil-square': string;
|
|
358
|
+
'external-link-square': string;
|
|
359
|
+
'share-square': string;
|
|
360
|
+
compass: string;
|
|
361
|
+
'toggle-down,caret-square-o-down': string;
|
|
362
|
+
'toggle-up,caret-square-o-up': string;
|
|
363
|
+
'toggle-right,caret-square-o-right': string;
|
|
364
|
+
'euro,eur': string;
|
|
365
|
+
gbp: string;
|
|
366
|
+
'dollar,usd': string;
|
|
367
|
+
'rupee,inr': string;
|
|
368
|
+
'cny,rmb,yen,jpy': string;
|
|
369
|
+
'ruble,rouble,rub': string;
|
|
370
|
+
'won,krw': string;
|
|
371
|
+
'bitcoin,btc': string;
|
|
372
|
+
file: string;
|
|
373
|
+
'file-text': string;
|
|
374
|
+
'sort-alpha-asc': string;
|
|
375
|
+
'sort-alpha-desc': string;
|
|
376
|
+
'sort-amount-asc': string;
|
|
377
|
+
'sort-amount-desc': string;
|
|
378
|
+
'sort-numeric-asc': string;
|
|
379
|
+
'sort-numeric-desc': string;
|
|
380
|
+
'thumbs-up': string;
|
|
381
|
+
'thumbs-down': string;
|
|
382
|
+
'youtube-square': string;
|
|
383
|
+
youtube: string;
|
|
384
|
+
xing: string;
|
|
385
|
+
'xing-square': string;
|
|
386
|
+
'youtube-play': string;
|
|
387
|
+
dropbox: string;
|
|
388
|
+
'stack-overflow': string;
|
|
389
|
+
instagram: string;
|
|
390
|
+
flickr: string;
|
|
391
|
+
adn: string;
|
|
392
|
+
bitbucket: string;
|
|
393
|
+
'bitbucket-square': string;
|
|
394
|
+
tumblr: string;
|
|
395
|
+
'tumblr-square': string;
|
|
396
|
+
'long-arrow-down': string;
|
|
397
|
+
'long-arrow-up': string;
|
|
398
|
+
'long-arrow-left': string;
|
|
399
|
+
'long-arrow-right': string;
|
|
400
|
+
apple: string;
|
|
401
|
+
windows: string;
|
|
402
|
+
android: string;
|
|
403
|
+
linux: string;
|
|
404
|
+
dribbble: string;
|
|
405
|
+
skype: string;
|
|
406
|
+
foursquare: string;
|
|
407
|
+
trello: string;
|
|
408
|
+
female: string;
|
|
409
|
+
male: string;
|
|
410
|
+
'gittip,gratipay': string;
|
|
411
|
+
'sun-o': string;
|
|
412
|
+
'moon-o': string;
|
|
413
|
+
archive: string;
|
|
414
|
+
bug: string;
|
|
415
|
+
vk: string;
|
|
416
|
+
weibo: string;
|
|
417
|
+
renren: string;
|
|
418
|
+
pagelines: string;
|
|
419
|
+
'stack-exchange': string;
|
|
420
|
+
'arrow-circle-o-right': string;
|
|
421
|
+
'arrow-circle-o-left': string;
|
|
422
|
+
'toggle-left,caret-square-o-left': string;
|
|
423
|
+
'dot-circle-o': string;
|
|
424
|
+
wheelchair: string;
|
|
425
|
+
'vimeo-square': string;
|
|
426
|
+
'turkish-lira,try': string;
|
|
427
|
+
'plus-square-o': string;
|
|
428
|
+
'space-shuttle': string;
|
|
429
|
+
slack: string;
|
|
430
|
+
'envelope-square': string;
|
|
431
|
+
wordpress: string;
|
|
432
|
+
openid: string;
|
|
433
|
+
'institution,bank,university': string;
|
|
434
|
+
'mortar-board,graduation-cap': string;
|
|
435
|
+
yahoo: string;
|
|
436
|
+
google: string;
|
|
437
|
+
reddit: string;
|
|
438
|
+
'reddit-square': string;
|
|
439
|
+
'stumbleupon-circle': string;
|
|
440
|
+
stumbleupon: string;
|
|
441
|
+
delicious: string;
|
|
442
|
+
digg: string;
|
|
443
|
+
'pied-piper-pp': string;
|
|
444
|
+
'pied-piper-alt': string;
|
|
445
|
+
drupal: string;
|
|
446
|
+
joomla: string;
|
|
447
|
+
language: string;
|
|
448
|
+
fax: string;
|
|
449
|
+
building: string;
|
|
450
|
+
child: string;
|
|
451
|
+
paw: string;
|
|
452
|
+
spoon: string;
|
|
453
|
+
cube: string;
|
|
454
|
+
cubes: string;
|
|
455
|
+
behance: string;
|
|
456
|
+
'behance-square': string;
|
|
457
|
+
steam: string;
|
|
458
|
+
'steam-square': string;
|
|
459
|
+
recycle: string;
|
|
460
|
+
'automobile,car': string;
|
|
461
|
+
'cab,taxi': string;
|
|
462
|
+
tree: string;
|
|
463
|
+
spotify: string;
|
|
464
|
+
deviantart: string;
|
|
465
|
+
soundcloud: string;
|
|
466
|
+
database: string;
|
|
467
|
+
'file-pdf-o': string;
|
|
468
|
+
'file-word-o': string;
|
|
469
|
+
'file-excel-o': string;
|
|
470
|
+
'file-powerpoint-o': string;
|
|
471
|
+
'file-photo-o,file-picture-o,file-image-o': string;
|
|
472
|
+
'file-zip-o,file-archive-o': string;
|
|
473
|
+
'file-sound-o,file-audio-o': string;
|
|
474
|
+
'file-movie-o,file-video-o': string;
|
|
475
|
+
'file-code-o': string;
|
|
476
|
+
vine: string;
|
|
477
|
+
codepen: string;
|
|
478
|
+
jsfiddle: string;
|
|
479
|
+
'life-bouy,life-buoy,life-saver,support,life-ring': string;
|
|
480
|
+
'circle-o-notch': string;
|
|
481
|
+
'ra,resistance,rebel': string;
|
|
482
|
+
'ge,empire': string;
|
|
483
|
+
'git-square': string;
|
|
484
|
+
git: string;
|
|
485
|
+
'y-combinator-square,yc-square,hacker-news': string;
|
|
486
|
+
'tencent-weibo': string;
|
|
487
|
+
qq: string;
|
|
488
|
+
'wechat,weixin': string;
|
|
489
|
+
'send,paper-plane': string;
|
|
490
|
+
'send-o,paper-plane-o': string;
|
|
491
|
+
history: string;
|
|
492
|
+
'circle-thin': string;
|
|
493
|
+
header: string;
|
|
494
|
+
paragraph: string;
|
|
495
|
+
sliders: string;
|
|
496
|
+
'share-alt': string;
|
|
497
|
+
'share-alt-square': string;
|
|
498
|
+
bomb: string;
|
|
499
|
+
'soccer-ball-o,futbol-o': string;
|
|
500
|
+
tty: string;
|
|
501
|
+
binoculars: string;
|
|
502
|
+
plug: string;
|
|
503
|
+
slideshare: string;
|
|
504
|
+
twitch: string;
|
|
505
|
+
yelp: string;
|
|
506
|
+
'newspaper-o': string;
|
|
507
|
+
wifi: string;
|
|
508
|
+
calculator: string;
|
|
509
|
+
paypal: string;
|
|
510
|
+
'google-wallet': string;
|
|
511
|
+
'cc-visa': string;
|
|
512
|
+
'cc-mastercard': string;
|
|
513
|
+
'cc-discover': string;
|
|
514
|
+
'cc-amex': string;
|
|
515
|
+
'cc-paypal': string;
|
|
516
|
+
'cc-stripe': string;
|
|
517
|
+
'bell-slash': string;
|
|
518
|
+
'bell-slash-o': string;
|
|
519
|
+
trash: string;
|
|
520
|
+
copyright: string;
|
|
521
|
+
at: string;
|
|
522
|
+
eyedropper: string;
|
|
523
|
+
'paint-brush': string;
|
|
524
|
+
'birthday-cake': string;
|
|
525
|
+
'area-chart': string;
|
|
526
|
+
'pie-chart': string;
|
|
527
|
+
'line-chart': string;
|
|
528
|
+
lastfm: string;
|
|
529
|
+
'lastfm-square': string;
|
|
530
|
+
'toggle-off': string;
|
|
531
|
+
'toggle-on': string;
|
|
532
|
+
bicycle: string;
|
|
533
|
+
bus: string;
|
|
534
|
+
ioxhost: string;
|
|
535
|
+
angellist: string;
|
|
536
|
+
cc: string;
|
|
537
|
+
'shekel,sheqel,ils': string;
|
|
538
|
+
meanpath: string;
|
|
539
|
+
buysellads: string;
|
|
540
|
+
connectdevelop: string;
|
|
541
|
+
dashcube: string;
|
|
542
|
+
forumbee: string;
|
|
543
|
+
leanpub: string;
|
|
544
|
+
sellsy: string;
|
|
545
|
+
shirtsinbulk: string;
|
|
546
|
+
simplybuilt: string;
|
|
547
|
+
skyatlas: string;
|
|
548
|
+
'cart-plus': string;
|
|
549
|
+
'cart-arrow-down': string;
|
|
550
|
+
diamond: string;
|
|
551
|
+
ship: string;
|
|
552
|
+
'user-secret': string;
|
|
553
|
+
motorcycle: string;
|
|
554
|
+
'street-view': string;
|
|
555
|
+
heartbeat: string;
|
|
556
|
+
venus: string;
|
|
557
|
+
mars: string;
|
|
558
|
+
mercury: string;
|
|
559
|
+
'intersex,transgender': string;
|
|
560
|
+
'transgender-alt': string;
|
|
561
|
+
'venus-double': string;
|
|
562
|
+
'mars-double': string;
|
|
563
|
+
'venus-mars': string;
|
|
564
|
+
'mars-stroke': string;
|
|
565
|
+
'mars-stroke-v': string;
|
|
566
|
+
'mars-stroke-h': string;
|
|
567
|
+
neuter: string;
|
|
568
|
+
genderless: string;
|
|
569
|
+
'facebook-official': string;
|
|
570
|
+
'pinterest-p': string;
|
|
571
|
+
whatsapp: string;
|
|
572
|
+
server: string;
|
|
573
|
+
'user-plus': string;
|
|
574
|
+
'user-times': string;
|
|
575
|
+
'hotel,bed': string;
|
|
576
|
+
viacoin: string;
|
|
577
|
+
train: string;
|
|
578
|
+
subway: string;
|
|
579
|
+
medium: string;
|
|
580
|
+
'yc,y-combinator': string;
|
|
581
|
+
'optin-monster': string;
|
|
582
|
+
opencart: string;
|
|
583
|
+
expeditedssl: string;
|
|
584
|
+
'battery-4,battery-full': string;
|
|
585
|
+
'battery-3,battery-three-quarters': string;
|
|
586
|
+
'battery-2,battery-half': string;
|
|
587
|
+
'battery-1,battery-quarter': string;
|
|
588
|
+
'battery-0,battery-empty': string;
|
|
589
|
+
'mouse-pointer': string;
|
|
590
|
+
'i-cursor': string;
|
|
591
|
+
'object-group': string;
|
|
592
|
+
'object-ungroup': string;
|
|
593
|
+
'sticky-note': string;
|
|
594
|
+
'sticky-note-o': string;
|
|
595
|
+
'cc-jcb': string;
|
|
596
|
+
'cc-diners-club': string;
|
|
597
|
+
clone: string;
|
|
598
|
+
'balance-scale': string;
|
|
599
|
+
'hourglass-o': string;
|
|
600
|
+
'hourglass-1,hourglass-start': string;
|
|
601
|
+
'hourglass-2,hourglass-half': string;
|
|
602
|
+
'hourglass-3,hourglass-end': string;
|
|
603
|
+
hourglass: string;
|
|
604
|
+
'hand-grab-o,hand-rock-o': string;
|
|
605
|
+
'hand-stop-o,hand-paper-o': string;
|
|
606
|
+
'hand-scissors-o': string;
|
|
607
|
+
'hand-lizard-o': string;
|
|
608
|
+
'hand-spock-o': string;
|
|
609
|
+
'hand-pointer-o': string;
|
|
610
|
+
'hand-peace-o': string;
|
|
611
|
+
trademark: string;
|
|
612
|
+
registered: string;
|
|
613
|
+
'creative-commons': string;
|
|
614
|
+
gg: string;
|
|
615
|
+
'gg-circle': string;
|
|
616
|
+
tripadvisor: string;
|
|
617
|
+
odnoklassniki: string;
|
|
618
|
+
'odnoklassniki-square': string;
|
|
619
|
+
'get-pocket': string;
|
|
620
|
+
'wikipedia-w': string;
|
|
621
|
+
safari: string;
|
|
622
|
+
chrome: string;
|
|
623
|
+
firefox: string;
|
|
624
|
+
opera: string;
|
|
625
|
+
'internet-explorer': string;
|
|
626
|
+
'tv,television': string;
|
|
627
|
+
contao: string;
|
|
628
|
+
'500px': string;
|
|
629
|
+
amazon: string;
|
|
630
|
+
'calendar-plus-o': string;
|
|
631
|
+
'calendar-minus-o': string;
|
|
632
|
+
'calendar-times-o': string;
|
|
633
|
+
'calendar-check-o': string;
|
|
634
|
+
industry: string;
|
|
635
|
+
'map-pin': string;
|
|
636
|
+
'map-signs': string;
|
|
637
|
+
'map-o': string;
|
|
638
|
+
map: string;
|
|
639
|
+
commenting: string;
|
|
640
|
+
'commenting-o': string;
|
|
641
|
+
houzz: string;
|
|
642
|
+
vimeo: string;
|
|
643
|
+
'black-tie': string;
|
|
644
|
+
fonticons: string;
|
|
645
|
+
'reddit-alien': string;
|
|
646
|
+
edge: string;
|
|
647
|
+
'credit-card-alt': string;
|
|
648
|
+
codiepie: string;
|
|
649
|
+
modx: string;
|
|
650
|
+
'fort-awesome': string;
|
|
651
|
+
usb: string;
|
|
652
|
+
'product-hunt': string;
|
|
653
|
+
mixcloud: string;
|
|
654
|
+
scribd: string;
|
|
655
|
+
'pause-circle': string;
|
|
656
|
+
'pause-circle-o': string;
|
|
657
|
+
'stop-circle': string;
|
|
658
|
+
'stop-circle-o': string;
|
|
659
|
+
'shopping-bag': string;
|
|
660
|
+
'shopping-basket': string;
|
|
661
|
+
hashtag: string;
|
|
662
|
+
bluetooth: string;
|
|
663
|
+
'bluetooth-b': string;
|
|
664
|
+
percent: string;
|
|
665
|
+
gitlab: string;
|
|
666
|
+
wpbeginner: string;
|
|
667
|
+
wpforms: string;
|
|
668
|
+
envira: string;
|
|
669
|
+
'universal-access': string;
|
|
670
|
+
'wheelchair-alt': string;
|
|
671
|
+
'question-circle-o': string;
|
|
672
|
+
blind: string;
|
|
673
|
+
'audio-description': string;
|
|
674
|
+
'volume-control-phone': string;
|
|
675
|
+
braille: string;
|
|
676
|
+
'assistive-listening-systems': string;
|
|
677
|
+
'asl-interpreting,american-sign-language-interpreting': string;
|
|
678
|
+
'deafness,hard-of-hearing,deaf': string;
|
|
679
|
+
glide: string;
|
|
680
|
+
'glide-g': string;
|
|
681
|
+
'signing,sign-language': string;
|
|
682
|
+
'low-vision': string;
|
|
683
|
+
viadeo: string;
|
|
684
|
+
'viadeo-square': string;
|
|
685
|
+
snapchat: string;
|
|
686
|
+
'snapchat-ghost': string;
|
|
687
|
+
'snapchat-square': string;
|
|
688
|
+
'pied-piper': string;
|
|
689
|
+
'first-order': string;
|
|
690
|
+
yoast: string;
|
|
691
|
+
themeisle: string;
|
|
692
|
+
'google-plus-circle,google-plus-official': string;
|
|
693
|
+
'fa,font-awesome': string;
|
|
694
|
+
};
|
|
695
|
+
icon(d: any): any;
|
|
696
|
+
image(d: any): any;
|
|
697
|
+
init(_selector: any, _options: any): void;
|
|
698
|
+
initIconMap(): void;
|
|
699
|
+
initImageMap(): void;
|
|
700
|
+
initSimulation(): any;
|
|
701
|
+
loadGraphData(): void;
|
|
702
|
+
loadGraphDataFromUrl(dataUrl: any): void;
|
|
703
|
+
merge(target: any, source: any): void;
|
|
704
|
+
graphDataToD3Data(data: any): {
|
|
705
|
+
nodes: any[];
|
|
706
|
+
relationships: any[];
|
|
707
|
+
};
|
|
708
|
+
randomD3Data(d: any, maxNodesToGenerate: any): {
|
|
709
|
+
nodes: any[];
|
|
710
|
+
relationships: any[];
|
|
711
|
+
};
|
|
712
|
+
randomLabel(): string;
|
|
713
|
+
rotate(cx: any, cy: any, x: any, y: any, angle: any): {
|
|
714
|
+
x: any;
|
|
715
|
+
y: any;
|
|
716
|
+
};
|
|
717
|
+
rotatePoint(c: any, p: any, angle: any): {
|
|
718
|
+
x: any;
|
|
719
|
+
y: any;
|
|
720
|
+
};
|
|
721
|
+
rotation(source: any, target: any): number;
|
|
722
|
+
size(): {
|
|
723
|
+
nodes: any;
|
|
724
|
+
relationships: any;
|
|
725
|
+
};
|
|
726
|
+
stickNode(d: any, event: any): void;
|
|
727
|
+
tick(): void;
|
|
728
|
+
tickNodes(): void;
|
|
729
|
+
tickRelationships(): void;
|
|
730
|
+
tickRelationshipsOutlines(): void;
|
|
731
|
+
tickRelationshipsOverlays(): void;
|
|
732
|
+
tickRelationshipsTexts(): void;
|
|
733
|
+
toString(d: any): any;
|
|
734
|
+
unitaryNormalVector(source: any, target: any, newLength?: any): {
|
|
735
|
+
x: any;
|
|
736
|
+
y: any;
|
|
737
|
+
};
|
|
738
|
+
unitaryVector(source: any, target: any, newLength?: any): {
|
|
739
|
+
x: number;
|
|
740
|
+
y: number;
|
|
741
|
+
};
|
|
742
|
+
updateWithD3Data(d3Data: any): void;
|
|
743
|
+
updateWithGraphData(graphData: any): void;
|
|
744
|
+
updateInfo(d: any): void;
|
|
745
|
+
updateNodes(n: any): void;
|
|
746
|
+
updateNodesAndRelationships(n: any, r: any): void;
|
|
747
|
+
updateRelationships(r: any): void;
|
|
748
|
+
zoomFit(transitionDuration: any): void;
|
|
749
|
+
}
|