@tanstack/query-devtools 5.0.0-alpha.68 → 5.0.0-alpha.72
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/dist/cjs/{Devtools-531ceeff.cjs → Devtools-5159ee4e.cjs} +2 -1
- package/dist/cjs/{Devtools-531ceeff.cjs.map → Devtools-5159ee4e.cjs.map} +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/{Devtools-d7644223.js → Devtools-ae26dfd2.js} +2 -1
- package/dist/esm/{Devtools-d7644223.js.map → Devtools-ae26dfd2.js.map} +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/source/Devtools.jsx +1 -0
- package/package.json +2 -2
- package/src/Devtools.tsx +1 -0
package/dist/cjs/index.cjs
CHANGED
|
@@ -54,7 +54,7 @@ class TanstackQueryDevtools {
|
|
|
54
54
|
if (this.Component) {
|
|
55
55
|
Devtools = this.Component;
|
|
56
56
|
} else {
|
|
57
|
-
Devtools = solidJs.lazy(() => Promise.resolve().then(function () { return require('./Devtools-
|
|
57
|
+
Devtools = solidJs.lazy(() => Promise.resolve().then(function () { return require('./Devtools-5159ee4e.cjs'); }));
|
|
58
58
|
this.Component = Devtools;
|
|
59
59
|
}
|
|
60
60
|
const _self$ = this;
|
|
@@ -2357,6 +2357,7 @@ const getStyles = () => {
|
|
|
2357
2357
|
max-width: 160px;
|
|
2358
2358
|
border: 1px solid ${colors.darkGray[200]};
|
|
2359
2359
|
cursor: pointer;
|
|
2360
|
+
padding: 0;
|
|
2360
2361
|
&:hover {
|
|
2361
2362
|
background-color: ${colors.darkGray[500]};
|
|
2362
2363
|
}
|
|
@@ -2624,4 +2625,4 @@ const getStyles = () => {
|
|
|
2624
2625
|
delegateEvents(["click", "mousedown", "input"]);
|
|
2625
2626
|
|
|
2626
2627
|
export { Devtools, DevtoolsComponent, DevtoolsPanel, QueryRow, QueryStatus, QueryStatusCount, DevtoolsComponent as default };
|
|
2627
|
-
//# sourceMappingURL=Devtools-
|
|
2628
|
+
//# sourceMappingURL=Devtools-ae26dfd2.js.map
|