123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- if (typeof b !== "function" && b !== null)
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.CHTMLmtd = void 0;
- var Wrapper_js_1 = require("../Wrapper.js");
- var mtd_js_1 = require("../../common/Wrappers/mtd.js");
- var mtd_js_2 = require("../../../core/MmlTree/MmlNodes/mtd.js");
- var CHTMLmtd = (function (_super) {
- __extends(CHTMLmtd, _super);
- function CHTMLmtd() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- CHTMLmtd.prototype.toCHTML = function (parent) {
- _super.prototype.toCHTML.call(this, parent);
- var ralign = this.node.attributes.get('rowalign');
- var calign = this.node.attributes.get('columnalign');
- var palign = this.parent.node.attributes.get('rowalign');
- if (ralign !== palign) {
- this.adaptor.setAttribute(this.chtml, 'rowalign', ralign);
- }
- if (calign !== 'center' &&
- (this.parent.kind !== 'mlabeledtr' || this !== this.parent.childNodes[0] ||
- calign !== this.parent.parent.node.attributes.get('side'))) {
- this.adaptor.setStyle(this.chtml, 'textAlign', calign);
- }
- if (this.parent.parent.node.getProperty('useHeight')) {
- this.adaptor.append(this.chtml, this.html('mjx-tstrut'));
- }
- };
- CHTMLmtd.kind = mtd_js_2.MmlMtd.prototype.kind;
- CHTMLmtd.styles = {
- 'mjx-mtd': {
- display: 'table-cell',
- 'text-align': 'center',
- 'padding': '.215em .4em'
- },
- 'mjx-mtd:first-child': {
- 'padding-left': 0
- },
- 'mjx-mtd:last-child': {
- 'padding-right': 0
- },
- 'mjx-mtable > * > mjx-itable > *:first-child > mjx-mtd': {
- 'padding-top': 0
- },
- 'mjx-mtable > * > mjx-itable > *:last-child > mjx-mtd': {
- 'padding-bottom': 0
- },
- 'mjx-tstrut': {
- display: 'inline-block',
- height: '1em',
- 'vertical-align': '-.25em'
- },
- 'mjx-labels[align="left"] > mjx-mtr > mjx-mtd': {
- 'text-align': 'left'
- },
- 'mjx-labels[align="right"] > mjx-mtr > mjx-mtd': {
- 'text-align': 'right'
- },
- 'mjx-mtd[extra]': {
- padding: 0
- },
- 'mjx-mtd[rowalign="top"]': {
- 'vertical-align': 'top'
- },
- 'mjx-mtd[rowalign="center"]': {
- 'vertical-align': 'middle'
- },
- 'mjx-mtd[rowalign="bottom"]': {
- 'vertical-align': 'bottom'
- },
- 'mjx-mtd[rowalign="baseline"]': {
- 'vertical-align': 'baseline'
- },
- 'mjx-mtd[rowalign="axis"]': {
- 'vertical-align': '.25em'
- }
- };
- return CHTMLmtd;
- }((0, mtd_js_1.CommonMtdMixin)(Wrapper_js_1.CHTMLWrapper)));
- exports.CHTMLmtd = CHTMLmtd;
- //# sourceMappingURL=mtd.js.map
|