You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/react-devtools/CHANGELOG.md
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -41,9 +41,9 @@ Host nodes (e.g. HTML `<div>`, React Native `View`) are now hidden by default, b
41
41
42
42
Filter preferences are remembered between sessions.
43
43
44
-
#### No more in-line props
44
+
#### No more inline props
45
45
46
-
Components in the tree no longer show in-line props. This was done to [make DevTools faster](https://github.com/facebook/react/blob/master/packages/react-devtools/OVERVIEW.md) and to make it easier to browse larger component trees.
46
+
Components in the tree no longer show inline props. This was done to [make DevTools faster](https://github.com/facebook/react/blob/master/packages/react-devtools/OVERVIEW.md) and to make it easier to browse larger component trees.
47
47
48
48
You can view a component's props, state, and hooks by selecting it:
49
49
@@ -101,6 +101,12 @@ Components decorated with multiple HOCs show the topmost badge and a count. Sele
101
101
102
102

103
103
104
+
#### Restoring selection between reloads
105
+
106
+
DevTools now attempts to restore the previously selected element when you reload the page.
React's experimental [Suspense API](https://reactjs.org/docs/react-api.html#suspense) lets components "wait" for something before rendering. `<Suspense>` components can be used to specify loading states when components deeper in the tree are waiting to render.
@@ -139,4 +145,4 @@ Because this feature adds a small amount of overhead, it can be disabled in the
139
145
140
146
The profiler now displays a list of each time the selected component rendered during a profiling session, along with the duration of each render. This list can be used to quickly jump between commits when analyzing the performance of a specific component.
0 commit comments