@pie-element/complex-rubric 2.3.3-next.6 → 2.3.3
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/CHANGELOG.md +12 -0
- package/configure/CHANGELOG.md +8 -0
- package/configure/package.json +3 -3
- package/controller/CHANGELOG.md +12 -0
- package/controller/package.json +2 -2
- package/module/configure.js +424 -404
- package/module/element.js +424 -404
- package/module/print.js +424 -404
- package/package.json +4 -4
package/module/configure.js
CHANGED
|
@@ -42509,9 +42509,15 @@ const require$$4$W = _dll_debug;
|
|
|
42509
42509
|
key: "cancel",
|
|
42510
42510
|
value: function cancel() {
|
|
42511
42511
|
log('insert cancelled');
|
|
42512
|
-
|
|
42513
|
-
|
|
42514
|
-
|
|
42512
|
+
try {
|
|
42513
|
+
var value = this.getValue();
|
|
42514
|
+
var child = this.getPlaceholderInDocument(value);
|
|
42515
|
+
if (child) {
|
|
42516
|
+
var c = value.change().removeNodeByKey(child.key);
|
|
42517
|
+
this.onChange(c);
|
|
42518
|
+
this.onFinish(false);
|
|
42519
|
+
}
|
|
42520
|
+
} catch (err) {}
|
|
42515
42521
|
}
|
|
42516
42522
|
}, {
|
|
42517
42523
|
key: "done",
|
|
@@ -42679,7 +42685,7 @@ const require$$8$u = _dll_debug;
|
|
|
42679
42685
|
data: update
|
|
42680
42686
|
});
|
|
42681
42687
|
onChange(change);
|
|
42682
|
-
opts.onDelete(node
|
|
42688
|
+
opts.onDelete(node, function (err, v) {
|
|
42683
42689
|
if (!err) {
|
|
42684
42690
|
change = v.change().removeNodeByKey(node.key);
|
|
42685
42691
|
} else {
|
|
@@ -124306,7 +124312,7 @@ var bundle_min = {
|
|
|
124306
124312
|
}, t.freeze = r, t.MIME_TYPE = a, t.NAMESPACE = n);
|
|
124307
124313
|
},
|
|
124308
124314
|
6129: (e, t, r) => {
|
|
124309
|
-
var a = r(2167), n = r(1146), o = r(1045), i = r(6925),
|
|
124315
|
+
var a = r(2167), n = r(1146), o = r(1045), i = r(6925), l = n.DOMImplementation, s = a.NAMESPACE, c = i.ParseError, u = i.XMLReader;
|
|
124310
124316
|
function h(e) {
|
|
124311
124317
|
return e.replace(/\r[\n\u0085]/g, "\n").replace(/[\r\u0085\u2028]/g, "\n");
|
|
124312
124318
|
}
|
|
@@ -124331,8 +124337,8 @@ var bundle_min = {
|
|
|
124331
124337
|
e.currentElement ? e.currentElement.appendChild(t) : e.doc.appendChild(t);
|
|
124332
124338
|
}
|
|
124333
124339
|
(d.prototype.parseFromString = function (e, t) {
|
|
124334
|
-
var r = this.options, a = new u(), n = r.domBuilder || new m(), i = r.errorHandler,
|
|
124335
|
-
(
|
|
124340
|
+
var r = this.options, a = new u(), n = r.domBuilder || new m(), i = r.errorHandler, l = r.locator, c = r.xmlns || ({}), d = (/\/x?html?$/).test(t), p = d ? o.HTML_ENTITIES : o.XML_ENTITIES;
|
|
124341
|
+
(l && n.setDocumentLocator(l), a.errorHandler = (function (e, t, r) {
|
|
124336
124342
|
if (!e) {
|
|
124337
124343
|
if (t instanceof m) return t;
|
|
124338
124344
|
e = t;
|
|
@@ -124347,20 +124353,20 @@ var bundle_min = {
|
|
|
124347
124353
|
}) || (function () {}));
|
|
124348
124354
|
}
|
|
124349
124355
|
return (r = r || ({}), o("warning"), o("error"), o("fatalError"), a);
|
|
124350
|
-
})(i, n,
|
|
124356
|
+
})(i, n, l), a.domBuilder = r.domBuilder || n, d && (c[""] = s.HTML), c.xml = c.xml || s.XML);
|
|
124351
124357
|
var x = r.normalizeLineEndings || h;
|
|
124352
|
-
return (e && "string" == typeof e ? a.parse(x(e),
|
|
124358
|
+
return (e && "string" == typeof e ? a.parse(x(e), c, p) : a.errorHandler.error("invalid doc source"), n.doc);
|
|
124353
124359
|
}, m.prototype = {
|
|
124354
124360
|
startDocument: function () {
|
|
124355
|
-
(this.doc = new
|
|
124361
|
+
(this.doc = new l().createDocument(null, null, null), this.locator && (this.doc.documentURI = this.locator.systemId));
|
|
124356
124362
|
},
|
|
124357
124363
|
startElement: function (e, t, r, a) {
|
|
124358
124364
|
var n = this.doc, o = n.createElementNS(e, r || t), i = a.length;
|
|
124359
124365
|
(g(this, o), this.currentElement = o, this.locator && p(this.locator, o));
|
|
124360
|
-
for (var
|
|
124361
|
-
e = a.getURI(
|
|
124362
|
-
var
|
|
124363
|
-
(this.locator && p(a.getLocator(
|
|
124366
|
+
for (var l = 0; l < i; l++) {
|
|
124367
|
+
e = a.getURI(l);
|
|
124368
|
+
var s = a.getValue(l), c = (r = a.getQName(l), n.createAttributeNS(e, r));
|
|
124369
|
+
(this.locator && p(a.getLocator(l), c), c.value = c.nodeValue = s, o.setAttributeNode(c));
|
|
124364
124370
|
}
|
|
124365
124371
|
},
|
|
124366
124372
|
endElement: function (e, t, r) {
|
|
@@ -124412,7 +124418,7 @@ var bundle_min = {
|
|
|
124412
124418
|
console.error("[xmldom error]\t" + e, f(this.locator));
|
|
124413
124419
|
},
|
|
124414
124420
|
fatalError: function (e) {
|
|
124415
|
-
throw new
|
|
124421
|
+
throw new c(e, this.locator);
|
|
124416
124422
|
}
|
|
124417
124423
|
}, ("endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl").replace(/\w+/g, function (e) {
|
|
124418
124424
|
m.prototype[e] = function () {
|
|
@@ -124425,30 +124431,30 @@ var bundle_min = {
|
|
|
124425
124431
|
function i(e) {
|
|
124426
124432
|
return "" !== e;
|
|
124427
124433
|
}
|
|
124428
|
-
function
|
|
124434
|
+
function l(e, t) {
|
|
124429
124435
|
return (e.hasOwnProperty(t) || (e[t] = !0), e);
|
|
124430
124436
|
}
|
|
124431
|
-
function
|
|
124437
|
+
function s(e) {
|
|
124432
124438
|
if (!e) return [];
|
|
124433
124439
|
var t = (function (e) {
|
|
124434
124440
|
return e ? e.split(/[\t\n\f\r ]+/).filter(i) : [];
|
|
124435
124441
|
})(e);
|
|
124436
|
-
return Object.keys(t.reduce(
|
|
124442
|
+
return Object.keys(t.reduce(l, {}));
|
|
124437
124443
|
}
|
|
124438
|
-
function
|
|
124444
|
+
function c(e, t) {
|
|
124439
124445
|
for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]);
|
|
124440
124446
|
}
|
|
124441
124447
|
function u(e, t) {
|
|
124442
124448
|
var r = e.prototype;
|
|
124443
124449
|
if (!(r instanceof t)) {
|
|
124444
124450
|
function a() {}
|
|
124445
|
-
(a.prototype = t.prototype,
|
|
124451
|
+
(a.prototype = t.prototype, c(r, a = new a()), e.prototype = r = a);
|
|
124446
124452
|
}
|
|
124447
124453
|
r.constructor != e && ("function" != typeof e && console.error("unknown Class:" + e), r.constructor = e);
|
|
124448
124454
|
}
|
|
124449
|
-
var h = {}, d = h.ELEMENT_NODE = 1, m = h.ATTRIBUTE_NODE = 2, p = h.TEXT_NODE = 3, f = h.CDATA_SECTION_NODE = 4, x = h.ENTITY_REFERENCE_NODE = 5, g = h.ENTITY_NODE = 6, w = h.PROCESSING_INSTRUCTION_NODE = 7, b = h.COMMENT_NODE = 8, v = h.DOCUMENT_NODE = 9, C = h.DOCUMENT_TYPE_NODE = 10, A = h.DOCUMENT_FRAGMENT_NODE = 11, E = h.NOTATION_NODE = 12, y = {}, _ = {}, q = (y.INDEX_SIZE_ERR = (_[1] = "Index size error", 1), y.DOMSTRING_SIZE_ERR = (_[2] = "DOMString size error", 2), y.HIERARCHY_REQUEST_ERR = (_[3] = "Hierarchy request error", 3)), D = (y.WRONG_DOCUMENT_ERR = (_[4] = "Wrong document", 4), y.INVALID_CHARACTER_ERR = (_[5] = "Invalid character", 5), y.NO_DATA_ALLOWED_ERR = (_[6] = "No data allowed", 6), y.NO_MODIFICATION_ALLOWED_ERR = (_[7] = "No modification allowed", 7), y.NOT_FOUND_ERR = (_[8] = "Not found", 8)),
|
|
124450
|
-
function
|
|
124451
|
-
if (t instanceof Error) var r = t; else (r = this, Error.call(this, _[e]), this.message = _[e], Error.captureStackTrace && Error.captureStackTrace(this,
|
|
124455
|
+
var h = {}, d = h.ELEMENT_NODE = 1, m = h.ATTRIBUTE_NODE = 2, p = h.TEXT_NODE = 3, f = h.CDATA_SECTION_NODE = 4, x = h.ENTITY_REFERENCE_NODE = 5, g = h.ENTITY_NODE = 6, w = h.PROCESSING_INSTRUCTION_NODE = 7, b = h.COMMENT_NODE = 8, v = h.DOCUMENT_NODE = 9, C = h.DOCUMENT_TYPE_NODE = 10, A = h.DOCUMENT_FRAGMENT_NODE = 11, E = h.NOTATION_NODE = 12, y = {}, _ = {}, q = (y.INDEX_SIZE_ERR = (_[1] = "Index size error", 1), y.DOMSTRING_SIZE_ERR = (_[2] = "DOMString size error", 2), y.HIERARCHY_REQUEST_ERR = (_[3] = "Hierarchy request error", 3)), D = (y.WRONG_DOCUMENT_ERR = (_[4] = "Wrong document", 4), y.INVALID_CHARACTER_ERR = (_[5] = "Invalid character", 5), y.NO_DATA_ALLOWED_ERR = (_[6] = "No data allowed", 6), y.NO_MODIFICATION_ALLOWED_ERR = (_[7] = "No modification allowed", 7), y.NOT_FOUND_ERR = (_[8] = "Not found", 8)), N = (y.NOT_SUPPORTED_ERR = (_[9] = "Not supported", 9), y.INUSE_ATTRIBUTE_ERR = (_[10] = "Attribute in use", 10));
|
|
124456
|
+
function T(e, t) {
|
|
124457
|
+
if (t instanceof Error) var r = t; else (r = this, Error.call(this, _[e]), this.message = _[e], Error.captureStackTrace && Error.captureStackTrace(this, T));
|
|
124452
124458
|
return (r.code = e, t && (this.message = this.message + ": " + t), r);
|
|
124453
124459
|
}
|
|
124454
124460
|
function M() {}
|
|
@@ -124460,7 +124466,7 @@ var bundle_min = {
|
|
|
124460
124466
|
if (e._inc !== t) {
|
|
124461
124467
|
var r = e._refresh(e._node);
|
|
124462
124468
|
if ((we(e, "length", r.length), !e.$$length || r.length < e.$$length)) for (var a = r.length; (a in e); a++) Object.prototype.hasOwnProperty.call(e, a) && delete e[a];
|
|
124463
|
-
(
|
|
124469
|
+
(c(r, e), e._inc = t);
|
|
124464
124470
|
}
|
|
124465
124471
|
}
|
|
124466
124472
|
function B() {}
|
|
@@ -124478,7 +124484,7 @@ var bundle_min = {
|
|
|
124478
124484
|
}
|
|
124479
124485
|
function k(e, t, r) {
|
|
124480
124486
|
var a = S(t, r);
|
|
124481
|
-
if (!(a >= 0)) throw new
|
|
124487
|
+
if (!(a >= 0)) throw new T(D, new Error(e.tagName + "@" + r));
|
|
124482
124488
|
for (var n = t.length - 1; a < n; ) t[a] = t[++a];
|
|
124483
124489
|
if ((t.length = n, e)) {
|
|
124484
124490
|
var o = e.ownerDocument;
|
|
@@ -124502,7 +124508,7 @@ var bundle_min = {
|
|
|
124502
124508
|
function G(e, t, r, a) {
|
|
124503
124509
|
(e && e._inc++, r.namespaceURI === o.XMLNS && delete t._nsMap[r.prefix ? r.localName : ""]);
|
|
124504
124510
|
}
|
|
124505
|
-
function
|
|
124511
|
+
function $(e, t, r) {
|
|
124506
124512
|
if (e && e._inc) {
|
|
124507
124513
|
e._inc++;
|
|
124508
124514
|
var a = t.childNodes;
|
|
@@ -124512,9 +124518,9 @@ var bundle_min = {
|
|
|
124512
124518
|
}
|
|
124513
124519
|
}
|
|
124514
124520
|
}
|
|
124515
|
-
function
|
|
124521
|
+
function V(e, t) {
|
|
124516
124522
|
var r = t.previousSibling, a = t.nextSibling;
|
|
124517
|
-
return (r ? r.nextSibling = a : e.firstChild = a, a ? a.previousSibling = r : e.lastChild = r, t.parentNode = null, t.previousSibling = null, t.nextSibling = null,
|
|
124523
|
+
return (r ? r.nextSibling = a : e.firstChild = a, a ? a.previousSibling = r : e.lastChild = r, t.parentNode = null, t.previousSibling = null, t.nextSibling = null, $(e.ownerDocument, e), t);
|
|
124518
124524
|
}
|
|
124519
124525
|
function X(e) {
|
|
124520
124526
|
return e && e.nodeType === R.DOCUMENT_TYPE_NODE;
|
|
@@ -124543,42 +124549,42 @@ var bundle_min = {
|
|
|
124543
124549
|
var a = e.childNodes || [], o = t.childNodes || [];
|
|
124544
124550
|
if (t.nodeType === R.DOCUMENT_FRAGMENT_NODE) {
|
|
124545
124551
|
var i = o.filter(H);
|
|
124546
|
-
if (i.length > 1 || n(o, W)) throw new
|
|
124547
|
-
if (1 === i.length && !z(e, r)) throw new
|
|
124552
|
+
if (i.length > 1 || n(o, W)) throw new T(q, "More than one element or text in fragment");
|
|
124553
|
+
if (1 === i.length && !z(e, r)) throw new T(q, "Element in fragment can not be inserted before doctype");
|
|
124548
124554
|
}
|
|
124549
|
-
if (H(t) && !z(e, r)) throw new
|
|
124555
|
+
if (H(t) && !z(e, r)) throw new T(q, "Only one element can be added and only after doctype");
|
|
124550
124556
|
if (X(t)) {
|
|
124551
|
-
if (n(a, X)) throw new
|
|
124552
|
-
var
|
|
124553
|
-
if (r && a.indexOf(
|
|
124554
|
-
if (!r &&
|
|
124557
|
+
if (n(a, X)) throw new T(q, "Only one doctype is allowed");
|
|
124558
|
+
var l = n(a, H);
|
|
124559
|
+
if (r && a.indexOf(l) < a.indexOf(r)) throw new T(q, "Doctype can only be inserted before an element");
|
|
124560
|
+
if (!r && l) throw new T(q, "Doctype can not be appended since element is present");
|
|
124555
124561
|
}
|
|
124556
124562
|
}
|
|
124557
124563
|
function Z(e, t, r) {
|
|
124558
124564
|
var a = e.childNodes || [], o = t.childNodes || [];
|
|
124559
124565
|
if (t.nodeType === R.DOCUMENT_FRAGMENT_NODE) {
|
|
124560
124566
|
var i = o.filter(H);
|
|
124561
|
-
if (i.length > 1 || n(o, W)) throw new
|
|
124562
|
-
if (1 === i.length && !Y(e, r)) throw new
|
|
124567
|
+
if (i.length > 1 || n(o, W)) throw new T(q, "More than one element or text in fragment");
|
|
124568
|
+
if (1 === i.length && !Y(e, r)) throw new T(q, "Element in fragment can not be inserted before doctype");
|
|
124563
124569
|
}
|
|
124564
|
-
if (H(t) && !Y(e, r)) throw new
|
|
124570
|
+
if (H(t) && !Y(e, r)) throw new T(q, "Only one element can be added and only after doctype");
|
|
124565
124571
|
if (X(t)) {
|
|
124566
124572
|
if (n(a, function (e) {
|
|
124567
124573
|
return X(e) && e !== r;
|
|
124568
|
-
})) throw new
|
|
124569
|
-
var
|
|
124570
|
-
if (r && a.indexOf(
|
|
124574
|
+
})) throw new T(q, "Only one doctype is allowed");
|
|
124575
|
+
var l = n(a, H);
|
|
124576
|
+
if (r && a.indexOf(l) < a.indexOf(r)) throw new T(q, "Doctype can only be inserted before an element");
|
|
124571
124577
|
}
|
|
124572
124578
|
}
|
|
124573
124579
|
function Q(e, t, r, a) {
|
|
124574
124580
|
((function (e, t, r) {
|
|
124575
124581
|
if (!(function (e) {
|
|
124576
124582
|
return e && (e.nodeType === R.DOCUMENT_NODE || e.nodeType === R.DOCUMENT_FRAGMENT_NODE || e.nodeType === R.ELEMENT_NODE);
|
|
124577
|
-
})(e)) throw new
|
|
124578
|
-
if (r && r.parentNode !== e) throw new
|
|
124583
|
+
})(e)) throw new T(q, "Unexpected parent node type " + e.nodeType);
|
|
124584
|
+
if (r && r.parentNode !== e) throw new T(D, "child not in parent");
|
|
124579
124585
|
if (!(function (e) {
|
|
124580
124586
|
return e && (H(e) || W(e) || X(e) || e.nodeType === R.DOCUMENT_FRAGMENT_NODE || e.nodeType === R.COMMENT_NODE || e.nodeType === R.PROCESSING_INSTRUCTION_NODE);
|
|
124581
|
-
})(t) || X(t) && e.nodeType !== R.DOCUMENT_NODE) throw new
|
|
124587
|
+
})(t) || X(t) && e.nodeType !== R.DOCUMENT_NODE) throw new T(q, "Unexpected node type " + t.nodeType + " for parent node type " + e.nodeType);
|
|
124582
124588
|
})(e, t, r), e.nodeType === R.DOCUMENT_NODE && (a || J)(e, t, r));
|
|
124583
124589
|
var n = t.parentNode;
|
|
124584
124590
|
if ((n && n.removeChild(t), t.nodeType === A)) {
|
|
@@ -124586,12 +124592,12 @@ var bundle_min = {
|
|
|
124586
124592
|
if (null == o) return t;
|
|
124587
124593
|
var i = t.lastChild;
|
|
124588
124594
|
} else o = i = t;
|
|
124589
|
-
var
|
|
124590
|
-
(o.previousSibling =
|
|
124595
|
+
var l = r ? r.previousSibling : e.lastChild;
|
|
124596
|
+
(o.previousSibling = l, i.nextSibling = r, l ? l.nextSibling = o : e.firstChild = o, null == r ? e.lastChild = i : r.previousSibling = i);
|
|
124591
124597
|
do {
|
|
124592
124598
|
o.parentNode = e;
|
|
124593
124599
|
} while (o !== i && (o = o.nextSibling));
|
|
124594
|
-
return (
|
|
124600
|
+
return ($(e.ownerDocument || e, e), t.nodeType == A && (t.firstChild = t.lastChild = null), t);
|
|
124595
124601
|
}
|
|
124596
124602
|
function K() {
|
|
124597
124603
|
this._nsMap = {};
|
|
@@ -124603,9 +124609,9 @@ var bundle_min = {
|
|
|
124603
124609
|
function ne() {}
|
|
124604
124610
|
function oe() {}
|
|
124605
124611
|
function ie() {}
|
|
124612
|
+
function le() {}
|
|
124606
124613
|
function se() {}
|
|
124607
124614
|
function ce() {}
|
|
124608
|
-
function le() {}
|
|
124609
124615
|
function ue() {}
|
|
124610
124616
|
function he() {}
|
|
124611
124617
|
function de(e, t) {
|
|
@@ -124621,8 +124627,8 @@ var bundle_min = {
|
|
|
124621
124627
|
if (!n) return !1;
|
|
124622
124628
|
if ("xml" === a && n === o.XML || n === o.XMLNS) return !1;
|
|
124623
124629
|
for (var i = r.length; i--; ) {
|
|
124624
|
-
var
|
|
124625
|
-
if (
|
|
124630
|
+
var l = r[i];
|
|
124631
|
+
if (l.prefix === a) return l.namespace !== n;
|
|
124626
124632
|
}
|
|
124627
124633
|
return !0;
|
|
124628
124634
|
}
|
|
@@ -124636,7 +124642,7 @@ var bundle_min = {
|
|
|
124636
124642
|
}
|
|
124637
124643
|
switch (e.nodeType) {
|
|
124638
124644
|
case d:
|
|
124639
|
-
var i = e.attributes,
|
|
124645
|
+
var i = e.attributes, l = i.length, s = e.firstChild, c = e.tagName, u = c;
|
|
124640
124646
|
if (!(r = o.isHTML(e.namespaceURI) || r) && !e.prefix && e.namespaceURI) {
|
|
124641
124647
|
for (var h, g = 0; g < i.length; g++) if ("xmlns" === i.item(g).name) {
|
|
124642
124648
|
h = i.item(g).value;
|
|
@@ -124649,37 +124655,37 @@ var bundle_min = {
|
|
|
124649
124655
|
if (h !== e.namespaceURI) for (E = n.length - 1; E >= 0; E--) {
|
|
124650
124656
|
var y;
|
|
124651
124657
|
if ((y = n[E]).namespace === e.namespaceURI) {
|
|
124652
|
-
y.prefix && (u = y.prefix + ":" +
|
|
124658
|
+
y.prefix && (u = y.prefix + ":" + c);
|
|
124653
124659
|
break;
|
|
124654
124660
|
}
|
|
124655
124661
|
}
|
|
124656
124662
|
}
|
|
124657
124663
|
t.push("<", u);
|
|
124658
|
-
for (var _ = 0; _ <
|
|
124664
|
+
for (var _ = 0; _ < l; _++) "xmlns" == (q = i.item(_)).prefix ? n.push({
|
|
124659
124665
|
prefix: q.localName,
|
|
124660
124666
|
namespace: q.value
|
|
124661
124667
|
}) : "xmlns" == q.nodeName && n.push({
|
|
124662
124668
|
prefix: "",
|
|
124663
124669
|
namespace: q.value
|
|
124664
124670
|
});
|
|
124665
|
-
for (_ = 0; _ <
|
|
124666
|
-
var q, D,
|
|
124667
|
-
(me(q = i.item(_), 0, n) && (pe(t, (D = q.prefix || "") ? "xmlns:" + D : "xmlns",
|
|
124671
|
+
for (_ = 0; _ < l; _++) {
|
|
124672
|
+
var q, D, N;
|
|
124673
|
+
(me(q = i.item(_), 0, n) && (pe(t, (D = q.prefix || "") ? "xmlns:" + D : "xmlns", N = q.namespaceURI), n.push({
|
|
124668
124674
|
prefix: D,
|
|
124669
|
-
namespace:
|
|
124675
|
+
namespace: N
|
|
124670
124676
|
})), fe(q, t, r, a, n));
|
|
124671
124677
|
}
|
|
124672
|
-
if ((
|
|
124678
|
+
if ((c === u && me(e, 0, n) && (pe(t, (D = e.prefix || "") ? "xmlns:" + D : "xmlns", N = e.namespaceURI), n.push({
|
|
124673
124679
|
prefix: D,
|
|
124674
|
-
namespace:
|
|
124675
|
-
})),
|
|
124676
|
-
if ((t.push(">"), r && (/^script$/i).test(
|
|
124680
|
+
namespace: N
|
|
124681
|
+
})), s || r && !(/^(?:meta|link|img|br|hr|input)$/i).test(c))) {
|
|
124682
|
+
if ((t.push(">"), r && (/^script$/i).test(c))) for (; s; ) (s.data ? t.push(s.data) : fe(s, t, r, a, n.slice()), s = s.nextSibling); else for (; s; ) (fe(s, t, r, a, n.slice()), s = s.nextSibling);
|
|
124677
124683
|
t.push("</", u, ">");
|
|
124678
124684
|
} else t.push("/>");
|
|
124679
124685
|
return;
|
|
124680
124686
|
case v:
|
|
124681
124687
|
case A:
|
|
124682
|
-
for (
|
|
124688
|
+
for (s = e.firstChild; s; ) (fe(s, t, r, a, n.slice()), s = s.nextSibling);
|
|
124683
124689
|
return;
|
|
124684
124690
|
case m:
|
|
124685
124691
|
return pe(t, e.name, e.value);
|
|
@@ -124690,8 +124696,8 @@ var bundle_min = {
|
|
|
124690
124696
|
case b:
|
|
124691
124697
|
return t.push("\x3c!--", e.data, "--\x3e");
|
|
124692
124698
|
case C:
|
|
124693
|
-
var
|
|
124694
|
-
if ((t.push("<!DOCTYPE ", e.name),
|
|
124699
|
+
var T = e.publicId, M = e.systemId;
|
|
124700
|
+
if ((t.push("<!DOCTYPE ", e.name), T)) (t.push(" PUBLIC ", T), M && "." != M && t.push(" ", M), t.push(">")); else if (M && "." != M) t.push(" SYSTEM ", M, ">"); else {
|
|
124695
124701
|
var O = e.internalSubset;
|
|
124696
124702
|
(O && t.push(" [", O, "]"), t.push(">"));
|
|
124697
124703
|
}
|
|
@@ -124725,9 +124731,9 @@ var bundle_min = {
|
|
|
124725
124731
|
}
|
|
124726
124732
|
switch ((t.childNodes && (a.childNodes = new M()), a.ownerDocument = e, a.nodeType)) {
|
|
124727
124733
|
case d:
|
|
124728
|
-
var i = t.attributes,
|
|
124729
|
-
|
|
124730
|
-
for (var
|
|
124734
|
+
var i = t.attributes, l = a.attributes = new B(), s = i.length;
|
|
124735
|
+
l._ownerElement = a;
|
|
124736
|
+
for (var c = 0; c < s; c++) a.setAttributeNode(ge(e, i.item(c), !0));
|
|
124731
124737
|
break;
|
|
124732
124738
|
case m:
|
|
124733
124739
|
r = !0;
|
|
@@ -124738,7 +124744,7 @@ var bundle_min = {
|
|
|
124738
124744
|
function we(e, t, r) {
|
|
124739
124745
|
e[t] = r;
|
|
124740
124746
|
}
|
|
124741
|
-
(y.INVALID_STATE_ERR = (_[11] = "Invalid state", 11), y.SYNTAX_ERR = (_[12] = "Syntax error", 12), y.INVALID_MODIFICATION_ERR = (_[13] = "Invalid modification", 13), y.NAMESPACE_ERR = (_[14] = "Invalid namespace", 14), y.INVALID_ACCESS_ERR = (_[15] = "Invalid access", 15),
|
|
124747
|
+
(y.INVALID_STATE_ERR = (_[11] = "Invalid state", 11), y.SYNTAX_ERR = (_[12] = "Syntax error", 12), y.INVALID_MODIFICATION_ERR = (_[13] = "Invalid modification", 13), y.NAMESPACE_ERR = (_[14] = "Invalid namespace", 14), y.INVALID_ACCESS_ERR = (_[15] = "Invalid access", 15), T.prototype = Error.prototype, c(y, T), M.prototype = {
|
|
124742
124748
|
length: 0,
|
|
124743
124749
|
item: function (e) {
|
|
124744
124750
|
return e >= 0 && e < this.length ? this[e] : null;
|
|
@@ -124766,13 +124772,13 @@ var bundle_min = {
|
|
|
124766
124772
|
},
|
|
124767
124773
|
setNamedItem: function (e) {
|
|
124768
124774
|
var t = e.ownerElement;
|
|
124769
|
-
if (t && t != this._ownerElement) throw new N
|
|
124775
|
+
if (t && t != this._ownerElement) throw new T(N);
|
|
124770
124776
|
var r = this.getNamedItem(e.nodeName);
|
|
124771
124777
|
return (F(this._ownerElement, this, e, r), r);
|
|
124772
124778
|
},
|
|
124773
124779
|
setNamedItemNS: function (e) {
|
|
124774
124780
|
var t, r = e.ownerElement;
|
|
124775
|
-
if (r && r != this._ownerElement) throw new N
|
|
124781
|
+
if (r && r != this._ownerElement) throw new T(N);
|
|
124776
124782
|
return (t = this.getNamedItemNS(e.namespaceURI, e.localName), F(this._ownerElement, this, e, t), t);
|
|
124777
124783
|
},
|
|
124778
124784
|
removeNamedItem: function (e) {
|
|
@@ -124826,7 +124832,7 @@ var bundle_min = {
|
|
|
124826
124832
|
(Q(this, e, t, Z), t && this.removeChild(t));
|
|
124827
124833
|
},
|
|
124828
124834
|
removeChild: function (e) {
|
|
124829
|
-
return
|
|
124835
|
+
return V(this, e);
|
|
124830
124836
|
},
|
|
124831
124837
|
appendChild: function (e) {
|
|
124832
124838
|
return this.insertBefore(e, null);
|
|
@@ -124868,7 +124874,7 @@ var bundle_min = {
|
|
|
124868
124874
|
isDefaultNamespace: function (e) {
|
|
124869
124875
|
return null == this.lookupPrefix(e);
|
|
124870
124876
|
}
|
|
124871
|
-
},
|
|
124877
|
+
}, c(h, R), c(h, R.prototype), j.prototype = {
|
|
124872
124878
|
nodeName: "#document",
|
|
124873
124879
|
nodeType: v,
|
|
124874
124880
|
doctype: null,
|
|
@@ -124885,7 +124891,7 @@ var bundle_min = {
|
|
|
124885
124891
|
return (Q(this, e, t), e.ownerDocument = this, null === this.documentElement && e.nodeType === d && (this.documentElement = e), e);
|
|
124886
124892
|
},
|
|
124887
124893
|
removeChild: function (e) {
|
|
124888
|
-
return (this.documentElement == e && (this.documentElement = null),
|
|
124894
|
+
return (this.documentElement == e && (this.documentElement = null), V(this, e));
|
|
124889
124895
|
},
|
|
124890
124896
|
replaceChild: function (e, t) {
|
|
124891
124897
|
(Q(this, e, t, Z), e.ownerDocument = this, t && this.removeChild(t), H(e) && (this.documentElement = e));
|
|
@@ -124900,7 +124906,7 @@ var bundle_min = {
|
|
|
124900
124906
|
}), t);
|
|
124901
124907
|
},
|
|
124902
124908
|
getElementsByClassName: function (e) {
|
|
124903
|
-
var t =
|
|
124909
|
+
var t = s(e);
|
|
124904
124910
|
return new O(this, function (r) {
|
|
124905
124911
|
var a = [];
|
|
124906
124912
|
return (t.length > 0 && U(r.documentElement, function (n) {
|
|
@@ -124909,15 +124915,15 @@ var bundle_min = {
|
|
|
124909
124915
|
if (o) {
|
|
124910
124916
|
var i = e === o;
|
|
124911
124917
|
if (!i) {
|
|
124912
|
-
var
|
|
124913
|
-
i = t.every((
|
|
124914
|
-
return
|
|
124918
|
+
var l = s(o);
|
|
124919
|
+
i = t.every((c = l, function (e) {
|
|
124920
|
+
return c && -1 !== c.indexOf(e);
|
|
124915
124921
|
}));
|
|
124916
124922
|
}
|
|
124917
124923
|
i && a.push(n);
|
|
124918
124924
|
}
|
|
124919
124925
|
}
|
|
124920
|
-
var
|
|
124926
|
+
var c;
|
|
124921
124927
|
}), a);
|
|
124922
124928
|
});
|
|
124923
124929
|
},
|
|
@@ -124926,7 +124932,7 @@ var bundle_min = {
|
|
|
124926
124932
|
return (t.ownerDocument = this, t.nodeName = e, t.tagName = e, t.localName = e, t.childNodes = new M(), (t.attributes = new B())._ownerElement = t, t);
|
|
124927
124933
|
},
|
|
124928
124934
|
createDocumentFragment: function () {
|
|
124929
|
-
var e = new
|
|
124935
|
+
var e = new ce();
|
|
124930
124936
|
return (e.ownerDocument = this, e.childNodes = new M(), e);
|
|
124931
124937
|
},
|
|
124932
124938
|
createTextNode: function (e) {
|
|
@@ -124950,7 +124956,7 @@ var bundle_min = {
|
|
|
124950
124956
|
return (t.ownerDocument = this, t.name = e, t.nodeName = e, t.localName = e, t.specified = !0, t);
|
|
124951
124957
|
},
|
|
124952
124958
|
createEntityReference: function (e) {
|
|
124953
|
-
var t = new
|
|
124959
|
+
var t = new se();
|
|
124954
124960
|
return (t.ownerDocument = this, t.nodeName = e, t);
|
|
124955
124961
|
},
|
|
124956
124962
|
createElementNS: function (e, t) {
|
|
@@ -124983,7 +124989,7 @@ var bundle_min = {
|
|
|
124983
124989
|
},
|
|
124984
124990
|
appendChild: function (e) {
|
|
124985
124991
|
return e.nodeType === A ? this.insertBefore(e, null) : (function (e, t) {
|
|
124986
|
-
return (t.parentNode && t.parentNode.removeChild(t), t.parentNode = e, t.previousSibling = e.lastChild, t.nextSibling = null, t.previousSibling ? t.previousSibling.nextSibling = t : e.firstChild = t, e.lastChild = t,
|
|
124992
|
+
return (t.parentNode && t.parentNode.removeChild(t), t.parentNode = e, t.previousSibling = e.lastChild, t.nextSibling = null, t.previousSibling ? t.previousSibling.nextSibling = t : e.firstChild = t, e.lastChild = t, $(e.ownerDocument, e, t), t);
|
|
124987
124993
|
})(this, e);
|
|
124988
124994
|
},
|
|
124989
124995
|
setAttributeNode: function (e) {
|
|
@@ -125064,7 +125070,7 @@ var bundle_min = {
|
|
|
125064
125070
|
}, u(ae, te), ne.prototype = {
|
|
125065
125071
|
nodeName: "#cdata-section",
|
|
125066
125072
|
nodeType: f
|
|
125067
|
-
}, u(ne, te), oe.prototype.nodeType = C, u(oe, R), ie.prototype.nodeType = E, u(ie, R),
|
|
125073
|
+
}, u(ne, te), oe.prototype.nodeType = C, u(oe, R), ie.prototype.nodeType = E, u(ie, R), le.prototype.nodeType = g, u(le, R), se.prototype.nodeType = x, u(se, R), ce.prototype.nodeName = "#document-fragment", ce.prototype.nodeType = A, u(ce, R), ue.prototype.nodeType = w, u(ue, R), he.prototype.serializeToString = function (e, t, r) {
|
|
125068
125074
|
return de.call(e, t, r);
|
|
125069
125075
|
}, R.prototype.toString = de);
|
|
125070
125076
|
try {
|
|
@@ -125104,7 +125110,7 @@ var bundle_min = {
|
|
|
125104
125110
|
});
|
|
125105
125111
|
}
|
|
125106
125112
|
} catch (ve) {}
|
|
125107
|
-
(t.DocumentType = oe, t.DOMException =
|
|
125113
|
+
(t.DocumentType = oe, t.DOMException = T, t.DOMImplementation = P, t.Element = K, t.Node = R, t.NodeList = M, t.XMLSerializer = he);
|
|
125108
125114
|
},
|
|
125109
125115
|
1045: (e, t, r) => {
|
|
125110
125116
|
var a = r(2167).freeze;
|
|
@@ -127248,22 +127254,22 @@ var bundle_min = {
|
|
|
127248
127254
|
},
|
|
127249
127255
|
6925: (e, t, r) => {
|
|
127250
127256
|
var a = r(2167).NAMESPACE, n = /[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/, o = new RegExp("[\\-\\.0-9" + n.source.slice(1, -1) + "\\u00B7\\u0300-\\u036F\\u203F-\\u2040]"), i = new RegExp("^" + n.source + o.source + "*(?::" + n.source + o.source + "*)?$");
|
|
127251
|
-
function s(e, t) {
|
|
127252
|
-
(this.message = e, this.locator = t, Error.captureStackTrace && Error.captureStackTrace(this, s));
|
|
127253
|
-
}
|
|
127254
|
-
function c() {}
|
|
127255
127257
|
function l(e, t) {
|
|
127258
|
+
(this.message = e, this.locator = t, Error.captureStackTrace && Error.captureStackTrace(this, l));
|
|
127259
|
+
}
|
|
127260
|
+
function s() {}
|
|
127261
|
+
function c(e, t) {
|
|
127256
127262
|
return (t.lineNumber = e.lineNumber, t.columnNumber = e.columnNumber, t);
|
|
127257
127263
|
}
|
|
127258
127264
|
function u(e, t, r, n, o, i) {
|
|
127259
|
-
function
|
|
127265
|
+
function l(e, t, a) {
|
|
127260
127266
|
(r.attributeNames.hasOwnProperty(e) && i.fatalError("Attribute " + e + " redefined"), r.addValue(e, t.replace(/[\t\n\r]/g, " ").replace(/&#?\w+;/g, o), a));
|
|
127261
127267
|
}
|
|
127262
|
-
for (var
|
|
127263
|
-
var h = e.charAt(
|
|
127268
|
+
for (var s, c = ++t, u = 0; ; ) {
|
|
127269
|
+
var h = e.charAt(c);
|
|
127264
127270
|
switch (h) {
|
|
127265
127271
|
case "=":
|
|
127266
|
-
if (1 === u) (
|
|
127272
|
+
if (1 === u) (s = e.slice(t, c), u = 3); else {
|
|
127267
127273
|
if (2 !== u) throw new Error("attribute equal must after attrName");
|
|
127268
127274
|
u = 3;
|
|
127269
127275
|
}
|
|
@@ -127271,17 +127277,17 @@ var bundle_min = {
|
|
|
127271
127277
|
case "'":
|
|
127272
127278
|
case '"':
|
|
127273
127279
|
if (3 === u || 1 === u) {
|
|
127274
|
-
if ((1 === u && (i.warning('attribute value must after "="'),
|
|
127275
|
-
(s
|
|
127280
|
+
if ((1 === u && (i.warning('attribute value must after "="'), s = e.slice(t, c)), t = c + 1, !((c = e.indexOf(h, t)) > 0))) throw new Error("attribute value no end '" + h + "' match");
|
|
127281
|
+
(l(s, d = e.slice(t, c), t - 1), u = 5);
|
|
127276
127282
|
} else {
|
|
127277
127283
|
if (4 != u) throw new Error('attribute value must after "="');
|
|
127278
|
-
(s
|
|
127284
|
+
(l(s, d = e.slice(t, c), t), i.warning('attribute "' + s + '" missed start quot(' + h + ")!!"), t = c + 1, u = 5);
|
|
127279
127285
|
}
|
|
127280
127286
|
break;
|
|
127281
127287
|
case "/":
|
|
127282
127288
|
switch (u) {
|
|
127283
127289
|
case 0:
|
|
127284
|
-
r.setTagName(e.slice(t,
|
|
127290
|
+
r.setTagName(e.slice(t, c));
|
|
127285
127291
|
case 5:
|
|
127286
127292
|
case 6:
|
|
127287
127293
|
case 7:
|
|
@@ -127297,66 +127303,66 @@ var bundle_min = {
|
|
|
127297
127303
|
}
|
|
127298
127304
|
break;
|
|
127299
127305
|
case "":
|
|
127300
|
-
return (i.error("unexpected end of input"), 0 == u && r.setTagName(e.slice(t,
|
|
127306
|
+
return (i.error("unexpected end of input"), 0 == u && r.setTagName(e.slice(t, c)), c);
|
|
127301
127307
|
case ">":
|
|
127302
127308
|
switch (u) {
|
|
127303
127309
|
case 0:
|
|
127304
|
-
r.setTagName(e.slice(t,
|
|
127310
|
+
r.setTagName(e.slice(t, c));
|
|
127305
127311
|
case 5:
|
|
127306
127312
|
case 6:
|
|
127307
127313
|
case 7:
|
|
127308
127314
|
break;
|
|
127309
127315
|
case 4:
|
|
127310
127316
|
case 1:
|
|
127311
|
-
"/" === (d = e.slice(t,
|
|
127317
|
+
"/" === (d = e.slice(t, c)).slice(-1) && (r.closed = !0, d = d.slice(0, -1));
|
|
127312
127318
|
case 2:
|
|
127313
|
-
(2 === u && (d =
|
|
127319
|
+
(2 === u && (d = s), 4 == u ? (i.warning('attribute "' + d + '" missed quot(")!'), l(s, d, t)) : (a.isHTML(n[""]) && d.match(/^(?:disabled|checked|selected)$/i) || i.warning('attribute "' + d + '" missed value!! "' + d + '" instead!!'), l(d, d, t)));
|
|
127314
127320
|
break;
|
|
127315
127321
|
case 3:
|
|
127316
127322
|
throw new Error("attribute value missed!!");
|
|
127317
127323
|
}
|
|
127318
|
-
return
|
|
127324
|
+
return c;
|
|
127319
127325
|
case "":
|
|
127320
127326
|
h = " ";
|
|
127321
127327
|
default:
|
|
127322
127328
|
if (h <= " ") switch (u) {
|
|
127323
127329
|
case 0:
|
|
127324
|
-
(r.setTagName(e.slice(t,
|
|
127330
|
+
(r.setTagName(e.slice(t, c)), u = 6);
|
|
127325
127331
|
break;
|
|
127326
127332
|
case 1:
|
|
127327
|
-
(
|
|
127333
|
+
(s = e.slice(t, c), u = 2);
|
|
127328
127334
|
break;
|
|
127329
127335
|
case 4:
|
|
127330
|
-
var d = e.slice(t,
|
|
127331
|
-
(i.warning('attribute "' + d + '" missed quot(")!!'), s
|
|
127336
|
+
var d = e.slice(t, c);
|
|
127337
|
+
(i.warning('attribute "' + d + '" missed quot(")!!'), l(s, d, t));
|
|
127332
127338
|
case 5:
|
|
127333
127339
|
u = 6;
|
|
127334
127340
|
} else switch (u) {
|
|
127335
127341
|
case 2:
|
|
127336
|
-
(r.tagName, a.isHTML(n[""]) &&
|
|
127342
|
+
(r.tagName, a.isHTML(n[""]) && s.match(/^(?:disabled|checked|selected)$/i) || i.warning('attribute "' + s + '" missed value!! "' + s + '" instead2!!'), l(s, s, t), t = c, u = 1);
|
|
127337
127343
|
break;
|
|
127338
127344
|
case 5:
|
|
127339
|
-
i.warning('attribute space is required"' +
|
|
127345
|
+
i.warning('attribute space is required"' + s + '"!!');
|
|
127340
127346
|
case 6:
|
|
127341
|
-
(u = 1, t =
|
|
127347
|
+
(u = 1, t = c);
|
|
127342
127348
|
break;
|
|
127343
127349
|
case 3:
|
|
127344
|
-
(u = 4, t =
|
|
127350
|
+
(u = 4, t = c);
|
|
127345
127351
|
break;
|
|
127346
127352
|
case 7:
|
|
127347
127353
|
throw new Error("elements closed character '/' and '>' must be connected to");
|
|
127348
127354
|
}
|
|
127349
127355
|
}
|
|
127350
|
-
|
|
127356
|
+
c++;
|
|
127351
127357
|
}
|
|
127352
127358
|
}
|
|
127353
127359
|
function h(e, t, r) {
|
|
127354
127360
|
for (var n = e.tagName, o = null, i = e.length; i--; ) {
|
|
127355
|
-
var
|
|
127356
|
-
if ((m =
|
|
127357
|
-
(
|
|
127361
|
+
var l = e[i], s = l.qName, c = l.value;
|
|
127362
|
+
if ((m = s.indexOf(":")) > 0) var u = l.prefix = s.slice(0, m), h = s.slice(m + 1), d = "xmlns" === u && h; else (h = s, u = null, d = "xmlns" === s && "");
|
|
127363
|
+
(l.localName = h, !1 !== d && (null == o && (o = {}, p(r, r = {})), r[d] = o[d] = c, l.uri = a.XMLNS, t.startPrefixMapping(d, c)));
|
|
127358
127364
|
}
|
|
127359
|
-
for (i = e.length; i--; ) (u = (
|
|
127365
|
+
for (i = e.length; i--; ) (u = (l = e[i]).prefix) && ("xml" === u && (l.uri = a.XML), "xmlns" !== u && (l.uri = r[u || ""]));
|
|
127360
127366
|
var m;
|
|
127361
127367
|
(m = n.indexOf(":")) > 0 ? (u = e.prefix = n.slice(0, m), h = e.localName = n.slice(m + 1)) : (u = null, h = e.localName = n);
|
|
127362
127368
|
var f = e.uri = r[u || ""];
|
|
@@ -127388,10 +127394,10 @@ var bundle_min = {
|
|
|
127388
127394
|
for ((n.lastIndex = t, n.exec(e)); r = n.exec(e); ) if ((a.push(r), r[1])) return a;
|
|
127389
127395
|
})(e, t), i = o.length;
|
|
127390
127396
|
if (i > 1 && (/!doctype/i).test(o[0][0])) {
|
|
127391
|
-
var
|
|
127392
|
-
i > 3 && ((/^public$/i).test(o[2][0]) ? (
|
|
127397
|
+
var l = o[1][0], s = !1, c = !1;
|
|
127398
|
+
i > 3 && ((/^public$/i).test(o[2][0]) ? (s = o[3][0], c = i > 4 && o[4][0]) : (/^system$/i).test(o[2][0]) && (c = o[3][0]));
|
|
127393
127399
|
var u = o[i - 1];
|
|
127394
|
-
return (r.startDTD(s, c
|
|
127400
|
+
return (r.startDTD(l, s, c), r.endDTD(), u.index + u[0].length);
|
|
127395
127401
|
}
|
|
127396
127402
|
return -1;
|
|
127397
127403
|
}
|
|
@@ -127406,7 +127412,7 @@ var bundle_min = {
|
|
|
127406
127412
|
function g() {
|
|
127407
127413
|
this.attributeNames = {};
|
|
127408
127414
|
}
|
|
127409
|
-
(
|
|
127415
|
+
(l.prototype = new Error(), l.prototype.name = l.name, s.prototype = {
|
|
127410
127416
|
parse: function (e, t, r) {
|
|
127411
127417
|
var n = this.domBuilder;
|
|
127412
127418
|
(n.startDocument(), p(t, t = {}), (function (e, t, r, n, o) {
|
|
@@ -127420,7 +127426,7 @@ var bundle_min = {
|
|
|
127420
127426
|
return String.fromCharCode(e);
|
|
127421
127427
|
})(parseInt(t.substr(1).replace("x", "0x"))) : (o.error("entity not found:" + e), e);
|
|
127422
127428
|
}
|
|
127423
|
-
function
|
|
127429
|
+
function s(t) {
|
|
127424
127430
|
if (t > y) {
|
|
127425
127431
|
var r = e.substring(y, t).replace(/&#?\w+;/g, i);
|
|
127426
127432
|
(C && p(y), n.characters(r, 0, t - y), y = t);
|
|
@@ -127442,40 +127448,40 @@ var bundle_min = {
|
|
|
127442
127448
|
}
|
|
127443
127449
|
return;
|
|
127444
127450
|
}
|
|
127445
|
-
switch ((_ > y &&
|
|
127451
|
+
switch ((_ > y && s(_), e.charAt(_ + 1))) {
|
|
127446
127452
|
case "/":
|
|
127447
|
-
var
|
|
127448
|
-
|
|
127449
|
-
var O = M.localNSMap, L = M.tagName ==
|
|
127450
|
-
if (L || M.tagName && M.tagName.toLowerCase() ==
|
|
127451
|
-
if ((n.endElement(M.uri, M.localName,
|
|
127452
|
-
L || o.fatalError("end tag name: " +
|
|
127453
|
+
var N = e.indexOf(">", _ + 3), T = e.substring(_ + 2, N).replace(/[ \t\n\r]+$/g, ""), M = A.pop();
|
|
127454
|
+
N < 0 ? (T = e.substring(_ + 2).replace(/[\s<].*/, ""), o.error("end tag name: " + T + " is not complete:" + M.tagName), N = _ + 1 + T.length) : T.match(/\s</) && (T = T.replace(/[\s<].*/, ""), o.error("end tag name: " + T + " maybe not complete"), N = _ + 1 + T.length);
|
|
127455
|
+
var O = M.localNSMap, L = M.tagName == T;
|
|
127456
|
+
if (L || M.tagName && M.tagName.toLowerCase() == T.toLowerCase()) {
|
|
127457
|
+
if ((n.endElement(M.uri, M.localName, T), O)) for (var B in O) Object.prototype.hasOwnProperty.call(O, B) && n.endPrefixMapping(B);
|
|
127458
|
+
L || o.fatalError("end tag name: " + T + " is not match the current start tagName:" + M.tagName);
|
|
127453
127459
|
} else A.push(M);
|
|
127454
|
-
|
|
127460
|
+
N++;
|
|
127455
127461
|
break;
|
|
127456
127462
|
case "?":
|
|
127457
|
-
(C && p(_),
|
|
127463
|
+
(C && p(_), N = x(e, _, n));
|
|
127458
127464
|
break;
|
|
127459
127465
|
case "!":
|
|
127460
|
-
(C && p(_),
|
|
127466
|
+
(C && p(_), N = f(e, _, n, o));
|
|
127461
127467
|
break;
|
|
127462
127468
|
default:
|
|
127463
127469
|
C && p(_);
|
|
127464
|
-
var S = new g(), F = A[A.length - 1].currentNSMap, k = (
|
|
127465
|
-
if ((!S.closed && m(e,
|
|
127466
|
-
for (var P =
|
|
127470
|
+
var S = new g(), F = A[A.length - 1].currentNSMap, k = (N = u(e, _, S, F, i, o), S.length);
|
|
127471
|
+
if ((!S.closed && m(e, N, S.tagName, E) && (S.closed = !0, r.nbsp || o.warning("unclosed xml attribute")), C && k)) {
|
|
127472
|
+
for (var P = c(C, {}), R = 0; R < k; R++) {
|
|
127467
127473
|
var I = S[R];
|
|
127468
|
-
(p(I.offset), I.locator =
|
|
127474
|
+
(p(I.offset), I.locator = c(C, {}));
|
|
127469
127475
|
}
|
|
127470
127476
|
(n.locator = P, h(S, n, F) && A.push(S), n.locator = C);
|
|
127471
127477
|
} else h(S, n, F) && A.push(S);
|
|
127472
|
-
a.isHTML(S.uri) && !S.closed ?
|
|
127478
|
+
a.isHTML(S.uri) && !S.closed ? N = d(e, N, S.tagName, i, n) : N++;
|
|
127473
127479
|
}
|
|
127474
127480
|
} catch (e) {
|
|
127475
|
-
if (e instanceof
|
|
127476
|
-
(o.error("element parse error: " + e),
|
|
127481
|
+
if (e instanceof l) throw e;
|
|
127482
|
+
(o.error("element parse error: " + e), N = -1);
|
|
127477
127483
|
}
|
|
127478
|
-
|
|
127484
|
+
N > y ? y = N : s(Math.max(_, y) + 1);
|
|
127479
127485
|
}
|
|
127480
127486
|
})(e, t, r, n, this.errorHandler), n.endDocument());
|
|
127481
127487
|
}
|
|
@@ -127508,7 +127514,7 @@ var bundle_min = {
|
|
|
127508
127514
|
getValue: function (e) {
|
|
127509
127515
|
return this[e].value;
|
|
127510
127516
|
}
|
|
127511
|
-
}, t.XMLReader =
|
|
127517
|
+
}, t.XMLReader = s, t.ParseError = l);
|
|
127512
127518
|
},
|
|
127513
127519
|
6036: (e, t, r) => {
|
|
127514
127520
|
(Object.defineProperty(t, "__esModule", {
|
|
@@ -127697,7 +127703,7 @@ var bundle_min = {
|
|
|
127697
127703
|
return this._applyCommand(o, i);
|
|
127698
127704
|
}
|
|
127699
127705
|
_applyCommand(e, t) {
|
|
127700
|
-
const r = this._mathmlElement.name.match(/under/) ?
|
|
127706
|
+
const r = this._mathmlElement.name.match(/under/) ? l.Under : l.Over;
|
|
127701
127707
|
return new i(r).apply(e, t);
|
|
127702
127708
|
}
|
|
127703
127709
|
};
|
|
@@ -127709,13 +127715,13 @@ var bundle_min = {
|
|
|
127709
127715
|
return o.latexAccents.includes(t) ? `${t}{${e}}` : `${this._defaultCommand}{${t}}{${e}}`;
|
|
127710
127716
|
}
|
|
127711
127717
|
get _defaultCommand() {
|
|
127712
|
-
return this._type ===
|
|
127718
|
+
return this._type === l.Under ? "\\underset" : "\\overset";
|
|
127713
127719
|
}
|
|
127714
127720
|
}
|
|
127715
|
-
var
|
|
127721
|
+
var l;
|
|
127716
127722
|
!(function (e) {
|
|
127717
127723
|
(e[e.Under = 0] = "Under", e[e.Over = 1] = "Over");
|
|
127718
|
-
})(
|
|
127724
|
+
})(l || (l = {}));
|
|
127719
127725
|
},
|
|
127720
127726
|
1733: (e, t, r) => {
|
|
127721
127727
|
(Object.defineProperty(t, "__esModule", {
|
|
@@ -127749,25 +127755,25 @@ var bundle_min = {
|
|
|
127749
127755
|
return i.MN;
|
|
127750
127756
|
}
|
|
127751
127757
|
});
|
|
127752
|
-
var
|
|
127758
|
+
var l = r(8301);
|
|
127753
127759
|
Object.defineProperty(t, "MSqrt", {
|
|
127754
127760
|
enumerable: !0,
|
|
127755
127761
|
get: function () {
|
|
127756
|
-
return
|
|
127762
|
+
return l.MSqrt;
|
|
127757
127763
|
}
|
|
127758
127764
|
});
|
|
127759
|
-
var
|
|
127765
|
+
var s = r(5237);
|
|
127760
127766
|
Object.defineProperty(t, "MFenced", {
|
|
127761
127767
|
enumerable: !0,
|
|
127762
127768
|
get: function () {
|
|
127763
|
-
return
|
|
127769
|
+
return s.MFenced;
|
|
127764
127770
|
}
|
|
127765
127771
|
});
|
|
127766
|
-
var
|
|
127772
|
+
var c = r(4060);
|
|
127767
127773
|
Object.defineProperty(t, "MFrac", {
|
|
127768
127774
|
enumerable: !0,
|
|
127769
127775
|
get: function () {
|
|
127770
|
-
return
|
|
127776
|
+
return c.MFrac;
|
|
127771
127777
|
}
|
|
127772
127778
|
});
|
|
127773
127779
|
var u = r(5851);
|
|
@@ -127970,7 +127976,7 @@ var bundle_min = {
|
|
|
127970
127976
|
}
|
|
127971
127977
|
class i {
|
|
127972
127978
|
constructor(e, t) {
|
|
127973
|
-
(this._genericCommand = "matrix", this._separators = new
|
|
127979
|
+
(this._genericCommand = "matrix", this._separators = new l(e, t));
|
|
127974
127980
|
}
|
|
127975
127981
|
apply(e) {
|
|
127976
127982
|
const t = this._command, r = `\\begin{${t}}\n${e.join("")}\n\\end{${t}}`;
|
|
@@ -127980,7 +127986,7 @@ var bundle_min = {
|
|
|
127980
127986
|
return this._separators.areParentheses() ? "pmatrix" : this._separators.areSquareBrackets() ? "bmatrix" : this._separators.areBrackets() ? "Bmatrix" : this._separators.areDivides() ? "vmatrix" : this._separators.areParallels() ? "Vmatrix" : this._separators.areNotEqual() ? this._genericCommand : "bmatrix";
|
|
127981
127987
|
}
|
|
127982
127988
|
}
|
|
127983
|
-
class
|
|
127989
|
+
class l {
|
|
127984
127990
|
constructor(e, t) {
|
|
127985
127991
|
(this._open = e, this._close = t);
|
|
127986
127992
|
}
|
|
@@ -128098,10 +128104,10 @@ var bundle_min = {
|
|
|
128098
128104
|
return n.allMathSymbolsByChar[this._value];
|
|
128099
128105
|
}
|
|
128100
128106
|
_findByGlyph() {
|
|
128101
|
-
return n.allMathSymbolsByGlyph[this._value];
|
|
128107
|
+
return n.allMathSymbolsByGlyphSpecial[`"${this._value}"`] || n.allMathSymbolsByGlyph[this._value];
|
|
128102
128108
|
}
|
|
128103
128109
|
_findByNumber() {
|
|
128104
|
-
return n.mathNumberByGlyph[this._value];
|
|
128110
|
+
return n.mathNumberByGlyphSpecial[`"${this._value}"`] || n.mathNumberByGlyph[this._value];
|
|
128105
128111
|
}
|
|
128106
128112
|
}
|
|
128107
128113
|
},
|
|
@@ -128154,7 +128160,7 @@ var bundle_min = {
|
|
|
128154
128160
|
}
|
|
128155
128161
|
convert() {
|
|
128156
128162
|
const e = (0, a.normalizeWhiteSpaces)(this._mathmlElement.value).trim();
|
|
128157
|
-
return n.mathNumberByGlyph[e] || e;
|
|
128163
|
+
return n.mathNumberByGlyphSpecial[`"${e}"`] || n.mathNumberByGlyph[e] || e;
|
|
128158
128164
|
}
|
|
128159
128165
|
};
|
|
128160
128166
|
},
|
|
@@ -128186,10 +128192,10 @@ var bundle_min = {
|
|
|
128186
128192
|
return n.allMathOperatorsByChar[this._value];
|
|
128187
128193
|
}
|
|
128188
128194
|
_findByGlyph() {
|
|
128189
|
-
return n.allMathOperatorsByGlyph[this._value];
|
|
128195
|
+
return n.allMathOperatorsByGlyphSpecial[`"${this._value}"`] || n.allMathOperatorsByGlyph[this._value];
|
|
128190
128196
|
}
|
|
128191
128197
|
_findByNumber() {
|
|
128192
|
-
return n.mathNumberByGlyph[this._value];
|
|
128198
|
+
return n.mathNumberByGlyphSpecial[`"${this._value}"`] || n.mathNumberByGlyph[this._value];
|
|
128193
128199
|
}
|
|
128194
128200
|
}
|
|
128195
128201
|
},
|
|
@@ -128265,8 +128271,8 @@ var bundle_min = {
|
|
|
128265
128271
|
convert() {
|
|
128266
128272
|
const {name: e, children: t} = this._mathmlElement, r = t.length;
|
|
128267
128273
|
if (3 !== r) throw new n.InvalidNumberOfChildrenError(e, 3, r);
|
|
128268
|
-
const o = (0, a.mathMLElementToLaTeXConverter)(t[0]).convert(), i = (0, a.mathMLElementToLaTeXConverter)(t[1]).convert(),
|
|
128269
|
-
return `${this._wrapInParenthesisIfThereIsSpace(o)}_${
|
|
128274
|
+
const o = (0, a.mathMLElementToLaTeXConverter)(t[0]).convert(), i = (0, a.mathMLElementToLaTeXConverter)(t[1]).convert(), l = (0, a.mathMLElementToLaTeXConverter)(t[2]).convert(), s = new a.BracketWrapper().wrap(i), c = new a.BracketWrapper().wrap(l);
|
|
128275
|
+
return `${this._wrapInParenthesisIfThereIsSpace(o)}_${s}^${c}`;
|
|
128270
128276
|
}
|
|
128271
128277
|
_wrapInParenthesisIfThereIsSpace(e) {
|
|
128272
128278
|
return e.match(/\s+/g) ? new a.ParenthesisWrapper().wrap(e) : e;
|
|
@@ -128440,10 +128446,10 @@ var bundle_min = {
|
|
|
128440
128446
|
}
|
|
128441
128447
|
toLatexConverter() {
|
|
128442
128448
|
const {name: e} = this._mathMLElement;
|
|
128443
|
-
return new (
|
|
128449
|
+
return new (l[e] || i.GenericSpacingWrapper)(this._mathMLElement);
|
|
128444
128450
|
}
|
|
128445
128451
|
};
|
|
128446
|
-
const
|
|
128452
|
+
const l = {
|
|
128447
128453
|
math: i.Math,
|
|
128448
128454
|
mi: i.MI,
|
|
128449
128455
|
mo: i.MO,
|
|
@@ -129770,7 +129776,86 @@ var bundle_min = {
|
|
|
129770
129776
|
598: (e, t) => {
|
|
129771
129777
|
(Object.defineProperty(t, "__esModule", {
|
|
129772
129778
|
value: !0
|
|
129773
|
-
}), t.allMathOperatorsByGlyph = void 0, t.
|
|
129779
|
+
}), t.allMathOperatorsByGlyph = t.allMathOperatorsByGlyphSpecial = void 0, t.allMathOperatorsByGlyphSpecial = {
|
|
129780
|
+
'"ˍ"': "\\_",
|
|
129781
|
+
'"ˋ"': "ˋ",
|
|
129782
|
+
'"ˊ"': "ˊ",
|
|
129783
|
+
'"ˉ"': "ˉ",
|
|
129784
|
+
'"ˇ"': "",
|
|
129785
|
+
'"ˆ"': "\\hat",
|
|
129786
|
+
'"º"': "o",
|
|
129787
|
+
'"ª"': "a",
|
|
129788
|
+
'"ⅆ"': "d",
|
|
129789
|
+
'"ⅅ"': "\\mathbb{D}",
|
|
129790
|
+
'"土"': "\\pm",
|
|
129791
|
+
'"十"': "+",
|
|
129792
|
+
'"α"': "\\alpha",
|
|
129793
|
+
'"β"': "\\beta",
|
|
129794
|
+
'"γ"': "\\gamma",
|
|
129795
|
+
'"Γ"': "\\Gamma",
|
|
129796
|
+
'"δ"': "\\delta",
|
|
129797
|
+
'"Δ"': "\\Delta",
|
|
129798
|
+
'"ϵ"': "\\epsilon",
|
|
129799
|
+
'"ζ"': "\\zeta",
|
|
129800
|
+
'"η"': "\\eta",
|
|
129801
|
+
'"θ"': "\\theta",
|
|
129802
|
+
'"Θ"': "\\Theta",
|
|
129803
|
+
'"ι"': "\\iota",
|
|
129804
|
+
'"κ"': "\\kappa",
|
|
129805
|
+
'"λ"': "\\lambda",
|
|
129806
|
+
'"ν"': "\\nu",
|
|
129807
|
+
'"ο"': "\\omicron",
|
|
129808
|
+
'"π"': "\\pi",
|
|
129809
|
+
'"Π"': "\\Pi",
|
|
129810
|
+
'"ρ"': "\\rho",
|
|
129811
|
+
'"σ"': "\\sigma",
|
|
129812
|
+
'"Σ"': "\\Sigma",
|
|
129813
|
+
'"τ"': "\\tau",
|
|
129814
|
+
'"υ"': "\\upsilon",
|
|
129815
|
+
'"Υ"': "\\Upsilon",
|
|
129816
|
+
'"ϕ"': "\\phi",
|
|
129817
|
+
'"Φ"': "\\Phi",
|
|
129818
|
+
'"χ"': "\\chi",
|
|
129819
|
+
'"ψ"': "\\psi",
|
|
129820
|
+
'"Ψ"': "\\Psi",
|
|
129821
|
+
'"ω"': "\\omega",
|
|
129822
|
+
'"Ω"': "\\Omega",
|
|
129823
|
+
'"Ω"': "\\Omega",
|
|
129824
|
+
'"ℏ"': "\\hbar",
|
|
129825
|
+
'"ℜ"': "\\mathfrak{R}",
|
|
129826
|
+
'"Ѳ"': "\\theta",
|
|
129827
|
+
'"Ø"': "\\emptyset",
|
|
129828
|
+
'"ϱ"': "\\varrho",
|
|
129829
|
+
'"ф"': "\\phi",
|
|
129830
|
+
'"ℇ"': "\\varepsilon",
|
|
129831
|
+
'"Ρ"': "P",
|
|
129832
|
+
'"ᐁ"': "\\nabla",
|
|
129833
|
+
'"ƞ"': "\\eta",
|
|
129834
|
+
'"μ"': "\\mu",
|
|
129835
|
+
'"Ө"': "\\theta",
|
|
129836
|
+
'"ⅇ"': "\\text{e}",
|
|
129837
|
+
'"ɼ"': "r",
|
|
129838
|
+
'"ἱ"': "i",
|
|
129839
|
+
'"ϒ"': "\\Upsilon",
|
|
129840
|
+
'"ѳ"': "\\theta",
|
|
129841
|
+
'"ⁿ"': "^{n}",
|
|
129842
|
+
'"เ"': "\\prime",
|
|
129843
|
+
'"П"': "\\prod",
|
|
129844
|
+
'"о"': "o",
|
|
129845
|
+
'"ђ"': "\\hbar",
|
|
129846
|
+
'"Ʌ"': "\\Lambda",
|
|
129847
|
+
'"ῡ"': "\\bar{u}",
|
|
129848
|
+
'"φ"': "\\varphi",
|
|
129849
|
+
'"ȼ"': "c",
|
|
129850
|
+
'"Χ"': "\\mathsf{X}",
|
|
129851
|
+
'"ₙ"': "_{n}",
|
|
129852
|
+
'"ħ"': "\\hbar",
|
|
129853
|
+
'"T"': "T",
|
|
129854
|
+
'"$"': "\\$",
|
|
129855
|
+
'"𝛿"': "\\delta",
|
|
129856
|
+
'"𝜙"': "\\phi",
|
|
129857
|
+
'"𝞮"': "\\epsilon"
|
|
129858
|
+
}, t.allMathOperatorsByGlyph = {
|
|
129774
129859
|
_: "\\underline",
|
|
129775
129860
|
"⏡": "\\underbrace",
|
|
129776
129861
|
"⏠": "\\overbrace",
|
|
@@ -129801,13 +129886,6 @@ var bundle_min = {
|
|
|
129801
129886
|
"˚": "\\degree",
|
|
129802
129887
|
"˙": "\\cdot",
|
|
129803
129888
|
"˘": " ",
|
|
129804
|
-
ˍ: "\\_",
|
|
129805
|
-
ˋ: "ˋ",
|
|
129806
|
-
ˊ: "ˊ",
|
|
129807
|
-
ˉ: "ˉ",
|
|
129808
|
-
ˇ: "",
|
|
129809
|
-
ˆ: "\\hat",
|
|
129810
|
-
º: "o",
|
|
129811
129889
|
"¹": "1",
|
|
129812
129890
|
"¸": ",",
|
|
129813
129891
|
"´": "´",
|
|
@@ -129815,7 +129893,6 @@ var bundle_min = {
|
|
|
129815
129893
|
"²": "2",
|
|
129816
129894
|
"°": "\\degree",
|
|
129817
129895
|
"¯": "\\overline",
|
|
129818
|
-
ª: "a",
|
|
129819
129896
|
"↛": "\\nrightarrow",
|
|
129820
129897
|
"¨": "\\cdot\\cdot",
|
|
129821
129898
|
"~": "\\sim",
|
|
@@ -129826,8 +129903,6 @@ var bundle_min = {
|
|
|
129826
129903
|
"∜": "\\sqrt[4]{}",
|
|
129827
129904
|
"∛": "\\sqrt[3]{}",
|
|
129828
129905
|
"√": "\\sqrt{}",
|
|
129829
|
-
ⅆ: "d",
|
|
129830
|
-
ⅅ: "\\mathbb{D}",
|
|
129831
129906
|
"?": "?",
|
|
129832
129907
|
"@": "@",
|
|
129833
129908
|
"//": "//",
|
|
@@ -130555,8 +130630,6 @@ var bundle_min = {
|
|
|
130555
130630
|
"⊼": "\\overline{\\land}",
|
|
130556
130631
|
"⊻": "\\underline{\\lor}",
|
|
130557
130632
|
"⊺": "\\top",
|
|
130558
|
-
土: "\\pm",
|
|
130559
|
-
十: "+",
|
|
130560
130633
|
"⊹": "",
|
|
130561
130634
|
"⊷": "\\circ\\multimap",
|
|
130562
130635
|
"⊶": "\\circ\\multimap",
|
|
@@ -130855,63 +130928,18 @@ var bundle_min = {
|
|
|
130855
130928
|
"“": "\\text{``}",
|
|
130856
130929
|
"’": "'",
|
|
130857
130930
|
"‘": "`",
|
|
130858
|
-
α: "\\alpha",
|
|
130859
|
-
β: "\\beta",
|
|
130860
|
-
γ: "\\gamma",
|
|
130861
|
-
Γ: "\\Gamma",
|
|
130862
|
-
δ: "\\delta",
|
|
130863
|
-
Δ: "\\Delta",
|
|
130864
|
-
ϵ: "\\epsilon",
|
|
130865
|
-
ζ: "\\zeta",
|
|
130866
|
-
η: "\\eta",
|
|
130867
|
-
θ: "\\theta",
|
|
130868
|
-
Θ: "\\Theta",
|
|
130869
|
-
ι: "\\iota",
|
|
130870
|
-
κ: "\\kappa",
|
|
130871
|
-
λ: "\\lambda",
|
|
130872
|
-
ν: "\\nu",
|
|
130873
|
-
ο: "\\omicron",
|
|
130874
|
-
π: "\\pi",
|
|
130875
|
-
Π: "\\Pi",
|
|
130876
|
-
ρ: "\\rho",
|
|
130877
|
-
σ: "\\sigma",
|
|
130878
|
-
Σ: "\\Sigma",
|
|
130879
|
-
τ: "\\tau",
|
|
130880
|
-
υ: "\\upsilon",
|
|
130881
|
-
Υ: "\\Upsilon",
|
|
130882
|
-
ϕ: "\\phi",
|
|
130883
|
-
Φ: "\\Phi",
|
|
130884
|
-
χ: "\\chi",
|
|
130885
|
-
ψ: "\\psi",
|
|
130886
|
-
Ψ: "\\Psi",
|
|
130887
|
-
ω: "\\omega",
|
|
130888
|
-
Ω: "\\Omega",
|
|
130889
|
-
Ω: "\\Omega",
|
|
130890
130931
|
"∅": "\\emptyset",
|
|
130891
130932
|
"⟲": "\\circlearrowleft",
|
|
130892
130933
|
"⟳": "\\circlearrowright",
|
|
130893
130934
|
"×": "\\times",
|
|
130894
130935
|
"½": "\\dfrac{1}{2}",
|
|
130895
|
-
μ: "\\mu",
|
|
130896
|
-
Ө: "\\theta",
|
|
130897
130936
|
"✓": "\\checkmark",
|
|
130898
130937
|
"⟩": "\\rangle",
|
|
130899
130938
|
"⟨": "\\langle",
|
|
130900
130939
|
"¼": "\\dfrac{1}{4}",
|
|
130901
130940
|
"…": "\\ldots",
|
|
130902
|
-
ℏ: "\\hbar",
|
|
130903
|
-
ℜ: "\\mathfrak{R}",
|
|
130904
|
-
Ѳ: "\\theta",
|
|
130905
|
-
Ø: "\\emptyset",
|
|
130906
|
-
ϱ: "\\varrho",
|
|
130907
|
-
ф: "\\phi",
|
|
130908
|
-
ℇ: "\\varepsilon",
|
|
130909
|
-
T: "T",
|
|
130910
130941
|
"∙": "\\cdot",
|
|
130911
|
-
Ρ: "P",
|
|
130912
130942
|
"∞": "\\infty",
|
|
130913
|
-
ᐁ: "\\nabla",
|
|
130914
|
-
ƞ: "\\eta",
|
|
130915
130943
|
"⁺": "^{+}",
|
|
130916
130944
|
"⁻": "^{-}",
|
|
130917
130945
|
"⁼": "^{=}",
|
|
@@ -130932,7 +130960,6 @@ var bundle_min = {
|
|
|
130932
130960
|
"⎼": "-",
|
|
130933
130961
|
"⎜": "\\mid",
|
|
130934
130962
|
"⎥": "\\mid",
|
|
130935
|
-
ħ: "\\hbar",
|
|
130936
130963
|
"⮕": "\\rightarrow",
|
|
130937
130964
|
"・": "\\cdot",
|
|
130938
130965
|
"¦": "\\mid",
|
|
@@ -130940,38 +130967,18 @@ var bundle_min = {
|
|
|
130940
130967
|
"¥": "\\yen",
|
|
130941
130968
|
"✗": "\\times",
|
|
130942
130969
|
"✔": "\\checkmark",
|
|
130943
|
-
ⁿ: "^{n}",
|
|
130944
130970
|
"«": "\\ll",
|
|
130945
|
-
เ: "\\prime",
|
|
130946
130971
|
"†": "\\dagger",
|
|
130947
130972
|
"│": "\\mid",
|
|
130948
|
-
$: "\\$",
|
|
130949
130973
|
"#": "\\#",
|
|
130950
130974
|
"℃": "\\text{\\textdegree C}",
|
|
130951
130975
|
"℉": "\\text{\\textdegree F}",
|
|
130952
130976
|
"█": "\\blacksquare",
|
|
130953
130977
|
"℧": "\\mho",
|
|
130954
|
-
ⅇ: "\\text{e}",
|
|
130955
|
-
ɼ: "r",
|
|
130956
130978
|
"‡": "\\ddagger",
|
|
130957
|
-
ἱ: "i",
|
|
130958
|
-
ϒ: "\\Upsilon",
|
|
130959
|
-
𝛿: "\\delta",
|
|
130960
130979
|
"˳": "\\cdot",
|
|
130961
|
-
ѳ: "\\theta",
|
|
130962
|
-
𝜙: "\\phi",
|
|
130963
|
-
П: "\\prod",
|
|
130964
|
-
о: "o",
|
|
130965
|
-
ђ: "\\hbar",
|
|
130966
|
-
Ʌ: "\\Lambda",
|
|
130967
130980
|
"।": "\\mid",
|
|
130968
|
-
"€": "\\euro"
|
|
130969
|
-
ῡ: "\\bar{u}",
|
|
130970
|
-
φ: "\\varphi",
|
|
130971
|
-
ȼ: "c",
|
|
130972
|
-
𝞮: "\\epsilon",
|
|
130973
|
-
Χ: "\\mathsf{X}",
|
|
130974
|
-
ₙ: "_{n}"
|
|
130981
|
+
"€": "\\euro"
|
|
130975
130982
|
});
|
|
130976
130983
|
},
|
|
130977
130984
|
2335: (e, t) => {
|
|
@@ -131072,7 +131079,168 @@ var bundle_min = {
|
|
|
131072
131079
|
4104: (e, t) => {
|
|
131073
131080
|
(Object.defineProperty(t, "__esModule", {
|
|
131074
131081
|
value: !0
|
|
131075
|
-
}), t.allMathSymbolsByGlyph = void 0, t.
|
|
131082
|
+
}), t.allMathSymbolsByGlyph = t.allMathSymbolsByGlyphSpecial = void 0, t.allMathSymbolsByGlyphSpecial = {
|
|
131083
|
+
'"ℵ"': "\\aleph",
|
|
131084
|
+
'"Ω"': "\\Omega",
|
|
131085
|
+
'"ω"': "\\omega",
|
|
131086
|
+
'"Ψ"': "\\Psi",
|
|
131087
|
+
'"ψ"': "\\psi",
|
|
131088
|
+
'"χ"': "\\chi",
|
|
131089
|
+
'"φ"': "\\varphi",
|
|
131090
|
+
'"Φ"': "\\Phi",
|
|
131091
|
+
'"ϕ"': "\\phi",
|
|
131092
|
+
'"υ"': "\\upsilon",
|
|
131093
|
+
'"τ"': "\\tau",
|
|
131094
|
+
'"Σ"': "\\Sigma",
|
|
131095
|
+
'"σ"': "\\sigma",
|
|
131096
|
+
'"ρ"': "\\rho",
|
|
131097
|
+
'"Π"': "\\Pi",
|
|
131098
|
+
'"π"': "\\pi",
|
|
131099
|
+
'"Ξ"': "\\Xi",
|
|
131100
|
+
'"ξ"': "\\xi",
|
|
131101
|
+
'"ν"': "\\nu",
|
|
131102
|
+
'"μ"': "\\mu",
|
|
131103
|
+
'"Λ"': "\\Lambda",
|
|
131104
|
+
'"λ"': "\\lambda",
|
|
131105
|
+
'"κ"': "\\kappa",
|
|
131106
|
+
'"ι"': "\\iota",
|
|
131107
|
+
'"ϑ"': "\\vartheta",
|
|
131108
|
+
'"Θ"': "\\Theta",
|
|
131109
|
+
'"θ"': "\\theta",
|
|
131110
|
+
'"η"': "\\eta",
|
|
131111
|
+
'"ζ"': "\\zeta",
|
|
131112
|
+
'"ɛ"': "\\varepsilon",
|
|
131113
|
+
'"ε"': "\\epsilon",
|
|
131114
|
+
'"Δ"': "\\Delta",
|
|
131115
|
+
'"δ"': "\\delta",
|
|
131116
|
+
'"Γ"': "\\Gamma",
|
|
131117
|
+
'"γ"': "\\gamma",
|
|
131118
|
+
'"β"': "\\beta",
|
|
131119
|
+
'"α"': "\\alpha",
|
|
131120
|
+
'"ϵ"': "\\epsilon",
|
|
131121
|
+
'"µ"': "\\mu",
|
|
131122
|
+
'"ı"': "\\imath",
|
|
131123
|
+
'"ม"': "\\mathbf{m}",
|
|
131124
|
+
'"Ω"': "\\Omega",
|
|
131125
|
+
'"त"': " ",
|
|
131126
|
+
'"ß"': "\\ss",
|
|
131127
|
+
'"Ћ"': "\\hbar",
|
|
131128
|
+
'"เ"': "\\prime",
|
|
131129
|
+
'"白"': " ",
|
|
131130
|
+
'"ℸ"': "\\wp",
|
|
131131
|
+
'"퓰"': " ",
|
|
131132
|
+
'"Ө"': "\\theta",
|
|
131133
|
+
'"ⁿ"': "^{n}",
|
|
131134
|
+
'"ℏ"': "\\hbar",
|
|
131135
|
+
'"ℜ"': "\\mathfrak{R}",
|
|
131136
|
+
'"Ѳ"': "\\theta",
|
|
131137
|
+
'"Ø"': "\\emptyset",
|
|
131138
|
+
'"ϱ"': "\\varrho",
|
|
131139
|
+
'"ф"': "\\phi",
|
|
131140
|
+
'"Ρ"': "P",
|
|
131141
|
+
'"ᐁ"': "\\nabla",
|
|
131142
|
+
'"ƞ"': "\\eta",
|
|
131143
|
+
'"ɣ"': "\\gamma",
|
|
131144
|
+
'"ћ"': "\\hbar",
|
|
131145
|
+
'"Ɛ"': "\\varepsilon",
|
|
131146
|
+
'"ⅅ"': "\\_{D}",
|
|
131147
|
+
'"𝜆"': "\\lambda",
|
|
131148
|
+
'"𝑥"': "x",
|
|
131149
|
+
'"𝑦"': "y",
|
|
131150
|
+
'"𝑧"': "z",
|
|
131151
|
+
'"𝑖"': "i",
|
|
131152
|
+
'"𝑗"': "j",
|
|
131153
|
+
'"𝑘"': "k",
|
|
131154
|
+
'"𝑚"': "m",
|
|
131155
|
+
'"𝑒"': "e",
|
|
131156
|
+
'"𝑟"': "r",
|
|
131157
|
+
'"ɳ"': "\\eta",
|
|
131158
|
+
'"Є"': "\\epsilon",
|
|
131159
|
+
'"є"': "\\epsilon",
|
|
131160
|
+
'"𝜀"': "\\epsilon",
|
|
131161
|
+
'"п"': "\\pi",
|
|
131162
|
+
'"Ν"': "\\nu",
|
|
131163
|
+
'"ɵ"': "\\theta",
|
|
131164
|
+
'"ϴ"': "\\theta",
|
|
131165
|
+
'"ɸ"': "\\phi",
|
|
131166
|
+
'"Ӷ"': "\\Gamma",
|
|
131167
|
+
'"ɭ"': "\\ell",
|
|
131168
|
+
'"ʋ"': "\\upsilon",
|
|
131169
|
+
'"𝛟"': "\\varphi",
|
|
131170
|
+
'"Ф"': "\\Phi",
|
|
131171
|
+
'"ⅈ"': "i",
|
|
131172
|
+
'"ο"': "o",
|
|
131173
|
+
'"ơ"': "o",
|
|
131174
|
+
'"ƒ"': "f",
|
|
131175
|
+
'"ṁ"': "m",
|
|
131176
|
+
'"Փ"': "\\Phi",
|
|
131177
|
+
'"ħ"': "\\hbar",
|
|
131178
|
+
'"ፈ"': " ",
|
|
131179
|
+
'"ế"': "\\hat{e}",
|
|
131180
|
+
'"О"': "0",
|
|
131181
|
+
'"Υ"': "Y",
|
|
131182
|
+
'"х"': "x",
|
|
131183
|
+
'"𝓏"': "z",
|
|
131184
|
+
'"𝓎"': "y",
|
|
131185
|
+
'"𝓍"': "x",
|
|
131186
|
+
'"р"': "p",
|
|
131187
|
+
'"а"': "a",
|
|
131188
|
+
'"ℇ"': "\\varepsilon",
|
|
131189
|
+
'"ⅇ"': "\\text{e}",
|
|
131190
|
+
'"ɼ"': "r",
|
|
131191
|
+
'"ἱ"': "i",
|
|
131192
|
+
'"ˆ"': "\\hat{}",
|
|
131193
|
+
'"ϒ"': "\\Upsilon",
|
|
131194
|
+
'"ѳ"': "\\theta",
|
|
131195
|
+
'"П"': "\\prod",
|
|
131196
|
+
'"о"': "o",
|
|
131197
|
+
'"ђ"': "\\hbar",
|
|
131198
|
+
'"Ʌ"': "\\Lambda",
|
|
131199
|
+
'"土"': "\\pm",
|
|
131200
|
+
'"十"': "+",
|
|
131201
|
+
'"ῡ"': "\\bar{u}",
|
|
131202
|
+
'"ȼ"': "c",
|
|
131203
|
+
'"Χ"': "\\mathsf{X}",
|
|
131204
|
+
'"ₙ"': "_{n}",
|
|
131205
|
+
'"T"': "T",
|
|
131206
|
+
'"∙"': "\\cdot",
|
|
131207
|
+
'"〗"': "\\rangle",
|
|
131208
|
+
'"〖"': "\\langle",
|
|
131209
|
+
'";"': ";",
|
|
131210
|
+
'"𝛽"': "\\beta",
|
|
131211
|
+
'"⍵"': "\\omega",
|
|
131212
|
+
'"℘"': "\\wp",
|
|
131213
|
+
'"𝜋"': "\\pi",
|
|
131214
|
+
'"𝜓"': "\\psi",
|
|
131215
|
+
'"⍬"': "\\theta",
|
|
131216
|
+
'"𝜑"': "\\varphi",
|
|
131217
|
+
'"⍴"': "\\rho",
|
|
131218
|
+
'"🇽"': "x",
|
|
131219
|
+
'"𝞮"': "\\epsilon",
|
|
131220
|
+
'"𝜙"': "\\phi",
|
|
131221
|
+
'"𝛿"': "\\delta",
|
|
131222
|
+
'"$"': "\\$",
|
|
131223
|
+
'"m"': "m",
|
|
131224
|
+
'"𝚵"': "\\Xi",
|
|
131225
|
+
'"𝑝"': "p",
|
|
131226
|
+
'"𝑞"': "q",
|
|
131227
|
+
'"𝑠"': "s",
|
|
131228
|
+
'"𝑡"': "t",
|
|
131229
|
+
'"𝑢"': "u",
|
|
131230
|
+
'"𝑣"': "v",
|
|
131231
|
+
'"𝑤"': "w",
|
|
131232
|
+
'"𝑎"': "a",
|
|
131233
|
+
'"𝑏"': "b",
|
|
131234
|
+
'"𝑐"': "c",
|
|
131235
|
+
'"𝑑"': "d",
|
|
131236
|
+
'"𝑓"': "f",
|
|
131237
|
+
'"𝑔"': "g",
|
|
131238
|
+
'"𝑙"': "l",
|
|
131239
|
+
'"𝑛"': "n",
|
|
131240
|
+
'"𝑜"': "o",
|
|
131241
|
+
'"𝔀"': "w",
|
|
131242
|
+
'"𝚟"': "v"
|
|
131243
|
+
}, t.allMathSymbolsByGlyph = {
|
|
131076
131244
|
" ": "\\textrm{ }",
|
|
131077
131245
|
"∃": "\\exists",
|
|
131078
131246
|
"∀": "\\forall",
|
|
@@ -131088,7 +131256,6 @@ var bundle_min = {
|
|
|
131088
131256
|
"⋮": "\\vdots",
|
|
131089
131257
|
"∵": "\\because",
|
|
131090
131258
|
"∴": "\\therefore",
|
|
131091
|
-
ℵ: "\\aleph",
|
|
131092
131259
|
"∅": "\\emptyset",
|
|
131093
131260
|
"±": "\\pm",
|
|
131094
131261
|
"∇": "\\nabla",
|
|
@@ -131118,162 +131285,34 @@ var bundle_min = {
|
|
|
131118
131285
|
"⋆": "\\star",
|
|
131119
131286
|
"∗": "\\star",
|
|
131120
131287
|
"⋅": "\\cdot",
|
|
131121
|
-
Ω: "\\Omega",
|
|
131122
|
-
ω: "\\omega",
|
|
131123
|
-
Ψ: "\\Psi",
|
|
131124
|
-
ψ: "\\psi",
|
|
131125
|
-
χ: "\\chi",
|
|
131126
|
-
φ: "\\varphi",
|
|
131127
|
-
Φ: "\\Phi",
|
|
131128
|
-
ϕ: "\\phi",
|
|
131129
|
-
υ: "\\upsilon",
|
|
131130
|
-
τ: "\\tau",
|
|
131131
|
-
Σ: "\\Sigma",
|
|
131132
|
-
σ: "\\sigma",
|
|
131133
|
-
ρ: "\\rho",
|
|
131134
|
-
Π: "\\Pi",
|
|
131135
|
-
π: "\\pi",
|
|
131136
|
-
Ξ: "\\Xi",
|
|
131137
|
-
ξ: "\\xi",
|
|
131138
|
-
ν: "\\nu",
|
|
131139
|
-
μ: "\\mu",
|
|
131140
|
-
Λ: "\\Lambda",
|
|
131141
|
-
λ: "\\lambda",
|
|
131142
|
-
κ: "\\kappa",
|
|
131143
|
-
ι: "\\iota",
|
|
131144
|
-
ϑ: "\\vartheta",
|
|
131145
|
-
Θ: "\\Theta",
|
|
131146
|
-
θ: "\\theta",
|
|
131147
|
-
η: "\\eta",
|
|
131148
|
-
ζ: "\\zeta",
|
|
131149
|
-
ɛ: "\\varepsilon",
|
|
131150
|
-
ε: "\\epsilon",
|
|
131151
|
-
Δ: "\\Delta",
|
|
131152
|
-
δ: "\\delta",
|
|
131153
|
-
Γ: "\\Gamma",
|
|
131154
|
-
γ: "\\gamma",
|
|
131155
|
-
β: "\\beta",
|
|
131156
|
-
α: "\\alpha",
|
|
131157
131288
|
"∞": "\\infty",
|
|
131158
|
-
ϵ: "\\epsilon",
|
|
131159
|
-
µ: "\\mu",
|
|
131160
131289
|
"²": "^{2}",
|
|
131161
|
-
ı: "\\imath",
|
|
131162
131290
|
"∎": "\\blacksquare",
|
|
131163
|
-
ม: "\\mathbf{m}",
|
|
131164
|
-
Ω: "\\Omega",
|
|
131165
131291
|
"⟲": "\\circlearrowleft",
|
|
131166
131292
|
"⟳": "\\circlearrowright",
|
|
131167
|
-
त: " ",
|
|
131168
131293
|
"¥": "\\yen",
|
|
131169
131294
|
"⁽": "^{(}",
|
|
131170
131295
|
"⁾": "^{)}",
|
|
131171
|
-
ß: "\\ss",
|
|
131172
|
-
Ћ: "\\hbar",
|
|
131173
131296
|
"⦵": "\\ominus",
|
|
131174
131297
|
"⊿": "\\bigtriangleup",
|
|
131175
131298
|
"↛'": "\\nrightarrow",
|
|
131176
131299
|
"†": "\\dagger",
|
|
131177
|
-
เ: "\\prime",
|
|
131178
|
-
白: " ",
|
|
131179
131300
|
"⿱": " ",
|
|
131180
|
-
ℸ: "\\wp",
|
|
131181
|
-
퓰: " ",
|
|
131182
|
-
ⁿ: "^{n}",
|
|
131183
131301
|
"✔": "\\checkmark",
|
|
131184
131302
|
"✗": "\\times",
|
|
131185
131303
|
"½": "\\dfrac{1}{2}",
|
|
131186
|
-
Ө: "\\theta",
|
|
131187
131304
|
"✓": "\\checkmark",
|
|
131188
131305
|
"⟩": "\\rangle",
|
|
131189
131306
|
"⟨": "\\langle",
|
|
131190
131307
|
"〈": "\\langle",
|
|
131191
131308
|
"¼": "\\dfrac{1}{4}",
|
|
131192
131309
|
"…": "\\ldots",
|
|
131193
|
-
ℏ: "\\hbar",
|
|
131194
|
-
ℜ: "\\mathfrak{R}",
|
|
131195
|
-
Ѳ: "\\theta",
|
|
131196
|
-
Ø: "\\emptyset",
|
|
131197
|
-
ϱ: "\\varrho",
|
|
131198
|
-
ф: "\\phi",
|
|
131199
|
-
T: "T",
|
|
131200
|
-
"∙": "\\cdot",
|
|
131201
|
-
Ρ: "P",
|
|
131202
|
-
ᐁ: "\\nabla",
|
|
131203
|
-
ƞ: "\\eta",
|
|
131204
|
-
ɣ: "\\gamma",
|
|
131205
|
-
ћ: "\\hbar",
|
|
131206
|
-
Ɛ: "\\varepsilon",
|
|
131207
|
-
ⅅ: "\\_{D}",
|
|
131208
|
-
𝜆: "\\lambda",
|
|
131209
|
-
"〗": "\\rangle",
|
|
131210
|
-
"〖": "\\langle",
|
|
131211
|
-
";": ";",
|
|
131212
|
-
𝑥: "x",
|
|
131213
|
-
𝑦: "y",
|
|
131214
|
-
𝑧: "z",
|
|
131215
|
-
𝑖: "i",
|
|
131216
|
-
𝑗: "j",
|
|
131217
|
-
𝑘: "k",
|
|
131218
|
-
𝑚: "m",
|
|
131219
|
-
𝑒: "e",
|
|
131220
|
-
𝑟: "r",
|
|
131221
|
-
ɳ: "\\eta",
|
|
131222
|
-
𝛽: "\\beta",
|
|
131223
|
-
"⍵": "\\omega",
|
|
131224
|
-
℘: "\\wp",
|
|
131225
|
-
𝜋: "\\pi",
|
|
131226
|
-
Є: "\\epsilon",
|
|
131227
|
-
є: "\\epsilon",
|
|
131228
|
-
𝜀: "\\epsilon",
|
|
131229
|
-
п: "\\pi",
|
|
131230
|
-
Ν: "\\nu",
|
|
131231
|
-
ɵ: "\\theta",
|
|
131232
|
-
𝜓: "\\psi",
|
|
131233
|
-
ϴ: "\\theta",
|
|
131234
|
-
ɸ: "\\phi",
|
|
131235
|
-
Ӷ: "\\Gamma",
|
|
131236
|
-
ɭ: "\\ell",
|
|
131237
|
-
ʋ: "\\upsilon",
|
|
131238
|
-
𝛟: "\\varphi",
|
|
131239
|
-
"⍬": "\\theta",
|
|
131240
|
-
Ф: "\\Phi",
|
|
131241
|
-
𝜑: "\\varphi",
|
|
131242
|
-
ⅈ: "i",
|
|
131243
|
-
ο: "o",
|
|
131244
|
-
ơ: "o",
|
|
131245
|
-
ƒ: "f",
|
|
131246
|
-
"⍴": "\\rho",
|
|
131247
|
-
"🇽": "x",
|
|
131248
|
-
𝑝: "p",
|
|
131249
|
-
𝑞: "q",
|
|
131250
|
-
𝑠: "s",
|
|
131251
|
-
𝑡: "t",
|
|
131252
|
-
𝑢: "u",
|
|
131253
|
-
𝑣: "v",
|
|
131254
|
-
𝑤: "w",
|
|
131255
|
-
𝑎: "a",
|
|
131256
|
-
𝑏: "b",
|
|
131257
|
-
𝑐: "c",
|
|
131258
|
-
𝑑: "d",
|
|
131259
|
-
𝑓: "f",
|
|
131260
|
-
𝑔: "g",
|
|
131261
|
-
𝑙: "l",
|
|
131262
|
-
𝑛: "n",
|
|
131263
|
-
𝑜: "o",
|
|
131264
|
-
𝔀: "w",
|
|
131265
|
-
𝚟: "v",
|
|
131266
|
-
ṁ: "m",
|
|
131267
131310
|
"൦": "\\circ",
|
|
131268
131311
|
"┴": "\\perp",
|
|
131269
131312
|
"✕": "\\times",
|
|
131270
131313
|
"∣": "\\mid",
|
|
131271
|
-
Փ: "\\Phi",
|
|
131272
131314
|
"⎜": "\\mid",
|
|
131273
|
-
ħ: "\\hbar",
|
|
131274
|
-
ፈ: " ",
|
|
131275
131315
|
"⦨": "\\llbracket",
|
|
131276
|
-
ế: "\\hat{e}",
|
|
131277
131316
|
"¢": "\\cent",
|
|
131278
131317
|
"⤹": "\\downarrow",
|
|
131279
131318
|
"⤸": "\\downarrow",
|
|
@@ -131285,17 +131324,7 @@ var bundle_min = {
|
|
|
131285
131324
|
"|": "\\mid",
|
|
131286
131325
|
"⎥": "\\mid",
|
|
131287
131326
|
"♥": "\\heartsuit",
|
|
131288
|
-
О: "0",
|
|
131289
|
-
Υ: "Y",
|
|
131290
|
-
х: "x",
|
|
131291
|
-
𝓏: "z",
|
|
131292
|
-
𝓎: "y",
|
|
131293
|
-
𝓍: "x",
|
|
131294
|
-
р: "p",
|
|
131295
|
-
а: "a",
|
|
131296
131327
|
"£": "\\pounds",
|
|
131297
|
-
m: "m",
|
|
131298
|
-
𝚵: "\\Xi",
|
|
131299
131328
|
"⓪": "\\textcircled{0}",
|
|
131300
131329
|
"①": "\\textcircled{1}",
|
|
131301
131330
|
"②": "\\textcircled{2}",
|
|
@@ -131351,7 +131380,6 @@ var bundle_min = {
|
|
|
131351
131380
|
"‖": "\\parallel",
|
|
131352
131381
|
"%": "\\%",
|
|
131353
131382
|
"“": "\\text{``}",
|
|
131354
|
-
$: "\\$",
|
|
131355
131383
|
"#": "\\#",
|
|
131356
131384
|
"℃": "\\text{\\textdegree C}",
|
|
131357
131385
|
"℉": "\\text{\\textdegree F}",
|
|
@@ -131361,67 +131389,47 @@ var bundle_min = {
|
|
|
131361
131389
|
"⌊": "\\lfloor",
|
|
131362
131390
|
"⌉": "\\rceil",
|
|
131363
131391
|
"⌈": "\\lceil",
|
|
131364
|
-
ℇ: "\\varepsilon",
|
|
131365
|
-
ⅇ: "\\text{e}",
|
|
131366
|
-
ɼ: "r",
|
|
131367
131392
|
"↛": "\\nrightarrow",
|
|
131368
|
-
ˆ: "\\hat{}",
|
|
131369
131393
|
"‾": "\\overline",
|
|
131370
131394
|
"→": "\\rightarrow",
|
|
131371
131395
|
"‡": "\\ddagger",
|
|
131372
131396
|
"・": "\\cdot",
|
|
131373
131397
|
"▱": "\\square",
|
|
131374
131398
|
"∆": "\\Delta",
|
|
131375
|
-
ἱ: "i",
|
|
131376
131399
|
"∡": "\\angle",
|
|
131377
|
-
ϒ: "\\Upsilon",
|
|
131378
131400
|
"↓": "\\downarrow",
|
|
131379
131401
|
"↑": "\\uparrow",
|
|
131380
131402
|
"»": "\\gg",
|
|
131381
131403
|
"⊤": "\\top",
|
|
131382
131404
|
"⧸": "/",
|
|
131383
|
-
𝛿: "\\delta",
|
|
131384
131405
|
"˳": "\\cdot",
|
|
131385
131406
|
"։": ":",
|
|
131386
131407
|
"⦪": "\\measuredangle",
|
|
131387
131408
|
"⦩": "\\measuredangle",
|
|
131388
131409
|
"⦫": "\\measuredangle",
|
|
131389
131410
|
"⦁": "\\cdot",
|
|
131390
|
-
ѳ: "\\theta",
|
|
131391
131411
|
"⦢": "\\measuredangle",
|
|
131392
131412
|
"¸": ",",
|
|
131393
131413
|
"⎻": "\\overline",
|
|
131394
131414
|
"⟦": "\\llbracket",
|
|
131395
|
-
𝜙: "\\phi",
|
|
131396
|
-
П: "\\prod",
|
|
131397
|
-
о: "o",
|
|
131398
131415
|
"≈": "\\approx",
|
|
131399
131416
|
"≤": "\\leq",
|
|
131400
|
-
ђ: "\\hbar",
|
|
131401
|
-
Ʌ: "\\Lambda",
|
|
131402
|
-
土: "\\pm",
|
|
131403
131417
|
"⎼": "-",
|
|
131404
|
-
十: "+",
|
|
131405
131418
|
"≠": "\\neq",
|
|
131406
131419
|
"←": "\\leftarrow",
|
|
131407
131420
|
"।": "\\mid",
|
|
131408
131421
|
"€": "\\euro",
|
|
131409
131422
|
"˘": " ",
|
|
131410
|
-
ῡ: "\\bar{u}",
|
|
131411
131423
|
"∥": "\\parallel",
|
|
131412
131424
|
"↔": "\\leftrightarrow",
|
|
131413
131425
|
"√": "\\sqrt{}",
|
|
131414
|
-
ȼ: "c",
|
|
131415
|
-
𝞮: "\\epsilon",
|
|
131416
131426
|
"·": "\\cdot",
|
|
131417
131427
|
"⦬": "\\measuredangle",
|
|
131418
131428
|
"⦮": "\\measuredangle",
|
|
131419
131429
|
"⦭": "\\measuredangle",
|
|
131420
131430
|
"«": "\\ll",
|
|
131421
|
-
Χ: "\\mathsf{X}",
|
|
131422
131431
|
"│": "\\mid",
|
|
131423
131432
|
"〉": "\\rangle",
|
|
131424
|
-
ₙ: "_{n}",
|
|
131425
131433
|
"▫": "\\square",
|
|
131426
131434
|
"●": "\\circle",
|
|
131427
131435
|
"”": '\\"'
|
|
@@ -131454,7 +131462,10 @@ var bundle_min = {
|
|
|
131454
131462
|
2103: (e, t) => {
|
|
131455
131463
|
(Object.defineProperty(t, "__esModule", {
|
|
131456
131464
|
value: !0
|
|
131457
|
-
}), t.mathNumberByGlyph = void 0, t.
|
|
131465
|
+
}), t.mathNumberByGlyph = t.mathNumberByGlyphSpecial = void 0, t.mathNumberByGlyphSpecial = {
|
|
131466
|
+
'"ⁿ"': "^{n}",
|
|
131467
|
+
'"ₙ"': "_{n}"
|
|
131468
|
+
}, t.mathNumberByGlyph = {
|
|
131458
131469
|
"₀": "_{0}",
|
|
131459
131470
|
"₁": "_{1}",
|
|
131460
131471
|
"₂": "_{2}",
|
|
@@ -131475,8 +131486,6 @@ var bundle_min = {
|
|
|
131475
131486
|
"⁷": "^{7}",
|
|
131476
131487
|
"⁸": "^{8}",
|
|
131477
131488
|
"⁹": "^{9}",
|
|
131478
|
-
ⁿ: "^{n}",
|
|
131479
|
-
ₙ: "_{n}",
|
|
131480
131489
|
"⓪": "\\textcircled{0}",
|
|
131481
131490
|
"①": "\\textcircled{1}",
|
|
131482
131491
|
"②": "\\textcircled{2}",
|
|
@@ -158162,9 +158171,20 @@ const require$$22 = _dll_classnames;
|
|
|
158162
158171
|
html: htmlPluginOpts,
|
|
158163
158172
|
image: {
|
|
158164
158173
|
disableImageAlignmentButtons: props.disableImageAlignmentButtons,
|
|
158165
|
-
onDelete: props.imageSupport && props.imageSupport["delete"] && (function (
|
|
158174
|
+
onDelete: props.imageSupport && props.imageSupport["delete"] && (function (node, done) {
|
|
158175
|
+
var src = node.data.get('src');
|
|
158166
158176
|
props.imageSupport["delete"](src, function (e) {
|
|
158167
|
-
|
|
158177
|
+
var newPendingImages = _this.state.pendingImages.filter(function (img) {
|
|
158178
|
+
return img.key !== node.key;
|
|
158179
|
+
});
|
|
158180
|
+
var oldScheduled = _this.state.scheduled;
|
|
158181
|
+
var newState = {
|
|
158182
|
+
pendingImages: newPendingImages,
|
|
158183
|
+
scheduled: oldScheduled && newPendingImages.length === 0 ? false : oldScheduled
|
|
158184
|
+
};
|
|
158185
|
+
_this.setState(newState, function () {
|
|
158186
|
+
return done(e, _this.state.value);
|
|
158187
|
+
});
|
|
158168
158188
|
});
|
|
158169
158189
|
}),
|
|
158170
158190
|
insertImageRequested: props.imageSupport && (function (addedImage, getHandler) {
|