@adgytec/adgytec-web-ui-components 2.1.4 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/NavigationScrollContainer.css +1 -1
- package/dist/assets/core9.css +1 -1
- package/dist/chunks/Input2 +94 -94
- package/dist/chunks/Input2.map +1 -1
- package/dist/chunks/NavigationScrollContainer +1 -1
- package/dist/chunks/NavigationScrollContainer.map +1 -1
- package/dist/chunks/core8 +3 -3
- package/dist/chunks/core8.map +1 -1
- package/dist/chunks/useGlobalListeners +294 -0
- package/dist/chunks/useGlobalListeners.map +1 -0
- package/dist/chunks/useHover +86 -86
- package/dist/chunks/usePress +282 -568
- package/dist/chunks/usePress.map +1 -1
- package/dist/components/Input/TextArea/index.js +1 -1
- package/dist/components/Input/TextArea/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
import e, { useCallback as t, useEffect as n, useRef as r } from "react";
|
|
2
|
+
//#region node_modules/react-aria/dist/private/utils/focusWithoutScrolling.mjs
|
|
3
|
+
function i(e) {
|
|
4
|
+
if (o()) e.focus({ preventScroll: !0 });
|
|
5
|
+
else {
|
|
6
|
+
let t = s(e);
|
|
7
|
+
e.focus(), c(t);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
var a = null;
|
|
11
|
+
function o() {
|
|
12
|
+
if (a == null) {
|
|
13
|
+
a = !1;
|
|
14
|
+
try {
|
|
15
|
+
document.createElement("div").focus({ get preventScroll() {
|
|
16
|
+
return a = !0, !0;
|
|
17
|
+
} });
|
|
18
|
+
} catch {}
|
|
19
|
+
}
|
|
20
|
+
return a;
|
|
21
|
+
}
|
|
22
|
+
function s(e) {
|
|
23
|
+
let t = e.parentNode, n = [], r = document.scrollingElement || document.documentElement;
|
|
24
|
+
for (; t instanceof HTMLElement && t !== r;) (t.offsetHeight < t.scrollHeight || t.offsetWidth < t.scrollWidth) && n.push({
|
|
25
|
+
element: t,
|
|
26
|
+
scrollTop: t.scrollTop,
|
|
27
|
+
scrollLeft: t.scrollLeft
|
|
28
|
+
}), t = t.parentNode;
|
|
29
|
+
return r instanceof HTMLElement && n.push({
|
|
30
|
+
element: r,
|
|
31
|
+
scrollTop: r.scrollTop,
|
|
32
|
+
scrollLeft: r.scrollLeft
|
|
33
|
+
}), n;
|
|
34
|
+
}
|
|
35
|
+
function c(e) {
|
|
36
|
+
for (let { element: t, scrollTop: n, scrollLeft: r } of e) t.scrollTop = n, t.scrollLeft = r;
|
|
37
|
+
}
|
|
38
|
+
//#endregion
|
|
39
|
+
//#region node_modules/react-aria/dist/private/utils/domHelpers.mjs
|
|
40
|
+
var l = (e) => e?.ownerDocument ?? document, u = (e) => e && "window" in e && e.window === e ? e : l(e).defaultView || window;
|
|
41
|
+
function d(e) {
|
|
42
|
+
return typeof e == "object" && !!e && "nodeType" in e && typeof e.nodeType == "number";
|
|
43
|
+
}
|
|
44
|
+
function f(e) {
|
|
45
|
+
return d(e) && e.nodeType === Node.DOCUMENT_FRAGMENT_NODE && "host" in e;
|
|
46
|
+
}
|
|
47
|
+
//#endregion
|
|
48
|
+
//#region node_modules/react-stately/dist/private/flags/flags.mjs
|
|
49
|
+
var p = !1;
|
|
50
|
+
function m() {
|
|
51
|
+
return p;
|
|
52
|
+
}
|
|
53
|
+
//#endregion
|
|
54
|
+
//#region node_modules/react-aria/dist/private/utils/shadowdom/DOMFunctions.mjs
|
|
55
|
+
function h(e, t) {
|
|
56
|
+
if (!m()) return t && e ? e.contains(t) : !1;
|
|
57
|
+
if (!e || !t) return !1;
|
|
58
|
+
let n = t;
|
|
59
|
+
for (; n !== null;) {
|
|
60
|
+
if (n === e) return !0;
|
|
61
|
+
n = n.tagName === "SLOT" && n.assignedSlot ? n.assignedSlot.parentNode : f(n) ? n.host : n.parentNode;
|
|
62
|
+
}
|
|
63
|
+
return !1;
|
|
64
|
+
}
|
|
65
|
+
var g = (e = document) => {
|
|
66
|
+
if (!m()) return e.activeElement;
|
|
67
|
+
let t = e.activeElement;
|
|
68
|
+
for (; t && "shadowRoot" in t && t.shadowRoot?.activeElement;) t = t.shadowRoot.activeElement;
|
|
69
|
+
return t;
|
|
70
|
+
};
|
|
71
|
+
function _(e) {
|
|
72
|
+
if (m() && e.target instanceof Element && e.target.shadowRoot) {
|
|
73
|
+
if ("composedPath" in e) return e.composedPath()[0] ?? null;
|
|
74
|
+
if ("composedPath" in e.nativeEvent) return e.nativeEvent.composedPath()[0] ?? null;
|
|
75
|
+
}
|
|
76
|
+
return e.target;
|
|
77
|
+
}
|
|
78
|
+
//#endregion
|
|
79
|
+
//#region node_modules/react-aria/dist/private/utils/isElementVisible.mjs
|
|
80
|
+
var v = typeof Element < "u" && "checkVisibility" in Element.prototype;
|
|
81
|
+
function y(e) {
|
|
82
|
+
let t = u(e);
|
|
83
|
+
if (!(e instanceof t.HTMLElement) && !(e instanceof t.SVGElement)) return !1;
|
|
84
|
+
let { display: n, visibility: r } = e.style, i = n !== "none" && r !== "hidden" && r !== "collapse";
|
|
85
|
+
if (i) {
|
|
86
|
+
let { getComputedStyle: t } = e.ownerDocument.defaultView, { display: n, visibility: r } = t(e);
|
|
87
|
+
i = n !== "none" && r !== "hidden" && r !== "collapse";
|
|
88
|
+
}
|
|
89
|
+
return i;
|
|
90
|
+
}
|
|
91
|
+
function b(e, t) {
|
|
92
|
+
return !e.hasAttribute("hidden") && !e.hasAttribute("data-react-aria-prevent-focus") && (e.nodeName === "DETAILS" && t && t.nodeName !== "SUMMARY" ? e.hasAttribute("open") : !0);
|
|
93
|
+
}
|
|
94
|
+
function x(e, t) {
|
|
95
|
+
return v ? e.checkVisibility({ visibilityProperty: !0 }) && !e.closest("[data-react-aria-prevent-focus]") : e.nodeName !== "#comment" && y(e) && b(e, t) && (!e.parentElement || x(e.parentElement, e));
|
|
96
|
+
}
|
|
97
|
+
//#endregion
|
|
98
|
+
//#region node_modules/react-aria/dist/private/utils/isFocusable.mjs
|
|
99
|
+
var S = [
|
|
100
|
+
"input:not([disabled]):not([type=hidden])",
|
|
101
|
+
"select:not([disabled])",
|
|
102
|
+
"textarea:not([disabled])",
|
|
103
|
+
"button:not([disabled])",
|
|
104
|
+
"a[href]",
|
|
105
|
+
"area[href]",
|
|
106
|
+
"summary",
|
|
107
|
+
"iframe",
|
|
108
|
+
"object",
|
|
109
|
+
"embed",
|
|
110
|
+
"audio[controls]",
|
|
111
|
+
"video[controls]",
|
|
112
|
+
"[contenteditable]:not([contenteditable^=\"false\"])",
|
|
113
|
+
"permission"
|
|
114
|
+
], C = S.join(":not([hidden]),") + ",[tabindex]:not([disabled]):not([hidden])";
|
|
115
|
+
S.push("[tabindex]:not([tabindex=\"-1\"]):not([disabled])"), S.join(":not([hidden]):not([tabindex=\"-1\"]),");
|
|
116
|
+
function w(e, t) {
|
|
117
|
+
return e.matches(C) && !T(e) && (t?.skipVisibilityCheck || x(e));
|
|
118
|
+
}
|
|
119
|
+
function T(e) {
|
|
120
|
+
let t = e;
|
|
121
|
+
for (; t != null;) {
|
|
122
|
+
if (t instanceof t.ownerDocument.defaultView.HTMLElement && t.inert) return !0;
|
|
123
|
+
t = t.parentElement;
|
|
124
|
+
}
|
|
125
|
+
return !1;
|
|
126
|
+
}
|
|
127
|
+
//#endregion
|
|
128
|
+
//#region node_modules/react-aria/dist/private/utils/useLayoutEffect.mjs
|
|
129
|
+
var E = typeof document < "u" ? e.useLayoutEffect : () => {};
|
|
130
|
+
//#endregion
|
|
131
|
+
//#region node_modules/react-aria/dist/private/interactions/utils.mjs
|
|
132
|
+
function D(e) {
|
|
133
|
+
let t = e;
|
|
134
|
+
return t.nativeEvent = e, t.isDefaultPrevented = () => t.defaultPrevented, t.isPropagationStopped = () => t.cancelBubble, t.persist = () => {}, t;
|
|
135
|
+
}
|
|
136
|
+
function O(e, t) {
|
|
137
|
+
Object.defineProperty(e, "target", { value: t }), Object.defineProperty(e, "currentTarget", { value: t });
|
|
138
|
+
}
|
|
139
|
+
function k(e) {
|
|
140
|
+
let n = r({
|
|
141
|
+
isFocused: !1,
|
|
142
|
+
observer: null
|
|
143
|
+
});
|
|
144
|
+
return E(() => {
|
|
145
|
+
let e = n.current;
|
|
146
|
+
return () => {
|
|
147
|
+
e.observer &&= (e.observer.disconnect(), null);
|
|
148
|
+
};
|
|
149
|
+
}, []), t((t) => {
|
|
150
|
+
let r = _(t);
|
|
151
|
+
if (r instanceof HTMLButtonElement || r instanceof HTMLInputElement || r instanceof HTMLTextAreaElement || r instanceof HTMLSelectElement) {
|
|
152
|
+
n.current.isFocused = !0;
|
|
153
|
+
let t = r;
|
|
154
|
+
t.addEventListener("focusout", (r) => {
|
|
155
|
+
if (n.current.isFocused = !1, t.disabled) {
|
|
156
|
+
let t = D(r);
|
|
157
|
+
e?.(t);
|
|
158
|
+
}
|
|
159
|
+
n.current.observer && (n.current.observer.disconnect(), n.current.observer = null);
|
|
160
|
+
}, { once: !0 }), n.current.observer = new MutationObserver(() => {
|
|
161
|
+
if (n.current.isFocused && t.disabled) {
|
|
162
|
+
n.current.observer?.disconnect();
|
|
163
|
+
let e = t === g() ? null : g();
|
|
164
|
+
t.dispatchEvent(new FocusEvent("blur", { relatedTarget: e })), t.dispatchEvent(new FocusEvent("focusout", {
|
|
165
|
+
bubbles: !0,
|
|
166
|
+
relatedTarget: e
|
|
167
|
+
}));
|
|
168
|
+
}
|
|
169
|
+
}), n.current.observer.observe(t, {
|
|
170
|
+
attributes: !0,
|
|
171
|
+
attributeFilter: ["disabled"]
|
|
172
|
+
});
|
|
173
|
+
}
|
|
174
|
+
}, [e]);
|
|
175
|
+
}
|
|
176
|
+
var A = !1;
|
|
177
|
+
function j(e) {
|
|
178
|
+
for (; e && !w(e, { skipVisibilityCheck: !0 });) e = e.parentElement;
|
|
179
|
+
let t = u(e), n = t.document.activeElement;
|
|
180
|
+
if (!n || n === e) return;
|
|
181
|
+
A = !0;
|
|
182
|
+
let r = !1, a = (e) => {
|
|
183
|
+
(_(e) === n || r) && e.stopImmediatePropagation();
|
|
184
|
+
}, o = (t) => {
|
|
185
|
+
(_(t) === n || r) && (t.stopImmediatePropagation(), !e && !r && (r = !0, i(n), l()));
|
|
186
|
+
}, s = (t) => {
|
|
187
|
+
(_(t) === e || r) && t.stopImmediatePropagation();
|
|
188
|
+
}, c = (t) => {
|
|
189
|
+
(_(t) === e || r) && (t.stopImmediatePropagation(), r || (r = !0, i(n), l()));
|
|
190
|
+
};
|
|
191
|
+
t.addEventListener("blur", a, !0), t.addEventListener("focusout", o, !0), t.addEventListener("focusin", c, !0), t.addEventListener("focus", s, !0);
|
|
192
|
+
let l = () => {
|
|
193
|
+
cancelAnimationFrame(d), t.removeEventListener("blur", a, !0), t.removeEventListener("focusout", o, !0), t.removeEventListener("focusin", c, !0), t.removeEventListener("focus", s, !0), A = !1, r = !1;
|
|
194
|
+
}, d = requestAnimationFrame(l);
|
|
195
|
+
return l;
|
|
196
|
+
}
|
|
197
|
+
//#endregion
|
|
198
|
+
//#region node_modules/react-aria/dist/private/utils/platform.mjs
|
|
199
|
+
function M(e) {
|
|
200
|
+
if (typeof window > "u" || window.navigator == null) return !1;
|
|
201
|
+
let t = window.navigator.userAgentData?.brands;
|
|
202
|
+
return Array.isArray(t) && t.some((t) => e.test(t.brand)) || e.test(window.navigator.userAgent);
|
|
203
|
+
}
|
|
204
|
+
function N(e) {
|
|
205
|
+
return typeof window < "u" && window.navigator != null ? e.test(window.navigator.userAgentData?.platform || window.navigator.platform) : !1;
|
|
206
|
+
}
|
|
207
|
+
function P(e) {
|
|
208
|
+
if (process.env.NODE_ENV === "test") return e;
|
|
209
|
+
let t = null;
|
|
210
|
+
return () => (t ??= e(), t);
|
|
211
|
+
}
|
|
212
|
+
var F = P(function() {
|
|
213
|
+
return N(/^Mac/i);
|
|
214
|
+
}), I = P(function() {
|
|
215
|
+
return N(/^iPhone/i);
|
|
216
|
+
}), L = P(function() {
|
|
217
|
+
return N(/^iPad/i) || F() && navigator.maxTouchPoints > 1;
|
|
218
|
+
}), R = P(function() {
|
|
219
|
+
return I() || L();
|
|
220
|
+
});
|
|
221
|
+
P(function() {
|
|
222
|
+
return F() || R();
|
|
223
|
+
});
|
|
224
|
+
var z = P(function() {
|
|
225
|
+
return M(/AppleWebKit/i) && !B();
|
|
226
|
+
}), B = P(function() {
|
|
227
|
+
return M(/Chrome/i);
|
|
228
|
+
}), V = P(function() {
|
|
229
|
+
return M(/Android/i);
|
|
230
|
+
}), H = P(function() {
|
|
231
|
+
return M(/Firefox/i);
|
|
232
|
+
});
|
|
233
|
+
//#endregion
|
|
234
|
+
//#region node_modules/react-aria/dist/private/utils/isVirtualEvent.mjs
|
|
235
|
+
function U(e) {
|
|
236
|
+
return e.pointerType === "" && e.isTrusted ? !0 : V() && e.pointerType ? e.type === "click" && e.buttons === 1 : e.detail === 0 && !e.pointerType;
|
|
237
|
+
}
|
|
238
|
+
function W(e) {
|
|
239
|
+
return !V() && e.width === 0 && e.height === 0 || e.width === 1 && e.height === 1 && e.pressure === 0 && e.detail === 0 && e.pointerType === "mouse";
|
|
240
|
+
}
|
|
241
|
+
//#endregion
|
|
242
|
+
//#region node_modules/react-aria/dist/private/utils/openLink.mjs
|
|
243
|
+
function G(e, t, n = !0) {
|
|
244
|
+
let { metaKey: r, ctrlKey: a, altKey: o, shiftKey: s } = t;
|
|
245
|
+
H() && window.event?.type?.startsWith("key") && e.target === "_blank" && (F() ? r = !0 : a = !0);
|
|
246
|
+
let c = z() && F() && !L() && process.env.NODE_ENV !== "test" ? new KeyboardEvent("keydown", {
|
|
247
|
+
keyIdentifier: "Enter",
|
|
248
|
+
metaKey: r,
|
|
249
|
+
ctrlKey: a,
|
|
250
|
+
altKey: o,
|
|
251
|
+
shiftKey: s
|
|
252
|
+
}) : new MouseEvent("click", {
|
|
253
|
+
metaKey: r,
|
|
254
|
+
ctrlKey: a,
|
|
255
|
+
altKey: o,
|
|
256
|
+
shiftKey: s,
|
|
257
|
+
detail: 1,
|
|
258
|
+
bubbles: !0,
|
|
259
|
+
cancelable: !0
|
|
260
|
+
});
|
|
261
|
+
G.isOpening = n, i(e), e.dispatchEvent(c), G.isOpening = !1;
|
|
262
|
+
}
|
|
263
|
+
G.isOpening = !1;
|
|
264
|
+
//#endregion
|
|
265
|
+
//#region node_modules/react-aria/dist/private/utils/useGlobalListeners.mjs
|
|
266
|
+
function K() {
|
|
267
|
+
let e = r(/* @__PURE__ */ new Map()), i = t((t, n, r, i) => {
|
|
268
|
+
let a = i?.once ? (...t) => {
|
|
269
|
+
e.current.delete(r), r(...t);
|
|
270
|
+
} : r;
|
|
271
|
+
e.current.set(r, {
|
|
272
|
+
type: n,
|
|
273
|
+
eventTarget: t,
|
|
274
|
+
fn: a,
|
|
275
|
+
options: i
|
|
276
|
+
}), t.addEventListener(n, a, i);
|
|
277
|
+
}, []), a = t((t, n, r, i) => {
|
|
278
|
+
let a = e.current.get(r)?.fn || r;
|
|
279
|
+
t.removeEventListener(n, a, i), e.current.delete(r);
|
|
280
|
+
}, []), o = t(() => {
|
|
281
|
+
e.current.forEach((e, t) => {
|
|
282
|
+
a(e.eventTarget, e.type, t, e.options);
|
|
283
|
+
});
|
|
284
|
+
}, [a]);
|
|
285
|
+
return n(() => o, [o]), {
|
|
286
|
+
addGlobalListener: i,
|
|
287
|
+
removeGlobalListener: a,
|
|
288
|
+
removeAllGlobalListeners: o
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
//#endregion
|
|
292
|
+
export { u as _, F as a, k as c, A as d, E as f, l as g, _ as h, U as i, O as l, g as m, G as n, R as o, h as p, W as r, D as s, K as t, j as u, i as v };
|
|
293
|
+
|
|
294
|
+
//# sourceMappingURL=useGlobalListeners.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useGlobalListeners","names":["$eXv8n$shadowDOM","$3ARPR$react","$lIB5W$useRef","$lIB5W$useCallback","$awe0O$useRef","$awe0O$useCallback","$awe0O$useEffect"],"sources":["../../node_modules/react-aria/dist/private/utils/focusWithoutScrolling.mjs","../../node_modules/react-aria/dist/private/utils/domHelpers.mjs","../../node_modules/react-stately/dist/private/flags/flags.mjs","../../node_modules/react-aria/dist/private/utils/shadowdom/DOMFunctions.mjs","../../node_modules/react-aria/dist/private/utils/isElementVisible.mjs","../../node_modules/react-aria/dist/private/utils/isFocusable.mjs","../../node_modules/react-aria/dist/private/utils/useLayoutEffect.mjs","../../node_modules/react-aria/dist/private/interactions/utils.mjs","../../node_modules/react-aria/dist/private/utils/platform.mjs","../../node_modules/react-aria/dist/private/utils/isVirtualEvent.mjs","../../node_modules/react-aria/dist/private/utils/openLink.mjs","../../node_modules/react-aria/dist/private/utils/useGlobalListeners.mjs"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ function $1969ac565cfec8d0$export$de79e2c695e052f3(element) {\n if ($1969ac565cfec8d0$var$supportsPreventScroll()) element.focus({\n preventScroll: true\n });\n else {\n let scrollableElements = $1969ac565cfec8d0$var$getScrollableElements(element);\n element.focus();\n $1969ac565cfec8d0$var$restoreScrollPosition(scrollableElements);\n }\n}\nlet $1969ac565cfec8d0$var$supportsPreventScrollCached = null;\nfunction $1969ac565cfec8d0$var$supportsPreventScroll() {\n if ($1969ac565cfec8d0$var$supportsPreventScrollCached == null) {\n $1969ac565cfec8d0$var$supportsPreventScrollCached = false;\n try {\n let focusElem = document.createElement('div');\n focusElem.focus({\n get preventScroll () {\n $1969ac565cfec8d0$var$supportsPreventScrollCached = true;\n return true;\n }\n });\n } catch {\n // Ignore\n }\n }\n return $1969ac565cfec8d0$var$supportsPreventScrollCached;\n}\nfunction $1969ac565cfec8d0$var$getScrollableElements(element) {\n let parent = element.parentNode;\n let scrollableElements = [];\n let rootScrollingElement = document.scrollingElement || document.documentElement;\n while(parent instanceof HTMLElement && parent !== rootScrollingElement){\n if (parent.offsetHeight < parent.scrollHeight || parent.offsetWidth < parent.scrollWidth) scrollableElements.push({\n element: parent,\n scrollTop: parent.scrollTop,\n scrollLeft: parent.scrollLeft\n });\n parent = parent.parentNode;\n }\n if (rootScrollingElement instanceof HTMLElement) scrollableElements.push({\n element: rootScrollingElement,\n scrollTop: rootScrollingElement.scrollTop,\n scrollLeft: rootScrollingElement.scrollLeft\n });\n return scrollableElements;\n}\nfunction $1969ac565cfec8d0$var$restoreScrollPosition(scrollableElements) {\n for (let { element: element, scrollTop: scrollTop, scrollLeft: scrollLeft } of scrollableElements){\n element.scrollTop = scrollTop;\n element.scrollLeft = scrollLeft;\n }\n}\n\n\nexport {$1969ac565cfec8d0$export$de79e2c695e052f3 as focusWithoutScrolling};\n//# sourceMappingURL=focusWithoutScrolling.mjs.map\n","const $d447af545b77c9f1$export$b204af158042fbac = (el)=>{\n return el?.ownerDocument ?? document;\n};\nconst $d447af545b77c9f1$export$f21a1ffae260145a = (el)=>{\n if (el && 'window' in el && el.window === el) return el;\n const doc = $d447af545b77c9f1$export$b204af158042fbac(el);\n return doc.defaultView || window;\n};\n/**\n * Type guard that checks if a value is a Node. Verifies the presence and type of the nodeType property.\n */ function $d447af545b77c9f1$var$isNode(value) {\n return value !== null && typeof value === 'object' && 'nodeType' in value && typeof value.nodeType === 'number';\n}\nfunction $d447af545b77c9f1$export$af51f0f06c0f328a(node) {\n return $d447af545b77c9f1$var$isNode(node) && node.nodeType === Node.DOCUMENT_FRAGMENT_NODE && 'host' in node;\n}\n\n\nexport {$d447af545b77c9f1$export$b204af158042fbac as getOwnerDocument, $d447af545b77c9f1$export$f21a1ffae260145a as getOwnerWindow, $d447af545b77c9f1$export$af51f0f06c0f328a as isShadowRoot};\n//# sourceMappingURL=domHelpers.mjs.map\n","/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ let $6a20a7989e6c817a$var$_tableNestedRows = false;\nlet $6a20a7989e6c817a$var$_shadowDOM = false;\nfunction $6a20a7989e6c817a$export$d9d8a0f82de49530() {\n $6a20a7989e6c817a$var$_tableNestedRows = true;\n}\nfunction $6a20a7989e6c817a$export$1b00cb14a96194e6() {\n return $6a20a7989e6c817a$var$_tableNestedRows;\n}\nfunction $6a20a7989e6c817a$export$12b151d9882e9985() {\n $6a20a7989e6c817a$var$_shadowDOM = true;\n}\nfunction $6a20a7989e6c817a$export$98658e8c59125e6a() {\n return $6a20a7989e6c817a$var$_shadowDOM;\n}\n\n\nexport {$6a20a7989e6c817a$export$d9d8a0f82de49530 as enableTableNestedRows, $6a20a7989e6c817a$export$1b00cb14a96194e6 as tableNestedRows, $6a20a7989e6c817a$export$12b151d9882e9985 as enableShadowDOM, $6a20a7989e6c817a$export$98658e8c59125e6a as shadowDOM};\n//# sourceMappingURL=flags.mjs.map\n","import {getOwnerWindow as $d447af545b77c9f1$export$f21a1ffae260145a, isShadowRoot as $d447af545b77c9f1$export$af51f0f06c0f328a} from \"../domHelpers.mjs\";\nimport {shadowDOM as $eXv8n$shadowDOM} from \"react-stately/private/flags/flags\";\n\n// Source: https://github.com/microsoft/tabster/blob/a89fc5d7e332d48f68d03b1ca6e344489d1c3898/src/Shadowdomize/DOMFunctions.ts#L16\n/* eslint-disable rsp-rules/no-non-shadow-contains, rsp-rules/safe-event-target */ \n\nfunction $23f2114a1b82827e$export$4282f70798064fe0(node, otherNode) {\n if (!(0, $eXv8n$shadowDOM)()) return otherNode && node ? node.contains(otherNode) : false;\n if (!node || !otherNode) return false;\n let currentNode = otherNode;\n while(currentNode !== null){\n if (currentNode === node) return true;\n if (currentNode.tagName === 'SLOT' && currentNode.assignedSlot) // Element is slotted\n currentNode = currentNode.assignedSlot.parentNode;\n else if ((0, $d447af545b77c9f1$export$af51f0f06c0f328a)(currentNode)) // Element is in shadow root\n currentNode = currentNode.host;\n else currentNode = currentNode.parentNode;\n }\n return false;\n}\nconst $23f2114a1b82827e$export$cd4e5573fbe2b576 = (doc = document)=>{\n if (!(0, $eXv8n$shadowDOM)()) return doc.activeElement;\n let activeElement = doc.activeElement;\n while(activeElement && 'shadowRoot' in activeElement && activeElement.shadowRoot?.activeElement)activeElement = activeElement.shadowRoot.activeElement;\n return activeElement;\n};\nfunction $23f2114a1b82827e$export$e58f029f0fbfdb29(event) {\n if ((0, $eXv8n$shadowDOM)() && event.target instanceof Element && event.target.shadowRoot) {\n if ('composedPath' in event) return event.composedPath()[0] ?? null;\n else if ('composedPath' in event.nativeEvent) return event.nativeEvent.composedPath()[0] ?? null;\n }\n return event.target;\n}\nfunction $23f2114a1b82827e$export$b4f377a2b6254582(node) {\n if (!node) return false;\n // Get the active element within the node's parent shadow root (or the document). Can return null.\n let root = node.getRootNode();\n let ownerWindow = (0, $d447af545b77c9f1$export$f21a1ffae260145a)(node);\n if (!(root instanceof ownerWindow.Document || root instanceof ownerWindow.ShadowRoot)) return false;\n let activeElement = root.activeElement;\n // Check if the active element is within this node. These nodes are within the same shadow root.\n return activeElement != null && node.contains(activeElement);\n}\n\n\nexport {$23f2114a1b82827e$export$4282f70798064fe0 as nodeContains, $23f2114a1b82827e$export$cd4e5573fbe2b576 as getActiveElement, $23f2114a1b82827e$export$e58f029f0fbfdb29 as getEventTarget, $23f2114a1b82827e$export$b4f377a2b6254582 as isFocusWithin};\n//# sourceMappingURL=DOMFunctions.mjs.map\n","import {getOwnerWindow as $d447af545b77c9f1$export$f21a1ffae260145a} from \"./domHelpers.mjs\";\n\n/*\n * Copyright 2021 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nconst $ae77152785188400$var$supportsCheckVisibility = typeof Element !== 'undefined' && 'checkVisibility' in Element.prototype;\nfunction $ae77152785188400$var$isStyleVisible(element) {\n const windowObject = (0, $d447af545b77c9f1$export$f21a1ffae260145a)(element);\n if (!(element instanceof windowObject.HTMLElement) && !(element instanceof windowObject.SVGElement)) return false;\n let { display: display, visibility: visibility } = element.style;\n let isVisible = display !== 'none' && visibility !== 'hidden' && visibility !== 'collapse';\n if (isVisible) {\n const { getComputedStyle: getComputedStyle } = element.ownerDocument.defaultView;\n let { display: computedDisplay, visibility: computedVisibility } = getComputedStyle(element);\n isVisible = computedDisplay !== 'none' && computedVisibility !== 'hidden' && computedVisibility !== 'collapse';\n }\n return isVisible;\n}\nfunction $ae77152785188400$var$isAttributeVisible(element, childElement) {\n return !element.hasAttribute('hidden') && // Ignore HiddenSelect when tree walking.\n !element.hasAttribute('data-react-aria-prevent-focus') && (element.nodeName === 'DETAILS' && childElement && childElement.nodeName !== 'SUMMARY' ? element.hasAttribute('open') : true);\n}\nfunction $ae77152785188400$export$e989c0fffaa6b27a(element, childElement) {\n if ($ae77152785188400$var$supportsCheckVisibility) return element.checkVisibility({\n visibilityProperty: true\n }) && !element.closest('[data-react-aria-prevent-focus]');\n return element.nodeName !== '#comment' && $ae77152785188400$var$isStyleVisible(element) && $ae77152785188400$var$isAttributeVisible(element, childElement) && (!element.parentElement || $ae77152785188400$export$e989c0fffaa6b27a(element.parentElement, element));\n}\n\n\nexport {$ae77152785188400$export$e989c0fffaa6b27a as isElementVisible};\n//# sourceMappingURL=isElementVisible.mjs.map\n","import {isElementVisible as $ae77152785188400$export$e989c0fffaa6b27a} from \"./isElementVisible.mjs\";\n\n/*\n * Copyright 2025 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nconst $3b8b240c1bf84ab9$var$focusableElements = [\n 'input:not([disabled]):not([type=hidden])',\n 'select:not([disabled])',\n 'textarea:not([disabled])',\n 'button:not([disabled])',\n 'a[href]',\n 'area[href]',\n 'summary',\n 'iframe',\n 'object',\n 'embed',\n 'audio[controls]',\n 'video[controls]',\n '[contenteditable]:not([contenteditable^=\"false\"])',\n 'permission'\n];\nconst $3b8b240c1bf84ab9$var$FOCUSABLE_ELEMENT_SELECTOR = $3b8b240c1bf84ab9$var$focusableElements.join(':not([hidden]),') + ',[tabindex]:not([disabled]):not([hidden])';\n$3b8b240c1bf84ab9$var$focusableElements.push('[tabindex]:not([tabindex=\"-1\"]):not([disabled])');\nconst $3b8b240c1bf84ab9$var$TABBABLE_ELEMENT_SELECTOR = $3b8b240c1bf84ab9$var$focusableElements.join(':not([hidden]):not([tabindex=\"-1\"]),');\nfunction $3b8b240c1bf84ab9$export$4c063cf1350e6fed(element, options) {\n return element.matches($3b8b240c1bf84ab9$var$FOCUSABLE_ELEMENT_SELECTOR) && !$3b8b240c1bf84ab9$var$isInert(element) && (options?.skipVisibilityCheck || (0, $ae77152785188400$export$e989c0fffaa6b27a)(element));\n}\nfunction $3b8b240c1bf84ab9$export$bebd5a1431fec25d(element) {\n return element.matches($3b8b240c1bf84ab9$var$TABBABLE_ELEMENT_SELECTOR) && (0, $ae77152785188400$export$e989c0fffaa6b27a)(element) && !$3b8b240c1bf84ab9$var$isInert(element);\n}\nfunction $3b8b240c1bf84ab9$var$isInert(element) {\n let node = element;\n while(node != null){\n if (node instanceof node.ownerDocument.defaultView.HTMLElement && node.inert) return true;\n node = node.parentElement;\n }\n return false;\n}\n\n\nexport {$3b8b240c1bf84ab9$export$4c063cf1350e6fed as isFocusable, $3b8b240c1bf84ab9$export$bebd5a1431fec25d as isTabbable};\n//# sourceMappingURL=isFocusable.mjs.map\n","import $3ARPR$react from \"react\";\n\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nconst $c4867b2f328c2698$export$e5c5a5f917a5871c = typeof document !== 'undefined' ? (0, $3ARPR$react).useLayoutEffect : ()=>{};\n\n\nexport {$c4867b2f328c2698$export$e5c5a5f917a5871c as useLayoutEffect};\n//# sourceMappingURL=useLayoutEffect.mjs.map\n","import {focusWithoutScrolling as $1969ac565cfec8d0$export$de79e2c695e052f3} from \"../utils/focusWithoutScrolling.mjs\";\nimport {getActiveElement as $23f2114a1b82827e$export$cd4e5573fbe2b576, getEventTarget as $23f2114a1b82827e$export$e58f029f0fbfdb29} from \"../utils/shadowdom/DOMFunctions.mjs\";\nimport {getOwnerWindow as $d447af545b77c9f1$export$f21a1ffae260145a} from \"../utils/domHelpers.mjs\";\nimport {isFocusable as $3b8b240c1bf84ab9$export$4c063cf1350e6fed} from \"../utils/isFocusable.mjs\";\nimport {useLayoutEffect as $c4867b2f328c2698$export$e5c5a5f917a5871c} from \"../utils/useLayoutEffect.mjs\";\nimport {useRef as $lIB5W$useRef, useCallback as $lIB5W$useCallback} from \"react\";\n\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \n\n\n\n\n\nfunction $a92dc41f639950be$export$525bc4921d56d4a(nativeEvent) {\n let event = nativeEvent;\n event.nativeEvent = nativeEvent;\n event.isDefaultPrevented = ()=>event.defaultPrevented;\n // cancelBubble is technically deprecated in the spec, but still supported in all browsers.\n event.isPropagationStopped = ()=>event.cancelBubble;\n event.persist = ()=>{};\n return event;\n}\nfunction $a92dc41f639950be$export$c2b7abe5d61ec696(event, target) {\n Object.defineProperty(event, 'target', {\n value: target\n });\n Object.defineProperty(event, 'currentTarget', {\n value: target\n });\n}\nfunction $a92dc41f639950be$export$715c682d09d639cc(onBlur) {\n let stateRef = (0, $lIB5W$useRef)({\n isFocused: false,\n observer: null\n });\n // Clean up MutationObserver on unmount. See below.\n (0, $c4867b2f328c2698$export$e5c5a5f917a5871c)(()=>{\n const state = stateRef.current;\n return ()=>{\n if (state.observer) {\n state.observer.disconnect();\n state.observer = null;\n }\n };\n }, []);\n // This function is called during a React onFocus event.\n return (0, $lIB5W$useCallback)((e)=>{\n // React does not fire onBlur when an element is disabled. https://github.com/facebook/react/issues/9142\n // Most browsers fire a native focusout event in this case, except for Firefox. In that case, we use a\n // MutationObserver to watch for the disabled attribute, and dispatch these events ourselves.\n // For browsers that do, focusout fires before the MutationObserver, so onBlur should not fire twice.\n let eventTarget = (0, $23f2114a1b82827e$export$e58f029f0fbfdb29)(e);\n if (eventTarget instanceof HTMLButtonElement || eventTarget instanceof HTMLInputElement || eventTarget instanceof HTMLTextAreaElement || eventTarget instanceof HTMLSelectElement) {\n stateRef.current.isFocused = true;\n let target = eventTarget;\n let onBlurHandler = (e)=>{\n stateRef.current.isFocused = false;\n if (target.disabled) {\n // For backward compatibility, dispatch a (fake) React synthetic event.\n let event = $a92dc41f639950be$export$525bc4921d56d4a(e);\n onBlur?.(event);\n }\n // We no longer need the MutationObserver once the target is blurred.\n if (stateRef.current.observer) {\n stateRef.current.observer.disconnect();\n stateRef.current.observer = null;\n }\n };\n target.addEventListener('focusout', onBlurHandler, {\n once: true\n });\n stateRef.current.observer = new MutationObserver(()=>{\n if (stateRef.current.isFocused && target.disabled) {\n stateRef.current.observer?.disconnect();\n let relatedTargetEl = target === (0, $23f2114a1b82827e$export$cd4e5573fbe2b576)() ? null : (0, $23f2114a1b82827e$export$cd4e5573fbe2b576)();\n target.dispatchEvent(new FocusEvent('blur', {\n relatedTarget: relatedTargetEl\n }));\n target.dispatchEvent(new FocusEvent('focusout', {\n bubbles: true,\n relatedTarget: relatedTargetEl\n }));\n }\n });\n stateRef.current.observer.observe(target, {\n attributes: true,\n attributeFilter: [\n 'disabled'\n ]\n });\n }\n }, [\n onBlur\n ]);\n}\nlet $a92dc41f639950be$export$fda7da73ab5d4c48 = false;\nfunction $a92dc41f639950be$export$cabe61c495ee3649(target) {\n // The browser will focus the nearest focusable ancestor of our target.\n while(target && !(0, $3b8b240c1bf84ab9$export$4c063cf1350e6fed)(target, {\n skipVisibilityCheck: true\n }))target = target.parentElement;\n let window = (0, $d447af545b77c9f1$export$f21a1ffae260145a)(target);\n let activeElement = window.document.activeElement;\n if (!activeElement || activeElement === target) return;\n $a92dc41f639950be$export$fda7da73ab5d4c48 = true;\n let isRefocusing = false;\n let onBlur = (e)=>{\n if ((0, $23f2114a1b82827e$export$e58f029f0fbfdb29)(e) === activeElement || isRefocusing) e.stopImmediatePropagation();\n };\n let onFocusOut = (e)=>{\n if ((0, $23f2114a1b82827e$export$e58f029f0fbfdb29)(e) === activeElement || isRefocusing) {\n e.stopImmediatePropagation();\n // If there was no focusable ancestor, we don't expect a focus event.\n // Re-focus the original active element here.\n if (!target && !isRefocusing) {\n isRefocusing = true;\n (0, $1969ac565cfec8d0$export$de79e2c695e052f3)(activeElement);\n cleanup();\n }\n }\n };\n let onFocus = (e)=>{\n if ((0, $23f2114a1b82827e$export$e58f029f0fbfdb29)(e) === target || isRefocusing) e.stopImmediatePropagation();\n };\n let onFocusIn = (e)=>{\n if ((0, $23f2114a1b82827e$export$e58f029f0fbfdb29)(e) === target || isRefocusing) {\n e.stopImmediatePropagation();\n if (!isRefocusing) {\n isRefocusing = true;\n (0, $1969ac565cfec8d0$export$de79e2c695e052f3)(activeElement);\n cleanup();\n }\n }\n };\n window.addEventListener('blur', onBlur, true);\n window.addEventListener('focusout', onFocusOut, true);\n window.addEventListener('focusin', onFocusIn, true);\n window.addEventListener('focus', onFocus, true);\n let cleanup = ()=>{\n cancelAnimationFrame(raf);\n window.removeEventListener('blur', onBlur, true);\n window.removeEventListener('focusout', onFocusOut, true);\n window.removeEventListener('focusin', onFocusIn, true);\n window.removeEventListener('focus', onFocus, true);\n $a92dc41f639950be$export$fda7da73ab5d4c48 = false;\n isRefocusing = false;\n };\n let raf = requestAnimationFrame(cleanup);\n return cleanup;\n}\n\n\nexport {$a92dc41f639950be$export$525bc4921d56d4a as createSyntheticEvent, $a92dc41f639950be$export$c2b7abe5d61ec696 as setEventTarget, $a92dc41f639950be$export$715c682d09d639cc as useSyntheticBlurEvent, $a92dc41f639950be$export$fda7da73ab5d4c48 as ignoreFocusEvent, $a92dc41f639950be$export$cabe61c495ee3649 as preventFocus};\n//# sourceMappingURL=utils.mjs.map\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ function $2add3ce32c6007eb$var$testUserAgent(re) {\n if (typeof window === 'undefined' || window.navigator == null) return false;\n let brands = window.navigator['userAgentData']?.brands;\n return Array.isArray(brands) && brands.some((brand)=>re.test(brand.brand)) || re.test(window.navigator.userAgent);\n}\nfunction $2add3ce32c6007eb$var$testPlatform(re) {\n return typeof window !== 'undefined' && window.navigator != null ? re.test(window.navigator['userAgentData']?.platform || window.navigator.platform) : false;\n}\nfunction $2add3ce32c6007eb$var$cached(fn) {\n if (process.env.NODE_ENV === 'test') return fn;\n let res = null;\n return ()=>{\n if (res == null) res = fn();\n return res;\n };\n}\nconst $2add3ce32c6007eb$export$9ac100e40613ea10 = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$var$testPlatform(/^Mac/i);\n});\nconst $2add3ce32c6007eb$export$186c6964ca17d99 = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$var$testPlatform(/^iPhone/i);\n});\nconst $2add3ce32c6007eb$export$7bef049ce92e4224 = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$var$testPlatform(/^iPad/i) || // iPadOS 13 lies and says it's a Mac, but we can distinguish by detecting touch support.\n $2add3ce32c6007eb$export$9ac100e40613ea10() && navigator.maxTouchPoints > 1;\n});\nconst $2add3ce32c6007eb$export$fedb369cb70207f1 = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$export$186c6964ca17d99() || $2add3ce32c6007eb$export$7bef049ce92e4224();\n});\nconst $2add3ce32c6007eb$export$e1865c3bedcd822b = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$export$9ac100e40613ea10() || $2add3ce32c6007eb$export$fedb369cb70207f1();\n});\nconst $2add3ce32c6007eb$export$78551043582a6a98 = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$var$testUserAgent(/AppleWebKit/i) && !$2add3ce32c6007eb$export$6446a186d09e379e();\n});\nconst $2add3ce32c6007eb$export$6446a186d09e379e = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$var$testUserAgent(/Chrome/i);\n});\nconst $2add3ce32c6007eb$export$a11b0059900ceec8 = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$var$testUserAgent(/Android/i);\n});\nconst $2add3ce32c6007eb$export$b7d78993b74f766d = $2add3ce32c6007eb$var$cached(function() {\n return $2add3ce32c6007eb$var$testUserAgent(/Firefox/i);\n});\n\n\nexport {$2add3ce32c6007eb$export$9ac100e40613ea10 as isMac, $2add3ce32c6007eb$export$186c6964ca17d99 as isIPhone, $2add3ce32c6007eb$export$7bef049ce92e4224 as isIPad, $2add3ce32c6007eb$export$fedb369cb70207f1 as isIOS, $2add3ce32c6007eb$export$e1865c3bedcd822b as isAppleDevice, $2add3ce32c6007eb$export$78551043582a6a98 as isWebKit, $2add3ce32c6007eb$export$6446a186d09e379e as isChrome, $2add3ce32c6007eb$export$a11b0059900ceec8 as isAndroid, $2add3ce32c6007eb$export$b7d78993b74f766d as isFirefox};\n//# sourceMappingURL=platform.mjs.map\n","import {isAndroid as $2add3ce32c6007eb$export$a11b0059900ceec8} from \"./platform.mjs\";\n\n/*\n * Copyright 2022 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nfunction $b5c62b033c25b96d$export$60278871457622de(event) {\n // JAWS/NVDA with Firefox.\n if (event.pointerType === '' && event.isTrusted) return true;\n // Android TalkBack's detail value varies depending on the event listener providing the event so we have specific logic here instead\n // If pointerType is defined, event is from a click listener. For events from mousedown listener, detail === 0 is a sufficient check\n // to detect TalkBack virtual clicks.\n if ((0, $2add3ce32c6007eb$export$a11b0059900ceec8)() && event.pointerType) return event.type === 'click' && event.buttons === 1;\n return event.detail === 0 && !event.pointerType;\n}\nfunction $b5c62b033c25b96d$export$29bf1b5f2c56cf63(event) {\n // If the pointer size is zero, then we assume it's from a screen reader.\n // Android TalkBack double tap will sometimes return a event with width and height of 1\n // and pointerType === 'mouse' so we need to check for a specific combination of event attributes.\n // Cannot use \"event.pressure === 0\" as the sole check due to Safari pointer events always returning pressure === 0\n // instead of .5, see https://bugs.webkit.org/show_bug.cgi?id=206216. event.pointerType === 'mouse' is to distingush\n // Talkback double tap from Windows Firefox touch screen press\n return !(0, $2add3ce32c6007eb$export$a11b0059900ceec8)() && event.width === 0 && event.height === 0 || event.width === 1 && event.height === 1 && event.pressure === 0 && event.detail === 0 && event.pointerType === 'mouse';\n}\n\n\nexport {$b5c62b033c25b96d$export$60278871457622de as isVirtualClick, $b5c62b033c25b96d$export$29bf1b5f2c56cf63 as isVirtualPointerEvent};\n//# sourceMappingURL=isVirtualEvent.mjs.map\n","import {focusWithoutScrolling as $1969ac565cfec8d0$export$de79e2c695e052f3} from \"./focusWithoutScrolling.mjs\";\nimport {isFirefox as $2add3ce32c6007eb$export$b7d78993b74f766d, isIPad as $2add3ce32c6007eb$export$7bef049ce92e4224, isMac as $2add3ce32c6007eb$export$9ac100e40613ea10, isWebKit as $2add3ce32c6007eb$export$78551043582a6a98} from \"./platform.mjs\";\nimport $epzQQ$react, {createContext as $epzQQ$createContext, useMemo as $epzQQ$useMemo, useContext as $epzQQ$useContext} from \"react\";\n\n/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \n\n\nconst $caaf0dd3060ed57c$var$RouterContext = /*#__PURE__*/ (0, $epzQQ$createContext)({\n isNative: true,\n open: $caaf0dd3060ed57c$var$openSyntheticLink,\n useHref: (href)=>href\n});\nfunction $caaf0dd3060ed57c$export$323e4fc2fa4753fb(props) {\n let { children: children, navigate: navigate, useHref: useHref } = props;\n let ctx = (0, $epzQQ$useMemo)(()=>({\n isNative: false,\n open: (target, modifiers, href, routerOptions)=>{\n $caaf0dd3060ed57c$var$getSyntheticLink(target, (link)=>{\n if ($caaf0dd3060ed57c$export$efa8c9099e530235(link, modifiers)) navigate(href, routerOptions);\n else $caaf0dd3060ed57c$export$95185d699e05d4d7(link, modifiers);\n });\n },\n useHref: useHref || ((href)=>href)\n }), [\n navigate,\n useHref\n ]);\n return /*#__PURE__*/ (0, $epzQQ$react).createElement($caaf0dd3060ed57c$var$RouterContext.Provider, {\n value: ctx\n }, children);\n}\nfunction $caaf0dd3060ed57c$export$9a302a45f65d0572() {\n return (0, $epzQQ$useContext)($caaf0dd3060ed57c$var$RouterContext);\n}\nfunction $caaf0dd3060ed57c$export$efa8c9099e530235(link, modifiers) {\n // Use getAttribute here instead of link.target. Firefox will default link.target to \"_parent\" when inside an iframe.\n let target = link.getAttribute('target');\n return (!target || target === '_self') && link.origin === location.origin && !link.hasAttribute('download') && !modifiers.metaKey && // open in new tab (mac)\n !modifiers.ctrlKey && // open in new tab (windows)\n !modifiers.altKey && // download\n !modifiers.shiftKey;\n}\nfunction $caaf0dd3060ed57c$export$95185d699e05d4d7(target, modifiers, setOpening = true) {\n let { metaKey: metaKey, ctrlKey: ctrlKey, altKey: altKey, shiftKey: shiftKey } = modifiers;\n // Firefox does not recognize keyboard events as a user action by default, and the popup blocker\n // will prevent links with target=\"_blank\" from opening. However, it does allow the event if the\n // Command/Control key is held, which opens the link in a background tab. This seems like the best we can do.\n // See https://bugzilla.mozilla.org/show_bug.cgi?id=257870 and https://bugzilla.mozilla.org/show_bug.cgi?id=746640.\n if ((0, $2add3ce32c6007eb$export$b7d78993b74f766d)() && window.event?.type?.startsWith('key') && target.target === '_blank') {\n if ((0, $2add3ce32c6007eb$export$9ac100e40613ea10)()) metaKey = true;\n else ctrlKey = true;\n }\n // WebKit does not support firing click events with modifier keys, but does support keyboard events.\n // https://github.com/WebKit/WebKit/blob/c03d0ac6e6db178f90923a0a63080b5ca210d25f/Source/WebCore/html/HTMLAnchorElement.cpp#L184\n let event = (0, $2add3ce32c6007eb$export$78551043582a6a98)() && (0, $2add3ce32c6007eb$export$9ac100e40613ea10)() && !(0, $2add3ce32c6007eb$export$7bef049ce92e4224)() && process.env.NODE_ENV !== 'test' ? new KeyboardEvent('keydown', {\n keyIdentifier: 'Enter',\n metaKey: metaKey,\n ctrlKey: ctrlKey,\n altKey: altKey,\n shiftKey: shiftKey\n }) : new MouseEvent('click', {\n metaKey: metaKey,\n ctrlKey: ctrlKey,\n altKey: altKey,\n shiftKey: shiftKey,\n detail: 1,\n bubbles: true,\n cancelable: true\n });\n $caaf0dd3060ed57c$export$95185d699e05d4d7.isOpening = setOpening;\n (0, $1969ac565cfec8d0$export$de79e2c695e052f3)(target);\n target.dispatchEvent(event);\n $caaf0dd3060ed57c$export$95185d699e05d4d7.isOpening = false;\n}\n// https://github.com/parcel-bundler/parcel/issues/8724\n$caaf0dd3060ed57c$export$95185d699e05d4d7.isOpening = false;\nfunction $caaf0dd3060ed57c$var$getSyntheticLink(target, open) {\n if (target instanceof HTMLAnchorElement) open(target);\n else if (target.hasAttribute('data-href')) {\n let link = document.createElement('a');\n link.href = target.getAttribute('data-href');\n if (target.hasAttribute('data-target')) link.target = target.getAttribute('data-target');\n if (target.hasAttribute('data-rel')) link.rel = target.getAttribute('data-rel');\n if (target.hasAttribute('data-download')) link.download = target.getAttribute('data-download');\n if (target.hasAttribute('data-ping')) link.ping = target.getAttribute('data-ping');\n if (target.hasAttribute('data-referrer-policy')) link.referrerPolicy = target.getAttribute('data-referrer-policy');\n target.appendChild(link);\n open(link);\n target.removeChild(link);\n }\n}\nfunction $caaf0dd3060ed57c$var$openSyntheticLink(target, modifiers) {\n $caaf0dd3060ed57c$var$getSyntheticLink(target, (link)=>$caaf0dd3060ed57c$export$95185d699e05d4d7(link, modifiers));\n}\nfunction $caaf0dd3060ed57c$export$bdc77b0c0a3a85d6(props) {\n let router = $caaf0dd3060ed57c$export$9a302a45f65d0572();\n const href = router.useHref(props.href ?? '');\n return {\n 'data-href': props.href ? href : undefined,\n 'data-target': props.target,\n 'data-rel': props.rel,\n 'data-download': props.download,\n 'data-ping': props.ping,\n 'data-referrer-policy': props.referrerPolicy\n };\n}\nfunction $caaf0dd3060ed57c$export$51437d503373d223(props) {\n return {\n 'data-href': props.href,\n 'data-target': props.target,\n 'data-rel': props.rel,\n 'data-download': props.download,\n 'data-ping': props.ping,\n 'data-referrer-policy': props.referrerPolicy\n };\n}\nfunction $caaf0dd3060ed57c$export$7e924b3091a3bd18(props) {\n let router = $caaf0dd3060ed57c$export$9a302a45f65d0572();\n const href = router.useHref(props?.href ?? '');\n return {\n href: props?.href ? href : undefined,\n target: props?.target,\n rel: props?.rel,\n download: props?.download,\n ping: props?.ping,\n referrerPolicy: props?.referrerPolicy\n };\n}\nfunction $caaf0dd3060ed57c$export$13aea1a3cb5e3f1f(e, router, href, routerOptions) {\n // If a custom router is provided, prevent default and forward if this link should client navigate.\n if (!router.isNative && e.currentTarget instanceof HTMLAnchorElement && e.currentTarget.href && // If props are applied to a router Link component, it may have already prevented default.\n !e.isDefaultPrevented() && $caaf0dd3060ed57c$export$efa8c9099e530235(e.currentTarget, e) && href) {\n e.preventDefault();\n router.open(e.currentTarget, e, href, routerOptions);\n }\n}\n\n\nexport {$caaf0dd3060ed57c$export$323e4fc2fa4753fb as RouterProvider, $caaf0dd3060ed57c$export$efa8c9099e530235 as shouldClientNavigate, $caaf0dd3060ed57c$export$95185d699e05d4d7 as openLink, $caaf0dd3060ed57c$export$9a302a45f65d0572 as useRouter, $caaf0dd3060ed57c$export$bdc77b0c0a3a85d6 as useSyntheticLinkProps, $caaf0dd3060ed57c$export$51437d503373d223 as getSyntheticLinkProps, $caaf0dd3060ed57c$export$7e924b3091a3bd18 as useLinkProps, $caaf0dd3060ed57c$export$13aea1a3cb5e3f1f as handleLinkClick};\n//# sourceMappingURL=openLink.mjs.map\n","import {useRef as $awe0O$useRef, useCallback as $awe0O$useCallback, useEffect as $awe0O$useEffect} from \"react\";\n\n/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nfunction $48a7d519b337145d$export$4eaf04e54aa8eed6() {\n let globalListeners = (0, $awe0O$useRef)(new Map());\n let addGlobalListener = (0, $awe0O$useCallback)((eventTarget, type, listener, options)=>{\n // Make sure we remove the listener after it is called with the `once` option.\n let fn = options?.once ? (...args)=>{\n globalListeners.current.delete(listener);\n listener(...args);\n } : listener;\n globalListeners.current.set(listener, {\n type: type,\n eventTarget: eventTarget,\n fn: fn,\n options: options\n });\n eventTarget.addEventListener(type, fn, options);\n }, []);\n let removeGlobalListener = (0, $awe0O$useCallback)((eventTarget, type, listener, options)=>{\n let fn = globalListeners.current.get(listener)?.fn || listener;\n eventTarget.removeEventListener(type, fn, options);\n globalListeners.current.delete(listener);\n }, []);\n let removeAllGlobalListeners = (0, $awe0O$useCallback)(()=>{\n globalListeners.current.forEach((value, key)=>{\n removeGlobalListener(value.eventTarget, value.type, key, value.options);\n });\n }, [\n removeGlobalListener\n ]);\n (0, $awe0O$useEffect)(()=>{\n return removeAllGlobalListeners;\n }, [\n removeAllGlobalListeners\n ]);\n return {\n addGlobalListener: addGlobalListener,\n removeGlobalListener: removeGlobalListener,\n removeAllGlobalListeners: removeAllGlobalListeners\n };\n}\n\n\nexport {$48a7d519b337145d$export$4eaf04e54aa8eed6 as useGlobalListeners};\n//# sourceMappingURL=useGlobalListeners.mjs.map\n"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11],"mappings":";;AAUI,SAAS,EAA0C,GAAS;CAC5D,IAAI,EAA4C,GAAG,EAAQ,MAAM,EAC7D,eAAe,GACnB,CAAC;MACI;EACD,IAAI,IAAqB,EAA4C,CAAO;EAE5E,AADA,EAAQ,MAAM,GACd,EAA4C,CAAkB;CAClE;AACJ;AACA,IAAI,IAAoD;AACxD,SAAS,IAA8C;CACnD,IAAI,KAAqD,MAAM;EAC3D,IAAoD;EACpD,IAAI;GAEA,SADyB,cAAc,KAC/B,EAAE,MAAM,EACZ,IAAI,gBAAiB;IAEjB,OADA,IAAoD,IAC7C;GACX,EACJ,CAAC;EACL,QAAS,CAET;CACJ;CACA,OAAO;AACX;AACA,SAAS,EAA4C,GAAS;CAC1D,IAAI,IAAS,EAAQ,YACjB,IAAqB,CAAC,GACtB,IAAuB,SAAS,oBAAoB,SAAS;CACjE,OAAM,aAAkB,eAAe,MAAW,IAM9C,CALI,EAAO,eAAe,EAAO,gBAAgB,EAAO,cAAc,EAAO,gBAAa,EAAmB,KAAK;EAC9G,SAAS;EACT,WAAW,EAAO;EAClB,YAAY,EAAO;CACvB,CAAC,GACD,IAAS,EAAO;CAOpB,OALI,aAAgC,eAAa,EAAmB,KAAK;EACrE,SAAS;EACT,WAAW,EAAqB;EAChC,YAAY,EAAqB;CACrC,CAAC,GACM;AACX;AACA,SAAS,EAA4C,GAAoB;CACrE,KAAK,IAAI,EAAW,YAAoB,cAAuB,mBAAgB,GAE3E,AADA,EAAQ,YAAY,GACpB,EAAQ,aAAa;AAE7B;;;AC9DA,IAAM,KAA6C,MACxC,GAAI,iBAAiB,UAE1B,KAA6C,MAC3C,KAAM,YAAY,KAAM,EAAG,WAAW,IAAW,IACzC,EAA0C,CAC7C,EAAE,eAAe;AAI1B,SAAS,EAA6B,GAAO;CAC7C,OAAyB,OAAO,KAAU,cAAnC,KAA+C,cAAc,KAAS,OAAO,EAAM,YAAa;AAC3G;AACA,SAAS,EAA0C,GAAM;CACrD,OAAO,EAA6B,CAAI,KAAK,EAAK,aAAa,KAAK,0BAA0B,UAAU;AAC5G;;;ACJA,IAAI,IAAmC;AAUvC,SAAS,IAA4C;CACjD,OAAO;AACX;;;ACjBA,SAAS,EAA0C,GAAM,GAAW;CAChE,IAAI,CAAKA,EAAkB,GAAG,OAAO,KAAa,IAAO,EAAK,SAAS,CAAS,IAAI;CACpF,IAAI,CAAC,KAAQ,CAAC,GAAW,OAAO;CAChC,IAAI,IAAc;CAClB,OAAM,MAAgB,OAAK;EACvB,IAAI,MAAgB,GAAM,OAAO;EACjC,AAIK,IAJD,EAAY,YAAY,UAAU,EAAY,eACpC,EAAY,aAAa,aAC1B,EAA2C,CAAW,IACrD,EAAY,OACP,EAAY;CACnC;CACA,OAAO;AACX;AACA,IAAM,KAA6C,IAAM,aAAW;CAChE,IAAI,CAAKA,EAAkB,GAAG,OAAO,EAAI;CACzC,IAAI,IAAgB,EAAI;CACxB,OAAM,KAAiB,gBAAgB,KAAiB,EAAc,YAAY,gBAAc,IAAgB,EAAc,WAAW;CACzI,OAAO;AACX;AACA,SAAS,EAA0C,GAAO;CACtD,IAAQA,EAAkB,KAAK,EAAM,kBAAkB,WAAW,EAAM,OAAO,YAC3E;MAAI,kBAAkB,GAAO,OAAO,EAAM,aAAa,EAAE,MAAM;EAC1D,IAAI,kBAAkB,EAAM,aAAa,OAAO,EAAM,YAAY,aAAa,EAAE,MAAM;CAAI;CAEpG,OAAO,EAAM;AACjB;;;ACnBA,IAAM,IAAgD,OAAO,UAAY,OAAe,qBAAqB,QAAQ;AACrH,SAAS,EAAqC,GAAS;CACnD,IAAM,IAAmB,EAA2C,CAAO;CAC3E,IAAI,EAAE,aAAmB,EAAa,gBAAgB,EAAE,aAAmB,EAAa,aAAa,OAAO;CAC5G,IAAI,EAAW,YAAqB,kBAAe,EAAQ,OACvD,IAAY,MAAY,UAAU,MAAe,YAAY,MAAe;CAChF,IAAI,GAAW;EACX,IAAM,EAAoB,wBAAqB,EAAQ,cAAc,aACjE,EAAE,SAAS,GAAiB,YAAY,MAAuB,EAAiB,CAAO;EAC3F,IAAY,MAAoB,UAAU,MAAuB,YAAY,MAAuB;CACxG;CACA,OAAO;AACX;AACA,SAAS,EAAyC,GAAS,GAAc;CACrE,OAAO,CAAC,EAAQ,aAAa,QAAQ,KACrC,CAAC,EAAQ,aAAa,+BAA+B,MAAM,EAAQ,aAAa,aAAa,KAAgB,EAAa,aAAa,YAAY,EAAQ,aAAa,MAAM,IAAI;AACtL;AACA,SAAS,EAA0C,GAAS,GAAc;CAItE,OAHI,IAAsD,EAAQ,gBAAgB,EAC9E,oBAAoB,GACxB,CAAC,KAAK,CAAC,EAAQ,QAAQ,iCAAiC,IACjD,EAAQ,aAAa,cAAc,EAAqC,CAAO,KAAK,EAAyC,GAAS,CAAY,MAAM,CAAC,EAAQ,iBAAiB,EAA0C,EAAQ,eAAe,CAAO;AACrQ;;;ACtBA,IAAM,IAA0C;CAC5C;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACJ,GACM,IAAmD,EAAwC,KAAK,iBAAiB,IAAI;AAC3H,EAAwC,KAAK,mDAAiD,GACtC,EAAwC,KAAK,wCAAsC;AAC3I,SAAS,EAA0C,GAAS,GAAS;CACjE,OAAO,EAAQ,QAAQ,CAAgD,KAAK,CAAC,EAA8B,CAAO,MAAM,GAAS,uBAA2B,EAA2C,CAAO;AAClN;AAIA,SAAS,EAA8B,GAAS;CAC5C,IAAI,IAAO;CACX,OAAM,KAAQ,OAAK;EACf,IAAI,aAAgB,EAAK,cAAc,YAAY,eAAe,EAAK,OAAO,OAAO;EACrF,IAAO,EAAK;CAChB;CACA,OAAO;AACX;;;AChCA,IAAM,IAA4C,OAAO,WAAa,MAAkBC,EAAc,wBAAsB,CAAC;;;ACU7H,SAAS,EAAyC,GAAa;CAC3D,IAAI,IAAQ;CAMZ,OALA,EAAM,cAAc,GACpB,EAAM,2BAAyB,EAAM,kBAErC,EAAM,6BAA2B,EAAM,cACvC,EAAM,gBAAc,CAAC,GACd;AACX;AACA,SAAS,EAA0C,GAAO,GAAQ;CAI9D,AAHA,OAAO,eAAe,GAAO,UAAU,EACnC,OAAO,EACX,CAAC,GACD,OAAO,eAAe,GAAO,iBAAiB,EAC1C,OAAO,EACX,CAAC;AACL;AACA,SAAS,EAA0C,GAAQ;CACvD,IAAI,IAAeC,EAAe;EAC9B,WAAW;EACX,UAAU;CACd,CAAC;CAYD,OAVA,QAAmD;EAC/C,IAAM,IAAQ,EAAS;EACvB,aAAW;GACP,AAEI,EAAM,cADN,EAAM,SAAS,WAAW,GACT;EAEzB;CACJ,GAAG,CAAC,CAAC,GAEMC,GAAqB,MAAI;EAKhC,IAAI,IAAkB,EAA2C,CAAC;EAClE,IAAI,aAAuB,qBAAqB,aAAuB,oBAAoB,aAAuB,uBAAuB,aAAuB,mBAAmB;GAC/K,EAAS,QAAQ,YAAY;GAC7B,IAAI,IAAS;GA8Bb,AAhBA,EAAO,iBAAiB,aAbH,MAAI;IAErB,IADA,EAAS,QAAQ,YAAY,IACzB,EAAO,UAAU;KAEjB,IAAI,IAAQ,EAAyC,CAAC;KACtD,IAAS,CAAK;IAClB;IAEA,AAAI,EAAS,QAAQ,aACjB,EAAS,QAAQ,SAAS,WAAW,GACrC,EAAS,QAAQ,WAAW;GAEpC,GACmD,EAC/C,MAAM,GACV,CAAC,GACD,EAAS,QAAQ,WAAW,IAAI,uBAAqB;IACjD,IAAI,EAAS,QAAQ,aAAa,EAAO,UAAU;KAC/C,EAAS,QAAQ,UAAU,WAAW;KACtC,IAAI,IAAkB,MAAe,EAA2C,IAAI,OAAW,EAA2C;KAI1I,AAHA,EAAO,cAAc,IAAI,WAAW,QAAQ,EACxC,eAAe,EACnB,CAAC,CAAC,GACF,EAAO,cAAc,IAAI,WAAW,YAAY;MAC5C,SAAS;MACT,eAAe;KACnB,CAAC,CAAC;IACN;GACJ,CAAC,GACD,EAAS,QAAQ,SAAS,QAAQ,GAAQ;IACtC,YAAY;IACZ,iBAAiB,CACb,UACJ;GACJ,CAAC;EACL;CACJ,GAAG,CACC,CACJ,CAAC;AACL;AACA,IAAI,IAA4C;AAChD,SAAS,EAA0C,GAAQ;CAEvD,OAAM,KAAU,CAAK,EAA2C,GAAQ,EACpE,qBAAqB,GACzB,CAAC,IAAE,IAAS,EAAO;CACnB,IAAI,IAAa,EAA2C,CAAM,GAC9D,IAAgB,EAAO,SAAS;CACpC,IAAI,CAAC,KAAiB,MAAkB,GAAQ;CAChD,IAA4C;CAC5C,IAAI,IAAe,IACf,KAAU,MAAI;EACd,CAAQ,EAA2C,CAAC,MAAM,KAAiB,MAAc,EAAE,yBAAyB;CACxH,GACI,KAAc,MAAI;EAClB,CAAQ,EAA2C,CAAC,MAAM,KAAiB,OACvE,EAAE,yBAAyB,GAGvB,CAAC,KAAU,CAAC,MACZ,IAAe,IACf,EAA+C,CAAa,GAC5D,EAAQ;CAGpB,GACI,KAAW,MAAI;EACf,CAAQ,EAA2C,CAAC,MAAM,KAAU,MAAc,EAAE,yBAAyB;CACjH,GACI,KAAa,MAAI;EACjB,CAAQ,EAA2C,CAAC,MAAM,KAAU,OAChE,EAAE,yBAAyB,GACtB,MACD,IAAe,IACf,EAA+C,CAAa,GAC5D,EAAQ;CAGpB;CAIA,AAHA,EAAO,iBAAiB,QAAQ,GAAQ,EAAI,GAC5C,EAAO,iBAAiB,YAAY,GAAY,EAAI,GACpD,EAAO,iBAAiB,WAAW,GAAW,EAAI,GAClD,EAAO,iBAAiB,SAAS,GAAS,EAAI;CAC9C,IAAI,UAAc;EAOd,AANA,qBAAqB,CAAG,GACxB,EAAO,oBAAoB,QAAQ,GAAQ,EAAI,GAC/C,EAAO,oBAAoB,YAAY,GAAY,EAAI,GACvD,EAAO,oBAAoB,WAAW,GAAW,EAAI,GACrD,EAAO,oBAAoB,SAAS,GAAS,EAAI,GACjD,IAA4C,IAC5C,IAAe;CACnB,GACI,IAAM,sBAAsB,CAAO;CACvC,OAAO;AACX;;;ACrJI,SAAS,EAAoC,GAAI;CACjD,IAAI,OAAO,SAAW,OAAe,OAAO,aAAa,MAAM,OAAO;CACtE,IAAI,IAAS,OAAO,UAAU,eAAkB;CAChD,OAAO,MAAM,QAAQ,CAAM,KAAK,EAAO,MAAM,MAAQ,EAAG,KAAK,EAAM,KAAK,CAAC,KAAK,EAAG,KAAK,OAAO,UAAU,SAAS;AACpH;AACA,SAAS,EAAmC,GAAI;CAC5C,OAAO,OAAO,SAAW,OAAe,OAAO,aAAa,OAAO,EAAG,KAAK,OAAO,UAAU,eAAkB,YAAY,OAAO,UAAU,QAAQ,IAAI;AAC3J;AACA,SAAS,EAA6B,GAAI;CACtC,IAAA,QAAA,IAAA,aAA6B,QAAQ,OAAO;CAC5C,IAAI,IAAM;CACV,cACI,AAAiB,MAAM,EAAG,GACnB;AAEf;AACA,IAAM,IAA4C,EAA6B,WAAW;CACtF,OAAO,EAAmC,OAAO;AACrD,CAAC,GACK,IAA2C,EAA6B,WAAW;CACrF,OAAO,EAAmC,UAAU;AACxD,CAAC,GACK,IAA4C,EAA6B,WAAW;CACtF,OAAO,EAAmC,QAAQ,KAClD,EAA0C,KAAK,UAAU,iBAAiB;AAC9E,CAAC,GACK,IAA4C,EAA6B,WAAW;CACtF,OAAO,EAAyC,KAAK,EAA0C;AACnG,CAAC;AACiD,EAA6B,WAAW;CACtF,OAAO,EAA0C,KAAK,EAA0C;AACpG,CAAC;AACD,IAAM,IAA4C,EAA6B,WAAW;CACtF,OAAO,EAAoC,cAAc,KAAK,CAAC,EAA0C;AAC7G,CAAC,GACK,IAA4C,EAA6B,WAAW;CACtF,OAAO,EAAoC,SAAS;AACxD,CAAC,GACK,IAA4C,EAA6B,WAAW;CACtF,OAAO,EAAoC,UAAU;AACzD,CAAC,GACK,IAA4C,EAA6B,WAAW;CACtF,OAAO,EAAoC,UAAU;AACzD,CAAC;;;ACxCD,SAAS,EAA0C,GAAO;CAOtD,OALI,EAAM,gBAAgB,MAAM,EAAM,YAAkB,KAIhD,EAA2C,KAAK,EAAM,cAAoB,EAAM,SAAS,WAAW,EAAM,YAAY,IACvH,EAAM,WAAW,KAAK,CAAC,EAAM;AACxC;AACA,SAAS,EAA0C,GAAO;CAOtD,OAAO,CAAK,EAA2C,KAAK,EAAM,UAAU,KAAK,EAAM,WAAW,KAAK,EAAM,UAAU,KAAK,EAAM,WAAW,KAAK,EAAM,aAAa,KAAK,EAAM,WAAW,KAAK,EAAM,gBAAgB;AAC1N;;;ACsBA,SAAS,EAA0C,GAAQ,GAAW,IAAa,IAAM;CACrF,IAAI,EAAW,YAAkB,YAAiB,WAAkB,gBAAa;CAKjF,AAAQ,EAA2C,KAAK,OAAO,OAAO,MAAM,WAAW,KAAK,KAAK,EAAO,WAAW,aACvG,EAA2C,IAAG,IAAU,KAC3D,IAAU;CAInB,IAAI,IAAY,EAA2C,KAAS,EAA2C,KAAK,CAAK,EAA2C,KAAA,QAAA,IAAA,aAA8B,SAAS,IAAI,cAAc,WAAW;EACpO,eAAe;EACN;EACA;EACD;EACE;CACd,CAAC,IAAI,IAAI,WAAW,SAAS;EAChB;EACA;EACD;EACE;EACV,QAAQ;EACR,SAAS;EACT,YAAY;CAChB,CAAC;CAID,AAHA,EAA0C,YAAY,GACtD,EAA+C,CAAM,GACrD,EAAO,cAAc,CAAK,GAC1B,EAA0C,YAAY;AAC1D;AAEA,EAA0C,YAAY;;;ACxEtD,SAAS,IAA4C;CACjD,IAAI,IAAsBC,kBAAe,IAAI,IAAI,CAAC,GAC9C,IAAwBC,GAAqB,GAAa,GAAM,GAAU,MAAU;EAEpF,IAAI,IAAK,GAAS,QAAQ,GAAG,MAAO;GAEhC,AADA,EAAgB,QAAQ,OAAO,CAAQ,GACvC,EAAS,GAAG,CAAI;EACpB,IAAI;EAOJ,AANA,EAAgB,QAAQ,IAAI,GAAU;GAC5B;GACO;GACT;GACK;EACb,CAAC,GACD,EAAY,iBAAiB,GAAM,GAAI,CAAO;CAClD,GAAG,CAAC,CAAC,GACD,IAA2BA,GAAqB,GAAa,GAAM,GAAU,MAAU;EACvF,IAAI,IAAK,EAAgB,QAAQ,IAAI,CAAQ,GAAG,MAAM;EAEtD,AADA,EAAY,oBAAoB,GAAM,GAAI,CAAO,GACjD,EAAgB,QAAQ,OAAO,CAAQ;CAC3C,GAAG,CAAC,CAAC,GACD,IAA+BA,QAAwB;EACvD,EAAgB,QAAQ,SAAS,GAAO,MAAM;GAC1C,EAAqB,EAAM,aAAa,EAAM,MAAM,GAAK,EAAM,OAAO;EAC1E,CAAC;CACL,GAAG,CACC,CACJ,CAAC;CAMD,OALA,QACW,GACR,CACC,CACJ,CAAC,GACM;EACgB;EACG;EACI;CAC9B;AACJ"}
|