@tanstack/query-devtools 5.20.1 → 5.21.0
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/{C3WICRFF.jsx → 2ACMJH2B.jsx} +34 -26
- package/build/Devtools/{4MFZ6GJ2.js → 4IXB5NHK.js} +34 -25
- package/build/Devtools/{SLJ7V32M.jsx → EX35NSIV.jsx} +35 -25
- package/build/Devtools/{BCQ5SSOV.js → NU5BFWH6.js} +34 -25
- package/build/chunk/{LF7D7ABG.jsx → AZNCIVVX.jsx} +178 -298
- package/build/chunk/{JYLDHR36.js → O2PITFF6.js} +178 -298
- package/build/chunk/{F4H74EX7.jsx → PQZZ5Z2E.jsx} +178 -298
- package/build/chunk/{6HEWUOJS.js → XKKA3NOX.js} +178 -298
- package/build/dev.cjs +229 -340
- package/build/dev.js +3 -3
- package/build/dev.jsx +2 -2
- package/build/index.cjs +229 -340
- package/build/index.d.cts +1 -1
- package/build/index.d.ts +1 -1
- package/build/index.js +3 -3
- package/build/index.jsx +2 -2
- package/package.json +5 -5
- package/src/Context.ts +1 -1
- package/src/Devtools.tsx +12 -5
package/build/index.cjs
CHANGED
|
@@ -10,7 +10,7 @@ var __export = (target, all) => {
|
|
|
10
10
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
-
// ../../node_modules/.pnpm/solid-js@1.8.
|
|
13
|
+
// ../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/dist/solid.js
|
|
14
14
|
function setHydrateContext(context) {
|
|
15
15
|
sharedConfig.context = context;
|
|
16
16
|
}
|
|
@@ -125,11 +125,9 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
125
125
|
pr = null;
|
|
126
126
|
key !== void 0 && (resolved = true);
|
|
127
127
|
if ((p2 === initP || v === initP) && options.onHydrated)
|
|
128
|
-
queueMicrotask(
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
})
|
|
132
|
-
);
|
|
128
|
+
queueMicrotask(() => options.onHydrated(key, {
|
|
129
|
+
value: v
|
|
130
|
+
}));
|
|
133
131
|
initP = NO_INIT;
|
|
134
132
|
if (Transition && p2 && loadedUnderTransition) {
|
|
135
133
|
Transition.promises.delete(p2);
|
|
@@ -185,12 +183,10 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
185
183
|
}
|
|
186
184
|
if (Transition && pr)
|
|
187
185
|
Transition.promises.delete(pr);
|
|
188
|
-
const p2 = initP !== NO_INIT ? initP : untrack(
|
|
189
|
-
()
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
})
|
|
193
|
-
);
|
|
186
|
+
const p2 = initP !== NO_INIT ? initP : untrack(() => fetcher(lookup, {
|
|
187
|
+
value: value(),
|
|
188
|
+
refetching
|
|
189
|
+
}));
|
|
194
190
|
if (!isPromise(p2)) {
|
|
195
191
|
loadEnd(pr, p2, void 0, lookup);
|
|
196
192
|
return p2;
|
|
@@ -209,10 +205,7 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
209
205
|
setState2(resolved ? "refreshing" : "pending");
|
|
210
206
|
trigger();
|
|
211
207
|
}, false);
|
|
212
|
-
return p2.then(
|
|
213
|
-
(v) => loadEnd(p2, v, void 0, lookup),
|
|
214
|
-
(e2) => loadEnd(p2, void 0, castError(e2), lookup)
|
|
215
|
-
);
|
|
208
|
+
return p2.then((v) => loadEnd(p2, v, void 0, lookup), (e2) => loadEnd(p2, void 0, castError(e2), lookup));
|
|
216
209
|
}
|
|
217
210
|
Object.defineProperties(read, {
|
|
218
211
|
state: {
|
|
@@ -242,23 +235,22 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
242
235
|
createComputed(() => load(false));
|
|
243
236
|
else
|
|
244
237
|
load(false);
|
|
245
|
-
return [
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
mutate: setValue
|
|
250
|
-
}
|
|
251
|
-
];
|
|
238
|
+
return [read, {
|
|
239
|
+
refetch: load,
|
|
240
|
+
mutate: setValue
|
|
241
|
+
}];
|
|
252
242
|
}
|
|
253
243
|
function batch(fn) {
|
|
254
244
|
return runUpdates(fn, false);
|
|
255
245
|
}
|
|
256
246
|
function untrack(fn) {
|
|
257
|
-
if (Listener === null)
|
|
247
|
+
if (!ExternalSourceConfig && Listener === null)
|
|
258
248
|
return fn();
|
|
259
249
|
const listener = Listener;
|
|
260
250
|
Listener = null;
|
|
261
251
|
try {
|
|
252
|
+
if (ExternalSourceConfig)
|
|
253
|
+
return ExternalSourceConfig.untrack(fn);
|
|
262
254
|
return fn();
|
|
263
255
|
} finally {
|
|
264
256
|
Listener = listener;
|
|
@@ -450,11 +442,7 @@ function updateComputation(node) {
|
|
|
450
442
|
return;
|
|
451
443
|
cleanNode(node);
|
|
452
444
|
const time = ExecCount;
|
|
453
|
-
runComputation(
|
|
454
|
-
node,
|
|
455
|
-
Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value,
|
|
456
|
-
time
|
|
457
|
-
);
|
|
445
|
+
runComputation(node, Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value, time);
|
|
458
446
|
if (Transition && !Transition.running && Transition.sources.has(node)) {
|
|
459
447
|
queueMicrotask(() => {
|
|
460
448
|
runUpdates(() => {
|
|
@@ -534,14 +522,14 @@ function createComputation(fn, init, pure, state2 = STALE, options) {
|
|
|
534
522
|
Owner.owned.push(c2);
|
|
535
523
|
}
|
|
536
524
|
}
|
|
537
|
-
if (
|
|
525
|
+
if (ExternalSourceConfig && c2.fn) {
|
|
538
526
|
const [track, trigger] = createSignal(void 0, {
|
|
539
527
|
equals: false
|
|
540
528
|
});
|
|
541
|
-
const ordinary =
|
|
529
|
+
const ordinary = ExternalSourceConfig.factory(c2.fn, trigger);
|
|
542
530
|
onCleanup(() => ordinary.dispose());
|
|
543
531
|
const triggerInTransition = () => startTransition(trigger).then(() => inTransition.dispose());
|
|
544
|
-
const inTransition =
|
|
532
|
+
const inTransition = ExternalSourceConfig.factory(c2.fn, triggerInTransition);
|
|
545
533
|
c2.fn = (x) => {
|
|
546
534
|
track();
|
|
547
535
|
return Transition && Transition.running ? inTransition.track(x) : ordinary.track(x);
|
|
@@ -832,16 +820,13 @@ function resolveChildren(children2) {
|
|
|
832
820
|
function createProvider(id, options) {
|
|
833
821
|
return function provider(props) {
|
|
834
822
|
let res;
|
|
835
|
-
createRenderEffect(
|
|
836
|
-
|
|
837
|
-
Owner.context
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
}),
|
|
843
|
-
void 0
|
|
844
|
-
);
|
|
823
|
+
createRenderEffect(() => res = untrack(() => {
|
|
824
|
+
Owner.context = {
|
|
825
|
+
...Owner.context,
|
|
826
|
+
[id]: props.value
|
|
827
|
+
};
|
|
828
|
+
return children(() => props.children);
|
|
829
|
+
}), void 0);
|
|
845
830
|
return res;
|
|
846
831
|
};
|
|
847
832
|
}
|
|
@@ -1027,108 +1012,96 @@ function mergeProps(...sources) {
|
|
|
1027
1012
|
sources[i2] = typeof s2 === "function" ? (proxy = true, createMemo(s2)) : s2;
|
|
1028
1013
|
}
|
|
1029
1014
|
if (proxy) {
|
|
1030
|
-
return new Proxy(
|
|
1031
|
-
{
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
return v;
|
|
1037
|
-
}
|
|
1038
|
-
},
|
|
1039
|
-
has(property) {
|
|
1040
|
-
for (let i2 = sources.length - 1; i2 >= 0; i2--) {
|
|
1041
|
-
if (property in resolveSource(sources[i2]))
|
|
1042
|
-
return true;
|
|
1043
|
-
}
|
|
1044
|
-
return false;
|
|
1045
|
-
},
|
|
1046
|
-
keys() {
|
|
1047
|
-
const keys2 = [];
|
|
1048
|
-
for (let i2 = 0; i2 < sources.length; i2++)
|
|
1049
|
-
keys2.push(...Object.keys(resolveSource(sources[i2])));
|
|
1050
|
-
return [...new Set(keys2)];
|
|
1015
|
+
return new Proxy({
|
|
1016
|
+
get(property) {
|
|
1017
|
+
for (let i2 = sources.length - 1; i2 >= 0; i2--) {
|
|
1018
|
+
const v = resolveSource(sources[i2])[property];
|
|
1019
|
+
if (v !== void 0)
|
|
1020
|
+
return v;
|
|
1051
1021
|
}
|
|
1052
1022
|
},
|
|
1053
|
-
|
|
1054
|
-
|
|
1023
|
+
has(property) {
|
|
1024
|
+
for (let i2 = sources.length - 1; i2 >= 0; i2--) {
|
|
1025
|
+
if (property in resolveSource(sources[i2]))
|
|
1026
|
+
return true;
|
|
1027
|
+
}
|
|
1028
|
+
return false;
|
|
1029
|
+
},
|
|
1030
|
+
keys() {
|
|
1031
|
+
const keys2 = [];
|
|
1032
|
+
for (let i2 = 0; i2 < sources.length; i2++)
|
|
1033
|
+
keys2.push(...Object.keys(resolveSource(sources[i2])));
|
|
1034
|
+
return [...new Set(keys2)];
|
|
1035
|
+
}
|
|
1036
|
+
}, propTraps);
|
|
1055
1037
|
}
|
|
1056
|
-
const target = {};
|
|
1057
1038
|
const sourcesMap = {};
|
|
1058
|
-
const defined = /* @__PURE__ */
|
|
1039
|
+
const defined = /* @__PURE__ */ Object.create(null);
|
|
1059
1040
|
for (let i2 = sources.length - 1; i2 >= 0; i2--) {
|
|
1060
1041
|
const source = sources[i2];
|
|
1061
1042
|
if (!source)
|
|
1062
1043
|
continue;
|
|
1063
1044
|
const sourceKeys = Object.getOwnPropertyNames(source);
|
|
1064
|
-
for (let i3 =
|
|
1045
|
+
for (let i3 = sourceKeys.length - 1; i3 >= 0; i3--) {
|
|
1065
1046
|
const key = sourceKeys[i3];
|
|
1066
1047
|
if (key === "__proto__" || key === "constructor")
|
|
1067
1048
|
continue;
|
|
1068
1049
|
const desc = Object.getOwnPropertyDescriptor(source, key);
|
|
1069
|
-
if (!defined
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
get: resolveSources.bind(sourcesMap[key] = [desc.get.bind(source)])
|
|
1076
|
-
});
|
|
1077
|
-
} else {
|
|
1078
|
-
if (desc.value !== void 0)
|
|
1079
|
-
defined.add(key);
|
|
1080
|
-
target[key] = desc.value;
|
|
1081
|
-
}
|
|
1050
|
+
if (!defined[key]) {
|
|
1051
|
+
defined[key] = desc.get ? {
|
|
1052
|
+
enumerable: true,
|
|
1053
|
+
configurable: true,
|
|
1054
|
+
get: resolveSources.bind(sourcesMap[key] = [desc.get.bind(source)])
|
|
1055
|
+
} : desc.value !== void 0 ? desc : void 0;
|
|
1082
1056
|
} else {
|
|
1083
1057
|
const sources2 = sourcesMap[key];
|
|
1084
1058
|
if (sources2) {
|
|
1085
|
-
if (desc.get)
|
|
1059
|
+
if (desc.get)
|
|
1086
1060
|
sources2.push(desc.get.bind(source));
|
|
1087
|
-
|
|
1061
|
+
else if (desc.value !== void 0)
|
|
1088
1062
|
sources2.push(() => desc.value);
|
|
1089
|
-
|
|
1090
|
-
} else if (target[key] === void 0)
|
|
1091
|
-
target[key] = desc.value;
|
|
1063
|
+
}
|
|
1092
1064
|
}
|
|
1093
1065
|
}
|
|
1094
1066
|
}
|
|
1067
|
+
const target = {};
|
|
1068
|
+
const definedKeys = Object.keys(defined);
|
|
1069
|
+
for (let i2 = definedKeys.length - 1; i2 >= 0; i2--) {
|
|
1070
|
+
const key = definedKeys[i2], desc = defined[key];
|
|
1071
|
+
if (desc && desc.get)
|
|
1072
|
+
Object.defineProperty(target, key, desc);
|
|
1073
|
+
else
|
|
1074
|
+
target[key] = desc ? desc.value : void 0;
|
|
1075
|
+
}
|
|
1095
1076
|
return target;
|
|
1096
1077
|
}
|
|
1097
1078
|
function splitProps(props, ...keys2) {
|
|
1098
1079
|
if ($PROXY in props) {
|
|
1099
1080
|
const blocked = new Set(keys2.length > 1 ? keys2.flat() : keys2[0]);
|
|
1100
1081
|
const res = keys2.map((k) => {
|
|
1101
|
-
return new Proxy(
|
|
1102
|
-
{
|
|
1103
|
-
|
|
1104
|
-
return k.includes(property) ? props[property] : void 0;
|
|
1105
|
-
},
|
|
1106
|
-
has(property) {
|
|
1107
|
-
return k.includes(property) && property in props;
|
|
1108
|
-
},
|
|
1109
|
-
keys() {
|
|
1110
|
-
return k.filter((property) => property in props);
|
|
1111
|
-
}
|
|
1082
|
+
return new Proxy({
|
|
1083
|
+
get(property) {
|
|
1084
|
+
return k.includes(property) ? props[property] : void 0;
|
|
1112
1085
|
},
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
});
|
|
1116
|
-
res.push(
|
|
1117
|
-
new Proxy(
|
|
1118
|
-
{
|
|
1119
|
-
get(property) {
|
|
1120
|
-
return blocked.has(property) ? void 0 : props[property];
|
|
1121
|
-
},
|
|
1122
|
-
has(property) {
|
|
1123
|
-
return blocked.has(property) ? false : property in props;
|
|
1124
|
-
},
|
|
1125
|
-
keys() {
|
|
1126
|
-
return Object.keys(props).filter((k) => !blocked.has(k));
|
|
1127
|
-
}
|
|
1086
|
+
has(property) {
|
|
1087
|
+
return k.includes(property) && property in props;
|
|
1128
1088
|
},
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1089
|
+
keys() {
|
|
1090
|
+
return k.filter((property) => property in props);
|
|
1091
|
+
}
|
|
1092
|
+
}, propTraps);
|
|
1093
|
+
});
|
|
1094
|
+
res.push(new Proxy({
|
|
1095
|
+
get(property) {
|
|
1096
|
+
return blocked.has(property) ? void 0 : props[property];
|
|
1097
|
+
},
|
|
1098
|
+
has(property) {
|
|
1099
|
+
return blocked.has(property) ? false : property in props;
|
|
1100
|
+
},
|
|
1101
|
+
keys() {
|
|
1102
|
+
return Object.keys(props).filter((k) => !blocked.has(k));
|
|
1103
|
+
}
|
|
1104
|
+
}, propTraps));
|
|
1132
1105
|
return res;
|
|
1133
1106
|
}
|
|
1134
1107
|
const otherObject = {};
|
|
@@ -1172,19 +1145,17 @@ function lazy(fn) {
|
|
|
1172
1145
|
comp = s2;
|
|
1173
1146
|
}
|
|
1174
1147
|
let Comp;
|
|
1175
|
-
return createMemo(
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
})
|
|
1187
|
-
);
|
|
1148
|
+
return createMemo(() => (Comp = comp()) && untrack(() => {
|
|
1149
|
+
if (false)
|
|
1150
|
+
;
|
|
1151
|
+
if (!ctx)
|
|
1152
|
+
return Comp(props);
|
|
1153
|
+
const c2 = sharedConfig.context;
|
|
1154
|
+
setHydrateContext(ctx);
|
|
1155
|
+
const r2 = Comp(props);
|
|
1156
|
+
setHydrateContext(c2);
|
|
1157
|
+
return r2;
|
|
1158
|
+
}));
|
|
1188
1159
|
};
|
|
1189
1160
|
wrap.preload = () => p2 || ((p2 = fn()).then((mod) => comp = () => mod.default), p2);
|
|
1190
1161
|
return wrap;
|
|
@@ -1210,77 +1181,57 @@ function Show(props) {
|
|
|
1210
1181
|
const condition = createMemo(() => props.when, void 0, {
|
|
1211
1182
|
equals: (a2, b2) => keyed ? a2 === b2 : !a2 === !b2
|
|
1212
1183
|
});
|
|
1213
|
-
return createMemo(
|
|
1214
|
-
()
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
()
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
)
|
|
1227
|
-
) : child;
|
|
1228
|
-
}
|
|
1229
|
-
return props.fallback;
|
|
1230
|
-
},
|
|
1231
|
-
void 0,
|
|
1232
|
-
void 0
|
|
1233
|
-
);
|
|
1184
|
+
return createMemo(() => {
|
|
1185
|
+
const c2 = condition();
|
|
1186
|
+
if (c2) {
|
|
1187
|
+
const child = props.children;
|
|
1188
|
+
const fn = typeof child === "function" && child.length > 0;
|
|
1189
|
+
return fn ? untrack(() => child(keyed ? c2 : () => {
|
|
1190
|
+
if (!untrack(condition))
|
|
1191
|
+
throw narrowedError("Show");
|
|
1192
|
+
return props.when;
|
|
1193
|
+
})) : child;
|
|
1194
|
+
}
|
|
1195
|
+
return props.fallback;
|
|
1196
|
+
}, void 0, void 0);
|
|
1234
1197
|
}
|
|
1235
1198
|
function Switch(props) {
|
|
1236
1199
|
let keyed = false;
|
|
1237
|
-
const equals = (a2, b2) =>
|
|
1238
|
-
const conditions = children(() => props.children), evalConditions = createMemo(
|
|
1239
|
-
()
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
}
|
|
1249
|
-
}
|
|
1250
|
-
return [-1];
|
|
1251
|
-
},
|
|
1252
|
-
void 0,
|
|
1253
|
-
{
|
|
1254
|
-
equals
|
|
1200
|
+
const equals = (a2, b2) => (keyed ? a2[1] === b2[1] : !a2[1] === !b2[1]) && a2[2] === b2[2];
|
|
1201
|
+
const conditions = children(() => props.children), evalConditions = createMemo(() => {
|
|
1202
|
+
let conds = conditions();
|
|
1203
|
+
if (!Array.isArray(conds))
|
|
1204
|
+
conds = [conds];
|
|
1205
|
+
for (let i2 = 0; i2 < conds.length; i2++) {
|
|
1206
|
+
const c2 = conds[i2].when;
|
|
1207
|
+
if (c2) {
|
|
1208
|
+
keyed = !!conds[i2].keyed;
|
|
1209
|
+
return [i2, c2, conds[i2]];
|
|
1210
|
+
}
|
|
1255
1211
|
}
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
) : c2;
|
|
1273
|
-
},
|
|
1274
|
-
void 0,
|
|
1275
|
-
void 0
|
|
1276
|
-
);
|
|
1212
|
+
return [-1];
|
|
1213
|
+
}, void 0, {
|
|
1214
|
+
equals
|
|
1215
|
+
});
|
|
1216
|
+
return createMemo(() => {
|
|
1217
|
+
const [index, when, cond] = evalConditions();
|
|
1218
|
+
if (index < 0)
|
|
1219
|
+
return props.fallback;
|
|
1220
|
+
const c2 = cond.children;
|
|
1221
|
+
const fn = typeof c2 === "function" && c2.length > 0;
|
|
1222
|
+
return fn ? untrack(() => c2(keyed ? when : () => {
|
|
1223
|
+
if (untrack(evalConditions)[0] !== index)
|
|
1224
|
+
throw narrowedError("Match");
|
|
1225
|
+
return cond.when;
|
|
1226
|
+
})) : c2;
|
|
1227
|
+
}, void 0, void 0);
|
|
1277
1228
|
}
|
|
1278
1229
|
function Match(props) {
|
|
1279
1230
|
return props;
|
|
1280
1231
|
}
|
|
1281
|
-
var sharedConfig, equalFn, $PROXY, $TRACK, signalOptions, ERROR, runEffects, STALE, PENDING, UNOWNED, NO_INIT, Owner, Transition, Scheduler,
|
|
1232
|
+
var sharedConfig, equalFn, $PROXY, $TRACK, signalOptions, ERROR, runEffects, STALE, PENDING, UNOWNED, NO_INIT, Owner, Transition, Scheduler, ExternalSourceConfig, Listener, Updates, Effects, ExecCount, transPending, setTransPending, SuspenseContext, FALLBACK, hydrationEnabled, propTraps, counter, narrowedError, DEV;
|
|
1282
1233
|
var init_solid = __esm({
|
|
1283
|
-
"../../node_modules/.pnpm/solid-js@1.8.
|
|
1234
|
+
"../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/dist/solid.js"() {
|
|
1284
1235
|
sharedConfig = {
|
|
1285
1236
|
context: void 0,
|
|
1286
1237
|
registry: void 0
|
|
@@ -1305,7 +1256,7 @@ var init_solid = __esm({
|
|
|
1305
1256
|
Owner = null;
|
|
1306
1257
|
Transition = null;
|
|
1307
1258
|
Scheduler = null;
|
|
1308
|
-
|
|
1259
|
+
ExternalSourceConfig = null;
|
|
1309
1260
|
Listener = null;
|
|
1310
1261
|
Updates = null;
|
|
1311
1262
|
Effects = null;
|
|
@@ -1347,7 +1298,7 @@ var init_solid = __esm({
|
|
|
1347
1298
|
}
|
|
1348
1299
|
});
|
|
1349
1300
|
|
|
1350
|
-
// ../../node_modules/.pnpm/solid-js@1.8.
|
|
1301
|
+
// ../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/web/dist/web.js
|
|
1351
1302
|
function getPropAlias(prop, tagName) {
|
|
1352
1303
|
const a2 = PropAliases[prop];
|
|
1353
1304
|
return typeof a2 === "object" ? a2[tagName] ? a2["$"] : void 0 : a2;
|
|
@@ -1522,9 +1473,7 @@ function style(node, value, prev) {
|
|
|
1522
1473
|
function spread(node, props = {}, isSVG, skipChildren) {
|
|
1523
1474
|
const prevProps = {};
|
|
1524
1475
|
if (!skipChildren) {
|
|
1525
|
-
createRenderEffect(
|
|
1526
|
-
() => prevProps.children = insertExpression(node, props.children, prevProps.children)
|
|
1527
|
-
);
|
|
1476
|
+
createRenderEffect(() => prevProps.children = insertExpression(node, props.children, prevProps.children));
|
|
1528
1477
|
}
|
|
1529
1478
|
createRenderEffect(() => props.ref && props.ref(node));
|
|
1530
1479
|
createRenderEffect(() => assign(node, props, isSVG, true, prevProps, true));
|
|
@@ -1685,7 +1634,7 @@ function insertExpression(parent, value, current, marker, unwrapArray) {
|
|
|
1685
1634
|
if (multi) {
|
|
1686
1635
|
let node = current[0];
|
|
1687
1636
|
if (node && node.nodeType === 3) {
|
|
1688
|
-
node.data = value;
|
|
1637
|
+
node.data !== value && (node.data = value);
|
|
1689
1638
|
} else
|
|
1690
1639
|
node = document.createTextNode(value);
|
|
1691
1640
|
current = cleanChildren(parent, current, marker, node);
|
|
@@ -1769,11 +1718,7 @@ function normalizeIncomingArray(normalized, array, current, unwrap2) {
|
|
|
1769
1718
|
if (unwrap2) {
|
|
1770
1719
|
while (typeof item === "function")
|
|
1771
1720
|
item = item();
|
|
1772
|
-
dynamic = normalizeIncomingArray(
|
|
1773
|
-
normalized,
|
|
1774
|
-
Array.isArray(item) ? item : [item],
|
|
1775
|
-
Array.isArray(prev) ? prev : [prev]
|
|
1776
|
-
) || dynamic;
|
|
1721
|
+
dynamic = normalizeIncomingArray(normalized, Array.isArray(item) ? item : [item], Array.isArray(prev) ? prev : [prev]) || dynamic;
|
|
1777
1722
|
} else {
|
|
1778
1723
|
normalized.push(item);
|
|
1779
1724
|
dynamic = true;
|
|
@@ -1821,41 +1766,39 @@ function createElement(tagName, isSVG = false) {
|
|
|
1821
1766
|
return isSVG ? document.createElementNS(SVG_NAMESPACE, tagName) : document.createElement(tagName);
|
|
1822
1767
|
}
|
|
1823
1768
|
function Portal(props) {
|
|
1824
|
-
const {
|
|
1769
|
+
const {
|
|
1770
|
+
useShadow
|
|
1771
|
+
} = props, marker = document.createTextNode(""), mount = () => props.mount || document.body, owner = getOwner();
|
|
1825
1772
|
let content;
|
|
1826
1773
|
let hydrating = !!sharedConfig.context;
|
|
1827
|
-
createEffect(
|
|
1828
|
-
()
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
onCleanup(() => el.removeChild(container));
|
|
1852
|
-
}
|
|
1853
|
-
},
|
|
1854
|
-
void 0,
|
|
1855
|
-
{
|
|
1856
|
-
render: !hydrating
|
|
1774
|
+
createEffect(() => {
|
|
1775
|
+
if (hydrating)
|
|
1776
|
+
getOwner().user = hydrating = false;
|
|
1777
|
+
content || (content = runWithOwner(owner, () => createMemo(() => props.children)));
|
|
1778
|
+
const el = mount();
|
|
1779
|
+
if (el instanceof HTMLHeadElement) {
|
|
1780
|
+
const [clean, setClean] = createSignal(false);
|
|
1781
|
+
const cleanup = () => setClean(true);
|
|
1782
|
+
createRoot((dispose3) => insert(el, () => !clean() ? content() : dispose3(), null));
|
|
1783
|
+
onCleanup(cleanup);
|
|
1784
|
+
} else {
|
|
1785
|
+
const container = createElement(props.isSVG ? "g" : "div", props.isSVG), renderRoot = useShadow && container.attachShadow ? container.attachShadow({
|
|
1786
|
+
mode: "open"
|
|
1787
|
+
}) : container;
|
|
1788
|
+
Object.defineProperty(container, "_$host", {
|
|
1789
|
+
get() {
|
|
1790
|
+
return marker.parentNode;
|
|
1791
|
+
},
|
|
1792
|
+
configurable: true
|
|
1793
|
+
});
|
|
1794
|
+
insert(renderRoot, content);
|
|
1795
|
+
el.appendChild(container);
|
|
1796
|
+
props.ref && props.ref(container);
|
|
1797
|
+
onCleanup(() => el.removeChild(container));
|
|
1857
1798
|
}
|
|
1858
|
-
|
|
1799
|
+
}, void 0, {
|
|
1800
|
+
render: !hydrating
|
|
1801
|
+
});
|
|
1859
1802
|
return marker;
|
|
1860
1803
|
}
|
|
1861
1804
|
function Dynamic(props) {
|
|
@@ -1876,52 +1819,12 @@ function Dynamic(props) {
|
|
|
1876
1819
|
}
|
|
1877
1820
|
var booleans, Properties, ChildProperties, Aliases, PropAliases, DelegatedEvents, SVGElements, SVGNamespace, $$EVENTS, isServer, SVG_NAMESPACE;
|
|
1878
1821
|
var init_web = __esm({
|
|
1879
|
-
"../../node_modules/.pnpm/solid-js@1.8.
|
|
1822
|
+
"../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/web/dist/web.js"() {
|
|
1880
1823
|
init_solid();
|
|
1881
1824
|
init_solid();
|
|
1882
|
-
booleans = [
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
"autofocus",
|
|
1886
|
-
"autoplay",
|
|
1887
|
-
"checked",
|
|
1888
|
-
"controls",
|
|
1889
|
-
"default",
|
|
1890
|
-
"disabled",
|
|
1891
|
-
"formnovalidate",
|
|
1892
|
-
"hidden",
|
|
1893
|
-
"indeterminate",
|
|
1894
|
-
"inert",
|
|
1895
|
-
"ismap",
|
|
1896
|
-
"loop",
|
|
1897
|
-
"multiple",
|
|
1898
|
-
"muted",
|
|
1899
|
-
"nomodule",
|
|
1900
|
-
"novalidate",
|
|
1901
|
-
"open",
|
|
1902
|
-
"playsinline",
|
|
1903
|
-
"readonly",
|
|
1904
|
-
"required",
|
|
1905
|
-
"reversed",
|
|
1906
|
-
"seamless",
|
|
1907
|
-
"selected"
|
|
1908
|
-
];
|
|
1909
|
-
Properties = /* @__PURE__ */ new Set([
|
|
1910
|
-
"className",
|
|
1911
|
-
"value",
|
|
1912
|
-
"readOnly",
|
|
1913
|
-
"formNoValidate",
|
|
1914
|
-
"isMap",
|
|
1915
|
-
"noModule",
|
|
1916
|
-
"playsInline",
|
|
1917
|
-
...booleans
|
|
1918
|
-
]);
|
|
1919
|
-
ChildProperties = /* @__PURE__ */ new Set([
|
|
1920
|
-
"innerHTML",
|
|
1921
|
-
"textContent",
|
|
1922
|
-
"innerText",
|
|
1923
|
-
"children"
|
|
1924
|
-
]);
|
|
1825
|
+
booleans = ["allowfullscreen", "async", "autofocus", "autoplay", "checked", "controls", "default", "disabled", "formnovalidate", "hidden", "indeterminate", "inert", "ismap", "loop", "multiple", "muted", "nomodule", "novalidate", "open", "playsinline", "readonly", "required", "reversed", "seamless", "selected"];
|
|
1826
|
+
Properties = /* @__PURE__ */ new Set(["className", "value", "readOnly", "formNoValidate", "isMap", "noModule", "playsInline", ...booleans]);
|
|
1827
|
+
ChildProperties = /* @__PURE__ */ new Set(["innerHTML", "textContent", "innerText", "children"]);
|
|
1925
1828
|
Aliases = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
|
|
1926
1829
|
className: "class",
|
|
1927
1830
|
htmlFor: "for"
|
|
@@ -1951,30 +1854,7 @@ var init_web = __esm({
|
|
|
1951
1854
|
TEXTAREA: 1
|
|
1952
1855
|
}
|
|
1953
1856
|
});
|
|
1954
|
-
DelegatedEvents = /* @__PURE__ */ new Set([
|
|
1955
|
-
"beforeinput",
|
|
1956
|
-
"click",
|
|
1957
|
-
"dblclick",
|
|
1958
|
-
"contextmenu",
|
|
1959
|
-
"focusin",
|
|
1960
|
-
"focusout",
|
|
1961
|
-
"input",
|
|
1962
|
-
"keydown",
|
|
1963
|
-
"keyup",
|
|
1964
|
-
"mousedown",
|
|
1965
|
-
"mousemove",
|
|
1966
|
-
"mouseout",
|
|
1967
|
-
"mouseover",
|
|
1968
|
-
"mouseup",
|
|
1969
|
-
"pointerdown",
|
|
1970
|
-
"pointermove",
|
|
1971
|
-
"pointerout",
|
|
1972
|
-
"pointerover",
|
|
1973
|
-
"pointerup",
|
|
1974
|
-
"touchend",
|
|
1975
|
-
"touchmove",
|
|
1976
|
-
"touchstart"
|
|
1977
|
-
]);
|
|
1857
|
+
DelegatedEvents = /* @__PURE__ */ new Set(["beforeinput", "click", "dblclick", "contextmenu", "focusin", "focusout", "input", "keydown", "keyup", "mousedown", "mousemove", "mouseout", "mouseover", "mouseup", "pointerdown", "pointermove", "pointerout", "pointerover", "pointerup", "touchend", "touchmove", "touchstart"]);
|
|
1978
1858
|
SVGElements = /* @__PURE__ */ new Set([
|
|
1979
1859
|
"altGlyph",
|
|
1980
1860
|
"altGlyphDef",
|
|
@@ -3351,7 +3231,7 @@ var init_utils = __esm({
|
|
|
3351
3231
|
}
|
|
3352
3232
|
});
|
|
3353
3233
|
|
|
3354
|
-
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8
|
|
3234
|
+
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.11.8/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
|
|
3355
3235
|
function removeAccents(str) {
|
|
3356
3236
|
return str.replace(allAccents, (match) => {
|
|
3357
3237
|
return characterMap[match];
|
|
@@ -3530,7 +3410,7 @@ function getAccessorAttributes(accessor) {
|
|
|
3530
3410
|
}
|
|
3531
3411
|
var characterMap, chars, allAccents, rankings, defaultKeyAttributes;
|
|
3532
3412
|
var init_lib = __esm({
|
|
3533
|
-
"../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8
|
|
3413
|
+
"../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.11.8/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs"() {
|
|
3534
3414
|
characterMap = {
|
|
3535
3415
|
\u00C0: "A",
|
|
3536
3416
|
\u00C1: "A",
|
|
@@ -4040,7 +3920,7 @@ var init_clsx = __esm({
|
|
|
4040
3920
|
}
|
|
4041
3921
|
});
|
|
4042
3922
|
|
|
4043
|
-
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.
|
|
3923
|
+
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.14/node_modules/@solid-primitives/transition-group/dist/index.js
|
|
4044
3924
|
function createListTransition(source, options) {
|
|
4045
3925
|
const initSource = untrack(source);
|
|
4046
3926
|
if (isServer) {
|
|
@@ -4107,7 +3987,7 @@ function createListTransition(source, options) {
|
|
|
4107
3987
|
}
|
|
4108
3988
|
var noop;
|
|
4109
3989
|
var init_dist3 = __esm({
|
|
4110
|
-
"../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.
|
|
3990
|
+
"../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.14/node_modules/@solid-primitives/transition-group/dist/index.js"() {
|
|
4111
3991
|
init_solid();
|
|
4112
3992
|
init_web();
|
|
4113
3993
|
noop = () => {
|
|
@@ -4115,7 +3995,7 @@ var init_dist3 = __esm({
|
|
|
4115
3995
|
}
|
|
4116
3996
|
});
|
|
4117
3997
|
|
|
4118
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
3998
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
|
|
4119
3999
|
function chain(callbacks) {
|
|
4120
4000
|
return (...args) => {
|
|
4121
4001
|
for (const callback of callbacks)
|
|
@@ -4166,7 +4046,7 @@ function handleDiffArray(current, prev, handleAdded, handleRemoved) {
|
|
|
4166
4046
|
}
|
|
4167
4047
|
var isClient, isDev, noop2, isNonNullable, filterNonNullable, access, asArray, tryOnCleanup;
|
|
4168
4048
|
var init_R5675YMU = __esm({
|
|
4169
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
4049
|
+
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js"() {
|
|
4170
4050
|
init_solid();
|
|
4171
4051
|
init_web();
|
|
4172
4052
|
isClient = !isServer;
|
|
@@ -4180,14 +4060,14 @@ var init_R5675YMU = __esm({
|
|
|
4180
4060
|
}
|
|
4181
4061
|
});
|
|
4182
4062
|
|
|
4183
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
4063
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/index/index.js
|
|
4184
4064
|
var init_index = __esm({
|
|
4185
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
4065
|
+
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/index/index.js"() {
|
|
4186
4066
|
init_R5675YMU();
|
|
4187
4067
|
}
|
|
4188
4068
|
});
|
|
4189
4069
|
|
|
4190
|
-
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.
|
|
4070
|
+
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.14/node_modules/@solid-primitives/refs/dist/index.js
|
|
4191
4071
|
function mergeRefs(...refs) {
|
|
4192
4072
|
return chain(refs);
|
|
4193
4073
|
}
|
|
@@ -4220,7 +4100,7 @@ function resolveElements(fn, predicate = defaultElementPredicate, serverPredicat
|
|
|
4220
4100
|
}
|
|
4221
4101
|
var defaultElementPredicate;
|
|
4222
4102
|
var init_dist4 = __esm({
|
|
4223
|
-
"../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.
|
|
4103
|
+
"../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.14/node_modules/@solid-primitives/refs/dist/index.js"() {
|
|
4224
4104
|
init_index();
|
|
4225
4105
|
init_solid();
|
|
4226
4106
|
init_web();
|
|
@@ -4228,7 +4108,7 @@ var init_dist4 = __esm({
|
|
|
4228
4108
|
}
|
|
4229
4109
|
});
|
|
4230
4110
|
|
|
4231
|
-
// ../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.
|
|
4111
|
+
// ../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.14/node_modules/solid-transition-group/dist/index.js
|
|
4232
4112
|
function createClassnames(props) {
|
|
4233
4113
|
return createMemo(() => {
|
|
4234
4114
|
const name = props.name || "s";
|
|
@@ -4304,7 +4184,7 @@ function exitTransition(classes, events, el, done) {
|
|
|
4304
4184
|
}
|
|
4305
4185
|
var TransitionGroup;
|
|
4306
4186
|
var init_dist5 = __esm({
|
|
4307
|
-
"../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.
|
|
4187
|
+
"../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.14/node_modules/solid-transition-group/dist/index.js"() {
|
|
4308
4188
|
init_solid();
|
|
4309
4189
|
init_dist3();
|
|
4310
4190
|
init_dist4();
|
|
@@ -4358,7 +4238,7 @@ var init_dist5 = __esm({
|
|
|
4358
4238
|
}
|
|
4359
4239
|
});
|
|
4360
4240
|
|
|
4361
|
-
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.
|
|
4241
|
+
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.14/node_modules/@solid-primitives/keyed/dist/index.js
|
|
4362
4242
|
function dispose2(list) {
|
|
4363
4243
|
for (const o2 of list)
|
|
4364
4244
|
o2.dispose();
|
|
@@ -4456,14 +4336,14 @@ function Key(props) {
|
|
|
4456
4336
|
}
|
|
4457
4337
|
var FALLBACK2;
|
|
4458
4338
|
var init_dist6 = __esm({
|
|
4459
|
-
"../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.
|
|
4339
|
+
"../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.14/node_modules/@solid-primitives/keyed/dist/index.js"() {
|
|
4460
4340
|
init_solid();
|
|
4461
4341
|
init_web();
|
|
4462
4342
|
FALLBACK2 = Symbol("fallback");
|
|
4463
4343
|
}
|
|
4464
4344
|
});
|
|
4465
4345
|
|
|
4466
|
-
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.
|
|
4346
|
+
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.14/node_modules/@solid-primitives/storage/dist/index.js
|
|
4467
4347
|
function createStorage(props) {
|
|
4468
4348
|
const [error, setError] = createSignal();
|
|
4469
4349
|
const handleError2 = props?.throw ? (err, fallback) => {
|
|
@@ -4608,7 +4488,7 @@ function createStorage(props) {
|
|
|
4608
4488
|
}
|
|
4609
4489
|
var createLocalStorage, addClearMethod, serializeCookieOptions, cookieStorage;
|
|
4610
4490
|
var init_dist7 = __esm({
|
|
4611
|
-
"../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.
|
|
4491
|
+
"../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.14/node_modules/@solid-primitives/storage/dist/index.js"() {
|
|
4612
4492
|
init_solid();
|
|
4613
4493
|
createLocalStorage = createStorage;
|
|
4614
4494
|
addClearMethod = (storage) => {
|
|
@@ -4688,7 +4568,7 @@ var init_dist7 = __esm({
|
|
|
4688
4568
|
}
|
|
4689
4569
|
});
|
|
4690
4570
|
|
|
4691
|
-
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.
|
|
4571
|
+
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.14/node_modules/@solid-primitives/event-listener/dist/index.js
|
|
4692
4572
|
function makeEventListener(target, type, handler, options) {
|
|
4693
4573
|
target.addEventListener(type, handler, options);
|
|
4694
4574
|
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
@@ -4708,14 +4588,14 @@ function createEventListener(targets, type, handler, options) {
|
|
|
4708
4588
|
createRenderEffect(attachListeners);
|
|
4709
4589
|
}
|
|
4710
4590
|
var init_dist8 = __esm({
|
|
4711
|
-
"../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.
|
|
4591
|
+
"../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.14/node_modules/@solid-primitives/event-listener/dist/index.js"() {
|
|
4712
4592
|
init_index();
|
|
4713
4593
|
init_solid();
|
|
4714
4594
|
init_web();
|
|
4715
4595
|
}
|
|
4716
4596
|
});
|
|
4717
4597
|
|
|
4718
|
-
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.
|
|
4598
|
+
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.14/node_modules/@solid-primitives/resize-observer/dist/index.js
|
|
4719
4599
|
function makeResizeObserver(callback, options) {
|
|
4720
4600
|
if (isServer) {
|
|
4721
4601
|
return { observe: noop2, unobserve: noop2 };
|
|
@@ -4746,14 +4626,14 @@ function createResizeObserver(targets, onResize, options) {
|
|
|
4746
4626
|
}, []);
|
|
4747
4627
|
}
|
|
4748
4628
|
var init_dist9 = __esm({
|
|
4749
|
-
"../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.
|
|
4629
|
+
"../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.14/node_modules/@solid-primitives/resize-observer/dist/index.js"() {
|
|
4750
4630
|
init_index();
|
|
4751
4631
|
init_solid();
|
|
4752
4632
|
init_web();
|
|
4753
4633
|
}
|
|
4754
4634
|
});
|
|
4755
4635
|
|
|
4756
|
-
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.
|
|
4636
|
+
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.14/node_modules/@solid-primitives/props/dist/index.js
|
|
4757
4637
|
function trueFn3() {
|
|
4758
4638
|
return true;
|
|
4759
4639
|
}
|
|
@@ -4838,7 +4718,7 @@ function combineProps(...args) {
|
|
|
4838
4718
|
}
|
|
4839
4719
|
var propTraps2, extractCSSregex, reduce;
|
|
4840
4720
|
var init_dist10 = __esm({
|
|
4841
|
-
"../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.
|
|
4721
|
+
"../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.14/node_modules/@solid-primitives/props/dist/index.js"() {
|
|
4842
4722
|
init_solid();
|
|
4843
4723
|
init_index();
|
|
4844
4724
|
propTraps2 = {
|
|
@@ -4882,7 +4762,7 @@ var init_dist10 = __esm({
|
|
|
4882
4762
|
}
|
|
4883
4763
|
});
|
|
4884
4764
|
|
|
4885
|
-
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.
|
|
4765
|
+
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.14/node_modules/@kobalte/utils/dist/index.js
|
|
4886
4766
|
function addItemToArray(array, item, index = -1) {
|
|
4887
4767
|
if (!(index in array)) {
|
|
4888
4768
|
return [...array, item];
|
|
@@ -5243,7 +5123,7 @@ function relativeOffset(ancestor, child, axis) {
|
|
|
5243
5123
|
}
|
|
5244
5124
|
var EventKey, supportsPreventScrollCached, focusableElements, tabbableElements, FOCUSABLE_ELEMENT_SELECTOR, TABBABLE_ELEMENT_SELECTOR, transitionsByElement, transitionCallbacks, visuallyHiddenStyles;
|
|
5245
5125
|
var init_dist11 = __esm({
|
|
5246
|
-
"../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.
|
|
5126
|
+
"../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.14/node_modules/@kobalte/utils/dist/index.js"() {
|
|
5247
5127
|
init_solid();
|
|
5248
5128
|
init_dist8();
|
|
5249
5129
|
init_dist10();
|
|
@@ -5309,7 +5189,7 @@ var init_dist11 = __esm({
|
|
|
5309
5189
|
}
|
|
5310
5190
|
});
|
|
5311
5191
|
|
|
5312
|
-
// ../../node_modules/.pnpm/solid-js@1.8.
|
|
5192
|
+
// ../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/store/dist/store.js
|
|
5313
5193
|
function wrap$1(value) {
|
|
5314
5194
|
let p2 = value[$PROXY];
|
|
5315
5195
|
if (!p2) {
|
|
@@ -5466,7 +5346,11 @@ function updatePath(current, path, traversed = []) {
|
|
|
5466
5346
|
}
|
|
5467
5347
|
return;
|
|
5468
5348
|
} else if (isArray4 && partType === "object") {
|
|
5469
|
-
const {
|
|
5349
|
+
const {
|
|
5350
|
+
from = 0,
|
|
5351
|
+
to = current.length - 1,
|
|
5352
|
+
by = 1
|
|
5353
|
+
} = part;
|
|
5470
5354
|
for (let i2 = from; i2 <= to; i2 += by) {
|
|
5471
5355
|
updatePath(current, [i2].concat(path), traversed);
|
|
5472
5356
|
}
|
|
@@ -5505,7 +5389,7 @@ function createStore(...[store, options]) {
|
|
|
5505
5389
|
}
|
|
5506
5390
|
var $RAW, $NODE, $HAS, $SELF, proxyTraps$1;
|
|
5507
5391
|
var init_store = __esm({
|
|
5508
|
-
"../../node_modules/.pnpm/solid-js@1.8.
|
|
5392
|
+
"../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/store/dist/store.js"() {
|
|
5509
5393
|
init_solid();
|
|
5510
5394
|
$RAW = Symbol("store-raw");
|
|
5511
5395
|
$NODE = Symbol("store-node");
|
|
@@ -10802,7 +10686,7 @@ function RadioGroupRoot(props) {
|
|
|
10802
10686
|
}
|
|
10803
10687
|
var DATA_TOP_LAYER_ATTR, originalBodyPointerEvents, hasDisabledBodyPointerEvents, layers, layerStack, AUTOFOCUS_ON_MOUNT_EVENT, AUTOFOCUS_ON_UNMOUNT_EVENT, EVENT_OPTIONS, focusScopeStack, DATA_LIVE_ANNOUNCER_ATTR, refCountMap, observerStack, POINTER_DOWN_OUTSIDE_EVENT, FOCUS_OUTSIDE_EVENT, SCROLL_LOCK_IDENTIFIER, FORM_CONTROL_PROP_NAMES, FormControlContext, AS_COMPONENT_SYMBOL, RTL_SCRIPTS, RTL_LANGS, currentLocale, listeners, I18nContext, cache$1, Selection, SelectionManager, ListCollection, ListKeyboardDelegate, BUTTON_INPUT_TYPES, DomCollectionContext, DismissableLayerContext, PopperContext, _tmpl$$f, DEFAULT_SIZE, HALF_DEFAULT_SIZE, ROTATION_DEG, REVERSE_BASE_PLACEMENT, MenuContext, MenuRootContext, MenuItemContext, MenuGroupContext, MenuRadioGroupContext, SUB_CLOSE_KEYS, SELECTION_KEYS, SUB_OPEN_KEYS, index$f, RadioGroupContext, RadioGroupItemContext, _tmpl$$7, _tmpl$$6, index$9;
|
|
10804
10688
|
var init_esm2 = __esm({
|
|
10805
|
-
"../../node_modules/.pnpm/@kobalte+core@0.11.2_solid-js@1.8.
|
|
10689
|
+
"../../node_modules/.pnpm/@kobalte+core@0.11.2_solid-js@1.8.14/node_modules/@kobalte/core/dist/esm/index.js"() {
|
|
10806
10690
|
init_dist11();
|
|
10807
10691
|
init_store();
|
|
10808
10692
|
init_web();
|
|
@@ -13184,11 +13068,13 @@ var init_Devtools = __esm({
|
|
|
13184
13068
|
transition:
|
|
13185
13069
|
opacity 0.3s,
|
|
13186
13070
|
transform 0.3s;
|
|
13071
|
+
opacity: 1;
|
|
13187
13072
|
}
|
|
13188
13073
|
|
|
13189
13074
|
& .tsqd-button-transition-exit-to,
|
|
13190
13075
|
& .tsqd-button-transition-enter {
|
|
13191
|
-
transform: ${buttonPosition() === "top-left" ? `translateX(-72px);` : buttonPosition() === "top-right" ? `translateX(72px);` : `translateY(72px);`};
|
|
13076
|
+
transform: ${buttonPosition() === "relative" ? `none;` : buttonPosition() === "top-left" ? `translateX(-72px);` : buttonPosition() === "top-right" ? `translateX(72px);` : `translateY(72px);`};
|
|
13077
|
+
opacity: 0;
|
|
13192
13078
|
}
|
|
13193
13079
|
`, "tsqd-transitions-container")));
|
|
13194
13080
|
return _el$;
|
|
@@ -14799,6 +14685,9 @@ var init_Devtools = __esm({
|
|
|
14799
14685
|
"devtoolsBtn-position-top-right": u`
|
|
14800
14686
|
top: 12px;
|
|
14801
14687
|
right: 12px;
|
|
14688
|
+
`,
|
|
14689
|
+
"devtoolsBtn-position-relative": u`
|
|
14690
|
+
position: relative;
|
|
14802
14691
|
`,
|
|
14803
14692
|
"panel-position-top": u`
|
|
14804
14693
|
top: 0;
|
|
@@ -15686,6 +15575,7 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
|
|
|
15686
15575
|
throw new Error("Devtools is already mounted");
|
|
15687
15576
|
}
|
|
15688
15577
|
const dispose3 = render(() => {
|
|
15578
|
+
const _self$ = this;
|
|
15689
15579
|
const [btnPosition] = this.#buttonPosition;
|
|
15690
15580
|
const [pos] = this.#position;
|
|
15691
15581
|
const [isOpen] = this.#initialIsOpen;
|
|
@@ -15699,7 +15589,6 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
|
|
|
15699
15589
|
this.#Component = Devtools2;
|
|
15700
15590
|
}
|
|
15701
15591
|
setupStyleSheet(this.#styleNonce);
|
|
15702
|
-
const _self$ = this;
|
|
15703
15592
|
return createComponent(Devtools2, mergeProps({
|
|
15704
15593
|
get queryFlavor() {
|
|
15705
15594
|
return _self$.#queryFlavor;
|
|
@@ -15743,15 +15632,15 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
|
|
|
15743
15632
|
|
|
15744
15633
|
@tanstack/match-sorter-utils/build/lib/index.mjs:
|
|
15745
15634
|
(**
|
|
15746
|
-
|
|
15747
|
-
|
|
15748
|
-
|
|
15749
|
-
|
|
15750
|
-
|
|
15751
|
-
|
|
15752
|
-
|
|
15753
|
-
|
|
15754
|
-
|
|
15635
|
+
* match-sorter-utils
|
|
15636
|
+
*
|
|
15637
|
+
* Copyright (c) TanStack
|
|
15638
|
+
*
|
|
15639
|
+
* This source code is licensed under the MIT license found in the
|
|
15640
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
15641
|
+
*
|
|
15642
|
+
* @license MIT
|
|
15643
|
+
*)
|
|
15755
15644
|
(**
|
|
15756
15645
|
* @name match-sorter
|
|
15757
15646
|
* @license MIT license.
|