chem-generic-ui 0.1.44 → 0.1.47
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/.babelrc +11 -0
- package/.eslintrc +23 -0
- package/.tool-versions +3 -0
- package/chem-generic-ui-v0.1.41.tgz +0 -0
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.LICENSE.txt +70 -0
- package/dist/ds_details.json +57 -0
- package/dist/ds_klass.json +102 -0
- package/dist/ds_props.json +54 -0
- package/dist/index.html +14 -0
- package/dist/sg_details.json +2036 -0
- package/dist/sg_klass.json +850 -0
- package/dist/units_system.json +430 -0
- package/package.json +3 -13
- package/public/ds_details.json +57 -0
- package/public/ds_klass.json +102 -0
- package/public/ds_props.json +54 -0
- package/public/favicon.ico +0 -0
- package/public/images/not_available.svg +1 -0
- package/public/index.html +47 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +3 -0
- package/public/sg_details.json +2036 -0
- package/public/sg_klass.json +850 -0
- package/public/test/ds_props.json +54 -0
- package/public/units_system.json +430 -0
- package/src/app.js +2 -0
- package/src/asserts/bootstrap-theme.min.css +6 -0
- package/src/asserts/bootstrap.min.css +6 -0
- package/src/asserts/main.css +458 -0
- package/src/asserts/main.scss +490 -0
- package/src/components/admin/ElementManager.js +28 -0
- package/src/components/details/GenDSDetails.js +164 -0
- package/src/components/details/GenSgDetails.js +396 -0
- package/src/components/dnd/DragDropItemTypes.js +13 -0
- package/src/components/dnd/GenericElDropTarget.js +160 -0
- package/src/components/dnd/GridDnD.js +42 -0
- package/src/components/dnd/PanelDnD.js +85 -0
- package/src/components/fields/ButtonConfirm.js +45 -0
- package/src/components/fields/ButtonTooltip.js +46 -0
- package/src/components/fields/FieldLabel.js +18 -0
- package/src/components/fields/GenDSMisType.js +20 -0
- package/src/components/fields/GenFormGroupCb.js +17 -0
- package/src/components/fields/GenProperties.js +56 -0
- package/src/components/fields/GenPropertiesFields.js +440 -0
- package/src/components/layers/GenPropertiesLayer.js +178 -0
- package/src/components/layers/LayerModal.js +52 -0
- package/src/components/layers/LayersLayout.js +68 -0
- package/src/components/models/Attachment.js +37 -0
- package/src/components/models/GenericSubField.js +10 -0
- package/src/components/table/DropLinkRenderer.js +35 -0
- package/src/components/table/DropRenderer.js +31 -0
- package/src/components/table/DropTextRenderer.js +25 -0
- package/src/components/table/GenericElTableDropTarget.js +131 -0
- package/src/components/table/GridBtn.js +41 -0
- package/src/components/table/GridEntry.js +75 -0
- package/src/components/table/SamOption.js +53 -0
- package/src/components/table/SelectRenderer.js +34 -0
- package/src/components/table/TableRecord.js +254 -0
- package/src/components/table/UConverterRenderer.js +24 -0
- package/src/components/tools/collate.js +65 -0
- package/src/components/tools/orten.js +171 -0
- package/src/components/tools/utils.js +414 -0
- package/src/data/SystemUnits.js +434 -0
- package/src/data/systemUnits.json +430 -0
- package/src/index.css +13 -0
- package/src/index.html +1 -0
- package/src/index.js +45 -0
- package/src/logo.svg +1 -0
- package/src/simulations/SimuDS.js +52 -0
- package/src/simulations/SimuSG.js +54 -0
- package/webpack.config.js +46 -0
|
@@ -0,0 +1,430 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fields": [
|
|
3
|
+
{
|
|
4
|
+
"type": "numeric",
|
|
5
|
+
"field": "acceleration",
|
|
6
|
+
"label": "Acceleration",
|
|
7
|
+
"default": "",
|
|
8
|
+
"position": 10,
|
|
9
|
+
"placeholder": "acceleration",
|
|
10
|
+
"units": [
|
|
11
|
+
{ "key": "mm_s2", "label": "mm/s<sup>2</sup>" }
|
|
12
|
+
]
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"type": "numeric",
|
|
16
|
+
"field": "agitation",
|
|
17
|
+
"label": "Agitation",
|
|
18
|
+
"default": "",
|
|
19
|
+
"position": 20,
|
|
20
|
+
"placeholder": "agitation",
|
|
21
|
+
"units": [
|
|
22
|
+
{ "key": "rpm", "label": "rpm" }
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"type": "numeric",
|
|
27
|
+
"field": "amount_enzyme",
|
|
28
|
+
"label": "Amount enzyme as nmol/min",
|
|
29
|
+
"default": "",
|
|
30
|
+
"position": 30,
|
|
31
|
+
"placeholder": "amount enzyme as nmol/min",
|
|
32
|
+
"units": [
|
|
33
|
+
{ "key": "u", "label": "U", "nm": 1 },
|
|
34
|
+
{ "key": "mu", "label": "mU", "nm": 1000 }
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"type": "numeric",
|
|
39
|
+
"field": "molarity",
|
|
40
|
+
"label": "Chem. concentration (Molarity)",
|
|
41
|
+
"default": "",
|
|
42
|
+
"position": 40,
|
|
43
|
+
"placeholder": "molarity",
|
|
44
|
+
"units": [
|
|
45
|
+
{ "key": "mol_l", "label": "mol/L (M)", "nm": 1 },
|
|
46
|
+
{ "key": "mmol_l", "label": "mmol/L (mM)", "nm": 1000 },
|
|
47
|
+
{ "key": "nmol_l", "label": "nmol/L (nM)", "nm": 1000000 },
|
|
48
|
+
{ "key": "pmol_l", "label": "pmol/L (pM)", "nm": 1000000000 }
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"type": "numeric",
|
|
53
|
+
"field": "chem_distances",
|
|
54
|
+
"label": "Chem. distances",
|
|
55
|
+
"default": "",
|
|
56
|
+
"position": 50,
|
|
57
|
+
"placeholder": "Chem. distances",
|
|
58
|
+
"units": [
|
|
59
|
+
{ "key": "angstrom", "label": "Å" }
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "numeric",
|
|
64
|
+
"field": "concentration",
|
|
65
|
+
"label": "Concentration",
|
|
66
|
+
"default": "",
|
|
67
|
+
"position": 60,
|
|
68
|
+
"placeholder": "concentration",
|
|
69
|
+
"units": [
|
|
70
|
+
{ "key": "ng_l", "label": "ng/L", "nm": 1000000 },
|
|
71
|
+
{ "key": "mg_l", "label": "mg/L", "nm": 1000 },
|
|
72
|
+
{ "key": "g_l", "label": "g/L", "nm": 1 }
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "numeric",
|
|
77
|
+
"field": "conductivity",
|
|
78
|
+
"label": "Conductivity",
|
|
79
|
+
"default": "",
|
|
80
|
+
"position": 66,
|
|
81
|
+
"placeholder": "conductivity",
|
|
82
|
+
"units": [
|
|
83
|
+
{ "key": "s_m", "label": "S/m", "nm": 1 }
|
|
84
|
+
]
|
|
85
|
+
},{
|
|
86
|
+
"type": "numeric",
|
|
87
|
+
"field": "current",
|
|
88
|
+
"label": "Current",
|
|
89
|
+
"default": "",
|
|
90
|
+
"position": 60,
|
|
91
|
+
"placeholder": "Current",
|
|
92
|
+
"units": [
|
|
93
|
+
{ "key": "A", "label": "A", "nm": 1 },
|
|
94
|
+
{ "key": "mA", "label": "mA", "nm": 1000 },
|
|
95
|
+
{ "key": "uA", "label": "µA", "nm": 1000000},
|
|
96
|
+
{ "key": "nA", "label": "nA", "nm": 1000000000 }
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"type": "numeric",
|
|
101
|
+
"field": "degree",
|
|
102
|
+
"label": "Degree",
|
|
103
|
+
"default": "",
|
|
104
|
+
"position": 70,
|
|
105
|
+
"placeholder": "degree",
|
|
106
|
+
"units": [
|
|
107
|
+
{ "key": "degree", "label": "°" }
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"type": "numeric",
|
|
112
|
+
"field": "density",
|
|
113
|
+
"label": "Density",
|
|
114
|
+
"default": "",
|
|
115
|
+
"position": 75,
|
|
116
|
+
"placeholder": "density",
|
|
117
|
+
"units": [
|
|
118
|
+
{ "key": "g_cm3", "label": "g/cm<sup>3</sup>", "nm": 1 },
|
|
119
|
+
{ "key": "kg_l", "label": "kg/l", "nm": 1 }
|
|
120
|
+
]
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"type": "numeric",
|
|
124
|
+
"field": "duration",
|
|
125
|
+
"label": "Duration",
|
|
126
|
+
"default": "",
|
|
127
|
+
"position": 80,
|
|
128
|
+
"placeholder": "duration",
|
|
129
|
+
"units": [
|
|
130
|
+
{ "key": "d", "label": "d", "nm": 1 },
|
|
131
|
+
{ "key": "h", "label": "h", "nm": 24 },
|
|
132
|
+
{ "key": "min", "label": "m", "nm": 1440 },
|
|
133
|
+
{ "key": "s", "label": "s", "nm": 86400 }
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "numeric",
|
|
138
|
+
"field": "elastic_modulus",
|
|
139
|
+
"label": "Elastic modulus",
|
|
140
|
+
"default": "",
|
|
141
|
+
"position": 86,
|
|
142
|
+
"placeholder": "Elastic modulus",
|
|
143
|
+
"units": [
|
|
144
|
+
{ "key": "m_pa", "label": "MPa", "nm": 1 },
|
|
145
|
+
{ "key": "k_pa", "label": "kPa", "nm": 1000 },
|
|
146
|
+
{ "key": "pa", "label": "Pa", "nm": 1000000 }
|
|
147
|
+
]
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"type": "numeric",
|
|
151
|
+
"field": "electric_field",
|
|
152
|
+
"label": "Electric field",
|
|
153
|
+
"default": "",
|
|
154
|
+
"position": 86,
|
|
155
|
+
"placeholder": "Electric field",
|
|
156
|
+
"units": [
|
|
157
|
+
{ "key": "v_m", "label": "V/m", "nm": 1 }
|
|
158
|
+
]
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"type": "numeric",
|
|
162
|
+
"field": "energy",
|
|
163
|
+
"label": "Energy",
|
|
164
|
+
"default": "",
|
|
165
|
+
"position": 88,
|
|
166
|
+
"placeholder": "Joule",
|
|
167
|
+
"units": [
|
|
168
|
+
{ "key": "j", "label": "J", "nm": 1000 },
|
|
169
|
+
{ "key": "k_j", "label": "kJ", "nm": 1 }
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"type": "numeric",
|
|
174
|
+
"field": "enzyme_activity",
|
|
175
|
+
"label": "Enzyme activity",
|
|
176
|
+
"default": "",
|
|
177
|
+
"position": 90,
|
|
178
|
+
"placeholder": "Enzyme activity",
|
|
179
|
+
"units": [
|
|
180
|
+
{ "key": "u_l", "label": "U/L", "nm": 1 },
|
|
181
|
+
{ "key": "u_ml", "label": "U/mL", "nm": 1000 }
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"type": "numeric",
|
|
186
|
+
"field": "flow_rate",
|
|
187
|
+
"label": "Flow rate",
|
|
188
|
+
"default": "",
|
|
189
|
+
"position": 100,
|
|
190
|
+
"placeholder": "Flow rate",
|
|
191
|
+
"units": [
|
|
192
|
+
{ "key": "ul_min", "label": "µl/min", "nm": 1000000 },
|
|
193
|
+
{ "key": "ml_min", "label": "ml/min", "nm": 1000 },
|
|
194
|
+
{ "key": "l_m", "label": "l/m", "nm": 1 }
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"type": "numeric",
|
|
199
|
+
"field": "frequency",
|
|
200
|
+
"label": "Frequency",
|
|
201
|
+
"default": "",
|
|
202
|
+
"position": 100,
|
|
203
|
+
"placeholder": "frequency",
|
|
204
|
+
"units": [
|
|
205
|
+
{ "key": "hz", "label": "Hz", "nm": 1000 },
|
|
206
|
+
{ "key": "khz", "label": "kHz", "nm": 1 }
|
|
207
|
+
]
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"type": "numeric",
|
|
211
|
+
"field": "heating_rate",
|
|
212
|
+
"label": "Heating rate",
|
|
213
|
+
"default": "",
|
|
214
|
+
"position": 106,
|
|
215
|
+
"placeholder": "heating rate",
|
|
216
|
+
"units": [
|
|
217
|
+
{ "key": "k_min", "label": "K/min", "nm": 1 }
|
|
218
|
+
]
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"type": "numeric",
|
|
222
|
+
"field": "length",
|
|
223
|
+
"label": "Length",
|
|
224
|
+
"default": "",
|
|
225
|
+
"position": 110,
|
|
226
|
+
"placeholder": "length",
|
|
227
|
+
"units": [
|
|
228
|
+
{ "key": "pm", "label": "pm", "nm": 100000 },
|
|
229
|
+
{ "key": "nm", "label": "nm", "nm": 10000 },
|
|
230
|
+
{ "key": "mm", "label": "mm", "nm": 1000 },
|
|
231
|
+
{ "key": "cm", "label": "cm", "nm": 100 },
|
|
232
|
+
{ "key": "m", "label": "m", "nm": 1 }
|
|
233
|
+
]
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "numeric",
|
|
237
|
+
"field": "magnetic_flux_density",
|
|
238
|
+
"label": "Magnetic flux density/inductivity",
|
|
239
|
+
"default": "",
|
|
240
|
+
"position": 120,
|
|
241
|
+
"placeholder": "",
|
|
242
|
+
"units": [
|
|
243
|
+
{ "key": "T", "label": "T", "nm": 1 }
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"type": "numeric",
|
|
248
|
+
"field": "mass",
|
|
249
|
+
"label": "Mass",
|
|
250
|
+
"default": "",
|
|
251
|
+
"position": 120,
|
|
252
|
+
"placeholder": "mass",
|
|
253
|
+
"units": [
|
|
254
|
+
{ "key": "g", "label": "g", "nm": 1 },
|
|
255
|
+
{ "key": "mg", "label": "mg", "nm": 1000 },
|
|
256
|
+
{ "key": "ug", "label": "µg", "nm": 1000000 }
|
|
257
|
+
]
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"type": "numeric",
|
|
261
|
+
"field": "mass_molecule",
|
|
262
|
+
"label": "Mass of molecule",
|
|
263
|
+
"default": "",
|
|
264
|
+
"position": 126,
|
|
265
|
+
"placeholder": "mass of molecule",
|
|
266
|
+
"units": [
|
|
267
|
+
{ "key": "dalton", "label": "D", "nm": 1000 },
|
|
268
|
+
{ "key": "kilo_dalton", "label": "kD", "nm": 1 }
|
|
269
|
+
]
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": "numeric",
|
|
273
|
+
"field": "molecular_weight",
|
|
274
|
+
"label": "Molecular weight",
|
|
275
|
+
"default": "",
|
|
276
|
+
"position": 130,
|
|
277
|
+
"placeholder": "Molecular weight",
|
|
278
|
+
"units": [
|
|
279
|
+
{ "key": "g_mol", "label": "g/mol" }
|
|
280
|
+
]
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"type": "numeric",
|
|
284
|
+
"field": "percentage",
|
|
285
|
+
"label": "Percentage",
|
|
286
|
+
"default": "",
|
|
287
|
+
"position": 136,
|
|
288
|
+
"placeholder": "percentage",
|
|
289
|
+
"units": [
|
|
290
|
+
{ "key": "p", "label": "%", "nm": 1 }
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"type": "numeric",
|
|
295
|
+
"field": "pressure",
|
|
296
|
+
"label": "Pressure",
|
|
297
|
+
"default": "",
|
|
298
|
+
"position": 140,
|
|
299
|
+
"placeholder": "pressure",
|
|
300
|
+
"units": [
|
|
301
|
+
{ "key": "atm", "label": "atm", "nm": 1 },
|
|
302
|
+
{ "key": "pa", "label": "Pa", "nm": 101325 },
|
|
303
|
+
{ "key": "torr", "label": "Torr", "nm": 760 }
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": "numeric",
|
|
308
|
+
"field": "reaction_rate",
|
|
309
|
+
"label": "Reaction rate",
|
|
310
|
+
"default": "",
|
|
311
|
+
"position": 150,
|
|
312
|
+
"placeholder": "Reaction rate",
|
|
313
|
+
"units": [
|
|
314
|
+
{ "key": "mol_lmin", "label": "mol/Lmin", "nm": 1 },
|
|
315
|
+
{ "key": "mol_lsec", "label": "mol/Ls", "nm": 60 }
|
|
316
|
+
]
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"type": "numeric",
|
|
320
|
+
"field": "specific_volume",
|
|
321
|
+
"label": "Specific Volume",
|
|
322
|
+
"default": "",
|
|
323
|
+
"position": 160,
|
|
324
|
+
"placeholder": "Specific Volume",
|
|
325
|
+
"units": [
|
|
326
|
+
{ "key": "cm3_g", "label": "cm<sup>3</sup>/g", "nm": 1 }
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"type": "numeric",
|
|
331
|
+
"field": "speed",
|
|
332
|
+
"label": "Speed",
|
|
333
|
+
"default": "",
|
|
334
|
+
"position": 165,
|
|
335
|
+
"placeholder": "speed",
|
|
336
|
+
"units": [
|
|
337
|
+
{ "key": "cm_s", "label": "cm/s", "nm": 1 },
|
|
338
|
+
{ "key": "mm_s", "label": "mm/s", "nm": 10 },
|
|
339
|
+
{ "key": "cm_h", "label": "cm/h", "nm": 3600 },
|
|
340
|
+
{ "key": "mm_h", "label": "mm/h", "nm": 36000 }
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"type": "numeric",
|
|
345
|
+
"field": "surface",
|
|
346
|
+
"label": "Surface",
|
|
347
|
+
"default": "",
|
|
348
|
+
"position": 170,
|
|
349
|
+
"placeholder": "surface",
|
|
350
|
+
"units": [
|
|
351
|
+
{ "key": "a_2", "label": "A<sup>2</sup>" },
|
|
352
|
+
{ "key": "mm_2", "label": "mm<sup>2</sup>" },
|
|
353
|
+
{ "key": "cm_2", "label": "cm<sup>2</sup>" }
|
|
354
|
+
]
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"type": "numeric",
|
|
358
|
+
"field": "temperature",
|
|
359
|
+
"label": "Temperature",
|
|
360
|
+
"default": "",
|
|
361
|
+
"position": 180,
|
|
362
|
+
"placeholder": "temperature",
|
|
363
|
+
"units": [
|
|
364
|
+
{ "key": "C", "label": "°C" },
|
|
365
|
+
{ "key": "F", "label": "°F" },
|
|
366
|
+
{ "key": "K", "label": "°K" }
|
|
367
|
+
]
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"type": "numeric",
|
|
371
|
+
"field": "turnover_number",
|
|
372
|
+
"label": "Turnover number",
|
|
373
|
+
"default": "",
|
|
374
|
+
"position": 190,
|
|
375
|
+
"placeholder": "Turnover number",
|
|
376
|
+
"units": [
|
|
377
|
+
{ "key": "1_s", "label": "1/s" }
|
|
378
|
+
]
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"type": "numeric",
|
|
382
|
+
"field": "viscosity",
|
|
383
|
+
"label": "Dynamic Viscosity",
|
|
384
|
+
"default": "",
|
|
385
|
+
"position": 200,
|
|
386
|
+
"placeholder": "Dynamic Viscosity",
|
|
387
|
+
"units": [
|
|
388
|
+
{ "key": "pas", "label": "Pas", "nm": 1 },
|
|
389
|
+
{ "key": "mpas", "label": "mPas", "nm": 1000 }
|
|
390
|
+
]
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"type": "numeric",
|
|
394
|
+
"field": "kinematic_viscosity",
|
|
395
|
+
"label": "Kinematic Viscosity",
|
|
396
|
+
"default": "",
|
|
397
|
+
"position": 205,
|
|
398
|
+
"placeholder": "Kinematic Viscosity",
|
|
399
|
+
"units": [
|
|
400
|
+
{ "key": "m2_s", "label": "m<sup>2</sup>/s", "nm": 1 }
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"type": "numeric",
|
|
405
|
+
"field": "voltage",
|
|
406
|
+
"label": "Voltage",
|
|
407
|
+
"default": "",
|
|
408
|
+
"position": 200,
|
|
409
|
+
"placeholder": "voltage",
|
|
410
|
+
"units": [
|
|
411
|
+
{ "key": "mv", "label": "mV", "nm": 1000 },
|
|
412
|
+
{ "key": "v", "label": "V", "nm": 1 }
|
|
413
|
+
]
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"type": "numeric",
|
|
417
|
+
"field": "volumes",
|
|
418
|
+
"label": "Volumes",
|
|
419
|
+
"default": "",
|
|
420
|
+
"position": 210,
|
|
421
|
+
"placeholder": "volume",
|
|
422
|
+
"units": [
|
|
423
|
+
{ "key": "l", "label": "l", "nm": 1 },
|
|
424
|
+
{ "key": "ml", "label": "ml", "nm": 1000 },
|
|
425
|
+
{ "key": "ul", "label": "µl", "nm": 1000000},
|
|
426
|
+
{ "key": "nl", "label": "nl", "nm": 1000000000 }
|
|
427
|
+
]
|
|
428
|
+
}
|
|
429
|
+
]
|
|
430
|
+
}
|
package/package.json
CHANGED
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chem-generic-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.47",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"main": "
|
|
8
|
-
"module": "src/app.js",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist/bundle.js"
|
|
11
|
-
],
|
|
7
|
+
"main": "dist/index.html",
|
|
12
8
|
"jsdelivr": "dist/bundle.js",
|
|
13
|
-
"unpkg": "dist/bundle.js",
|
|
14
|
-
"exports": {
|
|
15
|
-
"umd": "./dist/bundle.js",
|
|
16
|
-
"default": "./dist/bundle.js"
|
|
17
|
-
},
|
|
18
9
|
"scripts": {
|
|
19
10
|
"start": "webpack serve --config ./webpack.config.js --mode development",
|
|
20
11
|
"build": "webpack --config ./webpack.config.js --mode production",
|
|
@@ -63,7 +54,6 @@
|
|
|
63
54
|
"@fortawesome/free-solid-svg-icons": "^6.0.0",
|
|
64
55
|
"@fortawesome/react-fontawesome": "^0.1.17",
|
|
65
56
|
"babel-plugin-transform-react-class-to-function": "^1.2.2",
|
|
66
|
-
"bootstrap": "5.1.3",
|
|
67
57
|
"css-loader": "^6.7.1",
|
|
68
58
|
"file-loader": "^6.2.0",
|
|
69
59
|
"html-loader": "^3.1.0",
|
|
@@ -76,7 +66,7 @@
|
|
|
76
66
|
"path": "^0.12.7",
|
|
77
67
|
"prop-types": "^15.8.1",
|
|
78
68
|
"react": "^17.0.2",
|
|
79
|
-
"react-bootstrap": "^
|
|
69
|
+
"react-bootstrap": "^0.33.1",
|
|
80
70
|
"react-dnd": "^2.6.0",
|
|
81
71
|
"react-dnd-html5-backend": "^2.6.0",
|
|
82
72
|
"react-dom": "^17.0.2",
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dataset_klass_id": 1,
|
|
3
|
+
"element_type": "Container",
|
|
4
|
+
"element_id": "2fc641d0-a46f-11ec-93d3-33042392e5c2",
|
|
5
|
+
"properties": {
|
|
6
|
+
"eln": {
|
|
7
|
+
"version": "0.9.1",
|
|
8
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
9
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
10
|
+
},
|
|
11
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
12
|
+
"klass": "DatasetKlass",
|
|
13
|
+
"layers": {
|
|
14
|
+
"params": {
|
|
15
|
+
"key": "params",
|
|
16
|
+
"cols": 3,
|
|
17
|
+
"label": "Parameter",
|
|
18
|
+
"fields": [
|
|
19
|
+
{
|
|
20
|
+
"type": "system-defined",
|
|
21
|
+
"field": "temp",
|
|
22
|
+
"label": "Temperature",
|
|
23
|
+
"default": "",
|
|
24
|
+
"position": 1,
|
|
25
|
+
"description": "measurement temperature",
|
|
26
|
+
"option_layers": "temperature"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"position": 100,
|
|
30
|
+
"condition": ""
|
|
31
|
+
},
|
|
32
|
+
"system": {
|
|
33
|
+
"key": "system",
|
|
34
|
+
"cols": 3,
|
|
35
|
+
"label": "Settings",
|
|
36
|
+
"fields": [
|
|
37
|
+
{
|
|
38
|
+
"type": "integer",
|
|
39
|
+
"field": "scan",
|
|
40
|
+
"label": "Number of Scans",
|
|
41
|
+
"default": "",
|
|
42
|
+
"position": 1
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"position": 100,
|
|
46
|
+
"condition": ""
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"select_options": {}
|
|
50
|
+
},
|
|
51
|
+
"klass_ols": "CHMO:0000593",
|
|
52
|
+
"klass_label": "1H nuclear magnetic resonance spectroscopy (1H NMR)",
|
|
53
|
+
"changed": false,
|
|
54
|
+
"id": "2fd3fd70-a46f-11ec-93d3-33042392e5c2",
|
|
55
|
+
"is_new": true,
|
|
56
|
+
"_checksum": "20a39d76e0299642ac75686f5c2de76f326271d713045365d2c9c7343020b698"
|
|
57
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": 1,
|
|
3
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
4
|
+
"ols_term_id": "CHMO:0000593",
|
|
5
|
+
"label": "1H nuclear magnetic resonance spectroscopy (1H NMR)",
|
|
6
|
+
"desc": "1H nuclear magnetic resonance spectroscopy (1H NMR)",
|
|
7
|
+
"properties_template": {
|
|
8
|
+
"eln": {
|
|
9
|
+
"version": "0.9.1",
|
|
10
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
11
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
12
|
+
},
|
|
13
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
14
|
+
"klass": "DatasetKlass",
|
|
15
|
+
"layers": {
|
|
16
|
+
"params": {
|
|
17
|
+
"key": "params",
|
|
18
|
+
"cols": 3,
|
|
19
|
+
"label": "Parameter",
|
|
20
|
+
"fields": [
|
|
21
|
+
{
|
|
22
|
+
"type": "system-defined",
|
|
23
|
+
"field": "temp",
|
|
24
|
+
"label": "Temperature",
|
|
25
|
+
"default": "",
|
|
26
|
+
"position": 1,
|
|
27
|
+
"description": "measurement temperature",
|
|
28
|
+
"option_layers": "temperature"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"position": 100,
|
|
32
|
+
"condition": ""
|
|
33
|
+
},
|
|
34
|
+
"system": {
|
|
35
|
+
"key": "system",
|
|
36
|
+
"cols": 3,
|
|
37
|
+
"label": "Settings",
|
|
38
|
+
"fields": [
|
|
39
|
+
{
|
|
40
|
+
"type": "integer",
|
|
41
|
+
"field": "scan",
|
|
42
|
+
"label": "Number of Scans",
|
|
43
|
+
"default": "",
|
|
44
|
+
"position": 1
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"position": 100,
|
|
48
|
+
"condition": ""
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"select_options": {}
|
|
52
|
+
},
|
|
53
|
+
"properties_release": {
|
|
54
|
+
"eln": {
|
|
55
|
+
"version": "0.9.1",
|
|
56
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
57
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
58
|
+
},
|
|
59
|
+
"uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
60
|
+
"klass": "DatasetKlass",
|
|
61
|
+
"layers": {
|
|
62
|
+
"params": {
|
|
63
|
+
"key": "params",
|
|
64
|
+
"cols": 3,
|
|
65
|
+
"label": "Parameter",
|
|
66
|
+
"fields": [
|
|
67
|
+
{
|
|
68
|
+
"type": "system-defined",
|
|
69
|
+
"field": "temp",
|
|
70
|
+
"label": "Temperature",
|
|
71
|
+
"default": "",
|
|
72
|
+
"position": 1,
|
|
73
|
+
"description": "measurement temperature",
|
|
74
|
+
"option_layers": "temperature"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"position": 100,
|
|
78
|
+
"condition": ""
|
|
79
|
+
},
|
|
80
|
+
"system": {
|
|
81
|
+
"key": "system",
|
|
82
|
+
"cols": 3,
|
|
83
|
+
"label": "Settings",
|
|
84
|
+
"fields": [
|
|
85
|
+
{
|
|
86
|
+
"type": "integer",
|
|
87
|
+
"field": "scan",
|
|
88
|
+
"label": "Number of Scans",
|
|
89
|
+
"default": "",
|
|
90
|
+
"position": 1
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"position": 100,
|
|
94
|
+
"condition": ""
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"select_options": {}
|
|
98
|
+
},
|
|
99
|
+
"is_active": true,
|
|
100
|
+
"place": 10,
|
|
101
|
+
"released_at": "02.08.2021, 19:26"
|
|
102
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"eln": {
|
|
3
|
+
"version": "0.9.1",
|
|
4
|
+
"base_revision": "413824bce4a7adeb74bb3258f94ab9e3fc87dc09",
|
|
5
|
+
"current_revision": "75f3702e77b841f44fc1d1b8e2650bba35329f59\n"
|
|
6
|
+
},
|
|
7
|
+
"uuid": "27f2d3b7-57bd-4eea-bb49-bd718d68077f",
|
|
8
|
+
"klass": "Dataset",
|
|
9
|
+
"layers": {
|
|
10
|
+
"params": {
|
|
11
|
+
"wf": false,
|
|
12
|
+
"key": "params",
|
|
13
|
+
"cols": 3,
|
|
14
|
+
"label": "Parameter",
|
|
15
|
+
"layer": "params",
|
|
16
|
+
"fields": [
|
|
17
|
+
{
|
|
18
|
+
"type": "system-defined",
|
|
19
|
+
"field": "temp",
|
|
20
|
+
"label": "Temperature",
|
|
21
|
+
"value": "18",
|
|
22
|
+
"default": "",
|
|
23
|
+
"position": 1,
|
|
24
|
+
"description": "measurement temperature",
|
|
25
|
+
"value_system": "C",
|
|
26
|
+
"option_layers": "temperature"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"position": 100,
|
|
30
|
+
"condition": ""
|
|
31
|
+
},
|
|
32
|
+
"system": {
|
|
33
|
+
"wf": false,
|
|
34
|
+
"key": "system",
|
|
35
|
+
"cols": 3,
|
|
36
|
+
"label": "Settings",
|
|
37
|
+
"layer": "system",
|
|
38
|
+
"fields": [
|
|
39
|
+
{
|
|
40
|
+
"type": "integer",
|
|
41
|
+
"field": "scan",
|
|
42
|
+
"label": "Number of Scans",
|
|
43
|
+
"value": 2,
|
|
44
|
+
"default": "",
|
|
45
|
+
"position": 1
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"position": 100,
|
|
49
|
+
"condition": ""
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"klass_uuid": "3475e057-60ae-4f7c-9ec1-516b29082d64",
|
|
53
|
+
"select_options": {}
|
|
54
|
+
}
|
|
Binary file
|