* fix(components): [table] fix the bug of the expand-row-keys property
* fix(components): [table] fix the bug of the expand-row-keys property
Fix the issue where the expand-row-keys property does not support the number type
* fix(components): [table] fix the bug of the expand-row-keys property
Fix the issue where the expand-row-keys property does not support the number type
* fix(components): [table] Use Map instead of Object to handle number keys
Use Map instead of Object to solve the problem of number keys
* fix(components): [table] fix the bug of the expand-row-keys property
1.expandRowKeys should be of type Array<string | number> ✔
2.It would be better to add types to new Map() ✔
3.It would be better to add relevant test cases ✔
* fix(components): [table] fix the bug of the expand-row-keys property
1. expandRowKeys should be of type Array<string | number> ✔
2. It would be better to add types to new Map() ✔
3. It would be better to add relevant test cases ✔
* fix(components): [table] fix the bug of the expand-row-keys property
1. expandRowKeys should be of type Array<string | number> ✔
2. It would be better to add types to new Map() ✔
3. It would be better to add relevant test cases ✔
* fix(components): [table] fix the bug of the expand-row-keys property
1.table.md ✔
2.add a test for mixed strings and numbers ✔
* fix(components): [table] fix the bug of the expand-row-keys property
1.table.md ✔
2.add a test for mixed strings and numbers ✔
* fix(components): [table] fix the bug of the expand-row-keys property
1. table-test-common.ts ✔
2. table.md ✔
3. tree.ts -- changed to: new Map<string | number, object>() ✔
* fix(components): [table] fix the bug of the expand-row-keys property
fix(components): [table] fix the bug of the expand-row-keys property
* fix(components): [table] fix the bug of the expand-row-keys property
fix(components): [table] fix the bug of the expand-row-keys property
* fix(components): [table] fix the bug of the expand-row-keys property
fix(components): [table] fix the bug of the expand-row-keys property
* fix(components): [table] fix packages/components/table/src/store/tree.ts
fix(components): [table] fix packages/components/table/src/store/tree.ts
* chore: update test cases
* chore: update version
* fix(components): [table] fix the bug of the expand-row-keys property
Fix the issue where the expand-row-keys property does not support the number type
---------
Co-authored-by: warmthsea <2586244885@qq.com>
* fix(components): [table] shrinked table expanded when modify data
* fix(components): [table] type check error
* fix(components): [table] update test case
* fix(components): [table] selection is not updated when length is 0
* fix(components): [table] selection reference when toggleAllSelection
* feat: add test
* fix(components): table
table row has rowspan when hover it only has background on the first row of this colspan
* fix(components): table
fixed when hover on a rowspan > 1 cell give the whole rows background
* fix(components): [table]
fixed hover on merged cell give the background of the whole rows
* Update events-helper.ts
import addClass removeClass
* Update events-helper.ts
fixed rowspan > 2 and data not enough
* fix(components): [table]
add test case for hover on rowspan > 2
* fix(components): [table]
use getTestData is better
* Update table.test.ts
use getTestData instead
* Update table.test.ts
change templete label prop
* fix(components): [table]
drop comments and clear hoveredCell array after use
* fix(components): [table]
when there is fixed row, hover on rowSpan > 1 should not clear the class
---------
Co-authored-by: dwaynewdong <dwaynewdong@tencent.com>