-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.36 audit #6725
3.36 audit #6725
Conversation
## API Changes
unknown top level export { type: 'any' } @react-aria/collectionsBaseCollectionchanged by:
BaseCollection<T> {
- addNode: (NodeValue<T>) => void
+ addNode: (CollectionNode<T>) => void
at: () => Node<T>
clone: () => this
commit: (Key | null, Key | null, any) => void
getChildren: (Key) => Iterable<Node<T>>
getItem: (Key) => Node<T> | null
getKeyAfter: (Key) => void
getKeyBefore: (Key) => void
getKeys: () => void
getLastKey: () => void
removeNode: (Key) => void
size: any
undefined: () => void
}
NodeValuechanged by:
-NodeValue<T> {
- aria-label?: string
- childNodes: Iterable<Node<T>>
- clone: () => NodeValue<T>
- constructor: (string, Key) => void
- firstChildKey: Key | null
- hasChildNodes: boolean
- index: number
- key: Key
- lastChildKey: Key | null
- level: number
- nextKey: Key | null
- parentKey: Key | null
- prevKey: Key | null
- props: any
- render?: (Node<any>) => ReactElement
- rendered: ReactNode
- textValue: string
- type: string
- value: T | null
-}
+ it changed:
CollectionNodechanged by:
-
+CollectionNode<T> {
+ aria-label?: string
+ childNodes: Iterable<Node<T>>
+ clone: () => CollectionNode<T>
+ constructor: (string, Key) => void
+ firstChildKey: Key | null
+ hasChildNodes: boolean
+ index: number
+ key: Key
+ lastChildKey: Key | null
+ level: number
+ nextKey: Key | null
+ parentKey: Key | null
+ prevKey: Key | null
+ props: any
+ render?: (Node<any>) => ReactElement
+ rendered: ReactNode
+ textValue: string
+ type: string
+ value: T | null
+} it changed:
|
NodeValue
toCollectionNode
as discussed in Move RAC collections implementation into new package #6640.