@@ -524,7 +524,7 @@ Transition.propTypes = {
524
524
* DOM node and a `done` callback. Allows for more fine grained transition end
525
525
* logic. Timeouts are still used as a fallback if provided.
526
526
*
527
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
527
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `done` is being passed as the first argument .
528
528
*
529
529
* ```jsx
530
530
* addEndListener={(node, done) => {
@@ -539,7 +539,7 @@ Transition.propTypes = {
539
539
* Callback fired before the "entering" status is applied. An extra parameter
540
540
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
541
541
*
542
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
542
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
543
543
*
544
544
* @type Function(node: HtmlElement, isAppearing: bool) -> void
545
545
*/
@@ -549,7 +549,7 @@ Transition.propTypes = {
549
549
* Callback fired after the "entering" status is applied. An extra parameter
550
550
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
551
551
*
552
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
552
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
553
553
*
554
554
* @type Function(node: HtmlElement, isAppearing: bool)
555
555
*/
@@ -559,7 +559,7 @@ Transition.propTypes = {
559
559
* Callback fired after the "entered" status is applied. An extra parameter
560
560
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
561
561
*
562
- * **Note**: when `nodeRef` prop is passed, `node` is not passed.
562
+ * **Note**: when `nodeRef` prop is passed, `node` is not passed, so `isAppearing` is being passed as the first argument .
563
563
*
564
564
* @type Function(node: HtmlElement, isAppearing: bool) -> void
565
565
*/
0 commit comments