@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/shared",
3
- "version": "3.0.0-nightly-e3b217ad5-250302",
3
+ "version": "3.0.0-nightly-9bd8a5f19-250304",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -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
- filter?(filterFn: (nodeValue: string) => boolean): Collection<T>
186
+ UNSTABLE_filter?(filterFn: (nodeValue: string) => boolean): Collection<T>
187
187
  }
188
188
 
189
189
  export interface Node<T> {