@complat/react-spectra-editor 0.10.15 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/helpers/chem.js +5 -1
- package/package.json +1 -1
package/dist/helpers/chem.js
CHANGED
|
@@ -632,7 +632,11 @@ var extrFeaturesNi = function extrFeaturesNi(jcamp, layout, peakUp, spectra) {
|
|
|
632
632
|
return r != null;
|
|
633
633
|
});
|
|
634
634
|
|
|
635
|
-
|
|
635
|
+
var integration = buildIntegFeature(jcamp, spectra);
|
|
636
|
+
var multiplicity = buildMpyFeature(jcamp);
|
|
637
|
+
var simulation = buildSimFeature(jcamp);
|
|
638
|
+
|
|
639
|
+
return { editPeak: features[0], autoPeak: features[1], integration: integration, multiplicity: multiplicity, simulation: simulation };
|
|
636
640
|
};
|
|
637
641
|
|
|
638
642
|
var extrFeaturesXrd = function extrFeaturesXrd(jcamp, layout, peakUp) {
|