@univerjs/sheets-formula 0.8.1 → 0.8.2-nightly.202506201607

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.
@@ -28,7 +28,7 @@ export interface IUniverSheetsFormulaBaseConfig {
28
28
  */
29
29
  initialFormulaComputing?: CalculationMode;
30
30
  /**
31
- * If true, the plugin will write array formula results to the snapshot. Normally you should not set this to true.
31
+ * If true, the plugin will write array formula results to the snapshot. Normally you should not set this value.
32
32
  */
33
33
  writeArrayFormulaToSnapshot?: boolean;
34
34
  }
@@ -25,8 +25,18 @@ export interface IFormulaReferenceMoveParam {
25
25
  from?: IRange;
26
26
  to?: IRange;
27
27
  sheetName?: string;
28
+ /**
29
+ * defined name id
30
+ */
28
31
  definedNameId?: string;
32
+ /**
33
+ * new defined name
34
+ */
29
35
  definedName?: string;
36
+ /**
37
+ * The filtered rows contained in the range, used for remove rows operation, etc.
38
+ */
39
+ rangeFilteredRows?: number[];
30
40
  }
31
41
  export declare function getFormulaReferenceMoveUndoRedo(oldFormulaData: IFormulaData, newFormulaData: IFormulaData, formulaReferenceMoveParam: IFormulaReferenceMoveParam): {
32
42
  undos: IMutationInfo<object>[];