tamagui 2.0.0-1768263773228 → 2.0.0-1768427228811

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.
Files changed (3) hide show
  1. package/dist/native.cjs +19 -14
  2. package/dist/test.cjs +19 -14
  3. package/package.json +57 -57
package/dist/native.cjs CHANGED
@@ -9550,7 +9550,7 @@ var defaultOffset = {
9550
9550
  };
9551
9551
  var normalizeColor = function(color, opacity) {
9552
9552
  if (color) {
9553
- if (color[0] === "$") return color;
9553
+ if (typeof color != "string" || color[0] === "$") return color;
9554
9554
  if (color.startsWith("var(")) ;
9555
9555
  else {
9556
9556
  var rgba3 = getRgba(color);
@@ -9562,8 +9562,10 @@ var normalizeColor = function(color, opacity) {
9562
9562
  return color;
9563
9563
  }
9564
9564
  }, getRgba = function(color) {
9565
- var colorNum = normalizeCSSColor(color);
9566
- if (colorNum != null) return rgba(colorNum);
9565
+ if (typeof color == "string") {
9566
+ var colorNum = normalizeCSSColor(color);
9567
+ if (colorNum != null) return rgba(colorNum);
9568
+ }
9567
9569
  };
9568
9570
  function normalizeShadow(param) {
9569
9571
  var {
@@ -10903,14 +10905,14 @@ function createComponent(staticConfig) {
10903
10905
  var {
10904
10906
  context: context2,
10905
10907
  isReactNative
10906
- } = staticConfig, debugProp = propsIn.debug, styledContextValue = context2 ? React.useContext(context2) : void 0, overriddenContextProps = null;
10908
+ } = staticConfig, debugProp = propsIn.debug, styledContextValue = context2 ? React.useContext(context2) : void 0, overriddenContextProps = null, componentContext = React.useContext(ComponentContext);
10907
10909
  var props = propsIn;
10908
10910
  if (styledContextValue || defaultProps2) {
10909
- var [nextProps, overrides] = mergeComponentProps(defaultProps2, styledContextValue, propsIn);
10911
+ var effectiveDefaults = defaultProps2, [nextProps, overrides] = mergeComponentProps(effectiveDefaults, styledContextValue, propsIn);
10910
10912
  nextProps && (props = nextProps), overriddenContextProps = overrides;
10911
10913
  }
10912
10914
  var componentName2 = props.componentName || staticConfig.componentName;
10913
- var componentContext = React.useContext(ComponentContext), groupContextParent = React.useContext(GroupContext), animationDriver = componentContext.animationDriver, useAnimations = animationDriver == null ? void 0 : animationDriver.useAnimations, componentState = useComponentState(props, (animationDriver == null ? void 0 : animationDriver.isStub) ? null : animationDriver, staticConfig), {
10915
+ var groupContextParent = React.useContext(GroupContext), animationDriver = componentContext.animationDriver, useAnimations = animationDriver == null ? void 0 : animationDriver.useAnimations, componentState = useComponentState(props, (animationDriver == null ? void 0 : animationDriver.isStub) ? null : animationDriver, staticConfig), {
10914
10916
  disabled,
10915
10917
  groupName,
10916
10918
  hasAnimationProp,
@@ -13969,7 +13971,7 @@ function PortalHostNonNative(props) {
13969
13971
  deregisterHost: deregisterHost2
13970
13972
  } = usePortal(props.name);
13971
13973
  return useIsomorphicLayoutEffect(function() {
13972
- if (!(typeof window > "u")) return registerHost2(), function() {
13974
+ return registerHost2(), function() {
13973
13975
  deregisterHost2();
13974
13976
  };
13975
13977
  }, []), render(forwardProps ? state.map(function(item) {
@@ -19718,7 +19720,7 @@ function resisted(y, minY) {
19718
19720
  var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCustom = /* @__PURE__ */ React.forwardRef(function(props, forwardedRef) {
19719
19721
  var parentSheet = React.useContext(ParentSheetContext), {
19720
19722
  transition,
19721
- animationConfig: animationConfigProp,
19723
+ transitionConfig: transitionConfigProp,
19722
19724
  modal = false,
19723
19725
  zIndex = parentSheet.zIndex + 1,
19724
19726
  moveOnKeyboardChange = false,
@@ -19747,9 +19749,9 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
19747
19749
  animationDriver
19748
19750
  } = useConfiguration();
19749
19751
  if (!animationDriver) throw new Error("Sheet reqiures an animation driver to be set");
19750
- var animationConfig = (function() {
19752
+ var transitionConfig = (function() {
19751
19753
  var _animationDriver_animations;
19752
- if (animationConfigProp) return animationConfigProp;
19754
+ if (transitionConfigProp) return transitionConfigProp;
19753
19755
  var [animationProp, animationPropConfig] = transition ? Array.isArray(transition) ? transition : [transition] : [];
19754
19756
  return animationProp && !((_animationDriver_animations = animationDriver.animations) === null || _animationDriver_animations === void 0) && _animationDriver_animations[animationProp] ? __spreadValues(__spreadValues({}, animationDriver.animations[animationProp]), animationPropConfig) : null;
19755
19757
  })(), [isShowingInnerSheet, setIsShowingInnerSheet] = React.useState(false), shouldHideParentSheet = modal && isShowingInnerSheet && // if not using weird portal limitation we dont need to hide parent sheet
@@ -19797,7 +19799,7 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
19797
19799
  var toValue = isHidden || position2 === -1 ? screenSize : positions[position2];
19798
19800
  at.current !== toValue && (at.current = toValue, stopSpring(), animatedNumber.setValue(toValue, __spreadValues({
19799
19801
  type: "spring"
19800
- }, animationConfig)));
19802
+ }, transitionConfig)));
19801
19803
  }
19802
19804
  });
19803
19805
  useIsomorphicLayoutEffect(function() {
@@ -19883,10 +19885,10 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
19883
19885
  }, [disableDrag, isShowingInnerSheet, animateTo, frameSize, positions, setPosition]), handleAnimationViewLayout = React.useCallback(function(e2) {
19884
19886
  var _e_nativeEvent;
19885
19887
  if (!(!open2 && stableFrameSize.current !== 0)) {
19886
- var next = Math.min((_e_nativeEvent = e2.nativeEvent) === null || _e_nativeEvent === void 0 ? void 0 : _e_nativeEvent.layout.height, Dimensions2.get(relativeDimensionTo).height);
19888
+ var layoutHeight = (_e_nativeEvent = e2.nativeEvent) === null || _e_nativeEvent === void 0 ? void 0 : _e_nativeEvent.layout.height, next = modal ? Math.min(layoutHeight, Dimensions2.get(relativeDimensionTo).height) : layoutHeight;
19887
19889
  next && setFrameSize(next);
19888
19890
  }
19889
- }, [open2]), handleMaxContentViewLayout = React.useCallback(function(e2) {
19891
+ }, [open2, modal]), handleMaxContentViewLayout = React.useCallback(function(e2) {
19890
19892
  var _e_nativeEvent, next = Math.min((_e_nativeEvent = e2.nativeEvent) === null || _e_nativeEvent === void 0 ? void 0 : _e_nativeEvent.layout.height, Dimensions2.get(relativeDimensionTo).height);
19891
19893
  next && setMaxContentSize(next);
19892
19894
  }, []), animatedStyle = useAnimatedNumberStyle(animatedNumber, function(val) {
@@ -19927,7 +19929,10 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
19927
19929
  };
19928
19930
  }
19929
19931
  }, [open2]);
19930
- var forcedContentHeight = hasFit ? void 0 : snapPointsMode === "percent" ? `${maxSnapPoint}${"%"}` : maxSnapPoint, setHasScrollView = React.useCallback(function(val) {
19932
+ var forcedContentHeight = hasFit ? void 0 : snapPointsMode === "percent" ? (
19933
+ // Use dvh for modal (viewport-relative), % for inline (container-relative)
19934
+ `${maxSnapPoint}${"%"}`
19935
+ ) : maxSnapPoint, setHasScrollView = React.useCallback(function(val) {
19931
19936
  hasScrollView.current = val;
19932
19937
  }, []), contents = /* @__PURE__ */ jsxRuntimeExports.jsx(LayoutMeasurementController, {
19933
19938
  disable: !open2,
package/dist/test.cjs CHANGED
@@ -9932,7 +9932,7 @@ var defaultOffset = {
9932
9932
  };
9933
9933
  var normalizeColor = function(color, opacity) {
9934
9934
  if (color) {
9935
- if (color[0] === "$") return color;
9935
+ if (typeof color != "string" || color[0] === "$") return color;
9936
9936
  if (color.startsWith("var(")) ;
9937
9937
  else {
9938
9938
  var rgba3 = getRgba(color);
@@ -9944,8 +9944,10 @@ var normalizeColor = function(color, opacity) {
9944
9944
  return color;
9945
9945
  }
9946
9946
  }, getRgba = function(color) {
9947
- var colorNum = normalizeCSSColor(color);
9948
- if (colorNum != null) return rgba(colorNum);
9947
+ if (typeof color == "string") {
9948
+ var colorNum = normalizeCSSColor(color);
9949
+ if (colorNum != null) return rgba(colorNum);
9950
+ }
9949
9951
  };
9950
9952
  function normalizeShadow(param) {
9951
9953
  var {
@@ -11291,14 +11293,14 @@ function createComponent(staticConfig) {
11291
11293
  var {
11292
11294
  context: context2,
11293
11295
  isReactNative
11294
- } = staticConfig, debugProp = propsIn.debug, styledContextValue = context2 ? React.useContext(context2) : void 0, overriddenContextProps = null;
11296
+ } = staticConfig, debugProp = propsIn.debug, styledContextValue = context2 ? React.useContext(context2) : void 0, overriddenContextProps = null, componentContext = React.useContext(ComponentContext);
11295
11297
  var props = propsIn;
11296
11298
  if (styledContextValue || defaultProps2) {
11297
- var [nextProps, overrides] = mergeComponentProps(defaultProps2, styledContextValue, propsIn);
11299
+ var effectiveDefaults = defaultProps2, [nextProps, overrides] = mergeComponentProps(effectiveDefaults, styledContextValue, propsIn);
11298
11300
  nextProps && (props = nextProps), overriddenContextProps = overrides;
11299
11301
  }
11300
11302
  var componentName2 = props.componentName || staticConfig.componentName;
11301
- var componentContext = React.useContext(ComponentContext), groupContextParent = React.useContext(GroupContext), animationDriver = componentContext.animationDriver, useAnimations = animationDriver == null ? void 0 : animationDriver.useAnimations, componentState = useComponentState(props, (animationDriver == null ? void 0 : animationDriver.isStub) ? null : animationDriver, staticConfig), {
11303
+ var groupContextParent = React.useContext(GroupContext), animationDriver = componentContext.animationDriver, useAnimations = animationDriver == null ? void 0 : animationDriver.useAnimations, componentState = useComponentState(props, (animationDriver == null ? void 0 : animationDriver.isStub) ? null : animationDriver, staticConfig), {
11302
11304
  disabled,
11303
11305
  groupName,
11304
11306
  hasAnimationProp,
@@ -14162,7 +14164,7 @@ function PortalHostNonNative(props) {
14162
14164
  deregisterHost: deregisterHost2
14163
14165
  } = usePortal(props.name);
14164
14166
  return useIsomorphicLayoutEffect(function() {
14165
- if (!(typeof window > "u")) return registerHost2(), function() {
14167
+ return registerHost2(), function() {
14166
14168
  deregisterHost2();
14167
14169
  };
14168
14170
  }, []), render(forwardProps ? state.map(function(item) {
@@ -19911,7 +19913,7 @@ function resisted(y, minY) {
19911
19913
  var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCustom = /* @__PURE__ */ React.forwardRef(function(props, forwardedRef) {
19912
19914
  var parentSheet = React.useContext(ParentSheetContext), {
19913
19915
  transition,
19914
- animationConfig: animationConfigProp,
19916
+ transitionConfig: transitionConfigProp,
19915
19917
  modal = false,
19916
19918
  zIndex = parentSheet.zIndex + 1,
19917
19919
  moveOnKeyboardChange = false,
@@ -19940,9 +19942,9 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
19940
19942
  animationDriver
19941
19943
  } = useConfiguration();
19942
19944
  if (!animationDriver) throw new Error("Sheet reqiures an animation driver to be set");
19943
- var animationConfig = (function() {
19945
+ var transitionConfig = (function() {
19944
19946
  var _animationDriver_animations;
19945
- if (animationConfigProp) return animationConfigProp;
19947
+ if (transitionConfigProp) return transitionConfigProp;
19946
19948
  var [animationProp, animationPropConfig] = transition ? Array.isArray(transition) ? transition : [transition] : [];
19947
19949
  return animationProp && !((_animationDriver_animations = animationDriver.animations) === null || _animationDriver_animations === void 0) && _animationDriver_animations[animationProp] ? __spreadValues(__spreadValues({}, animationDriver.animations[animationProp]), animationPropConfig) : null;
19948
19950
  })(), [isShowingInnerSheet, setIsShowingInnerSheet] = React.useState(false), shouldHideParentSheet = modal && isShowingInnerSheet && // if not using weird portal limitation we dont need to hide parent sheet
@@ -19990,7 +19992,7 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
19990
19992
  var toValue = isHidden || position2 === -1 ? screenSize : positions[position2];
19991
19993
  at.current !== toValue && (at.current = toValue, stopSpring(), animatedNumber.setValue(toValue, __spreadValues({
19992
19994
  type: "spring"
19993
- }, animationConfig)));
19995
+ }, transitionConfig)));
19994
19996
  }
19995
19997
  });
19996
19998
  useIsomorphicLayoutEffect(function() {
@@ -20076,10 +20078,10 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
20076
20078
  }, [disableDrag, isShowingInnerSheet, animateTo, frameSize, positions, setPosition]), handleAnimationViewLayout = React.useCallback(function(e2) {
20077
20079
  var _e_nativeEvent;
20078
20080
  if (!(!open2 && stableFrameSize.current !== 0)) {
20079
- var next = Math.min((_e_nativeEvent = e2.nativeEvent) === null || _e_nativeEvent === void 0 ? void 0 : _e_nativeEvent.layout.height, Dimensions2.get(relativeDimensionTo).height);
20081
+ var layoutHeight = (_e_nativeEvent = e2.nativeEvent) === null || _e_nativeEvent === void 0 ? void 0 : _e_nativeEvent.layout.height, next = modal ? Math.min(layoutHeight, Dimensions2.get(relativeDimensionTo).height) : layoutHeight;
20080
20082
  next && setFrameSize(next);
20081
20083
  }
20082
- }, [open2]), handleMaxContentViewLayout = React.useCallback(function(e2) {
20084
+ }, [open2, modal]), handleMaxContentViewLayout = React.useCallback(function(e2) {
20083
20085
  var _e_nativeEvent, next = Math.min((_e_nativeEvent = e2.nativeEvent) === null || _e_nativeEvent === void 0 ? void 0 : _e_nativeEvent.layout.height, Dimensions2.get(relativeDimensionTo).height);
20084
20086
  next && setMaxContentSize(next);
20085
20087
  }, []), animatedStyle = useAnimatedNumberStyle(animatedNumber, function(val) {
@@ -20120,7 +20122,10 @@ var hiddenSize = 10000.1, relativeDimensionTo = "screen", SheetImplementationCus
20120
20122
  };
20121
20123
  }
20122
20124
  }, [open2]);
20123
- var forcedContentHeight = hasFit ? void 0 : snapPointsMode === "percent" ? `${maxSnapPoint}${"%"}` : maxSnapPoint, setHasScrollView = React.useCallback(function(val) {
20125
+ var forcedContentHeight = hasFit ? void 0 : snapPointsMode === "percent" ? (
20126
+ // Use dvh for modal (viewport-relative), % for inline (container-relative)
20127
+ `${maxSnapPoint}${"%"}`
20128
+ ) : maxSnapPoint, setHasScrollView = React.useCallback(function(val) {
20124
20129
  hasScrollView.current = val;
20125
20130
  }, []), contents = /* @__PURE__ */ jsxRuntimeExports.jsx(LayoutMeasurementController, {
20126
20131
  disable: !open2,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tamagui",
3
- "version": "2.0.0-1768263773228",
3
+ "version": "2.0.0-1768427228811",
4
4
  "type": "module",
5
5
  "description": "Style and UI for React (web and native) meet an optimizing compiler",
6
6
  "removeSideEffects": true,
@@ -88,64 +88,64 @@
88
88
  }
89
89
  },
90
90
  "dependencies": {
91
- "@tamagui/accordion": "2.0.0-1768263773228",
92
- "@tamagui/adapt": "2.0.0-1768263773228",
93
- "@tamagui/alert-dialog": "2.0.0-1768263773228",
94
- "@tamagui/animate-presence": "2.0.0-1768263773228",
95
- "@tamagui/avatar": "2.0.0-1768263773228",
96
- "@tamagui/button": "2.0.0-1768263773228",
97
- "@tamagui/card": "2.0.0-1768263773228",
98
- "@tamagui/checkbox": "2.0.0-1768263773228",
99
- "@tamagui/compose-refs": "2.0.0-1768263773228",
100
- "@tamagui/constants": "2.0.0-1768263773228",
101
- "@tamagui/core": "2.0.0-1768263773228",
102
- "@tamagui/create-context": "2.0.0-1768263773228",
103
- "@tamagui/dialog": "2.0.0-1768263773228",
104
- "@tamagui/elements": "2.0.0-1768263773228",
105
- "@tamagui/fake-react-native": "2.0.0-1768263773228",
106
- "@tamagui/focusable": "2.0.0-1768263773228",
107
- "@tamagui/font-size": "2.0.0-1768263773228",
108
- "@tamagui/form": "2.0.0-1768263773228",
109
- "@tamagui/get-button-sized": "2.0.0-1768263773228",
110
- "@tamagui/get-font-sized": "2.0.0-1768263773228",
111
- "@tamagui/get-token": "2.0.0-1768263773228",
112
- "@tamagui/group": "2.0.0-1768263773228",
113
- "@tamagui/helpers-tamagui": "2.0.0-1768263773228",
114
- "@tamagui/image": "2.0.0-1768263773228",
115
- "@tamagui/input": "2.0.0-1768263773228",
116
- "@tamagui/label": "2.0.0-1768263773228",
117
- "@tamagui/linear-gradient": "2.0.0-1768263773228",
118
- "@tamagui/list-item": "2.0.0-1768263773228",
119
- "@tamagui/polyfill-dev": "2.0.0-1768263773228",
120
- "@tamagui/popover": "2.0.0-1768263773228",
121
- "@tamagui/popper": "2.0.0-1768263773228",
122
- "@tamagui/portal": "2.0.0-1768263773228",
123
- "@tamagui/progress": "2.0.0-1768263773228",
124
- "@tamagui/radio-group": "2.0.0-1768263773228",
125
- "@tamagui/react-native-media-driver": "2.0.0-1768263773228",
126
- "@tamagui/scroll-view": "2.0.0-1768263773228",
127
- "@tamagui/select": "2.0.0-1768263773228",
128
- "@tamagui/separator": "2.0.0-1768263773228",
129
- "@tamagui/shapes": "2.0.0-1768263773228",
130
- "@tamagui/sheet": "2.0.0-1768263773228",
131
- "@tamagui/slider": "2.0.0-1768263773228",
132
- "@tamagui/spacer": "2.0.0-1768263773228",
133
- "@tamagui/stacks": "2.0.0-1768263773228",
134
- "@tamagui/switch": "2.0.0-1768263773228",
135
- "@tamagui/tabs": "2.0.0-1768263773228",
136
- "@tamagui/text": "2.0.0-1768263773228",
137
- "@tamagui/theme": "2.0.0-1768263773228",
138
- "@tamagui/toggle-group": "2.0.0-1768263773228",
139
- "@tamagui/tooltip": "2.0.0-1768263773228",
140
- "@tamagui/use-controllable-state": "2.0.0-1768263773228",
141
- "@tamagui/use-debounce": "2.0.0-1768263773228",
142
- "@tamagui/use-force-update": "2.0.0-1768263773228",
143
- "@tamagui/use-window-dimensions": "2.0.0-1768263773228",
144
- "@tamagui/visually-hidden": "2.0.0-1768263773228",
145
- "@tamagui/z-index-stack": "2.0.0-1768263773228"
91
+ "@tamagui/accordion": "2.0.0-1768427228811",
92
+ "@tamagui/adapt": "2.0.0-1768427228811",
93
+ "@tamagui/alert-dialog": "2.0.0-1768427228811",
94
+ "@tamagui/animate-presence": "2.0.0-1768427228811",
95
+ "@tamagui/avatar": "2.0.0-1768427228811",
96
+ "@tamagui/button": "2.0.0-1768427228811",
97
+ "@tamagui/card": "2.0.0-1768427228811",
98
+ "@tamagui/checkbox": "2.0.0-1768427228811",
99
+ "@tamagui/compose-refs": "2.0.0-1768427228811",
100
+ "@tamagui/constants": "2.0.0-1768427228811",
101
+ "@tamagui/core": "2.0.0-1768427228811",
102
+ "@tamagui/create-context": "2.0.0-1768427228811",
103
+ "@tamagui/dialog": "2.0.0-1768427228811",
104
+ "@tamagui/elements": "2.0.0-1768427228811",
105
+ "@tamagui/fake-react-native": "2.0.0-1768427228811",
106
+ "@tamagui/focusable": "2.0.0-1768427228811",
107
+ "@tamagui/font-size": "2.0.0-1768427228811",
108
+ "@tamagui/form": "2.0.0-1768427228811",
109
+ "@tamagui/get-button-sized": "2.0.0-1768427228811",
110
+ "@tamagui/get-font-sized": "2.0.0-1768427228811",
111
+ "@tamagui/get-token": "2.0.0-1768427228811",
112
+ "@tamagui/group": "2.0.0-1768427228811",
113
+ "@tamagui/helpers-tamagui": "2.0.0-1768427228811",
114
+ "@tamagui/image": "2.0.0-1768427228811",
115
+ "@tamagui/input": "2.0.0-1768427228811",
116
+ "@tamagui/label": "2.0.0-1768427228811",
117
+ "@tamagui/linear-gradient": "2.0.0-1768427228811",
118
+ "@tamagui/list-item": "2.0.0-1768427228811",
119
+ "@tamagui/polyfill-dev": "2.0.0-1768427228811",
120
+ "@tamagui/popover": "2.0.0-1768427228811",
121
+ "@tamagui/popper": "2.0.0-1768427228811",
122
+ "@tamagui/portal": "2.0.0-1768427228811",
123
+ "@tamagui/progress": "2.0.0-1768427228811",
124
+ "@tamagui/radio-group": "2.0.0-1768427228811",
125
+ "@tamagui/react-native-media-driver": "2.0.0-1768427228811",
126
+ "@tamagui/scroll-view": "2.0.0-1768427228811",
127
+ "@tamagui/select": "2.0.0-1768427228811",
128
+ "@tamagui/separator": "2.0.0-1768427228811",
129
+ "@tamagui/shapes": "2.0.0-1768427228811",
130
+ "@tamagui/sheet": "2.0.0-1768427228811",
131
+ "@tamagui/slider": "2.0.0-1768427228811",
132
+ "@tamagui/spacer": "2.0.0-1768427228811",
133
+ "@tamagui/stacks": "2.0.0-1768427228811",
134
+ "@tamagui/switch": "2.0.0-1768427228811",
135
+ "@tamagui/tabs": "2.0.0-1768427228811",
136
+ "@tamagui/text": "2.0.0-1768427228811",
137
+ "@tamagui/theme": "2.0.0-1768427228811",
138
+ "@tamagui/toggle-group": "2.0.0-1768427228811",
139
+ "@tamagui/tooltip": "2.0.0-1768427228811",
140
+ "@tamagui/use-controllable-state": "2.0.0-1768427228811",
141
+ "@tamagui/use-debounce": "2.0.0-1768427228811",
142
+ "@tamagui/use-force-update": "2.0.0-1768427228811",
143
+ "@tamagui/use-window-dimensions": "2.0.0-1768427228811",
144
+ "@tamagui/visually-hidden": "2.0.0-1768427228811",
145
+ "@tamagui/z-index-stack": "2.0.0-1768427228811"
146
146
  },
147
147
  "devDependencies": {
148
- "@tamagui/build": "2.0.0-1768263773228",
148
+ "@tamagui/build": "2.0.0-1768427228811",
149
149
  "react": "*",
150
150
  "react-native": "0.81.5",
151
151
  "react-native-web": "^0.21.0"