@visactor/vtable-gantt 1.10.3-alpha.0 → 1.10.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/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/dist/vtable-gantt.js +6 -18
- package/dist/vtable-gantt.min.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/package.json +6 -6
package/cjs/index.d.ts
CHANGED
|
@@ -5,5 +5,5 @@ import { Gantt } from './Gantt';
|
|
|
5
5
|
import * as tools from './tools';
|
|
6
6
|
import * as VRender from './vrender';
|
|
7
7
|
import * as VTable from './vtable';
|
|
8
|
-
export declare const version = "1.10.3
|
|
8
|
+
export declare const version = "1.10.3";
|
|
9
9
|
export { TYPES, GanttConstructorOptions, Gantt, ColumnsDefine, ColumnDefine, LinkColumnDefine, ChartColumnDefine, ImageColumnDefine, SparklineColumnDefine, ProgressbarColumnDefine, TextColumnDefine, GroupColumnDefine, TextAlignType, TextBaselineType, tools, VRender, VTable };
|
package/cjs/index.js
CHANGED
package/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,kDAAoC;AAuBlC,sBAAK;AATP,mCAAgC;AAW9B,sFAXO,aAAK,OAWP;AAVP,+CAAiC;AAsB/B,sBAAK;AArBP,mDAAqC;AAsBnC,0BAAO;AArBT,iDAAmC;AAsBjC,wBAAM;AArBK,QAAA,OAAO,GAAG,
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,kDAAoC;AAuBlC,sBAAK;AATP,mCAAgC;AAW9B,sFAXO,aAAK,OAWP;AAVP,+CAAiC;AAsB/B,sBAAK;AArBP,mDAAqC;AAsBnC,0BAAO;AArBT,iDAAmC;AAsBjC,wBAAM;AArBK,QAAA,OAAO,GAAG,QAAQ,CAAC","file":"index.js","sourcesContent":["import type { GanttConstructorOptions } from './ts-types';\nimport * as TYPES from './ts-types';\nimport type {\n ColumnDefine,\n ColumnsDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType\n} from '@visactor/vtable';\nimport { Gantt } from './Gantt';\nimport * as tools from './tools';\nimport * as VRender from './vrender';\nimport * as VTable from './vtable';\nexport const version = \"1.10.3\";\n/**\n * @namespace VTable\n */\nexport {\n TYPES,\n GanttConstructorOptions,\n Gantt,\n ColumnsDefine,\n ColumnDefine,\n LinkColumnDefine,\n ChartColumnDefine,\n ImageColumnDefine,\n SparklineColumnDefine,\n ProgressbarColumnDefine,\n TextColumnDefine,\n GroupColumnDefine,\n TextAlignType,\n TextBaselineType,\n tools,\n VRender,\n VTable\n};\n"]}
|
package/dist/vtable-gantt.js
CHANGED
|
@@ -33943,7 +33943,7 @@
|
|
|
33943
33943
|
width: width,
|
|
33944
33944
|
height: height
|
|
33945
33945
|
} = attribute;
|
|
33946
|
-
return this._AABBBounds.setValue(x, y, x + width, y + height), this.parent && this.parent.addChildUpdateBoundTag(), this.clearUpdateBoundTag(), this.
|
|
33946
|
+
return this._AABBBounds.setValue(x, y, x + width, y + height), this.parent && this.parent.addChildUpdateBoundTag(), this.clearUpdateBoundTag(), this._AABBBounds;
|
|
33947
33947
|
}
|
|
33948
33948
|
return "body" === this.role || "row-header" === this.role || "col-header" === this.role || "right-frozen" === this.role || "bottom-frozen" === this.role || "corner-header" === this.role || "corner-right-top-header" === this.role || "corner-right-bottom-header" === this.role || "corner-left-bottom-header" === this.role ? (this._AABBBounds.setValue(-1 / 0, -1 / 0, 1 / 0, 1 / 0), this.parent && this.parent.addChildUpdateBoundTag(), this.clearUpdateBoundTag(), this.shadowRoot && this.shadowRoot.tryUpdateAABBBounds(), this._AABBBounds) : super.doUpdateAABBBounds();
|
|
33949
33949
|
}
|
|
@@ -34666,18 +34666,6 @@
|
|
|
34666
34666
|
}).catch(err => {});
|
|
34667
34667
|
}
|
|
34668
34668
|
|
|
34669
|
-
function onBeforeAttributeUpdateForInvertHighlight(val, attribute) {
|
|
34670
|
-
var _a, _b;
|
|
34671
|
-
const graphic = this;
|
|
34672
|
-
if (graphic.shadowRoot && graphic.shadowRoot.childrenCount && (isValid$1(val.width) || isValid$1(val.height))) {
|
|
34673
|
-
const shadowRect = graphic.shadowRoot.findChildrenByName("shadow-rect")[0];
|
|
34674
|
-
shadowRect && shadowRect.setAttributes({
|
|
34675
|
-
width: null !== (_a = val.width) && void 0 !== _a ? _a : shadowRect.attribute.width,
|
|
34676
|
-
height: null !== (_b = val.height) && void 0 !== _b ? _b : shadowRect.attribute.height
|
|
34677
|
-
});
|
|
34678
|
-
}
|
|
34679
|
-
}
|
|
34680
|
-
|
|
34681
34669
|
function createCell(type, value, define, table, col, row, colWidth, cellWidth, cellHeight, columnGroup, y, padding, textAlign, textBaseline, mayHaveIcon, cellTheme, range, customResult) {
|
|
34682
34670
|
var _a, _b;
|
|
34683
34671
|
let cellGroup,
|
|
@@ -34737,7 +34725,7 @@
|
|
|
34737
34725
|
} else if ("radio" === type) {
|
|
34738
34726
|
cellGroup = Factory.getFunction("createRadioCellGroup")(null, columnGroup, 0, y, col, row, colWidth, cellWidth, cellHeight, padding, textAlign, textBaseline, table, cellTheme, define);
|
|
34739
34727
|
}
|
|
34740
|
-
return cellGroup
|
|
34728
|
+
return cellGroup;
|
|
34741
34729
|
}
|
|
34742
34730
|
function updateCell$1(col, row, table, addNew, isShadow) {
|
|
34743
34731
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|
|
@@ -35251,7 +35239,7 @@
|
|
|
35251
35239
|
const layoutMap = table.internalProps.layoutMap;
|
|
35252
35240
|
table.isPivotTable() && (layoutMap.enableUseGetBodyCache(), layoutMap.enableUseHeaderPathCache()), table.defaultHeaderRowHeight, table.defaultHeaderColWidth;
|
|
35253
35241
|
const isDefaultHeaderHasAuto = "auto" === table.defaultHeaderRowHeight || isArray$1(table.defaultHeaderRowHeight) && table.defaultHeaderRowHeight.some(item => "auto" === item),
|
|
35254
|
-
isAllRowsAuto = "autoHeight" === table.heightMode || "adaptive" === table.heightMode
|
|
35242
|
+
isAllRowsAuto = "autoHeight" === table.heightMode || "adaptive" === table.heightMode;
|
|
35255
35243
|
if (isAllRowsAuto || isDefaultHeaderHasAuto) {
|
|
35256
35244
|
rowStart = null != rowStart ? rowStart : 0, rowEnd = null != rowEnd ? rowEnd : table.rowCount - 1, (0 === rowStart && rowEnd === table.rowCount - 1 || isClearRowRangeHeightsMap) && table._clearRowRangeHeightsMap();
|
|
35257
35245
|
for (let row = rowStart; row < table.columnHeaderLevelCount; row++) {
|
|
@@ -35259,7 +35247,7 @@
|
|
|
35259
35247
|
endCol = table.colCount - 1;
|
|
35260
35248
|
if ((table.isPivotTable() && !table.isPivotChart() || table.isPivotChart() && !table.internalProps.layoutMap.indicatorsAsCol) && checkPivotFixedStyleAndNoWrap(table, row) && !getCellMergeInfo(table, table.rowHeaderLevelCount, row) && (startCol = 0, endCol = table.rowHeaderLevelCount), isAllRowsAuto || "auto" === table.getDefaultRowHeight(row)) {
|
|
35261
35249
|
const height = computeRowHeight(row, startCol, endCol, table);
|
|
35262
|
-
newHeights[row] = Math.round(height),
|
|
35250
|
+
newHeights[row] = Math.round(height), table._setRowHeight(row, height);
|
|
35263
35251
|
}
|
|
35264
35252
|
}
|
|
35265
35253
|
for (let row = table.rowCount - table.bottomFrozenRowCount; row <= rowEnd; row++) if (isAllRowsAuto || "auto" === table.getDefaultRowHeight(row)) {
|
|
@@ -47314,7 +47302,7 @@
|
|
|
47314
47302
|
constructor(container) {
|
|
47315
47303
|
let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
47316
47304
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
47317
|
-
if (super(), this.showFrozenIcon = !0, this.version = "1.10.3
|
|
47305
|
+
if (super(), this.showFrozenIcon = !0, this.version = "1.10.3", this.id = `VTable${Date.now()}`, this.isReleased = !1, this._chartEventMap = {}, this.throttleInvalidate = throttle2(this.render.bind(this), 200), !container && "node" !== options.mode && !options.canvas) throw new Error("vtable's container is undefined");
|
|
47318
47306
|
const {
|
|
47319
47307
|
frozenColCount = 0,
|
|
47320
47308
|
frozenRowCount: frozenRowCount,
|
|
@@ -57156,7 +57144,7 @@
|
|
|
57156
57144
|
themes: themes$1
|
|
57157
57145
|
});
|
|
57158
57146
|
|
|
57159
|
-
const version = "1.10.3
|
|
57147
|
+
const version = "1.10.3";
|
|
57160
57148
|
|
|
57161
57149
|
exports.Gantt = Gantt;
|
|
57162
57150
|
exports.TYPES = index$2;
|