@pie-element/complex-rubric 3.4.2-next.54 → 3.4.2-next.56
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/controller/package.json +1 -1
- package/module/configure.js +300 -203
- package/module/element.js +311 -214
- package/module/manifest.json +1 -1
- package/module/print.js +311 -214
- package/package.json +4 -4
package/module/print.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import {_dll_react, _dll_prop_types, _dll_react_dom, _dll_classnames, _dll_debug, _dll_pie_lib__pie_toolbox_math_rendering, _dll_lodash, _dll_react_dom_server, _dll_pie_framework__mathquill} from "../../../@pie-lib/pie-toolbox-math-rendering-module@3.3.0/module/index.js";
|
|
2
|
-
import {_dll_pie_lib__pie_toolbox_render_ui} from "../../../@pie-lib/pie-toolbox-module@5.
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_render_ui} from "../../../@pie-lib/pie-toolbox-module@5.10.0/module/index.js";
|
|
3
3
|
function _mergeNamespaces(n, m) {
|
|
4
4
|
m.forEach(function (e) {
|
|
5
5
|
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
@@ -16864,7 +16864,7 @@ function quoteString(value) {
|
|
|
16864
16864
|
function has$4(collection, key) {
|
|
16865
16865
|
return isImmutable(collection) ? collection.has(key) : isDataStructure(collection) && hasOwnProperty$3.call(collection, key);
|
|
16866
16866
|
}
|
|
16867
|
-
function get$
|
|
16867
|
+
function get$2(collection, key, notSetValue) {
|
|
16868
16868
|
return isImmutable(collection) ? collection.get(key, notSetValue) : !has$4(collection, key) ? notSetValue : typeof collection.get === 'function' ? collection.get(key) : collection[key];
|
|
16869
16869
|
}
|
|
16870
16870
|
function shallowCopy(from) {
|
|
@@ -16936,7 +16936,7 @@ function updateInDeeply(inImmutable, existing, keyPath, i, notSetValue, updater)
|
|
|
16936
16936
|
throw new TypeError('Cannot update within non-data-structure value in path [' + keyPath.slice(0, i).map(quoteString) + ']: ' + existing);
|
|
16937
16937
|
}
|
|
16938
16938
|
var key = keyPath[i];
|
|
16939
|
-
var nextExisting = wasNotSet ? NOT_SET : get$
|
|
16939
|
+
var nextExisting = wasNotSet ? NOT_SET : get$2(existing, key, NOT_SET);
|
|
16940
16940
|
var nextUpdated = updateInDeeply(nextExisting === NOT_SET ? inImmutable : isImmutable(nextExisting), nextExisting, keyPath, i + 1, notSetValue, updater);
|
|
16941
16941
|
return nextUpdated === nextExisting ? existing : nextUpdated === NOT_SET ? remove(existing, key) : set$h(wasNotSet ? inImmutable ? emptyMap() : {} : existing, key, nextUpdated);
|
|
16942
16942
|
}
|
|
@@ -18889,7 +18889,7 @@ function getIn$1(collection, searchKeyPath, notSetValue) {
|
|
|
18889
18889
|
var keyPath = coerceKeyPath(searchKeyPath);
|
|
18890
18890
|
var i = 0;
|
|
18891
18891
|
while (i !== keyPath.length) {
|
|
18892
|
-
collection = get$
|
|
18892
|
+
collection = get$2(collection, keyPath[i++], NOT_SET);
|
|
18893
18893
|
if (collection === NOT_SET) {
|
|
18894
18894
|
return notSetValue;
|
|
18895
18895
|
}
|
|
@@ -19765,7 +19765,7 @@ var Immutable$1 = {
|
|
|
19765
19765
|
isSet: isSet,
|
|
19766
19766
|
isOrderedSet: isOrderedSet,
|
|
19767
19767
|
isRecord: isRecord,
|
|
19768
|
-
get: get$
|
|
19768
|
+
get: get$2,
|
|
19769
19769
|
getIn: getIn$1,
|
|
19770
19770
|
has: has$4,
|
|
19771
19771
|
hasIn: hasIn$1,
|
|
@@ -19797,7 +19797,7 @@ var immutable_es = Object.freeze({
|
|
|
19797
19797
|
Set: Set$1,
|
|
19798
19798
|
Stack: Stack$2,
|
|
19799
19799
|
fromJS: fromJS,
|
|
19800
|
-
get: get$
|
|
19800
|
+
get: get$2,
|
|
19801
19801
|
getIn: getIn$1,
|
|
19802
19802
|
has: has$4,
|
|
19803
19803
|
hasIn: hasIn$1,
|
|
@@ -31391,7 +31391,7 @@ var slateReact_es = Object.freeze({
|
|
|
31391
31391
|
BeforePlugin: BeforePlugin
|
|
31392
31392
|
});
|
|
31393
31393
|
var require$$14$5 = getAugmentedNamespace(slateReact_es);
|
|
31394
|
-
var require$$15$
|
|
31394
|
+
var require$$15$5 = getAugmentedNamespace(slatePropTypes_es);
|
|
31395
31395
|
var require$$16$5 = getAugmentedNamespace(slate_es);
|
|
31396
31396
|
var require$$17$3 = getAugmentedNamespace(slatePlainSerializer_es);
|
|
31397
31397
|
var renderUi = {};
|
|
@@ -59559,7 +59559,7 @@ const require$$12$n = _dll_prop_types;
|
|
|
59559
59559
|
getDefaultExportFromCjs(feedback);
|
|
59560
59560
|
const require$$9$J = _dll_react;
|
|
59561
59561
|
const require$$10$F = _dll_prop_types;
|
|
59562
|
-
const require$$15$
|
|
59562
|
+
const require$$15$4 = _dll_debug;
|
|
59563
59563
|
var _interopRequireDefault$2F = interopRequireDefault.exports;
|
|
59564
59564
|
var _typeof$o = _typeof$s.exports;
|
|
59565
59565
|
Object.defineProperty(responseIndicators, "__esModule", {
|
|
@@ -59579,7 +59579,7 @@ var icons$5 = _interopRequireWildcard$6(icons$6);
|
|
|
59579
59579
|
var _Popover = _interopRequireDefault$2F(Popover$2);
|
|
59580
59580
|
var _styles$7 = styles$1K;
|
|
59581
59581
|
var _feedback = _interopRequireDefault$2F(feedback);
|
|
59582
|
-
var _debug$3 = _interopRequireDefault$2F(require$$15$
|
|
59582
|
+
var _debug$3 = _interopRequireDefault$2F(require$$15$4);
|
|
59583
59583
|
function _getRequireWildcardCache$3(nodeInterop) {
|
|
59584
59584
|
if (typeof WeakMap !== "function") return null;
|
|
59585
59585
|
var cacheBabelInterop = new WeakMap();
|
|
@@ -59737,6 +59737,45 @@ responseIndicators.NothingSubmitted = NothingSubmitted;
|
|
|
59737
59737
|
var collapsible = {};
|
|
59738
59738
|
var mathRendering = {};
|
|
59739
59739
|
var renderMath = {};
|
|
59740
|
+
var get$1 = {
|
|
59741
|
+
exports: {}
|
|
59742
|
+
};
|
|
59743
|
+
var superPropBase = {
|
|
59744
|
+
exports: {}
|
|
59745
|
+
};
|
|
59746
|
+
(function (module) {
|
|
59747
|
+
var getPrototypeOf = getPrototypeOf$1.exports;
|
|
59748
|
+
function _superPropBase(object, property) {
|
|
59749
|
+
while (!Object.prototype.hasOwnProperty.call(object, property)) {
|
|
59750
|
+
object = getPrototypeOf(object);
|
|
59751
|
+
if (object === null) break;
|
|
59752
|
+
}
|
|
59753
|
+
return object;
|
|
59754
|
+
}
|
|
59755
|
+
(module.exports = _superPropBase, module.exports.__esModule = true, module.exports["default"] = module.exports);
|
|
59756
|
+
})(superPropBase);
|
|
59757
|
+
getDefaultExportFromCjs(superPropBase.exports);
|
|
59758
|
+
(function (module) {
|
|
59759
|
+
var superPropBase$1 = superPropBase.exports;
|
|
59760
|
+
function _get() {
|
|
59761
|
+
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
59762
|
+
(module.exports = _get = Reflect.get, module.exports.__esModule = true, module.exports["default"] = module.exports);
|
|
59763
|
+
} else {
|
|
59764
|
+
(module.exports = _get = function _get(target, property, receiver) {
|
|
59765
|
+
var base = superPropBase$1(target, property);
|
|
59766
|
+
if (!base) return;
|
|
59767
|
+
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
59768
|
+
if (desc.get) {
|
|
59769
|
+
return desc.get.call(arguments.length < 3 ? target : receiver);
|
|
59770
|
+
}
|
|
59771
|
+
return desc.value;
|
|
59772
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports);
|
|
59773
|
+
}
|
|
59774
|
+
return _get.apply(this, arguments);
|
|
59775
|
+
}
|
|
59776
|
+
(module.exports = _get, module.exports.__esModule = true, module.exports["default"] = module.exports);
|
|
59777
|
+
})(get$1);
|
|
59778
|
+
getDefaultExportFromCjs(get$1.exports);
|
|
59740
59779
|
var mathjax = {};
|
|
59741
59780
|
var version$2 = {};
|
|
59742
59781
|
Object.defineProperty(version$2, "__esModule", {
|
|
@@ -89336,10 +89375,198 @@ function MenuHandler(handler) {
|
|
|
89336
89375
|
return handler;
|
|
89337
89376
|
}
|
|
89338
89377
|
MenuHandler$1.MenuHandler = MenuHandler;
|
|
89378
|
+
var FindMathML$1 = {};
|
|
89379
|
+
var FindMath = {};
|
|
89380
|
+
Object.defineProperty(FindMath, "__esModule", {
|
|
89381
|
+
value: true
|
|
89382
|
+
});
|
|
89383
|
+
FindMath.AbstractFindMath = void 0;
|
|
89384
|
+
var Options_js_1$d = Options$2;
|
|
89385
|
+
var AbstractFindMath = (function () {
|
|
89386
|
+
function AbstractFindMath(options) {
|
|
89387
|
+
var CLASS = this.constructor;
|
|
89388
|
+
this.options = (0, Options_js_1$d.userOptions)((0, Options_js_1$d.defaultOptions)({}, CLASS.OPTIONS), options);
|
|
89389
|
+
}
|
|
89390
|
+
AbstractFindMath.OPTIONS = {};
|
|
89391
|
+
return AbstractFindMath;
|
|
89392
|
+
})();
|
|
89393
|
+
FindMath.AbstractFindMath = AbstractFindMath;
|
|
89394
|
+
var __extends$1m = commonjsGlobal && commonjsGlobal.__extends || (function () {
|
|
89395
|
+
var extendStatics = function (d, b) {
|
|
89396
|
+
extendStatics = Object.setPrototypeOf || ({
|
|
89397
|
+
__proto__: []
|
|
89398
|
+
}) instanceof Array && (function (d, b) {
|
|
89399
|
+
d.__proto__ = b;
|
|
89400
|
+
}) || (function (d, b) {
|
|
89401
|
+
for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
|
|
89402
|
+
});
|
|
89403
|
+
return extendStatics(d, b);
|
|
89404
|
+
};
|
|
89405
|
+
return function (d, b) {
|
|
89406
|
+
if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
89407
|
+
extendStatics(d, b);
|
|
89408
|
+
function __() {
|
|
89409
|
+
this.constructor = d;
|
|
89410
|
+
}
|
|
89411
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
89412
|
+
};
|
|
89413
|
+
})();
|
|
89414
|
+
var __values$G = commonjsGlobal && commonjsGlobal.__values || (function (o) {
|
|
89415
|
+
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
89416
|
+
if (m) return m.call(o);
|
|
89417
|
+
if (o && typeof o.length === "number") return {
|
|
89418
|
+
next: function () {
|
|
89419
|
+
if (o && i >= o.length) o = void 0;
|
|
89420
|
+
return {
|
|
89421
|
+
value: o && o[i++],
|
|
89422
|
+
done: !o
|
|
89423
|
+
};
|
|
89424
|
+
}
|
|
89425
|
+
};
|
|
89426
|
+
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
89427
|
+
});
|
|
89428
|
+
Object.defineProperty(FindMathML$1, "__esModule", {
|
|
89429
|
+
value: true
|
|
89430
|
+
});
|
|
89431
|
+
FindMathML$1.FindMathML = void 0;
|
|
89432
|
+
var FindMath_js_1$1 = FindMath;
|
|
89433
|
+
var NAMESPACE = 'http://www.w3.org/1998/Math/MathML';
|
|
89434
|
+
var FindMathML = (function (_super) {
|
|
89435
|
+
__extends$1m(FindMathML, _super);
|
|
89436
|
+
function FindMathML() {
|
|
89437
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
89438
|
+
}
|
|
89439
|
+
FindMathML.prototype.findMath = function (node) {
|
|
89440
|
+
var set = new Set();
|
|
89441
|
+
this.findMathNodes(node, set);
|
|
89442
|
+
this.findMathPrefixed(node, set);
|
|
89443
|
+
var html = this.adaptor.root(this.adaptor.document);
|
|
89444
|
+
if (this.adaptor.kind(html) === 'html' && set.size === 0) {
|
|
89445
|
+
this.findMathNS(node, set);
|
|
89446
|
+
}
|
|
89447
|
+
return this.processMath(set);
|
|
89448
|
+
};
|
|
89449
|
+
FindMathML.prototype.findMathNodes = function (node, set) {
|
|
89450
|
+
var e_1, _a;
|
|
89451
|
+
try {
|
|
89452
|
+
for (var _b = __values$G(this.adaptor.tags(node, 'math')), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
89453
|
+
var math = _c.value;
|
|
89454
|
+
set.add(math);
|
|
89455
|
+
}
|
|
89456
|
+
} catch (e_1_1) {
|
|
89457
|
+
e_1 = {
|
|
89458
|
+
error: e_1_1
|
|
89459
|
+
};
|
|
89460
|
+
} finally {
|
|
89461
|
+
try {
|
|
89462
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
89463
|
+
} finally {
|
|
89464
|
+
if (e_1) throw e_1.error;
|
|
89465
|
+
}
|
|
89466
|
+
}
|
|
89467
|
+
};
|
|
89468
|
+
FindMathML.prototype.findMathPrefixed = function (node, set) {
|
|
89469
|
+
var e_2, _a, e_3, _b;
|
|
89470
|
+
var html = this.adaptor.root(this.adaptor.document);
|
|
89471
|
+
try {
|
|
89472
|
+
for (var _c = __values$G(this.adaptor.allAttributes(html)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
89473
|
+
var attr = _d.value;
|
|
89474
|
+
if (attr.name.substr(0, 6) === 'xmlns:' && attr.value === NAMESPACE) {
|
|
89475
|
+
var prefix = attr.name.substr(6);
|
|
89476
|
+
try {
|
|
89477
|
+
for (var _e = (e_3 = void 0, __values$G(this.adaptor.tags(node, prefix + ':math'))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
89478
|
+
var math = _f.value;
|
|
89479
|
+
set.add(math);
|
|
89480
|
+
}
|
|
89481
|
+
} catch (e_3_1) {
|
|
89482
|
+
e_3 = {
|
|
89483
|
+
error: e_3_1
|
|
89484
|
+
};
|
|
89485
|
+
} finally {
|
|
89486
|
+
try {
|
|
89487
|
+
if (_f && !_f.done && (_b = _e.return)) _b.call(_e);
|
|
89488
|
+
} finally {
|
|
89489
|
+
if (e_3) throw e_3.error;
|
|
89490
|
+
}
|
|
89491
|
+
}
|
|
89492
|
+
}
|
|
89493
|
+
}
|
|
89494
|
+
} catch (e_2_1) {
|
|
89495
|
+
e_2 = {
|
|
89496
|
+
error: e_2_1
|
|
89497
|
+
};
|
|
89498
|
+
} finally {
|
|
89499
|
+
try {
|
|
89500
|
+
if (_d && !_d.done && (_a = _c.return)) _a.call(_c);
|
|
89501
|
+
} finally {
|
|
89502
|
+
if (e_2) throw e_2.error;
|
|
89503
|
+
}
|
|
89504
|
+
}
|
|
89505
|
+
};
|
|
89506
|
+
FindMathML.prototype.findMathNS = function (node, set) {
|
|
89507
|
+
var e_4, _a;
|
|
89508
|
+
try {
|
|
89509
|
+
for (var _b = __values$G(this.adaptor.tags(node, 'math', NAMESPACE)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
89510
|
+
var math = _c.value;
|
|
89511
|
+
set.add(math);
|
|
89512
|
+
}
|
|
89513
|
+
} catch (e_4_1) {
|
|
89514
|
+
e_4 = {
|
|
89515
|
+
error: e_4_1
|
|
89516
|
+
};
|
|
89517
|
+
} finally {
|
|
89518
|
+
try {
|
|
89519
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
89520
|
+
} finally {
|
|
89521
|
+
if (e_4) throw e_4.error;
|
|
89522
|
+
}
|
|
89523
|
+
}
|
|
89524
|
+
};
|
|
89525
|
+
FindMathML.prototype.processMath = function (set) {
|
|
89526
|
+
var e_5, _a;
|
|
89527
|
+
var math = [];
|
|
89528
|
+
try {
|
|
89529
|
+
for (var _b = __values$G(Array.from(set)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
89530
|
+
var mml = _c.value;
|
|
89531
|
+
var display = this.adaptor.getAttribute(mml, 'display') === 'block' || this.adaptor.getAttribute(mml, 'mode') === 'display';
|
|
89532
|
+
var start = {
|
|
89533
|
+
node: mml,
|
|
89534
|
+
n: 0,
|
|
89535
|
+
delim: ''
|
|
89536
|
+
};
|
|
89537
|
+
var end = {
|
|
89538
|
+
node: mml,
|
|
89539
|
+
n: 0,
|
|
89540
|
+
delim: ''
|
|
89541
|
+
};
|
|
89542
|
+
math.push({
|
|
89543
|
+
math: this.adaptor.outerHTML(mml),
|
|
89544
|
+
start: start,
|
|
89545
|
+
end: end,
|
|
89546
|
+
display: display
|
|
89547
|
+
});
|
|
89548
|
+
}
|
|
89549
|
+
} catch (e_5_1) {
|
|
89550
|
+
e_5 = {
|
|
89551
|
+
error: e_5_1
|
|
89552
|
+
};
|
|
89553
|
+
} finally {
|
|
89554
|
+
try {
|
|
89555
|
+
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
89556
|
+
} finally {
|
|
89557
|
+
if (e_5) throw e_5.error;
|
|
89558
|
+
}
|
|
89559
|
+
}
|
|
89560
|
+
return math;
|
|
89561
|
+
};
|
|
89562
|
+
FindMathML.OPTIONS = {};
|
|
89563
|
+
return FindMathML;
|
|
89564
|
+
})(FindMath_js_1$1.AbstractFindMath);
|
|
89565
|
+
FindMathML$1.FindMathML = FindMathML;
|
|
89339
89566
|
var mathml = {};
|
|
89340
89567
|
var InputJax = {};
|
|
89341
89568
|
var FunctionList$1 = {};
|
|
89342
|
-
var __extends$
|
|
89569
|
+
var __extends$1l = commonjsGlobal && commonjsGlobal.__extends || (function () {
|
|
89343
89570
|
var extendStatics = function (d, b) {
|
|
89344
89571
|
extendStatics = Object.setPrototypeOf || ({
|
|
89345
89572
|
__proto__: []
|
|
@@ -89359,7 +89586,7 @@ var __extends$1m = commonjsGlobal && commonjsGlobal.__extends || (function () {
|
|
|
89359
89586
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
89360
89587
|
};
|
|
89361
89588
|
})();
|
|
89362
|
-
var __values$
|
|
89589
|
+
var __values$F = commonjsGlobal && commonjsGlobal.__values || (function (o) {
|
|
89363
89590
|
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
89364
89591
|
if (m) return m.call(o);
|
|
89365
89592
|
if (o && typeof o.length === "number") return {
|
|
@@ -89407,7 +89634,7 @@ Object.defineProperty(FunctionList$1, "__esModule", {
|
|
|
89407
89634
|
FunctionList$1.FunctionList = void 0;
|
|
89408
89635
|
var PrioritizedList_js_1 = PrioritizedList$1;
|
|
89409
89636
|
var FunctionList = (function (_super) {
|
|
89410
|
-
__extends$
|
|
89637
|
+
__extends$1l(FunctionList, _super);
|
|
89411
89638
|
function FunctionList() {
|
|
89412
89639
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
89413
89640
|
}
|
|
@@ -89418,7 +89645,7 @@ var FunctionList = (function (_super) {
|
|
|
89418
89645
|
data[_i] = arguments[_i];
|
|
89419
89646
|
}
|
|
89420
89647
|
try {
|
|
89421
|
-
for (var _b = __values$
|
|
89648
|
+
for (var _b = __values$F(this), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
89422
89649
|
var item = _c.value;
|
|
89423
89650
|
var result = item.item.apply(item, __spreadArray$s([], __read$P(data), false));
|
|
89424
89651
|
if (result === false) {
|
|
@@ -89472,7 +89699,7 @@ Object.defineProperty(InputJax, "__esModule", {
|
|
|
89472
89699
|
value: true
|
|
89473
89700
|
});
|
|
89474
89701
|
InputJax.AbstractInputJax = void 0;
|
|
89475
|
-
var Options_js_1$
|
|
89702
|
+
var Options_js_1$c = Options$2;
|
|
89476
89703
|
var FunctionList_js_1$2 = FunctionList$1;
|
|
89477
89704
|
var AbstractInputJax = (function () {
|
|
89478
89705
|
function AbstractInputJax(options) {
|
|
@@ -89482,7 +89709,7 @@ var AbstractInputJax = (function () {
|
|
|
89482
89709
|
this.adaptor = null;
|
|
89483
89710
|
this.mmlFactory = null;
|
|
89484
89711
|
var CLASS = this.constructor;
|
|
89485
|
-
this.options = (0, Options_js_1$
|
|
89712
|
+
this.options = (0, Options_js_1$c.userOptions)((0, Options_js_1$c.defaultOptions)({}, CLASS.OPTIONS), options);
|
|
89486
89713
|
this.preFilters = new FunctionList_js_1$2.FunctionList();
|
|
89487
89714
|
this.postFilters = new FunctionList_js_1$2.FunctionList();
|
|
89488
89715
|
}
|
|
@@ -89530,194 +89757,6 @@ var AbstractInputJax = (function () {
|
|
|
89530
89757
|
return AbstractInputJax;
|
|
89531
89758
|
})();
|
|
89532
89759
|
InputJax.AbstractInputJax = AbstractInputJax;
|
|
89533
|
-
var FindMathML$1 = {};
|
|
89534
|
-
var FindMath = {};
|
|
89535
|
-
Object.defineProperty(FindMath, "__esModule", {
|
|
89536
|
-
value: true
|
|
89537
|
-
});
|
|
89538
|
-
FindMath.AbstractFindMath = void 0;
|
|
89539
|
-
var Options_js_1$c = Options$2;
|
|
89540
|
-
var AbstractFindMath = (function () {
|
|
89541
|
-
function AbstractFindMath(options) {
|
|
89542
|
-
var CLASS = this.constructor;
|
|
89543
|
-
this.options = (0, Options_js_1$c.userOptions)((0, Options_js_1$c.defaultOptions)({}, CLASS.OPTIONS), options);
|
|
89544
|
-
}
|
|
89545
|
-
AbstractFindMath.OPTIONS = {};
|
|
89546
|
-
return AbstractFindMath;
|
|
89547
|
-
})();
|
|
89548
|
-
FindMath.AbstractFindMath = AbstractFindMath;
|
|
89549
|
-
var __extends$1l = commonjsGlobal && commonjsGlobal.__extends || (function () {
|
|
89550
|
-
var extendStatics = function (d, b) {
|
|
89551
|
-
extendStatics = Object.setPrototypeOf || ({
|
|
89552
|
-
__proto__: []
|
|
89553
|
-
}) instanceof Array && (function (d, b) {
|
|
89554
|
-
d.__proto__ = b;
|
|
89555
|
-
}) || (function (d, b) {
|
|
89556
|
-
for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p];
|
|
89557
|
-
});
|
|
89558
|
-
return extendStatics(d, b);
|
|
89559
|
-
};
|
|
89560
|
-
return function (d, b) {
|
|
89561
|
-
if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
89562
|
-
extendStatics(d, b);
|
|
89563
|
-
function __() {
|
|
89564
|
-
this.constructor = d;
|
|
89565
|
-
}
|
|
89566
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
89567
|
-
};
|
|
89568
|
-
})();
|
|
89569
|
-
var __values$F = commonjsGlobal && commonjsGlobal.__values || (function (o) {
|
|
89570
|
-
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
89571
|
-
if (m) return m.call(o);
|
|
89572
|
-
if (o && typeof o.length === "number") return {
|
|
89573
|
-
next: function () {
|
|
89574
|
-
if (o && i >= o.length) o = void 0;
|
|
89575
|
-
return {
|
|
89576
|
-
value: o && o[i++],
|
|
89577
|
-
done: !o
|
|
89578
|
-
};
|
|
89579
|
-
}
|
|
89580
|
-
};
|
|
89581
|
-
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
89582
|
-
});
|
|
89583
|
-
Object.defineProperty(FindMathML$1, "__esModule", {
|
|
89584
|
-
value: true
|
|
89585
|
-
});
|
|
89586
|
-
FindMathML$1.FindMathML = void 0;
|
|
89587
|
-
var FindMath_js_1$1 = FindMath;
|
|
89588
|
-
var NAMESPACE = 'http://www.w3.org/1998/Math/MathML';
|
|
89589
|
-
var FindMathML = (function (_super) {
|
|
89590
|
-
__extends$1l(FindMathML, _super);
|
|
89591
|
-
function FindMathML() {
|
|
89592
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
89593
|
-
}
|
|
89594
|
-
FindMathML.prototype.findMath = function (node) {
|
|
89595
|
-
var set = new Set();
|
|
89596
|
-
this.findMathNodes(node, set);
|
|
89597
|
-
this.findMathPrefixed(node, set);
|
|
89598
|
-
var html = this.adaptor.root(this.adaptor.document);
|
|
89599
|
-
if (this.adaptor.kind(html) === 'html' && set.size === 0) {
|
|
89600
|
-
this.findMathNS(node, set);
|
|
89601
|
-
}
|
|
89602
|
-
return this.processMath(set);
|
|
89603
|
-
};
|
|
89604
|
-
FindMathML.prototype.findMathNodes = function (node, set) {
|
|
89605
|
-
var e_1, _a;
|
|
89606
|
-
try {
|
|
89607
|
-
for (var _b = __values$F(this.adaptor.tags(node, 'math')), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
89608
|
-
var math = _c.value;
|
|
89609
|
-
set.add(math);
|
|
89610
|
-
}
|
|
89611
|
-
} catch (e_1_1) {
|
|
89612
|
-
e_1 = {
|
|
89613
|
-
error: e_1_1
|
|
89614
|
-
};
|
|
89615
|
-
} finally {
|
|
89616
|
-
try {
|
|
89617
|
-
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
89618
|
-
} finally {
|
|
89619
|
-
if (e_1) throw e_1.error;
|
|
89620
|
-
}
|
|
89621
|
-
}
|
|
89622
|
-
};
|
|
89623
|
-
FindMathML.prototype.findMathPrefixed = function (node, set) {
|
|
89624
|
-
var e_2, _a, e_3, _b;
|
|
89625
|
-
var html = this.adaptor.root(this.adaptor.document);
|
|
89626
|
-
try {
|
|
89627
|
-
for (var _c = __values$F(this.adaptor.allAttributes(html)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
89628
|
-
var attr = _d.value;
|
|
89629
|
-
if (attr.name.substr(0, 6) === 'xmlns:' && attr.value === NAMESPACE) {
|
|
89630
|
-
var prefix = attr.name.substr(6);
|
|
89631
|
-
try {
|
|
89632
|
-
for (var _e = (e_3 = void 0, __values$F(this.adaptor.tags(node, prefix + ':math'))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
89633
|
-
var math = _f.value;
|
|
89634
|
-
set.add(math);
|
|
89635
|
-
}
|
|
89636
|
-
} catch (e_3_1) {
|
|
89637
|
-
e_3 = {
|
|
89638
|
-
error: e_3_1
|
|
89639
|
-
};
|
|
89640
|
-
} finally {
|
|
89641
|
-
try {
|
|
89642
|
-
if (_f && !_f.done && (_b = _e.return)) _b.call(_e);
|
|
89643
|
-
} finally {
|
|
89644
|
-
if (e_3) throw e_3.error;
|
|
89645
|
-
}
|
|
89646
|
-
}
|
|
89647
|
-
}
|
|
89648
|
-
}
|
|
89649
|
-
} catch (e_2_1) {
|
|
89650
|
-
e_2 = {
|
|
89651
|
-
error: e_2_1
|
|
89652
|
-
};
|
|
89653
|
-
} finally {
|
|
89654
|
-
try {
|
|
89655
|
-
if (_d && !_d.done && (_a = _c.return)) _a.call(_c);
|
|
89656
|
-
} finally {
|
|
89657
|
-
if (e_2) throw e_2.error;
|
|
89658
|
-
}
|
|
89659
|
-
}
|
|
89660
|
-
};
|
|
89661
|
-
FindMathML.prototype.findMathNS = function (node, set) {
|
|
89662
|
-
var e_4, _a;
|
|
89663
|
-
try {
|
|
89664
|
-
for (var _b = __values$F(this.adaptor.tags(node, 'math', NAMESPACE)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
89665
|
-
var math = _c.value;
|
|
89666
|
-
set.add(math);
|
|
89667
|
-
}
|
|
89668
|
-
} catch (e_4_1) {
|
|
89669
|
-
e_4 = {
|
|
89670
|
-
error: e_4_1
|
|
89671
|
-
};
|
|
89672
|
-
} finally {
|
|
89673
|
-
try {
|
|
89674
|
-
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
89675
|
-
} finally {
|
|
89676
|
-
if (e_4) throw e_4.error;
|
|
89677
|
-
}
|
|
89678
|
-
}
|
|
89679
|
-
};
|
|
89680
|
-
FindMathML.prototype.processMath = function (set) {
|
|
89681
|
-
var e_5, _a;
|
|
89682
|
-
var math = [];
|
|
89683
|
-
try {
|
|
89684
|
-
for (var _b = __values$F(Array.from(set)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
89685
|
-
var mml = _c.value;
|
|
89686
|
-
var display = this.adaptor.getAttribute(mml, 'display') === 'block' || this.adaptor.getAttribute(mml, 'mode') === 'display';
|
|
89687
|
-
var start = {
|
|
89688
|
-
node: mml,
|
|
89689
|
-
n: 0,
|
|
89690
|
-
delim: ''
|
|
89691
|
-
};
|
|
89692
|
-
var end = {
|
|
89693
|
-
node: mml,
|
|
89694
|
-
n: 0,
|
|
89695
|
-
delim: ''
|
|
89696
|
-
};
|
|
89697
|
-
math.push({
|
|
89698
|
-
math: this.adaptor.outerHTML(mml),
|
|
89699
|
-
start: start,
|
|
89700
|
-
end: end,
|
|
89701
|
-
display: display
|
|
89702
|
-
});
|
|
89703
|
-
}
|
|
89704
|
-
} catch (e_5_1) {
|
|
89705
|
-
e_5 = {
|
|
89706
|
-
error: e_5_1
|
|
89707
|
-
};
|
|
89708
|
-
} finally {
|
|
89709
|
-
try {
|
|
89710
|
-
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
|
89711
|
-
} finally {
|
|
89712
|
-
if (e_5) throw e_5.error;
|
|
89713
|
-
}
|
|
89714
|
-
}
|
|
89715
|
-
return math;
|
|
89716
|
-
};
|
|
89717
|
-
FindMathML.OPTIONS = {};
|
|
89718
|
-
return FindMathML;
|
|
89719
|
-
})(FindMath_js_1$1.AbstractFindMath);
|
|
89720
|
-
FindMathML$1.FindMathML = FindMathML;
|
|
89721
89760
|
var MathMLCompile$1 = {};
|
|
89722
89761
|
var Entities$1 = {};
|
|
89723
89762
|
var AsyncLoad = {};
|
|
@@ -132244,7 +132283,7 @@ var unWrapMath = function unWrapMath(content) {
|
|
|
132244
132283
|
};
|
|
132245
132284
|
};
|
|
132246
132285
|
normalization.unWrapMath = unWrapMath;
|
|
132247
|
-
const require$$
|
|
132286
|
+
const require$$22$2 = _dll_debug;
|
|
132248
132287
|
(function (exports) {
|
|
132249
132288
|
var _interopRequireDefault = interopRequireDefault.exports;
|
|
132250
132289
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -132254,10 +132293,17 @@ const require$$15$4 = _dll_debug;
|
|
|
132254
132293
|
var _toConsumableArray2 = _interopRequireDefault(toConsumableArray$3.exports);
|
|
132255
132294
|
var _typeof2 = _interopRequireDefault(_typeof$s.exports);
|
|
132256
132295
|
var _defineProperty2 = _interopRequireDefault(defineProperty$5.exports);
|
|
132296
|
+
var _classCallCheck2 = _interopRequireDefault(classCallCheck$4.exports);
|
|
132297
|
+
var _createClass2 = _interopRequireDefault(createClass$3.exports);
|
|
132298
|
+
var _get2 = _interopRequireDefault(get$1.exports);
|
|
132299
|
+
var _inherits2 = _interopRequireDefault(inherits$2.exports);
|
|
132300
|
+
var _possibleConstructorReturn2 = _interopRequireDefault(possibleConstructorReturn$2.exports);
|
|
132301
|
+
var _getPrototypeOf2 = _interopRequireDefault(getPrototypeOf$1.exports);
|
|
132257
132302
|
var _mathjax = mathjax;
|
|
132258
132303
|
var _assistiveMml = assistiveMml;
|
|
132259
132304
|
var _semanticEnrich = semanticEnrich;
|
|
132260
132305
|
var _MenuHandler = MenuHandler$1;
|
|
132306
|
+
var _FindMathML2 = FindMathML$1;
|
|
132261
132307
|
var _mathml = mathml;
|
|
132262
132308
|
var _tex = tex$2;
|
|
132263
132309
|
var _chtml = chtml$1;
|
|
@@ -132265,12 +132311,13 @@ const require$$15$4 = _dll_debug;
|
|
|
132265
132311
|
var _browserAdaptor = browserAdaptor$1;
|
|
132266
132312
|
var _AllPackages = AllPackages;
|
|
132267
132313
|
var _mstack = mstack;
|
|
132268
|
-
var _debug = _interopRequireDefault(require$$
|
|
132314
|
+
var _debug = _interopRequireDefault(require$$22$2);
|
|
132269
132315
|
var _normalization = normalization;
|
|
132270
132316
|
var _MmlFactory = MmlFactory$1;
|
|
132271
132317
|
var _SerializedMmlVisitor = SerializedMmlVisitor;
|
|
132272
132318
|
var _WrapperFactory = WrapperFactory$2;
|
|
132273
132319
|
var _mspace = mspace$1;
|
|
132320
|
+
var _HTMLDomStrings = HTMLDomStrings$1;
|
|
132274
132321
|
function ownKeys(object, enumerableOnly) {
|
|
132275
132322
|
var keys = Object.keys(object);
|
|
132276
132323
|
if (Object.getOwnPropertySymbols) {
|
|
@@ -132292,6 +132339,30 @@ const require$$15$4 = _dll_debug;
|
|
|
132292
132339
|
}
|
|
132293
132340
|
return target;
|
|
132294
132341
|
}
|
|
132342
|
+
function _createSuper(Derived) {
|
|
132343
|
+
var hasNativeReflectConstruct = _isNativeReflectConstruct();
|
|
132344
|
+
return function _createSuperInternal() {
|
|
132345
|
+
var Super = (0, _getPrototypeOf2["default"])(Derived), result;
|
|
132346
|
+
if (hasNativeReflectConstruct) {
|
|
132347
|
+
var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor;
|
|
132348
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
132349
|
+
} else {
|
|
132350
|
+
result = Super.apply(this, arguments);
|
|
132351
|
+
}
|
|
132352
|
+
return (0, _possibleConstructorReturn2["default"])(this, result);
|
|
132353
|
+
};
|
|
132354
|
+
}
|
|
132355
|
+
function _isNativeReflectConstruct() {
|
|
132356
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
132357
|
+
if (Reflect.construct.sham) return false;
|
|
132358
|
+
if (typeof Proxy === "function") return true;
|
|
132359
|
+
try {
|
|
132360
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
132361
|
+
return true;
|
|
132362
|
+
} catch (e) {
|
|
132363
|
+
return false;
|
|
132364
|
+
}
|
|
132365
|
+
}
|
|
132295
132366
|
if (typeof window !== 'undefined') {
|
|
132296
132367
|
(0, _html.RegisterHTMLHandler)((0, _browserAdaptor.browserAdaptor)());
|
|
132297
132368
|
}
|
|
@@ -132346,6 +132417,28 @@ const require$$15$4 = _dll_debug;
|
|
|
132346
132417
|
return node.setAttribute('displaystyle', 'true');
|
|
132347
132418
|
});
|
|
132348
132419
|
};
|
|
132420
|
+
var myFindMathML = (function (_FindMathML) {
|
|
132421
|
+
(0, _inherits2["default"])(myFindMathML, _FindMathML);
|
|
132422
|
+
var _super = _createSuper(myFindMathML);
|
|
132423
|
+
function myFindMathML() {
|
|
132424
|
+
(0, _classCallCheck2["default"])(this, myFindMathML);
|
|
132425
|
+
return _super.apply(this, arguments);
|
|
132426
|
+
}
|
|
132427
|
+
(0, _createClass2["default"])(myFindMathML, [{
|
|
132428
|
+
key: "processMath",
|
|
132429
|
+
value: function processMath(set) {
|
|
132430
|
+
var adaptor = this.adaptor;
|
|
132431
|
+
for (var _i = 0, _Array$from = Array.from(set); _i < _Array$from.length; _i++) {
|
|
132432
|
+
var mml = _Array$from[_i];
|
|
132433
|
+
if (adaptor.kind(adaptor.parent(mml)) === 'mjx-assistive-mml') {
|
|
132434
|
+
set["delete"](mml);
|
|
132435
|
+
}
|
|
132436
|
+
}
|
|
132437
|
+
return (0, _get2["default"])((0, _getPrototypeOf2["default"])(myFindMathML.prototype), "processMath", this).call(this, set);
|
|
132438
|
+
}
|
|
132439
|
+
}]);
|
|
132440
|
+
return myFindMathML;
|
|
132441
|
+
})(_FindMathML2.FindMathML);
|
|
132349
132442
|
var createMathMLInstance = function createMathMLInstance(opts) {
|
|
132350
132443
|
var docProvided = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : document;
|
|
132351
132444
|
opts = opts || defaultOpts();
|
|
@@ -132375,7 +132468,8 @@ const require$$15$4 = _dll_debug;
|
|
|
132375
132468
|
parseError: function parseError(node) {
|
|
132376
132469
|
console.log('error:', node);
|
|
132377
132470
|
this.error(this.adaptor.textContent(node).replace(/\n.*/g, ''));
|
|
132378
|
-
}
|
|
132471
|
+
},
|
|
132472
|
+
FindMathML: new myFindMathML()
|
|
132379
132473
|
};
|
|
132380
132474
|
var fontURL = ("https://unpkg.com/mathjax-full@").concat(_mathjax.mathjax.version, "/ts/output/chtml/fonts/tex-woff-v2");
|
|
132381
132475
|
var htmlConfig = {
|
|
@@ -132400,7 +132494,10 @@ const require$$15$4 = _dll_debug;
|
|
|
132400
132494
|
},
|
|
132401
132495
|
enrichSpeech: 'deep',
|
|
132402
132496
|
InputJax: [new _tex.TeX(texConfig), mml],
|
|
132403
|
-
OutputJax: new _chtml.CHTML(htmlConfig)
|
|
132497
|
+
OutputJax: new _chtml.CHTML(htmlConfig),
|
|
132498
|
+
DomStrings: new _HTMLDomStrings.HTMLDomStrings({
|
|
132499
|
+
skipHtmlTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code', 'annotation', 'annotation-xml', 'mjx-assistive-mml', 'mjx-container']
|
|
132500
|
+
})
|
|
132404
132501
|
});
|
|
132405
132502
|
mml.setMmlFactory(customMmlFactory);
|
|
132406
132503
|
return html;
|
|
@@ -155927,7 +156024,7 @@ const require$$13$a = _dll_debug;
|
|
|
155927
156024
|
var _classnames = _interopRequireDefault(require$$12$e);
|
|
155928
156025
|
var _debug = _interopRequireDefault(require$$13$a);
|
|
155929
156026
|
var _styles = styles$1K;
|
|
155930
|
-
var _slatePropTypes = _interopRequireDefault(require$$15$
|
|
156027
|
+
var _slatePropTypes = _interopRequireDefault(require$$15$5);
|
|
155931
156028
|
function _createSuper(Derived) {
|
|
155932
156029
|
var hasNativeReflectConstruct = _isNativeReflectConstruct();
|
|
155933
156030
|
return function _createSuperInternal() {
|
|
@@ -160822,7 +160919,7 @@ const {isEqual: require$$12$9} = _dll_lodash;
|
|
|
160822
160919
|
var _mathRendering = mathRendering;
|
|
160823
160920
|
var _react = _interopRequireDefault(require$$7$9);
|
|
160824
160921
|
var _debug = _interopRequireDefault(require$$8$a);
|
|
160825
|
-
var _slatePropTypes = _interopRequireDefault(require$$15$
|
|
160922
|
+
var _slatePropTypes = _interopRequireDefault(require$$15$5);
|
|
160826
160923
|
var _propTypes = _interopRequireDefault(require$$10$h);
|
|
160827
160924
|
var _blockTags = blockTags;
|
|
160828
160925
|
var _isEqual = _interopRequireDefault(require$$12$9);
|
|
@@ -163516,7 +163613,7 @@ const require$$10$e = _dll_debug;
|
|
|
163516
163613
|
var _doneButton = doneButton;
|
|
163517
163614
|
var _propTypes = _interopRequireDefault(require$$4$9);
|
|
163518
163615
|
var _react = _interopRequireDefault(require$$5$8);
|
|
163519
|
-
var _slatePropTypes = _interopRequireDefault(require$$15$
|
|
163616
|
+
var _slatePropTypes = _interopRequireDefault(require$$15$5);
|
|
163520
163617
|
var _utils = utils$3;
|
|
163521
163618
|
var _styles = styles$1K;
|
|
163522
163619
|
var _toolbarButtons = toolbarButtons;
|
|
@@ -165852,7 +165949,7 @@ const require$$8$8 = _dll_prop_types;
|
|
|
165852
165949
|
var _GridOn = _interopRequireDefault(GridOn);
|
|
165853
165950
|
var _tableToolbar = _interopRequireDefault(tableToolbar);
|
|
165854
165951
|
var _propTypes = _interopRequireDefault(require$$8$8);
|
|
165855
|
-
var _slatePropTypes = _interopRequireDefault(require$$15$
|
|
165952
|
+
var _slatePropTypes = _interopRequireDefault(require$$15$5);
|
|
165856
165953
|
var _styles = styles$1K;
|
|
165857
165954
|
var _reactAttrConverter = _interopRequireDefault(reactAttrConverter.exports);
|
|
165858
165955
|
var _toStyle = toStyle;
|
|
@@ -176748,7 +176845,7 @@ const {debounce: require$$16$2} = _dll_lodash;
|
|
|
176748
176845
|
var _propTypes = _interopRequireDefault(require$$12$7);
|
|
176749
176846
|
var _classnames = _interopRequireDefault(require$$13$8);
|
|
176750
176847
|
var _debug = _interopRequireDefault(require$$14$3);
|
|
176751
|
-
var _slatePropTypes = _interopRequireDefault(require$$15$
|
|
176848
|
+
var _slatePropTypes = _interopRequireDefault(require$$15$5);
|
|
176752
176849
|
var _debounce = _interopRequireDefault(require$$16$2);
|
|
176753
176850
|
var _doneButton = doneButton;
|
|
176754
176851
|
var _utils = utils$3;
|
|
@@ -177097,7 +177194,7 @@ const require$$13$7 = _dll_prop_types;
|
|
|
177097
177194
|
var _theme = theme;
|
|
177098
177195
|
var _styles = styles$1K;
|
|
177099
177196
|
var _propTypes = _interopRequireDefault(require$$13$7);
|
|
177100
|
-
var _slatePropTypes = _interopRequireDefault(require$$15$
|
|
177197
|
+
var _slatePropTypes = _interopRequireDefault(require$$15$5);
|
|
177101
177198
|
var _renderUi = renderUi;
|
|
177102
177199
|
function _createSuper(Derived) {
|
|
177103
177200
|
var hasNativeReflectConstruct = _isNativeReflectConstruct();
|
|
@@ -178572,7 +178669,7 @@ const require$$21 = _dll_debug;
|
|
|
178572
178669
|
var _defineProperty2 = _interopRequireDefault(defineProperty$5.exports);
|
|
178573
178670
|
var _react = _interopRequireDefault(require$$13$6);
|
|
178574
178671
|
var _slateReact = require$$14$5;
|
|
178575
|
-
var _slatePropTypes = _interopRequireDefault(require$$15$
|
|
178672
|
+
var _slatePropTypes = _interopRequireDefault(require$$15$5);
|
|
178576
178673
|
var _slate = require$$16$5;
|
|
178577
178674
|
var _slatePlainSerializer = _interopRequireDefault(require$$17$3);
|
|
178578
178675
|
var _propTypes = _interopRequireDefault(require$$18$1);
|