@ornikar/kitt-universal 25.58.1-canary.95e9af38cc4e878fc97c4391877d7b879da5b220.0 → 25.58.1-canary.a2bac16fb42ca488d0dd8ad398c7507d2e37d975.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.
@@ -3606,6 +3606,7 @@ const ActionsItem = /*#__PURE__*/forwardRef(({
3606
3606
  const mountedRef = useRef(false);
3607
3607
  // securing the loading state with a ref to avoid user action between rerenders
3608
3608
  const loadingRef = useRef(false);
3609
+ const isStretch = useBreakpointValue(stretch) || stretch === true;
3609
3610
 
3610
3611
  // effect just for tracking mounted state, as onPress can unmount the ActionButton
3611
3612
  useEffect(() => {
@@ -3615,6 +3616,7 @@ const ActionsItem = /*#__PURE__*/forwardRef(({
3615
3616
  };
3616
3617
  }, []);
3617
3618
  return /*#__PURE__*/jsx(View, {
3619
+ flexGrow: isStretch ? 1 : undefined,
3618
3620
  children: /*#__PURE__*/jsx(as, {
3619
3621
  ref: ref,
3620
3622
  ...props,
@@ -11163,7 +11165,7 @@ function Picker({
11163
11165
  disabled,
11164
11166
  ...restToggleProps
11165
11167
  })
11166
- }), /*#__PURE__*/createPortal(/*#__PURE__*/jsx(View, {
11168
+ }), /*#__PURE__*/createPortal( /*#__PURE__*/jsx(View, {
11167
11169
  ref: refMemo,
11168
11170
  testID: testID,
11169
11171
  ...menuProps,
@@ -12579,7 +12581,7 @@ function Tooltip({
12579
12581
  onFocus: handleToggleTooltip,
12580
12582
  onBlur: handleToggleTooltip,
12581
12583
  width: '100%'
12582
- }), /*#__PURE__*/createPortal(/*#__PURE__*/jsx(View, {
12584
+ }), /*#__PURE__*/createPortal( /*#__PURE__*/jsx(View, {
12583
12585
  ref: refs.setFloating,
12584
12586
  "aria-hidden": !isVisible,
12585
12587
  paddingX: {