@edux-design/icons 0.0.1
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/dist/index.d.mts +64 -0
- package/dist/index.d.ts +64 -0
- package/dist/index.js +2555 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +2524 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +33 -0
- package/src/24/book.svg +4 -0
- package/src/24/check.svg +4 -0
- package/src/24/chevron.svg +4 -0
- package/src/24/class.svg +4 -0
- package/src/24/close.svg +4 -0
- package/src/24/code.svg +5 -0
- package/src/24/collapse.svg +5 -0
- package/src/24/copy.svg +4 -0
- package/src/24/error.svg +3 -0
- package/src/24/external.svg +4 -0
- package/src/24/eye.svg +3 -0
- package/src/24/first.svg +5 -0
- package/src/24/gologo.svg +5 -0
- package/src/24/hamburger.svg +4 -0
- package/src/24/indeterminate.svg +4 -0
- package/src/24/info.svg +3 -0
- package/src/24/last.svg +5 -0
- package/src/24/next.svg +4 -0
- package/src/24/person-avatar.svg +4 -0
- package/src/24/plus.svg +4 -0
- package/src/24/previous.svg +4 -0
- package/src/24/product.svg +4 -0
- package/src/24/searchglass.svg +3 -0
- package/src/24/series.svg +4 -0
- package/src/24/settings.svg +4 -0
- package/src/24/success.svg +3 -0
- package/src/24/swaporder.svg +4 -0
- package/src/24/unknown.svg +3 -0
- package/src/24/users.svg +4 -0
- package/src/24/warning.svg +3 -0
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,2524 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __commonJS = (cb, mod) => function __require() {
|
|
8
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
19
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
20
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
21
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
22
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
23
|
+
!mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
24
|
+
mod
|
|
25
|
+
));
|
|
26
|
+
|
|
27
|
+
// ../../node_modules/react/cjs/react-jsx-runtime.production.js
|
|
28
|
+
var require_react_jsx_runtime_production = __commonJS({
|
|
29
|
+
"../../node_modules/react/cjs/react-jsx-runtime.production.js"(exports) {
|
|
30
|
+
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element");
|
|
31
|
+
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
|
32
|
+
function jsxProd(type, config, maybeKey) {
|
|
33
|
+
var key = null;
|
|
34
|
+
void 0 !== maybeKey && (key = "" + maybeKey);
|
|
35
|
+
void 0 !== config.key && (key = "" + config.key);
|
|
36
|
+
if ("key" in config) {
|
|
37
|
+
maybeKey = {};
|
|
38
|
+
for (var propName in config)
|
|
39
|
+
"key" !== propName && (maybeKey[propName] = config[propName]);
|
|
40
|
+
} else maybeKey = config;
|
|
41
|
+
config = maybeKey.ref;
|
|
42
|
+
return {
|
|
43
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
44
|
+
type,
|
|
45
|
+
key,
|
|
46
|
+
ref: void 0 !== config ? config : null,
|
|
47
|
+
props: maybeKey
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
51
|
+
exports.jsx = jsxProd;
|
|
52
|
+
exports.jsxs = jsxProd;
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
// ../../node_modules/react/cjs/react.production.js
|
|
57
|
+
var require_react_production = __commonJS({
|
|
58
|
+
"../../node_modules/react/cjs/react.production.js"(exports) {
|
|
59
|
+
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element");
|
|
60
|
+
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
|
61
|
+
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
|
62
|
+
var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
|
|
63
|
+
var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
|
64
|
+
var REACT_CONSUMER_TYPE = Symbol.for("react.consumer");
|
|
65
|
+
var REACT_CONTEXT_TYPE = Symbol.for("react.context");
|
|
66
|
+
var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
|
|
67
|
+
var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
|
|
68
|
+
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
|
69
|
+
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
|
70
|
+
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
71
|
+
function getIteratorFn(maybeIterable) {
|
|
72
|
+
if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
|
|
73
|
+
maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"];
|
|
74
|
+
return "function" === typeof maybeIterable ? maybeIterable : null;
|
|
75
|
+
}
|
|
76
|
+
var ReactNoopUpdateQueue = {
|
|
77
|
+
isMounted: function() {
|
|
78
|
+
return false;
|
|
79
|
+
},
|
|
80
|
+
enqueueForceUpdate: function() {
|
|
81
|
+
},
|
|
82
|
+
enqueueReplaceState: function() {
|
|
83
|
+
},
|
|
84
|
+
enqueueSetState: function() {
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
var assign = Object.assign;
|
|
88
|
+
var emptyObject = {};
|
|
89
|
+
function Component(props, context, updater) {
|
|
90
|
+
this.props = props;
|
|
91
|
+
this.context = context;
|
|
92
|
+
this.refs = emptyObject;
|
|
93
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
94
|
+
}
|
|
95
|
+
Component.prototype.isReactComponent = {};
|
|
96
|
+
Component.prototype.setState = function(partialState, callback) {
|
|
97
|
+
if ("object" !== typeof partialState && "function" !== typeof partialState && null != partialState)
|
|
98
|
+
throw Error(
|
|
99
|
+
"takes an object of state variables to update or a function which returns an object of state variables."
|
|
100
|
+
);
|
|
101
|
+
this.updater.enqueueSetState(this, partialState, callback, "setState");
|
|
102
|
+
};
|
|
103
|
+
Component.prototype.forceUpdate = function(callback) {
|
|
104
|
+
this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
|
|
105
|
+
};
|
|
106
|
+
function ComponentDummy() {
|
|
107
|
+
}
|
|
108
|
+
ComponentDummy.prototype = Component.prototype;
|
|
109
|
+
function PureComponent(props, context, updater) {
|
|
110
|
+
this.props = props;
|
|
111
|
+
this.context = context;
|
|
112
|
+
this.refs = emptyObject;
|
|
113
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
114
|
+
}
|
|
115
|
+
var pureComponentPrototype = PureComponent.prototype = new ComponentDummy();
|
|
116
|
+
pureComponentPrototype.constructor = PureComponent;
|
|
117
|
+
assign(pureComponentPrototype, Component.prototype);
|
|
118
|
+
pureComponentPrototype.isPureReactComponent = true;
|
|
119
|
+
var isArrayImpl = Array.isArray;
|
|
120
|
+
var ReactSharedInternals = { H: null, A: null, T: null, S: null, V: null };
|
|
121
|
+
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
122
|
+
function ReactElement(type, key, self, source, owner, props) {
|
|
123
|
+
self = props.ref;
|
|
124
|
+
return {
|
|
125
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
126
|
+
type,
|
|
127
|
+
key,
|
|
128
|
+
ref: void 0 !== self ? self : null,
|
|
129
|
+
props
|
|
130
|
+
};
|
|
131
|
+
}
|
|
132
|
+
function cloneAndReplaceKey(oldElement, newKey) {
|
|
133
|
+
return ReactElement(
|
|
134
|
+
oldElement.type,
|
|
135
|
+
newKey,
|
|
136
|
+
void 0,
|
|
137
|
+
void 0,
|
|
138
|
+
void 0,
|
|
139
|
+
oldElement.props
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
function isValidElement(object) {
|
|
143
|
+
return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
144
|
+
}
|
|
145
|
+
function escape(key) {
|
|
146
|
+
var escaperLookup = { "=": "=0", ":": "=2" };
|
|
147
|
+
return "$" + key.replace(/[=:]/g, function(match) {
|
|
148
|
+
return escaperLookup[match];
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
var userProvidedKeyEscapeRegex = /\/+/g;
|
|
152
|
+
function getElementKey(element, index) {
|
|
153
|
+
return "object" === typeof element && null !== element && null != element.key ? escape("" + element.key) : index.toString(36);
|
|
154
|
+
}
|
|
155
|
+
function noop$1() {
|
|
156
|
+
}
|
|
157
|
+
function resolveThenable(thenable) {
|
|
158
|
+
switch (thenable.status) {
|
|
159
|
+
case "fulfilled":
|
|
160
|
+
return thenable.value;
|
|
161
|
+
case "rejected":
|
|
162
|
+
throw thenable.reason;
|
|
163
|
+
default:
|
|
164
|
+
switch ("string" === typeof thenable.status ? thenable.then(noop$1, noop$1) : (thenable.status = "pending", thenable.then(
|
|
165
|
+
function(fulfilledValue) {
|
|
166
|
+
"pending" === thenable.status && (thenable.status = "fulfilled", thenable.value = fulfilledValue);
|
|
167
|
+
},
|
|
168
|
+
function(error) {
|
|
169
|
+
"pending" === thenable.status && (thenable.status = "rejected", thenable.reason = error);
|
|
170
|
+
}
|
|
171
|
+
)), thenable.status) {
|
|
172
|
+
case "fulfilled":
|
|
173
|
+
return thenable.value;
|
|
174
|
+
case "rejected":
|
|
175
|
+
throw thenable.reason;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
throw thenable;
|
|
179
|
+
}
|
|
180
|
+
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
181
|
+
var type = typeof children;
|
|
182
|
+
if ("undefined" === type || "boolean" === type) children = null;
|
|
183
|
+
var invokeCallback = false;
|
|
184
|
+
if (null === children) invokeCallback = true;
|
|
185
|
+
else
|
|
186
|
+
switch (type) {
|
|
187
|
+
case "bigint":
|
|
188
|
+
case "string":
|
|
189
|
+
case "number":
|
|
190
|
+
invokeCallback = true;
|
|
191
|
+
break;
|
|
192
|
+
case "object":
|
|
193
|
+
switch (children.$$typeof) {
|
|
194
|
+
case REACT_ELEMENT_TYPE:
|
|
195
|
+
case REACT_PORTAL_TYPE:
|
|
196
|
+
invokeCallback = true;
|
|
197
|
+
break;
|
|
198
|
+
case REACT_LAZY_TYPE:
|
|
199
|
+
return invokeCallback = children._init, mapIntoArray(
|
|
200
|
+
invokeCallback(children._payload),
|
|
201
|
+
array,
|
|
202
|
+
escapedPrefix,
|
|
203
|
+
nameSoFar,
|
|
204
|
+
callback
|
|
205
|
+
);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
if (invokeCallback)
|
|
209
|
+
return callback = callback(children), invokeCallback = "" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar, isArrayImpl(callback) ? (escapedPrefix = "", null != invokeCallback && (escapedPrefix = invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function(c) {
|
|
210
|
+
return c;
|
|
211
|
+
})) : null != callback && (isValidElement(callback) && (callback = cloneAndReplaceKey(
|
|
212
|
+
callback,
|
|
213
|
+
escapedPrefix + (null == callback.key || children && children.key === callback.key ? "" : ("" + callback.key).replace(
|
|
214
|
+
userProvidedKeyEscapeRegex,
|
|
215
|
+
"$&/"
|
|
216
|
+
) + "/") + invokeCallback
|
|
217
|
+
)), array.push(callback)), 1;
|
|
218
|
+
invokeCallback = 0;
|
|
219
|
+
var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
|
|
220
|
+
if (isArrayImpl(children))
|
|
221
|
+
for (var i = 0; i < children.length; i++)
|
|
222
|
+
nameSoFar = children[i], type = nextNamePrefix + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(
|
|
223
|
+
nameSoFar,
|
|
224
|
+
array,
|
|
225
|
+
escapedPrefix,
|
|
226
|
+
type,
|
|
227
|
+
callback
|
|
228
|
+
);
|
|
229
|
+
else if (i = getIteratorFn(children), "function" === typeof i)
|
|
230
|
+
for (children = i.call(children), i = 0; !(nameSoFar = children.next()).done; )
|
|
231
|
+
nameSoFar = nameSoFar.value, type = nextNamePrefix + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(
|
|
232
|
+
nameSoFar,
|
|
233
|
+
array,
|
|
234
|
+
escapedPrefix,
|
|
235
|
+
type,
|
|
236
|
+
callback
|
|
237
|
+
);
|
|
238
|
+
else if ("object" === type) {
|
|
239
|
+
if ("function" === typeof children.then)
|
|
240
|
+
return mapIntoArray(
|
|
241
|
+
resolveThenable(children),
|
|
242
|
+
array,
|
|
243
|
+
escapedPrefix,
|
|
244
|
+
nameSoFar,
|
|
245
|
+
callback
|
|
246
|
+
);
|
|
247
|
+
array = String(children);
|
|
248
|
+
throw Error(
|
|
249
|
+
"Objects are not valid as a React child (found: " + ("[object Object]" === array ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead."
|
|
250
|
+
);
|
|
251
|
+
}
|
|
252
|
+
return invokeCallback;
|
|
253
|
+
}
|
|
254
|
+
function mapChildren(children, func, context) {
|
|
255
|
+
if (null == children) return children;
|
|
256
|
+
var result = [], count = 0;
|
|
257
|
+
mapIntoArray(children, result, "", "", function(child) {
|
|
258
|
+
return func.call(context, child, count++);
|
|
259
|
+
});
|
|
260
|
+
return result;
|
|
261
|
+
}
|
|
262
|
+
function lazyInitializer(payload) {
|
|
263
|
+
if (-1 === payload._status) {
|
|
264
|
+
var ctor = payload._result;
|
|
265
|
+
ctor = ctor();
|
|
266
|
+
ctor.then(
|
|
267
|
+
function(moduleObject) {
|
|
268
|
+
if (0 === payload._status || -1 === payload._status)
|
|
269
|
+
payload._status = 1, payload._result = moduleObject;
|
|
270
|
+
},
|
|
271
|
+
function(error) {
|
|
272
|
+
if (0 === payload._status || -1 === payload._status)
|
|
273
|
+
payload._status = 2, payload._result = error;
|
|
274
|
+
}
|
|
275
|
+
);
|
|
276
|
+
-1 === payload._status && (payload._status = 0, payload._result = ctor);
|
|
277
|
+
}
|
|
278
|
+
if (1 === payload._status) return payload._result.default;
|
|
279
|
+
throw payload._result;
|
|
280
|
+
}
|
|
281
|
+
var reportGlobalError = "function" === typeof reportError ? reportError : function(error) {
|
|
282
|
+
if ("object" === typeof window && "function" === typeof window.ErrorEvent) {
|
|
283
|
+
var event = new window.ErrorEvent("error", {
|
|
284
|
+
bubbles: true,
|
|
285
|
+
cancelable: true,
|
|
286
|
+
message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error),
|
|
287
|
+
error
|
|
288
|
+
});
|
|
289
|
+
if (!window.dispatchEvent(event)) return;
|
|
290
|
+
} else if ("object" === typeof process && "function" === typeof process.emit) {
|
|
291
|
+
process.emit("uncaughtException", error);
|
|
292
|
+
return;
|
|
293
|
+
}
|
|
294
|
+
console.error(error);
|
|
295
|
+
};
|
|
296
|
+
function noop() {
|
|
297
|
+
}
|
|
298
|
+
exports.Children = {
|
|
299
|
+
map: mapChildren,
|
|
300
|
+
forEach: function(children, forEachFunc, forEachContext) {
|
|
301
|
+
mapChildren(
|
|
302
|
+
children,
|
|
303
|
+
function() {
|
|
304
|
+
forEachFunc.apply(this, arguments);
|
|
305
|
+
},
|
|
306
|
+
forEachContext
|
|
307
|
+
);
|
|
308
|
+
},
|
|
309
|
+
count: function(children) {
|
|
310
|
+
var n = 0;
|
|
311
|
+
mapChildren(children, function() {
|
|
312
|
+
n++;
|
|
313
|
+
});
|
|
314
|
+
return n;
|
|
315
|
+
},
|
|
316
|
+
toArray: function(children) {
|
|
317
|
+
return mapChildren(children, function(child) {
|
|
318
|
+
return child;
|
|
319
|
+
}) || [];
|
|
320
|
+
},
|
|
321
|
+
only: function(children) {
|
|
322
|
+
if (!isValidElement(children))
|
|
323
|
+
throw Error(
|
|
324
|
+
"React.Children.only expected to receive a single React element child."
|
|
325
|
+
);
|
|
326
|
+
return children;
|
|
327
|
+
}
|
|
328
|
+
};
|
|
329
|
+
exports.Component = Component;
|
|
330
|
+
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
331
|
+
exports.Profiler = REACT_PROFILER_TYPE;
|
|
332
|
+
exports.PureComponent = PureComponent;
|
|
333
|
+
exports.StrictMode = REACT_STRICT_MODE_TYPE;
|
|
334
|
+
exports.Suspense = REACT_SUSPENSE_TYPE;
|
|
335
|
+
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals;
|
|
336
|
+
exports.__COMPILER_RUNTIME = {
|
|
337
|
+
__proto__: null,
|
|
338
|
+
c: function(size) {
|
|
339
|
+
return ReactSharedInternals.H.useMemoCache(size);
|
|
340
|
+
}
|
|
341
|
+
};
|
|
342
|
+
exports.cache = function(fn) {
|
|
343
|
+
return function() {
|
|
344
|
+
return fn.apply(null, arguments);
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
exports.cloneElement = function(element, config, children) {
|
|
348
|
+
if (null === element || void 0 === element)
|
|
349
|
+
throw Error(
|
|
350
|
+
"The argument must be a React element, but you passed " + element + "."
|
|
351
|
+
);
|
|
352
|
+
var props = assign({}, element.props), key = element.key, owner = void 0;
|
|
353
|
+
if (null != config)
|
|
354
|
+
for (propName in void 0 !== config.ref && (owner = void 0), void 0 !== config.key && (key = "" + config.key), config)
|
|
355
|
+
!hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && void 0 === config.ref || (props[propName] = config[propName]);
|
|
356
|
+
var propName = arguments.length - 2;
|
|
357
|
+
if (1 === propName) props.children = children;
|
|
358
|
+
else if (1 < propName) {
|
|
359
|
+
for (var childArray = Array(propName), i = 0; i < propName; i++)
|
|
360
|
+
childArray[i] = arguments[i + 2];
|
|
361
|
+
props.children = childArray;
|
|
362
|
+
}
|
|
363
|
+
return ReactElement(element.type, key, void 0, void 0, owner, props);
|
|
364
|
+
};
|
|
365
|
+
exports.createContext = function(defaultValue) {
|
|
366
|
+
defaultValue = {
|
|
367
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
368
|
+
_currentValue: defaultValue,
|
|
369
|
+
_currentValue2: defaultValue,
|
|
370
|
+
_threadCount: 0,
|
|
371
|
+
Provider: null,
|
|
372
|
+
Consumer: null
|
|
373
|
+
};
|
|
374
|
+
defaultValue.Provider = defaultValue;
|
|
375
|
+
defaultValue.Consumer = {
|
|
376
|
+
$$typeof: REACT_CONSUMER_TYPE,
|
|
377
|
+
_context: defaultValue
|
|
378
|
+
};
|
|
379
|
+
return defaultValue;
|
|
380
|
+
};
|
|
381
|
+
exports.createElement = function(type, config, children) {
|
|
382
|
+
var propName, props = {}, key = null;
|
|
383
|
+
if (null != config)
|
|
384
|
+
for (propName in void 0 !== config.key && (key = "" + config.key), config)
|
|
385
|
+
hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (props[propName] = config[propName]);
|
|
386
|
+
var childrenLength = arguments.length - 2;
|
|
387
|
+
if (1 === childrenLength) props.children = children;
|
|
388
|
+
else if (1 < childrenLength) {
|
|
389
|
+
for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
|
|
390
|
+
childArray[i] = arguments[i + 2];
|
|
391
|
+
props.children = childArray;
|
|
392
|
+
}
|
|
393
|
+
if (type && type.defaultProps)
|
|
394
|
+
for (propName in childrenLength = type.defaultProps, childrenLength)
|
|
395
|
+
void 0 === props[propName] && (props[propName] = childrenLength[propName]);
|
|
396
|
+
return ReactElement(type, key, void 0, void 0, null, props);
|
|
397
|
+
};
|
|
398
|
+
exports.createRef = function() {
|
|
399
|
+
return { current: null };
|
|
400
|
+
};
|
|
401
|
+
exports.forwardRef = function(render) {
|
|
402
|
+
return { $$typeof: REACT_FORWARD_REF_TYPE, render };
|
|
403
|
+
};
|
|
404
|
+
exports.isValidElement = isValidElement;
|
|
405
|
+
exports.lazy = function(ctor) {
|
|
406
|
+
return {
|
|
407
|
+
$$typeof: REACT_LAZY_TYPE,
|
|
408
|
+
_payload: { _status: -1, _result: ctor },
|
|
409
|
+
_init: lazyInitializer
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
exports.memo = function(type, compare) {
|
|
413
|
+
return {
|
|
414
|
+
$$typeof: REACT_MEMO_TYPE,
|
|
415
|
+
type,
|
|
416
|
+
compare: void 0 === compare ? null : compare
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
|
+
exports.startTransition = function(scope) {
|
|
420
|
+
var prevTransition = ReactSharedInternals.T, currentTransition = {};
|
|
421
|
+
ReactSharedInternals.T = currentTransition;
|
|
422
|
+
try {
|
|
423
|
+
var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S;
|
|
424
|
+
null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue);
|
|
425
|
+
"object" === typeof returnValue && null !== returnValue && "function" === typeof returnValue.then && returnValue.then(noop, reportGlobalError);
|
|
426
|
+
} catch (error) {
|
|
427
|
+
reportGlobalError(error);
|
|
428
|
+
} finally {
|
|
429
|
+
ReactSharedInternals.T = prevTransition;
|
|
430
|
+
}
|
|
431
|
+
};
|
|
432
|
+
exports.unstable_useCacheRefresh = function() {
|
|
433
|
+
return ReactSharedInternals.H.useCacheRefresh();
|
|
434
|
+
};
|
|
435
|
+
exports.use = function(usable) {
|
|
436
|
+
return ReactSharedInternals.H.use(usable);
|
|
437
|
+
};
|
|
438
|
+
exports.useActionState = function(action, initialState, permalink) {
|
|
439
|
+
return ReactSharedInternals.H.useActionState(action, initialState, permalink);
|
|
440
|
+
};
|
|
441
|
+
exports.useCallback = function(callback, deps) {
|
|
442
|
+
return ReactSharedInternals.H.useCallback(callback, deps);
|
|
443
|
+
};
|
|
444
|
+
exports.useContext = function(Context) {
|
|
445
|
+
return ReactSharedInternals.H.useContext(Context);
|
|
446
|
+
};
|
|
447
|
+
exports.useDebugValue = function() {
|
|
448
|
+
};
|
|
449
|
+
exports.useDeferredValue = function(value, initialValue) {
|
|
450
|
+
return ReactSharedInternals.H.useDeferredValue(value, initialValue);
|
|
451
|
+
};
|
|
452
|
+
exports.useEffect = function(create, createDeps, update) {
|
|
453
|
+
var dispatcher = ReactSharedInternals.H;
|
|
454
|
+
if ("function" === typeof update)
|
|
455
|
+
throw Error(
|
|
456
|
+
"useEffect CRUD overload is not enabled in this build of React."
|
|
457
|
+
);
|
|
458
|
+
return dispatcher.useEffect(create, createDeps);
|
|
459
|
+
};
|
|
460
|
+
exports.useId = function() {
|
|
461
|
+
return ReactSharedInternals.H.useId();
|
|
462
|
+
};
|
|
463
|
+
exports.useImperativeHandle = function(ref, create, deps) {
|
|
464
|
+
return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
|
|
465
|
+
};
|
|
466
|
+
exports.useInsertionEffect = function(create, deps) {
|
|
467
|
+
return ReactSharedInternals.H.useInsertionEffect(create, deps);
|
|
468
|
+
};
|
|
469
|
+
exports.useLayoutEffect = function(create, deps) {
|
|
470
|
+
return ReactSharedInternals.H.useLayoutEffect(create, deps);
|
|
471
|
+
};
|
|
472
|
+
exports.useMemo = function(create, deps) {
|
|
473
|
+
return ReactSharedInternals.H.useMemo(create, deps);
|
|
474
|
+
};
|
|
475
|
+
exports.useOptimistic = function(passthrough, reducer) {
|
|
476
|
+
return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
|
|
477
|
+
};
|
|
478
|
+
exports.useReducer = function(reducer, initialArg, init) {
|
|
479
|
+
return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
|
|
480
|
+
};
|
|
481
|
+
exports.useRef = function(initialValue) {
|
|
482
|
+
return ReactSharedInternals.H.useRef(initialValue);
|
|
483
|
+
};
|
|
484
|
+
exports.useState = function(initialState) {
|
|
485
|
+
return ReactSharedInternals.H.useState(initialState);
|
|
486
|
+
};
|
|
487
|
+
exports.useSyncExternalStore = function(subscribe, getSnapshot, getServerSnapshot) {
|
|
488
|
+
return ReactSharedInternals.H.useSyncExternalStore(
|
|
489
|
+
subscribe,
|
|
490
|
+
getSnapshot,
|
|
491
|
+
getServerSnapshot
|
|
492
|
+
);
|
|
493
|
+
};
|
|
494
|
+
exports.useTransition = function() {
|
|
495
|
+
return ReactSharedInternals.H.useTransition();
|
|
496
|
+
};
|
|
497
|
+
exports.version = "19.1.1";
|
|
498
|
+
}
|
|
499
|
+
});
|
|
500
|
+
|
|
501
|
+
// ../../node_modules/react/cjs/react.development.js
|
|
502
|
+
var require_react_development = __commonJS({
|
|
503
|
+
"../../node_modules/react/cjs/react.development.js"(exports, module) {
|
|
504
|
+
"production" !== process.env.NODE_ENV && (function() {
|
|
505
|
+
function defineDeprecationWarning(methodName, info) {
|
|
506
|
+
Object.defineProperty(Component.prototype, methodName, {
|
|
507
|
+
get: function() {
|
|
508
|
+
console.warn(
|
|
509
|
+
"%s(...) is deprecated in plain JavaScript React classes. %s",
|
|
510
|
+
info[0],
|
|
511
|
+
info[1]
|
|
512
|
+
);
|
|
513
|
+
}
|
|
514
|
+
});
|
|
515
|
+
}
|
|
516
|
+
function getIteratorFn(maybeIterable) {
|
|
517
|
+
if (null === maybeIterable || "object" !== typeof maybeIterable)
|
|
518
|
+
return null;
|
|
519
|
+
maybeIterable = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable["@@iterator"];
|
|
520
|
+
return "function" === typeof maybeIterable ? maybeIterable : null;
|
|
521
|
+
}
|
|
522
|
+
function warnNoop(publicInstance, callerName) {
|
|
523
|
+
publicInstance = (publicInstance = publicInstance.constructor) && (publicInstance.displayName || publicInstance.name) || "ReactClass";
|
|
524
|
+
var warningKey = publicInstance + "." + callerName;
|
|
525
|
+
didWarnStateUpdateForUnmountedComponent[warningKey] || (console.error(
|
|
526
|
+
"Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.",
|
|
527
|
+
callerName,
|
|
528
|
+
publicInstance
|
|
529
|
+
), didWarnStateUpdateForUnmountedComponent[warningKey] = true);
|
|
530
|
+
}
|
|
531
|
+
function Component(props, context, updater) {
|
|
532
|
+
this.props = props;
|
|
533
|
+
this.context = context;
|
|
534
|
+
this.refs = emptyObject;
|
|
535
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
536
|
+
}
|
|
537
|
+
function ComponentDummy() {
|
|
538
|
+
}
|
|
539
|
+
function PureComponent(props, context, updater) {
|
|
540
|
+
this.props = props;
|
|
541
|
+
this.context = context;
|
|
542
|
+
this.refs = emptyObject;
|
|
543
|
+
this.updater = updater || ReactNoopUpdateQueue;
|
|
544
|
+
}
|
|
545
|
+
function testStringCoercion(value) {
|
|
546
|
+
return "" + value;
|
|
547
|
+
}
|
|
548
|
+
function checkKeyStringCoercion(value) {
|
|
549
|
+
try {
|
|
550
|
+
testStringCoercion(value);
|
|
551
|
+
var JSCompiler_inline_result = false;
|
|
552
|
+
} catch (e) {
|
|
553
|
+
JSCompiler_inline_result = true;
|
|
554
|
+
}
|
|
555
|
+
if (JSCompiler_inline_result) {
|
|
556
|
+
JSCompiler_inline_result = console;
|
|
557
|
+
var JSCompiler_temp_const = JSCompiler_inline_result.error;
|
|
558
|
+
var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
|
559
|
+
JSCompiler_temp_const.call(
|
|
560
|
+
JSCompiler_inline_result,
|
|
561
|
+
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
|
|
562
|
+
JSCompiler_inline_result$jscomp$0
|
|
563
|
+
);
|
|
564
|
+
return testStringCoercion(value);
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
function getComponentNameFromType(type) {
|
|
568
|
+
if (null == type) return null;
|
|
569
|
+
if ("function" === typeof type)
|
|
570
|
+
return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
|
|
571
|
+
if ("string" === typeof type) return type;
|
|
572
|
+
switch (type) {
|
|
573
|
+
case REACT_FRAGMENT_TYPE:
|
|
574
|
+
return "Fragment";
|
|
575
|
+
case REACT_PROFILER_TYPE:
|
|
576
|
+
return "Profiler";
|
|
577
|
+
case REACT_STRICT_MODE_TYPE:
|
|
578
|
+
return "StrictMode";
|
|
579
|
+
case REACT_SUSPENSE_TYPE:
|
|
580
|
+
return "Suspense";
|
|
581
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
582
|
+
return "SuspenseList";
|
|
583
|
+
case REACT_ACTIVITY_TYPE:
|
|
584
|
+
return "Activity";
|
|
585
|
+
}
|
|
586
|
+
if ("object" === typeof type)
|
|
587
|
+
switch ("number" === typeof type.tag && console.error(
|
|
588
|
+
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
|
|
589
|
+
), type.$$typeof) {
|
|
590
|
+
case REACT_PORTAL_TYPE:
|
|
591
|
+
return "Portal";
|
|
592
|
+
case REACT_CONTEXT_TYPE:
|
|
593
|
+
return (type.displayName || "Context") + ".Provider";
|
|
594
|
+
case REACT_CONSUMER_TYPE:
|
|
595
|
+
return (type._context.displayName || "Context") + ".Consumer";
|
|
596
|
+
case REACT_FORWARD_REF_TYPE:
|
|
597
|
+
var innerType = type.render;
|
|
598
|
+
type = type.displayName;
|
|
599
|
+
type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
|
|
600
|
+
return type;
|
|
601
|
+
case REACT_MEMO_TYPE:
|
|
602
|
+
return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
|
|
603
|
+
case REACT_LAZY_TYPE:
|
|
604
|
+
innerType = type._payload;
|
|
605
|
+
type = type._init;
|
|
606
|
+
try {
|
|
607
|
+
return getComponentNameFromType(type(innerType));
|
|
608
|
+
} catch (x) {
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
return null;
|
|
612
|
+
}
|
|
613
|
+
function getTaskName(type) {
|
|
614
|
+
if (type === REACT_FRAGMENT_TYPE) return "<>";
|
|
615
|
+
if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
|
|
616
|
+
return "<...>";
|
|
617
|
+
try {
|
|
618
|
+
var name = getComponentNameFromType(type);
|
|
619
|
+
return name ? "<" + name + ">" : "<...>";
|
|
620
|
+
} catch (x) {
|
|
621
|
+
return "<...>";
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
function getOwner() {
|
|
625
|
+
var dispatcher = ReactSharedInternals.A;
|
|
626
|
+
return null === dispatcher ? null : dispatcher.getOwner();
|
|
627
|
+
}
|
|
628
|
+
function UnknownOwner() {
|
|
629
|
+
return Error("react-stack-top-frame");
|
|
630
|
+
}
|
|
631
|
+
function hasValidKey(config) {
|
|
632
|
+
if (hasOwnProperty.call(config, "key")) {
|
|
633
|
+
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
|
634
|
+
if (getter && getter.isReactWarning) return false;
|
|
635
|
+
}
|
|
636
|
+
return void 0 !== config.key;
|
|
637
|
+
}
|
|
638
|
+
function defineKeyPropWarningGetter(props, displayName) {
|
|
639
|
+
function warnAboutAccessingKey() {
|
|
640
|
+
specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
|
|
641
|
+
"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
|
|
642
|
+
displayName
|
|
643
|
+
));
|
|
644
|
+
}
|
|
645
|
+
warnAboutAccessingKey.isReactWarning = true;
|
|
646
|
+
Object.defineProperty(props, "key", {
|
|
647
|
+
get: warnAboutAccessingKey,
|
|
648
|
+
configurable: true
|
|
649
|
+
});
|
|
650
|
+
}
|
|
651
|
+
function elementRefGetterWithDeprecationWarning() {
|
|
652
|
+
var componentName = getComponentNameFromType(this.type);
|
|
653
|
+
didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
|
|
654
|
+
"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
|
|
655
|
+
));
|
|
656
|
+
componentName = this.props.ref;
|
|
657
|
+
return void 0 !== componentName ? componentName : null;
|
|
658
|
+
}
|
|
659
|
+
function ReactElement(type, key, self, source, owner, props, debugStack, debugTask) {
|
|
660
|
+
self = props.ref;
|
|
661
|
+
type = {
|
|
662
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
663
|
+
type,
|
|
664
|
+
key,
|
|
665
|
+
props,
|
|
666
|
+
_owner: owner
|
|
667
|
+
};
|
|
668
|
+
null !== (void 0 !== self ? self : null) ? Object.defineProperty(type, "ref", {
|
|
669
|
+
enumerable: false,
|
|
670
|
+
get: elementRefGetterWithDeprecationWarning
|
|
671
|
+
}) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
|
|
672
|
+
type._store = {};
|
|
673
|
+
Object.defineProperty(type._store, "validated", {
|
|
674
|
+
configurable: false,
|
|
675
|
+
enumerable: false,
|
|
676
|
+
writable: true,
|
|
677
|
+
value: 0
|
|
678
|
+
});
|
|
679
|
+
Object.defineProperty(type, "_debugInfo", {
|
|
680
|
+
configurable: false,
|
|
681
|
+
enumerable: false,
|
|
682
|
+
writable: true,
|
|
683
|
+
value: null
|
|
684
|
+
});
|
|
685
|
+
Object.defineProperty(type, "_debugStack", {
|
|
686
|
+
configurable: false,
|
|
687
|
+
enumerable: false,
|
|
688
|
+
writable: true,
|
|
689
|
+
value: debugStack
|
|
690
|
+
});
|
|
691
|
+
Object.defineProperty(type, "_debugTask", {
|
|
692
|
+
configurable: false,
|
|
693
|
+
enumerable: false,
|
|
694
|
+
writable: true,
|
|
695
|
+
value: debugTask
|
|
696
|
+
});
|
|
697
|
+
Object.freeze && (Object.freeze(type.props), Object.freeze(type));
|
|
698
|
+
return type;
|
|
699
|
+
}
|
|
700
|
+
function cloneAndReplaceKey(oldElement, newKey) {
|
|
701
|
+
newKey = ReactElement(
|
|
702
|
+
oldElement.type,
|
|
703
|
+
newKey,
|
|
704
|
+
void 0,
|
|
705
|
+
void 0,
|
|
706
|
+
oldElement._owner,
|
|
707
|
+
oldElement.props,
|
|
708
|
+
oldElement._debugStack,
|
|
709
|
+
oldElement._debugTask
|
|
710
|
+
);
|
|
711
|
+
oldElement._store && (newKey._store.validated = oldElement._store.validated);
|
|
712
|
+
return newKey;
|
|
713
|
+
}
|
|
714
|
+
function isValidElement(object) {
|
|
715
|
+
return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
716
|
+
}
|
|
717
|
+
function escape(key) {
|
|
718
|
+
var escaperLookup = { "=": "=0", ":": "=2" };
|
|
719
|
+
return "$" + key.replace(/[=:]/g, function(match) {
|
|
720
|
+
return escaperLookup[match];
|
|
721
|
+
});
|
|
722
|
+
}
|
|
723
|
+
function getElementKey(element, index) {
|
|
724
|
+
return "object" === typeof element && null !== element && null != element.key ? (checkKeyStringCoercion(element.key), escape("" + element.key)) : index.toString(36);
|
|
725
|
+
}
|
|
726
|
+
function noop$1() {
|
|
727
|
+
}
|
|
728
|
+
function resolveThenable(thenable) {
|
|
729
|
+
switch (thenable.status) {
|
|
730
|
+
case "fulfilled":
|
|
731
|
+
return thenable.value;
|
|
732
|
+
case "rejected":
|
|
733
|
+
throw thenable.reason;
|
|
734
|
+
default:
|
|
735
|
+
switch ("string" === typeof thenable.status ? thenable.then(noop$1, noop$1) : (thenable.status = "pending", thenable.then(
|
|
736
|
+
function(fulfilledValue) {
|
|
737
|
+
"pending" === thenable.status && (thenable.status = "fulfilled", thenable.value = fulfilledValue);
|
|
738
|
+
},
|
|
739
|
+
function(error) {
|
|
740
|
+
"pending" === thenable.status && (thenable.status = "rejected", thenable.reason = error);
|
|
741
|
+
}
|
|
742
|
+
)), thenable.status) {
|
|
743
|
+
case "fulfilled":
|
|
744
|
+
return thenable.value;
|
|
745
|
+
case "rejected":
|
|
746
|
+
throw thenable.reason;
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
throw thenable;
|
|
750
|
+
}
|
|
751
|
+
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
752
|
+
var type = typeof children;
|
|
753
|
+
if ("undefined" === type || "boolean" === type) children = null;
|
|
754
|
+
var invokeCallback = false;
|
|
755
|
+
if (null === children) invokeCallback = true;
|
|
756
|
+
else
|
|
757
|
+
switch (type) {
|
|
758
|
+
case "bigint":
|
|
759
|
+
case "string":
|
|
760
|
+
case "number":
|
|
761
|
+
invokeCallback = true;
|
|
762
|
+
break;
|
|
763
|
+
case "object":
|
|
764
|
+
switch (children.$$typeof) {
|
|
765
|
+
case REACT_ELEMENT_TYPE:
|
|
766
|
+
case REACT_PORTAL_TYPE:
|
|
767
|
+
invokeCallback = true;
|
|
768
|
+
break;
|
|
769
|
+
case REACT_LAZY_TYPE:
|
|
770
|
+
return invokeCallback = children._init, mapIntoArray(
|
|
771
|
+
invokeCallback(children._payload),
|
|
772
|
+
array,
|
|
773
|
+
escapedPrefix,
|
|
774
|
+
nameSoFar,
|
|
775
|
+
callback
|
|
776
|
+
);
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
if (invokeCallback) {
|
|
780
|
+
invokeCallback = children;
|
|
781
|
+
callback = callback(invokeCallback);
|
|
782
|
+
var childKey = "" === nameSoFar ? "." + getElementKey(invokeCallback, 0) : nameSoFar;
|
|
783
|
+
isArrayImpl(callback) ? (escapedPrefix = "", null != childKey && (escapedPrefix = childKey.replace(userProvidedKeyEscapeRegex, "$&/") + "/"), mapIntoArray(callback, array, escapedPrefix, "", function(c) {
|
|
784
|
+
return c;
|
|
785
|
+
})) : null != callback && (isValidElement(callback) && (null != callback.key && (invokeCallback && invokeCallback.key === callback.key || checkKeyStringCoercion(callback.key)), escapedPrefix = cloneAndReplaceKey(
|
|
786
|
+
callback,
|
|
787
|
+
escapedPrefix + (null == callback.key || invokeCallback && invokeCallback.key === callback.key ? "" : ("" + callback.key).replace(
|
|
788
|
+
userProvidedKeyEscapeRegex,
|
|
789
|
+
"$&/"
|
|
790
|
+
) + "/") + childKey
|
|
791
|
+
), "" !== nameSoFar && null != invokeCallback && isValidElement(invokeCallback) && null == invokeCallback.key && invokeCallback._store && !invokeCallback._store.validated && (escapedPrefix._store.validated = 2), callback = escapedPrefix), array.push(callback));
|
|
792
|
+
return 1;
|
|
793
|
+
}
|
|
794
|
+
invokeCallback = 0;
|
|
795
|
+
childKey = "" === nameSoFar ? "." : nameSoFar + ":";
|
|
796
|
+
if (isArrayImpl(children))
|
|
797
|
+
for (var i = 0; i < children.length; i++)
|
|
798
|
+
nameSoFar = children[i], type = childKey + getElementKey(nameSoFar, i), invokeCallback += mapIntoArray(
|
|
799
|
+
nameSoFar,
|
|
800
|
+
array,
|
|
801
|
+
escapedPrefix,
|
|
802
|
+
type,
|
|
803
|
+
callback
|
|
804
|
+
);
|
|
805
|
+
else if (i = getIteratorFn(children), "function" === typeof i)
|
|
806
|
+
for (i === children.entries && (didWarnAboutMaps || console.warn(
|
|
807
|
+
"Using Maps as children is not supported. Use an array of keyed ReactElements instead."
|
|
808
|
+
), didWarnAboutMaps = true), children = i.call(children), i = 0; !(nameSoFar = children.next()).done; )
|
|
809
|
+
nameSoFar = nameSoFar.value, type = childKey + getElementKey(nameSoFar, i++), invokeCallback += mapIntoArray(
|
|
810
|
+
nameSoFar,
|
|
811
|
+
array,
|
|
812
|
+
escapedPrefix,
|
|
813
|
+
type,
|
|
814
|
+
callback
|
|
815
|
+
);
|
|
816
|
+
else if ("object" === type) {
|
|
817
|
+
if ("function" === typeof children.then)
|
|
818
|
+
return mapIntoArray(
|
|
819
|
+
resolveThenable(children),
|
|
820
|
+
array,
|
|
821
|
+
escapedPrefix,
|
|
822
|
+
nameSoFar,
|
|
823
|
+
callback
|
|
824
|
+
);
|
|
825
|
+
array = String(children);
|
|
826
|
+
throw Error(
|
|
827
|
+
"Objects are not valid as a React child (found: " + ("[object Object]" === array ? "object with keys {" + Object.keys(children).join(", ") + "}" : array) + "). If you meant to render a collection of children, use an array instead."
|
|
828
|
+
);
|
|
829
|
+
}
|
|
830
|
+
return invokeCallback;
|
|
831
|
+
}
|
|
832
|
+
function mapChildren(children, func, context) {
|
|
833
|
+
if (null == children) return children;
|
|
834
|
+
var result = [], count = 0;
|
|
835
|
+
mapIntoArray(children, result, "", "", function(child) {
|
|
836
|
+
return func.call(context, child, count++);
|
|
837
|
+
});
|
|
838
|
+
return result;
|
|
839
|
+
}
|
|
840
|
+
function lazyInitializer(payload) {
|
|
841
|
+
if (-1 === payload._status) {
|
|
842
|
+
var ctor = payload._result;
|
|
843
|
+
ctor = ctor();
|
|
844
|
+
ctor.then(
|
|
845
|
+
function(moduleObject) {
|
|
846
|
+
if (0 === payload._status || -1 === payload._status)
|
|
847
|
+
payload._status = 1, payload._result = moduleObject;
|
|
848
|
+
},
|
|
849
|
+
function(error) {
|
|
850
|
+
if (0 === payload._status || -1 === payload._status)
|
|
851
|
+
payload._status = 2, payload._result = error;
|
|
852
|
+
}
|
|
853
|
+
);
|
|
854
|
+
-1 === payload._status && (payload._status = 0, payload._result = ctor);
|
|
855
|
+
}
|
|
856
|
+
if (1 === payload._status)
|
|
857
|
+
return ctor = payload._result, void 0 === ctor && console.error(
|
|
858
|
+
"lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?",
|
|
859
|
+
ctor
|
|
860
|
+
), "default" in ctor || console.error(
|
|
861
|
+
"lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))",
|
|
862
|
+
ctor
|
|
863
|
+
), ctor.default;
|
|
864
|
+
throw payload._result;
|
|
865
|
+
}
|
|
866
|
+
function resolveDispatcher() {
|
|
867
|
+
var dispatcher = ReactSharedInternals.H;
|
|
868
|
+
null === dispatcher && console.error(
|
|
869
|
+
"Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."
|
|
870
|
+
);
|
|
871
|
+
return dispatcher;
|
|
872
|
+
}
|
|
873
|
+
function noop() {
|
|
874
|
+
}
|
|
875
|
+
function enqueueTask(task) {
|
|
876
|
+
if (null === enqueueTaskImpl)
|
|
877
|
+
try {
|
|
878
|
+
var requireString = ("require" + Math.random()).slice(0, 7);
|
|
879
|
+
enqueueTaskImpl = (module && module[requireString]).call(
|
|
880
|
+
module,
|
|
881
|
+
"timers"
|
|
882
|
+
).setImmediate;
|
|
883
|
+
} catch (_err) {
|
|
884
|
+
enqueueTaskImpl = function(callback) {
|
|
885
|
+
false === didWarnAboutMessageChannel && (didWarnAboutMessageChannel = true, "undefined" === typeof MessageChannel && console.error(
|
|
886
|
+
"This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."
|
|
887
|
+
));
|
|
888
|
+
var channel = new MessageChannel();
|
|
889
|
+
channel.port1.onmessage = callback;
|
|
890
|
+
channel.port2.postMessage(void 0);
|
|
891
|
+
};
|
|
892
|
+
}
|
|
893
|
+
return enqueueTaskImpl(task);
|
|
894
|
+
}
|
|
895
|
+
function aggregateErrors(errors) {
|
|
896
|
+
return 1 < errors.length && "function" === typeof AggregateError ? new AggregateError(errors) : errors[0];
|
|
897
|
+
}
|
|
898
|
+
function popActScope(prevActQueue, prevActScopeDepth) {
|
|
899
|
+
prevActScopeDepth !== actScopeDepth - 1 && console.error(
|
|
900
|
+
"You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "
|
|
901
|
+
);
|
|
902
|
+
actScopeDepth = prevActScopeDepth;
|
|
903
|
+
}
|
|
904
|
+
function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
|
|
905
|
+
var queue = ReactSharedInternals.actQueue;
|
|
906
|
+
if (null !== queue)
|
|
907
|
+
if (0 !== queue.length)
|
|
908
|
+
try {
|
|
909
|
+
flushActQueue(queue);
|
|
910
|
+
enqueueTask(function() {
|
|
911
|
+
return recursivelyFlushAsyncActWork(returnValue, resolve, reject);
|
|
912
|
+
});
|
|
913
|
+
return;
|
|
914
|
+
} catch (error) {
|
|
915
|
+
ReactSharedInternals.thrownErrors.push(error);
|
|
916
|
+
}
|
|
917
|
+
else ReactSharedInternals.actQueue = null;
|
|
918
|
+
0 < ReactSharedInternals.thrownErrors.length ? (queue = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, reject(queue)) : resolve(returnValue);
|
|
919
|
+
}
|
|
920
|
+
function flushActQueue(queue) {
|
|
921
|
+
if (!isFlushing) {
|
|
922
|
+
isFlushing = true;
|
|
923
|
+
var i = 0;
|
|
924
|
+
try {
|
|
925
|
+
for (; i < queue.length; i++) {
|
|
926
|
+
var callback = queue[i];
|
|
927
|
+
do {
|
|
928
|
+
ReactSharedInternals.didUsePromise = false;
|
|
929
|
+
var continuation = callback(false);
|
|
930
|
+
if (null !== continuation) {
|
|
931
|
+
if (ReactSharedInternals.didUsePromise) {
|
|
932
|
+
queue[i] = callback;
|
|
933
|
+
queue.splice(0, i);
|
|
934
|
+
return;
|
|
935
|
+
}
|
|
936
|
+
callback = continuation;
|
|
937
|
+
} else break;
|
|
938
|
+
} while (1);
|
|
939
|
+
}
|
|
940
|
+
queue.length = 0;
|
|
941
|
+
} catch (error) {
|
|
942
|
+
queue.splice(0, i + 1), ReactSharedInternals.thrownErrors.push(error);
|
|
943
|
+
} finally {
|
|
944
|
+
isFlushing = false;
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
}
|
|
948
|
+
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
|
|
949
|
+
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
|
950
|
+
var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), MAYBE_ITERATOR_SYMBOL = Symbol.iterator, didWarnStateUpdateForUnmountedComponent = {}, ReactNoopUpdateQueue = {
|
|
951
|
+
isMounted: function() {
|
|
952
|
+
return false;
|
|
953
|
+
},
|
|
954
|
+
enqueueForceUpdate: function(publicInstance) {
|
|
955
|
+
warnNoop(publicInstance, "forceUpdate");
|
|
956
|
+
},
|
|
957
|
+
enqueueReplaceState: function(publicInstance) {
|
|
958
|
+
warnNoop(publicInstance, "replaceState");
|
|
959
|
+
},
|
|
960
|
+
enqueueSetState: function(publicInstance) {
|
|
961
|
+
warnNoop(publicInstance, "setState");
|
|
962
|
+
}
|
|
963
|
+
}, assign = Object.assign, emptyObject = {};
|
|
964
|
+
Object.freeze(emptyObject);
|
|
965
|
+
Component.prototype.isReactComponent = {};
|
|
966
|
+
Component.prototype.setState = function(partialState, callback) {
|
|
967
|
+
if ("object" !== typeof partialState && "function" !== typeof partialState && null != partialState)
|
|
968
|
+
throw Error(
|
|
969
|
+
"takes an object of state variables to update or a function which returns an object of state variables."
|
|
970
|
+
);
|
|
971
|
+
this.updater.enqueueSetState(this, partialState, callback, "setState");
|
|
972
|
+
};
|
|
973
|
+
Component.prototype.forceUpdate = function(callback) {
|
|
974
|
+
this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
|
|
975
|
+
};
|
|
976
|
+
var deprecatedAPIs = {
|
|
977
|
+
isMounted: [
|
|
978
|
+
"isMounted",
|
|
979
|
+
"Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."
|
|
980
|
+
],
|
|
981
|
+
replaceState: [
|
|
982
|
+
"replaceState",
|
|
983
|
+
"Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."
|
|
984
|
+
]
|
|
985
|
+
}, fnName;
|
|
986
|
+
for (fnName in deprecatedAPIs)
|
|
987
|
+
deprecatedAPIs.hasOwnProperty(fnName) && defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
|
|
988
|
+
ComponentDummy.prototype = Component.prototype;
|
|
989
|
+
deprecatedAPIs = PureComponent.prototype = new ComponentDummy();
|
|
990
|
+
deprecatedAPIs.constructor = PureComponent;
|
|
991
|
+
assign(deprecatedAPIs, Component.prototype);
|
|
992
|
+
deprecatedAPIs.isPureReactComponent = true;
|
|
993
|
+
var isArrayImpl = Array.isArray, REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = {
|
|
994
|
+
H: null,
|
|
995
|
+
A: null,
|
|
996
|
+
T: null,
|
|
997
|
+
S: null,
|
|
998
|
+
V: null,
|
|
999
|
+
actQueue: null,
|
|
1000
|
+
isBatchingLegacy: false,
|
|
1001
|
+
didScheduleLegacyUpdate: false,
|
|
1002
|
+
didUsePromise: false,
|
|
1003
|
+
thrownErrors: [],
|
|
1004
|
+
getCurrentStack: null,
|
|
1005
|
+
recentlyCreatedOwnerStacks: 0
|
|
1006
|
+
}, hasOwnProperty = Object.prototype.hasOwnProperty, createTask = console.createTask ? console.createTask : function() {
|
|
1007
|
+
return null;
|
|
1008
|
+
};
|
|
1009
|
+
deprecatedAPIs = {
|
|
1010
|
+
react_stack_bottom_frame: function(callStackForError) {
|
|
1011
|
+
return callStackForError();
|
|
1012
|
+
}
|
|
1013
|
+
};
|
|
1014
|
+
var specialPropKeyWarningShown, didWarnAboutOldJSXRuntime;
|
|
1015
|
+
var didWarnAboutElementRef = {};
|
|
1016
|
+
var unknownOwnerDebugStack = deprecatedAPIs.react_stack_bottom_frame.bind(
|
|
1017
|
+
deprecatedAPIs,
|
|
1018
|
+
UnknownOwner
|
|
1019
|
+
)();
|
|
1020
|
+
var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
|
|
1021
|
+
var didWarnAboutMaps = false, userProvidedKeyEscapeRegex = /\/+/g, reportGlobalError = "function" === typeof reportError ? reportError : function(error) {
|
|
1022
|
+
if ("object" === typeof window && "function" === typeof window.ErrorEvent) {
|
|
1023
|
+
var event = new window.ErrorEvent("error", {
|
|
1024
|
+
bubbles: true,
|
|
1025
|
+
cancelable: true,
|
|
1026
|
+
message: "object" === typeof error && null !== error && "string" === typeof error.message ? String(error.message) : String(error),
|
|
1027
|
+
error
|
|
1028
|
+
});
|
|
1029
|
+
if (!window.dispatchEvent(event)) return;
|
|
1030
|
+
} else if ("object" === typeof process && "function" === typeof process.emit) {
|
|
1031
|
+
process.emit("uncaughtException", error);
|
|
1032
|
+
return;
|
|
1033
|
+
}
|
|
1034
|
+
console.error(error);
|
|
1035
|
+
}, didWarnAboutMessageChannel = false, enqueueTaskImpl = null, actScopeDepth = 0, didWarnNoAwaitAct = false, isFlushing = false, queueSeveralMicrotasks = "function" === typeof queueMicrotask ? function(callback) {
|
|
1036
|
+
queueMicrotask(function() {
|
|
1037
|
+
return queueMicrotask(callback);
|
|
1038
|
+
});
|
|
1039
|
+
} : enqueueTask;
|
|
1040
|
+
deprecatedAPIs = Object.freeze({
|
|
1041
|
+
__proto__: null,
|
|
1042
|
+
c: function(size) {
|
|
1043
|
+
return resolveDispatcher().useMemoCache(size);
|
|
1044
|
+
}
|
|
1045
|
+
});
|
|
1046
|
+
exports.Children = {
|
|
1047
|
+
map: mapChildren,
|
|
1048
|
+
forEach: function(children, forEachFunc, forEachContext) {
|
|
1049
|
+
mapChildren(
|
|
1050
|
+
children,
|
|
1051
|
+
function() {
|
|
1052
|
+
forEachFunc.apply(this, arguments);
|
|
1053
|
+
},
|
|
1054
|
+
forEachContext
|
|
1055
|
+
);
|
|
1056
|
+
},
|
|
1057
|
+
count: function(children) {
|
|
1058
|
+
var n = 0;
|
|
1059
|
+
mapChildren(children, function() {
|
|
1060
|
+
n++;
|
|
1061
|
+
});
|
|
1062
|
+
return n;
|
|
1063
|
+
},
|
|
1064
|
+
toArray: function(children) {
|
|
1065
|
+
return mapChildren(children, function(child) {
|
|
1066
|
+
return child;
|
|
1067
|
+
}) || [];
|
|
1068
|
+
},
|
|
1069
|
+
only: function(children) {
|
|
1070
|
+
if (!isValidElement(children))
|
|
1071
|
+
throw Error(
|
|
1072
|
+
"React.Children.only expected to receive a single React element child."
|
|
1073
|
+
);
|
|
1074
|
+
return children;
|
|
1075
|
+
}
|
|
1076
|
+
};
|
|
1077
|
+
exports.Component = Component;
|
|
1078
|
+
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
1079
|
+
exports.Profiler = REACT_PROFILER_TYPE;
|
|
1080
|
+
exports.PureComponent = PureComponent;
|
|
1081
|
+
exports.StrictMode = REACT_STRICT_MODE_TYPE;
|
|
1082
|
+
exports.Suspense = REACT_SUSPENSE_TYPE;
|
|
1083
|
+
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = ReactSharedInternals;
|
|
1084
|
+
exports.__COMPILER_RUNTIME = deprecatedAPIs;
|
|
1085
|
+
exports.act = function(callback) {
|
|
1086
|
+
var prevActQueue = ReactSharedInternals.actQueue, prevActScopeDepth = actScopeDepth;
|
|
1087
|
+
actScopeDepth++;
|
|
1088
|
+
var queue = ReactSharedInternals.actQueue = null !== prevActQueue ? prevActQueue : [], didAwaitActCall = false;
|
|
1089
|
+
try {
|
|
1090
|
+
var result = callback();
|
|
1091
|
+
} catch (error) {
|
|
1092
|
+
ReactSharedInternals.thrownErrors.push(error);
|
|
1093
|
+
}
|
|
1094
|
+
if (0 < ReactSharedInternals.thrownErrors.length)
|
|
1095
|
+
throw popActScope(prevActQueue, prevActScopeDepth), callback = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, callback;
|
|
1096
|
+
if (null !== result && "object" === typeof result && "function" === typeof result.then) {
|
|
1097
|
+
var thenable = result;
|
|
1098
|
+
queueSeveralMicrotasks(function() {
|
|
1099
|
+
didAwaitActCall || didWarnNoAwaitAct || (didWarnNoAwaitAct = true, console.error(
|
|
1100
|
+
"You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);"
|
|
1101
|
+
));
|
|
1102
|
+
});
|
|
1103
|
+
return {
|
|
1104
|
+
then: function(resolve, reject) {
|
|
1105
|
+
didAwaitActCall = true;
|
|
1106
|
+
thenable.then(
|
|
1107
|
+
function(returnValue) {
|
|
1108
|
+
popActScope(prevActQueue, prevActScopeDepth);
|
|
1109
|
+
if (0 === prevActScopeDepth) {
|
|
1110
|
+
try {
|
|
1111
|
+
flushActQueue(queue), enqueueTask(function() {
|
|
1112
|
+
return recursivelyFlushAsyncActWork(
|
|
1113
|
+
returnValue,
|
|
1114
|
+
resolve,
|
|
1115
|
+
reject
|
|
1116
|
+
);
|
|
1117
|
+
});
|
|
1118
|
+
} catch (error$0) {
|
|
1119
|
+
ReactSharedInternals.thrownErrors.push(error$0);
|
|
1120
|
+
}
|
|
1121
|
+
if (0 < ReactSharedInternals.thrownErrors.length) {
|
|
1122
|
+
var _thrownError = aggregateErrors(
|
|
1123
|
+
ReactSharedInternals.thrownErrors
|
|
1124
|
+
);
|
|
1125
|
+
ReactSharedInternals.thrownErrors.length = 0;
|
|
1126
|
+
reject(_thrownError);
|
|
1127
|
+
}
|
|
1128
|
+
} else resolve(returnValue);
|
|
1129
|
+
},
|
|
1130
|
+
function(error) {
|
|
1131
|
+
popActScope(prevActQueue, prevActScopeDepth);
|
|
1132
|
+
0 < ReactSharedInternals.thrownErrors.length ? (error = aggregateErrors(
|
|
1133
|
+
ReactSharedInternals.thrownErrors
|
|
1134
|
+
), ReactSharedInternals.thrownErrors.length = 0, reject(error)) : reject(error);
|
|
1135
|
+
}
|
|
1136
|
+
);
|
|
1137
|
+
}
|
|
1138
|
+
};
|
|
1139
|
+
}
|
|
1140
|
+
var returnValue$jscomp$0 = result;
|
|
1141
|
+
popActScope(prevActQueue, prevActScopeDepth);
|
|
1142
|
+
0 === prevActScopeDepth && (flushActQueue(queue), 0 !== queue.length && queueSeveralMicrotasks(function() {
|
|
1143
|
+
didAwaitActCall || didWarnNoAwaitAct || (didWarnNoAwaitAct = true, console.error(
|
|
1144
|
+
"A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)"
|
|
1145
|
+
));
|
|
1146
|
+
}), ReactSharedInternals.actQueue = null);
|
|
1147
|
+
if (0 < ReactSharedInternals.thrownErrors.length)
|
|
1148
|
+
throw callback = aggregateErrors(ReactSharedInternals.thrownErrors), ReactSharedInternals.thrownErrors.length = 0, callback;
|
|
1149
|
+
return {
|
|
1150
|
+
then: function(resolve, reject) {
|
|
1151
|
+
didAwaitActCall = true;
|
|
1152
|
+
0 === prevActScopeDepth ? (ReactSharedInternals.actQueue = queue, enqueueTask(function() {
|
|
1153
|
+
return recursivelyFlushAsyncActWork(
|
|
1154
|
+
returnValue$jscomp$0,
|
|
1155
|
+
resolve,
|
|
1156
|
+
reject
|
|
1157
|
+
);
|
|
1158
|
+
})) : resolve(returnValue$jscomp$0);
|
|
1159
|
+
}
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
exports.cache = function(fn) {
|
|
1163
|
+
return function() {
|
|
1164
|
+
return fn.apply(null, arguments);
|
|
1165
|
+
};
|
|
1166
|
+
};
|
|
1167
|
+
exports.captureOwnerStack = function() {
|
|
1168
|
+
var getCurrentStack = ReactSharedInternals.getCurrentStack;
|
|
1169
|
+
return null === getCurrentStack ? null : getCurrentStack();
|
|
1170
|
+
};
|
|
1171
|
+
exports.cloneElement = function(element, config, children) {
|
|
1172
|
+
if (null === element || void 0 === element)
|
|
1173
|
+
throw Error(
|
|
1174
|
+
"The argument must be a React element, but you passed " + element + "."
|
|
1175
|
+
);
|
|
1176
|
+
var props = assign({}, element.props), key = element.key, owner = element._owner;
|
|
1177
|
+
if (null != config) {
|
|
1178
|
+
var JSCompiler_inline_result;
|
|
1179
|
+
a: {
|
|
1180
|
+
if (hasOwnProperty.call(config, "ref") && (JSCompiler_inline_result = Object.getOwnPropertyDescriptor(
|
|
1181
|
+
config,
|
|
1182
|
+
"ref"
|
|
1183
|
+
).get) && JSCompiler_inline_result.isReactWarning) {
|
|
1184
|
+
JSCompiler_inline_result = false;
|
|
1185
|
+
break a;
|
|
1186
|
+
}
|
|
1187
|
+
JSCompiler_inline_result = void 0 !== config.ref;
|
|
1188
|
+
}
|
|
1189
|
+
JSCompiler_inline_result && (owner = getOwner());
|
|
1190
|
+
hasValidKey(config) && (checkKeyStringCoercion(config.key), key = "" + config.key);
|
|
1191
|
+
for (propName in config)
|
|
1192
|
+
!hasOwnProperty.call(config, propName) || "key" === propName || "__self" === propName || "__source" === propName || "ref" === propName && void 0 === config.ref || (props[propName] = config[propName]);
|
|
1193
|
+
}
|
|
1194
|
+
var propName = arguments.length - 2;
|
|
1195
|
+
if (1 === propName) props.children = children;
|
|
1196
|
+
else if (1 < propName) {
|
|
1197
|
+
JSCompiler_inline_result = Array(propName);
|
|
1198
|
+
for (var i = 0; i < propName; i++)
|
|
1199
|
+
JSCompiler_inline_result[i] = arguments[i + 2];
|
|
1200
|
+
props.children = JSCompiler_inline_result;
|
|
1201
|
+
}
|
|
1202
|
+
props = ReactElement(
|
|
1203
|
+
element.type,
|
|
1204
|
+
key,
|
|
1205
|
+
void 0,
|
|
1206
|
+
void 0,
|
|
1207
|
+
owner,
|
|
1208
|
+
props,
|
|
1209
|
+
element._debugStack,
|
|
1210
|
+
element._debugTask
|
|
1211
|
+
);
|
|
1212
|
+
for (key = 2; key < arguments.length; key++)
|
|
1213
|
+
owner = arguments[key], isValidElement(owner) && owner._store && (owner._store.validated = 1);
|
|
1214
|
+
return props;
|
|
1215
|
+
};
|
|
1216
|
+
exports.createContext = function(defaultValue) {
|
|
1217
|
+
defaultValue = {
|
|
1218
|
+
$$typeof: REACT_CONTEXT_TYPE,
|
|
1219
|
+
_currentValue: defaultValue,
|
|
1220
|
+
_currentValue2: defaultValue,
|
|
1221
|
+
_threadCount: 0,
|
|
1222
|
+
Provider: null,
|
|
1223
|
+
Consumer: null
|
|
1224
|
+
};
|
|
1225
|
+
defaultValue.Provider = defaultValue;
|
|
1226
|
+
defaultValue.Consumer = {
|
|
1227
|
+
$$typeof: REACT_CONSUMER_TYPE,
|
|
1228
|
+
_context: defaultValue
|
|
1229
|
+
};
|
|
1230
|
+
defaultValue._currentRenderer = null;
|
|
1231
|
+
defaultValue._currentRenderer2 = null;
|
|
1232
|
+
return defaultValue;
|
|
1233
|
+
};
|
|
1234
|
+
exports.createElement = function(type, config, children) {
|
|
1235
|
+
for (var i = 2; i < arguments.length; i++) {
|
|
1236
|
+
var node = arguments[i];
|
|
1237
|
+
isValidElement(node) && node._store && (node._store.validated = 1);
|
|
1238
|
+
}
|
|
1239
|
+
i = {};
|
|
1240
|
+
node = null;
|
|
1241
|
+
if (null != config)
|
|
1242
|
+
for (propName in didWarnAboutOldJSXRuntime || !("__self" in config) || "key" in config || (didWarnAboutOldJSXRuntime = true, console.warn(
|
|
1243
|
+
"Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform"
|
|
1244
|
+
)), hasValidKey(config) && (checkKeyStringCoercion(config.key), node = "" + config.key), config)
|
|
1245
|
+
hasOwnProperty.call(config, propName) && "key" !== propName && "__self" !== propName && "__source" !== propName && (i[propName] = config[propName]);
|
|
1246
|
+
var childrenLength = arguments.length - 2;
|
|
1247
|
+
if (1 === childrenLength) i.children = children;
|
|
1248
|
+
else if (1 < childrenLength) {
|
|
1249
|
+
for (var childArray = Array(childrenLength), _i = 0; _i < childrenLength; _i++)
|
|
1250
|
+
childArray[_i] = arguments[_i + 2];
|
|
1251
|
+
Object.freeze && Object.freeze(childArray);
|
|
1252
|
+
i.children = childArray;
|
|
1253
|
+
}
|
|
1254
|
+
if (type && type.defaultProps)
|
|
1255
|
+
for (propName in childrenLength = type.defaultProps, childrenLength)
|
|
1256
|
+
void 0 === i[propName] && (i[propName] = childrenLength[propName]);
|
|
1257
|
+
node && defineKeyPropWarningGetter(
|
|
1258
|
+
i,
|
|
1259
|
+
"function" === typeof type ? type.displayName || type.name || "Unknown" : type
|
|
1260
|
+
);
|
|
1261
|
+
var propName = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
|
|
1262
|
+
return ReactElement(
|
|
1263
|
+
type,
|
|
1264
|
+
node,
|
|
1265
|
+
void 0,
|
|
1266
|
+
void 0,
|
|
1267
|
+
getOwner(),
|
|
1268
|
+
i,
|
|
1269
|
+
propName ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
|
|
1270
|
+
propName ? createTask(getTaskName(type)) : unknownOwnerDebugTask
|
|
1271
|
+
);
|
|
1272
|
+
};
|
|
1273
|
+
exports.createRef = function() {
|
|
1274
|
+
var refObject = { current: null };
|
|
1275
|
+
Object.seal(refObject);
|
|
1276
|
+
return refObject;
|
|
1277
|
+
};
|
|
1278
|
+
exports.forwardRef = function(render) {
|
|
1279
|
+
null != render && render.$$typeof === REACT_MEMO_TYPE ? console.error(
|
|
1280
|
+
"forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."
|
|
1281
|
+
) : "function" !== typeof render ? console.error(
|
|
1282
|
+
"forwardRef requires a render function but was given %s.",
|
|
1283
|
+
null === render ? "null" : typeof render
|
|
1284
|
+
) : 0 !== render.length && 2 !== render.length && console.error(
|
|
1285
|
+
"forwardRef render functions accept exactly two parameters: props and ref. %s",
|
|
1286
|
+
1 === render.length ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined."
|
|
1287
|
+
);
|
|
1288
|
+
null != render && null != render.defaultProps && console.error(
|
|
1289
|
+
"forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?"
|
|
1290
|
+
);
|
|
1291
|
+
var elementType = { $$typeof: REACT_FORWARD_REF_TYPE, render }, ownName;
|
|
1292
|
+
Object.defineProperty(elementType, "displayName", {
|
|
1293
|
+
enumerable: false,
|
|
1294
|
+
configurable: true,
|
|
1295
|
+
get: function() {
|
|
1296
|
+
return ownName;
|
|
1297
|
+
},
|
|
1298
|
+
set: function(name) {
|
|
1299
|
+
ownName = name;
|
|
1300
|
+
render.name || render.displayName || (Object.defineProperty(render, "name", { value: name }), render.displayName = name);
|
|
1301
|
+
}
|
|
1302
|
+
});
|
|
1303
|
+
return elementType;
|
|
1304
|
+
};
|
|
1305
|
+
exports.isValidElement = isValidElement;
|
|
1306
|
+
exports.lazy = function(ctor) {
|
|
1307
|
+
return {
|
|
1308
|
+
$$typeof: REACT_LAZY_TYPE,
|
|
1309
|
+
_payload: { _status: -1, _result: ctor },
|
|
1310
|
+
_init: lazyInitializer
|
|
1311
|
+
};
|
|
1312
|
+
};
|
|
1313
|
+
exports.memo = function(type, compare) {
|
|
1314
|
+
null == type && console.error(
|
|
1315
|
+
"memo: The first argument must be a component. Instead received: %s",
|
|
1316
|
+
null === type ? "null" : typeof type
|
|
1317
|
+
);
|
|
1318
|
+
compare = {
|
|
1319
|
+
$$typeof: REACT_MEMO_TYPE,
|
|
1320
|
+
type,
|
|
1321
|
+
compare: void 0 === compare ? null : compare
|
|
1322
|
+
};
|
|
1323
|
+
var ownName;
|
|
1324
|
+
Object.defineProperty(compare, "displayName", {
|
|
1325
|
+
enumerable: false,
|
|
1326
|
+
configurable: true,
|
|
1327
|
+
get: function() {
|
|
1328
|
+
return ownName;
|
|
1329
|
+
},
|
|
1330
|
+
set: function(name) {
|
|
1331
|
+
ownName = name;
|
|
1332
|
+
type.name || type.displayName || (Object.defineProperty(type, "name", { value: name }), type.displayName = name);
|
|
1333
|
+
}
|
|
1334
|
+
});
|
|
1335
|
+
return compare;
|
|
1336
|
+
};
|
|
1337
|
+
exports.startTransition = function(scope) {
|
|
1338
|
+
var prevTransition = ReactSharedInternals.T, currentTransition = {};
|
|
1339
|
+
ReactSharedInternals.T = currentTransition;
|
|
1340
|
+
currentTransition._updatedFibers = /* @__PURE__ */ new Set();
|
|
1341
|
+
try {
|
|
1342
|
+
var returnValue = scope(), onStartTransitionFinish = ReactSharedInternals.S;
|
|
1343
|
+
null !== onStartTransitionFinish && onStartTransitionFinish(currentTransition, returnValue);
|
|
1344
|
+
"object" === typeof returnValue && null !== returnValue && "function" === typeof returnValue.then && returnValue.then(noop, reportGlobalError);
|
|
1345
|
+
} catch (error) {
|
|
1346
|
+
reportGlobalError(error);
|
|
1347
|
+
} finally {
|
|
1348
|
+
null === prevTransition && currentTransition._updatedFibers && (scope = currentTransition._updatedFibers.size, currentTransition._updatedFibers.clear(), 10 < scope && console.warn(
|
|
1349
|
+
"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."
|
|
1350
|
+
)), ReactSharedInternals.T = prevTransition;
|
|
1351
|
+
}
|
|
1352
|
+
};
|
|
1353
|
+
exports.unstable_useCacheRefresh = function() {
|
|
1354
|
+
return resolveDispatcher().useCacheRefresh();
|
|
1355
|
+
};
|
|
1356
|
+
exports.use = function(usable) {
|
|
1357
|
+
return resolveDispatcher().use(usable);
|
|
1358
|
+
};
|
|
1359
|
+
exports.useActionState = function(action, initialState, permalink) {
|
|
1360
|
+
return resolveDispatcher().useActionState(
|
|
1361
|
+
action,
|
|
1362
|
+
initialState,
|
|
1363
|
+
permalink
|
|
1364
|
+
);
|
|
1365
|
+
};
|
|
1366
|
+
exports.useCallback = function(callback, deps) {
|
|
1367
|
+
return resolveDispatcher().useCallback(callback, deps);
|
|
1368
|
+
};
|
|
1369
|
+
exports.useContext = function(Context) {
|
|
1370
|
+
var dispatcher = resolveDispatcher();
|
|
1371
|
+
Context.$$typeof === REACT_CONSUMER_TYPE && console.error(
|
|
1372
|
+
"Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?"
|
|
1373
|
+
);
|
|
1374
|
+
return dispatcher.useContext(Context);
|
|
1375
|
+
};
|
|
1376
|
+
exports.useDebugValue = function(value, formatterFn) {
|
|
1377
|
+
return resolveDispatcher().useDebugValue(value, formatterFn);
|
|
1378
|
+
};
|
|
1379
|
+
exports.useDeferredValue = function(value, initialValue) {
|
|
1380
|
+
return resolveDispatcher().useDeferredValue(value, initialValue);
|
|
1381
|
+
};
|
|
1382
|
+
exports.useEffect = function(create, createDeps, update) {
|
|
1383
|
+
null == create && console.warn(
|
|
1384
|
+
"React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?"
|
|
1385
|
+
);
|
|
1386
|
+
var dispatcher = resolveDispatcher();
|
|
1387
|
+
if ("function" === typeof update)
|
|
1388
|
+
throw Error(
|
|
1389
|
+
"useEffect CRUD overload is not enabled in this build of React."
|
|
1390
|
+
);
|
|
1391
|
+
return dispatcher.useEffect(create, createDeps);
|
|
1392
|
+
};
|
|
1393
|
+
exports.useId = function() {
|
|
1394
|
+
return resolveDispatcher().useId();
|
|
1395
|
+
};
|
|
1396
|
+
exports.useImperativeHandle = function(ref, create, deps) {
|
|
1397
|
+
return resolveDispatcher().useImperativeHandle(ref, create, deps);
|
|
1398
|
+
};
|
|
1399
|
+
exports.useInsertionEffect = function(create, deps) {
|
|
1400
|
+
null == create && console.warn(
|
|
1401
|
+
"React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?"
|
|
1402
|
+
);
|
|
1403
|
+
return resolveDispatcher().useInsertionEffect(create, deps);
|
|
1404
|
+
};
|
|
1405
|
+
exports.useLayoutEffect = function(create, deps) {
|
|
1406
|
+
null == create && console.warn(
|
|
1407
|
+
"React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?"
|
|
1408
|
+
);
|
|
1409
|
+
return resolveDispatcher().useLayoutEffect(create, deps);
|
|
1410
|
+
};
|
|
1411
|
+
exports.useMemo = function(create, deps) {
|
|
1412
|
+
return resolveDispatcher().useMemo(create, deps);
|
|
1413
|
+
};
|
|
1414
|
+
exports.useOptimistic = function(passthrough, reducer) {
|
|
1415
|
+
return resolveDispatcher().useOptimistic(passthrough, reducer);
|
|
1416
|
+
};
|
|
1417
|
+
exports.useReducer = function(reducer, initialArg, init) {
|
|
1418
|
+
return resolveDispatcher().useReducer(reducer, initialArg, init);
|
|
1419
|
+
};
|
|
1420
|
+
exports.useRef = function(initialValue) {
|
|
1421
|
+
return resolveDispatcher().useRef(initialValue);
|
|
1422
|
+
};
|
|
1423
|
+
exports.useState = function(initialState) {
|
|
1424
|
+
return resolveDispatcher().useState(initialState);
|
|
1425
|
+
};
|
|
1426
|
+
exports.useSyncExternalStore = function(subscribe, getSnapshot, getServerSnapshot) {
|
|
1427
|
+
return resolveDispatcher().useSyncExternalStore(
|
|
1428
|
+
subscribe,
|
|
1429
|
+
getSnapshot,
|
|
1430
|
+
getServerSnapshot
|
|
1431
|
+
);
|
|
1432
|
+
};
|
|
1433
|
+
exports.useTransition = function() {
|
|
1434
|
+
return resolveDispatcher().useTransition();
|
|
1435
|
+
};
|
|
1436
|
+
exports.version = "19.1.1";
|
|
1437
|
+
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
|
|
1438
|
+
})();
|
|
1439
|
+
}
|
|
1440
|
+
});
|
|
1441
|
+
|
|
1442
|
+
// ../../node_modules/react/index.js
|
|
1443
|
+
var require_react = __commonJS({
|
|
1444
|
+
"../../node_modules/react/index.js"(exports, module) {
|
|
1445
|
+
if (process.env.NODE_ENV === "production") {
|
|
1446
|
+
module.exports = require_react_production();
|
|
1447
|
+
} else {
|
|
1448
|
+
module.exports = require_react_development();
|
|
1449
|
+
}
|
|
1450
|
+
}
|
|
1451
|
+
});
|
|
1452
|
+
|
|
1453
|
+
// ../../node_modules/react/cjs/react-jsx-runtime.development.js
|
|
1454
|
+
var require_react_jsx_runtime_development = __commonJS({
|
|
1455
|
+
"../../node_modules/react/cjs/react-jsx-runtime.development.js"(exports) {
|
|
1456
|
+
"production" !== process.env.NODE_ENV && (function() {
|
|
1457
|
+
function getComponentNameFromType(type) {
|
|
1458
|
+
if (null == type) return null;
|
|
1459
|
+
if ("function" === typeof type)
|
|
1460
|
+
return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
|
|
1461
|
+
if ("string" === typeof type) return type;
|
|
1462
|
+
switch (type) {
|
|
1463
|
+
case REACT_FRAGMENT_TYPE:
|
|
1464
|
+
return "Fragment";
|
|
1465
|
+
case REACT_PROFILER_TYPE:
|
|
1466
|
+
return "Profiler";
|
|
1467
|
+
case REACT_STRICT_MODE_TYPE:
|
|
1468
|
+
return "StrictMode";
|
|
1469
|
+
case REACT_SUSPENSE_TYPE:
|
|
1470
|
+
return "Suspense";
|
|
1471
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
|
1472
|
+
return "SuspenseList";
|
|
1473
|
+
case REACT_ACTIVITY_TYPE:
|
|
1474
|
+
return "Activity";
|
|
1475
|
+
}
|
|
1476
|
+
if ("object" === typeof type)
|
|
1477
|
+
switch ("number" === typeof type.tag && console.error(
|
|
1478
|
+
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
|
|
1479
|
+
), type.$$typeof) {
|
|
1480
|
+
case REACT_PORTAL_TYPE:
|
|
1481
|
+
return "Portal";
|
|
1482
|
+
case REACT_CONTEXT_TYPE:
|
|
1483
|
+
return (type.displayName || "Context") + ".Provider";
|
|
1484
|
+
case REACT_CONSUMER_TYPE:
|
|
1485
|
+
return (type._context.displayName || "Context") + ".Consumer";
|
|
1486
|
+
case REACT_FORWARD_REF_TYPE:
|
|
1487
|
+
var innerType = type.render;
|
|
1488
|
+
type = type.displayName;
|
|
1489
|
+
type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
|
|
1490
|
+
return type;
|
|
1491
|
+
case REACT_MEMO_TYPE:
|
|
1492
|
+
return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
|
|
1493
|
+
case REACT_LAZY_TYPE:
|
|
1494
|
+
innerType = type._payload;
|
|
1495
|
+
type = type._init;
|
|
1496
|
+
try {
|
|
1497
|
+
return getComponentNameFromType(type(innerType));
|
|
1498
|
+
} catch (x) {
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
return null;
|
|
1502
|
+
}
|
|
1503
|
+
function testStringCoercion(value) {
|
|
1504
|
+
return "" + value;
|
|
1505
|
+
}
|
|
1506
|
+
function checkKeyStringCoercion(value) {
|
|
1507
|
+
try {
|
|
1508
|
+
testStringCoercion(value);
|
|
1509
|
+
var JSCompiler_inline_result = false;
|
|
1510
|
+
} catch (e) {
|
|
1511
|
+
JSCompiler_inline_result = true;
|
|
1512
|
+
}
|
|
1513
|
+
if (JSCompiler_inline_result) {
|
|
1514
|
+
JSCompiler_inline_result = console;
|
|
1515
|
+
var JSCompiler_temp_const = JSCompiler_inline_result.error;
|
|
1516
|
+
var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
|
1517
|
+
JSCompiler_temp_const.call(
|
|
1518
|
+
JSCompiler_inline_result,
|
|
1519
|
+
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
|
|
1520
|
+
JSCompiler_inline_result$jscomp$0
|
|
1521
|
+
);
|
|
1522
|
+
return testStringCoercion(value);
|
|
1523
|
+
}
|
|
1524
|
+
}
|
|
1525
|
+
function getTaskName(type) {
|
|
1526
|
+
if (type === REACT_FRAGMENT_TYPE) return "<>";
|
|
1527
|
+
if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
|
|
1528
|
+
return "<...>";
|
|
1529
|
+
try {
|
|
1530
|
+
var name = getComponentNameFromType(type);
|
|
1531
|
+
return name ? "<" + name + ">" : "<...>";
|
|
1532
|
+
} catch (x) {
|
|
1533
|
+
return "<...>";
|
|
1534
|
+
}
|
|
1535
|
+
}
|
|
1536
|
+
function getOwner() {
|
|
1537
|
+
var dispatcher = ReactSharedInternals.A;
|
|
1538
|
+
return null === dispatcher ? null : dispatcher.getOwner();
|
|
1539
|
+
}
|
|
1540
|
+
function UnknownOwner() {
|
|
1541
|
+
return Error("react-stack-top-frame");
|
|
1542
|
+
}
|
|
1543
|
+
function hasValidKey(config) {
|
|
1544
|
+
if (hasOwnProperty.call(config, "key")) {
|
|
1545
|
+
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
|
1546
|
+
if (getter && getter.isReactWarning) return false;
|
|
1547
|
+
}
|
|
1548
|
+
return void 0 !== config.key;
|
|
1549
|
+
}
|
|
1550
|
+
function defineKeyPropWarningGetter(props, displayName) {
|
|
1551
|
+
function warnAboutAccessingKey() {
|
|
1552
|
+
specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
|
|
1553
|
+
"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
|
|
1554
|
+
displayName
|
|
1555
|
+
));
|
|
1556
|
+
}
|
|
1557
|
+
warnAboutAccessingKey.isReactWarning = true;
|
|
1558
|
+
Object.defineProperty(props, "key", {
|
|
1559
|
+
get: warnAboutAccessingKey,
|
|
1560
|
+
configurable: true
|
|
1561
|
+
});
|
|
1562
|
+
}
|
|
1563
|
+
function elementRefGetterWithDeprecationWarning() {
|
|
1564
|
+
var componentName = getComponentNameFromType(this.type);
|
|
1565
|
+
didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
|
|
1566
|
+
"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
|
|
1567
|
+
));
|
|
1568
|
+
componentName = this.props.ref;
|
|
1569
|
+
return void 0 !== componentName ? componentName : null;
|
|
1570
|
+
}
|
|
1571
|
+
function ReactElement(type, key, self, source, owner, props, debugStack, debugTask) {
|
|
1572
|
+
self = props.ref;
|
|
1573
|
+
type = {
|
|
1574
|
+
$$typeof: REACT_ELEMENT_TYPE,
|
|
1575
|
+
type,
|
|
1576
|
+
key,
|
|
1577
|
+
props,
|
|
1578
|
+
_owner: owner
|
|
1579
|
+
};
|
|
1580
|
+
null !== (void 0 !== self ? self : null) ? Object.defineProperty(type, "ref", {
|
|
1581
|
+
enumerable: false,
|
|
1582
|
+
get: elementRefGetterWithDeprecationWarning
|
|
1583
|
+
}) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
|
|
1584
|
+
type._store = {};
|
|
1585
|
+
Object.defineProperty(type._store, "validated", {
|
|
1586
|
+
configurable: false,
|
|
1587
|
+
enumerable: false,
|
|
1588
|
+
writable: true,
|
|
1589
|
+
value: 0
|
|
1590
|
+
});
|
|
1591
|
+
Object.defineProperty(type, "_debugInfo", {
|
|
1592
|
+
configurable: false,
|
|
1593
|
+
enumerable: false,
|
|
1594
|
+
writable: true,
|
|
1595
|
+
value: null
|
|
1596
|
+
});
|
|
1597
|
+
Object.defineProperty(type, "_debugStack", {
|
|
1598
|
+
configurable: false,
|
|
1599
|
+
enumerable: false,
|
|
1600
|
+
writable: true,
|
|
1601
|
+
value: debugStack
|
|
1602
|
+
});
|
|
1603
|
+
Object.defineProperty(type, "_debugTask", {
|
|
1604
|
+
configurable: false,
|
|
1605
|
+
enumerable: false,
|
|
1606
|
+
writable: true,
|
|
1607
|
+
value: debugTask
|
|
1608
|
+
});
|
|
1609
|
+
Object.freeze && (Object.freeze(type.props), Object.freeze(type));
|
|
1610
|
+
return type;
|
|
1611
|
+
}
|
|
1612
|
+
function jsxDEVImpl(type, config, maybeKey, isStaticChildren, source, self, debugStack, debugTask) {
|
|
1613
|
+
var children = config.children;
|
|
1614
|
+
if (void 0 !== children)
|
|
1615
|
+
if (isStaticChildren)
|
|
1616
|
+
if (isArrayImpl(children)) {
|
|
1617
|
+
for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)
|
|
1618
|
+
validateChildKeys(children[isStaticChildren]);
|
|
1619
|
+
Object.freeze && Object.freeze(children);
|
|
1620
|
+
} else
|
|
1621
|
+
console.error(
|
|
1622
|
+
"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
|
|
1623
|
+
);
|
|
1624
|
+
else validateChildKeys(children);
|
|
1625
|
+
if (hasOwnProperty.call(config, "key")) {
|
|
1626
|
+
children = getComponentNameFromType(type);
|
|
1627
|
+
var keys = Object.keys(config).filter(function(k) {
|
|
1628
|
+
return "key" !== k;
|
|
1629
|
+
});
|
|
1630
|
+
isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
1631
|
+
didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error(
|
|
1632
|
+
'A props object containing a "key" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />',
|
|
1633
|
+
isStaticChildren,
|
|
1634
|
+
children,
|
|
1635
|
+
keys,
|
|
1636
|
+
children
|
|
1637
|
+
), didWarnAboutKeySpread[children + isStaticChildren] = true);
|
|
1638
|
+
}
|
|
1639
|
+
children = null;
|
|
1640
|
+
void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
|
|
1641
|
+
hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
|
|
1642
|
+
if ("key" in config) {
|
|
1643
|
+
maybeKey = {};
|
|
1644
|
+
for (var propName in config)
|
|
1645
|
+
"key" !== propName && (maybeKey[propName] = config[propName]);
|
|
1646
|
+
} else maybeKey = config;
|
|
1647
|
+
children && defineKeyPropWarningGetter(
|
|
1648
|
+
maybeKey,
|
|
1649
|
+
"function" === typeof type ? type.displayName || type.name || "Unknown" : type
|
|
1650
|
+
);
|
|
1651
|
+
return ReactElement(
|
|
1652
|
+
type,
|
|
1653
|
+
children,
|
|
1654
|
+
self,
|
|
1655
|
+
source,
|
|
1656
|
+
getOwner(),
|
|
1657
|
+
maybeKey,
|
|
1658
|
+
debugStack,
|
|
1659
|
+
debugTask
|
|
1660
|
+
);
|
|
1661
|
+
}
|
|
1662
|
+
function validateChildKeys(node) {
|
|
1663
|
+
"object" === typeof node && null !== node && node.$$typeof === REACT_ELEMENT_TYPE && node._store && (node._store.validated = 1);
|
|
1664
|
+
}
|
|
1665
|
+
var React = require_react(), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
|
1666
|
+
var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
|
|
1667
|
+
return null;
|
|
1668
|
+
};
|
|
1669
|
+
React = {
|
|
1670
|
+
react_stack_bottom_frame: function(callStackForError) {
|
|
1671
|
+
return callStackForError();
|
|
1672
|
+
}
|
|
1673
|
+
};
|
|
1674
|
+
var specialPropKeyWarningShown;
|
|
1675
|
+
var didWarnAboutElementRef = {};
|
|
1676
|
+
var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(
|
|
1677
|
+
React,
|
|
1678
|
+
UnknownOwner
|
|
1679
|
+
)();
|
|
1680
|
+
var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
|
|
1681
|
+
var didWarnAboutKeySpread = {};
|
|
1682
|
+
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
1683
|
+
exports.jsx = function(type, config, maybeKey, source, self) {
|
|
1684
|
+
var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
|
|
1685
|
+
return jsxDEVImpl(
|
|
1686
|
+
type,
|
|
1687
|
+
config,
|
|
1688
|
+
maybeKey,
|
|
1689
|
+
false,
|
|
1690
|
+
source,
|
|
1691
|
+
self,
|
|
1692
|
+
trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
|
|
1693
|
+
trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
|
|
1694
|
+
);
|
|
1695
|
+
};
|
|
1696
|
+
exports.jsxs = function(type, config, maybeKey, source, self) {
|
|
1697
|
+
var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
|
|
1698
|
+
return jsxDEVImpl(
|
|
1699
|
+
type,
|
|
1700
|
+
config,
|
|
1701
|
+
maybeKey,
|
|
1702
|
+
true,
|
|
1703
|
+
source,
|
|
1704
|
+
self,
|
|
1705
|
+
trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
|
|
1706
|
+
trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
|
|
1707
|
+
);
|
|
1708
|
+
};
|
|
1709
|
+
})();
|
|
1710
|
+
}
|
|
1711
|
+
});
|
|
1712
|
+
|
|
1713
|
+
// ../../node_modules/react/jsx-runtime.js
|
|
1714
|
+
var require_jsx_runtime = __commonJS({
|
|
1715
|
+
"../../node_modules/react/jsx-runtime.js"(exports, module) {
|
|
1716
|
+
if (process.env.NODE_ENV === "production") {
|
|
1717
|
+
module.exports = require_react_jsx_runtime_production();
|
|
1718
|
+
} else {
|
|
1719
|
+
module.exports = require_react_jsx_runtime_development();
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
});
|
|
1723
|
+
|
|
1724
|
+
// src/components/Book.tsx
|
|
1725
|
+
var import_jsx_runtime = __toESM(require_jsx_runtime());
|
|
1726
|
+
var SvgBook = (props) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
1727
|
+
"svg",
|
|
1728
|
+
{
|
|
1729
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1730
|
+
width: "1em",
|
|
1731
|
+
height: "1em",
|
|
1732
|
+
fill: "none",
|
|
1733
|
+
viewBox: "0 0 22 19",
|
|
1734
|
+
...props,
|
|
1735
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
1736
|
+
"path",
|
|
1737
|
+
{
|
|
1738
|
+
fill: "currentColor",
|
|
1739
|
+
fillRule: "evenodd",
|
|
1740
|
+
d: "M17 .5c1.105 0 2 .86 2 1.919V2.5h1a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-12a2 2 0 0 1 2-2h1v-.081C3 1.407 3.816.579 4.85.505L5 .5q.28 0 .55.074L11 2.068 16.45.574Q16.72.499 17 .5m-14 4H2v12h18v-12h-1v8.397c0 .857-.592 1.61-1.45 1.845l-6.27 1.72a1 1 0 0 1-.22.036h-.12a1 1 0 0 1-.22-.037l-6.27-1.719C3.593 14.507 3 13.754 3 12.897zm2-2v10.612l5 1.388V3.888zm12 0-5 1.388V14.5l5-1.388zm-9.835 8.011.115.022.988.245c.535.132.845.617.694 1.083-.14.433-.63.698-1.127.628l-.115-.022-.988-.245c-.535-.132-.845-.617-.694-1.083.14-.433.63-.698 1.127-.628m7.67 0c.497-.07.986.195 1.127.628.151.466-.16.951-.694 1.083l-.988.245-.115.022c-.497.07-.986-.195-1.127-.628-.151-.466.16-.951.694-1.083l.988-.245zm-7.67-3 .115.022.988.245c.535.132.845.617.694 1.083-.14.433-.63.698-1.127.628l-.115-.022-.988-.245c-.535-.132-.845-.617-.694-1.083.14-.433.63-.698 1.127-.628m7.67 0c.497-.07.986.195 1.127.628.151.466-.16.951-.694 1.083l-.988.245-.115.022c-.497.07-.986-.195-1.127-.628-.151-.466.16-.951.694-1.083l.988-.245zm-7.67-3 .115.022.988.245c.535.132.845.617.694 1.083-.14.433-.63.698-1.127.628l-.115-.022-.988-.245c-.535-.132-.845-.617-.694-1.083.14-.433.63-.698 1.127-.628m7.67 0c.497-.07.986.195 1.127.628.151.466-.16.951-.694 1.083l-.988.245-.115.022c-.497.07-.986-.195-1.127-.628-.151-.466.16-.951.694-1.083l.988-.245z",
|
|
1741
|
+
clipRule: "evenodd"
|
|
1742
|
+
}
|
|
1743
|
+
)
|
|
1744
|
+
}
|
|
1745
|
+
);
|
|
1746
|
+
var Book_default = SvgBook;
|
|
1747
|
+
|
|
1748
|
+
// src/components/Check.tsx
|
|
1749
|
+
var import_jsx_runtime2 = __toESM(require_jsx_runtime());
|
|
1750
|
+
var SvgCheck = (props) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
1751
|
+
"svg",
|
|
1752
|
+
{
|
|
1753
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1754
|
+
width: "1em",
|
|
1755
|
+
height: "1em",
|
|
1756
|
+
fill: "none",
|
|
1757
|
+
viewBox: "0 0 24 24",
|
|
1758
|
+
...props,
|
|
1759
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
|
|
1760
|
+
"path",
|
|
1761
|
+
{
|
|
1762
|
+
fill: "currentColor",
|
|
1763
|
+
fillRule: "evenodd",
|
|
1764
|
+
d: "M18.293 6.293a1 1 0 1 1 1.414 1.414l-9 9a1 1 0 0 1-1.414 0l-4-4a1 1 0 1 1 1.414-1.414L10 14.586z",
|
|
1765
|
+
clipRule: "evenodd"
|
|
1766
|
+
}
|
|
1767
|
+
)
|
|
1768
|
+
}
|
|
1769
|
+
);
|
|
1770
|
+
var Check_default = SvgCheck;
|
|
1771
|
+
|
|
1772
|
+
// src/components/Chevron.tsx
|
|
1773
|
+
var import_jsx_runtime3 = __toESM(require_jsx_runtime());
|
|
1774
|
+
var SvgChevron = (props) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1775
|
+
"svg",
|
|
1776
|
+
{
|
|
1777
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1778
|
+
width: "1em",
|
|
1779
|
+
height: "1em",
|
|
1780
|
+
fill: "none",
|
|
1781
|
+
viewBox: "0 0 24 24",
|
|
1782
|
+
...props,
|
|
1783
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
1784
|
+
"path",
|
|
1785
|
+
{
|
|
1786
|
+
fill: "currentColor",
|
|
1787
|
+
fillRule: "evenodd",
|
|
1788
|
+
d: "M13.586 12 9.293 7.707a1 1 0 0 1 1.414-1.414l5 5a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414-1.414z",
|
|
1789
|
+
clipRule: "evenodd"
|
|
1790
|
+
}
|
|
1791
|
+
)
|
|
1792
|
+
}
|
|
1793
|
+
);
|
|
1794
|
+
var Chevron_default = SvgChevron;
|
|
1795
|
+
|
|
1796
|
+
// src/components/Class.tsx
|
|
1797
|
+
var import_jsx_runtime4 = __toESM(require_jsx_runtime());
|
|
1798
|
+
var SvgClass = (props) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1799
|
+
"svg",
|
|
1800
|
+
{
|
|
1801
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1802
|
+
width: "1em",
|
|
1803
|
+
height: "1em",
|
|
1804
|
+
fill: "none",
|
|
1805
|
+
viewBox: "0 0 24 25",
|
|
1806
|
+
...props,
|
|
1807
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
1808
|
+
"path",
|
|
1809
|
+
{
|
|
1810
|
+
fill: "currentColor",
|
|
1811
|
+
fillRule: "evenodd",
|
|
1812
|
+
d: "M16.707 12.793a1 1 0 0 1 0 1.414l-3.293 3.294C15.061 18.46 16 20.116 16 22.5H2c0-4.05 2.71-6 7-6q1.277 0 2.354.23l3.939-3.937a1 1 0 0 1 1.414 0M8.852 18.5c-2.476 0-3.957.673-4.5 2h9c-.544-1.327-2.025-2-4.5-2M20 2.5a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-3l2-2h1v-10H4v12.003l-.15-.006A2.003 2.003 0 0 1 2 14.5v-10a2 2 0 0 1 2-2zm-11 7c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3m0 2c-.548 0-1 .452-1 1s.452 1 1 1 1-.452 1-1-.452-1-1-1",
|
|
1813
|
+
clipRule: "evenodd"
|
|
1814
|
+
}
|
|
1815
|
+
)
|
|
1816
|
+
}
|
|
1817
|
+
);
|
|
1818
|
+
var Class_default = SvgClass;
|
|
1819
|
+
|
|
1820
|
+
// src/components/Close.tsx
|
|
1821
|
+
var import_jsx_runtime5 = __toESM(require_jsx_runtime());
|
|
1822
|
+
var SvgClose = (props) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1823
|
+
"svg",
|
|
1824
|
+
{
|
|
1825
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1826
|
+
width: "1em",
|
|
1827
|
+
height: "1em",
|
|
1828
|
+
fill: "none",
|
|
1829
|
+
viewBox: "0 0 24 24",
|
|
1830
|
+
...props,
|
|
1831
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1832
|
+
"path",
|
|
1833
|
+
{
|
|
1834
|
+
fill: "currentColor",
|
|
1835
|
+
fillRule: "evenodd",
|
|
1836
|
+
d: "M7.707 6.293 12 10.585l4.293-4.292a1 1 0 1 1 1.414 1.414L13.415 12l4.292 4.293a1 1 0 0 1-1.414 1.414L12 13.415l-4.293 4.292a1 1 0 0 1-1.414-1.414L10.585 12 6.293 7.707a1 1 0 0 1 1.414-1.414",
|
|
1837
|
+
clipRule: "evenodd"
|
|
1838
|
+
}
|
|
1839
|
+
)
|
|
1840
|
+
}
|
|
1841
|
+
);
|
|
1842
|
+
var Close_default = SvgClose;
|
|
1843
|
+
|
|
1844
|
+
// src/components/Code.tsx
|
|
1845
|
+
var import_jsx_runtime6 = __toESM(require_jsx_runtime());
|
|
1846
|
+
var SvgCode = (props) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1847
|
+
"svg",
|
|
1848
|
+
{
|
|
1849
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1850
|
+
width: "1em",
|
|
1851
|
+
height: "1em",
|
|
1852
|
+
fill: "none",
|
|
1853
|
+
viewBox: "0 0 18 10",
|
|
1854
|
+
...props,
|
|
1855
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
|
|
1856
|
+
"path",
|
|
1857
|
+
{
|
|
1858
|
+
fill: "currentColor",
|
|
1859
|
+
fillRule: "evenodd",
|
|
1860
|
+
d: "M12.293.293a1 1 0 0 1 1.414 0l4 4a1 1 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L15.586 5l-3.293-3.293a1 1 0 0 1 0-1.414M5.707.293a1 1 0 0 0-1.414 0l-4 4a1 1 0 0 0 0 1.414l4 4a1 1 0 0 0 1.414-1.414L2.414 5l3.293-3.293a1 1 0 0 0 0-1.414",
|
|
1861
|
+
clipRule: "evenodd"
|
|
1862
|
+
}
|
|
1863
|
+
)
|
|
1864
|
+
}
|
|
1865
|
+
);
|
|
1866
|
+
var Code_default = SvgCode;
|
|
1867
|
+
|
|
1868
|
+
// src/components/Collapse.tsx
|
|
1869
|
+
var import_jsx_runtime7 = __toESM(require_jsx_runtime());
|
|
1870
|
+
var SvgCollapse = (props) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
|
|
1871
|
+
"svg",
|
|
1872
|
+
{
|
|
1873
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1874
|
+
width: "1em",
|
|
1875
|
+
height: "1em",
|
|
1876
|
+
fill: "none",
|
|
1877
|
+
viewBox: "0 0 20 20",
|
|
1878
|
+
...props,
|
|
1879
|
+
children: [
|
|
1880
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1881
|
+
"path",
|
|
1882
|
+
{
|
|
1883
|
+
fill: "#212529",
|
|
1884
|
+
fillRule: "evenodd",
|
|
1885
|
+
d: "M14.707 6.293a1 1 0 0 1 0 1.414L12.414 10l2.293 2.293a1 1 0 0 1-1.414 1.414l-3-3a1 1 0 0 1 0-1.414l3-3a1 1 0 0 1 1.414 0",
|
|
1886
|
+
clipRule: "evenodd"
|
|
1887
|
+
}
|
|
1888
|
+
),
|
|
1889
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
|
|
1890
|
+
"path",
|
|
1891
|
+
{
|
|
1892
|
+
fill: "currentColor",
|
|
1893
|
+
fillRule: "evenodd",
|
|
1894
|
+
d: "M4 0h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4m0 2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h1V2zm12 16H7V2h9a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2",
|
|
1895
|
+
clipRule: "evenodd"
|
|
1896
|
+
}
|
|
1897
|
+
)
|
|
1898
|
+
]
|
|
1899
|
+
}
|
|
1900
|
+
);
|
|
1901
|
+
var Collapse_default = SvgCollapse;
|
|
1902
|
+
|
|
1903
|
+
// src/components/Copy.tsx
|
|
1904
|
+
var import_jsx_runtime8 = __toESM(require_jsx_runtime());
|
|
1905
|
+
var SvgCopy = (props) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1906
|
+
"svg",
|
|
1907
|
+
{
|
|
1908
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1909
|
+
width: "1em",
|
|
1910
|
+
height: "1em",
|
|
1911
|
+
fill: "none",
|
|
1912
|
+
viewBox: "0 0 24 24",
|
|
1913
|
+
...props,
|
|
1914
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
1915
|
+
"path",
|
|
1916
|
+
{
|
|
1917
|
+
fill: "currentColor",
|
|
1918
|
+
fillRule: "evenodd",
|
|
1919
|
+
d: "M4 1a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h3.667v1a1 1 0 0 0 1 1H20a1 1 0 0 0 1-1V5.76a1 1 0 0 0-1-1h-4V2a1 1 0 0 0-1-1zm10 3.76V3H5v16h2.667V5.76a1 1 0 0 1 1-1zM9.666 21V6.76H19V21z",
|
|
1920
|
+
clipRule: "evenodd"
|
|
1921
|
+
}
|
|
1922
|
+
)
|
|
1923
|
+
}
|
|
1924
|
+
);
|
|
1925
|
+
var Copy_default = SvgCopy;
|
|
1926
|
+
|
|
1927
|
+
// src/components/Error.tsx
|
|
1928
|
+
var import_jsx_runtime9 = __toESM(require_jsx_runtime());
|
|
1929
|
+
var SvgError = (props) => /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1930
|
+
"svg",
|
|
1931
|
+
{
|
|
1932
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1933
|
+
width: "1em",
|
|
1934
|
+
height: "1em",
|
|
1935
|
+
fill: "none",
|
|
1936
|
+
viewBox: "0 0 24 24",
|
|
1937
|
+
...props,
|
|
1938
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
|
|
1939
|
+
"path",
|
|
1940
|
+
{
|
|
1941
|
+
fill: "currentColor",
|
|
1942
|
+
fillRule: "evenodd",
|
|
1943
|
+
d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2M9.707 8.293a1 1 0 0 0-1.414 1.414L10.585 12l-2.292 2.293a1 1 0 0 0-.083 1.32l.083.094a1 1 0 0 0 1.414 0L12 13.415l2.293 2.292a1 1 0 0 0 1.32.083l.094-.083a1 1 0 0 0 0-1.414L13.415 12l2.292-2.293a1 1 0 0 0 .083-1.32l-.083-.094a1 1 0 0 0-1.414 0L12 10.585z",
|
|
1944
|
+
clipRule: "evenodd"
|
|
1945
|
+
}
|
|
1946
|
+
)
|
|
1947
|
+
}
|
|
1948
|
+
);
|
|
1949
|
+
var Error_default = SvgError;
|
|
1950
|
+
|
|
1951
|
+
// src/components/External.tsx
|
|
1952
|
+
var import_jsx_runtime10 = __toESM(require_jsx_runtime());
|
|
1953
|
+
var SvgExternal = (props) => /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1954
|
+
"svg",
|
|
1955
|
+
{
|
|
1956
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1957
|
+
width: "1em",
|
|
1958
|
+
height: "1em",
|
|
1959
|
+
fill: "none",
|
|
1960
|
+
viewBox: "0 0 24 24",
|
|
1961
|
+
...props,
|
|
1962
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
|
|
1963
|
+
"path",
|
|
1964
|
+
{
|
|
1965
|
+
fill: "currentColor",
|
|
1966
|
+
fillRule: "evenodd",
|
|
1967
|
+
d: "M11 4a1 1 0 1 1 0 2H4.5a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5h13a.5.5 0 0 0 .5-.5V13a1 1 0 1 1 2 0v6.5a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 2 19.5v-13A2.5 2.5 0 0 1 4.5 4zm10-2h.02q.034 0 .07.004za1 1 0 0 1 .617.213q.095.075.17.17l-.08-.09a1 1 0 0 1 .282.559A1 1 0 0 1 22 3v6a1 1 0 1 1-2 0V5.414l-7.293 7.293a1 1 0 0 1-1.414-1.414L18.584 4H15a1 1 0 1 1 0-2z",
|
|
1968
|
+
clipRule: "evenodd"
|
|
1969
|
+
}
|
|
1970
|
+
)
|
|
1971
|
+
}
|
|
1972
|
+
);
|
|
1973
|
+
var External_default = SvgExternal;
|
|
1974
|
+
|
|
1975
|
+
// src/components/Eye.tsx
|
|
1976
|
+
var import_jsx_runtime11 = __toESM(require_jsx_runtime());
|
|
1977
|
+
var SvgEye = (props) => /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1978
|
+
"svg",
|
|
1979
|
+
{
|
|
1980
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1981
|
+
width: "1em",
|
|
1982
|
+
height: "1em",
|
|
1983
|
+
fill: "none",
|
|
1984
|
+
viewBox: "0 0 24 24",
|
|
1985
|
+
...props,
|
|
1986
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1987
|
+
"path",
|
|
1988
|
+
{
|
|
1989
|
+
fill: "currentColor",
|
|
1990
|
+
fillRule: "evenodd",
|
|
1991
|
+
d: "M12 18c3.972 0 6.965-2.156 8.81-6-1.845-3.844-4.838-6-8.81-6s-6.965 2.156-8.81 6c1.845 3.844 4.838 6 8.81 6m0-14c5.5 0 9.097 3.439 11 8-1.903 4.561-5.5 8-11 8s-9.097-3.439-11-8c1.903-4.561 5.5-8 11-8m0 4c-2.213 0-4 1.787-4 4s1.787 4 4 4 4-1.787 4-4-1.787-4-4-4m0 2c1.109 0 2 .891 2 2s-.891 2-2 2-2-.891-2-2 .891-2 2-2",
|
|
1992
|
+
clipRule: "evenodd"
|
|
1993
|
+
}
|
|
1994
|
+
)
|
|
1995
|
+
}
|
|
1996
|
+
);
|
|
1997
|
+
var Eye_default = SvgEye;
|
|
1998
|
+
|
|
1999
|
+
// src/components/First.tsx
|
|
2000
|
+
var import_jsx_runtime12 = __toESM(require_jsx_runtime());
|
|
2001
|
+
var SvgFirst = (props) => /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)(
|
|
2002
|
+
"svg",
|
|
2003
|
+
{
|
|
2004
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2005
|
+
width: "1em",
|
|
2006
|
+
height: "1em",
|
|
2007
|
+
fill: "none",
|
|
2008
|
+
viewBox: "0 0 24 24",
|
|
2009
|
+
...props,
|
|
2010
|
+
children: [
|
|
2011
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2012
|
+
"path",
|
|
2013
|
+
{
|
|
2014
|
+
fill: "#212529",
|
|
2015
|
+
d: "M7.293 7.707 11.586 12l-4.293 4.293a1 1 0 1 0 1.414 1.414l5-5a1 1 0 0 0 0-1.414l-5-5a1 1 0 0 0-1.414 1.414"
|
|
2016
|
+
}
|
|
2017
|
+
),
|
|
2018
|
+
/* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2019
|
+
"path",
|
|
2020
|
+
{
|
|
2021
|
+
fill: "currentColor",
|
|
2022
|
+
d: "M17 6a1 1 0 0 0-1 1v10a1 1 0 1 0 2 0V7a1 1 0 0 0-1-1"
|
|
2023
|
+
}
|
|
2024
|
+
)
|
|
2025
|
+
]
|
|
2026
|
+
}
|
|
2027
|
+
);
|
|
2028
|
+
var First_default = SvgFirst;
|
|
2029
|
+
|
|
2030
|
+
// src/components/Gologo.tsx
|
|
2031
|
+
var import_jsx_runtime13 = __toESM(require_jsx_runtime());
|
|
2032
|
+
var SvgGologo = (props) => /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
|
|
2033
|
+
"svg",
|
|
2034
|
+
{
|
|
2035
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2036
|
+
width: "1em",
|
|
2037
|
+
height: "1em",
|
|
2038
|
+
fill: "none",
|
|
2039
|
+
viewBox: "0 0 35 36",
|
|
2040
|
+
...props,
|
|
2041
|
+
children: [
|
|
2042
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2043
|
+
"path",
|
|
2044
|
+
{
|
|
2045
|
+
fill: "#082663",
|
|
2046
|
+
d: "M.385 0v18.72c0 9.203 5.372 11.83 7.954 13.092.474.232 8.442 3.795 8.952 4.023l.344.165.343-.165c.46-.206 8.477-3.79 8.952-4.023 2.582-1.262 7.955-3.89 7.955-13.093V0z"
|
|
2047
|
+
}
|
|
2048
|
+
),
|
|
2049
|
+
/* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
|
|
2050
|
+
"path",
|
|
2051
|
+
{
|
|
2052
|
+
fill: "#fff",
|
|
2053
|
+
d: "M11.84 21.817q-2.057 0-3.44-.762a4.85 4.85 0 0 1-2.074-2.199q-.69-1.435-.691-3.439 0-1.985.727-3.421A5.2 5.2 0 0 1 8.453 9.78Q9.818 9 11.751 9q1.365 0 2.357.408a5.3 5.3 0 0 1 1.809 1.17l-.55 1.152a6.4 6.4 0 0 0-1.135-.815 4.3 4.3 0 0 0-1.116-.444 5.2 5.2 0 0 0-1.365-.16q-2.216 0-3.404 1.348-1.17 1.33-1.17 3.776 0 2.464 1.135 3.776 1.152 1.312 3.563 1.312.886 0 1.684-.16c.543-.118.75-.157 1.259-.37v-3.725h-3.191v-1.152h4.45v5.797q-.763.407-1.933.656a11 11 0 0 1-2.305.248M18.601 15.4q0-1.986.674-3.404.69-1.436 1.968-2.216Q22.537 9 24.345 9q1.755 0 3.05.78 1.293.78 1.985 2.216.709 1.418.709 3.386 0 1.986-.71 3.421-.708 1.436-2.003 2.234-1.276.78-3.031.78-1.808 0-3.085-.78-1.275-.797-1.967-2.234T18.6 15.4m1.543 0q0 2.41 1.063 3.775 1.064 1.348 3.138 1.348 1.986 0 3.085-1.348 1.116-1.365 1.116-3.775 0-2.43-1.099-3.759-1.099-1.347-3.102-1.347-2.075 0-3.138 1.347-1.063 1.33-1.063 3.759"
|
|
2054
|
+
}
|
|
2055
|
+
)
|
|
2056
|
+
]
|
|
2057
|
+
}
|
|
2058
|
+
);
|
|
2059
|
+
var Gologo_default = SvgGologo;
|
|
2060
|
+
|
|
2061
|
+
// src/components/Hamburger.tsx
|
|
2062
|
+
var import_jsx_runtime14 = __toESM(require_jsx_runtime());
|
|
2063
|
+
var SvgHamburger = (props) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
2064
|
+
"svg",
|
|
2065
|
+
{
|
|
2066
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2067
|
+
width: "1em",
|
|
2068
|
+
height: "1em",
|
|
2069
|
+
fill: "none",
|
|
2070
|
+
viewBox: "0 0 24 24",
|
|
2071
|
+
...props,
|
|
2072
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
2073
|
+
"path",
|
|
2074
|
+
{
|
|
2075
|
+
fill: "currentColor",
|
|
2076
|
+
fillRule: "evenodd",
|
|
2077
|
+
d: "M20 17a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2zm0-6a1 1 0 1 1 0 2H4a1 1 0 1 1 0-2zm0-6a1 1 0 1 1 0 2H4a1 1 0 0 1 0-2z",
|
|
2078
|
+
clipRule: "evenodd"
|
|
2079
|
+
}
|
|
2080
|
+
)
|
|
2081
|
+
}
|
|
2082
|
+
);
|
|
2083
|
+
var Hamburger_default = SvgHamburger;
|
|
2084
|
+
|
|
2085
|
+
// src/components/Indeterminate.tsx
|
|
2086
|
+
var import_jsx_runtime15 = __toESM(require_jsx_runtime());
|
|
2087
|
+
var SvgIndeterminate = (props) => /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2088
|
+
"svg",
|
|
2089
|
+
{
|
|
2090
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2091
|
+
width: "1em",
|
|
2092
|
+
height: "1em",
|
|
2093
|
+
fill: "none",
|
|
2094
|
+
viewBox: "0 0 24 24",
|
|
2095
|
+
...props,
|
|
2096
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
2097
|
+
"path",
|
|
2098
|
+
{
|
|
2099
|
+
fill: "currentColor",
|
|
2100
|
+
fillRule: "evenodd",
|
|
2101
|
+
d: "M6 13a1 1 0 1 1 0-2h12a1 1 0 1 1 0 2z",
|
|
2102
|
+
clipRule: "evenodd"
|
|
2103
|
+
}
|
|
2104
|
+
)
|
|
2105
|
+
}
|
|
2106
|
+
);
|
|
2107
|
+
var Indeterminate_default = SvgIndeterminate;
|
|
2108
|
+
|
|
2109
|
+
// src/components/Info.tsx
|
|
2110
|
+
var import_jsx_runtime16 = __toESM(require_jsx_runtime());
|
|
2111
|
+
var SvgInfo = (props) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2112
|
+
"svg",
|
|
2113
|
+
{
|
|
2114
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2115
|
+
width: "1em",
|
|
2116
|
+
height: "1em",
|
|
2117
|
+
fill: "none",
|
|
2118
|
+
viewBox: "0 0 24 24",
|
|
2119
|
+
...props,
|
|
2120
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
2121
|
+
"path",
|
|
2122
|
+
{
|
|
2123
|
+
fill: "currentColor",
|
|
2124
|
+
fillRule: "evenodd",
|
|
2125
|
+
d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m0 9a1 1 0 0 0-1 1v4.5a1 1 0 1 0 2 0V12a1 1 0 0 0-1-1m0-4a1 1 0 1 0 0 2 1 1 0 0 0 0-2",
|
|
2126
|
+
clipRule: "evenodd"
|
|
2127
|
+
}
|
|
2128
|
+
)
|
|
2129
|
+
}
|
|
2130
|
+
);
|
|
2131
|
+
var Info_default = SvgInfo;
|
|
2132
|
+
|
|
2133
|
+
// src/components/Last.tsx
|
|
2134
|
+
var import_jsx_runtime17 = __toESM(require_jsx_runtime());
|
|
2135
|
+
var SvgLast = (props) => /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
|
|
2136
|
+
"svg",
|
|
2137
|
+
{
|
|
2138
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2139
|
+
width: "1em",
|
|
2140
|
+
height: "1em",
|
|
2141
|
+
fill: "none",
|
|
2142
|
+
viewBox: "0 0 24 24",
|
|
2143
|
+
...props,
|
|
2144
|
+
children: [
|
|
2145
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2146
|
+
"path",
|
|
2147
|
+
{
|
|
2148
|
+
fill: "#212529",
|
|
2149
|
+
d: "M17.707 16.293 13.414 12l4.293-4.293a1 1 0 0 0-1.414-1.414l-5 5a1 1 0 0 0 0 1.414l5 5a1 1 0 0 0 1.414-1.414"
|
|
2150
|
+
}
|
|
2151
|
+
),
|
|
2152
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
2153
|
+
"path",
|
|
2154
|
+
{
|
|
2155
|
+
fill: "currentColor",
|
|
2156
|
+
d: "M8 18a1 1 0 0 0 1-1V7a1 1 0 0 0-2 0v10a1 1 0 0 0 1 1"
|
|
2157
|
+
}
|
|
2158
|
+
)
|
|
2159
|
+
]
|
|
2160
|
+
}
|
|
2161
|
+
);
|
|
2162
|
+
var Last_default = SvgLast;
|
|
2163
|
+
|
|
2164
|
+
// src/components/Next.tsx
|
|
2165
|
+
var import_jsx_runtime18 = __toESM(require_jsx_runtime());
|
|
2166
|
+
var SvgNext = (props) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2167
|
+
"svg",
|
|
2168
|
+
{
|
|
2169
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2170
|
+
width: "1em",
|
|
2171
|
+
height: "1em",
|
|
2172
|
+
fill: "none",
|
|
2173
|
+
viewBox: "0 0 24 24",
|
|
2174
|
+
...props,
|
|
2175
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
2176
|
+
"path",
|
|
2177
|
+
{
|
|
2178
|
+
fill: "currentColor",
|
|
2179
|
+
fillRule: "evenodd",
|
|
2180
|
+
d: "M13.586 12 9.293 7.707a1 1 0 0 1 1.414-1.414l5 5a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414-1.414z",
|
|
2181
|
+
clipRule: "evenodd"
|
|
2182
|
+
}
|
|
2183
|
+
)
|
|
2184
|
+
}
|
|
2185
|
+
);
|
|
2186
|
+
var Next_default = SvgNext;
|
|
2187
|
+
|
|
2188
|
+
// src/components/PersonAvatar.tsx
|
|
2189
|
+
var import_jsx_runtime19 = __toESM(require_jsx_runtime());
|
|
2190
|
+
var SvgPersonAvatar = (props) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2191
|
+
"svg",
|
|
2192
|
+
{
|
|
2193
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2194
|
+
width: "1em",
|
|
2195
|
+
height: "1em",
|
|
2196
|
+
fill: "none",
|
|
2197
|
+
viewBox: "0 0 24 24",
|
|
2198
|
+
...props,
|
|
2199
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
2200
|
+
"path",
|
|
2201
|
+
{
|
|
2202
|
+
fill: "currentColor",
|
|
2203
|
+
fillRule: "evenodd",
|
|
2204
|
+
d: "M12 15c-3.658 0-5.845 1.01-6.648 3h13.296c-.803-1.99-2.99-3-6.648-3m0-2c5.515 0 9 2.275 9 7H3c0-4.725 3.485-7 9-7m0-10c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4m0 2c-1.095 0-2 .905-2 2s.905 2 2 2 2-.905 2-2-.905-2-2-2",
|
|
2205
|
+
clipRule: "evenodd"
|
|
2206
|
+
}
|
|
2207
|
+
)
|
|
2208
|
+
}
|
|
2209
|
+
);
|
|
2210
|
+
var PersonAvatar_default = SvgPersonAvatar;
|
|
2211
|
+
|
|
2212
|
+
// src/components/Plus.tsx
|
|
2213
|
+
var import_jsx_runtime20 = __toESM(require_jsx_runtime());
|
|
2214
|
+
var SvgPlus = (props) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2215
|
+
"svg",
|
|
2216
|
+
{
|
|
2217
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2218
|
+
width: "1em",
|
|
2219
|
+
height: "1em",
|
|
2220
|
+
fill: "none",
|
|
2221
|
+
viewBox: "0 0 24 24",
|
|
2222
|
+
...props,
|
|
2223
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
|
|
2224
|
+
"path",
|
|
2225
|
+
{
|
|
2226
|
+
fill: "currentColor",
|
|
2227
|
+
fillRule: "evenodd",
|
|
2228
|
+
d: "M12 5a1 1 0 0 1 1 1v5h5a1 1 0 1 1 0 2h-5v5a1 1 0 1 1-2 0v-5H6a1 1 0 1 1 0-2h5V6a1 1 0 0 1 1-1",
|
|
2229
|
+
clipRule: "evenodd"
|
|
2230
|
+
}
|
|
2231
|
+
)
|
|
2232
|
+
}
|
|
2233
|
+
);
|
|
2234
|
+
var Plus_default = SvgPlus;
|
|
2235
|
+
|
|
2236
|
+
// src/components/Previous.tsx
|
|
2237
|
+
var import_jsx_runtime21 = __toESM(require_jsx_runtime());
|
|
2238
|
+
var SvgPrevious = (props) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2239
|
+
"svg",
|
|
2240
|
+
{
|
|
2241
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2242
|
+
width: "1em",
|
|
2243
|
+
height: "1em",
|
|
2244
|
+
fill: "none",
|
|
2245
|
+
viewBox: "0 0 24 24",
|
|
2246
|
+
...props,
|
|
2247
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
2248
|
+
"path",
|
|
2249
|
+
{
|
|
2250
|
+
fill: "currentColor",
|
|
2251
|
+
fillRule: "evenodd",
|
|
2252
|
+
d: "m10.414 12 4.293 4.293a1 1 0 0 1-1.414 1.414l-5-5a1 1 0 0 1 0-1.414l5-5a1 1 0 1 1 1.414 1.414z",
|
|
2253
|
+
clipRule: "evenodd"
|
|
2254
|
+
}
|
|
2255
|
+
)
|
|
2256
|
+
}
|
|
2257
|
+
);
|
|
2258
|
+
var Previous_default = SvgPrevious;
|
|
2259
|
+
|
|
2260
|
+
// src/components/Product.tsx
|
|
2261
|
+
var import_jsx_runtime22 = __toESM(require_jsx_runtime());
|
|
2262
|
+
var SvgProduct = (props) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2263
|
+
"svg",
|
|
2264
|
+
{
|
|
2265
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2266
|
+
width: "1em",
|
|
2267
|
+
height: "1em",
|
|
2268
|
+
fill: "none",
|
|
2269
|
+
viewBox: "0 0 18 20",
|
|
2270
|
+
...props,
|
|
2271
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
2272
|
+
"path",
|
|
2273
|
+
{
|
|
2274
|
+
fill: "currentColor",
|
|
2275
|
+
fillRule: "evenodd",
|
|
2276
|
+
d: "M15.556 0c1.227 0 2.222.995 2.222 2.222v15.556A2.22 2.22 0 0 1 15.556 20H2.222A2.22 2.22 0 0 1 0 17.778V2.222C0 .995.995 0 2.222 0zm0 2.222H2.222v15.556h13.334zm-10 8.89a1.112 1.112 0 0 1 0-2.223h6.666a1.111 1.111 0 0 1 0 2.222zm0-4.445a1.112 1.112 0 0 1 0-2.223h6.666a1.111 1.111 0 0 1 0 2.223zm0 8.889a1.112 1.112 0 0 1 0-2.223h3.333a1.112 1.112 0 0 1 0 2.223z",
|
|
2277
|
+
clipRule: "evenodd"
|
|
2278
|
+
}
|
|
2279
|
+
)
|
|
2280
|
+
}
|
|
2281
|
+
);
|
|
2282
|
+
var Product_default = SvgProduct;
|
|
2283
|
+
|
|
2284
|
+
// src/components/Searchglass.tsx
|
|
2285
|
+
var import_jsx_runtime23 = __toESM(require_jsx_runtime());
|
|
2286
|
+
var SvgSearchglass = (props) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2287
|
+
"svg",
|
|
2288
|
+
{
|
|
2289
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2290
|
+
width: "1em",
|
|
2291
|
+
height: "1em",
|
|
2292
|
+
fill: "none",
|
|
2293
|
+
viewBox: "0 0 24 24",
|
|
2294
|
+
...props,
|
|
2295
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
2296
|
+
"path",
|
|
2297
|
+
{
|
|
2298
|
+
fill: "currentColor",
|
|
2299
|
+
fillRule: "evenodd",
|
|
2300
|
+
d: "M11 16a5 5 0 1 0 0-10 5 5 0 0 0 0 10m0-12a7 7 0 0 1 5.606 11.192l3.101 3.1a1 1 0 0 1-1.414 1.415l-3.1-3.1A7 7 0 1 1 11 4",
|
|
2301
|
+
clipRule: "evenodd"
|
|
2302
|
+
}
|
|
2303
|
+
)
|
|
2304
|
+
}
|
|
2305
|
+
);
|
|
2306
|
+
var Searchglass_default = SvgSearchglass;
|
|
2307
|
+
|
|
2308
|
+
// src/components/Series.tsx
|
|
2309
|
+
var import_jsx_runtime24 = __toESM(require_jsx_runtime());
|
|
2310
|
+
var SvgSeries = (props) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2311
|
+
"svg",
|
|
2312
|
+
{
|
|
2313
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2314
|
+
width: "1em",
|
|
2315
|
+
height: "1em",
|
|
2316
|
+
fill: "none",
|
|
2317
|
+
viewBox: "0 0 24 24",
|
|
2318
|
+
...props,
|
|
2319
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
2320
|
+
"path",
|
|
2321
|
+
{
|
|
2322
|
+
fill: "currentColor",
|
|
2323
|
+
fillRule: "evenodd",
|
|
2324
|
+
d: "M4 13.997 14 14V4H4zM21 8a1 1 0 0 1 1 1v12a.997.997 0 0 1-1 1l-12-.004a1 1 0 1 1 0-2L20 20V9a1 1 0 0 1 1-1m-3-3a1 1 0 0 1 1 1v12a.997.997 0 0 1-1 1l-12-.004a1 1 0 1 1 0-2L17 17V6a1 1 0 0 1 1-1m-3-3a1 1 0 0 1 1 1v12a.997.997 0 0 1-1 1l-12-.003a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zM9.299 5.195l.897 1.915 2.018.3c.274.042.383.394.184.596L10.935 9.49l.35 2.1c.048.286-.239.504-.484.369L9 10.96l-1.801.998c-.245.135-.532-.083-.484-.368l.35-2.101-1.463-1.484c-.2-.202-.09-.554.184-.595l2.018-.3.897-1.916a.327.327 0 0 1 .598 0",
|
|
2325
|
+
clipRule: "evenodd"
|
|
2326
|
+
}
|
|
2327
|
+
)
|
|
2328
|
+
}
|
|
2329
|
+
);
|
|
2330
|
+
var Series_default = SvgSeries;
|
|
2331
|
+
|
|
2332
|
+
// src/components/Settings.tsx
|
|
2333
|
+
var import_jsx_runtime25 = __toESM(require_jsx_runtime());
|
|
2334
|
+
var SvgSettings = (props) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2335
|
+
"svg",
|
|
2336
|
+
{
|
|
2337
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2338
|
+
width: "1em",
|
|
2339
|
+
height: "1em",
|
|
2340
|
+
fill: "none",
|
|
2341
|
+
viewBox: "0 0 20 20",
|
|
2342
|
+
...props,
|
|
2343
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
2344
|
+
"path",
|
|
2345
|
+
{
|
|
2346
|
+
fill: "currentColor",
|
|
2347
|
+
fillRule: "evenodd",
|
|
2348
|
+
d: "m9.411 2-.266 1.308a2 2 0 0 1-.963 1.335L6.132 5.82a2 2 0 0 1-1.623.165l-1.386-.458-.545.92.97.83a2 2 0 0 1 .699 1.52v2.404a2 2 0 0 1-.7 1.52l-.97.83.546.92 1.386-.458a2 2 0 0 1 1.623.166l2.05 1.177a2 2 0 0 1 .963 1.335L9.41 18h1.178l.266-1.308a2 2 0 0 1 .963-1.335l2.05-1.177a2 2 0 0 1 1.623-.166l1.386.458.546-.92-.97-.83a2 2 0 0 1-.7-1.52V8.798a2 2 0 0 1 .7-1.52l.97-.83-.546-.92-1.386.458a2 2 0 0 1-1.623-.165l-2.05-1.178a2 2 0 0 1-.963-1.335L10.59 2zm2.811-2 .593 2.909 2.05 1.178 2.913-.962L20 6.875l-2.247 1.923v2.404L20 13.125l-2.222 3.75-2.914-.961-2.05 1.177L12.223 20H7.778l-.593-2.909-2.05-1.178-2.913.962L0 13.125l2.247-1.923V8.798L0 6.875l2.222-3.75 2.914.962 2.05-1.178L7.777 0zM10 6c-2.213 0-4 1.787-4 4s1.787 4 4 4 4-1.787 4-4-1.787-4-4-4m0 2c1.11 0 2 .89 2 2s-.89 2-2 2-2-.89-2-2 .89-2 2-2",
|
|
2349
|
+
clipRule: "evenodd"
|
|
2350
|
+
}
|
|
2351
|
+
)
|
|
2352
|
+
}
|
|
2353
|
+
);
|
|
2354
|
+
var Settings_default = SvgSettings;
|
|
2355
|
+
|
|
2356
|
+
// src/components/Success.tsx
|
|
2357
|
+
var import_jsx_runtime26 = __toESM(require_jsx_runtime());
|
|
2358
|
+
var SvgSuccess = (props) => /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2359
|
+
"svg",
|
|
2360
|
+
{
|
|
2361
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2362
|
+
width: "1em",
|
|
2363
|
+
height: "1em",
|
|
2364
|
+
fill: "none",
|
|
2365
|
+
viewBox: "0 0 24 24",
|
|
2366
|
+
...props,
|
|
2367
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
2368
|
+
"path",
|
|
2369
|
+
{
|
|
2370
|
+
fill: "currentColor",
|
|
2371
|
+
fillRule: "evenodd",
|
|
2372
|
+
d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m4.728 6.793a1 1 0 0 0-1.414 0l-5.293 5.293-1.814-1.814a1 1 0 0 0-1.414 1.414l2.521 2.521a1 1 0 0 0 1.414 0l6-6a1 1 0 0 0 0-1.414",
|
|
2373
|
+
clipRule: "evenodd"
|
|
2374
|
+
}
|
|
2375
|
+
)
|
|
2376
|
+
}
|
|
2377
|
+
);
|
|
2378
|
+
var Success_default = SvgSuccess;
|
|
2379
|
+
|
|
2380
|
+
// src/components/Swaporder.tsx
|
|
2381
|
+
var import_jsx_runtime27 = __toESM(require_jsx_runtime());
|
|
2382
|
+
var SvgSwaporder = (props) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2383
|
+
"svg",
|
|
2384
|
+
{
|
|
2385
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2386
|
+
width: "1em",
|
|
2387
|
+
height: "1em",
|
|
2388
|
+
fill: "none",
|
|
2389
|
+
viewBox: "0 0 24 24",
|
|
2390
|
+
...props,
|
|
2391
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
2392
|
+
"path",
|
|
2393
|
+
{
|
|
2394
|
+
fill: "currentColor",
|
|
2395
|
+
fillRule: "evenodd",
|
|
2396
|
+
d: "M14.885 12.874c.616 0 1.115.476 1.115 1.063 0 .282-.117.552-.327.752l-2.884 2.748a1.155 1.155 0 0 1-1.578 0L8.327 14.69a1.03 1.03 0 0 1 0-1.504c.209-.199.493-.31.789-.31zM11.21 6.311a1.155 1.155 0 0 1 1.578 0l2.884 2.749c.21.2.327.47.327.751 0 .587-.5 1.063-1.116 1.063H9.116c-.296 0-.58-.112-.79-.311a1.03 1.03 0 0 1 0-1.503z",
|
|
2397
|
+
clipRule: "evenodd"
|
|
2398
|
+
}
|
|
2399
|
+
)
|
|
2400
|
+
}
|
|
2401
|
+
);
|
|
2402
|
+
var Swaporder_default = SvgSwaporder;
|
|
2403
|
+
|
|
2404
|
+
// src/components/Unknown.tsx
|
|
2405
|
+
var import_jsx_runtime28 = __toESM(require_jsx_runtime());
|
|
2406
|
+
var SvgUnknown = (props) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2407
|
+
"svg",
|
|
2408
|
+
{
|
|
2409
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2410
|
+
width: "1em",
|
|
2411
|
+
height: "1em",
|
|
2412
|
+
fill: "none",
|
|
2413
|
+
viewBox: "0 0 24 24",
|
|
2414
|
+
...props,
|
|
2415
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
2416
|
+
"path",
|
|
2417
|
+
{
|
|
2418
|
+
fill: "currentColor",
|
|
2419
|
+
fillRule: "evenodd",
|
|
2420
|
+
d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m0 14a1 1 0 1 0 0 2 1 1 0 0 0 0-2m1.135-5.554.045-.026c.588-.352.82-.625.82-.92 0-.796-.91-1.5-2-1.5-.908 0-1.772.57-1.996 1.137l-.034.106a1 1 0 1 1-1.94-.486C8.413 7.225 10.156 6 12 6c2.1 0 4 1.472 4 3.5 0 1.11-.587 1.867-1.598 2.516l-.195.12c.009-.005-.966.537-1 .571-.184.184-.207.301-.207 1.293a1 1 0 1 1-2 0l.004-.467c.026-1.156.174-1.625.789-2.24.152-.152.317-.269.56-.41z",
|
|
2421
|
+
clipRule: "evenodd"
|
|
2422
|
+
}
|
|
2423
|
+
)
|
|
2424
|
+
}
|
|
2425
|
+
);
|
|
2426
|
+
var Unknown_default = SvgUnknown;
|
|
2427
|
+
|
|
2428
|
+
// src/components/Users.tsx
|
|
2429
|
+
var import_jsx_runtime29 = __toESM(require_jsx_runtime());
|
|
2430
|
+
var SvgUsers = (props) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2431
|
+
"svg",
|
|
2432
|
+
{
|
|
2433
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2434
|
+
width: "1em",
|
|
2435
|
+
height: "1em",
|
|
2436
|
+
fill: "none",
|
|
2437
|
+
viewBox: "0 0 24 24",
|
|
2438
|
+
...props,
|
|
2439
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
2440
|
+
"path",
|
|
2441
|
+
{
|
|
2442
|
+
fill: "currentColor",
|
|
2443
|
+
fillRule: "evenodd",
|
|
2444
|
+
d: "M15 17c5.515 0 9 2.275 9 7H6c0-4.725 3.485-7 9-7m-6-7 .084.001a5.98 5.98 0 0 0 1.872 5.422C9.53 15.75 8.29 16.276 7.27 17H0c0-4.725 3.485-7 9-7m6-3c2.2 0 4 1.8 4 4s-1.8 4-4 4-4-1.8-4-4 1.8-4 4-4M9 0c2.2 0 4 1.8 4 4 0 .511-.097 1.001-.274 1.452a6.05 6.05 0 0 0-2.86 2.451A4 4 0 0 1 9 8C6.8 8 5 6.2 5 4s1.8-4 4-4",
|
|
2445
|
+
clipRule: "evenodd"
|
|
2446
|
+
}
|
|
2447
|
+
)
|
|
2448
|
+
}
|
|
2449
|
+
);
|
|
2450
|
+
var Users_default = SvgUsers;
|
|
2451
|
+
|
|
2452
|
+
// src/components/Warning.tsx
|
|
2453
|
+
var import_jsx_runtime30 = __toESM(require_jsx_runtime());
|
|
2454
|
+
var SvgWarning = (props) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2455
|
+
"svg",
|
|
2456
|
+
{
|
|
2457
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2458
|
+
width: "1em",
|
|
2459
|
+
height: "1em",
|
|
2460
|
+
fill: "none",
|
|
2461
|
+
viewBox: "0 0 24 24",
|
|
2462
|
+
...props,
|
|
2463
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
|
|
2464
|
+
"path",
|
|
2465
|
+
{
|
|
2466
|
+
fill: "currentColor",
|
|
2467
|
+
fillRule: "evenodd",
|
|
2468
|
+
d: "M10.816 2.255a2.88 2.88 0 0 1 3.73 1.278l8.221 15.531C23.473 20.396 22.507 22 21 22H3c-1.507 0-2.473-1.604-1.768-2.936l8.222-15.53a2.9 2.9 0 0 1 1.198-1.198zM12 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2m0-8a1 1 0 0 0-1 1v4a1 1 0 1 0 2 0V9a1 1 0 0 0-1-1",
|
|
2469
|
+
clipRule: "evenodd"
|
|
2470
|
+
}
|
|
2471
|
+
)
|
|
2472
|
+
}
|
|
2473
|
+
);
|
|
2474
|
+
var Warning_default = SvgWarning;
|
|
2475
|
+
/*! Bundled license information:
|
|
2476
|
+
|
|
2477
|
+
react/cjs/react-jsx-runtime.production.js:
|
|
2478
|
+
(**
|
|
2479
|
+
* @license React
|
|
2480
|
+
* react-jsx-runtime.production.js
|
|
2481
|
+
*
|
|
2482
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2483
|
+
*
|
|
2484
|
+
* This source code is licensed under the MIT license found in the
|
|
2485
|
+
* LICENSE file in the root directory of this source tree.
|
|
2486
|
+
*)
|
|
2487
|
+
|
|
2488
|
+
react/cjs/react.production.js:
|
|
2489
|
+
(**
|
|
2490
|
+
* @license React
|
|
2491
|
+
* react.production.js
|
|
2492
|
+
*
|
|
2493
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2494
|
+
*
|
|
2495
|
+
* This source code is licensed under the MIT license found in the
|
|
2496
|
+
* LICENSE file in the root directory of this source tree.
|
|
2497
|
+
*)
|
|
2498
|
+
|
|
2499
|
+
react/cjs/react.development.js:
|
|
2500
|
+
(**
|
|
2501
|
+
* @license React
|
|
2502
|
+
* react.development.js
|
|
2503
|
+
*
|
|
2504
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2505
|
+
*
|
|
2506
|
+
* This source code is licensed under the MIT license found in the
|
|
2507
|
+
* LICENSE file in the root directory of this source tree.
|
|
2508
|
+
*)
|
|
2509
|
+
|
|
2510
|
+
react/cjs/react-jsx-runtime.development.js:
|
|
2511
|
+
(**
|
|
2512
|
+
* @license React
|
|
2513
|
+
* react-jsx-runtime.development.js
|
|
2514
|
+
*
|
|
2515
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2516
|
+
*
|
|
2517
|
+
* This source code is licensed under the MIT license found in the
|
|
2518
|
+
* LICENSE file in the root directory of this source tree.
|
|
2519
|
+
*)
|
|
2520
|
+
*/
|
|
2521
|
+
|
|
2522
|
+
export { Book_default as Book, Check_default as Check, Chevron_default as Chevron, Class_default as Class, Close_default as Close, Code_default as Code, Collapse_default as Collapse, Copy_default as Copy, Error_default as Error, External_default as External, Eye_default as Eye, First_default as First, Gologo_default as Gologo, Hamburger_default as Hamburger, Indeterminate_default as Indeterminate, Info_default as Info, Last_default as Last, Next_default as Next, PersonAvatar_default as PersonAvatar, Plus_default as Plus, Previous_default as Previous, Product_default as Product, Searchglass_default as Searchglass, Series_default as Series, Settings_default as Settings, Success_default as Success, Swaporder_default as Swaporder, Unknown_default as Unknown, Users_default as Users, Warning_default as Warning };
|
|
2523
|
+
//# sourceMappingURL=index.mjs.map
|
|
2524
|
+
//# sourceMappingURL=index.mjs.map
|