holyes-table 1.0.31 → 1.0.32

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.
@@ -110,6 +110,7 @@ declare const _default: __VLS_WithSlots<import('vue').DefineComponent<import('vu
110
110
  visibleData: any[];
111
111
  baseDataMap: Map<string, any>;
112
112
  };
113
+ refresh: () => void;
113
114
  setTreeExpand: (rows: any[], expanded: boolean) => Promise<void>;
114
115
  setAllTreeExpand: (isExpand: boolean) => void;
115
116
  clearTreeExpand: () => void;
@@ -166,4 +166,5 @@ export declare const useHolyesTable: (dataObj: {
166
166
  /** 表格数据映射 */
167
167
  baseDataMap: Map<string, any>;
168
168
  };
169
+ refresh: () => void;
169
170
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "holyes-table",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "合力思虚拟滚动表格组件",
5
5
  "main": "./dist/index.mjs",
6
6
  "module": "./dist/index.mjs",
@@ -1,5 +1,9 @@
1
1
  # 更新日志
2
2
 
3
+ ## v1.0.32 (2026-07-14)
4
+
5
+ - 修复表格一开始是v-show隐藏了, 导致表格宽度为0的问题, 此时需要监听组件可见事件, 再更新真实宽度
6
+
3
7
  ## v1.0.31 (2026-07-09)
4
8
 
5
9
  - 插槽checkbox列增加checkedValue属性,用于设置选中时的值,默认值为true;
File without changes