@sanity/ui 3.0.14 → 3.0.15-canary.0
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 +758 -1819
- package/dist/_chunks-cjs/_visual-editing.js.map +1 -1
- package/dist/_chunks-cjs/refractor.js +7 -15
- package/dist/_chunks-cjs/refractor.js.map +1 -1
- package/dist/_chunks-es/_visual-editing.mjs +760 -1822
- package/dist/_chunks-es/_visual-editing.mjs.map +1 -1
- package/dist/_chunks-es/refractor.mjs +6 -15
- package/dist/_chunks-es/refractor.mjs.map +1 -1
- package/dist/index.js +346 -847
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +347 -849
- package/dist/index.mjs.map +1 -1
- package/package.json +27 -41
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var theme = require("@sanity/ui/theme"), jsxRuntime = require("react/jsx-runtime"),
|
|
2
|
+
var theme = require("@sanity/ui/theme"), jsxRuntime = require("react/jsx-runtime"), react = require("react"), styledComponents = require("styled-components"), ReactIs = require("react-is"), icons = require("@sanity/icons"), reactDom$1 = require("@floating-ui/react-dom"), framerMotion = require("framer-motion"), resizeObserver = require("@juggle/resize-observer"), reactDom = require("react-dom"), useEffectEvent = require("use-effect-event");
|
|
3
3
|
function _interopDefaultCompat(e) {
|
|
4
4
|
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
5
5
|
}
|
|
@@ -207,42 +207,15 @@ function createGlobalScopedContext(key2, defaultValue) {
|
|
|
207
207
|
}
|
|
208
208
|
const ThemeContext = createGlobalScopedContext("@sanity/ui/context/theme", null);
|
|
209
209
|
function ThemeProvider(props) {
|
|
210
|
-
const
|
|
210
|
+
const parentTheme = react.useContext(ThemeContext), {
|
|
211
211
|
children
|
|
212
|
-
} = props, scheme = props.scheme ?? (parentTheme?.scheme || "light"), rootTheme = props.theme ?? (parentTheme?.theme || null), tone = props.tone ?? (parentTheme?.tone || "default")
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
let t12;
|
|
220
|
-
$[0] !== rootTheme || $[1] !== scheme || $[2] !== tone ? (t12 = {
|
|
221
|
-
version: 0,
|
|
222
|
-
theme: rootTheme,
|
|
223
|
-
scheme,
|
|
224
|
-
tone
|
|
225
|
-
}, $[0] = rootTheme, $[1] = scheme, $[2] = tone, $[3] = t12) : t12 = $[3], t0 = t12;
|
|
226
|
-
}
|
|
227
|
-
const themeContext = t0;
|
|
228
|
-
let t1;
|
|
229
|
-
bb1: {
|
|
230
|
-
if (!rootTheme) {
|
|
231
|
-
t1 = null;
|
|
232
|
-
break bb1;
|
|
233
|
-
}
|
|
234
|
-
let t22;
|
|
235
|
-
$[4] !== rootTheme || $[5] !== scheme || $[6] !== tone ? (t22 = theme.getScopedTheme(rootTheme, scheme, tone), $[4] = rootTheme, $[5] = scheme, $[6] = tone, $[7] = t22) : t22 = $[7], t1 = t22;
|
|
236
|
-
}
|
|
237
|
-
const theme$1 = t1;
|
|
238
|
-
if (!theme$1) {
|
|
239
|
-
let t22;
|
|
240
|
-
return $[8] === Symbol.for("react.memo_cache_sentinel") ? (t22 = /* @__PURE__ */ jsxRuntime.jsx("pre", { children: 'ThemeProvider: no "theme" property provided' }), $[8] = t22) : t22 = $[8], t22;
|
|
241
|
-
}
|
|
242
|
-
let t2;
|
|
243
|
-
$[9] !== children || $[10] !== theme$1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(styledComponents.ThemeProvider, { theme: theme$1, children }), $[9] = children, $[10] = theme$1, $[11] = t2) : t2 = $[11];
|
|
244
|
-
let t3;
|
|
245
|
-
return $[12] !== t2 || $[13] !== themeContext ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(ThemeContext.Provider, { value: themeContext, children: t2 }), $[12] = t2, $[13] = themeContext, $[14] = t3) : t3 = $[14], t3;
|
|
212
|
+
} = props, scheme = props.scheme ?? (parentTheme?.scheme || "light"), rootTheme = props.theme ?? (parentTheme?.theme || null), tone = props.tone ?? (parentTheme?.tone || "default"), themeContext = react.useMemo(() => rootTheme ? {
|
|
213
|
+
version: 0,
|
|
214
|
+
theme: rootTheme,
|
|
215
|
+
scheme,
|
|
216
|
+
tone
|
|
217
|
+
} : null, [rootTheme, scheme, tone]), theme$1 = react.useMemo(() => rootTheme ? theme.getScopedTheme(rootTheme, scheme, tone) : null, [scheme, rootTheme, tone]);
|
|
218
|
+
return theme$1 ? /* @__PURE__ */ jsxRuntime.jsx(ThemeContext.Provider, { value: themeContext, children: /* @__PURE__ */ jsxRuntime.jsx(styledComponents.ThemeProvider, { theme: theme$1, children }) }) : /* @__PURE__ */ jsxRuntime.jsx("pre", { children: 'ThemeProvider: no "theme" property provided' });
|
|
246
219
|
}
|
|
247
220
|
ThemeProvider.displayName = "ThemeProvider";
|
|
248
221
|
function useRootTheme() {
|
|
@@ -252,22 +225,19 @@ function useRootTheme() {
|
|
|
252
225
|
return value;
|
|
253
226
|
}
|
|
254
227
|
function ThemeColorProvider(props) {
|
|
255
|
-
const
|
|
228
|
+
const {
|
|
256
229
|
children,
|
|
257
230
|
scheme,
|
|
258
231
|
tone
|
|
259
|
-
} = props, root = useRootTheme()
|
|
260
|
-
|
|
261
|
-
return $[0] !== children || $[1] !== root.theme || $[2] !== t0 || $[3] !== tone ? (t1 = /* @__PURE__ */ jsxRuntime.jsx(ThemeProvider, { scheme: t0, theme: root.theme, tone, children }), $[0] = children, $[1] = root.theme, $[2] = t0, $[3] = tone, $[4] = t1) : t1 = $[4], t1;
|
|
232
|
+
} = props, root = useRootTheme();
|
|
233
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ThemeProvider, { scheme: scheme || root.scheme, theme: root.theme, tone, children });
|
|
262
234
|
}
|
|
263
235
|
ThemeColorProvider.displayName = "ThemeColorProvider";
|
|
264
236
|
function useTheme() {
|
|
265
237
|
return styledComponents.useTheme();
|
|
266
238
|
}
|
|
267
239
|
function useTheme_v2() {
|
|
268
|
-
|
|
269
|
-
let t1;
|
|
270
|
-
return $[0] !== t0 ? (t1 = theme.getTheme_v2(t0), $[0] = t0, $[1] = t1) : t1 = $[1], t1;
|
|
240
|
+
return theme.getTheme_v2(styledComponents.useTheme());
|
|
271
241
|
}
|
|
272
242
|
function responsiveBorderStyle() {
|
|
273
243
|
return [border, borderTop, borderRight, borderBottom, borderLeft];
|
|
@@ -982,33 +952,18 @@ const StyledLabel = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
982
952
|
displayName: "StyledLabel",
|
|
983
953
|
componentId: "sc-1luap7z-0"
|
|
984
954
|
})(responsiveLabelFont, responsiveTextAlignStyle, labelBaseStyle), Label = react.forwardRef(function(props, ref) {
|
|
985
|
-
const
|
|
986
|
-
let accent, align, childrenProp, restProps, t0, t1, textOverflow, weight;
|
|
987
|
-
$[0] !== props ? ({
|
|
955
|
+
const {
|
|
988
956
|
accent,
|
|
989
957
|
align,
|
|
990
958
|
children: childrenProp,
|
|
991
|
-
muted
|
|
992
|
-
size:
|
|
959
|
+
muted = !1,
|
|
960
|
+
size: size2 = 2,
|
|
993
961
|
textOverflow,
|
|
994
962
|
weight,
|
|
995
963
|
...restProps
|
|
996
|
-
} = props
|
|
997
|
-
const muted = t0 === void 0 ? !1 : t0, size2 = t1 === void 0 ? 2 : t1;
|
|
964
|
+
} = props;
|
|
998
965
|
let children = childrenProp;
|
|
999
|
-
|
|
1000
|
-
let t22;
|
|
1001
|
-
$[9] !== children ? (t22 = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }), $[9] = children, $[10] = t22) : t22 = $[10], children = t22;
|
|
1002
|
-
} else {
|
|
1003
|
-
let t22;
|
|
1004
|
-
$[11] !== children ? (t22 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[11] = children, $[12] = t22) : t22 = $[12], children = t22;
|
|
1005
|
-
}
|
|
1006
|
-
let t2;
|
|
1007
|
-
$[13] !== align ? (t2 = _getArrayProp(align), $[13] = align, $[14] = t2) : t2 = $[14];
|
|
1008
|
-
let t3;
|
|
1009
|
-
$[15] !== size2 ? (t3 = _getArrayProp(size2), $[15] = size2, $[16] = t3) : t3 = $[16];
|
|
1010
|
-
let t4;
|
|
1011
|
-
return $[17] !== accent || $[18] !== children || $[19] !== muted || $[20] !== ref || $[21] !== restProps || $[22] !== t2 || $[23] !== t3 || $[24] !== weight ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(StyledLabel, { "data-ui": "Label", ...restProps, $accent: accent, $align: t2, $muted: muted, $size: t3, $weight: weight, ref, children }), $[17] = accent, $[18] = children, $[19] = muted, $[20] = ref, $[21] = restProps, $[22] = t2, $[23] = t3, $[24] = weight, $[25] = t4) : t4 = $[25], t4;
|
|
966
|
+
return textOverflow === "ellipsis" ? children = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }) : children = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), /* @__PURE__ */ jsxRuntime.jsx(StyledLabel, { "data-ui": "Label", ...restProps, $accent: accent, $align: _getArrayProp(align), $muted: muted, $size: _getArrayProp(size2), $weight: weight, ref, children });
|
|
1012
967
|
});
|
|
1013
968
|
Label.displayName = "ForwardRef(Label)";
|
|
1014
969
|
const avatarStyle = {
|
|
@@ -1178,62 +1133,44 @@ const StyledAvatar = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1178
1133
|
displayName: "AvatarImage",
|
|
1179
1134
|
componentId: "sc-1rj7kl0-6"
|
|
1180
1135
|
})(avatarStyle.image), Avatar = react.forwardRef(function(props, ref) {
|
|
1181
|
-
const
|
|
1182
|
-
let __unstable_hideInnerStroke, animateArrowFrom, arrowPositionProp, asProp, initials, onImageLoadError, restProps, src, t0, t1, t2, title;
|
|
1183
|
-
$[0] !== props ? ({
|
|
1136
|
+
const {
|
|
1184
1137
|
__unstable_hideInnerStroke,
|
|
1185
1138
|
as: asProp,
|
|
1186
|
-
color
|
|
1139
|
+
color = "gray",
|
|
1187
1140
|
src,
|
|
1188
1141
|
title,
|
|
1189
1142
|
initials,
|
|
1190
1143
|
onImageLoadError,
|
|
1191
1144
|
arrowPosition: arrowPositionProp,
|
|
1192
1145
|
animateArrowFrom,
|
|
1193
|
-
status
|
|
1194
|
-
size:
|
|
1146
|
+
status = "online",
|
|
1147
|
+
size: sizeProp = 1,
|
|
1195
1148
|
...restProps
|
|
1196
|
-
} = props,
|
|
1197
|
-
const color = t0 === void 0 ? "gray" : t0, status = t1 === void 0 ? "online" : t1, sizeProp = t2 === void 0 ? 1 : t2, {
|
|
1149
|
+
} = props, {
|
|
1198
1150
|
avatar
|
|
1199
1151
|
} = useTheme_v2(), as = ReactIs__default.default.isValidElementType(asProp) ? asProp : "div", size2 = _getArrayProp(sizeProp), _sizeRem = (avatar.sizes[size2[0]] || avatar.sizes[0]).size, _radius = _sizeRem / 2, elementId = react.useId(), [arrowPosition, setArrowPosition] = react.useState(animateArrowFrom || arrowPositionProp || "inside"), [imageFailed, setImageFailed] = react.useState(!1), imageId = `avatar-image-${elementId}`;
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
if (arrowPosition === arrowPositionProp)
|
|
1203
|
-
return;
|
|
1152
|
+
react.useEffect(() => {
|
|
1153
|
+
if (arrowPosition === arrowPositionProp) return;
|
|
1204
1154
|
const raf = requestAnimationFrame(() => setArrowPosition(arrowPositionProp));
|
|
1205
1155
|
return () => cancelAnimationFrame(raf);
|
|
1206
|
-
},
|
|
1207
|
-
let t5, t6;
|
|
1208
|
-
$[17] !== src ? (t5 = () => {
|
|
1156
|
+
}, [arrowPosition, arrowPositionProp]), react.useEffect(() => {
|
|
1209
1157
|
src && setImageFailed(!1);
|
|
1210
|
-
},
|
|
1211
|
-
|
|
1212
|
-
$[20] !== onImageLoadError ? (t7 = () => {
|
|
1158
|
+
}, [src]);
|
|
1159
|
+
const handleImageError = react.useCallback(() => {
|
|
1213
1160
|
setImageFailed(!0), onImageLoadError && onImageLoadError(new Error("Avatar: the image failed to load"));
|
|
1214
|
-
},
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1224
|
-
] })
|
|
1225
|
-
const t12 = (imageFailed || !src) && initials && /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsx(Initials, { children: /* @__PURE__ */ jsxRuntime.jsx(InitialsLabel, { forwardedAs: "span", size: size2.map(_temp$a), weight: "medium", children: initials }) }) });
|
|
1226
|
-
let t13;
|
|
1227
|
-
return $[32] !== T0 || $[33] !== arrowPosition || $[34] !== as || $[35] !== color || $[36] !== ref || $[37] !== restProps || $[38] !== size2 || $[39] !== status || $[40] !== t10 || $[41] !== t11 || $[42] !== t12 || $[43] !== t8 || $[44] !== title ? (t13 = /* @__PURE__ */ jsxRuntime.jsxs(T0, { as, "data-as": t8, "data-ui": t9, ...restProps, $color: color, $size: size2, "aria-label": title, "data-arrow-position": arrowPosition, "data-status": status, ref, title, children: [
|
|
1228
|
-
t10,
|
|
1229
|
-
t11,
|
|
1230
|
-
t12
|
|
1231
|
-
] }), $[32] = T0, $[33] = arrowPosition, $[34] = as, $[35] = color, $[36] = ref, $[37] = restProps, $[38] = size2, $[39] = status, $[40] = t10, $[41] = t11, $[42] = t12, $[43] = t8, $[44] = title, $[45] = t13) : t13 = $[45], t13;
|
|
1161
|
+
}, [onImageLoadError]);
|
|
1162
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(StyledAvatar, { as, "data-as": typeof as == "string" ? as : void 0, "data-ui": "Avatar", ...restProps, $color: color, $size: size2, "aria-label": title, "data-arrow-position": arrowPosition, "data-status": status, ref, title, children: [
|
|
1163
|
+
/* @__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 }) }) }),
|
|
1164
|
+
!imageFailed && src && /* @__PURE__ */ jsxRuntime.jsxs(AvatarImage, { viewBox: `0 0 ${_sizeRem} ${_sizeRem}`, fill: "none", children: [
|
|
1165
|
+
/* @__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 }) }) }),
|
|
1166
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: _radius, cy: _radius, r: _radius, fill: `url(#${imageId})` }),
|
|
1167
|
+
!__unstable_hideInnerStroke && /* @__PURE__ */ jsxRuntime.jsx(BgStroke, { cx: _radius, cy: _radius, rx: _radius, ry: _radius, vectorEffect: "non-scaling-stroke" }),
|
|
1168
|
+
/* @__PURE__ */ jsxRuntime.jsx(Stroke, { cx: _radius, cy: _radius, rx: _radius, ry: _radius, vectorEffect: "non-scaling-stroke" })
|
|
1169
|
+
] }),
|
|
1170
|
+
(imageFailed || !src) && initials && /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsx(Initials, { children: /* @__PURE__ */ jsxRuntime.jsx(InitialsLabel, { forwardedAs: "span", size: size2.map((s) => s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0), weight: "medium", children: initials }) }) })
|
|
1171
|
+
] });
|
|
1232
1172
|
});
|
|
1233
1173
|
Avatar.displayName = "ForwardRef(Avatar)";
|
|
1234
|
-
function _temp$a(s) {
|
|
1235
|
-
return s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0;
|
|
1236
|
-
}
|
|
1237
1174
|
function _responsiveAvatarCounterSizeStyle(props) {
|
|
1238
1175
|
const {
|
|
1239
1176
|
avatar,
|
|
@@ -1274,25 +1211,13 @@ const StyledAvatarCounter = /* @__PURE__ */ styledComponents.styled.div.withConf
|
|
|
1274
1211
|
displayName: "StyledAvatarCounter",
|
|
1275
1212
|
componentId: "sc-1ydx86y-0"
|
|
1276
1213
|
})(_responsiveAvatarCounterSizeStyle, _avatarCounterBaseStyle), AvatarCounter = react.forwardRef(function(props, ref) {
|
|
1277
|
-
const
|
|
1214
|
+
const {
|
|
1278
1215
|
count,
|
|
1279
|
-
size:
|
|
1280
|
-
} = props,
|
|
1281
|
-
|
|
1282
|
-
if ($[0] !== ref || $[1] !== sizeProp) {
|
|
1283
|
-
const size2 = _getArrayProp(sizeProp);
|
|
1284
|
-
T1 = StyledAvatarCounter, t3 = size2, t4 = "AvatarCounter", t5 = ref, T0 = Label, t1 = "span", t2 = size2.map(_temp$9), $[0] = ref, $[1] = sizeProp, $[2] = T0, $[3] = T1, $[4] = t1, $[5] = t2, $[6] = t3, $[7] = t4, $[8] = t5;
|
|
1285
|
-
} else
|
|
1286
|
-
T0 = $[2], T1 = $[3], t1 = $[4], t2 = $[5], t3 = $[6], t4 = $[7], t5 = $[8];
|
|
1287
|
-
let t6;
|
|
1288
|
-
$[9] !== T0 || $[10] !== count || $[11] !== t1 || $[12] !== t2 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(T0, { as: t1, size: t2, weight: "medium", children: count }), $[9] = T0, $[10] = count, $[11] = t1, $[12] = t2, $[13] = t6) : t6 = $[13];
|
|
1289
|
-
let t7;
|
|
1290
|
-
return $[14] !== T1 || $[15] !== t3 || $[16] !== t4 || $[17] !== t5 || $[18] !== t6 ? (t7 = /* @__PURE__ */ jsxRuntime.jsx(T1, { $size: t3, "data-ui": t4, ref: t5, children: t6 }), $[14] = T1, $[15] = t3, $[16] = t4, $[17] = t5, $[18] = t6, $[19] = t7) : t7 = $[19], t7;
|
|
1216
|
+
size: sizeProp = 1
|
|
1217
|
+
} = props, size2 = _getArrayProp(sizeProp);
|
|
1218
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledAvatarCounter, { $size: size2, "data-ui": "AvatarCounter", ref, children: /* @__PURE__ */ jsxRuntime.jsx(Label, { as: "span", size: size2.map((s) => s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0), weight: "medium", children: count }) });
|
|
1291
1219
|
});
|
|
1292
1220
|
AvatarCounter.displayName = "ForwardRef(AvatarCounter)";
|
|
1293
|
-
function _temp$9(s) {
|
|
1294
|
-
return s === 1 ? 1 : s === 2 ? 3 : s === 3 ? 5 : 0;
|
|
1295
|
-
}
|
|
1296
1221
|
const BASE_STYLES = styledComponents.css`
|
|
1297
1222
|
white-space: nowrap;
|
|
1298
1223
|
|
|
@@ -1325,51 +1250,34 @@ const StyledAvatarStack = /* @__PURE__ */ styledComponents.styled.div.withConfig
|
|
|
1325
1250
|
displayName: "StyledAvatarStack",
|
|
1326
1251
|
componentId: "sc-cysmbb-0"
|
|
1327
1252
|
})(responsiveAvatarStackSizeStyle, avatarStackStyle), AvatarStack = react.forwardRef(function(props, ref) {
|
|
1328
|
-
const
|
|
1329
|
-
let childrenProp, restProps, t0, t1;
|
|
1330
|
-
$[0] !== props ? ({
|
|
1253
|
+
const {
|
|
1331
1254
|
children: childrenProp,
|
|
1332
|
-
maxLength:
|
|
1333
|
-
size:
|
|
1255
|
+
maxLength: maxLengthProp = 4,
|
|
1256
|
+
size: sizeProp = 1,
|
|
1334
1257
|
...restProps
|
|
1335
|
-
} = props,
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
let t92;
|
|
1341
|
-
$[18] !== sizeProp ? (t92 = _getArrayProp(sizeProp), $[18] = sizeProp, $[19] = t92) : t92 = $[19];
|
|
1342
|
-
const size2 = t92, len = children.length, visibleCount = maxLength - 1, extraCount = len - visibleCount, visibleChildren = extraCount > 1 ? children.slice(extraCount, len) : children;
|
|
1343
|
-
T0 = StyledAvatarStack, t2 = "AvatarStack", t3 = restProps, t4 = ref, t5 = size2, $[20] !== len || $[21] !== size2 ? (t6 = len === 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: len, size: size2 }) }), $[20] = len, $[21] = size2, $[22] = t6) : t6 = $[22], $[23] !== extraCount || $[24] !== len || $[25] !== size2 ? (t7 = len !== 0 && extraCount > 1 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: extraCount, size: size2 }) }), $[23] = extraCount, $[24] = len, $[25] = size2, $[26] = t7) : t7 = $[26];
|
|
1344
|
-
let t10;
|
|
1345
|
-
$[27] !== size2 ? (t10 = (child, childIndex) => /* @__PURE__ */ jsxRuntime.jsx("div", { children: react.cloneElement(child, {
|
|
1258
|
+
} = props, children = react.Children.toArray(childrenProp).filter(react.isValidElement), maxLength = Math.max(maxLengthProp, 0), size2 = _getArrayProp(sizeProp), len = children.length, visibleCount = maxLength - 1, extraCount = len - visibleCount, visibleChildren = extraCount > 1 ? children.slice(extraCount, len) : children;
|
|
1259
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(StyledAvatarStack, { "data-ui": "AvatarStack", ...restProps, ref, $size: size2, children: [
|
|
1260
|
+
len === 0 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: len, size: size2 }) }),
|
|
1261
|
+
len !== 0 && extraCount > 1 && /* @__PURE__ */ jsxRuntime.jsx("div", { children: /* @__PURE__ */ jsxRuntime.jsx(AvatarCounter, { count: extraCount, size: size2 }) }),
|
|
1262
|
+
visibleChildren.map((child, childIndex) => /* @__PURE__ */ jsxRuntime.jsx("div", { children: react.cloneElement(child, {
|
|
1346
1263
|
size: size2
|
|
1347
|
-
}) }, String(childIndex))
|
|
1348
|
-
}
|
|
1349
|
-
T0 = $[10], t2 = $[11], t3 = $[12], t4 = $[13], t5 = $[14], t6 = $[15], t7 = $[16], t8 = $[17];
|
|
1350
|
-
let t9;
|
|
1351
|
-
return $[29] !== T0 || $[30] !== t2 || $[31] !== t3 || $[32] !== t4 || $[33] !== t5 || $[34] !== t6 || $[35] !== t7 || $[36] !== t8 ? (t9 = /* @__PURE__ */ jsxRuntime.jsxs(T0, { "data-ui": t2, ...t3, ref: t4, $size: t5, children: [
|
|
1352
|
-
t6,
|
|
1353
|
-
t7,
|
|
1354
|
-
t8
|
|
1355
|
-
] }), $[29] = T0, $[30] = t2, $[31] = t3, $[32] = t4, $[33] = t5, $[34] = t6, $[35] = t7, $[36] = t8, $[37] = t9) : t9 = $[37], t9;
|
|
1264
|
+
}) }, String(childIndex)))
|
|
1265
|
+
] });
|
|
1356
1266
|
});
|
|
1357
1267
|
AvatarStack.displayName = "ForwardRef(AvatarStack)";
|
|
1358
1268
|
const StyledBox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
1359
1269
|
displayName: "StyledBox",
|
|
1360
1270
|
componentId: "sc-1hhky9f-0"
|
|
1361
1271
|
})(boxStyle, flexItemStyle, responsiveBoxStyle, responsiveGridItemStyle, responsiveMarginStyle, responsivePaddingStyle), Box = react.forwardRef(function(props, ref) {
|
|
1362
|
-
const
|
|
1363
|
-
|
|
1364
|
-
$[0] !== props ? ({
|
|
1365
|
-
as: t0,
|
|
1272
|
+
const {
|
|
1273
|
+
as: asProp = "div",
|
|
1366
1274
|
column,
|
|
1367
1275
|
columnStart,
|
|
1368
1276
|
columnEnd,
|
|
1369
|
-
display
|
|
1277
|
+
display = "block",
|
|
1370
1278
|
flex,
|
|
1371
1279
|
height,
|
|
1372
|
-
margin
|
|
1280
|
+
margin = 0,
|
|
1373
1281
|
marginX,
|
|
1374
1282
|
marginY,
|
|
1375
1283
|
marginTop,
|
|
@@ -1377,7 +1285,7 @@ const StyledBox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1377
1285
|
marginBottom,
|
|
1378
1286
|
marginLeft,
|
|
1379
1287
|
overflow,
|
|
1380
|
-
padding
|
|
1288
|
+
padding = 0,
|
|
1381
1289
|
paddingX,
|
|
1382
1290
|
paddingY,
|
|
1383
1291
|
paddingTop,
|
|
@@ -1389,60 +1297,8 @@ const StyledBox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1389
1297
|
rowEnd,
|
|
1390
1298
|
sizing,
|
|
1391
1299
|
...restProps
|
|
1392
|
-
} = props
|
|
1393
|
-
|
|
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];
|
|
1444
|
-
let t30;
|
|
1445
|
-
return $[78] !== asProp || $[79] !== props.children || $[80] !== ref || $[81] !== restProps || $[82] !== t10 || $[83] !== t11 || $[84] !== t12 || $[85] !== t13 || $[86] !== t14 || $[87] !== t15 || $[88] !== t16 || $[89] !== t17 || $[90] !== t18 || $[91] !== t19 || $[92] !== t20 || $[93] !== t21 || $[94] !== t22 || $[95] !== t23 || $[96] !== t24 || $[97] !== t25 || $[98] !== t26 || $[99] !== t27 || $[100] !== t28 || $[101] !== t29 || $[102] !== t4 || $[103] !== t5 || $[104] !== t6 || $[105] !== t7 || $[106] !== t8 || $[107] !== t9 ? (t30 = /* @__PURE__ */ jsxRuntime.jsx(StyledBox, { "data-as": t4, "data-ui": "Box", ...restProps, $column: t5, $columnStart: t6, $columnEnd: t7, $display: t8, $flex: t9, $height: t10, $margin: t11, $marginX: t12, $marginY: t13, $marginTop: t14, $marginRight: t15, $marginBottom: t16, $marginLeft: t17, $overflow: t18, $padding: t19, $paddingX: t20, $paddingY: t21, $paddingTop: t22, $paddingRight: t23, $paddingBottom: t24, $paddingLeft: t25, $row: t26, $rowStart: t27, $rowEnd: t28, $sizing: t29, as: asProp, ref, children: props.children }), $[78] = asProp, $[79] = props.children, $[80] = ref, $[81] = restProps, $[82] = t10, $[83] = t11, $[84] = t12, $[85] = t13, $[86] = t14, $[87] = t15, $[88] = t16, $[89] = t17, $[90] = t18, $[91] = t19, $[92] = t20, $[93] = t21, $[94] = t22, $[95] = t23, $[96] = t24, $[97] = t25, $[98] = t26, $[99] = t27, $[100] = t28, $[101] = t29, $[102] = t4, $[103] = t5, $[104] = t6, $[105] = t7, $[106] = t8, $[107] = t9, $[108] = t30) : t30 = $[108], t30;
|
|
1300
|
+
} = props;
|
|
1301
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledBox, { "data-as": typeof asProp == "string" ? asProp : void 0, "data-ui": "Box", ...restProps, $column: _getArrayProp(column), $columnStart: _getArrayProp(columnStart), $columnEnd: _getArrayProp(columnEnd), $display: _getArrayProp(display), $flex: _getArrayProp(flex), $height: _getArrayProp(height), $margin: _getArrayProp(margin), $marginX: _getArrayProp(marginX), $marginY: _getArrayProp(marginY), $marginTop: _getArrayProp(marginTop), $marginRight: _getArrayProp(marginRight), $marginBottom: _getArrayProp(marginBottom), $marginLeft: _getArrayProp(marginLeft), $overflow: _getArrayProp(overflow), $padding: _getArrayProp(padding), $paddingX: _getArrayProp(paddingX), $paddingY: _getArrayProp(paddingY), $paddingTop: _getArrayProp(paddingTop), $paddingRight: _getArrayProp(paddingRight), $paddingBottom: _getArrayProp(paddingBottom), $paddingLeft: _getArrayProp(paddingLeft), $row: _getArrayProp(row), $rowStart: _getArrayProp(rowStart), $rowEnd: _getArrayProp(rowEnd), $sizing: _getArrayProp(sizing), as: asProp, ref, children: props.children });
|
|
1446
1302
|
});
|
|
1447
1303
|
Box.displayName = "ForwardRef(Box)";
|
|
1448
1304
|
function textBaseStyle(props) {
|
|
@@ -1517,32 +1373,18 @@ const StyledText = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
1517
1373
|
displayName: "StyledText",
|
|
1518
1374
|
componentId: "sc-11ov82j-0"
|
|
1519
1375
|
})(responsiveTextFont, responsiveTextAlignStyle, textBaseStyle), Text = react.forwardRef(function(props, ref) {
|
|
1520
|
-
const
|
|
1521
|
-
|
|
1522
|
-
$[0] !== props ? ({
|
|
1523
|
-
accent: t0,
|
|
1376
|
+
const {
|
|
1377
|
+
accent = !1,
|
|
1524
1378
|
align,
|
|
1525
1379
|
children: childrenProp,
|
|
1526
|
-
muted
|
|
1527
|
-
size:
|
|
1380
|
+
muted = !1,
|
|
1381
|
+
size: size2 = 2,
|
|
1528
1382
|
textOverflow,
|
|
1529
1383
|
weight,
|
|
1530
1384
|
...restProps
|
|
1531
|
-
} = props
|
|
1532
|
-
const accent = t0 === void 0 ? !1 : t0, muted = t1 === void 0 ? !1 : t1, size2 = t2 === void 0 ? 2 : t2;
|
|
1385
|
+
} = props;
|
|
1533
1386
|
let children = childrenProp;
|
|
1534
|
-
|
|
1535
|
-
let t32;
|
|
1536
|
-
$[9] !== children ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }), $[9] = children, $[10] = t32) : t32 = $[10], children = t32;
|
|
1537
|
-
}
|
|
1538
|
-
let t3;
|
|
1539
|
-
$[11] !== align ? (t3 = _getArrayProp(align), $[11] = align, $[12] = t3) : t3 = $[12];
|
|
1540
|
-
let t4;
|
|
1541
|
-
$[13] !== size2 ? (t4 = _getArrayProp(size2), $[13] = size2, $[14] = t4) : t4 = $[14];
|
|
1542
|
-
let t5;
|
|
1543
|
-
$[15] !== children ? (t5 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[15] = children, $[16] = t5) : t5 = $[16];
|
|
1544
|
-
let t6;
|
|
1545
|
-
return $[17] !== accent || $[18] !== muted || $[19] !== ref || $[20] !== restProps || $[21] !== t3 || $[22] !== t4 || $[23] !== t5 || $[24] !== weight ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledText, { "data-ui": "Text", ...restProps, $accent: accent, $align: t3, $muted: muted, ref, $size: t4, $weight: weight, children: t5 }), $[17] = accent, $[18] = muted, $[19] = ref, $[20] = restProps, $[21] = t3, $[22] = t4, $[23] = t5, $[24] = weight, $[25] = t6) : t6 = $[25], t6;
|
|
1387
|
+
return textOverflow === "ellipsis" && (children = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children })), /* @__PURE__ */ jsxRuntime.jsx(StyledText, { "data-ui": "Text", ...restProps, $accent: accent, $align: _getArrayProp(align), $muted: muted, ref, $size: _getArrayProp(size2), $weight: weight, children: /* @__PURE__ */ jsxRuntime.jsx("span", { children }) });
|
|
1546
1388
|
});
|
|
1547
1389
|
Text.displayName = "ForwardRef(Text)";
|
|
1548
1390
|
function badgeStyle(props) {
|
|
@@ -1564,60 +1406,33 @@ const StyledBadge = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
1564
1406
|
displayName: "StyledBadge",
|
|
1565
1407
|
componentId: "sc-5u140l-0"
|
|
1566
1408
|
})(responsiveRadiusStyle, badgeStyle), Badge = react.forwardRef(function(props, ref) {
|
|
1567
|
-
const
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
} = props;
|
|
1579
|
-
children = t42, t0 = t52, t1 = t62, t2 = t72, t3 = t8, restProps = t9, $[0] = props, $[1] = children, $[2] = restProps, $[3] = t0, $[4] = t1, $[5] = t2, $[6] = t3;
|
|
1580
|
-
} else
|
|
1581
|
-
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];
|
|
1587
|
-
let t6;
|
|
1588
|
-
$[11] !== children || $[12] !== fontSize2 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children }), $[11] = children, $[12] = fontSize2, $[13] = t6) : t6 = $[13];
|
|
1589
|
-
let t7;
|
|
1590
|
-
return $[14] !== ref || $[15] !== restProps || $[16] !== t4 || $[17] !== t5 || $[18] !== t6 || $[19] !== tone ? (t7 = /* @__PURE__ */ jsxRuntime.jsx(StyledBadge, { "data-ui": "Badge", ...restProps, $tone: tone, $radius: t4, padding: t5, ref, children: t6 }), $[14] = ref, $[15] = restProps, $[16] = t4, $[17] = t5, $[18] = t6, $[19] = tone, $[20] = t7) : t7 = $[20], t7;
|
|
1409
|
+
const {
|
|
1410
|
+
children,
|
|
1411
|
+
fontSize: fontSize2 = 1,
|
|
1412
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1413
|
+
mode: _deprecated_mode,
|
|
1414
|
+
padding = 1,
|
|
1415
|
+
radius = "full",
|
|
1416
|
+
tone = "default",
|
|
1417
|
+
...restProps
|
|
1418
|
+
} = props;
|
|
1419
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledBadge, { "data-ui": "Badge", ...restProps, $tone: tone, $radius: _getArrayProp(radius), padding: _getArrayProp(padding), ref, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children }) });
|
|
1591
1420
|
});
|
|
1592
1421
|
Badge.displayName = "ForwardRef(Badge)";
|
|
1593
1422
|
const StyledFlex = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
1594
1423
|
displayName: "StyledFlex",
|
|
1595
1424
|
componentId: "sc-oxesg3-0"
|
|
1596
1425
|
})(flexItemStyle, responsiveFlexStyle), Flex = react.forwardRef(function(props, ref) {
|
|
1597
|
-
const
|
|
1598
|
-
let align, as, gap, justify, restProps, t0, wrap;
|
|
1599
|
-
$[0] !== props ? ({
|
|
1426
|
+
const {
|
|
1600
1427
|
align,
|
|
1601
1428
|
as,
|
|
1602
|
-
direction
|
|
1429
|
+
direction = "row",
|
|
1603
1430
|
gap,
|
|
1604
1431
|
justify,
|
|
1605
1432
|
wrap,
|
|
1606
1433
|
...restProps
|
|
1607
|
-
} = props
|
|
1608
|
-
|
|
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];
|
|
1619
|
-
let t6;
|
|
1620
|
-
return $[18] !== as || $[19] !== ref || $[20] !== restProps || $[21] !== t1 || $[22] !== t2 || $[23] !== t3 || $[24] !== t4 || $[25] !== t5 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledFlex, { "data-ui": "Flex", ...restProps, $align: t1, $direction: t2, $gap: t3, $justify: t4, $wrap: t5, forwardedAs: as, ref }), $[18] = as, $[19] = ref, $[20] = restProps, $[21] = t1, $[22] = t2, $[23] = t3, $[24] = t4, $[25] = t5, $[26] = t6) : t6 = $[26], t6;
|
|
1434
|
+
} = props;
|
|
1435
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledFlex, { "data-ui": "Flex", ...restProps, $align: _getArrayProp(align), $direction: _getArrayProp(direction), $gap: _getArrayProp(gap), $justify: _getArrayProp(justify), $wrap: _getArrayProp(wrap), forwardedAs: as, ref });
|
|
1621
1436
|
});
|
|
1622
1437
|
Flex.displayName = "ForwardRef(Flex)";
|
|
1623
1438
|
const rotate = styledComponents.keyframes`
|
|
@@ -1632,11 +1447,7 @@ const rotate = styledComponents.keyframes`
|
|
|
1632
1447
|
displayName: "StyledSpinner",
|
|
1633
1448
|
componentId: "sc-124hnd0-0"
|
|
1634
1449
|
})`& > span > svg{animation:${rotate} 500ms linear infinite;}`, Spinner = react.forwardRef(function(props, ref) {
|
|
1635
|
-
|
|
1636
|
-
let t0;
|
|
1637
|
-
$[0] === Symbol.for("react.memo_cache_sentinel") ? (t0 = /* @__PURE__ */ jsxRuntime.jsx(icons.SpinnerIcon, {}), $[0] = t0) : t0 = $[0];
|
|
1638
|
-
let t1;
|
|
1639
|
-
return $[1] !== props || $[2] !== ref ? (t1 = /* @__PURE__ */ jsxRuntime.jsx(StyledSpinner, { "data-ui": "Spinner", ...props, ref, children: t0 }), $[1] = props, $[2] = ref, $[3] = t1) : t1 = $[3], t1;
|
|
1450
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledSpinner, { "data-ui": "Spinner", ...props, ref, children: /* @__PURE__ */ jsxRuntime.jsx(icons.SpinnerIcon, {}) });
|
|
1640
1451
|
});
|
|
1641
1452
|
Spinner.displayName = "ForwardRef(Spinner)";
|
|
1642
1453
|
function _cardColorStyle(base, color, checkered = !1) {
|
|
@@ -1814,71 +1625,37 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1814
1625
|
displayName: "LoadingBox",
|
|
1815
1626
|
componentId: "sc-aaekt4-1"
|
|
1816
1627
|
})`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
|
|
1818
|
-
let IconComponent, IconRightComponent, children, disabled, loading, paddingBottomProp, paddingLeftProp, paddingRightProp, paddingTopProp, paddingXProp, paddingYProp, restProps, selected, t0, t1, t2, t3, t4, t5, t6, t7, t8, text, textAlign, textWeight, width;
|
|
1819
|
-
$[0] !== props ? ({
|
|
1628
|
+
const {
|
|
1820
1629
|
children,
|
|
1821
1630
|
disabled,
|
|
1822
|
-
fontSize:
|
|
1631
|
+
fontSize: fontSize2 = 1,
|
|
1823
1632
|
icon: IconComponent,
|
|
1824
1633
|
iconRight: IconRightComponent,
|
|
1825
|
-
justify:
|
|
1634
|
+
justify: justifyProp = "center",
|
|
1826
1635
|
loading,
|
|
1827
|
-
mode
|
|
1828
|
-
padding:
|
|
1636
|
+
mode = "default",
|
|
1637
|
+
padding: paddingProp = 3,
|
|
1829
1638
|
paddingX: paddingXProp,
|
|
1830
1639
|
paddingY: paddingYProp,
|
|
1831
1640
|
paddingTop: paddingTopProp,
|
|
1832
1641
|
paddingBottom: paddingBottomProp,
|
|
1833
1642
|
paddingLeft: paddingLeftProp,
|
|
1834
1643
|
paddingRight: paddingRightProp,
|
|
1835
|
-
radius:
|
|
1644
|
+
radius: radiusProp = 2,
|
|
1836
1645
|
selected,
|
|
1837
|
-
space:
|
|
1646
|
+
space: spaceProp = 3,
|
|
1838
1647
|
text,
|
|
1839
1648
|
textAlign,
|
|
1840
1649
|
textWeight,
|
|
1841
|
-
tone
|
|
1842
|
-
type
|
|
1843
|
-
muted
|
|
1650
|
+
tone = "default",
|
|
1651
|
+
type = "button",
|
|
1652
|
+
muted = !1,
|
|
1844
1653
|
width,
|
|
1845
1654
|
...restProps
|
|
1846
|
-
} = props,
|
|
1847
|
-
const fontSize2 = t0 === void 0 ? 1 : t0, justifyProp = t1 === void 0 ? "center" : t1, mode = t2 === void 0 ? "default" : t2, paddingProp = t3 === void 0 ? 3 : t3, radiusProp = t4 === void 0 ? 2 : t4, spaceProp = t5 === void 0 ? 3 : t5, tone = t6 === void 0 ? "default" : t6, type = t7 === void 0 ? "button" : t7, muted = t8 === void 0 ? !1 : t8, {
|
|
1655
|
+
} = props, {
|
|
1848
1656
|
button
|
|
1849
|
-
} = useTheme_v2()
|
|
1850
|
-
|
|
1851
|
-
$[27] !== justifyProp ? (t9 = _getArrayProp(justifyProp), $[27] = justifyProp, $[28] = t9) : t9 = $[28];
|
|
1852
|
-
const justify = t9;
|
|
1853
|
-
let t10;
|
|
1854
|
-
$[29] !== paddingProp ? (t10 = _getArrayProp(paddingProp), $[29] = paddingProp, $[30] = t10) : t10 = $[30];
|
|
1855
|
-
const padding = t10;
|
|
1856
|
-
let t11;
|
|
1857
|
-
$[31] !== paddingXProp ? (t11 = _getArrayProp(paddingXProp), $[31] = paddingXProp, $[32] = t11) : t11 = $[32];
|
|
1858
|
-
const paddingX = t11;
|
|
1859
|
-
let t12;
|
|
1860
|
-
$[33] !== paddingYProp ? (t12 = _getArrayProp(paddingYProp), $[33] = paddingYProp, $[34] = t12) : t12 = $[34];
|
|
1861
|
-
const paddingY = t12;
|
|
1862
|
-
let t13;
|
|
1863
|
-
$[35] !== paddingTopProp ? (t13 = _getArrayProp(paddingTopProp), $[35] = paddingTopProp, $[36] = t13) : t13 = $[36];
|
|
1864
|
-
const paddingTop = t13;
|
|
1865
|
-
let t14;
|
|
1866
|
-
$[37] !== paddingBottomProp ? (t14 = _getArrayProp(paddingBottomProp), $[37] = paddingBottomProp, $[38] = t14) : t14 = $[38];
|
|
1867
|
-
const paddingBottom = t14;
|
|
1868
|
-
let t15;
|
|
1869
|
-
$[39] !== paddingLeftProp ? (t15 = _getArrayProp(paddingLeftProp), $[39] = paddingLeftProp, $[40] = t15) : t15 = $[40];
|
|
1870
|
-
const paddingLeft = t15;
|
|
1871
|
-
let t16;
|
|
1872
|
-
$[41] !== paddingRightProp ? (t16 = _getArrayProp(paddingRightProp), $[41] = paddingRightProp, $[42] = t16) : t16 = $[42];
|
|
1873
|
-
const paddingRight = t16;
|
|
1874
|
-
let t17;
|
|
1875
|
-
$[43] !== radiusProp ? (t17 = _getArrayProp(radiusProp), $[43] = radiusProp, $[44] = t17) : t17 = $[44];
|
|
1876
|
-
const radius = t17;
|
|
1877
|
-
let t18;
|
|
1878
|
-
$[45] !== spaceProp ? (t18 = _getArrayProp(spaceProp), $[45] = spaceProp, $[46] = t18) : t18 = $[46];
|
|
1879
|
-
const space = t18;
|
|
1880
|
-
let t19;
|
|
1881
|
-
$[47] !== padding || $[48] !== paddingBottom || $[49] !== paddingLeft || $[50] !== paddingRight || $[51] !== paddingTop || $[52] !== paddingX || $[53] !== paddingY ? (t19 = {
|
|
1657
|
+
} = useTheme_v2(), justify = _getArrayProp(justifyProp), padding = _getArrayProp(paddingProp), paddingX = _getArrayProp(paddingXProp), paddingY = _getArrayProp(paddingYProp), paddingTop = _getArrayProp(paddingTopProp), paddingBottom = _getArrayProp(paddingBottomProp), paddingLeft = _getArrayProp(paddingLeftProp), paddingRight = _getArrayProp(paddingRightProp), radius = _getArrayProp(radiusProp), space = _getArrayProp(spaceProp), boxProps = react.useMemo(() => ({
|
|
1658
|
+
// flex: 1,
|
|
1882
1659
|
padding,
|
|
1883
1660
|
paddingX,
|
|
1884
1661
|
paddingY,
|
|
@@ -1886,30 +1663,22 @@ const StyledButton = /* @__PURE__ */ styledComponents.styled.button.withConfig({
|
|
|
1886
1663
|
paddingBottom,
|
|
1887
1664
|
paddingLeft,
|
|
1888
1665
|
paddingRight
|
|
1889
|
-
},
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
] })
|
|
1905
|
-
let t25;
|
|
1906
|
-
$[69] !== boxProps || $[70] !== children ? (t25 = children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...boxProps, children }), $[69] = boxProps, $[70] = children, $[71] = t25) : t25 = $[71];
|
|
1907
|
-
let t26;
|
|
1908
|
-
return $[72] !== mode || $[73] !== radius || $[74] !== ref || $[75] !== restProps || $[76] !== t20 || $[77] !== t21 || $[78] !== t22 || $[79] !== t23 || $[80] !== t24 || $[81] !== t25 || $[82] !== tone || $[83] !== type || $[84] !== width ? (t26 = /* @__PURE__ */ jsxRuntime.jsxs(StyledButton, { "data-ui": "Button", ...restProps, $mode: mode, $radius: radius, $tone: tone, "data-disabled": t20, "data-selected": t21, disabled: t22, ref, type, $width: width, children: [
|
|
1909
|
-
t23,
|
|
1910
|
-
t24,
|
|
1911
|
-
t25
|
|
1912
|
-
] }), $[72] = mode, $[73] = radius, $[74] = ref, $[75] = restProps, $[76] = t20, $[77] = t21, $[78] = t22, $[79] = t23, $[80] = t24, $[81] = t25, $[82] = tone, $[83] = type, $[84] = width, $[85] = t26) : t26 = $[85], t26;
|
|
1666
|
+
}), [padding, paddingX, paddingY, paddingTop, paddingBottom, paddingLeft, paddingRight]);
|
|
1667
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(StyledButton, { "data-ui": "Button", ...restProps, $mode: mode, $radius: radius, $tone: tone, "data-disabled": !!(loading || disabled), "data-selected": selected ? "" : void 0, disabled: !!(loading || disabled), ref, type, $width: width, children: [
|
|
1668
|
+
!!loading && /* @__PURE__ */ jsxRuntime.jsx(LoadingBox, { children: /* @__PURE__ */ jsxRuntime.jsx(Spinner, {}) }),
|
|
1669
|
+
(IconComponent || text || IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...boxProps, children: /* @__PURE__ */ jsxRuntime.jsxs(Flex, { as: "span", justify, gap: space, children: [
|
|
1670
|
+
IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
1671
|
+
react.isValidElement(IconComponent) && IconComponent,
|
|
1672
|
+
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
1673
|
+
] }),
|
|
1674
|
+
text && /* @__PURE__ */ jsxRuntime.jsx(Box, { children: /* @__PURE__ */ jsxRuntime.jsx(Text, { muted, align: textAlign, size: fontSize2, textOverflow: "ellipsis", weight: textWeight ?? button.textWeight, children: text }) }),
|
|
1675
|
+
IconRightComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
1676
|
+
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
1677
|
+
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
1678
|
+
] })
|
|
1679
|
+
] }) }),
|
|
1680
|
+
children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...boxProps, children })
|
|
1681
|
+
] });
|
|
1913
1682
|
});
|
|
1914
1683
|
Button.displayName = "ForwardRef(Button)";
|
|
1915
1684
|
function cardStyle(props) {
|
|
@@ -2064,11 +1833,9 @@ const StyledCard = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2064
1833
|
displayName: "StyledCard",
|
|
2065
1834
|
componentId: "sc-osnro2-0"
|
|
2066
1835
|
})(responsiveBorderStyle, responsiveRadiusStyle, responsiveShadowStyle, cardStyle), Card = react.forwardRef(function(props, ref) {
|
|
2067
|
-
const
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
__unstable_checkered: t0,
|
|
2071
|
-
__unstable_focusRing: t1,
|
|
1836
|
+
const {
|
|
1837
|
+
__unstable_checkered: checkered = !1,
|
|
1838
|
+
__unstable_focusRing: focusRing = !1,
|
|
2072
1839
|
as: asProp,
|
|
2073
1840
|
border: border2,
|
|
2074
1841
|
borderTop: borderTop2,
|
|
@@ -2077,39 +1844,18 @@ const StyledCard = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2077
1844
|
borderLeft: borderLeft2,
|
|
2078
1845
|
muted,
|
|
2079
1846
|
pressed,
|
|
2080
|
-
radius
|
|
1847
|
+
radius = 0,
|
|
2081
1848
|
scheme,
|
|
2082
1849
|
selected,
|
|
2083
1850
|
shadow,
|
|
2084
|
-
tone:
|
|
1851
|
+
tone: toneProp = "default",
|
|
2085
1852
|
...restProps
|
|
2086
|
-
} = props,
|
|
2087
|
-
|
|
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;
|
|
1853
|
+
} = props, as = ReactIs.isValidElementType(asProp) ? asProp : "div", rootTheme = useRootTheme(), tone = toneProp === "inherit" ? rootTheme.tone : toneProp;
|
|
1854
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ThemeColorProvider, { scheme, tone, children: /* @__PURE__ */ jsxRuntime.jsx(StyledCard, { "data-as": typeof as == "string" ? as : void 0, "data-scheme": rootTheme.scheme, "data-ui": "Card", "data-tone": tone, ...restProps, $border: _getArrayProp(border2), $borderTop: _getArrayProp(borderTop2), $borderRight: _getArrayProp(borderRight2), $borderBottom: _getArrayProp(borderBottom2), $borderLeft: _getArrayProp(borderLeft2), $checkered: checkered, $focusRing: focusRing, $muted: muted, $radius: _getArrayProp(radius), $shadow: _getArrayProp(shadow), $tone: tone, "data-checkered": checkered ? "" : void 0, "data-pressed": pressed ? "" : void 0, "data-selected": selected ? "" : void 0, forwardedAs: as, ref, selected }) });
|
|
2107
1855
|
});
|
|
2108
1856
|
Card.displayName = "ForwardRef(Card)";
|
|
2109
|
-
function useClickOutsideEvent(listener,
|
|
2110
|
-
const
|
|
2111
|
-
let t1;
|
|
2112
|
-
$[0] !== boundaryElement || $[1] !== elementsArg || $[2] !== listener ? (t1 = (evt) => {
|
|
1857
|
+
function useClickOutsideEvent(listener, elementsArg = () => EMPTY_ARRAY, boundaryElement) {
|
|
1858
|
+
const onEvent = useEffectEvent.useEffectEvent((evt) => {
|
|
2113
1859
|
if (!listener)
|
|
2114
1860
|
return;
|
|
2115
1861
|
const target = evt.target;
|
|
@@ -2123,29 +1869,19 @@ function useClickOutsideEvent(listener, t0, boundaryElement) {
|
|
|
2123
1869
|
if (el && (target === el || el.contains(target)))
|
|
2124
1870
|
return;
|
|
2125
1871
|
listener(evt);
|
|
2126
|
-
},
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
if (!hasListener)
|
|
2131
|
-
return;
|
|
2132
|
-
const handleEvent = (evt_0) => onEvent(evt_0);
|
|
1872
|
+
}), hasListener = !!listener;
|
|
1873
|
+
react.useEffect(() => {
|
|
1874
|
+
if (!hasListener) return;
|
|
1875
|
+
const handleEvent = (evt) => onEvent(evt);
|
|
2133
1876
|
return document.addEventListener("mousedown", handleEvent), () => {
|
|
2134
1877
|
document.removeEventListener("mousedown", handleEvent);
|
|
2135
1878
|
};
|
|
2136
|
-
},
|
|
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;
|
|
1879
|
+
}, [hasListener]), react.useDebugValue(listener ? "MouseDown On" : "MouseDown Off");
|
|
2142
1880
|
}
|
|
2143
1881
|
function useCustomValidity(ref, customValidity) {
|
|
2144
|
-
|
|
2145
|
-
let t0, t1;
|
|
2146
|
-
$[0] !== customValidity || $[1] !== ref ? (t0 = () => {
|
|
1882
|
+
react.useEffect(() => {
|
|
2147
1883
|
ref.current?.setCustomValidity(customValidity || "");
|
|
2148
|
-
},
|
|
1884
|
+
}, [customValidity, ref]);
|
|
2149
1885
|
}
|
|
2150
1886
|
const _ResizeObserver = typeof document < "u" && typeof window < "u" && window.ResizeObserver ? window.ResizeObserver : resizeObserver.ResizeObserver, _elementSizeObserver = _createElementSizeObserver();
|
|
2151
1887
|
function _createElementRectValueListener() {
|
|
@@ -2187,36 +1923,24 @@ function _createElementSizeObserver() {
|
|
|
2187
1923
|
};
|
|
2188
1924
|
}
|
|
2189
1925
|
function useElementSize(element) {
|
|
2190
|
-
const
|
|
2191
|
-
|
|
2192
|
-
return $[0] !== element ? (t0 = () => {
|
|
1926
|
+
const [size2, setSize] = react.useState(null);
|
|
1927
|
+
return react.useEffect(() => {
|
|
2193
1928
|
if (element)
|
|
2194
1929
|
return _elementSizeObserver.subscribe(element, setSize);
|
|
2195
|
-
},
|
|
1930
|
+
}, [element]), size2;
|
|
2196
1931
|
}
|
|
2197
1932
|
function useGlobalKeyDown(onKeyDown) {
|
|
2198
|
-
const
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
const handleKeyDown = useEffectEvent.useEffectEvent(t0);
|
|
2202
|
-
let t1;
|
|
2203
|
-
$[2] !== handleKeyDown ? (t1 = () => {
|
|
2204
|
-
const handler = (event_0) => handleKeyDown(event_0);
|
|
1933
|
+
const handleKeyDown = useEffectEvent.useEffectEvent((event) => onKeyDown(event));
|
|
1934
|
+
react.useEffect(() => {
|
|
1935
|
+
const handler = (event) => handleKeyDown(event);
|
|
2205
1936
|
return window.addEventListener("keydown", handler), () => window.removeEventListener("keydown", handler);
|
|
2206
|
-
},
|
|
2207
|
-
let t2;
|
|
2208
|
-
$[4] === Symbol.for("react.memo_cache_sentinel") ? (t2 = [], $[4] = t2) : t2 = $[4], react.useEffect(t1, t2);
|
|
1937
|
+
}, []);
|
|
2209
1938
|
}
|
|
2210
1939
|
function useMatchMedia(mediaQueryString, getServerSnapshot2) {
|
|
2211
|
-
|
|
2212
|
-
react.useDebugValue(mediaQueryString);
|
|
2213
|
-
let t0;
|
|
2214
|
-
$[0] !== mediaQueryString ? (t0 = (onStoreChange) => {
|
|
1940
|
+
return react.useDebugValue(mediaQueryString), react.useSyncExternalStore(react.useCallback((onStoreChange) => {
|
|
2215
1941
|
const media = window.matchMedia(mediaQueryString);
|
|
2216
1942
|
return media.addEventListener("change", onStoreChange), () => media.removeEventListener("change", onStoreChange);
|
|
2217
|
-
},
|
|
2218
|
-
let t1;
|
|
2219
|
-
return $[2] !== mediaQueryString ? (t1 = () => window.matchMedia(mediaQueryString).matches, $[2] = mediaQueryString, $[3] = t1) : t1 = $[3], react.useSyncExternalStore(t0, t1, getServerSnapshot2);
|
|
1943
|
+
}, [mediaQueryString]), () => window.matchMedia(mediaQueryString).matches, getServerSnapshot2);
|
|
2220
1944
|
}
|
|
2221
1945
|
function _getMediaQuery(media, index) {
|
|
2222
1946
|
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)`;
|
|
@@ -2267,25 +1991,16 @@ function getServerSnapshot() {
|
|
|
2267
1991
|
return 0;
|
|
2268
1992
|
}
|
|
2269
1993
|
function useMediaIndex() {
|
|
2270
|
-
const
|
|
1994
|
+
const {
|
|
2271
1995
|
media
|
|
2272
|
-
} = useTheme_v2();
|
|
2273
|
-
let t0;
|
|
2274
|
-
$[0] !== media ? (t0 = _createMediaStore(media), $[0] = media, $[1] = t0) : t0 = $[1];
|
|
2275
|
-
const store = t0;
|
|
1996
|
+
} = useTheme_v2(), store = react.useMemo(() => _createMediaStore(media), [media]);
|
|
2276
1997
|
return react.useSyncExternalStore(store.subscribe, store.getSnapshot, getServerSnapshot);
|
|
2277
1998
|
}
|
|
2278
|
-
function usePrefersDark(
|
|
2279
|
-
return useMatchMedia("(prefers-color-scheme: dark)",
|
|
1999
|
+
function usePrefersDark(getServerSnapshot2 = () => !1) {
|
|
2000
|
+
return useMatchMedia("(prefers-color-scheme: dark)", getServerSnapshot2);
|
|
2280
2001
|
}
|
|
2281
|
-
function
|
|
2282
|
-
return
|
|
2283
|
-
}
|
|
2284
|
-
function usePrefersReducedMotion(t0) {
|
|
2285
|
-
return useMatchMedia("(prefers-reduced-motion: reduce)", t0 === void 0 ? _temp$6 : t0);
|
|
2286
|
-
}
|
|
2287
|
-
function _temp$6() {
|
|
2288
|
-
return !1;
|
|
2002
|
+
function usePrefersReducedMotion(getServerSnapshot2 = () => !1) {
|
|
2003
|
+
return useMatchMedia("(prefers-reduced-motion: reduce)", getServerSnapshot2);
|
|
2289
2004
|
}
|
|
2290
2005
|
function checkboxBaseStyles() {
|
|
2291
2006
|
return styledComponents.css`
|
|
@@ -2432,9 +2147,7 @@ const StyledCheckbox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
2432
2147
|
displayName: "Input",
|
|
2433
2148
|
componentId: "sc-1l5mt2l-1"
|
|
2434
2149
|
})(inputElementStyles), Checkbox = react.forwardRef(function(props, forwardedRef) {
|
|
2435
|
-
const
|
|
2436
|
-
let checked, className, customValidity, disabled, indeterminate, readOnly, restProps, style;
|
|
2437
|
-
$[0] !== props ? ({
|
|
2150
|
+
const {
|
|
2438
2151
|
checked,
|
|
2439
2152
|
className,
|
|
2440
2153
|
disabled,
|
|
@@ -2443,27 +2156,16 @@ const StyledCheckbox = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
2443
2156
|
readOnly,
|
|
2444
2157
|
style,
|
|
2445
2158
|
...restProps
|
|
2446
|
-
} = props,
|
|
2447
|
-
|
|
2448
|
-
let t0;
|
|
2449
|
-
$[9] === Symbol.for("react.memo_cache_sentinel") ? (t0 = () => ref.current, $[9] = t0) : t0 = $[9], react.useImperativeHandle(forwardedRef, t0);
|
|
2450
|
-
let t1, t2;
|
|
2451
|
-
$[10] !== indeterminate ? (t1 = () => {
|
|
2159
|
+
} = props, ref = react.useRef(null);
|
|
2160
|
+
return react.useImperativeHandle(forwardedRef, () => ref.current), react.useEffect(() => {
|
|
2452
2161
|
ref.current && (ref.current.indeterminate = indeterminate || !1);
|
|
2453
|
-
},
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
/* @__PURE__ */ jsxRuntime.jsx(icons.RemoveIcon, {})
|
|
2461
|
-
] }), $[20] = t7) : t7 = $[20];
|
|
2462
|
-
let t8;
|
|
2463
|
-
return $[21] !== className || $[22] !== style || $[23] !== t6 ? (t8 = /* @__PURE__ */ jsxRuntime.jsxs(StyledCheckbox, { className, "data-ui": "Checkbox", style, children: [
|
|
2464
|
-
t6,
|
|
2465
|
-
t7
|
|
2466
|
-
] }), $[21] = className, $[22] = style, $[23] = t6, $[24] = t8) : t8 = $[24], t8;
|
|
2162
|
+
}, [indeterminate]), useCustomValidity(ref, customValidity), /* @__PURE__ */ jsxRuntime.jsxs(StyledCheckbox, { className, "data-ui": "Checkbox", style, children: [
|
|
2163
|
+
/* @__PURE__ */ jsxRuntime.jsx(Input$5, { "data-read-only": !disabled && readOnly ? "" : void 0, "data-error": customValidity ? "" : void 0, ...restProps, checked, disabled: disabled || readOnly, type: "checkbox", readOnly, ref }),
|
|
2164
|
+
/* @__PURE__ */ jsxRuntime.jsxs("span", { children: [
|
|
2165
|
+
/* @__PURE__ */ jsxRuntime.jsx(icons.CheckmarkIcon, {}),
|
|
2166
|
+
/* @__PURE__ */ jsxRuntime.jsx(icons.RemoveIcon, {})
|
|
2167
|
+
] })
|
|
2168
|
+
] });
|
|
2467
2169
|
});
|
|
2468
2170
|
Checkbox.displayName = "ForwardRef(Checkbox)";
|
|
2469
2171
|
function codeSyntaxHighlightingStyle({
|
|
@@ -2620,26 +2322,14 @@ const LazyRefractor = react.lazy(() => Promise.resolve().then(function() {
|
|
|
2620
2322
|
displayName: "StyledCode",
|
|
2621
2323
|
componentId: "sc-4dymyn-0"
|
|
2622
2324
|
})(codeBaseStyle, responsiveCodeFontStyle), Code = react.forwardRef(function(props, ref) {
|
|
2623
|
-
const
|
|
2624
|
-
let children, language, restProps, t0, weight;
|
|
2625
|
-
$[0] !== props ? ({
|
|
2325
|
+
const {
|
|
2626
2326
|
children,
|
|
2627
2327
|
language,
|
|
2628
|
-
size:
|
|
2328
|
+
size: size2 = 2,
|
|
2629
2329
|
weight,
|
|
2630
2330
|
...restProps
|
|
2631
|
-
} = props
|
|
2632
|
-
|
|
2633
|
-
let t1;
|
|
2634
|
-
$[6] !== size2 ? (t1 = _getArrayProp(size2), $[6] = size2, $[7] = t1) : t1 = $[7];
|
|
2635
|
-
let t2;
|
|
2636
|
-
$[8] !== children ? (t2 = /* @__PURE__ */ jsxRuntime.jsx("code", { children }), $[8] = children, $[9] = t2) : t2 = $[9];
|
|
2637
|
-
let t3;
|
|
2638
|
-
$[10] !== children || $[11] !== language ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(LazyRefractor, { language, value: children }), $[10] = children, $[11] = language, $[12] = t3) : t3 = $[12];
|
|
2639
|
-
let t4;
|
|
2640
|
-
$[13] !== t2 || $[14] !== t3 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(react.Suspense, { fallback: t2, children: t3 }), $[13] = t2, $[14] = t3, $[15] = t4) : t4 = $[15];
|
|
2641
|
-
let t5;
|
|
2642
|
-
return $[16] !== ref || $[17] !== restProps || $[18] !== t1 || $[19] !== t4 || $[20] !== weight ? (t5 = /* @__PURE__ */ jsxRuntime.jsx(StyledCode, { "data-ui": "Code", ...restProps, $size: t1, $weight: weight, ref, children: t4 }), $[16] = ref, $[17] = restProps, $[18] = t1, $[19] = t4, $[20] = weight, $[21] = t5) : t5 = $[21], t5;
|
|
2331
|
+
} = props;
|
|
2332
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledCode, { "data-ui": "Code", ...restProps, $size: _getArrayProp(size2), $weight: weight, ref, children: /* @__PURE__ */ jsxRuntime.jsx(react.Suspense, { fallback: /* @__PURE__ */ jsxRuntime.jsx("code", { children }), children: /* @__PURE__ */ jsxRuntime.jsx(LazyRefractor, { language, value: children }) }) });
|
|
2643
2333
|
});
|
|
2644
2334
|
Code.displayName = "ForwardRef(Code)";
|
|
2645
2335
|
const BASE_STYLE$1 = {
|
|
@@ -2662,27 +2352,19 @@ const StyledContainer = /* @__PURE__ */ styledComponents.styled(Box).withConfig(
|
|
|
2662
2352
|
displayName: "StyledContainer",
|
|
2663
2353
|
componentId: "sc-wyroop-0"
|
|
2664
2354
|
})(containerBaseStyle, responsiveContainerWidthStyle), Container = react.forwardRef(function(props, ref) {
|
|
2665
|
-
const
|
|
2666
|
-
let as, restProps, t0;
|
|
2667
|
-
$[0] !== props ? ({
|
|
2355
|
+
const {
|
|
2668
2356
|
as,
|
|
2669
|
-
width
|
|
2357
|
+
width = 2,
|
|
2670
2358
|
...restProps
|
|
2671
|
-
} = props
|
|
2672
|
-
|
|
2673
|
-
let t1;
|
|
2674
|
-
$[4] !== width ? (t1 = _getArrayProp(width), $[4] = width, $[5] = t1) : t1 = $[5];
|
|
2675
|
-
let t2;
|
|
2676
|
-
return $[6] !== as || $[7] !== ref || $[8] !== restProps || $[9] !== t1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(StyledContainer, { "data-ui": "Container", ...restProps, $width: t1, forwardedAs: as, ref }), $[6] = as, $[7] = ref, $[8] = restProps, $[9] = t1, $[10] = t2) : t2 = $[10], t2;
|
|
2359
|
+
} = props;
|
|
2360
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledContainer, { "data-ui": "Container", ...restProps, $width: _getArrayProp(width), forwardedAs: as, ref });
|
|
2677
2361
|
});
|
|
2678
2362
|
Container.displayName = "ForwardRef(Container)";
|
|
2679
2363
|
const StyledGrid = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
2680
2364
|
displayName: "StyledGrid",
|
|
2681
2365
|
componentId: "sc-v8t8oz-0"
|
|
2682
2366
|
})(responsiveGridStyle), Grid = react.forwardRef(function(props, ref) {
|
|
2683
|
-
const
|
|
2684
|
-
let as, autoCols, autoFlow, autoRows, children, columns, gap, gapX, gapY, restProps, rows;
|
|
2685
|
-
$[0] !== props ? ({
|
|
2367
|
+
const {
|
|
2686
2368
|
as,
|
|
2687
2369
|
autoRows,
|
|
2688
2370
|
autoCols,
|
|
@@ -2694,26 +2376,8 @@ const StyledGrid = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2694
2376
|
rows,
|
|
2695
2377
|
children,
|
|
2696
2378
|
...restProps
|
|
2697
|
-
} = props
|
|
2698
|
-
|
|
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];
|
|
2715
|
-
let t9;
|
|
2716
|
-
return $[28] !== as || $[29] !== children || $[30] !== ref || $[31] !== restProps || $[32] !== t0 || $[33] !== t1 || $[34] !== t2 || $[35] !== t3 || $[36] !== t4 || $[37] !== t5 || $[38] !== t6 || $[39] !== t7 || $[40] !== t8 ? (t9 = /* @__PURE__ */ jsxRuntime.jsx(StyledGrid, { "data-as": t0, "data-ui": "Grid", ...restProps, $autoRows: t1, $autoCols: t2, $autoFlow: t3, $columns: t4, $gap: t5, $gapX: t6, $gapY: t7, $rows: t8, forwardedAs: as, ref, children }), $[28] = as, $[29] = children, $[30] = ref, $[31] = restProps, $[32] = t0, $[33] = t1, $[34] = t2, $[35] = t3, $[36] = t4, $[37] = t5, $[38] = t6, $[39] = t7, $[40] = t8, $[41] = t9) : t9 = $[41], t9;
|
|
2379
|
+
} = props;
|
|
2380
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledGrid, { "data-as": typeof as == "string" ? as : void 0, "data-ui": "Grid", ...restProps, $autoRows: _getArrayProp(autoRows), $autoCols: _getArrayProp(autoCols), $autoFlow: _getArrayProp(autoFlow), $columns: _getArrayProp(columns), $gap: _getArrayProp(gap), $gapX: _getArrayProp(gapX), $gapY: _getArrayProp(gapY), $rows: _getArrayProp(rows), forwardedAs: as, ref, children });
|
|
2717
2381
|
});
|
|
2718
2382
|
Grid.displayName = "ForwardRef(Grid)";
|
|
2719
2383
|
function headingBaseStyle(props) {
|
|
@@ -2779,32 +2443,18 @@ const StyledHeading = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
2779
2443
|
displayName: "StyledHeading",
|
|
2780
2444
|
componentId: "sc-137lwim-0"
|
|
2781
2445
|
})(headingBaseStyle, responsiveTextAlignStyle, responsiveHeadingFont), Heading = react.forwardRef(function(props, ref) {
|
|
2782
|
-
const
|
|
2783
|
-
|
|
2784
|
-
$[0] !== props ? ({
|
|
2785
|
-
accent: t0,
|
|
2446
|
+
const {
|
|
2447
|
+
accent = !1,
|
|
2786
2448
|
align,
|
|
2787
2449
|
children: childrenProp,
|
|
2788
|
-
muted
|
|
2789
|
-
size:
|
|
2450
|
+
muted = !1,
|
|
2451
|
+
size: size2 = 2,
|
|
2790
2452
|
textOverflow,
|
|
2791
2453
|
weight,
|
|
2792
2454
|
...restProps
|
|
2793
|
-
} = props
|
|
2794
|
-
const accent = t0 === void 0 ? !1 : t0, muted = t1 === void 0 ? !1 : t1, size2 = t2 === void 0 ? 2 : t2;
|
|
2455
|
+
} = props;
|
|
2795
2456
|
let children = childrenProp;
|
|
2796
|
-
|
|
2797
|
-
let t32;
|
|
2798
|
-
$[9] !== children ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children }), $[9] = children, $[10] = t32) : t32 = $[10], children = t32;
|
|
2799
|
-
}
|
|
2800
|
-
let t3;
|
|
2801
|
-
$[11] !== align ? (t3 = _getArrayProp(align), $[11] = align, $[12] = t3) : t3 = $[12];
|
|
2802
|
-
let t4;
|
|
2803
|
-
$[13] !== size2 ? (t4 = _getArrayProp(size2), $[13] = size2, $[14] = t4) : t4 = $[14];
|
|
2804
|
-
let t5;
|
|
2805
|
-
$[15] !== children ? (t5 = /* @__PURE__ */ jsxRuntime.jsx("span", { children }), $[15] = children, $[16] = t5) : t5 = $[16];
|
|
2806
|
-
let t6;
|
|
2807
|
-
return $[17] !== accent || $[18] !== muted || $[19] !== ref || $[20] !== restProps || $[21] !== t3 || $[22] !== t4 || $[23] !== t5 || $[24] !== weight ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledHeading, { "data-ui": "Heading", ...restProps, $accent: accent, $align: t3, $muted: muted, $size: t4, $weight: weight, ref, children: t5 }), $[17] = accent, $[18] = muted, $[19] = ref, $[20] = restProps, $[21] = t3, $[22] = t4, $[23] = t5, $[24] = weight, $[25] = t6) : t6 = $[25], t6;
|
|
2457
|
+
return textOverflow === "ellipsis" && (children = /* @__PURE__ */ jsxRuntime.jsx(SpanWithTextOverflow, { children })), /* @__PURE__ */ jsxRuntime.jsx(StyledHeading, { "data-ui": "Heading", ...restProps, $accent: accent, $align: _getArrayProp(align), $muted: muted, $size: _getArrayProp(size2), $weight: weight, ref, children: /* @__PURE__ */ jsxRuntime.jsx("span", { children }) });
|
|
2808
2458
|
});
|
|
2809
2459
|
Heading.displayName = "ForwardRef(Heading)";
|
|
2810
2460
|
function inlineBaseStyle() {
|
|
@@ -2838,27 +2488,15 @@ const StyledInline = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
2838
2488
|
displayName: "StyledInline",
|
|
2839
2489
|
componentId: "sc-1pkiy6j-0"
|
|
2840
2490
|
})(inlineBaseStyle, inlineSpaceStyle), Inline = react.forwardRef(function(props, ref) {
|
|
2841
|
-
const
|
|
2842
|
-
let as, childrenProp, restProps, space;
|
|
2843
|
-
$[0] !== props ? ({
|
|
2491
|
+
const {
|
|
2844
2492
|
as,
|
|
2845
2493
|
children: childrenProp,
|
|
2846
2494
|
space,
|
|
2847
2495
|
...restProps
|
|
2848
|
-
} = props,
|
|
2849
|
-
|
|
2850
|
-
$[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;
|
|
2855
|
-
let t3;
|
|
2856
|
-
return $[9] !== as || $[10] !== children || $[11] !== restProps || $[12] !== t1 || $[13] !== t2 ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(StyledInline, { "data-ui": "Inline", ...restProps, $space: t1, forwardedAs: as, ref: t2, children }), $[9] = as, $[10] = children, $[11] = restProps, $[12] = t1, $[13] = t2, $[14] = t3) : t3 = $[14], t3;
|
|
2496
|
+
} = props, children = react.useMemo(() => react.Children.map(childrenProp, (child) => child && /* @__PURE__ */ jsxRuntime.jsx("div", { children: child })), [childrenProp]);
|
|
2497
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledInline, { "data-ui": "Inline", ...restProps, $space: _getArrayProp(space), forwardedAs: as, ref, children });
|
|
2857
2498
|
});
|
|
2858
2499
|
Inline.displayName = "ForwardRef(Inline)";
|
|
2859
|
-
function _temp$5(child) {
|
|
2860
|
-
return child && /* @__PURE__ */ jsxRuntime.jsx("div", { children: child });
|
|
2861
|
-
}
|
|
2862
2500
|
function kbdStyle() {
|
|
2863
2501
|
return styledComponents.css`
|
|
2864
2502
|
--card-bg-color: var(--card-kbd-bg-color);
|
|
@@ -2880,24 +2518,14 @@ const StyledKBD = /* @__PURE__ */ styledComponents.styled.kbd.withConfig({
|
|
|
2880
2518
|
displayName: "StyledKBD",
|
|
2881
2519
|
componentId: "sc-1w7yd8w-0"
|
|
2882
2520
|
})(responsiveRadiusStyle, kbdStyle), KBD = react.forwardRef(function(props, ref) {
|
|
2883
|
-
const
|
|
2884
|
-
let children, restProps, t0, t1, t2;
|
|
2885
|
-
$[0] !== props ? ({
|
|
2521
|
+
const {
|
|
2886
2522
|
children,
|
|
2887
|
-
fontSize:
|
|
2888
|
-
padding
|
|
2889
|
-
radius
|
|
2523
|
+
fontSize: fontSize2 = 0,
|
|
2524
|
+
padding = 1,
|
|
2525
|
+
radius = 2,
|
|
2890
2526
|
...restProps
|
|
2891
|
-
} = props
|
|
2892
|
-
|
|
2893
|
-
let t3;
|
|
2894
|
-
$[6] !== radius ? (t3 = _getArrayProp(radius), $[6] = radius, $[7] = t3) : t3 = $[7];
|
|
2895
|
-
let t4;
|
|
2896
|
-
$[8] !== children || $[9] !== fontSize2 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(Text, { as: "span", size: fontSize2, weight: "semibold", children }), $[8] = children, $[9] = fontSize2, $[10] = t4) : t4 = $[10];
|
|
2897
|
-
let t5;
|
|
2898
|
-
$[11] !== padding || $[12] !== t4 ? (t5 = /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", padding, children: t4 }), $[11] = padding, $[12] = t4, $[13] = t5) : t5 = $[13];
|
|
2899
|
-
let t6;
|
|
2900
|
-
return $[14] !== ref || $[15] !== restProps || $[16] !== t3 || $[17] !== t5 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledKBD, { "data-ui": "KBD", ...restProps, $radius: t3, ref, children: t5 }), $[14] = ref, $[15] = restProps, $[16] = t3, $[17] = t5, $[18] = t6) : t6 = $[18], t6;
|
|
2527
|
+
} = props;
|
|
2528
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledKBD, { "data-ui": "KBD", ...restProps, $radius: _getArrayProp(radius), ref, children: /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", padding, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { as: "span", size: fontSize2, weight: "semibold", children }) }) });
|
|
2901
2529
|
});
|
|
2902
2530
|
KBD.displayName = "ForwardRef(KBD)";
|
|
2903
2531
|
const origin = {
|
|
@@ -3025,15 +2653,12 @@ const StyledArrow = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
3025
2653
|
displayName: "ShapePath",
|
|
3026
2654
|
componentId: "sc-12vzy6c-2"
|
|
3027
2655
|
})`fill:var(--card-bg-color);`, Arrow = react.forwardRef(function(props, ref) {
|
|
3028
|
-
const
|
|
3029
|
-
let h, restProps, t0, w;
|
|
3030
|
-
$[0] !== props ? ({
|
|
2656
|
+
const {
|
|
3031
2657
|
width: w,
|
|
3032
2658
|
height: h,
|
|
3033
|
-
radius
|
|
2659
|
+
radius = 0,
|
|
3034
2660
|
...restProps
|
|
3035
|
-
} = props,
|
|
3036
|
-
const radius = t0 === void 0 ? 0 : t0, {
|
|
2661
|
+
} = props, {
|
|
3037
2662
|
card
|
|
3038
2663
|
} = useTheme_v2(), strokeWidth = card.shadow.outline, center = w / 2, points = [{
|
|
3039
2664
|
x: 0,
|
|
@@ -3053,38 +2678,24 @@ const StyledArrow = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
3053
2678
|
}, {
|
|
3054
2679
|
x: w,
|
|
3055
2680
|
y: 0
|
|
3056
|
-
}], cmds = getRoundedCommands(points), path = compileCommands(cmds), strokePath = `${path}`, fillPath = `${path} M ${w} -1 M 0 -1 Z
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
let t5;
|
|
3063
|
-
$[11] !== fillPath ? (t5 = /* @__PURE__ */ jsxRuntime.jsx(ShapePath, { d: fillPath }), $[11] = fillPath, $[12] = t5) : t5 = $[12];
|
|
3064
|
-
let t6;
|
|
3065
|
-
$[13] !== t1 || $[14] !== t2 || $[15] !== t4 || $[16] !== t5 || $[17] !== w ? (t6 = /* @__PURE__ */ jsxRuntime.jsxs("svg", { width: w, height: w, viewBox: t1, children: [
|
|
3066
|
-
t2,
|
|
3067
|
-
t4,
|
|
3068
|
-
t5
|
|
3069
|
-
] }), $[13] = t1, $[14] = t2, $[15] = t4, $[16] = t5, $[17] = w, $[18] = t6) : t6 = $[18];
|
|
3070
|
-
let t7;
|
|
3071
|
-
return $[19] !== ref || $[20] !== restProps || $[21] !== t6 || $[22] !== w ? (t7 = /* @__PURE__ */ jsxRuntime.jsx(StyledArrow, { ...restProps, $w: w, ref, children: t6 }), $[19] = ref, $[20] = restProps, $[21] = t6, $[22] = w, $[23] = t7) : t7 = $[23], t7;
|
|
2681
|
+
}], cmds = getRoundedCommands(points), path = compileCommands(cmds), strokePath = `${path}`, fillPath = `${path} M ${w} -1 M 0 -1 Z`;
|
|
2682
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledArrow, { ...restProps, $w: w, ref, children: /* @__PURE__ */ jsxRuntime.jsxs("svg", { width: w, height: w, viewBox: `0 0 ${w} ${w}`, children: [
|
|
2683
|
+
/* @__PURE__ */ jsxRuntime.jsx("mask", { id: "stroke-mask", children: /* @__PURE__ */ jsxRuntime.jsx("rect", { x: 0, y: strokeWidth, width: w, height: w, fill: "white" }) }),
|
|
2684
|
+
/* @__PURE__ */ jsxRuntime.jsx(StrokePath, { d: strokePath, mask: "url(#stroke-mask)", strokeWidth: strokeWidth * 2 }),
|
|
2685
|
+
/* @__PURE__ */ jsxRuntime.jsx(ShapePath, { d: fillPath })
|
|
2686
|
+
] }) });
|
|
3072
2687
|
});
|
|
3073
2688
|
Arrow.displayName = "ForwardRef(Arrow)";
|
|
3074
2689
|
const BoundaryElementContext = createGlobalScopedContext("@sanity/ui/context/boundaryElement", null);
|
|
3075
2690
|
function BoundaryElementProvider(props) {
|
|
3076
|
-
const
|
|
2691
|
+
const {
|
|
3077
2692
|
children,
|
|
3078
2693
|
element
|
|
3079
|
-
} = props
|
|
3080
|
-
let t0;
|
|
3081
|
-
$[0] !== element ? (t0 = {
|
|
2694
|
+
} = props, value = react.useMemo(() => ({
|
|
3082
2695
|
version: 0,
|
|
3083
2696
|
element
|
|
3084
|
-
},
|
|
3085
|
-
|
|
3086
|
-
let t1;
|
|
3087
|
-
return $[2] !== children || $[3] !== value ? (t1 = /* @__PURE__ */ jsxRuntime.jsx(BoundaryElementContext.Provider, { value, children }), $[2] = children, $[3] = value, $[4] = t1) : t1 = $[4], t1;
|
|
2697
|
+
}), [element]);
|
|
2698
|
+
return /* @__PURE__ */ jsxRuntime.jsx(BoundaryElementContext.Provider, { value, children });
|
|
3088
2699
|
}
|
|
3089
2700
|
BoundaryElementProvider.displayName = "BoundaryElementProvider";
|
|
3090
2701
|
function isRecord(value) {
|
|
@@ -3121,32 +2732,18 @@ function findMinBreakpoints(media, width) {
|
|
|
3121
2732
|
return ret;
|
|
3122
2733
|
}
|
|
3123
2734
|
const ElementQuery = react.forwardRef(function(props, forwardedRef) {
|
|
3124
|
-
const
|
|
3125
|
-
let _media, children, restProps;
|
|
3126
|
-
$[0] !== props ? ({
|
|
2735
|
+
const theme2 = useTheme_v2(), {
|
|
3127
2736
|
children,
|
|
3128
2737
|
media: _media,
|
|
3129
2738
|
...restProps
|
|
3130
|
-
} = props,
|
|
3131
|
-
const media = _media ?? theme2.media, [element, setElement] = react.useState(null), width = useElementSize(element)?.border.width ?? window.innerWidth;
|
|
3132
|
-
let t0;
|
|
3133
|
-
if ($[4] !== media || $[5] !== width) {
|
|
2739
|
+
} = props, media = _media ?? theme2.media, [element, setElement] = react.useState(null), elementSize = useElementSize(element), width = react.useMemo(() => elementSize?.border.width ?? window.innerWidth, [elementSize]), max = react.useMemo(() => {
|
|
3134
2740
|
const eq = findMaxBreakpoints(media, width);
|
|
3135
|
-
|
|
3136
|
-
}
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
const eq_0 = findMinBreakpoints(media, width);
|
|
3142
|
-
t1 = eq_0.length ? eq_0.join(" ") : void 0, $[7] = media, $[8] = width, $[9] = t1;
|
|
3143
|
-
} else
|
|
3144
|
-
t1 = $[9];
|
|
3145
|
-
const min = t1;
|
|
3146
|
-
let t2, t3;
|
|
3147
|
-
$[10] !== element ? (t2 = () => element, t3 = [element], $[10] = element, $[11] = t2, $[12] = t3) : (t2 = $[11], t3 = $[12]), react.useImperativeHandle(forwardedRef, t2, t3);
|
|
3148
|
-
let t4;
|
|
3149
|
-
return $[13] !== children || $[14] !== max || $[15] !== min || $[16] !== restProps ? (t4 = /* @__PURE__ */ jsxRuntime.jsx("div", { "data-ui": "ElementQuery", ...restProps, "data-eq-max": max, "data-eq-min": min, ref: setElement, children }), $[13] = children, $[14] = max, $[15] = min, $[16] = restProps, $[17] = t4) : t4 = $[17], t4;
|
|
2741
|
+
return eq.length ? eq.join(" ") : void 0;
|
|
2742
|
+
}, [media, width]), min = react.useMemo(() => {
|
|
2743
|
+
const eq = findMinBreakpoints(media, width);
|
|
2744
|
+
return eq.length ? eq.join(" ") : void 0;
|
|
2745
|
+
}, [media, width]);
|
|
2746
|
+
return react.useImperativeHandle(forwardedRef, () => element, [element]), /* @__PURE__ */ jsxRuntime.jsx("div", { "data-ui": "ElementQuery", ...restProps, "data-eq-max": max, "data-eq-min": min, ref: setElement, children });
|
|
3150
2747
|
});
|
|
3151
2748
|
ElementQuery.displayName = "ForwardRef(ElementQuery)";
|
|
3152
2749
|
function getLayerContext(contextValue) {
|
|
@@ -3160,21 +2757,10 @@ function getLayerContext(contextValue) {
|
|
|
3160
2757
|
}
|
|
3161
2758
|
const LayerContext = createGlobalScopedContext("@sanity/ui/context/layer", null);
|
|
3162
2759
|
function LayerProvider(props) {
|
|
3163
|
-
const
|
|
2760
|
+
const {
|
|
3164
2761
|
children,
|
|
3165
|
-
zOffset:
|
|
3166
|
-
} = props,
|
|
3167
|
-
let t1;
|
|
3168
|
-
$[0] !== parentContextValue ? (t1 = parentContextValue && getLayerContext(parentContextValue), $[0] = parentContextValue, $[1] = t1) : t1 = $[1];
|
|
3169
|
-
const parent = t1, parentRegisterChild = parent?.registerChild, level = (parent?.level ?? 0) + 1;
|
|
3170
|
-
let t2;
|
|
3171
|
-
$[2] !== zOffsetProp ? (t2 = _getArrayProp(zOffsetProp), $[2] = zOffsetProp, $[3] = t2) : t2 = $[3];
|
|
3172
|
-
const zOffset = t2, maxMediaIndex = zOffset.length - 1, mediaIndex = Math.min(useMediaIndex(), maxMediaIndex), zIndex = parent ? parent.zIndex + zOffset[mediaIndex] : zOffset[mediaIndex];
|
|
3173
|
-
let t3;
|
|
3174
|
-
$[4] === Symbol.for("react.memo_cache_sentinel") ? (t3 = {}, $[4] = t3) : t3 = $[4];
|
|
3175
|
-
const [, setChildLayers] = react.useState(t3), [size2, setSize] = react.useState(0), isTopLayer = size2 === 0;
|
|
3176
|
-
let t4;
|
|
3177
|
-
$[5] !== parentRegisterChild || $[6] !== setChildLayers ? (t4 = (childLevel) => {
|
|
2762
|
+
zOffset: zOffsetProp = 0
|
|
2763
|
+
} = props, parentContextValue = react.useContext(LayerContext), parent = parentContextValue && getLayerContext(parentContextValue), parentRegisterChild = parent?.registerChild, level = (parent?.level ?? 0) + 1, zOffset = _getArrayProp(zOffsetProp), maxMediaIndex = zOffset.length - 1, mediaIndex = Math.min(useMediaIndex(), maxMediaIndex), zIndex = parent ? parent.zIndex + zOffset[mediaIndex] : zOffset[mediaIndex], [, setChildLayers] = react.useState({}), [size2, setSize] = react.useState(0), isTopLayer = size2 === 0, registerChild = react.useCallback((childLevel) => {
|
|
3178
2764
|
const parentDispose = parentRegisterChild?.(childLevel);
|
|
3179
2765
|
return childLevel !== void 0 ? setChildLayers((state) => {
|
|
3180
2766
|
const prevLen = state[childLevel] ?? 0, nextState = {
|
|
@@ -3182,47 +2768,34 @@ function LayerProvider(props) {
|
|
|
3182
2768
|
[childLevel]: prevLen + 1
|
|
3183
2769
|
};
|
|
3184
2770
|
return setSize(Object.keys(nextState).length), nextState;
|
|
3185
|
-
}) : setSize(
|
|
3186
|
-
childLevel !== void 0 ? setChildLayers((
|
|
3187
|
-
const
|
|
3188
|
-
...
|
|
2771
|
+
}) : setSize((v) => v + 1), () => {
|
|
2772
|
+
childLevel !== void 0 ? setChildLayers((state) => {
|
|
2773
|
+
const nextState = {
|
|
2774
|
+
...state
|
|
3189
2775
|
};
|
|
3190
|
-
return
|
|
3191
|
-
}) : setSize(
|
|
2776
|
+
return nextState[childLevel] === 1 ? (delete nextState[childLevel], setSize(Object.keys(nextState).length)) : nextState[childLevel] -= 1, nextState;
|
|
2777
|
+
}) : setSize((v) => v - 1), parentDispose?.();
|
|
3192
2778
|
};
|
|
3193
|
-
},
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
$[8] !== level || $[9] !== parentRegisterChild ? (t5 = () => parentRegisterChild?.(level), t6 = [level, parentRegisterChild], $[8] = level, $[9] = parentRegisterChild, $[10] = t5, $[11] = t6) : (t5 = $[10], t6 = $[11]), react.useEffect(t5, t6);
|
|
3197
|
-
let t7;
|
|
3198
|
-
$[12] !== isTopLayer || $[13] !== level || $[14] !== registerChild || $[15] !== size2 || $[16] !== zIndex ? (t7 = {
|
|
2779
|
+
}, [parentRegisterChild, setSize, setChildLayers]);
|
|
2780
|
+
react.useEffect(() => parentRegisterChild?.(level), [level, parentRegisterChild]);
|
|
2781
|
+
const value = react.useMemo(() => ({
|
|
3199
2782
|
version: 0,
|
|
3200
2783
|
isTopLayer,
|
|
3201
2784
|
level,
|
|
3202
2785
|
registerChild,
|
|
3203
2786
|
size: size2,
|
|
3204
2787
|
zIndex
|
|
3205
|
-
},
|
|
3206
|
-
|
|
3207
|
-
let t8;
|
|
3208
|
-
return $[18] !== children || $[19] !== value ? (t8 = /* @__PURE__ */ jsxRuntime.jsx(LayerContext.Provider, { value, children }), $[18] = children, $[19] = value, $[20] = t8) : t8 = $[20], t8;
|
|
3209
|
-
}
|
|
3210
|
-
function _temp2$2(v_0) {
|
|
3211
|
-
return v_0 - 1;
|
|
3212
|
-
}
|
|
3213
|
-
function _temp$4(v) {
|
|
3214
|
-
return v + 1;
|
|
2788
|
+
}), [isTopLayer, level, registerChild, size2, zIndex]);
|
|
2789
|
+
return /* @__PURE__ */ jsxRuntime.jsx(LayerContext.Provider, { value, children });
|
|
3215
2790
|
}
|
|
3216
2791
|
LayerProvider.displayName = "LayerProvider";
|
|
3217
2792
|
function useLayer() {
|
|
3218
|
-
const
|
|
2793
|
+
const value = react.useContext(LayerContext);
|
|
3219
2794
|
if (!value)
|
|
3220
2795
|
throw new Error("useLayer(): missing context value");
|
|
3221
2796
|
try {
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
} catch (t0) {
|
|
3225
|
-
const err = t0;
|
|
2797
|
+
return getLayerContext(value);
|
|
2798
|
+
} catch (err) {
|
|
3226
2799
|
throw err instanceof Error ? new Error(`useLayer(): ${err.message}`) : new Error(`useLayer(): ${err}`);
|
|
3227
2800
|
}
|
|
3228
2801
|
}
|
|
@@ -3232,54 +2805,37 @@ const StyledLayer = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
3232
2805
|
})({
|
|
3233
2806
|
position: "relative"
|
|
3234
2807
|
}), LayerChildren = react.forwardRef(function(props, forwardedRef) {
|
|
3235
|
-
const
|
|
3236
|
-
let children, onActivate, onFocus, restProps, t0;
|
|
3237
|
-
$[0] !== props ? ({
|
|
2808
|
+
const {
|
|
3238
2809
|
children,
|
|
3239
2810
|
onActivate,
|
|
3240
2811
|
onFocus,
|
|
3241
|
-
style
|
|
2812
|
+
style = EMPTY_RECORD,
|
|
3242
2813
|
...restProps
|
|
3243
|
-
} = props,
|
|
3244
|
-
const style = t0 === void 0 ? EMPTY_RECORD : t0, {
|
|
2814
|
+
} = props, {
|
|
3245
2815
|
zIndex,
|
|
3246
2816
|
isTopLayer
|
|
3247
2817
|
} = useLayer(), lastFocusedRef = react.useRef(null), ref = react.useRef(null), isTopLayerRef = react.useRef(isTopLayer);
|
|
3248
|
-
|
|
3249
|
-
$[6] === Symbol.for("react.memo_cache_sentinel") ? (t1 = () => ref.current, $[6] = t1) : t1 = $[6], react.useImperativeHandle(forwardedRef, t1);
|
|
3250
|
-
let t2, t3;
|
|
3251
|
-
$[7] !== isTopLayer || $[8] !== onActivate ? (t2 = () => {
|
|
2818
|
+
react.useImperativeHandle(forwardedRef, () => ref.current), react.useEffect(() => {
|
|
3252
2819
|
isTopLayerRef.current !== isTopLayer && isTopLayer && onActivate?.({
|
|
3253
2820
|
activeElement: lastFocusedRef.current
|
|
3254
2821
|
}), isTopLayerRef.current = isTopLayer;
|
|
3255
|
-
},
|
|
3256
|
-
|
|
3257
|
-
$[11] !== isTopLayer || $[12] !== onFocus ? (t4 = (event) => {
|
|
2822
|
+
}, [isTopLayer, onActivate]);
|
|
2823
|
+
const handleFocus = react.useCallback((event) => {
|
|
3258
2824
|
onFocus?.(event);
|
|
3259
2825
|
const rootElement = ref.current, target = document.activeElement;
|
|
3260
2826
|
!isTopLayer || !rootElement || !target || isHTMLElement(target) && containsOrEqualsElement(rootElement, target) && (lastFocusedRef.current = target);
|
|
3261
|
-
},
|
|
3262
|
-
|
|
3263
|
-
let t5;
|
|
3264
|
-
$[14] !== style || $[15] !== zIndex ? (t5 = {
|
|
2827
|
+
}, [isTopLayer, onFocus]);
|
|
2828
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledLayer, { ...restProps, "data-ui": "Layer", onFocus: handleFocus, ref, style: {
|
|
3265
2829
|
...style,
|
|
3266
2830
|
zIndex
|
|
3267
|
-
},
|
|
3268
|
-
let t6;
|
|
3269
|
-
return $[17] !== children || $[18] !== handleFocus || $[19] !== restProps || $[20] !== t5 ? (t6 = /* @__PURE__ */ jsxRuntime.jsx(StyledLayer, { ...restProps, "data-ui": "Layer", onFocus: handleFocus, ref, style: t5, children }), $[17] = children, $[18] = handleFocus, $[19] = restProps, $[20] = t5, $[21] = t6) : t6 = $[21], t6;
|
|
2831
|
+
}, children });
|
|
3270
2832
|
}), Layer = react.forwardRef(function(props, ref) {
|
|
3271
|
-
const
|
|
3272
|
-
let children, restProps, t0;
|
|
3273
|
-
$[0] !== props ? ({
|
|
2833
|
+
const {
|
|
3274
2834
|
children,
|
|
3275
|
-
zOffset
|
|
2835
|
+
zOffset = 1,
|
|
3276
2836
|
...restProps
|
|
3277
|
-
} = props
|
|
3278
|
-
|
|
3279
|
-
let t1;
|
|
3280
|
-
$[4] !== children || $[5] !== ref || $[6] !== restProps ? (t1 = /* @__PURE__ */ jsxRuntime.jsx(LayerChildren, { ...restProps, ref, children }), $[4] = children, $[5] = ref, $[6] = restProps, $[7] = t1) : t1 = $[7];
|
|
3281
|
-
let t2;
|
|
3282
|
-
return $[8] !== t1 || $[9] !== zOffset ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(LayerProvider, { zOffset, children: t1 }), $[8] = t1, $[9] = zOffset, $[10] = t2) : t2 = $[10], t2;
|
|
2837
|
+
} = props;
|
|
2838
|
+
return /* @__PURE__ */ jsxRuntime.jsx(LayerProvider, { zOffset, children: /* @__PURE__ */ jsxRuntime.jsx(LayerChildren, { ...restProps, ref, children }) });
|
|
3283
2839
|
});
|
|
3284
2840
|
Layer.displayName = "ForwardRef(Layer)";
|
|
3285
2841
|
const key = "@sanity/ui/context/portal", elementKey = Symbol.for(`${key}/element`);
|
|
@@ -3300,39 +2856,26 @@ function usePortal() {
|
|
|
3300
2856
|
return value;
|
|
3301
2857
|
}
|
|
3302
2858
|
function Portal(props) {
|
|
3303
|
-
const
|
|
2859
|
+
const {
|
|
3304
2860
|
children,
|
|
3305
2861
|
__unstable_name: name
|
|
3306
2862
|
} = props, portal = usePortal(), portalElement = (name ? portal.elements && portal.elements[name] : portal.element) || portal.elements?.default;
|
|
3307
|
-
|
|
3308
|
-
return null;
|
|
3309
|
-
let t0;
|
|
3310
|
-
return $[0] !== children || $[1] !== portalElement ? (t0 = reactDom.createPortal(children, portalElement), $[0] = children, $[1] = portalElement, $[2] = t0) : t0 = $[2], t0;
|
|
2863
|
+
return portalElement ? reactDom.createPortal(children, portalElement) : null;
|
|
3311
2864
|
}
|
|
3312
2865
|
Portal.displayName = "Portal";
|
|
3313
2866
|
function PortalProvider(props) {
|
|
3314
|
-
const
|
|
2867
|
+
const {
|
|
3315
2868
|
boundaryElement,
|
|
3316
2869
|
children,
|
|
3317
2870
|
element,
|
|
3318
2871
|
__unstable_elements: elements
|
|
3319
|
-
} = props, fallbackElement = react.useSyncExternalStore(emptySubscribe,
|
|
3320
|
-
let t2;
|
|
3321
|
-
$[0] !== elements || $[1] !== t0 || $[2] !== t1 ? (t2 = {
|
|
2872
|
+
} = props, fallbackElement = react.useSyncExternalStore(emptySubscribe, () => document.body, () => null), value = react.useMemo(() => ({
|
|
3322
2873
|
version: 0,
|
|
3323
|
-
boundaryElement:
|
|
3324
|
-
element:
|
|
2874
|
+
boundaryElement: boundaryElement || null,
|
|
2875
|
+
element: element || fallbackElement,
|
|
3325
2876
|
elements
|
|
3326
|
-
},
|
|
3327
|
-
|
|
3328
|
-
let t3;
|
|
3329
|
-
return $[4] !== children || $[5] !== value ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(PortalContext.Provider, { value, children }), $[4] = children, $[5] = value, $[6] = t3) : t3 = $[6], t3;
|
|
3330
|
-
}
|
|
3331
|
-
function _temp2$1() {
|
|
3332
|
-
return null;
|
|
3333
|
-
}
|
|
3334
|
-
function _temp$3() {
|
|
3335
|
-
return document.body;
|
|
2877
|
+
}), [boundaryElement, element, elements, fallbackElement]);
|
|
2878
|
+
return /* @__PURE__ */ jsxRuntime.jsx(PortalContext.Provider, { value, children });
|
|
3336
2879
|
}
|
|
3337
2880
|
PortalProvider.displayName = "PortalProvider";
|
|
3338
2881
|
const emptySubscribe = () => () => {
|
|
@@ -3340,12 +2883,11 @@ const emptySubscribe = () => () => {
|
|
|
3340
2883
|
displayName: "StyledSrOnly",
|
|
3341
2884
|
componentId: "sc-mubr0c-0"
|
|
3342
2885
|
})`display:block;width:0;height:0;position:absolute;overflow:hidden;overflow:clip;`, SrOnly = react.forwardRef(function(props, ref) {
|
|
3343
|
-
const
|
|
2886
|
+
const {
|
|
3344
2887
|
as,
|
|
3345
2888
|
children
|
|
3346
2889
|
} = props;
|
|
3347
|
-
|
|
3348
|
-
return $[0] !== as || $[1] !== children || $[2] !== ref ? (t0 = /* @__PURE__ */ jsxRuntime.jsx(StyledSrOnly, { "aria-hidden": !0, as, "data-ui": "SrOnly", ref, children }), $[0] = as, $[1] = children, $[2] = ref, $[3] = t0) : t0 = $[3], t0;
|
|
2890
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledSrOnly, { "aria-hidden": !0, as, "data-ui": "SrOnly", ref, children });
|
|
3349
2891
|
});
|
|
3350
2892
|
SrOnly.displayName = "ForwardRef(SrOnly)";
|
|
3351
2893
|
const StyledVirtualList = styledComponents.styled.div.withConfig({
|
|
@@ -3355,69 +2897,52 @@ const StyledVirtualList = styledComponents.styled.div.withConfig({
|
|
|
3355
2897
|
displayName: "ItemWrapper",
|
|
3356
2898
|
componentId: "sc-dlqsj4-1"
|
|
3357
2899
|
})`position:absolute;left:0;right:0;`, VirtualList = react.forwardRef(function(props, forwardedRef) {
|
|
3358
|
-
const
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
as: t0,
|
|
3362
|
-
gap: t1,
|
|
2900
|
+
const {
|
|
2901
|
+
as = "div",
|
|
2902
|
+
gap = 0,
|
|
3363
2903
|
getItemKey,
|
|
3364
|
-
items
|
|
2904
|
+
items = [],
|
|
3365
2905
|
onChange,
|
|
3366
2906
|
renderItem,
|
|
3367
2907
|
...restProps
|
|
3368
|
-
} = props,
|
|
3369
|
-
const as = t0 === void 0 ? "div" : t0, gap = t1 === void 0 ? 0 : t1;
|
|
3370
|
-
let t3;
|
|
3371
|
-
$[8] !== t2 ? (t3 = t2 === void 0 ? [] : t2, $[8] = t2, $[9] = t3) : t3 = $[9];
|
|
3372
|
-
const items = t3, {
|
|
2908
|
+
} = props, {
|
|
3373
2909
|
space
|
|
3374
2910
|
} = useTheme_v2(), ref = react.useRef(null), wrapperRef = react.useRef(null), [scrollTop, setScrollTop] = react.useState(0), [scrollHeight, setScrollHeight] = react.useState(0), [itemHeight, setItemHeight] = react.useState(-1);
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
let t5;
|
|
3378
|
-
$[11] === Symbol.for("react.memo_cache_sentinel") ? (t5 = () => {
|
|
3379
|
-
if (!wrapperRef.current)
|
|
3380
|
-
return;
|
|
2911
|
+
react.useImperativeHandle(forwardedRef, () => ref.current), react.useEffect(() => {
|
|
2912
|
+
if (!wrapperRef.current) return;
|
|
3381
2913
|
const firstElement = wrapperRef.current.firstChild;
|
|
3382
2914
|
firstElement instanceof HTMLElement && setItemHeight(firstElement.offsetHeight);
|
|
3383
|
-
},
|
|
3384
|
-
|
|
3385
|
-
$[12] !== renderItem ? (t6 = [renderItem], $[12] = renderItem, $[13] = t6) : t6 = $[13], react.useEffect(t5, t6);
|
|
3386
|
-
let t7, t8;
|
|
3387
|
-
$[14] === Symbol.for("react.memo_cache_sentinel") ? (t7 = () => {
|
|
3388
|
-
if (!ref.current)
|
|
3389
|
-
return;
|
|
2915
|
+
}, [renderItem]), react.useEffect(() => {
|
|
2916
|
+
if (!ref.current) return;
|
|
3390
2917
|
const scrollEl = findScrollable(ref.current.parentNode);
|
|
3391
2918
|
if (scrollEl) {
|
|
3392
|
-
if (!(scrollEl instanceof HTMLElement))
|
|
3393
|
-
|
|
3394
|
-
const handleScroll = () => {
|
|
2919
|
+
if (!(scrollEl instanceof HTMLElement)) return;
|
|
2920
|
+
const handleScroll2 = () => {
|
|
3395
2921
|
setScrollTop(scrollEl.scrollTop);
|
|
3396
2922
|
};
|
|
3397
|
-
scrollEl.addEventListener("scroll",
|
|
2923
|
+
scrollEl.addEventListener("scroll", handleScroll2, {
|
|
3398
2924
|
passive: !0
|
|
3399
2925
|
});
|
|
3400
2926
|
const ro = new _ResizeObserver((entries) => {
|
|
3401
2927
|
setScrollHeight(entries[0].contentRect.height);
|
|
3402
2928
|
});
|
|
3403
|
-
return ro.observe(scrollEl),
|
|
3404
|
-
scrollEl.removeEventListener("scroll",
|
|
2929
|
+
return ro.observe(scrollEl), handleScroll2(), () => {
|
|
2930
|
+
scrollEl.removeEventListener("scroll", handleScroll2), ro.unobserve(scrollEl), ro.disconnect();
|
|
3405
2931
|
};
|
|
3406
2932
|
}
|
|
3407
|
-
const
|
|
2933
|
+
const handleScroll = () => {
|
|
3408
2934
|
setScrollTop(window.scrollY);
|
|
3409
2935
|
}, handleResize = () => {
|
|
3410
2936
|
setScrollHeight(window.innerHeight);
|
|
3411
2937
|
};
|
|
3412
|
-
return window.addEventListener("scroll",
|
|
2938
|
+
return window.addEventListener("scroll", handleScroll, {
|
|
3413
2939
|
passive: !0
|
|
3414
|
-
}), window.addEventListener("resize", handleResize), setScrollHeight(window.innerHeight),
|
|
3415
|
-
window.removeEventListener("scroll",
|
|
2940
|
+
}), window.addEventListener("resize", handleResize), setScrollHeight(window.innerHeight), handleScroll(), () => {
|
|
2941
|
+
window.removeEventListener("scroll", handleScroll), window.removeEventListener("resize", handleResize);
|
|
3416
2942
|
};
|
|
3417
|
-
},
|
|
2943
|
+
}, []);
|
|
3418
2944
|
const len = items.length, height = itemHeight ? len * (itemHeight + space[gap]) - space[gap] : 0, fromIndex = height ? Math.max(Math.floor(scrollTop / height * len) - 2, 0) : 0, toIndex = height ? Math.ceil((scrollTop + scrollHeight) / height * len) + 1 : 0;
|
|
3419
|
-
|
|
3420
|
-
$[16] !== fromIndex || $[17] !== gap || $[18] !== itemHeight || $[19] !== onChange || $[20] !== scrollHeight || $[21] !== scrollTop || $[22] !== space || $[23] !== toIndex ? (t9 = () => {
|
|
2945
|
+
react.useEffect(() => {
|
|
3421
2946
|
onChange && onChange({
|
|
3422
2947
|
fromIndex,
|
|
3423
2948
|
gap: space[gap],
|
|
@@ -3426,9 +2951,8 @@ const StyledVirtualList = styledComponents.styled.div.withConfig({
|
|
|
3426
2951
|
scrollTop,
|
|
3427
2952
|
toIndex
|
|
3428
2953
|
});
|
|
3429
|
-
},
|
|
3430
|
-
|
|
3431
|
-
$[26] !== fromIndex || $[27] !== gap || $[28] !== getItemKey || $[29] !== itemHeight || $[30] !== items || $[31] !== renderItem || $[32] !== space || $[33] !== toIndex ? (t11 = {
|
|
2954
|
+
}, [fromIndex, gap, itemHeight, onChange, scrollHeight, scrollTop, space, toIndex]);
|
|
2955
|
+
const children = useChildren({
|
|
3432
2956
|
fromIndex,
|
|
3433
2957
|
gap,
|
|
3434
2958
|
itemHeight,
|
|
@@ -3437,49 +2961,28 @@ const StyledVirtualList = styledComponents.styled.div.withConfig({
|
|
|
3437
2961
|
getItemKey,
|
|
3438
2962
|
items,
|
|
3439
2963
|
renderItem
|
|
3440
|
-
}
|
|
3441
|
-
|
|
3442
|
-
let t12;
|
|
3443
|
-
$[35] !== height ? (t12 = {
|
|
2964
|
+
});
|
|
2965
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledVirtualList, { as, "data-ui": "VirtualList", ...restProps, ref, children: /* @__PURE__ */ jsxRuntime.jsx("div", { ref: wrapperRef, style: {
|
|
3444
2966
|
height
|
|
3445
|
-
},
|
|
3446
|
-
let t13;
|
|
3447
|
-
$[37] !== children || $[38] !== t12 ? (t13 = /* @__PURE__ */ jsxRuntime.jsx("div", { ref: wrapperRef, style: t12, children }), $[37] = children, $[38] = t12, $[39] = t13) : t13 = $[39];
|
|
3448
|
-
let t14;
|
|
3449
|
-
return $[40] !== as || $[41] !== restProps || $[42] !== t13 ? (t14 = /* @__PURE__ */ jsxRuntime.jsx(StyledVirtualList, { as, "data-ui": "VirtualList", ...restProps, ref, children: t13 }), $[40] = as, $[41] = restProps, $[42] = t13, $[43] = t14) : t14 = $[43], t14;
|
|
2967
|
+
}, children }) });
|
|
3450
2968
|
});
|
|
3451
2969
|
VirtualList.displayName = "ForwardRef(VirtualList)";
|
|
3452
|
-
function useChildren(
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
}
|
|
3463
|
-
|
|
3464
|
-
return
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
let t2;
|
|
3469
|
-
return $[3] !== t12 ? (t2 = [/* @__PURE__ */ jsxRuntime.jsx(ItemWrapper, { children: t12 }, 0)], $[3] = t12, $[4] = t2) : t2 = $[4], t2;
|
|
3470
|
-
}
|
|
3471
|
-
let t1;
|
|
3472
|
-
if ($[5] !== fromIndex || $[6] !== gap || $[7] !== getItemKey || $[8] !== itemHeight || $[9] !== items || $[10] !== renderItem || $[11] !== space || $[12] !== toIndex) {
|
|
3473
|
-
let t2;
|
|
3474
|
-
$[14] !== fromIndex || $[15] !== gap || $[16] !== getItemKey || $[17] !== itemHeight || $[18] !== renderItem || $[19] !== space ? (t2 = (item, _itemIndex) => {
|
|
3475
|
-
const itemIndex = fromIndex + _itemIndex, node = renderItem(item), key2 = getItemKey ? getItemKey(item, itemIndex) : itemIndex;
|
|
3476
|
-
return /* @__PURE__ */ jsxRuntime.jsx(ItemWrapper, { style: {
|
|
3477
|
-
top: itemIndex * (itemHeight + space[gap])
|
|
3478
|
-
}, children: node }, key2);
|
|
3479
|
-
}, $[14] = fromIndex, $[15] = gap, $[16] = getItemKey, $[17] = itemHeight, $[18] = renderItem, $[19] = space, $[20] = t2) : t2 = $[20], t1 = items.slice(fromIndex, toIndex).map(t2), $[5] = fromIndex, $[6] = gap, $[7] = getItemKey, $[8] = itemHeight, $[9] = items, $[10] = renderItem, $[11] = space, $[12] = toIndex, $[13] = t1;
|
|
3480
|
-
} else
|
|
3481
|
-
t1 = $[13];
|
|
3482
|
-
return t1;
|
|
2970
|
+
function useChildren({
|
|
2971
|
+
fromIndex,
|
|
2972
|
+
gap,
|
|
2973
|
+
getItemKey,
|
|
2974
|
+
itemHeight,
|
|
2975
|
+
items,
|
|
2976
|
+
renderItem,
|
|
2977
|
+
space,
|
|
2978
|
+
toIndex
|
|
2979
|
+
}) {
|
|
2980
|
+
return !renderItem || items.length === 0 ? null : itemHeight === -1 ? [/* @__PURE__ */ jsxRuntime.jsx(ItemWrapper, { children: renderItem(items[0]) }, 0)] : items.slice(fromIndex, toIndex).map((item, _itemIndex) => {
|
|
2981
|
+
const itemIndex = fromIndex + _itemIndex, node = renderItem(item), key2 = getItemKey ? getItemKey(item, itemIndex) : itemIndex;
|
|
2982
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ItemWrapper, { style: {
|
|
2983
|
+
top: itemIndex * (itemHeight + space[gap])
|
|
2984
|
+
}, children: node }, key2);
|
|
2985
|
+
});
|
|
3483
2986
|
}
|
|
3484
2987
|
function findScrollable(parentNode) {
|
|
3485
2988
|
let _scrollEl = parentNode;
|
|
@@ -3571,9 +3074,7 @@ const MotionCard$1 = styledComponents.styled(framerMotion.motion.create(Card)).w
|
|
|
3571
3074
|
displayName: "MotionFlex",
|
|
3572
3075
|
componentId: "sc-ihg31s-1"
|
|
3573
3076
|
})`will-change:opacity;`, PopoverCard = react.forwardRef(function(props, ref) {
|
|
3574
|
-
const
|
|
3575
|
-
let animate, arrow, arrowRef, arrowX, arrowY, children, marginsProp, originX, originY, overflow, padding, placement, radius, restProps, scheme, shadow, strategy, style, tone, width, xProp, yProp;
|
|
3576
|
-
$[0] !== props ? ({
|
|
3077
|
+
const {
|
|
3577
3078
|
__unstable_margins: marginsProp,
|
|
3578
3079
|
animate,
|
|
3579
3080
|
arrow,
|
|
@@ -3596,12 +3097,9 @@ const MotionCard$1 = styledComponents.styled(framerMotion.motion.create(Card)).w
|
|
|
3596
3097
|
x: xProp,
|
|
3597
3098
|
y: yProp,
|
|
3598
3099
|
...restProps
|
|
3599
|
-
} = props,
|
|
3600
|
-
const {
|
|
3100
|
+
} = props, {
|
|
3601
3101
|
zIndex
|
|
3602
|
-
} = useLayer(), margins = marginsProp || DEFAULT_POPOVER_MARGINS, x = (xProp ?? 0) + margins[3], y = (yProp ?? 0) + margins[0],
|
|
3603
|
-
let t1;
|
|
3604
|
-
$[23] !== originX || $[24] !== originY || $[25] !== strategy || $[26] !== style || $[27] !== t0 || $[28] !== width || $[29] !== x || $[30] !== y || $[31] !== zIndex ? (t1 = {
|
|
3102
|
+
} = useLayer(), margins = react.useMemo(() => marginsProp || DEFAULT_POPOVER_MARGINS, [marginsProp]), x = (xProp ?? 0) + margins[3], y = (yProp ?? 0) + margins[0], rootStyle2 = react.useMemo(() => ({
|
|
3605
3103
|
left: x,
|
|
3606
3104
|
originX,
|
|
3607
3105
|
originY,
|
|
@@ -3609,137 +3107,92 @@ const MotionCard$1 = styledComponents.styled(framerMotion.motion.create(Card)).w
|
|
|
3609
3107
|
top: y,
|
|
3610
3108
|
width,
|
|
3611
3109
|
zIndex,
|
|
3612
|
-
willChange:
|
|
3110
|
+
willChange: animate ? "transform" : void 0,
|
|
3613
3111
|
...style
|
|
3614
|
-
},
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
$[33] !== t2 || $[34] !== t3 ? (t4 = {
|
|
3618
|
-
left: t2,
|
|
3619
|
-
top: t3,
|
|
3112
|
+
}), [animate, originX, originY, strategy, style, width, x, y, zIndex]), arrowStyle = react.useMemo(() => ({
|
|
3113
|
+
left: arrowX !== null ? arrowX : void 0,
|
|
3114
|
+
top: arrowY !== null ? arrowY : void 0,
|
|
3620
3115
|
right: void 0,
|
|
3621
3116
|
bottom: void 0
|
|
3622
|
-
},
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
$[38] !== animate ? (t7 = animate ? ["visible", "scaleIn"] : void 0, $[38] = animate, $[39] = t7) : t7 = $[39];
|
|
3628
|
-
let t8;
|
|
3629
|
-
$[40] !== animate ? (t8 = animate ? ["hidden", "scaleOut"] : void 0, $[40] = animate, $[41] = t8) : t8 = $[41];
|
|
3630
|
-
let t9;
|
|
3631
|
-
$[42] !== children || $[43] !== padding ? (t9 = /* @__PURE__ */ jsxRuntime.jsx(Flex, { direction: "column", flex: 1, padding, children }), $[42] = children, $[43] = padding, $[44] = t9) : t9 = $[44];
|
|
3632
|
-
let t10;
|
|
3633
|
-
$[45] !== overflow || $[46] !== t9 ? (t10 = /* @__PURE__ */ jsxRuntime.jsx(MotionFlex, { "data-ui": "Popover__wrapper", direction: "column", flex: 1, overflow, variants: POPOVER_MOTION_PROPS.children, transition: POPOVER_MOTION_PROPS.transition, children: t9 }), $[45] = overflow, $[46] = t9, $[47] = t10) : t10 = $[47];
|
|
3634
|
-
let t11;
|
|
3635
|
-
$[48] !== arrow || $[49] !== arrowRef || $[50] !== arrowStyle ? (t11 = arrow && /* @__PURE__ */ jsxRuntime.jsx(Arrow, { ref: arrowRef, style: arrowStyle, width: DEFAULT_POPOVER_ARROW_WIDTH, height: DEFAULT_POPOVER_ARROW_HEIGHT, radius: DEFAULT_POPOVER_ARROW_RADIUS }), $[48] = arrow, $[49] = arrowRef, $[50] = arrowStyle, $[51] = t11) : t11 = $[51];
|
|
3636
|
-
let t12;
|
|
3637
|
-
return $[52] !== placement || $[53] !== radius || $[54] !== ref || $[55] !== rootStyle2 || $[56] !== scheme || $[57] !== shadow || $[58] !== t10 || $[59] !== t11 || $[60] !== t5 || $[61] !== t6 || $[62] !== t7 || $[63] !== t8 || $[64] !== tone ? (t12 = /* @__PURE__ */ jsxRuntime.jsxs(MotionCard$1, { "data-ui": "Popover", ...t5, "data-placement": placement, radius, ref, scheme, shadow, sizing: "border", style: rootStyle2, tone, variants: POPOVER_MOTION_PROPS.card, transition: POPOVER_MOTION_PROPS.transition, initial: t6, animate: t7, exit: t8, children: [
|
|
3638
|
-
t10,
|
|
3639
|
-
t11
|
|
3640
|
-
] }), $[52] = placement, $[53] = radius, $[54] = ref, $[55] = rootStyle2, $[56] = scheme, $[57] = shadow, $[58] = t10, $[59] = t11, $[60] = t5, $[61] = t6, $[62] = t7, $[63] = t8, $[64] = tone, $[65] = t12) : t12 = $[65], t12;
|
|
3117
|
+
}), [arrowX, arrowY]);
|
|
3118
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(MotionCard$1, { "data-ui": "Popover", ...restProps, "data-placement": placement, radius, ref, scheme, shadow, sizing: "border", style: rootStyle2, tone, variants: POPOVER_MOTION_PROPS.card, transition: POPOVER_MOTION_PROPS.transition, initial: animate ? ["hidden", "initial"] : void 0, animate: animate ? ["visible", "scaleIn"] : void 0, exit: animate ? ["hidden", "scaleOut"] : void 0, children: [
|
|
3119
|
+
/* @__PURE__ */ jsxRuntime.jsx(MotionFlex, { "data-ui": "Popover__wrapper", direction: "column", flex: 1, overflow, variants: POPOVER_MOTION_PROPS.children, transition: POPOVER_MOTION_PROPS.transition, children: /* @__PURE__ */ jsxRuntime.jsx(Flex, { direction: "column", flex: 1, padding, children }) }),
|
|
3120
|
+
arrow && /* @__PURE__ */ jsxRuntime.jsx(Arrow, { ref: arrowRef, style: arrowStyle, width: DEFAULT_POPOVER_ARROW_WIDTH, height: DEFAULT_POPOVER_ARROW_HEIGHT, radius: DEFAULT_POPOVER_ARROW_RADIUS })
|
|
3121
|
+
] });
|
|
3641
3122
|
});
|
|
3642
3123
|
PopoverCard.displayName = "ForwardRef(PopoverCard)";
|
|
3643
3124
|
const ViewportOverlay = () => {
|
|
3644
|
-
const
|
|
3125
|
+
const {
|
|
3645
3126
|
zIndex
|
|
3646
3127
|
} = useLayer();
|
|
3647
|
-
|
|
3648
|
-
return $[0] !== zIndex ? (t0 = /* @__PURE__ */ jsxRuntime.jsx("div", { style: {
|
|
3128
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { style: {
|
|
3649
3129
|
height: "100vh",
|
|
3650
3130
|
inset: 0,
|
|
3651
3131
|
position: "fixed",
|
|
3652
3132
|
width: "100vw",
|
|
3653
3133
|
zIndex
|
|
3654
|
-
} })
|
|
3134
|
+
} });
|
|
3655
3135
|
}, Popover = react.forwardRef(function(props, forwardedRef) {
|
|
3656
|
-
const
|
|
3136
|
+
const {
|
|
3657
3137
|
container,
|
|
3658
3138
|
layer
|
|
3659
|
-
} = useTheme_v2(), boundaryElementContext = useBoundaryElement()
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
} = 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 = t382, updateRef = t392, restProps = t402, $[0] = props, $[1] = _boundaryElement, $[2] = _fallbackPlacements, $[3] = _floatingBoundary, $[4] = _referenceBoundary, $[5] = _zOffsetProp, $[6] = childProp, $[7] = content, $[8] = disabled, $[9] = matchReferenceWidth, $[10] = modal, $[11] = open, $[12] = paddingProp, $[13] = portal, $[14] = referenceElement, $[15] = restProps, $[16] = scheme, $[17] = t0, $[18] = t1, $[19] = t10, $[20] = t11, $[21] = t2, $[22] = t3, $[23] = t4, $[24] = t5, $[25] = t6, $[26] = t7, $[27] = t8, $[28] = t9, $[29] = updateRef;
|
|
3695
|
-
} else
|
|
3696
|
-
_boundaryElement = $[1], _fallbackPlacements = $[2], _floatingBoundary = $[3], _referenceBoundary = $[4], _zOffsetProp = $[5], childProp = $[6], content = $[7], disabled = $[8], matchReferenceWidth = $[9], modal = $[10], open = $[11], paddingProp = $[12], portal = $[13], referenceElement = $[14], restProps = $[15], scheme = $[16], t0 = $[17], t1 = $[18], t10 = $[19], t11 = $[20], t2 = $[21], t3 = $[22], t4 = $[23], t5 = $[24], t6 = $[25], t7 = $[26], t8 = $[27], t9 = $[28], updateRef = $[29];
|
|
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;
|
|
3698
|
-
let t12;
|
|
3699
|
-
$[30] !== paddingProp ? (t12 = _getArrayProp(paddingProp), $[30] = paddingProp, $[31] = t12) : t12 = $[31];
|
|
3700
|
-
const padding = t12;
|
|
3701
|
-
let t13;
|
|
3702
|
-
$[32] !== radiusProp ? (t13 = _getArrayProp(radiusProp), $[32] = radiusProp, $[33] = t13) : t13 = $[33];
|
|
3703
|
-
const radius = t13;
|
|
3704
|
-
let t14;
|
|
3705
|
-
$[34] !== shadowProp ? (t14 = _getArrayProp(shadowProp), $[34] = shadowProp, $[35] = t14) : t14 = $[35];
|
|
3706
|
-
const shadow = t14, widthArrayProp = _getArrayProp(widthProp);
|
|
3707
|
-
let t15;
|
|
3708
|
-
$[36] !== zOffsetProp ? (t15 = _getArrayProp(zOffsetProp), $[36] = zOffsetProp, $[37] = t15) : t15 = $[37];
|
|
3709
|
-
const zOffset = t15, ref = react.useRef(null), arrowRef = react.useRef(null);
|
|
3710
|
-
let t16;
|
|
3711
|
-
$[38] === Symbol.for("react.memo_cache_sentinel") ? (t16 = () => ref.current, $[38] = t16) : t16 = $[38], react.useImperativeHandle(forwardedRef, t16);
|
|
3139
|
+
} = useTheme_v2(), boundaryElementContext = useBoundaryElement(), {
|
|
3140
|
+
__unstable_margins: margins = DEFAULT_POPOVER_MARGINS,
|
|
3141
|
+
animate: _animate = !1,
|
|
3142
|
+
arrow: arrowProp = !1,
|
|
3143
|
+
boundaryElement: _boundaryElement,
|
|
3144
|
+
children: childProp,
|
|
3145
|
+
constrainSize = !1,
|
|
3146
|
+
content,
|
|
3147
|
+
disabled,
|
|
3148
|
+
fallbackPlacements: _fallbackPlacements,
|
|
3149
|
+
matchReferenceWidth,
|
|
3150
|
+
floatingBoundary: _floatingBoundary,
|
|
3151
|
+
modal,
|
|
3152
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
3153
|
+
onActivate,
|
|
3154
|
+
open,
|
|
3155
|
+
overflow = "hidden",
|
|
3156
|
+
padding: paddingProp,
|
|
3157
|
+
placement: placementProp = "bottom",
|
|
3158
|
+
placementStrategy = "flip",
|
|
3159
|
+
portal,
|
|
3160
|
+
preventOverflow = !0,
|
|
3161
|
+
radius: radiusProp = 3,
|
|
3162
|
+
referenceBoundary: _referenceBoundary,
|
|
3163
|
+
referenceElement,
|
|
3164
|
+
scheme,
|
|
3165
|
+
shadow: shadowProp = 3,
|
|
3166
|
+
tone = "inherit",
|
|
3167
|
+
width: widthProp = "auto",
|
|
3168
|
+
zOffset: _zOffsetProp,
|
|
3169
|
+
updateRef,
|
|
3170
|
+
...restProps
|
|
3171
|
+
} = props, 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 = _getArrayProp(paddingProp), radius = _getArrayProp(radiusProp), shadow = _getArrayProp(shadowProp), widthArrayProp = _getArrayProp(widthProp), zOffset = _getArrayProp(zOffsetProp), ref = react.useRef(null), arrowRef = react.useRef(null), rootBoundary = "viewport";
|
|
3172
|
+
react.useImperativeHandle(forwardedRef, () => ref.current);
|
|
3712
3173
|
const mediaIndex = useMediaIndex(), boundaryWidth = constrainSize || preventOverflow ? boundarySize?.width : void 0, width = calcCurrentWidth({
|
|
3713
3174
|
container,
|
|
3714
3175
|
mediaIndex,
|
|
3715
3176
|
width: widthArrayProp
|
|
3716
3177
|
}), widthRef = react.useRef(width);
|
|
3717
|
-
|
|
3718
|
-
$[39] !== width ? (t17 = () => {
|
|
3178
|
+
react.useEffect(() => {
|
|
3719
3179
|
widthRef.current = width;
|
|
3720
|
-
},
|
|
3721
|
-
|
|
3722
|
-
$[42] !== boundaryWidth || $[43] !== width ? (t19 = calcMaxWidth({
|
|
3180
|
+
}, [width]);
|
|
3181
|
+
const maxWidth = calcMaxWidth({
|
|
3723
3182
|
boundaryWidth,
|
|
3724
3183
|
currentWidth: width
|
|
3725
|
-
}),
|
|
3726
|
-
|
|
3727
|
-
let t20, t21;
|
|
3728
|
-
$[45] !== maxWidth ? (t20 = () => {
|
|
3184
|
+
}), maxWidthRef = react.useRef(maxWidth);
|
|
3185
|
+
react.useEffect(() => {
|
|
3729
3186
|
maxWidthRef.current = maxWidth;
|
|
3730
|
-
},
|
|
3187
|
+
}, [maxWidth]);
|
|
3731
3188
|
const referenceWidthRef = react.useRef(void 0);
|
|
3732
|
-
|
|
3733
|
-
$[48] !== matchReferenceWidth || $[49] !== maxWidth || $[50] !== open || $[51] !== width ? (t22 = () => {
|
|
3189
|
+
react.useEffect(() => {
|
|
3734
3190
|
const floatingElement = ref.current;
|
|
3735
|
-
if (!open || !floatingElement)
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
const [referenceWidth_0, setReferenceWidth] = react.useState(void 0);
|
|
3741
|
-
let t24;
|
|
3742
|
-
$[54] !== animate || $[55] !== arrowProp || $[56] !== constrainSize || $[57] !== fallbackPlacements || $[58] !== floatingBoundary || $[59] !== margins || $[60] !== matchReferenceWidth || $[61] !== placementProp || $[62] !== placementStrategy || $[63] !== preventOverflow || $[64] !== referenceBoundary ? (t24 = {
|
|
3191
|
+
if (!open || !floatingElement) return;
|
|
3192
|
+
const referenceWidth2 = referenceWidthRef.current;
|
|
3193
|
+
matchReferenceWidth ? referenceWidth2 !== void 0 && (floatingElement.style.width = `${referenceWidth2}px`) : width !== void 0 && (floatingElement.style.width = `${width}px`), typeof maxWidth == "number" && (floatingElement.style.maxWidth = `${maxWidth}px`);
|
|
3194
|
+
}, [width, matchReferenceWidth, maxWidth, open]);
|
|
3195
|
+
const [referenceWidth, setReferenceWidth] = react.useState(void 0), middleware = useMiddleware$1({
|
|
3743
3196
|
animate,
|
|
3744
3197
|
arrowProp,
|
|
3745
3198
|
arrowRef,
|
|
@@ -3754,23 +3207,10 @@ const ViewportOverlay = () => {
|
|
|
3754
3207
|
preventOverflow,
|
|
3755
3208
|
referenceBoundary,
|
|
3756
3209
|
referenceWidthRef,
|
|
3757
|
-
rootBoundary
|
|
3210
|
+
rootBoundary,
|
|
3758
3211
|
setReferenceWidth,
|
|
3759
3212
|
widthRef
|
|
3760
|
-
},
|
|
3761
|
-
const middleware = useMiddleware$1(t24);
|
|
3762
|
-
let t25;
|
|
3763
|
-
$[66] !== referenceElement ? (t25 = referenceElement ? {
|
|
3764
|
-
reference: referenceElement
|
|
3765
|
-
} : void 0, $[66] = referenceElement, $[67] = t25) : t25 = $[67];
|
|
3766
|
-
let t26;
|
|
3767
|
-
$[68] !== middleware || $[69] !== placementProp || $[70] !== t25 ? (t26 = {
|
|
3768
|
-
middleware,
|
|
3769
|
-
placement: placementProp,
|
|
3770
|
-
whileElementsMounted: reactDom$1.autoUpdate,
|
|
3771
|
-
elements: t25
|
|
3772
|
-
}, $[68] = middleware, $[69] = placementProp, $[70] = t25, $[71] = t26) : t26 = $[71];
|
|
3773
|
-
const {
|
|
3213
|
+
}), {
|
|
3774
3214
|
x,
|
|
3775
3215
|
y,
|
|
3776
3216
|
middlewareData,
|
|
@@ -3778,148 +3218,87 @@ const ViewportOverlay = () => {
|
|
|
3778
3218
|
refs,
|
|
3779
3219
|
strategy,
|
|
3780
3220
|
update
|
|
3781
|
-
} = reactDom$1.useFloating(
|
|
3782
|
-
|
|
3783
|
-
|
|
3221
|
+
} = reactDom$1.useFloating({
|
|
3222
|
+
middleware,
|
|
3223
|
+
placement: placementProp,
|
|
3224
|
+
whileElementsMounted: reactDom$1.autoUpdate,
|
|
3225
|
+
elements: referenceElement ? {
|
|
3226
|
+
reference: referenceElement
|
|
3227
|
+
} : void 0
|
|
3228
|
+
}), referenceHidden = middlewareData.hide?.referenceHidden, arrowX = middlewareData.arrow?.x, arrowY = middlewareData.arrow?.y, originX = middlewareData["@sanity/ui/origin"]?.originX, originY = middlewareData["@sanity/ui/origin"]?.originY, setArrow = react.useCallback((arrowEl) => {
|
|
3784
3229
|
arrowRef.current = arrowEl;
|
|
3785
|
-
},
|
|
3786
|
-
const setArrow = t27;
|
|
3787
|
-
let t28;
|
|
3788
|
-
$[73] !== refs ? (t28 = (node) => {
|
|
3230
|
+
}, []), setFloating = react.useCallback((node) => {
|
|
3789
3231
|
ref.current = node, refs.setFloating(node);
|
|
3790
|
-
},
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
t31 = null;
|
|
3804
|
-
break bb0;
|
|
3805
|
-
}
|
|
3806
|
-
let t322;
|
|
3807
|
-
$[79] !== childProp || $[80] !== refs.setReference ? (t322 = react.cloneElement(childProp, {
|
|
3808
|
-
ref: refs.setReference
|
|
3809
|
-
}), $[79] = childProp, $[80] = refs.setReference, $[81] = t322) : t322 = $[81], t31 = t322;
|
|
3810
|
-
}
|
|
3811
|
-
const child = t31;
|
|
3812
|
-
let t32, t33;
|
|
3813
|
-
if ($[82] !== update ? (t32 = () => update, t33 = [update], $[82] = update, $[83] = t32, $[84] = t33) : (t32 = $[83], t33 = $[84]), react.useImperativeHandle(updateRef, t32, t33), disabled) {
|
|
3814
|
-
let t342;
|
|
3815
|
-
return $[85] !== childProp ? (t342 = childProp || /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[85] = childProp, $[86] = t342) : t342 = $[86], t342;
|
|
3816
|
-
}
|
|
3817
|
-
let t34;
|
|
3818
|
-
$[87] !== modal ? (t34 = modal && /* @__PURE__ */ jsxRuntime.jsx(ViewportOverlay, {}), $[87] = modal, $[88] = t34) : t34 = $[88];
|
|
3819
|
-
const t35 = matchReferenceWidth ? referenceWidth_0 : width;
|
|
3820
|
-
let t36;
|
|
3821
|
-
$[89] !== animate || $[90] !== arrowProp || $[91] !== arrowX || $[92] !== arrowY || $[93] !== content || $[94] !== margins || $[95] !== originX || $[96] !== originY || $[97] !== overflow || $[98] !== padding || $[99] !== placement || $[100] !== radius || $[101] !== referenceHidden || $[102] !== restProps || $[103] !== scheme || $[104] !== setFloating || $[105] !== shadow || $[106] !== strategy || $[107] !== t35 || $[108] !== tone || $[109] !== x || $[110] !== y ? (t36 = /* @__PURE__ */ jsxRuntime.jsx(PopoverCard, { ...restProps, __unstable_margins: margins, animate, arrow: arrowProp, arrowRef: setArrow, arrowX, arrowY, hidden: referenceHidden, overflow, padding, placement, radius, ref: setFloating, scheme, shadow, originX, originY, strategy, tone, width: t35, x, y, children: content }), $[89] = animate, $[90] = arrowProp, $[91] = arrowX, $[92] = arrowY, $[93] = content, $[94] = margins, $[95] = originX, $[96] = originY, $[97] = overflow, $[98] = padding, $[99] = placement, $[100] = radius, $[101] = referenceHidden, $[102] = restProps, $[103] = scheme, $[104] = setFloating, $[105] = shadow, $[106] = strategy, $[107] = t35, $[108] = tone, $[109] = x, $[110] = y, $[111] = t36) : t36 = $[111];
|
|
3822
|
-
let t37;
|
|
3823
|
-
$[112] !== t34 || $[113] !== t36 || $[114] !== zOffset ? (t37 = /* @__PURE__ */ jsxRuntime.jsxs(LayerProvider, { zOffset, children: [
|
|
3824
|
-
t34,
|
|
3825
|
-
t36
|
|
3826
|
-
] }), $[112] = t34, $[113] = t36, $[114] = zOffset, $[115] = t37) : t37 = $[115];
|
|
3827
|
-
const popover = t37;
|
|
3828
|
-
let t38;
|
|
3829
|
-
$[116] !== open || $[117] !== popover || $[118] !== portal ? (t38 = open && (portal ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portal == "string" ? portal : void 0, children: popover }) : popover), $[116] = open, $[117] = popover, $[118] = portal, $[119] = t38) : t38 = $[119];
|
|
3830
|
-
const children = t38;
|
|
3831
|
-
let t39;
|
|
3832
|
-
$[120] !== animate || $[121] !== children ? (t39 = animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children, $[120] = animate, $[121] = children, $[122] = t39) : t39 = $[122];
|
|
3833
|
-
let t40;
|
|
3834
|
-
return $[123] !== child || $[124] !== t39 ? (t40 = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
3835
|
-
t39,
|
|
3232
|
+
}, [refs]);
|
|
3233
|
+
react.useImperativeHandle(childProp ? getElementRef(childProp) : null, () => refs.reference.current);
|
|
3234
|
+
const child = react.useMemo(() => referenceElement ? childProp : childProp ? react.cloneElement(childProp, {
|
|
3235
|
+
ref: refs.setReference
|
|
3236
|
+
}) : null, [childProp, referenceElement, refs.setReference]);
|
|
3237
|
+
if (react.useImperativeHandle(updateRef, () => update, [update]), disabled)
|
|
3238
|
+
return childProp || /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {});
|
|
3239
|
+
const popover = /* @__PURE__ */ jsxRuntime.jsxs(LayerProvider, { zOffset, children: [
|
|
3240
|
+
modal && /* @__PURE__ */ jsxRuntime.jsx(ViewportOverlay, {}),
|
|
3241
|
+
/* @__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: matchReferenceWidth ? referenceWidth : width, x, y, children: content })
|
|
3242
|
+
] }), children = open && (portal ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portal == "string" ? portal : void 0, children: popover }) : popover);
|
|
3243
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
3244
|
+
animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children,
|
|
3836
3245
|
child
|
|
3837
|
-
] })
|
|
3246
|
+
] });
|
|
3838
3247
|
});
|
|
3839
3248
|
Popover.displayName = "ForwardRef(Popover)";
|
|
3840
|
-
function useMiddleware$1(
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
const t12 = floatingBoundary || void 0;
|
|
3870
|
-
let t22;
|
|
3871
|
-
$[21] !== fallbackPlacements || $[22] !== rootBoundary || $[23] !== t12 ? (t22 = reactDom$1.flip({
|
|
3872
|
-
boundary: t12,
|
|
3873
|
-
fallbackPlacements,
|
|
3874
|
-
padding: DEFAULT_POPOVER_PADDING,
|
|
3875
|
-
rootBoundary
|
|
3876
|
-
}), $[21] = fallbackPlacements, $[22] = rootBoundary, $[23] = t12, $[24] = t22) : t22 = $[24], ret.push(t22);
|
|
3877
|
-
}
|
|
3878
|
-
let t1;
|
|
3879
|
-
if ($[25] === Symbol.for("react.memo_cache_sentinel") ? (t1 = reactDom$1.offset({
|
|
3249
|
+
function useMiddleware$1({
|
|
3250
|
+
animate,
|
|
3251
|
+
arrowProp,
|
|
3252
|
+
arrowRef,
|
|
3253
|
+
constrainSize,
|
|
3254
|
+
fallbackPlacements,
|
|
3255
|
+
floatingBoundary,
|
|
3256
|
+
margins,
|
|
3257
|
+
matchReferenceWidth,
|
|
3258
|
+
maxWidthRef,
|
|
3259
|
+
placementProp,
|
|
3260
|
+
placementStrategy,
|
|
3261
|
+
preventOverflow,
|
|
3262
|
+
referenceBoundary,
|
|
3263
|
+
referenceWidthRef,
|
|
3264
|
+
rootBoundary,
|
|
3265
|
+
setReferenceWidth,
|
|
3266
|
+
widthRef
|
|
3267
|
+
}) {
|
|
3268
|
+
return react.useMemo(() => {
|
|
3269
|
+
const ret = [];
|
|
3270
|
+
return (constrainSize || preventOverflow) && (placementStrategy === "autoPlacement" ? ret.push(reactDom$1.autoPlacement({
|
|
3271
|
+
allowedPlacements: [placementProp].concat(fallbackPlacements)
|
|
3272
|
+
})) : ret.push(reactDom$1.flip({
|
|
3273
|
+
boundary: floatingBoundary || void 0,
|
|
3274
|
+
fallbackPlacements,
|
|
3275
|
+
padding: DEFAULT_POPOVER_PADDING,
|
|
3276
|
+
rootBoundary
|
|
3277
|
+
}))), ret.push(reactDom$1.offset({
|
|
3880
3278
|
mainAxis: DEFAULT_POPOVER_DISTANCE
|
|
3881
|
-
}),
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
}
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
boundary: t22,
|
|
3901
|
-
rootBoundary,
|
|
3902
|
-
padding: DEFAULT_POPOVER_PADDING
|
|
3903
|
-
}), $[35] = rootBoundary, $[36] = t22, $[37] = t32) : t32 = $[37], ret.push(t32);
|
|
3904
|
-
}
|
|
3905
|
-
if (arrowProp) {
|
|
3906
|
-
let t22;
|
|
3907
|
-
$[38] !== arrowRef ? (t22 = reactDom$1.arrow({
|
|
3908
|
-
element: arrowRef,
|
|
3909
|
-
padding: DEFAULT_POPOVER_PADDING
|
|
3910
|
-
}), $[38] = arrowRef, $[39] = t22) : t22 = $[39], ret.push(t22);
|
|
3911
|
-
}
|
|
3912
|
-
animate && ret.push(origin);
|
|
3913
|
-
const t2 = referenceBoundary || void 0;
|
|
3914
|
-
let t3;
|
|
3915
|
-
$[40] !== t2 ? (t3 = reactDom$1.hide({
|
|
3916
|
-
boundary: t2,
|
|
3279
|
+
})), (constrainSize || matchReferenceWidth) && ret.push(size({
|
|
3280
|
+
boundaryElement: floatingBoundary || void 0,
|
|
3281
|
+
constrainSize,
|
|
3282
|
+
margins,
|
|
3283
|
+
matchReferenceWidth,
|
|
3284
|
+
maxWidthRef,
|
|
3285
|
+
padding: DEFAULT_POPOVER_PADDING,
|
|
3286
|
+
referenceWidthRef,
|
|
3287
|
+
setReferenceWidth,
|
|
3288
|
+
widthRef
|
|
3289
|
+
})), preventOverflow && ret.push(reactDom$1.shift({
|
|
3290
|
+
boundary: floatingBoundary || void 0,
|
|
3291
|
+
rootBoundary,
|
|
3292
|
+
padding: DEFAULT_POPOVER_PADDING
|
|
3293
|
+
})), arrowProp && ret.push(reactDom$1.arrow({
|
|
3294
|
+
element: arrowRef,
|
|
3295
|
+
padding: DEFAULT_POPOVER_PADDING
|
|
3296
|
+
})), animate && ret.push(origin), ret.push(reactDom$1.hide({
|
|
3297
|
+
boundary: referenceBoundary || void 0,
|
|
3917
3298
|
padding: DEFAULT_POPOVER_PADDING,
|
|
3918
3299
|
strategy: "referenceHidden"
|
|
3919
|
-
})
|
|
3920
|
-
}
|
|
3921
|
-
ret = $[17];
|
|
3922
|
-
return ret;
|
|
3300
|
+
})), ret;
|
|
3301
|
+
}, [animate, arrowProp, arrowRef, constrainSize, fallbackPlacements, floatingBoundary, margins, matchReferenceWidth, maxWidthRef, placementProp, placementStrategy, preventOverflow, referenceBoundary, referenceWidthRef, rootBoundary, setReferenceWidth, widthRef]);
|
|
3923
3302
|
}
|
|
3924
3303
|
function radioBaseStyle() {
|
|
3925
3304
|
return styledComponents.css`
|
|
@@ -4042,29 +3421,18 @@ const StyledRadio = /* @__PURE__ */ styledComponents.styled.div.withConfig({
|
|
|
4042
3421
|
displayName: "Input",
|
|
4043
3422
|
componentId: "sc-ccrwkf-1"
|
|
4044
3423
|
})(inputElementStyle), Radio = react.forwardRef(function(props, forwardedRef) {
|
|
4045
|
-
const
|
|
4046
|
-
let className, customValidity, disabled, readOnly, restProps, style;
|
|
4047
|
-
$[0] !== props ? ({
|
|
3424
|
+
const {
|
|
4048
3425
|
className,
|
|
4049
3426
|
disabled,
|
|
4050
3427
|
style,
|
|
4051
3428
|
customValidity,
|
|
4052
3429
|
readOnly,
|
|
4053
3430
|
...restProps
|
|
4054
|
-
} = props,
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
let t4;
|
|
4060
|
-
$[8] !== readOnly || $[9] !== restProps || $[10] !== t1 || $[11] !== t2 || $[12] !== t3 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(Input$4, { "data-read-only": t1, "data-error": t2, ...restProps, disabled: t3, readOnly, ref, type: "radio" }), $[8] = readOnly, $[9] = restProps, $[10] = t1, $[11] = t2, $[12] = t3, $[13] = t4) : t4 = $[13];
|
|
4061
|
-
let t5;
|
|
4062
|
-
$[14] === Symbol.for("react.memo_cache_sentinel") ? (t5 = /* @__PURE__ */ jsxRuntime.jsx("span", {}), $[14] = t5) : t5 = $[14];
|
|
4063
|
-
let t6;
|
|
4064
|
-
return $[15] !== className || $[16] !== style || $[17] !== t4 ? (t6 = /* @__PURE__ */ jsxRuntime.jsxs(StyledRadio, { className, "data-ui": "Radio", style, children: [
|
|
4065
|
-
t4,
|
|
4066
|
-
t5
|
|
4067
|
-
] }), $[15] = className, $[16] = style, $[17] = t4, $[18] = t6) : t6 = $[18], t6;
|
|
3431
|
+
} = props, ref = react.useRef(null);
|
|
3432
|
+
return react.useImperativeHandle(forwardedRef, () => ref.current), useCustomValidity(ref, customValidity), /* @__PURE__ */ jsxRuntime.jsxs(StyledRadio, { className, "data-ui": "Radio", style, children: [
|
|
3433
|
+
/* @__PURE__ */ jsxRuntime.jsx(Input$4, { "data-read-only": !disabled && readOnly ? "" : void 0, "data-error": customValidity ? "" : void 0, ...restProps, disabled: disabled || readOnly, readOnly, ref, type: "radio" }),
|
|
3434
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", {})
|
|
3435
|
+
] });
|
|
4068
3436
|
});
|
|
4069
3437
|
Radio.displayName = "ForwardRef(Radio)";
|
|
4070
3438
|
function rootStyle() {
|
|
@@ -4219,45 +3587,21 @@ const selectStyle = {
|
|
|
4219
3587
|
displayName: "IconBox",
|
|
4220
3588
|
componentId: "sc-5mxno7-2"
|
|
4221
3589
|
})(selectStyle.iconBox), Select = react.forwardRef(function(props, forwardedRef) {
|
|
4222
|
-
const
|
|
4223
|
-
let children, customValidity, disabled, readOnly, restProps, t0, t1, t2, t3;
|
|
4224
|
-
$[0] !== props ? ({
|
|
3590
|
+
const {
|
|
4225
3591
|
children,
|
|
4226
3592
|
customValidity,
|
|
4227
3593
|
disabled,
|
|
4228
|
-
fontSize:
|
|
4229
|
-
padding
|
|
4230
|
-
radius
|
|
3594
|
+
fontSize: fontSize2 = 2,
|
|
3595
|
+
padding = 3,
|
|
3596
|
+
radius = 2,
|
|
4231
3597
|
readOnly,
|
|
4232
|
-
space
|
|
3598
|
+
space = 3,
|
|
4233
3599
|
...restProps
|
|
4234
|
-
} = props,
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
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;
|
|
4248
|
-
let t11;
|
|
4249
|
-
$[19] !== children || $[20] !== restProps || $[21] !== t10 || $[22] !== t5 || $[23] !== t6 || $[24] !== t7 || $[25] !== t8 || $[26] !== t9 ? (t11 = /* @__PURE__ */ jsxRuntime.jsx(Input$3, { "data-read-only": t5, "data-ui": "Select", ...restProps, $fontSize: t6, $padding: t7, $radius: t8, $space: t9, disabled: t10, ref, children }), $[19] = children, $[20] = restProps, $[21] = t10, $[22] = t5, $[23] = t6, $[24] = t7, $[25] = t8, $[26] = t9, $[27] = t11) : t11 = $[27];
|
|
4250
|
-
let t12;
|
|
4251
|
-
$[28] === Symbol.for("react.memo_cache_sentinel") ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronDownIcon, {}), $[28] = t12) : t12 = $[28];
|
|
4252
|
-
let t13;
|
|
4253
|
-
$[29] !== fontSize2 ? (t13 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: t12 }), $[29] = fontSize2, $[30] = t13) : t13 = $[30];
|
|
4254
|
-
let t14;
|
|
4255
|
-
$[31] !== padding || $[32] !== t13 ? (t14 = /* @__PURE__ */ jsxRuntime.jsx(IconBox, { padding, children: t13 }), $[31] = padding, $[32] = t13, $[33] = t14) : t14 = $[33];
|
|
4256
|
-
let t15;
|
|
4257
|
-
return $[34] !== t11 || $[35] !== t14 ? (t15 = /* @__PURE__ */ jsxRuntime.jsxs(StyledSelect, { "data-ui": "Select", children: [
|
|
4258
|
-
t11,
|
|
4259
|
-
t14
|
|
4260
|
-
] }), $[34] = t11, $[35] = t14, $[36] = t15) : t15 = $[36], t15;
|
|
3600
|
+
} = props, ref = react.useRef(null);
|
|
3601
|
+
return react.useImperativeHandle(forwardedRef, () => ref.current), useCustomValidity(ref, customValidity), /* @__PURE__ */ jsxRuntime.jsxs(StyledSelect, { "data-ui": "Select", children: [
|
|
3602
|
+
/* @__PURE__ */ jsxRuntime.jsx(Input$3, { "data-read-only": !disabled && readOnly ? "" : void 0, "data-ui": "Select", ...restProps, $fontSize: _getArrayProp(fontSize2), $padding: _getArrayProp(padding), $radius: _getArrayProp(radius), $space: _getArrayProp(space), disabled: disabled || readOnly, ref, children }),
|
|
3603
|
+
/* @__PURE__ */ jsxRuntime.jsx(IconBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronDownIcon, {}) }) })
|
|
3604
|
+
] });
|
|
4261
3605
|
});
|
|
4262
3606
|
Select.displayName = "ForwardRef(Select)";
|
|
4263
3607
|
const BASE_STYLE = {
|
|
@@ -4286,18 +3630,12 @@ const StyledStack = /* @__PURE__ */ styledComponents.styled(Box).withConfig({
|
|
|
4286
3630
|
displayName: "StyledStack",
|
|
4287
3631
|
componentId: "sc-8dpfq2-0"
|
|
4288
3632
|
})(stackBaseStyle, responsiveStackSpaceStyle), Stack = react.forwardRef(function(props, ref) {
|
|
4289
|
-
const
|
|
4290
|
-
let as, restProps, space;
|
|
4291
|
-
$[0] !== props ? ({
|
|
3633
|
+
const {
|
|
4292
3634
|
as,
|
|
4293
3635
|
space,
|
|
4294
3636
|
...restProps
|
|
4295
|
-
} = props
|
|
4296
|
-
|
|
4297
|
-
let t1;
|
|
4298
|
-
$[4] !== space ? (t1 = _getArrayProp(space), $[4] = space, $[5] = t1) : t1 = $[5];
|
|
4299
|
-
let t2;
|
|
4300
|
-
return $[6] !== as || $[7] !== ref || $[8] !== restProps || $[9] !== t0 || $[10] !== t1 ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(StyledStack, { "data-as": t0, "data-ui": "Stack", ...restProps, $space: t1, forwardedAs: as, ref }), $[6] = as, $[7] = ref, $[8] = restProps, $[9] = t0, $[10] = t1, $[11] = t2) : t2 = $[11], t2;
|
|
3637
|
+
} = props;
|
|
3638
|
+
return /* @__PURE__ */ jsxRuntime.jsx(StyledStack, { "data-as": typeof as == "string" ? as : void 0, "data-ui": "Stack", ...restProps, $space: _getArrayProp(space), forwardedAs: as, ref });
|
|
4301
3639
|
});
|
|
4302
3640
|
Stack.displayName = "ForwardRef(Stack)";
|
|
4303
3641
|
function switchBaseStyles() {
|
|
@@ -4469,9 +3807,7 @@ const StyledSwitch = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
|
4469
3807
|
displayName: "Thumb",
|
|
4470
3808
|
componentId: "sc-dw1foe-4"
|
|
4471
3809
|
})(switchThumbStyles), Switch = react.forwardRef(function(props, forwardedRef) {
|
|
4472
|
-
const
|
|
4473
|
-
let checked, className, disabled, indeterminate, readOnly, restProps, style;
|
|
4474
|
-
$[0] !== props ? ({
|
|
3810
|
+
const {
|
|
4475
3811
|
checked,
|
|
4476
3812
|
className,
|
|
4477
3813
|
disabled,
|
|
@@ -4479,29 +3815,16 @@ const StyledSwitch = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
|
4479
3815
|
readOnly,
|
|
4480
3816
|
style,
|
|
4481
3817
|
...restProps
|
|
4482
|
-
} = props,
|
|
4483
|
-
|
|
4484
|
-
let t0;
|
|
4485
|
-
$[8] === Symbol.for("react.memo_cache_sentinel") ? (t0 = () => ref.current, $[8] = t0) : t0 = $[8], react.useImperativeHandle(forwardedRef, t0);
|
|
4486
|
-
let t1, t2;
|
|
4487
|
-
$[9] !== indeterminate ? (t1 = () => {
|
|
3818
|
+
} = props, ref = react.useRef(null);
|
|
3819
|
+
return react.useImperativeHandle(forwardedRef, () => ref.current), react.useEffect(() => {
|
|
4488
3820
|
ref.current && (ref.current.indeterminate = indeterminate || !1);
|
|
4489
|
-
},
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
$[18] !== checked || $[19] !== indeterminate ? (t8 = /* @__PURE__ */ jsxRuntime.jsxs(Representation, { "aria-hidden": !0, "data-name": "representation", children: [
|
|
4497
|
-
t7,
|
|
4498
|
-
/* @__PURE__ */ jsxRuntime.jsx(Thumb, { $checked: checked, $indeterminate: indeterminate })
|
|
4499
|
-
] }), $[18] = checked, $[19] = indeterminate, $[20] = t8) : t8 = $[20];
|
|
4500
|
-
let t9;
|
|
4501
|
-
return $[21] !== className || $[22] !== style || $[23] !== t6 || $[24] !== t8 ? (t9 = /* @__PURE__ */ jsxRuntime.jsxs(StyledSwitch, { className, "data-ui": "Switch", style, children: [
|
|
4502
|
-
t6,
|
|
4503
|
-
t8
|
|
4504
|
-
] }), $[21] = className, $[22] = style, $[23] = t6, $[24] = t8, $[25] = t9) : t9 = $[25], t9;
|
|
3821
|
+
}, [indeterminate]), /* @__PURE__ */ jsxRuntime.jsxs(StyledSwitch, { className, "data-ui": "Switch", style, children: [
|
|
3822
|
+
/* @__PURE__ */ jsxRuntime.jsx(Input$2, { "data-read-only": !disabled && readOnly ? "" : void 0, ...restProps, checked: indeterminate !== !0 && checked, disabled: disabled || readOnly, type: "checkbox", ref }),
|
|
3823
|
+
/* @__PURE__ */ jsxRuntime.jsxs(Representation, { "aria-hidden": !0, "data-name": "representation", children: [
|
|
3824
|
+
/* @__PURE__ */ jsxRuntime.jsx(Track, {}),
|
|
3825
|
+
/* @__PURE__ */ jsxRuntime.jsx(Thumb, { $checked: checked, $indeterminate: indeterminate })
|
|
3826
|
+
] })
|
|
3827
|
+
] });
|
|
4505
3828
|
});
|
|
4506
3829
|
Switch.displayName = "ForwardRef(Switch)";
|
|
4507
3830
|
const StyledTextArea = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
@@ -4517,42 +3840,21 @@ const StyledTextArea = /* @__PURE__ */ styledComponents.styled.span.withConfig({
|
|
|
4517
3840
|
displayName: "Presentation",
|
|
4518
3841
|
componentId: "sc-1d6h1o8-3"
|
|
4519
3842
|
})(responsiveRadiusStyle, textInputRepresentationStyle), TextArea = react.forwardRef(function(props, forwardedRef) {
|
|
4520
|
-
const
|
|
4521
|
-
|
|
4522
|
-
$[0] !== props ? ({
|
|
4523
|
-
border: t0,
|
|
3843
|
+
const {
|
|
3844
|
+
border: border2 = !0,
|
|
4524
3845
|
customValidity,
|
|
4525
|
-
disabled
|
|
4526
|
-
fontSize:
|
|
4527
|
-
padding
|
|
4528
|
-
radius
|
|
3846
|
+
disabled = !1,
|
|
3847
|
+
fontSize: fontSize2 = 2,
|
|
3848
|
+
padding = 3,
|
|
3849
|
+
radius = 2,
|
|
4529
3850
|
weight,
|
|
4530
3851
|
__unstable_disableFocusRing,
|
|
4531
3852
|
...restProps
|
|
4532
|
-
} = props,
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
|
|
4536
|
-
|
|
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];
|
|
4544
|
-
let t12;
|
|
4545
|
-
$[16] !== disabled || $[17] !== restProps || $[18] !== rootTheme.scheme || $[19] !== rootTheme.tone || $[20] !== t8 || $[21] !== t9 || $[22] !== weight ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(Input$1, { "data-as": "textarea", "data-scheme": t6, "data-tone": t7, ...restProps, $fontSize: t8, $padding: t9, $scheme: t10, $space: t11, $tone: rootTheme.tone, $weight: weight, disabled, ref }), $[16] = disabled, $[17] = restProps, $[18] = rootTheme.scheme, $[19] = rootTheme.tone, $[20] = t8, $[21] = t9, $[22] = weight, $[23] = t12) : t12 = $[23];
|
|
4546
|
-
let t13;
|
|
4547
|
-
$[24] !== radius ? (t13 = _getArrayProp(radius), $[24] = radius, $[25] = t13) : t13 = $[25];
|
|
4548
|
-
const t14 = border2 ? "" : void 0;
|
|
4549
|
-
let t15;
|
|
4550
|
-
$[26] !== __unstable_disableFocusRing || $[27] !== rootTheme.scheme || $[28] !== rootTheme.tone || $[29] !== t13 || $[30] !== t14 ? (t15 = /* @__PURE__ */ jsxRuntime.jsx(Presentation$1, { $radius: t13, $unstableDisableFocusRing: __unstable_disableFocusRing, $scheme: rootTheme.scheme, $tone: rootTheme.tone, "data-border": t14, "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone }), $[26] = __unstable_disableFocusRing, $[27] = rootTheme.scheme, $[28] = rootTheme.tone, $[29] = t13, $[30] = t14, $[31] = t15) : t15 = $[31];
|
|
4551
|
-
let t16;
|
|
4552
|
-
return $[32] !== t12 || $[33] !== t15 ? (t16 = /* @__PURE__ */ jsxRuntime.jsx(StyledTextArea, { "data-ui": "TextArea", children: /* @__PURE__ */ jsxRuntime.jsxs(InputRoot$1, { children: [
|
|
4553
|
-
t12,
|
|
4554
|
-
t15
|
|
4555
|
-
] }) }), $[32] = t12, $[33] = t15, $[34] = t16) : t16 = $[34], t16;
|
|
3853
|
+
} = props, ref = react.useRef(null), rootTheme = useRootTheme();
|
|
3854
|
+
return react.useImperativeHandle(forwardedRef, () => ref.current), useCustomValidity(ref, customValidity), /* @__PURE__ */ jsxRuntime.jsx(StyledTextArea, { "data-ui": "TextArea", children: /* @__PURE__ */ jsxRuntime.jsxs(InputRoot$1, { children: [
|
|
3855
|
+
/* @__PURE__ */ jsxRuntime.jsx(Input$1, { "data-as": "textarea", "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, ...restProps, $fontSize: _getArrayProp(fontSize2), $padding: _getArrayProp(padding), $scheme: rootTheme.scheme, $space: _getArrayProp(0), $tone: rootTheme.tone, $weight: weight, disabled, ref }),
|
|
3856
|
+
/* @__PURE__ */ jsxRuntime.jsx(Presentation$1, { $radius: _getArrayProp(radius), $unstableDisableFocusRing: __unstable_disableFocusRing, $scheme: rootTheme.scheme, $tone: rootTheme.tone, "data-border": border2 ? "" : void 0, "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone })
|
|
3857
|
+
] }) });
|
|
4556
3858
|
});
|
|
4557
3859
|
TextArea.displayName = "ForwardRef(TextArea)";
|
|
4558
3860
|
const CLEAR_BUTTON_BOX_STYLE = {
|
|
@@ -4598,119 +3900,61 @@ const CLEAR_BUTTON_BOX_STYLE = {
|
|
|
4598
3900
|
display: "block"
|
|
4599
3901
|
}
|
|
4600
3902
|
}), TextInput = react.forwardRef(function(props, forwardedRef) {
|
|
4601
|
-
const
|
|
4602
|
-
let IconComponent, IconRightComponent, __unstable_disableFocusRing, clearButton, customValidity, onClear, prefix, readOnly, restProps, suffix, t0, t1, t2, t3, t4, t5, t6, weight;
|
|
4603
|
-
$[0] !== props ? ({
|
|
3903
|
+
const {
|
|
4604
3904
|
__unstable_disableFocusRing,
|
|
4605
|
-
border:
|
|
3905
|
+
border: border2 = !0,
|
|
4606
3906
|
clearButton,
|
|
4607
|
-
disabled
|
|
4608
|
-
fontSize:
|
|
3907
|
+
disabled = !1,
|
|
3908
|
+
fontSize: fontSizeProp = 2,
|
|
4609
3909
|
icon: IconComponent,
|
|
4610
3910
|
iconRight: IconRightComponent,
|
|
4611
3911
|
onClear,
|
|
4612
|
-
padding:
|
|
3912
|
+
padding: paddingProp = 3,
|
|
4613
3913
|
prefix,
|
|
4614
|
-
radius:
|
|
3914
|
+
radius: radiusProp = 2,
|
|
4615
3915
|
readOnly,
|
|
4616
|
-
space:
|
|
3916
|
+
space: spaceProp = 3,
|
|
4617
3917
|
suffix,
|
|
4618
3918
|
customValidity,
|
|
4619
|
-
type
|
|
3919
|
+
type = "text",
|
|
4620
3920
|
weight,
|
|
4621
3921
|
...restProps
|
|
4622
|
-
} = props,
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
$
|
|
4638
|
-
|
|
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: [
|
|
4649
|
-
react.isValidElement(IconComponent) && IconComponent,
|
|
4650
|
-
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
4651
|
-
] }) }), $[33] = IconComponent, $[34] = fontSize2, $[35] = padding, $[36] = t15) : t15 = $[36];
|
|
4652
|
-
let t16;
|
|
4653
|
-
$[37] !== $hasClearButton || $[38] !== IconRightComponent || $[39] !== fontSize2 || $[40] !== padding ? (t16 = !$hasClearButton && IconRightComponent && /* @__PURE__ */ jsxRuntime.jsx(RightBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4654
|
-
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
4655
|
-
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
4656
|
-
] }) }), $[37] = $hasClearButton, $[38] = IconRightComponent, $[39] = fontSize2, $[40] = padding, $[41] = t16) : t16 = $[41];
|
|
4657
|
-
let t17;
|
|
4658
|
-
$[42] !== $hasPrefix || $[43] !== $hasSuffix || $[44] !== __unstable_disableFocusRing || $[45] !== radius || $[46] !== rootTheme.scheme || $[47] !== rootTheme.tone || $[48] !== t14 || $[49] !== t15 || $[50] !== t16 ? (t17 = /* @__PURE__ */ jsxRuntime.jsxs(Presentation, { $hasPrefix, $unstableDisableFocusRing: __unstable_disableFocusRing, $hasSuffix, $radius: radius, $scheme: rootTheme.scheme, $tone: rootTheme.tone, "data-border": t14, "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, children: [
|
|
4659
|
-
t15,
|
|
4660
|
-
t16
|
|
4661
|
-
] }), $[42] = $hasPrefix, $[43] = $hasSuffix, $[44] = __unstable_disableFocusRing, $[45] = radius, $[46] = rootTheme.scheme, $[47] = rootTheme.tone, $[48] = t14, $[49] = t15, $[50] = t16, $[51] = t17) : t17 = $[51];
|
|
4662
|
-
const presentationNode = t17;
|
|
4663
|
-
let t18;
|
|
4664
|
-
$[52] !== padding ? (t18 = padding.map(_temp2), $[52] = padding, $[53] = t18) : t18 = $[53];
|
|
4665
|
-
const clearButtonBoxPadding = t18;
|
|
4666
|
-
let t19;
|
|
4667
|
-
$[54] !== padding ? (t19 = padding.map(_temp3), $[54] = padding, $[55] = t19) : t19 = $[55];
|
|
4668
|
-
const clearButtonPadding = t19, clearButtonProps = typeof clearButton == "object" ? clearButton : EMPTY_RECORD;
|
|
4669
|
-
let t20;
|
|
4670
|
-
$[56] !== clearButton || $[57] !== clearButtonBoxPadding || $[58] !== clearButtonPadding || $[59] !== clearButtonProps || $[60] !== customValidity || $[61] !== disabled || $[62] !== fontSize2 || $[63] !== handleClearClick || $[64] !== radius || $[65] !== readOnly ? (t20 = !disabled && !readOnly && clearButton && /* @__PURE__ */ jsxRuntime.jsx(RightCard, { forwardedAs: "span", padding: clearButtonBoxPadding, style: CLEAR_BUTTON_BOX_STYLE, tone: customValidity ? "critical" : "inherit", children: /* @__PURE__ */ jsxRuntime.jsx(TextInputClearButton, { "aria-label": "Clear", "data-qa": "clear-button", fontSize: fontSize2, icon: icons.CloseIcon, mode: "bleed", padding: clearButtonPadding, radius, ...clearButtonProps, onClick: handleClearClick, onMouseDown: handleClearMouseDown }) }), $[56] = clearButton, $[57] = clearButtonBoxPadding, $[58] = clearButtonPadding, $[59] = clearButtonProps, $[60] = customValidity, $[61] = disabled, $[62] = fontSize2, $[63] = handleClearClick, $[64] = radius, $[65] = readOnly, $[66] = t20) : t20 = $[66];
|
|
4671
|
-
const clearButtonNode = t20;
|
|
4672
|
-
let t21;
|
|
4673
|
-
$[67] !== radius || $[68] !== suffix ? (t21 = suffix && /* @__PURE__ */ jsxRuntime.jsx(Suffix, { borderTop: !0, borderRight: !0, borderBottom: !0, radius, sizing: "border", tone: "inherit", children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: suffix }) }), $[67] = radius, $[68] = suffix, $[69] = t21) : t21 = $[69];
|
|
4674
|
-
const suffixNode = t21, t22 = $hasIconRight || $hasClearButton;
|
|
4675
|
-
let t23;
|
|
4676
|
-
$[70] !== $hasIcon || $[71] !== disabled || $[72] !== fontSize2 || $[73] !== padding || $[74] !== readOnly || $[75] !== restProps || $[76] !== rootTheme.scheme || $[77] !== rootTheme.tone || $[78] !== space || $[79] !== t22 || $[80] !== type || $[81] !== weight ? (t23 = /* @__PURE__ */ jsxRuntime.jsx(Input, { "data-as": "input", "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, ...restProps, $fontSize: fontSize2, $iconLeft: $hasIcon, $iconRight: t22, $padding: padding, $scheme: rootTheme.scheme, $space: space, $tone: rootTheme.tone, $weight: weight, disabled, readOnly, ref, type }), $[70] = $hasIcon, $[71] = disabled, $[72] = fontSize2, $[73] = padding, $[74] = readOnly, $[75] = restProps, $[76] = rootTheme.scheme, $[77] = rootTheme.tone, $[78] = space, $[79] = t22, $[80] = type, $[81] = weight, $[82] = t23) : t23 = $[82];
|
|
4677
|
-
let t24;
|
|
4678
|
-
$[83] !== clearButtonNode || $[84] !== presentationNode || $[85] !== t23 ? (t24 = /* @__PURE__ */ jsxRuntime.jsxs(InputRoot, { children: [
|
|
4679
|
-
t23,
|
|
4680
|
-
presentationNode,
|
|
4681
|
-
clearButtonNode
|
|
4682
|
-
] }), $[83] = clearButtonNode, $[84] = presentationNode, $[85] = t23, $[86] = t24) : t24 = $[86];
|
|
4683
|
-
let t25;
|
|
4684
|
-
return $[87] !== prefixNode || $[88] !== rootTheme.tone || $[89] !== suffixNode || $[90] !== t24 ? (t25 = /* @__PURE__ */ jsxRuntime.jsxs(StyledTextInput, { "data-ui": "TextInput", tone: rootTheme.tone, children: [
|
|
3922
|
+
} = props, ref = react.useRef(null), rootTheme = useRootTheme(), fontSize2 = _getArrayProp(fontSizeProp), padding = _getArrayProp(paddingProp), radius = _getArrayProp(radiusProp), space = _getArrayProp(spaceProp), $hasClearButton = !!clearButton, $hasIcon = !!IconComponent, $hasIconRight = !!IconRightComponent, $hasSuffix = !!suffix, $hasPrefix = !!prefix;
|
|
3923
|
+
react.useImperativeHandle(forwardedRef, () => ref.current), useCustomValidity(ref, customValidity);
|
|
3924
|
+
const handleClearMouseDown = react.useCallback((event) => {
|
|
3925
|
+
event.preventDefault(), event.stopPropagation();
|
|
3926
|
+
}, []), handleClearClick = react.useCallback((event) => {
|
|
3927
|
+
event.preventDefault(), event.stopPropagation(), onClear && onClear(), ref.current?.focus();
|
|
3928
|
+
}, [onClear, ref]), prefixNode = react.useMemo(() => prefix && /* @__PURE__ */ jsxRuntime.jsx(Prefix, { borderTop: !0, borderLeft: !0, borderBottom: !0, radius, sizing: "border", tone: "inherit", children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: prefix }) }), [prefix, radius]), presentationNode = react.useMemo(() => /* @__PURE__ */ jsxRuntime.jsxs(Presentation, { $hasPrefix, $unstableDisableFocusRing: __unstable_disableFocusRing, $hasSuffix, $radius: radius, $scheme: rootTheme.scheme, $tone: rootTheme.tone, "data-border": border2 ? "" : void 0, "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, children: [
|
|
3929
|
+
IconComponent && /* @__PURE__ */ jsxRuntime.jsx(LeftBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
3930
|
+
react.isValidElement(IconComponent) && IconComponent,
|
|
3931
|
+
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
3932
|
+
] }) }),
|
|
3933
|
+
!$hasClearButton && IconRightComponent && /* @__PURE__ */ jsxRuntime.jsx(RightBox, { padding, children: /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
3934
|
+
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
3935
|
+
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
3936
|
+
] }) })
|
|
3937
|
+
] }), [__unstable_disableFocusRing, border2, fontSize2, IconComponent, IconRightComponent, padding, radius, rootTheme, $hasClearButton, $hasPrefix, $hasSuffix]), clearButtonBoxPadding = react.useMemo(() => padding.map((v) => v === 0 ? 0 : v === 1 || v === 2 ? 1 : v - 2), [padding]), clearButtonPadding = react.useMemo(() => padding.map((v) => v === 0 || v === 1 ? 0 : v === 2 ? 1 : v - 1), [padding]), clearButtonProps = react.useMemo(() => typeof clearButton == "object" ? clearButton : EMPTY_RECORD, [clearButton]), clearButtonNode = react.useMemo(() => !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 }) }), [clearButton, clearButtonBoxPadding, clearButtonPadding, clearButtonProps, customValidity, disabled, fontSize2, handleClearClick, handleClearMouseDown, radius, readOnly]), suffixNode = react.useMemo(() => suffix && /* @__PURE__ */ jsxRuntime.jsx(Suffix, { borderTop: !0, borderRight: !0, borderBottom: !0, radius, sizing: "border", tone: "inherit", children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: suffix }) }), [radius, suffix]);
|
|
3938
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(StyledTextInput, { "data-ui": "TextInput", tone: rootTheme.tone, children: [
|
|
4685
3939
|
prefixNode,
|
|
4686
|
-
|
|
3940
|
+
/* @__PURE__ */ jsxRuntime.jsxs(InputRoot, { children: [
|
|
3941
|
+
/* @__PURE__ */ jsxRuntime.jsx(Input, { "data-as": "input", "data-scheme": rootTheme.scheme, "data-tone": rootTheme.tone, ...restProps, $fontSize: fontSize2, $iconLeft: $hasIcon, $iconRight: $hasIconRight || $hasClearButton, $padding: padding, $scheme: rootTheme.scheme, $space: space, $tone: rootTheme.tone, $weight: weight, disabled, readOnly, ref, type }),
|
|
3942
|
+
presentationNode,
|
|
3943
|
+
clearButtonNode
|
|
3944
|
+
] }),
|
|
4687
3945
|
suffixNode
|
|
4688
|
-
] })
|
|
3946
|
+
] });
|
|
4689
3947
|
});
|
|
4690
3948
|
TextInput.displayName = "ForwardRef(TextInput)";
|
|
4691
|
-
function _temp$2(event) {
|
|
4692
|
-
event.preventDefault(), event.stopPropagation();
|
|
4693
|
-
}
|
|
4694
|
-
function _temp2(v) {
|
|
4695
|
-
return v === 0 ? 0 : v === 1 || v === 2 ? 1 : v - 2;
|
|
4696
|
-
}
|
|
4697
|
-
function _temp3(v_0) {
|
|
4698
|
-
return v_0 === 0 || v_0 === 1 ? 0 : v_0 === 2 ? 1 : v_0 - 1;
|
|
4699
|
-
}
|
|
4700
3949
|
function useDelayedState(initialState) {
|
|
4701
|
-
const
|
|
4702
|
-
let t0;
|
|
4703
|
-
$[0] === Symbol.for("react.memo_cache_sentinel") ? (t0 = (nextState, delay) => {
|
|
3950
|
+
const [state, setState] = react.useState(initialState), delayedAction = react.useRef(void 0), onStateChange = react.useCallback((nextState, delay) => {
|
|
4704
3951
|
const action = () => {
|
|
4705
3952
|
setState(nextState);
|
|
4706
3953
|
};
|
|
4707
|
-
if (delayedAction.current && (clearTimeout(delayedAction.current), delayedAction.current = void 0), !delay)
|
|
4708
|
-
return action();
|
|
3954
|
+
if (delayedAction.current && (clearTimeout(delayedAction.current), delayedAction.current = void 0), !delay) return action();
|
|
4709
3955
|
delayedAction.current = setTimeout(action, delay);
|
|
4710
|
-
},
|
|
4711
|
-
|
|
4712
|
-
let t1;
|
|
4713
|
-
return $[1] !== state ? (t1 = [state, onStateChange], $[1] = state, $[2] = t1) : t1 = $[2], t1;
|
|
3956
|
+
}, []);
|
|
3957
|
+
return [state, onStateChange];
|
|
4714
3958
|
}
|
|
4715
3959
|
const DEFAULT_TOOLTIP_ARROW_WIDTH = 15, DEFAULT_TOOLTIP_ARROW_HEIGHT = 6, DEFAULT_TOOLTIP_ARROW_RADIUS = 2, DEFAULT_TOOLTIP_DISTANCE = 4, DEFAULT_TOOLTIP_PADDING = 4, DEFAULT_FALLBACK_PLACEMENTS = {
|
|
4716
3960
|
top: ["top-end", "top-start", "bottom", "left", "right"],
|
|
@@ -4729,9 +3973,7 @@ const DEFAULT_TOOLTIP_ARROW_WIDTH = 15, DEFAULT_TOOLTIP_ARROW_HEIGHT = 6, DEFAUL
|
|
|
4729
3973
|
displayName: "MotionCard",
|
|
4730
3974
|
componentId: "sc-1xn138w-0"
|
|
4731
3975
|
})`will-change:transform;`, TooltipCard = react.forwardRef(function(props, ref) {
|
|
4732
|
-
const
|
|
4733
|
-
let animate, arrow, arrowRef, arrowX, arrowY, children, originX, originY, padding, placement, radius, restProps, scheme, shadow, style;
|
|
4734
|
-
$[0] !== props ? ({
|
|
3976
|
+
const {
|
|
4735
3977
|
animate,
|
|
4736
3978
|
arrow,
|
|
4737
3979
|
arrowRef,
|
|
@@ -4747,56 +3989,37 @@ const DEFAULT_TOOLTIP_ARROW_WIDTH = 15, DEFAULT_TOOLTIP_ARROW_HEIGHT = 6, DEFAUL
|
|
|
4747
3989
|
shadow,
|
|
4748
3990
|
style,
|
|
4749
3991
|
...restProps
|
|
4750
|
-
} = props,
|
|
4751
|
-
const t0 = animate ? "transform" : void 0;
|
|
4752
|
-
let t1;
|
|
4753
|
-
$[16] !== originX || $[17] !== originY || $[18] !== style || $[19] !== t0 ? (t1 = {
|
|
3992
|
+
} = props, rootStyle2 = react.useMemo(() => ({
|
|
4754
3993
|
originX,
|
|
4755
3994
|
originY,
|
|
4756
|
-
willChange:
|
|
3995
|
+
willChange: animate ? "transform" : void 0,
|
|
4757
3996
|
...style
|
|
4758
|
-
},
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
$[21] !== t2 || $[22] !== t3 ? (t4 = {
|
|
4762
|
-
left: t2,
|
|
4763
|
-
top: t3,
|
|
3997
|
+
}), [animate, originX, originY, style]), arrowStyle = react.useMemo(() => ({
|
|
3998
|
+
left: arrowX !== null ? arrowX : void 0,
|
|
3999
|
+
top: arrowY !== null ? arrowY : void 0,
|
|
4764
4000
|
right: void 0,
|
|
4765
4001
|
bottom: void 0
|
|
4766
|
-
},
|
|
4767
|
-
|
|
4768
|
-
let t6;
|
|
4769
|
-
$[24] !== animate ? (t6 = animate ? ["hidden", "initial"] : void 0, $[24] = animate, $[25] = t6) : t6 = $[25];
|
|
4770
|
-
let t7;
|
|
4771
|
-
$[26] !== animate ? (t7 = animate ? ["visible", "scaleIn"] : void 0, $[26] = animate, $[27] = t7) : t7 = $[27];
|
|
4772
|
-
let t8;
|
|
4773
|
-
$[28] !== animate ? (t8 = animate ? ["hidden", "scaleOut"] : void 0, $[28] = animate, $[29] = t8) : t8 = $[29];
|
|
4774
|
-
let t9;
|
|
4775
|
-
$[30] !== arrow || $[31] !== arrowRef || $[32] !== arrowStyle ? (t9 = arrow && /* @__PURE__ */ jsxRuntime.jsx(Arrow, { ref: arrowRef, style: arrowStyle, width: DEFAULT_TOOLTIP_ARROW_WIDTH, height: DEFAULT_TOOLTIP_ARROW_HEIGHT, radius: DEFAULT_TOOLTIP_ARROW_RADIUS }), $[30] = arrow, $[31] = arrowRef, $[32] = arrowStyle, $[33] = t9) : t9 = $[33];
|
|
4776
|
-
let t10;
|
|
4777
|
-
return $[34] !== children || $[35] !== padding || $[36] !== placement || $[37] !== radius || $[38] !== ref || $[39] !== rootStyle2 || $[40] !== scheme || $[41] !== shadow || $[42] !== t5 || $[43] !== t6 || $[44] !== t7 || $[45] !== t8 || $[46] !== t9 ? (t10 = /* @__PURE__ */ jsxRuntime.jsxs(MotionCard, { "data-ui": "Tooltip__card", ...t5, "data-placement": placement, padding, radius, ref, scheme, shadow, style: rootStyle2, variants: POPOVER_MOTION_PROPS.card, transition: POPOVER_MOTION_PROPS.transition, initial: t6, animate: t7, exit: t8, children: [
|
|
4002
|
+
}), [arrowX, arrowY]);
|
|
4003
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(MotionCard, { "data-ui": "Tooltip__card", ...restProps, "data-placement": placement, padding, radius, ref, scheme, shadow, style: rootStyle2, variants: POPOVER_MOTION_PROPS.card, transition: POPOVER_MOTION_PROPS.transition, initial: animate ? ["hidden", "initial"] : void 0, animate: animate ? ["visible", "scaleIn"] : void 0, exit: animate ? ["hidden", "scaleOut"] : void 0, children: [
|
|
4778
4004
|
children,
|
|
4779
|
-
|
|
4780
|
-
] })
|
|
4005
|
+
arrow && /* @__PURE__ */ jsxRuntime.jsx(Arrow, { ref: arrowRef, style: arrowStyle, width: DEFAULT_TOOLTIP_ARROW_WIDTH, height: DEFAULT_TOOLTIP_ARROW_HEIGHT, radius: DEFAULT_TOOLTIP_ARROW_RADIUS })
|
|
4006
|
+
] });
|
|
4781
4007
|
});
|
|
4782
4008
|
TooltipCard.displayName = "ForwardRef(TooltipCard)";
|
|
4783
4009
|
const TooltipDelayGroupContext = createGlobalScopedContext("@sanity/ui/context/tooltipDelayGroup", null);
|
|
4784
4010
|
function TooltipDelayGroupProvider(props) {
|
|
4785
|
-
const
|
|
4011
|
+
const {
|
|
4786
4012
|
children,
|
|
4787
4013
|
delay
|
|
4788
|
-
} = props, [isGroupActive, setIsGroupActive] = useDelayedState(!1), [openTooltipId, setOpenTooltipId] = useDelayedState(null), openDelay = typeof delay == "number" ? delay : delay?.open || 0, closeDelay = typeof delay == "number" ? delay : delay?.close || 0,
|
|
4789
|
-
let t1;
|
|
4790
|
-
$[0] !== closeDelay || $[1] !== openTooltipId || $[2] !== setIsGroupActive || $[3] !== setOpenTooltipId || $[4] !== t0 ? (t1 = {
|
|
4014
|
+
} = props, [isGroupActive, setIsGroupActive] = useDelayedState(!1), [openTooltipId, setOpenTooltipId] = useDelayedState(null), openDelay = typeof delay == "number" ? delay : delay?.open || 0, closeDelay = typeof delay == "number" ? delay : delay?.close || 0, value = react.useMemo(() => ({
|
|
4791
4015
|
setIsGroupActive,
|
|
4792
4016
|
openTooltipId,
|
|
4793
4017
|
setOpenTooltipId,
|
|
4794
|
-
|
|
4018
|
+
// When the group is active, we want the next tooltip to open immediately.
|
|
4019
|
+
openDelay: isGroupActive ? 1 : openDelay,
|
|
4795
4020
|
closeDelay
|
|
4796
|
-
},
|
|
4797
|
-
|
|
4798
|
-
let t2;
|
|
4799
|
-
return $[6] !== children || $[7] !== value ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(TooltipDelayGroupContext.Provider, { value, children }), $[6] = children, $[7] = value, $[8] = t2) : t2 = $[8], t2;
|
|
4021
|
+
}), [closeDelay, isGroupActive, openDelay, openTooltipId, setIsGroupActive, setOpenTooltipId]);
|
|
4022
|
+
return /* @__PURE__ */ jsxRuntime.jsx(TooltipDelayGroupContext.Provider, { value, children });
|
|
4800
4023
|
}
|
|
4801
4024
|
TooltipDelayGroupProvider.displayName = "TooltipDelayGroupProvider";
|
|
4802
4025
|
function useTooltipDelayGroup() {
|
|
@@ -4806,71 +4029,51 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4806
4029
|
displayName: "StyledTooltip",
|
|
4807
4030
|
componentId: "sc-13f2zvh-0"
|
|
4808
4031
|
})`pointer-events:none;`, Tooltip = react.forwardRef(function(props, forwardedRef) {
|
|
4809
|
-
const
|
|
4032
|
+
const boundaryElementContext = useBoundaryElement(), {
|
|
4810
4033
|
layer
|
|
4811
|
-
} = useTheme_v2()
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
animate: t0,
|
|
4815
|
-
arrow: t1,
|
|
4034
|
+
} = useTheme_v2(), {
|
|
4035
|
+
animate: _animate = !1,
|
|
4036
|
+
arrow: arrowProp = !1,
|
|
4816
4037
|
boundaryElement: _boundaryElement,
|
|
4817
4038
|
children: childProp,
|
|
4818
4039
|
content,
|
|
4819
4040
|
disabled,
|
|
4820
4041
|
fallbackPlacements: _fallbackPlacementsProp,
|
|
4821
|
-
padding
|
|
4822
|
-
placement:
|
|
4042
|
+
padding = 2,
|
|
4043
|
+
placement: placementProp = "bottom",
|
|
4823
4044
|
portal: portalProp,
|
|
4824
|
-
radius
|
|
4045
|
+
radius = 2,
|
|
4825
4046
|
scheme,
|
|
4826
|
-
shadow
|
|
4047
|
+
shadow = 2,
|
|
4827
4048
|
zOffset: _zOffset,
|
|
4828
4049
|
delay,
|
|
4829
4050
|
...restProps
|
|
4830
|
-
} = props,
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
$[17] !== fallbackPlacementsProp ? (t6 = _getArrayProp(fallbackPlacementsProp), $[17] = fallbackPlacementsProp, $[18] = t6) : t6 = $[18];
|
|
4834
|
-
const fallbackPlacements = t6, ref = react.useRef(null), [referenceElement, setReferenceElement] = react.useState(null), arrowRef = react.useRef(null), [tooltipMaxWidth, setTooltipMaxWidth] = react.useState(0);
|
|
4835
|
-
let t7;
|
|
4836
|
-
$[19] === Symbol.for("react.memo_cache_sentinel") ? (t7 = () => ref.current, $[19] = t7) : t7 = $[19], react.useImperativeHandle(forwardedRef, t7);
|
|
4837
|
-
const portal = usePortal(), portalElement = typeof portalProp == "string" ? portal.elements?.[portalProp] || null : portal.element;
|
|
4838
|
-
let t8;
|
|
4839
|
-
$[20] !== animate || $[21] !== arrowProp || $[22] !== boundaryElement || $[23] !== fallbackPlacements ? (t8 = {
|
|
4051
|
+
} = props, boundaryElement = _boundaryElement ?? boundaryElementContext?.element, fallbackPlacementsProp = _fallbackPlacementsProp ?? DEFAULT_FALLBACK_PLACEMENTS[props.placement ?? "bottom"], zOffset = _zOffset ?? layer.tooltip.zOffset, animate = usePrefersReducedMotion() ? !1 : _animate, fallbackPlacements = _getArrayProp(fallbackPlacementsProp), ref = react.useRef(null), [referenceElement, setReferenceElement] = react.useState(null), arrowRef = react.useRef(null), rootBoundary = "viewport", [tooltipMaxWidth, setTooltipMaxWidth] = react.useState(0);
|
|
4052
|
+
react.useImperativeHandle(forwardedRef, () => ref.current);
|
|
4053
|
+
const portal = usePortal(), portalElement = typeof portalProp == "string" ? portal.elements?.[portalProp] || null : portal.element, middleware = useMiddleware({
|
|
4840
4054
|
animate,
|
|
4841
4055
|
arrowProp,
|
|
4842
4056
|
arrowRef,
|
|
4843
4057
|
boundaryElement,
|
|
4844
4058
|
fallbackPlacements,
|
|
4845
|
-
rootBoundary
|
|
4846
|
-
},
|
|
4847
|
-
const middleware = useMiddleware(t8);
|
|
4848
|
-
let t9;
|
|
4849
|
-
$[25] !== referenceElement ? (t9 = {
|
|
4850
|
-
reference: referenceElement
|
|
4851
|
-
}, $[25] = referenceElement, $[26] = t9) : t9 = $[26];
|
|
4852
|
-
let t10;
|
|
4853
|
-
$[27] !== middleware || $[28] !== placementProp || $[29] !== t9 ? (t10 = {
|
|
4854
|
-
middleware,
|
|
4855
|
-
placement: placementProp,
|
|
4856
|
-
whileElementsMounted: reactDom$1.autoUpdate,
|
|
4857
|
-
elements: t9
|
|
4858
|
-
}, $[27] = middleware, $[28] = placementProp, $[29] = t9, $[30] = t10) : t10 = $[30];
|
|
4859
|
-
const {
|
|
4059
|
+
rootBoundary
|
|
4060
|
+
}), {
|
|
4860
4061
|
floatingStyles,
|
|
4861
4062
|
placement,
|
|
4862
4063
|
middlewareData,
|
|
4863
4064
|
refs,
|
|
4864
4065
|
update
|
|
4865
|
-
} = reactDom$1.useFloating(
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4066
|
+
} = reactDom$1.useFloating({
|
|
4067
|
+
middleware,
|
|
4068
|
+
placement: placementProp,
|
|
4069
|
+
whileElementsMounted: reactDom$1.autoUpdate,
|
|
4070
|
+
elements: {
|
|
4071
|
+
reference: referenceElement
|
|
4072
|
+
}
|
|
4073
|
+
}), 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(), {
|
|
4869
4074
|
setIsGroupActive,
|
|
4870
4075
|
setOpenTooltipId
|
|
4871
|
-
} =
|
|
4872
|
-
let t12;
|
|
4873
|
-
$[33] !== closeDelay || $[34] !== isInsideGroup || $[35] !== openDelay || $[36] !== setIsGroupActive || $[37] !== setIsOpen || $[38] !== setOpenTooltipId || $[39] !== tooltipId ? (t12 = (open, immediate) => {
|
|
4076
|
+
} = delayGroupContext || {}, 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, handleIsOpenChange = react.useCallback((open, immediate) => {
|
|
4874
4077
|
if (isInsideGroup)
|
|
4875
4078
|
if (open) {
|
|
4876
4079
|
const groupedOpenDelay = immediate ? 0 : openDelay;
|
|
@@ -4881,196 +4084,108 @@ const StyledTooltip = styledComponents.styled(Layer).withConfig({
|
|
|
4881
4084
|
}
|
|
4882
4085
|
else
|
|
4883
4086
|
setIsOpen(open, immediate ? 0 : open ? openDelay : closeDelay);
|
|
4884
|
-
},
|
|
4885
|
-
const handleIsOpenChange = t12;
|
|
4886
|
-
let t13;
|
|
4887
|
-
$[41] !== childProp?.props || $[42] !== handleIsOpenChange ? (t13 = (e) => {
|
|
4087
|
+
}, [isInsideGroup, openDelay, setIsGroupActive, setOpenTooltipId, tooltipId, closeDelay, setIsOpen]), handleBlur = react.useCallback((e) => {
|
|
4888
4088
|
handleIsOpenChange(!1), childProp?.props?.onBlur?.(e);
|
|
4889
|
-
},
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
|
|
4898
|
-
handleIsOpenChange(!1
|
|
4899
|
-
},
|
|
4900
|
-
|
|
4901
|
-
let t16;
|
|
4902
|
-
$[50] !== childProp?.props || $[51] !== handleIsOpenChange ? (t16 = (e_2) => {
|
|
4903
|
-
handleIsOpenChange(!0), childProp?.props?.onFocus?.(e_2);
|
|
4904
|
-
}, $[50] = childProp?.props, $[51] = handleIsOpenChange, $[52] = t16) : t16 = $[52];
|
|
4905
|
-
const handleFocus = t16;
|
|
4906
|
-
let t17;
|
|
4907
|
-
$[53] !== childProp?.props || $[54] !== handleIsOpenChange ? (t17 = (e_3) => {
|
|
4908
|
-
handleIsOpenChange(!0), childProp?.props?.onMouseEnter?.(e_3);
|
|
4909
|
-
}, $[53] = childProp?.props, $[54] = handleIsOpenChange, $[55] = t17) : t17 = $[55];
|
|
4910
|
-
const handleMouseEnter = t17;
|
|
4911
|
-
let t18;
|
|
4912
|
-
$[56] !== childProp?.props || $[57] !== handleIsOpenChange ? (t18 = (e_4) => {
|
|
4913
|
-
handleIsOpenChange(!1), childProp?.props?.onMouseLeave?.(e_4);
|
|
4914
|
-
}, $[56] = childProp?.props, $[57] = handleIsOpenChange, $[58] = t18) : t18 = $[58];
|
|
4915
|
-
const handleMouseLeave = t18;
|
|
4916
|
-
let t19;
|
|
4917
|
-
$[59] !== handleIsOpenChange || $[60] !== isInsideGroup || $[61] !== referenceElement || $[62] !== showTooltip ? (t19 = {
|
|
4089
|
+
}, [childProp?.props, handleIsOpenChange]), handleClick = react.useCallback((e) => {
|
|
4090
|
+
handleIsOpenChange(!1, !0), childProp?.props.onClick?.(e);
|
|
4091
|
+
}, [childProp?.props, handleIsOpenChange]), handleContextMenu = react.useCallback((e) => {
|
|
4092
|
+
handleIsOpenChange(!1, !0), childProp?.props.onContextMenu?.(e);
|
|
4093
|
+
}, [childProp?.props, handleIsOpenChange]), handleFocus = react.useCallback((e) => {
|
|
4094
|
+
handleIsOpenChange(!0), childProp?.props?.onFocus?.(e);
|
|
4095
|
+
}, [childProp?.props, handleIsOpenChange]), handleMouseEnter = react.useCallback((e) => {
|
|
4096
|
+
handleIsOpenChange(!0), childProp?.props?.onMouseEnter?.(e);
|
|
4097
|
+
}, [childProp?.props, handleIsOpenChange]), handleMouseLeave = react.useCallback((e) => {
|
|
4098
|
+
handleIsOpenChange(!1), childProp?.props?.onMouseLeave?.(e);
|
|
4099
|
+
}, [childProp?.props, handleIsOpenChange]);
|
|
4100
|
+
useCloseOnMouseLeave({
|
|
4918
4101
|
handleIsOpenChange,
|
|
4919
4102
|
referenceElement,
|
|
4920
4103
|
showTooltip,
|
|
4921
4104
|
isInsideGroup
|
|
4922
|
-
},
|
|
4923
|
-
let t20, t21;
|
|
4924
|
-
$[64] !== disabled || $[65] !== handleIsOpenChange || $[66] !== showTooltip ? (t20 = () => {
|
|
4105
|
+
}), react.useEffect(() => {
|
|
4925
4106
|
disabled && showTooltip && handleIsOpenChange(!1);
|
|
4926
|
-
},
|
|
4927
|
-
let t22, t23;
|
|
4928
|
-
$[69] !== content || $[70] !== handleIsOpenChange || $[71] !== showTooltip ? (t22 = () => {
|
|
4107
|
+
}, [disabled, handleIsOpenChange, showTooltip]), react.useEffect(() => {
|
|
4929
4108
|
!content && showTooltip && handleIsOpenChange(!1);
|
|
4930
|
-
},
|
|
4931
|
-
|
|
4932
|
-
|
|
4933
|
-
if (!showTooltip)
|
|
4934
|
-
return;
|
|
4935
|
-
const handleWindowKeyDown = function(event) {
|
|
4109
|
+
}, [content, handleIsOpenChange, showTooltip]), react.useEffect(() => {
|
|
4110
|
+
if (!showTooltip) return;
|
|
4111
|
+
function handleWindowKeyDown(event) {
|
|
4936
4112
|
event.key === "Escape" && handleIsOpenChange(!1, !0);
|
|
4937
|
-
}
|
|
4113
|
+
}
|
|
4938
4114
|
return window.addEventListener("keydown", handleWindowKeyDown), () => {
|
|
4939
4115
|
window.removeEventListener("keydown", handleWindowKeyDown);
|
|
4940
4116
|
};
|
|
4941
|
-
},
|
|
4942
|
-
let t26;
|
|
4943
|
-
$[78] !== boundaryElement || $[79] !== portalElement?.offsetWidth ? (t26 = () => {
|
|
4117
|
+
}, [handleIsOpenChange, showTooltip]), react.useLayoutEffect(() => {
|
|
4944
4118
|
const availableWidths = [...boundaryElement ? [boundaryElement.offsetWidth] : [], portalElement?.offsetWidth || document.body.offsetWidth];
|
|
4945
4119
|
setTooltipMaxWidth(Math.min(...availableWidths) - DEFAULT_TOOLTIP_PADDING * 2);
|
|
4946
|
-
},
|
|
4947
|
-
|
|
4948
|
-
$[81] !== boundaryElement || $[82] !== portalElement ? (t27 = [boundaryElement, portalElement], $[81] = boundaryElement, $[82] = portalElement, $[83] = t27) : t27 = $[83], react.useLayoutEffect(t26, t27);
|
|
4949
|
-
let t28;
|
|
4950
|
-
$[84] !== update ? (t28 = (arrowEl) => {
|
|
4120
|
+
}, [boundaryElement, portalElement]);
|
|
4121
|
+
const setArrow = react.useCallback((arrowEl) => {
|
|
4951
4122
|
arrowRef.current = arrowEl, update();
|
|
4952
|
-
},
|
|
4953
|
-
const setArrow = t28;
|
|
4954
|
-
let t29;
|
|
4955
|
-
$[86] !== refs ? (t29 = (node) => {
|
|
4123
|
+
}, [update]), setFloating = react.useCallback((node) => {
|
|
4956
4124
|
ref.current = node, refs.setFloating(node);
|
|
4957
|
-
},
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
onMouseEnter: handleMouseEnter,
|
|
4970
|
-
onMouseLeave: handleMouseLeave,
|
|
4971
|
-
onClick: handleClick,
|
|
4972
|
-
onContextMenu: handleContextMenu,
|
|
4973
|
-
ref: setReferenceElement
|
|
4974
|
-
}), $[88] = childProp, $[89] = handleBlur, $[90] = handleClick, $[91] = handleContextMenu, $[92] = handleFocus, $[93] = handleMouseEnter, $[94] = handleMouseLeave, $[95] = t312) : t312 = $[95], t30 = t312;
|
|
4975
|
-
}
|
|
4976
|
-
const child = t30;
|
|
4977
|
-
let t31;
|
|
4978
|
-
$[96] !== childProp ? (t31 = childProp ? getElementRef(childProp) : null, $[96] = childProp, $[97] = t31) : t31 = $[97];
|
|
4979
|
-
let t32, t33;
|
|
4980
|
-
if ($[98] !== referenceElement ? (t32 = () => referenceElement, t33 = [referenceElement], $[98] = referenceElement, $[99] = t32, $[100] = t33) : (t32 = $[99], t33 = $[100]), react.useImperativeHandle(t31, t32, t33), !child) {
|
|
4981
|
-
let t342;
|
|
4982
|
-
return $[101] === Symbol.for("react.memo_cache_sentinel") ? (t342 = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[101] = t342) : t342 = $[101], t342;
|
|
4983
|
-
}
|
|
4984
|
-
if (disabled)
|
|
4985
|
-
return child;
|
|
4986
|
-
const t34 = tooltipMaxWidth > 0 ? `${tooltipMaxWidth}px` : void 0;
|
|
4987
|
-
let t35;
|
|
4988
|
-
$[102] !== floatingStyles || $[103] !== t34 ? (t35 = {
|
|
4125
|
+
}, [refs]), child = react.useMemo(() => childProp ? react.cloneElement(childProp, {
|
|
4126
|
+
onBlur: handleBlur,
|
|
4127
|
+
onFocus: handleFocus,
|
|
4128
|
+
onMouseEnter: handleMouseEnter,
|
|
4129
|
+
onMouseLeave: handleMouseLeave,
|
|
4130
|
+
onClick: handleClick,
|
|
4131
|
+
onContextMenu: handleContextMenu,
|
|
4132
|
+
ref: setReferenceElement
|
|
4133
|
+
}) : null, [childProp, handleBlur, handleClick, handleContextMenu, handleFocus, handleMouseEnter, handleMouseLeave]);
|
|
4134
|
+
if (react.useImperativeHandle(childProp ? getElementRef(childProp) : null, () => referenceElement, [referenceElement]), !child) return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {});
|
|
4135
|
+
if (disabled) return child;
|
|
4136
|
+
const tooltip = /* @__PURE__ */ jsxRuntime.jsx(StyledTooltip, { "data-ui": "Tooltip", ...restProps, ref: setFloating, style: {
|
|
4989
4137
|
...floatingStyles,
|
|
4990
|
-
maxWidth:
|
|
4991
|
-
},
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
let t37;
|
|
4995
|
-
$[121] !== restProps || $[122] !== setFloating || $[123] !== t35 || $[124] !== t36 || $[125] !== zOffset ? (t37 = /* @__PURE__ */ jsxRuntime.jsx(StyledTooltip, { "data-ui": "Tooltip", ...restProps, ref: setFloating, style: t35, zOffset, children: t36 }), $[121] = restProps, $[122] = setFloating, $[123] = t35, $[124] = t36, $[125] = zOffset, $[126] = t37) : t37 = $[126];
|
|
4996
|
-
const tooltip = t37;
|
|
4997
|
-
let t38;
|
|
4998
|
-
$[127] !== portalProp || $[128] !== showTooltip || $[129] !== tooltip ? (t38 = showTooltip && (portalProp ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portalProp == "string" ? portalProp : void 0, children: tooltip }) : tooltip), $[127] = portalProp, $[128] = showTooltip, $[129] = tooltip, $[130] = t38) : t38 = $[130];
|
|
4999
|
-
const children = t38;
|
|
5000
|
-
let t39;
|
|
5001
|
-
$[131] !== animate || $[132] !== children ? (t39 = animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children, $[131] = animate, $[132] = children, $[133] = t39) : t39 = $[133];
|
|
5002
|
-
let t40;
|
|
5003
|
-
return $[134] !== child || $[135] !== t39 ? (t40 = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
5004
|
-
t39,
|
|
4138
|
+
maxWidth: tooltipMaxWidth > 0 ? `${tooltipMaxWidth}px` : void 0
|
|
4139
|
+
}, zOffset, children: /* @__PURE__ */ jsxRuntime.jsx(TooltipCard, { ...restProps, animate, arrow: arrowProp, arrowRef: setArrow, arrowX, arrowY, originX, originY, padding, placement, radius, ref: setFloating, scheme, shadow, children: content }) }), children = showTooltip && (portalProp ? /* @__PURE__ */ jsxRuntime.jsx(Portal, { __unstable_name: typeof portalProp == "string" ? portalProp : void 0, children: tooltip }) : tooltip);
|
|
4140
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
4141
|
+
animate ? /* @__PURE__ */ jsxRuntime.jsx(framerMotion.AnimatePresence, { children }) : children,
|
|
5005
4142
|
child
|
|
5006
|
-
] })
|
|
4143
|
+
] });
|
|
5007
4144
|
});
|
|
5008
4145
|
Tooltip.displayName = "ForwardRef(Tooltip)";
|
|
5009
|
-
function useMiddleware(
|
|
5010
|
-
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
const t1 = boundaryElement || void 0;
|
|
5022
|
-
let t2;
|
|
5023
|
-
$[7] !== fallbackPlacements || $[8] !== rootBoundary || $[9] !== t1 ? (t2 = reactDom$1.flip({
|
|
5024
|
-
boundary: t1,
|
|
4146
|
+
function useMiddleware({
|
|
4147
|
+
animate,
|
|
4148
|
+
arrowProp,
|
|
4149
|
+
arrowRef,
|
|
4150
|
+
boundaryElement,
|
|
4151
|
+
fallbackPlacements,
|
|
4152
|
+
rootBoundary
|
|
4153
|
+
}) {
|
|
4154
|
+
return react.useMemo(() => {
|
|
4155
|
+
const ret = [];
|
|
4156
|
+
return ret.push(reactDom$1.flip({
|
|
4157
|
+
boundary: boundaryElement || void 0,
|
|
5025
4158
|
fallbackPlacements,
|
|
5026
4159
|
padding: DEFAULT_TOOLTIP_PADDING,
|
|
5027
4160
|
rootBoundary
|
|
5028
|
-
})
|
|
5029
|
-
let t3;
|
|
5030
|
-
$[11] === Symbol.for("react.memo_cache_sentinel") ? (t3 = reactDom$1.offset({
|
|
4161
|
+
})), ret.push(reactDom$1.offset({
|
|
5031
4162
|
mainAxis: DEFAULT_TOOLTIP_DISTANCE
|
|
5032
|
-
})
|
|
5033
|
-
|
|
5034
|
-
let t5;
|
|
5035
|
-
if ($[12] !== rootBoundary || $[13] !== t4 ? (t5 = reactDom$1.shift({
|
|
5036
|
-
boundary: t4,
|
|
4163
|
+
})), ret.push(reactDom$1.shift({
|
|
4164
|
+
boundary: boundaryElement || void 0,
|
|
5037
4165
|
rootBoundary,
|
|
5038
4166
|
padding: DEFAULT_TOOLTIP_PADDING
|
|
5039
|
-
}),
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
|
-
}
|
|
5051
|
-
|
|
5052
|
-
const $ = reactCompilerRuntime.c(10), {
|
|
5053
|
-
handleIsOpenChange,
|
|
5054
|
-
referenceElement,
|
|
5055
|
-
showTooltip,
|
|
5056
|
-
isInsideGroup
|
|
5057
|
-
} = t0;
|
|
5058
|
-
let t1;
|
|
5059
|
-
$[0] !== handleIsOpenChange || $[1] !== referenceElement ? (t1 = (target, teardown) => {
|
|
4167
|
+
})), arrowProp && ret.push(reactDom$1.arrow({
|
|
4168
|
+
element: arrowRef,
|
|
4169
|
+
padding: DEFAULT_TOOLTIP_PADDING
|
|
4170
|
+
})), animate && ret.push(origin), ret;
|
|
4171
|
+
}, [animate, arrowProp, arrowRef, boundaryElement, fallbackPlacements, rootBoundary]);
|
|
4172
|
+
}
|
|
4173
|
+
function useCloseOnMouseLeave({
|
|
4174
|
+
handleIsOpenChange,
|
|
4175
|
+
referenceElement,
|
|
4176
|
+
showTooltip,
|
|
4177
|
+
isInsideGroup
|
|
4178
|
+
}) {
|
|
4179
|
+
const onMouseMove = useEffectEvent.useEffectEvent((target, teardown) => {
|
|
5060
4180
|
referenceElement && (referenceElement === target || target instanceof Node && referenceElement.contains(target) || (handleIsOpenChange(!1), teardown()));
|
|
5061
|
-
}
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
$[3] !== isInsideGroup || $[4] !== onMouseMove || $[5] !== showTooltip ? (t2 = () => {
|
|
5065
|
-
if (!showTooltip || isInsideGroup)
|
|
5066
|
-
return;
|
|
4181
|
+
});
|
|
4182
|
+
react.useEffect(() => {
|
|
4183
|
+
if (!showTooltip || isInsideGroup) return;
|
|
5067
4184
|
const handleMouseMove = (event) => {
|
|
5068
4185
|
onMouseMove(event.target, () => window.removeEventListener("mousemove", handleMouseMove));
|
|
5069
4186
|
};
|
|
5070
4187
|
return window.addEventListener("mousemove", handleMouseMove), () => window.removeEventListener("mousemove", handleMouseMove);
|
|
5071
|
-
},
|
|
5072
|
-
let t3;
|
|
5073
|
-
$[7] !== isInsideGroup || $[8] !== showTooltip ? (t3 = [isInsideGroup, showTooltip], $[7] = isInsideGroup, $[8] = showTooltip, $[9] = t3) : t3 = $[9], react.useEffect(t2, t3);
|
|
4188
|
+
}, [isInsideGroup, showTooltip]);
|
|
5074
4189
|
}
|
|
5075
4190
|
const StyledHotkeys = styledComponents.styled.kbd.withConfig({
|
|
5076
4191
|
displayName: "StyledHotkeys",
|
|
@@ -5079,34 +4194,15 @@ const StyledHotkeys = styledComponents.styled.kbd.withConfig({
|
|
|
5079
4194
|
displayName: "Key",
|
|
5080
4195
|
componentId: "sc-b37mge-1"
|
|
5081
4196
|
})`&:not([hidden]){display:block;}`, Hotkeys = react.forwardRef(function(props, ref) {
|
|
5082
|
-
const
|
|
5083
|
-
let fontSize2, keys, padding, radius, restProps, t0;
|
|
5084
|
-
$[0] !== props ? ({
|
|
4197
|
+
const {
|
|
5085
4198
|
fontSize: fontSize2,
|
|
5086
4199
|
keys,
|
|
5087
4200
|
padding,
|
|
5088
4201
|
radius,
|
|
5089
|
-
space:
|
|
4202
|
+
space: spaceProp = 0.5,
|
|
5090
4203
|
...restProps
|
|
5091
|
-
} = props,
|
|
5092
|
-
|
|
5093
|
-
let t1;
|
|
5094
|
-
$[7] !== spaceProp ? (t1 = _getArrayProp(spaceProp), $[7] = spaceProp, $[8] = t1) : t1 = $[8];
|
|
5095
|
-
const space = t1;
|
|
5096
|
-
if (!keys || keys.length === 0) {
|
|
5097
|
-
let t22;
|
|
5098
|
-
return $[9] === Symbol.for("react.memo_cache_sentinel") ? (t22 = /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}), $[9] = t22) : t22 = $[9], t22;
|
|
5099
|
-
}
|
|
5100
|
-
let t2;
|
|
5101
|
-
if ($[10] !== fontSize2 || $[11] !== keys || $[12] !== padding || $[13] !== radius) {
|
|
5102
|
-
let t32;
|
|
5103
|
-
$[15] !== fontSize2 || $[16] !== padding || $[17] !== radius ? (t32 = (key2, i) => /* @__PURE__ */ jsxRuntime.jsx(Key, { fontSize: fontSize2, padding, radius, children: key2 }, i), $[15] = fontSize2, $[16] = padding, $[17] = radius, $[18] = t32) : t32 = $[18], t2 = keys.map(t32), $[10] = fontSize2, $[11] = keys, $[12] = padding, $[13] = radius, $[14] = t2;
|
|
5104
|
-
} else
|
|
5105
|
-
t2 = $[14];
|
|
5106
|
-
let t3;
|
|
5107
|
-
$[19] !== space || $[20] !== t2 ? (t3 = /* @__PURE__ */ jsxRuntime.jsx(Inline, { as: "span", space, children: t2 }), $[19] = space, $[20] = t2, $[21] = t3) : t3 = $[21];
|
|
5108
|
-
let t4;
|
|
5109
|
-
return $[22] !== ref || $[23] !== restProps || $[24] !== t3 ? (t4 = /* @__PURE__ */ jsxRuntime.jsx(StyledHotkeys, { "data-ui": "Hotkeys", ...restProps, ref, children: t3 }), $[22] = ref, $[23] = restProps, $[24] = t3, $[25] = t4) : t4 = $[25], t4;
|
|
4204
|
+
} = props, space = _getArrayProp(spaceProp);
|
|
4205
|
+
return !keys || keys.length === 0 ? /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, {}) : /* @__PURE__ */ jsxRuntime.jsx(StyledHotkeys, { "data-ui": "Hotkeys", ...restProps, ref, children: /* @__PURE__ */ jsxRuntime.jsx(Inline, { as: "span", space, children: keys.map((key2, i) => /* @__PURE__ */ jsxRuntime.jsx(Key, { fontSize: fontSize2, padding, radius, children: key2 }, i)) }) });
|
|
5110
4206
|
});
|
|
5111
4207
|
Hotkeys.displayName = "ForwardRef(Hotkeys)";
|
|
5112
4208
|
const MenuContext = createGlobalScopedContext("@sanity/ui/context/menu", null);
|
|
@@ -5147,24 +4243,16 @@ function _sortElements(rootElement, elements) {
|
|
|
5147
4243
|
elements.sort(_sort);
|
|
5148
4244
|
}
|
|
5149
4245
|
function useMenuController(props) {
|
|
5150
|
-
const
|
|
4246
|
+
const {
|
|
5151
4247
|
onKeyDown,
|
|
5152
4248
|
originElement,
|
|
5153
4249
|
shouldFocus,
|
|
5154
4250
|
rootElementRef
|
|
5155
|
-
} = props
|
|
5156
|
-
let t0;
|
|
5157
|
-
$[0] === Symbol.for("react.memo_cache_sentinel") ? (t0 = [], $[0] = t0) : t0 = $[0];
|
|
5158
|
-
const elementsRef = react.useRef(t0), [activeIndex, _setActiveIndex] = react.useState(-1), activeIndexRef = react.useRef(activeIndex), [activeElement, setActiveElement] = react.useState(null);
|
|
5159
|
-
let t1;
|
|
5160
|
-
$[1] === Symbol.for("react.memo_cache_sentinel") ? (t1 = (nextActiveIndex) => {
|
|
4251
|
+
} = props, elementsRef = react.useRef([]), [activeIndex, _setActiveIndex] = react.useState(-1), activeIndexRef = react.useRef(activeIndex), [activeElement, setActiveElement] = react.useState(null), setActiveIndex = react.useCallback((nextActiveIndex) => {
|
|
5161
4252
|
_setActiveIndex(nextActiveIndex), activeIndexRef.current = nextActiveIndex, setActiveElement(elementsRef.current[nextActiveIndex] || null);
|
|
5162
|
-
},
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
$[2] !== rootElementRef ? (t2 = (element, selected) => {
|
|
5166
|
-
if (!element)
|
|
5167
|
-
return _temp$1;
|
|
4253
|
+
}, []), mount = react.useCallback((element, selected) => {
|
|
4254
|
+
if (!element) return () => {
|
|
4255
|
+
};
|
|
5168
4256
|
if (elementsRef.current.indexOf(element) === -1 && (elementsRef.current.push(element), _sortElements(rootElementRef.current, elementsRef.current)), selected) {
|
|
5169
4257
|
const selectedIndex = elementsRef.current.indexOf(element);
|
|
5170
4258
|
setActiveIndex(selectedIndex);
|
|
@@ -5173,10 +4261,7 @@ function useMenuController(props) {
|
|
|
5173
4261
|
const idx = elementsRef.current.indexOf(element);
|
|
5174
4262
|
idx > -1 && elementsRef.current.splice(idx, 1);
|
|
5175
4263
|
};
|
|
5176
|
-
},
|
|
5177
|
-
const mount = t2;
|
|
5178
|
-
let t3;
|
|
5179
|
-
$[4] !== onKeyDown || $[5] !== originElement ? (t3 = (event) => {
|
|
4264
|
+
}, [rootElementRef, setActiveIndex]), handleKeyDown = react.useCallback((event) => {
|
|
5180
4265
|
if (event.key === "Tab") {
|
|
5181
4266
|
originElement && originElement.focus();
|
|
5182
4267
|
return;
|
|
@@ -5184,77 +4269,64 @@ function useMenuController(props) {
|
|
|
5184
4269
|
if (event.key === "Home") {
|
|
5185
4270
|
event.preventDefault(), event.stopPropagation();
|
|
5186
4271
|
const el = _getFocusableElements(elementsRef.current)[0];
|
|
5187
|
-
if (!el)
|
|
5188
|
-
return;
|
|
4272
|
+
if (!el) return;
|
|
5189
4273
|
const currentIndex = elementsRef.current.indexOf(el);
|
|
5190
4274
|
setActiveIndex(currentIndex);
|
|
5191
4275
|
return;
|
|
5192
4276
|
}
|
|
5193
4277
|
if (event.key === "End") {
|
|
5194
4278
|
event.preventDefault(), event.stopPropagation();
|
|
5195
|
-
const
|
|
5196
|
-
if (!
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
setActiveIndex(currentIndex_0);
|
|
4279
|
+
const focusableElements = _getFocusableElements(elementsRef.current), el = focusableElements[focusableElements.length - 1];
|
|
4280
|
+
if (!el) return;
|
|
4281
|
+
const currentIndex = elementsRef.current.indexOf(el);
|
|
4282
|
+
setActiveIndex(currentIndex);
|
|
5200
4283
|
return;
|
|
5201
4284
|
}
|
|
5202
4285
|
if (event.key === "ArrowUp") {
|
|
5203
4286
|
event.preventDefault(), event.stopPropagation();
|
|
5204
|
-
const
|
|
5205
|
-
if (focusableLen === 0)
|
|
5206
|
-
return;
|
|
4287
|
+
const focusableElements = _getFocusableElements(elementsRef.current), focusableLen = focusableElements.length;
|
|
4288
|
+
if (focusableLen === 0) return;
|
|
5207
4289
|
const focusedElement = elementsRef.current[activeIndexRef.current];
|
|
5208
|
-
let focusedIndex =
|
|
4290
|
+
let focusedIndex = focusableElements.indexOf(focusedElement);
|
|
5209
4291
|
focusedIndex = (focusedIndex - 1 + focusableLen) % focusableLen;
|
|
5210
|
-
const
|
|
5211
|
-
setActiveIndex(
|
|
4292
|
+
const el = focusableElements[focusedIndex], currentIndex = elementsRef.current.indexOf(el);
|
|
4293
|
+
setActiveIndex(currentIndex);
|
|
5212
4294
|
return;
|
|
5213
4295
|
}
|
|
5214
4296
|
if (event.key === "ArrowDown") {
|
|
5215
4297
|
event.preventDefault(), event.stopPropagation();
|
|
5216
|
-
const
|
|
5217
|
-
if (
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
setActiveIndex(currentIndex_2);
|
|
4298
|
+
const focusableElements = _getFocusableElements(elementsRef.current), focusableLen = focusableElements.length;
|
|
4299
|
+
if (focusableLen === 0) return;
|
|
4300
|
+
const focusedElement = elementsRef.current[activeIndexRef.current];
|
|
4301
|
+
let focusedIndex = focusableElements.indexOf(focusedElement);
|
|
4302
|
+
focusedIndex = (focusedIndex + 1) % focusableLen;
|
|
4303
|
+
const el = focusableElements[focusedIndex], currentIndex = elementsRef.current.indexOf(el);
|
|
4304
|
+
setActiveIndex(currentIndex);
|
|
5224
4305
|
return;
|
|
5225
4306
|
}
|
|
5226
4307
|
onKeyDown && onKeyDown(event);
|
|
5227
|
-
},
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
const element_0 = event_0.currentTarget, currentIndex_3 = elementsRef.current.indexOf(element_0);
|
|
5232
|
-
setActiveIndex(currentIndex_3);
|
|
5233
|
-
}, $[7] = t4) : t4 = $[7];
|
|
5234
|
-
const handleItemMouseEnter = t4;
|
|
5235
|
-
let t5;
|
|
5236
|
-
$[8] !== rootElementRef ? (t5 = () => {
|
|
4308
|
+
}, [onKeyDown, originElement, setActiveIndex]), handleItemMouseEnter = react.useCallback((event) => {
|
|
4309
|
+
const element = event.currentTarget, currentIndex = elementsRef.current.indexOf(element);
|
|
4310
|
+
setActiveIndex(currentIndex);
|
|
4311
|
+
}, [setActiveIndex]), handleItemMouseLeave = react.useCallback(() => {
|
|
5237
4312
|
setActiveIndex(-2), rootElementRef.current?.focus();
|
|
5238
|
-
},
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
$[10] !== activeIndex || $[11] !== rootElementRef || $[12] !== shouldFocus ? (t6 = () => {
|
|
5242
|
-
if (!rootElementRef.current)
|
|
5243
|
-
return;
|
|
4313
|
+
}, [rootElementRef, setActiveIndex]);
|
|
4314
|
+
return react.useEffect(() => {
|
|
4315
|
+
if (!rootElementRef.current) return;
|
|
5244
4316
|
const rafId = requestAnimationFrame(() => {
|
|
5245
4317
|
if (activeIndex === -1) {
|
|
5246
4318
|
if (shouldFocus === "first") {
|
|
5247
|
-
const
|
|
5248
|
-
if (
|
|
5249
|
-
const
|
|
5250
|
-
setActiveIndex(
|
|
4319
|
+
const el = _getFocusableElements(elementsRef.current)[0];
|
|
4320
|
+
if (el) {
|
|
4321
|
+
const currentIndex = elementsRef.current.indexOf(el);
|
|
4322
|
+
setActiveIndex(currentIndex);
|
|
5251
4323
|
}
|
|
5252
4324
|
}
|
|
5253
4325
|
if (shouldFocus === "last") {
|
|
5254
|
-
const
|
|
5255
|
-
if (
|
|
5256
|
-
const
|
|
5257
|
-
setActiveIndex(
|
|
4326
|
+
const focusableElements = _getFocusableElements(elementsRef.current), el = focusableElements[focusableElements.length - 1];
|
|
4327
|
+
if (el) {
|
|
4328
|
+
const currentIndex = elementsRef.current.indexOf(el);
|
|
4329
|
+
setActiveIndex(currentIndex);
|
|
5258
4330
|
}
|
|
5259
4331
|
}
|
|
5260
4332
|
return;
|
|
@@ -5262,83 +4334,61 @@ function useMenuController(props) {
|
|
|
5262
4334
|
(elementsRef.current[activeIndex] || null)?.focus();
|
|
5263
4335
|
});
|
|
5264
4336
|
return () => cancelAnimationFrame(rafId);
|
|
5265
|
-
},
|
|
5266
|
-
let t8;
|
|
5267
|
-
return $[15] !== activeElement || $[16] !== activeIndex || $[17] !== handleItemMouseLeave || $[18] !== handleKeyDown || $[19] !== mount ? (t8 = {
|
|
4337
|
+
}, [activeIndex, rootElementRef, setActiveIndex, shouldFocus]), {
|
|
5268
4338
|
activeElement,
|
|
5269
4339
|
activeIndex,
|
|
5270
4340
|
handleItemMouseEnter,
|
|
5271
4341
|
handleItemMouseLeave,
|
|
5272
4342
|
handleKeyDown,
|
|
5273
4343
|
mount
|
|
5274
|
-
}
|
|
5275
|
-
}
|
|
5276
|
-
function _temp$1() {
|
|
4344
|
+
};
|
|
5277
4345
|
}
|
|
5278
4346
|
const StyledMenu = styledComponents.styled(Box).withConfig({
|
|
5279
4347
|
displayName: "StyledMenu",
|
|
5280
4348
|
componentId: "sc-xt0tnv-0"
|
|
5281
4349
|
})`outline:none;overflow:auto;`, Menu = react.forwardRef(function(props, forwardedRef) {
|
|
5282
|
-
const $ = reactCompilerRuntime.c(49);
|
|
5283
|
-
let _shouldFocus, children, onClickOutside, onEscape, onItemClick, onItemSelect, onKeyDown, originElement, registerElement, restProps, t0, t1;
|
|
5284
|
-
if ($[0] !== props) {
|
|
5285
|
-
const {
|
|
5286
|
-
children: t22,
|
|
5287
|
-
focusFirst,
|
|
5288
|
-
focusLast,
|
|
5289
|
-
onClickOutside: t32,
|
|
5290
|
-
onEscape: t42,
|
|
5291
|
-
onItemClick: t52,
|
|
5292
|
-
onItemSelect: t62,
|
|
5293
|
-
onKeyDown: t72,
|
|
5294
|
-
originElement: t82,
|
|
5295
|
-
padding: t92,
|
|
5296
|
-
registerElement: t102,
|
|
5297
|
-
shouldFocus: t112,
|
|
5298
|
-
space: t122,
|
|
5299
|
-
...t13
|
|
5300
|
-
} = props;
|
|
5301
|
-
children = t22, onClickOutside = t32, onEscape = t42, onItemClick = t52, onItemSelect = t62, onKeyDown = t72, originElement = t82, t0 = t92, registerElement = t102, _shouldFocus = t112, t1 = t122, restProps = t13, $[0] = props, $[1] = _shouldFocus, $[2] = children, $[3] = onClickOutside, $[4] = onEscape, $[5] = onItemClick, $[6] = onItemSelect, $[7] = onKeyDown, $[8] = originElement, $[9] = registerElement, $[10] = restProps, $[11] = t0, $[12] = t1;
|
|
5302
|
-
} else
|
|
5303
|
-
_shouldFocus = $[1], children = $[2], onClickOutside = $[3], onEscape = $[4], onItemClick = $[5], onItemSelect = $[6], onKeyDown = $[7], originElement = $[8], registerElement = $[9], restProps = $[10], t0 = $[11], t1 = $[12];
|
|
5304
|
-
const padding = t0 === void 0 ? 1 : t0, space = t1 === void 0 ? 1 : t1, shouldFocus = _shouldFocus ?? (props.focusFirst && "first" || props.focusLast && "last" || null), ref = react.useRef(null);
|
|
5305
|
-
let t2;
|
|
5306
|
-
$[13] === Symbol.for("react.memo_cache_sentinel") ? (t2 = () => ref.current, $[13] = t2) : t2 = $[13], react.useImperativeHandle(forwardedRef, t2);
|
|
5307
4350
|
const {
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
4351
|
+
children,
|
|
4352
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
4353
|
+
focusFirst,
|
|
4354
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
4355
|
+
focusLast,
|
|
4356
|
+
onClickOutside,
|
|
4357
|
+
onEscape,
|
|
4358
|
+
onItemClick,
|
|
4359
|
+
onItemSelect,
|
|
5312
4360
|
onKeyDown,
|
|
5313
4361
|
originElement,
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
4362
|
+
padding = 1,
|
|
4363
|
+
registerElement,
|
|
4364
|
+
shouldFocus: _shouldFocus,
|
|
4365
|
+
space = 1,
|
|
4366
|
+
...restProps
|
|
4367
|
+
} = props, shouldFocus = _shouldFocus ?? (props.focusFirst && "first" || props.focusLast && "last" || null), ref = react.useRef(null);
|
|
4368
|
+
react.useImperativeHandle(forwardedRef, () => ref.current);
|
|
5317
4369
|
const {
|
|
4370
|
+
isTopLayer
|
|
4371
|
+
} = useLayer(), {
|
|
5318
4372
|
activeElement,
|
|
5319
4373
|
activeIndex,
|
|
5320
4374
|
handleItemMouseEnter,
|
|
5321
4375
|
handleItemMouseLeave,
|
|
5322
4376
|
handleKeyDown,
|
|
5323
4377
|
mount
|
|
5324
|
-
} = useMenuController(
|
|
5325
|
-
|
|
5326
|
-
|
|
4378
|
+
} = useMenuController({
|
|
4379
|
+
onKeyDown,
|
|
4380
|
+
originElement,
|
|
4381
|
+
shouldFocus,
|
|
4382
|
+
rootElementRef: ref
|
|
4383
|
+
}), unregisterElementRef = react.useRef(null), handleRefChange = react.useCallback((el) => {
|
|
5327
4384
|
unregisterElementRef.current && (unregisterElementRef.current(), unregisterElementRef.current = null), ref.current = el, ref.current && registerElement && (unregisterElementRef.current = registerElement(ref.current));
|
|
5328
|
-
},
|
|
5329
|
-
|
|
5330
|
-
let t5, t6;
|
|
5331
|
-
$[20] !== activeIndex || $[21] !== onItemSelect ? (t5 = () => {
|
|
4385
|
+
}, [registerElement]);
|
|
4386
|
+
react.useEffect(() => {
|
|
5332
4387
|
onItemSelect && onItemSelect(activeIndex);
|
|
5333
|
-
},
|
|
5334
|
-
let t7;
|
|
5335
|
-
$[24] === Symbol.for("react.memo_cache_sentinel") ? (t7 = () => [ref.current], $[24] = t7) : t7 = $[24], useClickOutsideEvent(isTopLayer && onClickOutside, t7);
|
|
5336
|
-
let t8;
|
|
5337
|
-
$[25] !== isTopLayer || $[26] !== onEscape ? (t8 = (event) => {
|
|
4388
|
+
}, [activeIndex, onItemSelect]), useClickOutsideEvent(isTopLayer && onClickOutside, () => [ref.current]), useGlobalKeyDown(react.useCallback((event) => {
|
|
5338
4389
|
isTopLayer && event.key === "Escape" && (event.stopPropagation(), onEscape && onEscape());
|
|
5339
|
-
},
|
|
5340
|
-
|
|
5341
|
-
$[28] !== activeElement || $[29] !== handleItemMouseEnter || $[30] !== handleItemMouseLeave || $[31] !== mount || $[32] !== onClickOutside || $[33] !== onEscape || $[34] !== onItemClick || $[35] !== registerElement ? (t9 = {
|
|
4390
|
+
}, [isTopLayer, onEscape]));
|
|
4391
|
+
const value = react.useMemo(() => ({
|
|
5342
4392
|
version: 2,
|
|
5343
4393
|
activeElement,
|
|
5344
4394
|
mount,
|
|
@@ -5348,14 +4398,8 @@ const StyledMenu = styledComponents.styled(Box).withConfig({
|
|
|
5348
4398
|
onItemMouseEnter: handleItemMouseEnter,
|
|
5349
4399
|
onItemMouseLeave: handleItemMouseLeave,
|
|
5350
4400
|
registerElement
|
|
5351
|
-
},
|
|
5352
|
-
|
|
5353
|
-
let t10;
|
|
5354
|
-
$[37] !== children || $[38] !== space ? (t10 = /* @__PURE__ */ jsxRuntime.jsx(Stack, { space, children }), $[37] = children, $[38] = space, $[39] = t10) : t10 = $[39];
|
|
5355
|
-
let t11;
|
|
5356
|
-
$[40] !== handleKeyDown || $[41] !== handleRefChange || $[42] !== padding || $[43] !== restProps || $[44] !== t10 ? (t11 = /* @__PURE__ */ jsxRuntime.jsx(StyledMenu, { "data-ui": "Menu", ...restProps, onKeyDown: handleKeyDown, padding, ref: handleRefChange, role: "menu", tabIndex: -1, children: t10 }), $[40] = handleKeyDown, $[41] = handleRefChange, $[42] = padding, $[43] = restProps, $[44] = t10, $[45] = t11) : t11 = $[45];
|
|
5357
|
-
let t12;
|
|
5358
|
-
return $[46] !== t11 || $[47] !== value ? (t12 = /* @__PURE__ */ jsxRuntime.jsx(MenuContext.Provider, { value, children: t11 }), $[46] = t11, $[47] = value, $[48] = t12) : t12 = $[48], t12;
|
|
4401
|
+
}), [activeElement, mount, handleItemMouseEnter, handleItemMouseLeave, onClickOutside, onEscape, onItemClick, registerElement]);
|
|
4402
|
+
return /* @__PURE__ */ jsxRuntime.jsx(MenuContext.Provider, { value, children: /* @__PURE__ */ jsxRuntime.jsx(StyledMenu, { "data-ui": "Menu", ...restProps, onKeyDown: handleKeyDown, padding, ref: handleRefChange, role: "menu", tabIndex: -1, children: /* @__PURE__ */ jsxRuntime.jsx(Stack, { space, children }) }) });
|
|
5359
4403
|
});
|
|
5360
4404
|
Menu.displayName = "ForwardRef(Menu)";
|
|
5361
4405
|
const MenuDivider = styledComponents.styled.hr.withConfig({
|
|
@@ -5477,24 +4521,21 @@ function useMenu() {
|
|
|
5477
4521
|
return value;
|
|
5478
4522
|
}
|
|
5479
4523
|
function MenuGroup(props) {
|
|
5480
|
-
const
|
|
5481
|
-
|
|
5482
|
-
$[0] !== props ? ({
|
|
5483
|
-
as: t0,
|
|
4524
|
+
const {
|
|
4525
|
+
as = "button",
|
|
5484
4526
|
children,
|
|
5485
|
-
fontSize:
|
|
4527
|
+
fontSize: fontSize2 = 1,
|
|
5486
4528
|
icon: IconComponent,
|
|
5487
4529
|
menu: menuProps,
|
|
5488
4530
|
onClick,
|
|
5489
|
-
padding
|
|
4531
|
+
padding = 3,
|
|
5490
4532
|
popover,
|
|
5491
|
-
radius
|
|
5492
|
-
space
|
|
4533
|
+
radius = 2,
|
|
4534
|
+
space = 3,
|
|
5493
4535
|
text,
|
|
5494
|
-
tone
|
|
4536
|
+
tone = "default",
|
|
5495
4537
|
...restProps
|
|
5496
|
-
} = props,
|
|
5497
|
-
const as = t0 === void 0 ? "button" : t0, fontSize2 = t1 === void 0 ? 1 : t1, padding = t2 === void 0 ? 3 : t2, radius = t3 === void 0 ? 2 : t3, space = t4 === void 0 ? 3 : t4, tone = t5 === void 0 ? "default" : t5, menu = useMenu(), {
|
|
4538
|
+
} = props, menu = useMenu(), {
|
|
5498
4539
|
scheme
|
|
5499
4540
|
} = useRootTheme(), {
|
|
5500
4541
|
activeElement,
|
|
@@ -5504,100 +4545,54 @@ function MenuGroup(props) {
|
|
|
5504
4545
|
onItemClick,
|
|
5505
4546
|
onItemMouseEnter: _onItemMouseEnter,
|
|
5506
4547
|
registerElement
|
|
5507
|
-
} = menu, onItemMouseEnter = _onItemMouseEnter ?? menu.onItemMouseEnter, [rootElement, setRootElement] = react.useState(null), [open, setOpen] = react.useState(!1), [shouldFocus, setShouldFocus] = react.useState(null), active = !!activeElement && activeElement === rootElement, [withinMenu, setWithinMenu] = react.useState(!1)
|
|
5508
|
-
let t6;
|
|
5509
|
-
$[14] !== onItemMouseEnter ? (t6 = (event) => {
|
|
4548
|
+
} = menu, onItemMouseEnter = _onItemMouseEnter ?? menu.onItemMouseEnter, [rootElement, setRootElement] = react.useState(null), [open, setOpen] = react.useState(!1), [shouldFocus, setShouldFocus] = react.useState(null), active = !!activeElement && activeElement === rootElement, [withinMenu, setWithinMenu] = react.useState(!1), handleMouseEnter = react.useCallback((event) => {
|
|
5510
4549
|
setWithinMenu(!1), onItemMouseEnter(event), setOpen(!0);
|
|
5511
|
-
},
|
|
5512
|
-
|
|
5513
|
-
let t7;
|
|
5514
|
-
$[16] !== rootElement ? (t7 = (event_0) => {
|
|
5515
|
-
event_0.key === "ArrowLeft" && (event_0.stopPropagation(), setOpen(!1), requestAnimationFrame(() => {
|
|
4550
|
+
}, [onItemMouseEnter]), handleMenuKeyDown = react.useCallback((event) => {
|
|
4551
|
+
event.key === "ArrowLeft" && (event.stopPropagation(), setOpen(!1), requestAnimationFrame(() => {
|
|
5516
4552
|
rootElement?.focus();
|
|
5517
4553
|
}));
|
|
5518
|
-
},
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
$[18] !== onClick ? (t8 = (event_1) => {
|
|
5522
|
-
onClick?.(event_1), setShouldFocus("first"), setOpen(!0);
|
|
5523
|
-
}, $[18] = onClick, $[19] = t8) : t8 = $[19];
|
|
5524
|
-
const handleClick = t8;
|
|
5525
|
-
let t9;
|
|
5526
|
-
$[20] !== onItemClick ? (t9 = () => {
|
|
4554
|
+
}, [rootElement]), handleClick = react.useCallback((event) => {
|
|
4555
|
+
onClick?.(event), setShouldFocus("first"), setOpen(!0);
|
|
4556
|
+
}, [onClick]), handleChildItemClick = react.useCallback(() => {
|
|
5527
4557
|
setOpen(!1), onItemClick?.();
|
|
5528
|
-
},
|
|
5529
|
-
|
|
5530
|
-
let t10;
|
|
5531
|
-
$[22] === Symbol.for("react.memo_cache_sentinel") ? (t10 = () => setWithinMenu(!0), $[22] = t10) : t10 = $[22];
|
|
5532
|
-
const handleMenuMouseEnter = t10;
|
|
5533
|
-
let t11, t12;
|
|
5534
|
-
$[23] !== mount || $[24] !== rootElement ? (t11 = () => mount(rootElement), t12 = [mount, rootElement], $[23] = mount, $[24] = rootElement, $[25] = t11, $[26] = t12) : (t11 = $[25], t12 = $[26]), react.useEffect(t11, t12);
|
|
5535
|
-
let t13, t14;
|
|
5536
|
-
$[27] !== active ? (t13 = () => {
|
|
4558
|
+
}, [onItemClick]), handleMenuMouseEnter = react.useCallback(() => setWithinMenu(!0), []);
|
|
4559
|
+
react.useEffect(() => mount(rootElement), [mount, rootElement]), react.useEffect(() => {
|
|
5537
4560
|
active || setOpen(!1);
|
|
5538
|
-
},
|
|
5539
|
-
let t15, t16;
|
|
5540
|
-
$[30] !== open ? (t15 = () => {
|
|
4561
|
+
}, [active]), react.useEffect(() => {
|
|
5541
4562
|
open || setWithinMenu(!1);
|
|
5542
|
-
},
|
|
5543
|
-
|
|
5544
|
-
$[33] !== shouldFocus ? (t17 = () => {
|
|
5545
|
-
if (!shouldFocus)
|
|
5546
|
-
return;
|
|
4563
|
+
}, [open]), react.useEffect(() => {
|
|
4564
|
+
if (!shouldFocus) return;
|
|
5547
4565
|
const rafId = requestAnimationFrame(() => setShouldFocus(null));
|
|
5548
4566
|
return () => cancelAnimationFrame(rafId);
|
|
5549
|
-
},
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
let t20;
|
|
5554
|
-
$[45] === Symbol.for("react.memo_cache_sentinel") ? (t20 = (event_2) => {
|
|
5555
|
-
const target = event_2.currentTarget;
|
|
5556
|
-
if (document.activeElement === target && event_2.key === "ArrowRight") {
|
|
4567
|
+
}, [shouldFocus]);
|
|
4568
|
+
const childMenu = /* @__PURE__ */ jsxRuntime.jsx(Menu, { ...menuProps, onClickOutside, onEscape, onItemClick: handleChildItemClick, onKeyDown: handleMenuKeyDown, onMouseEnter: handleMenuMouseEnter, registerElement, shouldFocus, children }), handleKeyDown = react.useCallback((event) => {
|
|
4569
|
+
const target = event.currentTarget;
|
|
4570
|
+
if (document.activeElement === target && event.key === "ArrowRight") {
|
|
5557
4571
|
setShouldFocus("first"), setOpen(!0), setWithinMenu(!0);
|
|
5558
4572
|
return;
|
|
5559
4573
|
}
|
|
5560
|
-
},
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
] }), $[48] = IconComponent, $[49] = fontSize2, $[50] = t26) : t26 = $[50];
|
|
5570
|
-
let t27;
|
|
5571
|
-
$[51] !== fontSize2 || $[52] !== text ? (t27 = /* @__PURE__ */ jsxRuntime.jsx(Box, { flex: 1, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, textOverflow: "ellipsis", weight: "medium", children: text }) }), $[51] = fontSize2, $[52] = text, $[53] = t27) : t27 = $[53];
|
|
5572
|
-
let t28;
|
|
5573
|
-
$[54] === Symbol.for("react.memo_cache_sentinel") ? (t28 = /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronRightIcon, {}), $[54] = t28) : t28 = $[54];
|
|
5574
|
-
let t29;
|
|
5575
|
-
$[55] !== fontSize2 ? (t29 = /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: t28 }), $[55] = fontSize2, $[56] = t29) : t29 = $[56];
|
|
5576
|
-
let t30;
|
|
5577
|
-
$[57] !== padding || $[58] !== space || $[59] !== t26 || $[60] !== t27 || $[61] !== t29 ? (t30 = /* @__PURE__ */ jsxRuntime.jsxs(Flex, { gap: space, padding, children: [
|
|
5578
|
-
t26,
|
|
5579
|
-
t27,
|
|
5580
|
-
t29
|
|
5581
|
-
] }), $[57] = padding, $[58] = space, $[59] = t26, $[60] = t27, $[61] = t29, $[62] = t30) : t30 = $[62];
|
|
5582
|
-
let t31;
|
|
5583
|
-
$[63] !== as || $[64] !== handleClick || $[65] !== handleMouseEnter || $[66] !== restProps || $[67] !== scheme || $[68] !== t21 || $[69] !== t22 || $[70] !== t23 || $[71] !== t24 || $[72] !== t25 || $[73] !== t30 || $[74] !== tone ? (t31 = /* @__PURE__ */ jsxRuntime.jsx(Selectable, { "data-as": as, "data-ui": "MenuGroup", forwardedAs: as, ...restProps, "aria-pressed": t21, "data-pressed": t22, "data-selected": t23, $radius: t24, $tone: tone, $scheme: scheme, onClick: handleClick, onKeyDown: handleKeyDown, onMouseEnter: handleMouseEnter, ref: setRootElement, tabIndex: -1, type: t25, children: t30 }), $[63] = as, $[64] = handleClick, $[65] = handleMouseEnter, $[66] = restProps, $[67] = scheme, $[68] = t21, $[69] = t22, $[70] = t23, $[71] = t24, $[72] = t25, $[73] = t30, $[74] = tone, $[75] = t31) : t31 = $[75];
|
|
5584
|
-
let t32;
|
|
5585
|
-
return $[76] !== childMenu || $[77] !== open || $[78] !== popover || $[79] !== t31 ? (t32 = /* @__PURE__ */ jsxRuntime.jsx(Popover, { ...popover, content: childMenu, "data-ui": "MenuGroup__popover", open, children: t31 }), $[76] = childMenu, $[77] = open, $[78] = popover, $[79] = t31, $[80] = t32) : t32 = $[80], t32;
|
|
4574
|
+
}, []);
|
|
4575
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Popover, { ...popover, content: childMenu, "data-ui": "MenuGroup__popover", open, children: /* @__PURE__ */ jsxRuntime.jsx(Selectable, { "data-as": as, "data-ui": "MenuGroup", forwardedAs: as, ...restProps, "aria-pressed": as === "button" ? withinMenu : void 0, "data-pressed": as !== "button" ? withinMenu : void 0, "data-selected": !withinMenu && active ? "" : void 0, $radius: _getArrayProp(radius), $tone: tone, $scheme: scheme, onClick: handleClick, onKeyDown: handleKeyDown, onMouseEnter: handleMouseEnter, ref: setRootElement, tabIndex: -1, type: as === "button" ? "button" : void 0, children: /* @__PURE__ */ jsxRuntime.jsxs(Flex, { gap: space, padding, children: [
|
|
4576
|
+
IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4577
|
+
react.isValidElement(IconComponent) && IconComponent,
|
|
4578
|
+
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
4579
|
+
] }),
|
|
4580
|
+
/* @__PURE__ */ jsxRuntime.jsx(Box, { flex: 1, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, textOverflow: "ellipsis", weight: "medium", children: text }) }),
|
|
4581
|
+
/* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, children: /* @__PURE__ */ jsxRuntime.jsx(icons.ChevronRightIcon, {}) })
|
|
4582
|
+
] }) }) });
|
|
5586
4583
|
}
|
|
5587
4584
|
MenuGroup.displayName = "MenuGroup";
|
|
5588
4585
|
const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
5589
|
-
const
|
|
5590
|
-
|
|
5591
|
-
$[0] !== props ? ({
|
|
5592
|
-
as: t0,
|
|
4586
|
+
const {
|
|
4587
|
+
as = "button",
|
|
5593
4588
|
children,
|
|
5594
4589
|
disabled,
|
|
5595
|
-
fontSize:
|
|
4590
|
+
fontSize: fontSize2 = 1,
|
|
5596
4591
|
hotkeys,
|
|
5597
4592
|
icon: IconComponent,
|
|
5598
4593
|
iconRight: IconRightComponent,
|
|
5599
4594
|
onClick,
|
|
5600
|
-
padding
|
|
4595
|
+
padding = 3,
|
|
5601
4596
|
paddingX,
|
|
5602
4597
|
paddingY,
|
|
5603
4598
|
paddingTop,
|
|
@@ -5605,14 +4600,13 @@ const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
|
5605
4600
|
paddingBottom,
|
|
5606
4601
|
paddingLeft,
|
|
5607
4602
|
pressed,
|
|
5608
|
-
radius
|
|
4603
|
+
radius = 2,
|
|
5609
4604
|
selected: selectedProp,
|
|
5610
|
-
space
|
|
4605
|
+
space = 3,
|
|
5611
4606
|
text,
|
|
5612
|
-
tone
|
|
4607
|
+
tone = "default",
|
|
5613
4608
|
...restProps
|
|
5614
|
-
} = props,
|
|
5615
|
-
const as = t0 === void 0 ? "button" : t0, fontSize2 = t1 === void 0 ? 1 : t1, padding = t2 === void 0 ? 3 : t2, radius = t3 === void 0 ? 2 : t3, space = t4 === void 0 ? 3 : t4, tone = t5 === void 0 ? "default" : t5, {
|
|
4609
|
+
} = props, {
|
|
5616
4610
|
scheme
|
|
5617
4611
|
} = useRootTheme(), menu = useMenu(), {
|
|
5618
4612
|
activeElement,
|
|
@@ -5621,17 +4615,10 @@ const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
|
5621
4615
|
onItemMouseEnter: _onItemMouseEnter,
|
|
5622
4616
|
onItemMouseLeave: _onItemMouseLeave
|
|
5623
4617
|
} = menu, onItemMouseEnter = _onItemMouseEnter ?? menu.onItemMouseEnter, onItemMouseLeave = _onItemMouseLeave ?? menu.onItemMouseLeave, [rootElement, setRootElement] = react.useState(null), active = !!activeElement && activeElement === rootElement, ref = react.useRef(null);
|
|
5624
|
-
|
|
5625
|
-
|
|
5626
|
-
let t7, t8;
|
|
5627
|
-
$[24] !== mount || $[25] !== rootElement || $[26] !== selectedProp ? (t7 = () => mount(rootElement, selectedProp), t8 = [mount, rootElement, selectedProp], $[24] = mount, $[25] = rootElement, $[26] = selectedProp, $[27] = t7, $[28] = t8) : (t7 = $[27], t8 = $[28]), react.useEffect(t7, t8);
|
|
5628
|
-
let t9;
|
|
5629
|
-
$[29] !== disabled || $[30] !== onClick || $[31] !== onItemClick ? (t9 = (event) => {
|
|
4618
|
+
react.useImperativeHandle(forwardedRef, () => ref.current), react.useEffect(() => mount(rootElement, selectedProp), [mount, rootElement, selectedProp]);
|
|
4619
|
+
const handleClick = react.useCallback((event) => {
|
|
5630
4620
|
disabled || (onClick && onClick(event), onItemClick && onItemClick());
|
|
5631
|
-
},
|
|
5632
|
-
const handleClick = t9;
|
|
5633
|
-
let t10;
|
|
5634
|
-
$[33] !== padding || $[34] !== paddingBottom || $[35] !== paddingLeft || $[36] !== paddingRight || $[37] !== paddingTop || $[38] !== paddingX || $[39] !== paddingY ? (t10 = {
|
|
4621
|
+
}, [disabled, onClick, onItemClick]), paddingProps = react.useMemo(() => ({
|
|
5635
4622
|
padding,
|
|
5636
4623
|
paddingX,
|
|
5637
4624
|
paddingY,
|
|
@@ -5639,119 +4626,71 @@ const MenuItem = react.forwardRef(function(props, forwardedRef) {
|
|
|
5639
4626
|
paddingRight,
|
|
5640
4627
|
paddingBottom,
|
|
5641
4628
|
paddingLeft
|
|
5642
|
-
},
|
|
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;
|
|
5647
|
-
let t12;
|
|
5648
|
-
$[43] === Symbol.for("react.memo_cache_sentinel") ? (t12 = (el) => {
|
|
4629
|
+
}), [padding, paddingX, paddingY, paddingTop, paddingRight, paddingBottom, paddingLeft]), hotkeysFontSize = _getArrayProp(fontSize2).map((s) => s - 1), setRef = react.useCallback((el) => {
|
|
5649
4630
|
ref.current = el, setRootElement(el);
|
|
5650
|
-
},
|
|
5651
|
-
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
|
|
5658
|
-
|
|
5659
|
-
|
|
5660
|
-
|
|
5661
|
-
|
|
4631
|
+
}, []);
|
|
4632
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(Selectable, { "data-ui": "MenuItem", role: "menuitem", ...restProps, "data-pressed": as !== "button" && pressed ? "" : void 0, "data-selected": active ? "" : void 0, "data-disabled": disabled ? "" : void 0, forwardedAs: as, $radius: _getArrayProp(radius), $padding: _getArrayProp(0), $tone: disabled ? "default" : tone, $scheme: scheme, disabled, onClick: handleClick, onMouseEnter: onItemMouseEnter, onMouseLeave: onItemMouseLeave, ref: setRef, tabIndex: -1, type: as === "button" ? "button" : void 0, children: [
|
|
4633
|
+
(IconComponent || text || IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsxs(Flex, { as: "span", gap: space, align: "center", ...paddingProps, children: [
|
|
4634
|
+
IconComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4635
|
+
react.isValidElement(IconComponent) && IconComponent,
|
|
4636
|
+
ReactIs.isValidElementType(IconComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconComponent, {})
|
|
4637
|
+
] }),
|
|
4638
|
+
text && /* @__PURE__ */ jsxRuntime.jsx(Box, { flex: 1, children: /* @__PURE__ */ jsxRuntime.jsx(Text, { size: fontSize2, textOverflow: "ellipsis", weight: "medium", children: text }) }),
|
|
4639
|
+
hotkeys && /* @__PURE__ */ jsxRuntime.jsx(Hotkeys, { fontSize: hotkeysFontSize, keys: hotkeys, style: {
|
|
4640
|
+
marginTop: -4,
|
|
4641
|
+
marginBottom: -4
|
|
4642
|
+
} }),
|
|
4643
|
+
IconRightComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
4644
|
+
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
4645
|
+
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
4646
|
+
] })
|
|
5662
4647
|
] }),
|
|
5663
|
-
|
|
5664
|
-
|
|
5665
|
-
marginTop: -4,
|
|
5666
|
-
marginBottom: -4
|
|
5667
|
-
} }),
|
|
5668
|
-
IconRightComponent && /* @__PURE__ */ jsxRuntime.jsxs(Text, { size: fontSize2, children: [
|
|
5669
|
-
react.isValidElement(IconRightComponent) && IconRightComponent,
|
|
5670
|
-
ReactIs.isValidElementType(IconRightComponent) && /* @__PURE__ */ jsxRuntime.jsx(IconRightComponent, {})
|
|
5671
|
-
] })
|
|
5672
|
-
] }), $[47] = IconComponent, $[48] = IconRightComponent, $[49] = fontSize2, $[50] = hotkeys, $[51] = hotkeysFontSize, $[52] = paddingProps, $[53] = space, $[54] = text, $[55] = t20) : t20 = $[55];
|
|
5673
|
-
let t21;
|
|
5674
|
-
$[56] !== children || $[57] !== paddingProps ? (t21 = children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...paddingProps, children }), $[56] = children, $[57] = paddingProps, $[58] = t21) : t21 = $[58];
|
|
5675
|
-
let t22;
|
|
5676
|
-
return $[59] !== as || $[60] !== disabled || $[61] !== handleClick || $[62] !== onItemMouseEnter || $[63] !== onItemMouseLeave || $[64] !== restProps || $[65] !== scheme || $[66] !== t13 || $[67] !== t14 || $[68] !== t15 || $[69] !== t16 || $[70] !== t18 || $[71] !== t19 || $[72] !== t20 || $[73] !== t21 ? (t22 = /* @__PURE__ */ jsxRuntime.jsxs(Selectable, { "data-ui": "MenuItem", role: "menuitem", ...restProps, "data-pressed": t13, "data-selected": t14, "data-disabled": t15, forwardedAs: as, $radius: t16, $padding: t17, $tone: t18, $scheme: scheme, disabled, onClick: handleClick, onMouseEnter: onItemMouseEnter, onMouseLeave: onItemMouseLeave, ref: setRef, tabIndex: -1, type: t19, children: [
|
|
5677
|
-
t20,
|
|
5678
|
-
t21
|
|
5679
|
-
] }), $[59] = as, $[60] = disabled, $[61] = handleClick, $[62] = onItemMouseEnter, $[63] = onItemMouseLeave, $[64] = restProps, $[65] = scheme, $[66] = t13, $[67] = t14, $[68] = t15, $[69] = t16, $[70] = t18, $[71] = t19, $[72] = t20, $[73] = t21, $[74] = t22) : t22 = $[74], t22;
|
|
4648
|
+
children && /* @__PURE__ */ jsxRuntime.jsx(Box, { as: "span", ...paddingProps, children })
|
|
4649
|
+
] });
|
|
5680
4650
|
});
|
|
5681
4651
|
MenuItem.displayName = "ForwardRef(MenuItem)";
|
|
5682
|
-
function _temp(s) {
|
|
5683
|
-
return s - 1;
|
|
5684
|
-
}
|
|
5685
4652
|
const CustomButton = styledComponents.styled(Button).withConfig({
|
|
5686
4653
|
displayName: "CustomButton",
|
|
5687
4654
|
componentId: "sc-1kns779-0"
|
|
5688
4655
|
})`max-width:100%;`, Tab = react.forwardRef(function(props, forwardedRef) {
|
|
5689
|
-
const
|
|
5690
|
-
let focused, icon, id, label, onClick, onFocus, restProps, selected, t0, t1;
|
|
5691
|
-
$[0] !== props ? ({
|
|
4656
|
+
const {
|
|
5692
4657
|
icon,
|
|
5693
4658
|
id,
|
|
5694
4659
|
focused,
|
|
5695
|
-
fontSize:
|
|
4660
|
+
fontSize: fontSize2 = 1,
|
|
5696
4661
|
label,
|
|
5697
4662
|
onClick,
|
|
5698
4663
|
onFocus,
|
|
5699
|
-
padding
|
|
4664
|
+
padding = 2,
|
|
5700
4665
|
selected,
|
|
5701
4666
|
...restProps
|
|
5702
|
-
} = props,
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
$[11] === Symbol.for("react.memo_cache_sentinel") ? (t2 = () => ref.current, $[11] = t2) : t2 = $[11], react.useImperativeHandle(forwardedRef, t2);
|
|
5706
|
-
let t3;
|
|
5707
|
-
$[12] === Symbol.for("react.memo_cache_sentinel") ? (t3 = () => {
|
|
4667
|
+
} = props, ref = react.useRef(null), focusedRef = react.useRef(!1);
|
|
4668
|
+
react.useImperativeHandle(forwardedRef, () => ref.current);
|
|
4669
|
+
const handleBlur = react.useCallback(() => {
|
|
5708
4670
|
focusedRef.current = !1;
|
|
5709
|
-
},
|
|
5710
|
-
const handleBlur = t3;
|
|
5711
|
-
let t4;
|
|
5712
|
-
$[13] !== onFocus ? (t4 = (event) => {
|
|
4671
|
+
}, []), handleFocus = react.useCallback((event) => {
|
|
5713
4672
|
focusedRef.current = !0, onFocus && onFocus(event);
|
|
5714
|
-
},
|
|
5715
|
-
|
|
5716
|
-
let t5, t6;
|
|
5717
|
-
$[15] !== focused ? (t5 = () => {
|
|
4673
|
+
}, [onFocus]);
|
|
4674
|
+
return react.useEffect(() => {
|
|
5718
4675
|
focused && !focusedRef.current && (ref.current && ref.current.focus(), focusedRef.current = !0);
|
|
5719
|
-
},
|
|
5720
|
-
const t7 = selected ? "true" : "false", t8 = selected ? 0 : -1;
|
|
5721
|
-
let t9;
|
|
5722
|
-
return $[18] !== fontSize2 || $[19] !== handleFocus || $[20] !== icon || $[21] !== id || $[22] !== label || $[23] !== onClick || $[24] !== padding || $[25] !== restProps || $[26] !== selected || $[27] !== t7 || $[28] !== t8 ? (t9 = /* @__PURE__ */ jsxRuntime.jsx(CustomButton, { "data-ui": "Tab", ...restProps, "aria-selected": t7, fontSize: fontSize2, icon, id, mode: "bleed", onClick, onBlur: handleBlur, onFocus: handleFocus, padding, ref, role: "tab", selected, tabIndex: t8, text: label, type: "button" }), $[18] = fontSize2, $[19] = handleFocus, $[20] = icon, $[21] = id, $[22] = label, $[23] = onClick, $[24] = padding, $[25] = restProps, $[26] = selected, $[27] = t7, $[28] = t8, $[29] = t9) : t9 = $[29], t9;
|
|
4676
|
+
}, [focused]), /* @__PURE__ */ jsxRuntime.jsx(CustomButton, { "data-ui": "Tab", ...restProps, "aria-selected": selected ? "true" : "false", fontSize: fontSize2, icon, id, mode: "bleed", onClick, onBlur: handleBlur, onFocus: handleFocus, padding, ref, role: "tab", selected, tabIndex: selected ? 0 : -1, text: label, type: "button" });
|
|
5723
4677
|
});
|
|
5724
4678
|
Tab.displayName = "ForwardRef(Tab)";
|
|
5725
4679
|
const CustomInline = styledComponents.styled(Inline).withConfig({
|
|
5726
4680
|
displayName: "CustomInline",
|
|
5727
4681
|
componentId: "sc-5cm04m-0"
|
|
5728
4682
|
})`& > div{display:inline-block;vertical-align:middle;max-width:100%;box-sizing:border-box;}`, TabList = react.forwardRef(function(props, ref) {
|
|
5729
|
-
const
|
|
5730
|
-
let childrenProp, restProps;
|
|
5731
|
-
$[0] !== props ? ({
|
|
4683
|
+
const {
|
|
5732
4684
|
children: childrenProp,
|
|
5733
4685
|
...restProps
|
|
5734
|
-
} = props,
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
|
|
5738
|
-
|
|
5739
|
-
|
|
5740
|
-
|
|
5741
|
-
|
|
5742
|
-
key: childIndex,
|
|
5743
|
-
onFocus: () => setFocusedIndex(childIndex)
|
|
5744
|
-
}), $[6] = focusedIndex, $[7] = t12) : t12 = $[7], t0 = children.map(t12), $[3] = childrenProp, $[4] = focusedIndex, $[5] = t0;
|
|
5745
|
-
} else
|
|
5746
|
-
t0 = $[5];
|
|
5747
|
-
const tabs = t0, numTabs = tabs.length;
|
|
5748
|
-
let t1;
|
|
5749
|
-
$[8] !== numTabs ? (t1 = (event) => {
|
|
5750
|
-
event.key === "ArrowLeft" && setFocusedIndex((prevIndex) => (prevIndex + numTabs - 1) % numTabs), event.key === "ArrowRight" && setFocusedIndex((prevIndex_0) => (prevIndex_0 + 1) % numTabs);
|
|
5751
|
-
}, $[8] = numTabs, $[9] = t1) : t1 = $[9];
|
|
5752
|
-
const handleKeyDown = t1;
|
|
5753
|
-
let t2;
|
|
5754
|
-
return $[10] !== handleKeyDown || $[11] !== ref || $[12] !== restProps || $[13] !== tabs ? (t2 = /* @__PURE__ */ jsxRuntime.jsx(CustomInline, { "data-ui": "TabList", ...restProps, onKeyDown: handleKeyDown, ref, role: "tablist", children: tabs }), $[10] = handleKeyDown, $[11] = ref, $[12] = restProps, $[13] = tabs, $[14] = t2) : t2 = $[14], t2;
|
|
4686
|
+
} = props, [focusedIndex, setFocusedIndex] = react.useState(-1), tabs = react.Children.toArray(childrenProp).filter(react.isValidElement).map((child, childIndex) => react.cloneElement(child, {
|
|
4687
|
+
focused: focusedIndex === childIndex,
|
|
4688
|
+
key: childIndex,
|
|
4689
|
+
onFocus: () => setFocusedIndex(childIndex)
|
|
4690
|
+
})), numTabs = tabs.length, handleKeyDown = react.useCallback((event) => {
|
|
4691
|
+
event.key === "ArrowLeft" && setFocusedIndex((prevIndex) => (prevIndex + numTabs - 1) % numTabs), event.key === "ArrowRight" && setFocusedIndex((prevIndex) => (prevIndex + 1) % numTabs);
|
|
4692
|
+
}, [numTabs]);
|
|
4693
|
+
return /* @__PURE__ */ jsxRuntime.jsx(CustomInline, { "data-ui": "TabList", ...restProps, onKeyDown: handleKeyDown, ref, role: "tablist", children: tabs });
|
|
5755
4694
|
});
|
|
5756
4695
|
TabList.displayName = "ForwardRef(TabList)";
|
|
5757
4696
|
exports.Arrow = Arrow;
|