@sanity/ui 3.0.12-canary.2 → 3.0.13
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 +656 -852
- package/dist/_chunks-cjs/_visual-editing.js.map +1 -1
- package/dist/_chunks-es/_visual-editing.mjs +658 -854
- 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 +144 -183
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +145 -184
- package/dist/index.mjs.map +1 -1
- package/package.json +40 -26
- package/src/core/components/autocomplete/autocomplete.tsx +14 -10
- package/src/core/components/breadcrumbs/breadcrumbs.tsx +2 -3
- package/src/core/components/dialog/dialog.tsx +14 -10
- 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 -5
- package/src/core/components/tree/tree.tsx +1 -0
- package/src/core/hooks/index.ts +1 -1
- package/src/core/hooks/useArrayProp.ts +17 -5
- package/src/core/hooks/useClickOutside.ts +1 -0
- package/src/core/primitives/avatar/avatar.tsx +17 -14
- package/src/core/primitives/avatar/avatarCounter.tsx +16 -14
- package/src/core/primitives/avatar/avatarStack.tsx +2 -2
- 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 -11
- package/src/core/primitives/card/card.tsx +8 -8
- package/src/core/primitives/code/code.tsx +2 -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 +6 -7
- package/src/core/primitives/select/select.tsx +5 -6
- 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 +5 -6
- package/src/core/primitives/textInput/textInput.tsx +5 -6
- package/src/core/primitives/tooltip/tooltip.tsx +3 -3
- package/src/core/utils/layer/layerProvider.tsx +2 -3
- package/src/core/utils/virtualList/virtualList.tsx +2 -0
|
@@ -189,6 +189,125 @@ 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
|
+
}
|
|
192
311
|
function getGlobalScope() {
|
|
193
312
|
if (typeof globalThis < "u") return globalThis;
|
|
194
313
|
if (typeof window < "u") return window;
|
|
@@ -269,6 +388,75 @@ function useTheme_v2() {
|
|
|
269
388
|
let t1;
|
|
270
389
|
return $[0] !== t0 ? (t1 = theme.getTheme_v2(t0), $[0] = t0, $[1] = t1) : t1 = $[1], t1;
|
|
271
390
|
}
|
|
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
|
+
}
|
|
272
460
|
function responsiveBorderStyle() {
|
|
273
461
|
return [border, borderTop, borderRight, borderBottom, borderLeft];
|
|
274
462
|
}
|
|
@@ -982,7 +1170,7 @@ const StyledLabel = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
982
1170
|
displayName: "StyledLabel",
|
|
983
1171
|
componentId: "sc-1luap7z-0"
|
|
984
1172
|
})(responsiveLabelFont, responsiveTextAlignStyle, labelBaseStyle), Label = react.forwardRef(function(props, ref) {
|
|
985
|
-
const $ = reactCompilerRuntime.c(
|
|
1173
|
+
const $ = reactCompilerRuntime.c(22);
|
|
986
1174
|
let accent, align, childrenProp, restProps, t0, t1, textOverflow, weight;
|
|
987
1175
|
$[0] !== props ? ({
|
|
988
1176
|
accent,
|
|
@@ -1003,12 +1191,9 @@ const StyledLabel = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1003
1191
|
let t22;
|
|
1004
1192
|
$[11] !== children ? (t22 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[11] = children, $[12] = t22) : t22 = $[12], children = t22;
|
|
1005
1193
|
}
|
|
1006
|
-
|
|
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];
|
|
1194
|
+
const t2 = useArrayProp(align), t3 = useArrayProp(size2);
|
|
1010
1195
|
let t4;
|
|
1011
|
-
return $[
|
|
1196
|
+
return $[13] !== accent || $[14] !== children || $[15] !== muted || $[16] !== ref || $[17] !== restProps || $[18] !== t2 || $[19] !== t3 || $[20] !== weight ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(StyledLabel, { "data-ui": "Label", ...restProps, $accent: accent, $align: t2, $muted: muted, $size: t3, $weight: weight, ref, children }), $[13] = accent, $[14] = children, $[15] = muted, $[16] = ref, $[17] = restProps, $[18] = t2, $[19] = t3, $[20] = weight, $[21] = t4) : t4 = $[21], t4;
|
|
1012
1197
|
});
|
|
1013
1198
|
Label.displayName = "ForwardRef(Label)";
|
|
1014
1199
|
const avatarStyle = {
|
|
@@ -1178,7 +1363,7 @@ const StyledAvatar = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1178
1363
|
displayName: "AvatarImage",
|
|
1179
1364
|
componentId: "sc-1rj7kl0-6"
|
|
1180
1365
|
})(avatarStyle.image), Avatar = react.forwardRef(function(props, ref) {
|
|
1181
|
-
const $ = reactCompilerRuntime.c(
|
|
1366
|
+
const $ = reactCompilerRuntime.c(52);
|
|
1182
1367
|
let __unstable_hideInnerStroke, animateArrowFrom, arrowPositionProp, asProp, initials, onImageLoadError, restProps, src, t0, t1, t2, title;
|
|
1183
1368
|
$[0] !== props ? ({
|
|
1184
1369
|
__unstable_hideInnerStroke,
|
|
@@ -1196,7 +1381,7 @@ const StyledAvatar = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1196
1381
|
} = 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]);
|
|
1197
1382
|
const color = t0 === void 0 ? "gray" : t0, status = t1 === void 0 ? "online" : t1, sizeProp = t2 === void 0 ? 1 : t2, {
|
|
1198
1383
|
avatar
|
|
1199
|
-
} = useTheme_v2(), as = ReactIs__default.default.isValidElementType(asProp) ? asProp : "div", size2 =
|
|
1384
|
+
} = useTheme_v2(), as = ReactIs__default.default.isValidElementType(asProp) ? asProp : "div", size2 = useArrayProp(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}`;
|
|
1200
1385
|
let t3, t4;
|
|
1201
1386
|
$[13] !== arrowPosition || $[14] !== arrowPositionProp ? (t3 = () => {
|
|
1202
1387
|
if (arrowPosition === arrowPositionProp)
|
|
@@ -1212,26 +1397,30 @@ const StyledAvatar = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1212
1397
|
$[20] !== onImageLoadError ? (t7 = () => {
|
|
1213
1398
|
setImageFailed(!0), onImageLoadError && onImageLoadError(new Error("Avatar: the image failed to load"));
|
|
1214
1399
|
}, $[20] = onImageLoadError, $[21] = t7) : t7 = $[21];
|
|
1215
|
-
const handleImageError = t7
|
|
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;
|
|
1216
1404
|
let t10;
|
|
1217
|
-
$[
|
|
1405
|
+
$[24] !== 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 }) }) }), $[24] = color, $[25] = t10) : t10 = $[25];
|
|
1218
1406
|
let t11;
|
|
1219
|
-
$[
|
|
1407
|
+
$[26] !== __unstable_hideInnerStroke || $[27] !== _radius || $[28] !== _sizeRem || $[29] !== handleImageError || $[30] !== imageFailed || $[31] !== imageId || $[32] !== src ? (t11 = !imageFailed && src && /* @__PURE__ */ jsxRuntime.jsxs(AvatarImage, { viewBox: `0 0 ${_sizeRem} ${_sizeRem}`, fill: "none", children: [
|
|
1220
1408
|
/* @__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 }) }) }),
|
|
1221
1409
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: _radius, cy: _radius, r: _radius, fill: `url(#${imageId})` }),
|
|
1222
1410
|
!__unstable_hideInnerStroke && /* @__PURE__ */ jsxRuntime.jsx(BgStroke, { cx: _radius, cy: _radius, rx: _radius, ry: _radius, vectorEffect: "non-scaling-stroke" }),
|
|
1223
1411
|
/* @__PURE__ */ jsxRuntime.jsx(Stroke, { cx: _radius, cy: _radius, rx: _radius, ry: _radius, vectorEffect: "non-scaling-stroke" })
|
|
1224
|
-
] }), $[
|
|
1225
|
-
|
|
1412
|
+
] }), $[26] = __unstable_hideInnerStroke, $[27] = _radius, $[28] = _sizeRem, $[29] = handleImageError, $[30] = imageFailed, $[31] = imageId, $[32] = src, $[33] = t11) : t11 = $[33];
|
|
1413
|
+
let t12;
|
|
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];
|
|
1226
1415
|
let t13;
|
|
1227
|
-
return $[
|
|
1416
|
+
return $[39] !== arrowPosition || $[40] !== as || $[41] !== color || $[42] !== ref || $[43] !== restProps || $[44] !== size2 || $[45] !== status || $[46] !== t10 || $[47] !== t11 || $[48] !== t12 || $[49] !== t9 || $[50] !== title ? (t13 = /* @__PURE__ */ jsxRuntime.jsxs(StyledAvatar, { as, "data-as": t9, "data-ui": "Avatar", ...restProps, $color: color, $size: size2, "aria-label": title, "data-arrow-position": arrowPosition, "data-status": status, ref, title, children: [
|
|
1228
1417
|
t10,
|
|
1229
1418
|
t11,
|
|
1230
1419
|
t12
|
|
1231
|
-
] }), $[
|
|
1420
|
+
] }), $[39] = arrowPosition, $[40] = as, $[41] = color, $[42] = ref, $[43] = restProps, $[44] = size2, $[45] = status, $[46] = t10, $[47] = t11, $[48] = t12, $[49] = t9, $[50] = title, $[51] = t13) : t13 = $[51], t13;
|
|
1232
1421
|
});
|
|
1233
1422
|
Avatar.displayName = "ForwardRef(Avatar)";
|
|
1234
|
-
function _temp$
|
|
1423
|
+
function _temp$7(s) {
|
|
1235
1424
|
return s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0;
|
|
1236
1425
|
}
|
|
1237
1426
|
function _responsiveAvatarCounterSizeStyle(props) {
|
|
@@ -1274,23 +1463,20 @@ const StyledAvatarCounter = /* @__PURE__ */ styledComponents.styled.div.withConf
|
|
|
1274
1463
|
displayName: "StyledAvatarCounter",
|
|
1275
1464
|
componentId: "sc-1ydx86y-0"
|
|
1276
1465
|
})(_responsiveAvatarCounterSizeStyle, _avatarCounterBaseStyle), AvatarCounter = react.forwardRef(function(props, ref) {
|
|
1277
|
-
const $ = reactCompilerRuntime.c(
|
|
1466
|
+
const $ = reactCompilerRuntime.c(9), {
|
|
1278
1467
|
count,
|
|
1279
1468
|
size: t0
|
|
1280
|
-
} = props,
|
|
1281
|
-
let
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
|
|
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;
|
|
1469
|
+
} = props, size2 = useArrayProp(t0 === void 0 ? 1 : t0);
|
|
1470
|
+
let t1;
|
|
1471
|
+
$[0] !== size2 ? (t1 = size2.map(_temp$6), $[0] = size2, $[1] = t1) : t1 = $[1];
|
|
1472
|
+
const fontSize2 = t1;
|
|
1473
|
+
let t2;
|
|
1474
|
+
$[2] !== count || $[3] !== fontSize2 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(Label, { as: "span", size: fontSize2, weight: "medium", children: count }), $[2] = count, $[3] = fontSize2, $[4] = t2) : t2 = $[4];
|
|
1475
|
+
let t3;
|
|
1476
|
+
return $[5] !== ref || $[6] !== size2 || $[7] !== t2 ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(StyledAvatarCounter, { $size: size2, "data-ui": "AvatarCounter", ref, children: t2 }), $[5] = ref, $[6] = size2, $[7] = t2, $[8] = t3) : t3 = $[8], t3;
|
|
1291
1477
|
});
|
|
1292
1478
|
AvatarCounter.displayName = "ForwardRef(AvatarCounter)";
|
|
1293
|
-
function _temp$
|
|
1479
|
+
function _temp$6(s) {
|
|
1294
1480
|
return s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0;
|
|
1295
1481
|
}
|
|
1296
1482
|
const BASE_STYLES = styledComponents.css`
|
|
@@ -1325,7 +1511,7 @@ const StyledAvatarStack = /* @__PURE__ */ styledComponents.styled.div.withConfig
|
|
|
1325
1511
|
displayName: "StyledAvatarStack",
|
|
1326
1512
|
componentId: "sc-cysmbb-0"
|
|
1327
1513
|
})(responsiveAvatarStackSizeStyle, avatarStackStyle), AvatarStack = react.forwardRef(function(props, ref) {
|
|
1328
|
-
const $ = reactCompilerRuntime.c(
|
|
1514
|
+
const $ = reactCompilerRuntime.c(22);
|
|
1329
1515
|
let childrenProp, restProps, t0, t1;
|
|
1330
1516
|
$[0] !== props ? ({
|
|
1331
1517
|
children: childrenProp,
|
|
@@ -1333,33 +1519,29 @@ const StyledAvatarStack = /* @__PURE__ */ styledComponents.styled.div.withConfig
|
|
|
1333
1519
|
size: t1,
|
|
1334
1520
|
...restProps
|
|
1335
1521
|
} = props, $[0] = props, $[1] = childrenProp, $[2] = restProps, $[3] = t0, $[4] = t1) : (childrenProp = $[1], restProps = $[2], t0 = $[3], t1 = $[4]);
|
|
1336
|
-
const maxLengthProp = t0 === void 0 ? 4 : t0, sizeProp = t1 === void 0 ? 1 : t1;
|
|
1337
|
-
let
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
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;
|
|
1522
|
+
const maxLengthProp = t0 === void 0 ? 4 : t0, sizeProp = t1 === void 0 ? 1 : t1, children = react.Children.toArray(childrenProp).filter(react.isValidElement), maxLength = Math.max(maxLengthProp, 0), size2 = useArrayProp(sizeProp), len = children.length, visibleCount = maxLength - 1, extraCount = len - visibleCount, visibleChildren = extraCount > 1 ? children.slice(extraCount, len) : children, T0 = StyledAvatarStack, t2 = "AvatarStack";
|
|
1523
|
+
let t3;
|
|
1524
|
+
$[5] !== len || $[6] !== size2 ? (t3 = len === 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: len, size: size2 }) }), $[5] = len, $[6] = size2, $[7] = t3) : t3 = $[7];
|
|
1525
|
+
let t4;
|
|
1526
|
+
$[8] !== extraCount || $[9] !== len || $[10] !== size2 ? (t4 = len !== 0 && extraCount > 1 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: extraCount, size: size2 }) }), $[8] = extraCount, $[9] = len, $[10] = size2, $[11] = t4) : t4 = $[11];
|
|
1527
|
+
let t5;
|
|
1528
|
+
$[12] !== size2 ? (t5 = (child, childIndex) => /* @__PURE__ */ jsxRuntime.jsx("div", { children: react.cloneElement(child, {
|
|
1529
|
+
size: size2
|
|
1530
|
+
}) }, String(childIndex)), $[12] = size2, $[13] = t5) : t5 = $[13];
|
|
1531
|
+
const t6 = visibleChildren.map(t5);
|
|
1532
|
+
let t7;
|
|
1533
|
+
return $[14] !== T0 || $[15] !== ref || $[16] !== restProps || $[17] !== size2 || $[18] !== t3 || $[19] !== t4 || $[20] !== t6 ? (t7 = /* @__PURE__ */ jsxRuntime.jsxs(T0, { "data-ui": t2, ...restProps, ref, $size: size2, children: [
|
|
1534
|
+
t3,
|
|
1535
|
+
t4,
|
|
1536
|
+
t6
|
|
1537
|
+
] }), $[14] = T0, $[15] = ref, $[16] = restProps, $[17] = size2, $[18] = t3, $[19] = t4, $[20] = t6, $[21] = t7) : t7 = $[21], t7;
|
|
1356
1538
|
});
|
|
1357
1539
|
AvatarStack.displayName = "ForwardRef(AvatarStack)";
|
|
1358
1540
|
const StyledBox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
1359
1541
|
displayName: "StyledBox",
|
|
1360
1542
|
componentId: "sc-1hhky9f-0"
|
|
1361
1543
|
})(boxStyle, flexItemStyle, responsiveBoxStyle, responsiveGridItemStyle, responsiveMarginStyle, responsivePaddingStyle), Box = react.forwardRef(function(props, ref) {
|
|
1362
|
-
const $ = reactCompilerRuntime.c(
|
|
1544
|
+
const $ = reactCompilerRuntime.c(59);
|
|
1363
1545
|
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;
|
|
1364
1546
|
$[0] !== props ? ({
|
|
1365
1547
|
as: t0,
|
|
@@ -1390,59 +1572,9 @@ const StyledBox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1390
1572
|
sizing,
|
|
1391
1573
|
...restProps
|
|
1392
1574
|
} = 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]);
|
|
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];
|
|
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, t5 = useArrayProp(column), t6 = useArrayProp(columnStart), t7 = useArrayProp(columnEnd), t8 = useArrayProp(display), t9 = useArrayProp(flex), t10 = useArrayProp(height), t11 = useArrayProp(margin), t12 = useArrayProp(marginX), t13 = useArrayProp(marginY), t14 = useArrayProp(marginTop), t15 = useArrayProp(marginRight), t16 = useArrayProp(marginBottom), t17 = useArrayProp(marginLeft), t18 = useArrayProp(overflow), t19 = useArrayProp(padding), t20 = useArrayProp(paddingX), t21 = useArrayProp(paddingY), t22 = useArrayProp(paddingTop), t23 = useArrayProp(paddingRight), t24 = useArrayProp(paddingBottom), t25 = useArrayProp(paddingLeft), t26 = useArrayProp(row), t27 = useArrayProp(rowStart), t28 = useArrayProp(rowEnd), t29 = useArrayProp(sizing);
|
|
1444
1576
|
let t30;
|
|
1445
|
-
return $[
|
|
1577
|
+
return $[28] !== asProp || $[29] !== props.children || $[30] !== ref || $[31] !== restProps || $[32] !== t10 || $[33] !== t11 || $[34] !== t12 || $[35] !== t13 || $[36] !== t14 || $[37] !== t15 || $[38] !== t16 || $[39] !== t17 || $[40] !== t18 || $[41] !== t19 || $[42] !== t20 || $[43] !== t21 || $[44] !== t22 || $[45] !== t23 || $[46] !== t24 || $[47] !== t25 || $[48] !== t26 || $[49] !== t27 || $[50] !== t28 || $[51] !== t29 || $[52] !== t4 || $[53] !== t5 || $[54] !== t6 || $[55] !== t7 || $[56] !== t8 || $[57] !== 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 }), $[28] = asProp, $[29] = props.children, $[30] = ref, $[31] = restProps, $[32] = t10, $[33] = t11, $[34] = t12, $[35] = t13, $[36] = t14, $[37] = t15, $[38] = t16, $[39] = t17, $[40] = t18, $[41] = t19, $[42] = t20, $[43] = t21, $[44] = t22, $[45] = t23, $[46] = t24, $[47] = t25, $[48] = t26, $[49] = t27, $[50] = t28, $[51] = t29, $[52] = t4, $[53] = t5, $[54] = t6, $[55] = t7, $[56] = t8, $[57] = t9, $[58] = t30) : t30 = $[58], t30;
|
|
1446
1578
|
});
|
|
1447
1579
|
Box.displayName = "ForwardRef(Box)";
|
|
1448
1580
|
function textBaseStyle(props) {
|
|
@@ -1517,7 +1649,7 @@ const StyledText = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1517
1649
|
displayName: "StyledText",
|
|
1518
1650
|
componentId: "sc-11ov82j-0"
|
|
1519
1651
|
})(responsiveTextFont, responsiveTextAlignStyle, textBaseStyle), Text = react.forwardRef(function(props, ref) {
|
|
1520
|
-
const $ = reactCompilerRuntime.c(
|
|
1652
|
+
const $ = reactCompilerRuntime.c(22);
|
|
1521
1653
|
let align, childrenProp, restProps, t0, t1, t2, textOverflow, weight;
|
|
1522
1654
|
$[0] !== props ? ({
|
|
1523
1655
|
accent: t0,
|
|
@@ -1535,14 +1667,11 @@ const StyledText = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1535
1667
|
let t32;
|
|
1536
1668
|
$[9] !== children ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }), $[9] = children, $[10] = t32) : t32 = $[10], children = t32;
|
|
1537
1669
|
}
|
|
1538
|
-
|
|
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];
|
|
1670
|
+
const t3 = useArrayProp(align), t4 = useArrayProp(size2);
|
|
1542
1671
|
let t5;
|
|
1543
|
-
$[
|
|
1672
|
+
$[11] !== children ? (t5 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[11] = children, $[12] = t5) : t5 = $[12];
|
|
1544
1673
|
let t6;
|
|
1545
|
-
return $[
|
|
1674
|
+
return $[13] !== accent || $[14] !== muted || $[15] !== ref || $[16] !== restProps || $[17] !== t3 || $[18] !== t4 || $[19] !== t5 || $[20] !== weight ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledText, { "data-ui": "Text", ...restProps, $accent: accent, $align: t3, $muted: muted, ref, $size: t4, $weight: weight, children: t5 }), $[13] = accent, $[14] = muted, $[15] = ref, $[16] = restProps, $[17] = t3, $[18] = t4, $[19] = t5, $[20] = weight, $[21] = t6) : t6 = $[21], t6;
|
|
1546
1675
|
});
|
|
1547
1676
|
Text.displayName = "ForwardRef(Text)";
|
|
1548
1677
|
function badgeStyle(props) {
|
|
@@ -1564,7 +1693,7 @@ const StyledBadge = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
1564
1693
|
displayName: "StyledBadge",
|
|
1565
1694
|
componentId: "sc-5u140l-0"
|
|
1566
1695
|
})(responsiveRadiusStyle, badgeStyle), Badge = react.forwardRef(function(props, ref) {
|
|
1567
|
-
const $ = reactCompilerRuntime.c(
|
|
1696
|
+
const $ = reactCompilerRuntime.c(17);
|
|
1568
1697
|
let children, restProps, t0, t1, t2, t3;
|
|
1569
1698
|
if ($[0] !== props) {
|
|
1570
1699
|
const {
|
|
@@ -1579,22 +1708,18 @@ const StyledBadge = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
1579
1708
|
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;
|
|
1580
1709
|
} else
|
|
1581
1710
|
children = $[1], restProps = $[2], t0 = $[3], t1 = $[4], t2 = $[5], t3 = $[6];
|
|
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];
|
|
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, t4 = useArrayProp(radius), t5 = useArrayProp(padding);
|
|
1587
1712
|
let t6;
|
|
1588
|
-
$[
|
|
1713
|
+
$[7] !== children || $[8] !== fontSize2 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children }), $[7] = children, $[8] = fontSize2, $[9] = t6) : t6 = $[9];
|
|
1589
1714
|
let t7;
|
|
1590
|
-
return $[
|
|
1715
|
+
return $[10] !== ref || $[11] !== restProps || $[12] !== t4 || $[13] !== t5 || $[14] !== t6 || $[15] !== tone ? (t7 = /* @__PURE__ */ jsxRuntime.jsx(StyledBadge, { "data-ui": "Badge", ...restProps, $tone: tone, $radius: t4, padding: t5, ref, children: t6 }), $[10] = ref, $[11] = restProps, $[12] = t4, $[13] = t5, $[14] = t6, $[15] = tone, $[16] = t7) : t7 = $[16], t7;
|
|
1591
1716
|
});
|
|
1592
1717
|
Badge.displayName = "ForwardRef(Badge)";
|
|
1593
1718
|
const StyledFlex = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
1594
1719
|
displayName: "StyledFlex",
|
|
1595
1720
|
componentId: "sc-oxesg3-0"
|
|
1596
1721
|
})(flexItemStyle, responsiveFlexStyle), Flex = react.forwardRef(function(props, ref) {
|
|
1597
|
-
const $ = reactCompilerRuntime.c(
|
|
1722
|
+
const $ = reactCompilerRuntime.c(17);
|
|
1598
1723
|
let align, as, gap, justify, restProps, t0, wrap;
|
|
1599
1724
|
$[0] !== props ? ({
|
|
1600
1725
|
align,
|
|
@@ -1605,19 +1730,9 @@ const StyledFlex = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
1605
1730
|
wrap,
|
|
1606
1731
|
...restProps
|
|
1607
1732
|
} = 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]);
|
|
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];
|
|
1733
|
+
const direction = t0 === void 0 ? "row" : t0, t1 = useArrayProp(align), t2 = useArrayProp(direction), t3 = useArrayProp(gap), t4 = useArrayProp(justify), t5 = useArrayProp(wrap);
|
|
1619
1734
|
let t6;
|
|
1620
|
-
return $[
|
|
1735
|
+
return $[8] !== as || $[9] !== ref || $[10] !== restProps || $[11] !== t1 || $[12] !== t2 || $[13] !== t3 || $[14] !== t4 || $[15] !== t5 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledFlex, { "data-ui": "Flex", ...restProps, $align: t1, $direction: t2, $gap: t3, $justify: t4, $wrap: t5, forwardedAs: as, ref }), $[8] = as, $[9] = ref, $[10] = restProps, $[11] = t1, $[12] = t2, $[13] = t3, $[14] = t4, $[15] = t5, $[16] = t6) : t6 = $[16], t6;
|
|
1621
1736
|
});
|
|
1622
1737
|
Flex.displayName = "ForwardRef(Flex)";
|
|
1623
1738
|
const rotate = styledComponents.keyframes`
|
|
@@ -1814,7 +1929,7 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1814
1929
|
displayName: "LoadingBox",
|
|
1815
1930
|
componentId: "sc-aaekt4-1"
|
|
1816
1931
|
})`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) {
|
|
1817
|
-
const $ = reactCompilerRuntime.c(
|
|
1932
|
+
const $ = reactCompilerRuntime.c(66);
|
|
1818
1933
|
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;
|
|
1819
1934
|
$[0] !== props ? ({
|
|
1820
1935
|
children,
|
|
@@ -1846,39 +1961,9 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1846
1961
|
} = 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]);
|
|
1847
1962
|
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, {
|
|
1848
1963
|
button
|
|
1849
|
-
} = useTheme_v2();
|
|
1964
|
+
} = useTheme_v2(), justify = useArrayProp(justifyProp), padding = useArrayProp(paddingProp), paddingX = useArrayProp(paddingXProp), paddingY = useArrayProp(paddingYProp), paddingTop = useArrayProp(paddingTopProp), paddingBottom = useArrayProp(paddingBottomProp), paddingLeft = useArrayProp(paddingLeftProp), paddingRight = useArrayProp(paddingRightProp), radius = useArrayProp(radiusProp), space = useArrayProp(spaceProp);
|
|
1850
1965
|
let t9;
|
|
1851
|
-
$[27] !==
|
|
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 = {
|
|
1966
|
+
$[27] !== padding || $[28] !== paddingBottom || $[29] !== paddingLeft || $[30] !== paddingRight || $[31] !== paddingTop || $[32] !== paddingX || $[33] !== paddingY ? (t9 = {
|
|
1882
1967
|
padding,
|
|
1883
1968
|
paddingX,
|
|
1884
1969
|
paddingY,
|
|
@@ -1886,12 +1971,12 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1886
1971
|
paddingBottom,
|
|
1887
1972
|
paddingLeft,
|
|
1888
1973
|
paddingRight
|
|
1889
|
-
}, $[
|
|
1890
|
-
const boxProps =
|
|
1891
|
-
let
|
|
1892
|
-
$[
|
|
1893
|
-
let
|
|
1894
|
-
$[
|
|
1974
|
+
}, $[27] = padding, $[28] = paddingBottom, $[29] = paddingLeft, $[30] = paddingRight, $[31] = paddingTop, $[32] = paddingX, $[33] = paddingY, $[34] = t9) : t9 = $[34];
|
|
1975
|
+
const boxProps = t9, t10 = !!(loading || disabled), t11 = selected ? "" : void 0, t12 = !!(loading || disabled);
|
|
1976
|
+
let t13;
|
|
1977
|
+
$[35] !== loading ? (t13 = !!loading && /* @__PURE__ */ jsxRuntime.jsx(LoadingBox, { children: /* @__PURE__ */ jsxRuntime.jsx(Spinner, {}) }), $[35] = loading, $[36] = t13) : t13 = $[36];
|
|
1978
|
+
let t14;
|
|
1979
|
+
$[37] !== IconComponent || $[38] !== IconRightComponent || $[39] !== boxProps || $[40] !== button || $[41] !== fontSize2 || $[42] !== justify || $[43] !== muted || $[44] !== space || $[45] !== text || $[46] !== textAlign || $[47] !== textWeight ? (t14 = (IconComponent || text || IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...boxProps, children: /* @__PURE__ */ jsxRuntime.jsxs(Flex, { as: "span", justify, gap: space, children: [
|
|
1895
1980
|
IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
1896
1981
|
react.isValidElement(IconComponent) && IconComponent,
|
|
1897
1982
|
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
@@ -1901,15 +1986,15 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1901
1986
|
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
1902
1987
|
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
1903
1988
|
] })
|
|
1904
|
-
] }) }), $[
|
|
1905
|
-
let
|
|
1906
|
-
$[
|
|
1907
|
-
let
|
|
1908
|
-
return $[
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
] }), $[
|
|
1989
|
+
] }) }), $[37] = IconComponent, $[38] = IconRightComponent, $[39] = boxProps, $[40] = button, $[41] = fontSize2, $[42] = justify, $[43] = muted, $[44] = space, $[45] = text, $[46] = textAlign, $[47] = textWeight, $[48] = t14) : t14 = $[48];
|
|
1990
|
+
let t15;
|
|
1991
|
+
$[49] !== boxProps || $[50] !== children ? (t15 = children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...boxProps, children }), $[49] = boxProps, $[50] = children, $[51] = t15) : t15 = $[51];
|
|
1992
|
+
let t16;
|
|
1993
|
+
return $[52] !== mode || $[53] !== radius || $[54] !== ref || $[55] !== restProps || $[56] !== t10 || $[57] !== t11 || $[58] !== t12 || $[59] !== t13 || $[60] !== t14 || $[61] !== t15 || $[62] !== tone || $[63] !== type || $[64] !== width ? (t16 = /* @__PURE__ */ jsxRuntime.jsxs(StyledButton, { "data-ui": "Button", ...restProps, $mode: mode, $radius: radius, $tone: tone, "data-disabled": t10, "data-selected": t11, disabled: t12, ref, type, $width: width, children: [
|
|
1994
|
+
t13,
|
|
1995
|
+
t14,
|
|
1996
|
+
t15
|
|
1997
|
+
] }), $[52] = mode, $[53] = radius, $[54] = ref, $[55] = restProps, $[56] = t10, $[57] = t11, $[58] = t12, $[59] = t13, $[60] = t14, $[61] = t15, $[62] = tone, $[63] = type, $[64] = width, $[65] = t16) : t16 = $[65], t16;
|
|
1913
1998
|
});
|
|
1914
1999
|
Button.displayName = "ForwardRef(Button)";
|
|
1915
2000
|
function cardStyle(props) {
|
|
@@ -2007,286 +2092,90 @@ function cardColorStyle(props) {
|
|
|
2007
2092
|
}
|
|
2008
2093
|
|
|
2009
2094
|
&:focus-visible {
|
|
2010
|
-
--card-focus-ring-box-shadow: ${$focusRing ? focusRingStyle({
|
|
2011
|
-
base: color,
|
|
2012
|
-
border: border2,
|
|
2013
|
-
focusRing: card.focusRing
|
|
2014
|
-
}) : void 0};
|
|
2015
|
-
}
|
|
2016
|
-
}
|
|
2017
|
-
}
|
|
2018
|
-
|
|
2019
|
-
/* &:is(a) */
|
|
2020
|
-
&[data-as='a'] {
|
|
2021
|
-
cursor: pointer;
|
|
2022
|
-
box-shadow: var(--card-focus-ring-box-shadow);
|
|
2023
|
-
|
|
2024
|
-
&[data-disabled] {
|
|
2025
|
-
${_cardColorStyle(color, color.selectable.default.disabled, $checkered)}
|
|
2026
|
-
}
|
|
2027
|
-
|
|
2028
|
-
&:not([data-disabled]) {
|
|
2029
|
-
&[data-pressed] {
|
|
2030
|
-
${_cardColorStyle(color, color.selectable.default.pressed, $checkered)}
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
|
-
&[data-selected] {
|
|
2034
|
-
${_cardColorStyle(color, color.selectable.default.selected, $checkered)}
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
@media (hover: hover) {
|
|
2038
|
-
&:not([data-pressed]):not([data-selected]) {
|
|
2039
|
-
&[data-hovered],
|
|
2040
|
-
&:hover {
|
|
2041
|
-
${_cardColorStyle(color, color.selectable.default.hovered, $checkered)}
|
|
2042
|
-
}
|
|
2043
|
-
|
|
2044
|
-
&:active {
|
|
2045
|
-
${_cardColorStyle(color, color.selectable.default.pressed, $checkered)}
|
|
2046
|
-
}
|
|
2047
|
-
}
|
|
2048
|
-
}
|
|
2049
|
-
|
|
2050
|
-
&:focus-visible {
|
|
2051
|
-
--card-focus-ring-box-shadow: ${$focusRing ? focusRingStyle({
|
|
2052
|
-
base: color,
|
|
2053
|
-
border: border2,
|
|
2054
|
-
focusRing: card.focusRing
|
|
2055
|
-
}) : void 0};
|
|
2056
|
-
}
|
|
2057
|
-
}
|
|
2058
|
-
}
|
|
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));
|
|
2095
|
+
--card-focus-ring-box-shadow: ${$focusRing ? focusRingStyle({
|
|
2096
|
+
base: color,
|
|
2097
|
+
border: border2,
|
|
2098
|
+
focusRing: card.focusRing
|
|
2099
|
+
}) : void 0};
|
|
2100
|
+
}
|
|
2258
2101
|
}
|
|
2259
|
-
return () => {
|
|
2260
|
-
for (const disposeFn of disposeFns)
|
|
2261
|
-
disposeFn();
|
|
2262
|
-
};
|
|
2263
2102
|
}
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
}
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
}
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2103
|
+
|
|
2104
|
+
/* &:is(a) */
|
|
2105
|
+
&[data-as='a'] {
|
|
2106
|
+
cursor: pointer;
|
|
2107
|
+
box-shadow: var(--card-focus-ring-box-shadow);
|
|
2108
|
+
|
|
2109
|
+
&[data-disabled] {
|
|
2110
|
+
${_cardColorStyle(color, color.selectable.default.disabled, $checkered)}
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
&:not([data-disabled]) {
|
|
2114
|
+
&[data-pressed] {
|
|
2115
|
+
${_cardColorStyle(color, color.selectable.default.pressed, $checkered)}
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
&[data-selected] {
|
|
2119
|
+
${_cardColorStyle(color, color.selectable.default.selected, $checkered)}
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
@media (hover: hover) {
|
|
2123
|
+
&:not([data-pressed]):not([data-selected]) {
|
|
2124
|
+
&[data-hovered],
|
|
2125
|
+
&:hover {
|
|
2126
|
+
${_cardColorStyle(color, color.selectable.default.hovered, $checkered)}
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2129
|
+
&:active {
|
|
2130
|
+
${_cardColorStyle(color, color.selectable.default.pressed, $checkered)}
|
|
2131
|
+
}
|
|
2132
|
+
}
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
&:focus-visible {
|
|
2136
|
+
--card-focus-ring-box-shadow: ${$focusRing ? focusRingStyle({
|
|
2137
|
+
base: color,
|
|
2138
|
+
border: border2,
|
|
2139
|
+
focusRing: card.focusRing
|
|
2140
|
+
}) : void 0};
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
${style?.card?.root}
|
|
2146
|
+
`;
|
|
2289
2147
|
}
|
|
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)";
|
|
2290
2179
|
function checkboxBaseStyles() {
|
|
2291
2180
|
return styledComponents.css`
|
|
2292
2181
|
position: relative;
|
|
@@ -2620,7 +2509,7 @@ const LazyRefractor = react.lazy(() => Promise.resolve().then(function() {
|
|
|
2620
2509
|
displayName: "StyledCode",
|
|
2621
2510
|
componentId: "sc-4dymyn-0"
|
|
2622
2511
|
})(codeBaseStyle, responsiveCodeFontStyle), Code = react.forwardRef(function(props, ref) {
|
|
2623
|
-
const $ = reactCompilerRuntime.c(
|
|
2512
|
+
const $ = reactCompilerRuntime.c(20);
|
|
2624
2513
|
let children, language, restProps, t0, weight;
|
|
2625
2514
|
$[0] !== props ? ({
|
|
2626
2515
|
children,
|
|
@@ -2629,17 +2518,15 @@ const LazyRefractor = react.lazy(() => Promise.resolve().then(function() {
|
|
|
2629
2518
|
weight,
|
|
2630
2519
|
...restProps
|
|
2631
2520
|
} = props, $[0] = props, $[1] = children, $[2] = language, $[3] = restProps, $[4] = t0, $[5] = weight) : (children = $[1], language = $[2], restProps = $[3], t0 = $[4], weight = $[5]);
|
|
2632
|
-
const
|
|
2633
|
-
let t1;
|
|
2634
|
-
$[6] !== size2 ? (t1 = _getArrayProp(size2), $[6] = size2, $[7] = t1) : t1 = $[7];
|
|
2521
|
+
const t1 = useArrayProp(t0 === void 0 ? 2 : t0);
|
|
2635
2522
|
let t2;
|
|
2636
|
-
$[
|
|
2523
|
+
$[6] !== children ? (t2 = /* @__PURE__ */ jsxRuntime.jsx("code", { children }), $[6] = children, $[7] = t2) : t2 = $[7];
|
|
2637
2524
|
let t3;
|
|
2638
|
-
$[
|
|
2525
|
+
$[8] !== children || $[9] !== language ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(LazyRefractor, { language, value: children }), $[8] = children, $[9] = language, $[10] = t3) : t3 = $[10];
|
|
2639
2526
|
let t4;
|
|
2640
|
-
$[
|
|
2527
|
+
$[11] !== t2 || $[12] !== t3 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(react.Suspense, { fallback: t2, children: t3 }), $[11] = t2, $[12] = t3, $[13] = t4) : t4 = $[13];
|
|
2641
2528
|
let t5;
|
|
2642
|
-
return $[
|
|
2529
|
+
return $[14] !== ref || $[15] !== restProps || $[16] !== t1 || $[17] !== t4 || $[18] !== weight ? (t5 = /* @__PURE__ */ jsxRuntime.jsx(StyledCode, { "data-ui": "Code", ...restProps, $size: t1, $weight: weight, ref, children: t4 }), $[14] = ref, $[15] = restProps, $[16] = t1, $[17] = t4, $[18] = weight, $[19] = t5) : t5 = $[19], t5;
|
|
2643
2530
|
});
|
|
2644
2531
|
Code.displayName = "ForwardRef(Code)";
|
|
2645
2532
|
const BASE_STYLE$1 = {
|
|
@@ -2662,25 +2549,23 @@ const StyledContainer = /* @__PURE__ */ styledComponents.styled(Box).withConfig(
|
|
|
2662
2549
|
displayName: "StyledContainer",
|
|
2663
2550
|
componentId: "sc-wyroop-0"
|
|
2664
2551
|
})(containerBaseStyle, responsiveContainerWidthStyle), Container = react.forwardRef(function(props, ref) {
|
|
2665
|
-
const $ = reactCompilerRuntime.c(
|
|
2552
|
+
const $ = reactCompilerRuntime.c(9);
|
|
2666
2553
|
let as, restProps, t0;
|
|
2667
2554
|
$[0] !== props ? ({
|
|
2668
2555
|
as,
|
|
2669
2556
|
width: t0,
|
|
2670
2557
|
...restProps
|
|
2671
2558
|
} = props, $[0] = props, $[1] = as, $[2] = restProps, $[3] = t0) : (as = $[1], restProps = $[2], t0 = $[3]);
|
|
2672
|
-
const
|
|
2673
|
-
let t1;
|
|
2674
|
-
$[4] !== width ? (t1 = _getArrayProp(width), $[4] = width, $[5] = t1) : t1 = $[5];
|
|
2559
|
+
const t1 = useArrayProp(t0 === void 0 ? 2 : t0);
|
|
2675
2560
|
let t2;
|
|
2676
|
-
return $[
|
|
2561
|
+
return $[4] !== as || $[5] !== ref || $[6] !== restProps || $[7] !== t1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(StyledContainer, { "data-ui": "Container", ...restProps, $width: t1, forwardedAs: as, ref }), $[4] = as, $[5] = ref, $[6] = restProps, $[7] = t1, $[8] = t2) : t2 = $[8], t2;
|
|
2677
2562
|
});
|
|
2678
2563
|
Container.displayName = "ForwardRef(Container)";
|
|
2679
2564
|
const StyledGrid = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
2680
2565
|
displayName: "StyledGrid",
|
|
2681
2566
|
componentId: "sc-v8t8oz-0"
|
|
2682
2567
|
})(responsiveGridStyle), Grid = react.forwardRef(function(props, ref) {
|
|
2683
|
-
const $ = reactCompilerRuntime.c(
|
|
2568
|
+
const $ = reactCompilerRuntime.c(26);
|
|
2684
2569
|
let as, autoCols, autoFlow, autoRows, children, columns, gap, gapX, gapY, restProps, rows;
|
|
2685
2570
|
$[0] !== props ? ({
|
|
2686
2571
|
as,
|
|
@@ -2695,25 +2580,9 @@ const StyledGrid = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2695
2580
|
children,
|
|
2696
2581
|
...restProps
|
|
2697
2582
|
} = 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]);
|
|
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];
|
|
2583
|
+
const t0 = typeof as == "string" ? as : void 0, t1 = useArrayProp(autoRows), t2 = useArrayProp(autoCols), t3 = useArrayProp(autoFlow), t4 = useArrayProp(columns), t5 = useArrayProp(gap), t6 = useArrayProp(gapX), t7 = useArrayProp(gapY), t8 = useArrayProp(rows);
|
|
2715
2584
|
let t9;
|
|
2716
|
-
return $[
|
|
2585
|
+
return $[12] !== as || $[13] !== children || $[14] !== ref || $[15] !== restProps || $[16] !== t0 || $[17] !== t1 || $[18] !== t2 || $[19] !== t3 || $[20] !== t4 || $[21] !== t5 || $[22] !== t6 || $[23] !== t7 || $[24] !== 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 }), $[12] = as, $[13] = children, $[14] = ref, $[15] = restProps, $[16] = t0, $[17] = t1, $[18] = t2, $[19] = t3, $[20] = t4, $[21] = t5, $[22] = t6, $[23] = t7, $[24] = t8, $[25] = t9) : t9 = $[25], t9;
|
|
2717
2586
|
});
|
|
2718
2587
|
Grid.displayName = "ForwardRef(Grid)";
|
|
2719
2588
|
function headingBaseStyle(props) {
|
|
@@ -2779,7 +2648,7 @@ const StyledHeading = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
2779
2648
|
displayName: "StyledHeading",
|
|
2780
2649
|
componentId: "sc-137lwim-0"
|
|
2781
2650
|
})(headingBaseStyle, responsiveTextAlignStyle, responsiveHeadingFont), Heading = react.forwardRef(function(props, ref) {
|
|
2782
|
-
const $ = reactCompilerRuntime.c(
|
|
2651
|
+
const $ = reactCompilerRuntime.c(22);
|
|
2783
2652
|
let align, childrenProp, restProps, t0, t1, t2, textOverflow, weight;
|
|
2784
2653
|
$[0] !== props ? ({
|
|
2785
2654
|
accent: t0,
|
|
@@ -2797,14 +2666,11 @@ const StyledHeading = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
2797
2666
|
let t32;
|
|
2798
2667
|
$[9] !== children ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }), $[9] = children, $[10] = t32) : t32 = $[10], children = t32;
|
|
2799
2668
|
}
|
|
2800
|
-
|
|
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];
|
|
2669
|
+
const t3 = useArrayProp(align), t4 = useArrayProp(size2);
|
|
2804
2670
|
let t5;
|
|
2805
|
-
$[
|
|
2671
|
+
$[11] !== children ? (t5 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[11] = children, $[12] = t5) : t5 = $[12];
|
|
2806
2672
|
let t6;
|
|
2807
|
-
return $[
|
|
2673
|
+
return $[13] !== accent || $[14] !== muted || $[15] !== ref || $[16] !== restProps || $[17] !== t3 || $[18] !== t4 || $[19] !== t5 || $[20] !== weight ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledHeading, { "data-ui": "Heading", ...restProps, $accent: accent, $align: t3, $muted: muted, $size: t4, $weight: weight, ref, children: t5 }), $[13] = accent, $[14] = muted, $[15] = ref, $[16] = restProps, $[17] = t3, $[18] = t4, $[19] = t5, $[20] = weight, $[21] = t6) : t6 = $[21], t6;
|
|
2808
2674
|
});
|
|
2809
2675
|
Heading.displayName = "ForwardRef(Heading)";
|
|
2810
2676
|
function inlineBaseStyle() {
|
|
@@ -2838,7 +2704,7 @@ const StyledInline = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2838
2704
|
displayName: "StyledInline",
|
|
2839
2705
|
componentId: "sc-1pkiy6j-0"
|
|
2840
2706
|
})(inlineBaseStyle, inlineSpaceStyle), Inline = react.forwardRef(function(props, ref) {
|
|
2841
|
-
const $ = reactCompilerRuntime.c(
|
|
2707
|
+
const $ = reactCompilerRuntime.c(13);
|
|
2842
2708
|
let as, childrenProp, restProps, space;
|
|
2843
2709
|
$[0] !== props ? ({
|
|
2844
2710
|
as,
|
|
@@ -2848,12 +2714,9 @@ const StyledInline = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2848
2714
|
} = props, $[0] = props, $[1] = as, $[2] = childrenProp, $[3] = restProps, $[4] = space) : (as = $[1], childrenProp = $[2], restProps = $[3], space = $[4]);
|
|
2849
2715
|
let t0;
|
|
2850
2716
|
$[5] !== childrenProp ? (t0 = react.Children.map(childrenProp, _temp$5), $[5] = childrenProp, $[6] = t0) : t0 = $[6];
|
|
2851
|
-
const children = t0;
|
|
2852
|
-
let t1;
|
|
2853
|
-
$[7] !== space ? (t1 = _getArrayProp(space), $[7] = space, $[8] = t1) : t1 = $[8];
|
|
2854
|
-
const t2 = ref;
|
|
2717
|
+
const children = t0, t1 = useArrayProp(space), t2 = ref;
|
|
2855
2718
|
let t3;
|
|
2856
|
-
return $[
|
|
2719
|
+
return $[7] !== as || $[8] !== children || $[9] !== restProps || $[10] !== t1 || $[11] !== t2 ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(StyledInline, { "data-ui": "Inline", ...restProps, $space: t1, forwardedAs: as, ref: t2, children }), $[7] = as, $[8] = children, $[9] = restProps, $[10] = t1, $[11] = t2, $[12] = t3) : t3 = $[12], t3;
|
|
2857
2720
|
});
|
|
2858
2721
|
Inline.displayName = "ForwardRef(Inline)";
|
|
2859
2722
|
function _temp$5(child) {
|
|
@@ -2880,7 +2743,7 @@ const StyledKBD = /* @__PURE__ */ styledComponents.styled.kbd.withConfig({
|
|
|
2880
2743
|
displayName: "StyledKBD",
|
|
2881
2744
|
componentId: "sc-1w7yd8w-0"
|
|
2882
2745
|
})(responsiveRadiusStyle, kbdStyle), KBD = react.forwardRef(function(props, ref) {
|
|
2883
|
-
const $ = reactCompilerRuntime.c(
|
|
2746
|
+
const $ = reactCompilerRuntime.c(17);
|
|
2884
2747
|
let children, restProps, t0, t1, t2;
|
|
2885
2748
|
$[0] !== props ? ({
|
|
2886
2749
|
children,
|
|
@@ -2889,15 +2752,13 @@ const StyledKBD = /* @__PURE__ */ styledComponents.styled.kbd.withConfig({
|
|
|
2889
2752
|
radius: t2,
|
|
2890
2753
|
...restProps
|
|
2891
2754
|
} = props, $[0] = props, $[1] = children, $[2] = restProps, $[3] = t0, $[4] = t1, $[5] = t2) : (children = $[1], restProps = $[2], t0 = $[3], t1 = $[4], t2 = $[5]);
|
|
2892
|
-
const fontSize2 = t0 === void 0 ? 0 : t0, padding = t1 === void 0 ? 1 : t1,
|
|
2893
|
-
let t3;
|
|
2894
|
-
$[6] !== radius ? (t3 = _getArrayProp(radius), $[6] = radius, $[7] = t3) : t3 = $[7];
|
|
2755
|
+
const fontSize2 = t0 === void 0 ? 0 : t0, padding = t1 === void 0 ? 1 : t1, t3 = useArrayProp(t2 === void 0 ? 2 : t2);
|
|
2895
2756
|
let t4;
|
|
2896
|
-
$[
|
|
2757
|
+
$[6] !== children || $[7] !== fontSize2 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(Text, { as: "span", size: fontSize2, weight: "semibold", children }), $[6] = children, $[7] = fontSize2, $[8] = t4) : t4 = $[8];
|
|
2897
2758
|
let t5;
|
|
2898
|
-
$[
|
|
2759
|
+
$[9] !== padding || $[10] !== t4 ? (t5 = /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", padding, children: t4 }), $[9] = padding, $[10] = t4, $[11] = t5) : t5 = $[11];
|
|
2899
2760
|
let t6;
|
|
2900
|
-
return $[
|
|
2761
|
+
return $[12] !== ref || $[13] !== restProps || $[14] !== t3 || $[15] !== t5 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledKBD, { "data-ui": "KBD", ...restProps, $radius: t3, ref, children: t5 }), $[12] = ref, $[13] = restProps, $[14] = t3, $[15] = t5, $[16] = t6) : t6 = $[16], t6;
|
|
2901
2762
|
});
|
|
2902
2763
|
KBD.displayName = "ForwardRef(KBD)";
|
|
2903
2764
|
const origin = {
|
|
@@ -3160,21 +3021,18 @@ function getLayerContext(contextValue) {
|
|
|
3160
3021
|
}
|
|
3161
3022
|
const LayerContext = createGlobalScopedContext("@sanity/ui/context/layer", null);
|
|
3162
3023
|
function LayerProvider(props) {
|
|
3163
|
-
const $ = reactCompilerRuntime.c(
|
|
3024
|
+
const $ = reactCompilerRuntime.c(19), {
|
|
3164
3025
|
children,
|
|
3165
3026
|
zOffset: t0
|
|
3166
3027
|
} = props, zOffsetProp = t0 === void 0 ? 0 : t0, parentContextValue = react.useContext(LayerContext);
|
|
3167
3028
|
let t1;
|
|
3168
3029
|
$[0] !== parentContextValue ? (t1 = parentContextValue && getLayerContext(parentContextValue), $[0] = parentContextValue, $[1] = t1) : t1 = $[1];
|
|
3169
|
-
const parent = t1, parentRegisterChild = parent?.registerChild, level = (parent?.level ?? 0) + 1;
|
|
3030
|
+
const parent = t1, parentRegisterChild = parent?.registerChild, level = (parent?.level ?? 0) + 1, zOffset = useArrayProp(zOffsetProp), maxMediaIndex = zOffset.length - 1, mediaIndex = Math.min(useMediaIndex(), maxMediaIndex), zIndex = parent ? parent.zIndex + zOffset[mediaIndex] : zOffset[mediaIndex];
|
|
3170
3031
|
let t2;
|
|
3171
|
-
$[2]
|
|
3172
|
-
const
|
|
3032
|
+
$[2] === Symbol.for("react.memo_cache_sentinel") ? (t2 = {}, $[2] = t2) : t2 = $[2];
|
|
3033
|
+
const [, setChildLayers] = react.useState(t2), [size2, setSize] = react.useState(0), isTopLayer = size2 === 0;
|
|
3173
3034
|
let t3;
|
|
3174
|
-
$[
|
|
3175
|
-
const [, setChildLayers] = react.useState(t3), [size2, setSize] = react.useState(0), isTopLayer = size2 === 0;
|
|
3176
|
-
let t4;
|
|
3177
|
-
$[5] !== parentRegisterChild || $[6] !== setChildLayers ? (t4 = (childLevel) => {
|
|
3035
|
+
$[3] !== parentRegisterChild || $[4] !== setChildLayers ? (t3 = (childLevel) => {
|
|
3178
3036
|
const parentDispose = parentRegisterChild?.(childLevel);
|
|
3179
3037
|
return childLevel !== void 0 ? setChildLayers((state) => {
|
|
3180
3038
|
const prevLen = state[childLevel] ?? 0, nextState = {
|
|
@@ -3190,22 +3048,22 @@ function LayerProvider(props) {
|
|
|
3190
3048
|
return nextState_0[childLevel] === 1 ? (delete nextState_0[childLevel], setSize(Object.keys(nextState_0).length)) : nextState_0[childLevel] = nextState_0[childLevel] - 1, nextState_0;
|
|
3191
3049
|
}) : setSize(_temp2$2), parentDispose?.();
|
|
3192
3050
|
};
|
|
3193
|
-
}, $[
|
|
3194
|
-
const registerChild =
|
|
3195
|
-
let
|
|
3196
|
-
$[
|
|
3197
|
-
let
|
|
3198
|
-
$[
|
|
3051
|
+
}, $[3] = parentRegisterChild, $[4] = setChildLayers, $[5] = t3) : t3 = $[5];
|
|
3052
|
+
const registerChild = t3;
|
|
3053
|
+
let t4, t5;
|
|
3054
|
+
$[6] !== level || $[7] !== parentRegisterChild ? (t4 = () => parentRegisterChild?.(level), t5 = [level, parentRegisterChild], $[6] = level, $[7] = parentRegisterChild, $[8] = t4, $[9] = t5) : (t4 = $[8], t5 = $[9]), react.useEffect(t4, t5);
|
|
3055
|
+
let t6;
|
|
3056
|
+
$[10] !== isTopLayer || $[11] !== level || $[12] !== registerChild || $[13] !== size2 || $[14] !== zIndex ? (t6 = {
|
|
3199
3057
|
version: 0,
|
|
3200
3058
|
isTopLayer,
|
|
3201
3059
|
level,
|
|
3202
3060
|
registerChild,
|
|
3203
3061
|
size: size2,
|
|
3204
3062
|
zIndex
|
|
3205
|
-
}, $[
|
|
3206
|
-
const value =
|
|
3207
|
-
let
|
|
3208
|
-
return $[
|
|
3063
|
+
}, $[10] = isTopLayer, $[11] = level, $[12] = registerChild, $[13] = size2, $[14] = zIndex, $[15] = t6) : t6 = $[15];
|
|
3064
|
+
const value = t6;
|
|
3065
|
+
let t7;
|
|
3066
|
+
return $[16] !== children || $[17] !== value ? (t7 = /* @__PURE__ */ jsxRuntime.jsx(LayerContext.Provider, { value, children }), $[16] = children, $[17] = value, $[18] = t7) : t7 = $[18], t7;
|
|
3209
3067
|
}
|
|
3210
3068
|
function _temp2$2(v_0) {
|
|
3211
3069
|
return v_0 - 1;
|
|
@@ -3653,7 +3511,7 @@ const ViewportOverlay = () => {
|
|
|
3653
3511
|
zIndex
|
|
3654
3512
|
} }), $[0] = zIndex, $[1] = t0) : t0 = $[1], t0;
|
|
3655
3513
|
}, Popover = react.forwardRef(function(props, forwardedRef) {
|
|
3656
|
-
const $ = reactCompilerRuntime.c(
|
|
3514
|
+
const $ = reactCompilerRuntime.c(122), {
|
|
3657
3515
|
container,
|
|
3658
3516
|
layer
|
|
3659
3517
|
} = useTheme_v2(), boundaryElementContext = useBoundaryElement();
|
|
@@ -3687,59 +3545,50 @@ const ViewportOverlay = () => {
|
|
|
3687
3545
|
shadow: t352,
|
|
3688
3546
|
tone: t362,
|
|
3689
3547
|
width: t372,
|
|
3690
|
-
zOffset:
|
|
3691
|
-
updateRef:
|
|
3692
|
-
...
|
|
3548
|
+
zOffset: t38,
|
|
3549
|
+
updateRef: t39,
|
|
3550
|
+
...t40
|
|
3693
3551
|
} = props;
|
|
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 =
|
|
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 = t38, updateRef = t39, restProps = t40, $[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;
|
|
3695
3553
|
} else
|
|
3696
3554
|
_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];
|
|
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;
|
|
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, padding = useArrayProp(paddingProp), radius = useArrayProp(radiusProp), shadow = useArrayProp(shadowProp), widthArrayProp = useArrayProp(widthProp), zOffset = useArrayProp(zOffsetProp), ref = react.useRef(null), arrowRef = react.useRef(null);
|
|
3698
3556
|
let t12;
|
|
3699
|
-
$[30]
|
|
3700
|
-
const
|
|
3557
|
+
$[30] === Symbol.for("react.memo_cache_sentinel") ? (t12 = () => ref.current, $[30] = t12) : t12 = $[30], react.useImperativeHandle(forwardedRef, t12);
|
|
3558
|
+
const mediaIndex = useMediaIndex(), boundaryWidth = constrainSize || preventOverflow ? boundarySize?.width : void 0;
|
|
3701
3559
|
let t13;
|
|
3702
|
-
$[
|
|
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({
|
|
3560
|
+
$[31] !== container || $[32] !== mediaIndex || $[33] !== widthArrayProp ? (t13 = calcCurrentWidth({
|
|
3713
3561
|
container,
|
|
3714
3562
|
mediaIndex,
|
|
3715
3563
|
width: widthArrayProp
|
|
3716
|
-
}),
|
|
3717
|
-
|
|
3718
|
-
|
|
3564
|
+
}), $[31] = container, $[32] = mediaIndex, $[33] = widthArrayProp, $[34] = t13) : t13 = $[34];
|
|
3565
|
+
const width = t13, widthRef = react.useRef(width);
|
|
3566
|
+
let t14, t15;
|
|
3567
|
+
$[35] !== width ? (t14 = () => {
|
|
3719
3568
|
widthRef.current = width;
|
|
3720
|
-
},
|
|
3721
|
-
let
|
|
3722
|
-
$[
|
|
3569
|
+
}, t15 = [width], $[35] = width, $[36] = t14, $[37] = t15) : (t14 = $[36], t15 = $[37]), react.useEffect(t14, t15);
|
|
3570
|
+
let t16;
|
|
3571
|
+
$[38] !== boundaryWidth || $[39] !== width ? (t16 = calcMaxWidth({
|
|
3723
3572
|
boundaryWidth,
|
|
3724
3573
|
currentWidth: width
|
|
3725
|
-
}), $[
|
|
3726
|
-
const maxWidth =
|
|
3727
|
-
let
|
|
3728
|
-
$[
|
|
3574
|
+
}), $[38] = boundaryWidth, $[39] = width, $[40] = t16) : t16 = $[40];
|
|
3575
|
+
const maxWidth = t16, maxWidthRef = react.useRef(maxWidth);
|
|
3576
|
+
let t17, t18;
|
|
3577
|
+
$[41] !== maxWidth ? (t17 = () => {
|
|
3729
3578
|
maxWidthRef.current = maxWidth;
|
|
3730
|
-
},
|
|
3579
|
+
}, t18 = [maxWidth], $[41] = maxWidth, $[42] = t17, $[43] = t18) : (t17 = $[42], t18 = $[43]), react.useEffect(t17, t18);
|
|
3731
3580
|
const referenceWidthRef = react.useRef(void 0);
|
|
3732
|
-
let
|
|
3733
|
-
$[
|
|
3581
|
+
let t19, t20;
|
|
3582
|
+
$[44] !== matchReferenceWidth || $[45] !== maxWidth || $[46] !== open || $[47] !== width ? (t19 = () => {
|
|
3734
3583
|
const floatingElement = ref.current;
|
|
3735
3584
|
if (!open || !floatingElement)
|
|
3736
3585
|
return;
|
|
3737
3586
|
const referenceWidth = referenceWidthRef.current;
|
|
3738
3587
|
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`);
|
|
3739
|
-
},
|
|
3588
|
+
}, t20 = [width, matchReferenceWidth, maxWidth, open], $[44] = matchReferenceWidth, $[45] = maxWidth, $[46] = open, $[47] = width, $[48] = t19, $[49] = t20) : (t19 = $[48], t20 = $[49]), react.useEffect(t19, t20);
|
|
3740
3589
|
const [referenceWidth_0, setReferenceWidth] = react.useState(void 0);
|
|
3741
|
-
let
|
|
3742
|
-
$[
|
|
3590
|
+
let t21;
|
|
3591
|
+
$[50] !== animate || $[51] !== arrowProp || $[52] !== constrainSize || $[53] !== fallbackPlacements || $[54] !== floatingBoundary || $[55] !== margins || $[56] !== matchReferenceWidth || $[57] !== placementProp || $[58] !== placementStrategy || $[59] !== preventOverflow || $[60] !== referenceBoundary ? (t21 = {
|
|
3743
3592
|
animate,
|
|
3744
3593
|
arrowProp,
|
|
3745
3594
|
arrowRef,
|
|
@@ -3757,19 +3606,19 @@ const ViewportOverlay = () => {
|
|
|
3757
3606
|
rootBoundary: "viewport",
|
|
3758
3607
|
setReferenceWidth,
|
|
3759
3608
|
widthRef
|
|
3760
|
-
}, $[
|
|
3761
|
-
const middleware = useMiddleware$1(
|
|
3762
|
-
let
|
|
3763
|
-
$[
|
|
3609
|
+
}, $[50] = animate, $[51] = arrowProp, $[52] = constrainSize, $[53] = fallbackPlacements, $[54] = floatingBoundary, $[55] = margins, $[56] = matchReferenceWidth, $[57] = placementProp, $[58] = placementStrategy, $[59] = preventOverflow, $[60] = referenceBoundary, $[61] = t21) : t21 = $[61];
|
|
3610
|
+
const middleware = useMiddleware$1(t21);
|
|
3611
|
+
let t22;
|
|
3612
|
+
$[62] !== referenceElement ? (t22 = referenceElement ? {
|
|
3764
3613
|
reference: referenceElement
|
|
3765
|
-
} : void 0, $[
|
|
3766
|
-
let
|
|
3767
|
-
$[
|
|
3614
|
+
} : void 0, $[62] = referenceElement, $[63] = t22) : t22 = $[63];
|
|
3615
|
+
let t23;
|
|
3616
|
+
$[64] !== middleware || $[65] !== placementProp || $[66] !== t22 ? (t23 = {
|
|
3768
3617
|
middleware,
|
|
3769
3618
|
placement: placementProp,
|
|
3770
3619
|
whileElementsMounted: reactDom$1.autoUpdate,
|
|
3771
|
-
elements:
|
|
3772
|
-
}, $[
|
|
3620
|
+
elements: t22
|
|
3621
|
+
}, $[64] = middleware, $[65] = placementProp, $[66] = t22, $[67] = t23) : t23 = $[67];
|
|
3773
3622
|
const {
|
|
3774
3623
|
x,
|
|
3775
3624
|
y,
|
|
@@ -3778,63 +3627,63 @@ const ViewportOverlay = () => {
|
|
|
3778
3627
|
refs,
|
|
3779
3628
|
strategy,
|
|
3780
3629
|
update
|
|
3781
|
-
} = reactDom$1.useFloating(
|
|
3782
|
-
let
|
|
3783
|
-
$[
|
|
3630
|
+
} = reactDom$1.useFloating(t23), referenceHidden = middlewareData.hide?.referenceHidden, arrowX = middlewareData.arrow?.x, arrowY = middlewareData.arrow?.y, originX = middlewareData["@sanity/ui/origin"]?.originX, originY = middlewareData["@sanity/ui/origin"]?.originY;
|
|
3631
|
+
let t24;
|
|
3632
|
+
$[68] === Symbol.for("react.memo_cache_sentinel") ? (t24 = (arrowEl) => {
|
|
3784
3633
|
arrowRef.current = arrowEl;
|
|
3785
|
-
}, $[
|
|
3786
|
-
const setArrow =
|
|
3787
|
-
let
|
|
3788
|
-
$[
|
|
3634
|
+
}, $[68] = t24) : t24 = $[68];
|
|
3635
|
+
const setArrow = t24;
|
|
3636
|
+
let t25;
|
|
3637
|
+
$[69] !== refs ? (t25 = (node) => {
|
|
3789
3638
|
ref.current = node, refs.setFloating(node);
|
|
3790
|
-
}, $[
|
|
3791
|
-
const setFloating =
|
|
3792
|
-
let
|
|
3793
|
-
$[
|
|
3794
|
-
let
|
|
3795
|
-
$[
|
|
3796
|
-
let
|
|
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];
|
|
3643
|
+
let t27;
|
|
3644
|
+
$[73] !== refs.reference.current ? (t27 = () => refs.reference.current, $[73] = refs.reference.current, $[74] = t27) : t27 = $[74], react.useImperativeHandle(t26, t27);
|
|
3645
|
+
let t28;
|
|
3797
3646
|
bb0: {
|
|
3798
3647
|
if (referenceElement) {
|
|
3799
|
-
|
|
3648
|
+
t28 = childProp;
|
|
3800
3649
|
break bb0;
|
|
3801
3650
|
}
|
|
3802
3651
|
if (!childProp) {
|
|
3803
|
-
|
|
3652
|
+
t28 = null;
|
|
3804
3653
|
break bb0;
|
|
3805
3654
|
}
|
|
3806
|
-
let
|
|
3807
|
-
$[
|
|
3655
|
+
let t292;
|
|
3656
|
+
$[75] !== childProp || $[76] !== refs.setReference ? (t292 = react.cloneElement(childProp, {
|
|
3808
3657
|
ref: refs.setReference
|
|
3809
|
-
}), $[
|
|
3658
|
+
}), $[75] = childProp, $[76] = refs.setReference, $[77] = t292) : t292 = $[77], t28 = t292;
|
|
3810
3659
|
}
|
|
3811
|
-
const child =
|
|
3812
|
-
let
|
|
3813
|
-
if ($[
|
|
3814
|
-
let
|
|
3815
|
-
return $[
|
|
3660
|
+
const child = t28;
|
|
3661
|
+
let t29, t30;
|
|
3662
|
+
if ($[78] !== update ? (t29 = () => update, t30 = [update], $[78] = update, $[79] = t29, $[80] = t30) : (t29 = $[79], t30 = $[80]), react.useImperativeHandle(updateRef, t29, t30), disabled) {
|
|
3663
|
+
let t312;
|
|
3664
|
+
return $[81] !== childProp ? (t312 = childProp || /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[81] = childProp, $[82] = t312) : t312 = $[82], t312;
|
|
3816
3665
|
}
|
|
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];
|
|
3817
3671
|
let t34;
|
|
3818
|
-
$[
|
|
3819
|
-
|
|
3672
|
+
$[108] !== t31 || $[109] !== t33 || $[110] !== zOffset ? (t34 = /* @__PURE__ */ jsxRuntime.jsxs(LayerProvider, { zOffset, children: [
|
|
3673
|
+
t31,
|
|
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;
|
|
3820
3680
|
let t36;
|
|
3821
|
-
$[
|
|
3681
|
+
$[116] !== animate || $[117] !== children ? (t36 = animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children, $[116] = animate, $[117] = children, $[118] = t36) : t36 = $[118];
|
|
3822
3682
|
let t37;
|
|
3823
|
-
$[
|
|
3824
|
-
|
|
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,
|
|
3683
|
+
return $[119] !== child || $[120] !== t36 ? (t37 = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
3684
|
+
t36,
|
|
3836
3685
|
child
|
|
3837
|
-
] }), $[
|
|
3686
|
+
] }), $[119] = child, $[120] = t36, $[121] = t37) : t37 = $[121], t37;
|
|
3838
3687
|
});
|
|
3839
3688
|
Popover.displayName = "ForwardRef(Popover)";
|
|
3840
3689
|
function useMiddleware$1(t0) {
|
|
@@ -4219,7 +4068,7 @@ const selectStyle = {
|
|
|
4219
4068
|
displayName: "IconBox",
|
|
4220
4069
|
componentId: "sc-5mxno7-2"
|
|
4221
4070
|
})(selectStyle.iconBox), Select = react.forwardRef(function(props, forwardedRef) {
|
|
4222
|
-
const $ = reactCompilerRuntime.c(
|
|
4071
|
+
const $ = reactCompilerRuntime.c(29);
|
|
4223
4072
|
let children, customValidity, disabled, readOnly, restProps, t0, t1, t2, t3;
|
|
4224
4073
|
$[0] !== props ? ({
|
|
4225
4074
|
children,
|
|
@@ -4235,29 +4084,20 @@ const selectStyle = {
|
|
|
4235
4084
|
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);
|
|
4236
4085
|
let t4;
|
|
4237
4086
|
$[10] === Symbol.for("react.memo_cache_sentinel") ? (t4 = () => ref.current, $[10] = t4) : t4 = $[10], react.useImperativeHandle(forwardedRef, t4), useCustomValidity(ref, customValidity);
|
|
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;
|
|
4087
|
+
const t5 = !disabled && readOnly ? "" : void 0, t6 = useArrayProp(fontSize2), t7 = useArrayProp(padding), t8 = useArrayProp(radius), t9 = useArrayProp(space), t10 = disabled || readOnly;
|
|
4248
4088
|
let t11;
|
|
4249
|
-
$[
|
|
4089
|
+
$[11] !== children || $[12] !== restProps || $[13] !== t10 || $[14] !== t5 || $[15] !== t6 || $[16] !== t7 || $[17] !== t8 || $[18] !== 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 }), $[11] = children, $[12] = restProps, $[13] = t10, $[14] = t5, $[15] = t6, $[16] = t7, $[17] = t8, $[18] = t9, $[19] = t11) : t11 = $[19];
|
|
4250
4090
|
let t12;
|
|
4251
|
-
$[
|
|
4091
|
+
$[20] === Symbol.for("react.memo_cache_sentinel") ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronDownIcon, {}), $[20] = t12) : t12 = $[20];
|
|
4252
4092
|
let t13;
|
|
4253
|
-
$[
|
|
4093
|
+
$[21] !== fontSize2 ? (t13 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: t12 }), $[21] = fontSize2, $[22] = t13) : t13 = $[22];
|
|
4254
4094
|
let t14;
|
|
4255
|
-
$[
|
|
4095
|
+
$[23] !== padding || $[24] !== t13 ? (t14 = /* @__PURE__ */ jsxRuntime.jsx(IconBox, { padding, children: t13 }), $[23] = padding, $[24] = t13, $[25] = t14) : t14 = $[25];
|
|
4256
4096
|
let t15;
|
|
4257
|
-
return $[
|
|
4097
|
+
return $[26] !== t11 || $[27] !== t14 ? (t15 = /* @__PURE__ */ jsxRuntime.jsxs(StyledSelect, { "data-ui": "Select", children: [
|
|
4258
4098
|
t11,
|
|
4259
4099
|
t14
|
|
4260
|
-
] }), $[
|
|
4100
|
+
] }), $[26] = t11, $[27] = t14, $[28] = t15) : t15 = $[28], t15;
|
|
4261
4101
|
});
|
|
4262
4102
|
Select.displayName = "ForwardRef(Select)";
|
|
4263
4103
|
const BASE_STYLE = {
|
|
@@ -4286,18 +4126,16 @@ const StyledStack = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
4286
4126
|
displayName: "StyledStack",
|
|
4287
4127
|
componentId: "sc-8dpfq2-0"
|
|
4288
4128
|
})(stackBaseStyle, responsiveStackSpaceStyle), Stack = react.forwardRef(function(props, ref) {
|
|
4289
|
-
const $ = reactCompilerRuntime.c(
|
|
4129
|
+
const $ = reactCompilerRuntime.c(10);
|
|
4290
4130
|
let as, restProps, space;
|
|
4291
4131
|
$[0] !== props ? ({
|
|
4292
4132
|
as,
|
|
4293
4133
|
space,
|
|
4294
4134
|
...restProps
|
|
4295
4135
|
} = props, $[0] = props, $[1] = as, $[2] = restProps, $[3] = space) : (as = $[1], restProps = $[2], space = $[3]);
|
|
4296
|
-
const t0 = typeof as == "string" ? as : void 0;
|
|
4297
|
-
let t1;
|
|
4298
|
-
$[4] !== space ? (t1 = _getArrayProp(space), $[4] = space, $[5] = t1) : t1 = $[5];
|
|
4136
|
+
const t0 = typeof as == "string" ? as : void 0, t1 = useArrayProp(space);
|
|
4299
4137
|
let t2;
|
|
4300
|
-
return $[
|
|
4138
|
+
return $[4] !== as || $[5] !== ref || $[6] !== restProps || $[7] !== t0 || $[8] !== t1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(StyledStack, { "data-as": t0, "data-ui": "Stack", ...restProps, $space: t1, forwardedAs: as, ref }), $[4] = as, $[5] = ref, $[6] = restProps, $[7] = t0, $[8] = t1, $[9] = t2) : t2 = $[9], t2;
|
|
4301
4139
|
});
|
|
4302
4140
|
Stack.displayName = "ForwardRef(Stack)";
|
|
4303
4141
|
function switchBaseStyles() {
|
|
@@ -4517,7 +4355,7 @@ const StyledTextArea = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
|
4517
4355
|
displayName: "Presentation",
|
|
4518
4356
|
componentId: "sc-1d6h1o8-3"
|
|
4519
4357
|
})(responsiveRadiusStyle, textInputRepresentationStyle), TextArea = react.forwardRef(function(props, forwardedRef) {
|
|
4520
|
-
const $ = reactCompilerRuntime.c(
|
|
4358
|
+
const $ = reactCompilerRuntime.c(29);
|
|
4521
4359
|
let __unstable_disableFocusRing, customValidity, restProps, t0, t1, t2, t3, t4, weight;
|
|
4522
4360
|
$[0] !== props ? ({
|
|
4523
4361
|
border: t0,
|
|
@@ -4533,26 +4371,17 @@ const StyledTextArea = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
|
4533
4371
|
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();
|
|
4534
4372
|
let t5;
|
|
4535
4373
|
$[10] === Symbol.for("react.memo_cache_sentinel") ? (t5 = () => ref.current, $[10] = t5) : t5 = $[10], react.useImperativeHandle(forwardedRef, t5), useCustomValidity(ref, customValidity);
|
|
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];
|
|
4374
|
+
const t6 = rootTheme.scheme, t7 = rootTheme.tone, t8 = useArrayProp(fontSize2), t9 = useArrayProp(padding), t10 = rootTheme.scheme, t11 = useArrayProp(0);
|
|
4544
4375
|
let t12;
|
|
4545
|
-
$[
|
|
4546
|
-
|
|
4547
|
-
$[24] !== radius ? (t13 = _getArrayProp(radius), $[24] = radius, $[25] = t13) : t13 = $[25];
|
|
4548
|
-
const t14 = border2 ? "" : void 0;
|
|
4376
|
+
$[11] !== disabled || $[12] !== restProps || $[13] !== rootTheme.scheme || $[14] !== rootTheme.tone || $[15] !== t11 || $[16] !== t8 || $[17] !== t9 || $[18] !== 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 }), $[11] = disabled, $[12] = restProps, $[13] = rootTheme.scheme, $[14] = rootTheme.tone, $[15] = t11, $[16] = t8, $[17] = t9, $[18] = weight, $[19] = t12) : t12 = $[19];
|
|
4377
|
+
const t13 = useArrayProp(radius), t14 = border2 ? "" : void 0;
|
|
4549
4378
|
let t15;
|
|
4550
|
-
$[
|
|
4379
|
+
$[20] !== __unstable_disableFocusRing || $[21] !== rootTheme.scheme || $[22] !== rootTheme.tone || $[23] !== t13 || $[24] !== 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 }), $[20] = __unstable_disableFocusRing, $[21] = rootTheme.scheme, $[22] = rootTheme.tone, $[23] = t13, $[24] = t14, $[25] = t15) : t15 = $[25];
|
|
4551
4380
|
let t16;
|
|
4552
|
-
return $[
|
|
4381
|
+
return $[26] !== t12 || $[27] !== t15 ? (t16 = /* @__PURE__ */ jsxRuntime.jsx(StyledTextArea, { "data-ui": "TextArea", children: /* @__PURE__ */ jsxRuntime.jsxs(InputRoot$1, { children: [
|
|
4553
4382
|
t12,
|
|
4554
4383
|
t15
|
|
4555
|
-
] }) }), $[
|
|
4384
|
+
] }) }), $[26] = t12, $[27] = t15, $[28] = t16) : t16 = $[28], t16;
|
|
4556
4385
|
});
|
|
4557
4386
|
TextArea.displayName = "ForwardRef(TextArea)";
|
|
4558
4387
|
const CLEAR_BUTTON_BOX_STYLE = {
|
|
@@ -4598,7 +4427,7 @@ const CLEAR_BUTTON_BOX_STYLE = {
|
|
|
4598
4427
|
display: "block"
|
|
4599
4428
|
}
|
|
4600
4429
|
}), TextInput = react.forwardRef(function(props, forwardedRef) {
|
|
4601
|
-
const $ = reactCompilerRuntime.c(
|
|
4430
|
+
const $ = reactCompilerRuntime.c(84);
|
|
4602
4431
|
let IconComponent, IconRightComponent, __unstable_disableFocusRing, clearButton, customValidity, onClear, prefix, readOnly, restProps, suffix, t0, t1, t2, t3, t4, t5, t6, weight;
|
|
4603
4432
|
$[0] !== props ? ({
|
|
4604
4433
|
__unstable_disableFocusRing,
|
|
@@ -4620,72 +4449,60 @@ const CLEAR_BUTTON_BOX_STYLE = {
|
|
|
4620
4449
|
weight,
|
|
4621
4450
|
...restProps
|
|
4622
4451
|
} = 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]);
|
|
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();
|
|
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(), fontSize2 = useArrayProp(fontSizeProp), padding = useArrayProp(paddingProp), radius = useArrayProp(radiusProp), space = useArrayProp(spaceProp), $hasClearButton = !!clearButton, $hasIcon = !!IconComponent, $hasIconRight = !!IconRightComponent, $hasSuffix = !!suffix, $hasPrefix = !!prefix;
|
|
4624
4453
|
let t7;
|
|
4625
|
-
$[19]
|
|
4626
|
-
const
|
|
4454
|
+
$[19] === Symbol.for("react.memo_cache_sentinel") ? (t7 = () => ref.current, $[19] = t7) : t7 = $[19], react.useImperativeHandle(forwardedRef, t7), useCustomValidity(ref, customValidity);
|
|
4455
|
+
const handleClearMouseDown = _temp$2;
|
|
4627
4456
|
let t8;
|
|
4628
|
-
$[
|
|
4629
|
-
|
|
4457
|
+
$[20] !== onClear ? (t8 = (event_0) => {
|
|
4458
|
+
event_0.preventDefault(), event_0.stopPropagation(), onClear && onClear(), ref.current?.focus();
|
|
4459
|
+
}, $[20] = onClear, $[21] = t8) : t8 = $[21];
|
|
4460
|
+
const handleClearClick = t8;
|
|
4630
4461
|
let t9;
|
|
4631
|
-
$[23] !==
|
|
4632
|
-
const
|
|
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;
|
|
4462
|
+
$[22] !== prefix || $[23] !== radius ? (t9 = prefix && /* @__PURE__ */ jsxRuntime.jsx(Prefix, { borderTop: !0, borderLeft: !0, borderBottom: !0, radius, sizing: "border", tone: "inherit", children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: prefix }) }), $[22] = prefix, $[23] = radius, $[24] = t9) : t9 = $[24];
|
|
4463
|
+
const prefixNode = t9, t10 = border2 ? "" : void 0;
|
|
4636
4464
|
let t11;
|
|
4637
|
-
$[
|
|
4638
|
-
const handleClearMouseDown = _temp$2;
|
|
4639
|
-
let t12;
|
|
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;
|
|
4644
|
-
let t13;
|
|
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;
|
|
4647
|
-
let t15;
|
|
4648
|
-
$[33] !== IconComponent || $[34] !== fontSize2 || $[35] !== padding ? (t15 = IconComponent && /* @__PURE__ */ jsxRuntime.jsx(LeftBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4465
|
+
$[25] !== IconComponent || $[26] !== fontSize2 || $[27] !== padding ? (t11 = IconComponent && /* @__PURE__ */ jsxRuntime.jsx(LeftBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4649
4466
|
react.isValidElement(IconComponent) && IconComponent,
|
|
4650
4467
|
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
4651
|
-
] }) }), $[
|
|
4652
|
-
let
|
|
4653
|
-
$[
|
|
4468
|
+
] }) }), $[25] = IconComponent, $[26] = fontSize2, $[27] = padding, $[28] = t11) : t11 = $[28];
|
|
4469
|
+
let t12;
|
|
4470
|
+
$[29] !== $hasClearButton || $[30] !== IconRightComponent || $[31] !== fontSize2 || $[32] !== padding ? (t12 = !$hasClearButton && IconRightComponent && /* @__PURE__ */ jsxRuntime.jsx(RightBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4654
4471
|
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
4655
4472
|
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
4656
|
-
] }) }), $[
|
|
4473
|
+
] }) }), $[29] = $hasClearButton, $[30] = IconRightComponent, $[31] = fontSize2, $[32] = padding, $[33] = t12) : t12 = $[33];
|
|
4474
|
+
let t13;
|
|
4475
|
+
$[34] !== $hasPrefix || $[35] !== $hasSuffix || $[36] !== __unstable_disableFocusRing || $[37] !== radius || $[38] !== rootTheme.scheme || $[39] !== rootTheme.tone || $[40] !== t10 || $[41] !== t11 || $[42] !== t12 ? (t13 = /* @__PURE__ */ jsxRuntime.jsxs(Presentation, { $hasPrefix, $unstableDisableFocusRing: __unstable_disableFocusRing, $hasSuffix, $radius: radius, $scheme: rootTheme.scheme, $tone: rootTheme.tone, "data-border": t10, "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, children: [
|
|
4476
|
+
t11,
|
|
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;
|
|
4483
|
+
let t15;
|
|
4484
|
+
$[46] !== padding ? (t15 = padding.map(_temp3), $[46] = padding, $[47] = t15) : t15 = $[47];
|
|
4485
|
+
const clearButtonPadding = t15, clearButtonProps = typeof clearButton == "object" ? clearButton : EMPTY_RECORD;
|
|
4486
|
+
let t16;
|
|
4487
|
+
$[48] !== clearButton || $[49] !== clearButtonBoxPadding || $[50] !== clearButtonPadding || $[51] !== clearButtonProps || $[52] !== customValidity || $[53] !== disabled || $[54] !== fontSize2 || $[55] !== handleClearClick || $[56] !== radius || $[57] !== readOnly ? (t16 = !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 }) }), $[48] = clearButton, $[49] = clearButtonBoxPadding, $[50] = clearButtonPadding, $[51] = clearButtonProps, $[52] = customValidity, $[53] = disabled, $[54] = fontSize2, $[55] = handleClearClick, $[56] = radius, $[57] = readOnly, $[58] = t16) : t16 = $[58];
|
|
4488
|
+
const clearButtonNode = t16;
|
|
4657
4489
|
let t17;
|
|
4658
|
-
$[
|
|
4659
|
-
|
|
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;
|
|
4490
|
+
$[59] !== radius || $[60] !== suffix ? (t17 = suffix && /* @__PURE__ */ jsxRuntime.jsx(Suffix, { borderTop: !0, borderRight: !0, borderBottom: !0, radius, sizing: "border", tone: "inherit", children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: suffix }) }), $[59] = radius, $[60] = suffix, $[61] = t17) : t17 = $[61];
|
|
4491
|
+
const suffixNode = t17, t18 = $hasIconRight || $hasClearButton;
|
|
4666
4492
|
let t19;
|
|
4667
|
-
$[
|
|
4668
|
-
const clearButtonPadding = t19, clearButtonProps = typeof clearButton == "object" ? clearButton : EMPTY_RECORD;
|
|
4493
|
+
$[62] !== $hasIcon || $[63] !== disabled || $[64] !== fontSize2 || $[65] !== padding || $[66] !== readOnly || $[67] !== restProps || $[68] !== rootTheme.scheme || $[69] !== rootTheme.tone || $[70] !== space || $[71] !== t18 || $[72] !== type || $[73] !== weight ? (t19 = /* @__PURE__ */ jsxRuntime.jsx(Input, { "data-as": "input", "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, ...restProps, $fontSize: fontSize2, $iconLeft: $hasIcon, $iconRight: t18, $padding: padding, $scheme: rootTheme.scheme, $space: space, $tone: rootTheme.tone, $weight: weight, disabled, readOnly, ref, type }), $[62] = $hasIcon, $[63] = disabled, $[64] = fontSize2, $[65] = padding, $[66] = readOnly, $[67] = restProps, $[68] = rootTheme.scheme, $[69] = rootTheme.tone, $[70] = space, $[71] = t18, $[72] = type, $[73] = weight, $[74] = t19) : t19 = $[74];
|
|
4669
4494
|
let t20;
|
|
4670
|
-
$[
|
|
4671
|
-
|
|
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,
|
|
4495
|
+
$[75] !== clearButtonNode || $[76] !== presentationNode || $[77] !== t19 ? (t20 = /* @__PURE__ */ jsxRuntime.jsxs(InputRoot, { children: [
|
|
4496
|
+
t19,
|
|
4680
4497
|
presentationNode,
|
|
4681
4498
|
clearButtonNode
|
|
4682
|
-
] }), $[
|
|
4683
|
-
let
|
|
4684
|
-
return $[
|
|
4499
|
+
] }), $[75] = clearButtonNode, $[76] = presentationNode, $[77] = t19, $[78] = t20) : t20 = $[78];
|
|
4500
|
+
let t21;
|
|
4501
|
+
return $[79] !== prefixNode || $[80] !== rootTheme.tone || $[81] !== suffixNode || $[82] !== t20 ? (t21 = /* @__PURE__ */ jsxRuntime.jsxs(StyledTextInput, { "data-ui": "TextInput", tone: rootTheme.tone, children: [
|
|
4685
4502
|
prefixNode,
|
|
4686
|
-
|
|
4503
|
+
t20,
|
|
4687
4504
|
suffixNode
|
|
4688
|
-
] }), $[
|
|
4505
|
+
] }), $[79] = prefixNode, $[80] = rootTheme.tone, $[81] = suffixNode, $[82] = t20, $[83] = t21) : t21 = $[83], t21;
|
|
4689
4506
|
});
|
|
4690
4507
|
TextInput.displayName = "ForwardRef(TextInput)";
|
|
4691
4508
|
function _temp$2(event) {
|
|
@@ -4806,7 +4623,7 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4806
4623
|
displayName: "StyledTooltip",
|
|
4807
4624
|
componentId: "sc-13f2zvh-0"
|
|
4808
4625
|
})`pointer-events:none;`, Tooltip = react.forwardRef(function(props, forwardedRef) {
|
|
4809
|
-
const $ = reactCompilerRuntime.c(
|
|
4626
|
+
const $ = reactCompilerRuntime.c(135), boundaryElementContext = useBoundaryElement(), {
|
|
4810
4627
|
layer
|
|
4811
4628
|
} = useTheme_v2();
|
|
4812
4629
|
let _boundaryElement, _fallbackPlacementsProp, _zOffset, childProp, content, delay, disabled, portalProp, restProps, scheme, t0, t1, t2, t3, t4, t5;
|
|
@@ -4828,49 +4645,46 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4828
4645
|
delay,
|
|
4829
4646
|
...restProps
|
|
4830
4647
|
} = 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]);
|
|
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;
|
|
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, fallbackPlacements = useArrayProp(fallbackPlacementsProp), ref = react.useRef(null), [referenceElement, setReferenceElement] = react.useState(null), arrowRef = react.useRef(null), [tooltipMaxWidth, setTooltipMaxWidth] = react.useState(0);
|
|
4832
4649
|
let t6;
|
|
4833
|
-
$[17]
|
|
4834
|
-
const fallbackPlacements = t6, ref = react.useRef(null), [referenceElement, setReferenceElement] = react.useState(null), arrowRef = react.useRef(null), [tooltipMaxWidth, setTooltipMaxWidth] = react.useState(0);
|
|
4835
|
-
let t7;
|
|
4836
|
-
$[19] === Symbol.for("react.memo_cache_sentinel") ? (t7 = () => ref.current, $[19] = t7) : t7 = $[19], react.useImperativeHandle(forwardedRef, t7);
|
|
4650
|
+
$[17] === Symbol.for("react.memo_cache_sentinel") ? (t6 = () => ref.current, $[17] = t6) : t6 = $[17], react.useImperativeHandle(forwardedRef, t6);
|
|
4837
4651
|
const portal = usePortal(), portalElement = typeof portalProp == "string" ? portal.elements?.[portalProp] || null : portal.element;
|
|
4838
|
-
let
|
|
4839
|
-
$[
|
|
4652
|
+
let t7;
|
|
4653
|
+
$[18] !== animate || $[19] !== arrowProp || $[20] !== boundaryElement || $[21] !== fallbackPlacements ? (t7 = {
|
|
4840
4654
|
animate,
|
|
4841
4655
|
arrowProp,
|
|
4842
4656
|
arrowRef,
|
|
4843
4657
|
boundaryElement,
|
|
4844
4658
|
fallbackPlacements,
|
|
4845
4659
|
rootBoundary: "viewport"
|
|
4846
|
-
}, $[
|
|
4847
|
-
const middleware = useMiddleware(
|
|
4848
|
-
let
|
|
4849
|
-
$[
|
|
4660
|
+
}, $[18] = animate, $[19] = arrowProp, $[20] = boundaryElement, $[21] = fallbackPlacements, $[22] = t7) : t7 = $[22];
|
|
4661
|
+
const middleware = useMiddleware(t7);
|
|
4662
|
+
let t8;
|
|
4663
|
+
$[23] !== referenceElement ? (t8 = {
|
|
4850
4664
|
reference: referenceElement
|
|
4851
|
-
}, $[
|
|
4852
|
-
let
|
|
4853
|
-
$[
|
|
4665
|
+
}, $[23] = referenceElement, $[24] = t8) : t8 = $[24];
|
|
4666
|
+
let t9;
|
|
4667
|
+
$[25] !== middleware || $[26] !== placementProp || $[27] !== t8 ? (t9 = {
|
|
4854
4668
|
middleware,
|
|
4855
4669
|
placement: placementProp,
|
|
4856
4670
|
whileElementsMounted: reactDom$1.autoUpdate,
|
|
4857
|
-
elements:
|
|
4858
|
-
}, $[
|
|
4671
|
+
elements: t8
|
|
4672
|
+
}, $[25] = middleware, $[26] = placementProp, $[27] = t8, $[28] = t9) : t9 = $[28];
|
|
4859
4673
|
const {
|
|
4860
4674
|
floatingStyles,
|
|
4861
4675
|
placement,
|
|
4862
4676
|
middlewareData,
|
|
4863
4677
|
refs,
|
|
4864
4678
|
update
|
|
4865
|
-
} = reactDom$1.useFloating(
|
|
4866
|
-
let
|
|
4867
|
-
$[
|
|
4679
|
+
} = reactDom$1.useFloating(t9), 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();
|
|
4680
|
+
let t10;
|
|
4681
|
+
$[29] !== delayGroupContext ? (t10 = delayGroupContext || {}, $[29] = delayGroupContext, $[30] = t10) : t10 = $[30];
|
|
4868
4682
|
const {
|
|
4869
4683
|
setIsGroupActive,
|
|
4870
4684
|
setOpenTooltipId
|
|
4871
|
-
} =
|
|
4872
|
-
let
|
|
4873
|
-
$[
|
|
4685
|
+
} = t10, 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;
|
|
4686
|
+
let t11;
|
|
4687
|
+
$[31] !== closeDelay || $[32] !== isInsideGroup || $[33] !== openDelay || $[34] !== setIsGroupActive || $[35] !== setIsOpen || $[36] !== setOpenTooltipId || $[37] !== tooltipId ? (t11 = (open, immediate) => {
|
|
4874
4688
|
if (isInsideGroup)
|
|
4875
4689
|
if (open) {
|
|
4876
4690
|
const groupedOpenDelay = immediate ? 0 : openDelay;
|
|
@@ -4881,55 +4695,55 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4881
4695
|
}
|
|
4882
4696
|
else
|
|
4883
4697
|
setIsOpen(open, immediate ? 0 : open ? openDelay : closeDelay);
|
|
4884
|
-
}, $[
|
|
4885
|
-
const handleIsOpenChange =
|
|
4886
|
-
let
|
|
4887
|
-
$[
|
|
4698
|
+
}, $[31] = closeDelay, $[32] = isInsideGroup, $[33] = openDelay, $[34] = setIsGroupActive, $[35] = setIsOpen, $[36] = setOpenTooltipId, $[37] = tooltipId, $[38] = t11) : t11 = $[38];
|
|
4699
|
+
const handleIsOpenChange = t11;
|
|
4700
|
+
let t12;
|
|
4701
|
+
$[39] !== childProp?.props || $[40] !== handleIsOpenChange ? (t12 = (e) => {
|
|
4888
4702
|
handleIsOpenChange(!1), childProp?.props?.onBlur?.(e);
|
|
4889
|
-
}, $[
|
|
4890
|
-
const handleBlur =
|
|
4891
|
-
let
|
|
4892
|
-
$[
|
|
4703
|
+
}, $[39] = childProp?.props, $[40] = handleIsOpenChange, $[41] = t12) : t12 = $[41];
|
|
4704
|
+
const handleBlur = t12;
|
|
4705
|
+
let t13;
|
|
4706
|
+
$[42] !== childProp?.props || $[43] !== handleIsOpenChange ? (t13 = (e_0) => {
|
|
4893
4707
|
handleIsOpenChange(!1, !0), childProp?.props.onClick?.(e_0);
|
|
4894
|
-
}, $[
|
|
4895
|
-
const handleClick =
|
|
4896
|
-
let
|
|
4897
|
-
$[
|
|
4708
|
+
}, $[42] = childProp?.props, $[43] = handleIsOpenChange, $[44] = t13) : t13 = $[44];
|
|
4709
|
+
const handleClick = t13;
|
|
4710
|
+
let t14;
|
|
4711
|
+
$[45] !== childProp?.props || $[46] !== handleIsOpenChange ? (t14 = (e_1) => {
|
|
4898
4712
|
handleIsOpenChange(!1, !0), childProp?.props.onContextMenu?.(e_1);
|
|
4899
|
-
}, $[
|
|
4900
|
-
const handleContextMenu =
|
|
4901
|
-
let
|
|
4902
|
-
$[
|
|
4713
|
+
}, $[45] = childProp?.props, $[46] = handleIsOpenChange, $[47] = t14) : t14 = $[47];
|
|
4714
|
+
const handleContextMenu = t14;
|
|
4715
|
+
let t15;
|
|
4716
|
+
$[48] !== childProp?.props || $[49] !== handleIsOpenChange ? (t15 = (e_2) => {
|
|
4903
4717
|
handleIsOpenChange(!0), childProp?.props?.onFocus?.(e_2);
|
|
4904
|
-
}, $[
|
|
4905
|
-
const handleFocus =
|
|
4906
|
-
let
|
|
4907
|
-
$[
|
|
4718
|
+
}, $[48] = childProp?.props, $[49] = handleIsOpenChange, $[50] = t15) : t15 = $[50];
|
|
4719
|
+
const handleFocus = t15;
|
|
4720
|
+
let t16;
|
|
4721
|
+
$[51] !== childProp?.props || $[52] !== handleIsOpenChange ? (t16 = (e_3) => {
|
|
4908
4722
|
handleIsOpenChange(!0), childProp?.props?.onMouseEnter?.(e_3);
|
|
4909
|
-
}, $[
|
|
4910
|
-
const handleMouseEnter =
|
|
4911
|
-
let
|
|
4912
|
-
$[
|
|
4723
|
+
}, $[51] = childProp?.props, $[52] = handleIsOpenChange, $[53] = t16) : t16 = $[53];
|
|
4724
|
+
const handleMouseEnter = t16;
|
|
4725
|
+
let t17;
|
|
4726
|
+
$[54] !== childProp?.props || $[55] !== handleIsOpenChange ? (t17 = (e_4) => {
|
|
4913
4727
|
handleIsOpenChange(!1), childProp?.props?.onMouseLeave?.(e_4);
|
|
4914
|
-
}, $[
|
|
4915
|
-
const handleMouseLeave =
|
|
4916
|
-
let
|
|
4917
|
-
$[
|
|
4728
|
+
}, $[54] = childProp?.props, $[55] = handleIsOpenChange, $[56] = t17) : t17 = $[56];
|
|
4729
|
+
const handleMouseLeave = t17;
|
|
4730
|
+
let t18;
|
|
4731
|
+
$[57] !== handleIsOpenChange || $[58] !== isInsideGroup || $[59] !== referenceElement || $[60] !== showTooltip ? (t18 = {
|
|
4918
4732
|
handleIsOpenChange,
|
|
4919
4733
|
referenceElement,
|
|
4920
4734
|
showTooltip,
|
|
4921
4735
|
isInsideGroup
|
|
4922
|
-
}, $[
|
|
4923
|
-
let
|
|
4924
|
-
$[
|
|
4736
|
+
}, $[57] = handleIsOpenChange, $[58] = isInsideGroup, $[59] = referenceElement, $[60] = showTooltip, $[61] = t18) : t18 = $[61], useCloseOnMouseLeave(t18);
|
|
4737
|
+
let t19, t20;
|
|
4738
|
+
$[62] !== disabled || $[63] !== handleIsOpenChange || $[64] !== showTooltip ? (t19 = () => {
|
|
4925
4739
|
disabled && showTooltip && handleIsOpenChange(!1);
|
|
4926
|
-
},
|
|
4927
|
-
let
|
|
4928
|
-
$[
|
|
4740
|
+
}, t20 = [disabled, handleIsOpenChange, showTooltip], $[62] = disabled, $[63] = handleIsOpenChange, $[64] = showTooltip, $[65] = t19, $[66] = t20) : (t19 = $[65], t20 = $[66]), react.useEffect(t19, t20);
|
|
4741
|
+
let t21, t22;
|
|
4742
|
+
$[67] !== content || $[68] !== handleIsOpenChange || $[69] !== showTooltip ? (t21 = () => {
|
|
4929
4743
|
!content && showTooltip && handleIsOpenChange(!1);
|
|
4930
|
-
},
|
|
4931
|
-
let
|
|
4932
|
-
$[
|
|
4744
|
+
}, t22 = [content, handleIsOpenChange, showTooltip], $[67] = content, $[68] = handleIsOpenChange, $[69] = showTooltip, $[70] = t21, $[71] = t22) : (t21 = $[70], t22 = $[71]), react.useEffect(t21, t22);
|
|
4745
|
+
let t23, t24;
|
|
4746
|
+
$[72] !== handleIsOpenChange || $[73] !== showTooltip ? (t23 = () => {
|
|
4933
4747
|
if (!showTooltip)
|
|
4934
4748
|
return;
|
|
4935
4749
|
const handleWindowKeyDown = function(event) {
|
|
@@ -4938,32 +4752,32 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4938
4752
|
return window.addEventListener("keydown", handleWindowKeyDown), () => {
|
|
4939
4753
|
window.removeEventListener("keydown", handleWindowKeyDown);
|
|
4940
4754
|
};
|
|
4941
|
-
},
|
|
4942
|
-
let
|
|
4943
|
-
$[
|
|
4755
|
+
}, t24 = [handleIsOpenChange, showTooltip], $[72] = handleIsOpenChange, $[73] = showTooltip, $[74] = t23, $[75] = t24) : (t23 = $[74], t24 = $[75]), react.useEffect(t23, t24);
|
|
4756
|
+
let t25;
|
|
4757
|
+
$[76] !== boundaryElement || $[77] !== portalElement?.offsetWidth ? (t25 = () => {
|
|
4944
4758
|
const availableWidths = [...boundaryElement ? [boundaryElement.offsetWidth] : [], portalElement?.offsetWidth || document.body.offsetWidth];
|
|
4945
4759
|
setTooltipMaxWidth(Math.min(...availableWidths) - DEFAULT_TOOLTIP_PADDING * 2);
|
|
4946
|
-
}, $[
|
|
4760
|
+
}, $[76] = boundaryElement, $[77] = portalElement?.offsetWidth, $[78] = t25) : t25 = $[78];
|
|
4761
|
+
let t26;
|
|
4762
|
+
$[79] !== boundaryElement || $[80] !== portalElement ? (t26 = [boundaryElement, portalElement], $[79] = boundaryElement, $[80] = portalElement, $[81] = t26) : t26 = $[81], react.useLayoutEffect(t25, t26);
|
|
4947
4763
|
let t27;
|
|
4948
|
-
$[
|
|
4949
|
-
let t28;
|
|
4950
|
-
$[84] !== update ? (t28 = (arrowEl) => {
|
|
4764
|
+
$[82] !== update ? (t27 = (arrowEl) => {
|
|
4951
4765
|
arrowRef.current = arrowEl, update();
|
|
4952
|
-
}, $[
|
|
4953
|
-
const setArrow =
|
|
4954
|
-
let
|
|
4955
|
-
$[
|
|
4766
|
+
}, $[82] = update, $[83] = t27) : t27 = $[83];
|
|
4767
|
+
const setArrow = t27;
|
|
4768
|
+
let t28;
|
|
4769
|
+
$[84] !== refs ? (t28 = (node) => {
|
|
4956
4770
|
ref.current = node, refs.setFloating(node);
|
|
4957
|
-
}, $[
|
|
4958
|
-
const setFloating =
|
|
4959
|
-
let
|
|
4771
|
+
}, $[84] = refs, $[85] = t28) : t28 = $[85];
|
|
4772
|
+
const setFloating = t28;
|
|
4773
|
+
let t29;
|
|
4960
4774
|
bb0: {
|
|
4961
4775
|
if (!childProp) {
|
|
4962
|
-
|
|
4776
|
+
t29 = null;
|
|
4963
4777
|
break bb0;
|
|
4964
4778
|
}
|
|
4965
|
-
let
|
|
4966
|
-
$[
|
|
4779
|
+
let t302;
|
|
4780
|
+
$[86] !== childProp || $[87] !== handleBlur || $[88] !== handleClick || $[89] !== handleContextMenu || $[90] !== handleFocus || $[91] !== handleMouseEnter || $[92] !== handleMouseLeave ? (t302 = react.cloneElement(childProp, {
|
|
4967
4781
|
onBlur: handleBlur,
|
|
4968
4782
|
onFocus: handleFocus,
|
|
4969
4783
|
onMouseEnter: handleMouseEnter,
|
|
@@ -4971,39 +4785,39 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4971
4785
|
onClick: handleClick,
|
|
4972
4786
|
onContextMenu: handleContextMenu,
|
|
4973
4787
|
ref: setReferenceElement
|
|
4974
|
-
}), $[
|
|
4788
|
+
}), $[86] = childProp, $[87] = handleBlur, $[88] = handleClick, $[89] = handleContextMenu, $[90] = handleFocus, $[91] = handleMouseEnter, $[92] = handleMouseLeave, $[93] = t302) : t302 = $[93], t29 = t302;
|
|
4975
4789
|
}
|
|
4976
|
-
const child =
|
|
4977
|
-
let
|
|
4978
|
-
$[
|
|
4979
|
-
let
|
|
4980
|
-
if ($[
|
|
4981
|
-
let
|
|
4982
|
-
return $[
|
|
4790
|
+
const child = t29;
|
|
4791
|
+
let t30;
|
|
4792
|
+
$[94] !== childProp ? (t30 = childProp ? getElementRef(childProp) : null, $[94] = childProp, $[95] = t30) : t30 = $[95];
|
|
4793
|
+
let t31, t32;
|
|
4794
|
+
if ($[96] !== referenceElement ? (t31 = () => referenceElement, t32 = [referenceElement], $[96] = referenceElement, $[97] = t31, $[98] = t32) : (t31 = $[97], t32 = $[98]), react.useImperativeHandle(t30, t31, t32), !child) {
|
|
4795
|
+
let t332;
|
|
4796
|
+
return $[99] === Symbol.for("react.memo_cache_sentinel") ? (t332 = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[99] = t332) : t332 = $[99], t332;
|
|
4983
4797
|
}
|
|
4984
4798
|
if (disabled)
|
|
4985
4799
|
return child;
|
|
4986
|
-
const
|
|
4987
|
-
let
|
|
4988
|
-
$[
|
|
4800
|
+
const t33 = tooltipMaxWidth > 0 ? `${tooltipMaxWidth}px` : void 0;
|
|
4801
|
+
let t34;
|
|
4802
|
+
$[100] !== floatingStyles || $[101] !== t33 ? (t34 = {
|
|
4989
4803
|
...floatingStyles,
|
|
4990
|
-
maxWidth:
|
|
4991
|
-
}, $[
|
|
4804
|
+
maxWidth: t33
|
|
4805
|
+
}, $[100] = floatingStyles, $[101] = t33, $[102] = t34) : t34 = $[102];
|
|
4806
|
+
let t35;
|
|
4807
|
+
$[103] !== animate || $[104] !== arrowProp || $[105] !== arrowX || $[106] !== arrowY || $[107] !== content || $[108] !== originX || $[109] !== originY || $[110] !== padding || $[111] !== placement || $[112] !== radius || $[113] !== restProps || $[114] !== scheme || $[115] !== setArrow || $[116] !== setFloating || $[117] !== shadow ? (t35 = /* @__PURE__ */ jsxRuntime.jsx(TooltipCard, { ...restProps, animate, arrow: arrowProp, arrowRef: setArrow, arrowX, arrowY, originX, originY, padding, placement, radius, ref: setFloating, scheme, shadow, children: content }), $[103] = animate, $[104] = arrowProp, $[105] = arrowX, $[106] = arrowY, $[107] = content, $[108] = originX, $[109] = originY, $[110] = padding, $[111] = placement, $[112] = radius, $[113] = restProps, $[114] = scheme, $[115] = setArrow, $[116] = setFloating, $[117] = shadow, $[118] = t35) : t35 = $[118];
|
|
4992
4808
|
let t36;
|
|
4993
|
-
$[
|
|
4809
|
+
$[119] !== restProps || $[120] !== setFloating || $[121] !== t34 || $[122] !== t35 || $[123] !== zOffset ? (t36 = /* @__PURE__ */ jsxRuntime.jsx(StyledTooltip, { "data-ui": "Tooltip", ...restProps, ref: setFloating, style: t34, zOffset, children: t35 }), $[119] = restProps, $[120] = setFloating, $[121] = t34, $[122] = t35, $[123] = zOffset, $[124] = t36) : t36 = $[124];
|
|
4810
|
+
const tooltip = t36;
|
|
4994
4811
|
let t37;
|
|
4995
|
-
$[
|
|
4996
|
-
const
|
|
4812
|
+
$[125] !== portalProp || $[126] !== showTooltip || $[127] !== tooltip ? (t37 = showTooltip && (portalProp ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portalProp == "string" ? portalProp : void 0, children: tooltip }) : tooltip), $[125] = portalProp, $[126] = showTooltip, $[127] = tooltip, $[128] = t37) : t37 = $[128];
|
|
4813
|
+
const children = t37;
|
|
4997
4814
|
let t38;
|
|
4998
|
-
$[
|
|
4999
|
-
const children = t38;
|
|
4815
|
+
$[129] !== animate || $[130] !== children ? (t38 = animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children, $[129] = animate, $[130] = children, $[131] = t38) : t38 = $[131];
|
|
5000
4816
|
let t39;
|
|
5001
|
-
$[
|
|
5002
|
-
|
|
5003
|
-
return $[134] !== child || $[135] !== t39 ? (t40 = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
5004
|
-
t39,
|
|
4817
|
+
return $[132] !== child || $[133] !== t38 ? (t39 = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
4818
|
+
t38,
|
|
5005
4819
|
child
|
|
5006
|
-
] }), $[
|
|
4820
|
+
] }), $[132] = child, $[133] = t38, $[134] = t39) : t39 = $[134], t39;
|
|
5007
4821
|
});
|
|
5008
4822
|
Tooltip.displayName = "ForwardRef(Tooltip)";
|
|
5009
4823
|
function useMiddleware(t0) {
|
|
@@ -5079,7 +4893,7 @@ const StyledHotkeys = styledComponents.styled.kbd.withConfig({
|
|
|
5079
4893
|
displayName: "Key",
|
|
5080
4894
|
componentId: "sc-b37mge-1"
|
|
5081
4895
|
})`&:not([hidden]){display:block;}`, Hotkeys = react.forwardRef(function(props, ref) {
|
|
5082
|
-
const $ = reactCompilerRuntime.c(
|
|
4896
|
+
const $ = reactCompilerRuntime.c(24);
|
|
5083
4897
|
let fontSize2, keys, padding, radius, restProps, t0;
|
|
5084
4898
|
$[0] !== props ? ({
|
|
5085
4899
|
fontSize: fontSize2,
|
|
@@ -5089,24 +4903,21 @@ const StyledHotkeys = styledComponents.styled.kbd.withConfig({
|
|
|
5089
4903
|
space: t0,
|
|
5090
4904
|
...restProps
|
|
5091
4905
|
} = 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]);
|
|
5092
|
-
const
|
|
5093
|
-
let t1;
|
|
5094
|
-
$[7] !== spaceProp ? (t1 = _getArrayProp(spaceProp), $[7] = spaceProp, $[8] = t1) : t1 = $[8];
|
|
5095
|
-
const space = t1;
|
|
4906
|
+
const space = useArrayProp(t0 === void 0 ? 0.5 : t0);
|
|
5096
4907
|
if (!keys || keys.length === 0) {
|
|
5097
|
-
let
|
|
5098
|
-
return $[
|
|
4908
|
+
let t12;
|
|
4909
|
+
return $[7] === Symbol.for("react.memo_cache_sentinel") ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[7] = t12) : t12 = $[7], t12;
|
|
5099
4910
|
}
|
|
5100
|
-
let
|
|
5101
|
-
if ($[
|
|
5102
|
-
let
|
|
5103
|
-
$[
|
|
4911
|
+
let t1;
|
|
4912
|
+
if ($[8] !== fontSize2 || $[9] !== keys || $[10] !== padding || $[11] !== radius) {
|
|
4913
|
+
let t22;
|
|
4914
|
+
$[13] !== fontSize2 || $[14] !== padding || $[15] !== radius ? (t22 = (key2, i) => /* @__PURE__ */ jsxRuntime.jsx(Key, { fontSize: fontSize2, padding, radius, children: key2 }, i), $[13] = fontSize2, $[14] = padding, $[15] = radius, $[16] = t22) : t22 = $[16], t1 = keys.map(t22), $[8] = fontSize2, $[9] = keys, $[10] = padding, $[11] = radius, $[12] = t1;
|
|
5104
4915
|
} else
|
|
5105
|
-
|
|
4916
|
+
t1 = $[12];
|
|
4917
|
+
let t2;
|
|
4918
|
+
$[17] !== space || $[18] !== t1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(Inline, { as: "span", space, children: t1 }), $[17] = space, $[18] = t1, $[19] = t2) : t2 = $[19];
|
|
5106
4919
|
let t3;
|
|
5107
|
-
$[
|
|
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;
|
|
4920
|
+
return $[20] !== ref || $[21] !== restProps || $[22] !== t2 ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(StyledHotkeys, { "data-ui": "Hotkeys", ...restProps, ref, children: t2 }), $[20] = ref, $[21] = restProps, $[22] = t2, $[23] = t3) : t3 = $[23], t3;
|
|
5110
4921
|
});
|
|
5111
4922
|
Hotkeys.displayName = "ForwardRef(Hotkeys)";
|
|
5112
4923
|
const MenuContext = createGlobalScopedContext("@sanity/ui/context/menu", null);
|
|
@@ -5477,7 +5288,7 @@ function useMenu() {
|
|
|
5477
5288
|
return value;
|
|
5478
5289
|
}
|
|
5479
5290
|
function MenuGroup(props) {
|
|
5480
|
-
const $ = reactCompilerRuntime.c(
|
|
5291
|
+
const $ = reactCompilerRuntime.c(79);
|
|
5481
5292
|
let IconComponent, children, menuProps, onClick, popover, restProps, t0, t1, t2, t3, t4, t5, text;
|
|
5482
5293
|
$[0] !== props ? ({
|
|
5483
5294
|
as: t0,
|
|
@@ -5558,35 +5369,32 @@ function MenuGroup(props) {
|
|
|
5558
5369
|
return;
|
|
5559
5370
|
}
|
|
5560
5371
|
}, $[45] = t20) : t20 = $[45];
|
|
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;
|
|
5372
|
+
const handleKeyDown = t20, t21 = as === "button" ? withinMenu : void 0, t22 = as !== "button" ? withinMenu : void 0, t23 = !withinMenu && active ? "" : void 0, t24 = useArrayProp(radius), t25 = as === "button" ? "button" : void 0;
|
|
5565
5373
|
let t26;
|
|
5566
|
-
$[
|
|
5374
|
+
$[46] !== IconComponent || $[47] !== fontSize2 ? (t26 = IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
5567
5375
|
react.isValidElement(IconComponent) && IconComponent,
|
|
5568
5376
|
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
5569
|
-
] }), $[
|
|
5377
|
+
] }), $[46] = IconComponent, $[47] = fontSize2, $[48] = t26) : t26 = $[48];
|
|
5570
5378
|
let t27;
|
|
5571
|
-
$[
|
|
5379
|
+
$[49] !== fontSize2 || $[50] !== text ? (t27 = /* @__PURE__ */ jsxRuntime.jsx(Box, { flex: 1, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, textOverflow: "ellipsis", weight: "medium", children: text }) }), $[49] = fontSize2, $[50] = text, $[51] = t27) : t27 = $[51];
|
|
5572
5380
|
let t28;
|
|
5573
|
-
$[
|
|
5381
|
+
$[52] === Symbol.for("react.memo_cache_sentinel") ? (t28 = /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronRightIcon, {}), $[52] = t28) : t28 = $[52];
|
|
5574
5382
|
let t29;
|
|
5575
|
-
$[
|
|
5383
|
+
$[53] !== fontSize2 ? (t29 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: t28 }), $[53] = fontSize2, $[54] = t29) : t29 = $[54];
|
|
5576
5384
|
let t30;
|
|
5577
|
-
$[
|
|
5385
|
+
$[55] !== padding || $[56] !== space || $[57] !== t26 || $[58] !== t27 || $[59] !== t29 ? (t30 = /* @__PURE__ */ jsxRuntime.jsxs(Flex, { gap: space, padding, children: [
|
|
5578
5386
|
t26,
|
|
5579
5387
|
t27,
|
|
5580
5388
|
t29
|
|
5581
|
-
] }), $[
|
|
5389
|
+
] }), $[55] = padding, $[56] = space, $[57] = t26, $[58] = t27, $[59] = t29, $[60] = t30) : t30 = $[60];
|
|
5582
5390
|
let t31;
|
|
5583
|
-
$[
|
|
5391
|
+
$[61] !== as || $[62] !== handleClick || $[63] !== handleMouseEnter || $[64] !== restProps || $[65] !== scheme || $[66] !== t21 || $[67] !== t22 || $[68] !== t23 || $[69] !== t24 || $[70] !== t25 || $[71] !== t30 || $[72] !== 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 }), $[61] = as, $[62] = handleClick, $[63] = handleMouseEnter, $[64] = restProps, $[65] = scheme, $[66] = t21, $[67] = t22, $[68] = t23, $[69] = t24, $[70] = t25, $[71] = t30, $[72] = tone, $[73] = t31) : t31 = $[73];
|
|
5584
5392
|
let t32;
|
|
5585
|
-
return $[
|
|
5393
|
+
return $[74] !== childMenu || $[75] !== open || $[76] !== popover || $[77] !== t31 ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(Popover, { ...popover, content: childMenu, "data-ui": "MenuGroup__popover", open, children: t31 }), $[74] = childMenu, $[75] = open, $[76] = popover, $[77] = t31, $[78] = t32) : t32 = $[78], t32;
|
|
5586
5394
|
}
|
|
5587
5395
|
MenuGroup.displayName = "MenuGroup";
|
|
5588
5396
|
const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
5589
|
-
const $ = reactCompilerRuntime.c(
|
|
5397
|
+
const $ = reactCompilerRuntime.c(73);
|
|
5590
5398
|
let IconComponent, IconRightComponent, children, disabled, hotkeys, onClick, paddingBottom, paddingLeft, paddingRight, paddingTop, paddingX, paddingY, pressed, restProps, selectedProp, t0, t1, t2, t3, t4, t5, text;
|
|
5591
5399
|
$[0] !== props ? ({
|
|
5592
5400
|
as: t0,
|
|
@@ -5640,22 +5448,17 @@ const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
|
5640
5448
|
paddingBottom,
|
|
5641
5449
|
paddingLeft
|
|
5642
5450
|
}, $[33] = padding, $[34] = paddingBottom, $[35] = paddingLeft, $[36] = paddingRight, $[37] = paddingTop, $[38] = paddingX, $[39] = paddingY, $[40] = t10) : t10 = $[40];
|
|
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;
|
|
5451
|
+
const paddingProps = t10, t11 = useArrayProp(fontSize2);
|
|
5647
5452
|
let t12;
|
|
5648
|
-
$[
|
|
5453
|
+
$[41] !== t11 ? (t12 = t11.map(_temp), $[41] = t11, $[42] = t12) : t12 = $[42];
|
|
5454
|
+
const hotkeysFontSize = t12;
|
|
5455
|
+
let t13;
|
|
5456
|
+
$[43] === Symbol.for("react.memo_cache_sentinel") ? (t13 = (el) => {
|
|
5649
5457
|
ref.current = el, setRootElement(el);
|
|
5650
|
-
}, $[43] =
|
|
5651
|
-
const setRef =
|
|
5652
|
-
let
|
|
5653
|
-
$[44] !==
|
|
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: [
|
|
5458
|
+
}, $[43] = t13) : t13 = $[43];
|
|
5459
|
+
const setRef = t13, t14 = as !== "button" && pressed ? "" : void 0, t15 = active ? "" : void 0, t16 = disabled ? "" : void 0, t17 = useArrayProp(radius), t18 = useArrayProp(0), t19 = disabled ? "default" : tone, t20 = as === "button" ? "button" : void 0;
|
|
5460
|
+
let t21;
|
|
5461
|
+
$[44] !== IconComponent || $[45] !== IconRightComponent || $[46] !== fontSize2 || $[47] !== hotkeys || $[48] !== hotkeysFontSize || $[49] !== paddingProps || $[50] !== space || $[51] !== text ? (t21 = (IconComponent || text || IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsxs(Flex, { as: "span", gap: space, align: "center", ...paddingProps, children: [
|
|
5659
5462
|
IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
5660
5463
|
react.isValidElement(IconComponent) && IconComponent,
|
|
5661
5464
|
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
@@ -5669,14 +5472,14 @@ const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
|
5669
5472
|
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
5670
5473
|
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
5671
5474
|
] })
|
|
5672
|
-
] }), $[
|
|
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];
|
|
5475
|
+
] }), $[44] = IconComponent, $[45] = IconRightComponent, $[46] = fontSize2, $[47] = hotkeys, $[48] = hotkeysFontSize, $[49] = paddingProps, $[50] = space, $[51] = text, $[52] = t21) : t21 = $[52];
|
|
5675
5476
|
let t22;
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
|
|
5477
|
+
$[53] !== children || $[54] !== paddingProps ? (t22 = children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...paddingProps, children }), $[53] = children, $[54] = paddingProps, $[55] = t22) : t22 = $[55];
|
|
5478
|
+
let t23;
|
|
5479
|
+
return $[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 ? (t23 = /* @__PURE__ */ jsxRuntime.jsxs(Selectable, { "data-ui": "MenuItem", role: "menuitem", ...restProps, "data-pressed": t14, "data-selected": t15, "data-disabled": t16, forwardedAs: as, $radius: t17, $padding: t18, $tone: t19, $scheme: scheme, disabled, onClick: handleClick, onMouseEnter: onItemMouseEnter, onMouseLeave: onItemMouseLeave, ref: setRef, tabIndex: -1, type: t20, children: [
|
|
5480
|
+
t21,
|
|
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;
|
|
5680
5483
|
});
|
|
5681
5484
|
MenuItem.displayName = "ForwardRef(MenuItem)";
|
|
5682
5485
|
function _temp(s) {
|
|
@@ -5839,6 +5642,7 @@ exports.rgbToHsl = rgbToHsl;
|
|
|
5839
5642
|
exports.rgba = rgba;
|
|
5840
5643
|
exports.screen = screen;
|
|
5841
5644
|
exports.studioTheme = studioTheme;
|
|
5645
|
+
exports.useArrayProp = useArrayProp;
|
|
5842
5646
|
exports.useBoundaryElement = useBoundaryElement;
|
|
5843
5647
|
exports.useClickOutsideEvent = useClickOutsideEvent;
|
|
5844
5648
|
exports.useCustomValidity = useCustomValidity;
|