rapid-spreadjs 1.0.113 → 1.0.116

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.
@@ -48,4 +48,19 @@ export declare const BusinessUtils: {
48
48
  rowCount: number;
49
49
  colCount: number;
50
50
  }, cyclicCells: CellModel[][]) => void, rowHeight?: number) => void;
51
+ /**
52
+ * 显示超差提醒批注信息
53
+ * @param spread 工作簿实例
54
+ * @param cctxConfigs 超差提醒配置集合
55
+ * @param cellRowIndex 发生改变值的单元格行索引
56
+ * @param cellColIndex 发生改变值的单元格列索引
57
+ * @param isValueChgedUse 是否为单元格值发生改变的时候调用
58
+ * @param commentOptions 批注配置项,默认为:{color: '#E11010', size: 10, defaultTextIsSet: true, defaultText: '无效'}(color:批注颜色,size:批注大小,defaultTextIsSet:是否设置单元格默认值,defaultText:单元格默认值内容)
59
+ */
60
+ overRemindComments: (spread: any, cctxConfigs: any[], cellRowIndex: number, cellColIndex: number, isValueChgedUse?: boolean, commentOptions?: {
61
+ color?: string;
62
+ size?: number;
63
+ defaultTextIsSet?: boolean;
64
+ defaultText?: string;
65
+ }) => void;
51
66
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rapid-spreadjs",
3
- "version": "1.0.113",
3
+ "version": "1.0.116",
4
4
  "description": "SpreadJS常用公用处理函数,包括设计器、工作簿和工作表的相关处理函数。",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",