@sanity/ui 2.3.4 → 2.3.6-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/index.esm.js +12 -18
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +10 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +25 -33
- package/src/core/components/breadcrumbs/breadcrumbs.tsx +1 -7
- package/src/core/components/tree/tree.tsx +1 -1
- package/src/core/primitives/avatar/avatarStack.tsx +5 -5
- package/src/core/primitives/inline/inline.tsx +2 -6
- package/src/core/primitives/tooltip/tooltip.tsx +4 -0
- package/src/core/primitives/helpers.ts +0 -11
package/dist/index.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { buildTheme, createColorTheme as createColorTheme$1, hexToRgb as hexToRgb$1, hslToRgb as hslToRgb$1, multiply as multiply$1, parseColor as parseColor$1, rgbToHex as rgbToHex$1, rgbToHsl as rgbToHsl$1, rgba as rgba$1, screen as screen$1, getTheme_v2, getScopedTheme } from "@sanity/ui/theme";
|
|
2
2
|
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
3
|
-
import { useMemo, useState, useRef, useEffect, createContext, useContext, useSyncExternalStore, useImperativeHandle, forwardRef, useId, useCallback,
|
|
4
|
-
import ReactIs, {
|
|
3
|
+
import { useMemo, useState, useRef, useEffect, createContext, useContext, useSyncExternalStore, useImperativeHandle, forwardRef, useId, useCallback, Children, isValidElement, cloneElement, Component, memo, useReducer, Fragment as Fragment$1, startTransition } from "react";
|
|
4
|
+
import ReactIs, { isValidElementType } from "react-is";
|
|
5
5
|
import { ThemeProvider as ThemeProvider$1, useTheme as useTheme$1, css, styled, keyframes } from "styled-components";
|
|
6
6
|
import { SpinnerIcon, CheckmarkIcon, RemoveIcon, ChevronDownIcon, CloseIcon, ChevronRightIcon, ToggleArrowRightIcon } from "@sanity/icons";
|
|
7
7
|
import Refractor from "react-refractor";
|
|
@@ -1528,13 +1528,7 @@ const Root$A = styled.div(
|
|
|
1528
1528
|
[size2]
|
|
1529
1529
|
);
|
|
1530
1530
|
return /* @__PURE__ */ jsx(Root$A, { $size: size2, "data-ui": "AvatarCounter", ref, children: /* @__PURE__ */ jsx(Label, { as: "span", size: fontSize2, weight: "medium", children: count }) });
|
|
1531
|
-
})
|
|
1532
|
-
function childrenToElementArray(children) {
|
|
1533
|
-
return (Array.isArray(children) ? children : [children]).filter(
|
|
1534
|
-
(node) => isElement$1(node) || isFragment(node) || typeof node == "string"
|
|
1535
|
-
);
|
|
1536
|
-
}
|
|
1537
|
-
const BASE_STYLES = css`
|
|
1531
|
+
}), BASE_STYLES = css`
|
|
1538
1532
|
white-space: nowrap;
|
|
1539
1533
|
|
|
1540
1534
|
& > div {
|
|
@@ -1565,8 +1559,9 @@ const Root$z = styled.div(responsiveAvatarStackSizeStyle, avatarStackStyle), Ava
|
|
|
1565
1559
|
maxLength: maxLengthProp = 4,
|
|
1566
1560
|
size: sizeProp = 1,
|
|
1567
1561
|
...restProps
|
|
1568
|
-
} = props, children =
|
|
1569
|
-
(
|
|
1562
|
+
} = props, children = useMemo(
|
|
1563
|
+
() => Children.toArray(childrenProp).filter(isValidElement),
|
|
1564
|
+
[childrenProp]
|
|
1570
1565
|
), maxLength = Math.max(maxLengthProp, 0), size2 = useArrayProp(sizeProp), len = children.length, visibleCount = maxLength - 1, extraCount = len - visibleCount, visibleChildren = extraCount > 1 ? children.slice(extraCount, len) : children;
|
|
1571
1566
|
return /* @__PURE__ */ jsxs(Root$z, { "data-ui": "AvatarStack", ...restProps, ref, $size: size2, children: [
|
|
1572
1567
|
len === 0 && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(AvatarCounter, { count: len, size: size2 }) }),
|
|
@@ -2640,7 +2635,7 @@ function inlineSpaceStyle(props) {
|
|
|
2640
2635
|
}
|
|
2641
2636
|
const Root$m = styled(Box)(inlineBaseStyle, inlineSpaceStyle), Inline = forwardRef(function(props, ref) {
|
|
2642
2637
|
const { as, children: childrenProp, space, ...restProps } = props, children = useMemo(
|
|
2643
|
-
() =>
|
|
2638
|
+
() => Children.map(childrenProp, (child) => child && /* @__PURE__ */ jsx("div", { children: child })),
|
|
2644
2639
|
[childrenProp]
|
|
2645
2640
|
);
|
|
2646
2641
|
return /* @__PURE__ */ jsx(
|
|
@@ -4475,7 +4470,9 @@ const Root$a = styled(Layer)`
|
|
|
4475
4470
|
ref.current = node, refs.setFloating(node);
|
|
4476
4471
|
},
|
|
4477
4472
|
[refs]
|
|
4478
|
-
), childRef = useRef(null)
|
|
4473
|
+
), childRef = useRef(null);
|
|
4474
|
+
useImperativeHandle(childProp == null ? void 0 : childProp.ref, () => childRef.current);
|
|
4475
|
+
const child = useMemo(() => childProp ? cloneElement(childProp, {
|
|
4479
4476
|
onBlur: handleBlur,
|
|
4480
4477
|
onFocus: handleFocus,
|
|
4481
4478
|
onMouseEnter: handleMouseEnter,
|
|
@@ -4957,10 +4954,7 @@ const AUTOCOMPLETE_LISTBOX_IGNORE_KEYS = [
|
|
|
4957
4954
|
`, Breadcrumbs = forwardRef(function(props, ref) {
|
|
4958
4955
|
const { children, maxLength, separator, space: spaceRaw = 2, ...restProps } = props, space = useArrayProp(spaceRaw), [open, setOpen] = useState(!1), [expandElement, setExpandElement] = useState(null), [popoverElement, setPopoverElement] = useState(null), collapse = useCallback(() => setOpen(!1), []), expand = useCallback(() => setOpen(!0), []);
|
|
4959
4956
|
useClickOutside(collapse, [expandElement, popoverElement]);
|
|
4960
|
-
const rawItems = useMemo(
|
|
4961
|
-
() => Children.toArray(children).filter((child) => isValidElement(child)),
|
|
4962
|
-
[children]
|
|
4963
|
-
), items = useMemo(() => {
|
|
4957
|
+
const rawItems = useMemo(() => Children.toArray(children).filter(isValidElement), [children]), items = useMemo(() => {
|
|
4964
4958
|
const len = rawItems.length;
|
|
4965
4959
|
if (maxLength && len > maxLength) {
|
|
4966
4960
|
const beforeLength = Math.ceil(maxLength / 2), afterLength = Math.floor(maxLength / 2);
|
|
@@ -6476,7 +6470,7 @@ const key = Symbol.for("@sanity/ui/context/tree"), TreeContext = createGlobalSco
|
|
|
6476
6470
|
ref.current.querySelectorAll('[data-ui="TreeItem"]')
|
|
6477
6471
|
);
|
|
6478
6472
|
setItemElements(_itemElements);
|
|
6479
|
-
}, [children
|
|
6473
|
+
}, [children]), /* @__PURE__ */ jsx(TreeContext.Provider, { value: contextValue, children: /* @__PURE__ */ jsx(
|
|
6480
6474
|
Stack,
|
|
6481
6475
|
{
|
|
6482
6476
|
as: "ul",
|