@tanstack/query-devtools 5.0.0 → 5.0.3
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/{YSRICXZI.js → 3Y5CBXUA.js} +273 -198
- package/build/Devtools/{3BAJISSX.jsx → 7SMWYMBY.jsx} +247 -247
- package/build/Devtools/{4TNE5QTO.js → B2H37NSB.js} +273 -198
- package/build/Devtools/{OWSLDUSP.jsx → Y2E2LEWB.jsx} +247 -247
- package/build/chunk/{PWC4YVZY.jsx → AHAJNSNO.jsx} +299 -177
- package/build/chunk/{7MNJIXJ6.js → Z53XT47W.js} +299 -178
- package/build/dev.cjs +623 -443
- package/build/dev.js +2 -2
- package/build/dev.jsx +2 -2
- package/build/index.cjs +622 -442
- package/build/index.js +2 -2
- package/build/index.jsx +2 -2
- package/package.json +1 -1
- package/src/icons/index.tsx +86 -79
- package/build/chunk/L2WNRKEK.js +0 -1912
- package/build/chunk/LGDS24HT.jsx +0 -1948
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.
|
|
13
|
+
// ../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/dist/solid.js
|
|
14
14
|
function setHydrateContext(context) {
|
|
15
15
|
sharedConfig.context = context;
|
|
16
16
|
}
|
|
@@ -22,11 +22,11 @@ function nextHydrateContext() {
|
|
|
22
22
|
};
|
|
23
23
|
}
|
|
24
24
|
function createRoot(fn, detachedOwner) {
|
|
25
|
-
const listener = Listener, owner = Owner, unowned = fn.length === 0, root = unowned ? UNOWNED : {
|
|
25
|
+
const listener = Listener, owner = Owner, unowned = fn.length === 0, current = detachedOwner === void 0 ? owner : detachedOwner, root = unowned ? UNOWNED : {
|
|
26
26
|
owned: null,
|
|
27
27
|
cleanups: null,
|
|
28
|
-
context: null,
|
|
29
|
-
owner:
|
|
28
|
+
context: current ? current.context : null,
|
|
29
|
+
owner: current
|
|
30
30
|
}, updateFn = unowned ? fn : () => fn(() => untrack(() => cleanNode(root)));
|
|
31
31
|
Owner = root;
|
|
32
32
|
Listener = null;
|
|
@@ -72,7 +72,7 @@ function createRenderEffect(fn, value, options) {
|
|
|
72
72
|
}
|
|
73
73
|
function createEffect(fn, value, options) {
|
|
74
74
|
runEffects = runUserEffects;
|
|
75
|
-
const c2 = createComputation(fn, value, false, STALE), s2 = SuspenseContext &&
|
|
75
|
+
const c2 = createComputation(fn, value, false, STALE), s2 = SuspenseContext && useContext(SuspenseContext);
|
|
76
76
|
if (s2)
|
|
77
77
|
c2.suspense = s2;
|
|
78
78
|
if (!options || !options.render)
|
|
@@ -92,6 +92,9 @@ function createMemo(fn, value, options) {
|
|
|
92
92
|
updateComputation(c2);
|
|
93
93
|
return readSignal.bind(c2);
|
|
94
94
|
}
|
|
95
|
+
function isPromise(v) {
|
|
96
|
+
return v && typeof v === "object" && "then" in v;
|
|
97
|
+
}
|
|
95
98
|
function createResource(pSource, pFetcher, pOptions) {
|
|
96
99
|
let source;
|
|
97
100
|
let fetcher;
|
|
@@ -115,16 +118,18 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
115
118
|
if (options.ssrLoadFrom === "initial")
|
|
116
119
|
initP = options.initialValue;
|
|
117
120
|
else if (sharedConfig.load && (v = sharedConfig.load(id)))
|
|
118
|
-
initP = v
|
|
121
|
+
initP = isPromise(v) && "value" in v ? v.value : v;
|
|
119
122
|
}
|
|
120
123
|
function loadEnd(p2, v, error2, key) {
|
|
121
124
|
if (pr === p2) {
|
|
122
125
|
pr = null;
|
|
123
126
|
key !== void 0 && (resolved = true);
|
|
124
127
|
if ((p2 === initP || v === initP) && options.onHydrated)
|
|
125
|
-
queueMicrotask(
|
|
126
|
-
|
|
127
|
-
|
|
128
|
+
queueMicrotask(
|
|
129
|
+
() => options.onHydrated(key, {
|
|
130
|
+
value: v
|
|
131
|
+
})
|
|
132
|
+
);
|
|
128
133
|
initP = NO_INIT;
|
|
129
134
|
if (Transition && p2 && loadedUnderTransition) {
|
|
130
135
|
Transition.promises.delete(p2);
|
|
@@ -150,7 +155,7 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
150
155
|
}, false);
|
|
151
156
|
}
|
|
152
157
|
function read() {
|
|
153
|
-
const c2 = SuspenseContext &&
|
|
158
|
+
const c2 = SuspenseContext && useContext(SuspenseContext), v = value(), err = error();
|
|
154
159
|
if (err !== void 0 && !pr)
|
|
155
160
|
throw err;
|
|
156
161
|
if (Listener && !Listener.user && c2) {
|
|
@@ -172,20 +177,22 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
172
177
|
if (refetching !== false && scheduled)
|
|
173
178
|
return;
|
|
174
179
|
scheduled = false;
|
|
175
|
-
const
|
|
180
|
+
const lookup = dynamic ? dynamic() : source;
|
|
176
181
|
loadedUnderTransition = Transition && Transition.running;
|
|
177
|
-
if (
|
|
182
|
+
if (lookup == null || lookup === false) {
|
|
178
183
|
loadEnd(pr, untrack(value));
|
|
179
184
|
return;
|
|
180
185
|
}
|
|
181
186
|
if (Transition && pr)
|
|
182
187
|
Transition.promises.delete(pr);
|
|
183
|
-
const p2 = initP !== NO_INIT ? initP : untrack(
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
188
|
+
const p2 = initP !== NO_INIT ? initP : untrack(
|
|
189
|
+
() => fetcher(lookup, {
|
|
190
|
+
value: value(),
|
|
191
|
+
refetching
|
|
192
|
+
})
|
|
193
|
+
);
|
|
194
|
+
if (!isPromise(p2)) {
|
|
195
|
+
loadEnd(pr, p2, void 0, lookup);
|
|
189
196
|
return p2;
|
|
190
197
|
}
|
|
191
198
|
pr = p2;
|
|
@@ -195,7 +202,10 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
195
202
|
setState2(resolved ? "refreshing" : "pending");
|
|
196
203
|
trigger();
|
|
197
204
|
}, false);
|
|
198
|
-
return p2.then(
|
|
205
|
+
return p2.then(
|
|
206
|
+
(v) => loadEnd(p2, v, void 0, lookup),
|
|
207
|
+
(e2) => loadEnd(p2, void 0, castError(e2), lookup)
|
|
208
|
+
);
|
|
199
209
|
}
|
|
200
210
|
Object.defineProperties(read, {
|
|
201
211
|
state: {
|
|
@@ -225,10 +235,13 @@ function createResource(pSource, pFetcher, pOptions) {
|
|
|
225
235
|
createComputed(() => load(false));
|
|
226
236
|
else
|
|
227
237
|
load(false);
|
|
228
|
-
return [
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
238
|
+
return [
|
|
239
|
+
read,
|
|
240
|
+
{
|
|
241
|
+
refetch: load,
|
|
242
|
+
mutate: setValue
|
|
243
|
+
}
|
|
244
|
+
];
|
|
232
245
|
}
|
|
233
246
|
function batch(fn) {
|
|
234
247
|
return runUpdates(fn, false);
|
|
@@ -247,7 +260,7 @@ function untrack(fn) {
|
|
|
247
260
|
function on(deps, fn, options) {
|
|
248
261
|
const isArray4 = Array.isArray(deps);
|
|
249
262
|
let prevInput;
|
|
250
|
-
let
|
|
263
|
+
let defer2 = options && options.defer;
|
|
251
264
|
return (prevValue) => {
|
|
252
265
|
let input;
|
|
253
266
|
if (isArray4) {
|
|
@@ -256,8 +269,8 @@ function on(deps, fn, options) {
|
|
|
256
269
|
input[i2] = deps[i2]();
|
|
257
270
|
} else
|
|
258
271
|
input = deps();
|
|
259
|
-
if (
|
|
260
|
-
|
|
272
|
+
if (defer2) {
|
|
273
|
+
defer2 = false;
|
|
261
274
|
return void 0;
|
|
262
275
|
}
|
|
263
276
|
const result = untrack(() => fn(input, prevInput, prevValue));
|
|
@@ -337,8 +350,7 @@ function createContext(defaultValue, options) {
|
|
|
337
350
|
};
|
|
338
351
|
}
|
|
339
352
|
function useContext(context) {
|
|
340
|
-
|
|
341
|
-
return (ctx = lookup(Owner, context.id)) !== void 0 ? ctx : context.defaultValue;
|
|
353
|
+
return Owner && Owner.context && Owner.context[context.id] !== void 0 ? Owner.context[context.id] : context.defaultValue;
|
|
342
354
|
}
|
|
343
355
|
function children(fn) {
|
|
344
356
|
const children2 = createMemo(fn);
|
|
@@ -432,7 +444,11 @@ function updateComputation(node) {
|
|
|
432
444
|
cleanNode(node);
|
|
433
445
|
const owner = Owner, listener = Listener, time = ExecCount;
|
|
434
446
|
Listener = Owner = node;
|
|
435
|
-
runComputation(
|
|
447
|
+
runComputation(
|
|
448
|
+
node,
|
|
449
|
+
Transition && Transition.running && Transition.sources.has(node) ? node.tValue : node.value,
|
|
450
|
+
time
|
|
451
|
+
);
|
|
436
452
|
if (Transition && !Transition.running && Transition.sources.has(node)) {
|
|
437
453
|
queueMicrotask(() => {
|
|
438
454
|
runUpdates(() => {
|
|
@@ -487,7 +503,7 @@ function createComputation(fn, init, pure, state2 = STALE, options) {
|
|
|
487
503
|
cleanups: null,
|
|
488
504
|
value: init,
|
|
489
505
|
owner: Owner,
|
|
490
|
-
context: null,
|
|
506
|
+
context: Owner ? Owner.context : null,
|
|
491
507
|
pure
|
|
492
508
|
};
|
|
493
509
|
if (Transition && Transition.running) {
|
|
@@ -750,7 +766,6 @@ function cleanNode(node) {
|
|
|
750
766
|
node.tState = 0;
|
|
751
767
|
else
|
|
752
768
|
node.state = 0;
|
|
753
|
-
node.context = null;
|
|
754
769
|
}
|
|
755
770
|
function reset(node, top) {
|
|
756
771
|
if (!top) {
|
|
@@ -778,7 +793,7 @@ function runErrors(err, fns, owner) {
|
|
|
778
793
|
}
|
|
779
794
|
}
|
|
780
795
|
function handleError(err, owner = Owner) {
|
|
781
|
-
const fns = ERROR &&
|
|
796
|
+
const fns = ERROR && owner && owner.context && owner.context[ERROR];
|
|
782
797
|
const error = castError(err);
|
|
783
798
|
if (!fns)
|
|
784
799
|
throw error;
|
|
@@ -792,9 +807,6 @@ function handleError(err, owner = Owner) {
|
|
|
792
807
|
else
|
|
793
808
|
runErrors(error, fns, owner);
|
|
794
809
|
}
|
|
795
|
-
function lookup(owner, key) {
|
|
796
|
-
return owner ? owner.context && owner.context[key] !== void 0 ? owner.context[key] : lookup(owner.owner, key) : void 0;
|
|
797
|
-
}
|
|
798
810
|
function resolveChildren(children2) {
|
|
799
811
|
if (typeof children2 === "function" && !children2.length)
|
|
800
812
|
return resolveChildren(children2());
|
|
@@ -811,12 +823,16 @@ function resolveChildren(children2) {
|
|
|
811
823
|
function createProvider(id, options) {
|
|
812
824
|
return function provider(props) {
|
|
813
825
|
let res;
|
|
814
|
-
createRenderEffect(
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
826
|
+
createRenderEffect(
|
|
827
|
+
() => res = untrack(() => {
|
|
828
|
+
Owner.context = {
|
|
829
|
+
...Owner.context,
|
|
830
|
+
[id]: props.value
|
|
831
|
+
};
|
|
832
|
+
return children(() => props.children);
|
|
833
|
+
}),
|
|
834
|
+
void 0
|
|
835
|
+
);
|
|
820
836
|
return res;
|
|
821
837
|
};
|
|
822
838
|
}
|
|
@@ -1002,28 +1018,31 @@ function mergeProps(...sources) {
|
|
|
1002
1018
|
sources[i2] = typeof s2 === "function" ? (proxy = true, createMemo(s2)) : s2;
|
|
1003
1019
|
}
|
|
1004
1020
|
if (proxy) {
|
|
1005
|
-
return new Proxy(
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1021
|
+
return new Proxy(
|
|
1022
|
+
{
|
|
1023
|
+
get(property) {
|
|
1024
|
+
for (let i2 = sources.length - 1; i2 >= 0; i2--) {
|
|
1025
|
+
const v = resolveSource(sources[i2])[property];
|
|
1026
|
+
if (v !== void 0)
|
|
1027
|
+
return v;
|
|
1028
|
+
}
|
|
1029
|
+
},
|
|
1030
|
+
has(property) {
|
|
1031
|
+
for (let i2 = sources.length - 1; i2 >= 0; i2--) {
|
|
1032
|
+
if (property in resolveSource(sources[i2]))
|
|
1033
|
+
return true;
|
|
1034
|
+
}
|
|
1035
|
+
return false;
|
|
1036
|
+
},
|
|
1037
|
+
keys() {
|
|
1038
|
+
const keys2 = [];
|
|
1039
|
+
for (let i2 = 0; i2 < sources.length; i2++)
|
|
1040
|
+
keys2.push(...Object.keys(resolveSource(sources[i2])));
|
|
1041
|
+
return [...new Set(keys2)];
|
|
1017
1042
|
}
|
|
1018
|
-
return false;
|
|
1019
1043
|
},
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
for (let i2 = 0; i2 < sources.length; i2++)
|
|
1023
|
-
keys3.push(...Object.keys(resolveSource(sources[i2])));
|
|
1024
|
-
return [...new Set(keys3)];
|
|
1025
|
-
}
|
|
1026
|
-
}, propTraps);
|
|
1044
|
+
propTraps
|
|
1045
|
+
);
|
|
1027
1046
|
}
|
|
1028
1047
|
const target = {};
|
|
1029
1048
|
const sourcesMap = {};
|
|
@@ -1066,43 +1085,51 @@ function mergeProps(...sources) {
|
|
|
1066
1085
|
}
|
|
1067
1086
|
return target;
|
|
1068
1087
|
}
|
|
1069
|
-
function splitProps(props, ...
|
|
1088
|
+
function splitProps(props, ...keys2) {
|
|
1070
1089
|
if ($PROXY in props) {
|
|
1071
|
-
const blocked = new Set(
|
|
1072
|
-
const res =
|
|
1073
|
-
return new Proxy(
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1090
|
+
const blocked = new Set(keys2.length > 1 ? keys2.flat() : keys2[0]);
|
|
1091
|
+
const res = keys2.map((k) => {
|
|
1092
|
+
return new Proxy(
|
|
1093
|
+
{
|
|
1094
|
+
get(property) {
|
|
1095
|
+
return k.includes(property) ? props[property] : void 0;
|
|
1096
|
+
},
|
|
1097
|
+
has(property) {
|
|
1098
|
+
return k.includes(property) && property in props;
|
|
1099
|
+
},
|
|
1100
|
+
keys() {
|
|
1101
|
+
return k.filter((property) => property in props);
|
|
1102
|
+
}
|
|
1079
1103
|
},
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
}
|
|
1083
|
-
}, propTraps);
|
|
1104
|
+
propTraps
|
|
1105
|
+
);
|
|
1084
1106
|
});
|
|
1085
|
-
res.push(
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1107
|
+
res.push(
|
|
1108
|
+
new Proxy(
|
|
1109
|
+
{
|
|
1110
|
+
get(property) {
|
|
1111
|
+
return blocked.has(property) ? void 0 : props[property];
|
|
1112
|
+
},
|
|
1113
|
+
has(property) {
|
|
1114
|
+
return blocked.has(property) ? false : property in props;
|
|
1115
|
+
},
|
|
1116
|
+
keys() {
|
|
1117
|
+
return Object.keys(props).filter((k) => !blocked.has(k));
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
propTraps
|
|
1121
|
+
)
|
|
1122
|
+
);
|
|
1096
1123
|
return res;
|
|
1097
1124
|
}
|
|
1098
1125
|
const otherObject = {};
|
|
1099
|
-
const objects =
|
|
1126
|
+
const objects = keys2.map(() => ({}));
|
|
1100
1127
|
for (const propName of Object.getOwnPropertyNames(props)) {
|
|
1101
1128
|
const desc = Object.getOwnPropertyDescriptor(props, propName);
|
|
1102
1129
|
const isDefaultDesc = !desc.get && !desc.set && desc.enumerable && desc.writable && desc.configurable;
|
|
1103
1130
|
let blocked = false;
|
|
1104
1131
|
let objectIndex = 0;
|
|
1105
|
-
for (const k of
|
|
1132
|
+
for (const k of keys2) {
|
|
1106
1133
|
if (k.includes(propName)) {
|
|
1107
1134
|
blocked = true;
|
|
1108
1135
|
isDefaultDesc ? objects[objectIndex][propName] = desc.value : Object.defineProperty(objects[objectIndex], propName, desc);
|
|
@@ -1136,17 +1163,19 @@ function lazy(fn) {
|
|
|
1136
1163
|
comp = s2;
|
|
1137
1164
|
}
|
|
1138
1165
|
let Comp;
|
|
1139
|
-
return createMemo(
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1166
|
+
return createMemo(
|
|
1167
|
+
() => (Comp = comp()) && untrack(() => {
|
|
1168
|
+
if (false)
|
|
1169
|
+
;
|
|
1170
|
+
if (!ctx)
|
|
1171
|
+
return Comp(props);
|
|
1172
|
+
const c2 = sharedConfig.context;
|
|
1173
|
+
setHydrateContext(ctx);
|
|
1174
|
+
const r2 = Comp(props);
|
|
1175
|
+
setHydrateContext(c2);
|
|
1176
|
+
return r2;
|
|
1177
|
+
})
|
|
1178
|
+
);
|
|
1150
1179
|
};
|
|
1151
1180
|
wrap.preload = () => p2 || ((p2 = fn()).then((mod) => comp = () => mod.default), p2);
|
|
1152
1181
|
return wrap;
|
|
@@ -1172,57 +1201,77 @@ function Show(props) {
|
|
|
1172
1201
|
const condition = createMemo(() => props.when, void 0, {
|
|
1173
1202
|
equals: (a2, b2) => keyed ? a2 === b2 : !a2 === !b2
|
|
1174
1203
|
});
|
|
1175
|
-
return createMemo(
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1204
|
+
return createMemo(
|
|
1205
|
+
() => {
|
|
1206
|
+
const c2 = condition();
|
|
1207
|
+
if (c2) {
|
|
1208
|
+
const child = props.children;
|
|
1209
|
+
const fn = typeof child === "function" && child.length > 0;
|
|
1210
|
+
return fn ? untrack(
|
|
1211
|
+
() => child(
|
|
1212
|
+
keyed ? c2 : () => {
|
|
1213
|
+
if (!untrack(condition))
|
|
1214
|
+
throw narrowedError("Show");
|
|
1215
|
+
return props.when;
|
|
1216
|
+
}
|
|
1217
|
+
)
|
|
1218
|
+
) : child;
|
|
1219
|
+
}
|
|
1220
|
+
return props.fallback;
|
|
1221
|
+
},
|
|
1222
|
+
void 0,
|
|
1223
|
+
void 0
|
|
1224
|
+
);
|
|
1188
1225
|
}
|
|
1189
1226
|
function Switch(props) {
|
|
1190
1227
|
let keyed = false;
|
|
1191
1228
|
const equals = (a2, b2) => a2[0] === b2[0] && (keyed ? a2[1] === b2[1] : !a2[1] === !b2[1]) && a2[2] === b2[2];
|
|
1192
|
-
const conditions = children(() => props.children), evalConditions = createMemo(
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1229
|
+
const conditions = children(() => props.children), evalConditions = createMemo(
|
|
1230
|
+
() => {
|
|
1231
|
+
let conds = conditions();
|
|
1232
|
+
if (!Array.isArray(conds))
|
|
1233
|
+
conds = [conds];
|
|
1234
|
+
for (let i2 = 0; i2 < conds.length; i2++) {
|
|
1235
|
+
const c2 = conds[i2].when;
|
|
1236
|
+
if (c2) {
|
|
1237
|
+
keyed = !!conds[i2].keyed;
|
|
1238
|
+
return [i2, c2, conds[i2]];
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
return [-1];
|
|
1242
|
+
},
|
|
1243
|
+
void 0,
|
|
1244
|
+
{
|
|
1245
|
+
equals
|
|
1202
1246
|
}
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1247
|
+
);
|
|
1248
|
+
return createMemo(
|
|
1249
|
+
() => {
|
|
1250
|
+
const [index, when, cond] = evalConditions();
|
|
1251
|
+
if (index < 0)
|
|
1252
|
+
return props.fallback;
|
|
1253
|
+
const c2 = cond.children;
|
|
1254
|
+
const fn = typeof c2 === "function" && c2.length > 0;
|
|
1255
|
+
return fn ? untrack(
|
|
1256
|
+
() => c2(
|
|
1257
|
+
keyed ? when : () => {
|
|
1258
|
+
if (untrack(evalConditions)[0] !== index)
|
|
1259
|
+
throw narrowedError("Match");
|
|
1260
|
+
return cond.when;
|
|
1261
|
+
}
|
|
1262
|
+
)
|
|
1263
|
+
) : c2;
|
|
1264
|
+
},
|
|
1265
|
+
void 0,
|
|
1266
|
+
void 0
|
|
1267
|
+
);
|
|
1219
1268
|
}
|
|
1220
1269
|
function Match(props) {
|
|
1221
1270
|
return props;
|
|
1222
1271
|
}
|
|
1223
|
-
var sharedConfig, equalFn, $PROXY, $TRACK,
|
|
1272
|
+
var sharedConfig, equalFn, $PROXY, $TRACK, signalOptions, ERROR, runEffects, STALE, PENDING, UNOWNED, NO_INIT, Owner, Transition, Scheduler, ExternalSourceFactory, Listener, Updates, Effects, ExecCount, transPending, setTransPending, SuspenseContext, FALLBACK, hydrationEnabled, propTraps, counter, narrowedError, DEV;
|
|
1224
1273
|
var init_solid = __esm({
|
|
1225
|
-
"../../node_modules/.pnpm/solid-js@1.
|
|
1274
|
+
"../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/dist/solid.js"() {
|
|
1226
1275
|
sharedConfig = {
|
|
1227
1276
|
context: void 0,
|
|
1228
1277
|
registry: void 0
|
|
@@ -1230,7 +1279,6 @@ var init_solid = __esm({
|
|
|
1230
1279
|
equalFn = (a2, b2) => a2 === b2;
|
|
1231
1280
|
$PROXY = Symbol("solid-proxy");
|
|
1232
1281
|
$TRACK = Symbol("solid-track");
|
|
1233
|
-
$DEVCOMP = Symbol("solid-dev-component");
|
|
1234
1282
|
signalOptions = {
|
|
1235
1283
|
equals: equalFn
|
|
1236
1284
|
};
|
|
@@ -1290,7 +1338,7 @@ var init_solid = __esm({
|
|
|
1290
1338
|
}
|
|
1291
1339
|
});
|
|
1292
1340
|
|
|
1293
|
-
// ../../node_modules/.pnpm/solid-js@1.
|
|
1341
|
+
// ../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/web/dist/web.js
|
|
1294
1342
|
function getPropAlias(prop, tagName) {
|
|
1295
1343
|
const a2 = PropAliases[prop];
|
|
1296
1344
|
return typeof a2 === "object" ? a2[tagName] ? a2["$"] : void 0 : a2;
|
|
@@ -1384,18 +1432,24 @@ function delegateEvents(eventNames, document2 = window.document) {
|
|
|
1384
1432
|
}
|
|
1385
1433
|
}
|
|
1386
1434
|
function setAttribute(node, name, value) {
|
|
1435
|
+
if (sharedConfig.context)
|
|
1436
|
+
return;
|
|
1387
1437
|
if (value == null)
|
|
1388
1438
|
node.removeAttribute(name);
|
|
1389
1439
|
else
|
|
1390
1440
|
node.setAttribute(name, value);
|
|
1391
1441
|
}
|
|
1392
1442
|
function setAttributeNS(node, namespace, name, value) {
|
|
1443
|
+
if (sharedConfig.context)
|
|
1444
|
+
return;
|
|
1393
1445
|
if (value == null)
|
|
1394
1446
|
node.removeAttributeNS(namespace, name);
|
|
1395
1447
|
else
|
|
1396
1448
|
node.setAttributeNS(namespace, name, value);
|
|
1397
1449
|
}
|
|
1398
1450
|
function className(node, value) {
|
|
1451
|
+
if (sharedConfig.context)
|
|
1452
|
+
return;
|
|
1399
1453
|
if (value == null)
|
|
1400
1454
|
node.removeAttribute("class");
|
|
1401
1455
|
else
|
|
@@ -1459,7 +1513,9 @@ function style(node, value, prev) {
|
|
|
1459
1513
|
function spread(node, props = {}, isSVG, skipChildren) {
|
|
1460
1514
|
const prevProps = {};
|
|
1461
1515
|
if (!skipChildren) {
|
|
1462
|
-
createRenderEffect(
|
|
1516
|
+
createRenderEffect(
|
|
1517
|
+
() => prevProps.children = insertExpression(node, props.children, prevProps.children)
|
|
1518
|
+
);
|
|
1463
1519
|
}
|
|
1464
1520
|
createRenderEffect(() => props.ref && props.ref(node));
|
|
1465
1521
|
createRenderEffect(() => assign(node, props, isSVG, true, prevProps, true));
|
|
@@ -1497,10 +1553,6 @@ function assign(node, props, isSVG, skipChildren, prevProps = {}, skipRef = fals
|
|
|
1497
1553
|
function getNextElement(template2) {
|
|
1498
1554
|
let node, key;
|
|
1499
1555
|
if (!sharedConfig.context || !(node = sharedConfig.registry.get(key = getHydrationKey()))) {
|
|
1500
|
-
if (sharedConfig.context)
|
|
1501
|
-
console.warn("Unable to find DOM nodes for hydration key:", key);
|
|
1502
|
-
if (!template2)
|
|
1503
|
-
throw new Error("Unrecoverable Hydration Mismatch. No template for key: " + key);
|
|
1504
1556
|
return template2();
|
|
1505
1557
|
}
|
|
1506
1558
|
if (sharedConfig.completed)
|
|
@@ -1552,7 +1604,8 @@ function assignProp(node, prop, value, prev, isSVG, skipRef) {
|
|
|
1552
1604
|
if (forceProp) {
|
|
1553
1605
|
prop = prop.slice(5);
|
|
1554
1606
|
isProp = true;
|
|
1555
|
-
}
|
|
1607
|
+
} else if (sharedConfig.context)
|
|
1608
|
+
return value;
|
|
1556
1609
|
if (prop === "class" || prop === "className")
|
|
1557
1610
|
className(node, value);
|
|
1558
1611
|
else if (isCE && !isProp && !isChildProp)
|
|
@@ -1655,10 +1708,13 @@ function insertExpression(parent, value, current, marker, unwrapArray) {
|
|
|
1655
1708
|
if (sharedConfig.context) {
|
|
1656
1709
|
if (!array.length)
|
|
1657
1710
|
return current;
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1711
|
+
if (marker === void 0)
|
|
1712
|
+
return [...parent.childNodes];
|
|
1713
|
+
let node = array[0];
|
|
1714
|
+
let nodes = [node];
|
|
1715
|
+
while ((node = node.nextSibling) !== marker)
|
|
1716
|
+
nodes.push(node);
|
|
1717
|
+
return current = nodes;
|
|
1662
1718
|
}
|
|
1663
1719
|
if (array.length === 0) {
|
|
1664
1720
|
current = cleanChildren(parent, current, marker);
|
|
@@ -1687,7 +1743,7 @@ function insertExpression(parent, value, current, marker, unwrapArray) {
|
|
|
1687
1743
|
parent.replaceChild(value, parent.firstChild);
|
|
1688
1744
|
current = value;
|
|
1689
1745
|
} else
|
|
1690
|
-
|
|
1746
|
+
;
|
|
1691
1747
|
return current;
|
|
1692
1748
|
}
|
|
1693
1749
|
function normalizeIncomingArray(normalized, array, current, unwrap2) {
|
|
@@ -1704,7 +1760,11 @@ function normalizeIncomingArray(normalized, array, current, unwrap2) {
|
|
|
1704
1760
|
if (unwrap2) {
|
|
1705
1761
|
while (typeof item === "function")
|
|
1706
1762
|
item = item();
|
|
1707
|
-
dynamic = normalizeIncomingArray(
|
|
1763
|
+
dynamic = normalizeIncomingArray(
|
|
1764
|
+
normalized,
|
|
1765
|
+
Array.isArray(item) ? item : [item],
|
|
1766
|
+
Array.isArray(prev) ? prev : [prev]
|
|
1767
|
+
) || dynamic;
|
|
1708
1768
|
} else {
|
|
1709
1769
|
normalized.push(item);
|
|
1710
1770
|
dynamic = true;
|
|
@@ -1752,39 +1812,41 @@ function createElement(tagName, isSVG = false) {
|
|
|
1752
1812
|
return isSVG ? document.createElementNS(SVG_NAMESPACE, tagName) : document.createElement(tagName);
|
|
1753
1813
|
}
|
|
1754
1814
|
function Portal(props) {
|
|
1755
|
-
const {
|
|
1756
|
-
useShadow
|
|
1757
|
-
} = props, marker = document.createTextNode(""), mount = () => props.mount || document.body, owner = getOwner();
|
|
1815
|
+
const { useShadow } = props, marker = document.createTextNode(""), mount = () => props.mount || document.body, owner = getOwner();
|
|
1758
1816
|
let content;
|
|
1759
1817
|
let hydrating = !!sharedConfig.context;
|
|
1760
|
-
createEffect(
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1818
|
+
createEffect(
|
|
1819
|
+
() => {
|
|
1820
|
+
if (hydrating)
|
|
1821
|
+
getOwner().user = hydrating = false;
|
|
1822
|
+
content || (content = runWithOwner(owner, () => createMemo(() => props.children)));
|
|
1823
|
+
const el = mount();
|
|
1824
|
+
if (el instanceof HTMLHeadElement) {
|
|
1825
|
+
const [clean, setClean] = createSignal(false);
|
|
1826
|
+
const cleanup = () => setClean(true);
|
|
1827
|
+
createRoot((dispose3) => insert(el, () => !clean() ? content() : dispose3(), null));
|
|
1828
|
+
onCleanup(cleanup);
|
|
1829
|
+
} else {
|
|
1830
|
+
const container = createElement(props.isSVG ? "g" : "div", props.isSVG), renderRoot = useShadow && container.attachShadow ? container.attachShadow({
|
|
1831
|
+
mode: "open"
|
|
1832
|
+
}) : container;
|
|
1833
|
+
Object.defineProperty(container, "_$host", {
|
|
1834
|
+
get() {
|
|
1835
|
+
return marker.parentNode;
|
|
1836
|
+
},
|
|
1837
|
+
configurable: true
|
|
1838
|
+
});
|
|
1839
|
+
insert(renderRoot, content);
|
|
1840
|
+
el.appendChild(container);
|
|
1841
|
+
props.ref && props.ref(container);
|
|
1842
|
+
onCleanup(() => el.removeChild(container));
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
void 0,
|
|
1846
|
+
{
|
|
1847
|
+
render: !hydrating
|
|
1784
1848
|
}
|
|
1785
|
-
|
|
1786
|
-
render: !hydrating
|
|
1787
|
-
});
|
|
1849
|
+
);
|
|
1788
1850
|
return marker;
|
|
1789
1851
|
}
|
|
1790
1852
|
function Dynamic(props) {
|
|
@@ -1794,9 +1856,6 @@ function Dynamic(props) {
|
|
|
1794
1856
|
const component = cached();
|
|
1795
1857
|
switch (typeof component) {
|
|
1796
1858
|
case "function":
|
|
1797
|
-
Object.assign(component, {
|
|
1798
|
-
[$DEVCOMP]: true
|
|
1799
|
-
});
|
|
1800
1859
|
return untrack(() => component(others));
|
|
1801
1860
|
case "string":
|
|
1802
1861
|
const isSvg = SVGElements.has(component);
|
|
@@ -1808,12 +1867,51 @@ function Dynamic(props) {
|
|
|
1808
1867
|
}
|
|
1809
1868
|
var booleans, Properties, ChildProperties, Aliases, PropAliases, DelegatedEvents, SVGElements, SVGNamespace, $$EVENTS, isServer, SVG_NAMESPACE;
|
|
1810
1869
|
var init_web = __esm({
|
|
1811
|
-
"../../node_modules/.pnpm/solid-js@1.
|
|
1870
|
+
"../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/web/dist/web.js"() {
|
|
1812
1871
|
init_solid();
|
|
1813
1872
|
init_solid();
|
|
1814
|
-
booleans = [
|
|
1815
|
-
|
|
1816
|
-
|
|
1873
|
+
booleans = [
|
|
1874
|
+
"allowfullscreen",
|
|
1875
|
+
"async",
|
|
1876
|
+
"autofocus",
|
|
1877
|
+
"autoplay",
|
|
1878
|
+
"checked",
|
|
1879
|
+
"controls",
|
|
1880
|
+
"default",
|
|
1881
|
+
"disabled",
|
|
1882
|
+
"formnovalidate",
|
|
1883
|
+
"hidden",
|
|
1884
|
+
"indeterminate",
|
|
1885
|
+
"ismap",
|
|
1886
|
+
"loop",
|
|
1887
|
+
"multiple",
|
|
1888
|
+
"muted",
|
|
1889
|
+
"nomodule",
|
|
1890
|
+
"novalidate",
|
|
1891
|
+
"open",
|
|
1892
|
+
"playsinline",
|
|
1893
|
+
"readonly",
|
|
1894
|
+
"required",
|
|
1895
|
+
"reversed",
|
|
1896
|
+
"seamless",
|
|
1897
|
+
"selected"
|
|
1898
|
+
];
|
|
1899
|
+
Properties = /* @__PURE__ */ new Set([
|
|
1900
|
+
"className",
|
|
1901
|
+
"value",
|
|
1902
|
+
"readOnly",
|
|
1903
|
+
"formNoValidate",
|
|
1904
|
+
"isMap",
|
|
1905
|
+
"noModule",
|
|
1906
|
+
"playsInline",
|
|
1907
|
+
...booleans
|
|
1908
|
+
]);
|
|
1909
|
+
ChildProperties = /* @__PURE__ */ new Set([
|
|
1910
|
+
"innerHTML",
|
|
1911
|
+
"textContent",
|
|
1912
|
+
"innerText",
|
|
1913
|
+
"children"
|
|
1914
|
+
]);
|
|
1817
1915
|
Aliases = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
|
|
1818
1916
|
className: "class",
|
|
1819
1917
|
htmlFor: "for"
|
|
@@ -1843,7 +1941,30 @@ var init_web = __esm({
|
|
|
1843
1941
|
TEXTAREA: 1
|
|
1844
1942
|
}
|
|
1845
1943
|
});
|
|
1846
|
-
DelegatedEvents = /* @__PURE__ */ new Set([
|
|
1944
|
+
DelegatedEvents = /* @__PURE__ */ new Set([
|
|
1945
|
+
"beforeinput",
|
|
1946
|
+
"click",
|
|
1947
|
+
"dblclick",
|
|
1948
|
+
"contextmenu",
|
|
1949
|
+
"focusin",
|
|
1950
|
+
"focusout",
|
|
1951
|
+
"input",
|
|
1952
|
+
"keydown",
|
|
1953
|
+
"keyup",
|
|
1954
|
+
"mousedown",
|
|
1955
|
+
"mousemove",
|
|
1956
|
+
"mouseout",
|
|
1957
|
+
"mouseover",
|
|
1958
|
+
"mouseup",
|
|
1959
|
+
"pointerdown",
|
|
1960
|
+
"pointermove",
|
|
1961
|
+
"pointerout",
|
|
1962
|
+
"pointerover",
|
|
1963
|
+
"pointerup",
|
|
1964
|
+
"touchend",
|
|
1965
|
+
"touchmove",
|
|
1966
|
+
"touchstart"
|
|
1967
|
+
]);
|
|
1847
1968
|
SVGElements = /* @__PURE__ */ new Set([
|
|
1848
1969
|
"altGlyph",
|
|
1849
1970
|
"altGlyphDef",
|
|
@@ -2621,7 +2742,7 @@ var init_clsx = __esm({
|
|
|
2621
2742
|
}
|
|
2622
2743
|
});
|
|
2623
2744
|
|
|
2624
|
-
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.
|
|
2745
|
+
// ../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.1/node_modules/@solid-primitives/transition-group/dist/index.js
|
|
2625
2746
|
function createListTransition(source, options) {
|
|
2626
2747
|
const initSource = untrack(source);
|
|
2627
2748
|
if (isServer) {
|
|
@@ -2688,7 +2809,7 @@ function createListTransition(source, options) {
|
|
|
2688
2809
|
}
|
|
2689
2810
|
var noop;
|
|
2690
2811
|
var init_dist = __esm({
|
|
2691
|
-
"../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.
|
|
2812
|
+
"../../node_modules/.pnpm/@solid-primitives+transition-group@1.0.3_solid-js@1.8.1/node_modules/@solid-primitives/transition-group/dist/index.js"() {
|
|
2692
2813
|
init_solid();
|
|
2693
2814
|
init_web();
|
|
2694
2815
|
noop = () => {
|
|
@@ -2696,7 +2817,7 @@ var init_dist = __esm({
|
|
|
2696
2817
|
}
|
|
2697
2818
|
});
|
|
2698
2819
|
|
|
2699
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.
|
|
2820
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.1/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js
|
|
2700
2821
|
function chain(callbacks) {
|
|
2701
2822
|
return (...args) => {
|
|
2702
2823
|
for (const callback of callbacks)
|
|
@@ -2714,27 +2835,64 @@ function reverseChain(callbacks) {
|
|
|
2714
2835
|
function accessWith(valueOrFn, ...args) {
|
|
2715
2836
|
return typeof valueOrFn === "function" ? valueOrFn(...args) : valueOrFn;
|
|
2716
2837
|
}
|
|
2717
|
-
|
|
2838
|
+
function handleDiffArray(current, prev, handleAdded, handleRemoved) {
|
|
2839
|
+
const currLength = current.length;
|
|
2840
|
+
const prevLength = prev.length;
|
|
2841
|
+
let i2 = 0;
|
|
2842
|
+
if (!prevLength) {
|
|
2843
|
+
for (; i2 < currLength; i2++)
|
|
2844
|
+
handleAdded(current[i2]);
|
|
2845
|
+
return;
|
|
2846
|
+
}
|
|
2847
|
+
if (!currLength) {
|
|
2848
|
+
for (; i2 < prevLength; i2++)
|
|
2849
|
+
handleRemoved(prev[i2]);
|
|
2850
|
+
return;
|
|
2851
|
+
}
|
|
2852
|
+
for (; i2 < prevLength; i2++) {
|
|
2853
|
+
if (prev[i2] !== current[i2])
|
|
2854
|
+
break;
|
|
2855
|
+
}
|
|
2856
|
+
let prevEl;
|
|
2857
|
+
let currEl;
|
|
2858
|
+
prev = prev.slice(i2);
|
|
2859
|
+
current = current.slice(i2);
|
|
2860
|
+
for (prevEl of prev) {
|
|
2861
|
+
if (!current.includes(prevEl))
|
|
2862
|
+
handleRemoved(prevEl);
|
|
2863
|
+
}
|
|
2864
|
+
for (currEl of current) {
|
|
2865
|
+
if (!prev.includes(currEl))
|
|
2866
|
+
handleAdded(currEl);
|
|
2867
|
+
}
|
|
2868
|
+
}
|
|
2869
|
+
var isClient, isDev, noop2, isNonNullable, filterNonNullable, access, asArray, tryOnCleanup;
|
|
2718
2870
|
var init_R5675YMU = __esm({
|
|
2719
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.
|
|
2871
|
+
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.1/node_modules/@solid-primitives/utils/dist/chunk/R5675YMU.js"() {
|
|
2720
2872
|
init_solid();
|
|
2721
2873
|
init_web();
|
|
2722
2874
|
isClient = !isServer;
|
|
2723
2875
|
isDev = isClient && !!DEV;
|
|
2876
|
+
noop2 = () => void 0;
|
|
2877
|
+
isNonNullable = (i2) => i2 != null;
|
|
2878
|
+
filterNonNullable = (arr) => arr.filter(isNonNullable);
|
|
2724
2879
|
access = (v) => typeof v === "function" && !v.length ? v() : v;
|
|
2725
2880
|
asArray = (value) => Array.isArray(value) ? value : value ? [value] : [];
|
|
2726
2881
|
tryOnCleanup = isDev ? (fn) => getOwner() ? onCleanup(fn) : fn : onCleanup;
|
|
2727
2882
|
}
|
|
2728
2883
|
});
|
|
2729
2884
|
|
|
2730
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.
|
|
2885
|
+
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.1/node_modules/@solid-primitives/utils/dist/index/index.js
|
|
2731
2886
|
var init_index = __esm({
|
|
2732
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.
|
|
2887
|
+
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.1_solid-js@1.8.1/node_modules/@solid-primitives/utils/dist/index/index.js"() {
|
|
2733
2888
|
init_R5675YMU();
|
|
2734
2889
|
}
|
|
2735
2890
|
});
|
|
2736
2891
|
|
|
2737
|
-
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.
|
|
2892
|
+
// ../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.1/node_modules/@solid-primitives/refs/dist/index.js
|
|
2893
|
+
function mergeRefs(...refs) {
|
|
2894
|
+
return chain(refs);
|
|
2895
|
+
}
|
|
2738
2896
|
function getResolvedElements(value, predicate) {
|
|
2739
2897
|
if (predicate(value))
|
|
2740
2898
|
return value;
|
|
@@ -2764,14 +2922,15 @@ function resolveElements(fn, predicate = defaultElementPredicate, serverPredicat
|
|
|
2764
2922
|
}
|
|
2765
2923
|
var defaultElementPredicate;
|
|
2766
2924
|
var init_dist2 = __esm({
|
|
2767
|
-
"../../node_modules/.pnpm/@solid-primitives+refs@1.0.
|
|
2925
|
+
"../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.8.1/node_modules/@solid-primitives/refs/dist/index.js"() {
|
|
2926
|
+
init_index();
|
|
2768
2927
|
init_solid();
|
|
2769
2928
|
init_web();
|
|
2770
2929
|
defaultElementPredicate = isServer ? (item) => item != null && typeof item === "object" && "t" in item : (item) => item instanceof Element;
|
|
2771
2930
|
}
|
|
2772
2931
|
});
|
|
2773
2932
|
|
|
2774
|
-
// ../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.
|
|
2933
|
+
// ../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.8.1/node_modules/solid-transition-group/dist/index.js
|
|
2775
2934
|
function createClassnames(props) {
|
|
2776
2935
|
return createMemo(() => {
|
|
2777
2936
|
const name = props.name || "s";
|
|
@@ -2847,7 +3006,7 @@ function exitTransition(classnames, events, el, done) {
|
|
|
2847
3006
|
}
|
|
2848
3007
|
var TransitionGroup;
|
|
2849
3008
|
var init_dist3 = __esm({
|
|
2850
|
-
"../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.
|
|
3009
|
+
"../../node_modules/.pnpm/solid-transition-group@0.2.2_solid-js@1.8.1/node_modules/solid-transition-group/dist/index.js"() {
|
|
2851
3010
|
init_solid();
|
|
2852
3011
|
init_dist();
|
|
2853
3012
|
init_dist2();
|
|
@@ -2901,7 +3060,7 @@ var init_dist3 = __esm({
|
|
|
2901
3060
|
}
|
|
2902
3061
|
});
|
|
2903
3062
|
|
|
2904
|
-
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.
|
|
3063
|
+
// ../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.1/node_modules/@solid-primitives/keyed/dist/index.js
|
|
2905
3064
|
function dispose2(list) {
|
|
2906
3065
|
for (const o2 of list)
|
|
2907
3066
|
o2.dispose();
|
|
@@ -2956,11 +3115,11 @@ function keyArray(items, keyFn, mapFn, options = {}) {
|
|
|
2956
3115
|
const item = list[i2];
|
|
2957
3116
|
const key = keyFn(item, i2);
|
|
2958
3117
|
prevKeys.delete(key);
|
|
2959
|
-
const
|
|
2960
|
-
if (
|
|
2961
|
-
result[i2] =
|
|
2962
|
-
|
|
2963
|
-
|
|
3118
|
+
const lookup = prev.get(key);
|
|
3119
|
+
if (lookup) {
|
|
3120
|
+
result[i2] = lookup.mapped;
|
|
3121
|
+
lookup.setIndex?.(i2);
|
|
3122
|
+
lookup.setItem(() => item);
|
|
2964
3123
|
} else
|
|
2965
3124
|
addNewItem(result, item, i2, key);
|
|
2966
3125
|
}
|
|
@@ -2999,64 +3158,14 @@ function Key(props) {
|
|
|
2999
3158
|
}
|
|
3000
3159
|
var FALLBACK2;
|
|
3001
3160
|
var init_dist4 = __esm({
|
|
3002
|
-
"../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.
|
|
3161
|
+
"../../node_modules/.pnpm/@solid-primitives+keyed@1.2.0_solid-js@1.8.1/node_modules/@solid-primitives/keyed/dist/index.js"() {
|
|
3003
3162
|
init_solid();
|
|
3004
3163
|
init_web();
|
|
3005
3164
|
FALLBACK2 = Symbol("fallback");
|
|
3006
3165
|
}
|
|
3007
3166
|
});
|
|
3008
3167
|
|
|
3009
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
3010
|
-
function handleDiffArray2(current, prev, handleAdded, handleRemoved) {
|
|
3011
|
-
const currLength = current.length;
|
|
3012
|
-
const prevLength = prev.length;
|
|
3013
|
-
let i2 = 0;
|
|
3014
|
-
if (!prevLength) {
|
|
3015
|
-
for (; i2 < currLength; i2++)
|
|
3016
|
-
handleAdded(current[i2]);
|
|
3017
|
-
return;
|
|
3018
|
-
}
|
|
3019
|
-
if (!currLength) {
|
|
3020
|
-
for (; i2 < prevLength; i2++)
|
|
3021
|
-
handleRemoved(prev[i2]);
|
|
3022
|
-
return;
|
|
3023
|
-
}
|
|
3024
|
-
for (; i2 < prevLength; i2++) {
|
|
3025
|
-
if (prev[i2] !== current[i2])
|
|
3026
|
-
break;
|
|
3027
|
-
}
|
|
3028
|
-
let prevEl;
|
|
3029
|
-
let currEl;
|
|
3030
|
-
prev = prev.slice(i2);
|
|
3031
|
-
current = current.slice(i2);
|
|
3032
|
-
for (prevEl of prev) {
|
|
3033
|
-
if (!current.includes(prevEl))
|
|
3034
|
-
handleRemoved(prevEl);
|
|
3035
|
-
}
|
|
3036
|
-
for (currEl of current) {
|
|
3037
|
-
if (!prev.includes(currEl))
|
|
3038
|
-
handleAdded(currEl);
|
|
3039
|
-
}
|
|
3040
|
-
}
|
|
3041
|
-
var noop3, isNonNullable2, filterNonNullable2, access2, asArray2;
|
|
3042
|
-
var init_APG4HSEJ = __esm({
|
|
3043
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.0_solid-js@1.7.8/node_modules/@solid-primitives/utils/dist/chunk/APG4HSEJ.js"() {
|
|
3044
|
-
noop3 = () => void 0;
|
|
3045
|
-
isNonNullable2 = (i2) => i2 != null;
|
|
3046
|
-
filterNonNullable2 = (arr) => arr.filter(isNonNullable2);
|
|
3047
|
-
access2 = (v) => typeof v === "function" && !v.length ? v() : v;
|
|
3048
|
-
asArray2 = (value) => Array.isArray(value) ? value : value ? [value] : [];
|
|
3049
|
-
}
|
|
3050
|
-
});
|
|
3051
|
-
|
|
3052
|
-
// ../../node_modules/.pnpm/@solid-primitives+utils@6.2.0_solid-js@1.7.8/node_modules/@solid-primitives/utils/dist/index/index.js
|
|
3053
|
-
var init_index2 = __esm({
|
|
3054
|
-
"../../node_modules/.pnpm/@solid-primitives+utils@6.2.0_solid-js@1.7.8/node_modules/@solid-primitives/utils/dist/index/index.js"() {
|
|
3055
|
-
init_APG4HSEJ();
|
|
3056
|
-
}
|
|
3057
|
-
});
|
|
3058
|
-
|
|
3059
|
-
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.7.8/node_modules/@solid-primitives/storage/dist/index.js
|
|
3168
|
+
// ../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.1/node_modules/@solid-primitives/storage/dist/index.js
|
|
3060
3169
|
function createStorage(props) {
|
|
3061
3170
|
const [error, setError] = createSignal();
|
|
3062
3171
|
const handleError2 = props?.throw ? (err, fallback) => {
|
|
@@ -3201,7 +3310,7 @@ function createStorage(props) {
|
|
|
3201
3310
|
}
|
|
3202
3311
|
var createLocalStorage, addClearMethod, serializeCookieOptions, cookieStorage;
|
|
3203
3312
|
var init_dist5 = __esm({
|
|
3204
|
-
"../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.
|
|
3313
|
+
"../../node_modules/.pnpm/@solid-primitives+storage@1.3.11_solid-js@1.8.1/node_modules/@solid-primitives/storage/dist/index.js"() {
|
|
3205
3314
|
init_solid();
|
|
3206
3315
|
createLocalStorage = createStorage;
|
|
3207
3316
|
addClearMethod = (storage) => {
|
|
@@ -3281,10 +3390,37 @@ var init_dist5 = __esm({
|
|
|
3281
3390
|
}
|
|
3282
3391
|
});
|
|
3283
3392
|
|
|
3284
|
-
// ../../node_modules/.pnpm/@solid-primitives+
|
|
3393
|
+
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.1/node_modules/@solid-primitives/event-listener/dist/index.js
|
|
3394
|
+
function makeEventListener(target, type, handler, options) {
|
|
3395
|
+
target.addEventListener(type, handler, options);
|
|
3396
|
+
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
3397
|
+
}
|
|
3398
|
+
function createEventListener(targets, type, handler, options) {
|
|
3399
|
+
if (isServer)
|
|
3400
|
+
return;
|
|
3401
|
+
const attachListeners = () => {
|
|
3402
|
+
asArray(access(targets)).forEach((el) => {
|
|
3403
|
+
if (el)
|
|
3404
|
+
asArray(access(type)).forEach((type2) => makeEventListener(el, type2, handler, options));
|
|
3405
|
+
});
|
|
3406
|
+
};
|
|
3407
|
+
if (typeof targets === "function")
|
|
3408
|
+
createEffect(attachListeners);
|
|
3409
|
+
else
|
|
3410
|
+
createRenderEffect(attachListeners);
|
|
3411
|
+
}
|
|
3412
|
+
var init_dist6 = __esm({
|
|
3413
|
+
"../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.8.1/node_modules/@solid-primitives/event-listener/dist/index.js"() {
|
|
3414
|
+
init_index();
|
|
3415
|
+
init_solid();
|
|
3416
|
+
init_web();
|
|
3417
|
+
}
|
|
3418
|
+
});
|
|
3419
|
+
|
|
3420
|
+
// ../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.18_solid-js@1.8.1/node_modules/@solid-primitives/resize-observer/dist/index.js
|
|
3285
3421
|
function makeResizeObserver(callback, options) {
|
|
3286
3422
|
if (isServer) {
|
|
3287
|
-
return { observe:
|
|
3423
|
+
return { observe: noop2, unobserve: noop2 };
|
|
3288
3424
|
}
|
|
3289
3425
|
const observer = new ResizeObserver(callback);
|
|
3290
3426
|
onCleanup(observer.disconnect.bind(observer));
|
|
@@ -3296,8 +3432,8 @@ function makeResizeObserver(callback, options) {
|
|
|
3296
3432
|
function createResizeObserver(targets, onResize, options) {
|
|
3297
3433
|
if (isServer)
|
|
3298
3434
|
return;
|
|
3299
|
-
const previousMap = /* @__PURE__ */ new WeakMap(), { observe, unobserve } = makeResizeObserver((
|
|
3300
|
-
for (const entry of
|
|
3435
|
+
const previousMap = /* @__PURE__ */ new WeakMap(), { observe, unobserve } = makeResizeObserver((entries2) => {
|
|
3436
|
+
for (const entry of entries2) {
|
|
3301
3437
|
const { contentRect, target } = entry, width = Math.round(contentRect.width), height = Math.round(contentRect.height), previous = previousMap.get(target);
|
|
3302
3438
|
if (!previous || previous.width !== width || previous.height !== height) {
|
|
3303
3439
|
onResize(contentRect, target, entry);
|
|
@@ -3306,48 +3442,21 @@ function createResizeObserver(targets, onResize, options) {
|
|
|
3306
3442
|
}
|
|
3307
3443
|
}, options);
|
|
3308
3444
|
createEffect((prev) => {
|
|
3309
|
-
const refs =
|
|
3310
|
-
|
|
3445
|
+
const refs = filterNonNullable(asArray(access(targets)));
|
|
3446
|
+
handleDiffArray(refs, prev, observe, unobserve);
|
|
3311
3447
|
return refs;
|
|
3312
3448
|
}, []);
|
|
3313
3449
|
}
|
|
3314
|
-
var init_dist6 = __esm({
|
|
3315
|
-
"../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.18_solid-js@1.7.8/node_modules/@solid-primitives/resize-observer/dist/index.js"() {
|
|
3316
|
-
init_index2();
|
|
3317
|
-
init_solid();
|
|
3318
|
-
init_web();
|
|
3319
|
-
}
|
|
3320
|
-
});
|
|
3321
|
-
|
|
3322
|
-
// ../../node_modules/.pnpm/@solid-primitives+event-listener@2.3.0_solid-js@1.7.8/node_modules/@solid-primitives/event-listener/dist/index.js
|
|
3323
|
-
function makeEventListener(target, type, handler, options) {
|
|
3324
|
-
target.addEventListener(type, handler, options);
|
|
3325
|
-
return tryOnCleanup(target.removeEventListener.bind(target, type, handler, options));
|
|
3326
|
-
}
|
|
3327
|
-
function createEventListener(targets, type, handler, options) {
|
|
3328
|
-
if (isServer)
|
|
3329
|
-
return;
|
|
3330
|
-
const attachListeners = () => {
|
|
3331
|
-
asArray(access(targets)).forEach((el) => {
|
|
3332
|
-
if (el)
|
|
3333
|
-
asArray(access(type)).forEach((type2) => makeEventListener(el, type2, handler, options));
|
|
3334
|
-
});
|
|
3335
|
-
};
|
|
3336
|
-
if (typeof targets === "function")
|
|
3337
|
-
createEffect(attachListeners);
|
|
3338
|
-
else
|
|
3339
|
-
createRenderEffect(attachListeners);
|
|
3340
|
-
}
|
|
3341
3450
|
var init_dist7 = __esm({
|
|
3342
|
-
"../../node_modules/.pnpm/@solid-primitives+
|
|
3451
|
+
"../../node_modules/.pnpm/@solid-primitives+resize-observer@2.0.18_solid-js@1.8.1/node_modules/@solid-primitives/resize-observer/dist/index.js"() {
|
|
3343
3452
|
init_index();
|
|
3344
3453
|
init_solid();
|
|
3345
3454
|
init_web();
|
|
3346
3455
|
}
|
|
3347
3456
|
});
|
|
3348
3457
|
|
|
3349
|
-
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.
|
|
3350
|
-
function
|
|
3458
|
+
// ../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.1/node_modules/@solid-primitives/props/dist/index.js
|
|
3459
|
+
function trueFn3() {
|
|
3351
3460
|
return true;
|
|
3352
3461
|
}
|
|
3353
3462
|
function stringStyleToObject(style2) {
|
|
@@ -3431,7 +3540,7 @@ function combineProps(...args) {
|
|
|
3431
3540
|
}
|
|
3432
3541
|
var propTraps2, extractCSSregex, reduce;
|
|
3433
3542
|
var init_dist8 = __esm({
|
|
3434
|
-
"../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.
|
|
3543
|
+
"../../node_modules/.pnpm/@solid-primitives+props@3.1.8_solid-js@1.8.1/node_modules/@solid-primitives/props/dist/index.js"() {
|
|
3435
3544
|
init_solid();
|
|
3436
3545
|
init_index();
|
|
3437
3546
|
propTraps2 = {
|
|
@@ -3443,8 +3552,8 @@ var init_dist8 = __esm({
|
|
|
3443
3552
|
has(_, property) {
|
|
3444
3553
|
return _.has(property);
|
|
3445
3554
|
},
|
|
3446
|
-
set:
|
|
3447
|
-
deleteProperty:
|
|
3555
|
+
set: trueFn3,
|
|
3556
|
+
deleteProperty: trueFn3,
|
|
3448
3557
|
getOwnPropertyDescriptor(_, property) {
|
|
3449
3558
|
return {
|
|
3450
3559
|
configurable: true,
|
|
@@ -3452,8 +3561,8 @@ var init_dist8 = __esm({
|
|
|
3452
3561
|
get() {
|
|
3453
3562
|
return _.get(property);
|
|
3454
3563
|
},
|
|
3455
|
-
set:
|
|
3456
|
-
deleteProperty:
|
|
3564
|
+
set: trueFn3,
|
|
3565
|
+
deleteProperty: trueFn3
|
|
3457
3566
|
};
|
|
3458
3567
|
},
|
|
3459
3568
|
ownKeys(_) {
|
|
@@ -3475,17 +3584,7 @@ var init_dist8 = __esm({
|
|
|
3475
3584
|
}
|
|
3476
3585
|
});
|
|
3477
3586
|
|
|
3478
|
-
// ../../node_modules/.pnpm/@
|
|
3479
|
-
function mergeRefs(...refs) {
|
|
3480
|
-
return chain(refs);
|
|
3481
|
-
}
|
|
3482
|
-
var init_dist9 = __esm({
|
|
3483
|
-
"../../node_modules/.pnpm/@solid-primitives+refs@1.0.5_solid-js@1.7.8/node_modules/@solid-primitives/refs/dist/index.js"() {
|
|
3484
|
-
init_index();
|
|
3485
|
-
}
|
|
3486
|
-
});
|
|
3487
|
-
|
|
3488
|
-
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.7.8/node_modules/@kobalte/utils/dist/index.js
|
|
3587
|
+
// ../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.1/node_modules/@kobalte/utils/dist/index.js
|
|
3489
3588
|
function addItemToArray(array, item, index = -1) {
|
|
3490
3589
|
if (!(index in array)) {
|
|
3491
3590
|
return [...array, item];
|
|
@@ -3719,7 +3818,7 @@ function getFocusableTreeWalker(root, opts, scope) {
|
|
|
3719
3818
|
}
|
|
3720
3819
|
return walker2;
|
|
3721
3820
|
}
|
|
3722
|
-
function
|
|
3821
|
+
function noop3() {
|
|
3723
3822
|
return;
|
|
3724
3823
|
}
|
|
3725
3824
|
function isPointInPolygon(point, polygon) {
|
|
@@ -3845,12 +3944,12 @@ function relativeOffset(ancestor, child, axis) {
|
|
|
3845
3944
|
return sum;
|
|
3846
3945
|
}
|
|
3847
3946
|
var EventKey, supportsPreventScrollCached, focusableElements, tabbableElements, FOCUSABLE_ELEMENT_SELECTOR, TABBABLE_ELEMENT_SELECTOR, transitionsByElement, transitionCallbacks, visuallyHiddenStyles;
|
|
3848
|
-
var
|
|
3849
|
-
"../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.
|
|
3947
|
+
var init_dist9 = __esm({
|
|
3948
|
+
"../../node_modules/.pnpm/@kobalte+utils@0.9.0_solid-js@1.8.1/node_modules/@kobalte/utils/dist/index.js"() {
|
|
3850
3949
|
init_solid();
|
|
3851
|
-
|
|
3950
|
+
init_dist6();
|
|
3852
3951
|
init_dist8();
|
|
3853
|
-
|
|
3952
|
+
init_dist2();
|
|
3854
3953
|
init_index();
|
|
3855
3954
|
EventKey = /* @__PURE__ */ ((EventKey2) => {
|
|
3856
3955
|
EventKey2["Escape"] = "Escape";
|
|
@@ -3912,7 +4011,7 @@ var init_dist10 = __esm({
|
|
|
3912
4011
|
}
|
|
3913
4012
|
});
|
|
3914
4013
|
|
|
3915
|
-
// ../../node_modules/.pnpm/solid-js@1.
|
|
4014
|
+
// ../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/store/dist/store.js
|
|
3916
4015
|
function wrap$1(value) {
|
|
3917
4016
|
let p2 = value[$PROXY];
|
|
3918
4017
|
if (!p2) {
|
|
@@ -3920,9 +4019,9 @@ function wrap$1(value) {
|
|
|
3920
4019
|
value: p2 = new Proxy(value, proxyTraps$1)
|
|
3921
4020
|
});
|
|
3922
4021
|
if (!Array.isArray(value)) {
|
|
3923
|
-
const
|
|
3924
|
-
for (let i2 = 0, l2 =
|
|
3925
|
-
const prop =
|
|
4022
|
+
const keys2 = Object.keys(value), desc = Object.getOwnPropertyDescriptors(value);
|
|
4023
|
+
for (let i2 = 0, l2 = keys2.length; i2 < l2; i2++) {
|
|
4024
|
+
const prop = keys2[i2];
|
|
3926
4025
|
if (desc[prop].get) {
|
|
3927
4026
|
Object.defineProperty(value, prop, {
|
|
3928
4027
|
enumerable: desc[prop].enumerable,
|
|
@@ -3959,9 +4058,9 @@ function unwrap(item, set = /* @__PURE__ */ new Set()) {
|
|
|
3959
4058
|
item = Object.assign({}, item);
|
|
3960
4059
|
else
|
|
3961
4060
|
set.add(item);
|
|
3962
|
-
const
|
|
3963
|
-
for (let i2 = 0, l2 =
|
|
3964
|
-
prop =
|
|
4061
|
+
const keys2 = Object.keys(item), desc = Object.getOwnPropertyDescriptors(item);
|
|
4062
|
+
for (let i2 = 0, l2 = keys2.length; i2 < l2; i2++) {
|
|
4063
|
+
prop = keys2[i2];
|
|
3965
4064
|
if (desc[prop].get)
|
|
3966
4065
|
continue;
|
|
3967
4066
|
v = item[prop];
|
|
@@ -3971,16 +4070,23 @@ function unwrap(item, set = /* @__PURE__ */ new Set()) {
|
|
|
3971
4070
|
}
|
|
3972
4071
|
return item;
|
|
3973
4072
|
}
|
|
3974
|
-
function
|
|
3975
|
-
let nodes = target[
|
|
4073
|
+
function getNodes(target, symbol) {
|
|
4074
|
+
let nodes = target[symbol];
|
|
3976
4075
|
if (!nodes)
|
|
3977
|
-
Object.defineProperty(target,
|
|
4076
|
+
Object.defineProperty(target, symbol, {
|
|
3978
4077
|
value: nodes = /* @__PURE__ */ Object.create(null)
|
|
3979
4078
|
});
|
|
3980
4079
|
return nodes;
|
|
3981
4080
|
}
|
|
3982
|
-
function
|
|
3983
|
-
|
|
4081
|
+
function getNode(nodes, property, value) {
|
|
4082
|
+
if (nodes[property])
|
|
4083
|
+
return nodes[property];
|
|
4084
|
+
const [s2, set] = createSignal(value, {
|
|
4085
|
+
equals: false,
|
|
4086
|
+
internal: true
|
|
4087
|
+
});
|
|
4088
|
+
s2.$ = set;
|
|
4089
|
+
return nodes[property] = s2;
|
|
3984
4090
|
}
|
|
3985
4091
|
function proxyDescriptor$1(target, property) {
|
|
3986
4092
|
const desc = Reflect.getOwnPropertyDescriptor(target, property);
|
|
@@ -3992,45 +4098,39 @@ function proxyDescriptor$1(target, property) {
|
|
|
3992
4098
|
return desc;
|
|
3993
4099
|
}
|
|
3994
4100
|
function trackSelf(target) {
|
|
3995
|
-
|
|
3996
|
-
const nodes = getDataNodes(target);
|
|
3997
|
-
(nodes._ || (nodes._ = createDataNode()))();
|
|
3998
|
-
}
|
|
4101
|
+
getListener() && getNode(getNodes(target, $NODE), $SELF)();
|
|
3999
4102
|
}
|
|
4000
4103
|
function ownKeys(target) {
|
|
4001
4104
|
trackSelf(target);
|
|
4002
4105
|
return Reflect.ownKeys(target);
|
|
4003
4106
|
}
|
|
4004
|
-
function createDataNode(value) {
|
|
4005
|
-
const [s2, set] = createSignal(value, {
|
|
4006
|
-
equals: false,
|
|
4007
|
-
internal: true
|
|
4008
|
-
});
|
|
4009
|
-
s2.$ = set;
|
|
4010
|
-
return s2;
|
|
4011
|
-
}
|
|
4012
4107
|
function setProperty(state2, property, value, deleting = false) {
|
|
4013
4108
|
if (!deleting && state2[property] === value)
|
|
4014
4109
|
return;
|
|
4015
4110
|
const prev = state2[property], len = state2.length;
|
|
4016
|
-
if (value === void 0)
|
|
4111
|
+
if (value === void 0) {
|
|
4017
4112
|
delete state2[property];
|
|
4018
|
-
|
|
4113
|
+
if (state2[$HAS] && state2[$HAS][property] && prev !== void 0)
|
|
4114
|
+
state2[$HAS][property].$();
|
|
4115
|
+
} else {
|
|
4019
4116
|
state2[property] = value;
|
|
4020
|
-
|
|
4021
|
-
|
|
4117
|
+
if (state2[$HAS] && state2[$HAS][property] && prev === void 0)
|
|
4118
|
+
state2[$HAS][property].$();
|
|
4119
|
+
}
|
|
4120
|
+
let nodes = getNodes(state2, $NODE), node;
|
|
4121
|
+
if (node = getNode(nodes, property, prev))
|
|
4022
4122
|
node.$(() => value);
|
|
4023
4123
|
if (Array.isArray(state2) && state2.length !== len) {
|
|
4024
4124
|
for (let i2 = state2.length; i2 < len; i2++)
|
|
4025
4125
|
(node = nodes[i2]) && node.$();
|
|
4026
|
-
(node =
|
|
4126
|
+
(node = getNode(nodes, "length", len)) && node.$(state2.length);
|
|
4027
4127
|
}
|
|
4028
|
-
(node = nodes
|
|
4128
|
+
(node = nodes[$SELF]) && node.$();
|
|
4029
4129
|
}
|
|
4030
4130
|
function mergeStoreNode(state2, value) {
|
|
4031
|
-
const
|
|
4032
|
-
for (let i2 = 0; i2 <
|
|
4033
|
-
const key =
|
|
4131
|
+
const keys2 = Object.keys(value);
|
|
4132
|
+
for (let i2 = 0; i2 < keys2.length; i2 += 1) {
|
|
4133
|
+
const key = keys2[i2];
|
|
4034
4134
|
setProperty(state2, key, value[key]);
|
|
4035
4135
|
}
|
|
4036
4136
|
}
|
|
@@ -4068,11 +4168,7 @@ function updatePath(current, path, traversed = []) {
|
|
|
4068
4168
|
}
|
|
4069
4169
|
return;
|
|
4070
4170
|
} else if (isArray4 && partType === "object") {
|
|
4071
|
-
const {
|
|
4072
|
-
from = 0,
|
|
4073
|
-
to = current.length - 1,
|
|
4074
|
-
by = 1
|
|
4075
|
-
} = part;
|
|
4171
|
+
const { from = 0, to = current.length - 1, by = 1 } = part;
|
|
4076
4172
|
for (let i2 = from; i2 <= to; i2 += by) {
|
|
4077
4173
|
updatePath(current, [i2].concat(path), traversed);
|
|
4078
4174
|
}
|
|
@@ -4109,12 +4205,14 @@ function createStore(...[store, options]) {
|
|
|
4109
4205
|
}
|
|
4110
4206
|
return [wrappedStore, setStore];
|
|
4111
4207
|
}
|
|
4112
|
-
var $RAW, $NODE, proxyTraps$1;
|
|
4208
|
+
var $RAW, $NODE, $HAS, $SELF, proxyTraps$1;
|
|
4113
4209
|
var init_store = __esm({
|
|
4114
|
-
"../../node_modules/.pnpm/solid-js@1.
|
|
4210
|
+
"../../node_modules/.pnpm/solid-js@1.8.1/node_modules/solid-js/store/dist/store.js"() {
|
|
4115
4211
|
init_solid();
|
|
4116
4212
|
$RAW = Symbol("store-raw");
|
|
4117
4213
|
$NODE = Symbol("store-node");
|
|
4214
|
+
$HAS = Symbol("store-has");
|
|
4215
|
+
$SELF = Symbol("store-self");
|
|
4118
4216
|
proxyTraps$1 = {
|
|
4119
4217
|
get(target, property, receiver) {
|
|
4120
4218
|
if (property === $RAW)
|
|
@@ -4125,22 +4223,22 @@ var init_store = __esm({
|
|
|
4125
4223
|
trackSelf(target);
|
|
4126
4224
|
return receiver;
|
|
4127
4225
|
}
|
|
4128
|
-
const nodes =
|
|
4226
|
+
const nodes = getNodes(target, $NODE);
|
|
4129
4227
|
const tracked = nodes[property];
|
|
4130
4228
|
let value = tracked ? tracked() : target[property];
|
|
4131
|
-
if (property === $NODE || property === "__proto__")
|
|
4229
|
+
if (property === $NODE || property === $HAS || property === "__proto__")
|
|
4132
4230
|
return value;
|
|
4133
4231
|
if (!tracked) {
|
|
4134
4232
|
const desc = Object.getOwnPropertyDescriptor(target, property);
|
|
4135
4233
|
if (getListener() && (typeof value !== "function" || target.hasOwnProperty(property)) && !(desc && desc.get))
|
|
4136
|
-
value =
|
|
4234
|
+
value = getNode(nodes, property, value)();
|
|
4137
4235
|
}
|
|
4138
4236
|
return isWrappable(value) ? wrap$1(value) : value;
|
|
4139
4237
|
},
|
|
4140
4238
|
has(target, property) {
|
|
4141
|
-
if (property === $RAW || property === $PROXY || property === $TRACK || property === $NODE || property === "__proto__")
|
|
4239
|
+
if (property === $RAW || property === $PROXY || property === $TRACK || property === $NODE || property === $HAS || property === "__proto__")
|
|
4142
4240
|
return true;
|
|
4143
|
-
|
|
4241
|
+
getListener() && getNode(getNodes(target, $HAS), property)();
|
|
4144
4242
|
return property in target;
|
|
4145
4243
|
},
|
|
4146
4244
|
set() {
|
|
@@ -4198,8 +4296,8 @@ var init_import = __esm({
|
|
|
4198
4296
|
}
|
|
4199
4297
|
});
|
|
4200
4298
|
|
|
4201
|
-
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
4202
|
-
function
|
|
4299
|
+
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs
|
|
4300
|
+
function clamp2(start, value, end) {
|
|
4203
4301
|
return max(start, min(value, end));
|
|
4204
4302
|
}
|
|
4205
4303
|
function evaluate(value, param) {
|
|
@@ -4303,7 +4401,7 @@ function rectToClientRect(rect) {
|
|
|
4303
4401
|
}
|
|
4304
4402
|
var sides, min, max, round, floor, createCoords, oppositeSideMap, oppositeAlignmentMap;
|
|
4305
4403
|
var init_floating_ui_utils = __esm({
|
|
4306
|
-
"../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
4404
|
+
"../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dist/floating-ui.utils.mjs"() {
|
|
4307
4405
|
sides = ["top", "right", "bottom", "left"];
|
|
4308
4406
|
min = Math.min;
|
|
4309
4407
|
max = Math.max;
|
|
@@ -4620,7 +4718,7 @@ var init_floating_ui_core = __esm({
|
|
|
4620
4718
|
const min$1 = minPadding;
|
|
4621
4719
|
const max2 = clientSize - arrowDimensions[length] - maxPadding;
|
|
4622
4720
|
const center = clientSize / 2 - arrowDimensions[length] / 2 + centerToReference;
|
|
4623
|
-
const offset2 =
|
|
4721
|
+
const offset2 = clamp2(min$1, center, max2);
|
|
4624
4722
|
const shouldAddOffset = !middlewareData.arrow && getAlignment(placement) != null && center != offset2 && rects.reference[length] / 2 - (center < min$1 ? minPadding : maxPadding) - arrowDimensions[length] / 2 < 0;
|
|
4625
4723
|
const alignmentOffset = shouldAddOffset ? center < min$1 ? center - min$1 : center - max2 : 0;
|
|
4626
4724
|
return {
|
|
@@ -4844,14 +4942,14 @@ var init_floating_ui_core = __esm({
|
|
|
4844
4942
|
const maxSide = mainAxis === "y" ? "bottom" : "right";
|
|
4845
4943
|
const min2 = mainAxisCoord + overflow[minSide];
|
|
4846
4944
|
const max2 = mainAxisCoord - overflow[maxSide];
|
|
4847
|
-
mainAxisCoord =
|
|
4945
|
+
mainAxisCoord = clamp2(min2, mainAxisCoord, max2);
|
|
4848
4946
|
}
|
|
4849
4947
|
if (checkCrossAxis) {
|
|
4850
4948
|
const minSide = crossAxis === "y" ? "top" : "left";
|
|
4851
4949
|
const maxSide = crossAxis === "y" ? "bottom" : "right";
|
|
4852
4950
|
const min2 = crossAxisCoord + overflow[minSide];
|
|
4853
4951
|
const max2 = crossAxisCoord - overflow[maxSide];
|
|
4854
|
-
crossAxisCoord =
|
|
4952
|
+
crossAxisCoord = clamp2(min2, crossAxisCoord, max2);
|
|
4855
4953
|
}
|
|
4856
4954
|
const limitedCoords = limiter.fn({
|
|
4857
4955
|
...state2,
|
|
@@ -4947,7 +5045,7 @@ var init_floating_ui_core = __esm({
|
|
|
4947
5045
|
}
|
|
4948
5046
|
});
|
|
4949
5047
|
|
|
4950
|
-
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
5048
|
+
// ../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dom/dist/floating-ui.utils.dom.mjs
|
|
4951
5049
|
function getNodeName(node) {
|
|
4952
5050
|
if (isNode(node)) {
|
|
4953
5051
|
return (node.nodeName || "").toLowerCase();
|
|
@@ -5068,7 +5166,7 @@ function getOverflowAncestors(node, list, traverseIframes) {
|
|
|
5068
5166
|
return list.concat(scrollableAncestor, getOverflowAncestors(scrollableAncestor, [], traverseIframes));
|
|
5069
5167
|
}
|
|
5070
5168
|
var init_floating_ui_utils_dom = __esm({
|
|
5071
|
-
"../../node_modules/.pnpm/@floating-ui+utils@0.1.
|
|
5169
|
+
"../../node_modules/.pnpm/@floating-ui+utils@0.1.6/node_modules/@floating-ui/utils/dom/dist/floating-ui.utils.dom.mjs"() {
|
|
5072
5170
|
}
|
|
5073
5171
|
});
|
|
5074
5172
|
|
|
@@ -5459,8 +5557,8 @@ function observeMove(element, onMove) {
|
|
|
5459
5557
|
threshold: max(0, min(1, threshold)) || 1
|
|
5460
5558
|
};
|
|
5461
5559
|
let isFirstUpdate = true;
|
|
5462
|
-
function handleObserve(
|
|
5463
|
-
const ratio =
|
|
5560
|
+
function handleObserve(entries2) {
|
|
5561
|
+
const ratio = entries2[0].intersectionRatio;
|
|
5464
5562
|
if (ratio !== threshold) {
|
|
5465
5563
|
if (!isFirstUpdate) {
|
|
5466
5564
|
return refresh();
|
|
@@ -6149,7 +6247,7 @@ function ariaHideOutside(targets, root = document.body) {
|
|
|
6149
6247
|
}
|
|
6150
6248
|
function createInteractOutside(props, ref) {
|
|
6151
6249
|
let pointerDownTimeoutId;
|
|
6152
|
-
let clickHandler =
|
|
6250
|
+
let clickHandler = noop3;
|
|
6153
6251
|
const ownerDocument = () => getDocument(ref());
|
|
6154
6252
|
const onPointerDownOutside = (e2) => props.onPointerDownOutside?.(e2);
|
|
6155
6253
|
const onFocusOutside = (e2) => props.onFocusOutside?.(e2);
|
|
@@ -6645,9 +6743,9 @@ function createMultipleSelectionState(props) {
|
|
|
6645
6743
|
const [selectionBehavior, setSelectionBehavior] = createSignal(access(props.selectionBehavior));
|
|
6646
6744
|
const selectionMode = () => access(props.selectionMode);
|
|
6647
6745
|
const disallowEmptySelection = () => access(props.disallowEmptySelection) ?? false;
|
|
6648
|
-
const setSelectedKeys = (
|
|
6649
|
-
if (access(props.allowDuplicateSelectionEvents) || !isSameSelection(
|
|
6650
|
-
_setSelectedKeys(
|
|
6746
|
+
const setSelectedKeys = (keys2) => {
|
|
6747
|
+
if (access(props.allowDuplicateSelectionEvents) || !isSameSelection(keys2, selectedKeys())) {
|
|
6748
|
+
_setSelectedKeys(keys2);
|
|
6651
6749
|
}
|
|
6652
6750
|
};
|
|
6653
6751
|
createEffect(() => {
|
|
@@ -8956,8 +9054,8 @@ function DropdownMenuRoot(props) {
|
|
|
8956
9054
|
}
|
|
8957
9055
|
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, AS_COMPONENT_SYMBOL, RTL_SCRIPTS, RTL_LANGS, currentLocale, listeners, I18nContext, cache$1, Selection, SelectionManager, ListCollection, ListKeyboardDelegate, BUTTON_INPUT_TYPES, DomCollectionContext, DismissableLayerContext, PopperContext, _tmpl$$e, DEFAULT_SIZE, HALF_DEFAULT_SIZE, ROTATION_DEG, REVERSE_BASE_PLACEMENT, MenuContext, MenuRootContext, MenuItemContext, MenuGroupContext, MenuRadioGroupContext, SUB_CLOSE_KEYS, SELECTION_KEYS, SUB_OPEN_KEYS, index$d;
|
|
8958
9056
|
var init_esm = __esm({
|
|
8959
|
-
"../../node_modules/.pnpm/@kobalte+core@0.11.0_solid-js@1.
|
|
8960
|
-
|
|
9057
|
+
"../../node_modules/.pnpm/@kobalte+core@0.11.0_solid-js@1.8.1/node_modules/@kobalte/core/dist/esm/index.js"() {
|
|
9058
|
+
init_dist9();
|
|
8961
9059
|
init_store();
|
|
8962
9060
|
init_web();
|
|
8963
9061
|
init_solid();
|
|
@@ -9017,11 +9115,11 @@ var init_esm = __esm({
|
|
|
9017
9115
|
I18nContext = createContext();
|
|
9018
9116
|
cache$1 = /* @__PURE__ */ new Map();
|
|
9019
9117
|
Selection = class _Selection extends Set {
|
|
9020
|
-
constructor(
|
|
9021
|
-
super(
|
|
9022
|
-
if (
|
|
9023
|
-
this.anchorKey = anchorKey ||
|
|
9024
|
-
this.currentKey = currentKey ||
|
|
9118
|
+
constructor(keys2, anchorKey, currentKey) {
|
|
9119
|
+
super(keys2);
|
|
9120
|
+
if (keys2 instanceof _Selection) {
|
|
9121
|
+
this.anchorKey = anchorKey || keys2.anchorKey;
|
|
9122
|
+
this.currentKey = currentKey || keys2.currentKey;
|
|
9025
9123
|
} else {
|
|
9026
9124
|
this.anchorKey = anchorKey;
|
|
9027
9125
|
this.currentKey = currentKey;
|
|
@@ -9154,15 +9252,15 @@ var init_esm = __esm({
|
|
|
9154
9252
|
return [];
|
|
9155
9253
|
}
|
|
9156
9254
|
getKeyRangeInternal(from, to) {
|
|
9157
|
-
const
|
|
9255
|
+
const keys2 = [];
|
|
9158
9256
|
let key = from;
|
|
9159
9257
|
while (key != null) {
|
|
9160
9258
|
const item = this.collection().getItem(key);
|
|
9161
9259
|
if (item && item.type === "item") {
|
|
9162
|
-
|
|
9260
|
+
keys2.push(key);
|
|
9163
9261
|
}
|
|
9164
9262
|
if (key === to) {
|
|
9165
|
-
return
|
|
9263
|
+
return keys2;
|
|
9166
9264
|
}
|
|
9167
9265
|
key = this.collection().getKeyAfter(key);
|
|
9168
9266
|
}
|
|
@@ -9191,18 +9289,18 @@ var init_esm = __esm({
|
|
|
9191
9289
|
if (retrievedKey == null) {
|
|
9192
9290
|
return;
|
|
9193
9291
|
}
|
|
9194
|
-
const
|
|
9195
|
-
if (
|
|
9196
|
-
|
|
9292
|
+
const keys2 = new Selection(this.state.selectedKeys());
|
|
9293
|
+
if (keys2.has(retrievedKey)) {
|
|
9294
|
+
keys2.delete(retrievedKey);
|
|
9197
9295
|
} else if (this.canSelectItem(retrievedKey)) {
|
|
9198
|
-
|
|
9199
|
-
|
|
9200
|
-
|
|
9296
|
+
keys2.add(retrievedKey);
|
|
9297
|
+
keys2.anchorKey = retrievedKey;
|
|
9298
|
+
keys2.currentKey = retrievedKey;
|
|
9201
9299
|
}
|
|
9202
|
-
if (this.disallowEmptySelection() &&
|
|
9300
|
+
if (this.disallowEmptySelection() && keys2.size === 0) {
|
|
9203
9301
|
return;
|
|
9204
9302
|
}
|
|
9205
|
-
this.state.setSelectedKeys(
|
|
9303
|
+
this.state.setSelectedKeys(keys2);
|
|
9206
9304
|
}
|
|
9207
9305
|
/** Replaces the selection with only the given key. */
|
|
9208
9306
|
replaceSelection(key) {
|
|
@@ -9217,12 +9315,12 @@ var init_esm = __esm({
|
|
|
9217
9315
|
this.state.setSelectedKeys(selection);
|
|
9218
9316
|
}
|
|
9219
9317
|
/** Replaces the selection with the given keys. */
|
|
9220
|
-
setSelectedKeys(
|
|
9318
|
+
setSelectedKeys(keys2) {
|
|
9221
9319
|
if (this.selectionMode() === "none") {
|
|
9222
9320
|
return;
|
|
9223
9321
|
}
|
|
9224
9322
|
const selection = new Selection();
|
|
9225
|
-
for (const key of
|
|
9323
|
+
for (const key of keys2) {
|
|
9226
9324
|
const retrievedKey = this.getKey(key);
|
|
9227
9325
|
if (retrievedKey != null) {
|
|
9228
9326
|
selection.add(retrievedKey);
|
|
@@ -9307,7 +9405,7 @@ var init_esm = __esm({
|
|
|
9307
9405
|
return !item || item.disabled;
|
|
9308
9406
|
}
|
|
9309
9407
|
getAllSelectableKeys() {
|
|
9310
|
-
const
|
|
9408
|
+
const keys2 = [];
|
|
9311
9409
|
const addKeys = (key) => {
|
|
9312
9410
|
while (key != null) {
|
|
9313
9411
|
if (this.canSelectItem(key)) {
|
|
@@ -9316,14 +9414,14 @@ var init_esm = __esm({
|
|
|
9316
9414
|
continue;
|
|
9317
9415
|
}
|
|
9318
9416
|
if (item.type === "item") {
|
|
9319
|
-
|
|
9417
|
+
keys2.push(key);
|
|
9320
9418
|
}
|
|
9321
9419
|
}
|
|
9322
9420
|
key = this.collection().getKeyAfter(key);
|
|
9323
9421
|
}
|
|
9324
9422
|
};
|
|
9325
9423
|
addKeys(this.collection().getFirstKey());
|
|
9326
|
-
return
|
|
9424
|
+
return keys2;
|
|
9327
9425
|
}
|
|
9328
9426
|
};
|
|
9329
9427
|
ListCollection = class {
|
|
@@ -9379,8 +9477,8 @@ var init_esm = __esm({
|
|
|
9379
9477
|
return this.keyMap.get(key);
|
|
9380
9478
|
}
|
|
9381
9479
|
at(idx) {
|
|
9382
|
-
const
|
|
9383
|
-
return this.getItem(
|
|
9480
|
+
const keys2 = [...this.getKeys()];
|
|
9481
|
+
return this.getItem(keys2[idx]);
|
|
9384
9482
|
}
|
|
9385
9483
|
};
|
|
9386
9484
|
ListKeyboardDelegate = class {
|
|
@@ -10859,12 +10957,12 @@ var init_accessDeep = __esm({
|
|
|
10859
10957
|
init_is();
|
|
10860
10958
|
init_util();
|
|
10861
10959
|
getNthKey = function(value, n2) {
|
|
10862
|
-
var
|
|
10960
|
+
var keys2 = value.keys();
|
|
10863
10961
|
while (n2 > 0) {
|
|
10864
|
-
|
|
10962
|
+
keys2.next();
|
|
10865
10963
|
n2--;
|
|
10866
10964
|
}
|
|
10867
|
-
return
|
|
10965
|
+
return keys2.next().value;
|
|
10868
10966
|
};
|
|
10869
10967
|
getDeep = function(object, path) {
|
|
10870
10968
|
validatePath(path);
|
|
@@ -11165,12 +11263,12 @@ function isPlainObject2(payload) {
|
|
|
11165
11263
|
function isArray3(payload) {
|
|
11166
11264
|
return getType2(payload) === "Array";
|
|
11167
11265
|
}
|
|
11168
|
-
var
|
|
11266
|
+
var init_dist10 = __esm({
|
|
11169
11267
|
"../../node_modules/.pnpm/is-what@4.1.15/node_modules/is-what/dist/index.js"() {
|
|
11170
11268
|
}
|
|
11171
11269
|
});
|
|
11172
11270
|
|
|
11173
|
-
// ../../node_modules/.pnpm/copy-anything@3.0.
|
|
11271
|
+
// ../../node_modules/.pnpm/copy-anything@3.0.5/node_modules/copy-anything/dist/index.js
|
|
11174
11272
|
function assignProp2(carry, key, newVal, originalObject, includeNonenumerable) {
|
|
11175
11273
|
const propType = {}.propertyIsEnumerable.call(originalObject, key) ? "enumerable" : "nonenumerable";
|
|
11176
11274
|
if (propType === "enumerable")
|
|
@@ -11203,9 +11301,9 @@ function copy(target, options = {}) {
|
|
|
11203
11301
|
return carry;
|
|
11204
11302
|
}, {});
|
|
11205
11303
|
}
|
|
11206
|
-
var
|
|
11207
|
-
"../../node_modules/.pnpm/copy-anything@3.0.
|
|
11208
|
-
|
|
11304
|
+
var init_dist11 = __esm({
|
|
11305
|
+
"../../node_modules/.pnpm/copy-anything@3.0.5/node_modules/copy-anything/dist/index.js"() {
|
|
11306
|
+
init_dist10();
|
|
11209
11307
|
}
|
|
11210
11308
|
});
|
|
11211
11309
|
|
|
@@ -11217,7 +11315,7 @@ var init_esm2 = __esm({
|
|
|
11217
11315
|
init_registry();
|
|
11218
11316
|
init_custom_transformer_registry();
|
|
11219
11317
|
init_plainer();
|
|
11220
|
-
|
|
11318
|
+
init_dist11();
|
|
11221
11319
|
__assign2 = function() {
|
|
11222
11320
|
__assign2 = Object.assign || function(t2) {
|
|
11223
11321
|
for (var s2, i2 = 1, n2 = arguments.length; i2 < n2; i2++) {
|
|
@@ -11565,7 +11663,89 @@ function Check(props) {
|
|
|
11565
11663
|
})];
|
|
11566
11664
|
}
|
|
11567
11665
|
function TanstackLogo() {
|
|
11568
|
-
|
|
11666
|
+
const id = createUniqueId();
|
|
11667
|
+
return (() => {
|
|
11668
|
+
const _el$23 = _tmpl$17(), _el$24 = _el$23.firstChild, _el$25 = _el$24.nextSibling, _el$26 = _el$25.nextSibling, _el$27 = _el$26.firstChild, _el$28 = _el$26.nextSibling, _el$29 = _el$28.firstChild, _el$30 = _el$28.nextSibling, _el$31 = _el$30.nextSibling, _el$32 = _el$31.firstChild, _el$33 = _el$31.nextSibling, _el$34 = _el$33.firstChild, _el$35 = _el$33.nextSibling, _el$36 = _el$35.nextSibling, _el$37 = _el$36.firstChild, _el$38 = _el$36.nextSibling, _el$39 = _el$38.firstChild, _el$40 = _el$38.nextSibling, _el$41 = _el$40.nextSibling, _el$42 = _el$41.firstChild, _el$43 = _el$41.nextSibling, _el$44 = _el$43.firstChild, _el$45 = _el$43.nextSibling, _el$46 = _el$45.nextSibling, _el$47 = _el$46.firstChild, _el$48 = _el$46.nextSibling, _el$49 = _el$48.firstChild, _el$50 = _el$48.nextSibling, _el$51 = _el$50.nextSibling, _el$52 = _el$51.firstChild, _el$53 = _el$51.nextSibling, _el$54 = _el$53.firstChild, _el$55 = _el$53.nextSibling, _el$56 = _el$55.nextSibling, _el$57 = _el$56.firstChild, _el$58 = _el$56.nextSibling, _el$59 = _el$58.firstChild, _el$60 = _el$58.nextSibling, _el$61 = _el$60.firstChild, _el$62 = _el$61.nextSibling, _el$63 = _el$62.nextSibling, _el$64 = _el$63.nextSibling, _el$65 = _el$64.nextSibling, _el$66 = _el$60.nextSibling, _el$67 = _el$66.firstChild, _el$68 = _el$66.nextSibling, _el$69 = _el$68.firstChild, _el$70 = _el$68.nextSibling, _el$71 = _el$70.firstChild, _el$72 = _el$71.nextSibling, _el$73 = _el$72.nextSibling, _el$74 = _el$73.firstChild, _el$75 = _el$74.nextSibling, _el$76 = _el$75.nextSibling, _el$77 = _el$76.nextSibling, _el$78 = _el$77.nextSibling, _el$79 = _el$78.nextSibling, _el$80 = _el$79.nextSibling, _el$81 = _el$80.nextSibling, _el$82 = _el$81.nextSibling, _el$83 = _el$82.nextSibling, _el$84 = _el$83.nextSibling, _el$85 = _el$84.nextSibling, _el$86 = _el$70.nextSibling, _el$87 = _el$86.firstChild, _el$88 = _el$86.nextSibling, _el$89 = _el$88.firstChild, _el$90 = _el$88.nextSibling, _el$91 = _el$90.firstChild, _el$92 = _el$91.nextSibling, _el$93 = _el$90.nextSibling, _el$94 = _el$93.firstChild, _el$95 = _el$93.nextSibling, _el$96 = _el$95.firstChild, _el$97 = _el$95.nextSibling, _el$98 = _el$97.firstChild, _el$99 = _el$98.nextSibling, _el$100 = _el$99.nextSibling, _el$101 = _el$100.nextSibling, _el$102 = _el$101.nextSibling, _el$103 = _el$102.nextSibling, _el$104 = _el$103.nextSibling, _el$105 = _el$104.nextSibling, _el$106 = _el$105.nextSibling, _el$107 = _el$106.nextSibling, _el$108 = _el$107.nextSibling, _el$109 = _el$108.nextSibling, _el$110 = _el$109.nextSibling, _el$111 = _el$110.nextSibling, _el$112 = _el$111.nextSibling, _el$113 = _el$112.nextSibling, _el$114 = _el$113.nextSibling, _el$115 = _el$114.nextSibling;
|
|
11669
|
+
setAttribute(_el$24, "id", `a-${id}`);
|
|
11670
|
+
setAttribute(_el$25, "fill", `url(#a-${id})`);
|
|
11671
|
+
setAttribute(_el$27, "id", `am-${id}`);
|
|
11672
|
+
setAttribute(_el$28, "id", `b-${id}`);
|
|
11673
|
+
setAttribute(_el$29, "filter", `url(#am-${id})`);
|
|
11674
|
+
setAttribute(_el$30, "mask", `url(#b-${id})`);
|
|
11675
|
+
setAttribute(_el$32, "id", `ah-${id}`);
|
|
11676
|
+
setAttribute(_el$33, "id", `k-${id}`);
|
|
11677
|
+
setAttribute(_el$34, "filter", `url(#ah-${id})`);
|
|
11678
|
+
setAttribute(_el$35, "mask", `url(#k-${id})`);
|
|
11679
|
+
setAttribute(_el$37, "id", `ae-${id}`);
|
|
11680
|
+
setAttribute(_el$38, "id", `j-${id}`);
|
|
11681
|
+
setAttribute(_el$39, "filter", `url(#ae-${id})`);
|
|
11682
|
+
setAttribute(_el$40, "mask", `url(#j-${id})`);
|
|
11683
|
+
setAttribute(_el$42, "id", `ai-${id}`);
|
|
11684
|
+
setAttribute(_el$43, "id", `i-${id}`);
|
|
11685
|
+
setAttribute(_el$44, "filter", `url(#ai-${id})`);
|
|
11686
|
+
setAttribute(_el$45, "mask", `url(#i-${id})`);
|
|
11687
|
+
setAttribute(_el$47, "id", `aj-${id}`);
|
|
11688
|
+
setAttribute(_el$48, "id", `h-${id}`);
|
|
11689
|
+
setAttribute(_el$49, "filter", `url(#aj-${id})`);
|
|
11690
|
+
setAttribute(_el$50, "mask", `url(#h-${id})`);
|
|
11691
|
+
setAttribute(_el$52, "id", `ag-${id}`);
|
|
11692
|
+
setAttribute(_el$53, "id", `g-${id}`);
|
|
11693
|
+
setAttribute(_el$54, "filter", `url(#ag-${id})`);
|
|
11694
|
+
setAttribute(_el$55, "mask", `url(#g-${id})`);
|
|
11695
|
+
setAttribute(_el$57, "id", `af-${id}`);
|
|
11696
|
+
setAttribute(_el$58, "id", `f-${id}`);
|
|
11697
|
+
setAttribute(_el$59, "filter", `url(#af-${id})`);
|
|
11698
|
+
setAttribute(_el$60, "mask", `url(#f-${id})`);
|
|
11699
|
+
setAttribute(_el$64, "id", `m-${id}`);
|
|
11700
|
+
setAttribute(_el$65, "fill", `url(#m-${id})`);
|
|
11701
|
+
setAttribute(_el$67, "id", `ak-${id}`);
|
|
11702
|
+
setAttribute(_el$68, "id", `e-${id}`);
|
|
11703
|
+
setAttribute(_el$69, "filter", `url(#ak-${id})`);
|
|
11704
|
+
setAttribute(_el$70, "mask", `url(#e-${id})`);
|
|
11705
|
+
setAttribute(_el$71, "id", `n-${id}`);
|
|
11706
|
+
setAttribute(_el$72, "fill", `url(#n-${id})`);
|
|
11707
|
+
setAttribute(_el$74, "id", `r-${id}`);
|
|
11708
|
+
setAttribute(_el$75, "fill", `url(#r-${id})`);
|
|
11709
|
+
setAttribute(_el$76, "id", `s-${id}`);
|
|
11710
|
+
setAttribute(_el$77, "fill", `url(#s-${id})`);
|
|
11711
|
+
setAttribute(_el$78, "id", `q-${id}`);
|
|
11712
|
+
setAttribute(_el$79, "fill", `url(#q-${id})`);
|
|
11713
|
+
setAttribute(_el$80, "id", `p-${id}`);
|
|
11714
|
+
setAttribute(_el$81, "fill", `url(#p-${id})`);
|
|
11715
|
+
setAttribute(_el$82, "id", `o-${id}`);
|
|
11716
|
+
setAttribute(_el$83, "fill", `url(#o-${id})`);
|
|
11717
|
+
setAttribute(_el$84, "id", `l-${id}`);
|
|
11718
|
+
setAttribute(_el$85, "fill", `url(#l-${id})`);
|
|
11719
|
+
setAttribute(_el$87, "id", `al-${id}`);
|
|
11720
|
+
setAttribute(_el$88, "id", `d-${id}`);
|
|
11721
|
+
setAttribute(_el$89, "filter", `url(#al-${id})`);
|
|
11722
|
+
setAttribute(_el$90, "mask", `url(#d-${id})`);
|
|
11723
|
+
setAttribute(_el$91, "id", `u-${id}`);
|
|
11724
|
+
setAttribute(_el$92, "fill", `url(#u-${id})`);
|
|
11725
|
+
setAttribute(_el$94, "id", `ad-${id}`);
|
|
11726
|
+
setAttribute(_el$95, "id", `c-${id}`);
|
|
11727
|
+
setAttribute(_el$96, "filter", `url(#ad-${id})`);
|
|
11728
|
+
setAttribute(_el$97, "mask", `url(#c-${id})`);
|
|
11729
|
+
setAttribute(_el$98, "id", `t-${id}`);
|
|
11730
|
+
setAttribute(_el$99, "fill", `url(#t-${id})`);
|
|
11731
|
+
setAttribute(_el$100, "id", `v-${id}`);
|
|
11732
|
+
setAttribute(_el$101, "stroke", `url(#v-${id})`);
|
|
11733
|
+
setAttribute(_el$102, "id", `aa-${id}`);
|
|
11734
|
+
setAttribute(_el$103, "stroke", `url(#aa-${id})`);
|
|
11735
|
+
setAttribute(_el$104, "id", `w-${id}`);
|
|
11736
|
+
setAttribute(_el$105, "stroke", `url(#w-${id})`);
|
|
11737
|
+
setAttribute(_el$106, "id", `ac-${id}`);
|
|
11738
|
+
setAttribute(_el$107, "stroke", `url(#ac-${id})`);
|
|
11739
|
+
setAttribute(_el$108, "id", `ab-${id}`);
|
|
11740
|
+
setAttribute(_el$109, "stroke", `url(#ab-${id})`);
|
|
11741
|
+
setAttribute(_el$110, "id", `y-${id}`);
|
|
11742
|
+
setAttribute(_el$111, "stroke", `url(#y-${id})`);
|
|
11743
|
+
setAttribute(_el$112, "id", `x-${id}`);
|
|
11744
|
+
setAttribute(_el$113, "stroke", `url(#x-${id})`);
|
|
11745
|
+
setAttribute(_el$114, "id", `z-${id}`);
|
|
11746
|
+
setAttribute(_el$115, "stroke", `url(#z-${id})`);
|
|
11747
|
+
return _el$23;
|
|
11748
|
+
})();
|
|
11569
11749
|
}
|
|
11570
11750
|
var _tmpl$, _tmpl$2, _tmpl$3, _tmpl$4, _tmpl$5, _tmpl$6, _tmpl$7, _tmpl$8, _tmpl$9, _tmpl$10, _tmpl$11, _tmpl$12, _tmpl$13, _tmpl$14, _tmpl$15, _tmpl$16, _tmpl$17;
|
|
11571
11751
|
var init_icons = __esm({
|
|
@@ -11575,23 +11755,23 @@ var init_icons = __esm({
|
|
|
11575
11755
|
init_web();
|
|
11576
11756
|
init_web();
|
|
11577
11757
|
init_solid();
|
|
11578
|
-
_tmpl$ = /* @__PURE__ */ template(`<svg width=
|
|
11579
|
-
_tmpl$2 = /* @__PURE__ */ template(`<svg width=
|
|
11580
|
-
_tmpl$3 = /* @__PURE__ */ template(`<svg width=
|
|
11581
|
-
_tmpl$4 = /* @__PURE__ */ template(`<svg width=
|
|
11582
|
-
_tmpl$5 = /* @__PURE__ */ template(`<svg width=
|
|
11583
|
-
_tmpl$6 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
11584
|
-
_tmpl$7 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
11585
|
-
_tmpl$8 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
11586
|
-
_tmpl$9 = /* @__PURE__ */ template(`<svg stroke=
|
|
11587
|
-
_tmpl$10 = /* @__PURE__ */ template(`<svg stroke-width=
|
|
11588
|
-
_tmpl$11 = /* @__PURE__ */ template(`<svg width=
|
|
11589
|
-
_tmpl$12 = /* @__PURE__ */ template(`<svg width=
|
|
11590
|
-
_tmpl$13 = /* @__PURE__ */ template(`<svg width=
|
|
11591
|
-
_tmpl$14 = /* @__PURE__ */ template(`<svg width=
|
|
11592
|
-
_tmpl$15 = /* @__PURE__ */ template(`<svg width=
|
|
11593
|
-
_tmpl$16 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"
|
|
11594
|
-
_tmpl$17 = /* @__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">`);
|
|
11758
|
+
_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=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
11759
|
+
_tmpl$2 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none xmlns=http://www.w3.org/2000/svg><path d="M9 3H15M3 6H21M19 6L18.2987 16.5193C18.1935 18.0975 18.1409 18.8867 17.8 19.485C17.4999 20.0118 17.0472 20.4353 16.5017 20.6997C15.882 21 15.0911 21 13.5093 21H10.4907C8.90891 21 8.11803 21 7.49834 20.6997C6.95276 20.4353 6.50009 20.0118 6.19998 19.485C5.85911 18.8867 5.8065 18.0975 5.70129 16.5193L5 6M10 10.5V15.5M14 10.5V15.5"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
11760
|
+
_tmpl$3 = /* @__PURE__ */ template(`<svg width=10 height=6 viewBox="0 0 10 6"fill=none xmlns=http://www.w3.org/2000/svg><path d="M1 1L5 5L9 1"stroke=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
11761
|
+
_tmpl$4 = /* @__PURE__ */ template(`<svg width=12 height=12 viewBox="0 0 16 16"fill=none xmlns=http://www.w3.org/2000/svg><path d="M8 13.3333V2.66667M8 2.66667L4 6.66667M8 2.66667L12 6.66667"stroke=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
11762
|
+
_tmpl$5 = /* @__PURE__ */ template(`<svg width=12 height=12 viewBox="0 0 16 16"fill=none xmlns=http://www.w3.org/2000/svg><path d="M8 2.66667V13.3333M8 13.3333L4 9.33333M8 13.3333L12 9.33333"stroke=currentColor stroke-width=1.66667 stroke-linecap=round stroke-linejoin=round>`);
|
|
11763
|
+
_tmpl$6 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=12 width=12 fill=none xmlns=http://www.w3.org/2000/svg><path d="M12 2v2m0 16v2M4 12H2m4.314-5.686L4.9 4.9m12.786 1.414L19.1 4.9M6.314 17.69 4.9 19.104m12.786-1.414 1.414 1.414M22 12h-2m-3 0a5 5 0 1 1-10 0 5 5 0 0 1 10 0Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
11764
|
+
_tmpl$7 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=12 width=12 fill=none xmlns=http://www.w3.org/2000/svg><path d="M22 15.844a10.424 10.424 0 0 1-4.306.925c-5.779 0-10.463-4.684-10.463-10.462 0-1.536.33-2.994.925-4.307A10.464 10.464 0 0 0 2 11.538C2 17.316 6.684 22 12.462 22c4.243 0 7.896-2.526 9.538-6.156Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
11765
|
+
_tmpl$8 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=12 width=12 fill=none xmlns=http://www.w3.org/2000/svg><path d="M8 21h8m-4-4v4m-5.2-4h10.4c1.68 0 2.52 0 3.162-.327a3 3 0 0 0 1.311-1.311C22 14.72 22 13.88 22 12.2V7.8c0-1.68 0-2.52-.327-3.162a3 3 0 0 0-1.311-1.311C19.72 3 18.88 3 17.2 3H6.8c-1.68 0-2.52 0-3.162.327a3 3 0 0 0-1.311 1.311C2 5.28 2 6.12 2 7.8v4.4c0 1.68 0 2.52.327 3.162a3 3 0 0 0 1.311 1.311C4.28 17 5.12 17 6.8 17Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
11766
|
+
_tmpl$9 = /* @__PURE__ */ template(`<svg stroke=currentColor fill=currentColor stroke-width=0 viewBox="0 0 24 24"height=1em width=1em xmlns=http://www.w3.org/2000/svg><path fill=none d="M0 0h24v24H0z"></path><path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3a4.237 4.237 0 00-6 0zm-4-4l2 2a7.074 7.074 0 0110 0l2-2C15.14 9.14 8.87 9.14 5 13z">`);
|
|
11767
|
+
_tmpl$10 = /* @__PURE__ */ template(`<svg stroke-width=0 viewBox="0 0 24 24"height=1em width=1em xmlns=http://www.w3.org/2000/svg><path fill=none d="M24 .01c0-.01 0-.01 0 0L0 0v24h24V.01zM0 0h24v24H0V0zm0 0h24v24H0V0z"></path><path d="M22.99 9C19.15 5.16 13.8 3.76 8.84 4.78l2.52 2.52c3.47-.17 6.99 1.05 9.63 3.7l2-2zm-4 4a9.793 9.793 0 00-4.49-2.56l3.53 3.53.96-.97zM2 3.05L5.07 6.1C3.6 6.82 2.22 7.78 1 9l1.99 2c1.24-1.24 2.67-2.16 4.2-2.77l2.24 2.24A9.684 9.684 0 005 13v.01L6.99 15a7.042 7.042 0 014.92-2.06L18.98 20l1.27-1.26L3.29 1.79 2 3.05zM9 17l3 3 3-3a4.237 4.237 0 00-6 0z">`);
|
|
11768
|
+
_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.3951 19.3711L9.97955 20.6856C10.1533 21.0768 10.4368 21.4093 10.7958 21.6426C11.1547 21.8759 11.5737 22.0001 12.0018 22C12.4299 22.0001 12.8488 21.8759 13.2078 21.6426C13.5667 21.4093 13.8503 21.0768 14.024 20.6856L14.6084 19.3711C14.8165 18.9047 15.1664 18.5159 15.6084 18.26C16.0532 18.0034 16.5678 17.8941 17.0784 17.9478L18.5084 18.1C18.9341 18.145 19.3637 18.0656 19.7451 17.8713C20.1265 17.6771 20.4434 17.3763 20.6573 17.0056C20.8715 16.635 20.9735 16.2103 20.9511 15.7829C20.9286 15.3555 20.7825 14.9438 20.5307 14.5978L19.684 13.4344C19.3825 13.0171 19.2214 12.5148 19.224 12C19.2239 11.4866 19.3865 10.9864 19.6884 10.5711L20.5351 9.40778C20.787 9.06175 20.933 8.65007 20.9555 8.22267C20.978 7.79528 20.8759 7.37054 20.6618 7C20.4479 6.62923 20.131 6.32849 19.7496 6.13423C19.3681 5.93997 18.9386 5.86053 18.5129 5.90556L17.0829 6.05778C16.5722 6.11141 16.0577 6.00212 15.6129 5.74556C15.17 5.48825 14.82 5.09736 14.6129 4.62889L14.024 3.31444C13.8503 2.92317 13.5667 2.59072 13.2078 2.3574C12.8488 2.12408 12.4299 1.99993 12.0018 2C11.5737 1.99993 11.1547 2.12408 10.7958 2.3574C10.4368 2.59072 10.1533 2.92317 9.97955 3.31444L9.3951 4.62889C9.18803 5.09736 8.83798 5.48825 8.3951 5.74556C7.95032 6.00212 7.43577 6.11141 6.9251 6.05778L5.49066 5.90556C5.06499 5.86053 4.6354 5.93997 4.25397 6.13423C3.87255 6.32849 3.55567 6.62923 3.34177 7C3.12759 7.37054 3.02555 7.79528 3.04804 8.22267C3.07052 8.65007 3.21656 9.06175 3.46844 9.40778L4.3151 10.5711C4.61704 10.9864 4.77964 11.4866 4.77955 12C4.77964 12.5134 4.61704 13.0137 4.3151 13.4289L3.46844 14.5922C3.21656 14.9382 3.07052 15.3499 3.04804 15.7773C3.02555 16.2047 3.12759 16.6295 3.34177 17C3.55589 17.3706 3.8728 17.6712 4.25417 17.8654C4.63554 18.0596 5.06502 18.1392 5.49066 18.0944L6.92066 17.9422C7.43133 17.8886 7.94587 17.9979 8.39066 18.2544C8.83519 18.511 9.18687 18.902 9.3951 19.3711Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round></path><path d="M12 15C13.6568 15 15 13.6569 15 12C15 10.3431 13.6568 9 12 9C10.3431 9 8.99998 10.3431 8.99998 12C8.99998 13.6569 10.3431 15 12 15Z"stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
11769
|
+
_tmpl$12 = /* @__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=currentColor>`);
|
|
11770
|
+
_tmpl$13 = /* @__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-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
11771
|
+
_tmpl$14 = /* @__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>`);
|
|
11772
|
+
_tmpl$15 = /* @__PURE__ */ template(`<svg width=24 height=24 viewBox="0 0 24 24"fill=none stroke=currentColor 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>`);
|
|
11773
|
+
_tmpl$16 = /* @__PURE__ */ template(`<svg viewBox="0 0 24 24"height=20 width=20 fill=none xmlns=http://www.w3.org/2000/svg><path d="M3 7.8c0-1.68 0-2.52.327-3.162a3 3 0 0 1 1.311-1.311C5.28 3 6.12 3 7.8 3h8.4c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C21 5.28 21 6.12 21 7.8v8.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C18.72 21 17.88 21 16.2 21H7.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C3 18.72 3 17.88 3 16.2V7.8Z"stroke-width=2 stroke-linecap=round stroke-linejoin=round>`);
|
|
11774
|
+
_tmpl$17 = /* @__PURE__ */ template(`<svg version=1.0 viewBox="0 0 633 633"><linearGradient 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></circle><defs><filter 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 x=-137.5 y=412 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=89.5 cy=610.5 rx=214.5 ry=186 fill=#015064 stroke=#00CFE2 stroke-width=25></ellipse></g><defs><filter 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 x=316.5 y=412 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=543.5 cy=610.5 rx=214.5 ry=186 fill=#015064 stroke=#00CFE2 stroke-width=25></ellipse></g><defs><filter 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 x=-137.5 y=450 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=89.5 cy=648.5 rx=214.5 ry=186 fill=#015064 stroke=#00A8B8 stroke-width=25></ellipse></g><defs><filter 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 x=316.5 y=450 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=543.5 cy=648.5 rx=214.5 ry=186 fill=#015064 stroke=#00A8B8 stroke-width=25></ellipse></g><defs><filter 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 x=-137.5 y=486 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=89.5 cy=684.5 rx=214.5 ry=186 fill=#015064 stroke=#007782 stroke-width=25></ellipse></g><defs><filter 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 x=316.5 y=486 width=454 height=396.9 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><ellipse cx=543.5 cy=684.5 rx=214.5 ry=186 fill=#015064 stroke=#007782 stroke-width=25></ellipse></g><defs><filter 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 x=272.2 y=308 width=176.9 height=129.3 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><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 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-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 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 x=73.2 y=113.8 width=280.6 height=317.4 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><linearGradient 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-rule=evenodd></path><g stroke=#2F8A00><linearGradient 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-rule=evenodd stroke-width=13></path><linearGradient 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-rule=evenodd stroke-width=13></path><linearGradient 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-rule=evenodd stroke-width=13></path><linearGradient 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-rule=evenodd stroke-width=13></path><linearGradient 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-rule=evenodd stroke-width=13></path><linearGradient 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-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 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 x=50.5 y=399 width=532 height=633 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><linearGradient 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></ellipse></g><defs><filter 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 x=391 y=-24 width=288 height=283 maskUnits=userSpaceOnUse><g><circle cx=316.5 cy=316.5 r=316.5 fill=#fff></circle></g></mask><g><linearGradient 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></circle><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12></line><linearGradient 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-linecap=round stroke-linejoin=bevel stroke-width=12>`);
|
|
11595
11775
|
}
|
|
11596
11776
|
});
|
|
11597
11777
|
|
|
@@ -11806,7 +11986,7 @@ function Explorer(props) {
|
|
|
11806
11986
|
get each() {
|
|
11807
11987
|
return subEntryPages();
|
|
11808
11988
|
},
|
|
11809
|
-
children: (
|
|
11989
|
+
children: (entries2, index) => (() => {
|
|
11810
11990
|
const _el$22 = _tmpl$112(), _el$23 = _el$22.firstChild, _el$24 = _el$23.firstChild, _el$25 = _el$24.firstChild, _el$29 = _el$25.nextSibling, _el$27 = _el$29.nextSibling, _el$30 = _el$27.nextSibling; _el$30.nextSibling;
|
|
11811
11991
|
_el$24.$$click = () => setExpandedPages((old) => old.includes(index) ? old.filter((d) => d !== index) : [...old, index]);
|
|
11812
11992
|
insert(_el$24, createComponent(Expander, {
|
|
@@ -11824,7 +12004,7 @@ function Explorer(props) {
|
|
|
11824
12004
|
const _el$31 = _tmpl$62();
|
|
11825
12005
|
insert(_el$31, createComponent(Key, {
|
|
11826
12006
|
get each() {
|
|
11827
|
-
return
|
|
12007
|
+
return entries2();
|
|
11828
12008
|
},
|
|
11829
12009
|
by: (entry) => entry.label,
|
|
11830
12010
|
children: (entry) => createComponent(Explorer, {
|
|
@@ -11987,11 +12167,11 @@ var init_Explorer = __esm({
|
|
|
11987
12167
|
init_utils();
|
|
11988
12168
|
init_icons();
|
|
11989
12169
|
init_Context();
|
|
11990
|
-
_tmpl$18 = /* @__PURE__ */ template(`<span><svg width=
|
|
12170
|
+
_tmpl$18 = /* @__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>`);
|
|
11991
12171
|
_tmpl$22 = /* @__PURE__ */ template(`<button title="Copy object to clipboard">`);
|
|
11992
|
-
_tmpl$32 = /* @__PURE__ */ template(`<button title="Remove all items"
|
|
11993
|
-
_tmpl$42 = /* @__PURE__ */ template(`<button title="Delete item"
|
|
11994
|
-
_tmpl$52 = /* @__PURE__ */ template(`<button title="Toggle value"
|
|
12172
|
+
_tmpl$32 = /* @__PURE__ */ template(`<button title="Remove all items"aria-label="Remove all items">`);
|
|
12173
|
+
_tmpl$42 = /* @__PURE__ */ template(`<button title="Delete item"aria-label="Delete item">`);
|
|
12174
|
+
_tmpl$52 = /* @__PURE__ */ template(`<button title="Toggle value"aria-label="Toggle value">`);
|
|
11995
12175
|
_tmpl$62 = /* @__PURE__ */ template(`<div>`);
|
|
11996
12176
|
_tmpl$72 = /* @__PURE__ */ template(`<div><button> <span></span> <span> `);
|
|
11997
12177
|
_tmpl$82 = /* @__PURE__ */ template(`<input>`);
|
|
@@ -12326,7 +12506,7 @@ var init_Devtools = __esm({
|
|
|
12326
12506
|
init_dist3();
|
|
12327
12507
|
init_dist4();
|
|
12328
12508
|
init_dist5();
|
|
12329
|
-
|
|
12509
|
+
init_dist7();
|
|
12330
12510
|
init_esm();
|
|
12331
12511
|
init_theme();
|
|
12332
12512
|
init_utils();
|
|
@@ -12334,7 +12514,7 @@ var init_Devtools = __esm({
|
|
|
12334
12514
|
init_Explorer();
|
|
12335
12515
|
init_Context();
|
|
12336
12516
|
init_fonts();
|
|
12337
|
-
_tmpl$19 = /* @__PURE__ */ template(`<div><div aria-hidden=
|
|
12517
|
+
_tmpl$19 = /* @__PURE__ */ template(`<div><div aria-hidden=true></div><button aria-label="Open Tanstack query devtools">`);
|
|
12338
12518
|
_tmpl$23 = /* @__PURE__ */ template(`<div>`);
|
|
12339
12519
|
_tmpl$33 = /* @__PURE__ */ template(`<span>Asc`);
|
|
12340
12520
|
_tmpl$43 = /* @__PURE__ */ template(`<span>Desc`);
|
|
@@ -12348,16 +12528,16 @@ var init_Devtools = __esm({
|
|
|
12348
12528
|
_tmpl$122 = /* @__PURE__ */ template(`<span>Light`);
|
|
12349
12529
|
_tmpl$132 = /* @__PURE__ */ template(`<span>Dark`);
|
|
12350
12530
|
_tmpl$142 = /* @__PURE__ */ template(`<span>System`);
|
|
12351
|
-
_tmpl$152 = /* @__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"
|
|
12531
|
+
_tmpl$152 = /* @__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>`);
|
|
12352
12532
|
_tmpl$162 = /* @__PURE__ */ template(`<option>Sort by `);
|
|
12353
|
-
_tmpl$172 = /* @__PURE__ */ template(`<div class=
|
|
12354
|
-
_tmpl$182 = /* @__PURE__ */ template(`<button><div></div><code class=
|
|
12355
|
-
_tmpl$192 = /* @__PURE__ */ template(`<div role=
|
|
12533
|
+
_tmpl$172 = /* @__PURE__ */ template(`<div class=tsqd-query-disabled-indicator>disabled`);
|
|
12534
|
+
_tmpl$182 = /* @__PURE__ */ template(`<button><div></div><code class=tsqd-query-hash>`);
|
|
12535
|
+
_tmpl$192 = /* @__PURE__ */ template(`<div role=tooltip id=tsqd-status-tooltip>`);
|
|
12356
12536
|
_tmpl$20 = /* @__PURE__ */ template(`<span>`);
|
|
12357
12537
|
_tmpl$21 = /* @__PURE__ */ template(`<button><span></span><span>`);
|
|
12358
12538
|
_tmpl$222 = /* @__PURE__ */ template(`<button><span></span> Error`);
|
|
12359
|
-
_tmpl$232 = /* @__PURE__ */ template(`<div><span></span>Trigger Error<select><option value=""
|
|
12360
|
-
_tmpl$24 = /* @__PURE__ */ template(`<div><div>Query Details</div><div><div class=
|
|
12539
|
+
_tmpl$232 = /* @__PURE__ */ template(`<div><span></span>Trigger Error<select><option value=""disabled selected>`);
|
|
12540
|
+
_tmpl$24 = /* @__PURE__ */ template(`<div><div>Query Details</div><div><div class=tsqd-query-details-summary><pre><code></code></pre><span></span></div><div class=tsqd-query-details-observers-count><span>Observers:</span><span></span></div><div class=tsqd-query-details-last-updated><span>Last Updated:</span><span></span></div></div><div>Actions</div><div><button><span></span>Refetch</button><button><span></span>Invalidate</button><button><span></span>Reset</button><button><span></span>Remove</button><button><span></span> Loading</button></div><div>Data Explorer</div><div class="tsqd-query-details-explorer-container tsqd-query-details-data-explorer"></div><div>Query Explorer</div><div class="tsqd-query-details-explorer-container tsqd-query-details-query-explorer">`);
|
|
12361
12541
|
_tmpl$25 = /* @__PURE__ */ template(`<option>`);
|
|
12362
12542
|
firstBreakpoint = 1024;
|
|
12363
12543
|
secondBreakpoint = 796;
|