@tanstack/query-devtools 5.0.0-rc.1 → 5.0.0-rc.5
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/Devtools/{H2EROWFU.jsx → 336SHOD5.jsx} +220 -27
- package/build/Devtools/{ALVY75L5.jsx → 5OOWR6BQ.jsx} +220 -27
- package/build/Devtools/{66PXWIOF.js → CIR3WCBJ.js} +338 -99
- package/build/Devtools/{HTDVDYMT.js → XXDYGLB2.js} +338 -99
- package/build/dev.cjs +349 -108
- package/build/dev.js +1 -1
- package/build/dev.jsx +1 -1
- package/build/index.cjs +349 -108
- package/build/index.js +1 -1
- package/build/index.jsx +1 -1
- package/package.json +2 -2
- package/src/Devtools.tsx +2 -1
- package/src/Explorer.tsx +173 -19
- package/src/__tests__/utils.test.ts +725 -0
- package/src/icons/index.tsx +19 -0
- package/src/utils.tsx +137 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createContext, delegateEvents, createSignal, createComponent, createMemo, createEffect, insert, Show, createRenderEffect, className, on, onMount, setAttribute, spread, mergeProps, For, onCleanup, isServer, $PROXY, $TRACK, getListener, batch,
|
|
1
|
+
import { createContext, delegateEvents, createSignal, createComponent, createMemo, createEffect, insert, Show, createRenderEffect, className, on, onMount, setAttribute, spread, mergeProps, For, onCleanup, isServer, $PROXY, $TRACK, getListener, batch, useContext, Index, template, use, untrack, useTransition, createRoot, splitProps, createUniqueId, Portal, addEventListener, Switch, Match, Dynamic, children, createComputed, getOwner, DEV } from '../chunk/7MNJIXJ6.js';
|
|
2
2
|
|
|
3
3
|
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8.4/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
|
|
4
4
|
var characterMap = {
|
|
@@ -9244,6 +9244,86 @@ var sortFns = {
|
|
|
9244
9244
|
var convertRemToPixels = (rem) => {
|
|
9245
9245
|
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
|
|
9246
9246
|
};
|
|
9247
|
+
var updateNestedDataByPath = (oldData, updatePath2, value) => {
|
|
9248
|
+
if (updatePath2.length === 0) {
|
|
9249
|
+
return value;
|
|
9250
|
+
}
|
|
9251
|
+
if (oldData instanceof Map) {
|
|
9252
|
+
const newData = new Map(oldData);
|
|
9253
|
+
if (updatePath2.length === 1) {
|
|
9254
|
+
newData.set(updatePath2[0], value);
|
|
9255
|
+
return newData;
|
|
9256
|
+
}
|
|
9257
|
+
const [head, ...tail] = updatePath2;
|
|
9258
|
+
newData.set(head, updateNestedDataByPath(newData.get(head), tail, value));
|
|
9259
|
+
return newData;
|
|
9260
|
+
}
|
|
9261
|
+
if (oldData instanceof Set) {
|
|
9262
|
+
const setAsArray = updateNestedDataByPath(Array.from(oldData), updatePath2, value);
|
|
9263
|
+
return new Set(setAsArray);
|
|
9264
|
+
}
|
|
9265
|
+
if (Array.isArray(oldData)) {
|
|
9266
|
+
const newData = [...oldData];
|
|
9267
|
+
if (updatePath2.length === 1) {
|
|
9268
|
+
newData[updatePath2[0]] = value;
|
|
9269
|
+
return newData;
|
|
9270
|
+
}
|
|
9271
|
+
const [head, ...tail] = updatePath2;
|
|
9272
|
+
newData[head] = updateNestedDataByPath(newData[head], tail, value);
|
|
9273
|
+
return newData;
|
|
9274
|
+
}
|
|
9275
|
+
if (oldData instanceof Object) {
|
|
9276
|
+
const newData = {
|
|
9277
|
+
...oldData
|
|
9278
|
+
};
|
|
9279
|
+
if (updatePath2.length === 1) {
|
|
9280
|
+
newData[updatePath2[0]] = value;
|
|
9281
|
+
return newData;
|
|
9282
|
+
}
|
|
9283
|
+
const [head, ...tail] = updatePath2;
|
|
9284
|
+
newData[head] = updateNestedDataByPath(newData[head], tail, value);
|
|
9285
|
+
return newData;
|
|
9286
|
+
}
|
|
9287
|
+
return oldData;
|
|
9288
|
+
};
|
|
9289
|
+
var deleteNestedDataByPath = (oldData, deletePath) => {
|
|
9290
|
+
if (oldData instanceof Map) {
|
|
9291
|
+
const newData = new Map(oldData);
|
|
9292
|
+
if (deletePath.length === 1) {
|
|
9293
|
+
newData.delete(deletePath[0]);
|
|
9294
|
+
return newData;
|
|
9295
|
+
}
|
|
9296
|
+
const [head, ...tail] = deletePath;
|
|
9297
|
+
newData.set(head, deleteNestedDataByPath(newData.get(head), tail));
|
|
9298
|
+
return newData;
|
|
9299
|
+
}
|
|
9300
|
+
if (oldData instanceof Set) {
|
|
9301
|
+
const setAsArray = deleteNestedDataByPath(Array.from(oldData), deletePath);
|
|
9302
|
+
return new Set(setAsArray);
|
|
9303
|
+
}
|
|
9304
|
+
if (Array.isArray(oldData)) {
|
|
9305
|
+
const newData = [...oldData];
|
|
9306
|
+
if (deletePath.length === 1) {
|
|
9307
|
+
return newData.filter((_, idx) => idx.toString() !== deletePath[0]);
|
|
9308
|
+
}
|
|
9309
|
+
const [head, ...tail] = deletePath;
|
|
9310
|
+
newData[head] = deleteNestedDataByPath(newData[head], tail);
|
|
9311
|
+
return newData;
|
|
9312
|
+
}
|
|
9313
|
+
if (oldData instanceof Object) {
|
|
9314
|
+
const newData = {
|
|
9315
|
+
...oldData
|
|
9316
|
+
};
|
|
9317
|
+
if (deletePath.length === 1) {
|
|
9318
|
+
delete newData[deletePath[0]];
|
|
9319
|
+
return newData;
|
|
9320
|
+
}
|
|
9321
|
+
const [head, ...tail] = deletePath;
|
|
9322
|
+
newData[head] = deleteNestedDataByPath(newData[head], tail);
|
|
9323
|
+
return newData;
|
|
9324
|
+
}
|
|
9325
|
+
return oldData;
|
|
9326
|
+
};
|
|
9247
9327
|
|
|
9248
9328
|
// src/icons/index.tsx
|
|
9249
9329
|
var _tmpl$ = /* @__PURE__ */ template(`<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13 13L9.00007 9M10.3333 5.66667C10.3333 8.244 8.244 10.3333 5.66667 10.3333C3.08934 10.3333 1 8.244 1 5.66667C1 3.08934 3.08934 1 5.66667 1C8.244 1 10.3333 3.08934 10.3333 5.66667Z" stroke="#98A2B3" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round">`);
|
|
@@ -9257,7 +9337,8 @@ var _tmpl$8 = /* @__PURE__ */ template(`<svg width="24" height="24" viewBox="0 0
|
|
|
9257
9337
|
var _tmpl$9 = /* @__PURE__ */ template(`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path class="copier" d="M8 8V5.2C8 4.0799 8 3.51984 8.21799 3.09202C8.40973 2.71569 8.71569 2.40973 9.09202 2.21799C9.51984 2 10.0799 2 11.2 2H18.8C19.9201 2 20.4802 2 20.908 2.21799C21.2843 2.40973 21.5903 2.71569 21.782 3.09202C22 3.51984 22 4.0799 22 5.2V12.8C22 13.9201 22 14.4802 21.782 14.908C21.5903 15.2843 21.2843 15.5903 20.908 15.782C20.4802 16 19.9201 16 18.8 16H16M5.2 22H12.8C13.9201 22 14.4802 22 14.908 21.782C15.2843 21.5903 15.5903 21.2843 15.782 20.908C16 20.4802 16 19.9201 16 18.8V11.2C16 10.0799 16 9.51984 15.782 9.09202C15.5903 8.71569 15.2843 8.40973 14.908 8.21799C14.4802 8 13.9201 8 12.8 8H5.2C4.0799 8 3.51984 8 3.09202 8.21799C2.71569 8.40973 2.40973 8.71569 2.21799 9.09202C2 9.51984 2 10.0799 2 11.2V18.8C2 19.9201 2 20.4802 2.21799 20.908C2.40973 21.2843 2.71569 21.5903 3.09202 21.782C3.51984 22 4.07989 22 5.2 22Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="#98A2B3">`);
|
|
9258
9338
|
var _tmpl$10 = /* @__PURE__ */ template(`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 12L10.5 15L16.5 9M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke="#12B76A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">`);
|
|
9259
9339
|
var _tmpl$11 = /* @__PURE__ */ template(`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 9L15 15M15 9L9 15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke="#F04438" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">`);
|
|
9260
|
-
var _tmpl$12 = /* @__PURE__ */ template(`<svg version="1.0" viewBox="0 0 633 633"><linearGradient id="a" x1="-666.45" x2="-666.45" y1="163.28" y2="163.99" gradientTransform="matrix(633 0 0 633 422177 -103358)" gradientUnits="userSpaceOnUse"><stop stop-color="#6BDAFF" offset="0"></stop><stop stop-color="#F9FFB5" offset=".32"></stop><stop stop-color="#FFA770" offset=".71"></stop><stop stop-color="#FF7373" offset="1"></stop></linearGradient><circle cx="316.5" cy="316.5" r="316.5" fill="url(#a)"></circle><defs><filter id="am" x="-137.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="b" x="-137.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#am)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#b)"><ellipse cx="89.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"></ellipse></g><defs><filter id="ah" x="316.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="k" x="316.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ah)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#k)"><ellipse cx="543.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"></ellipse></g><defs><filter id="ae" x="-137.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="j" x="-137.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ae)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#j)"><ellipse cx="89.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"></ellipse></g><defs><filter id="ai" x="316.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="i" x="316.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ai)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#i)"><ellipse cx="543.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"></ellipse></g><defs><filter id="aj" x="-137.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="h" x="-137.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#aj)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#h)"><ellipse cx="89.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"></ellipse></g><defs><filter id="ag" x="316.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="g" x="316.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ag)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#g)"><ellipse cx="543.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"></ellipse></g><defs><filter id="af" x="272.2" y="308" width="176.9" height="129.3" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="f" x="272.2" y="308" width="176.9" height="129.3" maskUnits="userSpaceOnUse"><g filter="url(#af)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#f)"><line x1="436" x2="431" y1="403.2" y2="431.8" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><line x1="291" x2="280" y1="341.5" y2="403.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><line x1="332.9" x2="328.6" y1="384.1" y2="411.2" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><linearGradient id="m" x1="-670.75" x2="-671.59" y1="164.4" y2="164.49" gradientTransform="matrix(-184.16 -32.472 -11.461 64.997 -121359 -32126)" gradientUnits="userSpaceOnUse"><stop stop-color="#EE2700" offset="0"></stop><stop stop-color="#FF008E" offset="1"></stop></linearGradient><path d="m344.1 363 97.7 17.2c5.8 2.1 8.2 6.1 7.1 12.1s-4.7 9.2-11 9.9l-106-18.7-57.5-59.2c-3.2-4.8-2.9-9.1 0.8-12.8s8.3-4.4 13.7-2.1l55.2 53.6z" clip-rule="evenodd" fill="url(#m)" fill-rule="evenodd"></path><line x1="428.2" x2="429.1" y1="384.5" y2="378" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="395.2" x2="396.1" y1="379.5" y2="373" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="362.2" x2="363.1" y1="373.5" y2="367.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="324.2" x2="328.4" y1="351.3" y2="347.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="303.2" x2="307.4" y1="331.3" y2="327.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line></g><defs><filter id="ak" x="73.2" y="113.8" width="280.6" height="317.4" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="e" x="73.2" y="113.8" width="280.6" height="317.4" maskUnits="userSpaceOnUse"><g filter="url(#ak)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#e)"><linearGradient id="n" x1="-672.16" x2="-672.16" y1="165.03" y2="166.03" gradientTransform="matrix(-100.18 48.861 97.976 200.88 -83342 -93.059)" gradientUnits="userSpaceOnUse"><stop stop-color="#A17500" offset="0"></stop><stop stop-color="#5D2100" offset="1"></stop></linearGradient><path d="m192.3 203c8.1 37.3 14 73.6 17.8 109.1 3.8 35.4 2.8 75.1-3 119.2l61.2-16.7c-15.6-59-25.2-97.9-28.6-116.6s-10.8-51.9-22.1-99.6l-25.3 4.6" clip-rule="evenodd" fill="url(#n)" fill-rule="evenodd"></path><g stroke="#2F8A00"><linearGradient id="r" x1="-660.23" x2="-660.23" y1="166.72" y2="167.72" gradientTransform="matrix(92.683 4.8573 -2.0259 38.657 61680 -3088.6)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m195 183.9s-12.6-22.1-36.5-29.9c-15.9-5.2-34.4-1.5-55.5 11.1 15.9 14.3 29.5 22.6 40.7 24.9 16.8 3.6 51.3-6.1 51.3-6.1z" clip-rule="evenodd" fill="url(#r)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="s" x1="-661.36" x2="-661.36" y1="164.18" y2="165.18" gradientTransform="matrix(110 5.7648 -6.3599 121.35 73933 -15933)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5s-47.5-8.5-83.2 15.7c-23.8 16.2-34.3 49.3-31.6 99.4 30.3-27.8 52.1-48.5 65.2-61.9 19.8-20.2 49.6-53.2 49.6-53.2z" clip-rule="evenodd" fill="url(#s)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="q" x1="-656.79" x2="-656.79" y1="165.15" y2="166.15" gradientTransform="matrix(62.954 3.2993 -3.5023 66.828 42156 -8754.1)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m195 183.9c-0.8-21.9 6-38 20.6-48.2s29.8-15.4 45.5-15.3c-6.1 21.4-14.5 35.8-25.2 43.4s-24.4 14.2-40.9 20.1z" clip-rule="evenodd" fill="url(#q)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="p" x1="-663.07" x2="-663.07" y1="165.44" y2="166.44" gradientTransform="matrix(152.47 7.9907 -3.0936 59.029 101884 -4318.7)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c31.9-30 64.1-39.7 96.7-29s50.8 30.4 54.6 59.1c-35.2-5.5-60.4-9.6-75.8-12.1-15.3-2.6-40.5-8.6-75.5-18z" clip-rule="evenodd" fill="url(#p)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="o" x1="-662.57" x2="-662.57" y1="164.44" y2="165.44" gradientTransform="matrix(136.46 7.1517 -5.2163 99.533 91536 -11442)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c35.8-7.6 65.6-0.2 89.2 22s37.7 49 42.3 80.3c-39.8-9.7-68.3-23.8-85.5-42.4s-32.5-38.5-46-59.9z" clip-rule="evenodd" fill="url(#o)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="l" x1="-656.43" x2="-656.43" y1="163.86" y2="164.86" gradientTransform="matrix(60.866 3.1899 -8.7773 167.48 41560 -25168)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c-33.6 13.8-53.6 35.7-60.1 65.6s-3.6 63.1 8.7 99.6c27.4-40.3 43.2-69.6 47.4-88s5.6-44.1 4-77.2z" clip-rule="evenodd" fill="url(#l)" fill-rule="evenodd" stroke-width="13"></path><path d="m196.5 182.3c-14.8 21.6-25.1 41.4-30.8 59.4s-9.5 33-11.1 45.1" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m194.9 185.7c-24.4 1.7-43.8 9-58.1 21.8s-24.7 25.4-31.3 37.8" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m204.5 176.4c29.7-6.7 52-8.4 67-5.1s26.9 8.6 35.8 15.9" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m196.5 181.4c20.3 9.9 38.2 20.5 53.9 31.9s27.4 22.1 35.1 32" fill="none" stroke-linecap="round" stroke-width="8"></path></g></g><defs><filter id="al" x="50.5" y="399" width="532" height="633" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="d" x="50.5" y="399" width="532" height="633" maskUnits="userSpaceOnUse"><g filter="url(#al)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#d)"><linearGradient id="u" x1="-666.06" x2="-666.23" y1="163.36" y2="163.75" gradientTransform="matrix(532 0 0 633 354760 -102959)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFF400" offset="0"></stop><stop stop-color="#3C8700" offset="1"></stop></linearGradient><ellipse cx="316.5" cy="715.5" rx="266" ry="316.5" fill="url(#u)"></ellipse></g><defs><filter id="ad" x="391" y="-24" width="288" height="283" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="c" x="391" y="-24" width="288" height="283" maskUnits="userSpaceOnUse"><g filter="url(#ad)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#c)"><linearGradient id="t" x1="-664.56" x2="-664.56" y1="163.79" y2="164.79" gradientTransform="matrix(227 0 0 227 151421 -37204)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFDF00" offset="0"></stop><stop stop-color="#FF9D00" offset="1"></stop></linearGradient><circle cx="565.5" cy="89.5" r="113.5" fill="url(#t)"></circle><linearGradient id="v" x1="-644.5" x2="-645.77" y1="342" y2="342" gradientTransform="matrix(30 0 0 1 19770 -253)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="427" x2="397" y1="89" y2="89" fill="none" stroke="url(#v)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="aa" x1="-641.56" x2="-642.83" y1="196.02" y2="196.07" gradientTransform="matrix(26.5 0 0 5.5 17439 -1025.5)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="430.5" x2="404" y1="55.5" y2="50" fill="none" stroke="url(#aa)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="w" x1="-643.73" x2="-645" y1="185.83" y2="185.9" gradientTransform="matrix(29 0 0 8 19107 -1361)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="431" x2="402" y1="122" y2="130" fill="none" stroke="url(#w)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="ac" x1="-638.94" x2="-640.22" y1="177.09" y2="177.39" gradientTransform="matrix(24 0 0 13 15783 -2145)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="442" x2="418" y1="153" y2="166" fill="none" stroke="url(#ac)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="ab" x1="-633.42" x2="-634.7" y1="172.41" y2="173.31" gradientTransform="matrix(20 0 0 19 13137 -3096)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="464" x2="444" y1="180" y2="199" fill="none" stroke="url(#ab)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="y" x1="-619.05" x2="-619.52" y1="170.82" y2="171.82" gradientTransform="matrix(13.83 0 0 22.85 9050 -3703.4)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="491.4" x2="477.5" y1="203" y2="225.9" fill="none" stroke="url(#y)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="x" x1="-578.5" x2="-578.63" y1="170.31" y2="171.31" gradientTransform="matrix(7.5 0 0 24.5 4860 -3953)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="524.5" x2="517" y1="219.5" y2="244" fill="none" stroke="url(#x)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="z" x1="666.5" x2="666.5" y1="170.31" y2="171.31" gradientTransform="matrix(.5 0 0 24.5 231.5 -3944)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="564.5" x2="565" y1="228.5" y2="253" fill="none" stroke="url(#z)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12">`);
|
|
9340
|
+
var _tmpl$12 = /* @__PURE__ */ template(`<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#98A2B3" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><rect class="list" width="20" height="20" y="2" x="2" rx="2"></rect><line class="list-item" y1="7" y2="7" x1="6" x2="18"></line><line class="list-item" y2="12" y1="12" x1="6" x2="18"></line><line class="list-item" y1="17" y2="17" x1="6" x2="18">`);
|
|
9341
|
+
var _tmpl$13 = /* @__PURE__ */ template(`<svg version="1.0" viewBox="0 0 633 633"><linearGradient id="a" x1="-666.45" x2="-666.45" y1="163.28" y2="163.99" gradientTransform="matrix(633 0 0 633 422177 -103358)" gradientUnits="userSpaceOnUse"><stop stop-color="#6BDAFF" offset="0"></stop><stop stop-color="#F9FFB5" offset=".32"></stop><stop stop-color="#FFA770" offset=".71"></stop><stop stop-color="#FF7373" offset="1"></stop></linearGradient><circle cx="316.5" cy="316.5" r="316.5" fill="url(#a)"></circle><defs><filter id="am" x="-137.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="b" x="-137.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#am)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#b)"><ellipse cx="89.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"></ellipse></g><defs><filter id="ah" x="316.5" y="412" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="k" x="316.5" y="412" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ah)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#k)"><ellipse cx="543.5" cy="610.5" rx="214.5" ry="186" fill="#015064" stroke="#00CFE2" stroke-width="25"></ellipse></g><defs><filter id="ae" x="-137.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="j" x="-137.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ae)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#j)"><ellipse cx="89.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"></ellipse></g><defs><filter id="ai" x="316.5" y="450" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="i" x="316.5" y="450" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ai)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#i)"><ellipse cx="543.5" cy="648.5" rx="214.5" ry="186" fill="#015064" stroke="#00A8B8" stroke-width="25"></ellipse></g><defs><filter id="aj" x="-137.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="h" x="-137.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#aj)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#h)"><ellipse cx="89.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"></ellipse></g><defs><filter id="ag" x="316.5" y="486" width="454" height="396.9" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="g" x="316.5" y="486" width="454" height="396.9" maskUnits="userSpaceOnUse"><g filter="url(#ag)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#g)"><ellipse cx="543.5" cy="684.5" rx="214.5" ry="186" fill="#015064" stroke="#007782" stroke-width="25"></ellipse></g><defs><filter id="af" x="272.2" y="308" width="176.9" height="129.3" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="f" x="272.2" y="308" width="176.9" height="129.3" maskUnits="userSpaceOnUse"><g filter="url(#af)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#f)"><line x1="436" x2="431" y1="403.2" y2="431.8" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><line x1="291" x2="280" y1="341.5" y2="403.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><line x1="332.9" x2="328.6" y1="384.1" y2="411.2" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="11"></line><linearGradient id="m" x1="-670.75" x2="-671.59" y1="164.4" y2="164.49" gradientTransform="matrix(-184.16 -32.472 -11.461 64.997 -121359 -32126)" gradientUnits="userSpaceOnUse"><stop stop-color="#EE2700" offset="0"></stop><stop stop-color="#FF008E" offset="1"></stop></linearGradient><path d="m344.1 363 97.7 17.2c5.8 2.1 8.2 6.1 7.1 12.1s-4.7 9.2-11 9.9l-106-18.7-57.5-59.2c-3.2-4.8-2.9-9.1 0.8-12.8s8.3-4.4 13.7-2.1l55.2 53.6z" clip-rule="evenodd" fill="url(#m)" fill-rule="evenodd"></path><line x1="428.2" x2="429.1" y1="384.5" y2="378" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="395.2" x2="396.1" y1="379.5" y2="373" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="362.2" x2="363.1" y1="373.5" y2="367.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="324.2" x2="328.4" y1="351.3" y2="347.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line><line x1="303.2" x2="307.4" y1="331.3" y2="327.4" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="7"></line></g><defs><filter id="ak" x="73.2" y="113.8" width="280.6" height="317.4" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="e" x="73.2" y="113.8" width="280.6" height="317.4" maskUnits="userSpaceOnUse"><g filter="url(#ak)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#e)"><linearGradient id="n" x1="-672.16" x2="-672.16" y1="165.03" y2="166.03" gradientTransform="matrix(-100.18 48.861 97.976 200.88 -83342 -93.059)" gradientUnits="userSpaceOnUse"><stop stop-color="#A17500" offset="0"></stop><stop stop-color="#5D2100" offset="1"></stop></linearGradient><path d="m192.3 203c8.1 37.3 14 73.6 17.8 109.1 3.8 35.4 2.8 75.1-3 119.2l61.2-16.7c-15.6-59-25.2-97.9-28.6-116.6s-10.8-51.9-22.1-99.6l-25.3 4.6" clip-rule="evenodd" fill="url(#n)" fill-rule="evenodd"></path><g stroke="#2F8A00"><linearGradient id="r" x1="-660.23" x2="-660.23" y1="166.72" y2="167.72" gradientTransform="matrix(92.683 4.8573 -2.0259 38.657 61680 -3088.6)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m195 183.9s-12.6-22.1-36.5-29.9c-15.9-5.2-34.4-1.5-55.5 11.1 15.9 14.3 29.5 22.6 40.7 24.9 16.8 3.6 51.3-6.1 51.3-6.1z" clip-rule="evenodd" fill="url(#r)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="s" x1="-661.36" x2="-661.36" y1="164.18" y2="165.18" gradientTransform="matrix(110 5.7648 -6.3599 121.35 73933 -15933)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5s-47.5-8.5-83.2 15.7c-23.8 16.2-34.3 49.3-31.6 99.4 30.3-27.8 52.1-48.5 65.2-61.9 19.8-20.2 49.6-53.2 49.6-53.2z" clip-rule="evenodd" fill="url(#s)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="q" x1="-656.79" x2="-656.79" y1="165.15" y2="166.15" gradientTransform="matrix(62.954 3.2993 -3.5023 66.828 42156 -8754.1)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m195 183.9c-0.8-21.9 6-38 20.6-48.2s29.8-15.4 45.5-15.3c-6.1 21.4-14.5 35.8-25.2 43.4s-24.4 14.2-40.9 20.1z" clip-rule="evenodd" fill="url(#q)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="p" x1="-663.07" x2="-663.07" y1="165.44" y2="166.44" gradientTransform="matrix(152.47 7.9907 -3.0936 59.029 101884 -4318.7)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c31.9-30 64.1-39.7 96.7-29s50.8 30.4 54.6 59.1c-35.2-5.5-60.4-9.6-75.8-12.1-15.3-2.6-40.5-8.6-75.5-18z" clip-rule="evenodd" fill="url(#p)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="o" x1="-662.57" x2="-662.57" y1="164.44" y2="165.44" gradientTransform="matrix(136.46 7.1517 -5.2163 99.533 91536 -11442)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c35.8-7.6 65.6-0.2 89.2 22s37.7 49 42.3 80.3c-39.8-9.7-68.3-23.8-85.5-42.4s-32.5-38.5-46-59.9z" clip-rule="evenodd" fill="url(#o)" fill-rule="evenodd" stroke-width="13"></path><linearGradient id="l" x1="-656.43" x2="-656.43" y1="163.86" y2="164.86" gradientTransform="matrix(60.866 3.1899 -8.7773 167.48 41560 -25168)" gradientUnits="userSpaceOnUse"><stop stop-color="#2F8A00" offset="0"></stop><stop stop-color="#90FF57" offset="1"></stop></linearGradient><path d="m194.9 184.5c-33.6 13.8-53.6 35.7-60.1 65.6s-3.6 63.1 8.7 99.6c27.4-40.3 43.2-69.6 47.4-88s5.6-44.1 4-77.2z" clip-rule="evenodd" fill="url(#l)" fill-rule="evenodd" stroke-width="13"></path><path d="m196.5 182.3c-14.8 21.6-25.1 41.4-30.8 59.4s-9.5 33-11.1 45.1" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m194.9 185.7c-24.4 1.7-43.8 9-58.1 21.8s-24.7 25.4-31.3 37.8" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m204.5 176.4c29.7-6.7 52-8.4 67-5.1s26.9 8.6 35.8 15.9" fill="none" stroke-linecap="round" stroke-width="8"></path><path d="m196.5 181.4c20.3 9.9 38.2 20.5 53.9 31.9s27.4 22.1 35.1 32" fill="none" stroke-linecap="round" stroke-width="8"></path></g></g><defs><filter id="al" x="50.5" y="399" width="532" height="633" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="d" x="50.5" y="399" width="532" height="633" maskUnits="userSpaceOnUse"><g filter="url(#al)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#d)"><linearGradient id="u" x1="-666.06" x2="-666.23" y1="163.36" y2="163.75" gradientTransform="matrix(532 0 0 633 354760 -102959)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFF400" offset="0"></stop><stop stop-color="#3C8700" offset="1"></stop></linearGradient><ellipse cx="316.5" cy="715.5" rx="266" ry="316.5" fill="url(#u)"></ellipse></g><defs><filter id="ad" x="391" y="-24" width="288" height="283" filterUnits="userSpaceOnUse"><feColorMatrix values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"></feColorMatrix></filter></defs><mask id="c" x="391" y="-24" width="288" height="283" maskUnits="userSpaceOnUse"><g filter="url(#ad)"><circle cx="316.5" cy="316.5" r="316.5" fill="#fff"></circle></g></mask><g mask="url(#c)"><linearGradient id="t" x1="-664.56" x2="-664.56" y1="163.79" y2="164.79" gradientTransform="matrix(227 0 0 227 151421 -37204)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFDF00" offset="0"></stop><stop stop-color="#FF9D00" offset="1"></stop></linearGradient><circle cx="565.5" cy="89.5" r="113.5" fill="url(#t)"></circle><linearGradient id="v" x1="-644.5" x2="-645.77" y1="342" y2="342" gradientTransform="matrix(30 0 0 1 19770 -253)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="427" x2="397" y1="89" y2="89" fill="none" stroke="url(#v)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="aa" x1="-641.56" x2="-642.83" y1="196.02" y2="196.07" gradientTransform="matrix(26.5 0 0 5.5 17439 -1025.5)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="430.5" x2="404" y1="55.5" y2="50" fill="none" stroke="url(#aa)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="w" x1="-643.73" x2="-645" y1="185.83" y2="185.9" gradientTransform="matrix(29 0 0 8 19107 -1361)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="431" x2="402" y1="122" y2="130" fill="none" stroke="url(#w)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="ac" x1="-638.94" x2="-640.22" y1="177.09" y2="177.39" gradientTransform="matrix(24 0 0 13 15783 -2145)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="442" x2="418" y1="153" y2="166" fill="none" stroke="url(#ac)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="ab" x1="-633.42" x2="-634.7" y1="172.41" y2="173.31" gradientTransform="matrix(20 0 0 19 13137 -3096)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="464" x2="444" y1="180" y2="199" fill="none" stroke="url(#ab)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="y" x1="-619.05" x2="-619.52" y1="170.82" y2="171.82" gradientTransform="matrix(13.83 0 0 22.85 9050 -3703.4)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="491.4" x2="477.5" y1="203" y2="225.9" fill="none" stroke="url(#y)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="x" x1="-578.5" x2="-578.63" y1="170.31" y2="171.31" gradientTransform="matrix(7.5 0 0 24.5 4860 -3953)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="524.5" x2="517" y1="219.5" y2="244" fill="none" stroke="url(#x)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12"></line><linearGradient id="z" x1="666.5" x2="666.5" y1="170.31" y2="171.31" gradientTransform="matrix(.5 0 0 24.5 231.5 -3944)" gradientUnits="userSpaceOnUse"><stop stop-color="#FFA400" offset="0"></stop><stop stop-color="#FF5E00" offset="1"></stop></linearGradient><line x1="564.5" x2="565" y1="228.5" y2="253" fill="none" stroke="url(#z)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12">`);
|
|
9261
9342
|
function Search() {
|
|
9262
9343
|
return _tmpl$();
|
|
9263
9344
|
}
|
|
@@ -9317,17 +9398,35 @@ function CopiedCopier() {
|
|
|
9317
9398
|
function ErrorCopier() {
|
|
9318
9399
|
return _tmpl$11();
|
|
9319
9400
|
}
|
|
9320
|
-
function
|
|
9401
|
+
function List() {
|
|
9321
9402
|
return _tmpl$12();
|
|
9322
9403
|
}
|
|
9404
|
+
function TanstackLogo() {
|
|
9405
|
+
return _tmpl$13();
|
|
9406
|
+
}
|
|
9407
|
+
|
|
9408
|
+
// src/Context.ts
|
|
9409
|
+
var QueryDevtoolsContext = createContext({
|
|
9410
|
+
client: void 0,
|
|
9411
|
+
onlineManager: void 0,
|
|
9412
|
+
queryFlavor: "",
|
|
9413
|
+
version: ""
|
|
9414
|
+
});
|
|
9415
|
+
function useQueryDevtoolsContext() {
|
|
9416
|
+
return useContext(QueryDevtoolsContext);
|
|
9417
|
+
}
|
|
9323
9418
|
|
|
9324
9419
|
// src/Explorer.tsx
|
|
9325
|
-
var _tmpl$
|
|
9326
|
-
var _tmpl$22 = /* @__PURE__ */ template(`<button>`);
|
|
9327
|
-
var _tmpl$32 = /* @__PURE__ */ template(`<
|
|
9328
|
-
var _tmpl$42 = /* @__PURE__ */ template(`<
|
|
9329
|
-
var _tmpl$52 = /* @__PURE__ */ template(`<div
|
|
9330
|
-
var _tmpl$62 = /* @__PURE__ */ template(`<div><
|
|
9420
|
+
var _tmpl$14 = /* @__PURE__ */ template(`<span><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L10 8L6 4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">`);
|
|
9421
|
+
var _tmpl$22 = /* @__PURE__ */ template(`<button title="Copy object to clipboard">`);
|
|
9422
|
+
var _tmpl$32 = /* @__PURE__ */ template(`<button title="Remove all items" aria-label="Remove all items">`);
|
|
9423
|
+
var _tmpl$42 = /* @__PURE__ */ template(`<button title="Delete item" aria-label="Delete item">`);
|
|
9424
|
+
var _tmpl$52 = /* @__PURE__ */ template(`<div>`);
|
|
9425
|
+
var _tmpl$62 = /* @__PURE__ */ template(`<div><button> <span></span> <span> `);
|
|
9426
|
+
var _tmpl$72 = /* @__PURE__ */ template(`<input>`);
|
|
9427
|
+
var _tmpl$82 = /* @__PURE__ */ template(`<div><span>:`);
|
|
9428
|
+
var _tmpl$92 = /* @__PURE__ */ template(`<div><div><button> [<!>...<!>]`);
|
|
9429
|
+
var _tmpl$102 = /* @__PURE__ */ template(`<span>`);
|
|
9331
9430
|
function chunkArray(array, size2) {
|
|
9332
9431
|
if (size2 < 1)
|
|
9333
9432
|
return [];
|
|
@@ -9342,7 +9441,7 @@ function chunkArray(array, size2) {
|
|
|
9342
9441
|
var Expander = (props) => {
|
|
9343
9442
|
const styles = getStyles();
|
|
9344
9443
|
return (() => {
|
|
9345
|
-
const _el$ = _tmpl$
|
|
9444
|
+
const _el$ = _tmpl$14();
|
|
9346
9445
|
createRenderEffect(() => className(_el$, clsx(styles.expander, u`
|
|
9347
9446
|
transform: rotate(${props.expanded ? 90 : 0}deg);
|
|
9348
9447
|
`, props.expanded && u`
|
|
@@ -9398,7 +9497,7 @@ var CopyButton = (props) => {
|
|
|
9398
9497
|
}
|
|
9399
9498
|
}));
|
|
9400
9499
|
createRenderEffect((_p$) => {
|
|
9401
|
-
const _v$ = styles.
|
|
9500
|
+
const _v$ = styles.actionButton, _v$2 = `${copyState() === "NoCopy" ? "Copy object to clipboard" : copyState() === "SuccessCopy" ? "Object copied to clipboard" : "Error copying object to clipboard"}`;
|
|
9402
9501
|
_v$ !== _p$._v$ && className(_el$2, _p$._v$ = _v$);
|
|
9403
9502
|
_v$2 !== _p$._v$2 && setAttribute(_el$2, "aria-label", _p$._v$2 = _v$2);
|
|
9404
9503
|
return _p$;
|
|
@@ -9409,11 +9508,42 @@ var CopyButton = (props) => {
|
|
|
9409
9508
|
return _el$2;
|
|
9410
9509
|
})();
|
|
9411
9510
|
};
|
|
9511
|
+
var ClearArrayButton = (props) => {
|
|
9512
|
+
const styles = getStyles();
|
|
9513
|
+
const queryClient = useQueryDevtoolsContext().client;
|
|
9514
|
+
return (() => {
|
|
9515
|
+
const _el$3 = _tmpl$32();
|
|
9516
|
+
_el$3.$$click = () => {
|
|
9517
|
+
const oldData = props.activeQuery.state.data;
|
|
9518
|
+
const newData = updateNestedDataByPath(oldData, props.dataPath, []);
|
|
9519
|
+
queryClient.setQueryData(props.activeQuery.queryKey, newData);
|
|
9520
|
+
};
|
|
9521
|
+
insert(_el$3, createComponent(List, {}));
|
|
9522
|
+
createRenderEffect(() => className(_el$3, styles.actionButton));
|
|
9523
|
+
return _el$3;
|
|
9524
|
+
})();
|
|
9525
|
+
};
|
|
9526
|
+
var DeleteItemButton = (props) => {
|
|
9527
|
+
const styles = getStyles();
|
|
9528
|
+
const queryClient = useQueryDevtoolsContext().client;
|
|
9529
|
+
return (() => {
|
|
9530
|
+
const _el$4 = _tmpl$42();
|
|
9531
|
+
_el$4.$$click = () => {
|
|
9532
|
+
const oldData = props.activeQuery.state.data;
|
|
9533
|
+
const newData = deleteNestedDataByPath(oldData, props.dataPath);
|
|
9534
|
+
queryClient.setQueryData(props.activeQuery.queryKey, newData);
|
|
9535
|
+
};
|
|
9536
|
+
insert(_el$4, createComponent(Trash, {}));
|
|
9537
|
+
createRenderEffect(() => className(_el$4, clsx(styles.actionButton)));
|
|
9538
|
+
return _el$4;
|
|
9539
|
+
})();
|
|
9540
|
+
};
|
|
9412
9541
|
function isIterable(x) {
|
|
9413
9542
|
return Symbol.iterator in x;
|
|
9414
9543
|
}
|
|
9415
9544
|
function Explorer(props) {
|
|
9416
9545
|
const styles = getStyles();
|
|
9546
|
+
const queryClient = useQueryDevtoolsContext().client;
|
|
9417
9547
|
const [expanded, setExpanded] = createSignal((props.defaultExpanded || []).includes(props.label));
|
|
9418
9548
|
const toggleExpanded = () => setExpanded((old) => !old);
|
|
9419
9549
|
const [expandedPages, setExpandedPages] = createSignal([]);
|
|
@@ -9453,49 +9583,79 @@ function Explorer(props) {
|
|
|
9453
9583
|
return typeof props.value;
|
|
9454
9584
|
});
|
|
9455
9585
|
const subEntryPages = createMemo(() => chunkArray(subEntries(), 100));
|
|
9586
|
+
const currentDataPath = props.dataPath ?? [];
|
|
9456
9587
|
return (() => {
|
|
9457
|
-
const _el$
|
|
9458
|
-
insert(_el$
|
|
9588
|
+
const _el$5 = _tmpl$52();
|
|
9589
|
+
insert(_el$5, createComponent(Show, {
|
|
9459
9590
|
get when() {
|
|
9460
9591
|
return subEntryPages().length;
|
|
9461
9592
|
},
|
|
9462
9593
|
get children() {
|
|
9463
9594
|
return [(() => {
|
|
9464
|
-
const _el$
|
|
9465
|
-
_el$
|
|
9466
|
-
insert(_el$
|
|
9595
|
+
const _el$6 = _tmpl$62(), _el$7 = _el$6.firstChild, _el$8 = _el$7.firstChild, _el$9 = _el$8.nextSibling, _el$10 = _el$9.nextSibling, _el$11 = _el$10.nextSibling, _el$12 = _el$11.firstChild;
|
|
9596
|
+
_el$7.$$click = () => toggleExpanded();
|
|
9597
|
+
insert(_el$7, createComponent(Expander, {
|
|
9467
9598
|
get expanded() {
|
|
9468
9599
|
return expanded();
|
|
9469
9600
|
}
|
|
9470
|
-
}), _el$
|
|
9471
|
-
insert(_el$
|
|
9472
|
-
insert(_el$
|
|
9473
|
-
insert(_el$
|
|
9474
|
-
insert(_el$
|
|
9475
|
-
insert(_el$
|
|
9601
|
+
}), _el$8);
|
|
9602
|
+
insert(_el$9, () => props.label);
|
|
9603
|
+
insert(_el$11, () => String(type()).toLowerCase() === "iterable" ? "(Iterable) " : "", _el$12);
|
|
9604
|
+
insert(_el$11, () => subEntries().length, _el$12);
|
|
9605
|
+
insert(_el$11, () => subEntries().length > 1 ? `items` : `item`, null);
|
|
9606
|
+
insert(_el$6, createComponent(Show, {
|
|
9476
9607
|
get when() {
|
|
9477
|
-
return props.
|
|
9608
|
+
return props.editable;
|
|
9478
9609
|
},
|
|
9479
9610
|
get children() {
|
|
9480
|
-
|
|
9611
|
+
const _el$13 = _tmpl$52();
|
|
9612
|
+
insert(_el$13, createComponent(CopyButton, {
|
|
9481
9613
|
get value() {
|
|
9482
9614
|
return props.value;
|
|
9483
9615
|
}
|
|
9484
|
-
});
|
|
9616
|
+
}), null);
|
|
9617
|
+
insert(_el$13, createComponent(Show, {
|
|
9618
|
+
get when() {
|
|
9619
|
+
return props.itemsDeletable && props.activeQuery !== void 0;
|
|
9620
|
+
},
|
|
9621
|
+
get children() {
|
|
9622
|
+
return createComponent(DeleteItemButton, {
|
|
9623
|
+
get activeQuery() {
|
|
9624
|
+
return props.activeQuery;
|
|
9625
|
+
},
|
|
9626
|
+
dataPath: currentDataPath
|
|
9627
|
+
});
|
|
9628
|
+
}
|
|
9629
|
+
}), null);
|
|
9630
|
+
insert(_el$13, createComponent(Show, {
|
|
9631
|
+
get when() {
|
|
9632
|
+
return type() === "array" && props.activeQuery !== void 0;
|
|
9633
|
+
},
|
|
9634
|
+
get children() {
|
|
9635
|
+
return createComponent(ClearArrayButton, {
|
|
9636
|
+
get activeQuery() {
|
|
9637
|
+
return props.activeQuery;
|
|
9638
|
+
},
|
|
9639
|
+
dataPath: currentDataPath
|
|
9640
|
+
});
|
|
9641
|
+
}
|
|
9642
|
+
}), null);
|
|
9643
|
+
createRenderEffect(() => className(_el$13, styles.actions));
|
|
9644
|
+
return _el$13;
|
|
9485
9645
|
}
|
|
9486
9646
|
}), null);
|
|
9487
9647
|
createRenderEffect((_p$) => {
|
|
9488
9648
|
const _v$3 = styles.expanderButtonContainer, _v$4 = styles.expanderButton, _v$5 = styles.info;
|
|
9489
|
-
_v$3 !== _p$._v$3 && className(_el$
|
|
9490
|
-
_v$4 !== _p$._v$4 && className(_el$
|
|
9491
|
-
_v$5 !== _p$._v$5 && className(_el$
|
|
9649
|
+
_v$3 !== _p$._v$3 && className(_el$6, _p$._v$3 = _v$3);
|
|
9650
|
+
_v$4 !== _p$._v$4 && className(_el$7, _p$._v$4 = _v$4);
|
|
9651
|
+
_v$5 !== _p$._v$5 && className(_el$11, _p$._v$5 = _v$5);
|
|
9492
9652
|
return _p$;
|
|
9493
9653
|
}, {
|
|
9494
9654
|
_v$3: void 0,
|
|
9495
9655
|
_v$4: void 0,
|
|
9496
9656
|
_v$5: void 0
|
|
9497
9657
|
});
|
|
9498
|
-
return _el$
|
|
9658
|
+
return _el$6;
|
|
9499
9659
|
})(), createComponent(Show, {
|
|
9500
9660
|
get when() {
|
|
9501
9661
|
return expanded();
|
|
@@ -9506,8 +9666,8 @@ function Explorer(props) {
|
|
|
9506
9666
|
return subEntryPages().length === 1;
|
|
9507
9667
|
},
|
|
9508
9668
|
get children() {
|
|
9509
|
-
const _el$
|
|
9510
|
-
insert(_el$
|
|
9669
|
+
const _el$14 = _tmpl$52();
|
|
9670
|
+
insert(_el$14, createComponent(Key, {
|
|
9511
9671
|
get each() {
|
|
9512
9672
|
return subEntries();
|
|
9513
9673
|
},
|
|
@@ -9523,42 +9683,51 @@ function Explorer(props) {
|
|
|
9523
9683
|
get value() {
|
|
9524
9684
|
return entry().value;
|
|
9525
9685
|
},
|
|
9526
|
-
get
|
|
9527
|
-
return props.
|
|
9686
|
+
get editable() {
|
|
9687
|
+
return props.editable;
|
|
9688
|
+
},
|
|
9689
|
+
get dataPath() {
|
|
9690
|
+
return [...currentDataPath, entry().label];
|
|
9691
|
+
},
|
|
9692
|
+
get activeQuery() {
|
|
9693
|
+
return props.activeQuery;
|
|
9694
|
+
},
|
|
9695
|
+
get itemsDeletable() {
|
|
9696
|
+
return type() === "array" || type() === "Iterable" || type() === "object";
|
|
9528
9697
|
}
|
|
9529
9698
|
});
|
|
9530
9699
|
}
|
|
9531
9700
|
}));
|
|
9532
|
-
createRenderEffect(() => className(_el$
|
|
9533
|
-
return _el$
|
|
9701
|
+
createRenderEffect(() => className(_el$14, styles.subEntry));
|
|
9702
|
+
return _el$14;
|
|
9534
9703
|
}
|
|
9535
9704
|
}), createComponent(Show, {
|
|
9536
9705
|
get when() {
|
|
9537
9706
|
return subEntryPages().length > 1;
|
|
9538
9707
|
},
|
|
9539
9708
|
get children() {
|
|
9540
|
-
const _el$
|
|
9541
|
-
insert(_el$
|
|
9709
|
+
const _el$15 = _tmpl$52();
|
|
9710
|
+
insert(_el$15, createComponent(Index, {
|
|
9542
9711
|
get each() {
|
|
9543
9712
|
return subEntryPages();
|
|
9544
9713
|
},
|
|
9545
9714
|
children: (entries3, index) => (() => {
|
|
9546
|
-
const _el$
|
|
9547
|
-
_el$
|
|
9548
|
-
insert(_el$
|
|
9715
|
+
const _el$20 = _tmpl$92(), _el$21 = _el$20.firstChild, _el$22 = _el$21.firstChild, _el$23 = _el$22.firstChild, _el$27 = _el$23.nextSibling, _el$25 = _el$27.nextSibling, _el$28 = _el$25.nextSibling; _el$28.nextSibling;
|
|
9716
|
+
_el$22.$$click = () => setExpandedPages((old) => old.includes(index) ? old.filter((d) => d !== index) : [...old, index]);
|
|
9717
|
+
insert(_el$22, createComponent(Expander, {
|
|
9549
9718
|
get expanded() {
|
|
9550
9719
|
return expandedPages().includes(index);
|
|
9551
9720
|
}
|
|
9552
|
-
}), _el$
|
|
9553
|
-
insert(_el$
|
|
9554
|
-
insert(_el$
|
|
9555
|
-
insert(_el$
|
|
9721
|
+
}), _el$23);
|
|
9722
|
+
insert(_el$22, index * 100, _el$27);
|
|
9723
|
+
insert(_el$22, index * 100 + 100 - 1, _el$28);
|
|
9724
|
+
insert(_el$21, createComponent(Show, {
|
|
9556
9725
|
get when() {
|
|
9557
9726
|
return expandedPages().includes(index);
|
|
9558
9727
|
},
|
|
9559
9728
|
get children() {
|
|
9560
|
-
const _el$
|
|
9561
|
-
insert(_el$
|
|
9729
|
+
const _el$29 = _tmpl$52();
|
|
9730
|
+
insert(_el$29, createComponent(Key, {
|
|
9562
9731
|
get each() {
|
|
9563
9732
|
return entries3();
|
|
9564
9733
|
},
|
|
@@ -9573,58 +9742,107 @@ function Explorer(props) {
|
|
|
9573
9742
|
get value() {
|
|
9574
9743
|
return entry().value;
|
|
9575
9744
|
},
|
|
9576
|
-
get
|
|
9577
|
-
return props.
|
|
9745
|
+
get editable() {
|
|
9746
|
+
return props.editable;
|
|
9747
|
+
},
|
|
9748
|
+
get dataPath() {
|
|
9749
|
+
return [...currentDataPath, entry().label];
|
|
9750
|
+
},
|
|
9751
|
+
get activeQuery() {
|
|
9752
|
+
return props.activeQuery;
|
|
9578
9753
|
}
|
|
9579
9754
|
})
|
|
9580
9755
|
}));
|
|
9581
|
-
createRenderEffect(() => className(_el$
|
|
9582
|
-
return _el$
|
|
9756
|
+
createRenderEffect(() => className(_el$29, styles.subEntry));
|
|
9757
|
+
return _el$29;
|
|
9583
9758
|
}
|
|
9584
9759
|
}), null);
|
|
9585
9760
|
createRenderEffect((_p$) => {
|
|
9586
|
-
const _v$
|
|
9587
|
-
_v$
|
|
9588
|
-
_v$
|
|
9761
|
+
const _v$10 = styles.entry, _v$11 = styles.expanderButton;
|
|
9762
|
+
_v$10 !== _p$._v$10 && className(_el$21, _p$._v$10 = _v$10);
|
|
9763
|
+
_v$11 !== _p$._v$11 && className(_el$22, _p$._v$11 = _v$11);
|
|
9589
9764
|
return _p$;
|
|
9590
9765
|
}, {
|
|
9591
|
-
_v$
|
|
9592
|
-
_v$
|
|
9766
|
+
_v$10: void 0,
|
|
9767
|
+
_v$11: void 0
|
|
9593
9768
|
});
|
|
9594
|
-
return _el$
|
|
9769
|
+
return _el$20;
|
|
9595
9770
|
})()
|
|
9596
9771
|
}));
|
|
9597
|
-
createRenderEffect(() => className(_el$
|
|
9598
|
-
return _el$
|
|
9772
|
+
createRenderEffect(() => className(_el$15, styles.subEntry));
|
|
9773
|
+
return _el$15;
|
|
9599
9774
|
}
|
|
9600
9775
|
})];
|
|
9601
9776
|
}
|
|
9602
9777
|
})];
|
|
9603
9778
|
}
|
|
9604
9779
|
}), null);
|
|
9605
|
-
insert(_el$
|
|
9780
|
+
insert(_el$5, createComponent(Show, {
|
|
9606
9781
|
get when() {
|
|
9607
9782
|
return subEntryPages().length === 0;
|
|
9608
9783
|
},
|
|
9609
9784
|
get children() {
|
|
9610
|
-
const _el$
|
|
9611
|
-
_el$
|
|
9612
|
-
insert(_el$
|
|
9613
|
-
|
|
9785
|
+
const _el$16 = _tmpl$82(), _el$17 = _el$16.firstChild, _el$18 = _el$17.firstChild;
|
|
9786
|
+
insert(_el$17, () => props.label, _el$18);
|
|
9787
|
+
insert(_el$16, createComponent(Show, {
|
|
9788
|
+
get when() {
|
|
9789
|
+
return createMemo(() => !!(props.editable && props.activeQuery !== void 0))() && (type() === "string" || type() === "number");
|
|
9790
|
+
},
|
|
9791
|
+
get fallback() {
|
|
9792
|
+
return (() => {
|
|
9793
|
+
const _el$30 = _tmpl$102();
|
|
9794
|
+
insert(_el$30, () => displayValue(props.value));
|
|
9795
|
+
createRenderEffect(() => className(_el$30, styles.value));
|
|
9796
|
+
return _el$30;
|
|
9797
|
+
})();
|
|
9798
|
+
},
|
|
9799
|
+
get children() {
|
|
9800
|
+
const _el$19 = _tmpl$72();
|
|
9801
|
+
_el$19.addEventListener("change", (changeEvent) => {
|
|
9802
|
+
const oldData = props.activeQuery.state.data;
|
|
9803
|
+
const newData = updateNestedDataByPath(oldData, currentDataPath, type() === "number" ? changeEvent.target.valueAsNumber : changeEvent.target.value);
|
|
9804
|
+
queryClient.setQueryData(props.activeQuery.queryKey, newData);
|
|
9805
|
+
});
|
|
9806
|
+
createRenderEffect((_p$) => {
|
|
9807
|
+
const _v$6 = type() === "number" ? "number" : "text", _v$7 = clsx(styles.value, styles.editableInput);
|
|
9808
|
+
_v$6 !== _p$._v$6 && setAttribute(_el$19, "type", _p$._v$6 = _v$6);
|
|
9809
|
+
_v$7 !== _p$._v$7 && className(_el$19, _p$._v$7 = _v$7);
|
|
9810
|
+
return _p$;
|
|
9811
|
+
}, {
|
|
9812
|
+
_v$6: void 0,
|
|
9813
|
+
_v$7: void 0
|
|
9814
|
+
});
|
|
9815
|
+
createRenderEffect(() => _el$19.value = props.value);
|
|
9816
|
+
return _el$19;
|
|
9817
|
+
}
|
|
9818
|
+
}), null);
|
|
9819
|
+
insert(_el$16, createComponent(Show, {
|
|
9820
|
+
get when() {
|
|
9821
|
+
return props.editable && props.itemsDeletable && props.activeQuery !== void 0;
|
|
9822
|
+
},
|
|
9823
|
+
get children() {
|
|
9824
|
+
return createComponent(DeleteItemButton, {
|
|
9825
|
+
get activeQuery() {
|
|
9826
|
+
return props.activeQuery;
|
|
9827
|
+
},
|
|
9828
|
+
dataPath: currentDataPath
|
|
9829
|
+
});
|
|
9830
|
+
}
|
|
9831
|
+
}), null);
|
|
9614
9832
|
createRenderEffect((_p$) => {
|
|
9615
|
-
const _v$
|
|
9616
|
-
_v$
|
|
9617
|
-
_v$
|
|
9833
|
+
const _v$8 = styles.row, _v$9 = styles.label;
|
|
9834
|
+
_v$8 !== _p$._v$8 && className(_el$16, _p$._v$8 = _v$8);
|
|
9835
|
+
_v$9 !== _p$._v$9 && className(_el$17, _p$._v$9 = _v$9);
|
|
9618
9836
|
return _p$;
|
|
9619
9837
|
}, {
|
|
9620
|
-
_v$
|
|
9621
|
-
_v$
|
|
9838
|
+
_v$8: void 0,
|
|
9839
|
+
_v$9: void 0
|
|
9622
9840
|
});
|
|
9623
|
-
return _el$
|
|
9841
|
+
return _el$16;
|
|
9624
9842
|
}
|
|
9625
9843
|
}), null);
|
|
9626
|
-
createRenderEffect(() => className(_el$
|
|
9627
|
-
return _el$
|
|
9844
|
+
createRenderEffect(() => className(_el$5, styles.entry));
|
|
9845
|
+
return _el$5;
|
|
9628
9846
|
})();
|
|
9629
9847
|
}
|
|
9630
9848
|
var getStyles = () => {
|
|
@@ -9668,6 +9886,7 @@ var getStyles = () => {
|
|
|
9668
9886
|
align-items: center;
|
|
9669
9887
|
line-height: 1.125rem;
|
|
9670
9888
|
min-height: 1.125rem;
|
|
9889
|
+
gap: ${size2[2]};
|
|
9671
9890
|
`,
|
|
9672
9891
|
expanderButton: u`
|
|
9673
9892
|
cursor: pointer;
|
|
@@ -9705,8 +9924,30 @@ var getStyles = () => {
|
|
|
9705
9924
|
`,
|
|
9706
9925
|
value: u`
|
|
9707
9926
|
color: ${colors.purple[400]};
|
|
9927
|
+
flex-grow: 1;
|
|
9708
9928
|
`,
|
|
9709
|
-
|
|
9929
|
+
actions: u`
|
|
9930
|
+
display: inline-flex;
|
|
9931
|
+
gap: ${size2[2]};
|
|
9932
|
+
`,
|
|
9933
|
+
row: u`
|
|
9934
|
+
display: inline-flex;
|
|
9935
|
+
gap: ${size2[2]};
|
|
9936
|
+
width: 100%;
|
|
9937
|
+
margin-bottom: ${size2[0.5]};
|
|
9938
|
+
line-height: 1.125rem;
|
|
9939
|
+
`,
|
|
9940
|
+
editableInput: u`
|
|
9941
|
+
border: none;
|
|
9942
|
+
padding: 0px ${size2[1]};
|
|
9943
|
+
flex-grow: 1;
|
|
9944
|
+
background-color: ${colors.gray[900]};
|
|
9945
|
+
|
|
9946
|
+
&:hover {
|
|
9947
|
+
background-color: ${colors.gray[800]};
|
|
9948
|
+
}
|
|
9949
|
+
`,
|
|
9950
|
+
actionButton: u`
|
|
9710
9951
|
background-color: transparent;
|
|
9711
9952
|
border: none;
|
|
9712
9953
|
display: inline-flex;
|
|
@@ -9717,11 +9958,17 @@ var getStyles = () => {
|
|
|
9717
9958
|
width: ${size2[3]};
|
|
9718
9959
|
height: ${size2[3]};
|
|
9719
9960
|
position: relative;
|
|
9720
|
-
left: ${size2[2]};
|
|
9721
9961
|
z-index: 1;
|
|
9722
9962
|
|
|
9723
|
-
&:hover svg
|
|
9724
|
-
|
|
9963
|
+
&:hover svg {
|
|
9964
|
+
.copier,
|
|
9965
|
+
.list {
|
|
9966
|
+
stroke: ${colors.gray[500]} !important;
|
|
9967
|
+
}
|
|
9968
|
+
|
|
9969
|
+
.list-item {
|
|
9970
|
+
stroke: ${colors.gray[700]};
|
|
9971
|
+
}
|
|
9725
9972
|
}
|
|
9726
9973
|
|
|
9727
9974
|
&:focus-visible {
|
|
@@ -9734,17 +9981,6 @@ var getStyles = () => {
|
|
|
9734
9981
|
};
|
|
9735
9982
|
delegateEvents(["click"]);
|
|
9736
9983
|
|
|
9737
|
-
// src/Context.ts
|
|
9738
|
-
var QueryDevtoolsContext = createContext({
|
|
9739
|
-
client: void 0,
|
|
9740
|
-
onlineManager: void 0,
|
|
9741
|
-
queryFlavor: "",
|
|
9742
|
-
version: ""
|
|
9743
|
-
});
|
|
9744
|
-
function useQueryDevtoolsContext() {
|
|
9745
|
-
return useContext(QueryDevtoolsContext);
|
|
9746
|
-
}
|
|
9747
|
-
|
|
9748
9984
|
// src/fonts.ts
|
|
9749
9985
|
var loadFonts = () => {
|
|
9750
9986
|
const link = document.createElement("link");
|
|
@@ -9754,21 +9990,21 @@ var loadFonts = () => {
|
|
|
9754
9990
|
};
|
|
9755
9991
|
|
|
9756
9992
|
// src/Devtools.tsx
|
|
9757
|
-
var _tmpl$
|
|
9993
|
+
var _tmpl$15 = /* @__PURE__ */ template(`<div><div aria-hidden="true"></div><button aria-label="Open Tanstack query devtools">`);
|
|
9758
9994
|
var _tmpl$23 = /* @__PURE__ */ template(`<div>`);
|
|
9759
9995
|
var _tmpl$33 = /* @__PURE__ */ template(`<span>Asc`);
|
|
9760
9996
|
var _tmpl$43 = /* @__PURE__ */ template(`<span>Desc`);
|
|
9761
9997
|
var _tmpl$53 = /* @__PURE__ */ template(`<div>Settings`);
|
|
9762
9998
|
var _tmpl$63 = /* @__PURE__ */ template(`<span>Position`);
|
|
9763
|
-
var _tmpl$
|
|
9764
|
-
var _tmpl$
|
|
9765
|
-
var _tmpl$
|
|
9766
|
-
var _tmpl$
|
|
9999
|
+
var _tmpl$73 = /* @__PURE__ */ template(`<span>Top`);
|
|
10000
|
+
var _tmpl$83 = /* @__PURE__ */ template(`<span>Bottom`);
|
|
10001
|
+
var _tmpl$93 = /* @__PURE__ */ template(`<span>Left`);
|
|
10002
|
+
var _tmpl$103 = /* @__PURE__ */ template(`<span>Right`);
|
|
9767
10003
|
var _tmpl$112 = /* @__PURE__ */ template(`<aside aria-label="Tanstack query devtools"><div></div><button aria-label="Close tanstack query devtools"></button><div><div><button aria-label="Close Tanstack query devtools"><span>TANSTACK</span><span> v</span></button></div><div><div><div><input aria-label="Filter queries by query key" type="text" placeholder="Filter" class="tsqd-query-filter-textfield"></div><div><select></select></div><button class="tsqd-query-filter-sort-order-btn"></button></div><div><button aria-label="Clear query cache" title="Clear query cache"></button><button></button></div></div><div><div class="tsqd-queries-container">`);
|
|
9768
10004
|
var _tmpl$122 = /* @__PURE__ */ template(`<option>Sort by `);
|
|
9769
10005
|
var _tmpl$132 = /* @__PURE__ */ template(`<div class="tsqd-query-disabled-indicator">disabled`);
|
|
9770
10006
|
var _tmpl$142 = /* @__PURE__ */ template(`<button><div></div><code class="tsqd-query-hash">`);
|
|
9771
|
-
var _tmpl$
|
|
10007
|
+
var _tmpl$152 = /* @__PURE__ */ template(`<div role="tooltip" id="tsqd-status-tooltip">`);
|
|
9772
10008
|
var _tmpl$16 = /* @__PURE__ */ template(`<span>`);
|
|
9773
10009
|
var _tmpl$17 = /* @__PURE__ */ template(`<button><span></span><span>`);
|
|
9774
10010
|
var _tmpl$18 = /* @__PURE__ */ template(`<button><span></span> Error`);
|
|
@@ -9845,7 +10081,7 @@ var Devtools = () => {
|
|
|
9845
10081
|
return !isOpen();
|
|
9846
10082
|
},
|
|
9847
10083
|
get children() {
|
|
9848
|
-
const _el$2 = _tmpl$
|
|
10084
|
+
const _el$2 = _tmpl$15(), _el$3 = _el$2.firstChild, _el$4 = _el$3.nextSibling;
|
|
9849
10085
|
insert(_el$3, createComponent(TanstackLogo, {}));
|
|
9850
10086
|
_el$4.$$click = () => setLocalStore("open", "true");
|
|
9851
10087
|
insert(_el$4, createComponent(TanstackLogo, {}));
|
|
@@ -10097,7 +10333,7 @@ var DevtoolsPanel = (props) => {
|
|
|
10097
10333
|
return clsx(styles.settingsSubButton, "tsqd-settings-menu-position-btn", "tsqd-settings-menu-position-btn-top");
|
|
10098
10334
|
},
|
|
10099
10335
|
get children() {
|
|
10100
|
-
return [_tmpl$
|
|
10336
|
+
return [_tmpl$73(), createComponent(ArrowUp, {})];
|
|
10101
10337
|
}
|
|
10102
10338
|
}), createComponent(index$d.Item, {
|
|
10103
10339
|
onSelect: () => {
|
|
@@ -10108,7 +10344,7 @@ var DevtoolsPanel = (props) => {
|
|
|
10108
10344
|
return clsx(styles.settingsSubButton, "tsqd-settings-menu-position-btn", "tsqd-settings-menu-position-btn-bottom");
|
|
10109
10345
|
},
|
|
10110
10346
|
get children() {
|
|
10111
|
-
return [_tmpl$
|
|
10347
|
+
return [_tmpl$83(), createComponent(ArrowDown, {})];
|
|
10112
10348
|
}
|
|
10113
10349
|
}), createComponent(index$d.Item, {
|
|
10114
10350
|
onSelect: () => {
|
|
@@ -10119,7 +10355,7 @@ var DevtoolsPanel = (props) => {
|
|
|
10119
10355
|
return clsx(styles.settingsSubButton, "tsqd-settings-menu-position-btn", "tsqd-settings-menu-position-btn-left");
|
|
10120
10356
|
},
|
|
10121
10357
|
get children() {
|
|
10122
|
-
return [_tmpl$
|
|
10358
|
+
return [_tmpl$93(), createComponent(ArrowLeft, {})];
|
|
10123
10359
|
}
|
|
10124
10360
|
}), createComponent(index$d.Item, {
|
|
10125
10361
|
onSelect: () => {
|
|
@@ -10130,7 +10366,7 @@ var DevtoolsPanel = (props) => {
|
|
|
10130
10366
|
return clsx(styles.settingsSubButton, "tsqd-settings-menu-position-btn", "tsqd-settings-menu-position-btn-right");
|
|
10131
10367
|
},
|
|
10132
10368
|
get children() {
|
|
10133
|
-
return [_tmpl$
|
|
10369
|
+
return [_tmpl$103(), createComponent(ArrowRight, {})];
|
|
10134
10370
|
}
|
|
10135
10371
|
})];
|
|
10136
10372
|
}
|
|
@@ -10384,7 +10620,7 @@ var QueryStatus = (props) => {
|
|
|
10384
10620
|
return createMemo(() => !!!showLabel())() && (mouseOver() || focused());
|
|
10385
10621
|
},
|
|
10386
10622
|
get children() {
|
|
10387
|
-
const _el$42 = _tmpl$
|
|
10623
|
+
const _el$42 = _tmpl$152();
|
|
10388
10624
|
insert(_el$42, () => props.label);
|
|
10389
10625
|
createRenderEffect(() => className(_el$42, clsx(styles.statusTooltip, "tsqd-query-status-tooltip")));
|
|
10390
10626
|
return _el$42;
|
|
@@ -10605,7 +10841,10 @@ var QueryDetails = () => {
|
|
|
10605
10841
|
get value() {
|
|
10606
10842
|
return activeQueryStateData();
|
|
10607
10843
|
},
|
|
10608
|
-
|
|
10844
|
+
editable: true,
|
|
10845
|
+
get activeQuery() {
|
|
10846
|
+
return activeQuery();
|
|
10847
|
+
}
|
|
10609
10848
|
}));
|
|
10610
10849
|
_el$83.style.setProperty("padding", "0.5rem");
|
|
10611
10850
|
insert(_el$83, createComponent(Explorer, {
|