rapid-spreadjs 1.0.54 → 1.0.55

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.
@@ -146,9 +146,10 @@ export declare const SheetUtils: {
146
146
  * 设置当前活动工作表的水印和数据绑定是否显示
147
147
  * @param spread 工作簿实例
148
148
  * @param cells 数据绑定单元格配置集合([{ row: number; col: number; title: string; pathPrev: string; pathField: string }])
149
- * @param isShow 是否显示
149
+ * @param isShow 是否显示水印
150
+ * @param isShowBindPath 是否显示数据绑定路径,默认为:true
150
151
  */
151
- setActiveSheetWatermark: (spread: any, cells: CellWatermarkModel[], isShow: boolean) => void;
152
+ setActiveSheetWatermark: (spread: any, cells: CellWatermarkModel[], isShowWatermark: boolean, isShowBindPath?: boolean) => void;
152
153
  /**
153
154
  * 设置某工作表中单元格为日期选择控件
154
155
  * @param GC GC对象
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapid-spreadjs",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "description": "SpreadJS常用公用处理函数,包括设计器、工作簿和工作表的相关处理函数。",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",