@progress/kendo-spreadsheet-common 1.2.4 → 1.2.5-develop.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +8 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-spreadsheet-common",
3
3
  "description": "Kendo UI platform-independent Spreadsheet library",
4
- "version": "1.2.4",
4
+ "version": "1.2.5-develop.1",
5
5
  "keywords": [
6
6
  "Kendo UI"
7
7
  ],
package/src/index.d.ts CHANGED
@@ -901,6 +901,9 @@ export class CalcError {
901
901
  code: string;
902
902
  }
903
903
 
904
+ export const calc;
905
+ export const validation;
906
+
904
907
  /**
905
908
  * A base class only. All references inherit from it, but no direct instance of this object should ever be created.
906
909
  * The class is exported just to make it easier to check whether something is a reference: `x instanceof Ref`.
@@ -1012,6 +1015,11 @@ export function defineFunction(name: string, func: Function): {
1012
1015
  argsAsync(args: any, log: any): any;
1013
1016
  };
1014
1017
 
1018
+ /**
1019
+ * Registers custom editor.
1020
+ */
1021
+ export function registerEditor(name, editor): void;
1022
+
1015
1023
  /**
1016
1024
  * Defines alias of a formula.
1017
1025
  */