@progress/kendo-spreadsheet-common 1.2.7-develop.2 → 1.2.7-develop.3
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/dist/index-esm.js
CHANGED
|
@@ -21676,7 +21676,7 @@ function dynamicFilterType(type) {
|
|
|
21676
21676
|
|
|
21677
21677
|
function getFilterVal(val) {
|
|
21678
21678
|
let tmp = parseFloat(val);
|
|
21679
|
-
if (!isNaN(tmp) && tmp
|
|
21679
|
+
if (!isNaN(tmp) && tmp == val) {
|
|
21680
21680
|
return tmp;
|
|
21681
21681
|
}
|
|
21682
21682
|
return val;
|
package/dist/index.js
CHANGED
|
@@ -21677,7 +21677,7 @@
|
|
|
21677
21677
|
|
|
21678
21678
|
function getFilterVal(val) {
|
|
21679
21679
|
let tmp = parseFloat(val);
|
|
21680
|
-
if (!isNaN(tmp) && tmp
|
|
21680
|
+
if (!isNaN(tmp) && tmp == val) {
|
|
21681
21681
|
return tmp;
|
|
21682
21682
|
}
|
|
21683
21683
|
return val;
|