rapid-spreadjs 1.0.111 → 1.0.113

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.
@@ -181,4 +181,10 @@ export declare const SheetUtils: {
181
181
  rowCount: number;
182
182
  colCount: number;
183
183
  }) => string;
184
+ /**
185
+ * 粘贴单元格的值
186
+ * @param sheet 工作表对象
187
+ * @param callFn 粘贴成功或失败的回调函数(该回调函数包含2个参数,第一个参数为是否粘贴成功,第二个参数为提示信息)
188
+ */
189
+ pasteCellValues: (sheet: any, callFn?: (isSuccess: boolean, tipMsg: string) => void) => Promise<void>;
184
190
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapid-spreadjs",
3
- "version": "1.0.111",
3
+ "version": "1.0.113",
4
4
  "description": "SpreadJS常用公用处理函数,包括设计器、工作簿和工作表的相关处理函数。",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",