table icon indicating copy to clipboard operation
table copied to clipboard

React Table

Results 160 table issues
Sort by recently updated
recently updated
newest added

Bumps [react-window](https://github.com/bvaughn/react-window) from 1.8.11 to 2.2.5. Release notes Sourced from react-window's releases. 2.2.5 Use defaultHeight/defaultWidth prop to server render initial set of rows/cells Adjust TypeScript return type for rowComponent/cellComponent to...

dependencies
javascript

Bumps [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) from 3.2.4 to 4.0.17. Release notes Sourced from @​vitest/coverage-v8's releases. v4.0.17    🚀 Experimental Features Support openTelemetry for browser mode  -  by @​hi-ogawa in vitest-dev/vitest#9180 (1ec3a) Support TRACEPARENT and...

dependencies
javascript

Bumps [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) from 3.2.4 to 4.0.17. Release notes Sourced from vitest's releases. v4.0.17    🚀 Experimental Features Support openTelemetry for browser mode  -  by @​hi-ogawa in vitest-dev/vitest#9180 (1ec3a) Support TRACEPARENT and...

dependencies
javascript

Bumps [glob](https://github.com/isaacs/node-glob) from 11.1.0 to 13.0.0. Changelog Sourced from glob's changelog. changeglob 13 Move the CLI program out to a separate package, glob-bin. Install that if you'd like to continue...

dependencies
javascript

Bumps [eslint](https://github.com/eslint/eslint) from 8.57.1 to 9.39.2. Release notes Sourced from eslint's releases. v9.39.2 Bug Fixes 5705833 fix: warn when eslint-env configuration comments are found (#20381) (sethamus) Build Related 506f154 build:...

dependencies
javascript

This pull request introduces a new column sorting demo using drag-and-drop, refactors the column resizing demo to use React hooks, and adds the necessary dependencies for drag-and-drop functionality. The main...

Description When using rc-table with tree data structure (when dataSource contains children field), the rowExpandable configuration is completely ignored. This prevents developers from controlling which rows should be expandable based...

column 的 key 为空字符串会导致 fixed 失效 https://table-react-component.vercel.app/demo/virtual ![20251109113748_rec_](https://github.com/user-attachments/assets/cf9ac4e7-084d-4d48-94fc-cb7775010306) 原因是 getColumnsKey 使用了 || 导致空字符串被忽略,并且 BodyGrid 的 columnsWidth 的 key 没有使用 getColumnsKey 会有潜在导致 key 取值不一致的问题,不过现在 flattenColumns 默认都会被填充 key 所以没有问题 ## Summary by...

在用户侧Table外层自己加ResizeObserver是可以自定义实现的,希望这个能力直接放rc-table内。 建议实现maxWidth 逻辑, 或 导出column resize 的 prop,供用户自定义,以避免外层ResizeObserver定制

fix: prevent array bounds error in getColumnWidth calculation 当colSpan过大时,getColumnWidth 中数组越界,将产生样式错乱 ## Summary by CodeRabbit ## 发布说明 * **优化改进** * 改进了列宽度计算的内部逻辑,增强了边界验证和数据安全性。 * 优化了多列跨度场景下的计算准确性。