ketcher-react 2.15.0-rc.6 → 2.15.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/index.js +11 -11
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +11 -11
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3365,7 +3365,7 @@ var zoom = {
|
|
|
3365
3365
|
|
|
3366
3366
|
var openHelpLink = function openHelpLink() {
|
|
3367
3367
|
var _window$open;
|
|
3368
|
-
return (_window$open = window.open("https://github.com/epam/ketcher/blob/".concat("v2.15.0
|
|
3368
|
+
return (_window$open = window.open("https://github.com/epam/ketcher/blob/".concat("v2.15.0\n", "/documentation/help.md#ketcher-overview"))) === null || _window$open === void 0 ? void 0 : _window$open.focus();
|
|
3369
3369
|
};
|
|
3370
3370
|
var help = {
|
|
3371
3371
|
help: {
|
|
@@ -8659,12 +8659,12 @@ var implementation$4 = function bind(that) {
|
|
|
8659
8659
|
|
|
8660
8660
|
var functionBind = Function.prototype.bind || implementation$4;
|
|
8661
8661
|
|
|
8662
|
-
var hasOwnProperty$2 = {}.hasOwnProperty;
|
|
8663
8662
|
var call = Function.prototype.call;
|
|
8663
|
+
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
8664
8664
|
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
|
|
8665
|
+
|
|
8666
|
+
/** @type {(o: {}, p: PropertyKey) => p is keyof o} */
|
|
8667
|
+
var hasown = functionBind.call(call, $hasOwn);
|
|
8668
8668
|
|
|
8669
8669
|
var undefined$1;
|
|
8670
8670
|
|
|
@@ -8909,12 +8909,12 @@ var stringToPath = function stringToPath(string) {
|
|
|
8909
8909
|
var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
|
|
8910
8910
|
var intrinsicName = name;
|
|
8911
8911
|
var alias;
|
|
8912
|
-
if (
|
|
8912
|
+
if (hasown(LEGACY_ALIASES, intrinsicName)) {
|
|
8913
8913
|
alias = LEGACY_ALIASES[intrinsicName];
|
|
8914
8914
|
intrinsicName = '%' + alias[0] + '%';
|
|
8915
8915
|
}
|
|
8916
8916
|
|
|
8917
|
-
if (
|
|
8917
|
+
if (hasown(INTRINSICS, intrinsicName)) {
|
|
8918
8918
|
var value = INTRINSICS[intrinsicName];
|
|
8919
8919
|
if (value === needsEval) {
|
|
8920
8920
|
value = doEval(intrinsicName);
|
|
@@ -8978,7 +8978,7 @@ var getIntrinsic = function GetIntrinsic(name, allowMissing) {
|
|
|
8978
8978
|
intrinsicBaseName += '.' + part;
|
|
8979
8979
|
intrinsicRealName = '%' + intrinsicBaseName + '%';
|
|
8980
8980
|
|
|
8981
|
-
if (
|
|
8981
|
+
if (hasown(INTRINSICS, intrinsicRealName)) {
|
|
8982
8982
|
value = INTRINSICS[intrinsicRealName];
|
|
8983
8983
|
} else if (value != null) {
|
|
8984
8984
|
if (!(part in value)) {
|
|
@@ -9004,7 +9004,7 @@ var getIntrinsic = function GetIntrinsic(name, allowMissing) {
|
|
|
9004
9004
|
value = value[part];
|
|
9005
9005
|
}
|
|
9006
9006
|
} else {
|
|
9007
|
-
isOwn =
|
|
9007
|
+
isOwn = hasown(value, part);
|
|
9008
9008
|
value = value[part];
|
|
9009
9009
|
}
|
|
9010
9010
|
|
|
@@ -31179,8 +31179,8 @@ var KetcherBuilder = function () {
|
|
|
31179
31179
|
initApp(element, appRoot, staticResourcesUrl, {
|
|
31180
31180
|
buttons: buttons || {},
|
|
31181
31181
|
errorHandler: errorHandler || null,
|
|
31182
|
-
version: "2.15.0
|
|
31183
|
-
buildDate: "2023-
|
|
31182
|
+
version: "2.15.0" ,
|
|
31183
|
+
buildDate: "2023-11-06T13:55:38" ,
|
|
31184
31184
|
buildNumber: ''
|
|
31185
31185
|
}, structService, resolve);
|
|
31186
31186
|
});
|