@elderbyte/ngx-starter 19.1.14 → 19.1.15
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.
|
@@ -2647,7 +2647,7 @@ class CustomMatcherSpec {
|
|
|
2647
2647
|
static start() {
|
|
2648
2648
|
return new CustomMatcherSpec();
|
|
2649
2649
|
}
|
|
2650
|
-
|
|
2650
|
+
customFilterWildcard(matcher) {
|
|
2651
2651
|
this.customFilterMatchers.set('*', matcher);
|
|
2652
2652
|
return this;
|
|
2653
2653
|
}
|
|
@@ -2786,6 +2786,8 @@ class LocalDataFilter {
|
|
|
2786
2786
|
return resolvedValueStr.startsWith(filterValueStr);
|
|
2787
2787
|
case 'full':
|
|
2788
2788
|
return resolvedValueStr === filterValueStr;
|
|
2789
|
+
case 'anywhere':
|
|
2790
|
+
return resolvedValueStr.indexOf(filterValueStr) >= 0;
|
|
2789
2791
|
default:
|
|
2790
2792
|
throw new UnreachableCaseError(this.genericOptions.mode);
|
|
2791
2793
|
}
|