@progress/kendo-spreadsheet-common 1.2.7-develop.4 → 1.2.8-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.
- package/dist/index-esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +5 -0
package/dist/index-esm.js
CHANGED
|
@@ -16545,7 +16545,7 @@ class Pane {
|
|
|
16545
16545
|
}
|
|
16546
16546
|
|
|
16547
16547
|
filterIconRect(rect) {
|
|
16548
|
-
let BUTTON_SIZE =
|
|
16548
|
+
let BUTTON_SIZE = 22;
|
|
16549
16549
|
let BUTTON_OFFSET = 3;
|
|
16550
16550
|
|
|
16551
16551
|
return new Rectangle(
|
package/dist/index.js
CHANGED
|
@@ -16546,7 +16546,7 @@
|
|
|
16546
16546
|
}
|
|
16547
16547
|
|
|
16548
16548
|
filterIconRect(rect) {
|
|
16549
|
-
let BUTTON_SIZE =
|
|
16549
|
+
let BUTTON_SIZE = 22;
|
|
16550
16550
|
let BUTTON_OFFSET = 3;
|
|
16551
16551
|
|
|
16552
16552
|
return new Rectangle(
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -1025,6 +1025,11 @@ export function registerEditor(name, editor): void;
|
|
|
1025
1025
|
*/
|
|
1026
1026
|
export function defineAlias(alias: string, name: string): void;
|
|
1027
1027
|
|
|
1028
|
+
/**
|
|
1029
|
+
* Defines a formatting object which exposes formatting helpers.
|
|
1030
|
+
*/
|
|
1031
|
+
export const formatting: any;
|
|
1032
|
+
|
|
1028
1033
|
/**
|
|
1029
1034
|
* Deferred class similar to jQuery's Deferred.
|
|
1030
1035
|
*/
|