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.
- package/dist/native.cjs +19 -14
- package/dist/test.cjs +19 -14
- 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
|
-
|
|
9566
|
-
|
|
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(
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
19752
|
+
var transitionConfig = (function() {
|
|
19751
19753
|
var _animationDriver_animations;
|
|
19752
|
-
if (
|
|
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
|
-
},
|
|
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
|
|
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" ?
|
|
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
|
-
|
|
9948
|
-
|
|
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(
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
19945
|
+
var transitionConfig = (function() {
|
|
19944
19946
|
var _animationDriver_animations;
|
|
19945
|
-
if (
|
|
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
|
-
},
|
|
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
|
|
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" ?
|
|
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-
|
|
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-
|
|
92
|
-
"@tamagui/adapt": "2.0.0-
|
|
93
|
-
"@tamagui/alert-dialog": "2.0.0-
|
|
94
|
-
"@tamagui/animate-presence": "2.0.0-
|
|
95
|
-
"@tamagui/avatar": "2.0.0-
|
|
96
|
-
"@tamagui/button": "2.0.0-
|
|
97
|
-
"@tamagui/card": "2.0.0-
|
|
98
|
-
"@tamagui/checkbox": "2.0.0-
|
|
99
|
-
"@tamagui/compose-refs": "2.0.0-
|
|
100
|
-
"@tamagui/constants": "2.0.0-
|
|
101
|
-
"@tamagui/core": "2.0.0-
|
|
102
|
-
"@tamagui/create-context": "2.0.0-
|
|
103
|
-
"@tamagui/dialog": "2.0.0-
|
|
104
|
-
"@tamagui/elements": "2.0.0-
|
|
105
|
-
"@tamagui/fake-react-native": "2.0.0-
|
|
106
|
-
"@tamagui/focusable": "2.0.0-
|
|
107
|
-
"@tamagui/font-size": "2.0.0-
|
|
108
|
-
"@tamagui/form": "2.0.0-
|
|
109
|
-
"@tamagui/get-button-sized": "2.0.0-
|
|
110
|
-
"@tamagui/get-font-sized": "2.0.0-
|
|
111
|
-
"@tamagui/get-token": "2.0.0-
|
|
112
|
-
"@tamagui/group": "2.0.0-
|
|
113
|
-
"@tamagui/helpers-tamagui": "2.0.0-
|
|
114
|
-
"@tamagui/image": "2.0.0-
|
|
115
|
-
"@tamagui/input": "2.0.0-
|
|
116
|
-
"@tamagui/label": "2.0.0-
|
|
117
|
-
"@tamagui/linear-gradient": "2.0.0-
|
|
118
|
-
"@tamagui/list-item": "2.0.0-
|
|
119
|
-
"@tamagui/polyfill-dev": "2.0.0-
|
|
120
|
-
"@tamagui/popover": "2.0.0-
|
|
121
|
-
"@tamagui/popper": "2.0.0-
|
|
122
|
-
"@tamagui/portal": "2.0.0-
|
|
123
|
-
"@tamagui/progress": "2.0.0-
|
|
124
|
-
"@tamagui/radio-group": "2.0.0-
|
|
125
|
-
"@tamagui/react-native-media-driver": "2.0.0-
|
|
126
|
-
"@tamagui/scroll-view": "2.0.0-
|
|
127
|
-
"@tamagui/select": "2.0.0-
|
|
128
|
-
"@tamagui/separator": "2.0.0-
|
|
129
|
-
"@tamagui/shapes": "2.0.0-
|
|
130
|
-
"@tamagui/sheet": "2.0.0-
|
|
131
|
-
"@tamagui/slider": "2.0.0-
|
|
132
|
-
"@tamagui/spacer": "2.0.0-
|
|
133
|
-
"@tamagui/stacks": "2.0.0-
|
|
134
|
-
"@tamagui/switch": "2.0.0-
|
|
135
|
-
"@tamagui/tabs": "2.0.0-
|
|
136
|
-
"@tamagui/text": "2.0.0-
|
|
137
|
-
"@tamagui/theme": "2.0.0-
|
|
138
|
-
"@tamagui/toggle-group": "2.0.0-
|
|
139
|
-
"@tamagui/tooltip": "2.0.0-
|
|
140
|
-
"@tamagui/use-controllable-state": "2.0.0-
|
|
141
|
-
"@tamagui/use-debounce": "2.0.0-
|
|
142
|
-
"@tamagui/use-force-update": "2.0.0-
|
|
143
|
-
"@tamagui/use-window-dimensions": "2.0.0-
|
|
144
|
-
"@tamagui/visually-hidden": "2.0.0-
|
|
145
|
-
"@tamagui/z-index-stack": "2.0.0-
|
|
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-
|
|
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"
|