@deepanmano/berry-icon-library 1.0.21 → 1.0.22
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.js +122 -2840
- package/dist/index.js.map +3 -7
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,3203 +1,485 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __toESM = (mod, isNodeMode, target) => {
|
|
7
|
-
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
8
|
-
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
9
|
-
for (let key of __getOwnPropNames(mod))
|
|
10
|
-
if (!__hasOwnProp.call(to, key))
|
|
11
|
-
__defProp(to, key, {
|
|
12
|
-
get: () => mod[key],
|
|
13
|
-
enumerable: true
|
|
14
|
-
});
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
18
|
-
|
|
19
|
-
// ../../node_modules/react/cjs/react.development.js
|
|
20
|
-
var require_react_development = __commonJS((exports, module) => {
|
|
21
|
-
if (true) {
|
|
22
|
-
(function() {
|
|
23
|
-
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart === "function") {
|
|
24
|
-
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error);
|
|
25
|
-
}
|
|
26
|
-
var ReactVersion = "18.3.1";
|
|
27
|
-
var REACT_ELEMENT_TYPE = Symbol.for("react.element");
|
|
28
|
-
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
|
29
|
-
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
|
30
|
-
var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
|
|
31
|
-
var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
|
32
|
-
var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
|
|
33
|
-
var REACT_CONTEXT_TYPE = Symbol.for("react.context");
|
|
34
|
-
var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
|
|
35
|
-
var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
|
|
36
|
-
var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
|
|
37
|
-
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
|
38
|
-
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
|
39
|
-
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
|
40
|
-
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
41
|
-
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
|
42
|
-
function getIteratorFn(maybeIterable) {
|
|
43
|
-
if (maybeIterable === null || typeof maybeIterable !== "object") {
|
|
44
|
-
return null;
|
|
45
|
-
}
|
|
46
|
-
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
|
47
|
-
if (typeof maybeIterator === "function") {
|
|
48
|
-
return maybeIterator;
|
|
49
|
-
}
|
|
50
|
-
return null;
|
|
51
|
-
}
|
|
52
|
-
var ReactCurrentDispatcher = {
|
|
53
|
-
current: null
|
|
54
|
-
};
|
|
55
|
-
var ReactCurrentBatchConfig = {
|
|
56
|
-
transition: null
|
|
57
|
-
};
|
|
58
|
-
var ReactCurrentActQueue = {
|
|
59
|
-
current: null,
|
|
60
|
-
isBatchingLegacy: false,
|
|
61
|
-
didScheduleLegacyUpdate: false
|
|
62
|
-
};
|
|
63
|
-
var ReactCurrentOwner = {
|
|
64
|
-
current: null
|
|
65
|
-
};
|
|
66
|
-
var ReactDebugCurrentFrame = {};
|
|
67
|
-
var currentExtraStackFrame = null;
|
|
68
|
-
function setExtraStackFrame(stack) {
|
|
69
|
-
{
|
|
70
|
-
currentExtraStackFrame = stack;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
{
|
|
74
|
-
ReactDebugCurrentFrame.setExtraStackFrame = function(stack) {
|
|
75
|
-
{
|
|
76
|
-
currentExtraStackFrame = stack;
|
|
77
|
-
}
|
|
78
|
-
};
|
|
79
|
-
ReactDebugCurrentFrame.getCurrentStack = null;
|
|
80
|
-
ReactDebugCurrentFrame.getStackAddendum = function() {
|
|
81
|
-
var stack = "";
|
|
82
|
-
if (currentExtraStackFrame) {
|
|
83
|
-
stack += currentExtraStackFrame;
|
|
84
|
-
}
|
|
85
|
-
var impl = ReactDebugCurrentFrame.getCurrentStack;
|
|
86
|
-
if (impl) {
|
|
87
|
-
stack += impl() || "";
|
|
88
|
-
}
|
|
89
|
-
return stack;
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
var enableScopeAPI = false;
|
|
93
|
-
var enableCacheElement = false;
|
|
94
|
-
var enableTransitionTracing = false;
|
|
95
|
-
var enableLegacyHidden = false;
|
|
96
|
-
var enableDebugTracing = false;
|
|
97
|
-
var ReactSharedInternals = {
|
|
98
|
-
ReactCurrentDispatcher,
|
|
99
|
-
ReactCurrentBatchConfig,
|
|
100
|
-
ReactCurrentOwner
|
|
101
|
-
};
|
|
102
|
-
{
|
|
103
|
-
ReactSharedInternals.ReactDebugCurrentFrame = ReactDebugCurrentFrame;
|
|
104
|
-
ReactSharedInternals.ReactCurrentActQueue = ReactCurrentActQueue;
|
|
105
|
-
}
|
|
106
|
-
function warn(format) {
|
|
107
|
-
{
|
|
108
|
-
{
|
|
109
|
-
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1;_key < _len; _key++) {
|
|
110
|
-
args[_key - 1] = arguments[_key];
|
|
111
|
-
}
|
|
112
|
-
printWarning("warn", format, args);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
function error(format) {
|
|
117
|
-
{
|
|
118
|
-
{
|
|
119
|
-
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1;_key2 < _len2; _key2++) {
|
|
120
|
-
args[_key2 - 1] = arguments[_key2];
|
|
121
|
-
}
|
|
122
|
-
printWarning("error", format, args);
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
function printWarning(level, format, args) {
|
|
127
|
-
{
|
|
128
|
-
var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
129
|
-
var stack = ReactDebugCurrentFrame2.getStackAddendum();
|
|
130
|
-
if (stack !== "") {
|
|
131
|
-
format += "%s";
|
|
132
|
-
args = args.concat([stack]);
|
|
133
|
-
}
|
|
134
|
-
var argsWithFormat = args.map(function(item) {
|
|
135
|
-
return String(item);
|
|
136
|
-
});
|
|
137
|
-
argsWithFormat.unshift("Warning: " + format);
|
|
138
|
-
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
var didWarnStateUpdateForUnmountedComponent = {};
|
|
142
|
-
function warnNoop(publicInstance, callerName) {
|
|
143
|
-
{
|
|
144
|
-
var _constructor = publicInstance.constructor;
|
|
145
|
-
var componentName = _constructor && (_constructor.displayName || _constructor.name) || "ReactClass";
|
|
146
|
-
var warningKey = componentName + "." + callerName;
|
|
147
|
-
if (didWarnStateUpdateForUnmountedComponent[warningKey]) {
|
|
148
|
-
return;
|
|
149
|
-
}
|
|
150
|
-
error("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.", callerName, componentName);
|
|
151
|
-
didWarnStateUpdateForUnmountedComponent[warningKey] = true;
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
var ReactNoopUpdateQueue = {
|
|
155
|
-
isMounted: function(publicInstance) {
|
|
156
|
-
return false;
|
|
157
|
-
},
|
|
158
|
-
enqueueForceUpdate: function(publicInstance, callback, callerName) {
|
|
159
|
-
warnNoop(publicInstance, "forceUpdate");
|
|
160
|
-
},
|
|
161
|
-
enqueueReplaceState: function(publicInstance, completeState, callback, callerName) {
|
|
162
|
-
warnNoop(publicInstance, "replaceState");
|
|
163
|
-
},
|
|
164
|
-
enqueueSetState: function(publicInstance, partialState, callback, callerName) {
|
|
165
|
-
warnNoop(publicInstance, "setState");
|
|
166
|
-
}
|
|
167
|
-
};
|
|
168
|
-
var assign = Object.assign;
|
|
169
|
-
var emptyObject = {};
|
|
170
|
-
{
|
|
171
|
-
Object.freeze(emptyObject);
|
|
172
|
-
}
|
|
173
|
-
function Component(props, context, updater) {
|
|
174
|
-
this.props = props;
|
|
175
|
-
this.context = context;
|
|
176
|
-
this.refs = emptyObject;
|
|
177
|
-
this.updater = updater || ReactNoopUpdateQueue;
|
|
178
|
-
}
|
|
179
|
-
Component.prototype.isReactComponent = {};
|
|
180
|
-
Component.prototype.setState = function(partialState, callback) {
|
|
181
|
-
if (typeof partialState !== "object" && typeof partialState !== "function" && partialState != null) {
|
|
182
|
-
throw new Error("setState(...): takes an object of state variables to update or a " + "function which returns an object of state variables.");
|
|
183
|
-
}
|
|
184
|
-
this.updater.enqueueSetState(this, partialState, callback, "setState");
|
|
185
|
-
};
|
|
186
|
-
Component.prototype.forceUpdate = function(callback) {
|
|
187
|
-
this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
|
|
188
|
-
};
|
|
189
|
-
{
|
|
190
|
-
var deprecatedAPIs = {
|
|
191
|
-
isMounted: ["isMounted", "Instead, make sure to clean up subscriptions and pending requests in " + "componentWillUnmount to prevent memory leaks."],
|
|
192
|
-
replaceState: ["replaceState", "Refactor your code to use setState instead (see " + "https://github.com/facebook/react/issues/3236)."]
|
|
193
|
-
};
|
|
194
|
-
var defineDeprecationWarning = function(methodName, info) {
|
|
195
|
-
Object.defineProperty(Component.prototype, methodName, {
|
|
196
|
-
get: function() {
|
|
197
|
-
warn("%s(...) is deprecated in plain JavaScript React classes. %s", info[0], info[1]);
|
|
198
|
-
return;
|
|
199
|
-
}
|
|
200
|
-
});
|
|
201
|
-
};
|
|
202
|
-
for (var fnName in deprecatedAPIs) {
|
|
203
|
-
if (deprecatedAPIs.hasOwnProperty(fnName)) {
|
|
204
|
-
defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
function ComponentDummy() {}
|
|
209
|
-
ComponentDummy.prototype = Component.prototype;
|
|
210
|
-
function PureComponent(props, context, updater) {
|
|
211
|
-
this.props = props;
|
|
212
|
-
this.context = context;
|
|
213
|
-
this.refs = emptyObject;
|
|
214
|
-
this.updater = updater || ReactNoopUpdateQueue;
|
|
215
|
-
}
|
|
216
|
-
var pureComponentPrototype = PureComponent.prototype = new ComponentDummy;
|
|
217
|
-
pureComponentPrototype.constructor = PureComponent;
|
|
218
|
-
assign(pureComponentPrototype, Component.prototype);
|
|
219
|
-
pureComponentPrototype.isPureReactComponent = true;
|
|
220
|
-
function createRef() {
|
|
221
|
-
var refObject = {
|
|
222
|
-
current: null
|
|
223
|
-
};
|
|
224
|
-
{
|
|
225
|
-
Object.seal(refObject);
|
|
226
|
-
}
|
|
227
|
-
return refObject;
|
|
228
|
-
}
|
|
229
|
-
var isArrayImpl = Array.isArray;
|
|
230
|
-
function isArray(a) {
|
|
231
|
-
return isArrayImpl(a);
|
|
232
|
-
}
|
|
233
|
-
function typeName(value) {
|
|
234
|
-
{
|
|
235
|
-
var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
|
|
236
|
-
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
|
237
|
-
return type;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
function willCoercionThrow(value) {
|
|
241
|
-
{
|
|
242
|
-
try {
|
|
243
|
-
testStringCoercion(value);
|
|
244
|
-
return false;
|
|
245
|
-
} catch (e) {
|
|
246
|
-
return true;
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
function testStringCoercion(value) {
|
|
251
|
-
return "" + value;
|
|
252
|
-
}
|
|
253
|
-
function checkKeyStringCoercion(value) {
|
|
254
|
-
{
|
|
255
|
-
if (willCoercionThrow(value)) {
|
|
256
|
-
error("The provided key is an unsupported type %s." + " This value must be coerced to a string before before using it here.", typeName(value));
|
|
257
|
-
return testStringCoercion(value);
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
function getWrappedName(outerType, innerType, wrapperName) {
|
|
262
|
-
var displayName = outerType.displayName;
|
|
263
|
-
if (displayName) {
|
|
264
|
-
return displayName;
|
|
265
|
-
}
|
|
266
|
-
var functionName = innerType.displayName || innerType.name || "";
|
|
267
|
-
return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
|
|
268
|
-
}
|
|
269
|
-
function getContextName(type) {
|
|
270
|
-
return type.displayName || "Context";
|
|
271
|
-
}
|
|
272
|
-
function getComponentNameFromType(type) {
|
|
273
|
-
if (type == null) {
|
|
274
|
-
return null;
|
|
275
|
-
}
|
|
276
|
-
{
|
|
277
|
-
if (typeof type.tag === "number") {
|
|
278
|
-
error("Received an unexpected object in getComponentNameFromType(). " + "This is likely a bug in React. Please file an issue.");
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
|
-
if (typeof type === "function") {
|
|
282
|
-
return type.displayName || type.name || null;
|
|
283
|
-
}
|
|
284
|
-
if (typeof type === "string") {
|
|
285
|
-
return type;
|
|
286
|
-
}
|
|
287
|
-
switch (type) {
|
|
288
|
-
case REACT_FRAGMENT_TYPE:
|
|
289
|
-
return "Fragment";
|
|
290
|
-
case REACT_PORTAL_TYPE:
|
|
291
|
-
return "Portal";
|
|
292
|
-
case REACT_PROFILER_TYPE:
|
|
293
|
-
return "Profiler";
|
|
294
|
-
case REACT_STRICT_MODE_TYPE:
|
|
295
|
-
return "StrictMode";
|
|
296
|
-
case REACT_SUSPENSE_TYPE:
|
|
297
|
-
return "Suspense";
|
|
298
|
-
case REACT_SUSPENSE_LIST_TYPE:
|
|
299
|
-
return "SuspenseList";
|
|
300
|
-
}
|
|
301
|
-
if (typeof type === "object") {
|
|
302
|
-
switch (type.$$typeof) {
|
|
303
|
-
case REACT_CONTEXT_TYPE:
|
|
304
|
-
var context = type;
|
|
305
|
-
return getContextName(context) + ".Consumer";
|
|
306
|
-
case REACT_PROVIDER_TYPE:
|
|
307
|
-
var provider = type;
|
|
308
|
-
return getContextName(provider._context) + ".Provider";
|
|
309
|
-
case REACT_FORWARD_REF_TYPE:
|
|
310
|
-
return getWrappedName(type, type.render, "ForwardRef");
|
|
311
|
-
case REACT_MEMO_TYPE:
|
|
312
|
-
var outerName = type.displayName || null;
|
|
313
|
-
if (outerName !== null) {
|
|
314
|
-
return outerName;
|
|
315
|
-
}
|
|
316
|
-
return getComponentNameFromType(type.type) || "Memo";
|
|
317
|
-
case REACT_LAZY_TYPE: {
|
|
318
|
-
var lazyComponent = type;
|
|
319
|
-
var payload = lazyComponent._payload;
|
|
320
|
-
var init = lazyComponent._init;
|
|
321
|
-
try {
|
|
322
|
-
return getComponentNameFromType(init(payload));
|
|
323
|
-
} catch (x) {
|
|
324
|
-
return null;
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
return null;
|
|
330
|
-
}
|
|
331
|
-
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
332
|
-
var RESERVED_PROPS = {
|
|
333
|
-
key: true,
|
|
334
|
-
ref: true,
|
|
335
|
-
__self: true,
|
|
336
|
-
__source: true
|
|
337
|
-
};
|
|
338
|
-
var specialPropKeyWarningShown, specialPropRefWarningShown, didWarnAboutStringRefs;
|
|
339
|
-
{
|
|
340
|
-
didWarnAboutStringRefs = {};
|
|
341
|
-
}
|
|
342
|
-
function hasValidRef(config) {
|
|
343
|
-
{
|
|
344
|
-
if (hasOwnProperty.call(config, "ref")) {
|
|
345
|
-
var getter = Object.getOwnPropertyDescriptor(config, "ref").get;
|
|
346
|
-
if (getter && getter.isReactWarning) {
|
|
347
|
-
return false;
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
return config.ref !== undefined;
|
|
352
|
-
}
|
|
353
|
-
function hasValidKey(config) {
|
|
354
|
-
{
|
|
355
|
-
if (hasOwnProperty.call(config, "key")) {
|
|
356
|
-
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
|
357
|
-
if (getter && getter.isReactWarning) {
|
|
358
|
-
return false;
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
return config.key !== undefined;
|
|
363
|
-
}
|
|
364
|
-
function defineKeyPropWarningGetter(props, displayName) {
|
|
365
|
-
var warnAboutAccessingKey = function() {
|
|
366
|
-
{
|
|
367
|
-
if (!specialPropKeyWarningShown) {
|
|
368
|
-
specialPropKeyWarningShown = true;
|
|
369
|
-
error("%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://reactjs.org/link/special-props)", displayName);
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
};
|
|
373
|
-
warnAboutAccessingKey.isReactWarning = true;
|
|
374
|
-
Object.defineProperty(props, "key", {
|
|
375
|
-
get: warnAboutAccessingKey,
|
|
376
|
-
configurable: true
|
|
377
|
-
});
|
|
378
|
-
}
|
|
379
|
-
function defineRefPropWarningGetter(props, displayName) {
|
|
380
|
-
var warnAboutAccessingRef = function() {
|
|
381
|
-
{
|
|
382
|
-
if (!specialPropRefWarningShown) {
|
|
383
|
-
specialPropRefWarningShown = true;
|
|
384
|
-
error("%s: `ref` 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://reactjs.org/link/special-props)", displayName);
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
};
|
|
388
|
-
warnAboutAccessingRef.isReactWarning = true;
|
|
389
|
-
Object.defineProperty(props, "ref", {
|
|
390
|
-
get: warnAboutAccessingRef,
|
|
391
|
-
configurable: true
|
|
392
|
-
});
|
|
393
|
-
}
|
|
394
|
-
function warnIfStringRefCannotBeAutoConverted(config) {
|
|
395
|
-
{
|
|
396
|
-
if (typeof config.ref === "string" && ReactCurrentOwner.current && config.__self && ReactCurrentOwner.current.stateNode !== config.__self) {
|
|
397
|
-
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
|
|
398
|
-
if (!didWarnAboutStringRefs[componentName]) {
|
|
399
|
-
error('Component "%s" contains the string ref "%s". ' + "Support for string refs will be removed in a future major release. " + "This case cannot be automatically converted to an arrow function. " + "We ask you to manually fix this case by using useRef() or createRef() instead. " + "Learn more about using refs safely here: " + "https://reactjs.org/link/strict-mode-string-ref", componentName, config.ref);
|
|
400
|
-
didWarnAboutStringRefs[componentName] = true;
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
var ReactElement = function(type, key, ref, self, source, owner, props) {
|
|
406
|
-
var element = {
|
|
407
|
-
$$typeof: REACT_ELEMENT_TYPE,
|
|
408
|
-
type,
|
|
409
|
-
key,
|
|
410
|
-
ref,
|
|
411
|
-
props,
|
|
412
|
-
_owner: owner
|
|
413
|
-
};
|
|
414
|
-
{
|
|
415
|
-
element._store = {};
|
|
416
|
-
Object.defineProperty(element._store, "validated", {
|
|
417
|
-
configurable: false,
|
|
418
|
-
enumerable: false,
|
|
419
|
-
writable: true,
|
|
420
|
-
value: false
|
|
421
|
-
});
|
|
422
|
-
Object.defineProperty(element, "_self", {
|
|
423
|
-
configurable: false,
|
|
424
|
-
enumerable: false,
|
|
425
|
-
writable: false,
|
|
426
|
-
value: self
|
|
427
|
-
});
|
|
428
|
-
Object.defineProperty(element, "_source", {
|
|
429
|
-
configurable: false,
|
|
430
|
-
enumerable: false,
|
|
431
|
-
writable: false,
|
|
432
|
-
value: source
|
|
433
|
-
});
|
|
434
|
-
if (Object.freeze) {
|
|
435
|
-
Object.freeze(element.props);
|
|
436
|
-
Object.freeze(element);
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
|
-
return element;
|
|
440
|
-
};
|
|
441
|
-
function createElement(type, config, children) {
|
|
442
|
-
var propName;
|
|
443
|
-
var props = {};
|
|
444
|
-
var key = null;
|
|
445
|
-
var ref = null;
|
|
446
|
-
var self = null;
|
|
447
|
-
var source = null;
|
|
448
|
-
if (config != null) {
|
|
449
|
-
if (hasValidRef(config)) {
|
|
450
|
-
ref = config.ref;
|
|
451
|
-
{
|
|
452
|
-
warnIfStringRefCannotBeAutoConverted(config);
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
if (hasValidKey(config)) {
|
|
456
|
-
{
|
|
457
|
-
checkKeyStringCoercion(config.key);
|
|
458
|
-
}
|
|
459
|
-
key = "" + config.key;
|
|
460
|
-
}
|
|
461
|
-
self = config.__self === undefined ? null : config.__self;
|
|
462
|
-
source = config.__source === undefined ? null : config.__source;
|
|
463
|
-
for (propName in config) {
|
|
464
|
-
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
465
|
-
props[propName] = config[propName];
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
var childrenLength = arguments.length - 2;
|
|
470
|
-
if (childrenLength === 1) {
|
|
471
|
-
props.children = children;
|
|
472
|
-
} else if (childrenLength > 1) {
|
|
473
|
-
var childArray = Array(childrenLength);
|
|
474
|
-
for (var i = 0;i < childrenLength; i++) {
|
|
475
|
-
childArray[i] = arguments[i + 2];
|
|
476
|
-
}
|
|
477
|
-
{
|
|
478
|
-
if (Object.freeze) {
|
|
479
|
-
Object.freeze(childArray);
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
props.children = childArray;
|
|
483
|
-
}
|
|
484
|
-
if (type && type.defaultProps) {
|
|
485
|
-
var defaultProps = type.defaultProps;
|
|
486
|
-
for (propName in defaultProps) {
|
|
487
|
-
if (props[propName] === undefined) {
|
|
488
|
-
props[propName] = defaultProps[propName];
|
|
489
|
-
}
|
|
490
|
-
}
|
|
491
|
-
}
|
|
492
|
-
{
|
|
493
|
-
if (key || ref) {
|
|
494
|
-
var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type;
|
|
495
|
-
if (key) {
|
|
496
|
-
defineKeyPropWarningGetter(props, displayName);
|
|
497
|
-
}
|
|
498
|
-
if (ref) {
|
|
499
|
-
defineRefPropWarningGetter(props, displayName);
|
|
500
|
-
}
|
|
501
|
-
}
|
|
502
|
-
}
|
|
503
|
-
return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
|
|
504
|
-
}
|
|
505
|
-
function cloneAndReplaceKey(oldElement, newKey) {
|
|
506
|
-
var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);
|
|
507
|
-
return newElement;
|
|
508
|
-
}
|
|
509
|
-
function cloneElement(element, config, children) {
|
|
510
|
-
if (element === null || element === undefined) {
|
|
511
|
-
throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + element + ".");
|
|
512
|
-
}
|
|
513
|
-
var propName;
|
|
514
|
-
var props = assign({}, element.props);
|
|
515
|
-
var key = element.key;
|
|
516
|
-
var ref = element.ref;
|
|
517
|
-
var self = element._self;
|
|
518
|
-
var source = element._source;
|
|
519
|
-
var owner = element._owner;
|
|
520
|
-
if (config != null) {
|
|
521
|
-
if (hasValidRef(config)) {
|
|
522
|
-
ref = config.ref;
|
|
523
|
-
owner = ReactCurrentOwner.current;
|
|
524
|
-
}
|
|
525
|
-
if (hasValidKey(config)) {
|
|
526
|
-
{
|
|
527
|
-
checkKeyStringCoercion(config.key);
|
|
528
|
-
}
|
|
529
|
-
key = "" + config.key;
|
|
530
|
-
}
|
|
531
|
-
var defaultProps;
|
|
532
|
-
if (element.type && element.type.defaultProps) {
|
|
533
|
-
defaultProps = element.type.defaultProps;
|
|
534
|
-
}
|
|
535
|
-
for (propName in config) {
|
|
536
|
-
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
537
|
-
if (config[propName] === undefined && defaultProps !== undefined) {
|
|
538
|
-
props[propName] = defaultProps[propName];
|
|
539
|
-
} else {
|
|
540
|
-
props[propName] = config[propName];
|
|
541
|
-
}
|
|
542
|
-
}
|
|
543
|
-
}
|
|
544
|
-
}
|
|
545
|
-
var childrenLength = arguments.length - 2;
|
|
546
|
-
if (childrenLength === 1) {
|
|
547
|
-
props.children = children;
|
|
548
|
-
} else if (childrenLength > 1) {
|
|
549
|
-
var childArray = Array(childrenLength);
|
|
550
|
-
for (var i = 0;i < childrenLength; i++) {
|
|
551
|
-
childArray[i] = arguments[i + 2];
|
|
552
|
-
}
|
|
553
|
-
props.children = childArray;
|
|
554
|
-
}
|
|
555
|
-
return ReactElement(element.type, key, ref, self, source, owner, props);
|
|
556
|
-
}
|
|
557
|
-
function isValidElement(object) {
|
|
558
|
-
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
559
|
-
}
|
|
560
|
-
var SEPARATOR = ".";
|
|
561
|
-
var SUBSEPARATOR = ":";
|
|
562
|
-
function escape(key) {
|
|
563
|
-
var escapeRegex = /[=:]/g;
|
|
564
|
-
var escaperLookup = {
|
|
565
|
-
"=": "=0",
|
|
566
|
-
":": "=2"
|
|
567
|
-
};
|
|
568
|
-
var escapedString = key.replace(escapeRegex, function(match) {
|
|
569
|
-
return escaperLookup[match];
|
|
570
|
-
});
|
|
571
|
-
return "$" + escapedString;
|
|
572
|
-
}
|
|
573
|
-
var didWarnAboutMaps = false;
|
|
574
|
-
var userProvidedKeyEscapeRegex = /\/+/g;
|
|
575
|
-
function escapeUserProvidedKey(text) {
|
|
576
|
-
return text.replace(userProvidedKeyEscapeRegex, "$&/");
|
|
577
|
-
}
|
|
578
|
-
function getElementKey(element, index) {
|
|
579
|
-
if (typeof element === "object" && element !== null && element.key != null) {
|
|
580
|
-
{
|
|
581
|
-
checkKeyStringCoercion(element.key);
|
|
582
|
-
}
|
|
583
|
-
return escape("" + element.key);
|
|
584
|
-
}
|
|
585
|
-
return index.toString(36);
|
|
586
|
-
}
|
|
587
|
-
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
|
|
588
|
-
var type = typeof children;
|
|
589
|
-
if (type === "undefined" || type === "boolean") {
|
|
590
|
-
children = null;
|
|
591
|
-
}
|
|
592
|
-
var invokeCallback = false;
|
|
593
|
-
if (children === null) {
|
|
594
|
-
invokeCallback = true;
|
|
595
|
-
} else {
|
|
596
|
-
switch (type) {
|
|
597
|
-
case "string":
|
|
598
|
-
case "number":
|
|
599
|
-
invokeCallback = true;
|
|
600
|
-
break;
|
|
601
|
-
case "object":
|
|
602
|
-
switch (children.$$typeof) {
|
|
603
|
-
case REACT_ELEMENT_TYPE:
|
|
604
|
-
case REACT_PORTAL_TYPE:
|
|
605
|
-
invokeCallback = true;
|
|
606
|
-
}
|
|
607
|
-
}
|
|
608
|
-
}
|
|
609
|
-
if (invokeCallback) {
|
|
610
|
-
var _child = children;
|
|
611
|
-
var mappedChild = callback(_child);
|
|
612
|
-
var childKey = nameSoFar === "" ? SEPARATOR + getElementKey(_child, 0) : nameSoFar;
|
|
613
|
-
if (isArray(mappedChild)) {
|
|
614
|
-
var escapedChildKey = "";
|
|
615
|
-
if (childKey != null) {
|
|
616
|
-
escapedChildKey = escapeUserProvidedKey(childKey) + "/";
|
|
617
|
-
}
|
|
618
|
-
mapIntoArray(mappedChild, array, escapedChildKey, "", function(c) {
|
|
619
|
-
return c;
|
|
620
|
-
});
|
|
621
|
-
} else if (mappedChild != null) {
|
|
622
|
-
if (isValidElement(mappedChild)) {
|
|
623
|
-
{
|
|
624
|
-
if (mappedChild.key && (!_child || _child.key !== mappedChild.key)) {
|
|
625
|
-
checkKeyStringCoercion(mappedChild.key);
|
|
626
|
-
}
|
|
627
|
-
}
|
|
628
|
-
mappedChild = cloneAndReplaceKey(mappedChild, escapedPrefix + (mappedChild.key && (!_child || _child.key !== mappedChild.key) ? escapeUserProvidedKey("" + mappedChild.key) + "/" : "") + childKey);
|
|
629
|
-
}
|
|
630
|
-
array.push(mappedChild);
|
|
631
|
-
}
|
|
632
|
-
return 1;
|
|
633
|
-
}
|
|
634
|
-
var child;
|
|
635
|
-
var nextName;
|
|
636
|
-
var subtreeCount = 0;
|
|
637
|
-
var nextNamePrefix = nameSoFar === "" ? SEPARATOR : nameSoFar + SUBSEPARATOR;
|
|
638
|
-
if (isArray(children)) {
|
|
639
|
-
for (var i = 0;i < children.length; i++) {
|
|
640
|
-
child = children[i];
|
|
641
|
-
nextName = nextNamePrefix + getElementKey(child, i);
|
|
642
|
-
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
643
|
-
}
|
|
644
|
-
} else {
|
|
645
|
-
var iteratorFn = getIteratorFn(children);
|
|
646
|
-
if (typeof iteratorFn === "function") {
|
|
647
|
-
var iterableChildren = children;
|
|
648
|
-
{
|
|
649
|
-
if (iteratorFn === iterableChildren.entries) {
|
|
650
|
-
if (!didWarnAboutMaps) {
|
|
651
|
-
warn("Using Maps as children is not supported. " + "Use an array of keyed ReactElements instead.");
|
|
652
|
-
}
|
|
653
|
-
didWarnAboutMaps = true;
|
|
654
|
-
}
|
|
655
|
-
}
|
|
656
|
-
var iterator = iteratorFn.call(iterableChildren);
|
|
657
|
-
var step;
|
|
658
|
-
var ii = 0;
|
|
659
|
-
while (!(step = iterator.next()).done) {
|
|
660
|
-
child = step.value;
|
|
661
|
-
nextName = nextNamePrefix + getElementKey(child, ii++);
|
|
662
|
-
subtreeCount += mapIntoArray(child, array, escapedPrefix, nextName, callback);
|
|
663
|
-
}
|
|
664
|
-
} else if (type === "object") {
|
|
665
|
-
var childrenString = String(children);
|
|
666
|
-
throw new Error("Objects are not valid as a React child (found: " + (childrenString === "[object Object]" ? "object with keys {" + Object.keys(children).join(", ") + "}" : childrenString) + "). " + "If you meant to render a collection of children, use an array " + "instead.");
|
|
667
|
-
}
|
|
668
|
-
}
|
|
669
|
-
return subtreeCount;
|
|
670
|
-
}
|
|
671
|
-
function mapChildren(children, func, context) {
|
|
672
|
-
if (children == null) {
|
|
673
|
-
return children;
|
|
674
|
-
}
|
|
675
|
-
var result = [];
|
|
676
|
-
var count = 0;
|
|
677
|
-
mapIntoArray(children, result, "", "", function(child) {
|
|
678
|
-
return func.call(context, child, count++);
|
|
679
|
-
});
|
|
680
|
-
return result;
|
|
681
|
-
}
|
|
682
|
-
function countChildren(children) {
|
|
683
|
-
var n = 0;
|
|
684
|
-
mapChildren(children, function() {
|
|
685
|
-
n++;
|
|
686
|
-
});
|
|
687
|
-
return n;
|
|
688
|
-
}
|
|
689
|
-
function forEachChildren(children, forEachFunc, forEachContext) {
|
|
690
|
-
mapChildren(children, function() {
|
|
691
|
-
forEachFunc.apply(this, arguments);
|
|
692
|
-
}, forEachContext);
|
|
693
|
-
}
|
|
694
|
-
function toArray(children) {
|
|
695
|
-
return mapChildren(children, function(child) {
|
|
696
|
-
return child;
|
|
697
|
-
}) || [];
|
|
698
|
-
}
|
|
699
|
-
function onlyChild(children) {
|
|
700
|
-
if (!isValidElement(children)) {
|
|
701
|
-
throw new Error("React.Children.only expected to receive a single React element child.");
|
|
702
|
-
}
|
|
703
|
-
return children;
|
|
704
|
-
}
|
|
705
|
-
function createContext(defaultValue) {
|
|
706
|
-
var context = {
|
|
707
|
-
$$typeof: REACT_CONTEXT_TYPE,
|
|
708
|
-
_currentValue: defaultValue,
|
|
709
|
-
_currentValue2: defaultValue,
|
|
710
|
-
_threadCount: 0,
|
|
711
|
-
Provider: null,
|
|
712
|
-
Consumer: null,
|
|
713
|
-
_defaultValue: null,
|
|
714
|
-
_globalName: null
|
|
715
|
-
};
|
|
716
|
-
context.Provider = {
|
|
717
|
-
$$typeof: REACT_PROVIDER_TYPE,
|
|
718
|
-
_context: context
|
|
719
|
-
};
|
|
720
|
-
var hasWarnedAboutUsingNestedContextConsumers = false;
|
|
721
|
-
var hasWarnedAboutUsingConsumerProvider = false;
|
|
722
|
-
var hasWarnedAboutDisplayNameOnConsumer = false;
|
|
723
|
-
{
|
|
724
|
-
var Consumer = {
|
|
725
|
-
$$typeof: REACT_CONTEXT_TYPE,
|
|
726
|
-
_context: context
|
|
727
|
-
};
|
|
728
|
-
Object.defineProperties(Consumer, {
|
|
729
|
-
Provider: {
|
|
730
|
-
get: function() {
|
|
731
|
-
if (!hasWarnedAboutUsingConsumerProvider) {
|
|
732
|
-
hasWarnedAboutUsingConsumerProvider = true;
|
|
733
|
-
error("Rendering <Context.Consumer.Provider> is not supported and will be removed in " + "a future major release. Did you mean to render <Context.Provider> instead?");
|
|
734
|
-
}
|
|
735
|
-
return context.Provider;
|
|
736
|
-
},
|
|
737
|
-
set: function(_Provider) {
|
|
738
|
-
context.Provider = _Provider;
|
|
739
|
-
}
|
|
740
|
-
},
|
|
741
|
-
_currentValue: {
|
|
742
|
-
get: function() {
|
|
743
|
-
return context._currentValue;
|
|
744
|
-
},
|
|
745
|
-
set: function(_currentValue) {
|
|
746
|
-
context._currentValue = _currentValue;
|
|
747
|
-
}
|
|
748
|
-
},
|
|
749
|
-
_currentValue2: {
|
|
750
|
-
get: function() {
|
|
751
|
-
return context._currentValue2;
|
|
752
|
-
},
|
|
753
|
-
set: function(_currentValue2) {
|
|
754
|
-
context._currentValue2 = _currentValue2;
|
|
755
|
-
}
|
|
756
|
-
},
|
|
757
|
-
_threadCount: {
|
|
758
|
-
get: function() {
|
|
759
|
-
return context._threadCount;
|
|
760
|
-
},
|
|
761
|
-
set: function(_threadCount) {
|
|
762
|
-
context._threadCount = _threadCount;
|
|
763
|
-
}
|
|
764
|
-
},
|
|
765
|
-
Consumer: {
|
|
766
|
-
get: function() {
|
|
767
|
-
if (!hasWarnedAboutUsingNestedContextConsumers) {
|
|
768
|
-
hasWarnedAboutUsingNestedContextConsumers = true;
|
|
769
|
-
error("Rendering <Context.Consumer.Consumer> is not supported and will be removed in " + "a future major release. Did you mean to render <Context.Consumer> instead?");
|
|
770
|
-
}
|
|
771
|
-
return context.Consumer;
|
|
772
|
-
}
|
|
773
|
-
},
|
|
774
|
-
displayName: {
|
|
775
|
-
get: function() {
|
|
776
|
-
return context.displayName;
|
|
777
|
-
},
|
|
778
|
-
set: function(displayName) {
|
|
779
|
-
if (!hasWarnedAboutDisplayNameOnConsumer) {
|
|
780
|
-
warn("Setting `displayName` on Context.Consumer has no effect. " + "You should set it directly on the context with Context.displayName = '%s'.", displayName);
|
|
781
|
-
hasWarnedAboutDisplayNameOnConsumer = true;
|
|
782
|
-
}
|
|
783
|
-
}
|
|
784
|
-
}
|
|
785
|
-
});
|
|
786
|
-
context.Consumer = Consumer;
|
|
787
|
-
}
|
|
788
|
-
{
|
|
789
|
-
context._currentRenderer = null;
|
|
790
|
-
context._currentRenderer2 = null;
|
|
791
|
-
}
|
|
792
|
-
return context;
|
|
793
|
-
}
|
|
794
|
-
var Uninitialized = -1;
|
|
795
|
-
var Pending = 0;
|
|
796
|
-
var Resolved = 1;
|
|
797
|
-
var Rejected = 2;
|
|
798
|
-
function lazyInitializer(payload) {
|
|
799
|
-
if (payload._status === Uninitialized) {
|
|
800
|
-
var ctor = payload._result;
|
|
801
|
-
var thenable = ctor();
|
|
802
|
-
thenable.then(function(moduleObject2) {
|
|
803
|
-
if (payload._status === Pending || payload._status === Uninitialized) {
|
|
804
|
-
var resolved = payload;
|
|
805
|
-
resolved._status = Resolved;
|
|
806
|
-
resolved._result = moduleObject2;
|
|
807
|
-
}
|
|
808
|
-
}, function(error2) {
|
|
809
|
-
if (payload._status === Pending || payload._status === Uninitialized) {
|
|
810
|
-
var rejected = payload;
|
|
811
|
-
rejected._status = Rejected;
|
|
812
|
-
rejected._result = error2;
|
|
813
|
-
}
|
|
814
|
-
});
|
|
815
|
-
if (payload._status === Uninitialized) {
|
|
816
|
-
var pending = payload;
|
|
817
|
-
pending._status = Pending;
|
|
818
|
-
pending._result = thenable;
|
|
819
|
-
}
|
|
820
|
-
}
|
|
821
|
-
if (payload._status === Resolved) {
|
|
822
|
-
var moduleObject = payload._result;
|
|
823
|
-
{
|
|
824
|
-
if (moduleObject === undefined) {
|
|
825
|
-
error("lazy: Expected the result of a dynamic imp" + "ort() call. " + `Instead received: %s
|
|
826
|
-
|
|
827
|
-
Your code should look like:
|
|
828
|
-
` + "const MyComponent = lazy(() => imp" + `ort('./MyComponent'))
|
|
829
|
-
|
|
830
|
-
` + "Did you accidentally put curly braces around the import?", moduleObject);
|
|
831
|
-
}
|
|
832
|
-
}
|
|
833
|
-
{
|
|
834
|
-
if (!("default" in moduleObject)) {
|
|
835
|
-
error("lazy: Expected the result of a dynamic imp" + "ort() call. " + `Instead received: %s
|
|
836
|
-
|
|
837
|
-
Your code should look like:
|
|
838
|
-
` + "const MyComponent = lazy(() => imp" + "ort('./MyComponent'))", moduleObject);
|
|
839
|
-
}
|
|
840
|
-
}
|
|
841
|
-
return moduleObject.default;
|
|
842
|
-
} else {
|
|
843
|
-
throw payload._result;
|
|
844
|
-
}
|
|
845
|
-
}
|
|
846
|
-
function lazy(ctor) {
|
|
847
|
-
var payload = {
|
|
848
|
-
_status: Uninitialized,
|
|
849
|
-
_result: ctor
|
|
850
|
-
};
|
|
851
|
-
var lazyType = {
|
|
852
|
-
$$typeof: REACT_LAZY_TYPE,
|
|
853
|
-
_payload: payload,
|
|
854
|
-
_init: lazyInitializer
|
|
855
|
-
};
|
|
856
|
-
{
|
|
857
|
-
var defaultProps;
|
|
858
|
-
var propTypes;
|
|
859
|
-
Object.defineProperties(lazyType, {
|
|
860
|
-
defaultProps: {
|
|
861
|
-
configurable: true,
|
|
862
|
-
get: function() {
|
|
863
|
-
return defaultProps;
|
|
864
|
-
},
|
|
865
|
-
set: function(newDefaultProps) {
|
|
866
|
-
error("React.lazy(...): It is not supported to assign `defaultProps` to " + "a lazy component import. Either specify them where the component " + "is defined, or create a wrapping component around it.");
|
|
867
|
-
defaultProps = newDefaultProps;
|
|
868
|
-
Object.defineProperty(lazyType, "defaultProps", {
|
|
869
|
-
enumerable: true
|
|
870
|
-
});
|
|
871
|
-
}
|
|
872
|
-
},
|
|
873
|
-
propTypes: {
|
|
874
|
-
configurable: true,
|
|
875
|
-
get: function() {
|
|
876
|
-
return propTypes;
|
|
877
|
-
},
|
|
878
|
-
set: function(newPropTypes) {
|
|
879
|
-
error("React.lazy(...): It is not supported to assign `propTypes` to " + "a lazy component import. Either specify them where the component " + "is defined, or create a wrapping component around it.");
|
|
880
|
-
propTypes = newPropTypes;
|
|
881
|
-
Object.defineProperty(lazyType, "propTypes", {
|
|
882
|
-
enumerable: true
|
|
883
|
-
});
|
|
884
|
-
}
|
|
885
|
-
}
|
|
886
|
-
});
|
|
887
|
-
}
|
|
888
|
-
return lazyType;
|
|
889
|
-
}
|
|
890
|
-
function forwardRef(render) {
|
|
891
|
-
{
|
|
892
|
-
if (render != null && render.$$typeof === REACT_MEMO_TYPE) {
|
|
893
|
-
error("forwardRef requires a render function but received a `memo` " + "component. Instead of forwardRef(memo(...)), use " + "memo(forwardRef(...)).");
|
|
894
|
-
} else if (typeof render !== "function") {
|
|
895
|
-
error("forwardRef requires a render function but was given %s.", render === null ? "null" : typeof render);
|
|
896
|
-
} else {
|
|
897
|
-
if (render.length !== 0 && render.length !== 2) {
|
|
898
|
-
error("forwardRef render functions accept exactly two parameters: props and ref. %s", render.length === 1 ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined.");
|
|
899
|
-
}
|
|
900
|
-
}
|
|
901
|
-
if (render != null) {
|
|
902
|
-
if (render.defaultProps != null || render.propTypes != null) {
|
|
903
|
-
error("forwardRef render functions do not support propTypes or defaultProps. " + "Did you accidentally pass a React component?");
|
|
904
|
-
}
|
|
905
|
-
}
|
|
906
|
-
}
|
|
907
|
-
var elementType = {
|
|
908
|
-
$$typeof: REACT_FORWARD_REF_TYPE,
|
|
909
|
-
render
|
|
910
|
-
};
|
|
911
|
-
{
|
|
912
|
-
var ownName;
|
|
913
|
-
Object.defineProperty(elementType, "displayName", {
|
|
914
|
-
enumerable: false,
|
|
915
|
-
configurable: true,
|
|
916
|
-
get: function() {
|
|
917
|
-
return ownName;
|
|
918
|
-
},
|
|
919
|
-
set: function(name) {
|
|
920
|
-
ownName = name;
|
|
921
|
-
if (!render.name && !render.displayName) {
|
|
922
|
-
render.displayName = name;
|
|
923
|
-
}
|
|
924
|
-
}
|
|
925
|
-
});
|
|
926
|
-
}
|
|
927
|
-
return elementType;
|
|
928
|
-
}
|
|
929
|
-
var REACT_MODULE_REFERENCE;
|
|
930
|
-
{
|
|
931
|
-
REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
|
|
932
|
-
}
|
|
933
|
-
function isValidElementType(type) {
|
|
934
|
-
if (typeof type === "string" || typeof type === "function") {
|
|
935
|
-
return true;
|
|
936
|
-
}
|
|
937
|
-
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
|
|
938
|
-
return true;
|
|
939
|
-
}
|
|
940
|
-
if (typeof type === "object" && type !== null) {
|
|
941
|
-
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {
|
|
942
|
-
return true;
|
|
943
|
-
}
|
|
944
|
-
}
|
|
945
|
-
return false;
|
|
946
|
-
}
|
|
947
|
-
function memo(type, compare) {
|
|
948
|
-
{
|
|
949
|
-
if (!isValidElementType(type)) {
|
|
950
|
-
error("memo: The first argument must be a component. Instead " + "received: %s", type === null ? "null" : typeof type);
|
|
951
|
-
}
|
|
952
|
-
}
|
|
953
|
-
var elementType = {
|
|
954
|
-
$$typeof: REACT_MEMO_TYPE,
|
|
955
|
-
type,
|
|
956
|
-
compare: compare === undefined ? null : compare
|
|
957
|
-
};
|
|
958
|
-
{
|
|
959
|
-
var ownName;
|
|
960
|
-
Object.defineProperty(elementType, "displayName", {
|
|
961
|
-
enumerable: false,
|
|
962
|
-
configurable: true,
|
|
963
|
-
get: function() {
|
|
964
|
-
return ownName;
|
|
965
|
-
},
|
|
966
|
-
set: function(name) {
|
|
967
|
-
ownName = name;
|
|
968
|
-
if (!type.name && !type.displayName) {
|
|
969
|
-
type.displayName = name;
|
|
970
|
-
}
|
|
971
|
-
}
|
|
972
|
-
});
|
|
973
|
-
}
|
|
974
|
-
return elementType;
|
|
975
|
-
}
|
|
976
|
-
function resolveDispatcher() {
|
|
977
|
-
var dispatcher = ReactCurrentDispatcher.current;
|
|
978
|
-
{
|
|
979
|
-
if (dispatcher === null) {
|
|
980
|
-
error("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:
|
|
981
|
-
` + `1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
982
|
-
` + `2. You might be breaking the Rules of Hooks
|
|
983
|
-
` + `3. You might have more than one copy of React in the same app
|
|
984
|
-
` + "See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.");
|
|
985
|
-
}
|
|
986
|
-
}
|
|
987
|
-
return dispatcher;
|
|
988
|
-
}
|
|
989
|
-
function useContext(Context) {
|
|
990
|
-
var dispatcher = resolveDispatcher();
|
|
991
|
-
{
|
|
992
|
-
if (Context._context !== undefined) {
|
|
993
|
-
var realContext = Context._context;
|
|
994
|
-
if (realContext.Consumer === Context) {
|
|
995
|
-
error("Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be " + "removed in a future major release. Did you mean to call useContext(Context) instead?");
|
|
996
|
-
} else if (realContext.Provider === Context) {
|
|
997
|
-
error("Calling useContext(Context.Provider) is not supported. " + "Did you mean to call useContext(Context) instead?");
|
|
998
|
-
}
|
|
999
|
-
}
|
|
1000
|
-
}
|
|
1001
|
-
return dispatcher.useContext(Context);
|
|
1002
|
-
}
|
|
1003
|
-
function useState(initialState) {
|
|
1004
|
-
var dispatcher = resolveDispatcher();
|
|
1005
|
-
return dispatcher.useState(initialState);
|
|
1006
|
-
}
|
|
1007
|
-
function useReducer(reducer, initialArg, init) {
|
|
1008
|
-
var dispatcher = resolveDispatcher();
|
|
1009
|
-
return dispatcher.useReducer(reducer, initialArg, init);
|
|
1010
|
-
}
|
|
1011
|
-
function useRef(initialValue) {
|
|
1012
|
-
var dispatcher = resolveDispatcher();
|
|
1013
|
-
return dispatcher.useRef(initialValue);
|
|
1014
|
-
}
|
|
1015
|
-
function useEffect(create, deps) {
|
|
1016
|
-
var dispatcher = resolveDispatcher();
|
|
1017
|
-
return dispatcher.useEffect(create, deps);
|
|
1018
|
-
}
|
|
1019
|
-
function useInsertionEffect(create, deps) {
|
|
1020
|
-
var dispatcher = resolveDispatcher();
|
|
1021
|
-
return dispatcher.useInsertionEffect(create, deps);
|
|
1022
|
-
}
|
|
1023
|
-
function useLayoutEffect(create, deps) {
|
|
1024
|
-
var dispatcher = resolveDispatcher();
|
|
1025
|
-
return dispatcher.useLayoutEffect(create, deps);
|
|
1026
|
-
}
|
|
1027
|
-
function useCallback(callback, deps) {
|
|
1028
|
-
var dispatcher = resolveDispatcher();
|
|
1029
|
-
return dispatcher.useCallback(callback, deps);
|
|
1030
|
-
}
|
|
1031
|
-
function useMemo(create, deps) {
|
|
1032
|
-
var dispatcher = resolveDispatcher();
|
|
1033
|
-
return dispatcher.useMemo(create, deps);
|
|
1034
|
-
}
|
|
1035
|
-
function useImperativeHandle(ref, create, deps) {
|
|
1036
|
-
var dispatcher = resolveDispatcher();
|
|
1037
|
-
return dispatcher.useImperativeHandle(ref, create, deps);
|
|
1038
|
-
}
|
|
1039
|
-
function useDebugValue(value, formatterFn) {
|
|
1040
|
-
{
|
|
1041
|
-
var dispatcher = resolveDispatcher();
|
|
1042
|
-
return dispatcher.useDebugValue(value, formatterFn);
|
|
1043
|
-
}
|
|
1044
|
-
}
|
|
1045
|
-
function useTransition() {
|
|
1046
|
-
var dispatcher = resolveDispatcher();
|
|
1047
|
-
return dispatcher.useTransition();
|
|
1048
|
-
}
|
|
1049
|
-
function useDeferredValue(value) {
|
|
1050
|
-
var dispatcher = resolveDispatcher();
|
|
1051
|
-
return dispatcher.useDeferredValue(value);
|
|
1052
|
-
}
|
|
1053
|
-
function useId() {
|
|
1054
|
-
var dispatcher = resolveDispatcher();
|
|
1055
|
-
return dispatcher.useId();
|
|
1056
|
-
}
|
|
1057
|
-
function useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
|
1058
|
-
var dispatcher = resolveDispatcher();
|
|
1059
|
-
return dispatcher.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);
|
|
1060
|
-
}
|
|
1061
|
-
var disabledDepth = 0;
|
|
1062
|
-
var prevLog;
|
|
1063
|
-
var prevInfo;
|
|
1064
|
-
var prevWarn;
|
|
1065
|
-
var prevError;
|
|
1066
|
-
var prevGroup;
|
|
1067
|
-
var prevGroupCollapsed;
|
|
1068
|
-
var prevGroupEnd;
|
|
1069
|
-
function disabledLog() {}
|
|
1070
|
-
disabledLog.__reactDisabledLog = true;
|
|
1071
|
-
function disableLogs() {
|
|
1072
|
-
{
|
|
1073
|
-
if (disabledDepth === 0) {
|
|
1074
|
-
prevLog = console.log;
|
|
1075
|
-
prevInfo = console.info;
|
|
1076
|
-
prevWarn = console.warn;
|
|
1077
|
-
prevError = console.error;
|
|
1078
|
-
prevGroup = console.group;
|
|
1079
|
-
prevGroupCollapsed = console.groupCollapsed;
|
|
1080
|
-
prevGroupEnd = console.groupEnd;
|
|
1081
|
-
var props = {
|
|
1082
|
-
configurable: true,
|
|
1083
|
-
enumerable: true,
|
|
1084
|
-
value: disabledLog,
|
|
1085
|
-
writable: true
|
|
1086
|
-
};
|
|
1087
|
-
Object.defineProperties(console, {
|
|
1088
|
-
info: props,
|
|
1089
|
-
log: props,
|
|
1090
|
-
warn: props,
|
|
1091
|
-
error: props,
|
|
1092
|
-
group: props,
|
|
1093
|
-
groupCollapsed: props,
|
|
1094
|
-
groupEnd: props
|
|
1095
|
-
});
|
|
1096
|
-
}
|
|
1097
|
-
disabledDepth++;
|
|
1098
|
-
}
|
|
1099
|
-
}
|
|
1100
|
-
function reenableLogs() {
|
|
1101
|
-
{
|
|
1102
|
-
disabledDepth--;
|
|
1103
|
-
if (disabledDepth === 0) {
|
|
1104
|
-
var props = {
|
|
1105
|
-
configurable: true,
|
|
1106
|
-
enumerable: true,
|
|
1107
|
-
writable: true
|
|
1108
|
-
};
|
|
1109
|
-
Object.defineProperties(console, {
|
|
1110
|
-
log: assign({}, props, {
|
|
1111
|
-
value: prevLog
|
|
1112
|
-
}),
|
|
1113
|
-
info: assign({}, props, {
|
|
1114
|
-
value: prevInfo
|
|
1115
|
-
}),
|
|
1116
|
-
warn: assign({}, props, {
|
|
1117
|
-
value: prevWarn
|
|
1118
|
-
}),
|
|
1119
|
-
error: assign({}, props, {
|
|
1120
|
-
value: prevError
|
|
1121
|
-
}),
|
|
1122
|
-
group: assign({}, props, {
|
|
1123
|
-
value: prevGroup
|
|
1124
|
-
}),
|
|
1125
|
-
groupCollapsed: assign({}, props, {
|
|
1126
|
-
value: prevGroupCollapsed
|
|
1127
|
-
}),
|
|
1128
|
-
groupEnd: assign({}, props, {
|
|
1129
|
-
value: prevGroupEnd
|
|
1130
|
-
})
|
|
1131
|
-
});
|
|
1132
|
-
}
|
|
1133
|
-
if (disabledDepth < 0) {
|
|
1134
|
-
error("disabledDepth fell below zero. " + "This is a bug in React. Please file an issue.");
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1137
|
-
}
|
|
1138
|
-
var ReactCurrentDispatcher$1 = ReactSharedInternals.ReactCurrentDispatcher;
|
|
1139
|
-
var prefix;
|
|
1140
|
-
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
|
1141
|
-
{
|
|
1142
|
-
if (prefix === undefined) {
|
|
1143
|
-
try {
|
|
1144
|
-
throw Error();
|
|
1145
|
-
} catch (x) {
|
|
1146
|
-
var match = x.stack.trim().match(/\n( *(at )?)/);
|
|
1147
|
-
prefix = match && match[1] || "";
|
|
1148
|
-
}
|
|
1149
|
-
}
|
|
1150
|
-
return `
|
|
1151
|
-
` + prefix + name;
|
|
1152
|
-
}
|
|
1153
|
-
}
|
|
1154
|
-
var reentry = false;
|
|
1155
|
-
var componentFrameCache;
|
|
1156
|
-
{
|
|
1157
|
-
var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
|
|
1158
|
-
componentFrameCache = new PossiblyWeakMap;
|
|
1159
|
-
}
|
|
1160
|
-
function describeNativeComponentFrame(fn, construct) {
|
|
1161
|
-
if (!fn || reentry) {
|
|
1162
|
-
return "";
|
|
1163
|
-
}
|
|
1164
|
-
{
|
|
1165
|
-
var frame = componentFrameCache.get(fn);
|
|
1166
|
-
if (frame !== undefined) {
|
|
1167
|
-
return frame;
|
|
1168
|
-
}
|
|
1169
|
-
}
|
|
1170
|
-
var control;
|
|
1171
|
-
reentry = true;
|
|
1172
|
-
var previousPrepareStackTrace = Error.prepareStackTrace;
|
|
1173
|
-
Error.prepareStackTrace = undefined;
|
|
1174
|
-
var previousDispatcher;
|
|
1175
|
-
{
|
|
1176
|
-
previousDispatcher = ReactCurrentDispatcher$1.current;
|
|
1177
|
-
ReactCurrentDispatcher$1.current = null;
|
|
1178
|
-
disableLogs();
|
|
1179
|
-
}
|
|
1180
|
-
try {
|
|
1181
|
-
if (construct) {
|
|
1182
|
-
var Fake = function() {
|
|
1183
|
-
throw Error();
|
|
1184
|
-
};
|
|
1185
|
-
Object.defineProperty(Fake.prototype, "props", {
|
|
1186
|
-
set: function() {
|
|
1187
|
-
throw Error();
|
|
1188
|
-
}
|
|
1189
|
-
});
|
|
1190
|
-
if (typeof Reflect === "object" && Reflect.construct) {
|
|
1191
|
-
try {
|
|
1192
|
-
Reflect.construct(Fake, []);
|
|
1193
|
-
} catch (x) {
|
|
1194
|
-
control = x;
|
|
1195
|
-
}
|
|
1196
|
-
Reflect.construct(fn, [], Fake);
|
|
1197
|
-
} else {
|
|
1198
|
-
try {
|
|
1199
|
-
Fake.call();
|
|
1200
|
-
} catch (x) {
|
|
1201
|
-
control = x;
|
|
1202
|
-
}
|
|
1203
|
-
fn.call(Fake.prototype);
|
|
1204
|
-
}
|
|
1205
|
-
} else {
|
|
1206
|
-
try {
|
|
1207
|
-
throw Error();
|
|
1208
|
-
} catch (x) {
|
|
1209
|
-
control = x;
|
|
1210
|
-
}
|
|
1211
|
-
fn();
|
|
1212
|
-
}
|
|
1213
|
-
} catch (sample) {
|
|
1214
|
-
if (sample && control && typeof sample.stack === "string") {
|
|
1215
|
-
var sampleLines = sample.stack.split(`
|
|
1216
|
-
`);
|
|
1217
|
-
var controlLines = control.stack.split(`
|
|
1218
|
-
`);
|
|
1219
|
-
var s = sampleLines.length - 1;
|
|
1220
|
-
var c = controlLines.length - 1;
|
|
1221
|
-
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
|
1222
|
-
c--;
|
|
1223
|
-
}
|
|
1224
|
-
for (;s >= 1 && c >= 0; s--, c--) {
|
|
1225
|
-
if (sampleLines[s] !== controlLines[c]) {
|
|
1226
|
-
if (s !== 1 || c !== 1) {
|
|
1227
|
-
do {
|
|
1228
|
-
s--;
|
|
1229
|
-
c--;
|
|
1230
|
-
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
|
1231
|
-
var _frame = `
|
|
1232
|
-
` + sampleLines[s].replace(" at new ", " at ");
|
|
1233
|
-
if (fn.displayName && _frame.includes("<anonymous>")) {
|
|
1234
|
-
_frame = _frame.replace("<anonymous>", fn.displayName);
|
|
1235
|
-
}
|
|
1236
|
-
{
|
|
1237
|
-
if (typeof fn === "function") {
|
|
1238
|
-
componentFrameCache.set(fn, _frame);
|
|
1239
|
-
}
|
|
1240
|
-
}
|
|
1241
|
-
return _frame;
|
|
1242
|
-
}
|
|
1243
|
-
} while (s >= 1 && c >= 0);
|
|
1244
|
-
}
|
|
1245
|
-
break;
|
|
1246
|
-
}
|
|
1247
|
-
}
|
|
1248
|
-
}
|
|
1249
|
-
} finally {
|
|
1250
|
-
reentry = false;
|
|
1251
|
-
{
|
|
1252
|
-
ReactCurrentDispatcher$1.current = previousDispatcher;
|
|
1253
|
-
reenableLogs();
|
|
1254
|
-
}
|
|
1255
|
-
Error.prepareStackTrace = previousPrepareStackTrace;
|
|
1256
|
-
}
|
|
1257
|
-
var name = fn ? fn.displayName || fn.name : "";
|
|
1258
|
-
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
|
|
1259
|
-
{
|
|
1260
|
-
if (typeof fn === "function") {
|
|
1261
|
-
componentFrameCache.set(fn, syntheticFrame);
|
|
1262
|
-
}
|
|
1263
|
-
}
|
|
1264
|
-
return syntheticFrame;
|
|
1265
|
-
}
|
|
1266
|
-
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
|
1267
|
-
{
|
|
1268
|
-
return describeNativeComponentFrame(fn, false);
|
|
1269
|
-
}
|
|
1270
|
-
}
|
|
1271
|
-
function shouldConstruct(Component2) {
|
|
1272
|
-
var prototype = Component2.prototype;
|
|
1273
|
-
return !!(prototype && prototype.isReactComponent);
|
|
1274
|
-
}
|
|
1275
|
-
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
1276
|
-
if (type == null) {
|
|
1277
|
-
return "";
|
|
1278
|
-
}
|
|
1279
|
-
if (typeof type === "function") {
|
|
1280
|
-
{
|
|
1281
|
-
return describeNativeComponentFrame(type, shouldConstruct(type));
|
|
1282
|
-
}
|
|
1283
|
-
}
|
|
1284
|
-
if (typeof type === "string") {
|
|
1285
|
-
return describeBuiltInComponentFrame(type);
|
|
1286
|
-
}
|
|
1287
|
-
switch (type) {
|
|
1288
|
-
case REACT_SUSPENSE_TYPE:
|
|
1289
|
-
return describeBuiltInComponentFrame("Suspense");
|
|
1290
|
-
case REACT_SUSPENSE_LIST_TYPE:
|
|
1291
|
-
return describeBuiltInComponentFrame("SuspenseList");
|
|
1292
|
-
}
|
|
1293
|
-
if (typeof type === "object") {
|
|
1294
|
-
switch (type.$$typeof) {
|
|
1295
|
-
case REACT_FORWARD_REF_TYPE:
|
|
1296
|
-
return describeFunctionComponentFrame(type.render);
|
|
1297
|
-
case REACT_MEMO_TYPE:
|
|
1298
|
-
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
|
1299
|
-
case REACT_LAZY_TYPE: {
|
|
1300
|
-
var lazyComponent = type;
|
|
1301
|
-
var payload = lazyComponent._payload;
|
|
1302
|
-
var init = lazyComponent._init;
|
|
1303
|
-
try {
|
|
1304
|
-
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
|
1305
|
-
} catch (x) {}
|
|
1306
|
-
}
|
|
1307
|
-
}
|
|
1308
|
-
}
|
|
1309
|
-
return "";
|
|
1310
|
-
}
|
|
1311
|
-
var loggedTypeFailures = {};
|
|
1312
|
-
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
1313
|
-
function setCurrentlyValidatingElement(element) {
|
|
1314
|
-
{
|
|
1315
|
-
if (element) {
|
|
1316
|
-
var owner = element._owner;
|
|
1317
|
-
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
1318
|
-
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
|
1319
|
-
} else {
|
|
1320
|
-
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
|
1321
|
-
}
|
|
1322
|
-
}
|
|
1323
|
-
}
|
|
1324
|
-
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
|
1325
|
-
{
|
|
1326
|
-
var has = Function.call.bind(hasOwnProperty);
|
|
1327
|
-
for (var typeSpecName in typeSpecs) {
|
|
1328
|
-
if (has(typeSpecs, typeSpecName)) {
|
|
1329
|
-
var error$1 = undefined;
|
|
1330
|
-
try {
|
|
1331
|
-
if (typeof typeSpecs[typeSpecName] !== "function") {
|
|
1332
|
-
var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; " + "it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`." + "This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
1333
|
-
err.name = "Invariant Violation";
|
|
1334
|
-
throw err;
|
|
1335
|
-
}
|
|
1336
|
-
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
1337
|
-
} catch (ex) {
|
|
1338
|
-
error$1 = ex;
|
|
1339
|
-
}
|
|
1340
|
-
if (error$1 && !(error$1 instanceof Error)) {
|
|
1341
|
-
setCurrentlyValidatingElement(element);
|
|
1342
|
-
error("%s: type specification of %s" + " `%s` is invalid; the type checker " + "function must return `null` or an `Error` but returned a %s. " + "You may have forgotten to pass an argument to the type checker " + "creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and " + "shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1);
|
|
1343
|
-
setCurrentlyValidatingElement(null);
|
|
1344
|
-
}
|
|
1345
|
-
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
1346
|
-
loggedTypeFailures[error$1.message] = true;
|
|
1347
|
-
setCurrentlyValidatingElement(element);
|
|
1348
|
-
error("Failed %s type: %s", location, error$1.message);
|
|
1349
|
-
setCurrentlyValidatingElement(null);
|
|
1350
|
-
}
|
|
1351
|
-
}
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
}
|
|
1355
|
-
function setCurrentlyValidatingElement$1(element) {
|
|
1356
|
-
{
|
|
1357
|
-
if (element) {
|
|
1358
|
-
var owner = element._owner;
|
|
1359
|
-
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
1360
|
-
setExtraStackFrame(stack);
|
|
1361
|
-
} else {
|
|
1362
|
-
setExtraStackFrame(null);
|
|
1363
|
-
}
|
|
1364
|
-
}
|
|
1365
|
-
}
|
|
1366
|
-
var propTypesMisspellWarningShown;
|
|
1367
|
-
{
|
|
1368
|
-
propTypesMisspellWarningShown = false;
|
|
1369
|
-
}
|
|
1370
|
-
function getDeclarationErrorAddendum() {
|
|
1371
|
-
if (ReactCurrentOwner.current) {
|
|
1372
|
-
var name = getComponentNameFromType(ReactCurrentOwner.current.type);
|
|
1373
|
-
if (name) {
|
|
1374
|
-
return `
|
|
1375
|
-
|
|
1376
|
-
Check the render method of \`` + name + "`.";
|
|
1377
|
-
}
|
|
1378
|
-
}
|
|
1379
|
-
return "";
|
|
1380
|
-
}
|
|
1381
|
-
function getSourceInfoErrorAddendum(source) {
|
|
1382
|
-
if (source !== undefined) {
|
|
1383
|
-
var fileName = source.fileName.replace(/^.*[\\\/]/, "");
|
|
1384
|
-
var lineNumber = source.lineNumber;
|
|
1385
|
-
return `
|
|
1386
|
-
|
|
1387
|
-
Check your code at ` + fileName + ":" + lineNumber + ".";
|
|
1388
|
-
}
|
|
1389
|
-
return "";
|
|
1390
|
-
}
|
|
1391
|
-
function getSourceInfoErrorAddendumForProps(elementProps) {
|
|
1392
|
-
if (elementProps !== null && elementProps !== undefined) {
|
|
1393
|
-
return getSourceInfoErrorAddendum(elementProps.__source);
|
|
1394
|
-
}
|
|
1395
|
-
return "";
|
|
1396
|
-
}
|
|
1397
|
-
var ownerHasKeyUseWarning = {};
|
|
1398
|
-
function getCurrentComponentErrorInfo(parentType) {
|
|
1399
|
-
var info = getDeclarationErrorAddendum();
|
|
1400
|
-
if (!info) {
|
|
1401
|
-
var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name;
|
|
1402
|
-
if (parentName) {
|
|
1403
|
-
info = `
|
|
1404
|
-
|
|
1405
|
-
Check the top-level render call using <` + parentName + ">.";
|
|
1406
|
-
}
|
|
1407
|
-
}
|
|
1408
|
-
return info;
|
|
1409
|
-
}
|
|
1410
|
-
function validateExplicitKey(element, parentType) {
|
|
1411
|
-
if (!element._store || element._store.validated || element.key != null) {
|
|
1412
|
-
return;
|
|
1413
|
-
}
|
|
1414
|
-
element._store.validated = true;
|
|
1415
|
-
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
|
1416
|
-
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
|
|
1417
|
-
return;
|
|
1418
|
-
}
|
|
1419
|
-
ownerHasKeyUseWarning[currentComponentErrorInfo] = true;
|
|
1420
|
-
var childOwner = "";
|
|
1421
|
-
if (element && element._owner && element._owner !== ReactCurrentOwner.current) {
|
|
1422
|
-
childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
|
|
1423
|
-
}
|
|
1424
|
-
{
|
|
1425
|
-
setCurrentlyValidatingElement$1(element);
|
|
1426
|
-
error('Each child in a list should have a unique "key" prop.' + "%s%s See https://reactjs.org/link/warning-keys for more information.", currentComponentErrorInfo, childOwner);
|
|
1427
|
-
setCurrentlyValidatingElement$1(null);
|
|
1428
|
-
}
|
|
1429
|
-
}
|
|
1430
|
-
function validateChildKeys(node, parentType) {
|
|
1431
|
-
if (typeof node !== "object") {
|
|
1432
|
-
return;
|
|
1433
|
-
}
|
|
1434
|
-
if (isArray(node)) {
|
|
1435
|
-
for (var i = 0;i < node.length; i++) {
|
|
1436
|
-
var child = node[i];
|
|
1437
|
-
if (isValidElement(child)) {
|
|
1438
|
-
validateExplicitKey(child, parentType);
|
|
1439
|
-
}
|
|
1440
|
-
}
|
|
1441
|
-
} else if (isValidElement(node)) {
|
|
1442
|
-
if (node._store) {
|
|
1443
|
-
node._store.validated = true;
|
|
1444
|
-
}
|
|
1445
|
-
} else if (node) {
|
|
1446
|
-
var iteratorFn = getIteratorFn(node);
|
|
1447
|
-
if (typeof iteratorFn === "function") {
|
|
1448
|
-
if (iteratorFn !== node.entries) {
|
|
1449
|
-
var iterator = iteratorFn.call(node);
|
|
1450
|
-
var step;
|
|
1451
|
-
while (!(step = iterator.next()).done) {
|
|
1452
|
-
if (isValidElement(step.value)) {
|
|
1453
|
-
validateExplicitKey(step.value, parentType);
|
|
1454
|
-
}
|
|
1455
|
-
}
|
|
1456
|
-
}
|
|
1457
|
-
}
|
|
1458
|
-
}
|
|
1459
|
-
}
|
|
1460
|
-
function validatePropTypes(element) {
|
|
1461
|
-
{
|
|
1462
|
-
var type = element.type;
|
|
1463
|
-
if (type === null || type === undefined || typeof type === "string") {
|
|
1464
|
-
return;
|
|
1465
|
-
}
|
|
1466
|
-
var propTypes;
|
|
1467
|
-
if (typeof type === "function") {
|
|
1468
|
-
propTypes = type.propTypes;
|
|
1469
|
-
} else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_MEMO_TYPE)) {
|
|
1470
|
-
propTypes = type.propTypes;
|
|
1471
|
-
} else {
|
|
1472
|
-
return;
|
|
1473
|
-
}
|
|
1474
|
-
if (propTypes) {
|
|
1475
|
-
var name = getComponentNameFromType(type);
|
|
1476
|
-
checkPropTypes(propTypes, element.props, "prop", name, element);
|
|
1477
|
-
} else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {
|
|
1478
|
-
propTypesMisspellWarningShown = true;
|
|
1479
|
-
var _name = getComponentNameFromType(type);
|
|
1480
|
-
error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", _name || "Unknown");
|
|
1481
|
-
}
|
|
1482
|
-
if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) {
|
|
1483
|
-
error("getDefaultProps is only used on classic React.createClass " + "definitions. Use a static property named `defaultProps` instead.");
|
|
1484
|
-
}
|
|
1485
|
-
}
|
|
1486
|
-
}
|
|
1487
|
-
function validateFragmentProps(fragment) {
|
|
1488
|
-
{
|
|
1489
|
-
var keys = Object.keys(fragment.props);
|
|
1490
|
-
for (var i = 0;i < keys.length; i++) {
|
|
1491
|
-
var key = keys[i];
|
|
1492
|
-
if (key !== "children" && key !== "key") {
|
|
1493
|
-
setCurrentlyValidatingElement$1(fragment);
|
|
1494
|
-
error("Invalid prop `%s` supplied to `React.Fragment`. " + "React.Fragment can only have `key` and `children` props.", key);
|
|
1495
|
-
setCurrentlyValidatingElement$1(null);
|
|
1496
|
-
break;
|
|
1497
|
-
}
|
|
1498
|
-
}
|
|
1499
|
-
if (fragment.ref !== null) {
|
|
1500
|
-
setCurrentlyValidatingElement$1(fragment);
|
|
1501
|
-
error("Invalid attribute `ref` supplied to `React.Fragment`.");
|
|
1502
|
-
setCurrentlyValidatingElement$1(null);
|
|
1503
|
-
}
|
|
1504
|
-
}
|
|
1505
|
-
}
|
|
1506
|
-
function createElementWithValidation(type, props, children) {
|
|
1507
|
-
var validType = isValidElementType(type);
|
|
1508
|
-
if (!validType) {
|
|
1509
|
-
var info = "";
|
|
1510
|
-
if (type === undefined || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
|
|
1511
|
-
info += " You likely forgot to export your component from the file " + "it's defined in, or you might have mixed up default and named imports.";
|
|
1512
|
-
}
|
|
1513
|
-
var sourceInfo = getSourceInfoErrorAddendumForProps(props);
|
|
1514
|
-
if (sourceInfo) {
|
|
1515
|
-
info += sourceInfo;
|
|
1516
|
-
} else {
|
|
1517
|
-
info += getDeclarationErrorAddendum();
|
|
1518
|
-
}
|
|
1519
|
-
var typeString;
|
|
1520
|
-
if (type === null) {
|
|
1521
|
-
typeString = "null";
|
|
1522
|
-
} else if (isArray(type)) {
|
|
1523
|
-
typeString = "array";
|
|
1524
|
-
} else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
|
|
1525
|
-
typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
|
|
1526
|
-
info = " Did you accidentally export a JSX literal instead of a component?";
|
|
1527
|
-
} else {
|
|
1528
|
-
typeString = typeof type;
|
|
1529
|
-
}
|
|
1530
|
-
{
|
|
1531
|
-
error("React.createElement: type is invalid -- expected a string (for " + "built-in components) or a class/function (for composite " + "components) but got: %s.%s", typeString, info);
|
|
1532
|
-
}
|
|
1533
|
-
}
|
|
1534
|
-
var element = createElement.apply(this, arguments);
|
|
1535
|
-
if (element == null) {
|
|
1536
|
-
return element;
|
|
1537
|
-
}
|
|
1538
|
-
if (validType) {
|
|
1539
|
-
for (var i = 2;i < arguments.length; i++) {
|
|
1540
|
-
validateChildKeys(arguments[i], type);
|
|
1541
|
-
}
|
|
1542
|
-
}
|
|
1543
|
-
if (type === REACT_FRAGMENT_TYPE) {
|
|
1544
|
-
validateFragmentProps(element);
|
|
1545
|
-
} else {
|
|
1546
|
-
validatePropTypes(element);
|
|
1547
|
-
}
|
|
1548
|
-
return element;
|
|
1549
|
-
}
|
|
1550
|
-
var didWarnAboutDeprecatedCreateFactory = false;
|
|
1551
|
-
function createFactoryWithValidation(type) {
|
|
1552
|
-
var validatedFactory = createElementWithValidation.bind(null, type);
|
|
1553
|
-
validatedFactory.type = type;
|
|
1554
|
-
{
|
|
1555
|
-
if (!didWarnAboutDeprecatedCreateFactory) {
|
|
1556
|
-
didWarnAboutDeprecatedCreateFactory = true;
|
|
1557
|
-
warn("React.createFactory() is deprecated and will be removed in " + "a future major release. Consider using JSX " + "or use React.createElement() directly instead.");
|
|
1558
|
-
}
|
|
1559
|
-
Object.defineProperty(validatedFactory, "type", {
|
|
1560
|
-
enumerable: false,
|
|
1561
|
-
get: function() {
|
|
1562
|
-
warn("Factory.type is deprecated. Access the class directly " + "before passing it to createFactory.");
|
|
1563
|
-
Object.defineProperty(this, "type", {
|
|
1564
|
-
value: type
|
|
1565
|
-
});
|
|
1566
|
-
return type;
|
|
1567
|
-
}
|
|
1568
|
-
});
|
|
1569
|
-
}
|
|
1570
|
-
return validatedFactory;
|
|
1571
|
-
}
|
|
1572
|
-
function cloneElementWithValidation(element, props, children) {
|
|
1573
|
-
var newElement = cloneElement.apply(this, arguments);
|
|
1574
|
-
for (var i = 2;i < arguments.length; i++) {
|
|
1575
|
-
validateChildKeys(arguments[i], newElement.type);
|
|
1576
|
-
}
|
|
1577
|
-
validatePropTypes(newElement);
|
|
1578
|
-
return newElement;
|
|
1579
|
-
}
|
|
1580
|
-
function startTransition(scope, options) {
|
|
1581
|
-
var prevTransition = ReactCurrentBatchConfig.transition;
|
|
1582
|
-
ReactCurrentBatchConfig.transition = {};
|
|
1583
|
-
var currentTransition = ReactCurrentBatchConfig.transition;
|
|
1584
|
-
{
|
|
1585
|
-
ReactCurrentBatchConfig.transition._updatedFibers = new Set;
|
|
1586
|
-
}
|
|
1587
|
-
try {
|
|
1588
|
-
scope();
|
|
1589
|
-
} finally {
|
|
1590
|
-
ReactCurrentBatchConfig.transition = prevTransition;
|
|
1591
|
-
{
|
|
1592
|
-
if (prevTransition === null && currentTransition._updatedFibers) {
|
|
1593
|
-
var updatedFibersCount = currentTransition._updatedFibers.size;
|
|
1594
|
-
if (updatedFibersCount > 10) {
|
|
1595
|
-
warn("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.");
|
|
1596
|
-
}
|
|
1597
|
-
currentTransition._updatedFibers.clear();
|
|
1598
|
-
}
|
|
1599
|
-
}
|
|
1600
|
-
}
|
|
1601
|
-
}
|
|
1602
|
-
var didWarnAboutMessageChannel = false;
|
|
1603
|
-
var enqueueTaskImpl = null;
|
|
1604
|
-
function enqueueTask(task) {
|
|
1605
|
-
if (enqueueTaskImpl === null) {
|
|
1606
|
-
try {
|
|
1607
|
-
var requireString = ("require" + Math.random()).slice(0, 7);
|
|
1608
|
-
var nodeRequire = module && module[requireString];
|
|
1609
|
-
enqueueTaskImpl = nodeRequire.call(module, "timers").setImmediate;
|
|
1610
|
-
} catch (_err) {
|
|
1611
|
-
enqueueTaskImpl = function(callback) {
|
|
1612
|
-
{
|
|
1613
|
-
if (didWarnAboutMessageChannel === false) {
|
|
1614
|
-
didWarnAboutMessageChannel = true;
|
|
1615
|
-
if (typeof MessageChannel === "undefined") {
|
|
1616
|
-
error("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.");
|
|
1617
|
-
}
|
|
1618
|
-
}
|
|
1619
|
-
}
|
|
1620
|
-
var channel = new MessageChannel;
|
|
1621
|
-
channel.port1.onmessage = callback;
|
|
1622
|
-
channel.port2.postMessage(undefined);
|
|
1623
|
-
};
|
|
1624
|
-
}
|
|
1625
|
-
}
|
|
1626
|
-
return enqueueTaskImpl(task);
|
|
1627
|
-
}
|
|
1628
|
-
var actScopeDepth = 0;
|
|
1629
|
-
var didWarnNoAwaitAct = false;
|
|
1630
|
-
function act(callback) {
|
|
1631
|
-
{
|
|
1632
|
-
var prevActScopeDepth = actScopeDepth;
|
|
1633
|
-
actScopeDepth++;
|
|
1634
|
-
if (ReactCurrentActQueue.current === null) {
|
|
1635
|
-
ReactCurrentActQueue.current = [];
|
|
1636
|
-
}
|
|
1637
|
-
var prevIsBatchingLegacy = ReactCurrentActQueue.isBatchingLegacy;
|
|
1638
|
-
var result;
|
|
1639
|
-
try {
|
|
1640
|
-
ReactCurrentActQueue.isBatchingLegacy = true;
|
|
1641
|
-
result = callback();
|
|
1642
|
-
if (!prevIsBatchingLegacy && ReactCurrentActQueue.didScheduleLegacyUpdate) {
|
|
1643
|
-
var queue = ReactCurrentActQueue.current;
|
|
1644
|
-
if (queue !== null) {
|
|
1645
|
-
ReactCurrentActQueue.didScheduleLegacyUpdate = false;
|
|
1646
|
-
flushActQueue(queue);
|
|
1647
|
-
}
|
|
1648
|
-
}
|
|
1649
|
-
} catch (error2) {
|
|
1650
|
-
popActScope(prevActScopeDepth);
|
|
1651
|
-
throw error2;
|
|
1652
|
-
} finally {
|
|
1653
|
-
ReactCurrentActQueue.isBatchingLegacy = prevIsBatchingLegacy;
|
|
1654
|
-
}
|
|
1655
|
-
if (result !== null && typeof result === "object" && typeof result.then === "function") {
|
|
1656
|
-
var thenableResult = result;
|
|
1657
|
-
var wasAwaited = false;
|
|
1658
|
-
var thenable = {
|
|
1659
|
-
then: function(resolve, reject) {
|
|
1660
|
-
wasAwaited = true;
|
|
1661
|
-
thenableResult.then(function(returnValue2) {
|
|
1662
|
-
popActScope(prevActScopeDepth);
|
|
1663
|
-
if (actScopeDepth === 0) {
|
|
1664
|
-
recursivelyFlushAsyncActWork(returnValue2, resolve, reject);
|
|
1665
|
-
} else {
|
|
1666
|
-
resolve(returnValue2);
|
|
1667
|
-
}
|
|
1668
|
-
}, function(error2) {
|
|
1669
|
-
popActScope(prevActScopeDepth);
|
|
1670
|
-
reject(error2);
|
|
1671
|
-
});
|
|
1672
|
-
}
|
|
1673
|
-
};
|
|
1674
|
-
{
|
|
1675
|
-
if (!didWarnNoAwaitAct && typeof Promise !== "undefined") {
|
|
1676
|
-
Promise.resolve().then(function() {}).then(function() {
|
|
1677
|
-
if (!wasAwaited) {
|
|
1678
|
-
didWarnNoAwaitAct = true;
|
|
1679
|
-
error("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 () => ...);");
|
|
1680
|
-
}
|
|
1681
|
-
});
|
|
1682
|
-
}
|
|
1683
|
-
}
|
|
1684
|
-
return thenable;
|
|
1685
|
-
} else {
|
|
1686
|
-
var returnValue = result;
|
|
1687
|
-
popActScope(prevActScopeDepth);
|
|
1688
|
-
if (actScopeDepth === 0) {
|
|
1689
|
-
var _queue = ReactCurrentActQueue.current;
|
|
1690
|
-
if (_queue !== null) {
|
|
1691
|
-
flushActQueue(_queue);
|
|
1692
|
-
ReactCurrentActQueue.current = null;
|
|
1693
|
-
}
|
|
1694
|
-
var _thenable = {
|
|
1695
|
-
then: function(resolve, reject) {
|
|
1696
|
-
if (ReactCurrentActQueue.current === null) {
|
|
1697
|
-
ReactCurrentActQueue.current = [];
|
|
1698
|
-
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
|
|
1699
|
-
} else {
|
|
1700
|
-
resolve(returnValue);
|
|
1701
|
-
}
|
|
1702
|
-
}
|
|
1703
|
-
};
|
|
1704
|
-
return _thenable;
|
|
1705
|
-
} else {
|
|
1706
|
-
var _thenable2 = {
|
|
1707
|
-
then: function(resolve, reject) {
|
|
1708
|
-
resolve(returnValue);
|
|
1709
|
-
}
|
|
1710
|
-
};
|
|
1711
|
-
return _thenable2;
|
|
1712
|
-
}
|
|
1713
|
-
}
|
|
1714
|
-
}
|
|
1715
|
-
}
|
|
1716
|
-
function popActScope(prevActScopeDepth) {
|
|
1717
|
-
{
|
|
1718
|
-
if (prevActScopeDepth !== actScopeDepth - 1) {
|
|
1719
|
-
error("You seem to have overlapping act() calls, this is not supported. " + "Be sure to await previous act() calls before making a new one. ");
|
|
1720
|
-
}
|
|
1721
|
-
actScopeDepth = prevActScopeDepth;
|
|
1722
|
-
}
|
|
1723
|
-
}
|
|
1724
|
-
function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
|
|
1725
|
-
{
|
|
1726
|
-
var queue = ReactCurrentActQueue.current;
|
|
1727
|
-
if (queue !== null) {
|
|
1728
|
-
try {
|
|
1729
|
-
flushActQueue(queue);
|
|
1730
|
-
enqueueTask(function() {
|
|
1731
|
-
if (queue.length === 0) {
|
|
1732
|
-
ReactCurrentActQueue.current = null;
|
|
1733
|
-
resolve(returnValue);
|
|
1734
|
-
} else {
|
|
1735
|
-
recursivelyFlushAsyncActWork(returnValue, resolve, reject);
|
|
1736
|
-
}
|
|
1737
|
-
});
|
|
1738
|
-
} catch (error2) {
|
|
1739
|
-
reject(error2);
|
|
1740
|
-
}
|
|
1741
|
-
} else {
|
|
1742
|
-
resolve(returnValue);
|
|
1743
|
-
}
|
|
1744
|
-
}
|
|
1745
|
-
}
|
|
1746
|
-
var isFlushing = false;
|
|
1747
|
-
function flushActQueue(queue) {
|
|
1748
|
-
{
|
|
1749
|
-
if (!isFlushing) {
|
|
1750
|
-
isFlushing = true;
|
|
1751
|
-
var i = 0;
|
|
1752
|
-
try {
|
|
1753
|
-
for (;i < queue.length; i++) {
|
|
1754
|
-
var callback = queue[i];
|
|
1755
|
-
do {
|
|
1756
|
-
callback = callback(true);
|
|
1757
|
-
} while (callback !== null);
|
|
1758
|
-
}
|
|
1759
|
-
queue.length = 0;
|
|
1760
|
-
} catch (error2) {
|
|
1761
|
-
queue = queue.slice(i + 1);
|
|
1762
|
-
throw error2;
|
|
1763
|
-
} finally {
|
|
1764
|
-
isFlushing = false;
|
|
1765
|
-
}
|
|
1766
|
-
}
|
|
1767
|
-
}
|
|
1768
|
-
}
|
|
1769
|
-
var createElement$1 = createElementWithValidation;
|
|
1770
|
-
var cloneElement$1 = cloneElementWithValidation;
|
|
1771
|
-
var createFactory = createFactoryWithValidation;
|
|
1772
|
-
var Children = {
|
|
1773
|
-
map: mapChildren,
|
|
1774
|
-
forEach: forEachChildren,
|
|
1775
|
-
count: countChildren,
|
|
1776
|
-
toArray,
|
|
1777
|
-
only: onlyChild
|
|
1778
|
-
};
|
|
1779
|
-
exports.Children = Children;
|
|
1780
|
-
exports.Component = Component;
|
|
1781
|
-
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
1782
|
-
exports.Profiler = REACT_PROFILER_TYPE;
|
|
1783
|
-
exports.PureComponent = PureComponent;
|
|
1784
|
-
exports.StrictMode = REACT_STRICT_MODE_TYPE;
|
|
1785
|
-
exports.Suspense = REACT_SUSPENSE_TYPE;
|
|
1786
|
-
exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ReactSharedInternals;
|
|
1787
|
-
exports.act = act;
|
|
1788
|
-
exports.cloneElement = cloneElement$1;
|
|
1789
|
-
exports.createContext = createContext;
|
|
1790
|
-
exports.createElement = createElement$1;
|
|
1791
|
-
exports.createFactory = createFactory;
|
|
1792
|
-
exports.createRef = createRef;
|
|
1793
|
-
exports.forwardRef = forwardRef;
|
|
1794
|
-
exports.isValidElement = isValidElement;
|
|
1795
|
-
exports.lazy = lazy;
|
|
1796
|
-
exports.memo = memo;
|
|
1797
|
-
exports.startTransition = startTransition;
|
|
1798
|
-
exports.unstable_act = act;
|
|
1799
|
-
exports.useCallback = useCallback;
|
|
1800
|
-
exports.useContext = useContext;
|
|
1801
|
-
exports.useDebugValue = useDebugValue;
|
|
1802
|
-
exports.useDeferredValue = useDeferredValue;
|
|
1803
|
-
exports.useEffect = useEffect;
|
|
1804
|
-
exports.useId = useId;
|
|
1805
|
-
exports.useImperativeHandle = useImperativeHandle;
|
|
1806
|
-
exports.useInsertionEffect = useInsertionEffect;
|
|
1807
|
-
exports.useLayoutEffect = useLayoutEffect;
|
|
1808
|
-
exports.useMemo = useMemo;
|
|
1809
|
-
exports.useReducer = useReducer;
|
|
1810
|
-
exports.useRef = useRef;
|
|
1811
|
-
exports.useState = useState;
|
|
1812
|
-
exports.useSyncExternalStore = useSyncExternalStore;
|
|
1813
|
-
exports.useTransition = useTransition;
|
|
1814
|
-
exports.version = ReactVersion;
|
|
1815
|
-
if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function") {
|
|
1816
|
-
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error);
|
|
1817
|
-
}
|
|
1818
|
-
})();
|
|
1819
|
-
}
|
|
1820
|
-
});
|
|
1821
|
-
|
|
1822
|
-
// ../../node_modules/react/index.js
|
|
1823
|
-
var require_react = __commonJS((exports, module) => {
|
|
1824
|
-
var react_development = __toESM(require_react_development());
|
|
1825
|
-
if (false) {} else {
|
|
1826
|
-
module.exports = react_development;
|
|
1827
|
-
}
|
|
1828
|
-
});
|
|
1829
|
-
|
|
1830
|
-
// ../../node_modules/react/cjs/react-jsx-dev-runtime.development.js
|
|
1831
|
-
var require_react_jsx_dev_runtime_development = __commonJS((exports) => {
|
|
1832
|
-
var React = __toESM(require_react());
|
|
1833
|
-
if (true) {
|
|
1834
|
-
(function() {
|
|
1835
|
-
var REACT_ELEMENT_TYPE = Symbol.for("react.element");
|
|
1836
|
-
var REACT_PORTAL_TYPE = Symbol.for("react.portal");
|
|
1837
|
-
var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
|
1838
|
-
var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
|
|
1839
|
-
var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
|
|
1840
|
-
var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
|
|
1841
|
-
var REACT_CONTEXT_TYPE = Symbol.for("react.context");
|
|
1842
|
-
var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
|
|
1843
|
-
var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
|
|
1844
|
-
var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
|
|
1845
|
-
var REACT_MEMO_TYPE = Symbol.for("react.memo");
|
|
1846
|
-
var REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
|
1847
|
-
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
|
1848
|
-
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
|
1849
|
-
var FAUX_ITERATOR_SYMBOL = "@@iterator";
|
|
1850
|
-
function getIteratorFn(maybeIterable) {
|
|
1851
|
-
if (maybeIterable === null || typeof maybeIterable !== "object") {
|
|
1852
|
-
return null;
|
|
1853
|
-
}
|
|
1854
|
-
var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
|
|
1855
|
-
if (typeof maybeIterator === "function") {
|
|
1856
|
-
return maybeIterator;
|
|
1857
|
-
}
|
|
1858
|
-
return null;
|
|
1859
|
-
}
|
|
1860
|
-
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
1861
|
-
function error(format) {
|
|
1862
|
-
{
|
|
1863
|
-
{
|
|
1864
|
-
for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1;_key2 < _len2; _key2++) {
|
|
1865
|
-
args[_key2 - 1] = arguments[_key2];
|
|
1866
|
-
}
|
|
1867
|
-
printWarning("error", format, args);
|
|
1868
|
-
}
|
|
1869
|
-
}
|
|
1870
|
-
}
|
|
1871
|
-
function printWarning(level, format, args) {
|
|
1872
|
-
{
|
|
1873
|
-
var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
1874
|
-
var stack = ReactDebugCurrentFrame2.getStackAddendum();
|
|
1875
|
-
if (stack !== "") {
|
|
1876
|
-
format += "%s";
|
|
1877
|
-
args = args.concat([stack]);
|
|
1878
|
-
}
|
|
1879
|
-
var argsWithFormat = args.map(function(item) {
|
|
1880
|
-
return String(item);
|
|
1881
|
-
});
|
|
1882
|
-
argsWithFormat.unshift("Warning: " + format);
|
|
1883
|
-
Function.prototype.apply.call(console[level], console, argsWithFormat);
|
|
1884
|
-
}
|
|
1885
|
-
}
|
|
1886
|
-
var enableScopeAPI = false;
|
|
1887
|
-
var enableCacheElement = false;
|
|
1888
|
-
var enableTransitionTracing = false;
|
|
1889
|
-
var enableLegacyHidden = false;
|
|
1890
|
-
var enableDebugTracing = false;
|
|
1891
|
-
var REACT_MODULE_REFERENCE;
|
|
1892
|
-
{
|
|
1893
|
-
REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
|
|
1894
|
-
}
|
|
1895
|
-
function isValidElementType(type) {
|
|
1896
|
-
if (typeof type === "string" || typeof type === "function") {
|
|
1897
|
-
return true;
|
|
1898
|
-
}
|
|
1899
|
-
if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
|
|
1900
|
-
return true;
|
|
1901
|
-
}
|
|
1902
|
-
if (typeof type === "object" && type !== null) {
|
|
1903
|
-
if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== undefined) {
|
|
1904
|
-
return true;
|
|
1905
|
-
}
|
|
1906
|
-
}
|
|
1907
|
-
return false;
|
|
1908
|
-
}
|
|
1909
|
-
function getWrappedName(outerType, innerType, wrapperName) {
|
|
1910
|
-
var displayName = outerType.displayName;
|
|
1911
|
-
if (displayName) {
|
|
1912
|
-
return displayName;
|
|
1913
|
-
}
|
|
1914
|
-
var functionName = innerType.displayName || innerType.name || "";
|
|
1915
|
-
return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
|
|
1916
|
-
}
|
|
1917
|
-
function getContextName(type) {
|
|
1918
|
-
return type.displayName || "Context";
|
|
1919
|
-
}
|
|
1920
|
-
function getComponentNameFromType(type) {
|
|
1921
|
-
if (type == null) {
|
|
1922
|
-
return null;
|
|
1923
|
-
}
|
|
1924
|
-
{
|
|
1925
|
-
if (typeof type.tag === "number") {
|
|
1926
|
-
error("Received an unexpected object in getComponentNameFromType(). " + "This is likely a bug in React. Please file an issue.");
|
|
1927
|
-
}
|
|
1928
|
-
}
|
|
1929
|
-
if (typeof type === "function") {
|
|
1930
|
-
return type.displayName || type.name || null;
|
|
1931
|
-
}
|
|
1932
|
-
if (typeof type === "string") {
|
|
1933
|
-
return type;
|
|
1934
|
-
}
|
|
1935
|
-
switch (type) {
|
|
1936
|
-
case REACT_FRAGMENT_TYPE:
|
|
1937
|
-
return "Fragment";
|
|
1938
|
-
case REACT_PORTAL_TYPE:
|
|
1939
|
-
return "Portal";
|
|
1940
|
-
case REACT_PROFILER_TYPE:
|
|
1941
|
-
return "Profiler";
|
|
1942
|
-
case REACT_STRICT_MODE_TYPE:
|
|
1943
|
-
return "StrictMode";
|
|
1944
|
-
case REACT_SUSPENSE_TYPE:
|
|
1945
|
-
return "Suspense";
|
|
1946
|
-
case REACT_SUSPENSE_LIST_TYPE:
|
|
1947
|
-
return "SuspenseList";
|
|
1948
|
-
}
|
|
1949
|
-
if (typeof type === "object") {
|
|
1950
|
-
switch (type.$$typeof) {
|
|
1951
|
-
case REACT_CONTEXT_TYPE:
|
|
1952
|
-
var context = type;
|
|
1953
|
-
return getContextName(context) + ".Consumer";
|
|
1954
|
-
case REACT_PROVIDER_TYPE:
|
|
1955
|
-
var provider = type;
|
|
1956
|
-
return getContextName(provider._context) + ".Provider";
|
|
1957
|
-
case REACT_FORWARD_REF_TYPE:
|
|
1958
|
-
return getWrappedName(type, type.render, "ForwardRef");
|
|
1959
|
-
case REACT_MEMO_TYPE:
|
|
1960
|
-
var outerName = type.displayName || null;
|
|
1961
|
-
if (outerName !== null) {
|
|
1962
|
-
return outerName;
|
|
1963
|
-
}
|
|
1964
|
-
return getComponentNameFromType(type.type) || "Memo";
|
|
1965
|
-
case REACT_LAZY_TYPE: {
|
|
1966
|
-
var lazyComponent = type;
|
|
1967
|
-
var payload = lazyComponent._payload;
|
|
1968
|
-
var init = lazyComponent._init;
|
|
1969
|
-
try {
|
|
1970
|
-
return getComponentNameFromType(init(payload));
|
|
1971
|
-
} catch (x) {
|
|
1972
|
-
return null;
|
|
1973
|
-
}
|
|
1974
|
-
}
|
|
1975
|
-
}
|
|
1976
|
-
}
|
|
1977
|
-
return null;
|
|
1978
|
-
}
|
|
1979
|
-
var assign = Object.assign;
|
|
1980
|
-
var disabledDepth = 0;
|
|
1981
|
-
var prevLog;
|
|
1982
|
-
var prevInfo;
|
|
1983
|
-
var prevWarn;
|
|
1984
|
-
var prevError;
|
|
1985
|
-
var prevGroup;
|
|
1986
|
-
var prevGroupCollapsed;
|
|
1987
|
-
var prevGroupEnd;
|
|
1988
|
-
function disabledLog() {}
|
|
1989
|
-
disabledLog.__reactDisabledLog = true;
|
|
1990
|
-
function disableLogs() {
|
|
1991
|
-
{
|
|
1992
|
-
if (disabledDepth === 0) {
|
|
1993
|
-
prevLog = console.log;
|
|
1994
|
-
prevInfo = console.info;
|
|
1995
|
-
prevWarn = console.warn;
|
|
1996
|
-
prevError = console.error;
|
|
1997
|
-
prevGroup = console.group;
|
|
1998
|
-
prevGroupCollapsed = console.groupCollapsed;
|
|
1999
|
-
prevGroupEnd = console.groupEnd;
|
|
2000
|
-
var props = {
|
|
2001
|
-
configurable: true,
|
|
2002
|
-
enumerable: true,
|
|
2003
|
-
value: disabledLog,
|
|
2004
|
-
writable: true
|
|
2005
|
-
};
|
|
2006
|
-
Object.defineProperties(console, {
|
|
2007
|
-
info: props,
|
|
2008
|
-
log: props,
|
|
2009
|
-
warn: props,
|
|
2010
|
-
error: props,
|
|
2011
|
-
group: props,
|
|
2012
|
-
groupCollapsed: props,
|
|
2013
|
-
groupEnd: props
|
|
2014
|
-
});
|
|
2015
|
-
}
|
|
2016
|
-
disabledDepth++;
|
|
2017
|
-
}
|
|
2018
|
-
}
|
|
2019
|
-
function reenableLogs() {
|
|
2020
|
-
{
|
|
2021
|
-
disabledDepth--;
|
|
2022
|
-
if (disabledDepth === 0) {
|
|
2023
|
-
var props = {
|
|
2024
|
-
configurable: true,
|
|
2025
|
-
enumerable: true,
|
|
2026
|
-
writable: true
|
|
2027
|
-
};
|
|
2028
|
-
Object.defineProperties(console, {
|
|
2029
|
-
log: assign({}, props, {
|
|
2030
|
-
value: prevLog
|
|
2031
|
-
}),
|
|
2032
|
-
info: assign({}, props, {
|
|
2033
|
-
value: prevInfo
|
|
2034
|
-
}),
|
|
2035
|
-
warn: assign({}, props, {
|
|
2036
|
-
value: prevWarn
|
|
2037
|
-
}),
|
|
2038
|
-
error: assign({}, props, {
|
|
2039
|
-
value: prevError
|
|
2040
|
-
}),
|
|
2041
|
-
group: assign({}, props, {
|
|
2042
|
-
value: prevGroup
|
|
2043
|
-
}),
|
|
2044
|
-
groupCollapsed: assign({}, props, {
|
|
2045
|
-
value: prevGroupCollapsed
|
|
2046
|
-
}),
|
|
2047
|
-
groupEnd: assign({}, props, {
|
|
2048
|
-
value: prevGroupEnd
|
|
2049
|
-
})
|
|
2050
|
-
});
|
|
2051
|
-
}
|
|
2052
|
-
if (disabledDepth < 0) {
|
|
2053
|
-
error("disabledDepth fell below zero. " + "This is a bug in React. Please file an issue.");
|
|
2054
|
-
}
|
|
2055
|
-
}
|
|
2056
|
-
}
|
|
2057
|
-
var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
|
|
2058
|
-
var prefix;
|
|
2059
|
-
function describeBuiltInComponentFrame(name, source, ownerFn) {
|
|
2060
|
-
{
|
|
2061
|
-
if (prefix === undefined) {
|
|
2062
|
-
try {
|
|
2063
|
-
throw Error();
|
|
2064
|
-
} catch (x) {
|
|
2065
|
-
var match = x.stack.trim().match(/\n( *(at )?)/);
|
|
2066
|
-
prefix = match && match[1] || "";
|
|
2067
|
-
}
|
|
2068
|
-
}
|
|
2069
|
-
return `
|
|
2070
|
-
` + prefix + name;
|
|
2071
|
-
}
|
|
2072
|
-
}
|
|
2073
|
-
var reentry = false;
|
|
2074
|
-
var componentFrameCache;
|
|
2075
|
-
{
|
|
2076
|
-
var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
|
|
2077
|
-
componentFrameCache = new PossiblyWeakMap;
|
|
2078
|
-
}
|
|
2079
|
-
function describeNativeComponentFrame(fn, construct) {
|
|
2080
|
-
if (!fn || reentry) {
|
|
2081
|
-
return "";
|
|
2082
|
-
}
|
|
2083
|
-
{
|
|
2084
|
-
var frame = componentFrameCache.get(fn);
|
|
2085
|
-
if (frame !== undefined) {
|
|
2086
|
-
return frame;
|
|
2087
|
-
}
|
|
2088
|
-
}
|
|
2089
|
-
var control;
|
|
2090
|
-
reentry = true;
|
|
2091
|
-
var previousPrepareStackTrace = Error.prepareStackTrace;
|
|
2092
|
-
Error.prepareStackTrace = undefined;
|
|
2093
|
-
var previousDispatcher;
|
|
2094
|
-
{
|
|
2095
|
-
previousDispatcher = ReactCurrentDispatcher.current;
|
|
2096
|
-
ReactCurrentDispatcher.current = null;
|
|
2097
|
-
disableLogs();
|
|
2098
|
-
}
|
|
2099
|
-
try {
|
|
2100
|
-
if (construct) {
|
|
2101
|
-
var Fake = function() {
|
|
2102
|
-
throw Error();
|
|
2103
|
-
};
|
|
2104
|
-
Object.defineProperty(Fake.prototype, "props", {
|
|
2105
|
-
set: function() {
|
|
2106
|
-
throw Error();
|
|
2107
|
-
}
|
|
2108
|
-
});
|
|
2109
|
-
if (typeof Reflect === "object" && Reflect.construct) {
|
|
2110
|
-
try {
|
|
2111
|
-
Reflect.construct(Fake, []);
|
|
2112
|
-
} catch (x) {
|
|
2113
|
-
control = x;
|
|
2114
|
-
}
|
|
2115
|
-
Reflect.construct(fn, [], Fake);
|
|
2116
|
-
} else {
|
|
2117
|
-
try {
|
|
2118
|
-
Fake.call();
|
|
2119
|
-
} catch (x) {
|
|
2120
|
-
control = x;
|
|
2121
|
-
}
|
|
2122
|
-
fn.call(Fake.prototype);
|
|
2123
|
-
}
|
|
2124
|
-
} else {
|
|
2125
|
-
try {
|
|
2126
|
-
throw Error();
|
|
2127
|
-
} catch (x) {
|
|
2128
|
-
control = x;
|
|
2129
|
-
}
|
|
2130
|
-
fn();
|
|
2131
|
-
}
|
|
2132
|
-
} catch (sample) {
|
|
2133
|
-
if (sample && control && typeof sample.stack === "string") {
|
|
2134
|
-
var sampleLines = sample.stack.split(`
|
|
2135
|
-
`);
|
|
2136
|
-
var controlLines = control.stack.split(`
|
|
2137
|
-
`);
|
|
2138
|
-
var s = sampleLines.length - 1;
|
|
2139
|
-
var c = controlLines.length - 1;
|
|
2140
|
-
while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
|
|
2141
|
-
c--;
|
|
2142
|
-
}
|
|
2143
|
-
for (;s >= 1 && c >= 0; s--, c--) {
|
|
2144
|
-
if (sampleLines[s] !== controlLines[c]) {
|
|
2145
|
-
if (s !== 1 || c !== 1) {
|
|
2146
|
-
do {
|
|
2147
|
-
s--;
|
|
2148
|
-
c--;
|
|
2149
|
-
if (c < 0 || sampleLines[s] !== controlLines[c]) {
|
|
2150
|
-
var _frame = `
|
|
2151
|
-
` + sampleLines[s].replace(" at new ", " at ");
|
|
2152
|
-
if (fn.displayName && _frame.includes("<anonymous>")) {
|
|
2153
|
-
_frame = _frame.replace("<anonymous>", fn.displayName);
|
|
2154
|
-
}
|
|
2155
|
-
{
|
|
2156
|
-
if (typeof fn === "function") {
|
|
2157
|
-
componentFrameCache.set(fn, _frame);
|
|
2158
|
-
}
|
|
2159
|
-
}
|
|
2160
|
-
return _frame;
|
|
2161
|
-
}
|
|
2162
|
-
} while (s >= 1 && c >= 0);
|
|
2163
|
-
}
|
|
2164
|
-
break;
|
|
2165
|
-
}
|
|
2166
|
-
}
|
|
2167
|
-
}
|
|
2168
|
-
} finally {
|
|
2169
|
-
reentry = false;
|
|
2170
|
-
{
|
|
2171
|
-
ReactCurrentDispatcher.current = previousDispatcher;
|
|
2172
|
-
reenableLogs();
|
|
2173
|
-
}
|
|
2174
|
-
Error.prepareStackTrace = previousPrepareStackTrace;
|
|
2175
|
-
}
|
|
2176
|
-
var name = fn ? fn.displayName || fn.name : "";
|
|
2177
|
-
var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
|
|
2178
|
-
{
|
|
2179
|
-
if (typeof fn === "function") {
|
|
2180
|
-
componentFrameCache.set(fn, syntheticFrame);
|
|
2181
|
-
}
|
|
2182
|
-
}
|
|
2183
|
-
return syntheticFrame;
|
|
2184
|
-
}
|
|
2185
|
-
function describeFunctionComponentFrame(fn, source, ownerFn) {
|
|
2186
|
-
{
|
|
2187
|
-
return describeNativeComponentFrame(fn, false);
|
|
2188
|
-
}
|
|
2189
|
-
}
|
|
2190
|
-
function shouldConstruct(Component) {
|
|
2191
|
-
var prototype = Component.prototype;
|
|
2192
|
-
return !!(prototype && prototype.isReactComponent);
|
|
2193
|
-
}
|
|
2194
|
-
function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
|
|
2195
|
-
if (type == null) {
|
|
2196
|
-
return "";
|
|
2197
|
-
}
|
|
2198
|
-
if (typeof type === "function") {
|
|
2199
|
-
{
|
|
2200
|
-
return describeNativeComponentFrame(type, shouldConstruct(type));
|
|
2201
|
-
}
|
|
2202
|
-
}
|
|
2203
|
-
if (typeof type === "string") {
|
|
2204
|
-
return describeBuiltInComponentFrame(type);
|
|
2205
|
-
}
|
|
2206
|
-
switch (type) {
|
|
2207
|
-
case REACT_SUSPENSE_TYPE:
|
|
2208
|
-
return describeBuiltInComponentFrame("Suspense");
|
|
2209
|
-
case REACT_SUSPENSE_LIST_TYPE:
|
|
2210
|
-
return describeBuiltInComponentFrame("SuspenseList");
|
|
2211
|
-
}
|
|
2212
|
-
if (typeof type === "object") {
|
|
2213
|
-
switch (type.$$typeof) {
|
|
2214
|
-
case REACT_FORWARD_REF_TYPE:
|
|
2215
|
-
return describeFunctionComponentFrame(type.render);
|
|
2216
|
-
case REACT_MEMO_TYPE:
|
|
2217
|
-
return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
|
|
2218
|
-
case REACT_LAZY_TYPE: {
|
|
2219
|
-
var lazyComponent = type;
|
|
2220
|
-
var payload = lazyComponent._payload;
|
|
2221
|
-
var init = lazyComponent._init;
|
|
2222
|
-
try {
|
|
2223
|
-
return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
|
|
2224
|
-
} catch (x) {}
|
|
2225
|
-
}
|
|
2226
|
-
}
|
|
2227
|
-
}
|
|
2228
|
-
return "";
|
|
2229
|
-
}
|
|
2230
|
-
var hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
2231
|
-
var loggedTypeFailures = {};
|
|
2232
|
-
var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
2233
|
-
function setCurrentlyValidatingElement(element) {
|
|
2234
|
-
{
|
|
2235
|
-
if (element) {
|
|
2236
|
-
var owner = element._owner;
|
|
2237
|
-
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
2238
|
-
ReactDebugCurrentFrame.setExtraStackFrame(stack);
|
|
2239
|
-
} else {
|
|
2240
|
-
ReactDebugCurrentFrame.setExtraStackFrame(null);
|
|
2241
|
-
}
|
|
2242
|
-
}
|
|
2243
|
-
}
|
|
2244
|
-
function checkPropTypes(typeSpecs, values, location, componentName, element) {
|
|
2245
|
-
{
|
|
2246
|
-
var has = Function.call.bind(hasOwnProperty);
|
|
2247
|
-
for (var typeSpecName in typeSpecs) {
|
|
2248
|
-
if (has(typeSpecs, typeSpecName)) {
|
|
2249
|
-
var error$1 = undefined;
|
|
2250
|
-
try {
|
|
2251
|
-
if (typeof typeSpecs[typeSpecName] !== "function") {
|
|
2252
|
-
var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; " + "it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`." + "This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
2253
|
-
err.name = "Invariant Violation";
|
|
2254
|
-
throw err;
|
|
2255
|
-
}
|
|
2256
|
-
error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
2257
|
-
} catch (ex) {
|
|
2258
|
-
error$1 = ex;
|
|
2259
|
-
}
|
|
2260
|
-
if (error$1 && !(error$1 instanceof Error)) {
|
|
2261
|
-
setCurrentlyValidatingElement(element);
|
|
2262
|
-
error("%s: type specification of %s" + " `%s` is invalid; the type checker " + "function must return `null` or an `Error` but returned a %s. " + "You may have forgotten to pass an argument to the type checker " + "creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and " + "shape all require an argument).", componentName || "React class", location, typeSpecName, typeof error$1);
|
|
2263
|
-
setCurrentlyValidatingElement(null);
|
|
2264
|
-
}
|
|
2265
|
-
if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
|
|
2266
|
-
loggedTypeFailures[error$1.message] = true;
|
|
2267
|
-
setCurrentlyValidatingElement(element);
|
|
2268
|
-
error("Failed %s type: %s", location, error$1.message);
|
|
2269
|
-
setCurrentlyValidatingElement(null);
|
|
2270
|
-
}
|
|
2271
|
-
}
|
|
2272
|
-
}
|
|
2273
|
-
}
|
|
2274
|
-
}
|
|
2275
|
-
var isArrayImpl = Array.isArray;
|
|
2276
|
-
function isArray(a) {
|
|
2277
|
-
return isArrayImpl(a);
|
|
2278
|
-
}
|
|
2279
|
-
function typeName(value) {
|
|
2280
|
-
{
|
|
2281
|
-
var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
|
|
2282
|
-
var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
|
2283
|
-
return type;
|
|
2284
|
-
}
|
|
2285
|
-
}
|
|
2286
|
-
function willCoercionThrow(value) {
|
|
2287
|
-
{
|
|
2288
|
-
try {
|
|
2289
|
-
testStringCoercion(value);
|
|
2290
|
-
return false;
|
|
2291
|
-
} catch (e) {
|
|
2292
|
-
return true;
|
|
2293
|
-
}
|
|
2294
|
-
}
|
|
2295
|
-
}
|
|
2296
|
-
function testStringCoercion(value) {
|
|
2297
|
-
return "" + value;
|
|
2298
|
-
}
|
|
2299
|
-
function checkKeyStringCoercion(value) {
|
|
2300
|
-
{
|
|
2301
|
-
if (willCoercionThrow(value)) {
|
|
2302
|
-
error("The provided key is an unsupported type %s." + " This value must be coerced to a string before before using it here.", typeName(value));
|
|
2303
|
-
return testStringCoercion(value);
|
|
2304
|
-
}
|
|
2305
|
-
}
|
|
2306
|
-
}
|
|
2307
|
-
var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
|
|
2308
|
-
var RESERVED_PROPS = {
|
|
2309
|
-
key: true,
|
|
2310
|
-
ref: true,
|
|
2311
|
-
__self: true,
|
|
2312
|
-
__source: true
|
|
2313
|
-
};
|
|
2314
|
-
var specialPropKeyWarningShown;
|
|
2315
|
-
var specialPropRefWarningShown;
|
|
2316
|
-
var didWarnAboutStringRefs;
|
|
2317
|
-
{
|
|
2318
|
-
didWarnAboutStringRefs = {};
|
|
2319
|
-
}
|
|
2320
|
-
function hasValidRef(config) {
|
|
2321
|
-
{
|
|
2322
|
-
if (hasOwnProperty.call(config, "ref")) {
|
|
2323
|
-
var getter = Object.getOwnPropertyDescriptor(config, "ref").get;
|
|
2324
|
-
if (getter && getter.isReactWarning) {
|
|
2325
|
-
return false;
|
|
2326
|
-
}
|
|
2327
|
-
}
|
|
2328
|
-
}
|
|
2329
|
-
return config.ref !== undefined;
|
|
2330
|
-
}
|
|
2331
|
-
function hasValidKey(config) {
|
|
2332
|
-
{
|
|
2333
|
-
if (hasOwnProperty.call(config, "key")) {
|
|
2334
|
-
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
|
2335
|
-
if (getter && getter.isReactWarning) {
|
|
2336
|
-
return false;
|
|
2337
|
-
}
|
|
2338
|
-
}
|
|
2339
|
-
}
|
|
2340
|
-
return config.key !== undefined;
|
|
2341
|
-
}
|
|
2342
|
-
function warnIfStringRefCannotBeAutoConverted(config, self) {
|
|
2343
|
-
{
|
|
2344
|
-
if (typeof config.ref === "string" && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {
|
|
2345
|
-
var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
|
|
2346
|
-
if (!didWarnAboutStringRefs[componentName]) {
|
|
2347
|
-
error('Component "%s" contains the string ref "%s". ' + "Support for string refs will be removed in a future major release. " + "This case cannot be automatically converted to an arrow function. " + "We ask you to manually fix this case by using useRef() or createRef() instead. " + "Learn more about using refs safely here: " + "https://reactjs.org/link/strict-mode-string-ref", getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);
|
|
2348
|
-
didWarnAboutStringRefs[componentName] = true;
|
|
2349
|
-
}
|
|
2350
|
-
}
|
|
2351
|
-
}
|
|
2352
|
-
}
|
|
2353
|
-
function defineKeyPropWarningGetter(props, displayName) {
|
|
2354
|
-
{
|
|
2355
|
-
var warnAboutAccessingKey = function() {
|
|
2356
|
-
if (!specialPropKeyWarningShown) {
|
|
2357
|
-
specialPropKeyWarningShown = true;
|
|
2358
|
-
error("%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://reactjs.org/link/special-props)", displayName);
|
|
2359
|
-
}
|
|
2360
|
-
};
|
|
2361
|
-
warnAboutAccessingKey.isReactWarning = true;
|
|
2362
|
-
Object.defineProperty(props, "key", {
|
|
2363
|
-
get: warnAboutAccessingKey,
|
|
2364
|
-
configurable: true
|
|
2365
|
-
});
|
|
2366
|
-
}
|
|
2367
|
-
}
|
|
2368
|
-
function defineRefPropWarningGetter(props, displayName) {
|
|
2369
|
-
{
|
|
2370
|
-
var warnAboutAccessingRef = function() {
|
|
2371
|
-
if (!specialPropRefWarningShown) {
|
|
2372
|
-
specialPropRefWarningShown = true;
|
|
2373
|
-
error("%s: `ref` 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://reactjs.org/link/special-props)", displayName);
|
|
2374
|
-
}
|
|
2375
|
-
};
|
|
2376
|
-
warnAboutAccessingRef.isReactWarning = true;
|
|
2377
|
-
Object.defineProperty(props, "ref", {
|
|
2378
|
-
get: warnAboutAccessingRef,
|
|
2379
|
-
configurable: true
|
|
2380
|
-
});
|
|
2381
|
-
}
|
|
2382
|
-
}
|
|
2383
|
-
var ReactElement = function(type, key, ref, self, source, owner, props) {
|
|
2384
|
-
var element = {
|
|
2385
|
-
$$typeof: REACT_ELEMENT_TYPE,
|
|
2386
|
-
type,
|
|
2387
|
-
key,
|
|
2388
|
-
ref,
|
|
2389
|
-
props,
|
|
2390
|
-
_owner: owner
|
|
2391
|
-
};
|
|
2392
|
-
{
|
|
2393
|
-
element._store = {};
|
|
2394
|
-
Object.defineProperty(element._store, "validated", {
|
|
2395
|
-
configurable: false,
|
|
2396
|
-
enumerable: false,
|
|
2397
|
-
writable: true,
|
|
2398
|
-
value: false
|
|
2399
|
-
});
|
|
2400
|
-
Object.defineProperty(element, "_self", {
|
|
2401
|
-
configurable: false,
|
|
2402
|
-
enumerable: false,
|
|
2403
|
-
writable: false,
|
|
2404
|
-
value: self
|
|
2405
|
-
});
|
|
2406
|
-
Object.defineProperty(element, "_source", {
|
|
2407
|
-
configurable: false,
|
|
2408
|
-
enumerable: false,
|
|
2409
|
-
writable: false,
|
|
2410
|
-
value: source
|
|
2411
|
-
});
|
|
2412
|
-
if (Object.freeze) {
|
|
2413
|
-
Object.freeze(element.props);
|
|
2414
|
-
Object.freeze(element);
|
|
2415
|
-
}
|
|
2416
|
-
}
|
|
2417
|
-
return element;
|
|
2418
|
-
};
|
|
2419
|
-
function jsxDEV(type, config, maybeKey, source, self) {
|
|
2420
|
-
{
|
|
2421
|
-
var propName;
|
|
2422
|
-
var props = {};
|
|
2423
|
-
var key = null;
|
|
2424
|
-
var ref = null;
|
|
2425
|
-
if (maybeKey !== undefined) {
|
|
2426
|
-
{
|
|
2427
|
-
checkKeyStringCoercion(maybeKey);
|
|
2428
|
-
}
|
|
2429
|
-
key = "" + maybeKey;
|
|
2430
|
-
}
|
|
2431
|
-
if (hasValidKey(config)) {
|
|
2432
|
-
{
|
|
2433
|
-
checkKeyStringCoercion(config.key);
|
|
2434
|
-
}
|
|
2435
|
-
key = "" + config.key;
|
|
2436
|
-
}
|
|
2437
|
-
if (hasValidRef(config)) {
|
|
2438
|
-
ref = config.ref;
|
|
2439
|
-
warnIfStringRefCannotBeAutoConverted(config, self);
|
|
2440
|
-
}
|
|
2441
|
-
for (propName in config) {
|
|
2442
|
-
if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
|
|
2443
|
-
props[propName] = config[propName];
|
|
2444
|
-
}
|
|
2445
|
-
}
|
|
2446
|
-
if (type && type.defaultProps) {
|
|
2447
|
-
var defaultProps = type.defaultProps;
|
|
2448
|
-
for (propName in defaultProps) {
|
|
2449
|
-
if (props[propName] === undefined) {
|
|
2450
|
-
props[propName] = defaultProps[propName];
|
|
2451
|
-
}
|
|
2452
|
-
}
|
|
2453
|
-
}
|
|
2454
|
-
if (key || ref) {
|
|
2455
|
-
var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type;
|
|
2456
|
-
if (key) {
|
|
2457
|
-
defineKeyPropWarningGetter(props, displayName);
|
|
2458
|
-
}
|
|
2459
|
-
if (ref) {
|
|
2460
|
-
defineRefPropWarningGetter(props, displayName);
|
|
2461
|
-
}
|
|
2462
|
-
}
|
|
2463
|
-
return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
|
|
2464
|
-
}
|
|
2465
|
-
}
|
|
2466
|
-
var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
|
|
2467
|
-
var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
|
|
2468
|
-
function setCurrentlyValidatingElement$1(element) {
|
|
2469
|
-
{
|
|
2470
|
-
if (element) {
|
|
2471
|
-
var owner = element._owner;
|
|
2472
|
-
var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
|
|
2473
|
-
ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
|
|
2474
|
-
} else {
|
|
2475
|
-
ReactDebugCurrentFrame$1.setExtraStackFrame(null);
|
|
2476
|
-
}
|
|
2477
|
-
}
|
|
2478
|
-
}
|
|
2479
|
-
var propTypesMisspellWarningShown;
|
|
2480
|
-
{
|
|
2481
|
-
propTypesMisspellWarningShown = false;
|
|
2482
|
-
}
|
|
2483
|
-
function isValidElement(object) {
|
|
2484
|
-
{
|
|
2485
|
-
return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
2486
|
-
}
|
|
2487
|
-
}
|
|
2488
|
-
function getDeclarationErrorAddendum() {
|
|
2489
|
-
{
|
|
2490
|
-
if (ReactCurrentOwner$1.current) {
|
|
2491
|
-
var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
|
|
2492
|
-
if (name) {
|
|
2493
|
-
return `
|
|
2494
|
-
|
|
2495
|
-
Check the render method of \`` + name + "`.";
|
|
2496
|
-
}
|
|
2497
|
-
}
|
|
2498
|
-
return "";
|
|
2499
|
-
}
|
|
2500
|
-
}
|
|
2501
|
-
function getSourceInfoErrorAddendum(source) {
|
|
2502
|
-
{
|
|
2503
|
-
if (source !== undefined) {
|
|
2504
|
-
var fileName = source.fileName.replace(/^.*[\\\/]/, "");
|
|
2505
|
-
var lineNumber = source.lineNumber;
|
|
2506
|
-
return `
|
|
2507
|
-
|
|
2508
|
-
Check your code at ` + fileName + ":" + lineNumber + ".";
|
|
2509
|
-
}
|
|
2510
|
-
return "";
|
|
2511
|
-
}
|
|
2512
|
-
}
|
|
2513
|
-
var ownerHasKeyUseWarning = {};
|
|
2514
|
-
function getCurrentComponentErrorInfo(parentType) {
|
|
2515
|
-
{
|
|
2516
|
-
var info = getDeclarationErrorAddendum();
|
|
2517
|
-
if (!info) {
|
|
2518
|
-
var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name;
|
|
2519
|
-
if (parentName) {
|
|
2520
|
-
info = `
|
|
2521
|
-
|
|
2522
|
-
Check the top-level render call using <` + parentName + ">.";
|
|
2523
|
-
}
|
|
2524
|
-
}
|
|
2525
|
-
return info;
|
|
2526
|
-
}
|
|
2527
|
-
}
|
|
2528
|
-
function validateExplicitKey(element, parentType) {
|
|
2529
|
-
{
|
|
2530
|
-
if (!element._store || element._store.validated || element.key != null) {
|
|
2531
|
-
return;
|
|
2532
|
-
}
|
|
2533
|
-
element._store.validated = true;
|
|
2534
|
-
var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
|
|
2535
|
-
if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
|
|
2536
|
-
return;
|
|
2537
|
-
}
|
|
2538
|
-
ownerHasKeyUseWarning[currentComponentErrorInfo] = true;
|
|
2539
|
-
var childOwner = "";
|
|
2540
|
-
if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
|
|
2541
|
-
childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
|
|
2542
|
-
}
|
|
2543
|
-
setCurrentlyValidatingElement$1(element);
|
|
2544
|
-
error('Each child in a list should have a unique "key" prop.' + "%s%s See https://reactjs.org/link/warning-keys for more information.", currentComponentErrorInfo, childOwner);
|
|
2545
|
-
setCurrentlyValidatingElement$1(null);
|
|
2546
|
-
}
|
|
2547
|
-
}
|
|
2548
|
-
function validateChildKeys(node, parentType) {
|
|
2549
|
-
{
|
|
2550
|
-
if (typeof node !== "object") {
|
|
2551
|
-
return;
|
|
2552
|
-
}
|
|
2553
|
-
if (isArray(node)) {
|
|
2554
|
-
for (var i = 0;i < node.length; i++) {
|
|
2555
|
-
var child = node[i];
|
|
2556
|
-
if (isValidElement(child)) {
|
|
2557
|
-
validateExplicitKey(child, parentType);
|
|
2558
|
-
}
|
|
2559
|
-
}
|
|
2560
|
-
} else if (isValidElement(node)) {
|
|
2561
|
-
if (node._store) {
|
|
2562
|
-
node._store.validated = true;
|
|
2563
|
-
}
|
|
2564
|
-
} else if (node) {
|
|
2565
|
-
var iteratorFn = getIteratorFn(node);
|
|
2566
|
-
if (typeof iteratorFn === "function") {
|
|
2567
|
-
if (iteratorFn !== node.entries) {
|
|
2568
|
-
var iterator = iteratorFn.call(node);
|
|
2569
|
-
var step;
|
|
2570
|
-
while (!(step = iterator.next()).done) {
|
|
2571
|
-
if (isValidElement(step.value)) {
|
|
2572
|
-
validateExplicitKey(step.value, parentType);
|
|
2573
|
-
}
|
|
2574
|
-
}
|
|
2575
|
-
}
|
|
2576
|
-
}
|
|
2577
|
-
}
|
|
2578
|
-
}
|
|
2579
|
-
}
|
|
2580
|
-
function validatePropTypes(element) {
|
|
2581
|
-
{
|
|
2582
|
-
var type = element.type;
|
|
2583
|
-
if (type === null || type === undefined || typeof type === "string") {
|
|
2584
|
-
return;
|
|
2585
|
-
}
|
|
2586
|
-
var propTypes;
|
|
2587
|
-
if (typeof type === "function") {
|
|
2588
|
-
propTypes = type.propTypes;
|
|
2589
|
-
} else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_MEMO_TYPE)) {
|
|
2590
|
-
propTypes = type.propTypes;
|
|
2591
|
-
} else {
|
|
2592
|
-
return;
|
|
2593
|
-
}
|
|
2594
|
-
if (propTypes) {
|
|
2595
|
-
var name = getComponentNameFromType(type);
|
|
2596
|
-
checkPropTypes(propTypes, element.props, "prop", name, element);
|
|
2597
|
-
} else if (type.PropTypes !== undefined && !propTypesMisspellWarningShown) {
|
|
2598
|
-
propTypesMisspellWarningShown = true;
|
|
2599
|
-
var _name = getComponentNameFromType(type);
|
|
2600
|
-
error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", _name || "Unknown");
|
|
2601
|
-
}
|
|
2602
|
-
if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) {
|
|
2603
|
-
error("getDefaultProps is only used on classic React.createClass " + "definitions. Use a static property named `defaultProps` instead.");
|
|
2604
|
-
}
|
|
2605
|
-
}
|
|
2606
|
-
}
|
|
2607
|
-
function validateFragmentProps(fragment) {
|
|
2608
|
-
{
|
|
2609
|
-
var keys = Object.keys(fragment.props);
|
|
2610
|
-
for (var i = 0;i < keys.length; i++) {
|
|
2611
|
-
var key = keys[i];
|
|
2612
|
-
if (key !== "children" && key !== "key") {
|
|
2613
|
-
setCurrentlyValidatingElement$1(fragment);
|
|
2614
|
-
error("Invalid prop `%s` supplied to `React.Fragment`. " + "React.Fragment can only have `key` and `children` props.", key);
|
|
2615
|
-
setCurrentlyValidatingElement$1(null);
|
|
2616
|
-
break;
|
|
2617
|
-
}
|
|
2618
|
-
}
|
|
2619
|
-
if (fragment.ref !== null) {
|
|
2620
|
-
setCurrentlyValidatingElement$1(fragment);
|
|
2621
|
-
error("Invalid attribute `ref` supplied to `React.Fragment`.");
|
|
2622
|
-
setCurrentlyValidatingElement$1(null);
|
|
2623
|
-
}
|
|
2624
|
-
}
|
|
2625
|
-
}
|
|
2626
|
-
var didWarnAboutKeySpread = {};
|
|
2627
|
-
function jsxWithValidation(type, props, key, isStaticChildren, source, self) {
|
|
2628
|
-
{
|
|
2629
|
-
var validType = isValidElementType(type);
|
|
2630
|
-
if (!validType) {
|
|
2631
|
-
var info = "";
|
|
2632
|
-
if (type === undefined || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
|
|
2633
|
-
info += " You likely forgot to export your component from the file " + "it's defined in, or you might have mixed up default and named imports.";
|
|
2634
|
-
}
|
|
2635
|
-
var sourceInfo = getSourceInfoErrorAddendum(source);
|
|
2636
|
-
if (sourceInfo) {
|
|
2637
|
-
info += sourceInfo;
|
|
2638
|
-
} else {
|
|
2639
|
-
info += getDeclarationErrorAddendum();
|
|
2640
|
-
}
|
|
2641
|
-
var typeString;
|
|
2642
|
-
if (type === null) {
|
|
2643
|
-
typeString = "null";
|
|
2644
|
-
} else if (isArray(type)) {
|
|
2645
|
-
typeString = "array";
|
|
2646
|
-
} else if (type !== undefined && type.$$typeof === REACT_ELEMENT_TYPE) {
|
|
2647
|
-
typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
|
|
2648
|
-
info = " Did you accidentally export a JSX literal instead of a component?";
|
|
2649
|
-
} else {
|
|
2650
|
-
typeString = typeof type;
|
|
2651
|
-
}
|
|
2652
|
-
error("React.jsx: type is invalid -- expected a string (for " + "built-in components) or a class/function (for composite " + "components) but got: %s.%s", typeString, info);
|
|
2653
|
-
}
|
|
2654
|
-
var element = jsxDEV(type, props, key, source, self);
|
|
2655
|
-
if (element == null) {
|
|
2656
|
-
return element;
|
|
2657
|
-
}
|
|
2658
|
-
if (validType) {
|
|
2659
|
-
var children = props.children;
|
|
2660
|
-
if (children !== undefined) {
|
|
2661
|
-
if (isStaticChildren) {
|
|
2662
|
-
if (isArray(children)) {
|
|
2663
|
-
for (var i = 0;i < children.length; i++) {
|
|
2664
|
-
validateChildKeys(children[i], type);
|
|
2665
|
-
}
|
|
2666
|
-
if (Object.freeze) {
|
|
2667
|
-
Object.freeze(children);
|
|
2668
|
-
}
|
|
2669
|
-
} else {
|
|
2670
|
-
error("React.jsx: Static children should always be an array. " + "You are likely explicitly calling React.jsxs or React.jsxDEV. " + "Use the Babel transform instead.");
|
|
2671
|
-
}
|
|
2672
|
-
} else {
|
|
2673
|
-
validateChildKeys(children, type);
|
|
2674
|
-
}
|
|
2675
|
-
}
|
|
2676
|
-
}
|
|
2677
|
-
{
|
|
2678
|
-
if (hasOwnProperty.call(props, "key")) {
|
|
2679
|
-
var componentName = getComponentNameFromType(type);
|
|
2680
|
-
var keys = Object.keys(props).filter(function(k) {
|
|
2681
|
-
return k !== "key";
|
|
2682
|
-
});
|
|
2683
|
-
var beforeExample = keys.length > 0 ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
2684
|
-
if (!didWarnAboutKeySpread[componentName + beforeExample]) {
|
|
2685
|
-
var afterExample = keys.length > 0 ? "{" + keys.join(": ..., ") + ": ...}" : "{}";
|
|
2686
|
-
error(`A props object containing a "key" prop is being spread into JSX:
|
|
2687
|
-
` + ` let props = %s;
|
|
2688
|
-
` + ` <%s {...props} />
|
|
2689
|
-
` + `React keys must be passed directly to JSX without using spread:
|
|
2690
|
-
` + ` let props = %s;
|
|
2691
|
-
` + " <%s key={someKey} {...props} />", beforeExample, componentName, afterExample, componentName);
|
|
2692
|
-
didWarnAboutKeySpread[componentName + beforeExample] = true;
|
|
2693
|
-
}
|
|
2694
|
-
}
|
|
2695
|
-
}
|
|
2696
|
-
if (type === REACT_FRAGMENT_TYPE) {
|
|
2697
|
-
validateFragmentProps(element);
|
|
2698
|
-
} else {
|
|
2699
|
-
validatePropTypes(element);
|
|
2700
|
-
}
|
|
2701
|
-
return element;
|
|
2702
|
-
}
|
|
2703
|
-
}
|
|
2704
|
-
var jsxDEV$1 = jsxWithValidation;
|
|
2705
|
-
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
2706
|
-
exports.jsxDEV = jsxDEV$1;
|
|
2707
|
-
})();
|
|
2708
|
-
}
|
|
2709
|
-
});
|
|
2710
|
-
|
|
2711
|
-
// ../../node_modules/react/jsx-dev-runtime.js
|
|
2712
|
-
var require_jsx_dev_runtime = __commonJS((exports, module) => {
|
|
2713
|
-
var react_jsx_dev_runtime_development = __toESM(require_react_jsx_dev_runtime_development());
|
|
2714
|
-
if (false) {} else {
|
|
2715
|
-
module.exports = react_jsx_dev_runtime_development;
|
|
2716
|
-
}
|
|
2717
|
-
});
|
|
2718
|
-
|
|
2719
1
|
// __generated__/LetterIcon.tsx
|
|
2720
|
-
|
|
2721
|
-
var LetterIcon = (props) => /* @__PURE__ */
|
|
2
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
3
|
+
var LetterIcon = (props) => /* @__PURE__ */ jsxDEV("svg", {
|
|
2722
4
|
viewBox: "0 0 24 24",
|
|
2723
5
|
fill: props.fill || "#777E8F",
|
|
2724
6
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2725
7
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2726
8
|
...props,
|
|
2727
|
-
children: /* @__PURE__ */
|
|
9
|
+
children: /* @__PURE__ */ jsxDEV("path", {
|
|
2728
10
|
d: "M5 21C4.45 21 3.97917 20.8042 3.5875 20.4125C3.19583 20.0208 3 19.55 3 19V5C3 4.45 3.19583 3.97917 3.5875 3.5875C3.97917 3.19583 4.45 3 5 3H9.2C9.41667 2.4 9.77917 1.91667 10.2875 1.55C10.7958 1.18333 11.3667 1 12 1C12.6333 1 13.2042 1.18333 13.7125 1.55C14.2208 1.91667 14.5833 2.4 14.8 3H19C19.55 3 20.0208 3.19583 20.4125 3.5875C20.8042 3.97917 21 4.45 21 5V19C21 19.55 20.8042 20.0208 20.4125 20.4125C20.0208 20.8042 19.55 21 19 21H5ZM5 19H19V5H5V19ZM7 17H14V15H7V17ZM7 13H17V11H7V13ZM7 9H17V7H7V9ZM12 4.25C12.2167 4.25 12.3958 4.17917 12.5375 4.0375C12.6792 3.89583 12.75 3.71667 12.75 3.5C12.75 3.28333 12.6792 3.10417 12.5375 2.9625C12.3958 2.82083 12.2167 2.75 12 2.75C11.7833 2.75 11.6042 2.82083 11.4625 2.9625C11.3208 3.10417 11.25 3.28333 11.25 3.5C11.25 3.71667 11.3208 3.89583 11.4625 4.0375C11.6042 4.17917 11.7833 4.25 12 4.25Z"
|
|
2729
11
|
}, undefined, false, undefined, this)
|
|
2730
12
|
}, undefined, false, undefined, this);
|
|
2731
13
|
// __generated__/ChevronLeftIcon.tsx
|
|
2732
|
-
|
|
2733
|
-
var ChevronLeftIcon = (props) => /* @__PURE__ */
|
|
14
|
+
import { jsxDEV as jsxDEV2 } from "react/jsx-dev-runtime";
|
|
15
|
+
var ChevronLeftIcon = (props) => /* @__PURE__ */ jsxDEV2("svg", {
|
|
2734
16
|
viewBox: "0 0 24 24",
|
|
2735
17
|
fill: props.fill || "#777E8F",
|
|
2736
18
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2737
19
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2738
20
|
...props,
|
|
2739
|
-
children: /* @__PURE__ */
|
|
21
|
+
children: /* @__PURE__ */ jsxDEV2("path", {
|
|
2740
22
|
d: "M14 18L8 12L14 6L15.4 7.4L10.8 12L15.4 16.6L14 18Z"
|
|
2741
23
|
}, undefined, false, undefined, this)
|
|
2742
24
|
}, undefined, false, undefined, this);
|
|
2743
25
|
// __generated__/ExpandArrowIcon.tsx
|
|
2744
|
-
|
|
2745
|
-
var ExpandArrowIcon = (props) => /* @__PURE__ */
|
|
26
|
+
import { jsxDEV as jsxDEV3 } from "react/jsx-dev-runtime";
|
|
27
|
+
var ExpandArrowIcon = (props) => /* @__PURE__ */ jsxDEV3("svg", {
|
|
2746
28
|
viewBox: "0 0 20 20",
|
|
2747
29
|
fill: props.fill || "#777E8F",
|
|
2748
30
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2749
31
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2750
32
|
...props,
|
|
2751
|
-
children: /* @__PURE__ */
|
|
33
|
+
children: /* @__PURE__ */ jsxDEV3("path", {
|
|
2752
34
|
d: "M3.33268 7.40999L9.99935 14.1667L16.666 7.40999L15.1105 5.83341L9.99935 11.0136L4.88824 5.83341L3.33268 7.40999Z"
|
|
2753
35
|
}, undefined, false, undefined, this)
|
|
2754
36
|
}, undefined, false, undefined, this);
|
|
2755
37
|
// __generated__/ChevronRightRoundedIcon.tsx
|
|
2756
|
-
|
|
2757
|
-
var ChevronRightRoundedIcon = (props) => /* @__PURE__ */
|
|
38
|
+
import { jsxDEV as jsxDEV4 } from "react/jsx-dev-runtime";
|
|
39
|
+
var ChevronRightRoundedIcon = (props) => /* @__PURE__ */ jsxDEV4("svg", {
|
|
2758
40
|
viewBox: "0 0 24 24",
|
|
2759
41
|
fill: props.fill || "#777E8F",
|
|
2760
42
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2761
43
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2762
44
|
...props,
|
|
2763
|
-
children: /* @__PURE__ */
|
|
45
|
+
children: /* @__PURE__ */ jsxDEV4("path", {
|
|
2764
46
|
d: "M12.9467 12.0005L8.8735 7.9275C8.73517 7.789 8.66433 7.61492 8.661 7.40525C8.65783 7.19575 8.72867 7.0185 8.8735 6.8735C9.0185 6.72867 9.19417 6.65625 9.4005 6.65625C9.60683 6.65625 9.7825 6.72867 9.9275 6.8735L14.4217 11.3678C14.5152 11.4614 14.5813 11.5602 14.6198 11.664C14.6583 11.7678 14.6775 11.88 14.6775 12.0005C14.6775 12.121 14.6583 12.2332 14.6198 12.337C14.5813 12.4408 14.5152 12.5396 14.4217 12.6333L9.9275 17.1275C9.789 17.2658 9.61492 17.3367 9.40525 17.34C9.19575 17.3432 9.0185 17.2723 8.8735 17.1275C8.72867 16.9825 8.65625 16.8068 8.65625 16.6005C8.65625 16.3942 8.72867 16.2185 8.8735 16.0735L12.9467 12.0005Z"
|
|
2765
47
|
}, undefined, false, undefined, this)
|
|
2766
48
|
}, undefined, false, undefined, this);
|
|
2767
49
|
// __generated__/CreditCardIcon.tsx
|
|
2768
|
-
|
|
2769
|
-
var CreditCardIcon = (props) => /* @__PURE__ */
|
|
50
|
+
import { jsxDEV as jsxDEV5 } from "react/jsx-dev-runtime";
|
|
51
|
+
var CreditCardIcon = (props) => /* @__PURE__ */ jsxDEV5("svg", {
|
|
2770
52
|
viewBox: "0 0 24 24",
|
|
2771
53
|
fill: props.fill || "#777E8F",
|
|
2772
54
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2773
55
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2774
56
|
...props,
|
|
2775
|
-
children: /* @__PURE__ */
|
|
57
|
+
children: /* @__PURE__ */ jsxDEV5("path", {
|
|
2776
58
|
d: "M21 6.75V17.25C21 17.7312 20.8238 18.1432 20.4713 18.4859C20.1188 18.8286 19.695 19 19.2 19H4.8C4.305 19 3.88125 18.8286 3.52875 18.4859C3.17625 18.1432 3 17.7312 3 17.25V6.75C3 6.26875 3.17625 5.85677 3.52875 5.51406C3.88125 5.17135 4.305 5 4.8 5H19.2C19.695 5 20.1188 5.17135 20.4713 5.51406C20.8238 5.85677 21 6.26875 21 6.75ZM4.8 8.5H19.2V6.75H4.8V8.5ZM4.8 12V17.25H19.2V12H4.8Z"
|
|
2777
59
|
}, undefined, false, undefined, this)
|
|
2778
60
|
}, undefined, false, undefined, this);
|
|
2779
61
|
// __generated__/PersonIcon.tsx
|
|
2780
|
-
|
|
2781
|
-
var PersonIcon = (props) => /* @__PURE__ */
|
|
62
|
+
import { jsxDEV as jsxDEV6 } from "react/jsx-dev-runtime";
|
|
63
|
+
var PersonIcon = (props) => /* @__PURE__ */ jsxDEV6("svg", {
|
|
2782
64
|
viewBox: "0 0 24 24",
|
|
2783
65
|
fill: props.fill || "#777E8F",
|
|
2784
66
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2785
67
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2786
68
|
...props,
|
|
2787
|
-
children: /* @__PURE__ */
|
|
69
|
+
children: /* @__PURE__ */ jsxDEV6("path", {
|
|
2788
70
|
d: "M12 12C10.9 12 9.95833 11.6083 9.175 10.825C8.39167 10.0417 8 9.1 8 8C8 6.9 8.39167 5.95833 9.175 5.175C9.95833 4.39167 10.9 4 12 4C13.1 4 14.0417 4.39167 14.825 5.175C15.6083 5.95833 16 6.9 16 8C16 9.1 15.6083 10.0417 14.825 10.825C14.0417 11.6083 13.1 12 12 12ZM4 20V17.2C4 16.6333 4.14583 16.1125 4.4375 15.6375C4.72917 15.1625 5.11667 14.8 5.6 14.55C6.63333 14.0333 7.68333 13.6458 8.75 13.3875C9.81667 13.1292 10.9 13 12 13C13.1 13 14.1833 13.1292 15.25 13.3875C16.3167 13.6458 17.3667 14.0333 18.4 14.55C18.8833 14.8 19.2708 15.1625 19.5625 15.6375C19.8542 16.1125 20 16.6333 20 17.2V20H4ZM6 18H18V17.2C18 17.0167 17.9542 16.85 17.8625 16.7C17.7708 16.55 17.65 16.4333 17.5 16.35C16.6 15.9 15.6917 15.5625 14.775 15.3375C13.8583 15.1125 12.9333 15 12 15C11.0667 15 10.1417 15.1125 9.225 15.3375C8.30833 15.5625 7.4 15.9 6.5 16.35C6.35 16.4333 6.22917 16.55 6.1375 16.7C6.04583 16.85 6 17.0167 6 17.2V18ZM12 10C12.55 10 13.0208 9.80417 13.4125 9.4125C13.8042 9.02083 14 8.55 14 8C14 7.45 13.8042 6.97917 13.4125 6.5875C13.0208 6.19583 12.55 6 12 6C11.45 6 10.9792 6.19583 10.5875 6.5875C10.1958 6.97917 10 7.45 10 8C10 8.55 10.1958 9.02083 10.5875 9.4125C10.9792 9.80417 11.45 10 12 10Z"
|
|
2789
71
|
}, undefined, false, undefined, this)
|
|
2790
72
|
}, undefined, false, undefined, this);
|
|
2791
73
|
// __generated__/InfoIcon.tsx
|
|
2792
|
-
|
|
2793
|
-
var InfoIcon = (props) => /* @__PURE__ */
|
|
74
|
+
import { jsxDEV as jsxDEV7 } from "react/jsx-dev-runtime";
|
|
75
|
+
var InfoIcon = (props) => /* @__PURE__ */ jsxDEV7("svg", {
|
|
2794
76
|
viewBox: "0 0 24 24",
|
|
2795
77
|
fill: props.fill || "#777E8F",
|
|
2796
78
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2797
79
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2798
80
|
...props,
|
|
2799
|
-
children: /* @__PURE__ */
|
|
81
|
+
children: /* @__PURE__ */ jsxDEV7("path", {
|
|
2800
82
|
d: "M11 17H13V11H11V17ZM12 9C12.2833 9 12.5208 8.90417 12.7125 8.7125C12.9042 8.52083 13 8.28333 13 8C13 7.71667 12.9042 7.47917 12.7125 7.2875C12.5208 7.09583 12.2833 7 12 7C11.7167 7 11.4792 7.09583 11.2875 7.2875C11.0958 7.47917 11 7.71667 11 8C11 8.28333 11.0958 8.52083 11.2875 8.7125C11.4792 8.90417 11.7167 9 12 9ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z"
|
|
2801
83
|
}, undefined, false, undefined, this)
|
|
2802
84
|
}, undefined, false, undefined, this);
|
|
2803
85
|
// __generated__/ChevronRightIcon400.tsx
|
|
2804
|
-
|
|
2805
|
-
var ChevronRightIcon400 = (props) => /* @__PURE__ */
|
|
86
|
+
import { jsxDEV as jsxDEV8 } from "react/jsx-dev-runtime";
|
|
87
|
+
var ChevronRightIcon400 = (props) => /* @__PURE__ */ jsxDEV8("svg", {
|
|
2806
88
|
viewBox: "0 0 24 24",
|
|
2807
89
|
fill: props.fill || "#777E8F",
|
|
2808
90
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2809
91
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2810
92
|
...props,
|
|
2811
|
-
children: /* @__PURE__ */
|
|
93
|
+
children: /* @__PURE__ */ jsxDEV8("path", {
|
|
2812
94
|
d: "M12.6008 12.0008L8.70078 8.10078C8.51745 7.91745 8.42578 7.68411 8.42578 7.40078C8.42578 7.11745 8.51745 6.88411 8.70078 6.70078C8.88411 6.51745 9.11745 6.42578 9.40078 6.42578C9.68411 6.42578 9.91745 6.51745 10.1008 6.70078L14.7008 11.3008C14.8008 11.4008 14.8716 11.5091 14.9133 11.6258C14.9549 11.7424 14.9758 11.8674 14.9758 12.0008C14.9758 12.1341 14.9549 12.2591 14.9133 12.3758C14.8716 12.4924 14.8008 12.6008 14.7008 12.7008L10.1008 17.3008C9.91745 17.4841 9.68411 17.5758 9.40078 17.5758C9.11745 17.5758 8.88411 17.4841 8.70078 17.3008C8.51745 17.1174 8.42578 16.8841 8.42578 16.6008C8.42578 16.3174 8.51745 16.0841 8.70078 15.9008L12.6008 12.0008Z"
|
|
2813
95
|
}, undefined, false, undefined, this)
|
|
2814
96
|
}, undefined, false, undefined, this);
|
|
2815
97
|
// __generated__/AccountCircleIcon.tsx
|
|
2816
|
-
|
|
2817
|
-
var AccountCircleIcon = (props) => /* @__PURE__ */
|
|
98
|
+
import { jsxDEV as jsxDEV9 } from "react/jsx-dev-runtime";
|
|
99
|
+
var AccountCircleIcon = (props) => /* @__PURE__ */ jsxDEV9("svg", {
|
|
2818
100
|
viewBox: "0 0 24 24",
|
|
2819
101
|
fill: props.fill || "#777E8F",
|
|
2820
102
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2821
103
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2822
104
|
...props,
|
|
2823
|
-
children: /* @__PURE__ */
|
|
105
|
+
children: /* @__PURE__ */ jsxDEV9("path", {
|
|
2824
106
|
d: "M5.85 17.1C6.7 16.45 7.65 15.9375 8.7 15.5625C9.75 15.1875 10.85 15 12 15C13.15 15 14.25 15.1875 15.3 15.5625C16.35 15.9375 17.3 16.45 18.15 17.1C18.7333 16.4167 19.1875 15.6417 19.5125 14.775C19.8375 13.9083 20 12.9833 20 12C20 9.78333 19.2208 7.89583 17.6625 6.3375C16.1042 4.77917 14.2167 4 12 4C9.78333 4 7.89583 4.77917 6.3375 6.3375C4.77917 7.89583 4 9.78333 4 12C4 12.9833 4.1625 13.9083 4.4875 14.775C4.8125 15.6417 5.26667 16.4167 5.85 17.1ZM12 13C11.0167 13 10.1875 12.6625 9.5125 11.9875C8.8375 11.3125 8.5 10.4833 8.5 9.5C8.5 8.51667 8.8375 7.6875 9.5125 7.0125C10.1875 6.3375 11.0167 6 12 6C12.9833 6 13.8125 6.3375 14.4875 7.0125C15.1625 7.6875 15.5 8.51667 15.5 9.5C15.5 10.4833 15.1625 11.3125 14.4875 11.9875C13.8125 12.6625 12.9833 13 12 13ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C12.8833 20 13.7167 19.8708 14.5 19.6125C15.2833 19.3542 16 18.9833 16.65 18.5C16 18.0167 15.2833 17.6458 14.5 17.3875C13.7167 17.1292 12.8833 17 12 17C11.1167 17 10.2833 17.1292 9.5 17.3875C8.71667 17.6458 8 18.0167 7.35 18.5C8 18.9833 8.71667 19.3542 9.5 19.6125C10.2833 19.8708 11.1167 20 12 20ZM12 11C12.4333 11 12.7917 10.8583 13.075 10.575C13.3583 10.2917 13.5 9.93333 13.5 9.5C13.5 9.06667 13.3583 8.70833 13.075 8.425C12.7917 8.14167 12.4333 8 12 8C11.5667 8 11.2083 8.14167 10.925 8.425C10.6417 8.70833 10.5 9.06667 10.5 9.5C10.5 9.93333 10.6417 10.2917 10.925 10.575C11.2083 10.8583 11.5667 11 12 11Z"
|
|
2825
107
|
}, undefined, false, undefined, this)
|
|
2826
108
|
}, undefined, false, undefined, this);
|
|
2827
109
|
// __generated__/MinusRoundedIcon.tsx
|
|
2828
|
-
|
|
2829
|
-
var MinusRoundedIcon = (props) => /* @__PURE__ */
|
|
110
|
+
import { jsxDEV as jsxDEV10 } from "react/jsx-dev-runtime";
|
|
111
|
+
var MinusRoundedIcon = (props) => /* @__PURE__ */ jsxDEV10("svg", {
|
|
2830
112
|
viewBox: "0 0 24 24",
|
|
2831
113
|
fill: props.fill || "#777E8F",
|
|
2832
114
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2833
115
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2834
116
|
...props,
|
|
2835
|
-
children: /* @__PURE__ */
|
|
117
|
+
children: /* @__PURE__ */ jsxDEV10("path", {
|
|
2836
118
|
d: "M6.25 12.75C6.0375 12.75 5.85942 12.6781 5.71575 12.5342C5.57192 12.3904 5.5 12.2122 5.5 11.9997C5.5 11.7871 5.57192 11.609 5.71575 11.4655C5.85942 11.3218 6.0375 11.25 6.25 11.25H17.75C17.9625 11.25 18.1406 11.3219 18.2843 11.4658C18.4281 11.6096 18.5 11.7878 18.5 12.0003C18.5 12.2129 18.4281 12.391 18.2843 12.5345C18.1406 12.6782 17.9625 12.75 17.75 12.75H6.25Z"
|
|
2837
119
|
}, undefined, false, undefined, this)
|
|
2838
120
|
}, undefined, false, undefined, this);
|
|
2839
121
|
// __generated__/SearchIcon.tsx
|
|
2840
|
-
|
|
2841
|
-
var SearchIcon = (props) => /* @__PURE__ */
|
|
122
|
+
import { jsxDEV as jsxDEV11 } from "react/jsx-dev-runtime";
|
|
123
|
+
var SearchIcon = (props) => /* @__PURE__ */ jsxDEV11("svg", {
|
|
2842
124
|
viewBox: "0 0 16 16",
|
|
2843
125
|
fill: props.fill || "#777E8F",
|
|
2844
126
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2845
127
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2846
128
|
...props,
|
|
2847
|
-
children: /* @__PURE__ */
|
|
129
|
+
children: /* @__PURE__ */ jsxDEV11("path", {
|
|
2848
130
|
d: "M14.7556 16L9.15556 10.4C8.71111 10.7556 8.2 11.037 7.62222 11.2444C7.04444 11.4519 6.42963 11.5556 5.77778 11.5556C4.16296 11.5556 2.7963 10.9963 1.67778 9.87778C0.559259 8.75926 0 7.39259 0 5.77778C0 4.16296 0.559259 2.7963 1.67778 1.67778C2.7963 0.559259 4.16296 0 5.77778 0C7.39259 0 8.75926 0.559259 9.87778 1.67778C10.9963 2.7963 11.5556 4.16296 11.5556 5.77778C11.5556 6.42963 11.4519 7.04444 11.2444 7.62222C11.037 8.2 10.7556 8.71111 10.4 9.15556L16 14.7556L14.7556 16ZM5.77778 9.77778C6.88889 9.77778 7.83333 9.38889 8.61111 8.61111C9.38889 7.83333 9.77778 6.88889 9.77778 5.77778C9.77778 4.66667 9.38889 3.72222 8.61111 2.94444C7.83333 2.16667 6.88889 1.77778 5.77778 1.77778C4.66667 1.77778 3.72222 2.16667 2.94444 2.94444C2.16667 3.72222 1.77778 4.66667 1.77778 5.77778C1.77778 6.88889 2.16667 7.83333 2.94444 8.61111C3.72222 9.38889 4.66667 9.77778 5.77778 9.77778Z"
|
|
2849
131
|
}, undefined, false, undefined, this)
|
|
2850
132
|
}, undefined, false, undefined, this);
|
|
2851
133
|
// __generated__/CommunicationIcon.tsx
|
|
2852
|
-
|
|
2853
|
-
var CommunicationIcon = (props) => /* @__PURE__ */
|
|
134
|
+
import { jsxDEV as jsxDEV12 } from "react/jsx-dev-runtime";
|
|
135
|
+
var CommunicationIcon = (props) => /* @__PURE__ */ jsxDEV12("svg", {
|
|
2854
136
|
viewBox: "0 0 24 24",
|
|
2855
137
|
fill: props.fill || "#777E8F",
|
|
2856
138
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2857
139
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2858
140
|
...props,
|
|
2859
|
-
children: /* @__PURE__ */
|
|
141
|
+
children: /* @__PURE__ */ jsxDEV12("path", {
|
|
2860
142
|
d: "M2 22V4C2 3.45 2.19583 2.97917 2.5875 2.5875C2.97917 2.19583 3.45 2 4 2H20C20.55 2 21.0208 2.19583 21.4125 2.5875C21.8042 2.97917 22 3.45 22 4V16C22 16.55 21.8042 17.0208 21.4125 17.4125C21.0208 17.8042 20.55 18 20 18H6L2 22ZM5.15 16H20V4H4V17.125L5.15 16Z"
|
|
2861
143
|
}, undefined, false, undefined, this)
|
|
2862
144
|
}, undefined, false, undefined, this);
|
|
2863
145
|
// __generated__/AddRoundedIcon.tsx
|
|
2864
|
-
|
|
2865
|
-
var AddRoundedIcon = (props) => /* @__PURE__ */
|
|
146
|
+
import { jsxDEV as jsxDEV13 } from "react/jsx-dev-runtime";
|
|
147
|
+
var AddRoundedIcon = (props) => /* @__PURE__ */ jsxDEV13("svg", {
|
|
2866
148
|
viewBox: "0 0 24 24",
|
|
2867
149
|
fill: props.fill || "#777E8F",
|
|
2868
150
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2869
151
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2870
152
|
...props,
|
|
2871
|
-
children: /* @__PURE__ */
|
|
153
|
+
children: /* @__PURE__ */ jsxDEV13("path", {
|
|
2872
154
|
d: "M11.25 12.75H6.25C6.0375 12.75 5.85942 12.6781 5.71575 12.5342C5.57192 12.3904 5.5 12.2122 5.5 11.9997C5.5 11.7871 5.57192 11.609 5.71575 11.4655C5.85942 11.3218 6.0375 11.25 6.25 11.25H11.25V6.25C11.25 6.0375 11.3219 5.85942 11.4658 5.71575C11.6096 5.57192 11.7878 5.5 12.0003 5.5C12.2129 5.5 12.391 5.57192 12.5345 5.71575C12.6782 5.85942 12.75 6.0375 12.75 6.25V11.25H17.75C17.9625 11.25 18.1406 11.3219 18.2843 11.4658C18.4281 11.6096 18.5 11.7878 18.5 12.0003C18.5 12.2129 18.4281 12.391 18.2843 12.5345C18.1406 12.6782 17.9625 12.75 17.75 12.75H12.75V17.75C12.75 17.9625 12.6781 18.1406 12.5342 18.2843C12.3904 18.4281 12.2122 18.5 11.9997 18.5C11.7871 18.5 11.609 18.4281 11.4655 18.2843C11.3218 18.1406 11.25 17.9625 11.25 17.75V12.75Z"
|
|
2873
155
|
}, undefined, false, undefined, this)
|
|
2874
156
|
}, undefined, false, undefined, this);
|
|
2875
157
|
// __generated__/VisibilityIcon.tsx
|
|
2876
|
-
|
|
2877
|
-
var VisibilityIcon = (props) => /* @__PURE__ */
|
|
158
|
+
import { jsxDEV as jsxDEV14 } from "react/jsx-dev-runtime";
|
|
159
|
+
var VisibilityIcon = (props) => /* @__PURE__ */ jsxDEV14("svg", {
|
|
2878
160
|
viewBox: "0 0 24 24",
|
|
2879
161
|
fill: props.fill || "#777E8F",
|
|
2880
162
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2881
163
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2882
164
|
...props,
|
|
2883
|
-
children: /* @__PURE__ */
|
|
165
|
+
children: /* @__PURE__ */ jsxDEV14("path", {
|
|
2884
166
|
d: "M12 16C13.25 16 14.3125 15.5625 15.1875 14.6875C16.0625 13.8125 16.5 12.75 16.5 11.5C16.5 10.25 16.0625 9.1875 15.1875 8.3125C14.3125 7.4375 13.25 7 12 7C10.75 7 9.6875 7.4375 8.8125 8.3125C7.9375 9.1875 7.5 10.25 7.5 11.5C7.5 12.75 7.9375 13.8125 8.8125 14.6875C9.6875 15.5625 10.75 16 12 16ZM12 14.2C11.25 14.2 10.6125 13.9375 10.0875 13.4125C9.5625 12.8875 9.3 12.25 9.3 11.5C9.3 10.75 9.5625 10.1125 10.0875 9.5875C10.6125 9.0625 11.25 8.8 12 8.8C12.75 8.8 13.3875 9.0625 13.9125 9.5875C14.4375 10.1125 14.7 10.75 14.7 11.5C14.7 12.25 14.4375 12.8875 13.9125 13.4125C13.3875 13.9375 12.75 14.2 12 14.2ZM12 19C9.56667 19 7.35 18.3208 5.35 16.9625C3.35 15.6042 1.9 13.7833 1 11.5C1.9 9.21667 3.35 7.39583 5.35 6.0375C7.35 4.67917 9.56667 4 12 4C14.4333 4 16.65 4.67917 18.65 6.0375C20.65 7.39583 22.1 9.21667 23 11.5C22.1 13.7833 20.65 15.6042 18.65 16.9625C16.65 18.3208 14.4333 19 12 19ZM12 17C13.8833 17 15.6125 16.5042 17.1875 15.5125C18.7625 14.5208 19.9667 13.1833 20.8 11.5C19.9667 9.81667 18.7625 8.47917 17.1875 7.4875C15.6125 6.49583 13.8833 6 12 6C10.1167 6 8.3875 6.49583 6.8125 7.4875C5.2375 8.47917 4.03333 9.81667 3.2 11.5C4.03333 13.1833 5.2375 14.5208 6.8125 15.5125C8.3875 16.5042 10.1167 17 12 17Z"
|
|
2885
167
|
}, undefined, false, undefined, this)
|
|
2886
168
|
}, undefined, false, undefined, this);
|
|
2887
169
|
// __generated__/AddIcon.tsx
|
|
2888
|
-
|
|
2889
|
-
var AddIcon = (props) => /* @__PURE__ */
|
|
170
|
+
import { jsxDEV as jsxDEV15 } from "react/jsx-dev-runtime";
|
|
171
|
+
var AddIcon = (props) => /* @__PURE__ */ jsxDEV15("svg", {
|
|
2890
172
|
viewBox: "0 0 20 20",
|
|
2891
173
|
fill: props.fill || "#777E8F",
|
|
2892
174
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2893
175
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2894
176
|
...props,
|
|
2895
|
-
children: /* @__PURE__ */
|
|
177
|
+
children: /* @__PURE__ */ jsxDEV15("path", {
|
|
2896
178
|
d: "M9.16602 10.8334H4.16602V9.16675H9.16602V4.16675H10.8327V9.16675H15.8327V10.8334H10.8327V15.8334H9.16602V10.8334Z"
|
|
2897
179
|
}, undefined, false, undefined, this)
|
|
2898
180
|
}, undefined, false, undefined, this);
|
|
2899
181
|
// __generated__/SMSIcon.tsx
|
|
2900
|
-
|
|
2901
|
-
var SMSIcon = (props) => /* @__PURE__ */
|
|
182
|
+
import { jsxDEV as jsxDEV16 } from "react/jsx-dev-runtime";
|
|
183
|
+
var SMSIcon = (props) => /* @__PURE__ */ jsxDEV16("svg", {
|
|
2902
184
|
viewBox: "0 0 24 24",
|
|
2903
185
|
fill: props.fill || "#777E8F",
|
|
2904
186
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2905
187
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2906
188
|
...props,
|
|
2907
|
-
children: /* @__PURE__ */
|
|
189
|
+
children: /* @__PURE__ */ jsxDEV16("path", {
|
|
2908
190
|
d: "M8 11C8.28333 11 8.52083 10.9042 8.7125 10.7125C8.90417 10.5208 9 10.2833 9 10C9 9.71667 8.90417 9.47917 8.7125 9.2875C8.52083 9.09583 8.28333 9 8 9C7.71667 9 7.47917 9.09583 7.2875 9.2875C7.09583 9.47917 7 9.71667 7 10C7 10.2833 7.09583 10.5208 7.2875 10.7125C7.47917 10.9042 7.71667 11 8 11ZM12 11C12.2833 11 12.5208 10.9042 12.7125 10.7125C12.9042 10.5208 13 10.2833 13 10C13 9.71667 12.9042 9.47917 12.7125 9.2875C12.5208 9.09583 12.2833 9 12 9C11.7167 9 11.4792 9.09583 11.2875 9.2875C11.0958 9.47917 11 9.71667 11 10C11 10.2833 11.0958 10.5208 11.2875 10.7125C11.4792 10.9042 11.7167 11 12 11ZM16 11C16.2833 11 16.5208 10.9042 16.7125 10.7125C16.9042 10.5208 17 10.2833 17 10C17 9.71667 16.9042 9.47917 16.7125 9.2875C16.5208 9.09583 16.2833 9 16 9C15.7167 9 15.4792 9.09583 15.2875 9.2875C15.0958 9.47917 15 9.71667 15 10C15 10.2833 15.0958 10.5208 15.2875 10.7125C15.4792 10.9042 15.7167 11 16 11ZM2 22V4C2 3.45 2.19583 2.97917 2.5875 2.5875C2.97917 2.19583 3.45 2 4 2H20C20.55 2 21.0208 2.19583 21.4125 2.5875C21.8042 2.97917 22 3.45 22 4V16C22 16.55 21.8042 17.0208 21.4125 17.4125C21.0208 17.8042 20.55 18 20 18H6L2 22ZM5.15 16H20V4H4V17.125L5.15 16Z"
|
|
2909
191
|
}, undefined, false, undefined, this)
|
|
2910
192
|
}, undefined, false, undefined, this);
|
|
2911
193
|
// __generated__/CheckCircleIcon.tsx
|
|
2912
|
-
|
|
2913
|
-
var CheckCircleIcon = (props) => /* @__PURE__ */
|
|
194
|
+
import { jsxDEV as jsxDEV17 } from "react/jsx-dev-runtime";
|
|
195
|
+
var CheckCircleIcon = (props) => /* @__PURE__ */ jsxDEV17("svg", {
|
|
2914
196
|
viewBox: "0 0 24 24",
|
|
2915
197
|
fill: props.fill || "#777E8F",
|
|
2916
198
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2917
199
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2918
200
|
...props,
|
|
2919
|
-
children: /* @__PURE__ */
|
|
201
|
+
children: /* @__PURE__ */ jsxDEV17("path", {
|
|
2920
202
|
d: "M10.6 16.6L17.65 9.55L16.25 8.15L10.6 13.8L7.75 10.95L6.35 12.35L10.6 16.6ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z"
|
|
2921
203
|
}, undefined, false, undefined, this)
|
|
2922
204
|
}, undefined, false, undefined, this);
|
|
2923
205
|
// __generated__/DragIndicatorIcon.tsx
|
|
2924
|
-
|
|
2925
|
-
var DragIndicatorIcon = (props) => /* @__PURE__ */
|
|
206
|
+
import { jsxDEV as jsxDEV18 } from "react/jsx-dev-runtime";
|
|
207
|
+
var DragIndicatorIcon = (props) => /* @__PURE__ */ jsxDEV18("svg", {
|
|
2926
208
|
viewBox: "0 0 24 24",
|
|
2927
209
|
fill: props.fill || "#777E8F",
|
|
2928
210
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2929
211
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2930
212
|
...props,
|
|
2931
|
-
children: /* @__PURE__ */
|
|
213
|
+
children: /* @__PURE__ */ jsxDEV18("path", {
|
|
2932
214
|
d: "M9 20C8.45 20 7.97917 19.8042 7.5875 19.4125C7.19583 19.0208 7 18.55 7 18C7 17.45 7.19583 16.9792 7.5875 16.5875C7.97917 16.1958 8.45 16 9 16C9.55 16 10.0208 16.1958 10.4125 16.5875C10.8042 16.9792 11 17.45 11 18C11 18.55 10.8042 19.0208 10.4125 19.4125C10.0208 19.8042 9.55 20 9 20ZM15 20C14.45 20 13.9792 19.8042 13.5875 19.4125C13.1958 19.0208 13 18.55 13 18C13 17.45 13.1958 16.9792 13.5875 16.5875C13.9799 16.1958 14.45 16 15 16C15.55 16 16.0208 16.1958 16.4125 16.5875C16.8042 16.9792 17 17.45 17 18C17 18.55 16.8042 19.0208 16.4125 19.4125C16.0208 19.8042 15.55 20 15 20ZM9 14C8.45 14 7.97917 13.8042 7.5875 13.4125C7.19583 13.0208 7 12.55 7 12C7 11.45 7.19583 10.9792 7.5875 10.5875C7.97917 10.1958 8.45 10 9 10C9.55 10 10.0208 10.1958 10.4125 10.5875C10.8042 10.9792 11 11.45 11 12C11 12.55 10.8042 13.0208 10.4125 13.4125C10.0208 13.8042 9.55 14 9 14ZM15 14C14.45 14 13.9792 13.8042 13.5875 13.4125C13.1958 13.0208 13 12.55 13 12C13 11.45 13.1958 10.9792 13.5875 10.5875C13.9792 10.1958 14.45 10 15 10C15.55 10 16.0208 10.1958 16.4125 10.5875C16.8042 10.9792 17 11.45 17 12C17 12.55 16.8042 13.0208 16.4125 13.4125C16.0208 13.8042 15.55 14 15 14ZM9 8C8.45 8 7.97917 7.80417 7.5875 7.4125C7.19583 7.02083 7 6.55 7 6C7 5.45 7.19583 4.97917 7.5875 4.5875C7.97917 4.19583 8.45 4 9 4C9.55 4 10.0208 4.19583 10.4125 4.5875C10.8042 4.97917 11 5.45 11 6C11 6.55 10.8042 7.02083 10.4125 7.4125C10.0208 7.80417 9.55 8 9 8ZM15 8C14.45 8 13.9792 7.80417 13.5875 7.4125C13.1958 7.02083 13 6.55 13 6C13 5.45 13.1958 4.97917 13.5875 4.5875C13.9792 4.19583 14.45 4 15 4C15.55 4 16.0208 4.19583 16.4125 4.5875C16.8042 4.97917 17 5.45 17 6C17 6.55 16.8042 7.02083 16.4125 7.4125C16.0208 7.80417 15.55 8 15 8Z"
|
|
2933
215
|
}, undefined, false, undefined, this)
|
|
2934
216
|
}, undefined, false, undefined, this);
|
|
2935
217
|
// __generated__/ArchiveIcon.tsx
|
|
2936
|
-
|
|
2937
|
-
var ArchiveIcon = (props) => /* @__PURE__ */
|
|
218
|
+
import { jsxDEV as jsxDEV19 } from "react/jsx-dev-runtime";
|
|
219
|
+
var ArchiveIcon = (props) => /* @__PURE__ */ jsxDEV19("svg", {
|
|
2938
220
|
viewBox: "0 0 24 24",
|
|
2939
221
|
fill: props.fill || "#777E8F",
|
|
2940
222
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2941
223
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2942
224
|
...props,
|
|
2943
|
-
children: /* @__PURE__ */
|
|
225
|
+
children: /* @__PURE__ */ jsxDEV19("path", {
|
|
2944
226
|
d: "M12 18L16 14L14.6 12.6L13 14.2V10H11V14.2L9.4 12.6L8 14L12 18ZM5 8V19H19V8H5ZM5 21C4.45 21 3.97917 20.8042 3.5875 20.4125C3.19583 20.0208 3 19.55 3 19V6.525C3 6.29167 3.0375 6.06667 3.1125 5.85C3.1875 5.63333 3.3 5.43333 3.45 5.25L4.7 3.725C4.88333 3.49167 5.1125 3.3125 5.3875 3.1875C5.6625 3.0625 5.95 3 6.25 3H17.75C18.05 3 18.3375 3.0625 18.6125 3.1875C18.8875 3.3125 19.1167 3.49167 19.3 3.725L20.55 5.25C20.7 5.43333 20.8125 5.63333 20.8875 5.85C20.9625 6.06667 21 6.29167 21 6.525V19C21 19.55 20.8042 20.0208 20.4125 20.4125C20.0208 20.8042 19.55 21 19 21H5ZM5.4 6H18.6L17.75 5H6.25L5.4 6Z"
|
|
2945
227
|
}, undefined, false, undefined, this)
|
|
2946
228
|
}, undefined, false, undefined, this);
|
|
2947
229
|
// __generated__/ChevronRightIcon.tsx
|
|
2948
|
-
|
|
2949
|
-
var ChevronRightIcon = (props) => /* @__PURE__ */
|
|
230
|
+
import { jsxDEV as jsxDEV20 } from "react/jsx-dev-runtime";
|
|
231
|
+
var ChevronRightIcon = (props) => /* @__PURE__ */ jsxDEV20("svg", {
|
|
2950
232
|
viewBox: "0 0 24 24",
|
|
2951
233
|
fill: props.fill || "#777E8F",
|
|
2952
234
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2953
235
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2954
236
|
...props,
|
|
2955
|
-
children: /* @__PURE__ */
|
|
237
|
+
children: /* @__PURE__ */ jsxDEV20("path", {
|
|
2956
238
|
d: "M12.6 12L8 7.4L9.4 6L15.4 12L9.4 18L8 16.6L12.6 12Z"
|
|
2957
239
|
}, undefined, false, undefined, this)
|
|
2958
240
|
}, undefined, false, undefined, this);
|
|
2959
241
|
// __generated__/MobileIcon.tsx
|
|
2960
|
-
|
|
2961
|
-
var MobileIcon = (props) => /* @__PURE__ */
|
|
242
|
+
import { jsxDEV as jsxDEV21 } from "react/jsx-dev-runtime";
|
|
243
|
+
var MobileIcon = (props) => /* @__PURE__ */ jsxDEV21("svg", {
|
|
2962
244
|
viewBox: "0 0 24 24",
|
|
2963
245
|
fill: props.fill || "#777E8F",
|
|
2964
246
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2965
247
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2966
248
|
...props,
|
|
2967
|
-
children: /* @__PURE__ */
|
|
249
|
+
children: /* @__PURE__ */ jsxDEV21("path", {
|
|
2968
250
|
d: "M7 23C6.45 23 5.97917 22.8042 5.5875 22.4125C5.19583 22.0208 5 21.55 5 21V3C5 2.45 5.19583 1.97917 5.5875 1.5875C5.97917 1.19583 6.45 1 7 1H17C17.55 1 18.0208 1.19583 18.4125 1.5875C18.8042 1.97917 19 2.45 19 3V21C19 21.55 18.8042 22.0208 18.4125 22.4125C18.0208 22.8042 17.55 23 17 23H7ZM7 18V21H17V18H7ZM12 20.5C12.2833 20.5 12.5208 20.4042 12.7125 20.2125C12.9042 20.0208 13 19.7833 13 19.5C13 19.2167 12.9042 18.9792 12.7125 18.7875C12.5208 18.5958 12.2833 18.5 12 18.5C11.7167 18.5 11.4792 18.5958 11.2875 18.7875C11.0958 18.9792 11 19.2167 11 19.5C11 19.7833 11.0958 20.0208 11.2875 20.2125C11.4792 20.4042 11.7167 20.5 12 20.5ZM7 16H17V6H7V16ZM7 4H17V3H7V4Z"
|
|
2969
251
|
}, undefined, false, undefined, this)
|
|
2970
252
|
}, undefined, false, undefined, this);
|
|
2971
253
|
// __generated__/FinancingIcon.tsx
|
|
2972
|
-
|
|
2973
|
-
var FinancingIcon = (props) => /* @__PURE__ */
|
|
254
|
+
import { jsxDEV as jsxDEV22 } from "react/jsx-dev-runtime";
|
|
255
|
+
var FinancingIcon = (props) => /* @__PURE__ */ jsxDEV22("svg", {
|
|
2974
256
|
viewBox: "0 0 24 24",
|
|
2975
257
|
fill: props.fill || "#777E8F",
|
|
2976
258
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2977
259
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2978
260
|
...props,
|
|
2979
|
-
children: /* @__PURE__ */
|
|
261
|
+
children: /* @__PURE__ */ jsxDEV22("path", {
|
|
2980
262
|
d: "M11 19H13V18H14C14.2833 18 14.5208 17.9042 14.7125 17.7125C14.9042 17.5208 15 17.2833 15 17V14C15 13.7167 14.9042 13.4792 14.7125 13.2875C14.5208 13.0958 14.2833 13 14 13H11V12H15V10H13V9H11V10H10C9.71667 10 9.47917 10.0958 9.2875 10.2875C9.09583 10.4792 9 10.7167 9 11V14C9 14.2833 9.09583 14.5208 9.2875 14.7125C9.47917 14.9042 9.71667 15 10 15H13V16H9V18H11V19ZM6 22C5.45 22 4.97917 21.8042 4.5875 21.4125C4.19583 21.0208 4 20.55 4 20V4C4 3.45 4.19583 2.97917 4.5875 2.5875C4.97917 2.19583 5.45 2 6 2H14L20 8V20C20 20.55 19.8042 21.0208 19.4125 21.4125C19.0208 21.8042 18.55 22 18 22H6ZM13 8V4H6V20H18V8H13Z"
|
|
2981
263
|
}, undefined, false, undefined, this)
|
|
2982
264
|
}, undefined, false, undefined, this);
|
|
2983
265
|
// __generated__/LockIcon.tsx
|
|
2984
|
-
|
|
2985
|
-
var LockIcon = (props) => /* @__PURE__ */
|
|
266
|
+
import { jsxDEV as jsxDEV23 } from "react/jsx-dev-runtime";
|
|
267
|
+
var LockIcon = (props) => /* @__PURE__ */ jsxDEV23("svg", {
|
|
2986
268
|
viewBox: "0 0 24 24",
|
|
2987
269
|
fill: props.fill || "#777E8F",
|
|
2988
270
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
2989
271
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
2990
272
|
...props,
|
|
2991
|
-
children: /* @__PURE__ */
|
|
273
|
+
children: /* @__PURE__ */ jsxDEV23("path", {
|
|
2992
274
|
d: "M6 22C5.45 22 4.97917 21.8042 4.5875 21.4125C4.19583 21.0208 4 20.55 4 20V10C4 9.45 4.19583 8.97917 4.5875 8.5875C4.97917 8.19583 5.45 8 6 8H7V6C7 4.61667 7.4875 3.4375 8.4625 2.4625C9.4375 1.4875 10.6167 1 12 1C13.3833 1 14.5625 1.4875 15.5375 2.4625C16.5125 3.4375 17 4.61667 17 6V8H18C18.55 8 19.0208 8.19583 19.4125 8.5875C19.8042 8.97917 20 9.45 20 10V20C20 20.55 19.8042 21.0208 19.4125 21.4125C19.0208 21.8042 18.55 22 18 22H6ZM6 20H18V10H6V20ZM12 17C12.55 17 13.0208 16.8042 13.4125 16.4125C13.8042 16.0208 14 15.55 14 15C14 14.45 13.8042 13.9792 13.4125 13.5875C13.0208 13.1958 12.55 13 12 13C11.45 13 10.9792 13.1958 10.5875 13.5875C10.1958 13.9792 10 14.45 10 15C10 15.55 10.1958 16.0208 10.5875 16.4125C10.9792 16.8042 11.45 17 12 17ZM9 8H15V6C15 5.16667 14.7083 4.45833 14.125 3.875C13.5417 3.29167 12.8333 3 12 3C11.1667 3 10.4583 3.29167 9.875 3.875C9.29167 4.45833 9 5.16667 9 6V8Z"
|
|
2993
275
|
}, undefined, false, undefined, this)
|
|
2994
276
|
}, undefined, false, undefined, this);
|
|
2995
277
|
// __generated__/DeleteIcon.tsx
|
|
2996
|
-
|
|
2997
|
-
var DeleteIcon = (props) => /* @__PURE__ */
|
|
278
|
+
import { jsxDEV as jsxDEV24 } from "react/jsx-dev-runtime";
|
|
279
|
+
var DeleteIcon = (props) => /* @__PURE__ */ jsxDEV24("svg", {
|
|
2998
280
|
viewBox: "0 0 25 24",
|
|
2999
281
|
fill: props.fill || "#777E8F",
|
|
3000
282
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3001
283
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3002
284
|
...props,
|
|
3003
|
-
children: /* @__PURE__ */
|
|
285
|
+
children: /* @__PURE__ */ jsxDEV24("path", {
|
|
3004
286
|
d: "M7 21C6.45 21 5.97917 20.8042 5.5875 20.4125C5.19583 20.0208 5 19.55 5 19V6H4V4H9V3H15V4H20V6H19V19C19 19.55 18.8042 20.0208 18.4125 20.4125C18.0208 20.8042 17.55 21 17 21H7ZM17 6H7V19H17V6ZM9 17H11V8H9V17ZM13 17H15V8H13V17Z"
|
|
3005
287
|
}, undefined, false, undefined, this)
|
|
3006
288
|
}, undefined, false, undefined, this);
|
|
3007
289
|
// __generated__/CloseIcon.tsx
|
|
3008
|
-
|
|
3009
|
-
var CloseIcon = (props) => /* @__PURE__ */
|
|
290
|
+
import { jsxDEV as jsxDEV25 } from "react/jsx-dev-runtime";
|
|
291
|
+
var CloseIcon = (props) => /* @__PURE__ */ jsxDEV25("svg", {
|
|
3010
292
|
viewBox: "0 0 24 24",
|
|
3011
293
|
fill: props.fill || "#777E8F",
|
|
3012
294
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3013
295
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3014
296
|
...props,
|
|
3015
|
-
children: /* @__PURE__ */
|
|
297
|
+
children: /* @__PURE__ */ jsxDEV25("path", {
|
|
3016
298
|
d: "M6.4 19L5 17.6L10.6 12L5 6.4L6.4 5L12 10.6L17.6 5L19 6.4L13.4 12L19 17.6L17.6 19L12 13.4L6.4 19Z"
|
|
3017
299
|
}, undefined, false, undefined, this)
|
|
3018
300
|
}, undefined, false, undefined, this);
|
|
3019
301
|
// __generated__/MailIcon.tsx
|
|
3020
|
-
|
|
3021
|
-
var MailIcon = (props) => /* @__PURE__ */
|
|
302
|
+
import { jsxDEV as jsxDEV26 } from "react/jsx-dev-runtime";
|
|
303
|
+
var MailIcon = (props) => /* @__PURE__ */ jsxDEV26("svg", {
|
|
3022
304
|
viewBox: "0 0 24 24",
|
|
3023
305
|
fill: props.fill || "#777E8F",
|
|
3024
306
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3025
307
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3026
308
|
...props,
|
|
3027
|
-
children: /* @__PURE__ */
|
|
309
|
+
children: /* @__PURE__ */ jsxDEV26("path", {
|
|
3028
310
|
d: "M4 20C3.45 20 2.97917 19.8042 2.5875 19.4125C2.19583 19.0208 2 18.55 2 18V6C2 5.45 2.19583 4.97917 2.5875 4.5875C2.97917 4.19583 3.45 4 4 4H20C20.55 4 21.0208 4.19583 21.4125 4.5875C21.8042 4.97917 22 5.45 22 6V18C22 18.55 21.8042 19.0208 21.4125 19.4125C21.0208 19.8042 20.55 20 20 20H4ZM12 13L4 8V18H20V8L12 13ZM12 11L20 6H4L12 11ZM4 8V6V18V8Z"
|
|
3029
311
|
}, undefined, false, undefined, this)
|
|
3030
312
|
}, undefined, false, undefined, this);
|
|
3031
313
|
// __generated__/MoreVerticalIcon.tsx
|
|
3032
|
-
|
|
3033
|
-
var MoreVerticalIcon = (props) => /* @__PURE__ */
|
|
314
|
+
import { jsxDEV as jsxDEV27 } from "react/jsx-dev-runtime";
|
|
315
|
+
var MoreVerticalIcon = (props) => /* @__PURE__ */ jsxDEV27("svg", {
|
|
3034
316
|
viewBox: "0 0 24 24",
|
|
3035
317
|
fill: props.fill || "#777E8F",
|
|
3036
318
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3037
319
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3038
320
|
...props,
|
|
3039
|
-
children: /* @__PURE__ */
|
|
321
|
+
children: /* @__PURE__ */ jsxDEV27("path", {
|
|
3040
322
|
d: "M12 20C11.45 20 10.9792 19.8042 10.5875 19.4125C10.1958 19.0208 10 18.55 10 18C10 17.45 10.1958 16.9792 10.5875 16.5875C10.9792 16.1958 11.45 16 12 16C12.55 16 13.0208 16.1958 13.4125 16.5875C13.8042 16.9792 14 17.45 14 18C14 18.55 13.8042 19.0208 13.4125 19.4125C13.0208 19.8042 12.55 20 12 20ZM12 14C11.45 14 10.9792 13.8042 10.5875 13.4125C10.1958 13.0208 10 12.55 10 12C10 11.45 10.1958 10.9792 10.5875 10.5875C10.9792 10.1958 11.45 10 12 10C12.55 10 13.0208 10.1958 13.4125 10.5875C13.8042 10.9792 14 11.45 14 12C14 12.55 13.8042 13.0208 13.4125 13.4125C13.0208 13.8042 12.55 14 12 14ZM12 8C11.45 8 10.9792 7.80417 10.5875 7.4125C10.1958 7.02083 10 6.55 10 6C10 5.45 10.1958 4.97917 10.5875 4.5875C10.9792 4.19583 11.45 4 12 4C12.55 4 13.0208 4.19583 13.4125 4.5875C13.8042 4.97917 14 5.45 14 6C14 6.55 13.8042 7.02083 13.4125 7.4125C13.0208 7.80417 12.55 8 12 8Z"
|
|
3041
323
|
}, undefined, false, undefined, this)
|
|
3042
324
|
}, undefined, false, undefined, this);
|
|
3043
325
|
// __generated__/ExpandCloseIcon.tsx
|
|
3044
|
-
|
|
3045
|
-
var ExpandCloseIcon = (props) => /* @__PURE__ */
|
|
326
|
+
import { jsxDEV as jsxDEV28 } from "react/jsx-dev-runtime";
|
|
327
|
+
var ExpandCloseIcon = (props) => /* @__PURE__ */ jsxDEV28("svg", {
|
|
3046
328
|
viewBox: "0 0 20 20",
|
|
3047
329
|
fill: props.fill || "#777E8F",
|
|
3048
330
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3049
331
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3050
332
|
...props,
|
|
3051
|
-
children: /* @__PURE__ */
|
|
333
|
+
children: /* @__PURE__ */ jsxDEV28("path", {
|
|
3052
334
|
d: "M16.6673 12.59L10.0007 5.83325L3.33398 12.59L4.88954 14.1666L10.0007 8.98641L15.1118 14.1666L16.6673 12.59Z"
|
|
3053
335
|
}, undefined, false, undefined, this)
|
|
3054
336
|
}, undefined, false, undefined, this);
|
|
3055
337
|
// __generated__/FormsIcon.tsx
|
|
3056
|
-
|
|
3057
|
-
var FormsIcon = (props) => /* @__PURE__ */
|
|
338
|
+
import { jsxDEV as jsxDEV29 } from "react/jsx-dev-runtime";
|
|
339
|
+
var FormsIcon = (props) => /* @__PURE__ */ jsxDEV29("svg", {
|
|
3058
340
|
viewBox: "0 0 24 24",
|
|
3059
341
|
fill: props.fill || "#777E8F",
|
|
3060
342
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3061
343
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3062
344
|
...props,
|
|
3063
|
-
children: /* @__PURE__ */
|
|
345
|
+
children: /* @__PURE__ */ jsxDEV29("path", {
|
|
3064
346
|
d: "M6 22C5.16667 22 4.45833 21.7083 3.875 21.125C3.29167 20.5417 3 19.8333 3 19V16H6V2H21V19C21 19.8333 20.7083 20.5417 20.125 21.125C19.5417 21.7083 18.8333 22 18 22H6ZM18 20C18.2833 20 18.5208 19.9042 18.7125 19.7125C18.9042 19.5208 19 19.2833 19 19V4H8V16H17V19C17 19.2833 17.0958 19.5208 17.2875 19.7125C17.4792 19.9042 17.7167 20 18 20ZM9 9V7H18V9H9ZM9 12V10H18V12H9ZM6 20H15V18H5V19C5 19.2833 5.09583 19.5208 5.2875 19.7125C5.47917 19.9042 5.71667 20 6 20ZM6 20H5H15H6Z"
|
|
3065
347
|
}, undefined, false, undefined, this)
|
|
3066
348
|
}, undefined, false, undefined, this);
|
|
3067
349
|
// __generated__/ClouduploadIcon.tsx
|
|
3068
|
-
|
|
3069
|
-
var ClouduploadIcon = (props) => /* @__PURE__ */
|
|
350
|
+
import { jsxDEV as jsxDEV30 } from "react/jsx-dev-runtime";
|
|
351
|
+
var ClouduploadIcon = (props) => /* @__PURE__ */ jsxDEV30("svg", {
|
|
3070
352
|
viewBox: "0 0 24 24",
|
|
3071
353
|
fill: props.fill || "#777E8F",
|
|
3072
354
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3073
355
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3074
356
|
...props,
|
|
3075
|
-
children: /* @__PURE__ */
|
|
357
|
+
children: /* @__PURE__ */ jsxDEV30("path", {
|
|
3076
358
|
d: "M6.5 20C4.98333 20 3.6875 19.475 2.6125 18.425C1.5375 17.375 1 16.0917 1 14.575C1 13.275 1.39167 12.1167 2.175 11.1C2.95833 10.0833 3.98333 9.43333 5.25 9.15C5.66667 7.61667 6.5 6.375 7.75 5.425C9 4.475 10.4167 4 12 4C13.95 4 15.6042 4.67917 16.9625 6.0375C18.3208 7.39583 19 9.05 19 11C20.15 11.1333 21.1042 11.6292 21.8625 12.4875C22.6208 13.3458 23 14.35 23 15.5C23 16.75 22.5625 17.8125 21.6875 18.6875C20.8125 19.5625 19.75 20 18.5 20H13C12.45 20 11.9792 19.8042 11.5875 19.4125C11.1958 19.0208 11 18.55 11 18V12.85L9.4 14.4L8 13L12 9L16 13L14.6 14.4L13 12.85V18H18.5C19.2 18 19.7917 17.7583 20.275 17.275C20.7583 16.7917 21 16.2 21 15.5C21 14.8 20.7583 14.2083 20.275 13.725C19.7917 13.2417 19.2 13 18.5 13H17V11C17 9.61667 16.5125 8.4375 15.5375 7.4625C14.5625 6.4875 13.3833 6 12 6C10.6167 6 9.4375 6.4875 8.4625 7.4625C7.4875 8.4375 7 9.61667 7 11H6.5C5.53333 11 4.70833 11.3417 4.025 12.025C3.34167 12.7083 3 13.5333 3 14.5C3 15.4667 3.34167 16.2917 4.025 16.975C4.70833 17.6583 5.53333 18 6.5 18H9V20H6.5Z"
|
|
3077
359
|
}, undefined, false, undefined, this)
|
|
3078
360
|
}, undefined, false, undefined, this);
|
|
3079
361
|
// __generated__/TreatmentPlanIcon.tsx
|
|
3080
|
-
|
|
3081
|
-
var TreatmentPlanIcon = (props) => /* @__PURE__ */
|
|
362
|
+
import { jsxDEV as jsxDEV31 } from "react/jsx-dev-runtime";
|
|
363
|
+
var TreatmentPlanIcon = (props) => /* @__PURE__ */ jsxDEV31("svg", {
|
|
3082
364
|
viewBox: "0 0 24 24",
|
|
3083
365
|
fill: props.fill || "#777E8F",
|
|
3084
366
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3085
367
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3086
368
|
...props,
|
|
3087
|
-
children: /* @__PURE__ */
|
|
369
|
+
children: /* @__PURE__ */ jsxDEV31("path", {
|
|
3088
370
|
d: "M17 2.125C18.1 2.125 19.0417 2.51667 19.825 3.3C20.6083 4.08333 21 5.025 21 6.125C21 6.30833 20.9875 6.55417 20.9625 6.8625C20.9375 7.17083 20.9 7.525 20.85 7.925L19.475 18C19.3917 18.6333 19.1042 19.15 18.6125 19.55C18.1208 19.95 17.5583 20.15 16.925 20.15C16.5417 20.15 16.1875 20.0667 15.8625 19.9C15.5375 19.7333 15.2667 19.5 15.05 19.2L12.375 15.3C12.3417 15.2333 12.2875 15.1875 12.2125 15.1625C12.1375 15.1375 12.0583 15.125 11.975 15.125C11.9083 15.125 11.775 15.2 11.575 15.35L8.975 19.125C8.74167 19.4583 8.45417 19.7125 8.1125 19.8875C7.77083 20.0625 7.40833 20.15 7.025 20.15C6.39167 20.15 5.83333 19.9458 5.35 19.5375C4.86667 19.1292 4.58333 18.6083 4.5 17.975L3.15 7.925C3.1 7.525 3.0625 7.17083 3.0375 6.8625C3.0125 6.55417 3 6.30833 3 6.125C3 5.025 3.39167 4.08333 4.175 3.3C4.95833 2.51667 5.9 2.125 7 2.125C7.6 2.125 8.07917 2.20417 8.4375 2.3625C8.79583 2.52083 9.14167 2.69167 9.475 2.875C9.80833 3.05833 10.1625 3.22917 10.5375 3.3875C10.9125 3.54583 11.4 3.625 12 3.625C12.6 3.625 13.0875 3.54583 13.4625 3.3875C13.8375 3.22917 14.1917 3.05833 14.525 2.875C14.8583 2.69167 15.2083 2.52083 15.575 2.3625C15.9417 2.20417 16.4167 2.125 17 2.125ZM17 4.125C16.6167 4.125 16.2792 4.20417 15.9875 4.3625C15.6958 4.52083 15.375 4.69167 15.025 4.875C14.675 5.05833 14.2667 5.22917 13.8 5.3875C13.3333 5.54583 12.7333 5.625 12 5.625C11.2667 5.625 10.6667 5.54583 10.2 5.3875C9.73333 5.22917 9.325 5.05833 8.975 4.875C8.625 4.69167 8.30417 4.52083 8.0125 4.3625C7.72083 4.20417 7.38333 4.125 7 4.125C6.45 4.125 5.97917 4.32083 5.5875 4.7125C5.19583 5.10417 5 5.575 5 6.125C5 6.25833 5.00833 6.45 5.025 6.7C5.04167 6.95 5.075 7.24167 5.125 7.575L6.5 17.7C6.51667 17.8333 6.575 17.9375 6.675 18.0125C6.775 18.0875 6.89167 18.125 7.025 18.125C7.10833 18.125 7.18333 18.1083 7.25 18.075C7.31667 18.0417 7.36667 17.9917 7.4 17.925L9.925 14.225C10.1583 13.8917 10.4583 13.625 10.825 13.425C11.1917 13.225 11.5833 13.125 12 13.125C12.4167 13.125 12.8083 13.225 13.175 13.425C13.5417 13.625 13.8417 13.8917 14.075 14.225L16.65 18C16.6833 18.05 16.725 18.0875 16.775 18.1125C16.825 18.1375 16.8833 18.15 16.95 18.15C17.0833 18.15 17.2042 18.1125 17.3125 18.0375C17.4208 17.9625 17.4833 17.8583 17.5 17.725L18.875 7.575C18.925 7.24167 18.9583 6.95 18.975 6.7C18.9917 6.45 19 6.25833 19 6.125C19 5.575 18.8042 5.10417 18.4125 4.7125C18.0208 4.32083 17.55 4.125 17 4.125Z"
|
|
3089
371
|
}, undefined, false, undefined, this)
|
|
3090
372
|
}, undefined, false, undefined, this);
|
|
3091
373
|
// __generated__/GlobeIcon.tsx
|
|
3092
|
-
|
|
3093
|
-
var GlobeIcon = (props) => /* @__PURE__ */
|
|
374
|
+
import { jsxDEV as jsxDEV32 } from "react/jsx-dev-runtime";
|
|
375
|
+
var GlobeIcon = (props) => /* @__PURE__ */ jsxDEV32("svg", {
|
|
3094
376
|
viewBox: "0 0 24 24",
|
|
3095
377
|
fill: props.fill || "#777E8F",
|
|
3096
378
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3097
379
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3098
380
|
...props,
|
|
3099
|
-
children: /* @__PURE__ */
|
|
381
|
+
children: /* @__PURE__ */ jsxDEV32("path", {
|
|
3100
382
|
d: "M12 22C10.6333 22 9.34167 21.7375 8.125 21.2125C6.90833 20.6875 5.84583 19.9708 4.9375 19.0625C4.02917 18.1542 3.3125 17.0917 2.7875 15.875C2.2625 14.6583 2 13.3667 2 12C2 10.6167 2.2625 9.32083 2.7875 8.1125C3.3125 6.90417 4.02917 5.84583 4.9375 4.9375C5.84583 4.02917 6.90833 3.3125 8.125 2.7875C9.34167 2.2625 10.6333 2 12 2C13.3833 2 14.6792 2.2625 15.8875 2.7875C17.0958 3.3125 18.1542 4.02917 19.0625 4.9375C19.9708 5.84583 20.6875 6.90417 21.2125 8.1125C21.7375 9.32083 22 10.6167 22 12C22 13.3667 21.7375 14.6583 21.2125 15.875C20.6875 17.0917 19.9708 18.1542 19.0625 19.0625C18.1542 19.9708 17.0958 20.6875 15.8875 21.2125C14.6792 21.7375 13.3833 22 12 22ZM12 19.95C12.4333 19.35 12.8083 18.725 13.125 18.075C13.4417 17.425 13.7 16.7333 13.9 16H10.1C10.3 16.7333 10.5583 17.425 10.875 18.075C11.1917 18.725 11.5667 19.35 12 19.95ZM9.4 19.55C9.1 19 8.8375 18.4292 8.6125 17.8375C8.3875 17.2458 8.2 16.6333 8.05 16H5.1C5.58333 16.8333 6.1875 17.5583 6.9125 18.175C7.6375 18.7917 8.46667 19.25 9.4 19.55ZM14.6 19.55C15.5333 19.25 16.3625 18.7917 17.0875 18.175C17.8125 17.5583 18.4167 16.8333 18.9 16H15.95C15.8 16.6333 15.6125 17.2458 15.3875 17.8375C15.1625 18.4292 14.9 19 14.6 19.55ZM4.25 14H7.65C7.6 13.6667 7.5625 13.3375 7.5375 13.0125C7.5125 12.6875 7.5 12.35 7.5 12C7.5 11.65 7.5125 11.3125 7.5375 10.9875C7.5625 10.6625 7.6 10.3333 7.65 10H4.25C4.16667 10.3333 4.10417 10.6625 4.0625 10.9875C4.02083 11.3125 4 11.65 4 12C4 12.35 4.02083 12.6875 4.0625 13.0125C4.10417 13.3375 4.16667 13.6667 4.25 14ZM9.65 14H14.35C14.4 13.6667 14.4375 13.3375 14.4625 13.0125C14.4875 12.6875 14.5 12.35 14.5 12C14.5 11.65 14.4875 11.3125 14.4625 10.9875C14.4375 10.6625 14.4 10.3333 14.35 10H9.65C9.6 10.3333 9.5625 10.6625 9.5375 10.9875C9.5125 11.3125 9.5 11.65 9.5 12C9.5 12.35 9.5125 12.6875 9.5375 13.0125C9.5625 13.3375 9.6 13.6667 9.65 14ZM16.35 14H19.75C19.8333 13.6667 19.8958 13.3375 19.9375 13.0125C19.9792 12.6875 20 12.35 20 12C20 11.65 19.9792 11.3125 19.9375 10.9875C19.8958 10.6625 19.8333 10.3333 19.75 10H16.35C16.4 10.3333 16.4375 10.6625 16.4625 10.9875C16.4875 11.3125 16.5 11.65 16.5 12C16.5 12.35 16.4875 12.6875 16.4625 13.0125C16.4375 13.3375 16.4 13.6667 16.35 14ZM15.95 8H18.9C18.4167 7.16667 17.8125 6.44167 17.0875 5.825C16.3625 5.20833 15.5333 4.75 14.6 4.45C14.9 5 15.1625 5.57083 15.3875 6.1625C15.6125 6.75417 15.8 7.36667 15.95 8ZM10.1 8H13.9C13.7 7.26667 13.4417 6.575 13.125 5.925C12.8083 5.275 12.4333 4.65 12 4.05C11.5667 4.65 11.1917 5.275 10.875 5.925C10.5583 6.575 10.3 7.26667 10.1 8ZM5.1 8H8.05C8.2 7.36667 8.3875 6.75417 8.6125 6.1625C8.8375 5.57083 9.1 5 9.4 4.45C8.46667 4.75 7.6375 5.20833 6.9125 5.825C6.1875 6.44167 5.58333 7.16667 5.1 8Z"
|
|
3101
383
|
}, undefined, false, undefined, this)
|
|
3102
384
|
}, undefined, false, undefined, this);
|
|
3103
385
|
// __generated__/CasePresentationIcon.tsx
|
|
3104
|
-
|
|
3105
|
-
var CasePresentationIcon = (props) => /* @__PURE__ */
|
|
386
|
+
import { jsxDEV as jsxDEV33 } from "react/jsx-dev-runtime";
|
|
387
|
+
var CasePresentationIcon = (props) => /* @__PURE__ */ jsxDEV33("svg", {
|
|
3106
388
|
viewBox: "0 0 24 24",
|
|
3107
389
|
fill: props.fill || "#777E8F",
|
|
3108
390
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3109
391
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3110
392
|
...props,
|
|
3111
|
-
children: /* @__PURE__ */
|
|
393
|
+
children: /* @__PURE__ */ jsxDEV33("path", {
|
|
3112
394
|
d: "M15.5 11C15.9167 11 16.2708 10.8542 16.5625 10.5625C16.8542 10.2708 17 9.91667 17 9.5C17 9.08333 16.8542 8.72917 16.5625 8.4375C16.2708 8.14583 15.9167 8 15.5 8C15.0833 8 14.7292 8.14583 14.4375 8.4375C14.1458 8.72917 14 9.08333 14 9.5C14 9.91667 14.1458 10.2708 14.4375 10.5625C14.7292 10.8542 15.0833 11 15.5 11ZM8.5 11C8.91667 11 9.27083 10.8542 9.5625 10.5625C9.85417 10.2708 10 9.91667 10 9.5C10 9.08333 9.85417 8.72917 9.5625 8.4375C9.27083 8.14583 8.91667 8 8.5 8C8.08333 8 7.72917 8.14583 7.4375 8.4375C7.14583 8.72917 7 9.08333 7 9.5C7 9.91667 7.14583 10.2708 7.4375 10.5625C7.72917 10.8542 8.08333 11 8.5 11ZM12 17.5C13.1333 17.5 14.1625 17.1792 15.0875 16.5375C16.0125 15.8958 16.6833 15.05 17.1 14H6.9C7.31667 15.05 7.9875 15.8958 8.9125 16.5375C9.8375 17.1792 10.8667 17.5 12 17.5ZM12 22C10.6167 22 9.31667 21.7375 8.1 21.2125C6.88333 20.6875 5.825 19.975 4.925 19.075C4.025 18.175 3.3125 17.1167 2.7875 15.9C2.2625 14.6833 2 13.3833 2 12C2 10.6167 2.2625 9.31667 2.7875 8.1C3.3125 6.88333 4.025 5.825 4.925 4.925C5.825 4.025 6.88333 3.3125 8.1 2.7875C9.31667 2.2625 10.6167 2 12 2C13.3833 2 14.6833 2.2625 15.9 2.7875C17.1167 3.3125 18.175 4.025 19.075 4.925C19.975 5.825 20.6875 6.88333 21.2125 8.1C21.7375 9.31667 22 10.6167 22 12C22 13.3833 21.7375 14.6833 21.2125 15.9C20.6875 17.1167 19.975 18.175 19.075 19.075C18.175 19.975 17.1167 20.6875 15.9 21.2125C14.6833 21.7375 13.3833 22 12 22ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z"
|
|
3113
395
|
}, undefined, false, undefined, this)
|
|
3114
396
|
}, undefined, false, undefined, this);
|
|
3115
397
|
// __generated__/PracticeIcon.tsx
|
|
3116
|
-
|
|
3117
|
-
var PracticeIcon = (props) => /* @__PURE__ */
|
|
398
|
+
import { jsxDEV as jsxDEV34 } from "react/jsx-dev-runtime";
|
|
399
|
+
var PracticeIcon = (props) => /* @__PURE__ */ jsxDEV34("svg", {
|
|
3118
400
|
viewBox: "0 0 24 24",
|
|
3119
401
|
fill: props.fill || "#777E8F",
|
|
3120
402
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3121
403
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3122
404
|
...props,
|
|
3123
405
|
children: [
|
|
3124
|
-
/* @__PURE__ */
|
|
406
|
+
/* @__PURE__ */ jsxDEV34("path", {
|
|
3125
407
|
d: "M20.0001 9.83496H12.194V21.0001H20.0001V9.83496ZM15.3714 17.7161H13.6944V16.0824H15.3714V17.7161ZM15.3714 14.4499H13.6944V12.8166H15.3714V14.4499ZM18.7247 17.7161H17.0481V16.0824H18.7247V17.7161ZM18.7247 14.4499H17.0481V12.8166H18.7247V14.4499Z"
|
|
3126
408
|
}, undefined, false, undefined, this),
|
|
3127
|
-
/* @__PURE__ */
|
|
409
|
+
/* @__PURE__ */ jsxDEV34("path", {
|
|
3128
410
|
d: "M5.31759 17.5162H9.18363V21H11.5V3H3V21H5.31962L5.31759 17.5162ZM9.76517 14.4498H8.08812V12.8165H9.76517V14.4498ZM9.76517 11.1835H8.08812V9.55025H9.76517V11.1835ZM5.62402 4.98485H6.6117V4.02096H7.8879V4.98485H8.87557V6.22776H7.8879V7.18967H6.6117V6.22578H5.62402V4.98485ZM4.73484 9.55025H6.4131V11.1835H4.73484V9.55025ZM4.73484 12.8165H6.4131V14.4498H4.73484V12.8165Z"
|
|
3129
411
|
}, undefined, false, undefined, this)
|
|
3130
412
|
]
|
|
3131
413
|
}, undefined, true, undefined, this);
|
|
3132
414
|
// __generated__/LocationIcon.tsx
|
|
3133
|
-
|
|
3134
|
-
var LocationIcon = (props) => /* @__PURE__ */
|
|
415
|
+
import { jsxDEV as jsxDEV35 } from "react/jsx-dev-runtime";
|
|
416
|
+
var LocationIcon = (props) => /* @__PURE__ */ jsxDEV35("svg", {
|
|
3135
417
|
viewBox: "0 0 24 24",
|
|
3136
418
|
fill: props.fill || "#777E8F",
|
|
3137
419
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3138
420
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3139
421
|
...props,
|
|
3140
|
-
children: /* @__PURE__ */
|
|
422
|
+
children: /* @__PURE__ */ jsxDEV35("path", {
|
|
3141
423
|
d: "M12 12C12.55 12 13.0208 11.8042 13.4125 11.4125C13.8042 11.0208 14 10.55 14 10C14 9.45 13.8042 8.97917 13.4125 8.5875C13.0208 8.19583 12.55 8 12 8C11.45 8 10.9792 8.19583 10.5875 8.5875C10.1958 8.97917 10 9.45 10 10C10 10.55 10.1958 11.0208 10.5875 11.4125C10.9792 11.8042 11.45 12 12 12ZM12 19.35C14.0333 17.4833 15.5417 15.7875 16.525 14.2625C17.5083 12.7375 18 11.3833 18 10.2C18 8.38333 17.4208 6.89583 16.2625 5.7375C15.1042 4.57917 13.6833 4 12 4C10.3167 4 8.89583 4.57917 7.7375 5.7375C6.57917 6.89583 6 8.38333 6 10.2C6 11.3833 6.49167 12.7375 7.475 14.2625C8.45833 15.7875 9.96667 17.4833 12 19.35ZM12 22C9.31667 19.7167 7.3125 17.5958 5.9875 15.6375C4.6625 13.6792 4 11.8667 4 10.2C4 7.7 4.80417 5.70833 6.4125 4.225C8.02083 2.74167 9.88333 2 12 2C14.1167 2 15.9792 2.74167 17.5875 4.225C19.1958 5.70833 20 7.7 20 10.2C20 11.8667 19.3375 13.6792 18.0125 15.6375C16.6875 17.5958 14.6833 19.7167 12 22Z"
|
|
3142
424
|
}, undefined, false, undefined, this)
|
|
3143
425
|
}, undefined, false, undefined, this);
|
|
3144
426
|
// __generated__/InsuranceIcon.tsx
|
|
3145
|
-
|
|
3146
|
-
var InsuranceIcon = (props) => /* @__PURE__ */
|
|
427
|
+
import { jsxDEV as jsxDEV36 } from "react/jsx-dev-runtime";
|
|
428
|
+
var InsuranceIcon = (props) => /* @__PURE__ */ jsxDEV36("svg", {
|
|
3147
429
|
viewBox: "0 0 24 24",
|
|
3148
430
|
fill: props.fill || "#777E8F",
|
|
3149
431
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3150
432
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3151
433
|
...props,
|
|
3152
|
-
children: /* @__PURE__ */
|
|
434
|
+
children: /* @__PURE__ */ jsxDEV36("path", {
|
|
3153
435
|
d: "M10.5 15.5H13.5V13H16V10H13.5V7.5H10.5V10H8V13H10.5V15.5ZM12 22C9.68333 21.4167 7.77083 20.0875 6.2625 18.0125C4.75417 15.9375 4 13.6333 4 11.1V5L12 2L20 5V11.1C20 13.6333 19.2458 15.9375 17.7375 18.0125C16.2292 20.0875 14.3167 21.4167 12 22ZM12 19.9C13.7333 19.35 15.1667 18.25 16.3 16.6C17.4333 14.95 18 13.1167 18 11.1V6.375L12 4.125L6 6.375V11.1C6 13.1167 6.56667 14.95 7.7 16.6C8.83333 18.25 10.2667 19.35 12 19.9Z"
|
|
3154
436
|
}, undefined, false, undefined, this)
|
|
3155
437
|
}, undefined, false, undefined, this);
|
|
3156
438
|
// __generated__/CircleXRoundedIcon.tsx
|
|
3157
|
-
|
|
3158
|
-
var CircleXRoundedIcon = (props) => /* @__PURE__ */
|
|
439
|
+
import { jsxDEV as jsxDEV37 } from "react/jsx-dev-runtime";
|
|
440
|
+
var CircleXRoundedIcon = (props) => /* @__PURE__ */ jsxDEV37("svg", {
|
|
3159
441
|
viewBox: "0 0 24 24",
|
|
3160
442
|
fill: props.fill || "#777E8F",
|
|
3161
443
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3162
444
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3163
445
|
...props,
|
|
3164
|
-
children: /* @__PURE__ */
|
|
446
|
+
children: /* @__PURE__ */ jsxDEV37("path", {
|
|
3165
447
|
d: "M12 13.0538L15.073 16.127C15.2115 16.2653 15.3856 16.3362 15.5953 16.3395C15.8048 16.3427 15.982 16.2718 16.127 16.127C16.2718 15.982 16.3443 15.8063 16.3443 15.6C16.3443 15.3937 16.2718 15.218 16.127 15.073L13.0538 12L16.127 8.927C16.2653 8.7885 16.3362 8.61442 16.3395 8.40475C16.3427 8.19525 16.2718 8.018 16.127 7.873C15.982 7.72817 15.8063 7.65575 15.6 7.65575C15.3937 7.65575 15.218 7.72817 15.073 7.873L12 10.9462L8.927 7.873C8.7885 7.73467 8.61442 7.66383 8.40475 7.6605C8.19525 7.65733 8.018 7.72817 7.873 7.873C7.72817 8.018 7.65575 8.19367 7.65575 8.4C7.65575 8.60633 7.72817 8.782 7.873 8.927L10.9463 12L7.873 15.073C7.73467 15.2115 7.66383 15.3856 7.6605 15.5953C7.65733 15.8048 7.72817 15.982 7.873 16.127C8.018 16.2718 8.19367 16.3443 8.4 16.3443C8.60633 16.3443 8.782 16.2718 8.927 16.127L12 13.0538ZM12.0018 21.5C10.6878 21.5 9.45267 21.2507 8.2965 20.752C7.14033 20.2533 6.13467 19.5766 5.2795 18.7218C4.42433 17.8669 3.74725 16.8617 3.24825 15.706C2.74942 14.5503 2.5 13.3156 2.5 12.0018C2.5 10.6878 2.74933 9.45267 3.248 8.2965C3.74667 7.14033 4.42342 6.13467 5.27825 5.2795C6.13308 4.42433 7.13833 3.74725 8.294 3.24825C9.44967 2.74942 10.6844 2.5 11.9982 2.5C13.3123 2.5 14.5473 2.74933 15.7035 3.248C16.8597 3.74667 17.8653 4.42342 18.7205 5.27825C19.5757 6.13308 20.2528 7.13833 20.7518 8.294C21.2506 9.44967 21.5 10.6844 21.5 11.9982C21.5 13.3123 21.2507 14.5473 20.752 15.7035C20.2533 16.8597 19.5766 17.8653 18.7218 18.7205C17.8669 19.5757 16.8617 20.2528 15.706 20.7518C14.5503 21.2506 13.3156 21.5 12.0018 21.5ZM12 20C14.2333 20 16.125 19.225 17.675 17.675C19.225 16.125 20 14.2333 20 12C20 9.76667 19.225 7.875 17.675 6.325C16.125 4.775 14.2333 4 12 4C9.76667 4 7.875 4.775 6.325 6.325C4.775 7.875 4 9.76667 4 12C4 14.2333 4.775 16.125 6.325 17.675C7.875 19.225 9.76667 20 12 20Z"
|
|
3166
448
|
}, undefined, false, undefined, this)
|
|
3167
449
|
}, undefined, false, undefined, this);
|
|
3168
450
|
// __generated__/EditSquareIcon.tsx
|
|
3169
|
-
|
|
3170
|
-
var EditSquareIcon = (props) => /* @__PURE__ */
|
|
451
|
+
import { jsxDEV as jsxDEV38 } from "react/jsx-dev-runtime";
|
|
452
|
+
var EditSquareIcon = (props) => /* @__PURE__ */ jsxDEV38("svg", {
|
|
3171
453
|
viewBox: "0 0 24 24",
|
|
3172
454
|
fill: props.fill || "#777E8F",
|
|
3173
455
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3174
456
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3175
457
|
...props,
|
|
3176
|
-
children: /* @__PURE__ */
|
|
458
|
+
children: /* @__PURE__ */ jsxDEV38("path", {
|
|
3177
459
|
d: "M5 21.0001C4.45 21.0001 3.97917 20.8043 3.5875 20.4126C3.19583 20.0209 3 19.5501 3 19.0001V5.0001C3 4.4501 3.19583 3.97926 3.5875 3.5876C3.97917 3.19593 4.45 3.0001 5 3.0001H13.925L11.925 5.0001H5V19.0001H19V12.0501L21 10.0501V19.0001C21 19.5501 20.8042 20.0209 20.4125 20.4126C20.0208 20.8043 19.55 21.0001 19 21.0001H5ZM9 15.0001V10.7501L18.175 1.5751C18.375 1.3751 18.6 1.2251 18.85 1.1251C19.1 1.0251 19.35 0.975098 19.6 0.975098C19.8667 0.975098 20.1208 1.0251 20.3625 1.1251C20.6042 1.2251 20.825 1.3751 21.025 1.5751L22.425 3.0001C22.6083 3.2001 22.75 3.42093 22.85 3.6626C22.95 3.90426 23 4.1501 23 4.4001C23 4.6501 22.9542 4.89593 22.8625 5.1376C22.7708 5.37926 22.625 5.6001 22.425 5.8001L13.25 15.0001H9ZM11 13.0001H12.4L18.2 7.2001L17.5 6.5001L16.775 5.8001L11 11.5751V13.0001Z"
|
|
3178
460
|
}, undefined, false, undefined, this)
|
|
3179
461
|
}, undefined, false, undefined, this);
|
|
3180
462
|
// __generated__/DeactivateIcon.tsx
|
|
3181
|
-
|
|
3182
|
-
var DeactivateIcon = (props) => /* @__PURE__ */
|
|
463
|
+
import { jsxDEV as jsxDEV39 } from "react/jsx-dev-runtime";
|
|
464
|
+
var DeactivateIcon = (props) => /* @__PURE__ */ jsxDEV39("svg", {
|
|
3183
465
|
viewBox: "0 0 24 24",
|
|
3184
466
|
fill: props.fill || "#777E8F",
|
|
3185
467
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3186
468
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3187
469
|
...props,
|
|
3188
|
-
children: /* @__PURE__ */
|
|
470
|
+
children: /* @__PURE__ */ jsxDEV39("path", {
|
|
3189
471
|
d: "M12 12C11.7167 12 11.4792 11.9042 11.2875 11.7125C11.0958 11.5208 11 11.2833 11 11V3C11 2.71667 11.0958 2.47917 11.2875 2.2875C11.4792 2.09583 11.7167 2 12 2C12.2833 2 12.5208 2.09583 12.7125 2.2875C12.9042 2.47917 13 2.71667 13 3V11C13 11.2833 12.9042 11.5208 12.7125 11.7125C12.5208 11.9042 12.2833 12 12 12ZM12 21C10.75 21 9.57917 20.7625 8.4875 20.2875C7.39583 19.8125 6.44583 19.1708 5.6375 18.3625C4.82917 17.5542 4.1875 16.6042 3.7125 15.5125C3.2375 14.4208 3 13.25 3 12C3 10.9833 3.16667 9.99583 3.5 9.0375C3.83333 8.07917 4.31667 7.2 4.95 6.4C5.13333 6.16667 5.36667 6.05417 5.65 6.0625C5.93333 6.07083 6.18333 6.18333 6.4 6.4C6.58333 6.58333 6.66667 6.80833 6.65 7.075C6.63333 7.34167 6.54167 7.59167 6.375 7.825C5.925 8.425 5.58333 9.08333 5.35 9.8C5.11667 10.5167 5 11.25 5 12C5 13.95 5.67917 15.6042 7.0375 16.9625C8.39583 18.3208 10.05 19 12 19C13.95 19 15.6042 18.3208 16.9625 16.9625C18.3208 15.6042 19 13.95 19 12C19 11.2333 18.8875 10.4875 18.6625 9.7625C18.4375 9.0375 18.0833 8.375 17.6 7.775C17.4333 7.55833 17.3417 7.32083 17.325 7.0625C17.3083 6.80417 17.3917 6.58333 17.575 6.4C17.775 6.2 18.0167 6.09583 18.3 6.0875C18.5833 6.07917 18.8167 6.18333 19 6.4C19.65 7.2 20.1458 8.075 20.4875 9.025C20.8292 9.975 21 10.9667 21 12C21 13.25 20.7625 14.4208 20.2875 15.5125C19.8125 16.6042 19.1708 17.5542 18.3625 18.3625C17.5542 19.1708 16.6042 19.8125 15.5125 20.2875C14.4208 20.7625 13.25 21 12 21Z"
|
|
3190
472
|
}, undefined, false, undefined, this)
|
|
3191
473
|
}, undefined, false, undefined, this);
|
|
3192
474
|
// __generated__/ChevronLeftRoundedIcon.tsx
|
|
3193
|
-
|
|
3194
|
-
var ChevronLeftRoundedIcon = (props) => /* @__PURE__ */
|
|
475
|
+
import { jsxDEV as jsxDEV40 } from "react/jsx-dev-runtime";
|
|
476
|
+
var ChevronLeftRoundedIcon = (props) => /* @__PURE__ */ jsxDEV40("svg", {
|
|
3195
477
|
viewBox: "0 0 24 24",
|
|
3196
478
|
fill: props.fill || "#777E8F",
|
|
3197
479
|
stroke: props.stroke || props.fill || "#777E8F",
|
|
3198
480
|
strokeWidth: props.strokeWidth ?? (props.weight === 300 ? 1 : props.weight === 400 ? 1.5 : props.weight === 500 ? 2 : props.weight === 600 ? 2.5 : 0),
|
|
3199
481
|
...props,
|
|
3200
|
-
children: /* @__PURE__ */
|
|
482
|
+
children: /* @__PURE__ */ jsxDEV40("path", {
|
|
3201
483
|
d: "M10.4534 11.9998L14.5267 16.0728C14.665 16.2113 14.7358 16.3853 14.7392 16.595C14.7423 16.8045 14.6715 16.9818 14.5267 17.1268C14.3817 17.2716 14.206 17.344 13.9997 17.344C13.7933 17.344 13.6177 17.2716 13.4727 17.1268L8.97841 12.6325C8.88491 12.5388 8.81891 12.4401 8.78041 12.3363C8.74191 12.2324 8.72266 12.1203 8.72266 11.9998C8.72266 11.8793 8.74191 11.7671 8.78041 11.6633C8.81891 11.5594 8.88491 11.4607 8.97841 11.367L13.4727 6.87276C13.6112 6.73442 13.7852 6.66359 13.9949 6.66026C14.2044 6.65709 14.3817 6.72792 14.5267 6.87276C14.6715 7.01776 14.7439 7.19343 14.7439 7.39976C14.7439 7.60609 14.6715 7.78176 14.5267 7.92676L10.4534 11.9998Z"
|
|
3202
484
|
}, undefined, false, undefined, this)
|
|
3203
485
|
}, undefined, false, undefined, this);
|
|
@@ -3244,5 +526,5 @@ export {
|
|
|
3244
526
|
AccountCircleIcon
|
|
3245
527
|
};
|
|
3246
528
|
|
|
3247
|
-
//# debugId=
|
|
529
|
+
//# debugId=7C0C6DF81C32303764756E2164756E21
|
|
3248
530
|
//# sourceMappingURL=index.js.map
|