-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…2893 (#2934) * fix: 开启自定义行列头时, 不应该渲染总计节点和组内排序 icon closes #2898 #2893 * docs: 优化文档 * test: 更新单测 * fix: 明细表非叶子节点不渲染 sort icon * test: 修复单测 * fix: 兼容自定义布局时 dataset 层对象类型 field 的定位处理 * fix: lint fix * refactor: 移除 todo 代码 * feat: 增加自定义行列头对总计小计的支持 * docs: 文档更新 * refactor: 移除 CustomTreeDataSet * test: 增加单测 * test: 单测修复 * test: 单测修复 * refactor: 去除注释 * refactor: 还原 custom-tree 单测 --------- Co-authored-by: wjgogogo <[email protected]>
- Loading branch information
1 parent
d328598
commit a4ae432
Showing
23 changed files
with
252 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 0 additions & 64 deletions
64
packages/s2-core/src/data-set/custom-tree-pivot-data-set.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
import { BaseDataSet } from './base-data-set'; | ||
import { CustomGridPivotDataSet } from './custom-grid-pivot-data-set'; | ||
import { CustomTreePivotDataSet } from './custom-tree-pivot-data-set'; | ||
import { PivotDataSet } from './pivot-data-set'; | ||
import { TableDataSet } from './table-data-set'; | ||
|
||
export { CellData } from './cell-data'; | ||
|
||
export { | ||
BaseDataSet, | ||
CustomGridPivotDataSet, | ||
CustomTreePivotDataSet, | ||
PivotDataSet, | ||
TableDataSet, | ||
}; | ||
export { BaseDataSet, CustomGridPivotDataSet, PivotDataSet, TableDataSet }; | ||
|
||
export * from './interface'; |
Oops, something went wrong.