@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.
@@ -3634,6 +3634,7 @@ const ActionsItem = /*#__PURE__*/forwardRef(({
3634
3634
  const mountedRef = useRef(false);
3635
3635
  // securing the loading state with a ref to avoid user action between rerenders
3636
3636
  const loadingRef = useRef(false);
3637
+ const isStretch = useBreakpointValue(stretch) || stretch === true;
3637
3638
 
3638
3639
  // effect just for tracking mounted state, as onPress can unmount the ActionButton
3639
3640
  useEffect(() => {
@@ -3643,6 +3644,7 @@ const ActionsItem = /*#__PURE__*/forwardRef(({
3643
3644
  };
3644
3645
  }, []);
3645
3646
  return /*#__PURE__*/jsx(View, {
3647
+ flexGrow: isStretch ? 1 : undefined,
3646
3648
  children: /*#__PURE__*/jsx(as, {
3647
3649
  ref: ref,
3648
3650
  ...props,