@complat/react-spectra-editor 0.11.2 → 0.11.4-beta.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/app.js +7 -3
- package/dist/components/d3_line/line_focus_bk.js +860 -0
- package/dist/components/d3_multi/index_bk.js +240 -0
- package/dist/components/d3_multi/multi_focus_bk.js +550 -0
- package/dist/components/multi_jcamps_viewer.js +5 -2
- package/dist/components/panel/compare_bk.js +370 -0
- package/dist/components/panel/cyclic_voltamery_data.js +53 -5
- package/dist/components/panel/index.js +5 -3
- package/dist/components/panel/info_bk.js +341 -0
- package/dist/components/panel/multiplicity_bk.js +405 -0
- package/dist/helpers/chem_bk.js +779 -0
- package/dist/helpers/converter_bk.js +106 -0
- package/dist/helpers/format_bk.js +462 -0
- package/dist/index.js +2 -1
- package/dist/index_bk.js +760 -0
- package/dist/layer_content_bk.js +128 -0
- package/dist/layer_init.js +6 -2
- package/dist/layer_prism_bk.js +186 -0
- package/dist/reducers/reducer_edit_peak_bk.js +111 -0
- package/dist/reducers/reducer_integration_bk.js +137 -0
- package/dist/reducers/reducer_jcamp_bk.js +74 -0
- package/dist/reducers/reducer_multiplicity_bk.js +131 -0
- package/dist/reducers/reducer_shift_bk.js +99 -0
- package/dist/sagas/saga_edit_peak_bk.js +84 -0
- package/dist/sagas/saga_multiplicity_bk.js +387 -0
- package/dist/sagas/saga_ui_bk.js +488 -0
- package/package.json +3 -2
package/dist/app.js
CHANGED
|
@@ -75,7 +75,8 @@ var SpectraEditor = function SpectraEditor(_ref) {
|
|
|
75
75
|
onDescriptionChanged = _ref.onDescriptionChanged,
|
|
76
76
|
multiEntities = _ref.multiEntities,
|
|
77
77
|
multiMolSvgs = _ref.multiMolSvgs,
|
|
78
|
-
entityFileNames = _ref.entityFileNames
|
|
78
|
+
entityFileNames = _ref.entityFileNames,
|
|
79
|
+
userManualLink = _ref.userManualLink;
|
|
79
80
|
return _react2.default.createElement(
|
|
80
81
|
_reactRedux.Provider,
|
|
81
82
|
{ store: store },
|
|
@@ -83,6 +84,7 @@ var SpectraEditor = function SpectraEditor(_ref) {
|
|
|
83
84
|
entity: entity,
|
|
84
85
|
multiEntities: multiEntities,
|
|
85
86
|
entityFileNames: entityFileNames,
|
|
87
|
+
userManualLink: userManualLink,
|
|
86
88
|
others: others,
|
|
87
89
|
cLabel: cLabel,
|
|
88
90
|
xLabel: xLabel,
|
|
@@ -114,7 +116,8 @@ SpectraEditor.propTypes = {
|
|
|
114
116
|
multiMolSvgs: _propTypes2.default.array,
|
|
115
117
|
editorOnly: _propTypes2.default.bool,
|
|
116
118
|
canChangeDescription: _propTypes2.default.bool,
|
|
117
|
-
onDescriptionChanged: _propTypes2.default.func
|
|
119
|
+
onDescriptionChanged: _propTypes2.default.func,
|
|
120
|
+
userManualLink: _propTypes2.default.object
|
|
118
121
|
};
|
|
119
122
|
|
|
120
123
|
SpectraEditor.defaultProps = {
|
|
@@ -130,7 +133,8 @@ SpectraEditor.defaultProps = {
|
|
|
130
133
|
molSvg: '',
|
|
131
134
|
multiMolSvgs: [],
|
|
132
135
|
editorOnly: false,
|
|
133
|
-
canChangeDescription: false
|
|
136
|
+
canChangeDescription: false,
|
|
137
|
+
userManualLink: {}
|
|
134
138
|
};
|
|
135
139
|
|
|
136
140
|
exports.SpectraEditor = SpectraEditor;
|