@visactor/vtable 1.17.1-alpha.0 → 1.17.1-alpha.2
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/PivotTable.d.ts +1 -0
- package/cjs/PivotTable.js +3 -0
- package/cjs/PivotTable.js.map +1 -1
- package/cjs/body-helper/body-helper.js +2 -1
- package/cjs/body-helper/style.js +1 -2
- package/cjs/core/BaseTable.js +1 -1
- package/cjs/core/BaseTable.js.map +1 -1
- package/cjs/dataset/dataset-pivot-table.js +2 -1
- package/cjs/edit/editors.js +1 -2
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/cjs/plugins/custom-cell-style.d.ts +1 -2
- package/cjs/plugins/custom-cell-style.js +1 -11
- package/cjs/plugins/custom-cell-style.js.map +1 -1
- package/cjs/scenegraph/scenegraph.js +1 -1
- package/cjs/scenegraph/scenegraph.js.map +1 -1
- package/cjs/ts-types/common.d.ts +1 -2
- package/cjs/ts-types/common.js.map +1 -1
- package/cjs/vrender.js.map +1 -1
- package/dist/vtable.js +7 -15
- package/dist/vtable.min.js +1 -1
- package/es/PivotTable.d.ts +1 -0
- package/es/PivotTable.js +3 -0
- package/es/PivotTable.js.map +1 -1
- package/es/body-helper/body-helper.js +2 -1
- package/es/body-helper/style.js +1 -2
- package/es/core/BaseTable.js +1 -1
- package/es/core/BaseTable.js.map +1 -1
- package/es/dataset/dataset-pivot-table.js +2 -1
- package/es/edit/editors.js +1 -2
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/es/index.js.map +1 -1
- package/es/plugins/custom-cell-style.d.ts +1 -2
- package/es/plugins/custom-cell-style.js +2 -12
- package/es/plugins/custom-cell-style.js.map +1 -1
- package/es/scenegraph/scenegraph.js +1 -1
- package/es/scenegraph/scenegraph.js.map +1 -1
- package/es/ts-types/common.d.ts +1 -2
- package/es/ts-types/common.js.map +1 -1
- package/es/vrender.js.map +1 -1
- package/package.json +4 -4
package/cjs/PivotTable.d.ts
CHANGED
|
@@ -102,5 +102,6 @@ export declare class PivotTable extends BaseTable implements PivotTableAPI {
|
|
|
102
102
|
setTreeNodeChildren(children: IHeaderTreeDefine[], records: any[], col: number, row: number): void;
|
|
103
103
|
updateFilterRules(filterRules: FilterRules): void;
|
|
104
104
|
getFilteredRecords(): FilterRules;
|
|
105
|
+
setLoadingHierarchyState(col: number, row: number): void;
|
|
105
106
|
release(): void;
|
|
106
107
|
}
|
package/cjs/PivotTable.js
CHANGED
|
@@ -960,6 +960,9 @@ class PivotTable extends BaseTable_1.BaseTable {
|
|
|
960
960
|
var _a;
|
|
961
961
|
return null === (_a = this.dataset) || void 0 === _a ? void 0 : _a.filterRules;
|
|
962
962
|
}
|
|
963
|
+
setLoadingHierarchyState(col, row) {
|
|
964
|
+
this.scenegraph.setLoadingHierarchyState(col, row);
|
|
965
|
+
}
|
|
963
966
|
release() {
|
|
964
967
|
this.editorManager.release(), super.release();
|
|
965
968
|
}
|