Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ka-table

Package Overview
Dependencies
Maintainers
0
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ka-table - npm Package Compare versions

Comparing version 11.2.0 to 11.3.0

1

enums.d.ts

@@ -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"] = "<";

2

package.json
{
"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 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc