@sanity/ui 3.0.12 → 3.0.14
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/_chunks-cjs/_visual-editing.js +805 -609
- package/dist/_chunks-cjs/_visual-editing.js.map +1 -1
- package/dist/_chunks-es/_visual-editing.mjs +807 -611
- package/dist/_chunks-es/_visual-editing.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +184 -144
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +185 -145
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/core/components/autocomplete/autocomplete.tsx +10 -14
- package/src/core/components/breadcrumbs/breadcrumbs.tsx +3 -2
- package/src/core/components/dialog/dialog.tsx +10 -14
- package/src/core/components/hotkeys/hotkeys.tsx +2 -2
- package/src/core/components/menu/menuGroup.tsx +4 -2
- package/src/core/components/menu/menuItem.tsx +4 -4
- package/src/core/components/skeleton/skeleton.tsx +4 -4
- package/src/core/components/skeleton/textSkeleton.tsx +5 -6
- package/src/core/components/tree/tree.tsx +1 -0
- package/src/core/hooks/index.ts +1 -1
- package/src/core/hooks/useArrayProp.ts +3 -17
- package/src/core/hooks/useClickOutside.ts +1 -0
- package/src/core/primitives/avatar/avatar.tsx +15 -16
- package/src/core/primitives/avatar/avatarCounter.tsx +14 -17
- package/src/core/primitives/avatar/avatarStack.tsx +2 -3
- package/src/core/primitives/badge/badge.tsx +3 -3
- package/src/core/primitives/box/box.tsx +26 -26
- package/src/core/primitives/button/button.tsx +11 -12
- package/src/core/primitives/card/card.tsx +8 -8
- package/src/core/primitives/code/code.tsx +8 -2
- package/src/core/primitives/container/container.tsx +2 -2
- package/src/core/primitives/flex/flex.tsx +6 -6
- package/src/core/primitives/grid/grid.tsx +9 -9
- package/src/core/primitives/heading/heading.tsx +3 -3
- package/src/core/primitives/inline/inline.tsx +2 -2
- package/src/core/primitives/kbd/kbd.tsx +2 -2
- package/src/core/primitives/label/label.tsx +3 -3
- package/src/core/primitives/popover/popover.tsx +7 -6
- package/src/core/primitives/select/select.tsx +6 -5
- package/src/core/primitives/stack/stack.tsx +2 -2
- package/src/core/primitives/text/text.tsx +3 -3
- package/src/core/primitives/textArea/textArea.tsx +6 -5
- package/src/core/primitives/textInput/textInput.tsx +6 -5
- package/src/core/primitives/tooltip/tooltip.tsx +4 -2
- package/src/core/utils/layer/layerProvider.tsx +3 -2
- package/src/core/utils/virtualList/virtualList.tsx +2 -0
|
@@ -189,125 +189,6 @@ function responsiveTextAlignStyle(props) {
|
|
|
189
189
|
function responsiveTextFont(props) {
|
|
190
190
|
return responsiveFont("text", props);
|
|
191
191
|
}
|
|
192
|
-
function useArrayProp(val, defaultVal) {
|
|
193
|
-
const $ = reactCompilerRuntime.c(3);
|
|
194
|
-
let t0;
|
|
195
|
-
$[0] !== defaultVal || $[1] !== val ? (t0 = () => [_getArrayProp(val, defaultVal), JSON.stringify(val ?? defaultVal)], $[0] = defaultVal, $[1] = val, $[2] = t0) : t0 = $[2];
|
|
196
|
-
const [t1, setCache] = react.useState(t0), [cachedVal, cachedHash] = t1, hash = JSON.stringify(val ?? defaultVal);
|
|
197
|
-
return hash !== cachedHash && setCache([_getArrayProp(val, defaultVal), hash]), cachedVal;
|
|
198
|
-
}
|
|
199
|
-
function useClickOutsideEvent(listener, t0, boundaryElement) {
|
|
200
|
-
const $ = reactCompilerRuntime.c(9), elementsArg = t0 === void 0 ? _temp$a : t0;
|
|
201
|
-
let t1;
|
|
202
|
-
$[0] !== boundaryElement || $[1] !== elementsArg || $[2] !== listener ? (t1 = (evt) => {
|
|
203
|
-
if (!listener)
|
|
204
|
-
return;
|
|
205
|
-
const target = evt.target;
|
|
206
|
-
if (!(target instanceof Node))
|
|
207
|
-
return;
|
|
208
|
-
const resolvedBoundaryElement = boundaryElement?.();
|
|
209
|
-
if (resolvedBoundaryElement && !resolvedBoundaryElement.contains(target))
|
|
210
|
-
return;
|
|
211
|
-
const elements = elementsArg().flat();
|
|
212
|
-
for (const el of elements)
|
|
213
|
-
if (el && (target === el || el.contains(target)))
|
|
214
|
-
return;
|
|
215
|
-
listener(evt);
|
|
216
|
-
}, $[0] = boundaryElement, $[1] = elementsArg, $[2] = listener, $[3] = t1) : t1 = $[3];
|
|
217
|
-
const onEvent = useEffectEvent.useEffectEvent(t1), hasListener = !!listener;
|
|
218
|
-
let t2;
|
|
219
|
-
$[4] !== hasListener || $[5] !== onEvent ? (t2 = () => {
|
|
220
|
-
if (!hasListener)
|
|
221
|
-
return;
|
|
222
|
-
const handleEvent = (evt_0) => onEvent(evt_0);
|
|
223
|
-
return document.addEventListener("mousedown", handleEvent), () => {
|
|
224
|
-
document.removeEventListener("mousedown", handleEvent);
|
|
225
|
-
};
|
|
226
|
-
}, $[4] = hasListener, $[5] = onEvent, $[6] = t2) : t2 = $[6];
|
|
227
|
-
let t3;
|
|
228
|
-
$[7] !== hasListener ? (t3 = [hasListener], $[7] = hasListener, $[8] = t3) : t3 = $[8], react.useEffect(t2, t3), react.useDebugValue(listener ? "MouseDown On" : "MouseDown Off");
|
|
229
|
-
}
|
|
230
|
-
function _temp$a() {
|
|
231
|
-
return EMPTY_ARRAY;
|
|
232
|
-
}
|
|
233
|
-
function useCustomValidity(ref, customValidity) {
|
|
234
|
-
const $ = reactCompilerRuntime.c(4);
|
|
235
|
-
let t0, t1;
|
|
236
|
-
$[0] !== customValidity || $[1] !== ref ? (t0 = () => {
|
|
237
|
-
ref.current?.setCustomValidity(customValidity || "");
|
|
238
|
-
}, t1 = [customValidity, ref], $[0] = customValidity, $[1] = ref, $[2] = t0, $[3] = t1) : (t0 = $[2], t1 = $[3]), react.useEffect(t0, t1);
|
|
239
|
-
}
|
|
240
|
-
const _ResizeObserver = typeof document < "u" && typeof window < "u" && window.ResizeObserver ? window.ResizeObserver : resizeObserver.ResizeObserver, _elementSizeObserver = _createElementSizeObserver();
|
|
241
|
-
function _createElementRectValueListener() {
|
|
242
|
-
return {
|
|
243
|
-
subscribe(element, subscriber) {
|
|
244
|
-
const resizeObserver2 = new _ResizeObserver(([entry]) => {
|
|
245
|
-
subscriber({
|
|
246
|
-
_contentRect: entry.contentRect,
|
|
247
|
-
border: {
|
|
248
|
-
width: entry.borderBoxSize[0].inlineSize,
|
|
249
|
-
height: entry.borderBoxSize[0].blockSize
|
|
250
|
-
},
|
|
251
|
-
content: {
|
|
252
|
-
width: entry.contentRect.width,
|
|
253
|
-
height: entry.contentRect.height
|
|
254
|
-
}
|
|
255
|
-
});
|
|
256
|
-
});
|
|
257
|
-
return resizeObserver2.observe(element), () => {
|
|
258
|
-
resizeObserver2.unobserve(element), resizeObserver2.disconnect();
|
|
259
|
-
};
|
|
260
|
-
}
|
|
261
|
-
};
|
|
262
|
-
}
|
|
263
|
-
function _createElementSizeObserver() {
|
|
264
|
-
const disposeCache = /* @__PURE__ */ new WeakMap(), subscribersCache = /* @__PURE__ */ new WeakMap();
|
|
265
|
-
return {
|
|
266
|
-
subscribe(element, subscriber) {
|
|
267
|
-
const subscribers = subscribersCache.get(element) || [];
|
|
268
|
-
let dispose = disposeCache.get(element);
|
|
269
|
-
return subscribersCache.has(element) || (subscribersCache.set(element, subscribers), dispose = _createElementRectValueListener().subscribe(element, (elementRect) => {
|
|
270
|
-
for (const sub of subscribers)
|
|
271
|
-
sub(elementRect);
|
|
272
|
-
})), subscribers.push(subscriber), () => {
|
|
273
|
-
const idx = subscribers.indexOf(subscriber);
|
|
274
|
-
idx > -1 && subscribers.splice(idx, 1), subscribers.length === 0 && dispose && dispose();
|
|
275
|
-
};
|
|
276
|
-
}
|
|
277
|
-
};
|
|
278
|
-
}
|
|
279
|
-
function useElementSize(element) {
|
|
280
|
-
const $ = reactCompilerRuntime.c(3), [size2, setSize] = react.useState(null);
|
|
281
|
-
let t0, t1;
|
|
282
|
-
return $[0] !== element ? (t0 = () => {
|
|
283
|
-
if (element)
|
|
284
|
-
return _elementSizeObserver.subscribe(element, setSize);
|
|
285
|
-
}, t1 = [element], $[0] = element, $[1] = t0, $[2] = t1) : (t0 = $[1], t1 = $[2]), react.useEffect(t0, t1), size2;
|
|
286
|
-
}
|
|
287
|
-
function useGlobalKeyDown(onKeyDown) {
|
|
288
|
-
const $ = reactCompilerRuntime.c(5);
|
|
289
|
-
let t0;
|
|
290
|
-
$[0] !== onKeyDown ? (t0 = (event) => onKeyDown(event), $[0] = onKeyDown, $[1] = t0) : t0 = $[1];
|
|
291
|
-
const handleKeyDown = useEffectEvent.useEffectEvent(t0);
|
|
292
|
-
let t1;
|
|
293
|
-
$[2] !== handleKeyDown ? (t1 = () => {
|
|
294
|
-
const handler = (event_0) => handleKeyDown(event_0);
|
|
295
|
-
return window.addEventListener("keydown", handler), () => window.removeEventListener("keydown", handler);
|
|
296
|
-
}, $[2] = handleKeyDown, $[3] = t1) : t1 = $[3];
|
|
297
|
-
let t2;
|
|
298
|
-
$[4] === Symbol.for("react.memo_cache_sentinel") ? (t2 = [], $[4] = t2) : t2 = $[4], react.useEffect(t1, t2);
|
|
299
|
-
}
|
|
300
|
-
function useMatchMedia(mediaQueryString, getServerSnapshot2) {
|
|
301
|
-
const $ = reactCompilerRuntime.c(4);
|
|
302
|
-
react.useDebugValue(mediaQueryString);
|
|
303
|
-
let t0;
|
|
304
|
-
$[0] !== mediaQueryString ? (t0 = (onStoreChange) => {
|
|
305
|
-
const media = window.matchMedia(mediaQueryString);
|
|
306
|
-
return media.addEventListener("change", onStoreChange), () => media.removeEventListener("change", onStoreChange);
|
|
307
|
-
}, $[0] = mediaQueryString, $[1] = t0) : t0 = $[1];
|
|
308
|
-
let t1;
|
|
309
|
-
return $[2] !== mediaQueryString ? (t1 = () => window.matchMedia(mediaQueryString).matches, $[2] = mediaQueryString, $[3] = t1) : t1 = $[3], react.useSyncExternalStore(t0, t1, getServerSnapshot2);
|
|
310
|
-
}
|
|
311
192
|
function getGlobalScope() {
|
|
312
193
|
if (typeof globalThis < "u") return globalThis;
|
|
313
194
|
if (typeof window < "u") return window;
|
|
@@ -388,75 +269,6 @@ function useTheme_v2() {
|
|
|
388
269
|
let t1;
|
|
389
270
|
return $[0] !== t0 ? (t1 = theme.getTheme_v2(t0), $[0] = t0, $[1] = t1) : t1 = $[1], t1;
|
|
390
271
|
}
|
|
391
|
-
function _getMediaQuery(media, index) {
|
|
392
|
-
return index === 0 ? `screen and (max-width: ${media[index] - 1}px)` : index === media.length ? `screen and (min-width: ${media[index - 1]}px)` : `screen and (min-width: ${media[index - 1]}px) and (max-width: ${media[index] - 1}px)`;
|
|
393
|
-
}
|
|
394
|
-
function _createMediaStore(media) {
|
|
395
|
-
const mediaLen = media.length;
|
|
396
|
-
let sizes;
|
|
397
|
-
const getSizes = () => {
|
|
398
|
-
if (!sizes) {
|
|
399
|
-
sizes = [];
|
|
400
|
-
for (let index = mediaLen; index > -1; index -= 1) {
|
|
401
|
-
const mediaQuery = _getMediaQuery(media, index);
|
|
402
|
-
sizes.push({
|
|
403
|
-
index,
|
|
404
|
-
mq: window.matchMedia(mediaQuery)
|
|
405
|
-
});
|
|
406
|
-
}
|
|
407
|
-
}
|
|
408
|
-
return sizes;
|
|
409
|
-
};
|
|
410
|
-
return {
|
|
411
|
-
getSnapshot: () => {
|
|
412
|
-
for (const {
|
|
413
|
-
index,
|
|
414
|
-
mq
|
|
415
|
-
} of getSizes())
|
|
416
|
-
if (mq.matches) return index;
|
|
417
|
-
return 0;
|
|
418
|
-
},
|
|
419
|
-
subscribe: (onStoreChange) => {
|
|
420
|
-
const disposeFns = [];
|
|
421
|
-
for (const {
|
|
422
|
-
mq
|
|
423
|
-
} of getSizes()) {
|
|
424
|
-
const handleChange = () => {
|
|
425
|
-
mq.matches && onStoreChange();
|
|
426
|
-
};
|
|
427
|
-
mq.addEventListener("change", handleChange), disposeFns.push(() => mq.removeEventListener("change", handleChange));
|
|
428
|
-
}
|
|
429
|
-
return () => {
|
|
430
|
-
for (const disposeFn of disposeFns)
|
|
431
|
-
disposeFn();
|
|
432
|
-
};
|
|
433
|
-
}
|
|
434
|
-
};
|
|
435
|
-
}
|
|
436
|
-
function getServerSnapshot() {
|
|
437
|
-
return 0;
|
|
438
|
-
}
|
|
439
|
-
function useMediaIndex() {
|
|
440
|
-
const $ = reactCompilerRuntime.c(2), {
|
|
441
|
-
media
|
|
442
|
-
} = useTheme_v2();
|
|
443
|
-
let t0;
|
|
444
|
-
$[0] !== media ? (t0 = _createMediaStore(media), $[0] = media, $[1] = t0) : t0 = $[1];
|
|
445
|
-
const store = t0;
|
|
446
|
-
return react.useSyncExternalStore(store.subscribe, store.getSnapshot, getServerSnapshot);
|
|
447
|
-
}
|
|
448
|
-
function usePrefersDark(t0) {
|
|
449
|
-
return useMatchMedia("(prefers-color-scheme: dark)", t0 === void 0 ? _temp$9 : t0);
|
|
450
|
-
}
|
|
451
|
-
function _temp$9() {
|
|
452
|
-
return !1;
|
|
453
|
-
}
|
|
454
|
-
function usePrefersReducedMotion(t0) {
|
|
455
|
-
return useMatchMedia("(prefers-reduced-motion: reduce)", t0 === void 0 ? _temp$8 : t0);
|
|
456
|
-
}
|
|
457
|
-
function _temp$8() {
|
|
458
|
-
return !1;
|
|
459
|
-
}
|
|
460
272
|
function responsiveBorderStyle() {
|
|
461
273
|
return [border, borderTop, borderRight, borderBottom, borderLeft];
|
|
462
274
|
}
|
|
@@ -1170,7 +982,7 @@ const StyledLabel = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1170
982
|
displayName: "StyledLabel",
|
|
1171
983
|
componentId: "sc-1luap7z-0"
|
|
1172
984
|
})(responsiveLabelFont, responsiveTextAlignStyle, labelBaseStyle), Label = react.forwardRef(function(props, ref) {
|
|
1173
|
-
const $ = reactCompilerRuntime.c(
|
|
985
|
+
const $ = reactCompilerRuntime.c(26);
|
|
1174
986
|
let accent, align, childrenProp, restProps, t0, t1, textOverflow, weight;
|
|
1175
987
|
$[0] !== props ? ({
|
|
1176
988
|
accent,
|
|
@@ -1191,9 +1003,12 @@ const StyledLabel = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1191
1003
|
let t22;
|
|
1192
1004
|
$[11] !== children ? (t22 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[11] = children, $[12] = t22) : t22 = $[12], children = t22;
|
|
1193
1005
|
}
|
|
1194
|
-
|
|
1006
|
+
let t2;
|
|
1007
|
+
$[13] !== align ? (t2 = _getArrayProp(align), $[13] = align, $[14] = t2) : t2 = $[14];
|
|
1008
|
+
let t3;
|
|
1009
|
+
$[15] !== size2 ? (t3 = _getArrayProp(size2), $[15] = size2, $[16] = t3) : t3 = $[16];
|
|
1195
1010
|
let t4;
|
|
1196
|
-
return $[
|
|
1011
|
+
return $[17] !== accent || $[18] !== children || $[19] !== muted || $[20] !== ref || $[21] !== restProps || $[22] !== t2 || $[23] !== t3 || $[24] !== weight ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(StyledLabel, { "data-ui": "Label", ...restProps, $accent: accent, $align: t2, $muted: muted, $size: t3, $weight: weight, ref, children }), $[17] = accent, $[18] = children, $[19] = muted, $[20] = ref, $[21] = restProps, $[22] = t2, $[23] = t3, $[24] = weight, $[25] = t4) : t4 = $[25], t4;
|
|
1197
1012
|
});
|
|
1198
1013
|
Label.displayName = "ForwardRef(Label)";
|
|
1199
1014
|
const avatarStyle = {
|
|
@@ -1363,7 +1178,7 @@ const StyledAvatar = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1363
1178
|
displayName: "AvatarImage",
|
|
1364
1179
|
componentId: "sc-1rj7kl0-6"
|
|
1365
1180
|
})(avatarStyle.image), Avatar = react.forwardRef(function(props, ref) {
|
|
1366
|
-
const $ = reactCompilerRuntime.c(
|
|
1181
|
+
const $ = reactCompilerRuntime.c(46);
|
|
1367
1182
|
let __unstable_hideInnerStroke, animateArrowFrom, arrowPositionProp, asProp, initials, onImageLoadError, restProps, src, t0, t1, t2, title;
|
|
1368
1183
|
$[0] !== props ? ({
|
|
1369
1184
|
__unstable_hideInnerStroke,
|
|
@@ -1381,7 +1196,7 @@ const StyledAvatar = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1381
1196
|
} = props, $[0] = props, $[1] = __unstable_hideInnerStroke, $[2] = animateArrowFrom, $[3] = arrowPositionProp, $[4] = asProp, $[5] = initials, $[6] = onImageLoadError, $[7] = restProps, $[8] = src, $[9] = t0, $[10] = t1, $[11] = t2, $[12] = title) : (__unstable_hideInnerStroke = $[1], animateArrowFrom = $[2], arrowPositionProp = $[3], asProp = $[4], initials = $[5], onImageLoadError = $[6], restProps = $[7], src = $[8], t0 = $[9], t1 = $[10], t2 = $[11], title = $[12]);
|
|
1382
1197
|
const color = t0 === void 0 ? "gray" : t0, status = t1 === void 0 ? "online" : t1, sizeProp = t2 === void 0 ? 1 : t2, {
|
|
1383
1198
|
avatar
|
|
1384
|
-
} = useTheme_v2(), as = ReactIs__default.default.isValidElementType(asProp) ? asProp : "div", size2 =
|
|
1199
|
+
} = useTheme_v2(), as = ReactIs__default.default.isValidElementType(asProp) ? asProp : "div", size2 = _getArrayProp(sizeProp), _sizeRem = (avatar.sizes[size2[0]] || avatar.sizes[0]).size, _radius = _sizeRem / 2, elementId = react.useId(), [arrowPosition, setArrowPosition] = react.useState(animateArrowFrom || arrowPositionProp || "inside"), [imageFailed, setImageFailed] = react.useState(!1), imageId = `avatar-image-${elementId}`;
|
|
1385
1200
|
let t3, t4;
|
|
1386
1201
|
$[13] !== arrowPosition || $[14] !== arrowPositionProp ? (t3 = () => {
|
|
1387
1202
|
if (arrowPosition === arrowPositionProp)
|
|
@@ -1397,30 +1212,26 @@ const StyledAvatar = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1397
1212
|
$[20] !== onImageLoadError ? (t7 = () => {
|
|
1398
1213
|
setImageFailed(!0), onImageLoadError && onImageLoadError(new Error("Avatar: the image failed to load"));
|
|
1399
1214
|
}, $[20] = onImageLoadError, $[21] = t7) : t7 = $[21];
|
|
1400
|
-
const handleImageError = t7;
|
|
1401
|
-
let t8;
|
|
1402
|
-
$[22] !== size2 ? (t8 = size2.map(_temp$7), $[22] = size2, $[23] = t8) : t8 = $[23];
|
|
1403
|
-
const initialsSize = t8, t9 = typeof as == "string" ? as : void 0;
|
|
1215
|
+
const handleImageError = t7, T0 = StyledAvatar, t8 = typeof as == "string" ? as : void 0, t9 = "Avatar";
|
|
1404
1216
|
let t10;
|
|
1405
|
-
$[
|
|
1217
|
+
$[22] !== color ? (t10 = /* @__PURE__ */ jsxRuntime.jsx(Arrow$1, { children: /* @__PURE__ */ jsxRuntime.jsx("svg", { width: "11", height: "7", viewBox: "0 0 11 7", fill: "none", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.67948 1.50115L11 7L0 7L4.32052 1.50115C4.92109 0.736796 6.07891 0.736795 6.67948 1.50115Z", fill: color }) }) }), $[22] = color, $[23] = t10) : t10 = $[23];
|
|
1406
1218
|
let t11;
|
|
1407
|
-
$[
|
|
1219
|
+
$[24] !== __unstable_hideInnerStroke || $[25] !== _radius || $[26] !== _sizeRem || $[27] !== handleImageError || $[28] !== imageFailed || $[29] !== imageId || $[30] !== src ? (t11 = !imageFailed && src && /* @__PURE__ */ jsxRuntime.jsxs(AvatarImage, { viewBox: `0 0 ${_sizeRem} ${_sizeRem}`, fill: "none", children: [
|
|
1408
1220
|
/* @__PURE__ */ jsxRuntime.jsx("defs", { children: /* @__PURE__ */ jsxRuntime.jsx("pattern", { id: imageId, patternContentUnits: "objectBoundingBox", width: "1", height: "1", children: /* @__PURE__ */ jsxRuntime.jsx("image", { href: src, width: "1", height: "1", onError: handleImageError }) }) }),
|
|
1409
1221
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: _radius, cy: _radius, r: _radius, fill: `url(#${imageId})` }),
|
|
1410
1222
|
!__unstable_hideInnerStroke && /* @__PURE__ */ jsxRuntime.jsx(BgStroke, { cx: _radius, cy: _radius, rx: _radius, ry: _radius, vectorEffect: "non-scaling-stroke" }),
|
|
1411
1223
|
/* @__PURE__ */ jsxRuntime.jsx(Stroke, { cx: _radius, cy: _radius, rx: _radius, ry: _radius, vectorEffect: "non-scaling-stroke" })
|
|
1412
|
-
] }), $[
|
|
1413
|
-
|
|
1414
|
-
$[34] !== imageFailed || $[35] !== initials || $[36] !== initialsSize || $[37] !== src ? (t12 = (imageFailed || !src) && initials && /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsx(Initials, { children: /* @__PURE__ */ jsxRuntime.jsx(InitialsLabel, { forwardedAs: "span", size: initialsSize, weight: "medium", children: initials }) }) }), $[34] = imageFailed, $[35] = initials, $[36] = initialsSize, $[37] = src, $[38] = t12) : t12 = $[38];
|
|
1224
|
+
] }), $[24] = __unstable_hideInnerStroke, $[25] = _radius, $[26] = _sizeRem, $[27] = handleImageError, $[28] = imageFailed, $[29] = imageId, $[30] = src, $[31] = t11) : t11 = $[31];
|
|
1225
|
+
const t12 = (imageFailed || !src) && initials && /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsx(Initials, { children: /* @__PURE__ */ jsxRuntime.jsx(InitialsLabel, { forwardedAs: "span", size: size2.map(_temp$a), weight: "medium", children: initials }) }) });
|
|
1415
1226
|
let t13;
|
|
1416
|
-
return $[
|
|
1227
|
+
return $[32] !== T0 || $[33] !== arrowPosition || $[34] !== as || $[35] !== color || $[36] !== ref || $[37] !== restProps || $[38] !== size2 || $[39] !== status || $[40] !== t10 || $[41] !== t11 || $[42] !== t12 || $[43] !== t8 || $[44] !== title ? (t13 = /* @__PURE__ */ jsxRuntime.jsxs(T0, { as, "data-as": t8, "data-ui": t9, ...restProps, $color: color, $size: size2, "aria-label": title, "data-arrow-position": arrowPosition, "data-status": status, ref, title, children: [
|
|
1417
1228
|
t10,
|
|
1418
1229
|
t11,
|
|
1419
1230
|
t12
|
|
1420
|
-
] }), $[
|
|
1231
|
+
] }), $[32] = T0, $[33] = arrowPosition, $[34] = as, $[35] = color, $[36] = ref, $[37] = restProps, $[38] = size2, $[39] = status, $[40] = t10, $[41] = t11, $[42] = t12, $[43] = t8, $[44] = title, $[45] = t13) : t13 = $[45], t13;
|
|
1421
1232
|
});
|
|
1422
1233
|
Avatar.displayName = "ForwardRef(Avatar)";
|
|
1423
|
-
function _temp$
|
|
1234
|
+
function _temp$a(s) {
|
|
1424
1235
|
return s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0;
|
|
1425
1236
|
}
|
|
1426
1237
|
function _responsiveAvatarCounterSizeStyle(props) {
|
|
@@ -1463,20 +1274,23 @@ const StyledAvatarCounter = /* @__PURE__ */ styledComponents.styled.div.withConf
|
|
|
1463
1274
|
displayName: "StyledAvatarCounter",
|
|
1464
1275
|
componentId: "sc-1ydx86y-0"
|
|
1465
1276
|
})(_responsiveAvatarCounterSizeStyle, _avatarCounterBaseStyle), AvatarCounter = react.forwardRef(function(props, ref) {
|
|
1466
|
-
const $ = reactCompilerRuntime.c(
|
|
1277
|
+
const $ = reactCompilerRuntime.c(20), {
|
|
1467
1278
|
count,
|
|
1468
1279
|
size: t0
|
|
1469
|
-
} = props,
|
|
1470
|
-
let t1;
|
|
1471
|
-
$[0] !==
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1280
|
+
} = props, sizeProp = t0 === void 0 ? 1 : t0;
|
|
1281
|
+
let T0, T1, t1, t2, t3, t4, t5;
|
|
1282
|
+
if ($[0] !== ref || $[1] !== sizeProp) {
|
|
1283
|
+
const size2 = _getArrayProp(sizeProp);
|
|
1284
|
+
T1 = StyledAvatarCounter, t3 = size2, t4 = "AvatarCounter", t5 = ref, T0 = Label, t1 = "span", t2 = size2.map(_temp$9), $[0] = ref, $[1] = sizeProp, $[2] = T0, $[3] = T1, $[4] = t1, $[5] = t2, $[6] = t3, $[7] = t4, $[8] = t5;
|
|
1285
|
+
} else
|
|
1286
|
+
T0 = $[2], T1 = $[3], t1 = $[4], t2 = $[5], t3 = $[6], t4 = $[7], t5 = $[8];
|
|
1287
|
+
let t6;
|
|
1288
|
+
$[9] !== T0 || $[10] !== count || $[11] !== t1 || $[12] !== t2 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(T0, { as: t1, size: t2, weight: "medium", children: count }), $[9] = T0, $[10] = count, $[11] = t1, $[12] = t2, $[13] = t6) : t6 = $[13];
|
|
1289
|
+
let t7;
|
|
1290
|
+
return $[14] !== T1 || $[15] !== t3 || $[16] !== t4 || $[17] !== t5 || $[18] !== t6 ? (t7 = /* @__PURE__ */ jsxRuntime.jsx(T1, { $size: t3, "data-ui": t4, ref: t5, children: t6 }), $[14] = T1, $[15] = t3, $[16] = t4, $[17] = t5, $[18] = t6, $[19] = t7) : t7 = $[19], t7;
|
|
1477
1291
|
});
|
|
1478
1292
|
AvatarCounter.displayName = "ForwardRef(AvatarCounter)";
|
|
1479
|
-
function _temp$
|
|
1293
|
+
function _temp$9(s) {
|
|
1480
1294
|
return s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0;
|
|
1481
1295
|
}
|
|
1482
1296
|
const BASE_STYLES = styledComponents.css`
|
|
@@ -1511,7 +1325,7 @@ const StyledAvatarStack = /* @__PURE__ */ styledComponents.styled.div.withConfig
|
|
|
1511
1325
|
displayName: "StyledAvatarStack",
|
|
1512
1326
|
componentId: "sc-cysmbb-0"
|
|
1513
1327
|
})(responsiveAvatarStackSizeStyle, avatarStackStyle), AvatarStack = react.forwardRef(function(props, ref) {
|
|
1514
|
-
const $ = reactCompilerRuntime.c(
|
|
1328
|
+
const $ = reactCompilerRuntime.c(38);
|
|
1515
1329
|
let childrenProp, restProps, t0, t1;
|
|
1516
1330
|
$[0] !== props ? ({
|
|
1517
1331
|
children: childrenProp,
|
|
@@ -1519,29 +1333,33 @@ const StyledAvatarStack = /* @__PURE__ */ styledComponents.styled.div.withConfig
|
|
|
1519
1333
|
size: t1,
|
|
1520
1334
|
...restProps
|
|
1521
1335
|
} = props, $[0] = props, $[1] = childrenProp, $[2] = restProps, $[3] = t0, $[4] = t1) : (childrenProp = $[1], restProps = $[2], t0 = $[3], t1 = $[4]);
|
|
1522
|
-
const maxLengthProp = t0 === void 0 ? 4 : t0, sizeProp = t1 === void 0 ? 1 : t1
|
|
1523
|
-
let t3;
|
|
1524
|
-
$[5] !==
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
size: size2
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
t4,
|
|
1536
|
-
|
|
1537
|
-
|
|
1336
|
+
const maxLengthProp = t0 === void 0 ? 4 : t0, sizeProp = t1 === void 0 ? 1 : t1;
|
|
1337
|
+
let T0, t2, t3, t4, t5, t6, t7, t8;
|
|
1338
|
+
if ($[5] !== childrenProp || $[6] !== maxLengthProp || $[7] !== ref || $[8] !== restProps || $[9] !== sizeProp) {
|
|
1339
|
+
const children = react.Children.toArray(childrenProp).filter(react.isValidElement), maxLength = Math.max(maxLengthProp, 0);
|
|
1340
|
+
let t92;
|
|
1341
|
+
$[18] !== sizeProp ? (t92 = _getArrayProp(sizeProp), $[18] = sizeProp, $[19] = t92) : t92 = $[19];
|
|
1342
|
+
const size2 = t92, len = children.length, visibleCount = maxLength - 1, extraCount = len - visibleCount, visibleChildren = extraCount > 1 ? children.slice(extraCount, len) : children;
|
|
1343
|
+
T0 = StyledAvatarStack, t2 = "AvatarStack", t3 = restProps, t4 = ref, t5 = size2, $[20] !== len || $[21] !== size2 ? (t6 = len === 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: len, size: size2 }) }), $[20] = len, $[21] = size2, $[22] = t6) : t6 = $[22], $[23] !== extraCount || $[24] !== len || $[25] !== size2 ? (t7 = len !== 0 && extraCount > 1 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: extraCount, size: size2 }) }), $[23] = extraCount, $[24] = len, $[25] = size2, $[26] = t7) : t7 = $[26];
|
|
1344
|
+
let t10;
|
|
1345
|
+
$[27] !== size2 ? (t10 = (child, childIndex) => /* @__PURE__ */ jsxRuntime.jsx("div", { children: react.cloneElement(child, {
|
|
1346
|
+
size: size2
|
|
1347
|
+
}) }, String(childIndex)), $[27] = size2, $[28] = t10) : t10 = $[28], t8 = visibleChildren.map(t10), $[5] = childrenProp, $[6] = maxLengthProp, $[7] = ref, $[8] = restProps, $[9] = sizeProp, $[10] = T0, $[11] = t2, $[12] = t3, $[13] = t4, $[14] = t5, $[15] = t6, $[16] = t7, $[17] = t8;
|
|
1348
|
+
} else
|
|
1349
|
+
T0 = $[10], t2 = $[11], t3 = $[12], t4 = $[13], t5 = $[14], t6 = $[15], t7 = $[16], t8 = $[17];
|
|
1350
|
+
let t9;
|
|
1351
|
+
return $[29] !== T0 || $[30] !== t2 || $[31] !== t3 || $[32] !== t4 || $[33] !== t5 || $[34] !== t6 || $[35] !== t7 || $[36] !== t8 ? (t9 = /* @__PURE__ */ jsxRuntime.jsxs(T0, { "data-ui": t2, ...t3, ref: t4, $size: t5, children: [
|
|
1352
|
+
t6,
|
|
1353
|
+
t7,
|
|
1354
|
+
t8
|
|
1355
|
+
] }), $[29] = T0, $[30] = t2, $[31] = t3, $[32] = t4, $[33] = t5, $[34] = t6, $[35] = t7, $[36] = t8, $[37] = t9) : t9 = $[37], t9;
|
|
1538
1356
|
});
|
|
1539
1357
|
AvatarStack.displayName = "ForwardRef(AvatarStack)";
|
|
1540
1358
|
const StyledBox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
1541
1359
|
displayName: "StyledBox",
|
|
1542
1360
|
componentId: "sc-1hhky9f-0"
|
|
1543
1361
|
})(boxStyle, flexItemStyle, responsiveBoxStyle, responsiveGridItemStyle, responsiveMarginStyle, responsivePaddingStyle), Box = react.forwardRef(function(props, ref) {
|
|
1544
|
-
const $ = reactCompilerRuntime.c(
|
|
1362
|
+
const $ = reactCompilerRuntime.c(109);
|
|
1545
1363
|
let column, columnEnd, columnStart, flex, height, marginBottom, marginLeft, marginRight, marginTop, marginX, marginY, overflow, paddingBottom, paddingLeft, paddingRight, paddingTop, paddingX, paddingY, restProps, row, rowEnd, rowStart, sizing, t0, t1, t2, t3;
|
|
1546
1364
|
$[0] !== props ? ({
|
|
1547
1365
|
as: t0,
|
|
@@ -1572,9 +1390,59 @@ const StyledBox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1572
1390
|
sizing,
|
|
1573
1391
|
...restProps
|
|
1574
1392
|
} = props, $[0] = props, $[1] = column, $[2] = columnEnd, $[3] = columnStart, $[4] = flex, $[5] = height, $[6] = marginBottom, $[7] = marginLeft, $[8] = marginRight, $[9] = marginTop, $[10] = marginX, $[11] = marginY, $[12] = overflow, $[13] = paddingBottom, $[14] = paddingLeft, $[15] = paddingRight, $[16] = paddingTop, $[17] = paddingX, $[18] = paddingY, $[19] = restProps, $[20] = row, $[21] = rowEnd, $[22] = rowStart, $[23] = sizing, $[24] = t0, $[25] = t1, $[26] = t2, $[27] = t3) : (column = $[1], columnEnd = $[2], columnStart = $[3], flex = $[4], height = $[5], marginBottom = $[6], marginLeft = $[7], marginRight = $[8], marginTop = $[9], marginX = $[10], marginY = $[11], overflow = $[12], paddingBottom = $[13], paddingLeft = $[14], paddingRight = $[15], paddingTop = $[16], paddingX = $[17], paddingY = $[18], restProps = $[19], row = $[20], rowEnd = $[21], rowStart = $[22], sizing = $[23], t0 = $[24], t1 = $[25], t2 = $[26], t3 = $[27]);
|
|
1575
|
-
const asProp = t0 === void 0 ? "div" : t0, display = t1 === void 0 ? "block" : t1, margin = t2 === void 0 ? 0 : t2, padding = t3 === void 0 ? 0 : t3, t4 = typeof asProp == "string" ? asProp : void 0
|
|
1393
|
+
const asProp = t0 === void 0 ? "div" : t0, display = t1 === void 0 ? "block" : t1, margin = t2 === void 0 ? 0 : t2, padding = t3 === void 0 ? 0 : t3, t4 = typeof asProp == "string" ? asProp : void 0;
|
|
1394
|
+
let t5;
|
|
1395
|
+
$[28] !== column ? (t5 = _getArrayProp(column), $[28] = column, $[29] = t5) : t5 = $[29];
|
|
1396
|
+
let t6;
|
|
1397
|
+
$[30] !== columnStart ? (t6 = _getArrayProp(columnStart), $[30] = columnStart, $[31] = t6) : t6 = $[31];
|
|
1398
|
+
let t7;
|
|
1399
|
+
$[32] !== columnEnd ? (t7 = _getArrayProp(columnEnd), $[32] = columnEnd, $[33] = t7) : t7 = $[33];
|
|
1400
|
+
let t8;
|
|
1401
|
+
$[34] !== display ? (t8 = _getArrayProp(display), $[34] = display, $[35] = t8) : t8 = $[35];
|
|
1402
|
+
let t9;
|
|
1403
|
+
$[36] !== flex ? (t9 = _getArrayProp(flex), $[36] = flex, $[37] = t9) : t9 = $[37];
|
|
1404
|
+
let t10;
|
|
1405
|
+
$[38] !== height ? (t10 = _getArrayProp(height), $[38] = height, $[39] = t10) : t10 = $[39];
|
|
1406
|
+
let t11;
|
|
1407
|
+
$[40] !== margin ? (t11 = _getArrayProp(margin), $[40] = margin, $[41] = t11) : t11 = $[41];
|
|
1408
|
+
let t12;
|
|
1409
|
+
$[42] !== marginX ? (t12 = _getArrayProp(marginX), $[42] = marginX, $[43] = t12) : t12 = $[43];
|
|
1410
|
+
let t13;
|
|
1411
|
+
$[44] !== marginY ? (t13 = _getArrayProp(marginY), $[44] = marginY, $[45] = t13) : t13 = $[45];
|
|
1412
|
+
let t14;
|
|
1413
|
+
$[46] !== marginTop ? (t14 = _getArrayProp(marginTop), $[46] = marginTop, $[47] = t14) : t14 = $[47];
|
|
1414
|
+
let t15;
|
|
1415
|
+
$[48] !== marginRight ? (t15 = _getArrayProp(marginRight), $[48] = marginRight, $[49] = t15) : t15 = $[49];
|
|
1416
|
+
let t16;
|
|
1417
|
+
$[50] !== marginBottom ? (t16 = _getArrayProp(marginBottom), $[50] = marginBottom, $[51] = t16) : t16 = $[51];
|
|
1418
|
+
let t17;
|
|
1419
|
+
$[52] !== marginLeft ? (t17 = _getArrayProp(marginLeft), $[52] = marginLeft, $[53] = t17) : t17 = $[53];
|
|
1420
|
+
let t18;
|
|
1421
|
+
$[54] !== overflow ? (t18 = _getArrayProp(overflow), $[54] = overflow, $[55] = t18) : t18 = $[55];
|
|
1422
|
+
let t19;
|
|
1423
|
+
$[56] !== padding ? (t19 = _getArrayProp(padding), $[56] = padding, $[57] = t19) : t19 = $[57];
|
|
1424
|
+
let t20;
|
|
1425
|
+
$[58] !== paddingX ? (t20 = _getArrayProp(paddingX), $[58] = paddingX, $[59] = t20) : t20 = $[59];
|
|
1426
|
+
let t21;
|
|
1427
|
+
$[60] !== paddingY ? (t21 = _getArrayProp(paddingY), $[60] = paddingY, $[61] = t21) : t21 = $[61];
|
|
1428
|
+
let t22;
|
|
1429
|
+
$[62] !== paddingTop ? (t22 = _getArrayProp(paddingTop), $[62] = paddingTop, $[63] = t22) : t22 = $[63];
|
|
1430
|
+
let t23;
|
|
1431
|
+
$[64] !== paddingRight ? (t23 = _getArrayProp(paddingRight), $[64] = paddingRight, $[65] = t23) : t23 = $[65];
|
|
1432
|
+
let t24;
|
|
1433
|
+
$[66] !== paddingBottom ? (t24 = _getArrayProp(paddingBottom), $[66] = paddingBottom, $[67] = t24) : t24 = $[67];
|
|
1434
|
+
let t25;
|
|
1435
|
+
$[68] !== paddingLeft ? (t25 = _getArrayProp(paddingLeft), $[68] = paddingLeft, $[69] = t25) : t25 = $[69];
|
|
1436
|
+
let t26;
|
|
1437
|
+
$[70] !== row ? (t26 = _getArrayProp(row), $[70] = row, $[71] = t26) : t26 = $[71];
|
|
1438
|
+
let t27;
|
|
1439
|
+
$[72] !== rowStart ? (t27 = _getArrayProp(rowStart), $[72] = rowStart, $[73] = t27) : t27 = $[73];
|
|
1440
|
+
let t28;
|
|
1441
|
+
$[74] !== rowEnd ? (t28 = _getArrayProp(rowEnd), $[74] = rowEnd, $[75] = t28) : t28 = $[75];
|
|
1442
|
+
let t29;
|
|
1443
|
+
$[76] !== sizing ? (t29 = _getArrayProp(sizing), $[76] = sizing, $[77] = t29) : t29 = $[77];
|
|
1576
1444
|
let t30;
|
|
1577
|
-
return $[
|
|
1445
|
+
return $[78] !== asProp || $[79] !== props.children || $[80] !== ref || $[81] !== restProps || $[82] !== t10 || $[83] !== t11 || $[84] !== t12 || $[85] !== t13 || $[86] !== t14 || $[87] !== t15 || $[88] !== t16 || $[89] !== t17 || $[90] !== t18 || $[91] !== t19 || $[92] !== t20 || $[93] !== t21 || $[94] !== t22 || $[95] !== t23 || $[96] !== t24 || $[97] !== t25 || $[98] !== t26 || $[99] !== t27 || $[100] !== t28 || $[101] !== t29 || $[102] !== t4 || $[103] !== t5 || $[104] !== t6 || $[105] !== t7 || $[106] !== t8 || $[107] !== t9 ? (t30 = /* @__PURE__ */ jsxRuntime.jsx(StyledBox, { "data-as": t4, "data-ui": "Box", ...restProps, $column: t5, $columnStart: t6, $columnEnd: t7, $display: t8, $flex: t9, $height: t10, $margin: t11, $marginX: t12, $marginY: t13, $marginTop: t14, $marginRight: t15, $marginBottom: t16, $marginLeft: t17, $overflow: t18, $padding: t19, $paddingX: t20, $paddingY: t21, $paddingTop: t22, $paddingRight: t23, $paddingBottom: t24, $paddingLeft: t25, $row: t26, $rowStart: t27, $rowEnd: t28, $sizing: t29, as: asProp, ref, children: props.children }), $[78] = asProp, $[79] = props.children, $[80] = ref, $[81] = restProps, $[82] = t10, $[83] = t11, $[84] = t12, $[85] = t13, $[86] = t14, $[87] = t15, $[88] = t16, $[89] = t17, $[90] = t18, $[91] = t19, $[92] = t20, $[93] = t21, $[94] = t22, $[95] = t23, $[96] = t24, $[97] = t25, $[98] = t26, $[99] = t27, $[100] = t28, $[101] = t29, $[102] = t4, $[103] = t5, $[104] = t6, $[105] = t7, $[106] = t8, $[107] = t9, $[108] = t30) : t30 = $[108], t30;
|
|
1578
1446
|
});
|
|
1579
1447
|
Box.displayName = "ForwardRef(Box)";
|
|
1580
1448
|
function textBaseStyle(props) {
|
|
@@ -1649,7 +1517,7 @@ const StyledText = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1649
1517
|
displayName: "StyledText",
|
|
1650
1518
|
componentId: "sc-11ov82j-0"
|
|
1651
1519
|
})(responsiveTextFont, responsiveTextAlignStyle, textBaseStyle), Text = react.forwardRef(function(props, ref) {
|
|
1652
|
-
const $ = reactCompilerRuntime.c(
|
|
1520
|
+
const $ = reactCompilerRuntime.c(26);
|
|
1653
1521
|
let align, childrenProp, restProps, t0, t1, t2, textOverflow, weight;
|
|
1654
1522
|
$[0] !== props ? ({
|
|
1655
1523
|
accent: t0,
|
|
@@ -1667,11 +1535,14 @@ const StyledText = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1667
1535
|
let t32;
|
|
1668
1536
|
$[9] !== children ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }), $[9] = children, $[10] = t32) : t32 = $[10], children = t32;
|
|
1669
1537
|
}
|
|
1670
|
-
|
|
1538
|
+
let t3;
|
|
1539
|
+
$[11] !== align ? (t3 = _getArrayProp(align), $[11] = align, $[12] = t3) : t3 = $[12];
|
|
1540
|
+
let t4;
|
|
1541
|
+
$[13] !== size2 ? (t4 = _getArrayProp(size2), $[13] = size2, $[14] = t4) : t4 = $[14];
|
|
1671
1542
|
let t5;
|
|
1672
|
-
$[
|
|
1543
|
+
$[15] !== children ? (t5 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[15] = children, $[16] = t5) : t5 = $[16];
|
|
1673
1544
|
let t6;
|
|
1674
|
-
return $[
|
|
1545
|
+
return $[17] !== accent || $[18] !== muted || $[19] !== ref || $[20] !== restProps || $[21] !== t3 || $[22] !== t4 || $[23] !== t5 || $[24] !== weight ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledText, { "data-ui": "Text", ...restProps, $accent: accent, $align: t3, $muted: muted, ref, $size: t4, $weight: weight, children: t5 }), $[17] = accent, $[18] = muted, $[19] = ref, $[20] = restProps, $[21] = t3, $[22] = t4, $[23] = t5, $[24] = weight, $[25] = t6) : t6 = $[25], t6;
|
|
1675
1546
|
});
|
|
1676
1547
|
Text.displayName = "ForwardRef(Text)";
|
|
1677
1548
|
function badgeStyle(props) {
|
|
@@ -1693,7 +1564,7 @@ const StyledBadge = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
1693
1564
|
displayName: "StyledBadge",
|
|
1694
1565
|
componentId: "sc-5u140l-0"
|
|
1695
1566
|
})(responsiveRadiusStyle, badgeStyle), Badge = react.forwardRef(function(props, ref) {
|
|
1696
|
-
const $ = reactCompilerRuntime.c(
|
|
1567
|
+
const $ = reactCompilerRuntime.c(21);
|
|
1697
1568
|
let children, restProps, t0, t1, t2, t3;
|
|
1698
1569
|
if ($[0] !== props) {
|
|
1699
1570
|
const {
|
|
@@ -1708,18 +1579,22 @@ const StyledBadge = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
1708
1579
|
children = t42, t0 = t52, t1 = t62, t2 = t72, t3 = t8, restProps = t9, $[0] = props, $[1] = children, $[2] = restProps, $[3] = t0, $[4] = t1, $[5] = t2, $[6] = t3;
|
|
1709
1580
|
} else
|
|
1710
1581
|
children = $[1], restProps = $[2], t0 = $[3], t1 = $[4], t2 = $[5], t3 = $[6];
|
|
1711
|
-
const fontSize2 = t0 === void 0 ? 1 : t0, padding = t1 === void 0 ? 1 : t1, radius = t2 === void 0 ? "full" : t2, tone = t3 === void 0 ? "default" : t3
|
|
1582
|
+
const fontSize2 = t0 === void 0 ? 1 : t0, padding = t1 === void 0 ? 1 : t1, radius = t2 === void 0 ? "full" : t2, tone = t3 === void 0 ? "default" : t3;
|
|
1583
|
+
let t4;
|
|
1584
|
+
$[7] !== radius ? (t4 = _getArrayProp(radius), $[7] = radius, $[8] = t4) : t4 = $[8];
|
|
1585
|
+
let t5;
|
|
1586
|
+
$[9] !== padding ? (t5 = _getArrayProp(padding), $[9] = padding, $[10] = t5) : t5 = $[10];
|
|
1712
1587
|
let t6;
|
|
1713
|
-
$[
|
|
1588
|
+
$[11] !== children || $[12] !== fontSize2 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children }), $[11] = children, $[12] = fontSize2, $[13] = t6) : t6 = $[13];
|
|
1714
1589
|
let t7;
|
|
1715
|
-
return $[
|
|
1590
|
+
return $[14] !== ref || $[15] !== restProps || $[16] !== t4 || $[17] !== t5 || $[18] !== t6 || $[19] !== tone ? (t7 = /* @__PURE__ */ jsxRuntime.jsx(StyledBadge, { "data-ui": "Badge", ...restProps, $tone: tone, $radius: t4, padding: t5, ref, children: t6 }), $[14] = ref, $[15] = restProps, $[16] = t4, $[17] = t5, $[18] = t6, $[19] = tone, $[20] = t7) : t7 = $[20], t7;
|
|
1716
1591
|
});
|
|
1717
1592
|
Badge.displayName = "ForwardRef(Badge)";
|
|
1718
1593
|
const StyledFlex = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
1719
1594
|
displayName: "StyledFlex",
|
|
1720
1595
|
componentId: "sc-oxesg3-0"
|
|
1721
1596
|
})(flexItemStyle, responsiveFlexStyle), Flex = react.forwardRef(function(props, ref) {
|
|
1722
|
-
const $ = reactCompilerRuntime.c(
|
|
1597
|
+
const $ = reactCompilerRuntime.c(27);
|
|
1723
1598
|
let align, as, gap, justify, restProps, t0, wrap;
|
|
1724
1599
|
$[0] !== props ? ({
|
|
1725
1600
|
align,
|
|
@@ -1730,9 +1605,19 @@ const StyledFlex = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
1730
1605
|
wrap,
|
|
1731
1606
|
...restProps
|
|
1732
1607
|
} = props, $[0] = props, $[1] = align, $[2] = as, $[3] = gap, $[4] = justify, $[5] = restProps, $[6] = t0, $[7] = wrap) : (align = $[1], as = $[2], gap = $[3], justify = $[4], restProps = $[5], t0 = $[6], wrap = $[7]);
|
|
1733
|
-
const direction = t0 === void 0 ? "row" : t0
|
|
1608
|
+
const direction = t0 === void 0 ? "row" : t0;
|
|
1609
|
+
let t1;
|
|
1610
|
+
$[8] !== align ? (t1 = _getArrayProp(align), $[8] = align, $[9] = t1) : t1 = $[9];
|
|
1611
|
+
let t2;
|
|
1612
|
+
$[10] !== direction ? (t2 = _getArrayProp(direction), $[10] = direction, $[11] = t2) : t2 = $[11];
|
|
1613
|
+
let t3;
|
|
1614
|
+
$[12] !== gap ? (t3 = _getArrayProp(gap), $[12] = gap, $[13] = t3) : t3 = $[13];
|
|
1615
|
+
let t4;
|
|
1616
|
+
$[14] !== justify ? (t4 = _getArrayProp(justify), $[14] = justify, $[15] = t4) : t4 = $[15];
|
|
1617
|
+
let t5;
|
|
1618
|
+
$[16] !== wrap ? (t5 = _getArrayProp(wrap), $[16] = wrap, $[17] = t5) : t5 = $[17];
|
|
1734
1619
|
let t6;
|
|
1735
|
-
return $[
|
|
1620
|
+
return $[18] !== as || $[19] !== ref || $[20] !== restProps || $[21] !== t1 || $[22] !== t2 || $[23] !== t3 || $[24] !== t4 || $[25] !== t5 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledFlex, { "data-ui": "Flex", ...restProps, $align: t1, $direction: t2, $gap: t3, $justify: t4, $wrap: t5, forwardedAs: as, ref }), $[18] = as, $[19] = ref, $[20] = restProps, $[21] = t1, $[22] = t2, $[23] = t3, $[24] = t4, $[25] = t5, $[26] = t6) : t6 = $[26], t6;
|
|
1736
1621
|
});
|
|
1737
1622
|
Flex.displayName = "ForwardRef(Flex)";
|
|
1738
1623
|
const rotate = styledComponents.keyframes`
|
|
@@ -1929,7 +1814,7 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1929
1814
|
displayName: "LoadingBox",
|
|
1930
1815
|
componentId: "sc-aaekt4-1"
|
|
1931
1816
|
})`position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;background-color:var(--card-bg-color);border-radius:inherit;z-index:1;box-shadow:inherit;`, Button = react.forwardRef(function(props, ref) {
|
|
1932
|
-
const $ = reactCompilerRuntime.c(
|
|
1817
|
+
const $ = reactCompilerRuntime.c(86);
|
|
1933
1818
|
let IconComponent, IconRightComponent, children, disabled, loading, paddingBottomProp, paddingLeftProp, paddingRightProp, paddingTopProp, paddingXProp, paddingYProp, restProps, selected, t0, t1, t2, t3, t4, t5, t6, t7, t8, text, textAlign, textWeight, width;
|
|
1934
1819
|
$[0] !== props ? ({
|
|
1935
1820
|
children,
|
|
@@ -1961,9 +1846,39 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1961
1846
|
} = props, $[0] = props, $[1] = IconComponent, $[2] = IconRightComponent, $[3] = children, $[4] = disabled, $[5] = loading, $[6] = paddingBottomProp, $[7] = paddingLeftProp, $[8] = paddingRightProp, $[9] = paddingTopProp, $[10] = paddingXProp, $[11] = paddingYProp, $[12] = restProps, $[13] = selected, $[14] = t0, $[15] = t1, $[16] = t2, $[17] = t3, $[18] = t4, $[19] = t5, $[20] = t6, $[21] = t7, $[22] = t8, $[23] = text, $[24] = textAlign, $[25] = textWeight, $[26] = width) : (IconComponent = $[1], IconRightComponent = $[2], children = $[3], disabled = $[4], loading = $[5], paddingBottomProp = $[6], paddingLeftProp = $[7], paddingRightProp = $[8], paddingTopProp = $[9], paddingXProp = $[10], paddingYProp = $[11], restProps = $[12], selected = $[13], t0 = $[14], t1 = $[15], t2 = $[16], t3 = $[17], t4 = $[18], t5 = $[19], t6 = $[20], t7 = $[21], t8 = $[22], text = $[23], textAlign = $[24], textWeight = $[25], width = $[26]);
|
|
1962
1847
|
const fontSize2 = t0 === void 0 ? 1 : t0, justifyProp = t1 === void 0 ? "center" : t1, mode = t2 === void 0 ? "default" : t2, paddingProp = t3 === void 0 ? 3 : t3, radiusProp = t4 === void 0 ? 2 : t4, spaceProp = t5 === void 0 ? 3 : t5, tone = t6 === void 0 ? "default" : t6, type = t7 === void 0 ? "button" : t7, muted = t8 === void 0 ? !1 : t8, {
|
|
1963
1848
|
button
|
|
1964
|
-
} = useTheme_v2()
|
|
1849
|
+
} = useTheme_v2();
|
|
1965
1850
|
let t9;
|
|
1966
|
-
$[27] !==
|
|
1851
|
+
$[27] !== justifyProp ? (t9 = _getArrayProp(justifyProp), $[27] = justifyProp, $[28] = t9) : t9 = $[28];
|
|
1852
|
+
const justify = t9;
|
|
1853
|
+
let t10;
|
|
1854
|
+
$[29] !== paddingProp ? (t10 = _getArrayProp(paddingProp), $[29] = paddingProp, $[30] = t10) : t10 = $[30];
|
|
1855
|
+
const padding = t10;
|
|
1856
|
+
let t11;
|
|
1857
|
+
$[31] !== paddingXProp ? (t11 = _getArrayProp(paddingXProp), $[31] = paddingXProp, $[32] = t11) : t11 = $[32];
|
|
1858
|
+
const paddingX = t11;
|
|
1859
|
+
let t12;
|
|
1860
|
+
$[33] !== paddingYProp ? (t12 = _getArrayProp(paddingYProp), $[33] = paddingYProp, $[34] = t12) : t12 = $[34];
|
|
1861
|
+
const paddingY = t12;
|
|
1862
|
+
let t13;
|
|
1863
|
+
$[35] !== paddingTopProp ? (t13 = _getArrayProp(paddingTopProp), $[35] = paddingTopProp, $[36] = t13) : t13 = $[36];
|
|
1864
|
+
const paddingTop = t13;
|
|
1865
|
+
let t14;
|
|
1866
|
+
$[37] !== paddingBottomProp ? (t14 = _getArrayProp(paddingBottomProp), $[37] = paddingBottomProp, $[38] = t14) : t14 = $[38];
|
|
1867
|
+
const paddingBottom = t14;
|
|
1868
|
+
let t15;
|
|
1869
|
+
$[39] !== paddingLeftProp ? (t15 = _getArrayProp(paddingLeftProp), $[39] = paddingLeftProp, $[40] = t15) : t15 = $[40];
|
|
1870
|
+
const paddingLeft = t15;
|
|
1871
|
+
let t16;
|
|
1872
|
+
$[41] !== paddingRightProp ? (t16 = _getArrayProp(paddingRightProp), $[41] = paddingRightProp, $[42] = t16) : t16 = $[42];
|
|
1873
|
+
const paddingRight = t16;
|
|
1874
|
+
let t17;
|
|
1875
|
+
$[43] !== radiusProp ? (t17 = _getArrayProp(radiusProp), $[43] = radiusProp, $[44] = t17) : t17 = $[44];
|
|
1876
|
+
const radius = t17;
|
|
1877
|
+
let t18;
|
|
1878
|
+
$[45] !== spaceProp ? (t18 = _getArrayProp(spaceProp), $[45] = spaceProp, $[46] = t18) : t18 = $[46];
|
|
1879
|
+
const space = t18;
|
|
1880
|
+
let t19;
|
|
1881
|
+
$[47] !== padding || $[48] !== paddingBottom || $[49] !== paddingLeft || $[50] !== paddingRight || $[51] !== paddingTop || $[52] !== paddingX || $[53] !== paddingY ? (t19 = {
|
|
1967
1882
|
padding,
|
|
1968
1883
|
paddingX,
|
|
1969
1884
|
paddingY,
|
|
@@ -1971,12 +1886,12 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1971
1886
|
paddingBottom,
|
|
1972
1887
|
paddingLeft,
|
|
1973
1888
|
paddingRight
|
|
1974
|
-
}, $[
|
|
1975
|
-
const boxProps =
|
|
1976
|
-
let
|
|
1977
|
-
$[
|
|
1978
|
-
let
|
|
1979
|
-
$[
|
|
1889
|
+
}, $[47] = padding, $[48] = paddingBottom, $[49] = paddingLeft, $[50] = paddingRight, $[51] = paddingTop, $[52] = paddingX, $[53] = paddingY, $[54] = t19) : t19 = $[54];
|
|
1890
|
+
const boxProps = t19, t20 = !!(loading || disabled), t21 = selected ? "" : void 0, t22 = !!(loading || disabled);
|
|
1891
|
+
let t23;
|
|
1892
|
+
$[55] !== loading ? (t23 = !!loading && /* @__PURE__ */ jsxRuntime.jsx(LoadingBox, { children: /* @__PURE__ */ jsxRuntime.jsx(Spinner, {}) }), $[55] = loading, $[56] = t23) : t23 = $[56];
|
|
1893
|
+
let t24;
|
|
1894
|
+
$[57] !== IconComponent || $[58] !== IconRightComponent || $[59] !== boxProps || $[60] !== button || $[61] !== fontSize2 || $[62] !== justify || $[63] !== muted || $[64] !== space || $[65] !== text || $[66] !== textAlign || $[67] !== textWeight ? (t24 = (IconComponent || text || IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...boxProps, children: /* @__PURE__ */ jsxRuntime.jsxs(Flex, { as: "span", justify, gap: space, children: [
|
|
1980
1895
|
IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
1981
1896
|
react.isValidElement(IconComponent) && IconComponent,
|
|
1982
1897
|
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
@@ -1986,15 +1901,15 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1986
1901
|
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
1987
1902
|
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
1988
1903
|
] })
|
|
1989
|
-
] }) }), $[
|
|
1990
|
-
let
|
|
1991
|
-
$[
|
|
1992
|
-
let
|
|
1993
|
-
return $[
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
] }), $[
|
|
1904
|
+
] }) }), $[57] = IconComponent, $[58] = IconRightComponent, $[59] = boxProps, $[60] = button, $[61] = fontSize2, $[62] = justify, $[63] = muted, $[64] = space, $[65] = text, $[66] = textAlign, $[67] = textWeight, $[68] = t24) : t24 = $[68];
|
|
1905
|
+
let t25;
|
|
1906
|
+
$[69] !== boxProps || $[70] !== children ? (t25 = children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...boxProps, children }), $[69] = boxProps, $[70] = children, $[71] = t25) : t25 = $[71];
|
|
1907
|
+
let t26;
|
|
1908
|
+
return $[72] !== mode || $[73] !== radius || $[74] !== ref || $[75] !== restProps || $[76] !== t20 || $[77] !== t21 || $[78] !== t22 || $[79] !== t23 || $[80] !== t24 || $[81] !== t25 || $[82] !== tone || $[83] !== type || $[84] !== width ? (t26 = /* @__PURE__ */ jsxRuntime.jsxs(StyledButton, { "data-ui": "Button", ...restProps, $mode: mode, $radius: radius, $tone: tone, "data-disabled": t20, "data-selected": t21, disabled: t22, ref, type, $width: width, children: [
|
|
1909
|
+
t23,
|
|
1910
|
+
t24,
|
|
1911
|
+
t25
|
|
1912
|
+
] }), $[72] = mode, $[73] = radius, $[74] = ref, $[75] = restProps, $[76] = t20, $[77] = t21, $[78] = t22, $[79] = t23, $[80] = t24, $[81] = t25, $[82] = tone, $[83] = type, $[84] = width, $[85] = t26) : t26 = $[85], t26;
|
|
1998
1913
|
});
|
|
1999
1914
|
Button.displayName = "ForwardRef(Button)";
|
|
2000
1915
|
function cardStyle(props) {
|
|
@@ -2141,41 +2056,237 @@ function cardColorStyle(props) {
|
|
|
2141
2056
|
}
|
|
2142
2057
|
}
|
|
2143
2058
|
}
|
|
2144
|
-
|
|
2145
|
-
${style?.card?.root}
|
|
2146
|
-
`;
|
|
2059
|
+
|
|
2060
|
+
${style?.card?.root}
|
|
2061
|
+
`;
|
|
2062
|
+
}
|
|
2063
|
+
const StyledCard = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
2064
|
+
displayName: "StyledCard",
|
|
2065
|
+
componentId: "sc-osnro2-0"
|
|
2066
|
+
})(responsiveBorderStyle, responsiveRadiusStyle, responsiveShadowStyle, cardStyle), Card = react.forwardRef(function(props, ref) {
|
|
2067
|
+
const $ = reactCompilerRuntime.c(56);
|
|
2068
|
+
let asProp, border2, borderBottom2, borderLeft2, borderRight2, borderTop2, muted, pressed, restProps, scheme, selected, shadow, t0, t1, t2, t3;
|
|
2069
|
+
$[0] !== props ? ({
|
|
2070
|
+
__unstable_checkered: t0,
|
|
2071
|
+
__unstable_focusRing: t1,
|
|
2072
|
+
as: asProp,
|
|
2073
|
+
border: border2,
|
|
2074
|
+
borderTop: borderTop2,
|
|
2075
|
+
borderRight: borderRight2,
|
|
2076
|
+
borderBottom: borderBottom2,
|
|
2077
|
+
borderLeft: borderLeft2,
|
|
2078
|
+
muted,
|
|
2079
|
+
pressed,
|
|
2080
|
+
radius: t2,
|
|
2081
|
+
scheme,
|
|
2082
|
+
selected,
|
|
2083
|
+
shadow,
|
|
2084
|
+
tone: t3,
|
|
2085
|
+
...restProps
|
|
2086
|
+
} = props, $[0] = props, $[1] = asProp, $[2] = border2, $[3] = borderBottom2, $[4] = borderLeft2, $[5] = borderRight2, $[6] = borderTop2, $[7] = muted, $[8] = pressed, $[9] = restProps, $[10] = scheme, $[11] = selected, $[12] = shadow, $[13] = t0, $[14] = t1, $[15] = t2, $[16] = t3) : (asProp = $[1], border2 = $[2], borderBottom2 = $[3], borderLeft2 = $[4], borderRight2 = $[5], borderTop2 = $[6], muted = $[7], pressed = $[8], restProps = $[9], scheme = $[10], selected = $[11], shadow = $[12], t0 = $[13], t1 = $[14], t2 = $[15], t3 = $[16]);
|
|
2087
|
+
const checkered = t0 === void 0 ? !1 : t0, focusRing = t1 === void 0 ? !1 : t1, radius = t2 === void 0 ? 0 : t2, toneProp = t3 === void 0 ? "default" : t3, as = ReactIs.isValidElementType(asProp) ? asProp : "div", rootTheme = useRootTheme(), tone = toneProp === "inherit" ? rootTheme.tone : toneProp, t4 = typeof as == "string" ? as : void 0, t5 = rootTheme.scheme;
|
|
2088
|
+
let t6;
|
|
2089
|
+
$[17] !== border2 ? (t6 = _getArrayProp(border2), $[17] = border2, $[18] = t6) : t6 = $[18];
|
|
2090
|
+
let t7;
|
|
2091
|
+
$[19] !== borderTop2 ? (t7 = _getArrayProp(borderTop2), $[19] = borderTop2, $[20] = t7) : t7 = $[20];
|
|
2092
|
+
let t8;
|
|
2093
|
+
$[21] !== borderRight2 ? (t8 = _getArrayProp(borderRight2), $[21] = borderRight2, $[22] = t8) : t8 = $[22];
|
|
2094
|
+
let t9;
|
|
2095
|
+
$[23] !== borderBottom2 ? (t9 = _getArrayProp(borderBottom2), $[23] = borderBottom2, $[24] = t9) : t9 = $[24];
|
|
2096
|
+
let t10;
|
|
2097
|
+
$[25] !== borderLeft2 ? (t10 = _getArrayProp(borderLeft2), $[25] = borderLeft2, $[26] = t10) : t10 = $[26];
|
|
2098
|
+
let t11;
|
|
2099
|
+
$[27] !== radius ? (t11 = _getArrayProp(radius), $[27] = radius, $[28] = t11) : t11 = $[28];
|
|
2100
|
+
let t12;
|
|
2101
|
+
$[29] !== shadow ? (t12 = _getArrayProp(shadow), $[29] = shadow, $[30] = t12) : t12 = $[30];
|
|
2102
|
+
const t13 = checkered ? "" : void 0, t14 = pressed ? "" : void 0, t15 = selected ? "" : void 0;
|
|
2103
|
+
let t16;
|
|
2104
|
+
$[31] !== as || $[32] !== checkered || $[33] !== focusRing || $[34] !== muted || $[35] !== ref || $[36] !== restProps || $[37] !== rootTheme.scheme || $[38] !== selected || $[39] !== t10 || $[40] !== t11 || $[41] !== t12 || $[42] !== t13 || $[43] !== t14 || $[44] !== t15 || $[45] !== t4 || $[46] !== t6 || $[47] !== t7 || $[48] !== t8 || $[49] !== t9 || $[50] !== tone ? (t16 = /* @__PURE__ */ jsxRuntime.jsx(StyledCard, { "data-as": t4, "data-scheme": t5, "data-ui": "Card", "data-tone": tone, ...restProps, $border: t6, $borderTop: t7, $borderRight: t8, $borderBottom: t9, $borderLeft: t10, $checkered: checkered, $focusRing: focusRing, $muted: muted, $radius: t11, $shadow: t12, $tone: tone, "data-checkered": t13, "data-pressed": t14, "data-selected": t15, forwardedAs: as, ref, selected }), $[31] = as, $[32] = checkered, $[33] = focusRing, $[34] = muted, $[35] = ref, $[36] = restProps, $[37] = rootTheme.scheme, $[38] = selected, $[39] = t10, $[40] = t11, $[41] = t12, $[42] = t13, $[43] = t14, $[44] = t15, $[45] = t4, $[46] = t6, $[47] = t7, $[48] = t8, $[49] = t9, $[50] = tone, $[51] = t16) : t16 = $[51];
|
|
2105
|
+
let t17;
|
|
2106
|
+
return $[52] !== scheme || $[53] !== t16 || $[54] !== tone ? (t17 = /* @__PURE__ */ jsxRuntime.jsx(ThemeColorProvider, { scheme, tone, children: t16 }), $[52] = scheme, $[53] = t16, $[54] = tone, $[55] = t17) : t17 = $[55], t17;
|
|
2107
|
+
});
|
|
2108
|
+
Card.displayName = "ForwardRef(Card)";
|
|
2109
|
+
function useClickOutsideEvent(listener, t0, boundaryElement) {
|
|
2110
|
+
const $ = reactCompilerRuntime.c(9), elementsArg = t0 === void 0 ? _temp$8 : t0;
|
|
2111
|
+
let t1;
|
|
2112
|
+
$[0] !== boundaryElement || $[1] !== elementsArg || $[2] !== listener ? (t1 = (evt) => {
|
|
2113
|
+
if (!listener)
|
|
2114
|
+
return;
|
|
2115
|
+
const target = evt.target;
|
|
2116
|
+
if (!(target instanceof Node))
|
|
2117
|
+
return;
|
|
2118
|
+
const resolvedBoundaryElement = boundaryElement?.();
|
|
2119
|
+
if (resolvedBoundaryElement && !resolvedBoundaryElement.contains(target))
|
|
2120
|
+
return;
|
|
2121
|
+
const elements = elementsArg().flat();
|
|
2122
|
+
for (const el of elements)
|
|
2123
|
+
if (el && (target === el || el.contains(target)))
|
|
2124
|
+
return;
|
|
2125
|
+
listener(evt);
|
|
2126
|
+
}, $[0] = boundaryElement, $[1] = elementsArg, $[2] = listener, $[3] = t1) : t1 = $[3];
|
|
2127
|
+
const onEvent = useEffectEvent.useEffectEvent(t1), hasListener = !!listener;
|
|
2128
|
+
let t2;
|
|
2129
|
+
$[4] !== hasListener || $[5] !== onEvent ? (t2 = () => {
|
|
2130
|
+
if (!hasListener)
|
|
2131
|
+
return;
|
|
2132
|
+
const handleEvent = (evt_0) => onEvent(evt_0);
|
|
2133
|
+
return document.addEventListener("mousedown", handleEvent), () => {
|
|
2134
|
+
document.removeEventListener("mousedown", handleEvent);
|
|
2135
|
+
};
|
|
2136
|
+
}, $[4] = hasListener, $[5] = onEvent, $[6] = t2) : t2 = $[6];
|
|
2137
|
+
let t3;
|
|
2138
|
+
$[7] !== hasListener ? (t3 = [hasListener], $[7] = hasListener, $[8] = t3) : t3 = $[8], react.useEffect(t2, t3), react.useDebugValue(listener ? "MouseDown On" : "MouseDown Off");
|
|
2139
|
+
}
|
|
2140
|
+
function _temp$8() {
|
|
2141
|
+
return EMPTY_ARRAY;
|
|
2142
|
+
}
|
|
2143
|
+
function useCustomValidity(ref, customValidity) {
|
|
2144
|
+
const $ = reactCompilerRuntime.c(4);
|
|
2145
|
+
let t0, t1;
|
|
2146
|
+
$[0] !== customValidity || $[1] !== ref ? (t0 = () => {
|
|
2147
|
+
ref.current?.setCustomValidity(customValidity || "");
|
|
2148
|
+
}, t1 = [customValidity, ref], $[0] = customValidity, $[1] = ref, $[2] = t0, $[3] = t1) : (t0 = $[2], t1 = $[3]), react.useEffect(t0, t1);
|
|
2149
|
+
}
|
|
2150
|
+
const _ResizeObserver = typeof document < "u" && typeof window < "u" && window.ResizeObserver ? window.ResizeObserver : resizeObserver.ResizeObserver, _elementSizeObserver = _createElementSizeObserver();
|
|
2151
|
+
function _createElementRectValueListener() {
|
|
2152
|
+
return {
|
|
2153
|
+
subscribe(element, subscriber) {
|
|
2154
|
+
const resizeObserver2 = new _ResizeObserver(([entry]) => {
|
|
2155
|
+
subscriber({
|
|
2156
|
+
_contentRect: entry.contentRect,
|
|
2157
|
+
border: {
|
|
2158
|
+
width: entry.borderBoxSize[0].inlineSize,
|
|
2159
|
+
height: entry.borderBoxSize[0].blockSize
|
|
2160
|
+
},
|
|
2161
|
+
content: {
|
|
2162
|
+
width: entry.contentRect.width,
|
|
2163
|
+
height: entry.contentRect.height
|
|
2164
|
+
}
|
|
2165
|
+
});
|
|
2166
|
+
});
|
|
2167
|
+
return resizeObserver2.observe(element), () => {
|
|
2168
|
+
resizeObserver2.unobserve(element), resizeObserver2.disconnect();
|
|
2169
|
+
};
|
|
2170
|
+
}
|
|
2171
|
+
};
|
|
2172
|
+
}
|
|
2173
|
+
function _createElementSizeObserver() {
|
|
2174
|
+
const disposeCache = /* @__PURE__ */ new WeakMap(), subscribersCache = /* @__PURE__ */ new WeakMap();
|
|
2175
|
+
return {
|
|
2176
|
+
subscribe(element, subscriber) {
|
|
2177
|
+
const subscribers = subscribersCache.get(element) || [];
|
|
2178
|
+
let dispose = disposeCache.get(element);
|
|
2179
|
+
return subscribersCache.has(element) || (subscribersCache.set(element, subscribers), dispose = _createElementRectValueListener().subscribe(element, (elementRect) => {
|
|
2180
|
+
for (const sub of subscribers)
|
|
2181
|
+
sub(elementRect);
|
|
2182
|
+
})), subscribers.push(subscriber), () => {
|
|
2183
|
+
const idx = subscribers.indexOf(subscriber);
|
|
2184
|
+
idx > -1 && subscribers.splice(idx, 1), subscribers.length === 0 && dispose && dispose();
|
|
2185
|
+
};
|
|
2186
|
+
}
|
|
2187
|
+
};
|
|
2188
|
+
}
|
|
2189
|
+
function useElementSize(element) {
|
|
2190
|
+
const $ = reactCompilerRuntime.c(3), [size2, setSize] = react.useState(null);
|
|
2191
|
+
let t0, t1;
|
|
2192
|
+
return $[0] !== element ? (t0 = () => {
|
|
2193
|
+
if (element)
|
|
2194
|
+
return _elementSizeObserver.subscribe(element, setSize);
|
|
2195
|
+
}, t1 = [element], $[0] = element, $[1] = t0, $[2] = t1) : (t0 = $[1], t1 = $[2]), react.useEffect(t0, t1), size2;
|
|
2196
|
+
}
|
|
2197
|
+
function useGlobalKeyDown(onKeyDown) {
|
|
2198
|
+
const $ = reactCompilerRuntime.c(5);
|
|
2199
|
+
let t0;
|
|
2200
|
+
$[0] !== onKeyDown ? (t0 = (event) => onKeyDown(event), $[0] = onKeyDown, $[1] = t0) : t0 = $[1];
|
|
2201
|
+
const handleKeyDown = useEffectEvent.useEffectEvent(t0);
|
|
2202
|
+
let t1;
|
|
2203
|
+
$[2] !== handleKeyDown ? (t1 = () => {
|
|
2204
|
+
const handler = (event_0) => handleKeyDown(event_0);
|
|
2205
|
+
return window.addEventListener("keydown", handler), () => window.removeEventListener("keydown", handler);
|
|
2206
|
+
}, $[2] = handleKeyDown, $[3] = t1) : t1 = $[3];
|
|
2207
|
+
let t2;
|
|
2208
|
+
$[4] === Symbol.for("react.memo_cache_sentinel") ? (t2 = [], $[4] = t2) : t2 = $[4], react.useEffect(t1, t2);
|
|
2209
|
+
}
|
|
2210
|
+
function useMatchMedia(mediaQueryString, getServerSnapshot2) {
|
|
2211
|
+
const $ = reactCompilerRuntime.c(4);
|
|
2212
|
+
react.useDebugValue(mediaQueryString);
|
|
2213
|
+
let t0;
|
|
2214
|
+
$[0] !== mediaQueryString ? (t0 = (onStoreChange) => {
|
|
2215
|
+
const media = window.matchMedia(mediaQueryString);
|
|
2216
|
+
return media.addEventListener("change", onStoreChange), () => media.removeEventListener("change", onStoreChange);
|
|
2217
|
+
}, $[0] = mediaQueryString, $[1] = t0) : t0 = $[1];
|
|
2218
|
+
let t1;
|
|
2219
|
+
return $[2] !== mediaQueryString ? (t1 = () => window.matchMedia(mediaQueryString).matches, $[2] = mediaQueryString, $[3] = t1) : t1 = $[3], react.useSyncExternalStore(t0, t1, getServerSnapshot2);
|
|
2220
|
+
}
|
|
2221
|
+
function _getMediaQuery(media, index) {
|
|
2222
|
+
return index === 0 ? `screen and (max-width: ${media[index] - 1}px)` : index === media.length ? `screen and (min-width: ${media[index - 1]}px)` : `screen and (min-width: ${media[index - 1]}px) and (max-width: ${media[index] - 1}px)`;
|
|
2223
|
+
}
|
|
2224
|
+
function _createMediaStore(media) {
|
|
2225
|
+
const mediaLen = media.length;
|
|
2226
|
+
let sizes;
|
|
2227
|
+
const getSizes = () => {
|
|
2228
|
+
if (!sizes) {
|
|
2229
|
+
sizes = [];
|
|
2230
|
+
for (let index = mediaLen; index > -1; index -= 1) {
|
|
2231
|
+
const mediaQuery = _getMediaQuery(media, index);
|
|
2232
|
+
sizes.push({
|
|
2233
|
+
index,
|
|
2234
|
+
mq: window.matchMedia(mediaQuery)
|
|
2235
|
+
});
|
|
2236
|
+
}
|
|
2237
|
+
}
|
|
2238
|
+
return sizes;
|
|
2239
|
+
};
|
|
2240
|
+
return {
|
|
2241
|
+
getSnapshot: () => {
|
|
2242
|
+
for (const {
|
|
2243
|
+
index,
|
|
2244
|
+
mq
|
|
2245
|
+
} of getSizes())
|
|
2246
|
+
if (mq.matches) return index;
|
|
2247
|
+
return 0;
|
|
2248
|
+
},
|
|
2249
|
+
subscribe: (onStoreChange) => {
|
|
2250
|
+
const disposeFns = [];
|
|
2251
|
+
for (const {
|
|
2252
|
+
mq
|
|
2253
|
+
} of getSizes()) {
|
|
2254
|
+
const handleChange = () => {
|
|
2255
|
+
mq.matches && onStoreChange();
|
|
2256
|
+
};
|
|
2257
|
+
mq.addEventListener("change", handleChange), disposeFns.push(() => mq.removeEventListener("change", handleChange));
|
|
2258
|
+
}
|
|
2259
|
+
return () => {
|
|
2260
|
+
for (const disposeFn of disposeFns)
|
|
2261
|
+
disposeFn();
|
|
2262
|
+
};
|
|
2263
|
+
}
|
|
2264
|
+
};
|
|
2265
|
+
}
|
|
2266
|
+
function getServerSnapshot() {
|
|
2267
|
+
return 0;
|
|
2268
|
+
}
|
|
2269
|
+
function useMediaIndex() {
|
|
2270
|
+
const $ = reactCompilerRuntime.c(2), {
|
|
2271
|
+
media
|
|
2272
|
+
} = useTheme_v2();
|
|
2273
|
+
let t0;
|
|
2274
|
+
$[0] !== media ? (t0 = _createMediaStore(media), $[0] = media, $[1] = t0) : t0 = $[1];
|
|
2275
|
+
const store = t0;
|
|
2276
|
+
return react.useSyncExternalStore(store.subscribe, store.getSnapshot, getServerSnapshot);
|
|
2277
|
+
}
|
|
2278
|
+
function usePrefersDark(t0) {
|
|
2279
|
+
return useMatchMedia("(prefers-color-scheme: dark)", t0 === void 0 ? _temp$7 : t0);
|
|
2280
|
+
}
|
|
2281
|
+
function _temp$7() {
|
|
2282
|
+
return !1;
|
|
2283
|
+
}
|
|
2284
|
+
function usePrefersReducedMotion(t0) {
|
|
2285
|
+
return useMatchMedia("(prefers-reduced-motion: reduce)", t0 === void 0 ? _temp$6 : t0);
|
|
2286
|
+
}
|
|
2287
|
+
function _temp$6() {
|
|
2288
|
+
return !1;
|
|
2147
2289
|
}
|
|
2148
|
-
const StyledCard = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
2149
|
-
displayName: "StyledCard",
|
|
2150
|
-
componentId: "sc-osnro2-0"
|
|
2151
|
-
})(responsiveBorderStyle, responsiveRadiusStyle, responsiveShadowStyle, cardStyle), Card = react.forwardRef(function(props, ref) {
|
|
2152
|
-
const $ = reactCompilerRuntime.c(42);
|
|
2153
|
-
let asProp, border2, borderBottom2, borderLeft2, borderRight2, borderTop2, muted, pressed, restProps, scheme, selected, shadow, t0, t1, t2, t3;
|
|
2154
|
-
$[0] !== props ? ({
|
|
2155
|
-
__unstable_checkered: t0,
|
|
2156
|
-
__unstable_focusRing: t1,
|
|
2157
|
-
as: asProp,
|
|
2158
|
-
border: border2,
|
|
2159
|
-
borderTop: borderTop2,
|
|
2160
|
-
borderRight: borderRight2,
|
|
2161
|
-
borderBottom: borderBottom2,
|
|
2162
|
-
borderLeft: borderLeft2,
|
|
2163
|
-
muted,
|
|
2164
|
-
pressed,
|
|
2165
|
-
radius: t2,
|
|
2166
|
-
scheme,
|
|
2167
|
-
selected,
|
|
2168
|
-
shadow,
|
|
2169
|
-
tone: t3,
|
|
2170
|
-
...restProps
|
|
2171
|
-
} = props, $[0] = props, $[1] = asProp, $[2] = border2, $[3] = borderBottom2, $[4] = borderLeft2, $[5] = borderRight2, $[6] = borderTop2, $[7] = muted, $[8] = pressed, $[9] = restProps, $[10] = scheme, $[11] = selected, $[12] = shadow, $[13] = t0, $[14] = t1, $[15] = t2, $[16] = t3) : (asProp = $[1], border2 = $[2], borderBottom2 = $[3], borderLeft2 = $[4], borderRight2 = $[5], borderTop2 = $[6], muted = $[7], pressed = $[8], restProps = $[9], scheme = $[10], selected = $[11], shadow = $[12], t0 = $[13], t1 = $[14], t2 = $[15], t3 = $[16]);
|
|
2172
|
-
const checkered = t0 === void 0 ? !1 : t0, focusRing = t1 === void 0 ? !1 : t1, radius = t2 === void 0 ? 0 : t2, toneProp = t3 === void 0 ? "default" : t3, as = ReactIs.isValidElementType(asProp) ? asProp : "div", rootTheme = useRootTheme(), tone = toneProp === "inherit" ? rootTheme.tone : toneProp, t4 = typeof as == "string" ? as : void 0, t5 = rootTheme.scheme, t6 = useArrayProp(border2), t7 = useArrayProp(borderTop2), t8 = useArrayProp(borderRight2), t9 = useArrayProp(borderBottom2), t10 = useArrayProp(borderLeft2), t11 = useArrayProp(radius), t12 = useArrayProp(shadow), t13 = checkered ? "" : void 0, t14 = pressed ? "" : void 0, t15 = selected ? "" : void 0;
|
|
2173
|
-
let t16;
|
|
2174
|
-
$[17] !== as || $[18] !== checkered || $[19] !== focusRing || $[20] !== muted || $[21] !== ref || $[22] !== restProps || $[23] !== rootTheme.scheme || $[24] !== selected || $[25] !== t10 || $[26] !== t11 || $[27] !== t12 || $[28] !== t13 || $[29] !== t14 || $[30] !== t15 || $[31] !== t4 || $[32] !== t6 || $[33] !== t7 || $[34] !== t8 || $[35] !== t9 || $[36] !== tone ? (t16 = /* @__PURE__ */ jsxRuntime.jsx(StyledCard, { "data-as": t4, "data-scheme": t5, "data-ui": "Card", "data-tone": tone, ...restProps, $border: t6, $borderTop: t7, $borderRight: t8, $borderBottom: t9, $borderLeft: t10, $checkered: checkered, $focusRing: focusRing, $muted: muted, $radius: t11, $shadow: t12, $tone: tone, "data-checkered": t13, "data-pressed": t14, "data-selected": t15, forwardedAs: as, ref, selected }), $[17] = as, $[18] = checkered, $[19] = focusRing, $[20] = muted, $[21] = ref, $[22] = restProps, $[23] = rootTheme.scheme, $[24] = selected, $[25] = t10, $[26] = t11, $[27] = t12, $[28] = t13, $[29] = t14, $[30] = t15, $[31] = t4, $[32] = t6, $[33] = t7, $[34] = t8, $[35] = t9, $[36] = tone, $[37] = t16) : t16 = $[37];
|
|
2175
|
-
let t17;
|
|
2176
|
-
return $[38] !== scheme || $[39] !== t16 || $[40] !== tone ? (t17 = /* @__PURE__ */ jsxRuntime.jsx(ThemeColorProvider, { scheme, tone, children: t16 }), $[38] = scheme, $[39] = t16, $[40] = tone, $[41] = t17) : t17 = $[41], t17;
|
|
2177
|
-
});
|
|
2178
|
-
Card.displayName = "ForwardRef(Card)";
|
|
2179
2290
|
function checkboxBaseStyles() {
|
|
2180
2291
|
return styledComponents.css`
|
|
2181
2292
|
position: relative;
|
|
@@ -2509,7 +2620,7 @@ const LazyRefractor = react.lazy(() => Promise.resolve().then(function() {
|
|
|
2509
2620
|
displayName: "StyledCode",
|
|
2510
2621
|
componentId: "sc-4dymyn-0"
|
|
2511
2622
|
})(codeBaseStyle, responsiveCodeFontStyle), Code = react.forwardRef(function(props, ref) {
|
|
2512
|
-
const $ = reactCompilerRuntime.c(
|
|
2623
|
+
const $ = reactCompilerRuntime.c(22);
|
|
2513
2624
|
let children, language, restProps, t0, weight;
|
|
2514
2625
|
$[0] !== props ? ({
|
|
2515
2626
|
children,
|
|
@@ -2518,15 +2629,17 @@ const LazyRefractor = react.lazy(() => Promise.resolve().then(function() {
|
|
|
2518
2629
|
weight,
|
|
2519
2630
|
...restProps
|
|
2520
2631
|
} = props, $[0] = props, $[1] = children, $[2] = language, $[3] = restProps, $[4] = t0, $[5] = weight) : (children = $[1], language = $[2], restProps = $[3], t0 = $[4], weight = $[5]);
|
|
2521
|
-
const
|
|
2632
|
+
const size2 = t0 === void 0 ? 2 : t0;
|
|
2633
|
+
let t1;
|
|
2634
|
+
$[6] !== size2 ? (t1 = _getArrayProp(size2), $[6] = size2, $[7] = t1) : t1 = $[7];
|
|
2522
2635
|
let t2;
|
|
2523
|
-
$[
|
|
2636
|
+
$[8] !== children ? (t2 = /* @__PURE__ */ jsxRuntime.jsx("code", { children }), $[8] = children, $[9] = t2) : t2 = $[9];
|
|
2524
2637
|
let t3;
|
|
2525
|
-
$[
|
|
2638
|
+
$[10] !== children || $[11] !== language ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(LazyRefractor, { language, value: children }), $[10] = children, $[11] = language, $[12] = t3) : t3 = $[12];
|
|
2526
2639
|
let t4;
|
|
2527
|
-
$[
|
|
2640
|
+
$[13] !== t2 || $[14] !== t3 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(react.Suspense, { fallback: t2, children: t3 }), $[13] = t2, $[14] = t3, $[15] = t4) : t4 = $[15];
|
|
2528
2641
|
let t5;
|
|
2529
|
-
return $[
|
|
2642
|
+
return $[16] !== ref || $[17] !== restProps || $[18] !== t1 || $[19] !== t4 || $[20] !== weight ? (t5 = /* @__PURE__ */ jsxRuntime.jsx(StyledCode, { "data-ui": "Code", ...restProps, $size: t1, $weight: weight, ref, children: t4 }), $[16] = ref, $[17] = restProps, $[18] = t1, $[19] = t4, $[20] = weight, $[21] = t5) : t5 = $[21], t5;
|
|
2530
2643
|
});
|
|
2531
2644
|
Code.displayName = "ForwardRef(Code)";
|
|
2532
2645
|
const BASE_STYLE$1 = {
|
|
@@ -2549,23 +2662,25 @@ const StyledContainer = /* @__PURE__ */ styledComponents.styled(Box).withConfig(
|
|
|
2549
2662
|
displayName: "StyledContainer",
|
|
2550
2663
|
componentId: "sc-wyroop-0"
|
|
2551
2664
|
})(containerBaseStyle, responsiveContainerWidthStyle), Container = react.forwardRef(function(props, ref) {
|
|
2552
|
-
const $ = reactCompilerRuntime.c(
|
|
2665
|
+
const $ = reactCompilerRuntime.c(11);
|
|
2553
2666
|
let as, restProps, t0;
|
|
2554
2667
|
$[0] !== props ? ({
|
|
2555
2668
|
as,
|
|
2556
2669
|
width: t0,
|
|
2557
2670
|
...restProps
|
|
2558
2671
|
} = props, $[0] = props, $[1] = as, $[2] = restProps, $[3] = t0) : (as = $[1], restProps = $[2], t0 = $[3]);
|
|
2559
|
-
const
|
|
2672
|
+
const width = t0 === void 0 ? 2 : t0;
|
|
2673
|
+
let t1;
|
|
2674
|
+
$[4] !== width ? (t1 = _getArrayProp(width), $[4] = width, $[5] = t1) : t1 = $[5];
|
|
2560
2675
|
let t2;
|
|
2561
|
-
return $[
|
|
2676
|
+
return $[6] !== as || $[7] !== ref || $[8] !== restProps || $[9] !== t1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(StyledContainer, { "data-ui": "Container", ...restProps, $width: t1, forwardedAs: as, ref }), $[6] = as, $[7] = ref, $[8] = restProps, $[9] = t1, $[10] = t2) : t2 = $[10], t2;
|
|
2562
2677
|
});
|
|
2563
2678
|
Container.displayName = "ForwardRef(Container)";
|
|
2564
2679
|
const StyledGrid = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
2565
2680
|
displayName: "StyledGrid",
|
|
2566
2681
|
componentId: "sc-v8t8oz-0"
|
|
2567
2682
|
})(responsiveGridStyle), Grid = react.forwardRef(function(props, ref) {
|
|
2568
|
-
const $ = reactCompilerRuntime.c(
|
|
2683
|
+
const $ = reactCompilerRuntime.c(42);
|
|
2569
2684
|
let as, autoCols, autoFlow, autoRows, children, columns, gap, gapX, gapY, restProps, rows;
|
|
2570
2685
|
$[0] !== props ? ({
|
|
2571
2686
|
as,
|
|
@@ -2580,9 +2695,25 @@ const StyledGrid = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2580
2695
|
children,
|
|
2581
2696
|
...restProps
|
|
2582
2697
|
} = props, $[0] = props, $[1] = as, $[2] = autoCols, $[3] = autoFlow, $[4] = autoRows, $[5] = children, $[6] = columns, $[7] = gap, $[8] = gapX, $[9] = gapY, $[10] = restProps, $[11] = rows) : (as = $[1], autoCols = $[2], autoFlow = $[3], autoRows = $[4], children = $[5], columns = $[6], gap = $[7], gapX = $[8], gapY = $[9], restProps = $[10], rows = $[11]);
|
|
2583
|
-
const t0 = typeof as == "string" ? as : void 0
|
|
2698
|
+
const t0 = typeof as == "string" ? as : void 0;
|
|
2699
|
+
let t1;
|
|
2700
|
+
$[12] !== autoRows ? (t1 = _getArrayProp(autoRows), $[12] = autoRows, $[13] = t1) : t1 = $[13];
|
|
2701
|
+
let t2;
|
|
2702
|
+
$[14] !== autoCols ? (t2 = _getArrayProp(autoCols), $[14] = autoCols, $[15] = t2) : t2 = $[15];
|
|
2703
|
+
let t3;
|
|
2704
|
+
$[16] !== autoFlow ? (t3 = _getArrayProp(autoFlow), $[16] = autoFlow, $[17] = t3) : t3 = $[17];
|
|
2705
|
+
let t4;
|
|
2706
|
+
$[18] !== columns ? (t4 = _getArrayProp(columns), $[18] = columns, $[19] = t4) : t4 = $[19];
|
|
2707
|
+
let t5;
|
|
2708
|
+
$[20] !== gap ? (t5 = _getArrayProp(gap), $[20] = gap, $[21] = t5) : t5 = $[21];
|
|
2709
|
+
let t6;
|
|
2710
|
+
$[22] !== gapX ? (t6 = _getArrayProp(gapX), $[22] = gapX, $[23] = t6) : t6 = $[23];
|
|
2711
|
+
let t7;
|
|
2712
|
+
$[24] !== gapY ? (t7 = _getArrayProp(gapY), $[24] = gapY, $[25] = t7) : t7 = $[25];
|
|
2713
|
+
let t8;
|
|
2714
|
+
$[26] !== rows ? (t8 = _getArrayProp(rows), $[26] = rows, $[27] = t8) : t8 = $[27];
|
|
2584
2715
|
let t9;
|
|
2585
|
-
return $[
|
|
2716
|
+
return $[28] !== as || $[29] !== children || $[30] !== ref || $[31] !== restProps || $[32] !== t0 || $[33] !== t1 || $[34] !== t2 || $[35] !== t3 || $[36] !== t4 || $[37] !== t5 || $[38] !== t6 || $[39] !== t7 || $[40] !== t8 ? (t9 = /* @__PURE__ */ jsxRuntime.jsx(StyledGrid, { "data-as": t0, "data-ui": "Grid", ...restProps, $autoRows: t1, $autoCols: t2, $autoFlow: t3, $columns: t4, $gap: t5, $gapX: t6, $gapY: t7, $rows: t8, forwardedAs: as, ref, children }), $[28] = as, $[29] = children, $[30] = ref, $[31] = restProps, $[32] = t0, $[33] = t1, $[34] = t2, $[35] = t3, $[36] = t4, $[37] = t5, $[38] = t6, $[39] = t7, $[40] = t8, $[41] = t9) : t9 = $[41], t9;
|
|
2586
2717
|
});
|
|
2587
2718
|
Grid.displayName = "ForwardRef(Grid)";
|
|
2588
2719
|
function headingBaseStyle(props) {
|
|
@@ -2648,7 +2779,7 @@ const StyledHeading = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
2648
2779
|
displayName: "StyledHeading",
|
|
2649
2780
|
componentId: "sc-137lwim-0"
|
|
2650
2781
|
})(headingBaseStyle, responsiveTextAlignStyle, responsiveHeadingFont), Heading = react.forwardRef(function(props, ref) {
|
|
2651
|
-
const $ = reactCompilerRuntime.c(
|
|
2782
|
+
const $ = reactCompilerRuntime.c(26);
|
|
2652
2783
|
let align, childrenProp, restProps, t0, t1, t2, textOverflow, weight;
|
|
2653
2784
|
$[0] !== props ? ({
|
|
2654
2785
|
accent: t0,
|
|
@@ -2666,11 +2797,14 @@ const StyledHeading = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
2666
2797
|
let t32;
|
|
2667
2798
|
$[9] !== children ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }), $[9] = children, $[10] = t32) : t32 = $[10], children = t32;
|
|
2668
2799
|
}
|
|
2669
|
-
|
|
2800
|
+
let t3;
|
|
2801
|
+
$[11] !== align ? (t3 = _getArrayProp(align), $[11] = align, $[12] = t3) : t3 = $[12];
|
|
2802
|
+
let t4;
|
|
2803
|
+
$[13] !== size2 ? (t4 = _getArrayProp(size2), $[13] = size2, $[14] = t4) : t4 = $[14];
|
|
2670
2804
|
let t5;
|
|
2671
|
-
$[
|
|
2805
|
+
$[15] !== children ? (t5 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[15] = children, $[16] = t5) : t5 = $[16];
|
|
2672
2806
|
let t6;
|
|
2673
|
-
return $[
|
|
2807
|
+
return $[17] !== accent || $[18] !== muted || $[19] !== ref || $[20] !== restProps || $[21] !== t3 || $[22] !== t4 || $[23] !== t5 || $[24] !== weight ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledHeading, { "data-ui": "Heading", ...restProps, $accent: accent, $align: t3, $muted: muted, $size: t4, $weight: weight, ref, children: t5 }), $[17] = accent, $[18] = muted, $[19] = ref, $[20] = restProps, $[21] = t3, $[22] = t4, $[23] = t5, $[24] = weight, $[25] = t6) : t6 = $[25], t6;
|
|
2674
2808
|
});
|
|
2675
2809
|
Heading.displayName = "ForwardRef(Heading)";
|
|
2676
2810
|
function inlineBaseStyle() {
|
|
@@ -2704,7 +2838,7 @@ const StyledInline = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2704
2838
|
displayName: "StyledInline",
|
|
2705
2839
|
componentId: "sc-1pkiy6j-0"
|
|
2706
2840
|
})(inlineBaseStyle, inlineSpaceStyle), Inline = react.forwardRef(function(props, ref) {
|
|
2707
|
-
const $ = reactCompilerRuntime.c(
|
|
2841
|
+
const $ = reactCompilerRuntime.c(15);
|
|
2708
2842
|
let as, childrenProp, restProps, space;
|
|
2709
2843
|
$[0] !== props ? ({
|
|
2710
2844
|
as,
|
|
@@ -2714,9 +2848,12 @@ const StyledInline = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2714
2848
|
} = props, $[0] = props, $[1] = as, $[2] = childrenProp, $[3] = restProps, $[4] = space) : (as = $[1], childrenProp = $[2], restProps = $[3], space = $[4]);
|
|
2715
2849
|
let t0;
|
|
2716
2850
|
$[5] !== childrenProp ? (t0 = react.Children.map(childrenProp, _temp$5), $[5] = childrenProp, $[6] = t0) : t0 = $[6];
|
|
2717
|
-
const children = t0
|
|
2851
|
+
const children = t0;
|
|
2852
|
+
let t1;
|
|
2853
|
+
$[7] !== space ? (t1 = _getArrayProp(space), $[7] = space, $[8] = t1) : t1 = $[8];
|
|
2854
|
+
const t2 = ref;
|
|
2718
2855
|
let t3;
|
|
2719
|
-
return $[
|
|
2856
|
+
return $[9] !== as || $[10] !== children || $[11] !== restProps || $[12] !== t1 || $[13] !== t2 ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(StyledInline, { "data-ui": "Inline", ...restProps, $space: t1, forwardedAs: as, ref: t2, children }), $[9] = as, $[10] = children, $[11] = restProps, $[12] = t1, $[13] = t2, $[14] = t3) : t3 = $[14], t3;
|
|
2720
2857
|
});
|
|
2721
2858
|
Inline.displayName = "ForwardRef(Inline)";
|
|
2722
2859
|
function _temp$5(child) {
|
|
@@ -2743,7 +2880,7 @@ const StyledKBD = /* @__PURE__ */ styledComponents.styled.kbd.withConfig({
|
|
|
2743
2880
|
displayName: "StyledKBD",
|
|
2744
2881
|
componentId: "sc-1w7yd8w-0"
|
|
2745
2882
|
})(responsiveRadiusStyle, kbdStyle), KBD = react.forwardRef(function(props, ref) {
|
|
2746
|
-
const $ = reactCompilerRuntime.c(
|
|
2883
|
+
const $ = reactCompilerRuntime.c(19);
|
|
2747
2884
|
let children, restProps, t0, t1, t2;
|
|
2748
2885
|
$[0] !== props ? ({
|
|
2749
2886
|
children,
|
|
@@ -2752,13 +2889,15 @@ const StyledKBD = /* @__PURE__ */ styledComponents.styled.kbd.withConfig({
|
|
|
2752
2889
|
radius: t2,
|
|
2753
2890
|
...restProps
|
|
2754
2891
|
} = props, $[0] = props, $[1] = children, $[2] = restProps, $[3] = t0, $[4] = t1, $[5] = t2) : (children = $[1], restProps = $[2], t0 = $[3], t1 = $[4], t2 = $[5]);
|
|
2755
|
-
const fontSize2 = t0 === void 0 ? 0 : t0, padding = t1 === void 0 ? 1 : t1,
|
|
2892
|
+
const fontSize2 = t0 === void 0 ? 0 : t0, padding = t1 === void 0 ? 1 : t1, radius = t2 === void 0 ? 2 : t2;
|
|
2893
|
+
let t3;
|
|
2894
|
+
$[6] !== radius ? (t3 = _getArrayProp(radius), $[6] = radius, $[7] = t3) : t3 = $[7];
|
|
2756
2895
|
let t4;
|
|
2757
|
-
$[
|
|
2896
|
+
$[8] !== children || $[9] !== fontSize2 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(Text, { as: "span", size: fontSize2, weight: "semibold", children }), $[8] = children, $[9] = fontSize2, $[10] = t4) : t4 = $[10];
|
|
2758
2897
|
let t5;
|
|
2759
|
-
$[
|
|
2898
|
+
$[11] !== padding || $[12] !== t4 ? (t5 = /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", padding, children: t4 }), $[11] = padding, $[12] = t4, $[13] = t5) : t5 = $[13];
|
|
2760
2899
|
let t6;
|
|
2761
|
-
return $[
|
|
2900
|
+
return $[14] !== ref || $[15] !== restProps || $[16] !== t3 || $[17] !== t5 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledKBD, { "data-ui": "KBD", ...restProps, $radius: t3, ref, children: t5 }), $[14] = ref, $[15] = restProps, $[16] = t3, $[17] = t5, $[18] = t6) : t6 = $[18], t6;
|
|
2762
2901
|
});
|
|
2763
2902
|
KBD.displayName = "ForwardRef(KBD)";
|
|
2764
2903
|
const origin = {
|
|
@@ -3021,18 +3160,21 @@ function getLayerContext(contextValue) {
|
|
|
3021
3160
|
}
|
|
3022
3161
|
const LayerContext = createGlobalScopedContext("@sanity/ui/context/layer", null);
|
|
3023
3162
|
function LayerProvider(props) {
|
|
3024
|
-
const $ = reactCompilerRuntime.c(
|
|
3163
|
+
const $ = reactCompilerRuntime.c(21), {
|
|
3025
3164
|
children,
|
|
3026
3165
|
zOffset: t0
|
|
3027
3166
|
} = props, zOffsetProp = t0 === void 0 ? 0 : t0, parentContextValue = react.useContext(LayerContext);
|
|
3028
3167
|
let t1;
|
|
3029
3168
|
$[0] !== parentContextValue ? (t1 = parentContextValue && getLayerContext(parentContextValue), $[0] = parentContextValue, $[1] = t1) : t1 = $[1];
|
|
3030
|
-
const parent = t1, parentRegisterChild = parent?.registerChild, level = (parent?.level ?? 0) + 1
|
|
3169
|
+
const parent = t1, parentRegisterChild = parent?.registerChild, level = (parent?.level ?? 0) + 1;
|
|
3031
3170
|
let t2;
|
|
3032
|
-
$[2]
|
|
3033
|
-
const
|
|
3171
|
+
$[2] !== zOffsetProp ? (t2 = _getArrayProp(zOffsetProp), $[2] = zOffsetProp, $[3] = t2) : t2 = $[3];
|
|
3172
|
+
const zOffset = t2, maxMediaIndex = zOffset.length - 1, mediaIndex = Math.min(useMediaIndex(), maxMediaIndex), zIndex = parent ? parent.zIndex + zOffset[mediaIndex] : zOffset[mediaIndex];
|
|
3034
3173
|
let t3;
|
|
3035
|
-
$[
|
|
3174
|
+
$[4] === Symbol.for("react.memo_cache_sentinel") ? (t3 = {}, $[4] = t3) : t3 = $[4];
|
|
3175
|
+
const [, setChildLayers] = react.useState(t3), [size2, setSize] = react.useState(0), isTopLayer = size2 === 0;
|
|
3176
|
+
let t4;
|
|
3177
|
+
$[5] !== parentRegisterChild || $[6] !== setChildLayers ? (t4 = (childLevel) => {
|
|
3036
3178
|
const parentDispose = parentRegisterChild?.(childLevel);
|
|
3037
3179
|
return childLevel !== void 0 ? setChildLayers((state) => {
|
|
3038
3180
|
const prevLen = state[childLevel] ?? 0, nextState = {
|
|
@@ -3048,22 +3190,22 @@ function LayerProvider(props) {
|
|
|
3048
3190
|
return nextState_0[childLevel] === 1 ? (delete nextState_0[childLevel], setSize(Object.keys(nextState_0).length)) : nextState_0[childLevel] = nextState_0[childLevel] - 1, nextState_0;
|
|
3049
3191
|
}) : setSize(_temp2$2), parentDispose?.();
|
|
3050
3192
|
};
|
|
3051
|
-
}, $[
|
|
3052
|
-
const registerChild =
|
|
3053
|
-
let
|
|
3054
|
-
$[
|
|
3055
|
-
let
|
|
3056
|
-
$[
|
|
3193
|
+
}, $[5] = parentRegisterChild, $[6] = setChildLayers, $[7] = t4) : t4 = $[7];
|
|
3194
|
+
const registerChild = t4;
|
|
3195
|
+
let t5, t6;
|
|
3196
|
+
$[8] !== level || $[9] !== parentRegisterChild ? (t5 = () => parentRegisterChild?.(level), t6 = [level, parentRegisterChild], $[8] = level, $[9] = parentRegisterChild, $[10] = t5, $[11] = t6) : (t5 = $[10], t6 = $[11]), react.useEffect(t5, t6);
|
|
3197
|
+
let t7;
|
|
3198
|
+
$[12] !== isTopLayer || $[13] !== level || $[14] !== registerChild || $[15] !== size2 || $[16] !== zIndex ? (t7 = {
|
|
3057
3199
|
version: 0,
|
|
3058
3200
|
isTopLayer,
|
|
3059
3201
|
level,
|
|
3060
3202
|
registerChild,
|
|
3061
3203
|
size: size2,
|
|
3062
3204
|
zIndex
|
|
3063
|
-
}, $[
|
|
3064
|
-
const value =
|
|
3065
|
-
let
|
|
3066
|
-
return $[
|
|
3205
|
+
}, $[12] = isTopLayer, $[13] = level, $[14] = registerChild, $[15] = size2, $[16] = zIndex, $[17] = t7) : t7 = $[17];
|
|
3206
|
+
const value = t7;
|
|
3207
|
+
let t8;
|
|
3208
|
+
return $[18] !== children || $[19] !== value ? (t8 = /* @__PURE__ */ jsxRuntime.jsx(LayerContext.Provider, { value, children }), $[18] = children, $[19] = value, $[20] = t8) : t8 = $[20], t8;
|
|
3067
3209
|
}
|
|
3068
3210
|
function _temp2$2(v_0) {
|
|
3069
3211
|
return v_0 - 1;
|
|
@@ -3511,7 +3653,7 @@ const ViewportOverlay = () => {
|
|
|
3511
3653
|
zIndex
|
|
3512
3654
|
} }), $[0] = zIndex, $[1] = t0) : t0 = $[1], t0;
|
|
3513
3655
|
}, Popover = react.forwardRef(function(props, forwardedRef) {
|
|
3514
|
-
const $ = reactCompilerRuntime.c(
|
|
3656
|
+
const $ = reactCompilerRuntime.c(126), {
|
|
3515
3657
|
container,
|
|
3516
3658
|
layer
|
|
3517
3659
|
} = useTheme_v2(), boundaryElementContext = useBoundaryElement();
|
|
@@ -3545,50 +3687,59 @@ const ViewportOverlay = () => {
|
|
|
3545
3687
|
shadow: t352,
|
|
3546
3688
|
tone: t362,
|
|
3547
3689
|
width: t372,
|
|
3548
|
-
zOffset:
|
|
3549
|
-
updateRef:
|
|
3550
|
-
...
|
|
3690
|
+
zOffset: t382,
|
|
3691
|
+
updateRef: t392,
|
|
3692
|
+
...t402
|
|
3551
3693
|
} = props;
|
|
3552
|
-
t0 = t122, t1 = t132, t2 = t142, _boundaryElement = t152, childProp = t162, t3 = t172, content = t182, disabled = t192, _fallbackPlacements = t202, matchReferenceWidth = t212, _floatingBoundary = t222, modal = t232, open = t242, t4 = t252, paddingProp = t262, t5 = t272, t6 = t282, portal = t292, t7 = t302, t8 = t312, _referenceBoundary = t322, referenceElement = t332, scheme = t342, t9 = t352, t10 = t362, t11 = t372, _zOffsetProp =
|
|
3694
|
+
t0 = t122, t1 = t132, t2 = t142, _boundaryElement = t152, childProp = t162, t3 = t172, content = t182, disabled = t192, _fallbackPlacements = t202, matchReferenceWidth = t212, _floatingBoundary = t222, modal = t232, open = t242, t4 = t252, paddingProp = t262, t5 = t272, t6 = t282, portal = t292, t7 = t302, t8 = t312, _referenceBoundary = t322, referenceElement = t332, scheme = t342, t9 = t352, t10 = t362, t11 = t372, _zOffsetProp = t382, updateRef = t392, restProps = t402, $[0] = props, $[1] = _boundaryElement, $[2] = _fallbackPlacements, $[3] = _floatingBoundary, $[4] = _referenceBoundary, $[5] = _zOffsetProp, $[6] = childProp, $[7] = content, $[8] = disabled, $[9] = matchReferenceWidth, $[10] = modal, $[11] = open, $[12] = paddingProp, $[13] = portal, $[14] = referenceElement, $[15] = restProps, $[16] = scheme, $[17] = t0, $[18] = t1, $[19] = t10, $[20] = t11, $[21] = t2, $[22] = t3, $[23] = t4, $[24] = t5, $[25] = t6, $[26] = t7, $[27] = t8, $[28] = t9, $[29] = updateRef;
|
|
3553
3695
|
} else
|
|
3554
3696
|
_boundaryElement = $[1], _fallbackPlacements = $[2], _floatingBoundary = $[3], _referenceBoundary = $[4], _zOffsetProp = $[5], childProp = $[6], content = $[7], disabled = $[8], matchReferenceWidth = $[9], modal = $[10], open = $[11], paddingProp = $[12], portal = $[13], referenceElement = $[14], restProps = $[15], scheme = $[16], t0 = $[17], t1 = $[18], t10 = $[19], t11 = $[20], t2 = $[21], t3 = $[22], t4 = $[23], t5 = $[24], t6 = $[25], t7 = $[26], t8 = $[27], t9 = $[28], updateRef = $[29];
|
|
3555
|
-
const margins = t0 === void 0 ? DEFAULT_POPOVER_MARGINS : t0, _animate = t1 === void 0 ? !1 : t1, arrowProp = t2 === void 0 ? !1 : t2, constrainSize = t3 === void 0 ? !1 : t3, overflow = t4 === void 0 ? "hidden" : t4, placementProp = t5 === void 0 ? "bottom" : t5, placementStrategy = t6 === void 0 ? "flip" : t6, preventOverflow = t7 === void 0 ? !0 : t7, radiusProp = t8 === void 0 ? 3 : t8, shadowProp = t9 === void 0 ? 3 : t9, tone = t10 === void 0 ? "inherit" : t10, widthProp = t11 === void 0 ? "auto" : t11, boundaryElement = _boundaryElement ?? boundaryElementContext?.element, fallbackPlacements = _fallbackPlacements ?? DEFAULT_FALLBACK_PLACEMENTS$1[props.placement ?? "bottom"], floatingBoundary = _floatingBoundary ?? props.boundaryElement ?? boundaryElementContext.element, referenceBoundary = _referenceBoundary ?? props.boundaryElement ?? boundaryElementContext.element, zOffsetProp = _zOffsetProp ?? layer.popover.zOffset, animate = usePrefersReducedMotion() ? !1 : _animate, boundarySize = useElementSize(boundaryElement)?.border
|
|
3697
|
+
const margins = t0 === void 0 ? DEFAULT_POPOVER_MARGINS : t0, _animate = t1 === void 0 ? !1 : t1, arrowProp = t2 === void 0 ? !1 : t2, constrainSize = t3 === void 0 ? !1 : t3, overflow = t4 === void 0 ? "hidden" : t4, placementProp = t5 === void 0 ? "bottom" : t5, placementStrategy = t6 === void 0 ? "flip" : t6, preventOverflow = t7 === void 0 ? !0 : t7, radiusProp = t8 === void 0 ? 3 : t8, shadowProp = t9 === void 0 ? 3 : t9, tone = t10 === void 0 ? "inherit" : t10, widthProp = t11 === void 0 ? "auto" : t11, boundaryElement = _boundaryElement ?? boundaryElementContext?.element, fallbackPlacements = _fallbackPlacements ?? DEFAULT_FALLBACK_PLACEMENTS$1[props.placement ?? "bottom"], floatingBoundary = _floatingBoundary ?? props.boundaryElement ?? boundaryElementContext.element, referenceBoundary = _referenceBoundary ?? props.boundaryElement ?? boundaryElementContext.element, zOffsetProp = _zOffsetProp ?? layer.popover.zOffset, animate = usePrefersReducedMotion() ? !1 : _animate, boundarySize = useElementSize(boundaryElement)?.border;
|
|
3556
3698
|
let t12;
|
|
3557
|
-
$[30]
|
|
3558
|
-
const
|
|
3699
|
+
$[30] !== paddingProp ? (t12 = _getArrayProp(paddingProp), $[30] = paddingProp, $[31] = t12) : t12 = $[31];
|
|
3700
|
+
const padding = t12;
|
|
3559
3701
|
let t13;
|
|
3560
|
-
$[
|
|
3702
|
+
$[32] !== radiusProp ? (t13 = _getArrayProp(radiusProp), $[32] = radiusProp, $[33] = t13) : t13 = $[33];
|
|
3703
|
+
const radius = t13;
|
|
3704
|
+
let t14;
|
|
3705
|
+
$[34] !== shadowProp ? (t14 = _getArrayProp(shadowProp), $[34] = shadowProp, $[35] = t14) : t14 = $[35];
|
|
3706
|
+
const shadow = t14, widthArrayProp = _getArrayProp(widthProp);
|
|
3707
|
+
let t15;
|
|
3708
|
+
$[36] !== zOffsetProp ? (t15 = _getArrayProp(zOffsetProp), $[36] = zOffsetProp, $[37] = t15) : t15 = $[37];
|
|
3709
|
+
const zOffset = t15, ref = react.useRef(null), arrowRef = react.useRef(null);
|
|
3710
|
+
let t16;
|
|
3711
|
+
$[38] === Symbol.for("react.memo_cache_sentinel") ? (t16 = () => ref.current, $[38] = t16) : t16 = $[38], react.useImperativeHandle(forwardedRef, t16);
|
|
3712
|
+
const mediaIndex = useMediaIndex(), boundaryWidth = constrainSize || preventOverflow ? boundarySize?.width : void 0, width = calcCurrentWidth({
|
|
3561
3713
|
container,
|
|
3562
3714
|
mediaIndex,
|
|
3563
3715
|
width: widthArrayProp
|
|
3564
|
-
}),
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
$[35] !== width ? (t14 = () => {
|
|
3716
|
+
}), widthRef = react.useRef(width);
|
|
3717
|
+
let t17, t18;
|
|
3718
|
+
$[39] !== width ? (t17 = () => {
|
|
3568
3719
|
widthRef.current = width;
|
|
3569
|
-
},
|
|
3570
|
-
let
|
|
3571
|
-
$[
|
|
3720
|
+
}, t18 = [width], $[39] = width, $[40] = t17, $[41] = t18) : (t17 = $[40], t18 = $[41]), react.useEffect(t17, t18);
|
|
3721
|
+
let t19;
|
|
3722
|
+
$[42] !== boundaryWidth || $[43] !== width ? (t19 = calcMaxWidth({
|
|
3572
3723
|
boundaryWidth,
|
|
3573
3724
|
currentWidth: width
|
|
3574
|
-
}), $[
|
|
3575
|
-
const maxWidth =
|
|
3576
|
-
let
|
|
3577
|
-
$[
|
|
3725
|
+
}), $[42] = boundaryWidth, $[43] = width, $[44] = t19) : t19 = $[44];
|
|
3726
|
+
const maxWidth = t19, maxWidthRef = react.useRef(maxWidth);
|
|
3727
|
+
let t20, t21;
|
|
3728
|
+
$[45] !== maxWidth ? (t20 = () => {
|
|
3578
3729
|
maxWidthRef.current = maxWidth;
|
|
3579
|
-
},
|
|
3730
|
+
}, t21 = [maxWidth], $[45] = maxWidth, $[46] = t20, $[47] = t21) : (t20 = $[46], t21 = $[47]), react.useEffect(t20, t21);
|
|
3580
3731
|
const referenceWidthRef = react.useRef(void 0);
|
|
3581
|
-
let
|
|
3582
|
-
$[
|
|
3732
|
+
let t22, t23;
|
|
3733
|
+
$[48] !== matchReferenceWidth || $[49] !== maxWidth || $[50] !== open || $[51] !== width ? (t22 = () => {
|
|
3583
3734
|
const floatingElement = ref.current;
|
|
3584
3735
|
if (!open || !floatingElement)
|
|
3585
3736
|
return;
|
|
3586
3737
|
const referenceWidth = referenceWidthRef.current;
|
|
3587
3738
|
matchReferenceWidth ? referenceWidth !== void 0 && (floatingElement.style.width = `${referenceWidth}px`) : width !== void 0 && (floatingElement.style.width = `${width}px`), typeof maxWidth == "number" && (floatingElement.style.maxWidth = `${maxWidth}px`);
|
|
3588
|
-
},
|
|
3739
|
+
}, t23 = [width, matchReferenceWidth, maxWidth, open], $[48] = matchReferenceWidth, $[49] = maxWidth, $[50] = open, $[51] = width, $[52] = t22, $[53] = t23) : (t22 = $[52], t23 = $[53]), react.useEffect(t22, t23);
|
|
3589
3740
|
const [referenceWidth_0, setReferenceWidth] = react.useState(void 0);
|
|
3590
|
-
let
|
|
3591
|
-
$[
|
|
3741
|
+
let t24;
|
|
3742
|
+
$[54] !== animate || $[55] !== arrowProp || $[56] !== constrainSize || $[57] !== fallbackPlacements || $[58] !== floatingBoundary || $[59] !== margins || $[60] !== matchReferenceWidth || $[61] !== placementProp || $[62] !== placementStrategy || $[63] !== preventOverflow || $[64] !== referenceBoundary ? (t24 = {
|
|
3592
3743
|
animate,
|
|
3593
3744
|
arrowProp,
|
|
3594
3745
|
arrowRef,
|
|
@@ -3606,19 +3757,19 @@ const ViewportOverlay = () => {
|
|
|
3606
3757
|
rootBoundary: "viewport",
|
|
3607
3758
|
setReferenceWidth,
|
|
3608
3759
|
widthRef
|
|
3609
|
-
}, $[
|
|
3610
|
-
const middleware = useMiddleware$1(
|
|
3611
|
-
let
|
|
3612
|
-
$[
|
|
3760
|
+
}, $[54] = animate, $[55] = arrowProp, $[56] = constrainSize, $[57] = fallbackPlacements, $[58] = floatingBoundary, $[59] = margins, $[60] = matchReferenceWidth, $[61] = placementProp, $[62] = placementStrategy, $[63] = preventOverflow, $[64] = referenceBoundary, $[65] = t24) : t24 = $[65];
|
|
3761
|
+
const middleware = useMiddleware$1(t24);
|
|
3762
|
+
let t25;
|
|
3763
|
+
$[66] !== referenceElement ? (t25 = referenceElement ? {
|
|
3613
3764
|
reference: referenceElement
|
|
3614
|
-
} : void 0, $[
|
|
3615
|
-
let
|
|
3616
|
-
$[
|
|
3765
|
+
} : void 0, $[66] = referenceElement, $[67] = t25) : t25 = $[67];
|
|
3766
|
+
let t26;
|
|
3767
|
+
$[68] !== middleware || $[69] !== placementProp || $[70] !== t25 ? (t26 = {
|
|
3617
3768
|
middleware,
|
|
3618
3769
|
placement: placementProp,
|
|
3619
3770
|
whileElementsMounted: reactDom$1.autoUpdate,
|
|
3620
|
-
elements:
|
|
3621
|
-
}, $[
|
|
3771
|
+
elements: t25
|
|
3772
|
+
}, $[68] = middleware, $[69] = placementProp, $[70] = t25, $[71] = t26) : t26 = $[71];
|
|
3622
3773
|
const {
|
|
3623
3774
|
x,
|
|
3624
3775
|
y,
|
|
@@ -3627,63 +3778,63 @@ const ViewportOverlay = () => {
|
|
|
3627
3778
|
refs,
|
|
3628
3779
|
strategy,
|
|
3629
3780
|
update
|
|
3630
|
-
} = reactDom$1.useFloating(
|
|
3631
|
-
let t24;
|
|
3632
|
-
$[68] === Symbol.for("react.memo_cache_sentinel") ? (t24 = (arrowEl) => {
|
|
3633
|
-
arrowRef.current = arrowEl;
|
|
3634
|
-
}, $[68] = t24) : t24 = $[68];
|
|
3635
|
-
const setArrow = t24;
|
|
3636
|
-
let t25;
|
|
3637
|
-
$[69] !== refs ? (t25 = (node) => {
|
|
3638
|
-
ref.current = node, refs.setFloating(node);
|
|
3639
|
-
}, $[69] = refs, $[70] = t25) : t25 = $[70];
|
|
3640
|
-
const setFloating = t25;
|
|
3641
|
-
let t26;
|
|
3642
|
-
$[71] !== childProp ? (t26 = childProp ? getElementRef(childProp) : null, $[71] = childProp, $[72] = t26) : t26 = $[72];
|
|
3781
|
+
} = reactDom$1.useFloating(t26), referenceHidden = middlewareData.hide?.referenceHidden, arrowX = middlewareData.arrow?.x, arrowY = middlewareData.arrow?.y, originX = middlewareData["@sanity/ui/origin"]?.originX, originY = middlewareData["@sanity/ui/origin"]?.originY;
|
|
3643
3782
|
let t27;
|
|
3644
|
-
$[
|
|
3783
|
+
$[72] === Symbol.for("react.memo_cache_sentinel") ? (t27 = (arrowEl) => {
|
|
3784
|
+
arrowRef.current = arrowEl;
|
|
3785
|
+
}, $[72] = t27) : t27 = $[72];
|
|
3786
|
+
const setArrow = t27;
|
|
3645
3787
|
let t28;
|
|
3788
|
+
$[73] !== refs ? (t28 = (node) => {
|
|
3789
|
+
ref.current = node, refs.setFloating(node);
|
|
3790
|
+
}, $[73] = refs, $[74] = t28) : t28 = $[74];
|
|
3791
|
+
const setFloating = t28;
|
|
3792
|
+
let t29;
|
|
3793
|
+
$[75] !== childProp ? (t29 = childProp ? getElementRef(childProp) : null, $[75] = childProp, $[76] = t29) : t29 = $[76];
|
|
3794
|
+
let t30;
|
|
3795
|
+
$[77] !== refs.reference.current ? (t30 = () => refs.reference.current, $[77] = refs.reference.current, $[78] = t30) : t30 = $[78], react.useImperativeHandle(t29, t30);
|
|
3796
|
+
let t31;
|
|
3646
3797
|
bb0: {
|
|
3647
3798
|
if (referenceElement) {
|
|
3648
|
-
|
|
3799
|
+
t31 = childProp;
|
|
3649
3800
|
break bb0;
|
|
3650
3801
|
}
|
|
3651
3802
|
if (!childProp) {
|
|
3652
|
-
|
|
3803
|
+
t31 = null;
|
|
3653
3804
|
break bb0;
|
|
3654
3805
|
}
|
|
3655
|
-
let
|
|
3656
|
-
$[
|
|
3806
|
+
let t322;
|
|
3807
|
+
$[79] !== childProp || $[80] !== refs.setReference ? (t322 = react.cloneElement(childProp, {
|
|
3657
3808
|
ref: refs.setReference
|
|
3658
|
-
}), $[
|
|
3809
|
+
}), $[79] = childProp, $[80] = refs.setReference, $[81] = t322) : t322 = $[81], t31 = t322;
|
|
3659
3810
|
}
|
|
3660
|
-
const child =
|
|
3661
|
-
let
|
|
3662
|
-
if ($[
|
|
3663
|
-
let
|
|
3664
|
-
return $[
|
|
3811
|
+
const child = t31;
|
|
3812
|
+
let t32, t33;
|
|
3813
|
+
if ($[82] !== update ? (t32 = () => update, t33 = [update], $[82] = update, $[83] = t32, $[84] = t33) : (t32 = $[83], t33 = $[84]), react.useImperativeHandle(updateRef, t32, t33), disabled) {
|
|
3814
|
+
let t342;
|
|
3815
|
+
return $[85] !== childProp ? (t342 = childProp || /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[85] = childProp, $[86] = t342) : t342 = $[86], t342;
|
|
3665
3816
|
}
|
|
3666
|
-
let t31;
|
|
3667
|
-
$[83] !== modal ? (t31 = modal && /* @__PURE__ */ jsxRuntime.jsx(ViewportOverlay, {}), $[83] = modal, $[84] = t31) : t31 = $[84];
|
|
3668
|
-
const t32 = matchReferenceWidth ? referenceWidth_0 : width;
|
|
3669
|
-
let t33;
|
|
3670
|
-
$[85] !== animate || $[86] !== arrowProp || $[87] !== arrowX || $[88] !== arrowY || $[89] !== content || $[90] !== margins || $[91] !== originX || $[92] !== originY || $[93] !== overflow || $[94] !== padding || $[95] !== placement || $[96] !== radius || $[97] !== referenceHidden || $[98] !== restProps || $[99] !== scheme || $[100] !== setFloating || $[101] !== shadow || $[102] !== strategy || $[103] !== t32 || $[104] !== tone || $[105] !== x || $[106] !== y ? (t33 = /* @__PURE__ */ jsxRuntime.jsx(PopoverCard, { ...restProps, __unstable_margins: margins, animate, arrow: arrowProp, arrowRef: setArrow, arrowX, arrowY, hidden: referenceHidden, overflow, padding, placement, radius, ref: setFloating, scheme, shadow, originX, originY, strategy, tone, width: t32, x, y, children: content }), $[85] = animate, $[86] = arrowProp, $[87] = arrowX, $[88] = arrowY, $[89] = content, $[90] = margins, $[91] = originX, $[92] = originY, $[93] = overflow, $[94] = padding, $[95] = placement, $[96] = radius, $[97] = referenceHidden, $[98] = restProps, $[99] = scheme, $[100] = setFloating, $[101] = shadow, $[102] = strategy, $[103] = t32, $[104] = tone, $[105] = x, $[106] = y, $[107] = t33) : t33 = $[107];
|
|
3671
3817
|
let t34;
|
|
3672
|
-
$[
|
|
3673
|
-
|
|
3674
|
-
t33
|
|
3675
|
-
] }), $[108] = t31, $[109] = t33, $[110] = zOffset, $[111] = t34) : t34 = $[111];
|
|
3676
|
-
const popover = t34;
|
|
3677
|
-
let t35;
|
|
3678
|
-
$[112] !== open || $[113] !== popover || $[114] !== portal ? (t35 = open && (portal ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portal == "string" ? portal : void 0, children: popover }) : popover), $[112] = open, $[113] = popover, $[114] = portal, $[115] = t35) : t35 = $[115];
|
|
3679
|
-
const children = t35;
|
|
3818
|
+
$[87] !== modal ? (t34 = modal && /* @__PURE__ */ jsxRuntime.jsx(ViewportOverlay, {}), $[87] = modal, $[88] = t34) : t34 = $[88];
|
|
3819
|
+
const t35 = matchReferenceWidth ? referenceWidth_0 : width;
|
|
3680
3820
|
let t36;
|
|
3681
|
-
$[
|
|
3821
|
+
$[89] !== animate || $[90] !== arrowProp || $[91] !== arrowX || $[92] !== arrowY || $[93] !== content || $[94] !== margins || $[95] !== originX || $[96] !== originY || $[97] !== overflow || $[98] !== padding || $[99] !== placement || $[100] !== radius || $[101] !== referenceHidden || $[102] !== restProps || $[103] !== scheme || $[104] !== setFloating || $[105] !== shadow || $[106] !== strategy || $[107] !== t35 || $[108] !== tone || $[109] !== x || $[110] !== y ? (t36 = /* @__PURE__ */ jsxRuntime.jsx(PopoverCard, { ...restProps, __unstable_margins: margins, animate, arrow: arrowProp, arrowRef: setArrow, arrowX, arrowY, hidden: referenceHidden, overflow, padding, placement, radius, ref: setFloating, scheme, shadow, originX, originY, strategy, tone, width: t35, x, y, children: content }), $[89] = animate, $[90] = arrowProp, $[91] = arrowX, $[92] = arrowY, $[93] = content, $[94] = margins, $[95] = originX, $[96] = originY, $[97] = overflow, $[98] = padding, $[99] = placement, $[100] = radius, $[101] = referenceHidden, $[102] = restProps, $[103] = scheme, $[104] = setFloating, $[105] = shadow, $[106] = strategy, $[107] = t35, $[108] = tone, $[109] = x, $[110] = y, $[111] = t36) : t36 = $[111];
|
|
3682
3822
|
let t37;
|
|
3683
|
-
|
|
3684
|
-
|
|
3823
|
+
$[112] !== t34 || $[113] !== t36 || $[114] !== zOffset ? (t37 = /* @__PURE__ */ jsxRuntime.jsxs(LayerProvider, { zOffset, children: [
|
|
3824
|
+
t34,
|
|
3825
|
+
t36
|
|
3826
|
+
] }), $[112] = t34, $[113] = t36, $[114] = zOffset, $[115] = t37) : t37 = $[115];
|
|
3827
|
+
const popover = t37;
|
|
3828
|
+
let t38;
|
|
3829
|
+
$[116] !== open || $[117] !== popover || $[118] !== portal ? (t38 = open && (portal ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portal == "string" ? portal : void 0, children: popover }) : popover), $[116] = open, $[117] = popover, $[118] = portal, $[119] = t38) : t38 = $[119];
|
|
3830
|
+
const children = t38;
|
|
3831
|
+
let t39;
|
|
3832
|
+
$[120] !== animate || $[121] !== children ? (t39 = animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children, $[120] = animate, $[121] = children, $[122] = t39) : t39 = $[122];
|
|
3833
|
+
let t40;
|
|
3834
|
+
return $[123] !== child || $[124] !== t39 ? (t40 = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
3835
|
+
t39,
|
|
3685
3836
|
child
|
|
3686
|
-
] }), $[
|
|
3837
|
+
] }), $[123] = child, $[124] = t39, $[125] = t40) : t40 = $[125], t40;
|
|
3687
3838
|
});
|
|
3688
3839
|
Popover.displayName = "ForwardRef(Popover)";
|
|
3689
3840
|
function useMiddleware$1(t0) {
|
|
@@ -4068,7 +4219,7 @@ const selectStyle = {
|
|
|
4068
4219
|
displayName: "IconBox",
|
|
4069
4220
|
componentId: "sc-5mxno7-2"
|
|
4070
4221
|
})(selectStyle.iconBox), Select = react.forwardRef(function(props, forwardedRef) {
|
|
4071
|
-
const $ = reactCompilerRuntime.c(
|
|
4222
|
+
const $ = reactCompilerRuntime.c(37);
|
|
4072
4223
|
let children, customValidity, disabled, readOnly, restProps, t0, t1, t2, t3;
|
|
4073
4224
|
$[0] !== props ? ({
|
|
4074
4225
|
children,
|
|
@@ -4084,20 +4235,29 @@ const selectStyle = {
|
|
|
4084
4235
|
const fontSize2 = t0 === void 0 ? 2 : t0, padding = t1 === void 0 ? 3 : t1, radius = t2 === void 0 ? 2 : t2, space = t3 === void 0 ? 3 : t3, ref = react.useRef(null);
|
|
4085
4236
|
let t4;
|
|
4086
4237
|
$[10] === Symbol.for("react.memo_cache_sentinel") ? (t4 = () => ref.current, $[10] = t4) : t4 = $[10], react.useImperativeHandle(forwardedRef, t4), useCustomValidity(ref, customValidity);
|
|
4087
|
-
const t5 = !disabled && readOnly ? "" : void 0
|
|
4238
|
+
const t5 = !disabled && readOnly ? "" : void 0;
|
|
4239
|
+
let t6;
|
|
4240
|
+
$[11] !== fontSize2 ? (t6 = _getArrayProp(fontSize2), $[11] = fontSize2, $[12] = t6) : t6 = $[12];
|
|
4241
|
+
let t7;
|
|
4242
|
+
$[13] !== padding ? (t7 = _getArrayProp(padding), $[13] = padding, $[14] = t7) : t7 = $[14];
|
|
4243
|
+
let t8;
|
|
4244
|
+
$[15] !== radius ? (t8 = _getArrayProp(radius), $[15] = radius, $[16] = t8) : t8 = $[16];
|
|
4245
|
+
let t9;
|
|
4246
|
+
$[17] !== space ? (t9 = _getArrayProp(space), $[17] = space, $[18] = t9) : t9 = $[18];
|
|
4247
|
+
const t10 = disabled || readOnly;
|
|
4088
4248
|
let t11;
|
|
4089
|
-
$[
|
|
4249
|
+
$[19] !== children || $[20] !== restProps || $[21] !== t10 || $[22] !== t5 || $[23] !== t6 || $[24] !== t7 || $[25] !== t8 || $[26] !== t9 ? (t11 = /* @__PURE__ */ jsxRuntime.jsx(Input$3, { "data-read-only": t5, "data-ui": "Select", ...restProps, $fontSize: t6, $padding: t7, $radius: t8, $space: t9, disabled: t10, ref, children }), $[19] = children, $[20] = restProps, $[21] = t10, $[22] = t5, $[23] = t6, $[24] = t7, $[25] = t8, $[26] = t9, $[27] = t11) : t11 = $[27];
|
|
4090
4250
|
let t12;
|
|
4091
|
-
$[
|
|
4251
|
+
$[28] === Symbol.for("react.memo_cache_sentinel") ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronDownIcon, {}), $[28] = t12) : t12 = $[28];
|
|
4092
4252
|
let t13;
|
|
4093
|
-
$[
|
|
4253
|
+
$[29] !== fontSize2 ? (t13 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: t12 }), $[29] = fontSize2, $[30] = t13) : t13 = $[30];
|
|
4094
4254
|
let t14;
|
|
4095
|
-
$[
|
|
4255
|
+
$[31] !== padding || $[32] !== t13 ? (t14 = /* @__PURE__ */ jsxRuntime.jsx(IconBox, { padding, children: t13 }), $[31] = padding, $[32] = t13, $[33] = t14) : t14 = $[33];
|
|
4096
4256
|
let t15;
|
|
4097
|
-
return $[
|
|
4257
|
+
return $[34] !== t11 || $[35] !== t14 ? (t15 = /* @__PURE__ */ jsxRuntime.jsxs(StyledSelect, { "data-ui": "Select", children: [
|
|
4098
4258
|
t11,
|
|
4099
4259
|
t14
|
|
4100
|
-
] }), $[
|
|
4260
|
+
] }), $[34] = t11, $[35] = t14, $[36] = t15) : t15 = $[36], t15;
|
|
4101
4261
|
});
|
|
4102
4262
|
Select.displayName = "ForwardRef(Select)";
|
|
4103
4263
|
const BASE_STYLE = {
|
|
@@ -4126,16 +4286,18 @@ const StyledStack = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
4126
4286
|
displayName: "StyledStack",
|
|
4127
4287
|
componentId: "sc-8dpfq2-0"
|
|
4128
4288
|
})(stackBaseStyle, responsiveStackSpaceStyle), Stack = react.forwardRef(function(props, ref) {
|
|
4129
|
-
const $ = reactCompilerRuntime.c(
|
|
4289
|
+
const $ = reactCompilerRuntime.c(12);
|
|
4130
4290
|
let as, restProps, space;
|
|
4131
4291
|
$[0] !== props ? ({
|
|
4132
4292
|
as,
|
|
4133
4293
|
space,
|
|
4134
4294
|
...restProps
|
|
4135
4295
|
} = props, $[0] = props, $[1] = as, $[2] = restProps, $[3] = space) : (as = $[1], restProps = $[2], space = $[3]);
|
|
4136
|
-
const t0 = typeof as == "string" ? as : void 0
|
|
4296
|
+
const t0 = typeof as == "string" ? as : void 0;
|
|
4297
|
+
let t1;
|
|
4298
|
+
$[4] !== space ? (t1 = _getArrayProp(space), $[4] = space, $[5] = t1) : t1 = $[5];
|
|
4137
4299
|
let t2;
|
|
4138
|
-
return $[
|
|
4300
|
+
return $[6] !== as || $[7] !== ref || $[8] !== restProps || $[9] !== t0 || $[10] !== t1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(StyledStack, { "data-as": t0, "data-ui": "Stack", ...restProps, $space: t1, forwardedAs: as, ref }), $[6] = as, $[7] = ref, $[8] = restProps, $[9] = t0, $[10] = t1, $[11] = t2) : t2 = $[11], t2;
|
|
4139
4301
|
});
|
|
4140
4302
|
Stack.displayName = "ForwardRef(Stack)";
|
|
4141
4303
|
function switchBaseStyles() {
|
|
@@ -4355,7 +4517,7 @@ const StyledTextArea = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
|
4355
4517
|
displayName: "Presentation",
|
|
4356
4518
|
componentId: "sc-1d6h1o8-3"
|
|
4357
4519
|
})(responsiveRadiusStyle, textInputRepresentationStyle), TextArea = react.forwardRef(function(props, forwardedRef) {
|
|
4358
|
-
const $ = reactCompilerRuntime.c(
|
|
4520
|
+
const $ = reactCompilerRuntime.c(35);
|
|
4359
4521
|
let __unstable_disableFocusRing, customValidity, restProps, t0, t1, t2, t3, t4, weight;
|
|
4360
4522
|
$[0] !== props ? ({
|
|
4361
4523
|
border: t0,
|
|
@@ -4371,17 +4533,26 @@ const StyledTextArea = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
|
4371
4533
|
const border2 = t0 === void 0 ? !0 : t0, disabled = t1 === void 0 ? !1 : t1, fontSize2 = t2 === void 0 ? 2 : t2, padding = t3 === void 0 ? 3 : t3, radius = t4 === void 0 ? 2 : t4, ref = react.useRef(null), rootTheme = useRootTheme();
|
|
4372
4534
|
let t5;
|
|
4373
4535
|
$[10] === Symbol.for("react.memo_cache_sentinel") ? (t5 = () => ref.current, $[10] = t5) : t5 = $[10], react.useImperativeHandle(forwardedRef, t5), useCustomValidity(ref, customValidity);
|
|
4374
|
-
const t6 = rootTheme.scheme, t7 = rootTheme.tone
|
|
4536
|
+
const t6 = rootTheme.scheme, t7 = rootTheme.tone;
|
|
4537
|
+
let t8;
|
|
4538
|
+
$[11] !== fontSize2 ? (t8 = _getArrayProp(fontSize2), $[11] = fontSize2, $[12] = t8) : t8 = $[12];
|
|
4539
|
+
let t9;
|
|
4540
|
+
$[13] !== padding ? (t9 = _getArrayProp(padding), $[13] = padding, $[14] = t9) : t9 = $[14];
|
|
4541
|
+
const t10 = rootTheme.scheme;
|
|
4542
|
+
let t11;
|
|
4543
|
+
$[15] === Symbol.for("react.memo_cache_sentinel") ? (t11 = _getArrayProp(0), $[15] = t11) : t11 = $[15];
|
|
4375
4544
|
let t12;
|
|
4376
|
-
$[
|
|
4377
|
-
|
|
4545
|
+
$[16] !== disabled || $[17] !== restProps || $[18] !== rootTheme.scheme || $[19] !== rootTheme.tone || $[20] !== t8 || $[21] !== t9 || $[22] !== weight ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(Input$1, { "data-as": "textarea", "data-scheme": t6, "data-tone": t7, ...restProps, $fontSize: t8, $padding: t9, $scheme: t10, $space: t11, $tone: rootTheme.tone, $weight: weight, disabled, ref }), $[16] = disabled, $[17] = restProps, $[18] = rootTheme.scheme, $[19] = rootTheme.tone, $[20] = t8, $[21] = t9, $[22] = weight, $[23] = t12) : t12 = $[23];
|
|
4546
|
+
let t13;
|
|
4547
|
+
$[24] !== radius ? (t13 = _getArrayProp(radius), $[24] = radius, $[25] = t13) : t13 = $[25];
|
|
4548
|
+
const t14 = border2 ? "" : void 0;
|
|
4378
4549
|
let t15;
|
|
4379
|
-
$[
|
|
4550
|
+
$[26] !== __unstable_disableFocusRing || $[27] !== rootTheme.scheme || $[28] !== rootTheme.tone || $[29] !== t13 || $[30] !== t14 ? (t15 = /* @__PURE__ */ jsxRuntime.jsx(Presentation$1, { $radius: t13, $unstableDisableFocusRing: __unstable_disableFocusRing, $scheme: rootTheme.scheme, $tone: rootTheme.tone, "data-border": t14, "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone }), $[26] = __unstable_disableFocusRing, $[27] = rootTheme.scheme, $[28] = rootTheme.tone, $[29] = t13, $[30] = t14, $[31] = t15) : t15 = $[31];
|
|
4380
4551
|
let t16;
|
|
4381
|
-
return $[
|
|
4552
|
+
return $[32] !== t12 || $[33] !== t15 ? (t16 = /* @__PURE__ */ jsxRuntime.jsx(StyledTextArea, { "data-ui": "TextArea", children: /* @__PURE__ */ jsxRuntime.jsxs(InputRoot$1, { children: [
|
|
4382
4553
|
t12,
|
|
4383
4554
|
t15
|
|
4384
|
-
] }) }), $[
|
|
4555
|
+
] }) }), $[32] = t12, $[33] = t15, $[34] = t16) : t16 = $[34], t16;
|
|
4385
4556
|
});
|
|
4386
4557
|
TextArea.displayName = "ForwardRef(TextArea)";
|
|
4387
4558
|
const CLEAR_BUTTON_BOX_STYLE = {
|
|
@@ -4427,7 +4598,7 @@ const CLEAR_BUTTON_BOX_STYLE = {
|
|
|
4427
4598
|
display: "block"
|
|
4428
4599
|
}
|
|
4429
4600
|
}), TextInput = react.forwardRef(function(props, forwardedRef) {
|
|
4430
|
-
const $ = reactCompilerRuntime.c(
|
|
4601
|
+
const $ = reactCompilerRuntime.c(92);
|
|
4431
4602
|
let IconComponent, IconRightComponent, __unstable_disableFocusRing, clearButton, customValidity, onClear, prefix, readOnly, restProps, suffix, t0, t1, t2, t3, t4, t5, t6, weight;
|
|
4432
4603
|
$[0] !== props ? ({
|
|
4433
4604
|
__unstable_disableFocusRing,
|
|
@@ -4449,60 +4620,72 @@ const CLEAR_BUTTON_BOX_STYLE = {
|
|
|
4449
4620
|
weight,
|
|
4450
4621
|
...restProps
|
|
4451
4622
|
} = props, $[0] = props, $[1] = IconComponent, $[2] = IconRightComponent, $[3] = __unstable_disableFocusRing, $[4] = clearButton, $[5] = customValidity, $[6] = onClear, $[7] = prefix, $[8] = readOnly, $[9] = restProps, $[10] = suffix, $[11] = t0, $[12] = t1, $[13] = t2, $[14] = t3, $[15] = t4, $[16] = t5, $[17] = t6, $[18] = weight) : (IconComponent = $[1], IconRightComponent = $[2], __unstable_disableFocusRing = $[3], clearButton = $[4], customValidity = $[5], onClear = $[6], prefix = $[7], readOnly = $[8], restProps = $[9], suffix = $[10], t0 = $[11], t1 = $[12], t2 = $[13], t3 = $[14], t4 = $[15], t5 = $[16], t6 = $[17], weight = $[18]);
|
|
4452
|
-
const border2 = t0 === void 0 ? !0 : t0, disabled = t1 === void 0 ? !1 : t1, fontSizeProp = t2 === void 0 ? 2 : t2, paddingProp = t3 === void 0 ? 3 : t3, radiusProp = t4 === void 0 ? 2 : t4, spaceProp = t5 === void 0 ? 3 : t5, type = t6 === void 0 ? "text" : t6, ref = react.useRef(null), rootTheme = useRootTheme()
|
|
4623
|
+
const border2 = t0 === void 0 ? !0 : t0, disabled = t1 === void 0 ? !1 : t1, fontSizeProp = t2 === void 0 ? 2 : t2, paddingProp = t3 === void 0 ? 3 : t3, radiusProp = t4 === void 0 ? 2 : t4, spaceProp = t5 === void 0 ? 3 : t5, type = t6 === void 0 ? "text" : t6, ref = react.useRef(null), rootTheme = useRootTheme();
|
|
4453
4624
|
let t7;
|
|
4454
|
-
$[19]
|
|
4455
|
-
const
|
|
4625
|
+
$[19] !== fontSizeProp ? (t7 = _getArrayProp(fontSizeProp), $[19] = fontSizeProp, $[20] = t7) : t7 = $[20];
|
|
4626
|
+
const fontSize2 = t7;
|
|
4456
4627
|
let t8;
|
|
4457
|
-
$[
|
|
4458
|
-
|
|
4459
|
-
}, $[20] = onClear, $[21] = t8) : t8 = $[21];
|
|
4460
|
-
const handleClearClick = t8;
|
|
4628
|
+
$[21] !== paddingProp ? (t8 = _getArrayProp(paddingProp), $[21] = paddingProp, $[22] = t8) : t8 = $[22];
|
|
4629
|
+
const padding = t8;
|
|
4461
4630
|
let t9;
|
|
4462
|
-
$[
|
|
4463
|
-
const
|
|
4631
|
+
$[23] !== radiusProp ? (t9 = _getArrayProp(radiusProp), $[23] = radiusProp, $[24] = t9) : t9 = $[24];
|
|
4632
|
+
const radius = t9;
|
|
4633
|
+
let t10;
|
|
4634
|
+
$[25] !== spaceProp ? (t10 = _getArrayProp(spaceProp), $[25] = spaceProp, $[26] = t10) : t10 = $[26];
|
|
4635
|
+
const space = t10, $hasClearButton = !!clearButton, $hasIcon = !!IconComponent, $hasIconRight = !!IconRightComponent, $hasSuffix = !!suffix, $hasPrefix = !!prefix;
|
|
4464
4636
|
let t11;
|
|
4465
|
-
$[
|
|
4466
|
-
|
|
4467
|
-
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
4468
|
-
] }) }), $[25] = IconComponent, $[26] = fontSize2, $[27] = padding, $[28] = t11) : t11 = $[28];
|
|
4637
|
+
$[27] === Symbol.for("react.memo_cache_sentinel") ? (t11 = () => ref.current, $[27] = t11) : t11 = $[27], react.useImperativeHandle(forwardedRef, t11), useCustomValidity(ref, customValidity);
|
|
4638
|
+
const handleClearMouseDown = _temp$2;
|
|
4469
4639
|
let t12;
|
|
4470
|
-
$[
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
|
|
4640
|
+
$[28] !== onClear ? (t12 = (event_0) => {
|
|
4641
|
+
event_0.preventDefault(), event_0.stopPropagation(), onClear && onClear(), ref.current?.focus();
|
|
4642
|
+
}, $[28] = onClear, $[29] = t12) : t12 = $[29];
|
|
4643
|
+
const handleClearClick = t12;
|
|
4474
4644
|
let t13;
|
|
4475
|
-
$[
|
|
4476
|
-
|
|
4477
|
-
t12
|
|
4478
|
-
] }), $[34] = $hasPrefix, $[35] = $hasSuffix, $[36] = __unstable_disableFocusRing, $[37] = radius, $[38] = rootTheme.scheme, $[39] = rootTheme.tone, $[40] = t10, $[41] = t11, $[42] = t12, $[43] = t13) : t13 = $[43];
|
|
4479
|
-
const presentationNode = t13;
|
|
4480
|
-
let t14;
|
|
4481
|
-
$[44] !== padding ? (t14 = padding.map(_temp2), $[44] = padding, $[45] = t14) : t14 = $[45];
|
|
4482
|
-
const clearButtonBoxPadding = t14;
|
|
4645
|
+
$[30] !== prefix || $[31] !== radius ? (t13 = prefix && /* @__PURE__ */ jsxRuntime.jsx(Prefix, { borderTop: !0, borderLeft: !0, borderBottom: !0, radius, sizing: "border", tone: "inherit", children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: prefix }) }), $[30] = prefix, $[31] = radius, $[32] = t13) : t13 = $[32];
|
|
4646
|
+
const prefixNode = t13, t14 = border2 ? "" : void 0;
|
|
4483
4647
|
let t15;
|
|
4484
|
-
$[
|
|
4485
|
-
|
|
4648
|
+
$[33] !== IconComponent || $[34] !== fontSize2 || $[35] !== padding ? (t15 = IconComponent && /* @__PURE__ */ jsxRuntime.jsx(LeftBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4649
|
+
react.isValidElement(IconComponent) && IconComponent,
|
|
4650
|
+
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
4651
|
+
] }) }), $[33] = IconComponent, $[34] = fontSize2, $[35] = padding, $[36] = t15) : t15 = $[36];
|
|
4486
4652
|
let t16;
|
|
4487
|
-
$[
|
|
4488
|
-
|
|
4653
|
+
$[37] !== $hasClearButton || $[38] !== IconRightComponent || $[39] !== fontSize2 || $[40] !== padding ? (t16 = !$hasClearButton && IconRightComponent && /* @__PURE__ */ jsxRuntime.jsx(RightBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4654
|
+
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
4655
|
+
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
4656
|
+
] }) }), $[37] = $hasClearButton, $[38] = IconRightComponent, $[39] = fontSize2, $[40] = padding, $[41] = t16) : t16 = $[41];
|
|
4489
4657
|
let t17;
|
|
4490
|
-
$[
|
|
4491
|
-
|
|
4658
|
+
$[42] !== $hasPrefix || $[43] !== $hasSuffix || $[44] !== __unstable_disableFocusRing || $[45] !== radius || $[46] !== rootTheme.scheme || $[47] !== rootTheme.tone || $[48] !== t14 || $[49] !== t15 || $[50] !== t16 ? (t17 = /* @__PURE__ */ jsxRuntime.jsxs(Presentation, { $hasPrefix, $unstableDisableFocusRing: __unstable_disableFocusRing, $hasSuffix, $radius: radius, $scheme: rootTheme.scheme, $tone: rootTheme.tone, "data-border": t14, "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, children: [
|
|
4659
|
+
t15,
|
|
4660
|
+
t16
|
|
4661
|
+
] }), $[42] = $hasPrefix, $[43] = $hasSuffix, $[44] = __unstable_disableFocusRing, $[45] = radius, $[46] = rootTheme.scheme, $[47] = rootTheme.tone, $[48] = t14, $[49] = t15, $[50] = t16, $[51] = t17) : t17 = $[51];
|
|
4662
|
+
const presentationNode = t17;
|
|
4663
|
+
let t18;
|
|
4664
|
+
$[52] !== padding ? (t18 = padding.map(_temp2), $[52] = padding, $[53] = t18) : t18 = $[53];
|
|
4665
|
+
const clearButtonBoxPadding = t18;
|
|
4492
4666
|
let t19;
|
|
4493
|
-
$[
|
|
4667
|
+
$[54] !== padding ? (t19 = padding.map(_temp3), $[54] = padding, $[55] = t19) : t19 = $[55];
|
|
4668
|
+
const clearButtonPadding = t19, clearButtonProps = typeof clearButton == "object" ? clearButton : EMPTY_RECORD;
|
|
4494
4669
|
let t20;
|
|
4495
|
-
$[
|
|
4496
|
-
|
|
4670
|
+
$[56] !== clearButton || $[57] !== clearButtonBoxPadding || $[58] !== clearButtonPadding || $[59] !== clearButtonProps || $[60] !== customValidity || $[61] !== disabled || $[62] !== fontSize2 || $[63] !== handleClearClick || $[64] !== radius || $[65] !== readOnly ? (t20 = !disabled && !readOnly && clearButton && /* @__PURE__ */ jsxRuntime.jsx(RightCard, { forwardedAs: "span", padding: clearButtonBoxPadding, style: CLEAR_BUTTON_BOX_STYLE, tone: customValidity ? "critical" : "inherit", children: /* @__PURE__ */ jsxRuntime.jsx(TextInputClearButton, { "aria-label": "Clear", "data-qa": "clear-button", fontSize: fontSize2, icon: icons.CloseIcon, mode: "bleed", padding: clearButtonPadding, radius, ...clearButtonProps, onClick: handleClearClick, onMouseDown: handleClearMouseDown }) }), $[56] = clearButton, $[57] = clearButtonBoxPadding, $[58] = clearButtonPadding, $[59] = clearButtonProps, $[60] = customValidity, $[61] = disabled, $[62] = fontSize2, $[63] = handleClearClick, $[64] = radius, $[65] = readOnly, $[66] = t20) : t20 = $[66];
|
|
4671
|
+
const clearButtonNode = t20;
|
|
4672
|
+
let t21;
|
|
4673
|
+
$[67] !== radius || $[68] !== suffix ? (t21 = suffix && /* @__PURE__ */ jsxRuntime.jsx(Suffix, { borderTop: !0, borderRight: !0, borderBottom: !0, radius, sizing: "border", tone: "inherit", children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: suffix }) }), $[67] = radius, $[68] = suffix, $[69] = t21) : t21 = $[69];
|
|
4674
|
+
const suffixNode = t21, t22 = $hasIconRight || $hasClearButton;
|
|
4675
|
+
let t23;
|
|
4676
|
+
$[70] !== $hasIcon || $[71] !== disabled || $[72] !== fontSize2 || $[73] !== padding || $[74] !== readOnly || $[75] !== restProps || $[76] !== rootTheme.scheme || $[77] !== rootTheme.tone || $[78] !== space || $[79] !== t22 || $[80] !== type || $[81] !== weight ? (t23 = /* @__PURE__ */ jsxRuntime.jsx(Input, { "data-as": "input", "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, ...restProps, $fontSize: fontSize2, $iconLeft: $hasIcon, $iconRight: t22, $padding: padding, $scheme: rootTheme.scheme, $space: space, $tone: rootTheme.tone, $weight: weight, disabled, readOnly, ref, type }), $[70] = $hasIcon, $[71] = disabled, $[72] = fontSize2, $[73] = padding, $[74] = readOnly, $[75] = restProps, $[76] = rootTheme.scheme, $[77] = rootTheme.tone, $[78] = space, $[79] = t22, $[80] = type, $[81] = weight, $[82] = t23) : t23 = $[82];
|
|
4677
|
+
let t24;
|
|
4678
|
+
$[83] !== clearButtonNode || $[84] !== presentationNode || $[85] !== t23 ? (t24 = /* @__PURE__ */ jsxRuntime.jsxs(InputRoot, { children: [
|
|
4679
|
+
t23,
|
|
4497
4680
|
presentationNode,
|
|
4498
4681
|
clearButtonNode
|
|
4499
|
-
] }), $[
|
|
4500
|
-
let
|
|
4501
|
-
return $[
|
|
4682
|
+
] }), $[83] = clearButtonNode, $[84] = presentationNode, $[85] = t23, $[86] = t24) : t24 = $[86];
|
|
4683
|
+
let t25;
|
|
4684
|
+
return $[87] !== prefixNode || $[88] !== rootTheme.tone || $[89] !== suffixNode || $[90] !== t24 ? (t25 = /* @__PURE__ */ jsxRuntime.jsxs(StyledTextInput, { "data-ui": "TextInput", tone: rootTheme.tone, children: [
|
|
4502
4685
|
prefixNode,
|
|
4503
|
-
|
|
4686
|
+
t24,
|
|
4504
4687
|
suffixNode
|
|
4505
|
-
] }), $[
|
|
4688
|
+
] }), $[87] = prefixNode, $[88] = rootTheme.tone, $[89] = suffixNode, $[90] = t24, $[91] = t25) : t25 = $[91], t25;
|
|
4506
4689
|
});
|
|
4507
4690
|
TextInput.displayName = "ForwardRef(TextInput)";
|
|
4508
4691
|
function _temp$2(event) {
|
|
@@ -4623,7 +4806,7 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4623
4806
|
displayName: "StyledTooltip",
|
|
4624
4807
|
componentId: "sc-13f2zvh-0"
|
|
4625
4808
|
})`pointer-events:none;`, Tooltip = react.forwardRef(function(props, forwardedRef) {
|
|
4626
|
-
const $ = reactCompilerRuntime.c(
|
|
4809
|
+
const $ = reactCompilerRuntime.c(137), boundaryElementContext = useBoundaryElement(), {
|
|
4627
4810
|
layer
|
|
4628
4811
|
} = useTheme_v2();
|
|
4629
4812
|
let _boundaryElement, _fallbackPlacementsProp, _zOffset, childProp, content, delay, disabled, portalProp, restProps, scheme, t0, t1, t2, t3, t4, t5;
|
|
@@ -4645,46 +4828,49 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4645
4828
|
delay,
|
|
4646
4829
|
...restProps
|
|
4647
4830
|
} = props, $[0] = props, $[1] = _boundaryElement, $[2] = _fallbackPlacementsProp, $[3] = _zOffset, $[4] = childProp, $[5] = content, $[6] = delay, $[7] = disabled, $[8] = portalProp, $[9] = restProps, $[10] = scheme, $[11] = t0, $[12] = t1, $[13] = t2, $[14] = t3, $[15] = t4, $[16] = t5) : (_boundaryElement = $[1], _fallbackPlacementsProp = $[2], _zOffset = $[3], childProp = $[4], content = $[5], delay = $[6], disabled = $[7], portalProp = $[8], restProps = $[9], scheme = $[10], t0 = $[11], t1 = $[12], t2 = $[13], t3 = $[14], t4 = $[15], t5 = $[16]);
|
|
4648
|
-
const _animate = t0 === void 0 ? !1 : t0, arrowProp = t1 === void 0 ? !1 : t1, padding = t2 === void 0 ? 2 : t2, placementProp = t3 === void 0 ? "bottom" : t3, radius = t4 === void 0 ? 2 : t4, shadow = t5 === void 0 ? 2 : t5, boundaryElement = _boundaryElement ?? boundaryElementContext?.element, fallbackPlacementsProp = _fallbackPlacementsProp ?? DEFAULT_FALLBACK_PLACEMENTS[props.placement ?? "bottom"], zOffset = _zOffset ?? layer.tooltip.zOffset, animate = usePrefersReducedMotion() ? !1 : _animate
|
|
4831
|
+
const _animate = t0 === void 0 ? !1 : t0, arrowProp = t1 === void 0 ? !1 : t1, padding = t2 === void 0 ? 2 : t2, placementProp = t3 === void 0 ? "bottom" : t3, radius = t4 === void 0 ? 2 : t4, shadow = t5 === void 0 ? 2 : t5, boundaryElement = _boundaryElement ?? boundaryElementContext?.element, fallbackPlacementsProp = _fallbackPlacementsProp ?? DEFAULT_FALLBACK_PLACEMENTS[props.placement ?? "bottom"], zOffset = _zOffset ?? layer.tooltip.zOffset, animate = usePrefersReducedMotion() ? !1 : _animate;
|
|
4649
4832
|
let t6;
|
|
4650
|
-
$[17]
|
|
4651
|
-
const
|
|
4833
|
+
$[17] !== fallbackPlacementsProp ? (t6 = _getArrayProp(fallbackPlacementsProp), $[17] = fallbackPlacementsProp, $[18] = t6) : t6 = $[18];
|
|
4834
|
+
const fallbackPlacements = t6, ref = react.useRef(null), [referenceElement, setReferenceElement] = react.useState(null), arrowRef = react.useRef(null), [tooltipMaxWidth, setTooltipMaxWidth] = react.useState(0);
|
|
4652
4835
|
let t7;
|
|
4653
|
-
$[
|
|
4836
|
+
$[19] === Symbol.for("react.memo_cache_sentinel") ? (t7 = () => ref.current, $[19] = t7) : t7 = $[19], react.useImperativeHandle(forwardedRef, t7);
|
|
4837
|
+
const portal = usePortal(), portalElement = typeof portalProp == "string" ? portal.elements?.[portalProp] || null : portal.element;
|
|
4838
|
+
let t8;
|
|
4839
|
+
$[20] !== animate || $[21] !== arrowProp || $[22] !== boundaryElement || $[23] !== fallbackPlacements ? (t8 = {
|
|
4654
4840
|
animate,
|
|
4655
4841
|
arrowProp,
|
|
4656
4842
|
arrowRef,
|
|
4657
4843
|
boundaryElement,
|
|
4658
4844
|
fallbackPlacements,
|
|
4659
4845
|
rootBoundary: "viewport"
|
|
4660
|
-
}, $[
|
|
4661
|
-
const middleware = useMiddleware(
|
|
4662
|
-
let t8;
|
|
4663
|
-
$[23] !== referenceElement ? (t8 = {
|
|
4664
|
-
reference: referenceElement
|
|
4665
|
-
}, $[23] = referenceElement, $[24] = t8) : t8 = $[24];
|
|
4846
|
+
}, $[20] = animate, $[21] = arrowProp, $[22] = boundaryElement, $[23] = fallbackPlacements, $[24] = t8) : t8 = $[24];
|
|
4847
|
+
const middleware = useMiddleware(t8);
|
|
4666
4848
|
let t9;
|
|
4667
|
-
$[25] !==
|
|
4849
|
+
$[25] !== referenceElement ? (t9 = {
|
|
4850
|
+
reference: referenceElement
|
|
4851
|
+
}, $[25] = referenceElement, $[26] = t9) : t9 = $[26];
|
|
4852
|
+
let t10;
|
|
4853
|
+
$[27] !== middleware || $[28] !== placementProp || $[29] !== t9 ? (t10 = {
|
|
4668
4854
|
middleware,
|
|
4669
4855
|
placement: placementProp,
|
|
4670
4856
|
whileElementsMounted: reactDom$1.autoUpdate,
|
|
4671
|
-
elements:
|
|
4672
|
-
}, $[
|
|
4857
|
+
elements: t9
|
|
4858
|
+
}, $[27] = middleware, $[28] = placementProp, $[29] = t9, $[30] = t10) : t10 = $[30];
|
|
4673
4859
|
const {
|
|
4674
4860
|
floatingStyles,
|
|
4675
4861
|
placement,
|
|
4676
4862
|
middlewareData,
|
|
4677
4863
|
refs,
|
|
4678
4864
|
update
|
|
4679
|
-
} = reactDom$1.useFloating(
|
|
4680
|
-
let
|
|
4681
|
-
$[
|
|
4865
|
+
} = reactDom$1.useFloating(t10), arrowX = middlewareData.arrow?.x, arrowY = middlewareData.arrow?.y, originX = middlewareData["@sanity/ui/origin"]?.originX, originY = middlewareData["@sanity/ui/origin"]?.originY, tooltipId = react.useId(), [isOpen, setIsOpen] = useDelayedState(!1), delayGroupContext = useTooltipDelayGroup();
|
|
4866
|
+
let t11;
|
|
4867
|
+
$[31] !== delayGroupContext ? (t11 = delayGroupContext || {}, $[31] = delayGroupContext, $[32] = t11) : t11 = $[32];
|
|
4682
4868
|
const {
|
|
4683
4869
|
setIsGroupActive,
|
|
4684
4870
|
setOpenTooltipId
|
|
4685
|
-
} =
|
|
4686
|
-
let
|
|
4687
|
-
$[
|
|
4871
|
+
} = t11, showTooltip = isOpen || delayGroupContext?.openTooltipId === tooltipId, isInsideGroup = delayGroupContext !== null, openDelayProp = typeof delay == "number" ? delay : delay?.open || 0, closeDelayProp = typeof delay == "number" ? delay : delay?.close || 0, openDelay = isInsideGroup ? delayGroupContext.openDelay : openDelayProp, closeDelay = isInsideGroup ? delayGroupContext.closeDelay : closeDelayProp;
|
|
4872
|
+
let t12;
|
|
4873
|
+
$[33] !== closeDelay || $[34] !== isInsideGroup || $[35] !== openDelay || $[36] !== setIsGroupActive || $[37] !== setIsOpen || $[38] !== setOpenTooltipId || $[39] !== tooltipId ? (t12 = (open, immediate) => {
|
|
4688
4874
|
if (isInsideGroup)
|
|
4689
4875
|
if (open) {
|
|
4690
4876
|
const groupedOpenDelay = immediate ? 0 : openDelay;
|
|
@@ -4695,55 +4881,55 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4695
4881
|
}
|
|
4696
4882
|
else
|
|
4697
4883
|
setIsOpen(open, immediate ? 0 : open ? openDelay : closeDelay);
|
|
4698
|
-
}, $[
|
|
4699
|
-
const handleIsOpenChange =
|
|
4700
|
-
let t12;
|
|
4701
|
-
$[39] !== childProp?.props || $[40] !== handleIsOpenChange ? (t12 = (e) => {
|
|
4702
|
-
handleIsOpenChange(!1), childProp?.props?.onBlur?.(e);
|
|
4703
|
-
}, $[39] = childProp?.props, $[40] = handleIsOpenChange, $[41] = t12) : t12 = $[41];
|
|
4704
|
-
const handleBlur = t12;
|
|
4884
|
+
}, $[33] = closeDelay, $[34] = isInsideGroup, $[35] = openDelay, $[36] = setIsGroupActive, $[37] = setIsOpen, $[38] = setOpenTooltipId, $[39] = tooltipId, $[40] = t12) : t12 = $[40];
|
|
4885
|
+
const handleIsOpenChange = t12;
|
|
4705
4886
|
let t13;
|
|
4706
|
-
$[
|
|
4707
|
-
handleIsOpenChange(!1
|
|
4708
|
-
}, $[
|
|
4709
|
-
const
|
|
4887
|
+
$[41] !== childProp?.props || $[42] !== handleIsOpenChange ? (t13 = (e) => {
|
|
4888
|
+
handleIsOpenChange(!1), childProp?.props?.onBlur?.(e);
|
|
4889
|
+
}, $[41] = childProp?.props, $[42] = handleIsOpenChange, $[43] = t13) : t13 = $[43];
|
|
4890
|
+
const handleBlur = t13;
|
|
4710
4891
|
let t14;
|
|
4711
|
-
$[
|
|
4712
|
-
handleIsOpenChange(!1, !0), childProp?.props.
|
|
4713
|
-
}, $[
|
|
4714
|
-
const
|
|
4892
|
+
$[44] !== childProp?.props || $[45] !== handleIsOpenChange ? (t14 = (e_0) => {
|
|
4893
|
+
handleIsOpenChange(!1, !0), childProp?.props.onClick?.(e_0);
|
|
4894
|
+
}, $[44] = childProp?.props, $[45] = handleIsOpenChange, $[46] = t14) : t14 = $[46];
|
|
4895
|
+
const handleClick = t14;
|
|
4715
4896
|
let t15;
|
|
4716
|
-
$[
|
|
4717
|
-
handleIsOpenChange(!0), childProp?.props?.
|
|
4718
|
-
}, $[
|
|
4719
|
-
const
|
|
4897
|
+
$[47] !== childProp?.props || $[48] !== handleIsOpenChange ? (t15 = (e_1) => {
|
|
4898
|
+
handleIsOpenChange(!1, !0), childProp?.props.onContextMenu?.(e_1);
|
|
4899
|
+
}, $[47] = childProp?.props, $[48] = handleIsOpenChange, $[49] = t15) : t15 = $[49];
|
|
4900
|
+
const handleContextMenu = t15;
|
|
4720
4901
|
let t16;
|
|
4721
|
-
$[
|
|
4722
|
-
handleIsOpenChange(!0), childProp?.props?.
|
|
4723
|
-
}, $[
|
|
4724
|
-
const
|
|
4902
|
+
$[50] !== childProp?.props || $[51] !== handleIsOpenChange ? (t16 = (e_2) => {
|
|
4903
|
+
handleIsOpenChange(!0), childProp?.props?.onFocus?.(e_2);
|
|
4904
|
+
}, $[50] = childProp?.props, $[51] = handleIsOpenChange, $[52] = t16) : t16 = $[52];
|
|
4905
|
+
const handleFocus = t16;
|
|
4725
4906
|
let t17;
|
|
4726
|
-
$[
|
|
4727
|
-
handleIsOpenChange(!
|
|
4728
|
-
}, $[
|
|
4729
|
-
const
|
|
4907
|
+
$[53] !== childProp?.props || $[54] !== handleIsOpenChange ? (t17 = (e_3) => {
|
|
4908
|
+
handleIsOpenChange(!0), childProp?.props?.onMouseEnter?.(e_3);
|
|
4909
|
+
}, $[53] = childProp?.props, $[54] = handleIsOpenChange, $[55] = t17) : t17 = $[55];
|
|
4910
|
+
const handleMouseEnter = t17;
|
|
4730
4911
|
let t18;
|
|
4731
|
-
$[
|
|
4912
|
+
$[56] !== childProp?.props || $[57] !== handleIsOpenChange ? (t18 = (e_4) => {
|
|
4913
|
+
handleIsOpenChange(!1), childProp?.props?.onMouseLeave?.(e_4);
|
|
4914
|
+
}, $[56] = childProp?.props, $[57] = handleIsOpenChange, $[58] = t18) : t18 = $[58];
|
|
4915
|
+
const handleMouseLeave = t18;
|
|
4916
|
+
let t19;
|
|
4917
|
+
$[59] !== handleIsOpenChange || $[60] !== isInsideGroup || $[61] !== referenceElement || $[62] !== showTooltip ? (t19 = {
|
|
4732
4918
|
handleIsOpenChange,
|
|
4733
4919
|
referenceElement,
|
|
4734
4920
|
showTooltip,
|
|
4735
4921
|
isInsideGroup
|
|
4736
|
-
}, $[
|
|
4737
|
-
let
|
|
4738
|
-
$[
|
|
4922
|
+
}, $[59] = handleIsOpenChange, $[60] = isInsideGroup, $[61] = referenceElement, $[62] = showTooltip, $[63] = t19) : t19 = $[63], useCloseOnMouseLeave(t19);
|
|
4923
|
+
let t20, t21;
|
|
4924
|
+
$[64] !== disabled || $[65] !== handleIsOpenChange || $[66] !== showTooltip ? (t20 = () => {
|
|
4739
4925
|
disabled && showTooltip && handleIsOpenChange(!1);
|
|
4740
|
-
},
|
|
4741
|
-
let
|
|
4742
|
-
$[
|
|
4926
|
+
}, t21 = [disabled, handleIsOpenChange, showTooltip], $[64] = disabled, $[65] = handleIsOpenChange, $[66] = showTooltip, $[67] = t20, $[68] = t21) : (t20 = $[67], t21 = $[68]), react.useEffect(t20, t21);
|
|
4927
|
+
let t22, t23;
|
|
4928
|
+
$[69] !== content || $[70] !== handleIsOpenChange || $[71] !== showTooltip ? (t22 = () => {
|
|
4743
4929
|
!content && showTooltip && handleIsOpenChange(!1);
|
|
4744
|
-
},
|
|
4745
|
-
let
|
|
4746
|
-
$[
|
|
4930
|
+
}, t23 = [content, handleIsOpenChange, showTooltip], $[69] = content, $[70] = handleIsOpenChange, $[71] = showTooltip, $[72] = t22, $[73] = t23) : (t22 = $[72], t23 = $[73]), react.useEffect(t22, t23);
|
|
4931
|
+
let t24, t25;
|
|
4932
|
+
$[74] !== handleIsOpenChange || $[75] !== showTooltip ? (t24 = () => {
|
|
4747
4933
|
if (!showTooltip)
|
|
4748
4934
|
return;
|
|
4749
4935
|
const handleWindowKeyDown = function(event) {
|
|
@@ -4752,32 +4938,32 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4752
4938
|
return window.addEventListener("keydown", handleWindowKeyDown), () => {
|
|
4753
4939
|
window.removeEventListener("keydown", handleWindowKeyDown);
|
|
4754
4940
|
};
|
|
4755
|
-
},
|
|
4756
|
-
let
|
|
4757
|
-
$[
|
|
4941
|
+
}, t25 = [handleIsOpenChange, showTooltip], $[74] = handleIsOpenChange, $[75] = showTooltip, $[76] = t24, $[77] = t25) : (t24 = $[76], t25 = $[77]), react.useEffect(t24, t25);
|
|
4942
|
+
let t26;
|
|
4943
|
+
$[78] !== boundaryElement || $[79] !== portalElement?.offsetWidth ? (t26 = () => {
|
|
4758
4944
|
const availableWidths = [...boundaryElement ? [boundaryElement.offsetWidth] : [], portalElement?.offsetWidth || document.body.offsetWidth];
|
|
4759
4945
|
setTooltipMaxWidth(Math.min(...availableWidths) - DEFAULT_TOOLTIP_PADDING * 2);
|
|
4760
|
-
}, $[
|
|
4761
|
-
let t26;
|
|
4762
|
-
$[79] !== boundaryElement || $[80] !== portalElement ? (t26 = [boundaryElement, portalElement], $[79] = boundaryElement, $[80] = portalElement, $[81] = t26) : t26 = $[81], react.useLayoutEffect(t25, t26);
|
|
4946
|
+
}, $[78] = boundaryElement, $[79] = portalElement?.offsetWidth, $[80] = t26) : t26 = $[80];
|
|
4763
4947
|
let t27;
|
|
4764
|
-
$[82] !==
|
|
4765
|
-
arrowRef.current = arrowEl, update();
|
|
4766
|
-
}, $[82] = update, $[83] = t27) : t27 = $[83];
|
|
4767
|
-
const setArrow = t27;
|
|
4948
|
+
$[81] !== boundaryElement || $[82] !== portalElement ? (t27 = [boundaryElement, portalElement], $[81] = boundaryElement, $[82] = portalElement, $[83] = t27) : t27 = $[83], react.useLayoutEffect(t26, t27);
|
|
4768
4949
|
let t28;
|
|
4769
|
-
$[84] !==
|
|
4770
|
-
|
|
4771
|
-
}, $[84] =
|
|
4772
|
-
const
|
|
4950
|
+
$[84] !== update ? (t28 = (arrowEl) => {
|
|
4951
|
+
arrowRef.current = arrowEl, update();
|
|
4952
|
+
}, $[84] = update, $[85] = t28) : t28 = $[85];
|
|
4953
|
+
const setArrow = t28;
|
|
4773
4954
|
let t29;
|
|
4955
|
+
$[86] !== refs ? (t29 = (node) => {
|
|
4956
|
+
ref.current = node, refs.setFloating(node);
|
|
4957
|
+
}, $[86] = refs, $[87] = t29) : t29 = $[87];
|
|
4958
|
+
const setFloating = t29;
|
|
4959
|
+
let t30;
|
|
4774
4960
|
bb0: {
|
|
4775
4961
|
if (!childProp) {
|
|
4776
|
-
|
|
4962
|
+
t30 = null;
|
|
4777
4963
|
break bb0;
|
|
4778
4964
|
}
|
|
4779
|
-
let
|
|
4780
|
-
$[
|
|
4965
|
+
let t312;
|
|
4966
|
+
$[88] !== childProp || $[89] !== handleBlur || $[90] !== handleClick || $[91] !== handleContextMenu || $[92] !== handleFocus || $[93] !== handleMouseEnter || $[94] !== handleMouseLeave ? (t312 = react.cloneElement(childProp, {
|
|
4781
4967
|
onBlur: handleBlur,
|
|
4782
4968
|
onFocus: handleFocus,
|
|
4783
4969
|
onMouseEnter: handleMouseEnter,
|
|
@@ -4785,39 +4971,39 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4785
4971
|
onClick: handleClick,
|
|
4786
4972
|
onContextMenu: handleContextMenu,
|
|
4787
4973
|
ref: setReferenceElement
|
|
4788
|
-
}), $[
|
|
4974
|
+
}), $[88] = childProp, $[89] = handleBlur, $[90] = handleClick, $[91] = handleContextMenu, $[92] = handleFocus, $[93] = handleMouseEnter, $[94] = handleMouseLeave, $[95] = t312) : t312 = $[95], t30 = t312;
|
|
4789
4975
|
}
|
|
4790
|
-
const child =
|
|
4791
|
-
let
|
|
4792
|
-
$[
|
|
4793
|
-
let
|
|
4794
|
-
if ($[
|
|
4795
|
-
let
|
|
4796
|
-
return $[
|
|
4976
|
+
const child = t30;
|
|
4977
|
+
let t31;
|
|
4978
|
+
$[96] !== childProp ? (t31 = childProp ? getElementRef(childProp) : null, $[96] = childProp, $[97] = t31) : t31 = $[97];
|
|
4979
|
+
let t32, t33;
|
|
4980
|
+
if ($[98] !== referenceElement ? (t32 = () => referenceElement, t33 = [referenceElement], $[98] = referenceElement, $[99] = t32, $[100] = t33) : (t32 = $[99], t33 = $[100]), react.useImperativeHandle(t31, t32, t33), !child) {
|
|
4981
|
+
let t342;
|
|
4982
|
+
return $[101] === Symbol.for("react.memo_cache_sentinel") ? (t342 = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[101] = t342) : t342 = $[101], t342;
|
|
4797
4983
|
}
|
|
4798
4984
|
if (disabled)
|
|
4799
4985
|
return child;
|
|
4800
|
-
const
|
|
4801
|
-
let t34;
|
|
4802
|
-
$[100] !== floatingStyles || $[101] !== t33 ? (t34 = {
|
|
4803
|
-
...floatingStyles,
|
|
4804
|
-
maxWidth: t33
|
|
4805
|
-
}, $[100] = floatingStyles, $[101] = t33, $[102] = t34) : t34 = $[102];
|
|
4986
|
+
const t34 = tooltipMaxWidth > 0 ? `${tooltipMaxWidth}px` : void 0;
|
|
4806
4987
|
let t35;
|
|
4807
|
-
$[
|
|
4988
|
+
$[102] !== floatingStyles || $[103] !== t34 ? (t35 = {
|
|
4989
|
+
...floatingStyles,
|
|
4990
|
+
maxWidth: t34
|
|
4991
|
+
}, $[102] = floatingStyles, $[103] = t34, $[104] = t35) : t35 = $[104];
|
|
4808
4992
|
let t36;
|
|
4809
|
-
$[
|
|
4810
|
-
const tooltip = t36;
|
|
4993
|
+
$[105] !== animate || $[106] !== arrowProp || $[107] !== arrowX || $[108] !== arrowY || $[109] !== content || $[110] !== originX || $[111] !== originY || $[112] !== padding || $[113] !== placement || $[114] !== radius || $[115] !== restProps || $[116] !== scheme || $[117] !== setArrow || $[118] !== setFloating || $[119] !== shadow ? (t36 = /* @__PURE__ */ jsxRuntime.jsx(TooltipCard, { ...restProps, animate, arrow: arrowProp, arrowRef: setArrow, arrowX, arrowY, originX, originY, padding, placement, radius, ref: setFloating, scheme, shadow, children: content }), $[105] = animate, $[106] = arrowProp, $[107] = arrowX, $[108] = arrowY, $[109] = content, $[110] = originX, $[111] = originY, $[112] = padding, $[113] = placement, $[114] = radius, $[115] = restProps, $[116] = scheme, $[117] = setArrow, $[118] = setFloating, $[119] = shadow, $[120] = t36) : t36 = $[120];
|
|
4811
4994
|
let t37;
|
|
4812
|
-
$[
|
|
4813
|
-
const
|
|
4995
|
+
$[121] !== restProps || $[122] !== setFloating || $[123] !== t35 || $[124] !== t36 || $[125] !== zOffset ? (t37 = /* @__PURE__ */ jsxRuntime.jsx(StyledTooltip, { "data-ui": "Tooltip", ...restProps, ref: setFloating, style: t35, zOffset, children: t36 }), $[121] = restProps, $[122] = setFloating, $[123] = t35, $[124] = t36, $[125] = zOffset, $[126] = t37) : t37 = $[126];
|
|
4996
|
+
const tooltip = t37;
|
|
4814
4997
|
let t38;
|
|
4815
|
-
$[
|
|
4998
|
+
$[127] !== portalProp || $[128] !== showTooltip || $[129] !== tooltip ? (t38 = showTooltip && (portalProp ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portalProp == "string" ? portalProp : void 0, children: tooltip }) : tooltip), $[127] = portalProp, $[128] = showTooltip, $[129] = tooltip, $[130] = t38) : t38 = $[130];
|
|
4999
|
+
const children = t38;
|
|
4816
5000
|
let t39;
|
|
4817
|
-
|
|
4818
|
-
|
|
5001
|
+
$[131] !== animate || $[132] !== children ? (t39 = animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children, $[131] = animate, $[132] = children, $[133] = t39) : t39 = $[133];
|
|
5002
|
+
let t40;
|
|
5003
|
+
return $[134] !== child || $[135] !== t39 ? (t40 = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
5004
|
+
t39,
|
|
4819
5005
|
child
|
|
4820
|
-
] }), $[
|
|
5006
|
+
] }), $[134] = child, $[135] = t39, $[136] = t40) : t40 = $[136], t40;
|
|
4821
5007
|
});
|
|
4822
5008
|
Tooltip.displayName = "ForwardRef(Tooltip)";
|
|
4823
5009
|
function useMiddleware(t0) {
|
|
@@ -4893,7 +5079,7 @@ const StyledHotkeys = styledComponents.styled.kbd.withConfig({
|
|
|
4893
5079
|
displayName: "Key",
|
|
4894
5080
|
componentId: "sc-b37mge-1"
|
|
4895
5081
|
})`&:not([hidden]){display:block;}`, Hotkeys = react.forwardRef(function(props, ref) {
|
|
4896
|
-
const $ = reactCompilerRuntime.c(
|
|
5082
|
+
const $ = reactCompilerRuntime.c(26);
|
|
4897
5083
|
let fontSize2, keys, padding, radius, restProps, t0;
|
|
4898
5084
|
$[0] !== props ? ({
|
|
4899
5085
|
fontSize: fontSize2,
|
|
@@ -4903,21 +5089,24 @@ const StyledHotkeys = styledComponents.styled.kbd.withConfig({
|
|
|
4903
5089
|
space: t0,
|
|
4904
5090
|
...restProps
|
|
4905
5091
|
} = props, $[0] = props, $[1] = fontSize2, $[2] = keys, $[3] = padding, $[4] = radius, $[5] = restProps, $[6] = t0) : (fontSize2 = $[1], keys = $[2], padding = $[3], radius = $[4], restProps = $[5], t0 = $[6]);
|
|
4906
|
-
const
|
|
4907
|
-
if (!keys || keys.length === 0) {
|
|
4908
|
-
let t12;
|
|
4909
|
-
return $[7] === Symbol.for("react.memo_cache_sentinel") ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[7] = t12) : t12 = $[7], t12;
|
|
4910
|
-
}
|
|
5092
|
+
const spaceProp = t0 === void 0 ? 0.5 : t0;
|
|
4911
5093
|
let t1;
|
|
4912
|
-
|
|
5094
|
+
$[7] !== spaceProp ? (t1 = _getArrayProp(spaceProp), $[7] = spaceProp, $[8] = t1) : t1 = $[8];
|
|
5095
|
+
const space = t1;
|
|
5096
|
+
if (!keys || keys.length === 0) {
|
|
4913
5097
|
let t22;
|
|
4914
|
-
|
|
4915
|
-
}
|
|
4916
|
-
t1 = $[12];
|
|
5098
|
+
return $[9] === Symbol.for("react.memo_cache_sentinel") ? (t22 = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[9] = t22) : t22 = $[9], t22;
|
|
5099
|
+
}
|
|
4917
5100
|
let t2;
|
|
4918
|
-
$[
|
|
5101
|
+
if ($[10] !== fontSize2 || $[11] !== keys || $[12] !== padding || $[13] !== radius) {
|
|
5102
|
+
let t32;
|
|
5103
|
+
$[15] !== fontSize2 || $[16] !== padding || $[17] !== radius ? (t32 = (key2, i) => /* @__PURE__ */ jsxRuntime.jsx(Key, { fontSize: fontSize2, padding, radius, children: key2 }, i), $[15] = fontSize2, $[16] = padding, $[17] = radius, $[18] = t32) : t32 = $[18], t2 = keys.map(t32), $[10] = fontSize2, $[11] = keys, $[12] = padding, $[13] = radius, $[14] = t2;
|
|
5104
|
+
} else
|
|
5105
|
+
t2 = $[14];
|
|
4919
5106
|
let t3;
|
|
4920
|
-
|
|
5107
|
+
$[19] !== space || $[20] !== t2 ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(Inline, { as: "span", space, children: t2 }), $[19] = space, $[20] = t2, $[21] = t3) : t3 = $[21];
|
|
5108
|
+
let t4;
|
|
5109
|
+
return $[22] !== ref || $[23] !== restProps || $[24] !== t3 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(StyledHotkeys, { "data-ui": "Hotkeys", ...restProps, ref, children: t3 }), $[22] = ref, $[23] = restProps, $[24] = t3, $[25] = t4) : t4 = $[25], t4;
|
|
4921
5110
|
});
|
|
4922
5111
|
Hotkeys.displayName = "ForwardRef(Hotkeys)";
|
|
4923
5112
|
const MenuContext = createGlobalScopedContext("@sanity/ui/context/menu", null);
|
|
@@ -5288,7 +5477,7 @@ function useMenu() {
|
|
|
5288
5477
|
return value;
|
|
5289
5478
|
}
|
|
5290
5479
|
function MenuGroup(props) {
|
|
5291
|
-
const $ = reactCompilerRuntime.c(
|
|
5480
|
+
const $ = reactCompilerRuntime.c(81);
|
|
5292
5481
|
let IconComponent, children, menuProps, onClick, popover, restProps, t0, t1, t2, t3, t4, t5, text;
|
|
5293
5482
|
$[0] !== props ? ({
|
|
5294
5483
|
as: t0,
|
|
@@ -5369,32 +5558,35 @@ function MenuGroup(props) {
|
|
|
5369
5558
|
return;
|
|
5370
5559
|
}
|
|
5371
5560
|
}, $[45] = t20) : t20 = $[45];
|
|
5372
|
-
const handleKeyDown = t20, t21 = as === "button" ? withinMenu : void 0, t22 = as !== "button" ? withinMenu : void 0, t23 = !withinMenu && active ? "" : void 0
|
|
5561
|
+
const handleKeyDown = t20, t21 = as === "button" ? withinMenu : void 0, t22 = as !== "button" ? withinMenu : void 0, t23 = !withinMenu && active ? "" : void 0;
|
|
5562
|
+
let t24;
|
|
5563
|
+
$[46] !== radius ? (t24 = _getArrayProp(radius), $[46] = radius, $[47] = t24) : t24 = $[47];
|
|
5564
|
+
const t25 = as === "button" ? "button" : void 0;
|
|
5373
5565
|
let t26;
|
|
5374
|
-
$[
|
|
5566
|
+
$[48] !== IconComponent || $[49] !== fontSize2 ? (t26 = IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
5375
5567
|
react.isValidElement(IconComponent) && IconComponent,
|
|
5376
5568
|
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
5377
|
-
] }), $[
|
|
5569
|
+
] }), $[48] = IconComponent, $[49] = fontSize2, $[50] = t26) : t26 = $[50];
|
|
5378
5570
|
let t27;
|
|
5379
|
-
$[
|
|
5571
|
+
$[51] !== fontSize2 || $[52] !== text ? (t27 = /* @__PURE__ */ jsxRuntime.jsx(Box, { flex: 1, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, textOverflow: "ellipsis", weight: "medium", children: text }) }), $[51] = fontSize2, $[52] = text, $[53] = t27) : t27 = $[53];
|
|
5380
5572
|
let t28;
|
|
5381
|
-
$[
|
|
5573
|
+
$[54] === Symbol.for("react.memo_cache_sentinel") ? (t28 = /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronRightIcon, {}), $[54] = t28) : t28 = $[54];
|
|
5382
5574
|
let t29;
|
|
5383
|
-
$[
|
|
5575
|
+
$[55] !== fontSize2 ? (t29 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: t28 }), $[55] = fontSize2, $[56] = t29) : t29 = $[56];
|
|
5384
5576
|
let t30;
|
|
5385
|
-
$[
|
|
5577
|
+
$[57] !== padding || $[58] !== space || $[59] !== t26 || $[60] !== t27 || $[61] !== t29 ? (t30 = /* @__PURE__ */ jsxRuntime.jsxs(Flex, { gap: space, padding, children: [
|
|
5386
5578
|
t26,
|
|
5387
5579
|
t27,
|
|
5388
5580
|
t29
|
|
5389
|
-
] }), $[
|
|
5581
|
+
] }), $[57] = padding, $[58] = space, $[59] = t26, $[60] = t27, $[61] = t29, $[62] = t30) : t30 = $[62];
|
|
5390
5582
|
let t31;
|
|
5391
|
-
$[
|
|
5583
|
+
$[63] !== as || $[64] !== handleClick || $[65] !== handleMouseEnter || $[66] !== restProps || $[67] !== scheme || $[68] !== t21 || $[69] !== t22 || $[70] !== t23 || $[71] !== t24 || $[72] !== t25 || $[73] !== t30 || $[74] !== tone ? (t31 = /* @__PURE__ */ jsxRuntime.jsx(Selectable, { "data-as": as, "data-ui": "MenuGroup", forwardedAs: as, ...restProps, "aria-pressed": t21, "data-pressed": t22, "data-selected": t23, $radius: t24, $tone: tone, $scheme: scheme, onClick: handleClick, onKeyDown: handleKeyDown, onMouseEnter: handleMouseEnter, ref: setRootElement, tabIndex: -1, type: t25, children: t30 }), $[63] = as, $[64] = handleClick, $[65] = handleMouseEnter, $[66] = restProps, $[67] = scheme, $[68] = t21, $[69] = t22, $[70] = t23, $[71] = t24, $[72] = t25, $[73] = t30, $[74] = tone, $[75] = t31) : t31 = $[75];
|
|
5392
5584
|
let t32;
|
|
5393
|
-
return $[
|
|
5585
|
+
return $[76] !== childMenu || $[77] !== open || $[78] !== popover || $[79] !== t31 ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(Popover, { ...popover, content: childMenu, "data-ui": "MenuGroup__popover", open, children: t31 }), $[76] = childMenu, $[77] = open, $[78] = popover, $[79] = t31, $[80] = t32) : t32 = $[80], t32;
|
|
5394
5586
|
}
|
|
5395
5587
|
MenuGroup.displayName = "MenuGroup";
|
|
5396
5588
|
const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
5397
|
-
const $ = reactCompilerRuntime.c(
|
|
5589
|
+
const $ = reactCompilerRuntime.c(75);
|
|
5398
5590
|
let IconComponent, IconRightComponent, children, disabled, hotkeys, onClick, paddingBottom, paddingLeft, paddingRight, paddingTop, paddingX, paddingY, pressed, restProps, selectedProp, t0, t1, t2, t3, t4, t5, text;
|
|
5399
5591
|
$[0] !== props ? ({
|
|
5400
5592
|
as: t0,
|
|
@@ -5448,17 +5640,22 @@ const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
|
5448
5640
|
paddingBottom,
|
|
5449
5641
|
paddingLeft
|
|
5450
5642
|
}, $[33] = padding, $[34] = paddingBottom, $[35] = paddingLeft, $[36] = paddingRight, $[37] = paddingTop, $[38] = paddingX, $[39] = paddingY, $[40] = t10) : t10 = $[40];
|
|
5451
|
-
const paddingProps = t10
|
|
5643
|
+
const paddingProps = t10;
|
|
5644
|
+
let t11;
|
|
5645
|
+
$[41] !== fontSize2 ? (t11 = _getArrayProp(fontSize2).map(_temp), $[41] = fontSize2, $[42] = t11) : t11 = $[42];
|
|
5646
|
+
const hotkeysFontSize = t11;
|
|
5452
5647
|
let t12;
|
|
5453
|
-
$[
|
|
5454
|
-
const hotkeysFontSize = t12;
|
|
5455
|
-
let t13;
|
|
5456
|
-
$[43] === Symbol.for("react.memo_cache_sentinel") ? (t13 = (el) => {
|
|
5648
|
+
$[43] === Symbol.for("react.memo_cache_sentinel") ? (t12 = (el) => {
|
|
5457
5649
|
ref.current = el, setRootElement(el);
|
|
5458
|
-
}, $[43] =
|
|
5459
|
-
const setRef =
|
|
5460
|
-
let
|
|
5461
|
-
$[44] !==
|
|
5650
|
+
}, $[43] = t12) : t12 = $[43];
|
|
5651
|
+
const setRef = t12, t13 = as !== "button" && pressed ? "" : void 0, t14 = active ? "" : void 0, t15 = disabled ? "" : void 0;
|
|
5652
|
+
let t16;
|
|
5653
|
+
$[44] !== radius ? (t16 = _getArrayProp(radius), $[44] = radius, $[45] = t16) : t16 = $[45];
|
|
5654
|
+
let t17;
|
|
5655
|
+
$[46] === Symbol.for("react.memo_cache_sentinel") ? (t17 = _getArrayProp(0), $[46] = t17) : t17 = $[46];
|
|
5656
|
+
const t18 = disabled ? "default" : tone, t19 = as === "button" ? "button" : void 0;
|
|
5657
|
+
let t20;
|
|
5658
|
+
$[47] !== IconComponent || $[48] !== IconRightComponent || $[49] !== fontSize2 || $[50] !== hotkeys || $[51] !== hotkeysFontSize || $[52] !== paddingProps || $[53] !== space || $[54] !== text ? (t20 = (IconComponent || text || IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsxs(Flex, { as: "span", gap: space, align: "center", ...paddingProps, children: [
|
|
5462
5659
|
IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
5463
5660
|
react.isValidElement(IconComponent) && IconComponent,
|
|
5464
5661
|
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
@@ -5472,14 +5669,14 @@ const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
|
5472
5669
|
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
5473
5670
|
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
5474
5671
|
] })
|
|
5475
|
-
] }), $[
|
|
5672
|
+
] }), $[47] = IconComponent, $[48] = IconRightComponent, $[49] = fontSize2, $[50] = hotkeys, $[51] = hotkeysFontSize, $[52] = paddingProps, $[53] = space, $[54] = text, $[55] = t20) : t20 = $[55];
|
|
5673
|
+
let t21;
|
|
5674
|
+
$[56] !== children || $[57] !== paddingProps ? (t21 = children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...paddingProps, children }), $[56] = children, $[57] = paddingProps, $[58] = t21) : t21 = $[58];
|
|
5476
5675
|
let t22;
|
|
5477
|
-
$[
|
|
5478
|
-
|
|
5479
|
-
|
|
5480
|
-
|
|
5481
|
-
t22
|
|
5482
|
-
] }), $[56] = as, $[57] = disabled, $[58] = handleClick, $[59] = onItemMouseEnter, $[60] = onItemMouseLeave, $[61] = restProps, $[62] = scheme, $[63] = t14, $[64] = t15, $[65] = t16, $[66] = t17, $[67] = t18, $[68] = t19, $[69] = t20, $[70] = t21, $[71] = t22, $[72] = t23) : t23 = $[72], t23;
|
|
5676
|
+
return $[59] !== as || $[60] !== disabled || $[61] !== handleClick || $[62] !== onItemMouseEnter || $[63] !== onItemMouseLeave || $[64] !== restProps || $[65] !== scheme || $[66] !== t13 || $[67] !== t14 || $[68] !== t15 || $[69] !== t16 || $[70] !== t18 || $[71] !== t19 || $[72] !== t20 || $[73] !== t21 ? (t22 = /* @__PURE__ */ jsxRuntime.jsxs(Selectable, { "data-ui": "MenuItem", role: "menuitem", ...restProps, "data-pressed": t13, "data-selected": t14, "data-disabled": t15, forwardedAs: as, $radius: t16, $padding: t17, $tone: t18, $scheme: scheme, disabled, onClick: handleClick, onMouseEnter: onItemMouseEnter, onMouseLeave: onItemMouseLeave, ref: setRef, tabIndex: -1, type: t19, children: [
|
|
5677
|
+
t20,
|
|
5678
|
+
t21
|
|
5679
|
+
] }), $[59] = as, $[60] = disabled, $[61] = handleClick, $[62] = onItemMouseEnter, $[63] = onItemMouseLeave, $[64] = restProps, $[65] = scheme, $[66] = t13, $[67] = t14, $[68] = t15, $[69] = t16, $[70] = t18, $[71] = t19, $[72] = t20, $[73] = t21, $[74] = t22) : t22 = $[74], t22;
|
|
5483
5680
|
});
|
|
5484
5681
|
MenuItem.displayName = "ForwardRef(MenuItem)";
|
|
5485
5682
|
function _temp(s) {
|
|
@@ -5642,7 +5839,6 @@ exports.rgbToHsl = rgbToHsl;
|
|
|
5642
5839
|
exports.rgba = rgba;
|
|
5643
5840
|
exports.screen = screen;
|
|
5644
5841
|
exports.studioTheme = studioTheme;
|
|
5645
|
-
exports.useArrayProp = useArrayProp;
|
|
5646
5842
|
exports.useBoundaryElement = useBoundaryElement;
|
|
5647
5843
|
exports.useClickOutsideEvent = useClickOutsideEvent;
|
|
5648
5844
|
exports.useCustomValidity = useCustomValidity;
|