@cloudscape-design/collection-hooks
Advanced tools
Comparing version 1.0.24 to 1.0.25
@@ -54,5 +54,6 @@ "use strict"; | ||
return (itemValue + '').toLowerCase().startsWith((tokenValue + '').toLowerCase()); | ||
// The unsupported operators result in no data being filtered out. | ||
// The unsupported operators result in an exception being thrown. | ||
// The exception can be avoided if using the match function. | ||
default: | ||
return true; | ||
throw new Error('Unsupported operator given.'); | ||
} | ||
@@ -59,0 +60,0 @@ }; |
@@ -51,5 +51,6 @@ import { compareDates, compareTimestamps } from '../date-utils/compare-dates.js'; | ||
return (itemValue + '').toLowerCase().startsWith((tokenValue + '').toLowerCase()); | ||
// The unsupported operators result in no data being filtered out. | ||
// The unsupported operators result in an exception being thrown. | ||
// The exception can be avoided if using the match function. | ||
default: | ||
return true; | ||
throw new Error('Unsupported operator given.'); | ||
} | ||
@@ -56,0 +57,0 @@ }; |
{ | ||
"commit": "d8fb396bf49e339bd18bb5f9dc1ada0b2d62dcf4" | ||
"commit": "567c177ebbf98e27e27ca9a863fda3d7df6abdd4" | ||
} |
@@ -58,4 +58,4 @@ { | ||
"type": "module", | ||
"version": "1.0.24", | ||
"version": "1.0.25", | ||
"license": "Apache-2.0" | ||
} |
82128
1515