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.
- package/dist/index.cjs.js +5 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.esm.js +5 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/dist/utils/sheet.d.ts +3 -2
- package/package.json +1 -1
package/dist/utils/sheet.d.ts
CHANGED
|
@@ -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[],
|
|
152
|
+
setActiveSheetWatermark: (spread: any, cells: CellWatermarkModel[], isShowWatermark: boolean, isShowBindPath?: boolean) => void;
|
|
152
153
|
/**
|
|
153
154
|
* 设置某工作表中单元格为日期选择控件
|
|
154
155
|
* @param GC GC对象
|