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

@awsui/collection-hooks

Package Overview
Dependencies
Maintainers
3
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@awsui/collection-hooks - npm Package Compare versions

Comparing version 1.0.53 to 1.0.54

2

dist/cjs/interfaces.d.ts

@@ -107,3 +107,3 @@ import * as React from 'react';

}
export type PropertyFilterOperator = '<' | '<=' | '>' | '>=' | ':' | '!:' | '=' | '!=';
export type PropertyFilterOperator = '<' | '<=' | '>' | '>=' | ':' | '!:' | '=' | '!=' | '^' | string;
export interface PropertyFilterOperatorExtended<TokenValue> {

@@ -110,0 +110,0 @@ operator: PropertyFilterOperator;

@@ -52,2 +52,7 @@ "use strict";

return (itemValue + '').toLowerCase().indexOf((tokenValue + '').toLowerCase()) === -1;
case '^':
return (itemValue + '').toLowerCase().startsWith((tokenValue + '').toLowerCase());
// The unsupported operators result in no data being filtered out.
default:
return true;
}

@@ -54,0 +59,0 @@ };

@@ -107,3 +107,3 @@ import * as React from 'react';

}
export type PropertyFilterOperator = '<' | '<=' | '>' | '>=' | ':' | '!:' | '=' | '!=';
export type PropertyFilterOperator = '<' | '<=' | '>' | '>=' | ':' | '!:' | '=' | '!=' | '^' | string;
export interface PropertyFilterOperatorExtended<TokenValue> {

@@ -110,0 +110,0 @@ operator: PropertyFilterOperator;

@@ -49,2 +49,7 @@ import { compareDates, compareTimestamps } from '../date-utils/compare-dates.js';

return (itemValue + '').toLowerCase().indexOf((tokenValue + '').toLowerCase()) === -1;
case '^':
return (itemValue + '').toLowerCase().startsWith((tokenValue + '').toLowerCase());
// The unsupported operators result in no data being filtered out.
default:
return true;
}

@@ -51,0 +56,0 @@ };

{
"commit": "8363ec2ef52c514ed09854b66e62ce0244b623ac"
"commit": "d8fb396bf49e339bd18bb5f9dc1ada0b2d62dcf4"
}

@@ -50,4 +50,4 @@ {

"type": "module",
"version": "1.0.53",
"version": "1.0.54",
"license": "Apache-2.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