@seamly/web-ui 25.5.0 → 25.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dist/lib/index.debug.js +256 -136
- package/build/dist/lib/index.debug.js.map +1 -1
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.debug.min.js.LICENSE.txt +3 -3
- package/build/dist/lib/index.debug.min.js.map +1 -1
- package/build/dist/lib/index.js +274 -155
- package/build/dist/lib/index.js.map +1 -1
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/index.min.js.LICENSE.txt +3 -3
- package/build/dist/lib/index.min.js.map +1 -1
- package/build/dist/lib/style-guide.js +97 -53
- package/build/dist/lib/style-guide.js.map +1 -1
- package/build/dist/lib/style-guide.min.js +1 -1
- package/build/dist/lib/style-guide.min.js.map +1 -1
- package/package.json +22 -22
- package/src/javascripts/core/api/asyncapi.types.ts +1 -2
- package/src/javascripts/core/domains/store/store.types.ts +1 -4
- package/src/javascripts/core/domains/translations/components/options-button.tsx +2 -1
- package/src/javascripts/core/domains/translations/components/options-dialog/index.tsx +3 -0
- package/src/javascripts/core/ui/components/conversation/conversation.tsx +1 -2
- package/src/javascripts/core/ui/components/options/options-frame.tsx +3 -1
- package/src/javascripts/core/ui/hooks/use-click-outside.ts +6 -2
- package/src/javascripts/style-guide/states.ts +32 -18
|
@@ -863,7 +863,7 @@ class API {
|
|
|
863
863
|
return {
|
|
864
864
|
clientName: "@seamly/web-ui",
|
|
865
865
|
clientVariant: this.#layoutMode,
|
|
866
|
-
clientVersion: "25.5.
|
|
866
|
+
clientVersion: "25.5.1",
|
|
867
867
|
currentUrl: window.location.toString(),
|
|
868
868
|
screenResolution: `${window.screen.width}x${window.screen.height}`,
|
|
869
869
|
timezone: (0,_utils__WEBPACK_IMPORTED_MODULE_10__.getTimeZone)(),
|
|
@@ -3619,7 +3619,7 @@ function TranslationsOptionsButton({
|
|
|
3619
3619
|
setMenuIsOpen(false);
|
|
3620
3620
|
};
|
|
3621
3621
|
const handleToggleClick = () => {
|
|
3622
|
-
setMenuIsOpen(!
|
|
3622
|
+
setMenuIsOpen(isOpen => !isOpen);
|
|
3623
3623
|
};
|
|
3624
3624
|
const handleToggleKeyDown = e => {
|
|
3625
3625
|
if ((0,ui_utils_general_utils__WEBPACK_IMPORTED_MODULE_4__.getKey)(e) === ui_utils_general_utils__WEBPACK_IMPORTED_MODULE_4__.keyNames.ArrowDown) {
|
|
@@ -3637,6 +3637,7 @@ function TranslationsOptionsButton({
|
|
|
3637
3637
|
className: (0,lib_css__WEBPACK_IMPORTED_MODULE_0__.className)('options__dialog'),
|
|
3638
3638
|
role: "dialog",
|
|
3639
3639
|
children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_6__.jsx)(_options_dialog__WEBPACK_IMPORTED_MODULE_5__["default"], {
|
|
3640
|
+
clickOutsideEnabled: menuIsOpen,
|
|
3640
3641
|
onClose: handleDialogClose,
|
|
3641
3642
|
position: position
|
|
3642
3643
|
})
|
|
@@ -3679,6 +3680,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3679
3680
|
|
|
3680
3681
|
|
|
3681
3682
|
function TranslationsOptionsDialog({
|
|
3683
|
+
clickOutsideEnabled,
|
|
3682
3684
|
onClose,
|
|
3683
3685
|
position
|
|
3684
3686
|
}) {
|
|
@@ -3693,6 +3695,7 @@ function TranslationsOptionsDialog({
|
|
|
3693
3695
|
description: t('translations.menu.description'),
|
|
3694
3696
|
descriptionId: descriptionId,
|
|
3695
3697
|
position: position,
|
|
3698
|
+
clickOutsideEnabled: clickOutsideEnabled,
|
|
3696
3699
|
disableButtonFocusing: true,
|
|
3697
3700
|
children: /*#__PURE__*/(0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_4__.jsx)(domains_translations_components_options_dialog_translation_options__WEBPACK_IMPORTED_MODULE_1__["default"], {
|
|
3698
3701
|
describedById: descriptionId,
|
|
@@ -12039,6 +12042,7 @@ const OptionsFrame = ({
|
|
|
12039
12042
|
descriptionId,
|
|
12040
12043
|
cancelButtonText,
|
|
12041
12044
|
cancelButtonRef,
|
|
12045
|
+
clickOutsideEnabled = true,
|
|
12042
12046
|
disableButtonFocusing,
|
|
12043
12047
|
position = {
|
|
12044
12048
|
horizontal: 'left',
|
|
@@ -12066,7 +12070,7 @@ const OptionsFrame = ({
|
|
|
12066
12070
|
}
|
|
12067
12071
|
closePanel();
|
|
12068
12072
|
}, [closePanel, onCancel]);
|
|
12069
|
-
const container = (0,ui_hooks_use_click_outside__WEBPACK_IMPORTED_MODULE_4__["default"])(onCancelHandler);
|
|
12073
|
+
const container = (0,ui_hooks_use_click_outside__WEBPACK_IMPORTED_MODULE_4__["default"])(onCancelHandler, clickOutsideEnabled);
|
|
12070
12074
|
(0,preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useEffect)(() => {
|
|
12071
12075
|
(0,ui_utils_general_utils__WEBPACK_IMPORTED_MODULE_5__.focusElement)(container.current);
|
|
12072
12076
|
}, [container]);
|
|
@@ -14742,9 +14746,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14742
14746
|
/* harmony import */ var preact_hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! preact/hooks */ "preact/hooks");
|
|
14743
14747
|
/* harmony import */ var preact_hooks__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(preact_hooks__WEBPACK_IMPORTED_MODULE_0__);
|
|
14744
14748
|
|
|
14745
|
-
const useClickOutside = callback => {
|
|
14749
|
+
const useClickOutside = (callback, enabled = true) => {
|
|
14746
14750
|
const ref = (0,preact_hooks__WEBPACK_IMPORTED_MODULE_0__.useRef)(null);
|
|
14747
14751
|
(0,preact_hooks__WEBPACK_IMPORTED_MODULE_0__.useEffect)(() => {
|
|
14752
|
+
if (!enabled) {
|
|
14753
|
+
return undefined;
|
|
14754
|
+
}
|
|
14748
14755
|
const handler = el => {
|
|
14749
14756
|
if (ref.current && el.target instanceof HTMLElement && !ref.current.contains(el.target)) {
|
|
14750
14757
|
el.preventDefault();
|
|
@@ -14758,7 +14765,7 @@ const useClickOutside = callback => {
|
|
|
14758
14765
|
document.removeEventListener('click', handler, true);
|
|
14759
14766
|
document.removeEventListener('touchstart', handler, true);
|
|
14760
14767
|
};
|
|
14761
|
-
}, [callback, ref]);
|
|
14768
|
+
}, [callback, enabled, ref]);
|
|
14762
14769
|
return ref;
|
|
14763
14770
|
};
|
|
14764
14771
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (useClickOutside);
|
|
@@ -16135,7 +16142,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16135
16142
|
/* harmony export */ });
|
|
16136
16143
|
/* harmony import */ var tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tabbable */ "./node_modules/tabbable/dist/index.esm.js");
|
|
16137
16144
|
/*!
|
|
16138
|
-
* focus-trap
|
|
16145
|
+
* focus-trap 8.2.2
|
|
16139
16146
|
* @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
|
|
16140
16147
|
*/
|
|
16141
16148
|
|
|
@@ -16359,6 +16366,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16359
16366
|
returnFocusOnDeactivate: true,
|
|
16360
16367
|
escapeDeactivates: true,
|
|
16361
16368
|
delayInitialFocus: true,
|
|
16369
|
+
delayReturnFocus: true,
|
|
16362
16370
|
isolateSubtrees: false,
|
|
16363
16371
|
isKeyForward: isKeyForward,
|
|
16364
16372
|
isKeyBackward: isKeyBackward
|
|
@@ -16508,6 +16516,25 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16508
16516
|
}
|
|
16509
16517
|
return node;
|
|
16510
16518
|
};
|
|
16519
|
+
|
|
16520
|
+
/**
|
|
16521
|
+
* Gets the current activeElement. If it's a web-component and has open shadow-root
|
|
16522
|
+
* it will recursively search inside shadow roots for the "true" activeElement.
|
|
16523
|
+
*
|
|
16524
|
+
* @param {Document | ShadowRoot} el
|
|
16525
|
+
*
|
|
16526
|
+
* @returns {HTMLElement|null} The element that currently has the focus. `null` if a focused element isn't found.
|
|
16527
|
+
**/
|
|
16528
|
+
var _getActiveElement = function getActiveElement(el) {
|
|
16529
|
+
var activeElement = el.activeElement;
|
|
16530
|
+
if (!activeElement) {
|
|
16531
|
+
return null;
|
|
16532
|
+
}
|
|
16533
|
+
if (activeElement.shadowRoot && activeElement.shadowRoot.activeElement !== null) {
|
|
16534
|
+
return _getActiveElement(activeElement.shadowRoot);
|
|
16535
|
+
}
|
|
16536
|
+
return activeElement;
|
|
16537
|
+
};
|
|
16511
16538
|
var getInitialFocusNode = function getInitialFocusNode() {
|
|
16512
16539
|
var node = getNodeForOption('initialFocus', {
|
|
16513
16540
|
hasFallback: true
|
|
@@ -16518,9 +16545,11 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16518
16545
|
return false;
|
|
16519
16546
|
}
|
|
16520
16547
|
if (node === undefined || node && !(0,tabbable__WEBPACK_IMPORTED_MODULE_0__.isFocusable)(node, config.tabbableOptions)) {
|
|
16548
|
+
var activeElement = _getActiveElement(doc);
|
|
16549
|
+
|
|
16521
16550
|
// option not specified nor focusable: use fallback options
|
|
16522
|
-
if (findContainerIndex(
|
|
16523
|
-
node =
|
|
16551
|
+
if (findContainerIndex(activeElement) >= 0) {
|
|
16552
|
+
node = activeElement;
|
|
16524
16553
|
} else {
|
|
16525
16554
|
var firstTabbableGroup = state.tabbableGroups[0];
|
|
16526
16555
|
var firstTabbableNode = firstTabbableGroup && firstTabbableGroup.firstTabbableNode;
|
|
@@ -16632,25 +16661,6 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16632
16661
|
throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.");
|
|
16633
16662
|
}
|
|
16634
16663
|
};
|
|
16635
|
-
|
|
16636
|
-
/**
|
|
16637
|
-
* Gets the current activeElement. If it's a web-component and has open shadow-root
|
|
16638
|
-
* it will recursively search inside shadow roots for the "true" activeElement.
|
|
16639
|
-
*
|
|
16640
|
-
* @param {Document | ShadowRoot} el
|
|
16641
|
-
*
|
|
16642
|
-
* @returns {HTMLElement} The element that currently has the focus
|
|
16643
|
-
**/
|
|
16644
|
-
var _getActiveElement = function getActiveElement(el) {
|
|
16645
|
-
var activeElement = el.activeElement;
|
|
16646
|
-
if (!activeElement) {
|
|
16647
|
-
return;
|
|
16648
|
-
}
|
|
16649
|
-
if (activeElement.shadowRoot && activeElement.shadowRoot.activeElement !== null) {
|
|
16650
|
-
return _getActiveElement(activeElement.shadowRoot);
|
|
16651
|
-
}
|
|
16652
|
-
return activeElement;
|
|
16653
|
-
};
|
|
16654
16664
|
var _tryFocus = function tryFocus(node) {
|
|
16655
16665
|
if (node === false) {
|
|
16656
16666
|
return;
|
|
@@ -16785,7 +16795,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16785
16795
|
var checkPointerDown = function checkPointerDown(e) {
|
|
16786
16796
|
var target = getActualTarget(e);
|
|
16787
16797
|
if (findContainerIndex(target, e) >= 0) {
|
|
16788
|
-
// allow the click since it
|
|
16798
|
+
// allow the click since it occurred inside the trap
|
|
16789
16799
|
return;
|
|
16790
16800
|
}
|
|
16791
16801
|
if (valueOrHandler(config.clickOutsideDeactivates, e)) {
|
|
@@ -16968,6 +16978,13 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16968
16978
|
// EVENT LISTENERS
|
|
16969
16979
|
//
|
|
16970
16980
|
|
|
16981
|
+
/**
|
|
16982
|
+
* Adds listeners to the document necessary for trapping focus and attempts to set focus
|
|
16983
|
+
* to the configured initial focus node. Does nothing if the trap isn't active.
|
|
16984
|
+
* @returns {Promise<void> | undefined} A promise resolved once the initial focus node has
|
|
16985
|
+
* been focused when `delayInitialFocus=true`; `undefined` when focus is set synchronously
|
|
16986
|
+
* or the trap isn't active.
|
|
16987
|
+
*/
|
|
16971
16988
|
var addListeners = function addListeners() {
|
|
16972
16989
|
if (!state.active) {
|
|
16973
16990
|
return;
|
|
@@ -16978,9 +16995,20 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16978
16995
|
|
|
16979
16996
|
// Delay ensures that the focused element doesn't capture the event
|
|
16980
16997
|
// that caused the focus trap activation.
|
|
16981
|
-
|
|
16998
|
+
/** @type {Promise<void> | undefined} */
|
|
16999
|
+
var promise;
|
|
17000
|
+
if (config.delayInitialFocus) {
|
|
17001
|
+
// NOTE: Promise constructor callback is called synchronously, which is what we want
|
|
17002
|
+
// since we need to capture the timer ID immediately
|
|
17003
|
+
promise = new Promise(function (resolve) {
|
|
17004
|
+
state.delayInitialFocusTimer = delay(function () {
|
|
17005
|
+
_tryFocus(getInitialFocusNode());
|
|
17006
|
+
resolve();
|
|
17007
|
+
});
|
|
17008
|
+
});
|
|
17009
|
+
} else {
|
|
16982
17010
|
_tryFocus(getInitialFocusNode());
|
|
16983
|
-
}
|
|
17011
|
+
}
|
|
16984
17012
|
doc.addEventListener('focusin', checkFocusIn, true);
|
|
16985
17013
|
doc.addEventListener('mousedown', checkPointerDown, {
|
|
16986
17014
|
capture: true,
|
|
@@ -16999,7 +17027,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
16999
17027
|
passive: false
|
|
17000
17028
|
});
|
|
17001
17029
|
doc.addEventListener('keydown', checkEscapeKey);
|
|
17002
|
-
return
|
|
17030
|
+
return promise;
|
|
17003
17031
|
};
|
|
17004
17032
|
|
|
17005
17033
|
/**
|
|
@@ -17087,17 +17115,27 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
17087
17115
|
//
|
|
17088
17116
|
|
|
17089
17117
|
var checkDomRemoval = function checkDomRemoval(mutations) {
|
|
17118
|
+
var focusedNode = state.mostRecentlyFocusedNode;
|
|
17119
|
+
if (!focusedNode) {
|
|
17120
|
+
return;
|
|
17121
|
+
}
|
|
17090
17122
|
var isFocusedNodeRemoved = mutations.some(function (mutation) {
|
|
17091
17123
|
var removedNodes = Array.from(mutation.removedNodes);
|
|
17092
17124
|
return removedNodes.some(function (node) {
|
|
17093
|
-
return node ===
|
|
17125
|
+
return node === focusedNode || typeof node.contains === 'function' && node.contains(focusedNode);
|
|
17094
17126
|
});
|
|
17095
17127
|
});
|
|
17096
17128
|
|
|
17097
|
-
// If the currently focused is removed then browsers will move focus to the
|
|
17129
|
+
// If the currently focused node is removed then browsers will move focus to the
|
|
17098
17130
|
// <body> element. If this happens, try to move focus back into the trap.
|
|
17099
|
-
if (isFocusedNodeRemoved) {
|
|
17100
|
-
|
|
17131
|
+
if (isFocusedNodeRemoved && state.containers.some(function (container) {
|
|
17132
|
+
return container === null || container === void 0 ? void 0 : container.isConnected;
|
|
17133
|
+
})) {
|
|
17134
|
+
// Refresh tabbable state before resolving initial focus because
|
|
17135
|
+
// getInitialFocusNode() may fall back to the first tabbable node in the trap.
|
|
17136
|
+
updateTabbableNodes();
|
|
17137
|
+
var initialFocusNode = getInitialFocusNode();
|
|
17138
|
+
_tryFocus(initialFocusNode);
|
|
17101
17139
|
}
|
|
17102
17140
|
};
|
|
17103
17141
|
|
|
@@ -17157,17 +17195,32 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
17157
17195
|
state.active = true;
|
|
17158
17196
|
state.paused = false;
|
|
17159
17197
|
state.nodeFocusedBeforeActivation = _getActiveElement(doc);
|
|
17160
|
-
onActivate === null || onActivate === void 0 || onActivate(
|
|
17198
|
+
onActivate === null || onActivate === void 0 || onActivate({
|
|
17199
|
+
trap: trap
|
|
17200
|
+
});
|
|
17161
17201
|
var finishActivation = function finishActivation() {
|
|
17162
17202
|
if (checkCanFocusTrap) {
|
|
17163
17203
|
updateTabbableNodes();
|
|
17164
17204
|
}
|
|
17165
|
-
|
|
17166
|
-
updateObservedNodes();
|
|
17167
|
-
if (config.isolateSubtrees) {
|
|
17205
|
+
var afterListeners = function afterListeners() {
|
|
17168
17206
|
trap._setSubtreeIsolation(true);
|
|
17207
|
+
updateObservedNodes();
|
|
17208
|
+
onPostActivate === null || onPostActivate === void 0 || onPostActivate({
|
|
17209
|
+
trap: trap
|
|
17210
|
+
});
|
|
17211
|
+
};
|
|
17212
|
+
|
|
17213
|
+
// NOTE: wait for initial focus node to get focused (whether activation is fully,
|
|
17214
|
+
// partially, or not asynchronous) before we potentially isolate the subtrees
|
|
17215
|
+
// with aria-hidden while focus is still in some other subtree and not yet in
|
|
17216
|
+
// the trap, resulting in some browsers (e.g. Chrome) logging to the console that
|
|
17217
|
+
// they, "Blocked aria-hidden on an element because its descendant retained focus..."
|
|
17218
|
+
var listenersPromise = addListeners();
|
|
17219
|
+
if (listenersPromise) {
|
|
17220
|
+
listenersPromise.then(afterListeners);
|
|
17221
|
+
} else {
|
|
17222
|
+
afterListeners();
|
|
17169
17223
|
}
|
|
17170
|
-
onPostActivate === null || onPostActivate === void 0 || onPostActivate();
|
|
17171
17224
|
};
|
|
17172
17225
|
if (checkCanFocusTrap) {
|
|
17173
17226
|
checkCanFocusTrap(state.containers.concat()).then(finishActivation, finishActivation);
|
|
@@ -17216,16 +17269,26 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
17216
17269
|
var onDeactivate = getOption(options, 'onDeactivate');
|
|
17217
17270
|
var onPostDeactivate = getOption(options, 'onPostDeactivate');
|
|
17218
17271
|
var checkCanReturnFocus = getOption(options, 'checkCanReturnFocus');
|
|
17272
|
+
var delayReturnFocus = getOption(options, 'delayReturnFocus');
|
|
17219
17273
|
var returnFocus = getOption(options, 'returnFocus', 'returnFocusOnDeactivate');
|
|
17220
|
-
onDeactivate === null || onDeactivate === void 0 || onDeactivate(
|
|
17221
|
-
|
|
17222
|
-
|
|
17223
|
-
|
|
17224
|
-
|
|
17225
|
-
|
|
17226
|
-
|
|
17274
|
+
onDeactivate === null || onDeactivate === void 0 || onDeactivate({
|
|
17275
|
+
trap: trap
|
|
17276
|
+
});
|
|
17277
|
+
var completeDeactivation = function completeDeactivation() {
|
|
17278
|
+
if (returnFocus) {
|
|
17279
|
+
_tryFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation));
|
|
17280
|
+
}
|
|
17281
|
+
onPostDeactivate === null || onPostDeactivate === void 0 || onPostDeactivate({
|
|
17282
|
+
trap: trap
|
|
17227
17283
|
});
|
|
17228
17284
|
};
|
|
17285
|
+
var finishDeactivation = function finishDeactivation() {
|
|
17286
|
+
if (delayReturnFocus && returnFocus) {
|
|
17287
|
+
delay(completeDeactivation);
|
|
17288
|
+
} else {
|
|
17289
|
+
completeDeactivation();
|
|
17290
|
+
}
|
|
17291
|
+
};
|
|
17229
17292
|
if (returnFocus && checkCanReturnFocus) {
|
|
17230
17293
|
checkCanReturnFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation)).then(finishDeactivation, finishDeactivation);
|
|
17231
17294
|
return this;
|
|
@@ -17260,7 +17323,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
17260
17323
|
}
|
|
17261
17324
|
if (state.active) {
|
|
17262
17325
|
updateTabbableNodes();
|
|
17263
|
-
if (
|
|
17326
|
+
if (!state.paused) {
|
|
17264
17327
|
trap._setSubtreeIsolation(true);
|
|
17265
17328
|
}
|
|
17266
17329
|
}
|
|
@@ -17283,20 +17346,44 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
|
|
|
17283
17346
|
if (paused) {
|
|
17284
17347
|
var onPause = getOption(options, 'onPause');
|
|
17285
17348
|
var onPostPause = getOption(options, 'onPostPause');
|
|
17286
|
-
onPause === null || onPause === void 0 || onPause(
|
|
17349
|
+
onPause === null || onPause === void 0 || onPause({
|
|
17350
|
+
trap: trap
|
|
17351
|
+
});
|
|
17287
17352
|
removeListeners();
|
|
17288
|
-
updateObservedNodes();
|
|
17289
17353
|
trap._setSubtreeIsolation(false);
|
|
17290
|
-
|
|
17354
|
+
updateObservedNodes();
|
|
17355
|
+
onPostPause === null || onPostPause === void 0 || onPostPause({
|
|
17356
|
+
trap: trap
|
|
17357
|
+
});
|
|
17291
17358
|
} else {
|
|
17292
17359
|
var onUnpause = getOption(options, 'onUnpause');
|
|
17293
17360
|
var onPostUnpause = getOption(options, 'onPostUnpause');
|
|
17294
|
-
onUnpause === null || onUnpause === void 0 || onUnpause(
|
|
17295
|
-
|
|
17296
|
-
|
|
17297
|
-
|
|
17298
|
-
|
|
17299
|
-
|
|
17361
|
+
onUnpause === null || onUnpause === void 0 || onUnpause({
|
|
17362
|
+
trap: trap
|
|
17363
|
+
});
|
|
17364
|
+
var finishUnpause = function finishUnpause() {
|
|
17365
|
+
updateTabbableNodes();
|
|
17366
|
+
var afterListeners = function afterListeners() {
|
|
17367
|
+
trap._setSubtreeIsolation(true);
|
|
17368
|
+
updateObservedNodes();
|
|
17369
|
+
onPostUnpause === null || onPostUnpause === void 0 || onPostUnpause({
|
|
17370
|
+
trap: trap
|
|
17371
|
+
});
|
|
17372
|
+
};
|
|
17373
|
+
|
|
17374
|
+
// NOTE: wait for initial focus node to get focused (whether activation is fully,
|
|
17375
|
+
// partially, or not asynchronous) before we potentially isolate the subtrees
|
|
17376
|
+
// with aria-hidden while focus is still in some other subtree and not yet in
|
|
17377
|
+
// the trap, resulting in some browsers (e.g. Chrome) logging to the console that
|
|
17378
|
+
// they, "Blocked aria-hidden on an element because its descendant retained focus..."
|
|
17379
|
+
var listenersPromise = addListeners();
|
|
17380
|
+
if (listenersPromise) {
|
|
17381
|
+
listenersPromise.then(afterListeners);
|
|
17382
|
+
} else {
|
|
17383
|
+
afterListeners();
|
|
17384
|
+
}
|
|
17385
|
+
};
|
|
17386
|
+
finishUnpause();
|
|
17300
17387
|
}
|
|
17301
17388
|
return this;
|
|
17302
17389
|
}
|
|
@@ -17380,7 +17467,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17380
17467
|
/* harmony export */ StrictMode: () => (/* reexport safe */ preact__WEBPACK_IMPORTED_MODULE_0__.Fragment),
|
|
17381
17468
|
/* harmony export */ Suspense: () => (/* binding */ P),
|
|
17382
17469
|
/* harmony export */ SuspenseList: () => (/* binding */ B),
|
|
17383
|
-
/* harmony export */ __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: () => (/* binding */
|
|
17470
|
+
/* harmony export */ __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: () => (/* binding */ an),
|
|
17384
17471
|
/* harmony export */ cloneElement: () => (/* binding */ mn),
|
|
17385
17472
|
/* harmony export */ createContext: () => (/* reexport safe */ preact__WEBPACK_IMPORTED_MODULE_0__.createContext),
|
|
17386
17473
|
/* harmony export */ createElement: () => (/* reexport safe */ preact__WEBPACK_IMPORTED_MODULE_0__.createElement),
|
|
@@ -17393,9 +17480,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17393
17480
|
/* harmony export */ forwardRef: () => (/* binding */ D),
|
|
17394
17481
|
/* harmony export */ hydrate: () => (/* binding */ tn),
|
|
17395
17482
|
/* harmony export */ isElement: () => (/* binding */ Sn),
|
|
17396
|
-
/* harmony export */ isFragment: () => (/* binding */
|
|
17483
|
+
/* harmony export */ isFragment: () => (/* binding */ hn),
|
|
17397
17484
|
/* harmony export */ isMemo: () => (/* binding */ dn),
|
|
17398
|
-
/* harmony export */ isValidElement: () => (/* binding */
|
|
17485
|
+
/* harmony export */ isValidElement: () => (/* binding */ vn),
|
|
17399
17486
|
/* harmony export */ lazy: () => (/* binding */ z),
|
|
17400
17487
|
/* harmony export */ memo: () => (/* binding */ N),
|
|
17401
17488
|
/* harmony export */ render: () => (/* binding */ nn),
|
|
@@ -17406,7 +17493,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17406
17493
|
/* harmony export */ useInsertionEffect: () => (/* binding */ I),
|
|
17407
17494
|
/* harmony export */ useSyncExternalStore: () => (/* binding */ C),
|
|
17408
17495
|
/* harmony export */ useTransition: () => (/* binding */ k),
|
|
17409
|
-
/* harmony export */ version: () => (/* binding */
|
|
17496
|
+
/* harmony export */ version: () => (/* binding */ cn)
|
|
17410
17497
|
/* harmony export */ });
|
|
17411
17498
|
/* harmony import */ var preact__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! preact */ "preact");
|
|
17412
17499
|
/* harmony import */ var preact__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(preact__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -17416,7 +17503,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
17416
17503
|
/* harmony reexport (unknown) */ for(const __WEBPACK_IMPORT_KEY__ in preact_hooks__WEBPACK_IMPORTED_MODULE_1__) if(["default","Component","Fragment","StrictMode","createContext","createElement","createRef","Children","PureComponent","Suspense","SuspenseList","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","cloneElement","createFactory","createPortal","findDOMNode","flushSync","forwardRef","hydrate","isElement","isFragment","isMemo","isValidElement","lazy","memo","render","startTransition","unmountComponentAtNode","unstable_batchedUpdates","useDeferredValue","useInsertionEffect","useSyncExternalStore","useTransition","version"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = () => preact_hooks__WEBPACK_IMPORTED_MODULE_1__[__WEBPACK_IMPORT_KEY__]
|
|
17417
17504
|
/* harmony reexport (unknown) */ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
17418
17505
|
function g(n,t){for(var e in t)n[e]=t[e];return n}function E(n,t){for(var e in n)if("__source"!==e&&!(e in t))return!0;for(var r in t)if("__source"!==r&&n[r]!==t[r])return!0;return!1}function C(n,t){var e=t(),r=(0,preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useState)({t:{__:e,u:t}}),u=r[0].t,o=r[1];return (0,preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect)(function(){u.__=e,u.u=t,R(u)&&o({t:u})},[n,e,t]),(0,preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useEffect)(function(){return R(u)&&o({t:u}),n(function(){R(u)&&o({t:u})})},[n]),e}function R(n){try{return!((t=n.__)===(e=n.u())&&(0!==t||1/t==1/e)||t!=t&&e!=e)}catch(n){return!0}// removed by dead control flow
|
|
17419
|
-
var t, e; }function x(n){n()}function w(n){return n}function k(){return[!1,x]}var I=preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect;function M(n,t){this.props=n,this.context=t}function N(n,e){function r(n){var t=this.props.ref;return t!=n.ref&&t&&("function"==typeof t?t(null):t.current=null),e?!e(this.props,n)||t!=n.ref:E(this.props,n)}function u(e){return this.shouldComponentUpdate=r,(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(n,e)}return u.displayName="Memo("+(n.displayName||n.name)+")",u.__f=u.prototype.isReactComponent=!0,u.type=n,u}(M.prototype=new preact__WEBPACK_IMPORTED_MODULE_0__.Component).isPureReactComponent=!0,M.prototype.shouldComponentUpdate=function(n,t){return E(this.props,n)||E(this.state,t)};var T=preact__WEBPACK_IMPORTED_MODULE_0__.options.__b;preact__WEBPACK_IMPORTED_MODULE_0__.options.__b=function(n){n.type&&n.type.__f&&n.ref&&(n.props.ref=n.ref,n.ref=null),T&&T(n)};var A="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.forward_ref")||3911;function D(n){function t(t){var e=g({},t);return delete e.ref,n(e,t.ref||null)}return t.$$typeof=A,t.render=n,t.prototype.isReactComponent=t.__f=!0,t.displayName="ForwardRef("+(n.displayName||n.name)+")",t}var F=function(n,t){return null==n?null:(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)((0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n).map(t))},L={map:F,forEach:F,count:function(n){return n?(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n).length:0},only:function(n){var t=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n);if(1!==t.length)throw"Children.only";return t[0]},toArray:preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray},O=preact__WEBPACK_IMPORTED_MODULE_0__.options.__e;preact__WEBPACK_IMPORTED_MODULE_0__.options.__e=function(n,t,e,r){if(n.then)for(var u,o=t;o=o.__;)if((u=o.__c)&&u.__c)return null==t.__e&&(t.__e=e.__e,t.__k=e.__k),u.__c(n,t);O(n,t,e,r)};var U=preact__WEBPACK_IMPORTED_MODULE_0__.options.unmount;function V(n,t,e){return n&&(n.__c&&n.__c.__H&&(n.__c.__H.__.forEach(function(n){"function"==typeof n.__c&&n.__c()}),n.__c.__H=null),null!=(n=g({},n)).__c&&(n.__c.__P===e&&(n.__c.__P=t),n.__c.__e=!0,n.__c=null),n.__k=n.__k&&n.__k.map(function(n){return V(n,t,e)})),n}function W(n,t,e){return n&&e&&(n.__v=null,n.__k=n.__k&&n.__k.map(function(n){return W(n,t,e)}),n.__c&&n.__c.__P===t&&(n.__e&&e.appendChild(n.__e),n.__c.__e=!0,n.__c.__P=e)),n}function P(){this.__u=0,this.o=null,this.__b=null}function j(n){var t=n.__&&n.__.__c;return t&&t.__a&&t.__a(n)}function z(n){var e,r,u,o=null;function i(i){if(e||(e=n()).then(function(n){n&&(o=n.default||n),u=!0},function(n){r=n,u=!0}),r)throw r;if(!u)throw e;return o?(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(o,i):null}return i.displayName="Lazy",i.__f=!0,i}function B(){this.i=null,this.l=null}preact__WEBPACK_IMPORTED_MODULE_0__.options.unmount=function(n){var t=n.__c;t&&(t.__z=!0),t&&t.__R&&t.__R(),t&&32&n.__u&&(n.type=null),U&&U(n)},(P.prototype=new preact__WEBPACK_IMPORTED_MODULE_0__.Component).__c=function(n,t){var e=t.__c,r=this;null==r.o&&(r.o=[]),r.o.push(e);var u=j(r.__v),o=!1,i=function(){o||r.__z||(o=!0,e.__R=null,u?u(c):c())};e.__R=i;var l=e.__P;e.__P=null;var c=function(){if(!--r.__u){if(r.state.__a){var n=r.state.__a;r.__v.__k[0]=W(n,n.__c.__P,n.__c.__O)}var t;for(r.setState({__a:r.__b=null});t=r.o.pop();)t.__P=l,t.forceUpdate()}};r.__u++||32&t.__u||r.setState({__a:r.__b=r.__v.__k[0]}),n.then(i,i)},P.prototype.componentWillUnmount=function(){this.o=[]},P.prototype.render=function(n,e){if(this.__b){if(this.__v.__k){var r=document.createElement("div"),o=this.__v.__k[0].__c;this.__v.__k[0]=V(this.__b,r,o.__O=o.__P)}this.__b=null}var i=e.__a&&(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,null,n.fallback);return i&&(i.__u&=-33),[(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,null,e.__a?null:n.children),i]};var H=function(n,t,e){if(++e[1]===e[0]&&n.l.delete(t),n.props.revealOrder&&("t"!==n.props.revealOrder[0]||!n.l.size))for(e=n.i;e;){for(;e.length>3;)e.pop()();if(e[1]<e[0])break;n.i=e=e[2]}};function Z(n){return this.getChildContext=function(){return n.context},n.children}function Y(n){var e=this,r=n.h;if(e.componentWillUnmount=function(){(0,preact__WEBPACK_IMPORTED_MODULE_0__.render)(null,e.v),e.v=null,e.h=null},e.h&&e.h!==r&&e.componentWillUnmount(),!e.v){for(var u=e.__v;null!==u&&!u.__m&&null!==u.__;)u=u.__;e.h=r,e.v={nodeType:1,parentNode:r,childNodes:[],__k:{__m:u.__m},contains:function(){return!0},namespaceURI:r.namespaceURI,insertBefore:function(n,t){this.childNodes.push(n),e.h.insertBefore(n,t)},removeChild:function(n){this.childNodes.splice(this.childNodes.indexOf(n)>>>1,1),e.h.removeChild(n)}}}(0,preact__WEBPACK_IMPORTED_MODULE_0__.render)((0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(Z,{context:e.context},n.__v),e.v)}function $(n,e){var r=(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(Y,{__v:n,h:e});return r.containerInfo=e,r}(B.prototype=new preact__WEBPACK_IMPORTED_MODULE_0__.Component).__a=function(n){var t=this,e=j(t.__v),r=t.l.get(n);return r[0]++,function(u){var o=function(){t.props.revealOrder?(r.push(u),H(t,n,r)):u()};e?e(o):o()}},B.prototype.render=function(n){this.i=null,this.l=new Map;var t=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n.children);n.revealOrder&&"b"===n.revealOrder[0]&&t.reverse();for(var e=t.length;e--;)this.l.set(t[e],this.i=[1,0,this.i]);return n.children},B.prototype.componentDidUpdate=B.prototype.componentDidMount=function(){var n=this;this.l.forEach(function(t,e){H(n,e,t)})};var q="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,G=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,J=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,K=/[A-Z0-9]/g,Q="undefined"!=typeof document,X=function(n){return("undefined"!=typeof Symbol&&"symbol"==typeof Symbol()?/fil|che|rad/:/fil|che|ra/).test(n)};function nn(n,t,e){return null==t.__k&&(t.textContent=""),(0,preact__WEBPACK_IMPORTED_MODULE_0__.render)(n,t),"function"==typeof e&&e(),n?n.__c:null}function tn(n,t,e){return (0,preact__WEBPACK_IMPORTED_MODULE_0__.hydrate)(n,t),"function"==typeof e&&e(),n?n.__c:null}preact__WEBPACK_IMPORTED_MODULE_0__.Component.prototype.isReactComponent=!0,["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(t){Object.defineProperty(preact__WEBPACK_IMPORTED_MODULE_0__.Component.prototype,t,{configurable:!0,get:function(){return this["UNSAFE_"+t]},set:function(n){Object.defineProperty(this,t,{configurable:!0,writable:!0,value:n})}})});var en=preact__WEBPACK_IMPORTED_MODULE_0__.options.event;preact__WEBPACK_IMPORTED_MODULE_0__.options.event=function(n){return en&&(n=en(n)),n.persist=function(){},n.isPropagationStopped=function(){return this.cancelBubble},n.isDefaultPrevented=function(){return this.defaultPrevented},n.nativeEvent=n};var rn,un={configurable:!0,get:function(){return this.class}},on=preact__WEBPACK_IMPORTED_MODULE_0__.options.vnode;preact__WEBPACK_IMPORTED_MODULE_0__.options.vnode=function(n){"string"==typeof n.type&&function(n){var t=n.props,e=n.type,u={},o=-1==e.indexOf("-");for(var i in t){var l=t[i];if(!("value"===i&&"defaultValue"in t&&null==l||Q&&"children"===i&&"noscript"===e||"class"===i||"className"===i)){var c=i.toLowerCase();"defaultValue"===i&&"value"in t&&null==t.value?i="value":"download"===i&&!0===l?l="":"translate"===c&&"no"===l?l=!1:"o"===c[0]&&"n"===c[1]?"ondoubleclick"===c?i="ondblclick":"onchange"!==c||"input"!==e&&"textarea"!==e||X(t.type)?"onfocus"===c?i="onfocusin":"onblur"===c?i="onfocusout":J.test(i)&&(i=c):c=i="oninput":o&&G.test(i)?i=i.replace(K,"-$&").toLowerCase():null===l&&(l=void 0),"oninput"===c&&u[i=c]&&(i="oninputCapture"),u[i]=l}}"select"==e&&(u.multiple&&Array.isArray(u.value)&&(u.value=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(t.children).forEach(function(n){n.props.selected=-1!=u.value.indexOf(n.props.value)})),null!=u.defaultValue&&(u.value=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(t.children).forEach(function(n){n.props.selected=u.multiple?-1!=u.defaultValue.indexOf(n.props.value):u.defaultValue==n.props.value}))),t.class&&!t.className?(u.class=t.class,Object.defineProperty(u,"className",un)):t.className&&(u.class=u.className=t.className),n.props=u}(n),n.$$typeof=q,on&&on(n)};var ln=preact__WEBPACK_IMPORTED_MODULE_0__.options.__r;preact__WEBPACK_IMPORTED_MODULE_0__.options.__r=function(n){ln&&ln(n),rn=n.__c};var cn=preact__WEBPACK_IMPORTED_MODULE_0__.options.diffed;preact__WEBPACK_IMPORTED_MODULE_0__.options.diffed=function(n){cn&&cn(n);var t=n.props,e=n.__e;null!=e&&"textarea"===n.type&&"value"in t&&t.value!==e.value&&(e.value=null==t.value?"":t.value),rn=null};var fn={ReactCurrentDispatcher:{current:{readContext:function(n){return rn.__n[n.__c].props.value},useCallback:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useCallback,useContext:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useContext,useDebugValue:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useDebugValue,useDeferredValue:w,useEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useEffect,useId:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useId,useImperativeHandle:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useImperativeHandle,useInsertionEffect:I,useLayoutEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect,useMemo:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useMemo,useReducer:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useReducer,useRef:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useRef,useState:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useState,useSyncExternalStore:C,useTransition:k}}},an="18.3.1";function sn(n){return preact__WEBPACK_IMPORTED_MODULE_0__.createElement.bind(null,n)}function hn(n){return!!n&&n.$$typeof===q}function vn(n){return hn(n)&&n.type===preact__WEBPACK_IMPORTED_MODULE_0__.Fragment}function dn(n){return!!n&&"string"==typeof n.displayName&&0==n.displayName.indexOf("Memo(")}function mn(n){return hn(n)?preact__WEBPACK_IMPORTED_MODULE_0__.cloneElement.apply(null,arguments):n}function pn(n){return!!n.__k&&((0,preact__WEBPACK_IMPORTED_MODULE_0__.render)(null,n),!0)}function yn(n){return n&&(n.base||1===n.nodeType&&n)||null}var _n=function(n,t){return n(t)},bn=function(n,t){var r=preact__WEBPACK_IMPORTED_MODULE_0__.options.debounceRendering;preact__WEBPACK_IMPORTED_MODULE_0__.options.debounceRendering=function(n){return n()};var u=n(t);return preact__WEBPACK_IMPORTED_MODULE_0__.options.debounceRendering=r,u},Sn=hn,gn={useState:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useState,useId:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useId,useReducer:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useReducer,useEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useEffect,useLayoutEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect,useInsertionEffect:I,useTransition:k,useDeferredValue:w,useSyncExternalStore:C,startTransition:x,useRef:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useRef,useImperativeHandle:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useImperativeHandle,useMemo:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useMemo,useCallback:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useCallback,useContext:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useContext,useDebugValue:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useDebugValue,version:"18.3.1",Children:L,render:nn,hydrate:tn,unmountComponentAtNode:pn,createPortal:$,createElement:preact__WEBPACK_IMPORTED_MODULE_0__.createElement,createContext:preact__WEBPACK_IMPORTED_MODULE_0__.createContext,createFactory:sn,cloneElement:mn,createRef:preact__WEBPACK_IMPORTED_MODULE_0__.createRef,Fragment:preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,isValidElement:hn,isElement:Sn,isFragment:vn,isMemo:dn,findDOMNode:yn,Component:preact__WEBPACK_IMPORTED_MODULE_0__.Component,PureComponent:M,memo:N,forwardRef:D,flushSync:bn,unstable_batchedUpdates:_n,StrictMode:preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,Suspense:P,SuspenseList:B,lazy:z,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:fn};
|
|
17506
|
+
var t, e; }function x(n){n()}function w(n){return n}function k(){return[!1,x]}var I=preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect;function M(n,t){this.props=n,this.context=t}function N(n,e){function r(n){var t=this.props.ref;return t!=n.ref&&t&&("function"==typeof t?t(null):t.current=null),e?!e(this.props,n)||t!=n.ref:E(this.props,n)}function u(e){return this.shouldComponentUpdate=r,(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(n,e)}return u.displayName="Memo("+(n.displayName||n.name)+")",u.__f=u.prototype.isReactComponent=!0,u.type=n,u}(M.prototype=new preact__WEBPACK_IMPORTED_MODULE_0__.Component).isPureReactComponent=!0,M.prototype.shouldComponentUpdate=function(n,t){return E(this.props,n)||E(this.state,t)};var T=preact__WEBPACK_IMPORTED_MODULE_0__.options.__b;preact__WEBPACK_IMPORTED_MODULE_0__.options.__b=function(n){n.type&&n.type.__f&&n.ref&&(n.props.ref=n.ref,n.ref=null),T&&T(n)};var A="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.forward_ref")||3911;function D(n){function t(t){var e=g({},t);return delete e.ref,n(e,t.ref||null)}return t.$$typeof=A,t.render=n,t.prototype.isReactComponent=t.__f=!0,t.displayName="ForwardRef("+(n.displayName||n.name)+")",t}var F=function(n,t){return null==n?null:(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)((0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n).map(t))},L={map:F,forEach:F,count:function(n){return n?(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n).length:0},only:function(n){var t=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n);if(1!==t.length)throw"Children.only";return t[0]},toArray:preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray},O=preact__WEBPACK_IMPORTED_MODULE_0__.options.__e;preact__WEBPACK_IMPORTED_MODULE_0__.options.__e=function(n,t,e,r){if(n.then)for(var u,o=t;o=o.__;)if((u=o.__c)&&u.__c)return null==t.__e&&(t.__e=e.__e,t.__k=e.__k),u.__c(n,t);O(n,t,e,r)};var U=preact__WEBPACK_IMPORTED_MODULE_0__.options.unmount;function V(n,t,e){return n&&(n.__c&&n.__c.__H&&(n.__c.__H.__.forEach(function(n){"function"==typeof n.__c&&n.__c()}),n.__c.__H=null),null!=(n=g({},n)).__c&&(n.__c.__P===e&&(n.__c.__P=t),n.__c.__e=!0,n.__c=null),n.__k=n.__k&&n.__k.map(function(n){return V(n,t,e)})),n}function W(n,t,e){return n&&e&&(n.__v=null,n.__k=n.__k&&n.__k.map(function(n){return W(n,t,e)}),n.__c&&n.__c.__P===t&&(n.__e&&e.appendChild(n.__e),n.__c.__e=!0,n.__c.__P=e)),n}function P(){this.__u=0,this.o=null,this.__b=null}function j(n){var t=n.__&&n.__.__c;return t&&t.__a&&t.__a(n)}function z(n){var e,r,u,o=null;function i(i){if(e||(e=n()).then(function(n){n&&(o=n.default||n),u=!0},function(n){r=n,u=!0}),r)throw r;if(!u)throw e;return o?(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(o,i):null}return i.displayName="Lazy",i.__f=!0,i}function B(){this.i=null,this.l=null}preact__WEBPACK_IMPORTED_MODULE_0__.options.unmount=function(n){var t=n.__c;t&&(t.__z=!0),t&&t.__R&&t.__R(),t&&32&n.__u&&(n.type=null),U&&U(n)},(P.prototype=new preact__WEBPACK_IMPORTED_MODULE_0__.Component).__c=function(n,t){var e=t.__c,r=this;null==r.o&&(r.o=[]),r.o.push(e);var u=j(r.__v),o=!1,i=function(){o||r.__z||(o=!0,e.__R=null,u?u(f):f())};e.__R=i;var l=e.__P;e.__P=null;var f=function(){if(!--r.__u){if(r.state.__a){var n=r.state.__a;r.__v.__k[0]=W(n,n.__c.__P,n.__c.__O)}var t;for(r.setState({__a:r.__b=null});t=r.o.pop();)t.__P=l,t.forceUpdate()}};r.__u++||32&t.__u||r.setState({__a:r.__b=r.__v.__k[0]}),n.then(i,i)},P.prototype.componentWillUnmount=function(){this.o=[]},P.prototype.render=function(n,e){var r=this.__v;if(!r.__m){for(var o=r;o.__;)o=o.__;o=o.__m||(o.__m=[0,0]),r.__m=[o[1]++,0]}if(this.__b){if(r.__k){var i=document.createElement("div"),l=r.__k[0].__c;r.__k[0]=V(this.__b,i,l.__O=l.__P)}this.__b=null}var f=e.__a&&(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,null,n.fallback);return f&&(f.__u&=-33),[(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,null,e.__a?null:n.children),f]};var H=function(n,t,e){if(++e[1]===e[0]&&n.l.delete(t),n.props.revealOrder&&("t"!==n.props.revealOrder[0]||!n.l.size))for(e=n.i;e;){for(;e.length>3;)e.pop()();if(e[1]<e[0])break;n.i=e=e[2]}};function Z(n){return this.getChildContext=function(){return n.context},n.children}function Y(n){var e=this,r=n.v;if(e.componentWillUnmount=function(){(0,preact__WEBPACK_IMPORTED_MODULE_0__.render)(null,e.h),e.h=null,e.v=null},e.v&&e.v!==r&&e.componentWillUnmount(),!e.h){for(var u=e.__v;null!==u&&!u.__m&&null!==u.__;)u=u.__;e.v=r,e.h={nodeType:1,parentNode:r,childNodes:[],__k:{__m:u.__m},contains:function(){return!0},namespaceURI:r.namespaceURI,insertBefore:function(n,t){this.childNodes.push(n),e.v.insertBefore(n,t)},removeChild:function(n){this.childNodes.splice(this.childNodes.indexOf(n)>>>1,1),e.v.removeChild(n)}}}(0,preact__WEBPACK_IMPORTED_MODULE_0__.render)((0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(Z,{context:e.context},n.__v),e.h)}function $(n,e){var r=(0,preact__WEBPACK_IMPORTED_MODULE_0__.createElement)(Y,{__v:n,v:e});return r.containerInfo=e,r}(B.prototype=new preact__WEBPACK_IMPORTED_MODULE_0__.Component).__a=function(n){var t=this,e=j(t.__v),r=t.l.get(n);return r[0]++,function(u){var o=function(){t.props.revealOrder?(r.push(u),H(t,n,r)):u()};e?e(o):o()}},B.prototype.render=function(n){this.i=null,this.l=new Map;var t=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(n.children);n.revealOrder&&"b"===n.revealOrder[0]&&t.reverse();for(var e=t.length;e--;)this.l.set(t[e],this.i=[1,0,this.i]);return n.children},B.prototype.componentDidUpdate=B.prototype.componentDidMount=function(){var n=this;this.l.forEach(function(t,e){H(n,e,t)})};var q="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,G=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,J=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,K=/[A-Z0-9]/g,Q="undefined"!=typeof document,X=function(n){return("undefined"!=typeof Symbol&&"symbol"==typeof Symbol()?/fil|che|rad/:/fil|che|ra/).test(n)};function nn(n,t,e){return null==t.__k&&(t.textContent=""),(0,preact__WEBPACK_IMPORTED_MODULE_0__.render)(n,t),"function"==typeof e&&e(),n?n.__c:null}function tn(n,t,e){return (0,preact__WEBPACK_IMPORTED_MODULE_0__.hydrate)(n,t),"function"==typeof e&&e(),n?n.__c:null}preact__WEBPACK_IMPORTED_MODULE_0__.Component.prototype.isReactComponent=!0,["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach(function(t){Object.defineProperty(preact__WEBPACK_IMPORTED_MODULE_0__.Component.prototype,t,{configurable:!0,get:function(){return this["UNSAFE_"+t]},set:function(n){Object.defineProperty(this,t,{configurable:!0,writable:!0,value:n})}})});var en=preact__WEBPACK_IMPORTED_MODULE_0__.options.event;preact__WEBPACK_IMPORTED_MODULE_0__.options.event=function(n){return en&&(n=en(n)),n.persist=function(){},n.isPropagationStopped=function(){return this.cancelBubble},n.isDefaultPrevented=function(){return this.defaultPrevented},n.nativeEvent=n};var rn,un={configurable:!0,get:function(){return this.class}},on=preact__WEBPACK_IMPORTED_MODULE_0__.options.vnode;preact__WEBPACK_IMPORTED_MODULE_0__.options.vnode=function(n){"string"==typeof n.type&&function(n){var t=n.props,e=n.type,u={},o=-1==e.indexOf("-");for(var i in t){var l=t[i];if(!("value"===i&&"defaultValue"in t&&null==l||Q&&"children"===i&&"noscript"===e||"class"===i||"className"===i)){var f=i.toLowerCase();"defaultValue"===i&&"value"in t&&null==t.value?i="value":"download"===i&&!0===l?l="":"translate"===f&&"no"===l?l=!1:"o"===f[0]&&"n"===f[1]?"ondoubleclick"===f?i="ondblclick":"onchange"!==f||"input"!==e&&"textarea"!==e||X(t.type)?"onfocus"===f?i="onfocusin":"onblur"===f?i="onfocusout":J.test(i)&&(i=f):f=i="oninput":o&&G.test(i)?i=i.replace(K,"-$&").toLowerCase():null===l&&(l=void 0),"oninput"===f&&u[i=f]&&(i="oninputCapture"),u[i]=l}}"select"==e&&(u.multiple&&Array.isArray(u.value)&&(u.value=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(t.children).forEach(function(n){n.props.selected=-1!=u.value.indexOf(n.props.value)})),null!=u.defaultValue&&(u.value=(0,preact__WEBPACK_IMPORTED_MODULE_0__.toChildArray)(t.children).forEach(function(n){n.props.selected=u.multiple?-1!=u.defaultValue.indexOf(n.props.value):u.defaultValue==n.props.value}))),t.class&&!t.className?(u.class=t.class,Object.defineProperty(u,"className",un)):t.className&&(u.class=u.className=t.className),n.props=u}(n),n.$$typeof=q,on&&on(n)};var ln=preact__WEBPACK_IMPORTED_MODULE_0__.options.__r;preact__WEBPACK_IMPORTED_MODULE_0__.options.__r=function(n){ln&&ln(n),rn=n.__c};var fn=preact__WEBPACK_IMPORTED_MODULE_0__.options.diffed;preact__WEBPACK_IMPORTED_MODULE_0__.options.diffed=function(n){fn&&fn(n);var t=n.props,e=n.__e;null!=e&&"textarea"===n.type&&"value"in t&&t.value!==e.value&&(e.value=null==t.value?"":t.value),rn=null};var an={ReactCurrentDispatcher:{current:{readContext:function(n){return rn.__n[n.__c].props.value},useCallback:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useCallback,useContext:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useContext,useDebugValue:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useDebugValue,useDeferredValue:w,useEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useEffect,useId:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useId,useImperativeHandle:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useImperativeHandle,useInsertionEffect:I,useLayoutEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect,useMemo:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useMemo,useReducer:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useReducer,useRef:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useRef,useState:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useState,useSyncExternalStore:C,useTransition:k}}},cn="18.3.1";function sn(n){return preact__WEBPACK_IMPORTED_MODULE_0__.createElement.bind(null,n)}function vn(n){return!!n&&n.$$typeof===q}function hn(n){return vn(n)&&n.type===preact__WEBPACK_IMPORTED_MODULE_0__.Fragment}function dn(n){return!!n&&"string"==typeof n.displayName&&0==n.displayName.indexOf("Memo(")}function mn(n){return vn(n)?preact__WEBPACK_IMPORTED_MODULE_0__.cloneElement.apply(null,arguments):n}function pn(n){return!!n.__k&&((0,preact__WEBPACK_IMPORTED_MODULE_0__.render)(null,n),!0)}function yn(n){return n&&(n.base||1===n.nodeType&&n)||null}var _n=function(n,t){return n(t)},bn=function(n,t){var r=preact__WEBPACK_IMPORTED_MODULE_0__.options.debounceRendering;preact__WEBPACK_IMPORTED_MODULE_0__.options.debounceRendering=function(n){return n()};var u=n(t);return preact__WEBPACK_IMPORTED_MODULE_0__.options.debounceRendering=r,u},Sn=vn,gn={useState:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useState,useId:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useId,useReducer:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useReducer,useEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useEffect,useLayoutEffect:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useLayoutEffect,useInsertionEffect:I,useTransition:k,useDeferredValue:w,useSyncExternalStore:C,startTransition:x,useRef:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useRef,useImperativeHandle:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useImperativeHandle,useMemo:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useMemo,useCallback:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useCallback,useContext:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useContext,useDebugValue:preact_hooks__WEBPACK_IMPORTED_MODULE_1__.useDebugValue,version:"18.3.1",Children:L,render:nn,hydrate:tn,unmountComponentAtNode:pn,createPortal:$,createElement:preact__WEBPACK_IMPORTED_MODULE_0__.createElement,createContext:preact__WEBPACK_IMPORTED_MODULE_0__.createContext,createFactory:sn,cloneElement:mn,createRef:preact__WEBPACK_IMPORTED_MODULE_0__.createRef,Fragment:preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,isValidElement:vn,isElement:Sn,isFragment:hn,isMemo:dn,findDOMNode:yn,Component:preact__WEBPACK_IMPORTED_MODULE_0__.Component,PureComponent:M,memo:N,forwardRef:D,flushSync:bn,unstable_batchedUpdates:_n,StrictMode:preact__WEBPACK_IMPORTED_MODULE_0__.Fragment,Suspense:P,SuspenseList:B,lazy:z,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:an};
|
|
17420
17507
|
//# sourceMappingURL=compat.module.js.map
|
|
17421
17508
|
|
|
17422
17509
|
|
|
@@ -18040,12 +18127,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
18040
18127
|
/* harmony export */ tabbable: () => (/* binding */ tabbable)
|
|
18041
18128
|
/* harmony export */ });
|
|
18042
18129
|
/*!
|
|
18043
|
-
* tabbable 6.
|
|
18130
|
+
* tabbable 6.5.0
|
|
18044
18131
|
* @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
|
|
18045
18132
|
*/
|
|
18046
18133
|
// NOTE: separate `:not()` selectors has broader browser support than the newer
|
|
18047
18134
|
// `:not([inert], [inert] *)` (Feb 2023)
|
|
18048
|
-
var candidateSelectors = ['input:not([inert]):not([inert] *)', 'select:not([inert]):not([inert] *)', 'textarea:not([inert]):not([inert] *)', 'a[href]:not([inert]):not([inert] *)', 'button:not([inert]):not([inert] *)', '[tabindex]:not(slot):not([inert]):not([inert] *)', 'audio[controls]:not([inert]):not([inert] *)', 'video[controls]:not([inert]):not([inert] *)', '[contenteditable]:not([contenteditable="false"]):not([inert]):not([inert] *)', 'details>summary:first-of-type:not([inert]):not([inert] *)', 'details:not([inert]):not([inert] *)'];
|
|
18135
|
+
var candidateSelectors = ['input:not([inert]):not([inert] *)', 'select:not([inert]):not([inert] *)', 'textarea:not([inert]):not([inert] *)', 'a[href]:not([inert]):not([inert] *)', 'area[href]:not([inert]):not([inert] *)', 'button:not([inert]):not([inert] *)', '[tabindex]:not(slot):not([inert]):not([inert] *)', 'audio[controls]:not([inert]):not([inert] *)', 'video[controls]:not([inert]):not([inert] *)', '[contenteditable]:not([contenteditable="false"]):not([inert]):not([inert] *)', 'details>summary:first-of-type:not([inert]):not([inert] *)', 'details:not([inert]):not([inert] *)'];
|
|
18049
18136
|
var candidateSelector = /* #__PURE__ */candidateSelectors.join(',');
|
|
18050
18137
|
var NoElement = typeof Element === 'undefined';
|
|
18051
18138
|
var matches = NoElement ? function () {} : Element.prototype.matches || Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
|
|
@@ -18403,7 +18490,9 @@ var isHidden = function isHidden(node, _ref) {
|
|
|
18403
18490
|
// (this is legacy behavior from a very long way back)
|
|
18404
18491
|
// NOTE: we check this regardless of `displayCheck="none"` because this is a
|
|
18405
18492
|
// _visibility_ check, not a _display_ check
|
|
18406
|
-
|
|
18493
|
+
var _getComputedStyle = getComputedStyle(node),
|
|
18494
|
+
visibility = _getComputedStyle.visibility;
|
|
18495
|
+
if (visibility === 'hidden' || visibility === 'collapse') {
|
|
18407
18496
|
return true;
|
|
18408
18497
|
}
|
|
18409
18498
|
var isDirectSummary = matches.call(node, 'details>summary:first-of-type');
|
|
@@ -23365,23 +23454,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23365
23454
|
/* harmony export */ createEntityAdapter: () => (/* binding */ createEntityAdapter),
|
|
23366
23455
|
/* harmony export */ createImmutableStateInvariantMiddleware: () => (/* binding */ createImmutableStateInvariantMiddleware),
|
|
23367
23456
|
/* harmony export */ createListenerMiddleware: () => (/* binding */ createListenerMiddleware),
|
|
23368
|
-
/* harmony export */ createNextState: () => (/* reexport safe */ immer__WEBPACK_IMPORTED_MODULE_1__.produce),
|
|
23369
23457
|
/* harmony export */ createReducer: () => (/* binding */ createReducer),
|
|
23370
|
-
/* harmony export */ createSelector: () => (/* reexport safe */
|
|
23371
|
-
/* harmony export */ createSelectorCreator: () => (/* reexport safe */
|
|
23458
|
+
/* harmony export */ createSelector: () => (/* reexport safe */ reselect__WEBPACK_IMPORTED_MODULE_3__.createSelector),
|
|
23459
|
+
/* harmony export */ createSelectorCreator: () => (/* reexport safe */ reselect__WEBPACK_IMPORTED_MODULE_3__.createSelectorCreator),
|
|
23372
23460
|
/* harmony export */ createSerializableStateInvariantMiddleware: () => (/* binding */ createSerializableStateInvariantMiddleware),
|
|
23373
23461
|
/* harmony export */ createSlice: () => (/* binding */ createSlice),
|
|
23374
23462
|
/* harmony export */ createStore: () => (/* reexport safe */ redux__WEBPACK_IMPORTED_MODULE_0__.createStore),
|
|
23375
|
-
/* harmony export */ current: () => (/* reexport safe */ immer__WEBPACK_IMPORTED_MODULE_1__.current),
|
|
23376
23463
|
/* harmony export */ findNonSerializableValue: () => (/* binding */ findNonSerializableValue),
|
|
23377
23464
|
/* harmony export */ formatProdErrorMessage: () => (/* binding */ formatProdErrorMessage),
|
|
23378
|
-
/* harmony export */ freeze: () => (/* reexport safe */ immer__WEBPACK_IMPORTED_MODULE_1__.freeze),
|
|
23379
23465
|
/* harmony export */ isAction: () => (/* reexport safe */ redux__WEBPACK_IMPORTED_MODULE_0__.isAction),
|
|
23380
23466
|
/* harmony export */ isActionCreator: () => (/* binding */ isActionCreator),
|
|
23381
23467
|
/* harmony export */ isAllOf: () => (/* binding */ isAllOf),
|
|
23382
23468
|
/* harmony export */ isAnyOf: () => (/* binding */ isAnyOf),
|
|
23383
23469
|
/* harmony export */ isAsyncThunkAction: () => (/* binding */ isAsyncThunkAction),
|
|
23384
|
-
/* harmony export */ isDraft: () => (/* reexport safe */ immer__WEBPACK_IMPORTED_MODULE_1__.isDraft),
|
|
23385
23470
|
/* harmony export */ isFluxStandardAction: () => (/* binding */ isFSA),
|
|
23386
23471
|
/* harmony export */ isFulfilled: () => (/* binding */ isFulfilled),
|
|
23387
23472
|
/* harmony export */ isImmutableDefault: () => (/* binding */ isImmutableDefault),
|
|
@@ -23391,19 +23476,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23391
23476
|
/* harmony export */ isRejected: () => (/* binding */ isRejected),
|
|
23392
23477
|
/* harmony export */ isRejectedWithValue: () => (/* binding */ isRejectedWithValue),
|
|
23393
23478
|
/* harmony export */ legacy_createStore: () => (/* reexport safe */ redux__WEBPACK_IMPORTED_MODULE_0__.legacy_createStore),
|
|
23394
|
-
/* harmony export */ lruMemoize: () => (/* reexport safe */
|
|
23479
|
+
/* harmony export */ lruMemoize: () => (/* reexport safe */ reselect__WEBPACK_IMPORTED_MODULE_3__.lruMemoize),
|
|
23395
23480
|
/* harmony export */ miniSerializeError: () => (/* binding */ miniSerializeError),
|
|
23396
23481
|
/* harmony export */ nanoid: () => (/* binding */ nanoid),
|
|
23397
|
-
/* harmony export */ original: () => (/* reexport safe */ immer__WEBPACK_IMPORTED_MODULE_1__.original),
|
|
23398
23482
|
/* harmony export */ prepareAutoBatched: () => (/* binding */ prepareAutoBatched),
|
|
23399
23483
|
/* harmony export */ removeListener: () => (/* binding */ removeListener),
|
|
23400
23484
|
/* harmony export */ unwrapResult: () => (/* binding */ unwrapResult),
|
|
23401
|
-
/* harmony export */ weakMapMemoize: () => (/* reexport safe */
|
|
23485
|
+
/* harmony export */ weakMapMemoize: () => (/* reexport safe */ reselect__WEBPACK_IMPORTED_MODULE_3__.weakMapMemoize)
|
|
23402
23486
|
/* harmony export */ });
|
|
23487
|
+
/* empty/unused harmony star reexport */
|
|
23488
|
+
/* empty/unused harmony star reexport */
|
|
23489
|
+
/* empty/unused harmony star reexport */
|
|
23490
|
+
/* empty/unused harmony star reexport */
|
|
23491
|
+
/* empty/unused harmony star reexport */
|
|
23403
23492
|
/* harmony import */ var redux__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! redux */ "./node_modules/redux/dist/redux.mjs");
|
|
23404
|
-
/* harmony import */ var
|
|
23405
|
-
/* harmony import */ var
|
|
23406
|
-
/* harmony import */ var
|
|
23493
|
+
/* harmony import */ var immer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! immer */ "./node_modules/immer/dist/immer.mjs");
|
|
23494
|
+
/* harmony import */ var reselect__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! reselect */ "./node_modules/reselect/dist/reselect.mjs");
|
|
23495
|
+
/* harmony import */ var redux_thunk__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! redux-thunk */ "./node_modules/redux-thunk/dist/redux-thunk.mjs");
|
|
23407
23496
|
// src/index.ts
|
|
23408
23497
|
|
|
23409
23498
|
|
|
@@ -23419,10 +23508,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23419
23508
|
|
|
23420
23509
|
// src/createDraftSafeSelector.ts
|
|
23421
23510
|
var createDraftSafeSelectorCreator = (...args) => {
|
|
23422
|
-
const createSelector2 = (0,
|
|
23511
|
+
const createSelector2 = (0,reselect__WEBPACK_IMPORTED_MODULE_3__.createSelectorCreator)(...args);
|
|
23423
23512
|
const createDraftSafeSelector2 = Object.assign((...args2) => {
|
|
23424
23513
|
const selector = createSelector2(...args2);
|
|
23425
|
-
const wrappedSelector = (value, ...rest) => selector((0,
|
|
23514
|
+
const wrappedSelector = (value, ...rest) => selector((0,immer__WEBPACK_IMPORTED_MODULE_2__.isDraft)(value) ? (0,immer__WEBPACK_IMPORTED_MODULE_2__.current)(value) : value, ...rest);
|
|
23426
23515
|
Object.assign(wrappedSelector, selector);
|
|
23427
23516
|
return wrappedSelector;
|
|
23428
23517
|
}, {
|
|
@@ -23430,7 +23519,7 @@ var createDraftSafeSelectorCreator = (...args) => {
|
|
|
23430
23519
|
});
|
|
23431
23520
|
return createDraftSafeSelector2;
|
|
23432
23521
|
};
|
|
23433
|
-
var createDraftSafeSelector = /* @__PURE__ */ createDraftSafeSelectorCreator(
|
|
23522
|
+
var createDraftSafeSelector = /* @__PURE__ */ createDraftSafeSelectorCreator(reselect__WEBPACK_IMPORTED_MODULE_3__.weakMapMemoize);
|
|
23434
23523
|
|
|
23435
23524
|
// src/reduxImports.ts
|
|
23436
23525
|
|
|
@@ -23499,7 +23588,7 @@ function isValidKey(key) {
|
|
|
23499
23588
|
function getMessage(type) {
|
|
23500
23589
|
const splitType = type ? `${type}`.split("/") : [];
|
|
23501
23590
|
const actionName = splitType[splitType.length - 1] || "actionCreator";
|
|
23502
|
-
return `Detected an action creator with type "${type || "unknown"}" being dispatched.
|
|
23591
|
+
return `Detected an action creator with type "${type || "unknown"}" being dispatched.
|
|
23503
23592
|
Make sure you're calling the action creator before dispatching, i.e. \`dispatch(${actionName}())\` instead of \`dispatch(${actionName})\`. This is necessary even if the action has no payload.`;
|
|
23504
23593
|
}
|
|
23505
23594
|
function createActionCreatorInvariantMiddleware(options = {}) {
|
|
@@ -23557,7 +23646,7 @@ var Tuple = class _Tuple extends Array {
|
|
|
23557
23646
|
}
|
|
23558
23647
|
};
|
|
23559
23648
|
function freezeDraftable(val) {
|
|
23560
|
-
return (0,
|
|
23649
|
+
return (0,immer__WEBPACK_IMPORTED_MODULE_2__.isDraftable)(val) ? (0,immer__WEBPACK_IMPORTED_MODULE_2__.produce)(val, () => {
|
|
23561
23650
|
}) : val;
|
|
23562
23651
|
}
|
|
23563
23652
|
function getOrInsertComputed(map, key, compute) {
|
|
@@ -23831,9 +23920,9 @@ var buildGetDefaultMiddleware = () => function getDefaultMiddleware(options) {
|
|
|
23831
23920
|
let middlewareArray = new Tuple();
|
|
23832
23921
|
if (thunk) {
|
|
23833
23922
|
if (isBoolean(thunk)) {
|
|
23834
|
-
middlewareArray.push(
|
|
23923
|
+
middlewareArray.push(redux_thunk__WEBPACK_IMPORTED_MODULE_4__.thunk);
|
|
23835
23924
|
} else {
|
|
23836
|
-
middlewareArray.push((0,
|
|
23925
|
+
middlewareArray.push((0,redux_thunk__WEBPACK_IMPORTED_MODULE_4__.withExtraArgument)(thunk.extraArgument));
|
|
23837
23926
|
}
|
|
23838
23927
|
}
|
|
23839
23928
|
if (true) {
|
|
@@ -23875,6 +23964,20 @@ var createQueueWithTimer = (timeout) => {
|
|
|
23875
23964
|
setTimeout(notify, timeout);
|
|
23876
23965
|
};
|
|
23877
23966
|
};
|
|
23967
|
+
var createRafWithFallbackTimer = (raf, timeout) => {
|
|
23968
|
+
return (notify) => {
|
|
23969
|
+
let called = false;
|
|
23970
|
+
const callback = () => {
|
|
23971
|
+
if (called) return;
|
|
23972
|
+
called = true;
|
|
23973
|
+
cancelAnimationFrame(rafId);
|
|
23974
|
+
clearTimeout(timerId);
|
|
23975
|
+
notify();
|
|
23976
|
+
};
|
|
23977
|
+
const rafId = raf(callback);
|
|
23978
|
+
const timerId = setTimeout(callback, timeout);
|
|
23979
|
+
};
|
|
23980
|
+
};
|
|
23878
23981
|
var autoBatchEnhancer = (options = {
|
|
23879
23982
|
type: "raf"
|
|
23880
23983
|
}) => (next) => (...args) => {
|
|
@@ -23885,7 +23988,7 @@ var autoBatchEnhancer = (options = {
|
|
|
23885
23988
|
const listeners = /* @__PURE__ */ new Set();
|
|
23886
23989
|
const queueCallback = options.type === "tick" ? queueMicrotask : options.type === "raf" ? (
|
|
23887
23990
|
// requestAnimationFrame won't exist in SSR environments. Fall back to a vague approximation just to keep from erroring.
|
|
23888
|
-
typeof window !== "undefined" && window.requestAnimationFrame ? window.requestAnimationFrame : createQueueWithTimer(10)
|
|
23991
|
+
typeof window !== "undefined" && window.requestAnimationFrame ? createRafWithFallbackTimer(window.requestAnimationFrame, 100) : createQueueWithTimer(10)
|
|
23889
23992
|
) : options.type === "callback" ? options.queueNotification : createQueueWithTimer(options.timeout);
|
|
23890
23993
|
const notifyListeners = () => {
|
|
23891
23994
|
notificationQueued = false;
|
|
@@ -24103,14 +24206,14 @@ function createReducer(initialState, mapOrBuilderCallback) {
|
|
|
24103
24206
|
}
|
|
24104
24207
|
return caseReducers.reduce((previousState, caseReducer) => {
|
|
24105
24208
|
if (caseReducer) {
|
|
24106
|
-
if ((0,
|
|
24209
|
+
if ((0,immer__WEBPACK_IMPORTED_MODULE_2__.isDraft)(previousState)) {
|
|
24107
24210
|
const draft = previousState;
|
|
24108
24211
|
const result = caseReducer(draft, action);
|
|
24109
24212
|
if (result === void 0) {
|
|
24110
24213
|
return previousState;
|
|
24111
24214
|
}
|
|
24112
24215
|
return result;
|
|
24113
|
-
} else if (!(0,
|
|
24216
|
+
} else if (!(0,immer__WEBPACK_IMPORTED_MODULE_2__.isDraftable)(previousState)) {
|
|
24114
24217
|
const result = caseReducer(previousState, action);
|
|
24115
24218
|
if (result === void 0) {
|
|
24116
24219
|
if (previousState === null) {
|
|
@@ -24120,7 +24223,7 @@ function createReducer(initialState, mapOrBuilderCallback) {
|
|
|
24120
24223
|
}
|
|
24121
24224
|
return result;
|
|
24122
24225
|
} else {
|
|
24123
|
-
return (0,
|
|
24226
|
+
return (0,immer__WEBPACK_IMPORTED_MODULE_2__.produce)(previousState, (draft) => {
|
|
24124
24227
|
return caseReducer(draft, action);
|
|
24125
24228
|
});
|
|
24126
24229
|
}
|
|
@@ -24226,6 +24329,8 @@ var RejectWithValue = class {
|
|
|
24226
24329
|
this.payload = payload;
|
|
24227
24330
|
this.meta = meta;
|
|
24228
24331
|
}
|
|
24332
|
+
payload;
|
|
24333
|
+
meta;
|
|
24229
24334
|
/*
|
|
24230
24335
|
type-only property to distinguish between RejectWithValue and FulfillWithMeta
|
|
24231
24336
|
does not exist at runtime
|
|
@@ -24237,6 +24342,8 @@ var FulfillWithMeta = class {
|
|
|
24237
24342
|
this.payload = payload;
|
|
24238
24343
|
this.meta = meta;
|
|
24239
24344
|
}
|
|
24345
|
+
payload;
|
|
24346
|
+
meta;
|
|
24240
24347
|
/*
|
|
24241
24348
|
type-only property to distinguish between RejectWithValue and FulfillWithMeta
|
|
24242
24349
|
does not exist at runtime
|
|
@@ -24312,7 +24419,7 @@ var createAsyncThunk = /* @__PURE__ */ (() => {
|
|
|
24312
24419
|
});
|
|
24313
24420
|
}
|
|
24314
24421
|
}
|
|
24315
|
-
const promise = async function() {
|
|
24422
|
+
const promise = (async function() {
|
|
24316
24423
|
let finalAction;
|
|
24317
24424
|
try {
|
|
24318
24425
|
let conditionResult = options?.condition?.(arg, {
|
|
@@ -24353,12 +24460,12 @@ var createAsyncThunk = /* @__PURE__ */ (() => {
|
|
|
24353
24460
|
requestId,
|
|
24354
24461
|
signal: abortController.signal,
|
|
24355
24462
|
abort,
|
|
24356
|
-
rejectWithValue: (value, meta) => {
|
|
24463
|
+
rejectWithValue: ((value, meta) => {
|
|
24357
24464
|
return new RejectWithValue(value, meta);
|
|
24358
|
-
},
|
|
24359
|
-
fulfillWithValue: (value, meta) => {
|
|
24465
|
+
}),
|
|
24466
|
+
fulfillWithValue: ((value, meta) => {
|
|
24360
24467
|
return new FulfillWithMeta(value, meta);
|
|
24361
|
-
}
|
|
24468
|
+
})
|
|
24362
24469
|
})).then((result) => {
|
|
24363
24470
|
if (result instanceof RejectWithValue) {
|
|
24364
24471
|
throw result;
|
|
@@ -24380,7 +24487,7 @@ var createAsyncThunk = /* @__PURE__ */ (() => {
|
|
|
24380
24487
|
dispatch(finalAction);
|
|
24381
24488
|
}
|
|
24382
24489
|
return finalAction;
|
|
24383
|
-
}();
|
|
24490
|
+
})();
|
|
24384
24491
|
return Object.assign(promise, {
|
|
24385
24492
|
abort,
|
|
24386
24493
|
requestId,
|
|
@@ -24752,7 +24859,7 @@ function createSelectorsFactory() {
|
|
|
24752
24859
|
}
|
|
24753
24860
|
|
|
24754
24861
|
// src/entities/state_adapter.ts
|
|
24755
|
-
var isDraftTyped =
|
|
24862
|
+
var isDraftTyped = immer__WEBPACK_IMPORTED_MODULE_2__.isDraft;
|
|
24756
24863
|
function createSingleArgumentStateOperator(mutator) {
|
|
24757
24864
|
const operator = createStateOperator((_, state) => mutator(state));
|
|
24758
24865
|
return function operation(state) {
|
|
@@ -24775,7 +24882,7 @@ function createStateOperator(mutator) {
|
|
|
24775
24882
|
runMutator(state);
|
|
24776
24883
|
return state;
|
|
24777
24884
|
}
|
|
24778
|
-
return (0,
|
|
24885
|
+
return (0,immer__WEBPACK_IMPORTED_MODULE_2__.produce)(state, runMutator);
|
|
24779
24886
|
};
|
|
24780
24887
|
}
|
|
24781
24888
|
|
|
@@ -24794,7 +24901,7 @@ function ensureEntitiesArray(entities) {
|
|
|
24794
24901
|
return entities;
|
|
24795
24902
|
}
|
|
24796
24903
|
function getCurrent(value) {
|
|
24797
|
-
return (0,
|
|
24904
|
+
return (0,immer__WEBPACK_IMPORTED_MODULE_2__.isDraft)(value) ? (0,immer__WEBPACK_IMPORTED_MODULE_2__.current)(value) : value;
|
|
24798
24905
|
}
|
|
24799
24906
|
function splitAddedUpdatedEntities(newEntities, selectId, state) {
|
|
24800
24907
|
newEntities = ensureEntitiesArray(newEntities);
|
|
@@ -25143,6 +25250,7 @@ var TaskAbortError = class {
|
|
|
25143
25250
|
this.code = code;
|
|
25144
25251
|
this.message = `${task} ${cancelled} (reason: ${code})`;
|
|
25145
25252
|
}
|
|
25253
|
+
code;
|
|
25146
25254
|
name = "TaskAbortError";
|
|
25147
25255
|
message;
|
|
25148
25256
|
};
|
|
@@ -25282,7 +25390,7 @@ var createTakePattern = (startListening, signal) => {
|
|
|
25282
25390
|
unsubscribe();
|
|
25283
25391
|
}
|
|
25284
25392
|
};
|
|
25285
|
-
return (predicate, timeout) => catchRejection(take(predicate, timeout));
|
|
25393
|
+
return ((predicate, timeout) => catchRejection(take(predicate, timeout)));
|
|
25286
25394
|
};
|
|
25287
25395
|
var getListenerEntryPropsFrom = (options) => {
|
|
25288
25396
|
let {
|
|
@@ -25403,10 +25511,10 @@ var createListenerMiddleware = (middlewareOptions = {}) => {
|
|
|
25403
25511
|
}
|
|
25404
25512
|
};
|
|
25405
25513
|
};
|
|
25406
|
-
const startListening = (options) => {
|
|
25514
|
+
const startListening = ((options) => {
|
|
25407
25515
|
const entry = findListenerEntry(listenerMap, options) ?? createListenerEntry(options);
|
|
25408
25516
|
return insertEntry(entry);
|
|
25409
|
-
};
|
|
25517
|
+
});
|
|
25410
25518
|
assign(startListening, {
|
|
25411
25519
|
withTypes: () => startListening
|
|
25412
25520
|
});
|
|
@@ -25581,7 +25689,7 @@ var createDynamicMiddleware = () => {
|
|
|
25581
25689
|
|
|
25582
25690
|
var isSliceLike = (maybeSliceLike) => "reducerPath" in maybeSliceLike && typeof maybeSliceLike.reducerPath === "string";
|
|
25583
25691
|
var getReducers = (slices) => slices.flatMap((sliceOrMap) => isSliceLike(sliceOrMap) ? [[sliceOrMap.reducerPath, sliceOrMap.reducer]] : Object.entries(sliceOrMap));
|
|
25584
|
-
var ORIGINAL_STATE = Symbol.for("rtk-state-proxy-original");
|
|
25692
|
+
var ORIGINAL_STATE = /* @__PURE__ */ Symbol.for("rtk-state-proxy-original");
|
|
25585
25693
|
var isStateProxy = (value) => !!value && !!value[ORIGINAL_STATE];
|
|
25586
25694
|
var stateProxyMap = /* @__PURE__ */ new WeakMap();
|
|
25587
25695
|
var createStateProxy = (state, reducerMap, initialStateCache) => getOrInsertComputed(stateProxyMap, state, () => new Proxy(state, {
|
|
@@ -27901,20 +28009,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
27901
28009
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
27902
28010
|
/* harmony export */ "default": () => (/* binding */ api)
|
|
27903
28011
|
/* harmony export */ });
|
|
27904
|
-
/*! js-cookie v3.0.
|
|
27905
|
-
/* eslint-disable no-var */
|
|
28012
|
+
/*! js-cookie v3.0.8 | MIT */
|
|
27906
28013
|
function assign (target) {
|
|
27907
28014
|
for (var i = 1; i < arguments.length; i++) {
|
|
27908
28015
|
var source = arguments[i];
|
|
27909
28016
|
for (var key in source) {
|
|
28017
|
+
if (key === '__proto__') continue
|
|
27910
28018
|
target[key] = source[key];
|
|
27911
28019
|
}
|
|
27912
28020
|
}
|
|
27913
28021
|
return target
|
|
27914
28022
|
}
|
|
27915
|
-
/* eslint-enable no-var */
|
|
27916
28023
|
|
|
27917
|
-
/* eslint-disable no-var */
|
|
27918
28024
|
var defaultConverter = {
|
|
27919
28025
|
read: function (value) {
|
|
27920
28026
|
if (value[0] === '"') {
|
|
@@ -27929,12 +28035,9 @@ var defaultConverter = {
|
|
|
27929
28035
|
)
|
|
27930
28036
|
}
|
|
27931
28037
|
};
|
|
27932
|
-
/* eslint-enable no-var */
|
|
27933
|
-
|
|
27934
|
-
/* eslint-disable no-var */
|
|
27935
28038
|
|
|
27936
|
-
function init
|
|
27937
|
-
function set
|
|
28039
|
+
function init(converter, defaultAttributes) {
|
|
28040
|
+
function set(name, value, attributes) {
|
|
27938
28041
|
if (typeof document === 'undefined') {
|
|
27939
28042
|
return
|
|
27940
28043
|
}
|
|
@@ -27978,7 +28081,7 @@ function init (converter, defaultAttributes) {
|
|
|
27978
28081
|
name + '=' + converter.write(value, name) + stringifiedAttributes)
|
|
27979
28082
|
}
|
|
27980
28083
|
|
|
27981
|
-
function get
|
|
28084
|
+
function get(name) {
|
|
27982
28085
|
if (typeof document === 'undefined' || (arguments.length && !name)) {
|
|
27983
28086
|
return
|
|
27984
28087
|
}
|
|
@@ -27993,12 +28096,13 @@ function init (converter, defaultAttributes) {
|
|
|
27993
28096
|
|
|
27994
28097
|
try {
|
|
27995
28098
|
var found = decodeURIComponent(parts[0]);
|
|
27996
|
-
jar[found] = converter.read(value, found);
|
|
27997
|
-
|
|
28099
|
+
if (!(found in jar)) jar[found] = converter.read(value, found);
|
|
27998
28100
|
if (name === found) {
|
|
27999
28101
|
break
|
|
28000
28102
|
}
|
|
28001
|
-
} catch (
|
|
28103
|
+
} catch (_e) {
|
|
28104
|
+
// Do nothing...
|
|
28105
|
+
}
|
|
28002
28106
|
}
|
|
28003
28107
|
|
|
28004
28108
|
return name ? jar[name] : jar
|
|
@@ -28006,8 +28110,8 @@ function init (converter, defaultAttributes) {
|
|
|
28006
28110
|
|
|
28007
28111
|
return Object.create(
|
|
28008
28112
|
{
|
|
28009
|
-
set,
|
|
28010
|
-
get,
|
|
28113
|
+
set: set,
|
|
28114
|
+
get: get,
|
|
28011
28115
|
remove: function (name, attributes) {
|
|
28012
28116
|
set(
|
|
28013
28117
|
name,
|
|
@@ -28032,7 +28136,6 @@ function init (converter, defaultAttributes) {
|
|
|
28032
28136
|
}
|
|
28033
28137
|
|
|
28034
28138
|
var api = init(defaultConverter, { path: '/' });
|
|
28035
|
-
/* eslint-enable no-var */
|
|
28036
28139
|
|
|
28037
28140
|
|
|
28038
28141
|
|
|
@@ -28071,10 +28174,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28071
28174
|
/* harmony export */ Provider: () => (/* binding */ Provider_default),
|
|
28072
28175
|
/* harmony export */ ReactReduxContext: () => (/* binding */ ReactReduxContext),
|
|
28073
28176
|
/* harmony export */ batch: () => (/* binding */ batch),
|
|
28074
|
-
/* harmony export */ connect: () => (/* binding */
|
|
28177
|
+
/* harmony export */ connect: () => (/* binding */ connect),
|
|
28075
28178
|
/* harmony export */ createDispatchHook: () => (/* binding */ createDispatchHook),
|
|
28076
28179
|
/* harmony export */ createSelectorHook: () => (/* binding */ createSelectorHook),
|
|
28077
28180
|
/* harmony export */ createStoreHook: () => (/* binding */ createStoreHook),
|
|
28181
|
+
/* harmony export */ legacy_connect: () => (/* binding */ legacy_connect),
|
|
28078
28182
|
/* harmony export */ shallowEqual: () => (/* binding */ shallowEqual),
|
|
28079
28183
|
/* harmony export */ useDispatch: () => (/* binding */ useDispatch),
|
|
28080
28184
|
/* harmony export */ useSelector: () => (/* binding */ useSelector),
|
|
@@ -28727,7 +28831,7 @@ function strictEqual(a, b) {
|
|
|
28727
28831
|
return a === b;
|
|
28728
28832
|
}
|
|
28729
28833
|
var hasWarnedAboutDeprecatedPureOption = false;
|
|
28730
|
-
function
|
|
28834
|
+
function _connect(mapStateToProps, mapDispatchToProps, mergeProps, {
|
|
28731
28835
|
// The `pure` option has been removed, so TS doesn't like us destructuring this to check its existence.
|
|
28732
28836
|
// @ts-ignore
|
|
28733
28837
|
pure,
|
|
@@ -28952,7 +29056,8 @@ ${latestSubscriptionCallbackError.current.stack}
|
|
|
28952
29056
|
};
|
|
28953
29057
|
return wrapWithConnect;
|
|
28954
29058
|
}
|
|
28955
|
-
var
|
|
29059
|
+
var connect = _connect;
|
|
29060
|
+
var legacy_connect = _connect;
|
|
28956
29061
|
|
|
28957
29062
|
// src/components/Provider.tsx
|
|
28958
29063
|
function Provider(providerProps) {
|
|
@@ -30337,17 +30442,17 @@ var createStructuredSelector = Object.assign(
|
|
|
30337
30442
|
/******/ });
|
|
30338
30443
|
/************************************************************************/
|
|
30339
30444
|
/******/ // The module cache
|
|
30340
|
-
/******/
|
|
30445
|
+
/******/ const __webpack_module_cache__ = {};
|
|
30341
30446
|
/******/
|
|
30342
30447
|
/******/ // The require function
|
|
30343
30448
|
/******/ function __webpack_require__(moduleId) {
|
|
30344
30449
|
/******/ // Check if module is in cache
|
|
30345
|
-
/******/
|
|
30450
|
+
/******/ const cachedModule = __webpack_module_cache__[moduleId];
|
|
30346
30451
|
/******/ if (cachedModule !== undefined) {
|
|
30347
30452
|
/******/ return cachedModule.exports;
|
|
30348
30453
|
/******/ }
|
|
30349
30454
|
/******/ // Create a new module (and put it into the cache)
|
|
30350
|
-
/******/
|
|
30455
|
+
/******/ const module = __webpack_module_cache__[moduleId] = {
|
|
30351
30456
|
/******/ // no module.id needed
|
|
30352
30457
|
/******/ // no module.loaded needed
|
|
30353
30458
|
/******/ exports: {}
|
|
@@ -30356,7 +30461,7 @@ var createStructuredSelector = Object.assign(
|
|
|
30356
30461
|
/******/ // Execute the module function
|
|
30357
30462
|
/******/ if (!(moduleId in __webpack_modules__)) {
|
|
30358
30463
|
/******/ delete __webpack_module_cache__[moduleId];
|
|
30359
|
-
/******/
|
|
30464
|
+
/******/ const e = new Error("Cannot find module '" + moduleId + "'");
|
|
30360
30465
|
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
30361
30466
|
/******/ throw e;
|
|
30362
30467
|
/******/ }
|
|
@@ -30371,7 +30476,7 @@ var createStructuredSelector = Object.assign(
|
|
|
30371
30476
|
/******/ (() => {
|
|
30372
30477
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
30373
30478
|
/******/ __webpack_require__.n = (module) => {
|
|
30374
|
-
/******/
|
|
30479
|
+
/******/ const getter = module && module.__esModule ?
|
|
30375
30480
|
/******/ () => (module['default']) :
|
|
30376
30481
|
/******/ () => (module);
|
|
30377
30482
|
/******/ __webpack_require__.d(getter, { a: getter });
|
|
@@ -30381,11 +30486,26 @@ var createStructuredSelector = Object.assign(
|
|
|
30381
30486
|
/******/
|
|
30382
30487
|
/******/ /* webpack/runtime/define property getters */
|
|
30383
30488
|
/******/ (() => {
|
|
30384
|
-
/******/ // define getter functions for harmony exports
|
|
30489
|
+
/******/ // define getter/value functions for harmony exports
|
|
30385
30490
|
/******/ __webpack_require__.d = (exports, definition) => {
|
|
30386
|
-
/******/
|
|
30387
|
-
/******/
|
|
30388
|
-
/******/
|
|
30491
|
+
/******/ if(Array.isArray(definition)) {
|
|
30492
|
+
/******/ var i = 0;
|
|
30493
|
+
/******/ while(i < definition.length) {
|
|
30494
|
+
/******/ var key = definition[i++];
|
|
30495
|
+
/******/ var binding = definition[i++];
|
|
30496
|
+
/******/ if(!__webpack_require__.o(exports, key)) {
|
|
30497
|
+
/******/ if(binding === 0) {
|
|
30498
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
|
|
30499
|
+
/******/ } else {
|
|
30500
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
|
|
30501
|
+
/******/ }
|
|
30502
|
+
/******/ } else if(binding === 0) { i++; }
|
|
30503
|
+
/******/ }
|
|
30504
|
+
/******/ } else {
|
|
30505
|
+
/******/ for(var key in definition) {
|
|
30506
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
30507
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
30508
|
+
/******/ }
|
|
30389
30509
|
/******/ }
|
|
30390
30510
|
/******/ }
|
|
30391
30511
|
/******/ };
|
|
@@ -30412,7 +30532,7 @@ var createStructuredSelector = Object.assign(
|
|
|
30412
30532
|
/******/ (() => {
|
|
30413
30533
|
/******/ // define __esModule on exports
|
|
30414
30534
|
/******/ __webpack_require__.r = (exports) => {
|
|
30415
|
-
/******/ if(
|
|
30535
|
+
/******/ if(Symbol.toStringTag) {
|
|
30416
30536
|
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
30417
30537
|
/******/ }
|
|
30418
30538
|
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -30421,16 +30541,16 @@ var createStructuredSelector = Object.assign(
|
|
|
30421
30541
|
/******/
|
|
30422
30542
|
/******/ /* webpack/runtime/publicPath */
|
|
30423
30543
|
/******/ (() => {
|
|
30424
|
-
/******/
|
|
30544
|
+
/******/ let scriptUrl;
|
|
30425
30545
|
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
|
|
30426
|
-
/******/
|
|
30546
|
+
/******/ const document = __webpack_require__.g.document;
|
|
30427
30547
|
/******/ if (!scriptUrl && document) {
|
|
30428
|
-
/******/ if (document.currentScript
|
|
30548
|
+
/******/ if (document.currentScript?.tagName.toUpperCase() === 'SCRIPT')
|
|
30429
30549
|
/******/ scriptUrl = document.currentScript.src;
|
|
30430
30550
|
/******/ if (!scriptUrl) {
|
|
30431
|
-
/******/
|
|
30551
|
+
/******/ const scripts = document.getElementsByTagName("script");
|
|
30432
30552
|
/******/ if(scripts.length) {
|
|
30433
|
-
/******/
|
|
30553
|
+
/******/ let i = scripts.length - 1;
|
|
30434
30554
|
/******/ while (i > -1 && (!scriptUrl || !/^http(s?):/.test(scriptUrl))) scriptUrl = scripts[i--].src;
|
|
30435
30555
|
/******/ }
|
|
30436
30556
|
/******/ }
|
|
@@ -30443,7 +30563,7 @@ var createStructuredSelector = Object.assign(
|
|
|
30443
30563
|
/******/ })();
|
|
30444
30564
|
/******/
|
|
30445
30565
|
/************************************************************************/
|
|
30446
|
-
|
|
30566
|
+
let __webpack_exports__ = {};
|
|
30447
30567
|
// This entry needs to be wrapped in an IIFE because it needs to be in strict mode.
|
|
30448
30568
|
(() => {
|
|
30449
30569
|
"use strict";
|