openchemlib 9.12.1 → 9.13.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/openchemlib.debug.js +10 -3
- package/dist/openchemlib.js +10 -10
- package/package.json +1 -1
|
@@ -1397,6 +1397,13 @@ function extendFromMolfile(Molecule2) {
|
|
|
1397
1397
|
}
|
|
1398
1398
|
}
|
|
1399
1399
|
}
|
|
1400
|
+
if (line.startsWith("M ZZC")) {
|
|
1401
|
+
const atom = Number(line.slice(7, 10).trim());
|
|
1402
|
+
const label = line.slice(10).trim();
|
|
1403
|
+
if (atom && label) {
|
|
1404
|
+
molecule.setAtomCustomLabel(atom - 1, label);
|
|
1405
|
+
}
|
|
1406
|
+
}
|
|
1400
1407
|
}
|
|
1401
1408
|
changeMolfileCustomLabelPosition(molecule, customLabelPosition);
|
|
1402
1409
|
return molecule;
|
|
@@ -71252,7 +71259,7 @@ function getExports($wnd) {
|
|
|
71252
71259
|
$sendStats("moduleStartup", "end");
|
|
71253
71260
|
$gwt && $gwt.permProps && __gwtModuleFunction.__moduleStartupDone($gwt.permProps);
|
|
71254
71261
|
const toReturn = $wnd["OCL"];
|
|
71255
|
-
toReturn.version = "9.
|
|
71262
|
+
toReturn.version = "9.13.0";
|
|
71256
71263
|
return toReturn;
|
|
71257
71264
|
}
|
|
71258
71265
|
var isBrowserWindow = typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
@@ -71396,8 +71403,8 @@ export {
|
|
|
71396
71403
|
};
|
|
71397
71404
|
/**
|
|
71398
71405
|
* openchemlib - Manipulate molecules
|
|
71399
|
-
* @version v9.
|
|
71400
|
-
* @date 2025-10-
|
|
71406
|
+
* @version v9.13.0
|
|
71407
|
+
* @date 2025-10-28T16:31:52.366Z
|
|
71401
71408
|
* @link https://github.com/cheminfo/openchemlib-js
|
|
71402
71409
|
* @license BSD-3-Clause
|
|
71403
71410
|
*/
|