@tanstack/react-router-devtools 0.0.1-beta.10 → 0.0.1-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/react-router-devtools",
3
3
  "author": "Tanner Linsley",
4
- "version": "0.0.1-beta.10",
4
+ "version": "0.0.1-beta.13",
5
5
  "license": "MIT",
6
6
  "repository": "tanstack/router",
7
7
  "homepage": "https://tanstack.com/router/",
@@ -34,8 +34,9 @@
34
34
  "build/**",
35
35
  "src"
36
36
  ],
37
+ "sideEffects": false,
37
38
  "peerDependencies": {
38
- "@tanstack/react-router": "0.0.1-beta.10",
39
+ "@tanstack/react-router": "0.0.1-beta.13",
39
40
  "react": ">=16",
40
41
  "react-dom": ">=16"
41
42
  },
package/src/devtools.tsx CHANGED
@@ -829,10 +829,6 @@ export const TanStackRouterDevtoolsPanel = React.forwardRef<
829
829
  <td style={{ opacity: '.5' }}>Status</td>
830
830
  <td>{activeMatch.status}</td>
831
831
  </tr>
832
- <tr>
833
- <td style={{ opacity: '.5' }}>Pending</td>
834
- <td>{activeMatch.isPending.toString()}</td>
835
- </tr>
836
832
  <tr>
837
833
  <td style={{ opacity: '.5' }}>Invalid</td>
838
834
  <td>{activeMatch.isInvalid.toString()}</td>