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.modern.js
CHANGED
|
@@ -3301,7 +3301,7 @@ var zoom = {
|
|
|
3301
3301
|
|
|
3302
3302
|
var openHelpLink = function openHelpLink() {
|
|
3303
3303
|
var _window$open;
|
|
3304
|
-
return (_window$open = window.open("https://github.com/epam/ketcher/blob/".concat("v2.15.0
|
|
3304
|
+
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();
|
|
3305
3305
|
};
|
|
3306
3306
|
var help = {
|
|
3307
3307
|
help: {
|
|
@@ -8595,12 +8595,12 @@ var implementation$4 = function bind(that) {
|
|
|
8595
8595
|
|
|
8596
8596
|
var functionBind = Function.prototype.bind || implementation$4;
|
|
8597
8597
|
|
|
8598
|
-
var hasOwnProperty$2 = {}.hasOwnProperty;
|
|
8599
8598
|
var call = Function.prototype.call;
|
|
8599
|
+
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
8600
8600
|
|
|
8601
|
-
|
|
8602
|
-
|
|
8603
|
-
|
|
8601
|
+
|
|
8602
|
+
/** @type {(o: {}, p: PropertyKey) => p is keyof o} */
|
|
8603
|
+
var hasown = functionBind.call(call, $hasOwn);
|
|
8604
8604
|
|
|
8605
8605
|
var undefined$1;
|
|
8606
8606
|
|
|
@@ -8845,12 +8845,12 @@ var stringToPath = function stringToPath(string) {
|
|
|
8845
8845
|
var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
|
|
8846
8846
|
var intrinsicName = name;
|
|
8847
8847
|
var alias;
|
|
8848
|
-
if (
|
|
8848
|
+
if (hasown(LEGACY_ALIASES, intrinsicName)) {
|
|
8849
8849
|
alias = LEGACY_ALIASES[intrinsicName];
|
|
8850
8850
|
intrinsicName = '%' + alias[0] + '%';
|
|
8851
8851
|
}
|
|
8852
8852
|
|
|
8853
|
-
if (
|
|
8853
|
+
if (hasown(INTRINSICS, intrinsicName)) {
|
|
8854
8854
|
var value = INTRINSICS[intrinsicName];
|
|
8855
8855
|
if (value === needsEval) {
|
|
8856
8856
|
value = doEval(intrinsicName);
|
|
@@ -8914,7 +8914,7 @@ var getIntrinsic = function GetIntrinsic(name, allowMissing) {
|
|
|
8914
8914
|
intrinsicBaseName += '.' + part;
|
|
8915
8915
|
intrinsicRealName = '%' + intrinsicBaseName + '%';
|
|
8916
8916
|
|
|
8917
|
-
if (
|
|
8917
|
+
if (hasown(INTRINSICS, intrinsicRealName)) {
|
|
8918
8918
|
value = INTRINSICS[intrinsicRealName];
|
|
8919
8919
|
} else if (value != null) {
|
|
8920
8920
|
if (!(part in value)) {
|
|
@@ -8940,7 +8940,7 @@ var getIntrinsic = function GetIntrinsic(name, allowMissing) {
|
|
|
8940
8940
|
value = value[part];
|
|
8941
8941
|
}
|
|
8942
8942
|
} else {
|
|
8943
|
-
isOwn =
|
|
8943
|
+
isOwn = hasown(value, part);
|
|
8944
8944
|
value = value[part];
|
|
8945
8945
|
}
|
|
8946
8946
|
|
|
@@ -31115,8 +31115,8 @@ var KetcherBuilder = function () {
|
|
|
31115
31115
|
initApp(element, appRoot, staticResourcesUrl, {
|
|
31116
31116
|
buttons: buttons || {},
|
|
31117
31117
|
errorHandler: errorHandler || null,
|
|
31118
|
-
version: "2.15.0
|
|
31119
|
-
buildDate: "2023-
|
|
31118
|
+
version: "2.15.0" ,
|
|
31119
|
+
buildDate: "2023-11-06T13:55:38" ,
|
|
31120
31120
|
buildNumber: ''
|
|
31121
31121
|
}, structService, resolve);
|
|
31122
31122
|
});
|