openchemlib 9.15.0 → 9.16.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.d.ts
CHANGED
|
@@ -7025,7 +7025,7 @@ function getExports($wnd) {
|
|
|
7025
7025
|
}
|
|
7026
7026
|
isSmallCustomLabelOnly = false;
|
|
7027
7027
|
isSmallCustomLabel = false;
|
|
7028
|
-
atomStr = this.mMol.getAtomCustomLabel_0(atom);
|
|
7028
|
+
atomStr = (this.mDisplayMode & 65536) != 0 ? null : this.mMol.getAtomCustomLabel_0(atom);
|
|
7029
7029
|
if (jsNotEquals(atomStr, null) && jl.startsWith_Ljava_lang_String__Z__devirtual$(atomStr, "]")) {
|
|
7030
7030
|
isSmallCustomLabelOnly = jsEquals(isoStr, null);
|
|
7031
7031
|
isSmallCustomLabel = true;
|
|
@@ -8068,6 +8068,7 @@ function getExports($wnd) {
|
|
|
8068
8068
|
carc2.cDModeBondNo = 4;
|
|
8069
8069
|
carc2.cDModeDrawBondsInGray = 16384;
|
|
8070
8070
|
carc2.cDModeHiliteAllQueryFeatures = 8;
|
|
8071
|
+
carc2.cDModeNoAtomCustomLabels = 65536;
|
|
8071
8072
|
carc2.cDModeNoCarbonLabelWithCustomLabel = 32768;
|
|
8072
8073
|
carc2.cDModeNoColorOnESRAndCIP = 4096;
|
|
8073
8074
|
carc2.cDModeNoImplicitAtomLabelColors = 1024;
|
|
@@ -47126,7 +47127,7 @@ function getExports($wnd) {
|
|
|
47126
47127
|
this.setCurrentTool(18);
|
|
47127
47128
|
else if (key == 32)
|
|
47128
47129
|
this.setCurrentTool(2);
|
|
47129
|
-
else if (key ==
|
|
47130
|
+
else if (key == 48)
|
|
47130
47131
|
this.setCurrentTool(4);
|
|
47131
47132
|
else if (key == 116)
|
|
47132
47133
|
this.setCurrentTool(21);
|
|
@@ -48953,7 +48954,7 @@ function getExports($wnd) {
|
|
|
48953
48954
|
if (degenerated) {
|
|
48954
48955
|
new carcc3.CoordinateInventor_0(0).invent(mol);
|
|
48955
48956
|
}
|
|
48956
|
-
mol.ensureHelperArrays_0(
|
|
48957
|
+
mol.ensureHelperArrays_0(95);
|
|
48957
48958
|
viewMode = cargju.getDepictorViewMode(options);
|
|
48958
48959
|
displayMode = cargju.getDepictorDisplayMode(options);
|
|
48959
48960
|
d = new carc2.SVGDepictor(mol, displayMode, id_0);
|
|
@@ -51447,6 +51448,8 @@ function getExports($wnd) {
|
|
|
51447
51448
|
displayMode |= 128;
|
|
51448
51449
|
if (options.noCarbonLabelWithCustomLabel)
|
|
51449
51450
|
displayMode |= 32768;
|
|
51451
|
+
if (options.noAtomCustomLabels)
|
|
51452
|
+
displayMode |= 65536;
|
|
51450
51453
|
if (options.showSymmetryAny)
|
|
51451
51454
|
displayMode |= 768;
|
|
51452
51455
|
if (options.showSymmetrySimple)
|
|
@@ -71390,7 +71393,7 @@ function getExports($wnd) {
|
|
|
71390
71393
|
$sendStats("moduleStartup", "end");
|
|
71391
71394
|
$gwt && $gwt.permProps && __gwtModuleFunction.__moduleStartupDone($gwt.permProps);
|
|
71392
71395
|
const toReturn = $wnd["OCL"];
|
|
71393
|
-
toReturn.version = "9.
|
|
71396
|
+
toReturn.version = "9.16.0";
|
|
71394
71397
|
return toReturn;
|
|
71395
71398
|
}
|
|
71396
71399
|
var isBrowserWindow = typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
@@ -71534,8 +71537,8 @@ export {
|
|
|
71534
71537
|
};
|
|
71535
71538
|
/**
|
|
71536
71539
|
* openchemlib - Manipulate molecules
|
|
71537
|
-
* @version v9.
|
|
71538
|
-
* @date 2025-10-
|
|
71540
|
+
* @version v9.16.0
|
|
71541
|
+
* @date 2025-10-31T16:00:10.912Z
|
|
71539
71542
|
* @link https://github.com/cheminfo/openchemlib-js
|
|
71540
71543
|
* @license BSD-3-Clause
|
|
71541
71544
|
*/
|