sample-piral 0.15.13-beta.5591 → 1.0.0-beta.5628

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.
@@ -6346,13 +6346,13 @@ function installPiralDebug(options) {
6346
6346
  debug: debugApiVersion,
6347
6347
  instance: {
6348
6348
  name: "sample-piral",
6349
- version: "0.15.13-beta.5591",
6349
+ version: "1.0.0-beta.5628",
6350
6350
  dependencies: "reactstrap,tslib,react,react-dom,react-router,react-router-dom"
6351
6351
  },
6352
6352
  build: {
6353
- date: "2023-05-31T09:44:34.949Z",
6354
- cli: "0.15.13-beta.5591",
6355
- compat: "0.15"
6353
+ date: "2023-06-11T00:09:45.094Z",
6354
+ cli: "1.0.0-beta.5628",
6355
+ compat: "1"
6356
6356
  }
6357
6357
  };
6358
6358
  var details = {
@@ -15015,7 +15015,7 @@ if (
15015
15015
  __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
15016
15016
  }
15017
15017
  var React = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
15018
- var Scheduler = __webpack_require__(/*! scheduler */ "../../../node_modules/react-dom/node_modules/scheduler/index.js");
15018
+ var Scheduler = __webpack_require__(/*! scheduler */ "../../../node_modules/scheduler/index.js");
15019
15019
 
15020
15020
  var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
15021
15021
 
@@ -44931,667 +44931,6 @@ if (false) {} else {
44931
44931
  }
44932
44932
 
44933
44933
 
44934
- /***/ }),
44935
-
44936
- /***/ "../../../node_modules/react-dom/node_modules/scheduler/cjs/scheduler.development.js":
44937
- /*!*******************************************************************************************!*\
44938
- !*** ../../../node_modules/react-dom/node_modules/scheduler/cjs/scheduler.development.js ***!
44939
- \*******************************************************************************************/
44940
- /***/ ((__unused_webpack_module, exports) => {
44941
-
44942
- "use strict";
44943
- /**
44944
- * @license React
44945
- * scheduler.development.js
44946
- *
44947
- * Copyright (c) Facebook, Inc. and its affiliates.
44948
- *
44949
- * This source code is licensed under the MIT license found in the
44950
- * LICENSE file in the root directory of this source tree.
44951
- */
44952
-
44953
-
44954
-
44955
- if (true) {
44956
- (function() {
44957
-
44958
- 'use strict';
44959
-
44960
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
44961
- if (
44962
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&
44963
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart ===
44964
- 'function'
44965
- ) {
44966
- __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
44967
- }
44968
- var enableSchedulerDebugging = false;
44969
- var enableProfiling = false;
44970
- var frameYieldMs = 5;
44971
-
44972
- function push(heap, node) {
44973
- var index = heap.length;
44974
- heap.push(node);
44975
- siftUp(heap, node, index);
44976
- }
44977
- function peek(heap) {
44978
- return heap.length === 0 ? null : heap[0];
44979
- }
44980
- function pop(heap) {
44981
- if (heap.length === 0) {
44982
- return null;
44983
- }
44984
-
44985
- var first = heap[0];
44986
- var last = heap.pop();
44987
-
44988
- if (last !== first) {
44989
- heap[0] = last;
44990
- siftDown(heap, last, 0);
44991
- }
44992
-
44993
- return first;
44994
- }
44995
-
44996
- function siftUp(heap, node, i) {
44997
- var index = i;
44998
-
44999
- while (index > 0) {
45000
- var parentIndex = index - 1 >>> 1;
45001
- var parent = heap[parentIndex];
45002
-
45003
- if (compare(parent, node) > 0) {
45004
- // The parent is larger. Swap positions.
45005
- heap[parentIndex] = node;
45006
- heap[index] = parent;
45007
- index = parentIndex;
45008
- } else {
45009
- // The parent is smaller. Exit.
45010
- return;
45011
- }
45012
- }
45013
- }
45014
-
45015
- function siftDown(heap, node, i) {
45016
- var index = i;
45017
- var length = heap.length;
45018
- var halfLength = length >>> 1;
45019
-
45020
- while (index < halfLength) {
45021
- var leftIndex = (index + 1) * 2 - 1;
45022
- var left = heap[leftIndex];
45023
- var rightIndex = leftIndex + 1;
45024
- var right = heap[rightIndex]; // If the left or right node is smaller, swap with the smaller of those.
45025
-
45026
- if (compare(left, node) < 0) {
45027
- if (rightIndex < length && compare(right, left) < 0) {
45028
- heap[index] = right;
45029
- heap[rightIndex] = node;
45030
- index = rightIndex;
45031
- } else {
45032
- heap[index] = left;
45033
- heap[leftIndex] = node;
45034
- index = leftIndex;
45035
- }
45036
- } else if (rightIndex < length && compare(right, node) < 0) {
45037
- heap[index] = right;
45038
- heap[rightIndex] = node;
45039
- index = rightIndex;
45040
- } else {
45041
- // Neither child is smaller. Exit.
45042
- return;
45043
- }
45044
- }
45045
- }
45046
-
45047
- function compare(a, b) {
45048
- // Compare sort index first, then task id.
45049
- var diff = a.sortIndex - b.sortIndex;
45050
- return diff !== 0 ? diff : a.id - b.id;
45051
- }
45052
-
45053
- // TODO: Use symbols?
45054
- var ImmediatePriority = 1;
45055
- var UserBlockingPriority = 2;
45056
- var NormalPriority = 3;
45057
- var LowPriority = 4;
45058
- var IdlePriority = 5;
45059
-
45060
- function markTaskErrored(task, ms) {
45061
- }
45062
-
45063
- /* eslint-disable no-var */
45064
-
45065
- var hasPerformanceNow = typeof performance === 'object' && typeof performance.now === 'function';
45066
-
45067
- if (hasPerformanceNow) {
45068
- var localPerformance = performance;
45069
-
45070
- exports.unstable_now = function () {
45071
- return localPerformance.now();
45072
- };
45073
- } else {
45074
- var localDate = Date;
45075
- var initialTime = localDate.now();
45076
-
45077
- exports.unstable_now = function () {
45078
- return localDate.now() - initialTime;
45079
- };
45080
- } // Max 31 bit integer. The max integer size in V8 for 32-bit systems.
45081
- // Math.pow(2, 30) - 1
45082
- // 0b111111111111111111111111111111
45083
-
45084
-
45085
- var maxSigned31BitInt = 1073741823; // Times out immediately
45086
-
45087
- var IMMEDIATE_PRIORITY_TIMEOUT = -1; // Eventually times out
45088
-
45089
- var USER_BLOCKING_PRIORITY_TIMEOUT = 250;
45090
- var NORMAL_PRIORITY_TIMEOUT = 5000;
45091
- var LOW_PRIORITY_TIMEOUT = 10000; // Never times out
45092
-
45093
- var IDLE_PRIORITY_TIMEOUT = maxSigned31BitInt; // Tasks are stored on a min heap
45094
-
45095
- var taskQueue = [];
45096
- var timerQueue = []; // Incrementing id counter. Used to maintain insertion order.
45097
-
45098
- var taskIdCounter = 1; // Pausing the scheduler is useful for debugging.
45099
- var currentTask = null;
45100
- var currentPriorityLevel = NormalPriority; // This is set while performing work, to prevent re-entrance.
45101
-
45102
- var isPerformingWork = false;
45103
- var isHostCallbackScheduled = false;
45104
- var isHostTimeoutScheduled = false; // Capture local references to native APIs, in case a polyfill overrides them.
45105
-
45106
- var localSetTimeout = typeof setTimeout === 'function' ? setTimeout : null;
45107
- var localClearTimeout = typeof clearTimeout === 'function' ? clearTimeout : null;
45108
- var localSetImmediate = typeof setImmediate !== 'undefined' ? setImmediate : null; // IE and Node.js + jsdom
45109
-
45110
- var isInputPending = typeof navigator !== 'undefined' && navigator.scheduling !== undefined && navigator.scheduling.isInputPending !== undefined ? navigator.scheduling.isInputPending.bind(navigator.scheduling) : null;
45111
-
45112
- function advanceTimers(currentTime) {
45113
- // Check for tasks that are no longer delayed and add them to the queue.
45114
- var timer = peek(timerQueue);
45115
-
45116
- while (timer !== null) {
45117
- if (timer.callback === null) {
45118
- // Timer was cancelled.
45119
- pop(timerQueue);
45120
- } else if (timer.startTime <= currentTime) {
45121
- // Timer fired. Transfer to the task queue.
45122
- pop(timerQueue);
45123
- timer.sortIndex = timer.expirationTime;
45124
- push(taskQueue, timer);
45125
- } else {
45126
- // Remaining timers are pending.
45127
- return;
45128
- }
45129
-
45130
- timer = peek(timerQueue);
45131
- }
45132
- }
45133
-
45134
- function handleTimeout(currentTime) {
45135
- isHostTimeoutScheduled = false;
45136
- advanceTimers(currentTime);
45137
-
45138
- if (!isHostCallbackScheduled) {
45139
- if (peek(taskQueue) !== null) {
45140
- isHostCallbackScheduled = true;
45141
- requestHostCallback(flushWork);
45142
- } else {
45143
- var firstTimer = peek(timerQueue);
45144
-
45145
- if (firstTimer !== null) {
45146
- requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
45147
- }
45148
- }
45149
- }
45150
- }
45151
-
45152
- function flushWork(hasTimeRemaining, initialTime) {
45153
-
45154
-
45155
- isHostCallbackScheduled = false;
45156
-
45157
- if (isHostTimeoutScheduled) {
45158
- // We scheduled a timeout but it's no longer needed. Cancel it.
45159
- isHostTimeoutScheduled = false;
45160
- cancelHostTimeout();
45161
- }
45162
-
45163
- isPerformingWork = true;
45164
- var previousPriorityLevel = currentPriorityLevel;
45165
-
45166
- try {
45167
- if (enableProfiling) {
45168
- try {
45169
- return workLoop(hasTimeRemaining, initialTime);
45170
- } catch (error) {
45171
- if (currentTask !== null) {
45172
- var currentTime = exports.unstable_now();
45173
- markTaskErrored(currentTask, currentTime);
45174
- currentTask.isQueued = false;
45175
- }
45176
-
45177
- throw error;
45178
- }
45179
- } else {
45180
- // No catch in prod code path.
45181
- return workLoop(hasTimeRemaining, initialTime);
45182
- }
45183
- } finally {
45184
- currentTask = null;
45185
- currentPriorityLevel = previousPriorityLevel;
45186
- isPerformingWork = false;
45187
- }
45188
- }
45189
-
45190
- function workLoop(hasTimeRemaining, initialTime) {
45191
- var currentTime = initialTime;
45192
- advanceTimers(currentTime);
45193
- currentTask = peek(taskQueue);
45194
-
45195
- while (currentTask !== null && !(enableSchedulerDebugging )) {
45196
- if (currentTask.expirationTime > currentTime && (!hasTimeRemaining || shouldYieldToHost())) {
45197
- // This currentTask hasn't expired, and we've reached the deadline.
45198
- break;
45199
- }
45200
-
45201
- var callback = currentTask.callback;
45202
-
45203
- if (typeof callback === 'function') {
45204
- currentTask.callback = null;
45205
- currentPriorityLevel = currentTask.priorityLevel;
45206
- var didUserCallbackTimeout = currentTask.expirationTime <= currentTime;
45207
-
45208
- var continuationCallback = callback(didUserCallbackTimeout);
45209
- currentTime = exports.unstable_now();
45210
-
45211
- if (typeof continuationCallback === 'function') {
45212
- currentTask.callback = continuationCallback;
45213
- } else {
45214
-
45215
- if (currentTask === peek(taskQueue)) {
45216
- pop(taskQueue);
45217
- }
45218
- }
45219
-
45220
- advanceTimers(currentTime);
45221
- } else {
45222
- pop(taskQueue);
45223
- }
45224
-
45225
- currentTask = peek(taskQueue);
45226
- } // Return whether there's additional work
45227
-
45228
-
45229
- if (currentTask !== null) {
45230
- return true;
45231
- } else {
45232
- var firstTimer = peek(timerQueue);
45233
-
45234
- if (firstTimer !== null) {
45235
- requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
45236
- }
45237
-
45238
- return false;
45239
- }
45240
- }
45241
-
45242
- function unstable_runWithPriority(priorityLevel, eventHandler) {
45243
- switch (priorityLevel) {
45244
- case ImmediatePriority:
45245
- case UserBlockingPriority:
45246
- case NormalPriority:
45247
- case LowPriority:
45248
- case IdlePriority:
45249
- break;
45250
-
45251
- default:
45252
- priorityLevel = NormalPriority;
45253
- }
45254
-
45255
- var previousPriorityLevel = currentPriorityLevel;
45256
- currentPriorityLevel = priorityLevel;
45257
-
45258
- try {
45259
- return eventHandler();
45260
- } finally {
45261
- currentPriorityLevel = previousPriorityLevel;
45262
- }
45263
- }
45264
-
45265
- function unstable_next(eventHandler) {
45266
- var priorityLevel;
45267
-
45268
- switch (currentPriorityLevel) {
45269
- case ImmediatePriority:
45270
- case UserBlockingPriority:
45271
- case NormalPriority:
45272
- // Shift down to normal priority
45273
- priorityLevel = NormalPriority;
45274
- break;
45275
-
45276
- default:
45277
- // Anything lower than normal priority should remain at the current level.
45278
- priorityLevel = currentPriorityLevel;
45279
- break;
45280
- }
45281
-
45282
- var previousPriorityLevel = currentPriorityLevel;
45283
- currentPriorityLevel = priorityLevel;
45284
-
45285
- try {
45286
- return eventHandler();
45287
- } finally {
45288
- currentPriorityLevel = previousPriorityLevel;
45289
- }
45290
- }
45291
-
45292
- function unstable_wrapCallback(callback) {
45293
- var parentPriorityLevel = currentPriorityLevel;
45294
- return function () {
45295
- // This is a fork of runWithPriority, inlined for performance.
45296
- var previousPriorityLevel = currentPriorityLevel;
45297
- currentPriorityLevel = parentPriorityLevel;
45298
-
45299
- try {
45300
- return callback.apply(this, arguments);
45301
- } finally {
45302
- currentPriorityLevel = previousPriorityLevel;
45303
- }
45304
- };
45305
- }
45306
-
45307
- function unstable_scheduleCallback(priorityLevel, callback, options) {
45308
- var currentTime = exports.unstable_now();
45309
- var startTime;
45310
-
45311
- if (typeof options === 'object' && options !== null) {
45312
- var delay = options.delay;
45313
-
45314
- if (typeof delay === 'number' && delay > 0) {
45315
- startTime = currentTime + delay;
45316
- } else {
45317
- startTime = currentTime;
45318
- }
45319
- } else {
45320
- startTime = currentTime;
45321
- }
45322
-
45323
- var timeout;
45324
-
45325
- switch (priorityLevel) {
45326
- case ImmediatePriority:
45327
- timeout = IMMEDIATE_PRIORITY_TIMEOUT;
45328
- break;
45329
-
45330
- case UserBlockingPriority:
45331
- timeout = USER_BLOCKING_PRIORITY_TIMEOUT;
45332
- break;
45333
-
45334
- case IdlePriority:
45335
- timeout = IDLE_PRIORITY_TIMEOUT;
45336
- break;
45337
-
45338
- case LowPriority:
45339
- timeout = LOW_PRIORITY_TIMEOUT;
45340
- break;
45341
-
45342
- case NormalPriority:
45343
- default:
45344
- timeout = NORMAL_PRIORITY_TIMEOUT;
45345
- break;
45346
- }
45347
-
45348
- var expirationTime = startTime + timeout;
45349
- var newTask = {
45350
- id: taskIdCounter++,
45351
- callback: callback,
45352
- priorityLevel: priorityLevel,
45353
- startTime: startTime,
45354
- expirationTime: expirationTime,
45355
- sortIndex: -1
45356
- };
45357
-
45358
- if (startTime > currentTime) {
45359
- // This is a delayed task.
45360
- newTask.sortIndex = startTime;
45361
- push(timerQueue, newTask);
45362
-
45363
- if (peek(taskQueue) === null && newTask === peek(timerQueue)) {
45364
- // All tasks are delayed, and this is the task with the earliest delay.
45365
- if (isHostTimeoutScheduled) {
45366
- // Cancel an existing timeout.
45367
- cancelHostTimeout();
45368
- } else {
45369
- isHostTimeoutScheduled = true;
45370
- } // Schedule a timeout.
45371
-
45372
-
45373
- requestHostTimeout(handleTimeout, startTime - currentTime);
45374
- }
45375
- } else {
45376
- newTask.sortIndex = expirationTime;
45377
- push(taskQueue, newTask);
45378
- // wait until the next time we yield.
45379
-
45380
-
45381
- if (!isHostCallbackScheduled && !isPerformingWork) {
45382
- isHostCallbackScheduled = true;
45383
- requestHostCallback(flushWork);
45384
- }
45385
- }
45386
-
45387
- return newTask;
45388
- }
45389
-
45390
- function unstable_pauseExecution() {
45391
- }
45392
-
45393
- function unstable_continueExecution() {
45394
-
45395
- if (!isHostCallbackScheduled && !isPerformingWork) {
45396
- isHostCallbackScheduled = true;
45397
- requestHostCallback(flushWork);
45398
- }
45399
- }
45400
-
45401
- function unstable_getFirstCallbackNode() {
45402
- return peek(taskQueue);
45403
- }
45404
-
45405
- function unstable_cancelCallback(task) {
45406
- // remove from the queue because you can't remove arbitrary nodes from an
45407
- // array based heap, only the first one.)
45408
-
45409
-
45410
- task.callback = null;
45411
- }
45412
-
45413
- function unstable_getCurrentPriorityLevel() {
45414
- return currentPriorityLevel;
45415
- }
45416
-
45417
- var isMessageLoopRunning = false;
45418
- var scheduledHostCallback = null;
45419
- var taskTimeoutID = -1; // Scheduler periodically yields in case there is other work on the main
45420
- // thread, like user events. By default, it yields multiple times per frame.
45421
- // It does not attempt to align with frame boundaries, since most tasks don't
45422
- // need to be frame aligned; for those that do, use requestAnimationFrame.
45423
-
45424
- var frameInterval = frameYieldMs;
45425
- var startTime = -1;
45426
-
45427
- function shouldYieldToHost() {
45428
- var timeElapsed = exports.unstable_now() - startTime;
45429
-
45430
- if (timeElapsed < frameInterval) {
45431
- // The main thread has only been blocked for a really short amount of time;
45432
- // smaller than a single frame. Don't yield yet.
45433
- return false;
45434
- } // The main thread has been blocked for a non-negligible amount of time. We
45435
-
45436
-
45437
- return true;
45438
- }
45439
-
45440
- function requestPaint() {
45441
-
45442
- }
45443
-
45444
- function forceFrameRate(fps) {
45445
- if (fps < 0 || fps > 125) {
45446
- // Using console['error'] to evade Babel and ESLint
45447
- console['error']('forceFrameRate takes a positive int between 0 and 125, ' + 'forcing frame rates higher than 125 fps is not supported');
45448
- return;
45449
- }
45450
-
45451
- if (fps > 0) {
45452
- frameInterval = Math.floor(1000 / fps);
45453
- } else {
45454
- // reset the framerate
45455
- frameInterval = frameYieldMs;
45456
- }
45457
- }
45458
-
45459
- var performWorkUntilDeadline = function () {
45460
- if (scheduledHostCallback !== null) {
45461
- var currentTime = exports.unstable_now(); // Keep track of the start time so we can measure how long the main thread
45462
- // has been blocked.
45463
-
45464
- startTime = currentTime;
45465
- var hasTimeRemaining = true; // If a scheduler task throws, exit the current browser task so the
45466
- // error can be observed.
45467
- //
45468
- // Intentionally not using a try-catch, since that makes some debugging
45469
- // techniques harder. Instead, if `scheduledHostCallback` errors, then
45470
- // `hasMoreWork` will remain true, and we'll continue the work loop.
45471
-
45472
- var hasMoreWork = true;
45473
-
45474
- try {
45475
- hasMoreWork = scheduledHostCallback(hasTimeRemaining, currentTime);
45476
- } finally {
45477
- if (hasMoreWork) {
45478
- // If there's more work, schedule the next message event at the end
45479
- // of the preceding one.
45480
- schedulePerformWorkUntilDeadline();
45481
- } else {
45482
- isMessageLoopRunning = false;
45483
- scheduledHostCallback = null;
45484
- }
45485
- }
45486
- } else {
45487
- isMessageLoopRunning = false;
45488
- } // Yielding to the browser will give it a chance to paint, so we can
45489
- };
45490
-
45491
- var schedulePerformWorkUntilDeadline;
45492
-
45493
- if (typeof localSetImmediate === 'function') {
45494
- // Node.js and old IE.
45495
- // There's a few reasons for why we prefer setImmediate.
45496
- //
45497
- // Unlike MessageChannel, it doesn't prevent a Node.js process from exiting.
45498
- // (Even though this is a DOM fork of the Scheduler, you could get here
45499
- // with a mix of Node.js 15+, which has a MessageChannel, and jsdom.)
45500
- // https://github.com/facebook/react/issues/20756
45501
- //
45502
- // But also, it runs earlier which is the semantic we want.
45503
- // If other browsers ever implement it, it's better to use it.
45504
- // Although both of these would be inferior to native scheduling.
45505
- schedulePerformWorkUntilDeadline = function () {
45506
- localSetImmediate(performWorkUntilDeadline);
45507
- };
45508
- } else if (typeof MessageChannel !== 'undefined') {
45509
- // DOM and Worker environments.
45510
- // We prefer MessageChannel because of the 4ms setTimeout clamping.
45511
- var channel = new MessageChannel();
45512
- var port = channel.port2;
45513
- channel.port1.onmessage = performWorkUntilDeadline;
45514
-
45515
- schedulePerformWorkUntilDeadline = function () {
45516
- port.postMessage(null);
45517
- };
45518
- } else {
45519
- // We should only fallback here in non-browser environments.
45520
- schedulePerformWorkUntilDeadline = function () {
45521
- localSetTimeout(performWorkUntilDeadline, 0);
45522
- };
45523
- }
45524
-
45525
- function requestHostCallback(callback) {
45526
- scheduledHostCallback = callback;
45527
-
45528
- if (!isMessageLoopRunning) {
45529
- isMessageLoopRunning = true;
45530
- schedulePerformWorkUntilDeadline();
45531
- }
45532
- }
45533
-
45534
- function requestHostTimeout(callback, ms) {
45535
- taskTimeoutID = localSetTimeout(function () {
45536
- callback(exports.unstable_now());
45537
- }, ms);
45538
- }
45539
-
45540
- function cancelHostTimeout() {
45541
- localClearTimeout(taskTimeoutID);
45542
- taskTimeoutID = -1;
45543
- }
45544
-
45545
- var unstable_requestPaint = requestPaint;
45546
- var unstable_Profiling = null;
45547
-
45548
- exports.unstable_IdlePriority = IdlePriority;
45549
- exports.unstable_ImmediatePriority = ImmediatePriority;
45550
- exports.unstable_LowPriority = LowPriority;
45551
- exports.unstable_NormalPriority = NormalPriority;
45552
- exports.unstable_Profiling = unstable_Profiling;
45553
- exports.unstable_UserBlockingPriority = UserBlockingPriority;
45554
- exports.unstable_cancelCallback = unstable_cancelCallback;
45555
- exports.unstable_continueExecution = unstable_continueExecution;
45556
- exports.unstable_forceFrameRate = forceFrameRate;
45557
- exports.unstable_getCurrentPriorityLevel = unstable_getCurrentPriorityLevel;
45558
- exports.unstable_getFirstCallbackNode = unstable_getFirstCallbackNode;
45559
- exports.unstable_next = unstable_next;
45560
- exports.unstable_pauseExecution = unstable_pauseExecution;
45561
- exports.unstable_requestPaint = unstable_requestPaint;
45562
- exports.unstable_runWithPriority = unstable_runWithPriority;
45563
- exports.unstable_scheduleCallback = unstable_scheduleCallback;
45564
- exports.unstable_shouldYield = shouldYieldToHost;
45565
- exports.unstable_wrapCallback = unstable_wrapCallback;
45566
- /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
45567
- if (
45568
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&
45569
- typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop ===
45570
- 'function'
45571
- ) {
45572
- __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
45573
- }
45574
-
45575
- })();
45576
- }
45577
-
45578
-
45579
- /***/ }),
45580
-
45581
- /***/ "../../../node_modules/react-dom/node_modules/scheduler/index.js":
45582
- /*!***********************************************************************!*\
45583
- !*** ../../../node_modules/react-dom/node_modules/scheduler/index.js ***!
45584
- \***********************************************************************/
45585
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
45586
-
45587
- "use strict";
45588
-
45589
-
45590
- if (false) {} else {
45591
- module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */ "../../../node_modules/react-dom/node_modules/scheduler/cjs/scheduler.development.js");
45592
- }
45593
-
45594
-
45595
44934
  /***/ }),
45596
44935
 
45597
44936
  /***/ "../../../node_modules/react-is/cjs/react-is.development.js":
@@ -61085,642 +60424,1303 @@ __webpack_require__.r(__webpack_exports__);
61085
60424
 
61086
60425
 
61087
60426
 
61088
- /***/ }),
60427
+ /***/ }),
60428
+
60429
+ /***/ "../../../node_modules/reactstrap/es/polyfill.js":
60430
+ /*!*******************************************************!*\
60431
+ !*** ../../../node_modules/reactstrap/es/polyfill.js ***!
60432
+ \*******************************************************/
60433
+ /***/ (() => {
60434
+
60435
+ (function () {
60436
+ if (typeof window !== 'object' || typeof window.CustomEvent === 'function') return;
60437
+
60438
+ var CustomEvent = function CustomEvent(event, params) {
60439
+ params = params || {
60440
+ bubbles: false,
60441
+ cancelable: false,
60442
+ detail: null
60443
+ };
60444
+ var evt = document.createEvent('CustomEvent');
60445
+ evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
60446
+ return evt;
60447
+ };
60448
+
60449
+ window.CustomEvent = CustomEvent;
60450
+ })();
60451
+
60452
+ (function () {
60453
+ if (typeof Object.values === 'function') return;
60454
+
60455
+ var values = function values(O) {
60456
+ return Object.keys(O).map(function (key) {
60457
+ return O[key];
60458
+ });
60459
+ };
60460
+
60461
+ Object.values = values;
60462
+ })();
60463
+
60464
+ /***/ }),
60465
+
60466
+ /***/ "../../../node_modules/reactstrap/es/utils.js":
60467
+ /*!****************************************************!*\
60468
+ !*** ../../../node_modules/reactstrap/es/utils.js ***!
60469
+ \****************************************************/
60470
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
60471
+
60472
+ "use strict";
60473
+ __webpack_require__.r(__webpack_exports__);
60474
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
60475
+ /* harmony export */ "DOMElement": () => (/* binding */ DOMElement),
60476
+ /* harmony export */ "PopperPlacements": () => (/* binding */ PopperPlacements),
60477
+ /* harmony export */ "TransitionPropTypeKeys": () => (/* binding */ TransitionPropTypeKeys),
60478
+ /* harmony export */ "TransitionStatuses": () => (/* binding */ TransitionStatuses),
60479
+ /* harmony export */ "TransitionTimeouts": () => (/* binding */ TransitionTimeouts),
60480
+ /* harmony export */ "addMultipleEventListeners": () => (/* binding */ addMultipleEventListeners),
60481
+ /* harmony export */ "canUseDOM": () => (/* binding */ canUseDOM),
60482
+ /* harmony export */ "conditionallyUpdateScrollbar": () => (/* binding */ conditionallyUpdateScrollbar),
60483
+ /* harmony export */ "defaultToggleEvents": () => (/* binding */ defaultToggleEvents),
60484
+ /* harmony export */ "deprecated": () => (/* binding */ deprecated),
60485
+ /* harmony export */ "findDOMElements": () => (/* binding */ findDOMElements),
60486
+ /* harmony export */ "focusableElements": () => (/* binding */ focusableElements),
60487
+ /* harmony export */ "getOriginalBodyPadding": () => (/* binding */ getOriginalBodyPadding),
60488
+ /* harmony export */ "getScrollbarWidth": () => (/* binding */ getScrollbarWidth),
60489
+ /* harmony export */ "getTarget": () => (/* binding */ getTarget),
60490
+ /* harmony export */ "isArrayOrNodeList": () => (/* binding */ isArrayOrNodeList),
60491
+ /* harmony export */ "isBodyOverflowing": () => (/* binding */ isBodyOverflowing),
60492
+ /* harmony export */ "isFunction": () => (/* binding */ isFunction),
60493
+ /* harmony export */ "isObject": () => (/* binding */ isObject),
60494
+ /* harmony export */ "isReactRefObj": () => (/* binding */ isReactRefObj),
60495
+ /* harmony export */ "keyCodes": () => (/* binding */ keyCodes),
60496
+ /* harmony export */ "mapToCssModules": () => (/* binding */ mapToCssModules),
60497
+ /* harmony export */ "omit": () => (/* binding */ omit),
60498
+ /* harmony export */ "pick": () => (/* binding */ pick),
60499
+ /* harmony export */ "setGlobalCssModule": () => (/* binding */ setGlobalCssModule),
60500
+ /* harmony export */ "setScrollbarWidth": () => (/* binding */ setScrollbarWidth),
60501
+ /* harmony export */ "tagPropType": () => (/* binding */ tagPropType),
60502
+ /* harmony export */ "targetPropType": () => (/* binding */ targetPropType),
60503
+ /* harmony export */ "toNumber": () => (/* binding */ toNumber),
60504
+ /* harmony export */ "warnOnce": () => (/* binding */ warnOnce)
60505
+ /* harmony export */ });
60506
+ /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! prop-types */ "../../../node_modules/prop-types/index.js");
60507
+ /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_0__);
60508
+ // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.4/js/src/modal.js#L436-L443
60509
+
60510
+ function getScrollbarWidth() {
60511
+ var scrollDiv = document.createElement('div'); // .modal-scrollbar-measure styles // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.4/scss/_modal.scss#L106-L113
60512
+
60513
+ scrollDiv.style.position = 'absolute';
60514
+ scrollDiv.style.top = '-9999px';
60515
+ scrollDiv.style.width = '50px';
60516
+ scrollDiv.style.height = '50px';
60517
+ scrollDiv.style.overflow = 'scroll';
60518
+ document.body.appendChild(scrollDiv);
60519
+ var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
60520
+ document.body.removeChild(scrollDiv);
60521
+ return scrollbarWidth;
60522
+ }
60523
+ function setScrollbarWidth(padding) {
60524
+ document.body.style.paddingRight = padding > 0 ? padding + "px" : null;
60525
+ }
60526
+ function isBodyOverflowing() {
60527
+ return document.body.clientWidth < window.innerWidth;
60528
+ }
60529
+ function getOriginalBodyPadding() {
60530
+ var style = window.getComputedStyle(document.body, null);
60531
+ return parseInt(style && style.getPropertyValue('padding-right') || 0, 10);
60532
+ }
60533
+ function conditionallyUpdateScrollbar() {
60534
+ var scrollbarWidth = getScrollbarWidth(); // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.6/js/src/modal.js#L433
60535
+
60536
+ var fixedContent = document.querySelectorAll('.fixed-top, .fixed-bottom, .is-fixed, .sticky-top')[0];
60537
+ var bodyPadding = fixedContent ? parseInt(fixedContent.style.paddingRight || 0, 10) : 0;
60538
+
60539
+ if (isBodyOverflowing()) {
60540
+ setScrollbarWidth(bodyPadding + scrollbarWidth);
60541
+ }
60542
+ }
60543
+ var globalCssModule;
60544
+ function setGlobalCssModule(cssModule) {
60545
+ globalCssModule = cssModule;
60546
+ }
60547
+ function mapToCssModules(className, cssModule) {
60548
+ if (className === void 0) {
60549
+ className = '';
60550
+ }
60551
+
60552
+ if (cssModule === void 0) {
60553
+ cssModule = globalCssModule;
60554
+ }
60555
+
60556
+ if (!cssModule) return className;
60557
+ return className.split(' ').map(function (c) {
60558
+ return cssModule[c] || c;
60559
+ }).join(' ');
60560
+ }
60561
+ /**
60562
+ * Returns a new object with the key/value pairs from `obj` that are not in the array `omitKeys`.
60563
+ */
60564
+
60565
+ function omit(obj, omitKeys) {
60566
+ var result = {};
60567
+ Object.keys(obj).forEach(function (key) {
60568
+ if (omitKeys.indexOf(key) === -1) {
60569
+ result[key] = obj[key];
60570
+ }
60571
+ });
60572
+ return result;
60573
+ }
60574
+ /**
60575
+ * Returns a filtered copy of an object with only the specified keys.
60576
+ */
60577
+
60578
+ function pick(obj, keys) {
60579
+ var pickKeys = Array.isArray(keys) ? keys : [keys];
60580
+ var length = pickKeys.length;
60581
+ var key;
60582
+ var result = {};
60583
+
60584
+ while (length > 0) {
60585
+ length -= 1;
60586
+ key = pickKeys[length];
60587
+ result[key] = obj[key];
60588
+ }
60589
+
60590
+ return result;
60591
+ }
60592
+ var warned = {};
60593
+ function warnOnce(message) {
60594
+ if (!warned[message]) {
60595
+ /* istanbul ignore else */
60596
+ if (typeof console !== 'undefined') {
60597
+ console.error(message); // eslint-disable-line no-console
60598
+ }
60599
+
60600
+ warned[message] = true;
60601
+ }
60602
+ }
60603
+ function deprecated(propType, explanation) {
60604
+ return function validate(props, propName, componentName) {
60605
+ if (props[propName] !== null && typeof props[propName] !== 'undefined') {
60606
+ warnOnce("\"" + propName + "\" property of \"" + componentName + "\" has been deprecated.\n" + explanation);
60607
+ }
60608
+
60609
+ for (var _len = arguments.length, rest = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
60610
+ rest[_key - 3] = arguments[_key];
60611
+ }
60612
+
60613
+ return propType.apply(void 0, [props, propName, componentName].concat(rest));
60614
+ };
60615
+ } // Shim Element if needed (e.g. in Node environment)
60616
+
60617
+ var Element = typeof window === 'object' && window.Element || function () {};
60618
+
60619
+ function DOMElement(props, propName, componentName) {
60620
+ if (!(props[propName] instanceof Element)) {
60621
+ return new Error('Invalid prop `' + propName + '` supplied to `' + componentName + '`. Expected prop to be an instance of Element. Validation failed.');
60622
+ }
60623
+ }
60624
+ var targetPropType = prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().string), (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func), DOMElement, prop_types__WEBPACK_IMPORTED_MODULE_0___default().shape({
60625
+ current: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().any)
60626
+ })]);
60627
+ var tagPropType = prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().func), (prop_types__WEBPACK_IMPORTED_MODULE_0___default().string), prop_types__WEBPACK_IMPORTED_MODULE_0___default().shape({
60628
+ $$typeof: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().symbol),
60629
+ render: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func)
60630
+ }), prop_types__WEBPACK_IMPORTED_MODULE_0___default().arrayOf(prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().func), (prop_types__WEBPACK_IMPORTED_MODULE_0___default().string), prop_types__WEBPACK_IMPORTED_MODULE_0___default().shape({
60631
+ $$typeof: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().symbol),
60632
+ render: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func)
60633
+ })]))]);
60634
+ /* eslint key-spacing: ["error", { afterColon: true, align: "value" }] */
60635
+ // These are all setup to match what is in the bootstrap _variables.scss
60636
+ // https://github.com/twbs/bootstrap/blob/v4-dev/scss/_variables.scss
60637
+
60638
+ var TransitionTimeouts = {
60639
+ Fade: 150,
60640
+ // $transition-fade
60641
+ Collapse: 350,
60642
+ // $transition-collapse
60643
+ Modal: 300,
60644
+ // $modal-transition
60645
+ Carousel: 600 // $carousel-transition
60646
+
60647
+ }; // Duplicated Transition.propType keys to ensure that Reactstrap builds
60648
+ // for distribution properly exclude these keys for nested child HTML attributes
60649
+ // since `react-transition-group` removes propTypes in production builds.
60650
+
60651
+ var TransitionPropTypeKeys = ['in', 'mountOnEnter', 'unmountOnExit', 'appear', 'enter', 'exit', 'timeout', 'onEnter', 'onEntering', 'onEntered', 'onExit', 'onExiting', 'onExited'];
60652
+ var TransitionStatuses = {
60653
+ ENTERING: 'entering',
60654
+ ENTERED: 'entered',
60655
+ EXITING: 'exiting',
60656
+ EXITED: 'exited'
60657
+ };
60658
+ var keyCodes = {
60659
+ esc: 27,
60660
+ space: 32,
60661
+ enter: 13,
60662
+ tab: 9,
60663
+ up: 38,
60664
+ down: 40,
60665
+ home: 36,
60666
+ end: 35,
60667
+ n: 78,
60668
+ p: 80
60669
+ };
60670
+ var PopperPlacements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];
60671
+ var canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);
60672
+ function isReactRefObj(target) {
60673
+ if (target && typeof target === 'object') {
60674
+ return 'current' in target;
60675
+ }
60676
+
60677
+ return false;
60678
+ }
60679
+
60680
+ function getTag(value) {
60681
+ if (value == null) {
60682
+ return value === undefined ? '[object Undefined]' : '[object Null]';
60683
+ }
60684
+
60685
+ return Object.prototype.toString.call(value);
60686
+ }
60687
+
60688
+ function toNumber(value) {
60689
+ var type = typeof value;
60690
+ var NAN = 0 / 0;
60691
+
60692
+ if (type === 'number') {
60693
+ return value;
60694
+ }
60695
+
60696
+ if (type === 'symbol' || type === 'object' && getTag(value) === '[object Symbol]') {
60697
+ return NAN;
60698
+ }
60699
+
60700
+ if (isObject(value)) {
60701
+ var other = typeof value.valueOf === 'function' ? value.valueOf() : value;
60702
+ value = isObject(other) ? "" + other : other;
60703
+ }
60704
+
60705
+ if (type !== 'string') {
60706
+ return value === 0 ? value : +value;
60707
+ }
60708
+
60709
+ value = value.replace(/^\s+|\s+$/g, '');
60710
+ var isBinary = /^0b[01]+$/i.test(value);
60711
+ return isBinary || /^0o[0-7]+$/i.test(value) ? parseInt(value.slice(2), isBinary ? 2 : 8) : /^[-+]0x[0-9a-f]+$/i.test(value) ? NAN : +value;
60712
+ }
60713
+ function isObject(value) {
60714
+ var type = typeof value;
60715
+ return value != null && (type === 'object' || type === 'function');
60716
+ }
60717
+ function isFunction(value) {
60718
+ if (!isObject(value)) {
60719
+ return false;
60720
+ }
60721
+
60722
+ var tag = getTag(value);
60723
+ return tag === '[object Function]' || tag === '[object AsyncFunction]' || tag === '[object GeneratorFunction]' || tag === '[object Proxy]';
60724
+ }
60725
+ function findDOMElements(target) {
60726
+ if (isReactRefObj(target)) {
60727
+ return target.current;
60728
+ }
60729
+
60730
+ if (isFunction(target)) {
60731
+ return target();
60732
+ }
60733
+
60734
+ if (typeof target === 'string' && canUseDOM) {
60735
+ var selection = document.querySelectorAll(target);
60736
+
60737
+ if (!selection.length) {
60738
+ selection = document.querySelectorAll("#" + target);
60739
+ }
60740
+
60741
+ if (!selection.length) {
60742
+ throw new Error("The target '" + target + "' could not be identified in the dom, tip: check spelling");
60743
+ }
60744
+
60745
+ return selection;
60746
+ }
60747
+
60748
+ return target;
60749
+ }
60750
+ function isArrayOrNodeList(els) {
60751
+ if (els === null) {
60752
+ return false;
60753
+ }
60754
+
60755
+ return Array.isArray(els) || canUseDOM && typeof els.length === 'number';
60756
+ }
60757
+ function getTarget(target, allElements) {
60758
+ var els = findDOMElements(target);
60759
+
60760
+ if (allElements) {
60761
+ if (isArrayOrNodeList(els)) {
60762
+ return els;
60763
+ }
60764
+
60765
+ if (els === null) {
60766
+ return [];
60767
+ }
60768
+
60769
+ return [els];
60770
+ } else {
60771
+ if (isArrayOrNodeList(els)) {
60772
+ return els[0];
60773
+ }
60774
+
60775
+ return els;
60776
+ }
60777
+ }
60778
+ var defaultToggleEvents = ['touchstart', 'click'];
60779
+ function addMultipleEventListeners(_els, handler, _events, useCapture) {
60780
+ var els = _els;
60781
+
60782
+ if (!isArrayOrNodeList(els)) {
60783
+ els = [els];
60784
+ }
60785
+
60786
+ var events = _events;
60787
+
60788
+ if (typeof events === 'string') {
60789
+ events = events.split(/\s+/);
60790
+ }
60791
+
60792
+ if (!isArrayOrNodeList(els) || typeof handler !== 'function' || !Array.isArray(events)) {
60793
+ throw new Error("\n The first argument of this function must be DOM node or an array on DOM nodes or NodeList.\n The second must be a function.\n The third is a string or an array of strings that represents DOM events\n ");
60794
+ }
60795
+
60796
+ Array.prototype.forEach.call(events, function (event) {
60797
+ Array.prototype.forEach.call(els, function (el) {
60798
+ el.addEventListener(event, handler, useCapture);
60799
+ });
60800
+ });
60801
+ return function removeEvents() {
60802
+ Array.prototype.forEach.call(events, function (event) {
60803
+ Array.prototype.forEach.call(els, function (el) {
60804
+ el.removeEventListener(event, handler, useCapture);
60805
+ });
60806
+ });
60807
+ };
60808
+ }
60809
+ var focusableElements = ['a[href]', 'area[href]', 'input:not([disabled]):not([type=hidden])', 'select:not([disabled])', 'textarea:not([disabled])', 'button:not([disabled])', 'object', 'embed', '[tabindex]:not(.modal)', 'audio[controls]', 'video[controls]', '[contenteditable]:not([contenteditable="false"])'];
60810
+
60811
+ /***/ }),
60812
+
60813
+ /***/ "../../../node_modules/regexp.prototype.flags/implementation.js":
60814
+ /*!**********************************************************************!*\
60815
+ !*** ../../../node_modules/regexp.prototype.flags/implementation.js ***!
60816
+ \**********************************************************************/
60817
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
60818
+
60819
+ "use strict";
60820
+
60821
+
60822
+ var functionsHaveConfigurableNames = (__webpack_require__(/*! functions-have-names */ "../../../node_modules/functions-have-names/index.js").functionsHaveConfigurableNames)();
60823
+
60824
+ var $Object = Object;
60825
+ var $TypeError = TypeError;
60826
+
60827
+ module.exports = function flags() {
60828
+ if (this != null && this !== $Object(this)) {
60829
+ throw new $TypeError('RegExp.prototype.flags getter called on non-object');
60830
+ }
60831
+ var result = '';
60832
+ if (this.hasIndices) {
60833
+ result += 'd';
60834
+ }
60835
+ if (this.global) {
60836
+ result += 'g';
60837
+ }
60838
+ if (this.ignoreCase) {
60839
+ result += 'i';
60840
+ }
60841
+ if (this.multiline) {
60842
+ result += 'm';
60843
+ }
60844
+ if (this.dotAll) {
60845
+ result += 's';
60846
+ }
60847
+ if (this.unicode) {
60848
+ result += 'u';
60849
+ }
60850
+ if (this.sticky) {
60851
+ result += 'y';
60852
+ }
60853
+ return result;
60854
+ };
60855
+
60856
+ if (functionsHaveConfigurableNames && Object.defineProperty) {
60857
+ Object.defineProperty(module.exports, "name", ({ value: 'get flags' }));
60858
+ }
60859
+
60860
+
60861
+ /***/ }),
60862
+
60863
+ /***/ "../../../node_modules/regexp.prototype.flags/index.js":
60864
+ /*!*************************************************************!*\
60865
+ !*** ../../../node_modules/regexp.prototype.flags/index.js ***!
60866
+ \*************************************************************/
60867
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
60868
+
60869
+ "use strict";
60870
+
60871
+
60872
+ var define = __webpack_require__(/*! define-properties */ "../../../node_modules/define-properties/index.js");
60873
+ var callBind = __webpack_require__(/*! call-bind */ "../../../node_modules/call-bind/index.js");
60874
+
60875
+ var implementation = __webpack_require__(/*! ./implementation */ "../../../node_modules/regexp.prototype.flags/implementation.js");
60876
+ var getPolyfill = __webpack_require__(/*! ./polyfill */ "../../../node_modules/regexp.prototype.flags/polyfill.js");
60877
+ var shim = __webpack_require__(/*! ./shim */ "../../../node_modules/regexp.prototype.flags/shim.js");
60878
+
60879
+ var flagsBound = callBind(getPolyfill());
60880
+
60881
+ define(flagsBound, {
60882
+ getPolyfill: getPolyfill,
60883
+ implementation: implementation,
60884
+ shim: shim
60885
+ });
60886
+
60887
+ module.exports = flagsBound;
60888
+
60889
+
60890
+ /***/ }),
60891
+
60892
+ /***/ "../../../node_modules/regexp.prototype.flags/polyfill.js":
60893
+ /*!****************************************************************!*\
60894
+ !*** ../../../node_modules/regexp.prototype.flags/polyfill.js ***!
60895
+ \****************************************************************/
60896
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
60897
+
60898
+ "use strict";
60899
+
60900
+
60901
+ var implementation = __webpack_require__(/*! ./implementation */ "../../../node_modules/regexp.prototype.flags/implementation.js");
60902
+
60903
+ var supportsDescriptors = (__webpack_require__(/*! define-properties */ "../../../node_modules/define-properties/index.js").supportsDescriptors);
60904
+ var $gOPD = Object.getOwnPropertyDescriptor;
60905
+
60906
+ module.exports = function getPolyfill() {
60907
+ if (supportsDescriptors && (/a/mig).flags === 'gim') {
60908
+ var descriptor = $gOPD(RegExp.prototype, 'flags');
60909
+ if (
60910
+ descriptor
60911
+ && typeof descriptor.get === 'function'
60912
+ && typeof RegExp.prototype.dotAll === 'boolean'
60913
+ && typeof RegExp.prototype.hasIndices === 'boolean'
60914
+ ) {
60915
+ /* eslint getter-return: 0 */
60916
+ var calls = '';
60917
+ var o = {};
60918
+ Object.defineProperty(o, 'hasIndices', {
60919
+ get: function () {
60920
+ calls += 'd';
60921
+ }
60922
+ });
60923
+ Object.defineProperty(o, 'sticky', {
60924
+ get: function () {
60925
+ calls += 'y';
60926
+ }
60927
+ });
60928
+ if (calls === 'dy') {
60929
+ return descriptor.get;
60930
+ }
60931
+ }
60932
+ }
60933
+ return implementation;
60934
+ };
60935
+
60936
+
60937
+ /***/ }),
60938
+
60939
+ /***/ "../../../node_modules/regexp.prototype.flags/shim.js":
60940
+ /*!************************************************************!*\
60941
+ !*** ../../../node_modules/regexp.prototype.flags/shim.js ***!
60942
+ \************************************************************/
60943
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
60944
+
60945
+ "use strict";
60946
+
60947
+
60948
+ var supportsDescriptors = (__webpack_require__(/*! define-properties */ "../../../node_modules/define-properties/index.js").supportsDescriptors);
60949
+ var getPolyfill = __webpack_require__(/*! ./polyfill */ "../../../node_modules/regexp.prototype.flags/polyfill.js");
60950
+ var gOPD = Object.getOwnPropertyDescriptor;
60951
+ var defineProperty = Object.defineProperty;
60952
+ var TypeErr = TypeError;
60953
+ var getProto = Object.getPrototypeOf;
60954
+ var regex = /a/;
60955
+
60956
+ module.exports = function shimFlags() {
60957
+ if (!supportsDescriptors || !getProto) {
60958
+ throw new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');
60959
+ }
60960
+ var polyfill = getPolyfill();
60961
+ var proto = getProto(regex);
60962
+ var descriptor = gOPD(proto, 'flags');
60963
+ if (!descriptor || descriptor.get !== polyfill) {
60964
+ defineProperty(proto, 'flags', {
60965
+ configurable: true,
60966
+ enumerable: false,
60967
+ get: polyfill
60968
+ });
60969
+ }
60970
+ return polyfill;
60971
+ };
60972
+
60973
+
60974
+ /***/ }),
60975
+
60976
+ /***/ "../../../node_modules/resolve-pathname/esm/resolve-pathname.js":
60977
+ /*!**********************************************************************!*\
60978
+ !*** ../../../node_modules/resolve-pathname/esm/resolve-pathname.js ***!
60979
+ \**********************************************************************/
60980
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
60981
+
60982
+ "use strict";
60983
+ __webpack_require__.r(__webpack_exports__);
60984
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
60985
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
60986
+ /* harmony export */ });
60987
+ function isAbsolute(pathname) {
60988
+ return pathname.charAt(0) === '/';
60989
+ }
60990
+
60991
+ // About 1.5x faster than the two-arg version of Array#splice()
60992
+ function spliceOne(list, index) {
60993
+ for (var i = index, k = i + 1, n = list.length; k < n; i += 1, k += 1) {
60994
+ list[i] = list[k];
60995
+ }
60996
+
60997
+ list.pop();
60998
+ }
60999
+
61000
+ // This implementation is based heavily on node's url.parse
61001
+ function resolvePathname(to, from) {
61002
+ if (from === undefined) from = '';
61003
+
61004
+ var toParts = (to && to.split('/')) || [];
61005
+ var fromParts = (from && from.split('/')) || [];
61006
+
61007
+ var isToAbs = to && isAbsolute(to);
61008
+ var isFromAbs = from && isAbsolute(from);
61009
+ var mustEndAbs = isToAbs || isFromAbs;
61010
+
61011
+ if (to && isAbsolute(to)) {
61012
+ // to is absolute
61013
+ fromParts = toParts;
61014
+ } else if (toParts.length) {
61015
+ // to is relative, drop the filename
61016
+ fromParts.pop();
61017
+ fromParts = fromParts.concat(toParts);
61018
+ }
61019
+
61020
+ if (!fromParts.length) return '/';
61021
+
61022
+ var hasTrailingSlash;
61023
+ if (fromParts.length) {
61024
+ var last = fromParts[fromParts.length - 1];
61025
+ hasTrailingSlash = last === '.' || last === '..' || last === '';
61026
+ } else {
61027
+ hasTrailingSlash = false;
61028
+ }
61029
+
61030
+ var up = 0;
61031
+ for (var i = fromParts.length; i >= 0; i--) {
61032
+ var part = fromParts[i];
61033
+
61034
+ if (part === '.') {
61035
+ spliceOne(fromParts, i);
61036
+ } else if (part === '..') {
61037
+ spliceOne(fromParts, i);
61038
+ up++;
61039
+ } else if (up) {
61040
+ spliceOne(fromParts, i);
61041
+ up--;
61042
+ }
61043
+ }
61044
+
61045
+ if (!mustEndAbs) for (; up--; up) fromParts.unshift('..');
61046
+
61047
+ if (
61048
+ mustEndAbs &&
61049
+ fromParts[0] !== '' &&
61050
+ (!fromParts[0] || !isAbsolute(fromParts[0]))
61051
+ )
61052
+ fromParts.unshift('');
61053
+
61054
+ var result = fromParts.join('/');
61055
+
61056
+ if (hasTrailingSlash && result.substr(-1) !== '/') result += '/';
61057
+
61058
+ return result;
61059
+ }
61060
+
61061
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (resolvePathname);
61062
+
61063
+
61064
+ /***/ }),
61065
+
61066
+ /***/ "../../../node_modules/scheduler/cjs/scheduler.development.js":
61067
+ /*!********************************************************************!*\
61068
+ !*** ../../../node_modules/scheduler/cjs/scheduler.development.js ***!
61069
+ \********************************************************************/
61070
+ /***/ ((__unused_webpack_module, exports) => {
61071
+
61072
+ "use strict";
61073
+ /**
61074
+ * @license React
61075
+ * scheduler.development.js
61076
+ *
61077
+ * Copyright (c) Facebook, Inc. and its affiliates.
61078
+ *
61079
+ * This source code is licensed under the MIT license found in the
61080
+ * LICENSE file in the root directory of this source tree.
61081
+ */
61082
+
61083
+
61084
+
61085
+ if (true) {
61086
+ (function() {
61087
+
61088
+ 'use strict';
61089
+
61090
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
61091
+ if (
61092
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&
61093
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart ===
61094
+ 'function'
61095
+ ) {
61096
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error());
61097
+ }
61098
+ var enableSchedulerDebugging = false;
61099
+ var enableProfiling = false;
61100
+ var frameYieldMs = 5;
61101
+
61102
+ function push(heap, node) {
61103
+ var index = heap.length;
61104
+ heap.push(node);
61105
+ siftUp(heap, node, index);
61106
+ }
61107
+ function peek(heap) {
61108
+ return heap.length === 0 ? null : heap[0];
61109
+ }
61110
+ function pop(heap) {
61111
+ if (heap.length === 0) {
61112
+ return null;
61113
+ }
61114
+
61115
+ var first = heap[0];
61116
+ var last = heap.pop();
61117
+
61118
+ if (last !== first) {
61119
+ heap[0] = last;
61120
+ siftDown(heap, last, 0);
61121
+ }
61122
+
61123
+ return first;
61124
+ }
61125
+
61126
+ function siftUp(heap, node, i) {
61127
+ var index = i;
61128
+
61129
+ while (index > 0) {
61130
+ var parentIndex = index - 1 >>> 1;
61131
+ var parent = heap[parentIndex];
61132
+
61133
+ if (compare(parent, node) > 0) {
61134
+ // The parent is larger. Swap positions.
61135
+ heap[parentIndex] = node;
61136
+ heap[index] = parent;
61137
+ index = parentIndex;
61138
+ } else {
61139
+ // The parent is smaller. Exit.
61140
+ return;
61141
+ }
61142
+ }
61143
+ }
61144
+
61145
+ function siftDown(heap, node, i) {
61146
+ var index = i;
61147
+ var length = heap.length;
61148
+ var halfLength = length >>> 1;
61149
+
61150
+ while (index < halfLength) {
61151
+ var leftIndex = (index + 1) * 2 - 1;
61152
+ var left = heap[leftIndex];
61153
+ var rightIndex = leftIndex + 1;
61154
+ var right = heap[rightIndex]; // If the left or right node is smaller, swap with the smaller of those.
61155
+
61156
+ if (compare(left, node) < 0) {
61157
+ if (rightIndex < length && compare(right, left) < 0) {
61158
+ heap[index] = right;
61159
+ heap[rightIndex] = node;
61160
+ index = rightIndex;
61161
+ } else {
61162
+ heap[index] = left;
61163
+ heap[leftIndex] = node;
61164
+ index = leftIndex;
61165
+ }
61166
+ } else if (rightIndex < length && compare(right, node) < 0) {
61167
+ heap[index] = right;
61168
+ heap[rightIndex] = node;
61169
+ index = rightIndex;
61170
+ } else {
61171
+ // Neither child is smaller. Exit.
61172
+ return;
61173
+ }
61174
+ }
61175
+ }
61176
+
61177
+ function compare(a, b) {
61178
+ // Compare sort index first, then task id.
61179
+ var diff = a.sortIndex - b.sortIndex;
61180
+ return diff !== 0 ? diff : a.id - b.id;
61181
+ }
61182
+
61183
+ // TODO: Use symbols?
61184
+ var ImmediatePriority = 1;
61185
+ var UserBlockingPriority = 2;
61186
+ var NormalPriority = 3;
61187
+ var LowPriority = 4;
61188
+ var IdlePriority = 5;
61189
+
61190
+ function markTaskErrored(task, ms) {
61191
+ }
61192
+
61193
+ /* eslint-disable no-var */
61194
+
61195
+ var hasPerformanceNow = typeof performance === 'object' && typeof performance.now === 'function';
61196
+
61197
+ if (hasPerformanceNow) {
61198
+ var localPerformance = performance;
61199
+
61200
+ exports.unstable_now = function () {
61201
+ return localPerformance.now();
61202
+ };
61203
+ } else {
61204
+ var localDate = Date;
61205
+ var initialTime = localDate.now();
61206
+
61207
+ exports.unstable_now = function () {
61208
+ return localDate.now() - initialTime;
61209
+ };
61210
+ } // Max 31 bit integer. The max integer size in V8 for 32-bit systems.
61211
+ // Math.pow(2, 30) - 1
61212
+ // 0b111111111111111111111111111111
61213
+
61214
+
61215
+ var maxSigned31BitInt = 1073741823; // Times out immediately
61216
+
61217
+ var IMMEDIATE_PRIORITY_TIMEOUT = -1; // Eventually times out
61218
+
61219
+ var USER_BLOCKING_PRIORITY_TIMEOUT = 250;
61220
+ var NORMAL_PRIORITY_TIMEOUT = 5000;
61221
+ var LOW_PRIORITY_TIMEOUT = 10000; // Never times out
61222
+
61223
+ var IDLE_PRIORITY_TIMEOUT = maxSigned31BitInt; // Tasks are stored on a min heap
61224
+
61225
+ var taskQueue = [];
61226
+ var timerQueue = []; // Incrementing id counter. Used to maintain insertion order.
61227
+
61228
+ var taskIdCounter = 1; // Pausing the scheduler is useful for debugging.
61229
+ var currentTask = null;
61230
+ var currentPriorityLevel = NormalPriority; // This is set while performing work, to prevent re-entrance.
61231
+
61232
+ var isPerformingWork = false;
61233
+ var isHostCallbackScheduled = false;
61234
+ var isHostTimeoutScheduled = false; // Capture local references to native APIs, in case a polyfill overrides them.
61235
+
61236
+ var localSetTimeout = typeof setTimeout === 'function' ? setTimeout : null;
61237
+ var localClearTimeout = typeof clearTimeout === 'function' ? clearTimeout : null;
61238
+ var localSetImmediate = typeof setImmediate !== 'undefined' ? setImmediate : null; // IE and Node.js + jsdom
61239
+
61240
+ var isInputPending = typeof navigator !== 'undefined' && navigator.scheduling !== undefined && navigator.scheduling.isInputPending !== undefined ? navigator.scheduling.isInputPending.bind(navigator.scheduling) : null;
61241
+
61242
+ function advanceTimers(currentTime) {
61243
+ // Check for tasks that are no longer delayed and add them to the queue.
61244
+ var timer = peek(timerQueue);
61089
61245
 
61090
- /***/ "../../../node_modules/reactstrap/es/polyfill.js":
61091
- /*!*******************************************************!*\
61092
- !*** ../../../node_modules/reactstrap/es/polyfill.js ***!
61093
- \*******************************************************/
61094
- /***/ (() => {
61246
+ while (timer !== null) {
61247
+ if (timer.callback === null) {
61248
+ // Timer was cancelled.
61249
+ pop(timerQueue);
61250
+ } else if (timer.startTime <= currentTime) {
61251
+ // Timer fired. Transfer to the task queue.
61252
+ pop(timerQueue);
61253
+ timer.sortIndex = timer.expirationTime;
61254
+ push(taskQueue, timer);
61255
+ } else {
61256
+ // Remaining timers are pending.
61257
+ return;
61258
+ }
61095
61259
 
61096
- (function () {
61097
- if (typeof window !== 'object' || typeof window.CustomEvent === 'function') return;
61260
+ timer = peek(timerQueue);
61261
+ }
61262
+ }
61098
61263
 
61099
- var CustomEvent = function CustomEvent(event, params) {
61100
- params = params || {
61101
- bubbles: false,
61102
- cancelable: false,
61103
- detail: null
61104
- };
61105
- var evt = document.createEvent('CustomEvent');
61106
- evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
61107
- return evt;
61108
- };
61264
+ function handleTimeout(currentTime) {
61265
+ isHostTimeoutScheduled = false;
61266
+ advanceTimers(currentTime);
61109
61267
 
61110
- window.CustomEvent = CustomEvent;
61111
- })();
61268
+ if (!isHostCallbackScheduled) {
61269
+ if (peek(taskQueue) !== null) {
61270
+ isHostCallbackScheduled = true;
61271
+ requestHostCallback(flushWork);
61272
+ } else {
61273
+ var firstTimer = peek(timerQueue);
61112
61274
 
61113
- (function () {
61114
- if (typeof Object.values === 'function') return;
61275
+ if (firstTimer !== null) {
61276
+ requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
61277
+ }
61278
+ }
61279
+ }
61280
+ }
61115
61281
 
61116
- var values = function values(O) {
61117
- return Object.keys(O).map(function (key) {
61118
- return O[key];
61119
- });
61120
- };
61282
+ function flushWork(hasTimeRemaining, initialTime) {
61121
61283
 
61122
- Object.values = values;
61123
- })();
61124
61284
 
61125
- /***/ }),
61285
+ isHostCallbackScheduled = false;
61126
61286
 
61127
- /***/ "../../../node_modules/reactstrap/es/utils.js":
61128
- /*!****************************************************!*\
61129
- !*** ../../../node_modules/reactstrap/es/utils.js ***!
61130
- \****************************************************/
61131
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61287
+ if (isHostTimeoutScheduled) {
61288
+ // We scheduled a timeout but it's no longer needed. Cancel it.
61289
+ isHostTimeoutScheduled = false;
61290
+ cancelHostTimeout();
61291
+ }
61132
61292
 
61133
- "use strict";
61134
- __webpack_require__.r(__webpack_exports__);
61135
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
61136
- /* harmony export */ "DOMElement": () => (/* binding */ DOMElement),
61137
- /* harmony export */ "PopperPlacements": () => (/* binding */ PopperPlacements),
61138
- /* harmony export */ "TransitionPropTypeKeys": () => (/* binding */ TransitionPropTypeKeys),
61139
- /* harmony export */ "TransitionStatuses": () => (/* binding */ TransitionStatuses),
61140
- /* harmony export */ "TransitionTimeouts": () => (/* binding */ TransitionTimeouts),
61141
- /* harmony export */ "addMultipleEventListeners": () => (/* binding */ addMultipleEventListeners),
61142
- /* harmony export */ "canUseDOM": () => (/* binding */ canUseDOM),
61143
- /* harmony export */ "conditionallyUpdateScrollbar": () => (/* binding */ conditionallyUpdateScrollbar),
61144
- /* harmony export */ "defaultToggleEvents": () => (/* binding */ defaultToggleEvents),
61145
- /* harmony export */ "deprecated": () => (/* binding */ deprecated),
61146
- /* harmony export */ "findDOMElements": () => (/* binding */ findDOMElements),
61147
- /* harmony export */ "focusableElements": () => (/* binding */ focusableElements),
61148
- /* harmony export */ "getOriginalBodyPadding": () => (/* binding */ getOriginalBodyPadding),
61149
- /* harmony export */ "getScrollbarWidth": () => (/* binding */ getScrollbarWidth),
61150
- /* harmony export */ "getTarget": () => (/* binding */ getTarget),
61151
- /* harmony export */ "isArrayOrNodeList": () => (/* binding */ isArrayOrNodeList),
61152
- /* harmony export */ "isBodyOverflowing": () => (/* binding */ isBodyOverflowing),
61153
- /* harmony export */ "isFunction": () => (/* binding */ isFunction),
61154
- /* harmony export */ "isObject": () => (/* binding */ isObject),
61155
- /* harmony export */ "isReactRefObj": () => (/* binding */ isReactRefObj),
61156
- /* harmony export */ "keyCodes": () => (/* binding */ keyCodes),
61157
- /* harmony export */ "mapToCssModules": () => (/* binding */ mapToCssModules),
61158
- /* harmony export */ "omit": () => (/* binding */ omit),
61159
- /* harmony export */ "pick": () => (/* binding */ pick),
61160
- /* harmony export */ "setGlobalCssModule": () => (/* binding */ setGlobalCssModule),
61161
- /* harmony export */ "setScrollbarWidth": () => (/* binding */ setScrollbarWidth),
61162
- /* harmony export */ "tagPropType": () => (/* binding */ tagPropType),
61163
- /* harmony export */ "targetPropType": () => (/* binding */ targetPropType),
61164
- /* harmony export */ "toNumber": () => (/* binding */ toNumber),
61165
- /* harmony export */ "warnOnce": () => (/* binding */ warnOnce)
61166
- /* harmony export */ });
61167
- /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! prop-types */ "../../../node_modules/prop-types/index.js");
61168
- /* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_0__);
61169
- // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.4/js/src/modal.js#L436-L443
61293
+ isPerformingWork = true;
61294
+ var previousPriorityLevel = currentPriorityLevel;
61170
61295
 
61171
- function getScrollbarWidth() {
61172
- var scrollDiv = document.createElement('div'); // .modal-scrollbar-measure styles // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.4/scss/_modal.scss#L106-L113
61296
+ try {
61297
+ if (enableProfiling) {
61298
+ try {
61299
+ return workLoop(hasTimeRemaining, initialTime);
61300
+ } catch (error) {
61301
+ if (currentTask !== null) {
61302
+ var currentTime = exports.unstable_now();
61303
+ markTaskErrored(currentTask, currentTime);
61304
+ currentTask.isQueued = false;
61305
+ }
61173
61306
 
61174
- scrollDiv.style.position = 'absolute';
61175
- scrollDiv.style.top = '-9999px';
61176
- scrollDiv.style.width = '50px';
61177
- scrollDiv.style.height = '50px';
61178
- scrollDiv.style.overflow = 'scroll';
61179
- document.body.appendChild(scrollDiv);
61180
- var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
61181
- document.body.removeChild(scrollDiv);
61182
- return scrollbarWidth;
61183
- }
61184
- function setScrollbarWidth(padding) {
61185
- document.body.style.paddingRight = padding > 0 ? padding + "px" : null;
61186
- }
61187
- function isBodyOverflowing() {
61188
- return document.body.clientWidth < window.innerWidth;
61189
- }
61190
- function getOriginalBodyPadding() {
61191
- var style = window.getComputedStyle(document.body, null);
61192
- return parseInt(style && style.getPropertyValue('padding-right') || 0, 10);
61307
+ throw error;
61308
+ }
61309
+ } else {
61310
+ // No catch in prod code path.
61311
+ return workLoop(hasTimeRemaining, initialTime);
61312
+ }
61313
+ } finally {
61314
+ currentTask = null;
61315
+ currentPriorityLevel = previousPriorityLevel;
61316
+ isPerformingWork = false;
61317
+ }
61193
61318
  }
61194
- function conditionallyUpdateScrollbar() {
61195
- var scrollbarWidth = getScrollbarWidth(); // https://github.com/twbs/bootstrap/blob/v4.0.0-alpha.6/js/src/modal.js#L433
61196
61319
 
61197
- var fixedContent = document.querySelectorAll('.fixed-top, .fixed-bottom, .is-fixed, .sticky-top')[0];
61198
- var bodyPadding = fixedContent ? parseInt(fixedContent.style.paddingRight || 0, 10) : 0;
61320
+ function workLoop(hasTimeRemaining, initialTime) {
61321
+ var currentTime = initialTime;
61322
+ advanceTimers(currentTime);
61323
+ currentTask = peek(taskQueue);
61199
61324
 
61200
- if (isBodyOverflowing()) {
61201
- setScrollbarWidth(bodyPadding + scrollbarWidth);
61202
- }
61203
- }
61204
- var globalCssModule;
61205
- function setGlobalCssModule(cssModule) {
61206
- globalCssModule = cssModule;
61207
- }
61208
- function mapToCssModules(className, cssModule) {
61209
- if (className === void 0) {
61210
- className = '';
61211
- }
61325
+ while (currentTask !== null && !(enableSchedulerDebugging )) {
61326
+ if (currentTask.expirationTime > currentTime && (!hasTimeRemaining || shouldYieldToHost())) {
61327
+ // This currentTask hasn't expired, and we've reached the deadline.
61328
+ break;
61329
+ }
61212
61330
 
61213
- if (cssModule === void 0) {
61214
- cssModule = globalCssModule;
61215
- }
61331
+ var callback = currentTask.callback;
61216
61332
 
61217
- if (!cssModule) return className;
61218
- return className.split(' ').map(function (c) {
61219
- return cssModule[c] || c;
61220
- }).join(' ');
61221
- }
61222
- /**
61223
- * Returns a new object with the key/value pairs from `obj` that are not in the array `omitKeys`.
61224
- */
61333
+ if (typeof callback === 'function') {
61334
+ currentTask.callback = null;
61335
+ currentPriorityLevel = currentTask.priorityLevel;
61336
+ var didUserCallbackTimeout = currentTask.expirationTime <= currentTime;
61225
61337
 
61226
- function omit(obj, omitKeys) {
61227
- var result = {};
61228
- Object.keys(obj).forEach(function (key) {
61229
- if (omitKeys.indexOf(key) === -1) {
61230
- result[key] = obj[key];
61231
- }
61232
- });
61233
- return result;
61234
- }
61235
- /**
61236
- * Returns a filtered copy of an object with only the specified keys.
61237
- */
61338
+ var continuationCallback = callback(didUserCallbackTimeout);
61339
+ currentTime = exports.unstable_now();
61238
61340
 
61239
- function pick(obj, keys) {
61240
- var pickKeys = Array.isArray(keys) ? keys : [keys];
61241
- var length = pickKeys.length;
61242
- var key;
61243
- var result = {};
61341
+ if (typeof continuationCallback === 'function') {
61342
+ currentTask.callback = continuationCallback;
61343
+ } else {
61244
61344
 
61245
- while (length > 0) {
61246
- length -= 1;
61247
- key = pickKeys[length];
61248
- result[key] = obj[key];
61249
- }
61345
+ if (currentTask === peek(taskQueue)) {
61346
+ pop(taskQueue);
61347
+ }
61348
+ }
61250
61349
 
61251
- return result;
61252
- }
61253
- var warned = {};
61254
- function warnOnce(message) {
61255
- if (!warned[message]) {
61256
- /* istanbul ignore else */
61257
- if (typeof console !== 'undefined') {
61258
- console.error(message); // eslint-disable-line no-console
61350
+ advanceTimers(currentTime);
61351
+ } else {
61352
+ pop(taskQueue);
61259
61353
  }
61260
61354
 
61261
- warned[message] = true;
61262
- }
61263
- }
61264
- function deprecated(propType, explanation) {
61265
- return function validate(props, propName, componentName) {
61266
- if (props[propName] !== null && typeof props[propName] !== 'undefined') {
61267
- warnOnce("\"" + propName + "\" property of \"" + componentName + "\" has been deprecated.\n" + explanation);
61268
- }
61355
+ currentTask = peek(taskQueue);
61356
+ } // Return whether there's additional work
61269
61357
 
61270
- for (var _len = arguments.length, rest = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
61271
- rest[_key - 3] = arguments[_key];
61272
- }
61273
61358
 
61274
- return propType.apply(void 0, [props, propName, componentName].concat(rest));
61275
- };
61276
- } // Shim Element if needed (e.g. in Node environment)
61359
+ if (currentTask !== null) {
61360
+ return true;
61361
+ } else {
61362
+ var firstTimer = peek(timerQueue);
61277
61363
 
61278
- var Element = typeof window === 'object' && window.Element || function () {};
61364
+ if (firstTimer !== null) {
61365
+ requestHostTimeout(handleTimeout, firstTimer.startTime - currentTime);
61366
+ }
61279
61367
 
61280
- function DOMElement(props, propName, componentName) {
61281
- if (!(props[propName] instanceof Element)) {
61282
- return new Error('Invalid prop `' + propName + '` supplied to `' + componentName + '`. Expected prop to be an instance of Element. Validation failed.');
61368
+ return false;
61283
61369
  }
61284
61370
  }
61285
- var targetPropType = prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().string), (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func), DOMElement, prop_types__WEBPACK_IMPORTED_MODULE_0___default().shape({
61286
- current: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().any)
61287
- })]);
61288
- var tagPropType = prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().func), (prop_types__WEBPACK_IMPORTED_MODULE_0___default().string), prop_types__WEBPACK_IMPORTED_MODULE_0___default().shape({
61289
- $$typeof: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().symbol),
61290
- render: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func)
61291
- }), prop_types__WEBPACK_IMPORTED_MODULE_0___default().arrayOf(prop_types__WEBPACK_IMPORTED_MODULE_0___default().oneOfType([(prop_types__WEBPACK_IMPORTED_MODULE_0___default().func), (prop_types__WEBPACK_IMPORTED_MODULE_0___default().string), prop_types__WEBPACK_IMPORTED_MODULE_0___default().shape({
61292
- $$typeof: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().symbol),
61293
- render: (prop_types__WEBPACK_IMPORTED_MODULE_0___default().func)
61294
- })]))]);
61295
- /* eslint key-spacing: ["error", { afterColon: true, align: "value" }] */
61296
- // These are all setup to match what is in the bootstrap _variables.scss
61297
- // https://github.com/twbs/bootstrap/blob/v4-dev/scss/_variables.scss
61298
-
61299
- var TransitionTimeouts = {
61300
- Fade: 150,
61301
- // $transition-fade
61302
- Collapse: 350,
61303
- // $transition-collapse
61304
- Modal: 300,
61305
- // $modal-transition
61306
- Carousel: 600 // $carousel-transition
61307
61371
 
61308
- }; // Duplicated Transition.propType keys to ensure that Reactstrap builds
61309
- // for distribution properly exclude these keys for nested child HTML attributes
61310
- // since `react-transition-group` removes propTypes in production builds.
61372
+ function unstable_runWithPriority(priorityLevel, eventHandler) {
61373
+ switch (priorityLevel) {
61374
+ case ImmediatePriority:
61375
+ case UserBlockingPriority:
61376
+ case NormalPriority:
61377
+ case LowPriority:
61378
+ case IdlePriority:
61379
+ break;
61311
61380
 
61312
- var TransitionPropTypeKeys = ['in', 'mountOnEnter', 'unmountOnExit', 'appear', 'enter', 'exit', 'timeout', 'onEnter', 'onEntering', 'onEntered', 'onExit', 'onExiting', 'onExited'];
61313
- var TransitionStatuses = {
61314
- ENTERING: 'entering',
61315
- ENTERED: 'entered',
61316
- EXITING: 'exiting',
61317
- EXITED: 'exited'
61318
- };
61319
- var keyCodes = {
61320
- esc: 27,
61321
- space: 32,
61322
- enter: 13,
61323
- tab: 9,
61324
- up: 38,
61325
- down: 40,
61326
- home: 36,
61327
- end: 35,
61328
- n: 78,
61329
- p: 80
61330
- };
61331
- var PopperPlacements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];
61332
- var canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);
61333
- function isReactRefObj(target) {
61334
- if (target && typeof target === 'object') {
61335
- return 'current' in target;
61381
+ default:
61382
+ priorityLevel = NormalPriority;
61336
61383
  }
61337
61384
 
61338
- return false;
61339
- }
61385
+ var previousPriorityLevel = currentPriorityLevel;
61386
+ currentPriorityLevel = priorityLevel;
61340
61387
 
61341
- function getTag(value) {
61342
- if (value == null) {
61343
- return value === undefined ? '[object Undefined]' : '[object Null]';
61388
+ try {
61389
+ return eventHandler();
61390
+ } finally {
61391
+ currentPriorityLevel = previousPriorityLevel;
61344
61392
  }
61345
-
61346
- return Object.prototype.toString.call(value);
61347
61393
  }
61348
61394
 
61349
- function toNumber(value) {
61350
- var type = typeof value;
61351
- var NAN = 0 / 0;
61352
-
61353
- if (type === 'number') {
61354
- return value;
61355
- }
61356
-
61357
- if (type === 'symbol' || type === 'object' && getTag(value) === '[object Symbol]') {
61358
- return NAN;
61359
- }
61360
-
61361
- if (isObject(value)) {
61362
- var other = typeof value.valueOf === 'function' ? value.valueOf() : value;
61363
- value = isObject(other) ? "" + other : other;
61364
- }
61395
+ function unstable_next(eventHandler) {
61396
+ var priorityLevel;
61365
61397
 
61366
- if (type !== 'string') {
61367
- return value === 0 ? value : +value;
61368
- }
61398
+ switch (currentPriorityLevel) {
61399
+ case ImmediatePriority:
61400
+ case UserBlockingPriority:
61401
+ case NormalPriority:
61402
+ // Shift down to normal priority
61403
+ priorityLevel = NormalPriority;
61404
+ break;
61369
61405
 
61370
- value = value.replace(/^\s+|\s+$/g, '');
61371
- var isBinary = /^0b[01]+$/i.test(value);
61372
- return isBinary || /^0o[0-7]+$/i.test(value) ? parseInt(value.slice(2), isBinary ? 2 : 8) : /^[-+]0x[0-9a-f]+$/i.test(value) ? NAN : +value;
61373
- }
61374
- function isObject(value) {
61375
- var type = typeof value;
61376
- return value != null && (type === 'object' || type === 'function');
61377
- }
61378
- function isFunction(value) {
61379
- if (!isObject(value)) {
61380
- return false;
61406
+ default:
61407
+ // Anything lower than normal priority should remain at the current level.
61408
+ priorityLevel = currentPriorityLevel;
61409
+ break;
61381
61410
  }
61382
61411
 
61383
- var tag = getTag(value);
61384
- return tag === '[object Function]' || tag === '[object AsyncFunction]' || tag === '[object GeneratorFunction]' || tag === '[object Proxy]';
61385
- }
61386
- function findDOMElements(target) {
61387
- if (isReactRefObj(target)) {
61388
- return target.current;
61389
- }
61412
+ var previousPriorityLevel = currentPriorityLevel;
61413
+ currentPriorityLevel = priorityLevel;
61390
61414
 
61391
- if (isFunction(target)) {
61392
- return target();
61415
+ try {
61416
+ return eventHandler();
61417
+ } finally {
61418
+ currentPriorityLevel = previousPriorityLevel;
61393
61419
  }
61420
+ }
61394
61421
 
61395
- if (typeof target === 'string' && canUseDOM) {
61396
- var selection = document.querySelectorAll(target);
61397
-
61398
- if (!selection.length) {
61399
- selection = document.querySelectorAll("#" + target);
61400
- }
61422
+ function unstable_wrapCallback(callback) {
61423
+ var parentPriorityLevel = currentPriorityLevel;
61424
+ return function () {
61425
+ // This is a fork of runWithPriority, inlined for performance.
61426
+ var previousPriorityLevel = currentPriorityLevel;
61427
+ currentPriorityLevel = parentPriorityLevel;
61401
61428
 
61402
- if (!selection.length) {
61403
- throw new Error("The target '" + target + "' could not be identified in the dom, tip: check spelling");
61429
+ try {
61430
+ return callback.apply(this, arguments);
61431
+ } finally {
61432
+ currentPriorityLevel = previousPriorityLevel;
61404
61433
  }
61405
-
61406
- return selection;
61407
- }
61408
-
61409
- return target;
61434
+ };
61410
61435
  }
61411
- function isArrayOrNodeList(els) {
61412
- if (els === null) {
61413
- return false;
61414
- }
61415
61436
 
61416
- return Array.isArray(els) || canUseDOM && typeof els.length === 'number';
61417
- }
61418
- function getTarget(target, allElements) {
61419
- var els = findDOMElements(target);
61437
+ function unstable_scheduleCallback(priorityLevel, callback, options) {
61438
+ var currentTime = exports.unstable_now();
61439
+ var startTime;
61420
61440
 
61421
- if (allElements) {
61422
- if (isArrayOrNodeList(els)) {
61423
- return els;
61424
- }
61441
+ if (typeof options === 'object' && options !== null) {
61442
+ var delay = options.delay;
61425
61443
 
61426
- if (els === null) {
61427
- return [];
61444
+ if (typeof delay === 'number' && delay > 0) {
61445
+ startTime = currentTime + delay;
61446
+ } else {
61447
+ startTime = currentTime;
61428
61448
  }
61429
-
61430
- return [els];
61431
61449
  } else {
61432
- if (isArrayOrNodeList(els)) {
61433
- return els[0];
61434
- }
61435
-
61436
- return els;
61450
+ startTime = currentTime;
61437
61451
  }
61438
- }
61439
- var defaultToggleEvents = ['touchstart', 'click'];
61440
- function addMultipleEventListeners(_els, handler, _events, useCapture) {
61441
- var els = _els;
61442
61452
 
61443
- if (!isArrayOrNodeList(els)) {
61444
- els = [els];
61445
- }
61453
+ var timeout;
61446
61454
 
61447
- var events = _events;
61455
+ switch (priorityLevel) {
61456
+ case ImmediatePriority:
61457
+ timeout = IMMEDIATE_PRIORITY_TIMEOUT;
61458
+ break;
61448
61459
 
61449
- if (typeof events === 'string') {
61450
- events = events.split(/\s+/);
61451
- }
61460
+ case UserBlockingPriority:
61461
+ timeout = USER_BLOCKING_PRIORITY_TIMEOUT;
61462
+ break;
61452
61463
 
61453
- if (!isArrayOrNodeList(els) || typeof handler !== 'function' || !Array.isArray(events)) {
61454
- throw new Error("\n The first argument of this function must be DOM node or an array on DOM nodes or NodeList.\n The second must be a function.\n The third is a string or an array of strings that represents DOM events\n ");
61464
+ case IdlePriority:
61465
+ timeout = IDLE_PRIORITY_TIMEOUT;
61466
+ break;
61467
+
61468
+ case LowPriority:
61469
+ timeout = LOW_PRIORITY_TIMEOUT;
61470
+ break;
61471
+
61472
+ case NormalPriority:
61473
+ default:
61474
+ timeout = NORMAL_PRIORITY_TIMEOUT;
61475
+ break;
61455
61476
  }
61456
61477
 
61457
- Array.prototype.forEach.call(events, function (event) {
61458
- Array.prototype.forEach.call(els, function (el) {
61459
- el.addEventListener(event, handler, useCapture);
61460
- });
61461
- });
61462
- return function removeEvents() {
61463
- Array.prototype.forEach.call(events, function (event) {
61464
- Array.prototype.forEach.call(els, function (el) {
61465
- el.removeEventListener(event, handler, useCapture);
61466
- });
61467
- });
61478
+ var expirationTime = startTime + timeout;
61479
+ var newTask = {
61480
+ id: taskIdCounter++,
61481
+ callback: callback,
61482
+ priorityLevel: priorityLevel,
61483
+ startTime: startTime,
61484
+ expirationTime: expirationTime,
61485
+ sortIndex: -1
61468
61486
  };
61469
- }
61470
- var focusableElements = ['a[href]', 'area[href]', 'input:not([disabled]):not([type=hidden])', 'select:not([disabled])', 'textarea:not([disabled])', 'button:not([disabled])', 'object', 'embed', '[tabindex]:not(.modal)', 'audio[controls]', 'video[controls]', '[contenteditable]:not([contenteditable="false"])'];
61471
-
61472
- /***/ }),
61473
61487
 
61474
- /***/ "../../../node_modules/regexp.prototype.flags/implementation.js":
61475
- /*!**********************************************************************!*\
61476
- !*** ../../../node_modules/regexp.prototype.flags/implementation.js ***!
61477
- \**********************************************************************/
61478
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
61488
+ if (startTime > currentTime) {
61489
+ // This is a delayed task.
61490
+ newTask.sortIndex = startTime;
61491
+ push(timerQueue, newTask);
61479
61492
 
61480
- "use strict";
61493
+ if (peek(taskQueue) === null && newTask === peek(timerQueue)) {
61494
+ // All tasks are delayed, and this is the task with the earliest delay.
61495
+ if (isHostTimeoutScheduled) {
61496
+ // Cancel an existing timeout.
61497
+ cancelHostTimeout();
61498
+ } else {
61499
+ isHostTimeoutScheduled = true;
61500
+ } // Schedule a timeout.
61481
61501
 
61482
61502
 
61483
- var functionsHaveConfigurableNames = (__webpack_require__(/*! functions-have-names */ "../../../node_modules/functions-have-names/index.js").functionsHaveConfigurableNames)();
61503
+ requestHostTimeout(handleTimeout, startTime - currentTime);
61504
+ }
61505
+ } else {
61506
+ newTask.sortIndex = expirationTime;
61507
+ push(taskQueue, newTask);
61508
+ // wait until the next time we yield.
61484
61509
 
61485
- var $Object = Object;
61486
- var $TypeError = TypeError;
61487
61510
 
61488
- module.exports = function flags() {
61489
- if (this != null && this !== $Object(this)) {
61490
- throw new $TypeError('RegExp.prototype.flags getter called on non-object');
61491
- }
61492
- var result = '';
61493
- if (this.hasIndices) {
61494
- result += 'd';
61495
- }
61496
- if (this.global) {
61497
- result += 'g';
61498
- }
61499
- if (this.ignoreCase) {
61500
- result += 'i';
61501
- }
61502
- if (this.multiline) {
61503
- result += 'm';
61504
- }
61505
- if (this.dotAll) {
61506
- result += 's';
61507
- }
61508
- if (this.unicode) {
61509
- result += 'u';
61510
- }
61511
- if (this.sticky) {
61512
- result += 'y';
61513
- }
61514
- return result;
61515
- };
61511
+ if (!isHostCallbackScheduled && !isPerformingWork) {
61512
+ isHostCallbackScheduled = true;
61513
+ requestHostCallback(flushWork);
61514
+ }
61515
+ }
61516
61516
 
61517
- if (functionsHaveConfigurableNames && Object.defineProperty) {
61518
- Object.defineProperty(module.exports, "name", ({ value: 'get flags' }));
61517
+ return newTask;
61519
61518
  }
61520
61519
 
61520
+ function unstable_pauseExecution() {
61521
+ }
61521
61522
 
61522
- /***/ }),
61523
-
61524
- /***/ "../../../node_modules/regexp.prototype.flags/index.js":
61525
- /*!*************************************************************!*\
61526
- !*** ../../../node_modules/regexp.prototype.flags/index.js ***!
61527
- \*************************************************************/
61528
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
61529
-
61530
- "use strict";
61531
-
61523
+ function unstable_continueExecution() {
61532
61524
 
61533
- var define = __webpack_require__(/*! define-properties */ "../../../node_modules/define-properties/index.js");
61534
- var callBind = __webpack_require__(/*! call-bind */ "../../../node_modules/call-bind/index.js");
61525
+ if (!isHostCallbackScheduled && !isPerformingWork) {
61526
+ isHostCallbackScheduled = true;
61527
+ requestHostCallback(flushWork);
61528
+ }
61529
+ }
61535
61530
 
61536
- var implementation = __webpack_require__(/*! ./implementation */ "../../../node_modules/regexp.prototype.flags/implementation.js");
61537
- var getPolyfill = __webpack_require__(/*! ./polyfill */ "../../../node_modules/regexp.prototype.flags/polyfill.js");
61538
- var shim = __webpack_require__(/*! ./shim */ "../../../node_modules/regexp.prototype.flags/shim.js");
61531
+ function unstable_getFirstCallbackNode() {
61532
+ return peek(taskQueue);
61533
+ }
61539
61534
 
61540
- var flagsBound = callBind(getPolyfill());
61535
+ function unstable_cancelCallback(task) {
61536
+ // remove from the queue because you can't remove arbitrary nodes from an
61537
+ // array based heap, only the first one.)
61541
61538
 
61542
- define(flagsBound, {
61543
- getPolyfill: getPolyfill,
61544
- implementation: implementation,
61545
- shim: shim
61546
- });
61547
61539
 
61548
- module.exports = flagsBound;
61540
+ task.callback = null;
61541
+ }
61549
61542
 
61543
+ function unstable_getCurrentPriorityLevel() {
61544
+ return currentPriorityLevel;
61545
+ }
61550
61546
 
61551
- /***/ }),
61547
+ var isMessageLoopRunning = false;
61548
+ var scheduledHostCallback = null;
61549
+ var taskTimeoutID = -1; // Scheduler periodically yields in case there is other work on the main
61550
+ // thread, like user events. By default, it yields multiple times per frame.
61551
+ // It does not attempt to align with frame boundaries, since most tasks don't
61552
+ // need to be frame aligned; for those that do, use requestAnimationFrame.
61552
61553
 
61553
- /***/ "../../../node_modules/regexp.prototype.flags/polyfill.js":
61554
- /*!****************************************************************!*\
61555
- !*** ../../../node_modules/regexp.prototype.flags/polyfill.js ***!
61556
- \****************************************************************/
61557
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
61554
+ var frameInterval = frameYieldMs;
61555
+ var startTime = -1;
61558
61556
 
61559
- "use strict";
61557
+ function shouldYieldToHost() {
61558
+ var timeElapsed = exports.unstable_now() - startTime;
61560
61559
 
61560
+ if (timeElapsed < frameInterval) {
61561
+ // The main thread has only been blocked for a really short amount of time;
61562
+ // smaller than a single frame. Don't yield yet.
61563
+ return false;
61564
+ } // The main thread has been blocked for a non-negligible amount of time. We
61561
61565
 
61562
- var implementation = __webpack_require__(/*! ./implementation */ "../../../node_modules/regexp.prototype.flags/implementation.js");
61563
61566
 
61564
- var supportsDescriptors = (__webpack_require__(/*! define-properties */ "../../../node_modules/define-properties/index.js").supportsDescriptors);
61565
- var $gOPD = Object.getOwnPropertyDescriptor;
61567
+ return true;
61568
+ }
61566
61569
 
61567
- module.exports = function getPolyfill() {
61568
- if (supportsDescriptors && (/a/mig).flags === 'gim') {
61569
- var descriptor = $gOPD(RegExp.prototype, 'flags');
61570
- if (
61571
- descriptor
61572
- && typeof descriptor.get === 'function'
61573
- && typeof RegExp.prototype.dotAll === 'boolean'
61574
- && typeof RegExp.prototype.hasIndices === 'boolean'
61575
- ) {
61576
- /* eslint getter-return: 0 */
61577
- var calls = '';
61578
- var o = {};
61579
- Object.defineProperty(o, 'hasIndices', {
61580
- get: function () {
61581
- calls += 'd';
61582
- }
61583
- });
61584
- Object.defineProperty(o, 'sticky', {
61585
- get: function () {
61586
- calls += 'y';
61587
- }
61588
- });
61589
- if (calls === 'dy') {
61590
- return descriptor.get;
61591
- }
61592
- }
61593
- }
61594
- return implementation;
61595
- };
61570
+ function requestPaint() {
61596
61571
 
61572
+ }
61597
61573
 
61598
- /***/ }),
61574
+ function forceFrameRate(fps) {
61575
+ if (fps < 0 || fps > 125) {
61576
+ // Using console['error'] to evade Babel and ESLint
61577
+ console['error']('forceFrameRate takes a positive int between 0 and 125, ' + 'forcing frame rates higher than 125 fps is not supported');
61578
+ return;
61579
+ }
61599
61580
 
61600
- /***/ "../../../node_modules/regexp.prototype.flags/shim.js":
61601
- /*!************************************************************!*\
61602
- !*** ../../../node_modules/regexp.prototype.flags/shim.js ***!
61603
- \************************************************************/
61604
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
61581
+ if (fps > 0) {
61582
+ frameInterval = Math.floor(1000 / fps);
61583
+ } else {
61584
+ // reset the framerate
61585
+ frameInterval = frameYieldMs;
61586
+ }
61587
+ }
61605
61588
 
61606
- "use strict";
61589
+ var performWorkUntilDeadline = function () {
61590
+ if (scheduledHostCallback !== null) {
61591
+ var currentTime = exports.unstable_now(); // Keep track of the start time so we can measure how long the main thread
61592
+ // has been blocked.
61607
61593
 
61594
+ startTime = currentTime;
61595
+ var hasTimeRemaining = true; // If a scheduler task throws, exit the current browser task so the
61596
+ // error can be observed.
61597
+ //
61598
+ // Intentionally not using a try-catch, since that makes some debugging
61599
+ // techniques harder. Instead, if `scheduledHostCallback` errors, then
61600
+ // `hasMoreWork` will remain true, and we'll continue the work loop.
61608
61601
 
61609
- var supportsDescriptors = (__webpack_require__(/*! define-properties */ "../../../node_modules/define-properties/index.js").supportsDescriptors);
61610
- var getPolyfill = __webpack_require__(/*! ./polyfill */ "../../../node_modules/regexp.prototype.flags/polyfill.js");
61611
- var gOPD = Object.getOwnPropertyDescriptor;
61612
- var defineProperty = Object.defineProperty;
61613
- var TypeErr = TypeError;
61614
- var getProto = Object.getPrototypeOf;
61615
- var regex = /a/;
61602
+ var hasMoreWork = true;
61616
61603
 
61617
- module.exports = function shimFlags() {
61618
- if (!supportsDescriptors || !getProto) {
61619
- throw new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');
61620
- }
61621
- var polyfill = getPolyfill();
61622
- var proto = getProto(regex);
61623
- var descriptor = gOPD(proto, 'flags');
61624
- if (!descriptor || descriptor.get !== polyfill) {
61625
- defineProperty(proto, 'flags', {
61626
- configurable: true,
61627
- enumerable: false,
61628
- get: polyfill
61629
- });
61630
- }
61631
- return polyfill;
61604
+ try {
61605
+ hasMoreWork = scheduledHostCallback(hasTimeRemaining, currentTime);
61606
+ } finally {
61607
+ if (hasMoreWork) {
61608
+ // If there's more work, schedule the next message event at the end
61609
+ // of the preceding one.
61610
+ schedulePerformWorkUntilDeadline();
61611
+ } else {
61612
+ isMessageLoopRunning = false;
61613
+ scheduledHostCallback = null;
61614
+ }
61615
+ }
61616
+ } else {
61617
+ isMessageLoopRunning = false;
61618
+ } // Yielding to the browser will give it a chance to paint, so we can
61632
61619
  };
61633
61620
 
61621
+ var schedulePerformWorkUntilDeadline;
61634
61622
 
61635
- /***/ }),
61636
-
61637
- /***/ "../../../node_modules/resolve-pathname/esm/resolve-pathname.js":
61638
- /*!**********************************************************************!*\
61639
- !*** ../../../node_modules/resolve-pathname/esm/resolve-pathname.js ***!
61640
- \**********************************************************************/
61641
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
61623
+ if (typeof localSetImmediate === 'function') {
61624
+ // Node.js and old IE.
61625
+ // There's a few reasons for why we prefer setImmediate.
61626
+ //
61627
+ // Unlike MessageChannel, it doesn't prevent a Node.js process from exiting.
61628
+ // (Even though this is a DOM fork of the Scheduler, you could get here
61629
+ // with a mix of Node.js 15+, which has a MessageChannel, and jsdom.)
61630
+ // https://github.com/facebook/react/issues/20756
61631
+ //
61632
+ // But also, it runs earlier which is the semantic we want.
61633
+ // If other browsers ever implement it, it's better to use it.
61634
+ // Although both of these would be inferior to native scheduling.
61635
+ schedulePerformWorkUntilDeadline = function () {
61636
+ localSetImmediate(performWorkUntilDeadline);
61637
+ };
61638
+ } else if (typeof MessageChannel !== 'undefined') {
61639
+ // DOM and Worker environments.
61640
+ // We prefer MessageChannel because of the 4ms setTimeout clamping.
61641
+ var channel = new MessageChannel();
61642
+ var port = channel.port2;
61643
+ channel.port1.onmessage = performWorkUntilDeadline;
61642
61644
 
61643
- "use strict";
61644
- __webpack_require__.r(__webpack_exports__);
61645
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
61646
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
61647
- /* harmony export */ });
61648
- function isAbsolute(pathname) {
61649
- return pathname.charAt(0) === '/';
61645
+ schedulePerformWorkUntilDeadline = function () {
61646
+ port.postMessage(null);
61647
+ };
61648
+ } else {
61649
+ // We should only fallback here in non-browser environments.
61650
+ schedulePerformWorkUntilDeadline = function () {
61651
+ localSetTimeout(performWorkUntilDeadline, 0);
61652
+ };
61650
61653
  }
61651
61654
 
61652
- // About 1.5x faster than the two-arg version of Array#splice()
61653
- function spliceOne(list, index) {
61654
- for (var i = index, k = i + 1, n = list.length; k < n; i += 1, k += 1) {
61655
- list[i] = list[k];
61656
- }
61655
+ function requestHostCallback(callback) {
61656
+ scheduledHostCallback = callback;
61657
61657
 
61658
- list.pop();
61658
+ if (!isMessageLoopRunning) {
61659
+ isMessageLoopRunning = true;
61660
+ schedulePerformWorkUntilDeadline();
61661
+ }
61659
61662
  }
61660
61663
 
61661
- // This implementation is based heavily on node's url.parse
61662
- function resolvePathname(to, from) {
61663
- if (from === undefined) from = '';
61664
-
61665
- var toParts = (to && to.split('/')) || [];
61666
- var fromParts = (from && from.split('/')) || [];
61667
-
61668
- var isToAbs = to && isAbsolute(to);
61669
- var isFromAbs = from && isAbsolute(from);
61670
- var mustEndAbs = isToAbs || isFromAbs;
61671
-
61672
- if (to && isAbsolute(to)) {
61673
- // to is absolute
61674
- fromParts = toParts;
61675
- } else if (toParts.length) {
61676
- // to is relative, drop the filename
61677
- fromParts.pop();
61678
- fromParts = fromParts.concat(toParts);
61679
- }
61664
+ function requestHostTimeout(callback, ms) {
61665
+ taskTimeoutID = localSetTimeout(function () {
61666
+ callback(exports.unstable_now());
61667
+ }, ms);
61668
+ }
61680
61669
 
61681
- if (!fromParts.length) return '/';
61670
+ function cancelHostTimeout() {
61671
+ localClearTimeout(taskTimeoutID);
61672
+ taskTimeoutID = -1;
61673
+ }
61682
61674
 
61683
- var hasTrailingSlash;
61684
- if (fromParts.length) {
61685
- var last = fromParts[fromParts.length - 1];
61686
- hasTrailingSlash = last === '.' || last === '..' || last === '';
61687
- } else {
61688
- hasTrailingSlash = false;
61689
- }
61675
+ var unstable_requestPaint = requestPaint;
61676
+ var unstable_Profiling = null;
61690
61677
 
61691
- var up = 0;
61692
- for (var i = fromParts.length; i >= 0; i--) {
61693
- var part = fromParts[i];
61678
+ exports.unstable_IdlePriority = IdlePriority;
61679
+ exports.unstable_ImmediatePriority = ImmediatePriority;
61680
+ exports.unstable_LowPriority = LowPriority;
61681
+ exports.unstable_NormalPriority = NormalPriority;
61682
+ exports.unstable_Profiling = unstable_Profiling;
61683
+ exports.unstable_UserBlockingPriority = UserBlockingPriority;
61684
+ exports.unstable_cancelCallback = unstable_cancelCallback;
61685
+ exports.unstable_continueExecution = unstable_continueExecution;
61686
+ exports.unstable_forceFrameRate = forceFrameRate;
61687
+ exports.unstable_getCurrentPriorityLevel = unstable_getCurrentPriorityLevel;
61688
+ exports.unstable_getFirstCallbackNode = unstable_getFirstCallbackNode;
61689
+ exports.unstable_next = unstable_next;
61690
+ exports.unstable_pauseExecution = unstable_pauseExecution;
61691
+ exports.unstable_requestPaint = unstable_requestPaint;
61692
+ exports.unstable_runWithPriority = unstable_runWithPriority;
61693
+ exports.unstable_scheduleCallback = unstable_scheduleCallback;
61694
+ exports.unstable_shouldYield = shouldYieldToHost;
61695
+ exports.unstable_wrapCallback = unstable_wrapCallback;
61696
+ /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
61697
+ if (
61698
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' &&
61699
+ typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop ===
61700
+ 'function'
61701
+ ) {
61702
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error());
61703
+ }
61704
+
61705
+ })();
61706
+ }
61694
61707
 
61695
- if (part === '.') {
61696
- spliceOne(fromParts, i);
61697
- } else if (part === '..') {
61698
- spliceOne(fromParts, i);
61699
- up++;
61700
- } else if (up) {
61701
- spliceOne(fromParts, i);
61702
- up--;
61703
- }
61704
- }
61705
61708
 
61706
- if (!mustEndAbs) for (; up--; up) fromParts.unshift('..');
61709
+ /***/ }),
61707
61710
 
61708
- if (
61709
- mustEndAbs &&
61710
- fromParts[0] !== '' &&
61711
- (!fromParts[0] || !isAbsolute(fromParts[0]))
61712
- )
61713
- fromParts.unshift('');
61711
+ /***/ "../../../node_modules/scheduler/index.js":
61712
+ /*!************************************************!*\
61713
+ !*** ../../../node_modules/scheduler/index.js ***!
61714
+ \************************************************/
61715
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
61714
61716
 
61715
- var result = fromParts.join('/');
61717
+ "use strict";
61716
61718
 
61717
- if (hasTrailingSlash && result.substr(-1) !== '/') result += '/';
61718
61719
 
61719
- return result;
61720
+ if (false) {} else {
61721
+ module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */ "../../../node_modules/scheduler/cjs/scheduler.development.js");
61720
61722
  }
61721
61723
 
61722
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (resolvePathname);
61723
-
61724
61724
 
61725
61725
  /***/ }),
61726
61726
 
@@ -65168,4 +65168,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement(piral
65168
65168
 
65169
65169
  /******/ })()
65170
65170
  ;
65171
- //# sourceMappingURL=index.30f9a4.js.map
65171
+ //# sourceMappingURL=index.6a85c6.js.map