@react-types/shared 3.0.0-nightly-e3b217ad5-250302 → 3.0.0-nightly-9bd8a5f19-250304
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.
- package/package.json +1 -1
- package/src/collections.d.ts +1 -1
package/package.json
CHANGED
package/src/collections.d.ts
CHANGED
|
@@ -183,7 +183,7 @@ export interface Collection<T> extends Iterable<T> {
|
|
|
183
183
|
getTextValue?(key: Key): string,
|
|
184
184
|
|
|
185
185
|
/** Filters the collection using the given function. */
|
|
186
|
-
|
|
186
|
+
UNSTABLE_filter?(filterFn: (nodeValue: string) => boolean): Collection<T>
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
export interface Node<T> {
|