@@ -513,7 +513,7 @@ Transition.propTypes = {
513
513
* DOM node and a `done` callback. Allows for more fine grained transition end
514
514
* logic. Timeouts are still used as a fallback if provided.
515
515
*
516
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
516
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `done` is being passed as the first argument .
517
517
*
518
518
* ```jsx
519
519
* addEndListener={(node, done) => {
@@ -528,7 +528,7 @@ Transition.propTypes = {
528
528
* Callback fired before the "entering" status is applied. An extra parameter
529
529
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
530
530
*
531
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
531
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
532
532
*
533
533
* @type Function(node: HtmlElement, isAppearing: bool) -> void
534
534
*/
@@ -538,7 +538,7 @@ Transition.propTypes = {
538
538
* Callback fired after the "entering" status is applied. An extra parameter
539
539
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
540
540
*
541
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
541
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
542
542
*
543
543
* @type Function(node: HtmlElement, isAppearing: bool)
544
544
*/
@@ -548,7 +548,7 @@ Transition.propTypes = {
548
548
* Callback fired after the "entered" status is applied. An extra parameter
549
549
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
550
550
*
551
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
551
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
552
552
*
553
553
* @type Function(node: HtmlElement, isAppearing: bool) -> void
554
554
*/
0 commit comments