@process.co/ui 0.0.21 → 0.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.
@@ -2,12 +2,967 @@ import * as React3 from 'react';
2
2
  import React3__default from 'react';
3
3
  import { jsx, jsxs } from 'react/jsx-runtime';
4
4
  import 'react-dom';
5
- import PropTypes from 'prop-types';
6
5
 
6
+ var __create = Object.create;
7
+ var __defProp = Object.defineProperty;
8
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
7
9
  var __getOwnPropNames = Object.getOwnPropertyNames;
10
+ var __getProtoOf = Object.getPrototypeOf;
11
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
12
  var __commonJS = (cb, mod) => function __require() {
9
13
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
10
14
  };
15
+ var __copyProps = (to, from, except, desc) => {
16
+ if (from && typeof from === "object" || typeof from === "function") {
17
+ for (let key of __getOwnPropNames(from))
18
+ if (!__hasOwnProp.call(to, key) && key !== except)
19
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
20
+ }
21
+ return to;
22
+ };
23
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
24
+ // If the importer is in node compatibility mode or this is not an ESM
25
+ // file that has been converted to a CommonJS file using a Babel-
26
+ // compatible transform (i.e. "__esModule" has not been set), then set
27
+ // "default" to the CommonJS "module.exports" for node compatibility.
28
+ !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
29
+ mod
30
+ ));
31
+
32
+ // ../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js
33
+ var require_react_is_production_min = __commonJS({
34
+ "../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js"(exports$1) {
35
+ var b = "function" === typeof Symbol && Symbol.for;
36
+ var c = b ? Symbol.for("react.element") : 60103;
37
+ var d = b ? Symbol.for("react.portal") : 60106;
38
+ var e = b ? Symbol.for("react.fragment") : 60107;
39
+ var f = b ? Symbol.for("react.strict_mode") : 60108;
40
+ var g2 = b ? Symbol.for("react.profiler") : 60114;
41
+ var h = b ? Symbol.for("react.provider") : 60109;
42
+ var k = b ? Symbol.for("react.context") : 60110;
43
+ var l = b ? Symbol.for("react.async_mode") : 60111;
44
+ var m = b ? Symbol.for("react.concurrent_mode") : 60111;
45
+ var n = b ? Symbol.for("react.forward_ref") : 60112;
46
+ var p2 = b ? Symbol.for("react.suspense") : 60113;
47
+ var q = b ? Symbol.for("react.suspense_list") : 60120;
48
+ var r3 = b ? Symbol.for("react.memo") : 60115;
49
+ var t2 = b ? Symbol.for("react.lazy") : 60116;
50
+ var v = b ? Symbol.for("react.block") : 60121;
51
+ var w2 = b ? Symbol.for("react.fundamental") : 60117;
52
+ var x2 = b ? Symbol.for("react.responder") : 60118;
53
+ var y = b ? Symbol.for("react.scope") : 60119;
54
+ function z(a) {
55
+ if ("object" === typeof a && null !== a) {
56
+ var u = a.$$typeof;
57
+ switch (u) {
58
+ case c:
59
+ switch (a = a.type, a) {
60
+ case l:
61
+ case m:
62
+ case e:
63
+ case g2:
64
+ case f:
65
+ case p2:
66
+ return a;
67
+ default:
68
+ switch (a = a && a.$$typeof, a) {
69
+ case k:
70
+ case n:
71
+ case t2:
72
+ case r3:
73
+ case h:
74
+ return a;
75
+ default:
76
+ return u;
77
+ }
78
+ }
79
+ case d:
80
+ return u;
81
+ }
82
+ }
83
+ }
84
+ function A2(a) {
85
+ return z(a) === m;
86
+ }
87
+ exports$1.AsyncMode = l;
88
+ exports$1.ConcurrentMode = m;
89
+ exports$1.ContextConsumer = k;
90
+ exports$1.ContextProvider = h;
91
+ exports$1.Element = c;
92
+ exports$1.ForwardRef = n;
93
+ exports$1.Fragment = e;
94
+ exports$1.Lazy = t2;
95
+ exports$1.Memo = r3;
96
+ exports$1.Portal = d;
97
+ exports$1.Profiler = g2;
98
+ exports$1.StrictMode = f;
99
+ exports$1.Suspense = p2;
100
+ exports$1.isAsyncMode = function(a) {
101
+ return A2(a) || z(a) === l;
102
+ };
103
+ exports$1.isConcurrentMode = A2;
104
+ exports$1.isContextConsumer = function(a) {
105
+ return z(a) === k;
106
+ };
107
+ exports$1.isContextProvider = function(a) {
108
+ return z(a) === h;
109
+ };
110
+ exports$1.isElement = function(a) {
111
+ return "object" === typeof a && null !== a && a.$$typeof === c;
112
+ };
113
+ exports$1.isForwardRef = function(a) {
114
+ return z(a) === n;
115
+ };
116
+ exports$1.isFragment = function(a) {
117
+ return z(a) === e;
118
+ };
119
+ exports$1.isLazy = function(a) {
120
+ return z(a) === t2;
121
+ };
122
+ exports$1.isMemo = function(a) {
123
+ return z(a) === r3;
124
+ };
125
+ exports$1.isPortal = function(a) {
126
+ return z(a) === d;
127
+ };
128
+ exports$1.isProfiler = function(a) {
129
+ return z(a) === g2;
130
+ };
131
+ exports$1.isStrictMode = function(a) {
132
+ return z(a) === f;
133
+ };
134
+ exports$1.isSuspense = function(a) {
135
+ return z(a) === p2;
136
+ };
137
+ exports$1.isValidElementType = function(a) {
138
+ return "string" === typeof a || "function" === typeof a || a === e || a === m || a === g2 || a === f || a === p2 || a === q || "object" === typeof a && null !== a && (a.$$typeof === t2 || a.$$typeof === r3 || a.$$typeof === h || a.$$typeof === k || a.$$typeof === n || a.$$typeof === w2 || a.$$typeof === x2 || a.$$typeof === y || a.$$typeof === v);
139
+ };
140
+ exports$1.typeOf = z;
141
+ }
142
+ });
143
+
144
+ // ../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js
145
+ var require_react_is_development = __commonJS({
146
+ "../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js"(exports$1) {
147
+ if (process.env.NODE_ENV !== "production") {
148
+ (function() {
149
+ var hasSymbol = typeof Symbol === "function" && Symbol.for;
150
+ var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for("react.element") : 60103;
151
+ var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for("react.portal") : 60106;
152
+ var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for("react.fragment") : 60107;
153
+ var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for("react.strict_mode") : 60108;
154
+ var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for("react.profiler") : 60114;
155
+ var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for("react.provider") : 60109;
156
+ var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for("react.context") : 60110;
157
+ var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for("react.async_mode") : 60111;
158
+ var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for("react.concurrent_mode") : 60111;
159
+ var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for("react.forward_ref") : 60112;
160
+ var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for("react.suspense") : 60113;
161
+ var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for("react.suspense_list") : 60120;
162
+ var REACT_MEMO_TYPE = hasSymbol ? Symbol.for("react.memo") : 60115;
163
+ var REACT_LAZY_TYPE2 = hasSymbol ? Symbol.for("react.lazy") : 60116;
164
+ var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for("react.block") : 60121;
165
+ var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for("react.fundamental") : 60117;
166
+ var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for("react.responder") : 60118;
167
+ var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for("react.scope") : 60119;
168
+ function isValidElementType(type) {
169
+ return typeof type === "string" || typeof type === "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
170
+ type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === "object" && type !== null && (type.$$typeof === REACT_LAZY_TYPE2 || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
171
+ }
172
+ function typeOf(object) {
173
+ if (typeof object === "object" && object !== null) {
174
+ var $$typeof = object.$$typeof;
175
+ switch ($$typeof) {
176
+ case REACT_ELEMENT_TYPE:
177
+ var type = object.type;
178
+ switch (type) {
179
+ case REACT_ASYNC_MODE_TYPE:
180
+ case REACT_CONCURRENT_MODE_TYPE:
181
+ case REACT_FRAGMENT_TYPE:
182
+ case REACT_PROFILER_TYPE:
183
+ case REACT_STRICT_MODE_TYPE:
184
+ case REACT_SUSPENSE_TYPE:
185
+ return type;
186
+ default:
187
+ var $$typeofType = type && type.$$typeof;
188
+ switch ($$typeofType) {
189
+ case REACT_CONTEXT_TYPE:
190
+ case REACT_FORWARD_REF_TYPE:
191
+ case REACT_LAZY_TYPE2:
192
+ case REACT_MEMO_TYPE:
193
+ case REACT_PROVIDER_TYPE:
194
+ return $$typeofType;
195
+ default:
196
+ return $$typeof;
197
+ }
198
+ }
199
+ case REACT_PORTAL_TYPE:
200
+ return $$typeof;
201
+ }
202
+ }
203
+ return void 0;
204
+ }
205
+ var AsyncMode = REACT_ASYNC_MODE_TYPE;
206
+ var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
207
+ var ContextConsumer = REACT_CONTEXT_TYPE;
208
+ var ContextProvider = REACT_PROVIDER_TYPE;
209
+ var Element = REACT_ELEMENT_TYPE;
210
+ var ForwardRef = REACT_FORWARD_REF_TYPE;
211
+ var Fragment4 = REACT_FRAGMENT_TYPE;
212
+ var Lazy = REACT_LAZY_TYPE2;
213
+ var Memo = REACT_MEMO_TYPE;
214
+ var Portal = REACT_PORTAL_TYPE;
215
+ var Profiler = REACT_PROFILER_TYPE;
216
+ var StrictMode = REACT_STRICT_MODE_TYPE;
217
+ var Suspense = REACT_SUSPENSE_TYPE;
218
+ var hasWarnedAboutDeprecatedIsAsyncMode = false;
219
+ function isAsyncMode(object) {
220
+ {
221
+ if (!hasWarnedAboutDeprecatedIsAsyncMode) {
222
+ hasWarnedAboutDeprecatedIsAsyncMode = true;
223
+ console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.");
224
+ }
225
+ }
226
+ return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
227
+ }
228
+ function isConcurrentMode(object) {
229
+ return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
230
+ }
231
+ function isContextConsumer(object) {
232
+ return typeOf(object) === REACT_CONTEXT_TYPE;
233
+ }
234
+ function isContextProvider(object) {
235
+ return typeOf(object) === REACT_PROVIDER_TYPE;
236
+ }
237
+ function isElement(object) {
238
+ return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
239
+ }
240
+ function isForwardRef(object) {
241
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
242
+ }
243
+ function isFragment(object) {
244
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
245
+ }
246
+ function isLazy(object) {
247
+ return typeOf(object) === REACT_LAZY_TYPE2;
248
+ }
249
+ function isMemo(object) {
250
+ return typeOf(object) === REACT_MEMO_TYPE;
251
+ }
252
+ function isPortal(object) {
253
+ return typeOf(object) === REACT_PORTAL_TYPE;
254
+ }
255
+ function isProfiler(object) {
256
+ return typeOf(object) === REACT_PROFILER_TYPE;
257
+ }
258
+ function isStrictMode(object) {
259
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
260
+ }
261
+ function isSuspense(object) {
262
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
263
+ }
264
+ exports$1.AsyncMode = AsyncMode;
265
+ exports$1.ConcurrentMode = ConcurrentMode;
266
+ exports$1.ContextConsumer = ContextConsumer;
267
+ exports$1.ContextProvider = ContextProvider;
268
+ exports$1.Element = Element;
269
+ exports$1.ForwardRef = ForwardRef;
270
+ exports$1.Fragment = Fragment4;
271
+ exports$1.Lazy = Lazy;
272
+ exports$1.Memo = Memo;
273
+ exports$1.Portal = Portal;
274
+ exports$1.Profiler = Profiler;
275
+ exports$1.StrictMode = StrictMode;
276
+ exports$1.Suspense = Suspense;
277
+ exports$1.isAsyncMode = isAsyncMode;
278
+ exports$1.isConcurrentMode = isConcurrentMode;
279
+ exports$1.isContextConsumer = isContextConsumer;
280
+ exports$1.isContextProvider = isContextProvider;
281
+ exports$1.isElement = isElement;
282
+ exports$1.isForwardRef = isForwardRef;
283
+ exports$1.isFragment = isFragment;
284
+ exports$1.isLazy = isLazy;
285
+ exports$1.isMemo = isMemo;
286
+ exports$1.isPortal = isPortal;
287
+ exports$1.isProfiler = isProfiler;
288
+ exports$1.isStrictMode = isStrictMode;
289
+ exports$1.isSuspense = isSuspense;
290
+ exports$1.isValidElementType = isValidElementType;
291
+ exports$1.typeOf = typeOf;
292
+ })();
293
+ }
294
+ }
295
+ });
296
+
297
+ // ../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js
298
+ var require_react_is = __commonJS({
299
+ "../../node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js"(exports$1, module) {
300
+ if (process.env.NODE_ENV === "production") {
301
+ module.exports = require_react_is_production_min();
302
+ } else {
303
+ module.exports = require_react_is_development();
304
+ }
305
+ }
306
+ });
307
+
308
+ // ../../node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/index.js
309
+ var require_object_assign = __commonJS({
310
+ "../../node_modules/.pnpm/object-assign@4.1.1/node_modules/object-assign/index.js"(exports$1, module) {
311
+ var getOwnPropertySymbols = Object.getOwnPropertySymbols;
312
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
313
+ var propIsEnumerable = Object.prototype.propertyIsEnumerable;
314
+ function toObject(val) {
315
+ if (val === null || val === void 0) {
316
+ throw new TypeError("Object.assign cannot be called with null or undefined");
317
+ }
318
+ return Object(val);
319
+ }
320
+ function shouldUseNative() {
321
+ try {
322
+ if (!Object.assign) {
323
+ return false;
324
+ }
325
+ var test1 = new String("abc");
326
+ test1[5] = "de";
327
+ if (Object.getOwnPropertyNames(test1)[0] === "5") {
328
+ return false;
329
+ }
330
+ var test2 = {};
331
+ for (var i = 0; i < 10; i++) {
332
+ test2["_" + String.fromCharCode(i)] = i;
333
+ }
334
+ var order2 = Object.getOwnPropertyNames(test2).map(function(n) {
335
+ return test2[n];
336
+ });
337
+ if (order2.join("") !== "0123456789") {
338
+ return false;
339
+ }
340
+ var test3 = {};
341
+ "abcdefghijklmnopqrst".split("").forEach(function(letter) {
342
+ test3[letter] = letter;
343
+ });
344
+ if (Object.keys(Object.assign({}, test3)).join("") !== "abcdefghijklmnopqrst") {
345
+ return false;
346
+ }
347
+ return true;
348
+ } catch (err) {
349
+ return false;
350
+ }
351
+ }
352
+ module.exports = shouldUseNative() ? Object.assign : function(target, source) {
353
+ var from;
354
+ var to = toObject(target);
355
+ var symbols;
356
+ for (var s2 = 1; s2 < arguments.length; s2++) {
357
+ from = Object(arguments[s2]);
358
+ for (var key in from) {
359
+ if (hasOwnProperty.call(from, key)) {
360
+ to[key] = from[key];
361
+ }
362
+ }
363
+ if (getOwnPropertySymbols) {
364
+ symbols = getOwnPropertySymbols(from);
365
+ for (var i = 0; i < symbols.length; i++) {
366
+ if (propIsEnumerable.call(from, symbols[i])) {
367
+ to[symbols[i]] = from[symbols[i]];
368
+ }
369
+ }
370
+ }
371
+ }
372
+ return to;
373
+ };
374
+ }
375
+ });
376
+
377
+ // ../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/ReactPropTypesSecret.js
378
+ var require_ReactPropTypesSecret = __commonJS({
379
+ "../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/ReactPropTypesSecret.js"(exports$1, module) {
380
+ var ReactPropTypesSecret = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
381
+ module.exports = ReactPropTypesSecret;
382
+ }
383
+ });
384
+
385
+ // ../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/has.js
386
+ var require_has = __commonJS({
387
+ "../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/lib/has.js"(exports$1, module) {
388
+ module.exports = Function.call.bind(Object.prototype.hasOwnProperty);
389
+ }
390
+ });
391
+
392
+ // ../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/checkPropTypes.js
393
+ var require_checkPropTypes = __commonJS({
394
+ "../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/checkPropTypes.js"(exports$1, module) {
395
+ var printWarning = function() {
396
+ };
397
+ if (process.env.NODE_ENV !== "production") {
398
+ ReactPropTypesSecret = require_ReactPropTypesSecret();
399
+ loggedTypeFailures = {};
400
+ has = require_has();
401
+ printWarning = function(text2) {
402
+ var message = "Warning: " + text2;
403
+ if (typeof console !== "undefined") {
404
+ console.error(message);
405
+ }
406
+ try {
407
+ throw new Error(message);
408
+ } catch (x2) {
409
+ }
410
+ };
411
+ }
412
+ var ReactPropTypesSecret;
413
+ var loggedTypeFailures;
414
+ var has;
415
+ function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
416
+ if (process.env.NODE_ENV !== "production") {
417
+ for (var typeSpecName in typeSpecs) {
418
+ if (has(typeSpecs, typeSpecName)) {
419
+ var error;
420
+ try {
421
+ if (typeof typeSpecs[typeSpecName] !== "function") {
422
+ var err = Error(
423
+ (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`."
424
+ );
425
+ err.name = "Invariant Violation";
426
+ throw err;
427
+ }
428
+ error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);
429
+ } catch (ex) {
430
+ error = ex;
431
+ }
432
+ if (error && !(error instanceof Error)) {
433
+ printWarning(
434
+ (componentName || "React class") + ": type specification of " + location + " `" + typeSpecName + "` is invalid; the type checker function must return `null` or an `Error` but returned a " + typeof error + ". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."
435
+ );
436
+ }
437
+ if (error instanceof Error && !(error.message in loggedTypeFailures)) {
438
+ loggedTypeFailures[error.message] = true;
439
+ var stack = getStack ? getStack() : "";
440
+ printWarning(
441
+ "Failed " + location + " type: " + error.message + (stack != null ? stack : "")
442
+ );
443
+ }
444
+ }
445
+ }
446
+ }
447
+ }
448
+ checkPropTypes.resetWarningCache = function() {
449
+ if (process.env.NODE_ENV !== "production") {
450
+ loggedTypeFailures = {};
451
+ }
452
+ };
453
+ module.exports = checkPropTypes;
454
+ }
455
+ });
456
+
457
+ // ../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithTypeCheckers.js
458
+ var require_factoryWithTypeCheckers = __commonJS({
459
+ "../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithTypeCheckers.js"(exports$1, module) {
460
+ var ReactIs = require_react_is();
461
+ var assign = require_object_assign();
462
+ var ReactPropTypesSecret = require_ReactPropTypesSecret();
463
+ var has = require_has();
464
+ var checkPropTypes = require_checkPropTypes();
465
+ var printWarning = function() {
466
+ };
467
+ if (process.env.NODE_ENV !== "production") {
468
+ printWarning = function(text2) {
469
+ var message = "Warning: " + text2;
470
+ if (typeof console !== "undefined") {
471
+ console.error(message);
472
+ }
473
+ try {
474
+ throw new Error(message);
475
+ } catch (x2) {
476
+ }
477
+ };
478
+ }
479
+ function emptyFunctionThatReturnsNull() {
480
+ return null;
481
+ }
482
+ module.exports = function(isValidElement3, throwOnDirectAccess) {
483
+ var ITERATOR_SYMBOL = typeof Symbol === "function" && Symbol.iterator;
484
+ var FAUX_ITERATOR_SYMBOL = "@@iterator";
485
+ function getIteratorFn(maybeIterable) {
486
+ var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
487
+ if (typeof iteratorFn === "function") {
488
+ return iteratorFn;
489
+ }
490
+ }
491
+ var ANONYMOUS = "<<anonymous>>";
492
+ var ReactPropTypes = {
493
+ array: createPrimitiveTypeChecker("array"),
494
+ bigint: createPrimitiveTypeChecker("bigint"),
495
+ bool: createPrimitiveTypeChecker("boolean"),
496
+ func: createPrimitiveTypeChecker("function"),
497
+ number: createPrimitiveTypeChecker("number"),
498
+ object: createPrimitiveTypeChecker("object"),
499
+ string: createPrimitiveTypeChecker("string"),
500
+ symbol: createPrimitiveTypeChecker("symbol"),
501
+ any: createAnyTypeChecker(),
502
+ arrayOf: createArrayOfTypeChecker,
503
+ element: createElementTypeChecker(),
504
+ elementType: createElementTypeTypeChecker(),
505
+ instanceOf: createInstanceTypeChecker,
506
+ node: createNodeChecker(),
507
+ objectOf: createObjectOfTypeChecker,
508
+ oneOf: createEnumTypeChecker,
509
+ oneOfType: createUnionTypeChecker,
510
+ shape: createShapeTypeChecker,
511
+ exact: createStrictShapeTypeChecker
512
+ };
513
+ function is(x2, y) {
514
+ if (x2 === y) {
515
+ return x2 !== 0 || 1 / x2 === 1 / y;
516
+ } else {
517
+ return x2 !== x2 && y !== y;
518
+ }
519
+ }
520
+ function PropTypeError(message, data) {
521
+ this.message = message;
522
+ this.data = data && typeof data === "object" ? data : {};
523
+ this.stack = "";
524
+ }
525
+ PropTypeError.prototype = Error.prototype;
526
+ function createChainableTypeChecker(validate) {
527
+ if (process.env.NODE_ENV !== "production") {
528
+ var manualPropTypeCallCache = {};
529
+ var manualPropTypeWarningCount = 0;
530
+ }
531
+ function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
532
+ componentName = componentName || ANONYMOUS;
533
+ propFullName = propFullName || propName;
534
+ if (secret !== ReactPropTypesSecret) {
535
+ if (throwOnDirectAccess) {
536
+ var err = new Error(
537
+ "Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"
538
+ );
539
+ err.name = "Invariant Violation";
540
+ throw err;
541
+ } else if (process.env.NODE_ENV !== "production" && typeof console !== "undefined") {
542
+ var cacheKey = componentName + ":" + propName;
543
+ if (!manualPropTypeCallCache[cacheKey] && // Avoid spamming the console because they are often not actionable except for lib authors
544
+ manualPropTypeWarningCount < 3) {
545
+ printWarning(
546
+ "You are manually calling a React.PropTypes validation function for the `" + propFullName + "` prop on `" + componentName + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."
547
+ );
548
+ manualPropTypeCallCache[cacheKey] = true;
549
+ manualPropTypeWarningCount++;
550
+ }
551
+ }
552
+ }
553
+ if (props[propName] == null) {
554
+ if (isRequired) {
555
+ if (props[propName] === null) {
556
+ return new PropTypeError("The " + location + " `" + propFullName + "` is marked as required " + ("in `" + componentName + "`, but its value is `null`."));
557
+ }
558
+ return new PropTypeError("The " + location + " `" + propFullName + "` is marked as required in " + ("`" + componentName + "`, but its value is `undefined`."));
559
+ }
560
+ return null;
561
+ } else {
562
+ return validate(props, propName, componentName, location, propFullName);
563
+ }
564
+ }
565
+ var chainedCheckType = checkType.bind(null, false);
566
+ chainedCheckType.isRequired = checkType.bind(null, true);
567
+ return chainedCheckType;
568
+ }
569
+ function createPrimitiveTypeChecker(expectedType) {
570
+ function validate(props, propName, componentName, location, propFullName, secret) {
571
+ var propValue = props[propName];
572
+ var propType = getPropType(propValue);
573
+ if (propType !== expectedType) {
574
+ var preciseType = getPreciseType(propValue);
575
+ return new PropTypeError(
576
+ "Invalid " + location + " `" + propFullName + "` of type " + ("`" + preciseType + "` supplied to `" + componentName + "`, expected ") + ("`" + expectedType + "`."),
577
+ { expectedType }
578
+ );
579
+ }
580
+ return null;
581
+ }
582
+ return createChainableTypeChecker(validate);
583
+ }
584
+ function createAnyTypeChecker() {
585
+ return createChainableTypeChecker(emptyFunctionThatReturnsNull);
586
+ }
587
+ function createArrayOfTypeChecker(typeChecker) {
588
+ function validate(props, propName, componentName, location, propFullName) {
589
+ if (typeof typeChecker !== "function") {
590
+ return new PropTypeError("Property `" + propFullName + "` of component `" + componentName + "` has invalid PropType notation inside arrayOf.");
591
+ }
592
+ var propValue = props[propName];
593
+ if (!Array.isArray(propValue)) {
594
+ var propType = getPropType(propValue);
595
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected an array."));
596
+ }
597
+ for (var i = 0; i < propValue.length; i++) {
598
+ var error = typeChecker(propValue, i, componentName, location, propFullName + "[" + i + "]", ReactPropTypesSecret);
599
+ if (error instanceof Error) {
600
+ return error;
601
+ }
602
+ }
603
+ return null;
604
+ }
605
+ return createChainableTypeChecker(validate);
606
+ }
607
+ function createElementTypeChecker() {
608
+ function validate(props, propName, componentName, location, propFullName) {
609
+ var propValue = props[propName];
610
+ if (!isValidElement3(propValue)) {
611
+ var propType = getPropType(propValue);
612
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected a single ReactElement."));
613
+ }
614
+ return null;
615
+ }
616
+ return createChainableTypeChecker(validate);
617
+ }
618
+ function createElementTypeTypeChecker() {
619
+ function validate(props, propName, componentName, location, propFullName) {
620
+ var propValue = props[propName];
621
+ if (!ReactIs.isValidElementType(propValue)) {
622
+ var propType = getPropType(propValue);
623
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected a single ReactElement type."));
624
+ }
625
+ return null;
626
+ }
627
+ return createChainableTypeChecker(validate);
628
+ }
629
+ function createInstanceTypeChecker(expectedClass) {
630
+ function validate(props, propName, componentName, location, propFullName) {
631
+ if (!(props[propName] instanceof expectedClass)) {
632
+ var expectedClassName = expectedClass.name || ANONYMOUS;
633
+ var actualClassName = getClassName(props[propName]);
634
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + actualClassName + "` supplied to `" + componentName + "`, expected ") + ("instance of `" + expectedClassName + "`."));
635
+ }
636
+ return null;
637
+ }
638
+ return createChainableTypeChecker(validate);
639
+ }
640
+ function createEnumTypeChecker(expectedValues) {
641
+ if (!Array.isArray(expectedValues)) {
642
+ if (process.env.NODE_ENV !== "production") {
643
+ if (arguments.length > 1) {
644
+ printWarning(
645
+ "Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."
646
+ );
647
+ } else {
648
+ printWarning("Invalid argument supplied to oneOf, expected an array.");
649
+ }
650
+ }
651
+ return emptyFunctionThatReturnsNull;
652
+ }
653
+ function validate(props, propName, componentName, location, propFullName) {
654
+ var propValue = props[propName];
655
+ for (var i = 0; i < expectedValues.length; i++) {
656
+ if (is(propValue, expectedValues[i])) {
657
+ return null;
658
+ }
659
+ }
660
+ var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {
661
+ var type = getPreciseType(value);
662
+ if (type === "symbol") {
663
+ return String(value);
664
+ }
665
+ return value;
666
+ });
667
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of value `" + String(propValue) + "` " + ("supplied to `" + componentName + "`, expected one of " + valuesString + "."));
668
+ }
669
+ return createChainableTypeChecker(validate);
670
+ }
671
+ function createObjectOfTypeChecker(typeChecker) {
672
+ function validate(props, propName, componentName, location, propFullName) {
673
+ if (typeof typeChecker !== "function") {
674
+ return new PropTypeError("Property `" + propFullName + "` of component `" + componentName + "` has invalid PropType notation inside objectOf.");
675
+ }
676
+ var propValue = props[propName];
677
+ var propType = getPropType(propValue);
678
+ if (propType !== "object") {
679
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type " + ("`" + propType + "` supplied to `" + componentName + "`, expected an object."));
680
+ }
681
+ for (var key in propValue) {
682
+ if (has(propValue, key)) {
683
+ var error = typeChecker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
684
+ if (error instanceof Error) {
685
+ return error;
686
+ }
687
+ }
688
+ }
689
+ return null;
690
+ }
691
+ return createChainableTypeChecker(validate);
692
+ }
693
+ function createUnionTypeChecker(arrayOfTypeCheckers) {
694
+ if (!Array.isArray(arrayOfTypeCheckers)) {
695
+ process.env.NODE_ENV !== "production" ? printWarning("Invalid argument supplied to oneOfType, expected an instance of array.") : void 0;
696
+ return emptyFunctionThatReturnsNull;
697
+ }
698
+ for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
699
+ var checker = arrayOfTypeCheckers[i];
700
+ if (typeof checker !== "function") {
701
+ printWarning(
702
+ "Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + getPostfixForTypeWarning(checker) + " at index " + i + "."
703
+ );
704
+ return emptyFunctionThatReturnsNull;
705
+ }
706
+ }
707
+ function validate(props, propName, componentName, location, propFullName) {
708
+ var expectedTypes = [];
709
+ for (var i2 = 0; i2 < arrayOfTypeCheckers.length; i2++) {
710
+ var checker2 = arrayOfTypeCheckers[i2];
711
+ var checkerResult = checker2(props, propName, componentName, location, propFullName, ReactPropTypesSecret);
712
+ if (checkerResult == null) {
713
+ return null;
714
+ }
715
+ if (checkerResult.data && has(checkerResult.data, "expectedType")) {
716
+ expectedTypes.push(checkerResult.data.expectedType);
717
+ }
718
+ }
719
+ var expectedTypesMessage = expectedTypes.length > 0 ? ", expected one of type [" + expectedTypes.join(", ") + "]" : "";
720
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` supplied to " + ("`" + componentName + "`" + expectedTypesMessage + "."));
721
+ }
722
+ return createChainableTypeChecker(validate);
723
+ }
724
+ function createNodeChecker() {
725
+ function validate(props, propName, componentName, location, propFullName) {
726
+ if (!isNode(props[propName])) {
727
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` supplied to " + ("`" + componentName + "`, expected a ReactNode."));
728
+ }
729
+ return null;
730
+ }
731
+ return createChainableTypeChecker(validate);
732
+ }
733
+ function invalidValidatorError(componentName, location, propFullName, key, type) {
734
+ return new PropTypeError(
735
+ (componentName || "React class") + ": " + location + " type `" + propFullName + "." + key + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + type + "`."
736
+ );
737
+ }
738
+ function createShapeTypeChecker(shapeTypes) {
739
+ function validate(props, propName, componentName, location, propFullName) {
740
+ var propValue = props[propName];
741
+ var propType = getPropType(propValue);
742
+ if (propType !== "object") {
743
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
744
+ }
745
+ for (var key in shapeTypes) {
746
+ var checker = shapeTypes[key];
747
+ if (typeof checker !== "function") {
748
+ return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
749
+ }
750
+ var error = checker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
751
+ if (error) {
752
+ return error;
753
+ }
754
+ }
755
+ return null;
756
+ }
757
+ return createChainableTypeChecker(validate);
758
+ }
759
+ function createStrictShapeTypeChecker(shapeTypes) {
760
+ function validate(props, propName, componentName, location, propFullName) {
761
+ var propValue = props[propName];
762
+ var propType = getPropType(propValue);
763
+ if (propType !== "object") {
764
+ return new PropTypeError("Invalid " + location + " `" + propFullName + "` of type `" + propType + "` " + ("supplied to `" + componentName + "`, expected `object`."));
765
+ }
766
+ var allKeys = assign({}, props[propName], shapeTypes);
767
+ for (var key in allKeys) {
768
+ var checker = shapeTypes[key];
769
+ if (has(shapeTypes, key) && typeof checker !== "function") {
770
+ return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker));
771
+ }
772
+ if (!checker) {
773
+ return new PropTypeError(
774
+ "Invalid " + location + " `" + propFullName + "` key `" + key + "` supplied to `" + componentName + "`.\nBad object: " + JSON.stringify(props[propName], null, " ") + "\nValid keys: " + JSON.stringify(Object.keys(shapeTypes), null, " ")
775
+ );
776
+ }
777
+ var error = checker(propValue, key, componentName, location, propFullName + "." + key, ReactPropTypesSecret);
778
+ if (error) {
779
+ return error;
780
+ }
781
+ }
782
+ return null;
783
+ }
784
+ return createChainableTypeChecker(validate);
785
+ }
786
+ function isNode(propValue) {
787
+ switch (typeof propValue) {
788
+ case "number":
789
+ case "string":
790
+ case "undefined":
791
+ return true;
792
+ case "boolean":
793
+ return !propValue;
794
+ case "object":
795
+ if (Array.isArray(propValue)) {
796
+ return propValue.every(isNode);
797
+ }
798
+ if (propValue === null || isValidElement3(propValue)) {
799
+ return true;
800
+ }
801
+ var iteratorFn = getIteratorFn(propValue);
802
+ if (iteratorFn) {
803
+ var iterator = iteratorFn.call(propValue);
804
+ var step;
805
+ if (iteratorFn !== propValue.entries) {
806
+ while (!(step = iterator.next()).done) {
807
+ if (!isNode(step.value)) {
808
+ return false;
809
+ }
810
+ }
811
+ } else {
812
+ while (!(step = iterator.next()).done) {
813
+ var entry = step.value;
814
+ if (entry) {
815
+ if (!isNode(entry[1])) {
816
+ return false;
817
+ }
818
+ }
819
+ }
820
+ }
821
+ } else {
822
+ return false;
823
+ }
824
+ return true;
825
+ default:
826
+ return false;
827
+ }
828
+ }
829
+ function isSymbol(propType, propValue) {
830
+ if (propType === "symbol") {
831
+ return true;
832
+ }
833
+ if (!propValue) {
834
+ return false;
835
+ }
836
+ if (propValue["@@toStringTag"] === "Symbol") {
837
+ return true;
838
+ }
839
+ if (typeof Symbol === "function" && propValue instanceof Symbol) {
840
+ return true;
841
+ }
842
+ return false;
843
+ }
844
+ function getPropType(propValue) {
845
+ var propType = typeof propValue;
846
+ if (Array.isArray(propValue)) {
847
+ return "array";
848
+ }
849
+ if (propValue instanceof RegExp) {
850
+ return "object";
851
+ }
852
+ if (isSymbol(propType, propValue)) {
853
+ return "symbol";
854
+ }
855
+ return propType;
856
+ }
857
+ function getPreciseType(propValue) {
858
+ if (typeof propValue === "undefined" || propValue === null) {
859
+ return "" + propValue;
860
+ }
861
+ var propType = getPropType(propValue);
862
+ if (propType === "object") {
863
+ if (propValue instanceof Date) {
864
+ return "date";
865
+ } else if (propValue instanceof RegExp) {
866
+ return "regexp";
867
+ }
868
+ }
869
+ return propType;
870
+ }
871
+ function getPostfixForTypeWarning(value) {
872
+ var type = getPreciseType(value);
873
+ switch (type) {
874
+ case "array":
875
+ case "object":
876
+ return "an " + type;
877
+ case "boolean":
878
+ case "date":
879
+ case "regexp":
880
+ return "a " + type;
881
+ default:
882
+ return type;
883
+ }
884
+ }
885
+ function getClassName(propValue) {
886
+ if (!propValue.constructor || !propValue.constructor.name) {
887
+ return ANONYMOUS;
888
+ }
889
+ return propValue.constructor.name;
890
+ }
891
+ ReactPropTypes.checkPropTypes = checkPropTypes;
892
+ ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache;
893
+ ReactPropTypes.PropTypes = ReactPropTypes;
894
+ return ReactPropTypes;
895
+ };
896
+ }
897
+ });
898
+
899
+ // ../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithThrowingShims.js
900
+ var require_factoryWithThrowingShims = __commonJS({
901
+ "../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/factoryWithThrowingShims.js"(exports$1, module) {
902
+ var ReactPropTypesSecret = require_ReactPropTypesSecret();
903
+ function emptyFunction() {
904
+ }
905
+ function emptyFunctionWithReset() {
906
+ }
907
+ emptyFunctionWithReset.resetWarningCache = emptyFunction;
908
+ module.exports = function() {
909
+ function shim(props, propName, componentName, location, propFullName, secret) {
910
+ if (secret === ReactPropTypesSecret) {
911
+ return;
912
+ }
913
+ var err = new Error(
914
+ "Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types"
915
+ );
916
+ err.name = "Invariant Violation";
917
+ throw err;
918
+ }
919
+ shim.isRequired = shim;
920
+ function getShim() {
921
+ return shim;
922
+ }
923
+ var ReactPropTypes = {
924
+ array: shim,
925
+ bigint: shim,
926
+ bool: shim,
927
+ func: shim,
928
+ number: shim,
929
+ object: shim,
930
+ string: shim,
931
+ symbol: shim,
932
+ any: shim,
933
+ arrayOf: getShim,
934
+ element: shim,
935
+ elementType: shim,
936
+ instanceOf: getShim,
937
+ node: shim,
938
+ objectOf: getShim,
939
+ oneOf: getShim,
940
+ oneOfType: getShim,
941
+ shape: getShim,
942
+ exact: getShim,
943
+ checkPropTypes: emptyFunctionWithReset,
944
+ resetWarningCache: emptyFunction
945
+ };
946
+ ReactPropTypes.PropTypes = ReactPropTypes;
947
+ return ReactPropTypes;
948
+ };
949
+ }
950
+ });
951
+
952
+ // ../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/index.js
953
+ var require_prop_types = __commonJS({
954
+ "../../node_modules/.pnpm/prop-types@15.8.1/node_modules/prop-types/index.js"(exports$1, module) {
955
+ if (process.env.NODE_ENV !== "production") {
956
+ ReactIs = require_react_is();
957
+ throwOnDirectAccess = true;
958
+ module.exports = require_factoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
959
+ } else {
960
+ module.exports = require_factoryWithThrowingShims()();
961
+ }
962
+ var ReactIs;
963
+ var throwOnDirectAccess;
964
+ }
965
+ });
11
966
 
12
967
  // ../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.7.2/node_modules/@fortawesome/fontawesome-svg-core/package.json
13
968
  var require_package = __commonJS({
@@ -6627,6 +7582,9 @@ var icon = api.icon;
6627
7582
  api.layer;
6628
7583
  api.text;
6629
7584
  api.counter;
7585
+
7586
+ // ../../node_modules/.pnpm/@fortawesome+react-fontawesome@0.2.6_@fortawesome+fontawesome-svg-core@6.7.2_react@19.2.2/node_modules/@fortawesome/react-fontawesome/index.es.js
7587
+ var import_prop_types = __toESM(require_prop_types());
6630
7588
  function _arrayLikeToArray(r3, a) {
6631
7589
  (null == a || a > r3.length) && (a = r3.length);
6632
7590
  for (var e = 0, n = Array(a); e < a; e++) n[e] = r3[e];
@@ -6975,36 +7933,36 @@ var FontAwesomeIcon = /* @__PURE__ */ React3__default.forwardRef(function(props,
6975
7933
  });
6976
7934
  FontAwesomeIcon.displayName = "FontAwesomeIcon";
6977
7935
  FontAwesomeIcon.propTypes = {
6978
- beat: PropTypes.bool,
6979
- border: PropTypes.bool,
6980
- beatFade: PropTypes.bool,
6981
- bounce: PropTypes.bool,
6982
- className: PropTypes.string,
6983
- fade: PropTypes.bool,
6984
- flash: PropTypes.bool,
6985
- mask: PropTypes.oneOfType([PropTypes.object, PropTypes.array, PropTypes.string]),
6986
- maskId: PropTypes.string,
7936
+ beat: import_prop_types.default.bool,
7937
+ border: import_prop_types.default.bool,
7938
+ beatFade: import_prop_types.default.bool,
7939
+ bounce: import_prop_types.default.bool,
7940
+ className: import_prop_types.default.string,
7941
+ fade: import_prop_types.default.bool,
7942
+ flash: import_prop_types.default.bool,
7943
+ mask: import_prop_types.default.oneOfType([import_prop_types.default.object, import_prop_types.default.array, import_prop_types.default.string]),
7944
+ maskId: import_prop_types.default.string,
6987
7945
  // the fixedWidth property has been deprecated as of version 7
6988
- fixedWidth: PropTypes.bool,
6989
- inverse: PropTypes.bool,
6990
- flip: PropTypes.oneOf([true, false, "horizontal", "vertical", "both"]),
6991
- icon: PropTypes.oneOfType([PropTypes.object, PropTypes.array, PropTypes.string]),
6992
- listItem: PropTypes.bool,
6993
- pull: PropTypes.oneOf(["right", "left"]),
6994
- pulse: PropTypes.bool,
6995
- rotation: PropTypes.oneOf([0, 90, 180, 270]),
6996
- rotateBy: PropTypes.bool,
6997
- shake: PropTypes.bool,
6998
- size: PropTypes.oneOf(["2xs", "xs", "sm", "lg", "xl", "2xl", "1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x", "10x"]),
6999
- spin: PropTypes.bool,
7000
- spinPulse: PropTypes.bool,
7001
- spinReverse: PropTypes.bool,
7002
- symbol: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
7003
- title: PropTypes.string,
7004
- titleId: PropTypes.string,
7005
- transform: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
7006
- swapOpacity: PropTypes.bool,
7007
- widthAuto: PropTypes.bool
7946
+ fixedWidth: import_prop_types.default.bool,
7947
+ inverse: import_prop_types.default.bool,
7948
+ flip: import_prop_types.default.oneOf([true, false, "horizontal", "vertical", "both"]),
7949
+ icon: import_prop_types.default.oneOfType([import_prop_types.default.object, import_prop_types.default.array, import_prop_types.default.string]),
7950
+ listItem: import_prop_types.default.bool,
7951
+ pull: import_prop_types.default.oneOf(["right", "left"]),
7952
+ pulse: import_prop_types.default.bool,
7953
+ rotation: import_prop_types.default.oneOf([0, 90, 180, 270]),
7954
+ rotateBy: import_prop_types.default.bool,
7955
+ shake: import_prop_types.default.bool,
7956
+ size: import_prop_types.default.oneOf(["2xs", "xs", "sm", "lg", "xl", "2xl", "1x", "2x", "3x", "4x", "5x", "6x", "7x", "8x", "9x", "10x"]),
7957
+ spin: import_prop_types.default.bool,
7958
+ spinPulse: import_prop_types.default.bool,
7959
+ spinReverse: import_prop_types.default.bool,
7960
+ symbol: import_prop_types.default.oneOfType([import_prop_types.default.bool, import_prop_types.default.string]),
7961
+ title: import_prop_types.default.string,
7962
+ titleId: import_prop_types.default.string,
7963
+ transform: import_prop_types.default.oneOfType([import_prop_types.default.string, import_prop_types.default.object]),
7964
+ swapOpacity: import_prop_types.default.bool,
7965
+ widthAuto: import_prop_types.default.bool
7008
7966
  };
7009
7967
  var convertCurry = convert.bind(null, React3__default.createElement);
7010
7968
 
@@ -7033,6 +7991,33 @@ var SlotDragHandle = (props) => {
7033
7991
  };
7034
7992
  /*! Bundled license information:
7035
7993
 
7994
+ react-is/cjs/react-is.production.min.js:
7995
+ (** @license React v16.13.1
7996
+ * react-is.production.min.js
7997
+ *
7998
+ * Copyright (c) Facebook, Inc. and its affiliates.
7999
+ *
8000
+ * This source code is licensed under the MIT license found in the
8001
+ * LICENSE file in the root directory of this source tree.
8002
+ *)
8003
+
8004
+ react-is/cjs/react-is.development.js:
8005
+ (** @license React v16.13.1
8006
+ * react-is.development.js
8007
+ *
8008
+ * Copyright (c) Facebook, Inc. and its affiliates.
8009
+ *
8010
+ * This source code is licensed under the MIT license found in the
8011
+ * LICENSE file in the root directory of this source tree.
8012
+ *)
8013
+
8014
+ object-assign/index.js:
8015
+ (*
8016
+ object-assign
8017
+ (c) Sindre Sorhus
8018
+ @license MIT
8019
+ *)
8020
+
7036
8021
  @fortawesome/fontawesome-svg-core/index.mjs:
7037
8022
  (*!
7038
8023
  * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com