@tanstack/query-devtools 5.0.0-alpha.34 → 5.0.0-alpha.42
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/build/.tsbuildinfo +1 -1
- package/build/cjs/index.js +9 -8
- package/build/cjs/index.js.map +1 -1
- package/build/esm/index.mjs +9 -8
- package/build/esm/index.mjs.map +1 -1
- package/build/source/Context.js +10 -0
- package/build/source/Devtools.jsx +1484 -0
- package/build/source/Explorer.jsx +266 -0
- package/build/source/__tests__/devtools.test.jsx +6 -0
- package/build/source/fonts.js +7 -0
- package/build/source/icons/index.jsx +344 -0
- package/build/source/index.jsx +71 -0
- package/build/source/theme.js +304 -0
- package/build/source/utils.jsx +74 -0
- package/build/types/Context.d.ts +4 -4
- package/build/types/Context.d.ts.map +1 -0
- package/build/types/Devtools.d.ts.map +1 -0
- package/build/types/Explorer.d.ts +1 -1
- package/build/types/Explorer.d.ts.map +1 -0
- package/build/types/__tests__/devtools.test.d.ts.map +1 -0
- package/build/types/fonts.d.ts.map +1 -0
- package/build/types/icons/index.d.ts.map +1 -0
- package/build/types/index.d.ts.map +1 -0
- package/build/types/theme.d.ts +4 -4
- package/build/types/theme.d.ts.map +1 -0
- package/build/types/utils.d.ts +2 -2
- package/build/types/utils.d.ts.map +1 -0
- package/build/umd/index.js +181 -181
- package/build/umd/index.js.map +1 -1
- package/package.json +12 -10
- package/src/Devtools.tsx +1 -1
package/build/esm/index.mjs
CHANGED
|
@@ -4989,14 +4989,6 @@ var SuperJSON = /** @class */function () {
|
|
|
4989
4989
|
SuperJSON.allowErrorProps = SuperJSON.defaultInstance.allowErrorProps.bind(SuperJSON.defaultInstance);
|
|
4990
4990
|
return SuperJSON;
|
|
4991
4991
|
}();
|
|
4992
|
-
SuperJSON.serialize;
|
|
4993
|
-
SuperJSON.deserialize;
|
|
4994
|
-
SuperJSON.stringify;
|
|
4995
|
-
SuperJSON.parse;
|
|
4996
|
-
SuperJSON.registerClass;
|
|
4997
|
-
SuperJSON.registerCustom;
|
|
4998
|
-
SuperJSON.registerSymbol;
|
|
4999
|
-
SuperJSON.allowErrorProps;
|
|
5000
4992
|
|
|
5001
4993
|
function getQueryStatusLabel(query) {
|
|
5002
4994
|
return query.state.fetchStatus === 'fetching' ? 'fetching' : !query.getObserversCount() ? 'inactive' : query.state.fetchStatus === 'paused' ? 'paused' : query.isStale() ? 'stale' : 'fresh';
|
|
@@ -7883,7 +7875,16 @@ delegateEvents(["click", "mousedown", "input"]);
|
|
|
7883
7875
|
|
|
7884
7876
|
class TanstackQueryDevtools {
|
|
7885
7877
|
constructor(config) {
|
|
7878
|
+
_defineProperty(this, "client", void 0);
|
|
7879
|
+
_defineProperty(this, "onlineManager", void 0);
|
|
7880
|
+
_defineProperty(this, "queryFlavor", void 0);
|
|
7881
|
+
_defineProperty(this, "version", void 0);
|
|
7886
7882
|
_defineProperty(this, "isMounted", false);
|
|
7883
|
+
_defineProperty(this, "buttonPosition", void 0);
|
|
7884
|
+
_defineProperty(this, "position", void 0);
|
|
7885
|
+
_defineProperty(this, "initialIsOpen", void 0);
|
|
7886
|
+
_defineProperty(this, "errorTypes", void 0);
|
|
7887
|
+
_defineProperty(this, "dispose", void 0);
|
|
7887
7888
|
const {
|
|
7888
7889
|
client,
|
|
7889
7890
|
queryFlavor,
|