Comparing version 11.2.0 to 11.3.0
@@ -113,2 +113,3 @@ export declare enum PagingPosition { | ||
Equal = "=", | ||
IsNotEqual = "!=", | ||
MoreThan = ">", | ||
@@ -115,0 +116,0 @@ LessThan = "<", |
@@ -128,2 +128,3 @@ "use strict"; | ||
FilterOperatorName["Equal"] = "="; | ||
FilterOperatorName["IsNotEqual"] = "!="; | ||
FilterOperatorName["MoreThan"] = ">"; | ||
@@ -130,0 +131,0 @@ FilterOperatorName["LessThan"] = "<"; |
{ | ||
"name": "ka-table", | ||
"version": "11.2.0", | ||
"version": "11.3.0", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "repository": "github:komarovalexander/ka-table", |
@@ -99,2 +99,7 @@ "use strict"; | ||
compare: function (fieldValue, conditionValue) { | ||
return fieldValue !== conditionValue; | ||
}, | ||
name: enums_1.FilterOperatorName.IsNotEqual, | ||
}, { | ||
compare: function (fieldValue, conditionValue) { | ||
return fieldValue > conditionValue; | ||
@@ -101,0 +106,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
398160
8163