chem-generic-ui 0.1.36 → 0.1.37

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 (63) hide show
  1. package/.babelrc +17 -0
  2. package/.eslintrc +23 -0
  3. package/.tool-versions +3 -0
  4. package/package.json +51 -38
  5. package/public/ds_details.json +57 -0
  6. package/public/ds_klass.json +102 -0
  7. package/public/ds_props.json +54 -0
  8. package/public/favicon.ico +0 -0
  9. package/public/images/not_available.svg +1 -0
  10. package/public/index.html +47 -0
  11. package/public/logo192.png +0 -0
  12. package/public/logo512.png +0 -0
  13. package/public/manifest.json +25 -0
  14. package/public/robots.txt +3 -0
  15. package/public/sg_details.json +2036 -0
  16. package/public/sg_klass.json +850 -0
  17. package/public/test/ds_props.json +54 -0
  18. package/public/units_system.json +430 -0
  19. package/src/app.js +50 -0
  20. package/src/asserts/main.css +458 -0
  21. package/src/asserts/main.scss +490 -0
  22. package/src/components/admin/ElementManager.js +28 -0
  23. package/src/components/details/GenDSDetails.js +164 -0
  24. package/src/components/details/GenSgDetails.js +396 -0
  25. package/src/components/dnd/DragDropItemTypes.js +13 -0
  26. package/src/components/dnd/GenericElDropTarget.js +160 -0
  27. package/src/components/dnd/GridDnD.js +42 -0
  28. package/src/components/dnd/PanelDnD.js +85 -0
  29. package/src/components/fields/ButtonConfirm.js +45 -0
  30. package/src/components/fields/ButtonTooltip.js +46 -0
  31. package/src/components/fields/FieldLabel.js +18 -0
  32. package/src/components/fields/GenDSMisType.js +20 -0
  33. package/src/components/fields/GenFormGroupCb.js +17 -0
  34. package/src/components/fields/GenProperties.js +56 -0
  35. package/src/components/fields/GenPropertiesFields.js +318 -0
  36. package/src/components/layers/GenPropertiesLayer.js +176 -0
  37. package/src/components/layers/LayerModal.js +52 -0
  38. package/src/components/layers/LayersLayout.js +68 -0
  39. package/src/components/models/Attachment.js +37 -0
  40. package/src/components/models/GenericSubField.js +10 -0
  41. package/src/components/table/DropLinkRenderer.js +35 -0
  42. package/src/components/table/DropRenderer.js +31 -0
  43. package/src/components/table/DropTextRenderer.js +25 -0
  44. package/src/components/table/GenericElTableDropTarget.js +131 -0
  45. package/src/components/table/GridBtn.js +41 -0
  46. package/src/components/table/GridEntry.js +75 -0
  47. package/src/components/table/SamOption.js +53 -0
  48. package/src/components/table/SelectRenderer.js +34 -0
  49. package/src/components/table/TableRecord.js +254 -0
  50. package/src/components/table/UConverterRenderer.js +24 -0
  51. package/src/components/tools/collate.js +65 -0
  52. package/src/components/tools/orten.js +171 -0
  53. package/src/components/tools/utils.js +414 -0
  54. package/src/data/SystemUnits.js +434 -0
  55. package/src/data/systemUnits.json +430 -0
  56. package/src/index.css +13 -0
  57. package/src/index.html +1 -0
  58. package/src/index.js +45 -0
  59. package/src/logo.svg +1 -0
  60. package/src/simulations/SimuDS.js +52 -0
  61. package/src/simulations/SimuSG.js +54 -0
  62. package/webpack.config.js +52 -0
  63. package/dist/bundle.min.js +0 -1
@@ -0,0 +1,850 @@
1
+ {
2
+ "id": 11,
3
+ "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
4
+ "label": "test_ta3",
5
+ "desc": "test ta3",
6
+ "properties_template": {
7
+ "eln": {
8
+ "version": "1.0.3",
9
+ "base_revision": "c55e64ec712a688f27e80d0be08f8db256da0a08",
10
+ "current_revision": 0
11
+ },
12
+ "flow": {
13
+ "zoom": 1.5157165662599128,
14
+ "elements": [
15
+ {
16
+ "id": "1",
17
+ "data": {
18
+ "label": "Start"
19
+ },
20
+ "type": "input",
21
+ "position": {
22
+ "x": 216,
23
+ "y": -50
24
+ }
25
+ },
26
+ {
27
+ "id": "2",
28
+ "data": {
29
+ "label": "End"
30
+ },
31
+ "type": "output",
32
+ "position": {
33
+ "x": 250,
34
+ "y": 255
35
+ }
36
+ },
37
+ {
38
+ "id": "fb138228-1427-436d-b6b4-fc94326def11",
39
+ "data": {
40
+ "lKey": "test_add",
41
+ "layer": {
42
+ "wf": true,
43
+ "key": "test_add",
44
+ "cols": 4,
45
+ "color": "none",
46
+ "label": "New entry field",
47
+ "style": "panel_generic_heading",
48
+ "fields": [
49
+ {
50
+ "type": "text",
51
+ "field": "input 1",
52
+ "label": "input 1",
53
+ "default": "",
54
+ "position": 1,
55
+ "required": false,
56
+ "sub_fields": [],
57
+ "text_sub_fields": []
58
+ },
59
+ {
60
+ "type": "text",
61
+ "field": "input 2",
62
+ "label": "input 2",
63
+ "default": "",
64
+ "position": 2,
65
+ "required": false,
66
+ "sub_fields": [],
67
+ "text_sub_fields": []
68
+ },
69
+ {
70
+ "type": "text",
71
+ "field": "input 3",
72
+ "label": "input 3",
73
+ "default": "",
74
+ "position": 3,
75
+ "required": false,
76
+ "sub_fields": [],
77
+ "text_sub_fields": []
78
+ },
79
+ {
80
+ "type": "select",
81
+ "field": "input 4",
82
+ "label": "input 4",
83
+ "default": "",
84
+ "position": 4,
85
+ "required": false,
86
+ "sub_fields": [],
87
+ "option_layers": "new",
88
+ "text_sub_fields": []
89
+ }
90
+ ],
91
+ "position": 10,
92
+ "condition": "",
93
+ "wf_position": 0
94
+ }
95
+ },
96
+ "type": "default",
97
+ "position": {
98
+ "x": 277.3984375,
99
+ "y": 31.6796875
100
+ }
101
+ },
102
+ {
103
+ "id": "48942db1-d2b0-4d00-8154-2cb46f000845",
104
+ "data": {
105
+ "lKey": "obs",
106
+ "layer": {
107
+ "wf": true,
108
+ "key": "obs",
109
+ "cols": 2,
110
+ "label": "Observation",
111
+ "fields": [
112
+ {
113
+ "type": "text",
114
+ "field": "Color",
115
+ "label": "Color",
116
+ "default": "",
117
+ "position": 1,
118
+ "required": false,
119
+ "sub_fields": [],
120
+ "description": "Free typing",
121
+ "text_sub_fields": []
122
+ },
123
+ {
124
+ "type": "system-defined",
125
+ "field": "Length",
126
+ "label": "Length",
127
+ "default": "",
128
+ "position": 2,
129
+ "required": false,
130
+ "sub_fields": [],
131
+ "description": "Please input",
132
+ "option_layers": "length",
133
+ "text_sub_fields": []
134
+ },
135
+ {
136
+ "type": "text",
137
+ "field": "Thickness",
138
+ "label": "Thickness",
139
+ "default": "",
140
+ "position": 3,
141
+ "required": false,
142
+ "sub_fields": [],
143
+ "description": "Free typing",
144
+ "text_sub_fields": []
145
+ }
146
+ ],
147
+ "position": 20,
148
+ "wf_position": 0
149
+ }
150
+ },
151
+ "type": "default",
152
+ "position": {
153
+ "x": 155.69351446807133,
154
+ "y": 139.1842728293537
155
+ }
156
+ },
157
+ {
158
+ "id": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
159
+ "data": {
160
+ "lKey": "ove",
161
+ "layer": {
162
+ "wf": true,
163
+ "key": "ove",
164
+ "cols": 2,
165
+ "label": "Over",
166
+ "fields": [
167
+ {
168
+ "type": "text",
169
+ "field": "Werkzeug",
170
+ "label": "Werkzeug",
171
+ "default": "",
172
+ "position": 1,
173
+ "required": false,
174
+ "sub_fields": [],
175
+ "text_sub_fields": []
176
+ },
177
+ {
178
+ "type": "select",
179
+ "field": "Elektronik",
180
+ "label": "Elektronik",
181
+ "default": "",
182
+ "position": 2,
183
+ "required": false,
184
+ "sub_fields": [],
185
+ "description": "Select...",
186
+ "option_layers": "new",
187
+ "text_sub_fields": []
188
+ }
189
+ ],
190
+ "position": 30,
191
+ "wf_position": 0
192
+ }
193
+ },
194
+ "type": "default",
195
+ "position": {
196
+ "x": 465.1219859123888,
197
+ "y": 151.35017789746223
198
+ }
199
+ },
200
+ {
201
+ "id": "reactflow__edge-1null-fb138228-1427-436d-b6b4-fc94326def11null",
202
+ "type": "default",
203
+ "source": "1",
204
+ "target": "fb138228-1427-436d-b6b4-fc94326def11",
205
+ "animated": true,
206
+ "sourceHandle": null,
207
+ "targetHandle": null,
208
+ "arrowHeadType": "arrowclosed"
209
+ },
210
+ {
211
+ "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-48942db1-d2b0-4d00-8154-2cb46f000845null",
212
+ "type": "default",
213
+ "source": "fb138228-1427-436d-b6b4-fc94326def11",
214
+ "target": "48942db1-d2b0-4d00-8154-2cb46f000845",
215
+ "animated": true,
216
+ "sourceHandle": null,
217
+ "targetHandle": null,
218
+ "arrowHeadType": "arrowclosed"
219
+ },
220
+ {
221
+ "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-179dded0-aae5-4bf4-89af-ce4a1f039bcenull",
222
+ "type": "default",
223
+ "source": "fb138228-1427-436d-b6b4-fc94326def11",
224
+ "target": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
225
+ "animated": true,
226
+ "sourceHandle": null,
227
+ "targetHandle": null,
228
+ "arrowHeadType": "arrowclosed"
229
+ },
230
+ {
231
+ "id": "reactflow__edge-179dded0-aae5-4bf4-89af-ce4a1f039bcenull-2null",
232
+ "type": "default",
233
+ "source": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
234
+ "target": "2",
235
+ "animated": true,
236
+ "sourceHandle": null,
237
+ "targetHandle": null,
238
+ "arrowHeadType": "arrowclosed"
239
+ },
240
+ {
241
+ "id": "reactflow__edge-48942db1-d2b0-4d00-8154-2cb46f000845null-2null",
242
+ "type": "default",
243
+ "source": "48942db1-d2b0-4d00-8154-2cb46f000845",
244
+ "target": "2",
245
+ "animated": true,
246
+ "sourceHandle": null,
247
+ "targetHandle": null,
248
+ "arrowHeadType": "arrowclosed"
249
+ }
250
+ ],
251
+ "position": [
252
+ 432.80377562088245,
253
+ 148.9554030544316
254
+ ]
255
+ },
256
+ "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
257
+ "klass": "SegmentKlass",
258
+ "layers": {
259
+ "obs": {
260
+ "wf": true,
261
+ "key": "obs",
262
+ "cols": 2,
263
+ "label": "Observation",
264
+ "fields": [
265
+ {
266
+ "type": "text",
267
+ "field": "Color",
268
+ "label": "Color",
269
+ "default": "",
270
+ "position": 1,
271
+ "required": false,
272
+ "sub_fields": [],
273
+ "description": "Free typing",
274
+ "text_sub_fields": []
275
+ },
276
+ {
277
+ "type": "system-defined",
278
+ "field": "Length",
279
+ "label": "Length",
280
+ "default": "",
281
+ "position": 2,
282
+ "required": false,
283
+ "sub_fields": [],
284
+ "description": "Please input",
285
+ "option_layers": "length",
286
+ "text_sub_fields": []
287
+ },
288
+ {
289
+ "type": "text",
290
+ "field": "Thickness",
291
+ "label": "Thickness",
292
+ "default": "",
293
+ "position": 3,
294
+ "required": false,
295
+ "sub_fields": [],
296
+ "description": "Free typing",
297
+ "text_sub_fields": []
298
+ }
299
+ ],
300
+ "position": 20,
301
+ "wf_position": 0
302
+ },
303
+ "ove": {
304
+ "wf": true,
305
+ "key": "ove",
306
+ "cols": 2,
307
+ "label": "Over",
308
+ "fields": [
309
+ {
310
+ "type": "text",
311
+ "field": "Werkzeug",
312
+ "label": "Werkzeug",
313
+ "default": "",
314
+ "position": 1,
315
+ "required": false,
316
+ "sub_fields": [],
317
+ "text_sub_fields": []
318
+ },
319
+ {
320
+ "type": "select",
321
+ "field": "Elektronik",
322
+ "label": "Elektronik",
323
+ "default": "",
324
+ "position": 2,
325
+ "required": false,
326
+ "sub_fields": [],
327
+ "description": "Select...",
328
+ "option_layers": "new",
329
+ "text_sub_fields": []
330
+ }
331
+ ],
332
+ "position": 30,
333
+ "wf_position": 0
334
+ },
335
+ "test_add": {
336
+ "wf": true,
337
+ "key": "test_add",
338
+ "cols": 4,
339
+ "color": "none",
340
+ "label": "New entry field",
341
+ "style": "panel_generic_heading",
342
+ "fields": [
343
+ {
344
+ "type": "text",
345
+ "field": "input 1",
346
+ "label": "input 1",
347
+ "default": "",
348
+ "position": 1,
349
+ "required": false,
350
+ "sub_fields": [],
351
+ "text_sub_fields": []
352
+ },
353
+ {
354
+ "type": "text",
355
+ "field": "input 2",
356
+ "label": "input 2",
357
+ "default": "",
358
+ "position": 2,
359
+ "required": false,
360
+ "sub_fields": [],
361
+ "text_sub_fields": []
362
+ },
363
+ {
364
+ "type": "text",
365
+ "field": "input 3",
366
+ "label": "input 3",
367
+ "default": "",
368
+ "position": 3,
369
+ "required": false,
370
+ "sub_fields": [],
371
+ "text_sub_fields": []
372
+ },
373
+ {
374
+ "type": "select",
375
+ "field": "input 4",
376
+ "label": "input 4",
377
+ "default": "",
378
+ "position": 4,
379
+ "required": false,
380
+ "sub_fields": [],
381
+ "option_layers": "new",
382
+ "text_sub_fields": []
383
+ }
384
+ ],
385
+ "position": 10,
386
+ "condition": "",
387
+ "wf_position": 0
388
+ }
389
+ },
390
+ "select_options": {
391
+ "new": {
392
+ "desc": "new",
393
+ "options": [
394
+ {
395
+ "key": "eins",
396
+ "label": "eins"
397
+ },
398
+ {
399
+ "key": "zwei",
400
+ "label": "zwei"
401
+ },
402
+ {
403
+ "key": "drei",
404
+ "label": "drei"
405
+ }
406
+ ]
407
+ }
408
+ }
409
+ },
410
+ "properties_release": {
411
+ "eln": {
412
+ "version": "1.0.3",
413
+ "base_revision": "c55e64ec712a688f27e80d0be08f8db256da0a08",
414
+ "current_revision": 0
415
+ },
416
+ "flow": {
417
+ "zoom": 1.5157165662599128,
418
+ "elements": [
419
+ {
420
+ "id": "1",
421
+ "data": {
422
+ "label": "Start"
423
+ },
424
+ "type": "input",
425
+ "position": {
426
+ "x": 216,
427
+ "y": -50
428
+ }
429
+ },
430
+ {
431
+ "id": "2",
432
+ "data": {
433
+ "label": "End"
434
+ },
435
+ "type": "output",
436
+ "position": {
437
+ "x": 250,
438
+ "y": 255
439
+ }
440
+ },
441
+ {
442
+ "id": "fb138228-1427-436d-b6b4-fc94326def11",
443
+ "data": {
444
+ "lKey": "test_add",
445
+ "layer": {
446
+ "wf": true,
447
+ "key": "test_add",
448
+ "cols": 4,
449
+ "color": "none",
450
+ "label": "New entry field",
451
+ "style": "panel_generic_heading",
452
+ "fields": [
453
+ {
454
+ "type": "text",
455
+ "field": "input 1",
456
+ "label": "input 1",
457
+ "default": "",
458
+ "position": 1,
459
+ "required": false,
460
+ "sub_fields": [],
461
+ "text_sub_fields": []
462
+ },
463
+ {
464
+ "type": "text",
465
+ "field": "input 2",
466
+ "label": "input 2",
467
+ "default": "",
468
+ "position": 2,
469
+ "required": false,
470
+ "sub_fields": [],
471
+ "text_sub_fields": []
472
+ },
473
+ {
474
+ "type": "text",
475
+ "field": "input 3",
476
+ "label": "input 3",
477
+ "default": "",
478
+ "position": 3,
479
+ "required": false,
480
+ "sub_fields": [],
481
+ "text_sub_fields": []
482
+ },
483
+ {
484
+ "type": "select",
485
+ "field": "input 4",
486
+ "label": "input 4",
487
+ "default": "",
488
+ "position": 4,
489
+ "required": false,
490
+ "sub_fields": [],
491
+ "option_layers": "new",
492
+ "text_sub_fields": []
493
+ }
494
+ ],
495
+ "position": 10,
496
+ "condition": "",
497
+ "wf_position": 0
498
+ }
499
+ },
500
+ "type": "default",
501
+ "position": {
502
+ "x": 277.3984375,
503
+ "y": 31.6796875
504
+ }
505
+ },
506
+ {
507
+ "id": "48942db1-d2b0-4d00-8154-2cb46f000845",
508
+ "data": {
509
+ "lKey": "obs",
510
+ "layer": {
511
+ "wf": true,
512
+ "key": "obs",
513
+ "cols": 2,
514
+ "label": "Observation",
515
+ "fields": [
516
+ {
517
+ "type": "text",
518
+ "field": "Color",
519
+ "label": "Color",
520
+ "default": "",
521
+ "position": 1,
522
+ "required": false,
523
+ "sub_fields": [],
524
+ "description": "Free typing",
525
+ "text_sub_fields": []
526
+ },
527
+ {
528
+ "type": "system-defined",
529
+ "field": "Length",
530
+ "label": "Length",
531
+ "default": "",
532
+ "position": 2,
533
+ "required": false,
534
+ "sub_fields": [],
535
+ "description": "Please input",
536
+ "option_layers": "length",
537
+ "text_sub_fields": []
538
+ },
539
+ {
540
+ "type": "text",
541
+ "field": "Thickness",
542
+ "label": "Thickness",
543
+ "default": "",
544
+ "position": 3,
545
+ "required": false,
546
+ "sub_fields": [],
547
+ "description": "Free typing",
548
+ "text_sub_fields": []
549
+ }
550
+ ],
551
+ "position": 20,
552
+ "wf_position": 0
553
+ }
554
+ },
555
+ "type": "default",
556
+ "position": {
557
+ "x": 155.69351446807133,
558
+ "y": 139.1842728293537
559
+ }
560
+ },
561
+ {
562
+ "id": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
563
+ "data": {
564
+ "lKey": "ove",
565
+ "layer": {
566
+ "wf": true,
567
+ "key": "ove",
568
+ "cols": 2,
569
+ "label": "Over",
570
+ "fields": [
571
+ {
572
+ "type": "text",
573
+ "field": "Werkzeug",
574
+ "label": "Werkzeug",
575
+ "default": "",
576
+ "position": 1,
577
+ "required": false,
578
+ "sub_fields": [],
579
+ "text_sub_fields": []
580
+ },
581
+ {
582
+ "type": "select",
583
+ "field": "Elektronik",
584
+ "label": "Elektronik",
585
+ "default": "",
586
+ "position": 2,
587
+ "required": false,
588
+ "sub_fields": [],
589
+ "description": "Select...",
590
+ "option_layers": "new",
591
+ "text_sub_fields": []
592
+ }
593
+ ],
594
+ "position": 30,
595
+ "wf_position": 0
596
+ }
597
+ },
598
+ "type": "default",
599
+ "position": {
600
+ "x": 465.1219859123888,
601
+ "y": 151.35017789746223
602
+ }
603
+ },
604
+ {
605
+ "id": "reactflow__edge-1null-fb138228-1427-436d-b6b4-fc94326def11null",
606
+ "type": "default",
607
+ "source": "1",
608
+ "target": "fb138228-1427-436d-b6b4-fc94326def11",
609
+ "animated": true,
610
+ "sourceHandle": null,
611
+ "targetHandle": null,
612
+ "arrowHeadType": "arrowclosed"
613
+ },
614
+ {
615
+ "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-48942db1-d2b0-4d00-8154-2cb46f000845null",
616
+ "type": "default",
617
+ "source": "fb138228-1427-436d-b6b4-fc94326def11",
618
+ "target": "48942db1-d2b0-4d00-8154-2cb46f000845",
619
+ "animated": true,
620
+ "sourceHandle": null,
621
+ "targetHandle": null,
622
+ "arrowHeadType": "arrowclosed"
623
+ },
624
+ {
625
+ "id": "reactflow__edge-fb138228-1427-436d-b6b4-fc94326def11null-179dded0-aae5-4bf4-89af-ce4a1f039bcenull",
626
+ "type": "default",
627
+ "source": "fb138228-1427-436d-b6b4-fc94326def11",
628
+ "target": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
629
+ "animated": true,
630
+ "sourceHandle": null,
631
+ "targetHandle": null,
632
+ "arrowHeadType": "arrowclosed"
633
+ },
634
+ {
635
+ "id": "reactflow__edge-179dded0-aae5-4bf4-89af-ce4a1f039bcenull-2null",
636
+ "type": "default",
637
+ "source": "179dded0-aae5-4bf4-89af-ce4a1f039bce",
638
+ "target": "2",
639
+ "animated": true,
640
+ "sourceHandle": null,
641
+ "targetHandle": null,
642
+ "arrowHeadType": "arrowclosed"
643
+ },
644
+ {
645
+ "id": "reactflow__edge-48942db1-d2b0-4d00-8154-2cb46f000845null-2null",
646
+ "type": "default",
647
+ "source": "48942db1-d2b0-4d00-8154-2cb46f000845",
648
+ "target": "2",
649
+ "animated": true,
650
+ "sourceHandle": null,
651
+ "targetHandle": null,
652
+ "arrowHeadType": "arrowclosed"
653
+ }
654
+ ],
655
+ "position": [
656
+ 432.80377562088245,
657
+ 148.9554030544316
658
+ ]
659
+ },
660
+ "uuid": "aa5884c7-4ee1-4b5d-8062-91de76089e43",
661
+ "klass": "SegmentKlass",
662
+ "layers": {
663
+ "obs": {
664
+ "wf": true,
665
+ "key": "obs",
666
+ "cols": 2,
667
+ "label": "Observation",
668
+ "fields": [
669
+ {
670
+ "type": "text",
671
+ "field": "Color",
672
+ "label": "Color",
673
+ "default": "",
674
+ "position": 1,
675
+ "required": false,
676
+ "sub_fields": [],
677
+ "description": "Free typing",
678
+ "text_sub_fields": []
679
+ },
680
+ {
681
+ "type": "system-defined",
682
+ "field": "Length",
683
+ "label": "Length",
684
+ "default": "",
685
+ "position": 2,
686
+ "required": false,
687
+ "sub_fields": [],
688
+ "description": "Please input",
689
+ "option_layers": "length",
690
+ "text_sub_fields": []
691
+ },
692
+ {
693
+ "type": "text",
694
+ "field": "Thickness",
695
+ "label": "Thickness",
696
+ "default": "",
697
+ "position": 3,
698
+ "required": false,
699
+ "sub_fields": [],
700
+ "description": "Free typing",
701
+ "text_sub_fields": []
702
+ }
703
+ ],
704
+ "position": 20,
705
+ "wf_position": 0
706
+ },
707
+ "ove": {
708
+ "wf": true,
709
+ "key": "ove",
710
+ "cols": 2,
711
+ "label": "Over",
712
+ "fields": [
713
+ {
714
+ "type": "text",
715
+ "field": "Werkzeug",
716
+ "label": "Werkzeug",
717
+ "default": "",
718
+ "position": 1,
719
+ "required": false,
720
+ "sub_fields": [],
721
+ "text_sub_fields": []
722
+ },
723
+ {
724
+ "type": "select",
725
+ "field": "Elektronik",
726
+ "label": "Elektronik",
727
+ "default": "",
728
+ "position": 2,
729
+ "required": false,
730
+ "sub_fields": [],
731
+ "description": "Select...",
732
+ "option_layers": "new",
733
+ "text_sub_fields": []
734
+ }
735
+ ],
736
+ "position": 30,
737
+ "wf_position": 0
738
+ },
739
+ "test_add": {
740
+ "wf": true,
741
+ "key": "test_add",
742
+ "cols": 4,
743
+ "color": "none",
744
+ "label": "New entry field",
745
+ "style": "panel_generic_heading",
746
+ "fields": [
747
+ {
748
+ "type": "text",
749
+ "field": "input 1",
750
+ "label": "input 1",
751
+ "default": "",
752
+ "position": 1,
753
+ "required": false,
754
+ "sub_fields": [],
755
+ "text_sub_fields": []
756
+ },
757
+ {
758
+ "type": "text",
759
+ "field": "input 2",
760
+ "label": "input 2",
761
+ "default": "",
762
+ "position": 2,
763
+ "required": false,
764
+ "sub_fields": [],
765
+ "text_sub_fields": []
766
+ },
767
+ {
768
+ "type": "text",
769
+ "field": "input 3",
770
+ "label": "input 3",
771
+ "default": "",
772
+ "position": 3,
773
+ "required": false,
774
+ "sub_fields": [],
775
+ "text_sub_fields": []
776
+ },
777
+ {
778
+ "type": "select",
779
+ "field": "input 4",
780
+ "label": "input 4",
781
+ "default": "",
782
+ "position": 4,
783
+ "required": false,
784
+ "sub_fields": [],
785
+ "option_layers": "new",
786
+ "text_sub_fields": []
787
+ }
788
+ ],
789
+ "position": 10,
790
+ "condition": "",
791
+ "wf_position": 0
792
+ }
793
+ },
794
+ "select_options": {
795
+ "new": {
796
+ "desc": "new",
797
+ "options": [
798
+ {
799
+ "key": "eins",
800
+ "label": "eins"
801
+ },
802
+ {
803
+ "key": "zwei",
804
+ "label": "zwei"
805
+ },
806
+ {
807
+ "key": "drei",
808
+ "label": "drei"
809
+ }
810
+ ]
811
+ }
812
+ }
813
+ },
814
+ "is_active": true,
815
+ "place": 100,
816
+ "released_at": "28.02.2022, 13:20",
817
+ "element_klass": {
818
+ "id": 1,
819
+ "uuid": "884ca42d-41d8-4996-9ea3-e9668108f551",
820
+ "name": "sample",
821
+ "label": "Sample",
822
+ "desc": "ELN Sample",
823
+ "icon_name": "icon-sample",
824
+ "properties_release": {
825
+ "eln": {
826
+ "version": "0.9.1",
827
+ "base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
828
+ "current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
829
+ },
830
+ "uuid": "884ca42d-41d8-4996-9ea3-e9668108f551",
831
+ "klass": "ElementKlass",
832
+ "select_options": {}
833
+ },
834
+ "properties_template": {
835
+ "eln": {
836
+ "version": "0.9.1",
837
+ "base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
838
+ "current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
839
+ },
840
+ "uuid": "884ca42d-41d8-4996-9ea3-e9668108f551",
841
+ "klass": "ElementKlass",
842
+ "select_options": {}
843
+ },
844
+ "is_active": true,
845
+ "klass_prefix": "",
846
+ "is_generic": false,
847
+ "place": 0,
848
+ "released_at": "02.08.2021, 19:25"
849
+ }
850
+ }