123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- "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.CommonMtdMixin = void 0;
- function CommonMtdMixin(Base) {
- return (function (_super) {
- __extends(class_1, _super);
- function class_1() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- Object.defineProperty(class_1.prototype, "fixesPWidth", {
- get: function () {
- return false;
- },
- enumerable: false,
- configurable: true
- });
- class_1.prototype.invalidateBBox = function () {
- this.bboxComputed = false;
- };
- class_1.prototype.getWrapWidth = function (_j) {
- var table = this.parent.parent;
- var row = this.parent;
- var i = this.node.childPosition() - (row.labeled ? 1 : 0);
- return (typeof (table.cWidths[i]) === 'number' ? table.cWidths[i] : table.getTableData().W[i]);
- };
- class_1.prototype.getChildAlign = function (_i) {
- return this.node.attributes.get('columnalign');
- };
- return class_1;
- }(Base));
- }
- exports.CommonMtdMixin = CommonMtdMixin;
- //# sourceMappingURL=mtd.js.map
|