@tanstack/query-devtools 5.20.1 → 5.20.2
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 → 2TZ2XDYA.jsx} +28 -24
- package/build/Devtools/{4MFZ6GJ2.js → 6ZYZQAZS.js} +28 -24
- package/build/Devtools/{SLJ7V32M.jsx → FWYJEP5C.jsx} +28 -24
- package/build/Devtools/{BCQ5SSOV.js → ZIZ6ACOL.js} +28 -24
- 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 +223 -339
- package/build/dev.js +3 -3
- package/build/dev.jsx +2 -2
- package/build/index.cjs +223 -339
- package/build/index.js +3 -3
- package/build/index.jsx +2 -2
- package/package.json +5 -5
package/build/dev.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",
|
|
@@ -3352,7 +3232,7 @@ var init_utils = __esm({
|
|
|
3352
3232
|
}
|
|
3353
3233
|
});
|
|
3354
3234
|
|
|
3355
|
-
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8
|
|
3235
|
+
// ../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.11.8/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs
|
|
3356
3236
|
function removeAccents(str) {
|
|
3357
3237
|
return str.replace(allAccents, (match) => {
|
|
3358
3238
|
return characterMap[match];
|
|
@@ -3531,7 +3411,7 @@ function getAccessorAttributes(accessor) {
|
|
|
3531
3411
|
}
|
|
3532
3412
|
var characterMap, chars, allAccents, rankings, defaultKeyAttributes;
|
|
3533
3413
|
var init_lib = __esm({
|
|
3534
|
-
"../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.8
|
|
3414
|
+
"../../node_modules/.pnpm/@tanstack+match-sorter-utils@8.11.8/node_modules/@tanstack/match-sorter-utils/build/lib/index.mjs"() {
|
|
3535
3415
|
characterMap = {
|
|
3536
3416
|
\u00C0: "A",
|
|
3537
3417
|
\u00C1: "A",
|
|
@@ -4041,7 +3921,7 @@ var init_clsx = __esm({
|
|
|
4041
3921
|
}
|
|
4042
3922
|
});
|
|
4043
3923
|
|
|
4044
|
-
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.
|
|
3924
|
+
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.14/node_modules/@solid-primitives/transition-group/dist/index.js
|
|
4045
3925
|
function createListTransition(source, options) {
|
|
4046
3926
|
const initSource = untrack(source);
|
|
4047
3927
|
if (isServer) {
|
|
@@ -4108,7 +3988,7 @@ function createListTransition(source, options) {
|
|
|
4108
3988
|
}
|
|
4109
3989
|
var noop;
|
|
4110
3990
|
var init_dist3 = __esm({
|
|
4111
|
-
"../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.
|
|
3991
|
+
"../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.14/node_modules/@solid-primitives/transition-group/dist/index.js"() {
|
|
4112
3992
|
init_solid();
|
|
4113
3993
|
init_web();
|
|
4114
3994
|
noop = () => {
|
|
@@ -4116,7 +3996,7 @@ var init_dist3 = __esm({
|
|
|
4116
3996
|
}
|
|
4117
3997
|
});
|
|
4118
3998
|
|
|
4119
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
3999
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
|
|
4120
4000
|
function chain(callbacks) {
|
|
4121
4001
|
return (...args) => {
|
|
4122
4002
|
for (const callback of callbacks)
|
|
@@ -4167,7 +4047,7 @@ function handleDiffArray(current, prev, handleAdded, handleRemoved) {
|
|
|
4167
4047
|
}
|
|
4168
4048
|
var isClient, isDev, noop2, isNonNullable, filterNonNullable, access, asArray, tryOnCleanup;
|
|
4169
4049
|
var init_R5675YMU = __esm({
|
|
4170
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
4050
|
+
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js"() {
|
|
4171
4051
|
init_solid();
|
|
4172
4052
|
init_web();
|
|
4173
4053
|
isClient = !isServer;
|
|
@@ -4181,14 +4061,14 @@ var init_R5675YMU = __esm({
|
|
|
4181
4061
|
}
|
|
4182
4062
|
});
|
|
4183
4063
|
|
|
4184
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
4064
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/index/index.js
|
|
4185
4065
|
var init_index = __esm({
|
|
4186
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.
|
|
4066
|
+
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.14/node_modules/@solid-primitives/utils/dist/index/index.js"() {
|
|
4187
4067
|
init_R5675YMU();
|
|
4188
4068
|
}
|
|
4189
4069
|
});
|
|
4190
4070
|
|
|
4191
|
-
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.
|
|
4071
|
+
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.14/node_modules/@solid-primitives/refs/dist/index.js
|
|
4192
4072
|
function mergeRefs(...refs) {
|
|
4193
4073
|
return chain(refs);
|
|
4194
4074
|
}
|
|
@@ -4221,7 +4101,7 @@ function resolveElements(fn, predicate = defaultElementPredicate, serverPredicat
|
|
|
4221
4101
|
}
|
|
4222
4102
|
var defaultElementPredicate;
|
|
4223
4103
|
var init_dist4 = __esm({
|
|
4224
|
-
"../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.
|
|
4104
|
+
"../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.14/node_modules/@solid-primitives/refs/dist/index.js"() {
|
|
4225
4105
|
init_index();
|
|
4226
4106
|
init_solid();
|
|
4227
4107
|
init_web();
|
|
@@ -4229,7 +4109,7 @@ var init_dist4 = __esm({
|
|
|
4229
4109
|
}
|
|
4230
4110
|
});
|
|
4231
4111
|
|
|
4232
|
-
// ../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.
|
|
4112
|
+
// ../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.14/node_modules/solid-transition-group/dist/index.js
|
|
4233
4113
|
function createClassnames(props) {
|
|
4234
4114
|
return createMemo(() => {
|
|
4235
4115
|
const name = props.name || "s";
|
|
@@ -4305,7 +4185,7 @@ function exitTransition(classes, events, el, done) {
|
|
|
4305
4185
|
}
|
|
4306
4186
|
var TransitionGroup;
|
|
4307
4187
|
var init_dist5 = __esm({
|
|
4308
|
-
"../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.
|
|
4188
|
+
"../../node_modules/.pnpm/solid-transition-group@0.2.3_solid-js@1.8.14/node_modules/solid-transition-group/dist/index.js"() {
|
|
4309
4189
|
init_solid();
|
|
4310
4190
|
init_dist3();
|
|
4311
4191
|
init_dist4();
|
|
@@ -4359,7 +4239,7 @@ var init_dist5 = __esm({
|
|
|
4359
4239
|
}
|
|
4360
4240
|
});
|
|
4361
4241
|
|
|
4362
|
-
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.
|
|
4242
|
+
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.14/node_modules/@solid-primitives/keyed/dist/index.js
|
|
4363
4243
|
function dispose2(list) {
|
|
4364
4244
|
for (const o2 of list)
|
|
4365
4245
|
o2.dispose();
|
|
@@ -4457,14 +4337,14 @@ function Key(props) {
|
|
|
4457
4337
|
}
|
|
4458
4338
|
var FALLBACK2;
|
|
4459
4339
|
var init_dist6 = __esm({
|
|
4460
|
-
"../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.
|
|
4340
|
+
"../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.14/node_modules/@solid-primitives/keyed/dist/index.js"() {
|
|
4461
4341
|
init_solid();
|
|
4462
4342
|
init_web();
|
|
4463
4343
|
FALLBACK2 = Symbol("fallback");
|
|
4464
4344
|
}
|
|
4465
4345
|
});
|
|
4466
4346
|
|
|
4467
|
-
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.
|
|
4347
|
+
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.14/node_modules/@solid-primitives/storage/dist/index.js
|
|
4468
4348
|
function createStorage(props) {
|
|
4469
4349
|
const [error, setError] = createSignal();
|
|
4470
4350
|
const handleError2 = props?.throw ? (err, fallback) => {
|
|
@@ -4609,7 +4489,7 @@ function createStorage(props) {
|
|
|
4609
4489
|
}
|
|
4610
4490
|
var createLocalStorage, addClearMethod, serializeCookieOptions, cookieStorage;
|
|
4611
4491
|
var init_dist7 = __esm({
|
|
4612
|
-
"../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.
|
|
4492
|
+
"../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.14/node_modules/@solid-primitives/storage/dist/index.js"() {
|
|
4613
4493
|
init_solid();
|
|
4614
4494
|
createLocalStorage = createStorage;
|
|
4615
4495
|
addClearMethod = (storage) => {
|
|
@@ -4689,7 +4569,7 @@ var init_dist7 = __esm({
|
|
|
4689
4569
|
}
|
|
4690
4570
|
});
|
|
4691
4571
|
|
|
4692
|
-
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.
|
|
4572
|
+
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.14/node_modules/@solid-primitives/event-listener/dist/index.js
|
|
4693
4573
|
function makeEventListener(target, type, handler, options) {
|
|
4694
4574
|
target.addEventListener(type, handler, options);
|
|
4695
4575
|
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
@@ -4709,14 +4589,14 @@ function createEventListener(targets, type, handler, options) {
|
|
|
4709
4589
|
createRenderEffect(attachListeners);
|
|
4710
4590
|
}
|
|
4711
4591
|
var init_dist8 = __esm({
|
|
4712
|
-
"../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.
|
|
4592
|
+
"../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.14/node_modules/@solid-primitives/event-listener/dist/index.js"() {
|
|
4713
4593
|
init_index();
|
|
4714
4594
|
init_solid();
|
|
4715
4595
|
init_web();
|
|
4716
4596
|
}
|
|
4717
4597
|
});
|
|
4718
4598
|
|
|
4719
|
-
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.
|
|
4599
|
+
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.14/node_modules/@solid-primitives/resize-observer/dist/index.js
|
|
4720
4600
|
function makeResizeObserver(callback, options) {
|
|
4721
4601
|
if (isServer) {
|
|
4722
4602
|
return { observe: noop2, unobserve: noop2 };
|
|
@@ -4747,14 +4627,14 @@ function createResizeObserver(targets, onResize, options) {
|
|
|
4747
4627
|
}, []);
|
|
4748
4628
|
}
|
|
4749
4629
|
var init_dist9 = __esm({
|
|
4750
|
-
"../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.
|
|
4630
|
+
"../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.22_solid-js@1.8.14/node_modules/@solid-primitives/resize-observer/dist/index.js"() {
|
|
4751
4631
|
init_index();
|
|
4752
4632
|
init_solid();
|
|
4753
4633
|
init_web();
|
|
4754
4634
|
}
|
|
4755
4635
|
});
|
|
4756
4636
|
|
|
4757
|
-
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.
|
|
4637
|
+
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.14/node_modules/@solid-primitives/props/dist/index.js
|
|
4758
4638
|
function trueFn3() {
|
|
4759
4639
|
return true;
|
|
4760
4640
|
}
|
|
@@ -4839,7 +4719,7 @@ function combineProps(...args) {
|
|
|
4839
4719
|
}
|
|
4840
4720
|
var propTraps2, extractCSSregex, reduce;
|
|
4841
4721
|
var init_dist10 = __esm({
|
|
4842
|
-
"../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.
|
|
4722
|
+
"../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.14/node_modules/@solid-primitives/props/dist/index.js"() {
|
|
4843
4723
|
init_solid();
|
|
4844
4724
|
init_index();
|
|
4845
4725
|
propTraps2 = {
|
|
@@ -4883,7 +4763,7 @@ var init_dist10 = __esm({
|
|
|
4883
4763
|
}
|
|
4884
4764
|
});
|
|
4885
4765
|
|
|
4886
|
-
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.
|
|
4766
|
+
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.14/node_modules/@kobalte/utils/dist/index.js
|
|
4887
4767
|
function addItemToArray(array, item, index = -1) {
|
|
4888
4768
|
if (!(index in array)) {
|
|
4889
4769
|
return [...array, item];
|
|
@@ -5244,7 +5124,7 @@ function relativeOffset(ancestor, child, axis) {
|
|
|
5244
5124
|
}
|
|
5245
5125
|
var EventKey, supportsPreventScrollCached, focusableElements, tabbableElements, FOCUSABLE_ELEMENT_SELECTOR, TABBABLE_ELEMENT_SELECTOR, transitionsByElement, transitionCallbacks, visuallyHiddenStyles;
|
|
5246
5126
|
var init_dist11 = __esm({
|
|
5247
|
-
"../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.
|
|
5127
|
+
"../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.14/node_modules/@kobalte/utils/dist/index.js"() {
|
|
5248
5128
|
init_solid();
|
|
5249
5129
|
init_dist8();
|
|
5250
5130
|
init_dist10();
|
|
@@ -5310,7 +5190,7 @@ var init_dist11 = __esm({
|
|
|
5310
5190
|
}
|
|
5311
5191
|
});
|
|
5312
5192
|
|
|
5313
|
-
// ../../node_modules/.pnpm/solid-js@1.8.
|
|
5193
|
+
// ../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/store/dist/store.js
|
|
5314
5194
|
function wrap$1(value) {
|
|
5315
5195
|
let p2 = value[$PROXY];
|
|
5316
5196
|
if (!p2) {
|
|
@@ -5467,7 +5347,11 @@ function updatePath(current, path, traversed = []) {
|
|
|
5467
5347
|
}
|
|
5468
5348
|
return;
|
|
5469
5349
|
} else if (isArray4 && partType === "object") {
|
|
5470
|
-
const {
|
|
5350
|
+
const {
|
|
5351
|
+
from = 0,
|
|
5352
|
+
to = current.length - 1,
|
|
5353
|
+
by = 1
|
|
5354
|
+
} = part;
|
|
5471
5355
|
for (let i2 = from; i2 <= to; i2 += by) {
|
|
5472
5356
|
updatePath(current, [i2].concat(path), traversed);
|
|
5473
5357
|
}
|
|
@@ -5506,7 +5390,7 @@ function createStore(...[store, options]) {
|
|
|
5506
5390
|
}
|
|
5507
5391
|
var $RAW, $NODE, $HAS, $SELF, proxyTraps$1;
|
|
5508
5392
|
var init_store = __esm({
|
|
5509
|
-
"../../node_modules/.pnpm/solid-js@1.8.
|
|
5393
|
+
"../../node_modules/.pnpm/solid-js@1.8.14/node_modules/solid-js/store/dist/store.js"() {
|
|
5510
5394
|
init_solid();
|
|
5511
5395
|
$RAW = Symbol("store-raw");
|
|
5512
5396
|
$NODE = Symbol("store-node");
|
|
@@ -10803,7 +10687,7 @@ function RadioGroupRoot(props) {
|
|
|
10803
10687
|
}
|
|
10804
10688
|
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;
|
|
10805
10689
|
var init_esm2 = __esm({
|
|
10806
|
-
"../../node_modules/.pnpm/@kobalte+core@0.11.2_solid-js@1.8.
|
|
10690
|
+
"../../node_modules/.pnpm/@kobalte+core@0.11.2_solid-js@1.8.14/node_modules/@kobalte/core/dist/esm/index.js"() {
|
|
10807
10691
|
init_dist11();
|
|
10808
10692
|
init_store();
|
|
10809
10693
|
init_web();
|
|
@@ -15688,6 +15572,7 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
|
|
|
15688
15572
|
throw new Error("Devtools is already mounted");
|
|
15689
15573
|
}
|
|
15690
15574
|
const dispose3 = render(() => {
|
|
15575
|
+
const _self$ = this;
|
|
15691
15576
|
const [btnPosition] = this.#buttonPosition;
|
|
15692
15577
|
const [pos] = this.#position;
|
|
15693
15578
|
const [isOpen] = this.#initialIsOpen;
|
|
@@ -15701,7 +15586,6 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
|
|
|
15701
15586
|
this.#Component = Devtools2;
|
|
15702
15587
|
}
|
|
15703
15588
|
setupStyleSheet(this.#styleNonce);
|
|
15704
|
-
const _self$ = this;
|
|
15705
15589
|
return createComponent(Devtools2, mergeProps({
|
|
15706
15590
|
get queryFlavor() {
|
|
15707
15591
|
return _self$.#queryFlavor;
|
|
@@ -15745,15 +15629,15 @@ exports.TanstackQueryDevtools = class TanstackQueryDevtools {
|
|
|
15745
15629
|
|
|
15746
15630
|
@tanstack/match-sorter-utils/build/lib/index.mjs:
|
|
15747
15631
|
(**
|
|
15748
|
-
|
|
15749
|
-
|
|
15750
|
-
|
|
15751
|
-
|
|
15752
|
-
|
|
15753
|
-
|
|
15754
|
-
|
|
15755
|
-
|
|
15756
|
-
|
|
15632
|
+
* match-sorter-utils
|
|
15633
|
+
*
|
|
15634
|
+
* Copyright (c) TanStack
|
|
15635
|
+
*
|
|
15636
|
+
* This source code is licensed under the MIT license found in the
|
|
15637
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
15638
|
+
*
|
|
15639
|
+
* @license MIT
|
|
15640
|
+
*)
|
|
15757
15641
|
(**
|
|
15758
15642
|
* @name match-sorter
|
|
15759
15643
|
* @license MIT license.
|