chem-generic-ui 0.1.47 → 0.1.50

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.
Files changed (117) hide show
  1. package/README.md +0 -0
  2. package/dist/app.js +105 -0
  3. package/{src → dist}/asserts/main.css +0 -0
  4. package/{src → dist}/asserts/main.scss +0 -1
  5. package/dist/components/admin/ElementManager.js +54 -0
  6. package/dist/components/details/GenDSDetails.js +273 -0
  7. package/dist/components/details/GenSgDetails.js +566 -0
  8. package/{src → dist}/components/dnd/DragDropItemTypes.js +8 -1
  9. package/dist/components/dnd/GenericElDropTarget.js +274 -0
  10. package/dist/components/dnd/GridDnD.js +77 -0
  11. package/dist/components/dnd/PanelDnD.js +171 -0
  12. package/dist/components/fields/ButtonConfirm.js +76 -0
  13. package/dist/components/fields/ButtonTooltip.js +88 -0
  14. package/dist/components/fields/FieldLabel.js +38 -0
  15. package/dist/components/fields/GenDSMisType.js +44 -0
  16. package/dist/components/fields/GenFormGroupCb.js +31 -0
  17. package/dist/components/fields/GenProperties.js +83 -0
  18. package/dist/components/fields/GenPropertiesFields.js +616 -0
  19. package/dist/components/flow/FlowView.js +88 -0
  20. package/dist/components/flow/FlowViewerModal.css +7 -0
  21. package/dist/components/flow/FlowViewerModal.js +83 -0
  22. package/dist/components/flow/FlowViewerModal.scss +7 -0
  23. package/dist/components/flow/LayerNode.js +59 -0
  24. package/dist/components/layers/GenPropertiesLayer.js +280 -0
  25. package/dist/components/layers/LayerModal.js +81 -0
  26. package/dist/components/layers/LayersLayout.js +88 -0
  27. package/dist/components/models/Attachment.js +73 -0
  28. package/dist/components/models/GenericSubField.js +37 -0
  29. package/dist/components/table/DropLinkRenderer.js +55 -0
  30. package/dist/components/table/DropRenderer.js +45 -0
  31. package/dist/components/table/DropTextRenderer.js +45 -0
  32. package/dist/components/table/GenericElTableDropTarget.js +252 -0
  33. package/dist/components/table/GridBtn.js +102 -0
  34. package/dist/components/table/GridEntry.js +163 -0
  35. package/dist/components/table/SamOption.js +87 -0
  36. package/dist/components/table/SelectRenderer.js +52 -0
  37. package/dist/components/table/TableRecord.js +454 -0
  38. package/dist/components/table/UConverterRenderer.js +41 -0
  39. package/dist/components/tools/collate.js +103 -0
  40. package/dist/components/tools/orten.js +294 -0
  41. package/dist/components/tools/utils.js +593 -0
  42. package/dist/data/SystemUnits.js +588 -0
  43. package/{src → dist}/data/systemUnits.json +0 -0
  44. package/{src → dist}/index.css +0 -0
  45. package/dist/index.js +39 -0
  46. package/{src → dist}/logo.svg +0 -0
  47. package/dist/simulations/SimWF.js +123 -0
  48. package/dist/simulations/SimuDS.js +118 -0
  49. package/dist/simulations/SimuSG.js +123 -0
  50. package/package.json +34 -43
  51. package/.babelrc +0 -11
  52. package/.eslintrc +0 -23
  53. package/.tool-versions +0 -3
  54. package/chem-generic-ui-v0.1.41.tgz +0 -0
  55. package/dist/bundle.js +0 -2
  56. package/dist/bundle.js.LICENSE.txt +0 -70
  57. package/dist/ds_details.json +0 -57
  58. package/dist/ds_klass.json +0 -102
  59. package/dist/ds_props.json +0 -54
  60. package/dist/index.html +0 -14
  61. package/dist/sg_details.json +0 -2036
  62. package/dist/sg_klass.json +0 -850
  63. package/dist/units_system.json +0 -430
  64. package/public/ds_details.json +0 -57
  65. package/public/ds_klass.json +0 -102
  66. package/public/ds_props.json +0 -54
  67. package/public/favicon.ico +0 -0
  68. package/public/images/not_available.svg +0 -1
  69. package/public/index.html +0 -47
  70. package/public/logo192.png +0 -0
  71. package/public/logo512.png +0 -0
  72. package/public/manifest.json +0 -25
  73. package/public/robots.txt +0 -3
  74. package/public/sg_details.json +0 -2036
  75. package/public/sg_klass.json +0 -850
  76. package/public/test/ds_props.json +0 -54
  77. package/public/units_system.json +0 -430
  78. package/src/app.js +0 -52
  79. package/src/asserts/bootstrap-theme.min.css +0 -6
  80. package/src/asserts/bootstrap.min.css +0 -6
  81. package/src/components/admin/ElementManager.js +0 -28
  82. package/src/components/details/GenDSDetails.js +0 -164
  83. package/src/components/details/GenSgDetails.js +0 -396
  84. package/src/components/dnd/GenericElDropTarget.js +0 -160
  85. package/src/components/dnd/GridDnD.js +0 -42
  86. package/src/components/dnd/PanelDnD.js +0 -85
  87. package/src/components/fields/ButtonConfirm.js +0 -45
  88. package/src/components/fields/ButtonTooltip.js +0 -46
  89. package/src/components/fields/FieldLabel.js +0 -18
  90. package/src/components/fields/GenDSMisType.js +0 -20
  91. package/src/components/fields/GenFormGroupCb.js +0 -17
  92. package/src/components/fields/GenProperties.js +0 -56
  93. package/src/components/fields/GenPropertiesFields.js +0 -440
  94. package/src/components/layers/GenPropertiesLayer.js +0 -178
  95. package/src/components/layers/LayerModal.js +0 -52
  96. package/src/components/layers/LayersLayout.js +0 -68
  97. package/src/components/models/Attachment.js +0 -37
  98. package/src/components/models/GenericSubField.js +0 -10
  99. package/src/components/table/DropLinkRenderer.js +0 -35
  100. package/src/components/table/DropRenderer.js +0 -31
  101. package/src/components/table/DropTextRenderer.js +0 -25
  102. package/src/components/table/GenericElTableDropTarget.js +0 -131
  103. package/src/components/table/GridBtn.js +0 -41
  104. package/src/components/table/GridEntry.js +0 -75
  105. package/src/components/table/SamOption.js +0 -53
  106. package/src/components/table/SelectRenderer.js +0 -34
  107. package/src/components/table/TableRecord.js +0 -254
  108. package/src/components/table/UConverterRenderer.js +0 -24
  109. package/src/components/tools/collate.js +0 -65
  110. package/src/components/tools/orten.js +0 -171
  111. package/src/components/tools/utils.js +0 -414
  112. package/src/data/SystemUnits.js +0 -434
  113. package/src/index.html +0 -1
  114. package/src/index.js +0 -45
  115. package/src/simulations/SimuDS.js +0 -52
  116. package/src/simulations/SimuSG.js +0 -54
  117. package/webpack.config.js +0 -46
@@ -1,2036 +0,0 @@
1
- {
2
- "segment_klass_id": 11,
3
- "properties": {
4
- "eln": {
5
- "version": "1.0.3",
6
- "base_revision": "c55e64ec712a688f27e80d0be08f8db256da0a08",
7
- "current_revision": 0
8
- },
9
- "flow": {
10
- "zoom": 1.5157165662599128,
11
- "elements": [
12
- {
13
- "id": "1",
14
- "data": {
15
- "label": "Start"
16
- },
17
- "type": "input",
18
- "position": {
19
- "x": 216,
20
- "y": -50
21
- }
22
- },
23
- {
24
- "id": "2",
25
- "data": {
26
- "label": "End"
27
- },
28
- "type": "output",
29
- "position": {
30
- "x": 250,
31
- "y": 255
32
- }
33
- },
34
- {
35
- "id": "fb138228-1427-436d-b6b4-fc94326def11",
36
- "data": {
37
- "lKey": "test_add",
38
- "layer": {
39
- "wf": true,
40
- "key": "test_add",
41
- "cols": 4,
42
- "color": "none",
43
- "label": "New entry field",
44
- "style": "panel_generic_heading",
45
- "fields": [
46
- {
47
- "type": "text",
48
- "field": "input 1",
49
- "label": "input 1",
50
- "default": "",
51
- "position": 1,
52
- "required": false,
53
- "sub_fields": [],
54
- "text_sub_fields": []
55
- },
56
- {
57
- "type": "text",
58
- "field": "input 2",
59
- "label": "input 2",
60
- "default": "",
61
- "position": 2,
62
- "required": false,
63
- "sub_fields": [],
64
- "text_sub_fields": []
65
- },
66
- {
67
- "type": "text",
68
- "field": "input 3",
69
- "label": "input 3",
70
- "default": "",
71
- "position": 3,
72
- "required": false,
73
- "sub_fields": [],
74
- "text_sub_fields": []
75
- },
76
- {
77
- "type": "select",
78
- "field": "input 4",
79
- "label": "input 4",
80
- "default": "",
81
- "position": 4,
82
- "required": false,
83
- "sub_fields": [],
84
- "option_layers": "new",
85
- "text_sub_fields": []
86
- }
87
- ],
88
- "position": 10,
89
- "condition": "",
90
- "wf_position": 0
91
- }
92
- },
93
- "type": "default",
94
- "position": {
95
- "x": 277.3984375,
96
- "y": 31.6796875
97
- }
98
- },
99
- {
100
- "id": "48942db1-d2b0-4d00-8154-2cb46f000845",
101
- "data": {
102
- "lKey": "obs",
103
- "layer": {
104
- "wf": true,
105
- "key": "obs",
106
- "cols": 2,
107
- "label": "Observation",
108
- "fields": [
109
- {
110
- "type": "text",
111
- "field": "Color",
112
- "label": "Color",
113
- "default": "",
114
- "position": 1,
115
- "required": false,
116
- "sub_fields": [],
117
- "description": "Free typing",
118
- "text_sub_fields": []
119
- },
120
- {
121
- "type": "system-defined",
122
- "field": "Length",
123
- "label": "Length",
124
- "default": "",
125
- "position": 2,
126
- "required": false,
127
- "sub_fields": [],
128
- "description": "Please input",
129
- "option_layers": "length",
130
- "text_sub_fields": []
131
- },
132
- {
133
- "type": "text",
134
- "field": "Thickness",
135
- "label": "Thickness",
136
- "default": "",
137
- "position": 3,
138
- "required": false,
139
- "sub_fields": [],
140
- "description": "Free typing",
141
- "text_sub_fields": []
142
- }
143
- ],
144
- "position": 20,
145
- "wf_position": 0
146
- }
147
- },
148
- "type": "default",
149
- "position": {
150
- "x": 155.69351446807133,
151
- "y": 139.1842728293537
152
- }
153
- },
154
- {
155
- "id": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
156
- "data": {
157
- "lKey": "ove",
158
- "layer": {
159
- "wf": true,
160
- "key": "ove",
161
- "cols": 2,
162
- "label": "Over",
163
- "fields": [
164
- {
165
- "type": "text",
166
- "field": "Werkzeug",
167
- "label": "Werkzeug",
168
- "default": "",
169
- "position": 1,
170
- "required": false,
171
- "sub_fields": [],
172
- "text_sub_fields": []
173
- },
174
- {
175
- "type": "select",
176
- "field": "Elektronik",
177
- "label": "Elektronik",
178
- "default": "",
179
- "position": 2,
180
- "required": false,
181
- "sub_fields": [],
182
- "description": "Select...",
183
- "option_layers": "new",
184
- "text_sub_fields": []
185
- }
186
- ],
187
- "position": 30,
188
- "wf_position": 0
189
- }
190
- },
191
- "type": "default",
192
- "position": {
193
- "x": 465.1219859123888,
194
- "y": 151.35017789746223
195
- }
196
- },
197
- {
198
- "id": "reactflow__edge-1null-fb138228-1427-436d-b6b4-fc94326def11null",
199
- "type": "default",
200
- "source": "1",
201
- "target": "fb138228-1427-436d-b6b4-fc94326def11",
202
- "animated": true,
203
- "sourceHandle": null,
204
- "targetHandle": null,
205
- "arrowHeadType": "arrowclosed"
206
- },
207
- {
208
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-48942db1-d2b0-4d00-8154-2cb46f000845null",
209
- "type": "default",
210
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
211
- "target": "48942db1-d2b0-4d00-8154-2cb46f000845",
212
- "animated": true,
213
- "sourceHandle": null,
214
- "targetHandle": null,
215
- "arrowHeadType": "arrowclosed"
216
- },
217
- {
218
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-179dded0-aae5-4bf4-89af-ce4a1f039bcenull",
219
- "type": "default",
220
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
221
- "target": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
222
- "animated": true,
223
- "sourceHandle": null,
224
- "targetHandle": null,
225
- "arrowHeadType": "arrowclosed"
226
- },
227
- {
228
- "id": "reactflow__edge-179dded0-aae5-4bf4-89af-ce4a1f039bcenull-2null",
229
- "type": "default",
230
- "source": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
231
- "target": "2",
232
- "animated": true,
233
- "sourceHandle": null,
234
- "targetHandle": null,
235
- "arrowHeadType": "arrowclosed"
236
- },
237
- {
238
- "id": "reactflow__edge-48942db1-d2b0-4d00-8154-2cb46f000845null-2null",
239
- "type": "default",
240
- "source": "48942db1-d2b0-4d00-8154-2cb46f000845",
241
- "target": "2",
242
- "animated": true,
243
- "sourceHandle": null,
244
- "targetHandle": null,
245
- "arrowHeadType": "arrowclosed"
246
- }
247
- ],
248
- "position": [
249
- 432.80377562088245,
250
- 148.9554030544316
251
- ]
252
- },
253
- "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
254
- "klass": "SegmentKlass",
255
- "layers": {
256
- "test_add": {
257
- "wf": true,
258
- "key": "test_add",
259
- "cols": 4,
260
- "color": "none",
261
- "label": "New entry field",
262
- "style": "panel_generic_heading",
263
- "fields": [
264
- {
265
- "type": "text",
266
- "field": "input 1",
267
- "label": "input 1",
268
- "default": "",
269
- "position": 1,
270
- "required": false,
271
- "sub_fields": [],
272
- "text_sub_fields": []
273
- },
274
- {
275
- "type": "text",
276
- "field": "input 2",
277
- "label": "input 2",
278
- "default": "",
279
- "position": 2,
280
- "required": false,
281
- "sub_fields": [],
282
- "text_sub_fields": []
283
- },
284
- {
285
- "type": "text",
286
- "field": "input 3",
287
- "label": "input 3",
288
- "default": "",
289
- "position": 3,
290
- "required": false,
291
- "sub_fields": [],
292
- "text_sub_fields": []
293
- },
294
- {
295
- "type": "select",
296
- "field": "input 4",
297
- "label": "input 4",
298
- "default": "",
299
- "position": 4,
300
- "required": false,
301
- "sub_fields": [],
302
- "option_layers": "new",
303
- "text_sub_fields": []
304
- },
305
- {
306
- "type": "wf-next",
307
- "default": "",
308
- "field": "_wf_next",
309
- "label": "Next",
310
- "required": false,
311
- "sub_fields": [],
312
- "text_sub_fields": [],
313
- "position": 5,
314
- "wf_options": [
315
- {
316
- "key": "48942db1-d2b0-4d00-8154-2cb46f000845",
317
- "label": "Observation(obs)"
318
- },
319
- {
320
- "key": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
321
- "label": "Over(ove)"
322
- }
323
- ]
324
- }
325
- ],
326
- "position": 10,
327
- "condition": "",
328
- "wf_position": 1,
329
- "wf_info": {
330
- "node_id": "fb138228-1427-436d-b6b4-fc94326def11"
331
- },
332
- "wf_uuid": "3290c180-a535-11ec-8b25-a7bd254e456a"
333
- }
334
- },
335
- "select_options": {
336
- "new": {
337
- "desc": "new",
338
- "options": [
339
- {
340
- "key": "eins",
341
- "label": "eins"
342
- },
343
- {
344
- "key": "zwei",
345
- "label": "zwei"
346
- },
347
- {
348
- "key": "drei",
349
- "label": "drei"
350
- }
351
- ]
352
- }
353
- }
354
- },
355
- "select_options": {
356
- "new": {
357
- "desc": "new",
358
- "options": [
359
- {
360
- "key": "eins",
361
- "label": "eins"
362
- },
363
- {
364
- "key": "zwei",
365
- "label": "zwei"
366
- },
367
- {
368
- "key": "drei",
369
- "label": "drei"
370
- }
371
- ]
372
- }
373
- },
374
- "segment_klass": {
375
- "id": 11,
376
- "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
377
- "label": "test_ta3",
378
- "desc": "test ta3",
379
- "properties_template": {
380
- "eln": {
381
- "version": "1.0.3",
382
- "base_revision": "c55e64ec712a688f27e80d0be08f8db256da0a08",
383
- "current_revision": 0
384
- },
385
- "flow": {
386
- "zoom": 1.5157165662599128,
387
- "elements": [
388
- {
389
- "id": "1",
390
- "data": {
391
- "label": "Start"
392
- },
393
- "type": "input",
394
- "position": {
395
- "x": 216,
396
- "y": -50
397
- }
398
- },
399
- {
400
- "id": "2",
401
- "data": {
402
- "label": "End"
403
- },
404
- "type": "output",
405
- "position": {
406
- "x": 250,
407
- "y": 255
408
- }
409
- },
410
- {
411
- "id": "fb138228-1427-436d-b6b4-fc94326def11",
412
- "data": {
413
- "lKey": "test_add",
414
- "layer": {
415
- "wf": true,
416
- "key": "test_add",
417
- "cols": 4,
418
- "color": "none",
419
- "label": "New entry field",
420
- "style": "panel_generic_heading",
421
- "fields": [
422
- {
423
- "type": "text",
424
- "field": "input 1",
425
- "label": "input 1",
426
- "default": "",
427
- "position": 1,
428
- "required": false,
429
- "sub_fields": [],
430
- "text_sub_fields": []
431
- },
432
- {
433
- "type": "text",
434
- "field": "input 2",
435
- "label": "input 2",
436
- "default": "",
437
- "position": 2,
438
- "required": false,
439
- "sub_fields": [],
440
- "text_sub_fields": []
441
- },
442
- {
443
- "type": "text",
444
- "field": "input 3",
445
- "label": "input 3",
446
- "default": "",
447
- "position": 3,
448
- "required": false,
449
- "sub_fields": [],
450
- "text_sub_fields": []
451
- },
452
- {
453
- "type": "select",
454
- "field": "input 4",
455
- "label": "input 4",
456
- "default": "",
457
- "position": 4,
458
- "required": false,
459
- "sub_fields": [],
460
- "option_layers": "new",
461
- "text_sub_fields": []
462
- }
463
- ],
464
- "position": 10,
465
- "condition": "",
466
- "wf_position": 0
467
- }
468
- },
469
- "type": "default",
470
- "position": {
471
- "x": 277.3984375,
472
- "y": 31.6796875
473
- }
474
- },
475
- {
476
- "id": "48942db1-d2b0-4d00-8154-2cb46f000845",
477
- "data": {
478
- "lKey": "obs",
479
- "layer": {
480
- "wf": true,
481
- "key": "obs",
482
- "cols": 2,
483
- "label": "Observation",
484
- "fields": [
485
- {
486
- "type": "text",
487
- "field": "Color",
488
- "label": "Color",
489
- "default": "",
490
- "position": 1,
491
- "required": false,
492
- "sub_fields": [],
493
- "description": "Free typing",
494
- "text_sub_fields": []
495
- },
496
- {
497
- "type": "system-defined",
498
- "field": "Length",
499
- "label": "Length",
500
- "default": "",
501
- "position": 2,
502
- "required": false,
503
- "sub_fields": [],
504
- "description": "Please input",
505
- "option_layers": "length",
506
- "text_sub_fields": []
507
- },
508
- {
509
- "type": "text",
510
- "field": "Thickness",
511
- "label": "Thickness",
512
- "default": "",
513
- "position": 3,
514
- "required": false,
515
- "sub_fields": [],
516
- "description": "Free typing",
517
- "text_sub_fields": []
518
- }
519
- ],
520
- "position": 20,
521
- "wf_position": 0
522
- }
523
- },
524
- "type": "default",
525
- "position": {
526
- "x": 155.69351446807133,
527
- "y": 139.1842728293537
528
- }
529
- },
530
- {
531
- "id": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
532
- "data": {
533
- "lKey": "ove",
534
- "layer": {
535
- "wf": true,
536
- "key": "ove",
537
- "cols": 2,
538
- "label": "Over",
539
- "fields": [
540
- {
541
- "type": "text",
542
- "field": "Werkzeug",
543
- "label": "Werkzeug",
544
- "default": "",
545
- "position": 1,
546
- "required": false,
547
- "sub_fields": [],
548
- "text_sub_fields": []
549
- },
550
- {
551
- "type": "select",
552
- "field": "Elektronik",
553
- "label": "Elektronik",
554
- "default": "",
555
- "position": 2,
556
- "required": false,
557
- "sub_fields": [],
558
- "description": "Select...",
559
- "option_layers": "new",
560
- "text_sub_fields": []
561
- }
562
- ],
563
- "position": 30,
564
- "wf_position": 0
565
- }
566
- },
567
- "type": "default",
568
- "position": {
569
- "x": 465.1219859123888,
570
- "y": 151.35017789746223
571
- }
572
- },
573
- {
574
- "id": "reactflow__edge-1null-fb138228-1427-436d-b6b4-fc94326def11null",
575
- "type": "default",
576
- "source": "1",
577
- "target": "fb138228-1427-436d-b6b4-fc94326def11",
578
- "animated": true,
579
- "sourceHandle": null,
580
- "targetHandle": null,
581
- "arrowHeadType": "arrowclosed"
582
- },
583
- {
584
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-48942db1-d2b0-4d00-8154-2cb46f000845null",
585
- "type": "default",
586
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
587
- "target": "48942db1-d2b0-4d00-8154-2cb46f000845",
588
- "animated": true,
589
- "sourceHandle": null,
590
- "targetHandle": null,
591
- "arrowHeadType": "arrowclosed"
592
- },
593
- {
594
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-179dded0-aae5-4bf4-89af-ce4a1f039bcenull",
595
- "type": "default",
596
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
597
- "target": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
598
- "animated": true,
599
- "sourceHandle": null,
600
- "targetHandle": null,
601
- "arrowHeadType": "arrowclosed"
602
- },
603
- {
604
- "id": "reactflow__edge-179dded0-aae5-4bf4-89af-ce4a1f039bcenull-2null",
605
- "type": "default",
606
- "source": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
607
- "target": "2",
608
- "animated": true,
609
- "sourceHandle": null,
610
- "targetHandle": null,
611
- "arrowHeadType": "arrowclosed"
612
- },
613
- {
614
- "id": "reactflow__edge-48942db1-d2b0-4d00-8154-2cb46f000845null-2null",
615
- "type": "default",
616
- "source": "48942db1-d2b0-4d00-8154-2cb46f000845",
617
- "target": "2",
618
- "animated": true,
619
- "sourceHandle": null,
620
- "targetHandle": null,
621
- "arrowHeadType": "arrowclosed"
622
- }
623
- ],
624
- "position": [
625
- 432.80377562088245,
626
- 148.9554030544316
627
- ]
628
- },
629
- "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
630
- "klass": "SegmentKlass",
631
- "layers": {
632
- "obs": {
633
- "wf": true,
634
- "key": "obs",
635
- "cols": 2,
636
- "label": "Observation",
637
- "fields": [
638
- {
639
- "type": "text",
640
- "field": "Color",
641
- "label": "Color",
642
- "default": "",
643
- "position": 1,
644
- "required": false,
645
- "sub_fields": [],
646
- "description": "Free typing",
647
- "text_sub_fields": []
648
- },
649
- {
650
- "type": "system-defined",
651
- "field": "Length",
652
- "label": "Length",
653
- "default": "",
654
- "position": 2,
655
- "required": false,
656
- "sub_fields": [],
657
- "description": "Please input",
658
- "option_layers": "length",
659
- "text_sub_fields": []
660
- },
661
- {
662
- "type": "text",
663
- "field": "Thickness",
664
- "label": "Thickness",
665
- "default": "",
666
- "position": 3,
667
- "required": false,
668
- "sub_fields": [],
669
- "description": "Free typing",
670
- "text_sub_fields": []
671
- }
672
- ],
673
- "position": 20,
674
- "wf_position": 0
675
- },
676
- "ove": {
677
- "wf": true,
678
- "key": "ove",
679
- "cols": 2,
680
- "label": "Over",
681
- "fields": [
682
- {
683
- "type": "text",
684
- "field": "Werkzeug",
685
- "label": "Werkzeug",
686
- "default": "",
687
- "position": 1,
688
- "required": false,
689
- "sub_fields": [],
690
- "text_sub_fields": []
691
- },
692
- {
693
- "type": "select",
694
- "field": "Elektronik",
695
- "label": "Elektronik",
696
- "default": "",
697
- "position": 2,
698
- "required": false,
699
- "sub_fields": [],
700
- "description": "Select...",
701
- "option_layers": "new",
702
- "text_sub_fields": []
703
- }
704
- ],
705
- "position": 30,
706
- "wf_position": 0
707
- },
708
- "test_add": {
709
- "wf": true,
710
- "key": "test_add",
711
- "cols": 4,
712
- "color": "none",
713
- "label": "New entry field",
714
- "style": "panel_generic_heading",
715
- "fields": [
716
- {
717
- "type": "text",
718
- "field": "input 1",
719
- "label": "input 1",
720
- "default": "",
721
- "position": 1,
722
- "required": false,
723
- "sub_fields": [],
724
- "text_sub_fields": []
725
- },
726
- {
727
- "type": "text",
728
- "field": "input 2",
729
- "label": "input 2",
730
- "default": "",
731
- "position": 2,
732
- "required": false,
733
- "sub_fields": [],
734
- "text_sub_fields": []
735
- },
736
- {
737
- "type": "text",
738
- "field": "input 3",
739
- "label": "input 3",
740
- "default": "",
741
- "position": 3,
742
- "required": false,
743
- "sub_fields": [],
744
- "text_sub_fields": []
745
- },
746
- {
747
- "type": "select",
748
- "field": "input 4",
749
- "label": "input 4",
750
- "default": "",
751
- "position": 4,
752
- "required": false,
753
- "sub_fields": [],
754
- "option_layers": "new",
755
- "text_sub_fields": []
756
- }
757
- ],
758
- "position": 10,
759
- "condition": "",
760
- "wf_position": 0
761
- }
762
- },
763
- "select_options": {
764
- "new": {
765
- "desc": "new",
766
- "options": [
767
- {
768
- "key": "eins",
769
- "label": "eins"
770
- },
771
- {
772
- "key": "zwei",
773
- "label": "zwei"
774
- },
775
- {
776
- "key": "drei",
777
- "label": "drei"
778
- }
779
- ]
780
- }
781
- }
782
- },
783
- "properties_release": {
784
- "eln": {
785
- "version": "1.0.3",
786
- "base_revision": "c55e64ec712a688f27e80d0be08f8db256da0a08",
787
- "current_revision": 0
788
- },
789
- "flow": {
790
- "zoom": 1.5157165662599128,
791
- "elements": [
792
- {
793
- "id": "1",
794
- "data": {
795
- "label": "Start"
796
- },
797
- "type": "input",
798
- "position": {
799
- "x": 216,
800
- "y": -50
801
- }
802
- },
803
- {
804
- "id": "2",
805
- "data": {
806
- "label": "End"
807
- },
808
- "type": "output",
809
- "position": {
810
- "x": 250,
811
- "y": 255
812
- }
813
- },
814
- {
815
- "id": "fb138228-1427-436d-b6b4-fc94326def11",
816
- "data": {
817
- "lKey": "test_add",
818
- "layer": {
819
- "wf": true,
820
- "key": "test_add",
821
- "cols": 4,
822
- "color": "none",
823
- "label": "New entry field",
824
- "style": "panel_generic_heading",
825
- "fields": [
826
- {
827
- "type": "text",
828
- "field": "input 1",
829
- "label": "input 1",
830
- "default": "",
831
- "position": 1,
832
- "required": false,
833
- "sub_fields": [],
834
- "text_sub_fields": []
835
- },
836
- {
837
- "type": "text",
838
- "field": "input 2",
839
- "label": "input 2",
840
- "default": "",
841
- "position": 2,
842
- "required": false,
843
- "sub_fields": [],
844
- "text_sub_fields": []
845
- },
846
- {
847
- "type": "text",
848
- "field": "input 3",
849
- "label": "input 3",
850
- "default": "",
851
- "position": 3,
852
- "required": false,
853
- "sub_fields": [],
854
- "text_sub_fields": []
855
- },
856
- {
857
- "type": "select",
858
- "field": "input 4",
859
- "label": "input 4",
860
- "default": "",
861
- "position": 4,
862
- "required": false,
863
- "sub_fields": [],
864
- "option_layers": "new",
865
- "text_sub_fields": []
866
- }
867
- ],
868
- "position": 10,
869
- "condition": "",
870
- "wf_position": 0
871
- }
872
- },
873
- "type": "default",
874
- "position": {
875
- "x": 277.3984375,
876
- "y": 31.6796875
877
- }
878
- },
879
- {
880
- "id": "48942db1-d2b0-4d00-8154-2cb46f000845",
881
- "data": {
882
- "lKey": "obs",
883
- "layer": {
884
- "wf": true,
885
- "key": "obs",
886
- "cols": 2,
887
- "label": "Observation",
888
- "fields": [
889
- {
890
- "type": "text",
891
- "field": "Color",
892
- "label": "Color",
893
- "default": "",
894
- "position": 1,
895
- "required": false,
896
- "sub_fields": [],
897
- "description": "Free typing",
898
- "text_sub_fields": []
899
- },
900
- {
901
- "type": "system-defined",
902
- "field": "Length",
903
- "label": "Length",
904
- "default": "",
905
- "position": 2,
906
- "required": false,
907
- "sub_fields": [],
908
- "description": "Please input",
909
- "option_layers": "length",
910
- "text_sub_fields": []
911
- },
912
- {
913
- "type": "text",
914
- "field": "Thickness",
915
- "label": "Thickness",
916
- "default": "",
917
- "position": 3,
918
- "required": false,
919
- "sub_fields": [],
920
- "description": "Free typing",
921
- "text_sub_fields": []
922
- }
923
- ],
924
- "position": 20,
925
- "wf_position": 0
926
- }
927
- },
928
- "type": "default",
929
- "position": {
930
- "x": 155.69351446807133,
931
- "y": 139.1842728293537
932
- }
933
- },
934
- {
935
- "id": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
936
- "data": {
937
- "lKey": "ove",
938
- "layer": {
939
- "wf": true,
940
- "key": "ove",
941
- "cols": 2,
942
- "label": "Over",
943
- "fields": [
944
- {
945
- "type": "text",
946
- "field": "Werkzeug",
947
- "label": "Werkzeug",
948
- "default": "",
949
- "position": 1,
950
- "required": false,
951
- "sub_fields": [],
952
- "text_sub_fields": []
953
- },
954
- {
955
- "type": "select",
956
- "field": "Elektronik",
957
- "label": "Elektronik",
958
- "default": "",
959
- "position": 2,
960
- "required": false,
961
- "sub_fields": [],
962
- "description": "Select...",
963
- "option_layers": "new",
964
- "text_sub_fields": []
965
- }
966
- ],
967
- "position": 30,
968
- "wf_position": 0
969
- }
970
- },
971
- "type": "default",
972
- "position": {
973
- "x": 465.1219859123888,
974
- "y": 151.35017789746223
975
- }
976
- },
977
- {
978
- "id": "reactflow__edge-1null-fb138228-1427-436d-b6b4-fc94326def11null",
979
- "type": "default",
980
- "source": "1",
981
- "target": "fb138228-1427-436d-b6b4-fc94326def11",
982
- "animated": true,
983
- "sourceHandle": null,
984
- "targetHandle": null,
985
- "arrowHeadType": "arrowclosed"
986
- },
987
- {
988
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-48942db1-d2b0-4d00-8154-2cb46f000845null",
989
- "type": "default",
990
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
991
- "target": "48942db1-d2b0-4d00-8154-2cb46f000845",
992
- "animated": true,
993
- "sourceHandle": null,
994
- "targetHandle": null,
995
- "arrowHeadType": "arrowclosed"
996
- },
997
- {
998
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-179dded0-aae5-4bf4-89af-ce4a1f039bcenull",
999
- "type": "default",
1000
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
1001
- "target": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1002
- "animated": true,
1003
- "sourceHandle": null,
1004
- "targetHandle": null,
1005
- "arrowHeadType": "arrowclosed"
1006
- },
1007
- {
1008
- "id": "reactflow__edge-179dded0-aae5-4bf4-89af-ce4a1f039bcenull-2null",
1009
- "type": "default",
1010
- "source": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1011
- "target": "2",
1012
- "animated": true,
1013
- "sourceHandle": null,
1014
- "targetHandle": null,
1015
- "arrowHeadType": "arrowclosed"
1016
- },
1017
- {
1018
- "id": "reactflow__edge-48942db1-d2b0-4d00-8154-2cb46f000845null-2null",
1019
- "type": "default",
1020
- "source": "48942db1-d2b0-4d00-8154-2cb46f000845",
1021
- "target": "2",
1022
- "animated": true,
1023
- "sourceHandle": null,
1024
- "targetHandle": null,
1025
- "arrowHeadType": "arrowclosed"
1026
- }
1027
- ],
1028
- "position": [
1029
- 432.80377562088245,
1030
- 148.9554030544316
1031
- ]
1032
- },
1033
- "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
1034
- "klass": "SegmentKlass",
1035
- "layers": {
1036
- "obs": {
1037
- "wf": true,
1038
- "key": "obs",
1039
- "cols": 2,
1040
- "label": "Observation",
1041
- "fields": [
1042
- {
1043
- "type": "text",
1044
- "field": "Color",
1045
- "label": "Color",
1046
- "default": "",
1047
- "position": 1,
1048
- "required": false,
1049
- "sub_fields": [],
1050
- "description": "Free typing",
1051
- "text_sub_fields": []
1052
- },
1053
- {
1054
- "type": "system-defined",
1055
- "field": "Length",
1056
- "label": "Length",
1057
- "default": "",
1058
- "position": 2,
1059
- "required": false,
1060
- "sub_fields": [],
1061
- "description": "Please input",
1062
- "option_layers": "length",
1063
- "text_sub_fields": []
1064
- },
1065
- {
1066
- "type": "text",
1067
- "field": "Thickness",
1068
- "label": "Thickness",
1069
- "default": "",
1070
- "position": 3,
1071
- "required": false,
1072
- "sub_fields": [],
1073
- "description": "Free typing",
1074
- "text_sub_fields": []
1075
- }
1076
- ],
1077
- "position": 20,
1078
- "wf_position": 0
1079
- },
1080
- "ove": {
1081
- "wf": true,
1082
- "key": "ove",
1083
- "cols": 2,
1084
- "label": "Over",
1085
- "fields": [
1086
- {
1087
- "type": "text",
1088
- "field": "Werkzeug",
1089
- "label": "Werkzeug",
1090
- "default": "",
1091
- "position": 1,
1092
- "required": false,
1093
- "sub_fields": [],
1094
- "text_sub_fields": []
1095
- },
1096
- {
1097
- "type": "select",
1098
- "field": "Elektronik",
1099
- "label": "Elektronik",
1100
- "default": "",
1101
- "position": 2,
1102
- "required": false,
1103
- "sub_fields": [],
1104
- "description": "Select...",
1105
- "option_layers": "new",
1106
- "text_sub_fields": []
1107
- }
1108
- ],
1109
- "position": 30,
1110
- "wf_position": 0
1111
- },
1112
- "test_add": {
1113
- "wf": true,
1114
- "key": "test_add",
1115
- "cols": 4,
1116
- "color": "none",
1117
- "label": "New entry field",
1118
- "style": "panel_generic_heading",
1119
- "fields": [
1120
- {
1121
- "type": "text",
1122
- "field": "input 1",
1123
- "label": "input 1",
1124
- "default": "",
1125
- "position": 1,
1126
- "required": false,
1127
- "sub_fields": [],
1128
- "text_sub_fields": []
1129
- },
1130
- {
1131
- "type": "text",
1132
- "field": "input 2",
1133
- "label": "input 2",
1134
- "default": "",
1135
- "position": 2,
1136
- "required": false,
1137
- "sub_fields": [],
1138
- "text_sub_fields": []
1139
- },
1140
- {
1141
- "type": "text",
1142
- "field": "input 3",
1143
- "label": "input 3",
1144
- "default": "",
1145
- "position": 3,
1146
- "required": false,
1147
- "sub_fields": [],
1148
- "text_sub_fields": []
1149
- },
1150
- {
1151
- "type": "select",
1152
- "field": "input 4",
1153
- "label": "input 4",
1154
- "default": "",
1155
- "position": 4,
1156
- "required": false,
1157
- "sub_fields": [],
1158
- "option_layers": "new",
1159
- "text_sub_fields": []
1160
- }
1161
- ],
1162
- "position": 10,
1163
- "condition": "",
1164
- "wf_position": 0
1165
- }
1166
- },
1167
- "select_options": {
1168
- "new": {
1169
- "desc": "new",
1170
- "options": [
1171
- {
1172
- "key": "eins",
1173
- "label": "eins"
1174
- },
1175
- {
1176
- "key": "zwei",
1177
- "label": "zwei"
1178
- },
1179
- {
1180
- "key": "drei",
1181
- "label": "drei"
1182
- }
1183
- ]
1184
- }
1185
- }
1186
- },
1187
- "is_active": true,
1188
- "place": 100,
1189
- "released_at": "28.02.2022, 13:20",
1190
- "element_klass": {
1191
- "id": 1,
1192
- "uuid": "884ca42d-41d8-4996-9ea3-e9668108f551",
1193
- "name": "sample",
1194
- "label": "Sample",
1195
- "desc": "ELN Sample",
1196
- "icon_name": "icon-sample",
1197
- "properties_release": {
1198
- "eln": {
1199
- "version": "0.9.1",
1200
- "base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
1201
- "current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
1202
- },
1203
- "uuid": "884ca42d-41d8-4996-9ea3-e9668108f551",
1204
- "klass": "ElementKlass",
1205
- "select_options": {}
1206
- },
1207
- "properties_template": {
1208
- "eln": {
1209
- "version": "0.9.1",
1210
- "base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
1211
- "current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
1212
- },
1213
- "uuid": "884ca42d-41d8-4996-9ea3-e9668108f551",
1214
- "klass": "ElementKlass",
1215
- "select_options": {}
1216
- },
1217
- "is_active": true,
1218
- "klass_prefix": "",
1219
- "is_generic": false,
1220
- "place": 0,
1221
- "released_at": "02.08.2021, 19:25"
1222
- }
1223
- },
1224
- "properties_release": {
1225
- "eln": {
1226
- "version": "1.0.3",
1227
- "base_revision": "c55e64ec712a688f27e80d0be08f8db256da0a08",
1228
- "current_revision": 0
1229
- },
1230
- "flow": {
1231
- "zoom": 1.5157165662599128,
1232
- "elements": [
1233
- {
1234
- "id": "1",
1235
- "data": {
1236
- "label": "Start"
1237
- },
1238
- "type": "input",
1239
- "position": {
1240
- "x": 216,
1241
- "y": -50
1242
- }
1243
- },
1244
- {
1245
- "id": "2",
1246
- "data": {
1247
- "label": "End"
1248
- },
1249
- "type": "output",
1250
- "position": {
1251
- "x": 250,
1252
- "y": 255
1253
- }
1254
- },
1255
- {
1256
- "id": "fb138228-1427-436d-b6b4-fc94326def11",
1257
- "data": {
1258
- "lKey": "test_add",
1259
- "layer": {
1260
- "wf": true,
1261
- "key": "test_add",
1262
- "cols": 4,
1263
- "color": "none",
1264
- "label": "New entry field",
1265
- "style": "panel_generic_heading",
1266
- "fields": [
1267
- {
1268
- "type": "text",
1269
- "field": "input 1",
1270
- "label": "input 1",
1271
- "default": "",
1272
- "position": 1,
1273
- "required": false,
1274
- "sub_fields": [],
1275
- "text_sub_fields": []
1276
- },
1277
- {
1278
- "type": "text",
1279
- "field": "input 2",
1280
- "label": "input 2",
1281
- "default": "",
1282
- "position": 2,
1283
- "required": false,
1284
- "sub_fields": [],
1285
- "text_sub_fields": []
1286
- },
1287
- {
1288
- "type": "text",
1289
- "field": "input 3",
1290
- "label": "input 3",
1291
- "default": "",
1292
- "position": 3,
1293
- "required": false,
1294
- "sub_fields": [],
1295
- "text_sub_fields": []
1296
- },
1297
- {
1298
- "type": "select",
1299
- "field": "input 4",
1300
- "label": "input 4",
1301
- "default": "",
1302
- "position": 4,
1303
- "required": false,
1304
- "sub_fields": [],
1305
- "option_layers": "new",
1306
- "text_sub_fields": []
1307
- }
1308
- ],
1309
- "position": 10,
1310
- "condition": "",
1311
- "wf_position": 0
1312
- }
1313
- },
1314
- "type": "default",
1315
- "position": {
1316
- "x": 277.3984375,
1317
- "y": 31.6796875
1318
- }
1319
- },
1320
- {
1321
- "id": "48942db1-d2b0-4d00-8154-2cb46f000845",
1322
- "data": {
1323
- "lKey": "obs",
1324
- "layer": {
1325
- "wf": true,
1326
- "key": "obs",
1327
- "cols": 2,
1328
- "label": "Observation",
1329
- "fields": [
1330
- {
1331
- "type": "text",
1332
- "field": "Color",
1333
- "label": "Color",
1334
- "default": "",
1335
- "position": 1,
1336
- "required": false,
1337
- "sub_fields": [],
1338
- "description": "Free typing",
1339
- "text_sub_fields": []
1340
- },
1341
- {
1342
- "type": "system-defined",
1343
- "field": "Length",
1344
- "label": "Length",
1345
- "default": "",
1346
- "position": 2,
1347
- "required": false,
1348
- "sub_fields": [],
1349
- "description": "Please input",
1350
- "option_layers": "length",
1351
- "text_sub_fields": []
1352
- },
1353
- {
1354
- "type": "text",
1355
- "field": "Thickness",
1356
- "label": "Thickness",
1357
- "default": "",
1358
- "position": 3,
1359
- "required": false,
1360
- "sub_fields": [],
1361
- "description": "Free typing",
1362
- "text_sub_fields": []
1363
- }
1364
- ],
1365
- "position": 20,
1366
- "wf_position": 0
1367
- }
1368
- },
1369
- "type": "default",
1370
- "position": {
1371
- "x": 155.69351446807133,
1372
- "y": 139.1842728293537
1373
- }
1374
- },
1375
- {
1376
- "id": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1377
- "data": {
1378
- "lKey": "ove",
1379
- "layer": {
1380
- "wf": true,
1381
- "key": "ove",
1382
- "cols": 2,
1383
- "label": "Over",
1384
- "fields": [
1385
- {
1386
- "type": "text",
1387
- "field": "Werkzeug",
1388
- "label": "Werkzeug",
1389
- "default": "",
1390
- "position": 1,
1391
- "required": false,
1392
- "sub_fields": [],
1393
- "text_sub_fields": []
1394
- },
1395
- {
1396
- "type": "select",
1397
- "field": "Elektronik",
1398
- "label": "Elektronik",
1399
- "default": "",
1400
- "position": 2,
1401
- "required": false,
1402
- "sub_fields": [],
1403
- "description": "Select...",
1404
- "option_layers": "new",
1405
- "text_sub_fields": []
1406
- }
1407
- ],
1408
- "position": 30,
1409
- "wf_position": 0
1410
- }
1411
- },
1412
- "type": "default",
1413
- "position": {
1414
- "x": 465.1219859123888,
1415
- "y": 151.35017789746223
1416
- }
1417
- },
1418
- {
1419
- "id": "reactflow__edge-1null-fb138228-1427-436d-b6b4-fc94326def11null",
1420
- "type": "default",
1421
- "source": "1",
1422
- "target": "fb138228-1427-436d-b6b4-fc94326def11",
1423
- "animated": true,
1424
- "sourceHandle": null,
1425
- "targetHandle": null,
1426
- "arrowHeadType": "arrowclosed"
1427
- },
1428
- {
1429
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-48942db1-d2b0-4d00-8154-2cb46f000845null",
1430
- "type": "default",
1431
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
1432
- "target": "48942db1-d2b0-4d00-8154-2cb46f000845",
1433
- "animated": true,
1434
- "sourceHandle": null,
1435
- "targetHandle": null,
1436
- "arrowHeadType": "arrowclosed"
1437
- },
1438
- {
1439
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-179dded0-aae5-4bf4-89af-ce4a1f039bcenull",
1440
- "type": "default",
1441
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
1442
- "target": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1443
- "animated": true,
1444
- "sourceHandle": null,
1445
- "targetHandle": null,
1446
- "arrowHeadType": "arrowclosed"
1447
- },
1448
- {
1449
- "id": "reactflow__edge-179dded0-aae5-4bf4-89af-ce4a1f039bcenull-2null",
1450
- "type": "default",
1451
- "source": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1452
- "target": "2",
1453
- "animated": true,
1454
- "sourceHandle": null,
1455
- "targetHandle": null,
1456
- "arrowHeadType": "arrowclosed"
1457
- },
1458
- {
1459
- "id": "reactflow__edge-48942db1-d2b0-4d00-8154-2cb46f000845null-2null",
1460
- "type": "default",
1461
- "source": "48942db1-d2b0-4d00-8154-2cb46f000845",
1462
- "target": "2",
1463
- "animated": true,
1464
- "sourceHandle": null,
1465
- "targetHandle": null,
1466
- "arrowHeadType": "arrowclosed"
1467
- }
1468
- ],
1469
- "position": [
1470
- 432.80377562088245,
1471
- 148.9554030544316
1472
- ]
1473
- },
1474
- "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
1475
- "klass": "SegmentKlass",
1476
- "layers": {
1477
- "obs": {
1478
- "wf": true,
1479
- "key": "obs",
1480
- "cols": 2,
1481
- "label": "Observation",
1482
- "fields": [
1483
- {
1484
- "type": "text",
1485
- "field": "Color",
1486
- "label": "Color",
1487
- "default": "",
1488
- "position": 1,
1489
- "required": false,
1490
- "sub_fields": [],
1491
- "description": "Free typing",
1492
- "text_sub_fields": []
1493
- },
1494
- {
1495
- "type": "system-defined",
1496
- "field": "Length",
1497
- "label": "Length",
1498
- "default": "",
1499
- "position": 2,
1500
- "required": false,
1501
- "sub_fields": [],
1502
- "description": "Please input",
1503
- "option_layers": "length",
1504
- "text_sub_fields": []
1505
- },
1506
- {
1507
- "type": "text",
1508
- "field": "Thickness",
1509
- "label": "Thickness",
1510
- "default": "",
1511
- "position": 3,
1512
- "required": false,
1513
- "sub_fields": [],
1514
- "description": "Free typing",
1515
- "text_sub_fields": []
1516
- }
1517
- ],
1518
- "position": 20,
1519
- "wf_position": 0
1520
- },
1521
- "ove": {
1522
- "wf": true,
1523
- "key": "ove",
1524
- "cols": 2,
1525
- "label": "Over",
1526
- "fields": [
1527
- {
1528
- "type": "text",
1529
- "field": "Werkzeug",
1530
- "label": "Werkzeug",
1531
- "default": "",
1532
- "position": 1,
1533
- "required": false,
1534
- "sub_fields": [],
1535
- "text_sub_fields": []
1536
- },
1537
- {
1538
- "type": "select",
1539
- "field": "Elektronik",
1540
- "label": "Elektronik",
1541
- "default": "",
1542
- "position": 2,
1543
- "required": false,
1544
- "sub_fields": [],
1545
- "description": "Select...",
1546
- "option_layers": "new",
1547
- "text_sub_fields": []
1548
- }
1549
- ],
1550
- "position": 30,
1551
- "wf_position": 0
1552
- },
1553
- "test_add": {
1554
- "wf": true,
1555
- "key": "test_add",
1556
- "cols": 4,
1557
- "color": "none",
1558
- "label": "New entry field",
1559
- "style": "panel_generic_heading",
1560
- "fields": [
1561
- {
1562
- "type": "text",
1563
- "field": "input 1",
1564
- "label": "input 1",
1565
- "default": "",
1566
- "position": 1,
1567
- "required": false,
1568
- "sub_fields": [],
1569
- "text_sub_fields": []
1570
- },
1571
- {
1572
- "type": "text",
1573
- "field": "input 2",
1574
- "label": "input 2",
1575
- "default": "",
1576
- "position": 2,
1577
- "required": false,
1578
- "sub_fields": [],
1579
- "text_sub_fields": []
1580
- },
1581
- {
1582
- "type": "text",
1583
- "field": "input 3",
1584
- "label": "input 3",
1585
- "default": "",
1586
- "position": 3,
1587
- "required": false,
1588
- "sub_fields": [],
1589
- "text_sub_fields": []
1590
- },
1591
- {
1592
- "type": "select",
1593
- "field": "input 4",
1594
- "label": "input 4",
1595
- "default": "",
1596
- "position": 4,
1597
- "required": false,
1598
- "sub_fields": [],
1599
- "option_layers": "new",
1600
- "text_sub_fields": []
1601
- }
1602
- ],
1603
- "position": 10,
1604
- "condition": "",
1605
- "wf_position": 0
1606
- }
1607
- },
1608
- "select_options": {
1609
- "new": {
1610
- "desc": "new",
1611
- "options": [
1612
- {
1613
- "key": "eins",
1614
- "label": "eins"
1615
- },
1616
- {
1617
- "key": "zwei",
1618
- "label": "zwei"
1619
- },
1620
- {
1621
- "key": "drei",
1622
- "label": "drei"
1623
- }
1624
- ]
1625
- }
1626
- }
1627
- },
1628
- "files": [],
1629
- "wfLayers": {
1630
- "eln": {
1631
- "version": "1.0.3",
1632
- "base_revision": "c55e64ec712a688f27e80d0be08f8db256da0a08",
1633
- "current_revision": 0
1634
- },
1635
- "flow": {
1636
- "zoom": 1.5157165662599128,
1637
- "elements": [
1638
- {
1639
- "id": "1",
1640
- "data": {
1641
- "label": "Start"
1642
- },
1643
- "type": "input",
1644
- "position": {
1645
- "x": 216,
1646
- "y": -50
1647
- }
1648
- },
1649
- {
1650
- "id": "2",
1651
- "data": {
1652
- "label": "End"
1653
- },
1654
- "type": "output",
1655
- "position": {
1656
- "x": 250,
1657
- "y": 255
1658
- }
1659
- },
1660
- {
1661
- "id": "fb138228-1427-436d-b6b4-fc94326def11",
1662
- "data": {
1663
- "lKey": "test_add",
1664
- "layer": {
1665
- "wf": true,
1666
- "key": "test_add",
1667
- "cols": 4,
1668
- "color": "none",
1669
- "label": "New entry field",
1670
- "style": "panel_generic_heading",
1671
- "fields": [
1672
- {
1673
- "type": "text",
1674
- "field": "input 1",
1675
- "label": "input 1",
1676
- "default": "",
1677
- "position": 1,
1678
- "required": false,
1679
- "sub_fields": [],
1680
- "text_sub_fields": []
1681
- },
1682
- {
1683
- "type": "text",
1684
- "field": "input 2",
1685
- "label": "input 2",
1686
- "default": "",
1687
- "position": 2,
1688
- "required": false,
1689
- "sub_fields": [],
1690
- "text_sub_fields": []
1691
- },
1692
- {
1693
- "type": "text",
1694
- "field": "input 3",
1695
- "label": "input 3",
1696
- "default": "",
1697
- "position": 3,
1698
- "required": false,
1699
- "sub_fields": [],
1700
- "text_sub_fields": []
1701
- },
1702
- {
1703
- "type": "select",
1704
- "field": "input 4",
1705
- "label": "input 4",
1706
- "default": "",
1707
- "position": 4,
1708
- "required": false,
1709
- "sub_fields": [],
1710
- "option_layers": "new",
1711
- "text_sub_fields": []
1712
- }
1713
- ],
1714
- "position": 10,
1715
- "condition": "",
1716
- "wf_position": 0
1717
- }
1718
- },
1719
- "type": "default",
1720
- "position": {
1721
- "x": 277.3984375,
1722
- "y": 31.6796875
1723
- }
1724
- },
1725
- {
1726
- "id": "48942db1-d2b0-4d00-8154-2cb46f000845",
1727
- "data": {
1728
- "lKey": "obs",
1729
- "layer": {
1730
- "wf": true,
1731
- "key": "obs",
1732
- "cols": 2,
1733
- "label": "Observation",
1734
- "fields": [
1735
- {
1736
- "type": "text",
1737
- "field": "Color",
1738
- "label": "Color",
1739
- "default": "",
1740
- "position": 1,
1741
- "required": false,
1742
- "sub_fields": [],
1743
- "description": "Free typing",
1744
- "text_sub_fields": []
1745
- },
1746
- {
1747
- "type": "system-defined",
1748
- "field": "Length",
1749
- "label": "Length",
1750
- "default": "",
1751
- "position": 2,
1752
- "required": false,
1753
- "sub_fields": [],
1754
- "description": "Please input",
1755
- "option_layers": "length",
1756
- "text_sub_fields": []
1757
- },
1758
- {
1759
- "type": "text",
1760
- "field": "Thickness",
1761
- "label": "Thickness",
1762
- "default": "",
1763
- "position": 3,
1764
- "required": false,
1765
- "sub_fields": [],
1766
- "description": "Free typing",
1767
- "text_sub_fields": []
1768
- }
1769
- ],
1770
- "position": 20,
1771
- "wf_position": 0
1772
- }
1773
- },
1774
- "type": "default",
1775
- "position": {
1776
- "x": 155.69351446807133,
1777
- "y": 139.1842728293537
1778
- }
1779
- },
1780
- {
1781
- "id": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1782
- "data": {
1783
- "lKey": "ove",
1784
- "layer": {
1785
- "wf": true,
1786
- "key": "ove",
1787
- "cols": 2,
1788
- "label": "Over",
1789
- "fields": [
1790
- {
1791
- "type": "text",
1792
- "field": "Werkzeug",
1793
- "label": "Werkzeug",
1794
- "default": "",
1795
- "position": 1,
1796
- "required": false,
1797
- "sub_fields": [],
1798
- "text_sub_fields": []
1799
- },
1800
- {
1801
- "type": "select",
1802
- "field": "Elektronik",
1803
- "label": "Elektronik",
1804
- "default": "",
1805
- "position": 2,
1806
- "required": false,
1807
- "sub_fields": [],
1808
- "description": "Select...",
1809
- "option_layers": "new",
1810
- "text_sub_fields": []
1811
- }
1812
- ],
1813
- "position": 30,
1814
- "wf_position": 0
1815
- }
1816
- },
1817
- "type": "default",
1818
- "position": {
1819
- "x": 465.1219859123888,
1820
- "y": 151.35017789746223
1821
- }
1822
- },
1823
- {
1824
- "id": "reactflow__edge-1null-fb138228-1427-436d-b6b4-fc94326def11null",
1825
- "type": "default",
1826
- "source": "1",
1827
- "target": "fb138228-1427-436d-b6b4-fc94326def11",
1828
- "animated": true,
1829
- "sourceHandle": null,
1830
- "targetHandle": null,
1831
- "arrowHeadType": "arrowclosed"
1832
- },
1833
- {
1834
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-48942db1-d2b0-4d00-8154-2cb46f000845null",
1835
- "type": "default",
1836
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
1837
- "target": "48942db1-d2b0-4d00-8154-2cb46f000845",
1838
- "animated": true,
1839
- "sourceHandle": null,
1840
- "targetHandle": null,
1841
- "arrowHeadType": "arrowclosed"
1842
- },
1843
- {
1844
- "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-179dded0-aae5-4bf4-89af-ce4a1f039bcenull",
1845
- "type": "default",
1846
- "source": "fb138228-1427-436d-b6b4-fc94326def11",
1847
- "target": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1848
- "animated": true,
1849
- "sourceHandle": null,
1850
- "targetHandle": null,
1851
- "arrowHeadType": "arrowclosed"
1852
- },
1853
- {
1854
- "id": "reactflow__edge-179dded0-aae5-4bf4-89af-ce4a1f039bcenull-2null",
1855
- "type": "default",
1856
- "source": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
1857
- "target": "2",
1858
- "animated": true,
1859
- "sourceHandle": null,
1860
- "targetHandle": null,
1861
- "arrowHeadType": "arrowclosed"
1862
- },
1863
- {
1864
- "id": "reactflow__edge-48942db1-d2b0-4d00-8154-2cb46f000845null-2null",
1865
- "type": "default",
1866
- "source": "48942db1-d2b0-4d00-8154-2cb46f000845",
1867
- "target": "2",
1868
- "animated": true,
1869
- "sourceHandle": null,
1870
- "targetHandle": null,
1871
- "arrowHeadType": "arrowclosed"
1872
- }
1873
- ],
1874
- "position": [
1875
- 432.80377562088245,
1876
- 148.9554030544316
1877
- ]
1878
- },
1879
- "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
1880
- "klass": "SegmentKlass",
1881
- "layers": {
1882
- "obs": {
1883
- "wf": true,
1884
- "key": "obs",
1885
- "cols": 2,
1886
- "label": "Observation",
1887
- "fields": [
1888
- {
1889
- "type": "text",
1890
- "field": "Color",
1891
- "label": "Color",
1892
- "default": "",
1893
- "position": 1,
1894
- "required": false,
1895
- "sub_fields": [],
1896
- "description": "Free typing",
1897
- "text_sub_fields": []
1898
- },
1899
- {
1900
- "type": "system-defined",
1901
- "field": "Length",
1902
- "label": "Length",
1903
- "default": "",
1904
- "position": 2,
1905
- "required": false,
1906
- "sub_fields": [],
1907
- "description": "Please input",
1908
- "option_layers": "length",
1909
- "text_sub_fields": []
1910
- },
1911
- {
1912
- "type": "text",
1913
- "field": "Thickness",
1914
- "label": "Thickness",
1915
- "default": "",
1916
- "position": 3,
1917
- "required": false,
1918
- "sub_fields": [],
1919
- "description": "Free typing",
1920
- "text_sub_fields": []
1921
- }
1922
- ],
1923
- "position": 20,
1924
- "wf_position": 0
1925
- },
1926
- "ove": {
1927
- "wf": true,
1928
- "key": "ove",
1929
- "cols": 2,
1930
- "label": "Over",
1931
- "fields": [
1932
- {
1933
- "type": "text",
1934
- "field": "Werkzeug",
1935
- "label": "Werkzeug",
1936
- "default": "",
1937
- "position": 1,
1938
- "required": false,
1939
- "sub_fields": [],
1940
- "text_sub_fields": []
1941
- },
1942
- {
1943
- "type": "select",
1944
- "field": "Elektronik",
1945
- "label": "Elektronik",
1946
- "default": "",
1947
- "position": 2,
1948
- "required": false,
1949
- "sub_fields": [],
1950
- "description": "Select...",
1951
- "option_layers": "new",
1952
- "text_sub_fields": []
1953
- }
1954
- ],
1955
- "position": 30,
1956
- "wf_position": 0
1957
- },
1958
- "test_add": {
1959
- "wf": true,
1960
- "key": "test_add",
1961
- "cols": 4,
1962
- "color": "none",
1963
- "label": "New entry field",
1964
- "style": "panel_generic_heading",
1965
- "fields": [
1966
- {
1967
- "type": "text",
1968
- "field": "input 1",
1969
- "label": "input 1",
1970
- "default": "",
1971
- "position": 1,
1972
- "required": false,
1973
- "sub_fields": [],
1974
- "text_sub_fields": []
1975
- },
1976
- {
1977
- "type": "text",
1978
- "field": "input 2",
1979
- "label": "input 2",
1980
- "default": "",
1981
- "position": 2,
1982
- "required": false,
1983
- "sub_fields": [],
1984
- "text_sub_fields": []
1985
- },
1986
- {
1987
- "type": "text",
1988
- "field": "input 3",
1989
- "label": "input 3",
1990
- "default": "",
1991
- "position": 3,
1992
- "required": false,
1993
- "sub_fields": [],
1994
- "text_sub_fields": []
1995
- },
1996
- {
1997
- "type": "select",
1998
- "field": "input 4",
1999
- "label": "input 4",
2000
- "default": "",
2001
- "position": 4,
2002
- "required": false,
2003
- "sub_fields": [],
2004
- "option_layers": "new",
2005
- "text_sub_fields": []
2006
- }
2007
- ],
2008
- "position": 10,
2009
- "condition": "",
2010
- "wf_position": 0
2011
- }
2012
- },
2013
- "select_options": {
2014
- "new": {
2015
- "desc": "new",
2016
- "options": [
2017
- {
2018
- "key": "eins",
2019
- "label": "eins"
2020
- },
2021
- {
2022
- "key": "zwei",
2023
- "label": "zwei"
2024
- },
2025
- {
2026
- "key": "drei",
2027
- "label": "drei"
2028
- }
2029
- ]
2030
- }
2031
- }
2032
- },
2033
- "id": "3290c181-a535-11ec-8b25-a7bd254e456a",
2034
- "is_new": true,
2035
- "_checksum": "8ece6471a27f1dd8ee9fbb080a2d23f12f532b596d7385fbbee4d7e85782501f"
2036
- }