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: README.md
+6-1
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,10 @@ Remix Development Tools is an open-source package designed to enhance your devel
22
22
23
23
## What's new?
24
24
25
+
## v2.4.0
26
+
- Route boundaries locked behind a feature flag
27
+
- Panel position settings allow you to change the panel position to either top or bottom of the screen
28
+
- ErrorBoundaries are more precise now
25
29
## v2.3.0
26
30
Route tree view support!
27
31
View all your routes in a node tree! You can also open routes in your browser from the tree view.
@@ -53,7 +57,7 @@ Key features include:
53
57
-**URL Parameters**: Easily view and analyze the URL parameters associated with the current page.
54
58
-**Server Responses**: Inspect and review the server responses received by the application for the current page.
55
59
-**Loader Data**: Monitor and track the loader data used by the application during page rendering.
56
-
-**Outlet boundaries** Activate the **Show Route Boundaries** option to see each Outlet and route boundaries by coloring the background. This needs to make a GET request to the current route when the dev tools are mounted for the first time to work properly and hence it is locked behind a flag. You can enable it by passing `showRouteBoundaries` prop to `true` in the `RemixDevTools` component.
60
+
-**Outlet boundaries** Activate the **Show Route Boundaries** option to see each Outlet and route boundaries by coloring the background. It is locked behind a flag. You can enable it by passing `useRouteBoundaries` prop to `true` in the `RemixDevTools`,first parameter of `initClient` set to `true`and second parameter of `initServer` set to `true`. This feature is experimental and can cause issues in certain scenarios. It will be considered stable with v3.0 release but until then use at your own risk.
57
61
58
62
### Routes Tab
59
63
@@ -218,6 +222,7 @@ export default function App() {
218
222
The `RemixDevTools` component accepts the following props:
219
223
-`requireUrlFlag`: Requires rdt=true to be present in the URL search to open the Remix Development Tools. Defaults to `false`.
220
224
-`plugins`: Allows you to provide additional tabs (plugins) to the Remix Development Tools. Defaults to `[]`.
225
+
-`useRouteBoundaries`: Allows you to enable the route boundaries feature. Defaults to `false`. This feature is experimental and can cause issues in certain scenarios. It will be considered stable with v3.0 release but until then use at your own risk.
0 commit comments