arthub-table 0.2.23 → 0.2.24

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.
@@ -154,6 +154,13 @@ declare class Body {
154
154
  * 如果为 undefined,则从 this.data 中直接读取(适用于外部已直接修改 data 数组的场景)
155
155
  */
156
156
  refreshColumnData(colKeys: string[], newDataByKey?: Record<string, any>[]): void;
157
+ /**
158
+ * 图片列专用脏检查:提取实际 URL 比较,忽略 string↔object 类型震荡
159
+ * 和对象引用差异(每次 refreshColumnData 传入新对象但内容相同)。
160
+ */
161
+ private _imageValueChanged;
162
+ /** 从 value 中提取图片 URL 数组 */
163
+ private _extractImageUrls;
157
164
  updateCellData(_colIndex: number): void;
158
165
  /**
159
166
  * 获取所有选中的行对象(返回Row对象而不是RowData)
@@ -1053,6 +1053,8 @@ declare class DataGrid {
1053
1053
  private isDirty;
1054
1054
  private lastScrollX;
1055
1055
  private lastScrollY;
1056
+ /** [FLICKER-DEBUG] draw 日志节流时间戳 */
1057
+ _lastDrawLogTime: number;
1056
1058
  private _afterRenderListeners;
1057
1059
  private _renderErrorCount;
1058
1060
  private _renderPaused;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arthub-table",
3
- "version": "0.2.23",
3
+ "version": "0.2.24",
4
4
  "description": "High-performance canvas-based table/grid component for Vue 3 with TypeScript support, featuring virtual scrolling, cell viewers, grouped rows, and nested grids.",
5
5
  "main": "dist/arthub-table.common.js",
6
6
  "module": "dist/arthub-table.umd.min.js",