@tamagui/accordion 1.72.3 → 1.73.1
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/package.json +10 -10
- package/types/Accordion.d.ts +2464 -114
- package/types/Accordion.d.ts.map +1 -1
package/types/Accordion.d.ts
CHANGED
|
@@ -89,21 +89,121 @@ interface AccordionItemProps extends Omit<CollapsibleProps, 'open' | 'defaultOpe
|
|
|
89
89
|
}
|
|
90
90
|
type PrimitiveHeading3Props = React.ComponentPropsWithoutRef<typeof H3>;
|
|
91
91
|
type AccordionHeaderProps = PrimitiveHeading3Props;
|
|
92
|
-
declare const AccordionTriggerFrame: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
92
|
+
declare const AccordionTriggerFrame: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
93
|
+
target?: string | undefined;
|
|
94
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
95
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
96
|
+
dangerouslySetInnerHTML?: {
|
|
97
|
+
__html: string;
|
|
98
|
+
} | undefined;
|
|
99
|
+
children?: any;
|
|
100
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
101
|
+
disabled?: boolean | undefined;
|
|
102
|
+
className?: string | undefined;
|
|
103
|
+
themeShallow?: boolean | undefined;
|
|
104
|
+
id?: string | undefined;
|
|
105
|
+
tag?: string | undefined;
|
|
106
|
+
theme?: string | null | undefined;
|
|
107
|
+
group?: undefined;
|
|
108
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
109
|
+
componentName?: string | undefined;
|
|
110
|
+
tabIndex?: string | number | undefined;
|
|
111
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
112
|
+
disableOptimization?: boolean | undefined;
|
|
113
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
114
|
+
disableClassName?: boolean | undefined;
|
|
115
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
116
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
117
|
+
} & {
|
|
93
118
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
94
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
119
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
120
|
+
target?: string | undefined;
|
|
121
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
122
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
123
|
+
dangerouslySetInnerHTML?: {
|
|
124
|
+
__html: string;
|
|
125
|
+
} | undefined;
|
|
126
|
+
children?: any;
|
|
127
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
128
|
+
disabled?: boolean | undefined;
|
|
129
|
+
className?: string | undefined;
|
|
130
|
+
themeShallow?: boolean | undefined;
|
|
131
|
+
id?: string | undefined;
|
|
132
|
+
tag?: string | undefined;
|
|
133
|
+
theme?: string | null | undefined;
|
|
134
|
+
group?: undefined;
|
|
135
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
136
|
+
componentName?: string | undefined;
|
|
137
|
+
tabIndex?: string | number | undefined;
|
|
138
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
139
|
+
disableOptimization?: boolean | undefined;
|
|
140
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
141
|
+
disableClassName?: boolean | undefined;
|
|
142
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
143
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
144
|
+
} & {
|
|
95
145
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
96
146
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
97
147
|
[x: string]: undefined;
|
|
98
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
148
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
149
|
+
target?: string | undefined;
|
|
150
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
151
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
152
|
+
dangerouslySetInnerHTML?: {
|
|
153
|
+
__html: string;
|
|
154
|
+
} | undefined;
|
|
155
|
+
children?: any;
|
|
156
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
157
|
+
disabled?: boolean | undefined;
|
|
158
|
+
className?: string | undefined;
|
|
159
|
+
themeShallow?: boolean | undefined;
|
|
160
|
+
id?: string | undefined;
|
|
161
|
+
tag?: string | undefined;
|
|
162
|
+
theme?: string | null | undefined;
|
|
163
|
+
group?: undefined;
|
|
164
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
165
|
+
componentName?: string | undefined;
|
|
166
|
+
tabIndex?: string | number | undefined;
|
|
167
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
168
|
+
disableOptimization?: boolean | undefined;
|
|
169
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
170
|
+
disableClassName?: boolean | undefined;
|
|
171
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
172
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
173
|
+
} & {
|
|
99
174
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
100
175
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
101
176
|
[x: string]: undefined;
|
|
102
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
177
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
178
|
+
target?: string | undefined;
|
|
179
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
180
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
181
|
+
dangerouslySetInnerHTML?: {
|
|
182
|
+
__html: string;
|
|
183
|
+
} | undefined;
|
|
184
|
+
children?: any;
|
|
185
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
186
|
+
disabled?: boolean | undefined;
|
|
187
|
+
className?: string | undefined;
|
|
188
|
+
themeShallow?: boolean | undefined;
|
|
189
|
+
id?: string | undefined;
|
|
190
|
+
tag?: string | undefined;
|
|
191
|
+
theme?: string | null | undefined;
|
|
192
|
+
group?: undefined;
|
|
193
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
194
|
+
componentName?: string | undefined;
|
|
195
|
+
tabIndex?: string | number | undefined;
|
|
196
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
197
|
+
disableOptimization?: boolean | undefined;
|
|
198
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
199
|
+
disableClassName?: boolean | undefined;
|
|
200
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
201
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
202
|
+
} & {
|
|
103
203
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
104
204
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
105
205
|
[x: string]: undefined;
|
|
106
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
206
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
107
207
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
108
208
|
contain?: import("csstype").Property.Contain | undefined;
|
|
109
209
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -121,23 +221,123 @@ declare const AccordionTriggerFrame: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
121
221
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
122
222
|
animateOnly?: string[] | undefined;
|
|
123
223
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
124
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
224
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
125
225
|
readonly unstyled?: boolean | undefined;
|
|
126
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
226
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
227
|
+
target?: string | undefined;
|
|
228
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
229
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
230
|
+
dangerouslySetInnerHTML?: {
|
|
231
|
+
__html: string;
|
|
232
|
+
} | undefined;
|
|
233
|
+
children?: any;
|
|
234
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
235
|
+
disabled?: boolean | undefined;
|
|
236
|
+
className?: string | undefined;
|
|
237
|
+
themeShallow?: boolean | undefined;
|
|
238
|
+
id?: string | undefined;
|
|
239
|
+
tag?: string | undefined;
|
|
240
|
+
theme?: string | null | undefined;
|
|
241
|
+
group?: undefined;
|
|
242
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
243
|
+
componentName?: string | undefined;
|
|
244
|
+
tabIndex?: string | number | undefined;
|
|
245
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
246
|
+
disableOptimization?: boolean | undefined;
|
|
247
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
248
|
+
disableClassName?: boolean | undefined;
|
|
249
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
250
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
251
|
+
} & {
|
|
127
252
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
128
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
253
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
254
|
+
target?: string | undefined;
|
|
255
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
256
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
257
|
+
dangerouslySetInnerHTML?: {
|
|
258
|
+
__html: string;
|
|
259
|
+
} | undefined;
|
|
260
|
+
children?: any;
|
|
261
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
262
|
+
disabled?: boolean | undefined;
|
|
263
|
+
className?: string | undefined;
|
|
264
|
+
themeShallow?: boolean | undefined;
|
|
265
|
+
id?: string | undefined;
|
|
266
|
+
tag?: string | undefined;
|
|
267
|
+
theme?: string | null | undefined;
|
|
268
|
+
group?: undefined;
|
|
269
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
270
|
+
componentName?: string | undefined;
|
|
271
|
+
tabIndex?: string | number | undefined;
|
|
272
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
273
|
+
disableOptimization?: boolean | undefined;
|
|
274
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
275
|
+
disableClassName?: boolean | undefined;
|
|
276
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
277
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
278
|
+
} & {
|
|
129
279
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
130
280
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
131
281
|
[x: string]: undefined;
|
|
132
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
282
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
283
|
+
target?: string | undefined;
|
|
284
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
285
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
286
|
+
dangerouslySetInnerHTML?: {
|
|
287
|
+
__html: string;
|
|
288
|
+
} | undefined;
|
|
289
|
+
children?: any;
|
|
290
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
291
|
+
disabled?: boolean | undefined;
|
|
292
|
+
className?: string | undefined;
|
|
293
|
+
themeShallow?: boolean | undefined;
|
|
294
|
+
id?: string | undefined;
|
|
295
|
+
tag?: string | undefined;
|
|
296
|
+
theme?: string | null | undefined;
|
|
297
|
+
group?: undefined;
|
|
298
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
299
|
+
componentName?: string | undefined;
|
|
300
|
+
tabIndex?: string | number | undefined;
|
|
301
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
302
|
+
disableOptimization?: boolean | undefined;
|
|
303
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
304
|
+
disableClassName?: boolean | undefined;
|
|
305
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
306
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
307
|
+
} & {
|
|
133
308
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
134
309
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
135
310
|
[x: string]: undefined;
|
|
136
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
311
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
312
|
+
target?: string | undefined;
|
|
313
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
314
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
315
|
+
dangerouslySetInnerHTML?: {
|
|
316
|
+
__html: string;
|
|
317
|
+
} | undefined;
|
|
318
|
+
children?: any;
|
|
319
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
320
|
+
disabled?: boolean | undefined;
|
|
321
|
+
className?: string | undefined;
|
|
322
|
+
themeShallow?: boolean | undefined;
|
|
323
|
+
id?: string | undefined;
|
|
324
|
+
tag?: string | undefined;
|
|
325
|
+
theme?: string | null | undefined;
|
|
326
|
+
group?: undefined;
|
|
327
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
328
|
+
componentName?: string | undefined;
|
|
329
|
+
tabIndex?: string | number | undefined;
|
|
330
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
331
|
+
disableOptimization?: boolean | undefined;
|
|
332
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
333
|
+
disableClassName?: boolean | undefined;
|
|
334
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
335
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
336
|
+
} & {
|
|
137
337
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
138
338
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
139
339
|
[x: string]: undefined;
|
|
140
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
340
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
141
341
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
142
342
|
contain?: import("csstype").Property.Contain | undefined;
|
|
143
343
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -155,23 +355,123 @@ declare const AccordionTriggerFrame: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
155
355
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
156
356
|
animateOnly?: string[] | undefined;
|
|
157
357
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
158
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
358
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
159
359
|
readonly unstyled?: boolean | undefined;
|
|
160
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
360
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
361
|
+
target?: string | undefined;
|
|
362
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
363
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
364
|
+
dangerouslySetInnerHTML?: {
|
|
365
|
+
__html: string;
|
|
366
|
+
} | undefined;
|
|
367
|
+
children?: any;
|
|
368
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
369
|
+
disabled?: boolean | undefined;
|
|
370
|
+
className?: string | undefined;
|
|
371
|
+
themeShallow?: boolean | undefined;
|
|
372
|
+
id?: string | undefined;
|
|
373
|
+
tag?: string | undefined;
|
|
374
|
+
theme?: string | null | undefined;
|
|
375
|
+
group?: undefined;
|
|
376
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
377
|
+
componentName?: string | undefined;
|
|
378
|
+
tabIndex?: string | number | undefined;
|
|
379
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
380
|
+
disableOptimization?: boolean | undefined;
|
|
381
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
382
|
+
disableClassName?: boolean | undefined;
|
|
383
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
384
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
385
|
+
} & {
|
|
161
386
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
162
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
387
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
388
|
+
target?: string | undefined;
|
|
389
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
390
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
391
|
+
dangerouslySetInnerHTML?: {
|
|
392
|
+
__html: string;
|
|
393
|
+
} | undefined;
|
|
394
|
+
children?: any;
|
|
395
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
396
|
+
disabled?: boolean | undefined;
|
|
397
|
+
className?: string | undefined;
|
|
398
|
+
themeShallow?: boolean | undefined;
|
|
399
|
+
id?: string | undefined;
|
|
400
|
+
tag?: string | undefined;
|
|
401
|
+
theme?: string | null | undefined;
|
|
402
|
+
group?: undefined;
|
|
403
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
404
|
+
componentName?: string | undefined;
|
|
405
|
+
tabIndex?: string | number | undefined;
|
|
406
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
407
|
+
disableOptimization?: boolean | undefined;
|
|
408
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
409
|
+
disableClassName?: boolean | undefined;
|
|
410
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
411
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
412
|
+
} & {
|
|
163
413
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
164
414
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
165
415
|
[x: string]: undefined;
|
|
166
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
416
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
417
|
+
target?: string | undefined;
|
|
418
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
419
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
420
|
+
dangerouslySetInnerHTML?: {
|
|
421
|
+
__html: string;
|
|
422
|
+
} | undefined;
|
|
423
|
+
children?: any;
|
|
424
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
425
|
+
disabled?: boolean | undefined;
|
|
426
|
+
className?: string | undefined;
|
|
427
|
+
themeShallow?: boolean | undefined;
|
|
428
|
+
id?: string | undefined;
|
|
429
|
+
tag?: string | undefined;
|
|
430
|
+
theme?: string | null | undefined;
|
|
431
|
+
group?: undefined;
|
|
432
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
433
|
+
componentName?: string | undefined;
|
|
434
|
+
tabIndex?: string | number | undefined;
|
|
435
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
436
|
+
disableOptimization?: boolean | undefined;
|
|
437
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
438
|
+
disableClassName?: boolean | undefined;
|
|
439
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
440
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
441
|
+
} & {
|
|
167
442
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
168
443
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
169
444
|
[x: string]: undefined;
|
|
170
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
445
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
446
|
+
target?: string | undefined;
|
|
447
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
448
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
449
|
+
dangerouslySetInnerHTML?: {
|
|
450
|
+
__html: string;
|
|
451
|
+
} | undefined;
|
|
452
|
+
children?: any;
|
|
453
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
454
|
+
disabled?: boolean | undefined;
|
|
455
|
+
className?: string | undefined;
|
|
456
|
+
themeShallow?: boolean | undefined;
|
|
457
|
+
id?: string | undefined;
|
|
458
|
+
tag?: string | undefined;
|
|
459
|
+
theme?: string | null | undefined;
|
|
460
|
+
group?: undefined;
|
|
461
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
462
|
+
componentName?: string | undefined;
|
|
463
|
+
tabIndex?: string | number | undefined;
|
|
464
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
465
|
+
disableOptimization?: boolean | undefined;
|
|
466
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
467
|
+
disableClassName?: boolean | undefined;
|
|
468
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
469
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
470
|
+
} & {
|
|
171
471
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
172
472
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
173
473
|
[x: string]: undefined;
|
|
174
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
474
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
175
475
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
176
476
|
contain?: import("csstype").Property.Contain | undefined;
|
|
177
477
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -189,23 +489,123 @@ declare const AccordionTriggerFrame: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
189
489
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
190
490
|
animateOnly?: string[] | undefined;
|
|
191
491
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
192
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
492
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
193
493
|
readonly unstyled?: boolean | undefined;
|
|
194
|
-
}>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
494
|
+
}>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
495
|
+
target?: string | undefined;
|
|
496
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
497
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
498
|
+
dangerouslySetInnerHTML?: {
|
|
499
|
+
__html: string;
|
|
500
|
+
} | undefined;
|
|
501
|
+
children?: any;
|
|
502
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
503
|
+
disabled?: boolean | undefined;
|
|
504
|
+
className?: string | undefined;
|
|
505
|
+
themeShallow?: boolean | undefined;
|
|
506
|
+
id?: string | undefined;
|
|
507
|
+
tag?: string | undefined;
|
|
508
|
+
theme?: string | null | undefined;
|
|
509
|
+
group?: undefined;
|
|
510
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
511
|
+
componentName?: string | undefined;
|
|
512
|
+
tabIndex?: string | number | undefined;
|
|
513
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
514
|
+
disableOptimization?: boolean | undefined;
|
|
515
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
516
|
+
disableClassName?: boolean | undefined;
|
|
517
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
518
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
519
|
+
} & {
|
|
195
520
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
196
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
521
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
522
|
+
target?: string | undefined;
|
|
523
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
524
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
525
|
+
dangerouslySetInnerHTML?: {
|
|
526
|
+
__html: string;
|
|
527
|
+
} | undefined;
|
|
528
|
+
children?: any;
|
|
529
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
530
|
+
disabled?: boolean | undefined;
|
|
531
|
+
className?: string | undefined;
|
|
532
|
+
themeShallow?: boolean | undefined;
|
|
533
|
+
id?: string | undefined;
|
|
534
|
+
tag?: string | undefined;
|
|
535
|
+
theme?: string | null | undefined;
|
|
536
|
+
group?: undefined;
|
|
537
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
538
|
+
componentName?: string | undefined;
|
|
539
|
+
tabIndex?: string | number | undefined;
|
|
540
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
541
|
+
disableOptimization?: boolean | undefined;
|
|
542
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
543
|
+
disableClassName?: boolean | undefined;
|
|
544
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
545
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
546
|
+
} & {
|
|
197
547
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
198
548
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
199
549
|
[x: string]: undefined;
|
|
200
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
550
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
551
|
+
target?: string | undefined;
|
|
552
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
553
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
554
|
+
dangerouslySetInnerHTML?: {
|
|
555
|
+
__html: string;
|
|
556
|
+
} | undefined;
|
|
557
|
+
children?: any;
|
|
558
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
559
|
+
disabled?: boolean | undefined;
|
|
560
|
+
className?: string | undefined;
|
|
561
|
+
themeShallow?: boolean | undefined;
|
|
562
|
+
id?: string | undefined;
|
|
563
|
+
tag?: string | undefined;
|
|
564
|
+
theme?: string | null | undefined;
|
|
565
|
+
group?: undefined;
|
|
566
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
567
|
+
componentName?: string | undefined;
|
|
568
|
+
tabIndex?: string | number | undefined;
|
|
569
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
570
|
+
disableOptimization?: boolean | undefined;
|
|
571
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
572
|
+
disableClassName?: boolean | undefined;
|
|
573
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
574
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
575
|
+
} & {
|
|
201
576
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
202
577
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
203
578
|
[x: string]: undefined;
|
|
204
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
579
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
580
|
+
target?: string | undefined;
|
|
581
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
582
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
583
|
+
dangerouslySetInnerHTML?: {
|
|
584
|
+
__html: string;
|
|
585
|
+
} | undefined;
|
|
586
|
+
children?: any;
|
|
587
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
588
|
+
disabled?: boolean | undefined;
|
|
589
|
+
className?: string | undefined;
|
|
590
|
+
themeShallow?: boolean | undefined;
|
|
591
|
+
id?: string | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
593
|
+
theme?: string | null | undefined;
|
|
594
|
+
group?: undefined;
|
|
595
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
596
|
+
componentName?: string | undefined;
|
|
597
|
+
tabIndex?: string | number | undefined;
|
|
598
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
599
|
+
disableOptimization?: boolean | undefined;
|
|
600
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
601
|
+
disableClassName?: boolean | undefined;
|
|
602
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
603
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
604
|
+
} & {
|
|
205
605
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
206
606
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
207
607
|
[x: string]: undefined;
|
|
208
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
608
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
209
609
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
210
610
|
contain?: import("csstype").Property.Contain | undefined;
|
|
211
611
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -223,7 +623,7 @@ declare const AccordionTriggerFrame: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
223
623
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
224
624
|
animateOnly?: string[] | undefined;
|
|
225
625
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
226
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
626
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>>, {
|
|
227
627
|
readonly unstyled?: boolean | undefined;
|
|
228
628
|
}, {
|
|
229
629
|
displayName: string | undefined;
|
|
@@ -231,15 +631,90 @@ declare const AccordionTriggerFrame: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
231
631
|
type AccordionTriggerProps = GetProps<typeof AccordionTriggerFrame>;
|
|
232
632
|
declare const AccordionContentFrame: import("@tamagui/web").TamaguiComponent<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
233
633
|
__scopeCollapsible?: string | undefined;
|
|
234
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
634
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
635
|
+
target?: string | undefined;
|
|
636
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
637
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
638
|
+
dangerouslySetInnerHTML?: {
|
|
639
|
+
__html: string;
|
|
640
|
+
} | undefined;
|
|
641
|
+
children?: any;
|
|
642
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
643
|
+
disabled?: boolean | undefined;
|
|
644
|
+
className?: string | undefined;
|
|
645
|
+
themeShallow?: boolean | undefined;
|
|
646
|
+
id?: string | undefined;
|
|
647
|
+
tag?: string | undefined;
|
|
648
|
+
theme?: string | null | undefined;
|
|
649
|
+
group?: undefined;
|
|
650
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
651
|
+
componentName?: string | undefined;
|
|
652
|
+
tabIndex?: string | number | undefined;
|
|
653
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
654
|
+
disableOptimization?: boolean | undefined;
|
|
655
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
656
|
+
disableClassName?: boolean | undefined;
|
|
657
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
658
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
659
|
+
} & {
|
|
235
660
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
236
661
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
237
662
|
[x: string]: undefined;
|
|
238
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
663
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
664
|
+
target?: string | undefined;
|
|
665
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
666
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
667
|
+
dangerouslySetInnerHTML?: {
|
|
668
|
+
__html: string;
|
|
669
|
+
} | undefined;
|
|
670
|
+
children?: any;
|
|
671
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
672
|
+
disabled?: boolean | undefined;
|
|
673
|
+
className?: string | undefined;
|
|
674
|
+
themeShallow?: boolean | undefined;
|
|
675
|
+
id?: string | undefined;
|
|
676
|
+
tag?: string | undefined;
|
|
677
|
+
theme?: string | null | undefined;
|
|
678
|
+
group?: undefined;
|
|
679
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
680
|
+
componentName?: string | undefined;
|
|
681
|
+
tabIndex?: string | number | undefined;
|
|
682
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
683
|
+
disableOptimization?: boolean | undefined;
|
|
684
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
685
|
+
disableClassName?: boolean | undefined;
|
|
686
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
687
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
688
|
+
} & {
|
|
239
689
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
240
690
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
241
691
|
[x: string]: undefined;
|
|
242
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
692
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
693
|
+
target?: string | undefined;
|
|
694
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
695
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
696
|
+
dangerouslySetInnerHTML?: {
|
|
697
|
+
__html: string;
|
|
698
|
+
} | undefined;
|
|
699
|
+
children?: any;
|
|
700
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
701
|
+
disabled?: boolean | undefined;
|
|
702
|
+
className?: string | undefined;
|
|
703
|
+
themeShallow?: boolean | undefined;
|
|
704
|
+
id?: string | undefined;
|
|
705
|
+
tag?: string | undefined;
|
|
706
|
+
theme?: string | null | undefined;
|
|
707
|
+
group?: undefined;
|
|
708
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
709
|
+
componentName?: string | undefined;
|
|
710
|
+
tabIndex?: string | number | undefined;
|
|
711
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
712
|
+
disableOptimization?: boolean | undefined;
|
|
713
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
714
|
+
disableClassName?: boolean | undefined;
|
|
715
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
716
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
717
|
+
} & {
|
|
243
718
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
244
719
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
245
720
|
[x: string]: undefined;
|
|
@@ -247,15 +722,90 @@ declare const AccordionContentFrame: import("@tamagui/web").TamaguiComponent<imp
|
|
|
247
722
|
readonly unstyled?: boolean | undefined;
|
|
248
723
|
} & import("@tamagui/web").PseudoProps<Partial<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
249
724
|
__scopeCollapsible?: string | undefined;
|
|
250
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
725
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
726
|
+
target?: string | undefined;
|
|
727
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
728
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
729
|
+
dangerouslySetInnerHTML?: {
|
|
730
|
+
__html: string;
|
|
731
|
+
} | undefined;
|
|
732
|
+
children?: any;
|
|
733
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
734
|
+
disabled?: boolean | undefined;
|
|
735
|
+
className?: string | undefined;
|
|
736
|
+
themeShallow?: boolean | undefined;
|
|
737
|
+
id?: string | undefined;
|
|
738
|
+
tag?: string | undefined;
|
|
739
|
+
theme?: string | null | undefined;
|
|
740
|
+
group?: undefined;
|
|
741
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
742
|
+
componentName?: string | undefined;
|
|
743
|
+
tabIndex?: string | number | undefined;
|
|
744
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
745
|
+
disableOptimization?: boolean | undefined;
|
|
746
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
747
|
+
disableClassName?: boolean | undefined;
|
|
748
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
749
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
750
|
+
} & {
|
|
251
751
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
252
752
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
253
753
|
[x: string]: undefined;
|
|
254
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
754
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
755
|
+
target?: string | undefined;
|
|
756
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
757
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
758
|
+
dangerouslySetInnerHTML?: {
|
|
759
|
+
__html: string;
|
|
760
|
+
} | undefined;
|
|
761
|
+
children?: any;
|
|
762
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
763
|
+
disabled?: boolean | undefined;
|
|
764
|
+
className?: string | undefined;
|
|
765
|
+
themeShallow?: boolean | undefined;
|
|
766
|
+
id?: string | undefined;
|
|
767
|
+
tag?: string | undefined;
|
|
768
|
+
theme?: string | null | undefined;
|
|
769
|
+
group?: undefined;
|
|
770
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
771
|
+
componentName?: string | undefined;
|
|
772
|
+
tabIndex?: string | number | undefined;
|
|
773
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
774
|
+
disableOptimization?: boolean | undefined;
|
|
775
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
776
|
+
disableClassName?: boolean | undefined;
|
|
777
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
778
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
779
|
+
} & {
|
|
255
780
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
256
781
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
257
782
|
[x: string]: undefined;
|
|
258
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
783
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
784
|
+
target?: string | undefined;
|
|
785
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
786
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
787
|
+
dangerouslySetInnerHTML?: {
|
|
788
|
+
__html: string;
|
|
789
|
+
} | undefined;
|
|
790
|
+
children?: any;
|
|
791
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
792
|
+
disabled?: boolean | undefined;
|
|
793
|
+
className?: string | undefined;
|
|
794
|
+
themeShallow?: boolean | undefined;
|
|
795
|
+
id?: string | undefined;
|
|
796
|
+
tag?: string | undefined;
|
|
797
|
+
theme?: string | null | undefined;
|
|
798
|
+
group?: undefined;
|
|
799
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
800
|
+
componentName?: string | undefined;
|
|
801
|
+
tabIndex?: string | number | undefined;
|
|
802
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
803
|
+
disableOptimization?: boolean | undefined;
|
|
804
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
805
|
+
disableClassName?: boolean | undefined;
|
|
806
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
807
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
808
|
+
} & {
|
|
259
809
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
260
810
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
261
811
|
[x: string]: undefined;
|
|
@@ -263,15 +813,90 @@ declare const AccordionContentFrame: import("@tamagui/web").TamaguiComponent<imp
|
|
|
263
813
|
readonly unstyled?: boolean | undefined;
|
|
264
814
|
}>> & import("@tamagui/web").MediaProps<Partial<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
265
815
|
__scopeCollapsible?: string | undefined;
|
|
266
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
816
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
817
|
+
target?: string | undefined;
|
|
818
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
819
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
820
|
+
dangerouslySetInnerHTML?: {
|
|
821
|
+
__html: string;
|
|
822
|
+
} | undefined;
|
|
823
|
+
children?: any;
|
|
824
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
825
|
+
disabled?: boolean | undefined;
|
|
826
|
+
className?: string | undefined;
|
|
827
|
+
themeShallow?: boolean | undefined;
|
|
828
|
+
id?: string | undefined;
|
|
829
|
+
tag?: string | undefined;
|
|
830
|
+
theme?: string | null | undefined;
|
|
831
|
+
group?: undefined;
|
|
832
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
833
|
+
componentName?: string | undefined;
|
|
834
|
+
tabIndex?: string | number | undefined;
|
|
835
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
836
|
+
disableOptimization?: boolean | undefined;
|
|
837
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
838
|
+
disableClassName?: boolean | undefined;
|
|
839
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
840
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
841
|
+
} & {
|
|
267
842
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
268
843
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
269
844
|
[x: string]: undefined;
|
|
270
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
845
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
846
|
+
target?: string | undefined;
|
|
847
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
848
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
849
|
+
dangerouslySetInnerHTML?: {
|
|
850
|
+
__html: string;
|
|
851
|
+
} | undefined;
|
|
852
|
+
children?: any;
|
|
853
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
854
|
+
disabled?: boolean | undefined;
|
|
855
|
+
className?: string | undefined;
|
|
856
|
+
themeShallow?: boolean | undefined;
|
|
857
|
+
id?: string | undefined;
|
|
858
|
+
tag?: string | undefined;
|
|
859
|
+
theme?: string | null | undefined;
|
|
860
|
+
group?: undefined;
|
|
861
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
862
|
+
componentName?: string | undefined;
|
|
863
|
+
tabIndex?: string | number | undefined;
|
|
864
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
865
|
+
disableOptimization?: boolean | undefined;
|
|
866
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
867
|
+
disableClassName?: boolean | undefined;
|
|
868
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
869
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
870
|
+
} & {
|
|
271
871
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
272
872
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
273
873
|
[x: string]: undefined;
|
|
274
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
874
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
875
|
+
target?: string | undefined;
|
|
876
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
877
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
878
|
+
dangerouslySetInnerHTML?: {
|
|
879
|
+
__html: string;
|
|
880
|
+
} | undefined;
|
|
881
|
+
children?: any;
|
|
882
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
883
|
+
disabled?: boolean | undefined;
|
|
884
|
+
className?: string | undefined;
|
|
885
|
+
themeShallow?: boolean | undefined;
|
|
886
|
+
id?: string | undefined;
|
|
887
|
+
tag?: string | undefined;
|
|
888
|
+
theme?: string | null | undefined;
|
|
889
|
+
group?: undefined;
|
|
890
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
891
|
+
componentName?: string | undefined;
|
|
892
|
+
tabIndex?: string | number | undefined;
|
|
893
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
894
|
+
disableOptimization?: boolean | undefined;
|
|
895
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
896
|
+
disableClassName?: boolean | undefined;
|
|
897
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
898
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
899
|
+
} & {
|
|
275
900
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
276
901
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
277
902
|
[x: string]: undefined;
|
|
@@ -279,15 +904,90 @@ declare const AccordionContentFrame: import("@tamagui/web").TamaguiComponent<imp
|
|
|
279
904
|
readonly unstyled?: boolean | undefined;
|
|
280
905
|
}>>, TamaguiElement, import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
281
906
|
__scopeCollapsible?: string | undefined;
|
|
282
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
907
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
908
|
+
target?: string | undefined;
|
|
909
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
910
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
911
|
+
dangerouslySetInnerHTML?: {
|
|
912
|
+
__html: string;
|
|
913
|
+
} | undefined;
|
|
914
|
+
children?: any;
|
|
915
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
916
|
+
disabled?: boolean | undefined;
|
|
917
|
+
className?: string | undefined;
|
|
918
|
+
themeShallow?: boolean | undefined;
|
|
919
|
+
id?: string | undefined;
|
|
920
|
+
tag?: string | undefined;
|
|
921
|
+
theme?: string | null | undefined;
|
|
922
|
+
group?: undefined;
|
|
923
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
924
|
+
componentName?: string | undefined;
|
|
925
|
+
tabIndex?: string | number | undefined;
|
|
926
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
927
|
+
disableOptimization?: boolean | undefined;
|
|
928
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
929
|
+
disableClassName?: boolean | undefined;
|
|
930
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
931
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
932
|
+
} & {
|
|
283
933
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
284
934
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
285
935
|
[x: string]: undefined;
|
|
286
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
936
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
937
|
+
target?: string | undefined;
|
|
938
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
939
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
940
|
+
dangerouslySetInnerHTML?: {
|
|
941
|
+
__html: string;
|
|
942
|
+
} | undefined;
|
|
943
|
+
children?: any;
|
|
944
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
945
|
+
disabled?: boolean | undefined;
|
|
946
|
+
className?: string | undefined;
|
|
947
|
+
themeShallow?: boolean | undefined;
|
|
948
|
+
id?: string | undefined;
|
|
949
|
+
tag?: string | undefined;
|
|
950
|
+
theme?: string | null | undefined;
|
|
951
|
+
group?: undefined;
|
|
952
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
953
|
+
componentName?: string | undefined;
|
|
954
|
+
tabIndex?: string | number | undefined;
|
|
955
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
956
|
+
disableOptimization?: boolean | undefined;
|
|
957
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
958
|
+
disableClassName?: boolean | undefined;
|
|
959
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
960
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
961
|
+
} & {
|
|
287
962
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
288
963
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
289
964
|
[x: string]: undefined;
|
|
290
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
965
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
966
|
+
target?: string | undefined;
|
|
967
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
968
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
969
|
+
dangerouslySetInnerHTML?: {
|
|
970
|
+
__html: string;
|
|
971
|
+
} | undefined;
|
|
972
|
+
children?: any;
|
|
973
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
974
|
+
disabled?: boolean | undefined;
|
|
975
|
+
className?: string | undefined;
|
|
976
|
+
themeShallow?: boolean | undefined;
|
|
977
|
+
id?: string | undefined;
|
|
978
|
+
tag?: string | undefined;
|
|
979
|
+
theme?: string | null | undefined;
|
|
980
|
+
group?: undefined;
|
|
981
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
982
|
+
componentName?: string | undefined;
|
|
983
|
+
tabIndex?: string | number | undefined;
|
|
984
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
985
|
+
disableOptimization?: boolean | undefined;
|
|
986
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
987
|
+
disableClassName?: boolean | undefined;
|
|
988
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
989
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
990
|
+
} & {
|
|
291
991
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
292
992
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
293
993
|
[x: string]: undefined;
|
|
@@ -298,21 +998,121 @@ declare const AccordionContentFrame: import("@tamagui/web").TamaguiComponent<imp
|
|
|
298
998
|
}>;
|
|
299
999
|
type AccordionContentProps = GetProps<typeof AccordionContentFrame>;
|
|
300
1000
|
declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSingleProps | AccordionMultipleProps> & React.RefAttributes<AccordionElement>> & {
|
|
301
|
-
Trigger: import("@tamagui/web").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1001
|
+
Trigger: import("@tamagui/web").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1002
|
+
target?: string | undefined;
|
|
1003
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1004
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1005
|
+
dangerouslySetInnerHTML?: {
|
|
1006
|
+
__html: string;
|
|
1007
|
+
} | undefined;
|
|
1008
|
+
children?: any;
|
|
1009
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1010
|
+
disabled?: boolean | undefined;
|
|
1011
|
+
className?: string | undefined;
|
|
1012
|
+
themeShallow?: boolean | undefined;
|
|
1013
|
+
id?: string | undefined;
|
|
1014
|
+
tag?: string | undefined;
|
|
1015
|
+
theme?: string | null | undefined;
|
|
1016
|
+
group?: undefined;
|
|
1017
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1018
|
+
componentName?: string | undefined;
|
|
1019
|
+
tabIndex?: string | number | undefined;
|
|
1020
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1021
|
+
disableOptimization?: boolean | undefined;
|
|
1022
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1023
|
+
disableClassName?: boolean | undefined;
|
|
1024
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1025
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1026
|
+
} & {
|
|
302
1027
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
303
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1028
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1029
|
+
target?: string | undefined;
|
|
1030
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1031
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1032
|
+
dangerouslySetInnerHTML?: {
|
|
1033
|
+
__html: string;
|
|
1034
|
+
} | undefined;
|
|
1035
|
+
children?: any;
|
|
1036
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1037
|
+
disabled?: boolean | undefined;
|
|
1038
|
+
className?: string | undefined;
|
|
1039
|
+
themeShallow?: boolean | undefined;
|
|
1040
|
+
id?: string | undefined;
|
|
1041
|
+
tag?: string | undefined;
|
|
1042
|
+
theme?: string | null | undefined;
|
|
1043
|
+
group?: undefined;
|
|
1044
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1045
|
+
componentName?: string | undefined;
|
|
1046
|
+
tabIndex?: string | number | undefined;
|
|
1047
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1048
|
+
disableOptimization?: boolean | undefined;
|
|
1049
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1050
|
+
disableClassName?: boolean | undefined;
|
|
1051
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1052
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1053
|
+
} & {
|
|
304
1054
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
305
1055
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
306
1056
|
[x: string]: undefined;
|
|
307
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1057
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1058
|
+
target?: string | undefined;
|
|
1059
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1060
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1061
|
+
dangerouslySetInnerHTML?: {
|
|
1062
|
+
__html: string;
|
|
1063
|
+
} | undefined;
|
|
1064
|
+
children?: any;
|
|
1065
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1066
|
+
disabled?: boolean | undefined;
|
|
1067
|
+
className?: string | undefined;
|
|
1068
|
+
themeShallow?: boolean | undefined;
|
|
1069
|
+
id?: string | undefined;
|
|
1070
|
+
tag?: string | undefined;
|
|
1071
|
+
theme?: string | null | undefined;
|
|
1072
|
+
group?: undefined;
|
|
1073
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1074
|
+
componentName?: string | undefined;
|
|
1075
|
+
tabIndex?: string | number | undefined;
|
|
1076
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1077
|
+
disableOptimization?: boolean | undefined;
|
|
1078
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1079
|
+
disableClassName?: boolean | undefined;
|
|
1080
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1081
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1082
|
+
} & {
|
|
308
1083
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
309
1084
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
310
1085
|
[x: string]: undefined;
|
|
311
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1086
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1087
|
+
target?: string | undefined;
|
|
1088
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1089
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1090
|
+
dangerouslySetInnerHTML?: {
|
|
1091
|
+
__html: string;
|
|
1092
|
+
} | undefined;
|
|
1093
|
+
children?: any;
|
|
1094
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1095
|
+
disabled?: boolean | undefined;
|
|
1096
|
+
className?: string | undefined;
|
|
1097
|
+
themeShallow?: boolean | undefined;
|
|
1098
|
+
id?: string | undefined;
|
|
1099
|
+
tag?: string | undefined;
|
|
1100
|
+
theme?: string | null | undefined;
|
|
1101
|
+
group?: undefined;
|
|
1102
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1103
|
+
componentName?: string | undefined;
|
|
1104
|
+
tabIndex?: string | number | undefined;
|
|
1105
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1106
|
+
disableOptimization?: boolean | undefined;
|
|
1107
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1108
|
+
disableClassName?: boolean | undefined;
|
|
1109
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1110
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1111
|
+
} & {
|
|
312
1112
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
313
1113
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
314
1114
|
[x: string]: undefined;
|
|
315
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1115
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
316
1116
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
317
1117
|
contain?: import("csstype").Property.Contain | undefined;
|
|
318
1118
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -330,23 +1130,123 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
330
1130
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
331
1131
|
animateOnly?: string[] | undefined;
|
|
332
1132
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
333
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1133
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
334
1134
|
readonly unstyled?: boolean | undefined;
|
|
335
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1135
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1136
|
+
target?: string | undefined;
|
|
1137
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1138
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1139
|
+
dangerouslySetInnerHTML?: {
|
|
1140
|
+
__html: string;
|
|
1141
|
+
} | undefined;
|
|
1142
|
+
children?: any;
|
|
1143
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1144
|
+
disabled?: boolean | undefined;
|
|
1145
|
+
className?: string | undefined;
|
|
1146
|
+
themeShallow?: boolean | undefined;
|
|
1147
|
+
id?: string | undefined;
|
|
1148
|
+
tag?: string | undefined;
|
|
1149
|
+
theme?: string | null | undefined;
|
|
1150
|
+
group?: undefined;
|
|
1151
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1152
|
+
componentName?: string | undefined;
|
|
1153
|
+
tabIndex?: string | number | undefined;
|
|
1154
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1155
|
+
disableOptimization?: boolean | undefined;
|
|
1156
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1157
|
+
disableClassName?: boolean | undefined;
|
|
1158
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1159
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1160
|
+
} & {
|
|
336
1161
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
337
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1162
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1163
|
+
target?: string | undefined;
|
|
1164
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1165
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1166
|
+
dangerouslySetInnerHTML?: {
|
|
1167
|
+
__html: string;
|
|
1168
|
+
} | undefined;
|
|
1169
|
+
children?: any;
|
|
1170
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1171
|
+
disabled?: boolean | undefined;
|
|
1172
|
+
className?: string | undefined;
|
|
1173
|
+
themeShallow?: boolean | undefined;
|
|
1174
|
+
id?: string | undefined;
|
|
1175
|
+
tag?: string | undefined;
|
|
1176
|
+
theme?: string | null | undefined;
|
|
1177
|
+
group?: undefined;
|
|
1178
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1179
|
+
componentName?: string | undefined;
|
|
1180
|
+
tabIndex?: string | number | undefined;
|
|
1181
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1182
|
+
disableOptimization?: boolean | undefined;
|
|
1183
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1184
|
+
disableClassName?: boolean | undefined;
|
|
1185
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1186
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1187
|
+
} & {
|
|
338
1188
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
339
1189
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
340
1190
|
[x: string]: undefined;
|
|
341
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1191
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1192
|
+
target?: string | undefined;
|
|
1193
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1194
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1195
|
+
dangerouslySetInnerHTML?: {
|
|
1196
|
+
__html: string;
|
|
1197
|
+
} | undefined;
|
|
1198
|
+
children?: any;
|
|
1199
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1200
|
+
disabled?: boolean | undefined;
|
|
1201
|
+
className?: string | undefined;
|
|
1202
|
+
themeShallow?: boolean | undefined;
|
|
1203
|
+
id?: string | undefined;
|
|
1204
|
+
tag?: string | undefined;
|
|
1205
|
+
theme?: string | null | undefined;
|
|
1206
|
+
group?: undefined;
|
|
1207
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1208
|
+
componentName?: string | undefined;
|
|
1209
|
+
tabIndex?: string | number | undefined;
|
|
1210
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1211
|
+
disableOptimization?: boolean | undefined;
|
|
1212
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1213
|
+
disableClassName?: boolean | undefined;
|
|
1214
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1215
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1216
|
+
} & {
|
|
342
1217
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
343
1218
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
344
1219
|
[x: string]: undefined;
|
|
345
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1220
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1221
|
+
target?: string | undefined;
|
|
1222
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1223
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1224
|
+
dangerouslySetInnerHTML?: {
|
|
1225
|
+
__html: string;
|
|
1226
|
+
} | undefined;
|
|
1227
|
+
children?: any;
|
|
1228
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1229
|
+
disabled?: boolean | undefined;
|
|
1230
|
+
className?: string | undefined;
|
|
1231
|
+
themeShallow?: boolean | undefined;
|
|
1232
|
+
id?: string | undefined;
|
|
1233
|
+
tag?: string | undefined;
|
|
1234
|
+
theme?: string | null | undefined;
|
|
1235
|
+
group?: undefined;
|
|
1236
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1237
|
+
componentName?: string | undefined;
|
|
1238
|
+
tabIndex?: string | number | undefined;
|
|
1239
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1240
|
+
disableOptimization?: boolean | undefined;
|
|
1241
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1242
|
+
disableClassName?: boolean | undefined;
|
|
1243
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1244
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1245
|
+
} & {
|
|
346
1246
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
347
1247
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
348
1248
|
[x: string]: undefined;
|
|
349
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1249
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
350
1250
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
351
1251
|
contain?: import("csstype").Property.Contain | undefined;
|
|
352
1252
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -364,23 +1264,123 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
364
1264
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
365
1265
|
animateOnly?: string[] | undefined;
|
|
366
1266
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
367
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1267
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
368
1268
|
readonly unstyled?: boolean | undefined;
|
|
369
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1269
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1270
|
+
target?: string | undefined;
|
|
1271
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1272
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1273
|
+
dangerouslySetInnerHTML?: {
|
|
1274
|
+
__html: string;
|
|
1275
|
+
} | undefined;
|
|
1276
|
+
children?: any;
|
|
1277
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1278
|
+
disabled?: boolean | undefined;
|
|
1279
|
+
className?: string | undefined;
|
|
1280
|
+
themeShallow?: boolean | undefined;
|
|
1281
|
+
id?: string | undefined;
|
|
1282
|
+
tag?: string | undefined;
|
|
1283
|
+
theme?: string | null | undefined;
|
|
1284
|
+
group?: undefined;
|
|
1285
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1286
|
+
componentName?: string | undefined;
|
|
1287
|
+
tabIndex?: string | number | undefined;
|
|
1288
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1289
|
+
disableOptimization?: boolean | undefined;
|
|
1290
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1291
|
+
disableClassName?: boolean | undefined;
|
|
1292
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1293
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1294
|
+
} & {
|
|
370
1295
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
371
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1296
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1297
|
+
target?: string | undefined;
|
|
1298
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1299
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1300
|
+
dangerouslySetInnerHTML?: {
|
|
1301
|
+
__html: string;
|
|
1302
|
+
} | undefined;
|
|
1303
|
+
children?: any;
|
|
1304
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1305
|
+
disabled?: boolean | undefined;
|
|
1306
|
+
className?: string | undefined;
|
|
1307
|
+
themeShallow?: boolean | undefined;
|
|
1308
|
+
id?: string | undefined;
|
|
1309
|
+
tag?: string | undefined;
|
|
1310
|
+
theme?: string | null | undefined;
|
|
1311
|
+
group?: undefined;
|
|
1312
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1313
|
+
componentName?: string | undefined;
|
|
1314
|
+
tabIndex?: string | number | undefined;
|
|
1315
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1316
|
+
disableOptimization?: boolean | undefined;
|
|
1317
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1318
|
+
disableClassName?: boolean | undefined;
|
|
1319
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1320
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1321
|
+
} & {
|
|
372
1322
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
373
1323
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
374
1324
|
[x: string]: undefined;
|
|
375
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1325
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1326
|
+
target?: string | undefined;
|
|
1327
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1328
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1329
|
+
dangerouslySetInnerHTML?: {
|
|
1330
|
+
__html: string;
|
|
1331
|
+
} | undefined;
|
|
1332
|
+
children?: any;
|
|
1333
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1334
|
+
disabled?: boolean | undefined;
|
|
1335
|
+
className?: string | undefined;
|
|
1336
|
+
themeShallow?: boolean | undefined;
|
|
1337
|
+
id?: string | undefined;
|
|
1338
|
+
tag?: string | undefined;
|
|
1339
|
+
theme?: string | null | undefined;
|
|
1340
|
+
group?: undefined;
|
|
1341
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1342
|
+
componentName?: string | undefined;
|
|
1343
|
+
tabIndex?: string | number | undefined;
|
|
1344
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1345
|
+
disableOptimization?: boolean | undefined;
|
|
1346
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1347
|
+
disableClassName?: boolean | undefined;
|
|
1348
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1349
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1350
|
+
} & {
|
|
376
1351
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
377
1352
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
378
1353
|
[x: string]: undefined;
|
|
379
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1354
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1355
|
+
target?: string | undefined;
|
|
1356
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1357
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1358
|
+
dangerouslySetInnerHTML?: {
|
|
1359
|
+
__html: string;
|
|
1360
|
+
} | undefined;
|
|
1361
|
+
children?: any;
|
|
1362
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1363
|
+
disabled?: boolean | undefined;
|
|
1364
|
+
className?: string | undefined;
|
|
1365
|
+
themeShallow?: boolean | undefined;
|
|
1366
|
+
id?: string | undefined;
|
|
1367
|
+
tag?: string | undefined;
|
|
1368
|
+
theme?: string | null | undefined;
|
|
1369
|
+
group?: undefined;
|
|
1370
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1371
|
+
componentName?: string | undefined;
|
|
1372
|
+
tabIndex?: string | number | undefined;
|
|
1373
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1374
|
+
disableOptimization?: boolean | undefined;
|
|
1375
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1376
|
+
disableClassName?: boolean | undefined;
|
|
1377
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1378
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1379
|
+
} & {
|
|
380
1380
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
381
1381
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
382
1382
|
[x: string]: undefined;
|
|
383
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1383
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
384
1384
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
385
1385
|
contain?: import("csstype").Property.Contain | undefined;
|
|
386
1386
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -398,25 +1398,125 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
398
1398
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
399
1399
|
animateOnly?: string[] | undefined;
|
|
400
1400
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
401
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1401
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
402
1402
|
readonly unstyled?: boolean | undefined;
|
|
403
1403
|
}>>, keyof Object>, TamaguiElement> & {
|
|
404
1404
|
staticConfig: import("@tamagui/web").StaticConfig;
|
|
405
|
-
styleable: import("@tamagui/web").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1405
|
+
styleable: import("@tamagui/web").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1406
|
+
target?: string | undefined;
|
|
1407
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1408
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1409
|
+
dangerouslySetInnerHTML?: {
|
|
1410
|
+
__html: string;
|
|
1411
|
+
} | undefined;
|
|
1412
|
+
children?: any;
|
|
1413
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1414
|
+
disabled?: boolean | undefined;
|
|
1415
|
+
className?: string | undefined;
|
|
1416
|
+
themeShallow?: boolean | undefined;
|
|
1417
|
+
id?: string | undefined;
|
|
1418
|
+
tag?: string | undefined;
|
|
1419
|
+
theme?: string | null | undefined;
|
|
1420
|
+
group?: undefined;
|
|
1421
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1422
|
+
componentName?: string | undefined;
|
|
1423
|
+
tabIndex?: string | number | undefined;
|
|
1424
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1425
|
+
disableOptimization?: boolean | undefined;
|
|
1426
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1427
|
+
disableClassName?: boolean | undefined;
|
|
1428
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1429
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1430
|
+
} & {
|
|
406
1431
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
407
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1432
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1433
|
+
target?: string | undefined;
|
|
1434
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1435
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1436
|
+
dangerouslySetInnerHTML?: {
|
|
1437
|
+
__html: string;
|
|
1438
|
+
} | undefined;
|
|
1439
|
+
children?: any;
|
|
1440
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1441
|
+
disabled?: boolean | undefined;
|
|
1442
|
+
className?: string | undefined;
|
|
1443
|
+
themeShallow?: boolean | undefined;
|
|
1444
|
+
id?: string | undefined;
|
|
1445
|
+
tag?: string | undefined;
|
|
1446
|
+
theme?: string | null | undefined;
|
|
1447
|
+
group?: undefined;
|
|
1448
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1449
|
+
componentName?: string | undefined;
|
|
1450
|
+
tabIndex?: string | number | undefined;
|
|
1451
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1452
|
+
disableOptimization?: boolean | undefined;
|
|
1453
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1454
|
+
disableClassName?: boolean | undefined;
|
|
1455
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1456
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1457
|
+
} & {
|
|
408
1458
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
409
1459
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
410
1460
|
[x: string]: undefined;
|
|
411
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1461
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1462
|
+
target?: string | undefined;
|
|
1463
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1464
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1465
|
+
dangerouslySetInnerHTML?: {
|
|
1466
|
+
__html: string;
|
|
1467
|
+
} | undefined;
|
|
1468
|
+
children?: any;
|
|
1469
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1470
|
+
disabled?: boolean | undefined;
|
|
1471
|
+
className?: string | undefined;
|
|
1472
|
+
themeShallow?: boolean | undefined;
|
|
1473
|
+
id?: string | undefined;
|
|
1474
|
+
tag?: string | undefined;
|
|
1475
|
+
theme?: string | null | undefined;
|
|
1476
|
+
group?: undefined;
|
|
1477
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1478
|
+
componentName?: string | undefined;
|
|
1479
|
+
tabIndex?: string | number | undefined;
|
|
1480
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1481
|
+
disableOptimization?: boolean | undefined;
|
|
1482
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1483
|
+
disableClassName?: boolean | undefined;
|
|
1484
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1485
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1486
|
+
} & {
|
|
412
1487
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
413
1488
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
414
1489
|
[x: string]: undefined;
|
|
415
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1490
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1491
|
+
target?: string | undefined;
|
|
1492
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1493
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1494
|
+
dangerouslySetInnerHTML?: {
|
|
1495
|
+
__html: string;
|
|
1496
|
+
} | undefined;
|
|
1497
|
+
children?: any;
|
|
1498
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1499
|
+
disabled?: boolean | undefined;
|
|
1500
|
+
className?: string | undefined;
|
|
1501
|
+
themeShallow?: boolean | undefined;
|
|
1502
|
+
id?: string | undefined;
|
|
1503
|
+
tag?: string | undefined;
|
|
1504
|
+
theme?: string | null | undefined;
|
|
1505
|
+
group?: undefined;
|
|
1506
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1507
|
+
componentName?: string | undefined;
|
|
1508
|
+
tabIndex?: string | number | undefined;
|
|
1509
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1510
|
+
disableOptimization?: boolean | undefined;
|
|
1511
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1512
|
+
disableClassName?: boolean | undefined;
|
|
1513
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1514
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1515
|
+
} & {
|
|
416
1516
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
417
1517
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
418
1518
|
[x: string]: undefined;
|
|
419
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1519
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
420
1520
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
421
1521
|
contain?: import("csstype").Property.Contain | undefined;
|
|
422
1522
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -434,23 +1534,123 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
434
1534
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
435
1535
|
animateOnly?: string[] | undefined;
|
|
436
1536
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
437
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1537
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
438
1538
|
readonly unstyled?: boolean | undefined;
|
|
439
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1539
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1540
|
+
target?: string | undefined;
|
|
1541
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1542
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1543
|
+
dangerouslySetInnerHTML?: {
|
|
1544
|
+
__html: string;
|
|
1545
|
+
} | undefined;
|
|
1546
|
+
children?: any;
|
|
1547
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1548
|
+
disabled?: boolean | undefined;
|
|
1549
|
+
className?: string | undefined;
|
|
1550
|
+
themeShallow?: boolean | undefined;
|
|
1551
|
+
id?: string | undefined;
|
|
1552
|
+
tag?: string | undefined;
|
|
1553
|
+
theme?: string | null | undefined;
|
|
1554
|
+
group?: undefined;
|
|
1555
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1556
|
+
componentName?: string | undefined;
|
|
1557
|
+
tabIndex?: string | number | undefined;
|
|
1558
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1559
|
+
disableOptimization?: boolean | undefined;
|
|
1560
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1561
|
+
disableClassName?: boolean | undefined;
|
|
1562
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1563
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1564
|
+
} & {
|
|
440
1565
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
441
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1566
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1567
|
+
target?: string | undefined;
|
|
1568
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1569
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1570
|
+
dangerouslySetInnerHTML?: {
|
|
1571
|
+
__html: string;
|
|
1572
|
+
} | undefined;
|
|
1573
|
+
children?: any;
|
|
1574
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1575
|
+
disabled?: boolean | undefined;
|
|
1576
|
+
className?: string | undefined;
|
|
1577
|
+
themeShallow?: boolean | undefined;
|
|
1578
|
+
id?: string | undefined;
|
|
1579
|
+
tag?: string | undefined;
|
|
1580
|
+
theme?: string | null | undefined;
|
|
1581
|
+
group?: undefined;
|
|
1582
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1583
|
+
componentName?: string | undefined;
|
|
1584
|
+
tabIndex?: string | number | undefined;
|
|
1585
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1586
|
+
disableOptimization?: boolean | undefined;
|
|
1587
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1588
|
+
disableClassName?: boolean | undefined;
|
|
1589
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1590
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1591
|
+
} & {
|
|
442
1592
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
443
1593
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
444
1594
|
[x: string]: undefined;
|
|
445
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1595
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1596
|
+
target?: string | undefined;
|
|
1597
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1598
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1599
|
+
dangerouslySetInnerHTML?: {
|
|
1600
|
+
__html: string;
|
|
1601
|
+
} | undefined;
|
|
1602
|
+
children?: any;
|
|
1603
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1604
|
+
disabled?: boolean | undefined;
|
|
1605
|
+
className?: string | undefined;
|
|
1606
|
+
themeShallow?: boolean | undefined;
|
|
1607
|
+
id?: string | undefined;
|
|
1608
|
+
tag?: string | undefined;
|
|
1609
|
+
theme?: string | null | undefined;
|
|
1610
|
+
group?: undefined;
|
|
1611
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1612
|
+
componentName?: string | undefined;
|
|
1613
|
+
tabIndex?: string | number | undefined;
|
|
1614
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1615
|
+
disableOptimization?: boolean | undefined;
|
|
1616
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1617
|
+
disableClassName?: boolean | undefined;
|
|
1618
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1619
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1620
|
+
} & {
|
|
446
1621
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
447
1622
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
448
1623
|
[x: string]: undefined;
|
|
449
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1624
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1625
|
+
target?: string | undefined;
|
|
1626
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1627
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1628
|
+
dangerouslySetInnerHTML?: {
|
|
1629
|
+
__html: string;
|
|
1630
|
+
} | undefined;
|
|
1631
|
+
children?: any;
|
|
1632
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1633
|
+
disabled?: boolean | undefined;
|
|
1634
|
+
className?: string | undefined;
|
|
1635
|
+
themeShallow?: boolean | undefined;
|
|
1636
|
+
id?: string | undefined;
|
|
1637
|
+
tag?: string | undefined;
|
|
1638
|
+
theme?: string | null | undefined;
|
|
1639
|
+
group?: undefined;
|
|
1640
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1641
|
+
componentName?: string | undefined;
|
|
1642
|
+
tabIndex?: string | number | undefined;
|
|
1643
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1644
|
+
disableOptimization?: boolean | undefined;
|
|
1645
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1646
|
+
disableClassName?: boolean | undefined;
|
|
1647
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1648
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1649
|
+
} & {
|
|
450
1650
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
451
1651
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
452
1652
|
[x: string]: undefined;
|
|
453
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1653
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
454
1654
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
455
1655
|
contain?: import("csstype").Property.Contain | undefined;
|
|
456
1656
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -468,23 +1668,123 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
468
1668
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
469
1669
|
animateOnly?: string[] | undefined;
|
|
470
1670
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
471
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1671
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
472
1672
|
readonly unstyled?: boolean | undefined;
|
|
473
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1673
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1674
|
+
target?: string | undefined;
|
|
1675
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1676
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1677
|
+
dangerouslySetInnerHTML?: {
|
|
1678
|
+
__html: string;
|
|
1679
|
+
} | undefined;
|
|
1680
|
+
children?: any;
|
|
1681
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1682
|
+
disabled?: boolean | undefined;
|
|
1683
|
+
className?: string | undefined;
|
|
1684
|
+
themeShallow?: boolean | undefined;
|
|
1685
|
+
id?: string | undefined;
|
|
1686
|
+
tag?: string | undefined;
|
|
1687
|
+
theme?: string | null | undefined;
|
|
1688
|
+
group?: undefined;
|
|
1689
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1690
|
+
componentName?: string | undefined;
|
|
1691
|
+
tabIndex?: string | number | undefined;
|
|
1692
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1693
|
+
disableOptimization?: boolean | undefined;
|
|
1694
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1695
|
+
disableClassName?: boolean | undefined;
|
|
1696
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1697
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1698
|
+
} & {
|
|
474
1699
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
475
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1700
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1701
|
+
target?: string | undefined;
|
|
1702
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1703
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1704
|
+
dangerouslySetInnerHTML?: {
|
|
1705
|
+
__html: string;
|
|
1706
|
+
} | undefined;
|
|
1707
|
+
children?: any;
|
|
1708
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1709
|
+
disabled?: boolean | undefined;
|
|
1710
|
+
className?: string | undefined;
|
|
1711
|
+
themeShallow?: boolean | undefined;
|
|
1712
|
+
id?: string | undefined;
|
|
1713
|
+
tag?: string | undefined;
|
|
1714
|
+
theme?: string | null | undefined;
|
|
1715
|
+
group?: undefined;
|
|
1716
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1717
|
+
componentName?: string | undefined;
|
|
1718
|
+
tabIndex?: string | number | undefined;
|
|
1719
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1720
|
+
disableOptimization?: boolean | undefined;
|
|
1721
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1722
|
+
disableClassName?: boolean | undefined;
|
|
1723
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1724
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1725
|
+
} & {
|
|
476
1726
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
477
1727
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
478
1728
|
[x: string]: undefined;
|
|
479
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1729
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1730
|
+
target?: string | undefined;
|
|
1731
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1732
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1733
|
+
dangerouslySetInnerHTML?: {
|
|
1734
|
+
__html: string;
|
|
1735
|
+
} | undefined;
|
|
1736
|
+
children?: any;
|
|
1737
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1738
|
+
disabled?: boolean | undefined;
|
|
1739
|
+
className?: string | undefined;
|
|
1740
|
+
themeShallow?: boolean | undefined;
|
|
1741
|
+
id?: string | undefined;
|
|
1742
|
+
tag?: string | undefined;
|
|
1743
|
+
theme?: string | null | undefined;
|
|
1744
|
+
group?: undefined;
|
|
1745
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1746
|
+
componentName?: string | undefined;
|
|
1747
|
+
tabIndex?: string | number | undefined;
|
|
1748
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1749
|
+
disableOptimization?: boolean | undefined;
|
|
1750
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1751
|
+
disableClassName?: boolean | undefined;
|
|
1752
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1753
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1754
|
+
} & {
|
|
480
1755
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
481
1756
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
482
1757
|
[x: string]: undefined;
|
|
483
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1758
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1759
|
+
target?: string | undefined;
|
|
1760
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1761
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1762
|
+
dangerouslySetInnerHTML?: {
|
|
1763
|
+
__html: string;
|
|
1764
|
+
} | undefined;
|
|
1765
|
+
children?: any;
|
|
1766
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1767
|
+
disabled?: boolean | undefined;
|
|
1768
|
+
className?: string | undefined;
|
|
1769
|
+
themeShallow?: boolean | undefined;
|
|
1770
|
+
id?: string | undefined;
|
|
1771
|
+
tag?: string | undefined;
|
|
1772
|
+
theme?: string | null | undefined;
|
|
1773
|
+
group?: undefined;
|
|
1774
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1775
|
+
componentName?: string | undefined;
|
|
1776
|
+
tabIndex?: string | number | undefined;
|
|
1777
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1778
|
+
disableOptimization?: boolean | undefined;
|
|
1779
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1780
|
+
disableClassName?: boolean | undefined;
|
|
1781
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1782
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1783
|
+
} & {
|
|
484
1784
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
485
1785
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
486
1786
|
[x: string]: undefined;
|
|
487
|
-
}>>), "display" | "style" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1787
|
+
}>>), "display" | "children" | "style" | "hitSlop" | "id" | "pointerEvents" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "userSelect" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & React.RefAttributes<TamaguiElement> & Omit<import("@tamagui/web").StackProps, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | keyof {
|
|
488
1788
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
489
1789
|
contain?: import("csstype").Property.Contain | undefined;
|
|
490
1790
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -502,47 +1802,222 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
502
1802
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
503
1803
|
animateOnly?: string[] | undefined;
|
|
504
1804
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
505
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
1805
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> | keyof React.RefAttributes<TamaguiElement>> & Omit<{}, "unstyled"> & {
|
|
506
1806
|
readonly unstyled?: boolean | undefined;
|
|
507
1807
|
}>>, TamaguiElement>;
|
|
508
1808
|
};
|
|
509
|
-
Header: React.ForwardRefExoticComponent<(Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
1809
|
+
Header: React.ForwardRefExoticComponent<(Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1810
|
+
target?: string | undefined;
|
|
1811
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1812
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1813
|
+
dangerouslySetInnerHTML?: {
|
|
1814
|
+
__html: string;
|
|
1815
|
+
} | undefined;
|
|
1816
|
+
children?: any;
|
|
1817
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1818
|
+
disabled?: boolean | undefined;
|
|
1819
|
+
className?: string | undefined;
|
|
1820
|
+
themeShallow?: boolean | undefined;
|
|
1821
|
+
id?: string | undefined;
|
|
1822
|
+
tag?: string | undefined;
|
|
1823
|
+
theme?: string | null | undefined;
|
|
1824
|
+
group?: undefined;
|
|
1825
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1826
|
+
componentName?: string | undefined;
|
|
1827
|
+
tabIndex?: string | number | undefined;
|
|
1828
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1829
|
+
disableOptimization?: boolean | undefined;
|
|
1830
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1831
|
+
disableClassName?: boolean | undefined;
|
|
1832
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1833
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1834
|
+
} & {
|
|
510
1835
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
511
1836
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "unstyled" | "size"> & {
|
|
512
1837
|
readonly unstyled?: boolean | undefined;
|
|
513
1838
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
514
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
1839
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1840
|
+
target?: string | undefined;
|
|
1841
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1842
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1843
|
+
dangerouslySetInnerHTML?: {
|
|
1844
|
+
__html: string;
|
|
1845
|
+
} | undefined;
|
|
1846
|
+
children?: any;
|
|
1847
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1848
|
+
disabled?: boolean | undefined;
|
|
1849
|
+
className?: string | undefined;
|
|
1850
|
+
themeShallow?: boolean | undefined;
|
|
1851
|
+
id?: string | undefined;
|
|
1852
|
+
tag?: string | undefined;
|
|
1853
|
+
theme?: string | null | undefined;
|
|
1854
|
+
group?: undefined;
|
|
1855
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1856
|
+
componentName?: string | undefined;
|
|
1857
|
+
tabIndex?: string | number | undefined;
|
|
1858
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1859
|
+
disableOptimization?: boolean | undefined;
|
|
1860
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1861
|
+
disableClassName?: boolean | undefined;
|
|
1862
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1863
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1864
|
+
} & {
|
|
515
1865
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
516
1866
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "unstyled" | "size"> & {
|
|
517
1867
|
readonly unstyled?: boolean | undefined;
|
|
518
1868
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
519
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
1869
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1870
|
+
target?: string | undefined;
|
|
1871
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1872
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1873
|
+
dangerouslySetInnerHTML?: {
|
|
1874
|
+
__html: string;
|
|
1875
|
+
} | undefined;
|
|
1876
|
+
children?: any;
|
|
1877
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1878
|
+
disabled?: boolean | undefined;
|
|
1879
|
+
className?: string | undefined;
|
|
1880
|
+
themeShallow?: boolean | undefined;
|
|
1881
|
+
id?: string | undefined;
|
|
1882
|
+
tag?: string | undefined;
|
|
1883
|
+
theme?: string | null | undefined;
|
|
1884
|
+
group?: undefined;
|
|
1885
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1886
|
+
componentName?: string | undefined;
|
|
1887
|
+
tabIndex?: string | number | undefined;
|
|
1888
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1889
|
+
disableOptimization?: boolean | undefined;
|
|
1890
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1891
|
+
disableClassName?: boolean | undefined;
|
|
1892
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1893
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1894
|
+
} & {
|
|
520
1895
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
521
1896
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{}, "unstyled" | "size"> & {
|
|
522
1897
|
readonly unstyled?: boolean | undefined;
|
|
523
1898
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
524
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
1899
|
+
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1900
|
+
target?: string | undefined;
|
|
1901
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1902
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1903
|
+
dangerouslySetInnerHTML?: {
|
|
1904
|
+
__html: string;
|
|
1905
|
+
} | undefined;
|
|
1906
|
+
children?: any;
|
|
1907
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1908
|
+
disabled?: boolean | undefined;
|
|
1909
|
+
className?: string | undefined;
|
|
1910
|
+
themeShallow?: boolean | undefined;
|
|
1911
|
+
id?: string | undefined;
|
|
1912
|
+
tag?: string | undefined;
|
|
1913
|
+
theme?: string | null | undefined;
|
|
1914
|
+
group?: undefined;
|
|
1915
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1916
|
+
componentName?: string | undefined;
|
|
1917
|
+
tabIndex?: string | number | undefined;
|
|
1918
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1919
|
+
disableOptimization?: boolean | undefined;
|
|
1920
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1921
|
+
disableClassName?: boolean | undefined;
|
|
1922
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1923
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1924
|
+
} & {
|
|
525
1925
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
526
1926
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
527
1927
|
readonly unstyled?: boolean | undefined;
|
|
528
1928
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
529
1929
|
}, string | number> & {
|
|
530
1930
|
[x: string]: undefined;
|
|
531
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
1931
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1932
|
+
target?: string | undefined;
|
|
1933
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1934
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1935
|
+
dangerouslySetInnerHTML?: {
|
|
1936
|
+
__html: string;
|
|
1937
|
+
} | undefined;
|
|
1938
|
+
children?: any;
|
|
1939
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1940
|
+
disabled?: boolean | undefined;
|
|
1941
|
+
className?: string | undefined;
|
|
1942
|
+
themeShallow?: boolean | undefined;
|
|
1943
|
+
id?: string | undefined;
|
|
1944
|
+
tag?: string | undefined;
|
|
1945
|
+
theme?: string | null | undefined;
|
|
1946
|
+
group?: undefined;
|
|
1947
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1948
|
+
componentName?: string | undefined;
|
|
1949
|
+
tabIndex?: string | number | undefined;
|
|
1950
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1951
|
+
disableOptimization?: boolean | undefined;
|
|
1952
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1953
|
+
disableClassName?: boolean | undefined;
|
|
1954
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1955
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1956
|
+
} & {
|
|
532
1957
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
533
1958
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
534
1959
|
readonly unstyled?: boolean | undefined;
|
|
535
1960
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
536
1961
|
}, string | number> & {
|
|
537
1962
|
[x: string]: undefined;
|
|
538
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
1963
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1964
|
+
target?: string | undefined;
|
|
1965
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1966
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1967
|
+
dangerouslySetInnerHTML?: {
|
|
1968
|
+
__html: string;
|
|
1969
|
+
} | undefined;
|
|
1970
|
+
children?: any;
|
|
1971
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1972
|
+
disabled?: boolean | undefined;
|
|
1973
|
+
className?: string | undefined;
|
|
1974
|
+
themeShallow?: boolean | undefined;
|
|
1975
|
+
id?: string | undefined;
|
|
1976
|
+
tag?: string | undefined;
|
|
1977
|
+
theme?: string | null | undefined;
|
|
1978
|
+
group?: undefined;
|
|
1979
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1980
|
+
componentName?: string | undefined;
|
|
1981
|
+
tabIndex?: string | number | undefined;
|
|
1982
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1983
|
+
disableOptimization?: boolean | undefined;
|
|
1984
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1985
|
+
disableClassName?: boolean | undefined;
|
|
1986
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1987
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1988
|
+
} & {
|
|
539
1989
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
540
1990
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
541
1991
|
readonly unstyled?: boolean | undefined;
|
|
542
1992
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
543
1993
|
}, string | number> & {
|
|
544
1994
|
[x: string]: undefined;
|
|
545
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
1995
|
+
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1996
|
+
target?: string | undefined;
|
|
1997
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1998
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1999
|
+
dangerouslySetInnerHTML?: {
|
|
2000
|
+
__html: string;
|
|
2001
|
+
} | undefined;
|
|
2002
|
+
children?: any;
|
|
2003
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2004
|
+
disabled?: boolean | undefined;
|
|
2005
|
+
className?: string | undefined;
|
|
2006
|
+
themeShallow?: boolean | undefined;
|
|
2007
|
+
id?: string | undefined;
|
|
2008
|
+
tag?: string | undefined;
|
|
2009
|
+
theme?: string | null | undefined;
|
|
2010
|
+
group?: undefined;
|
|
2011
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2012
|
+
componentName?: string | undefined;
|
|
2013
|
+
tabIndex?: string | number | undefined;
|
|
2014
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2015
|
+
disableOptimization?: boolean | undefined;
|
|
2016
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2017
|
+
disableClassName?: boolean | undefined;
|
|
2018
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2019
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2020
|
+
} & {
|
|
546
2021
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
547
2022
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
548
2023
|
readonly unstyled?: boolean | undefined;
|
|
@@ -554,7 +2029,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
554
2029
|
[x: string]: undefined;
|
|
555
2030
|
}), string | number> & {
|
|
556
2031
|
[x: string]: undefined;
|
|
557
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2032
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2033
|
+
target?: string | undefined;
|
|
2034
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2035
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2036
|
+
dangerouslySetInnerHTML?: {
|
|
2037
|
+
__html: string;
|
|
2038
|
+
} | undefined;
|
|
2039
|
+
children?: any;
|
|
2040
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2041
|
+
disabled?: boolean | undefined;
|
|
2042
|
+
className?: string | undefined;
|
|
2043
|
+
themeShallow?: boolean | undefined;
|
|
2044
|
+
id?: string | undefined;
|
|
2045
|
+
tag?: string | undefined;
|
|
2046
|
+
theme?: string | null | undefined;
|
|
2047
|
+
group?: undefined;
|
|
2048
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2049
|
+
componentName?: string | undefined;
|
|
2050
|
+
tabIndex?: string | number | undefined;
|
|
2051
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2052
|
+
disableOptimization?: boolean | undefined;
|
|
2053
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2054
|
+
disableClassName?: boolean | undefined;
|
|
2055
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2056
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2057
|
+
} & {
|
|
558
2058
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
559
2059
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
560
2060
|
readonly unstyled?: boolean | undefined;
|
|
@@ -566,7 +2066,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
566
2066
|
[x: string]: undefined;
|
|
567
2067
|
}), string | number> & {
|
|
568
2068
|
[x: string]: undefined;
|
|
569
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2069
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2070
|
+
target?: string | undefined;
|
|
2071
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2072
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2073
|
+
dangerouslySetInnerHTML?: {
|
|
2074
|
+
__html: string;
|
|
2075
|
+
} | undefined;
|
|
2076
|
+
children?: any;
|
|
2077
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2078
|
+
disabled?: boolean | undefined;
|
|
2079
|
+
className?: string | undefined;
|
|
2080
|
+
themeShallow?: boolean | undefined;
|
|
2081
|
+
id?: string | undefined;
|
|
2082
|
+
tag?: string | undefined;
|
|
2083
|
+
theme?: string | null | undefined;
|
|
2084
|
+
group?: undefined;
|
|
2085
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2086
|
+
componentName?: string | undefined;
|
|
2087
|
+
tabIndex?: string | number | undefined;
|
|
2088
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2089
|
+
disableOptimization?: boolean | undefined;
|
|
2090
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2091
|
+
disableClassName?: boolean | undefined;
|
|
2092
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2093
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2094
|
+
} & {
|
|
570
2095
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
571
2096
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
572
2097
|
readonly unstyled?: boolean | undefined;
|
|
@@ -578,7 +2103,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
578
2103
|
[x: string]: undefined;
|
|
579
2104
|
}), string | number> & {
|
|
580
2105
|
[x: string]: undefined;
|
|
581
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2106
|
+
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2107
|
+
target?: string | undefined;
|
|
2108
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2109
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2110
|
+
dangerouslySetInnerHTML?: {
|
|
2111
|
+
__html: string;
|
|
2112
|
+
} | undefined;
|
|
2113
|
+
children?: any;
|
|
2114
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2115
|
+
disabled?: boolean | undefined;
|
|
2116
|
+
className?: string | undefined;
|
|
2117
|
+
themeShallow?: boolean | undefined;
|
|
2118
|
+
id?: string | undefined;
|
|
2119
|
+
tag?: string | undefined;
|
|
2120
|
+
theme?: string | null | undefined;
|
|
2121
|
+
group?: undefined;
|
|
2122
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2123
|
+
componentName?: string | undefined;
|
|
2124
|
+
tabIndex?: string | number | undefined;
|
|
2125
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2126
|
+
disableOptimization?: boolean | undefined;
|
|
2127
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2128
|
+
disableClassName?: boolean | undefined;
|
|
2129
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2130
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2131
|
+
} & {
|
|
582
2132
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
583
2133
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
584
2134
|
readonly unstyled?: boolean | undefined;
|
|
@@ -590,7 +2140,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
590
2140
|
[x: string]: undefined;
|
|
591
2141
|
}), string | number> & {
|
|
592
2142
|
[x: string]: undefined;
|
|
593
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2143
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2144
|
+
target?: string | undefined;
|
|
2145
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2146
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2147
|
+
dangerouslySetInnerHTML?: {
|
|
2148
|
+
__html: string;
|
|
2149
|
+
} | undefined;
|
|
2150
|
+
children?: any;
|
|
2151
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2152
|
+
disabled?: boolean | undefined;
|
|
2153
|
+
className?: string | undefined;
|
|
2154
|
+
themeShallow?: boolean | undefined;
|
|
2155
|
+
id?: string | undefined;
|
|
2156
|
+
tag?: string | undefined;
|
|
2157
|
+
theme?: string | null | undefined;
|
|
2158
|
+
group?: undefined;
|
|
2159
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2160
|
+
componentName?: string | undefined;
|
|
2161
|
+
tabIndex?: string | number | undefined;
|
|
2162
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2163
|
+
disableOptimization?: boolean | undefined;
|
|
2164
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2165
|
+
disableClassName?: boolean | undefined;
|
|
2166
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2167
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2168
|
+
} & {
|
|
594
2169
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
595
2170
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
596
2171
|
readonly unstyled?: boolean | undefined;
|
|
@@ -602,7 +2177,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
602
2177
|
[x: string]: undefined;
|
|
603
2178
|
}), string | number> & {
|
|
604
2179
|
[x: string]: undefined;
|
|
605
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2180
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2181
|
+
target?: string | undefined;
|
|
2182
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2183
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2184
|
+
dangerouslySetInnerHTML?: {
|
|
2185
|
+
__html: string;
|
|
2186
|
+
} | undefined;
|
|
2187
|
+
children?: any;
|
|
2188
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2189
|
+
disabled?: boolean | undefined;
|
|
2190
|
+
className?: string | undefined;
|
|
2191
|
+
themeShallow?: boolean | undefined;
|
|
2192
|
+
id?: string | undefined;
|
|
2193
|
+
tag?: string | undefined;
|
|
2194
|
+
theme?: string | null | undefined;
|
|
2195
|
+
group?: undefined;
|
|
2196
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2197
|
+
componentName?: string | undefined;
|
|
2198
|
+
tabIndex?: string | number | undefined;
|
|
2199
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2200
|
+
disableOptimization?: boolean | undefined;
|
|
2201
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2202
|
+
disableClassName?: boolean | undefined;
|
|
2203
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2204
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2205
|
+
} & {
|
|
606
2206
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
607
2207
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
608
2208
|
readonly unstyled?: boolean | undefined;
|
|
@@ -614,7 +2214,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
614
2214
|
[x: string]: undefined;
|
|
615
2215
|
}), string | number> & {
|
|
616
2216
|
[x: string]: undefined;
|
|
617
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2217
|
+
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2218
|
+
target?: string | undefined;
|
|
2219
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2220
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2221
|
+
dangerouslySetInnerHTML?: {
|
|
2222
|
+
__html: string;
|
|
2223
|
+
} | undefined;
|
|
2224
|
+
children?: any;
|
|
2225
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2226
|
+
disabled?: boolean | undefined;
|
|
2227
|
+
className?: string | undefined;
|
|
2228
|
+
themeShallow?: boolean | undefined;
|
|
2229
|
+
id?: string | undefined;
|
|
2230
|
+
tag?: string | undefined;
|
|
2231
|
+
theme?: string | null | undefined;
|
|
2232
|
+
group?: undefined;
|
|
2233
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2234
|
+
componentName?: string | undefined;
|
|
2235
|
+
tabIndex?: string | number | undefined;
|
|
2236
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2237
|
+
disableOptimization?: boolean | undefined;
|
|
2238
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2239
|
+
disableClassName?: boolean | undefined;
|
|
2240
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2241
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2242
|
+
} & {
|
|
618
2243
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
619
2244
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
620
2245
|
readonly unstyled?: boolean | undefined;
|
|
@@ -630,7 +2255,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
630
2255
|
[x: string]: undefined;
|
|
631
2256
|
}), string | number> & {
|
|
632
2257
|
[x: string]: undefined;
|
|
633
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2258
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2259
|
+
target?: string | undefined;
|
|
2260
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2261
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2262
|
+
dangerouslySetInnerHTML?: {
|
|
2263
|
+
__html: string;
|
|
2264
|
+
} | undefined;
|
|
2265
|
+
children?: any;
|
|
2266
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2267
|
+
disabled?: boolean | undefined;
|
|
2268
|
+
className?: string | undefined;
|
|
2269
|
+
themeShallow?: boolean | undefined;
|
|
2270
|
+
id?: string | undefined;
|
|
2271
|
+
tag?: string | undefined;
|
|
2272
|
+
theme?: string | null | undefined;
|
|
2273
|
+
group?: undefined;
|
|
2274
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2275
|
+
componentName?: string | undefined;
|
|
2276
|
+
tabIndex?: string | number | undefined;
|
|
2277
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2278
|
+
disableOptimization?: boolean | undefined;
|
|
2279
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2280
|
+
disableClassName?: boolean | undefined;
|
|
2281
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2282
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2283
|
+
} & {
|
|
634
2284
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
635
2285
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
636
2286
|
readonly unstyled?: boolean | undefined;
|
|
@@ -646,7 +2296,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
646
2296
|
[x: string]: undefined;
|
|
647
2297
|
}), string | number> & {
|
|
648
2298
|
[x: string]: undefined;
|
|
649
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2299
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2300
|
+
target?: string | undefined;
|
|
2301
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2302
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2303
|
+
dangerouslySetInnerHTML?: {
|
|
2304
|
+
__html: string;
|
|
2305
|
+
} | undefined;
|
|
2306
|
+
children?: any;
|
|
2307
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2308
|
+
disabled?: boolean | undefined;
|
|
2309
|
+
className?: string | undefined;
|
|
2310
|
+
themeShallow?: boolean | undefined;
|
|
2311
|
+
id?: string | undefined;
|
|
2312
|
+
tag?: string | undefined;
|
|
2313
|
+
theme?: string | null | undefined;
|
|
2314
|
+
group?: undefined;
|
|
2315
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2316
|
+
componentName?: string | undefined;
|
|
2317
|
+
tabIndex?: string | number | undefined;
|
|
2318
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2319
|
+
disableOptimization?: boolean | undefined;
|
|
2320
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2321
|
+
disableClassName?: boolean | undefined;
|
|
2322
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2323
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2324
|
+
} & {
|
|
650
2325
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
651
2326
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
652
2327
|
readonly unstyled?: boolean | undefined;
|
|
@@ -662,7 +2337,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
662
2337
|
[x: string]: undefined;
|
|
663
2338
|
}), string | number> & {
|
|
664
2339
|
[x: string]: undefined;
|
|
665
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2340
|
+
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2341
|
+
target?: string | undefined;
|
|
2342
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2343
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2344
|
+
dangerouslySetInnerHTML?: {
|
|
2345
|
+
__html: string;
|
|
2346
|
+
} | undefined;
|
|
2347
|
+
children?: any;
|
|
2348
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2349
|
+
disabled?: boolean | undefined;
|
|
2350
|
+
className?: string | undefined;
|
|
2351
|
+
themeShallow?: boolean | undefined;
|
|
2352
|
+
id?: string | undefined;
|
|
2353
|
+
tag?: string | undefined;
|
|
2354
|
+
theme?: string | null | undefined;
|
|
2355
|
+
group?: undefined;
|
|
2356
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2357
|
+
componentName?: string | undefined;
|
|
2358
|
+
tabIndex?: string | number | undefined;
|
|
2359
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2360
|
+
disableOptimization?: boolean | undefined;
|
|
2361
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2362
|
+
disableClassName?: boolean | undefined;
|
|
2363
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2364
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2365
|
+
} & {
|
|
666
2366
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
667
2367
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
668
2368
|
readonly unstyled?: boolean | undefined;
|
|
@@ -678,7 +2378,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
678
2378
|
[x: string]: undefined;
|
|
679
2379
|
}), string | number> & {
|
|
680
2380
|
[x: string]: undefined;
|
|
681
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2381
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2382
|
+
target?: string | undefined;
|
|
2383
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2384
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2385
|
+
dangerouslySetInnerHTML?: {
|
|
2386
|
+
__html: string;
|
|
2387
|
+
} | undefined;
|
|
2388
|
+
children?: any;
|
|
2389
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2390
|
+
disabled?: boolean | undefined;
|
|
2391
|
+
className?: string | undefined;
|
|
2392
|
+
themeShallow?: boolean | undefined;
|
|
2393
|
+
id?: string | undefined;
|
|
2394
|
+
tag?: string | undefined;
|
|
2395
|
+
theme?: string | null | undefined;
|
|
2396
|
+
group?: undefined;
|
|
2397
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2398
|
+
componentName?: string | undefined;
|
|
2399
|
+
tabIndex?: string | number | undefined;
|
|
2400
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2401
|
+
disableOptimization?: boolean | undefined;
|
|
2402
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2403
|
+
disableClassName?: boolean | undefined;
|
|
2404
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2405
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2406
|
+
} & {
|
|
682
2407
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
683
2408
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
684
2409
|
readonly unstyled?: boolean | undefined;
|
|
@@ -694,7 +2419,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
694
2419
|
[x: string]: undefined;
|
|
695
2420
|
}), string | number> & {
|
|
696
2421
|
[x: string]: undefined;
|
|
697
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2422
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2423
|
+
target?: string | undefined;
|
|
2424
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2425
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2426
|
+
dangerouslySetInnerHTML?: {
|
|
2427
|
+
__html: string;
|
|
2428
|
+
} | undefined;
|
|
2429
|
+
children?: any;
|
|
2430
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2431
|
+
disabled?: boolean | undefined;
|
|
2432
|
+
className?: string | undefined;
|
|
2433
|
+
themeShallow?: boolean | undefined;
|
|
2434
|
+
id?: string | undefined;
|
|
2435
|
+
tag?: string | undefined;
|
|
2436
|
+
theme?: string | null | undefined;
|
|
2437
|
+
group?: undefined;
|
|
2438
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2439
|
+
componentName?: string | undefined;
|
|
2440
|
+
tabIndex?: string | number | undefined;
|
|
2441
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2442
|
+
disableOptimization?: boolean | undefined;
|
|
2443
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2444
|
+
disableClassName?: boolean | undefined;
|
|
2445
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2446
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2447
|
+
} & {
|
|
698
2448
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
699
2449
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
700
2450
|
readonly unstyled?: boolean | undefined;
|
|
@@ -710,7 +2460,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
710
2460
|
[x: string]: undefined;
|
|
711
2461
|
}), string | number> & {
|
|
712
2462
|
[x: string]: undefined;
|
|
713
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2463
|
+
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2464
|
+
target?: string | undefined;
|
|
2465
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2466
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2467
|
+
dangerouslySetInnerHTML?: {
|
|
2468
|
+
__html: string;
|
|
2469
|
+
} | undefined;
|
|
2470
|
+
children?: any;
|
|
2471
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2472
|
+
disabled?: boolean | undefined;
|
|
2473
|
+
className?: string | undefined;
|
|
2474
|
+
themeShallow?: boolean | undefined;
|
|
2475
|
+
id?: string | undefined;
|
|
2476
|
+
tag?: string | undefined;
|
|
2477
|
+
theme?: string | null | undefined;
|
|
2478
|
+
group?: undefined;
|
|
2479
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2480
|
+
componentName?: string | undefined;
|
|
2481
|
+
tabIndex?: string | number | undefined;
|
|
2482
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2483
|
+
disableOptimization?: boolean | undefined;
|
|
2484
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2485
|
+
disableClassName?: boolean | undefined;
|
|
2486
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2487
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2488
|
+
} & {
|
|
714
2489
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
715
2490
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
716
2491
|
readonly unstyled?: boolean | undefined;
|
|
@@ -726,7 +2501,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
726
2501
|
[x: string]: undefined;
|
|
727
2502
|
}), string | number> & {
|
|
728
2503
|
[x: string]: undefined;
|
|
729
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2504
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2505
|
+
target?: string | undefined;
|
|
2506
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2507
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2508
|
+
dangerouslySetInnerHTML?: {
|
|
2509
|
+
__html: string;
|
|
2510
|
+
} | undefined;
|
|
2511
|
+
children?: any;
|
|
2512
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2513
|
+
disabled?: boolean | undefined;
|
|
2514
|
+
className?: string | undefined;
|
|
2515
|
+
themeShallow?: boolean | undefined;
|
|
2516
|
+
id?: string | undefined;
|
|
2517
|
+
tag?: string | undefined;
|
|
2518
|
+
theme?: string | null | undefined;
|
|
2519
|
+
group?: undefined;
|
|
2520
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2521
|
+
componentName?: string | undefined;
|
|
2522
|
+
tabIndex?: string | number | undefined;
|
|
2523
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2524
|
+
disableOptimization?: boolean | undefined;
|
|
2525
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2526
|
+
disableClassName?: boolean | undefined;
|
|
2527
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2528
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2529
|
+
} & {
|
|
730
2530
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
731
2531
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
732
2532
|
readonly unstyled?: boolean | undefined;
|
|
@@ -742,7 +2542,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
742
2542
|
[x: string]: undefined;
|
|
743
2543
|
}), string | number> & {
|
|
744
2544
|
[x: string]: undefined;
|
|
745
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2545
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2546
|
+
target?: string | undefined;
|
|
2547
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2548
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2549
|
+
dangerouslySetInnerHTML?: {
|
|
2550
|
+
__html: string;
|
|
2551
|
+
} | undefined;
|
|
2552
|
+
children?: any;
|
|
2553
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2554
|
+
disabled?: boolean | undefined;
|
|
2555
|
+
className?: string | undefined;
|
|
2556
|
+
themeShallow?: boolean | undefined;
|
|
2557
|
+
id?: string | undefined;
|
|
2558
|
+
tag?: string | undefined;
|
|
2559
|
+
theme?: string | null | undefined;
|
|
2560
|
+
group?: undefined;
|
|
2561
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2562
|
+
componentName?: string | undefined;
|
|
2563
|
+
tabIndex?: string | number | undefined;
|
|
2564
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2565
|
+
disableOptimization?: boolean | undefined;
|
|
2566
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2567
|
+
disableClassName?: boolean | undefined;
|
|
2568
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2569
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2570
|
+
} & {
|
|
746
2571
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
747
2572
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
748
2573
|
readonly unstyled?: boolean | undefined;
|
|
@@ -758,7 +2583,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
758
2583
|
[x: string]: undefined;
|
|
759
2584
|
}), string | number> & {
|
|
760
2585
|
[x: string]: undefined;
|
|
761
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2586
|
+
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref"> | Omit<Omit<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2587
|
+
target?: string | undefined;
|
|
2588
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2589
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2590
|
+
dangerouslySetInnerHTML?: {
|
|
2591
|
+
__html: string;
|
|
2592
|
+
} | undefined;
|
|
2593
|
+
children?: any;
|
|
2594
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2595
|
+
disabled?: boolean | undefined;
|
|
2596
|
+
className?: string | undefined;
|
|
2597
|
+
themeShallow?: boolean | undefined;
|
|
2598
|
+
id?: string | undefined;
|
|
2599
|
+
tag?: string | undefined;
|
|
2600
|
+
theme?: string | null | undefined;
|
|
2601
|
+
group?: undefined;
|
|
2602
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2603
|
+
componentName?: string | undefined;
|
|
2604
|
+
tabIndex?: string | number | undefined;
|
|
2605
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2606
|
+
disableOptimization?: boolean | undefined;
|
|
2607
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2608
|
+
disableClassName?: boolean | undefined;
|
|
2609
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2610
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2611
|
+
} & {
|
|
762
2612
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
763
2613
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
764
2614
|
readonly unstyled?: boolean | undefined;
|
|
@@ -774,7 +2624,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
774
2624
|
[x: string]: undefined;
|
|
775
2625
|
}), string | number> & {
|
|
776
2626
|
[x: string]: undefined;
|
|
777
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2627
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2628
|
+
target?: string | undefined;
|
|
2629
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2630
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2631
|
+
dangerouslySetInnerHTML?: {
|
|
2632
|
+
__html: string;
|
|
2633
|
+
} | undefined;
|
|
2634
|
+
children?: any;
|
|
2635
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2636
|
+
disabled?: boolean | undefined;
|
|
2637
|
+
className?: string | undefined;
|
|
2638
|
+
themeShallow?: boolean | undefined;
|
|
2639
|
+
id?: string | undefined;
|
|
2640
|
+
tag?: string | undefined;
|
|
2641
|
+
theme?: string | null | undefined;
|
|
2642
|
+
group?: undefined;
|
|
2643
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2644
|
+
componentName?: string | undefined;
|
|
2645
|
+
tabIndex?: string | number | undefined;
|
|
2646
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2647
|
+
disableOptimization?: boolean | undefined;
|
|
2648
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2649
|
+
disableClassName?: boolean | undefined;
|
|
2650
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2651
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2652
|
+
} & {
|
|
778
2653
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
779
2654
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
780
2655
|
readonly unstyled?: boolean | undefined;
|
|
@@ -790,7 +2665,32 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
790
2665
|
[x: string]: undefined;
|
|
791
2666
|
}), string | number> & {
|
|
792
2667
|
[x: string]: undefined;
|
|
793
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").
|
|
2668
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").TextProps, "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2669
|
+
target?: string | undefined;
|
|
2670
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2671
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2672
|
+
dangerouslySetInnerHTML?: {
|
|
2673
|
+
__html: string;
|
|
2674
|
+
} | undefined;
|
|
2675
|
+
children?: any;
|
|
2676
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2677
|
+
disabled?: boolean | undefined;
|
|
2678
|
+
className?: string | undefined;
|
|
2679
|
+
themeShallow?: boolean | undefined;
|
|
2680
|
+
id?: string | undefined;
|
|
2681
|
+
tag?: string | undefined;
|
|
2682
|
+
theme?: string | null | undefined;
|
|
2683
|
+
group?: undefined;
|
|
2684
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2685
|
+
componentName?: string | undefined;
|
|
2686
|
+
tabIndex?: string | number | undefined;
|
|
2687
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2688
|
+
disableOptimization?: boolean | undefined;
|
|
2689
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2690
|
+
disableClassName?: boolean | undefined;
|
|
2691
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2692
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2693
|
+
} & {
|
|
794
2694
|
style?: import("@tamagui/web").StyleProp<import("react-native").TextStyle | React.CSSProperties | (React.CSSProperties & import("react-native").TextStyle)>;
|
|
795
2695
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<({
|
|
796
2696
|
readonly unstyled?: boolean | undefined;
|
|
@@ -809,15 +2709,90 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
809
2709
|
}>> & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>, "ref">, "ref">) & React.RefAttributes<import("@tamagui/web").TamaguiTextElement>>;
|
|
810
2710
|
Content: import("@tamagui/web").ReactComponentWithRef<Object & Omit<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
811
2711
|
__scopeCollapsible?: string | undefined;
|
|
812
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2712
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2713
|
+
target?: string | undefined;
|
|
2714
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2715
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2716
|
+
dangerouslySetInnerHTML?: {
|
|
2717
|
+
__html: string;
|
|
2718
|
+
} | undefined;
|
|
2719
|
+
children?: any;
|
|
2720
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2721
|
+
disabled?: boolean | undefined;
|
|
2722
|
+
className?: string | undefined;
|
|
2723
|
+
themeShallow?: boolean | undefined;
|
|
2724
|
+
id?: string | undefined;
|
|
2725
|
+
tag?: string | undefined;
|
|
2726
|
+
theme?: string | null | undefined;
|
|
2727
|
+
group?: undefined;
|
|
2728
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2729
|
+
componentName?: string | undefined;
|
|
2730
|
+
tabIndex?: string | number | undefined;
|
|
2731
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2732
|
+
disableOptimization?: boolean | undefined;
|
|
2733
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2734
|
+
disableClassName?: boolean | undefined;
|
|
2735
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2736
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2737
|
+
} & {
|
|
813
2738
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
814
2739
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
815
2740
|
[x: string]: undefined;
|
|
816
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2741
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2742
|
+
target?: string | undefined;
|
|
2743
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2744
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2745
|
+
dangerouslySetInnerHTML?: {
|
|
2746
|
+
__html: string;
|
|
2747
|
+
} | undefined;
|
|
2748
|
+
children?: any;
|
|
2749
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2750
|
+
disabled?: boolean | undefined;
|
|
2751
|
+
className?: string | undefined;
|
|
2752
|
+
themeShallow?: boolean | undefined;
|
|
2753
|
+
id?: string | undefined;
|
|
2754
|
+
tag?: string | undefined;
|
|
2755
|
+
theme?: string | null | undefined;
|
|
2756
|
+
group?: undefined;
|
|
2757
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2758
|
+
componentName?: string | undefined;
|
|
2759
|
+
tabIndex?: string | number | undefined;
|
|
2760
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2761
|
+
disableOptimization?: boolean | undefined;
|
|
2762
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2763
|
+
disableClassName?: boolean | undefined;
|
|
2764
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2765
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2766
|
+
} & {
|
|
817
2767
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
818
2768
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
819
2769
|
[x: string]: undefined;
|
|
820
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2770
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2771
|
+
target?: string | undefined;
|
|
2772
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2773
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2774
|
+
dangerouslySetInnerHTML?: {
|
|
2775
|
+
__html: string;
|
|
2776
|
+
} | undefined;
|
|
2777
|
+
children?: any;
|
|
2778
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2779
|
+
disabled?: boolean | undefined;
|
|
2780
|
+
className?: string | undefined;
|
|
2781
|
+
themeShallow?: boolean | undefined;
|
|
2782
|
+
id?: string | undefined;
|
|
2783
|
+
tag?: string | undefined;
|
|
2784
|
+
theme?: string | null | undefined;
|
|
2785
|
+
group?: undefined;
|
|
2786
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2787
|
+
componentName?: string | undefined;
|
|
2788
|
+
tabIndex?: string | number | undefined;
|
|
2789
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2790
|
+
disableOptimization?: boolean | undefined;
|
|
2791
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2792
|
+
disableClassName?: boolean | undefined;
|
|
2793
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2794
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2795
|
+
} & {
|
|
821
2796
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
822
2797
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
823
2798
|
[x: string]: undefined;
|
|
@@ -825,15 +2800,90 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
825
2800
|
readonly unstyled?: boolean | undefined;
|
|
826
2801
|
} & import("@tamagui/web").PseudoProps<Partial<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
827
2802
|
__scopeCollapsible?: string | undefined;
|
|
828
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2803
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2804
|
+
target?: string | undefined;
|
|
2805
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2806
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2807
|
+
dangerouslySetInnerHTML?: {
|
|
2808
|
+
__html: string;
|
|
2809
|
+
} | undefined;
|
|
2810
|
+
children?: any;
|
|
2811
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2812
|
+
disabled?: boolean | undefined;
|
|
2813
|
+
className?: string | undefined;
|
|
2814
|
+
themeShallow?: boolean | undefined;
|
|
2815
|
+
id?: string | undefined;
|
|
2816
|
+
tag?: string | undefined;
|
|
2817
|
+
theme?: string | null | undefined;
|
|
2818
|
+
group?: undefined;
|
|
2819
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2820
|
+
componentName?: string | undefined;
|
|
2821
|
+
tabIndex?: string | number | undefined;
|
|
2822
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2823
|
+
disableOptimization?: boolean | undefined;
|
|
2824
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2825
|
+
disableClassName?: boolean | undefined;
|
|
2826
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2827
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2828
|
+
} & {
|
|
829
2829
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
830
2830
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
831
2831
|
[x: string]: undefined;
|
|
832
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2832
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2833
|
+
target?: string | undefined;
|
|
2834
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2835
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2836
|
+
dangerouslySetInnerHTML?: {
|
|
2837
|
+
__html: string;
|
|
2838
|
+
} | undefined;
|
|
2839
|
+
children?: any;
|
|
2840
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2841
|
+
disabled?: boolean | undefined;
|
|
2842
|
+
className?: string | undefined;
|
|
2843
|
+
themeShallow?: boolean | undefined;
|
|
2844
|
+
id?: string | undefined;
|
|
2845
|
+
tag?: string | undefined;
|
|
2846
|
+
theme?: string | null | undefined;
|
|
2847
|
+
group?: undefined;
|
|
2848
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2849
|
+
componentName?: string | undefined;
|
|
2850
|
+
tabIndex?: string | number | undefined;
|
|
2851
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2852
|
+
disableOptimization?: boolean | undefined;
|
|
2853
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2854
|
+
disableClassName?: boolean | undefined;
|
|
2855
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2856
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2857
|
+
} & {
|
|
833
2858
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
834
2859
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
835
2860
|
[x: string]: undefined;
|
|
836
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2861
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2862
|
+
target?: string | undefined;
|
|
2863
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2864
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2865
|
+
dangerouslySetInnerHTML?: {
|
|
2866
|
+
__html: string;
|
|
2867
|
+
} | undefined;
|
|
2868
|
+
children?: any;
|
|
2869
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2870
|
+
disabled?: boolean | undefined;
|
|
2871
|
+
className?: string | undefined;
|
|
2872
|
+
themeShallow?: boolean | undefined;
|
|
2873
|
+
id?: string | undefined;
|
|
2874
|
+
tag?: string | undefined;
|
|
2875
|
+
theme?: string | null | undefined;
|
|
2876
|
+
group?: undefined;
|
|
2877
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2878
|
+
componentName?: string | undefined;
|
|
2879
|
+
tabIndex?: string | number | undefined;
|
|
2880
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2881
|
+
disableOptimization?: boolean | undefined;
|
|
2882
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2883
|
+
disableClassName?: boolean | undefined;
|
|
2884
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2885
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2886
|
+
} & {
|
|
837
2887
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
838
2888
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
839
2889
|
[x: string]: undefined;
|
|
@@ -841,15 +2891,90 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
841
2891
|
readonly unstyled?: boolean | undefined;
|
|
842
2892
|
}>> & import("@tamagui/web").MediaProps<Partial<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
843
2893
|
__scopeCollapsible?: string | undefined;
|
|
844
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2894
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2895
|
+
target?: string | undefined;
|
|
2896
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2897
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2898
|
+
dangerouslySetInnerHTML?: {
|
|
2899
|
+
__html: string;
|
|
2900
|
+
} | undefined;
|
|
2901
|
+
children?: any;
|
|
2902
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2903
|
+
disabled?: boolean | undefined;
|
|
2904
|
+
className?: string | undefined;
|
|
2905
|
+
themeShallow?: boolean | undefined;
|
|
2906
|
+
id?: string | undefined;
|
|
2907
|
+
tag?: string | undefined;
|
|
2908
|
+
theme?: string | null | undefined;
|
|
2909
|
+
group?: undefined;
|
|
2910
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2911
|
+
componentName?: string | undefined;
|
|
2912
|
+
tabIndex?: string | number | undefined;
|
|
2913
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2914
|
+
disableOptimization?: boolean | undefined;
|
|
2915
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2916
|
+
disableClassName?: boolean | undefined;
|
|
2917
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2918
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2919
|
+
} & {
|
|
845
2920
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
846
2921
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
847
2922
|
[x: string]: undefined;
|
|
848
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2923
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2924
|
+
target?: string | undefined;
|
|
2925
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2926
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2927
|
+
dangerouslySetInnerHTML?: {
|
|
2928
|
+
__html: string;
|
|
2929
|
+
} | undefined;
|
|
2930
|
+
children?: any;
|
|
2931
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2932
|
+
disabled?: boolean | undefined;
|
|
2933
|
+
className?: string | undefined;
|
|
2934
|
+
themeShallow?: boolean | undefined;
|
|
2935
|
+
id?: string | undefined;
|
|
2936
|
+
tag?: string | undefined;
|
|
2937
|
+
theme?: string | null | undefined;
|
|
2938
|
+
group?: undefined;
|
|
2939
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2940
|
+
componentName?: string | undefined;
|
|
2941
|
+
tabIndex?: string | number | undefined;
|
|
2942
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2943
|
+
disableOptimization?: boolean | undefined;
|
|
2944
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2945
|
+
disableClassName?: boolean | undefined;
|
|
2946
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2947
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2948
|
+
} & {
|
|
849
2949
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
850
2950
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
851
2951
|
[x: string]: undefined;
|
|
852
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2952
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2953
|
+
target?: string | undefined;
|
|
2954
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2955
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2956
|
+
dangerouslySetInnerHTML?: {
|
|
2957
|
+
__html: string;
|
|
2958
|
+
} | undefined;
|
|
2959
|
+
children?: any;
|
|
2960
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2961
|
+
disabled?: boolean | undefined;
|
|
2962
|
+
className?: string | undefined;
|
|
2963
|
+
themeShallow?: boolean | undefined;
|
|
2964
|
+
id?: string | undefined;
|
|
2965
|
+
tag?: string | undefined;
|
|
2966
|
+
theme?: string | null | undefined;
|
|
2967
|
+
group?: undefined;
|
|
2968
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2969
|
+
componentName?: string | undefined;
|
|
2970
|
+
tabIndex?: string | number | undefined;
|
|
2971
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2972
|
+
disableOptimization?: boolean | undefined;
|
|
2973
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2974
|
+
disableClassName?: boolean | undefined;
|
|
2975
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2976
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2977
|
+
} & {
|
|
853
2978
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
854
2979
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
855
2980
|
[x: string]: undefined;
|
|
@@ -859,15 +2984,90 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
859
2984
|
staticConfig: import("@tamagui/web").StaticConfig;
|
|
860
2985
|
styleable: import("@tamagui/web").Styleable<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
861
2986
|
__scopeCollapsible?: string | undefined;
|
|
862
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2987
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2988
|
+
target?: string | undefined;
|
|
2989
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2990
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2991
|
+
dangerouslySetInnerHTML?: {
|
|
2992
|
+
__html: string;
|
|
2993
|
+
} | undefined;
|
|
2994
|
+
children?: any;
|
|
2995
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2996
|
+
disabled?: boolean | undefined;
|
|
2997
|
+
className?: string | undefined;
|
|
2998
|
+
themeShallow?: boolean | undefined;
|
|
2999
|
+
id?: string | undefined;
|
|
3000
|
+
tag?: string | undefined;
|
|
3001
|
+
theme?: string | null | undefined;
|
|
3002
|
+
group?: undefined;
|
|
3003
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3004
|
+
componentName?: string | undefined;
|
|
3005
|
+
tabIndex?: string | number | undefined;
|
|
3006
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3007
|
+
disableOptimization?: boolean | undefined;
|
|
3008
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3009
|
+
disableClassName?: boolean | undefined;
|
|
3010
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3011
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3012
|
+
} & {
|
|
863
3013
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
864
3014
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
865
3015
|
[x: string]: undefined;
|
|
866
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3016
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3017
|
+
target?: string | undefined;
|
|
3018
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3019
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3020
|
+
dangerouslySetInnerHTML?: {
|
|
3021
|
+
__html: string;
|
|
3022
|
+
} | undefined;
|
|
3023
|
+
children?: any;
|
|
3024
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3025
|
+
disabled?: boolean | undefined;
|
|
3026
|
+
className?: string | undefined;
|
|
3027
|
+
themeShallow?: boolean | undefined;
|
|
3028
|
+
id?: string | undefined;
|
|
3029
|
+
tag?: string | undefined;
|
|
3030
|
+
theme?: string | null | undefined;
|
|
3031
|
+
group?: undefined;
|
|
3032
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3033
|
+
componentName?: string | undefined;
|
|
3034
|
+
tabIndex?: string | number | undefined;
|
|
3035
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3036
|
+
disableOptimization?: boolean | undefined;
|
|
3037
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3038
|
+
disableClassName?: boolean | undefined;
|
|
3039
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3040
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3041
|
+
} & {
|
|
867
3042
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
868
3043
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
869
3044
|
[x: string]: undefined;
|
|
870
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3045
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3046
|
+
target?: string | undefined;
|
|
3047
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3048
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3049
|
+
dangerouslySetInnerHTML?: {
|
|
3050
|
+
__html: string;
|
|
3051
|
+
} | undefined;
|
|
3052
|
+
children?: any;
|
|
3053
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3054
|
+
disabled?: boolean | undefined;
|
|
3055
|
+
className?: string | undefined;
|
|
3056
|
+
themeShallow?: boolean | undefined;
|
|
3057
|
+
id?: string | undefined;
|
|
3058
|
+
tag?: string | undefined;
|
|
3059
|
+
theme?: string | null | undefined;
|
|
3060
|
+
group?: undefined;
|
|
3061
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3062
|
+
componentName?: string | undefined;
|
|
3063
|
+
tabIndex?: string | number | undefined;
|
|
3064
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3065
|
+
disableOptimization?: boolean | undefined;
|
|
3066
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3067
|
+
disableClassName?: boolean | undefined;
|
|
3068
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3069
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3070
|
+
} & {
|
|
871
3071
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
872
3072
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
873
3073
|
[x: string]: undefined;
|
|
@@ -875,15 +3075,90 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
875
3075
|
readonly unstyled?: boolean | undefined;
|
|
876
3076
|
} & import("@tamagui/web").PseudoProps<Partial<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
877
3077
|
__scopeCollapsible?: string | undefined;
|
|
878
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3078
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3079
|
+
target?: string | undefined;
|
|
3080
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3081
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3082
|
+
dangerouslySetInnerHTML?: {
|
|
3083
|
+
__html: string;
|
|
3084
|
+
} | undefined;
|
|
3085
|
+
children?: any;
|
|
3086
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3087
|
+
disabled?: boolean | undefined;
|
|
3088
|
+
className?: string | undefined;
|
|
3089
|
+
themeShallow?: boolean | undefined;
|
|
3090
|
+
id?: string | undefined;
|
|
3091
|
+
tag?: string | undefined;
|
|
3092
|
+
theme?: string | null | undefined;
|
|
3093
|
+
group?: undefined;
|
|
3094
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3095
|
+
componentName?: string | undefined;
|
|
3096
|
+
tabIndex?: string | number | undefined;
|
|
3097
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3098
|
+
disableOptimization?: boolean | undefined;
|
|
3099
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3100
|
+
disableClassName?: boolean | undefined;
|
|
3101
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3102
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3103
|
+
} & {
|
|
879
3104
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
880
3105
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
881
3106
|
[x: string]: undefined;
|
|
882
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3107
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3108
|
+
target?: string | undefined;
|
|
3109
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3110
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3111
|
+
dangerouslySetInnerHTML?: {
|
|
3112
|
+
__html: string;
|
|
3113
|
+
} | undefined;
|
|
3114
|
+
children?: any;
|
|
3115
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3116
|
+
disabled?: boolean | undefined;
|
|
3117
|
+
className?: string | undefined;
|
|
3118
|
+
themeShallow?: boolean | undefined;
|
|
3119
|
+
id?: string | undefined;
|
|
3120
|
+
tag?: string | undefined;
|
|
3121
|
+
theme?: string | null | undefined;
|
|
3122
|
+
group?: undefined;
|
|
3123
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3124
|
+
componentName?: string | undefined;
|
|
3125
|
+
tabIndex?: string | number | undefined;
|
|
3126
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3127
|
+
disableOptimization?: boolean | undefined;
|
|
3128
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3129
|
+
disableClassName?: boolean | undefined;
|
|
3130
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3131
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3132
|
+
} & {
|
|
883
3133
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
884
3134
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
885
3135
|
[x: string]: undefined;
|
|
886
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3136
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3137
|
+
target?: string | undefined;
|
|
3138
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3139
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3140
|
+
dangerouslySetInnerHTML?: {
|
|
3141
|
+
__html: string;
|
|
3142
|
+
} | undefined;
|
|
3143
|
+
children?: any;
|
|
3144
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3145
|
+
disabled?: boolean | undefined;
|
|
3146
|
+
className?: string | undefined;
|
|
3147
|
+
themeShallow?: boolean | undefined;
|
|
3148
|
+
id?: string | undefined;
|
|
3149
|
+
tag?: string | undefined;
|
|
3150
|
+
theme?: string | null | undefined;
|
|
3151
|
+
group?: undefined;
|
|
3152
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3153
|
+
componentName?: string | undefined;
|
|
3154
|
+
tabIndex?: string | number | undefined;
|
|
3155
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3156
|
+
disableOptimization?: boolean | undefined;
|
|
3157
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3158
|
+
disableClassName?: boolean | undefined;
|
|
3159
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3160
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3161
|
+
} & {
|
|
887
3162
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
888
3163
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
889
3164
|
[x: string]: undefined;
|
|
@@ -891,15 +3166,90 @@ declare const Accordion: React.ForwardRefExoticComponent<ScopedProps<AccordionSi
|
|
|
891
3166
|
readonly unstyled?: boolean | undefined;
|
|
892
3167
|
}>> & import("@tamagui/web").MediaProps<Partial<import("@tamagui/collapsible/types/Collapsible").CollapsibleContentProps & {
|
|
893
3168
|
__scopeCollapsible?: string | undefined;
|
|
894
|
-
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3169
|
+
} & Omit<import("@tamagui/web").StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3170
|
+
target?: string | undefined;
|
|
3171
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3172
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3173
|
+
dangerouslySetInnerHTML?: {
|
|
3174
|
+
__html: string;
|
|
3175
|
+
} | undefined;
|
|
3176
|
+
children?: any;
|
|
3177
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3178
|
+
disabled?: boolean | undefined;
|
|
3179
|
+
className?: string | undefined;
|
|
3180
|
+
themeShallow?: boolean | undefined;
|
|
3181
|
+
id?: string | undefined;
|
|
3182
|
+
tag?: string | undefined;
|
|
3183
|
+
theme?: string | null | undefined;
|
|
3184
|
+
group?: undefined;
|
|
3185
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3186
|
+
componentName?: string | undefined;
|
|
3187
|
+
tabIndex?: string | number | undefined;
|
|
3188
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3189
|
+
disableOptimization?: boolean | undefined;
|
|
3190
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3191
|
+
disableClassName?: boolean | undefined;
|
|
3192
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3193
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3194
|
+
} & {
|
|
895
3195
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
896
3196
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
897
3197
|
[x: string]: undefined;
|
|
898
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3198
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3199
|
+
target?: string | undefined;
|
|
3200
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3201
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3202
|
+
dangerouslySetInnerHTML?: {
|
|
3203
|
+
__html: string;
|
|
3204
|
+
} | undefined;
|
|
3205
|
+
children?: any;
|
|
3206
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3207
|
+
disabled?: boolean | undefined;
|
|
3208
|
+
className?: string | undefined;
|
|
3209
|
+
themeShallow?: boolean | undefined;
|
|
3210
|
+
id?: string | undefined;
|
|
3211
|
+
tag?: string | undefined;
|
|
3212
|
+
theme?: string | null | undefined;
|
|
3213
|
+
group?: undefined;
|
|
3214
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3215
|
+
componentName?: string | undefined;
|
|
3216
|
+
tabIndex?: string | number | undefined;
|
|
3217
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3218
|
+
disableOptimization?: boolean | undefined;
|
|
3219
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3220
|
+
disableClassName?: boolean | undefined;
|
|
3221
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3222
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3223
|
+
} & {
|
|
899
3224
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
900
3225
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
901
3226
|
[x: string]: undefined;
|
|
902
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3227
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
3228
|
+
target?: string | undefined;
|
|
3229
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
3230
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
3231
|
+
dangerouslySetInnerHTML?: {
|
|
3232
|
+
__html: string;
|
|
3233
|
+
} | undefined;
|
|
3234
|
+
children?: any;
|
|
3235
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
3236
|
+
disabled?: boolean | undefined;
|
|
3237
|
+
className?: string | undefined;
|
|
3238
|
+
themeShallow?: boolean | undefined;
|
|
3239
|
+
id?: string | undefined;
|
|
3240
|
+
tag?: string | undefined;
|
|
3241
|
+
theme?: string | null | undefined;
|
|
3242
|
+
group?: undefined;
|
|
3243
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
3244
|
+
componentName?: string | undefined;
|
|
3245
|
+
tabIndex?: string | number | undefined;
|
|
3246
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
3247
|
+
disableOptimization?: boolean | undefined;
|
|
3248
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
3249
|
+
disableClassName?: boolean | undefined;
|
|
3250
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
3251
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
3252
|
+
} & {
|
|
903
3253
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
904
3254
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
905
3255
|
[x: string]: undefined;
|