File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
src/Fable.React.TransitionGroup Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,15 @@ module TransitionGroup =
141141 /// If you use React v16+ and would like to avoid a wrapping <div> element you can pass in `Component null`.
142142 /// This is useful if the wrapping div borks your css styles.
143143 | Component of React.ReactType
144+ /// A convenience prop that enables or disables appear animations for all children.
145+ /// Note that specifying this will override any defaults set on individual children Transitions.
146+ | Appear of bool
147+ /// A convenience prop that enables or disables enter animations for all children.
148+ /// Note that specifying this will override any defaults set on individual children Transitions.
149+ | Enter of bool
150+ /// A convenience prop that enables or disables exit animations for all children.
151+ /// Note that specifying this will override any defaults set on individual children Transitions.
152+ | Exit of bool
144153 /// You may need to apply reactive updates to a child as it is exiting.
145154 /// This is generally done by using cloneElement however in the case of an
146155 /// exiting child the element has already been removed and not accessible to the consumer.
You can’t perform that action at this time.
0 commit comments