@tamagui/linear-gradient 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/linear-gradient",
3
- "version": "1.72.3",
3
+ "version": "1.73.1",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -31,14 +31,14 @@
31
31
  }
32
32
  },
33
33
  "dependencies": {
34
- "@tamagui/core": "1.72.3",
35
- "@tamagui/stacks": "1.72.3"
34
+ "@tamagui/core": "1.73.1",
35
+ "@tamagui/stacks": "1.73.1"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "react": "*"
39
39
  },
40
40
  "devDependencies": {
41
- "@tamagui/build": "1.72.3",
41
+ "@tamagui/build": "1.73.1",
42
42
  "expo-linear-gradient": "~12.3.0",
43
43
  "react": "^18.2.0"
44
44
  },
@@ -6,60 +6,310 @@ import { LinearGradientProps as ExpoLinearGradientProps } from './linear-gradien
6
6
  export type LinearGradientProps = Omit<ExpoLinearGradientProps, 'colors'> & Omit<YStackProps, 'children' | keyof ExpoLinearGradientProps> & {
7
7
  colors?: (ColorTokens | ThemeTokens | (string & {}))[];
8
8
  };
9
- export declare const LinearGradient: import("@tamagui/core").ReactComponentWithRef<Omit<ExpoLinearGradientProps, "colors"> & Omit<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
9
+ export declare const LinearGradient: import("@tamagui/core").ReactComponentWithRef<Omit<ExpoLinearGradientProps, "colors"> & Omit<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
10
+ target?: string | undefined;
11
+ hitSlop?: number | import("react-native").Insets | null | undefined;
12
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
13
+ dangerouslySetInnerHTML?: {
14
+ __html: string;
15
+ } | undefined;
16
+ children?: any;
17
+ debug?: import("@tamagui/core").DebugProp | undefined;
18
+ disabled?: boolean | undefined;
19
+ className?: string | undefined;
20
+ themeShallow?: boolean | undefined;
21
+ id?: string | undefined;
22
+ tag?: string | undefined;
23
+ theme?: string | null | undefined;
24
+ group?: undefined;
25
+ untilMeasured?: "hide" | "show" | undefined;
26
+ componentName?: string | undefined;
27
+ tabIndex?: string | number | undefined;
28
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
29
+ disableOptimization?: boolean | undefined;
30
+ forceStyle?: "hover" | "press" | "focus" | undefined;
31
+ disableClassName?: boolean | undefined;
32
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
33
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
34
+ } & {
10
35
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
11
36
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
12
37
  readonly fullscreen?: boolean | undefined;
13
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
14
- } & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
38
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
39
+ } & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
40
+ target?: string | undefined;
41
+ hitSlop?: number | import("react-native").Insets | null | undefined;
42
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
43
+ dangerouslySetInnerHTML?: {
44
+ __html: string;
45
+ } | undefined;
46
+ children?: any;
47
+ debug?: import("@tamagui/core").DebugProp | undefined;
48
+ disabled?: boolean | undefined;
49
+ className?: string | undefined;
50
+ themeShallow?: boolean | undefined;
51
+ id?: string | undefined;
52
+ tag?: string | undefined;
53
+ theme?: string | null | undefined;
54
+ group?: undefined;
55
+ untilMeasured?: "hide" | "show" | undefined;
56
+ componentName?: string | undefined;
57
+ tabIndex?: string | number | undefined;
58
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
59
+ disableOptimization?: boolean | undefined;
60
+ forceStyle?: "hover" | "press" | "focus" | undefined;
61
+ disableClassName?: boolean | undefined;
62
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
63
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
64
+ } & {
15
65
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
16
66
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
17
67
  readonly fullscreen?: boolean | undefined;
18
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
19
- }>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
68
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
69
+ }>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
70
+ target?: string | undefined;
71
+ hitSlop?: number | import("react-native").Insets | null | undefined;
72
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
73
+ dangerouslySetInnerHTML?: {
74
+ __html: string;
75
+ } | undefined;
76
+ children?: any;
77
+ debug?: import("@tamagui/core").DebugProp | undefined;
78
+ disabled?: boolean | undefined;
79
+ className?: string | undefined;
80
+ themeShallow?: boolean | undefined;
81
+ id?: string | undefined;
82
+ tag?: string | undefined;
83
+ theme?: string | null | undefined;
84
+ group?: undefined;
85
+ untilMeasured?: "hide" | "show" | undefined;
86
+ componentName?: string | undefined;
87
+ tabIndex?: string | number | undefined;
88
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
89
+ disableOptimization?: boolean | undefined;
90
+ forceStyle?: "hover" | "press" | "focus" | undefined;
91
+ disableClassName?: boolean | undefined;
92
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
93
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
94
+ } & {
20
95
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
21
96
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
22
97
  readonly fullscreen?: boolean | undefined;
23
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
98
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
24
99
  }>>, "colors" | keyof import("react-native").ViewProps | "locations" | "start" | "end"> & {
25
100
  colors?: (ColorTokens | (string & {}))[] | undefined;
26
- } & Omit<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
101
+ } & Omit<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
102
+ target?: string | undefined;
103
+ hitSlop?: number | import("react-native").Insets | null | undefined;
104
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
105
+ dangerouslySetInnerHTML?: {
106
+ __html: string;
107
+ } | undefined;
108
+ children?: any;
109
+ debug?: import("@tamagui/core").DebugProp | undefined;
110
+ disabled?: boolean | undefined;
111
+ className?: string | undefined;
112
+ themeShallow?: boolean | undefined;
113
+ id?: string | undefined;
114
+ tag?: string | undefined;
115
+ theme?: string | null | undefined;
116
+ group?: undefined;
117
+ untilMeasured?: "hide" | "show" | undefined;
118
+ componentName?: string | undefined;
119
+ tabIndex?: string | number | undefined;
120
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
121
+ disableOptimization?: boolean | undefined;
122
+ forceStyle?: "hover" | "press" | "focus" | undefined;
123
+ disableClassName?: boolean | undefined;
124
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
125
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
126
+ } & {
27
127
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
28
128
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
29
129
  readonly fullscreen?: boolean | undefined;
30
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
31
- } & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
130
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
131
+ } & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
132
+ target?: string | undefined;
133
+ hitSlop?: number | import("react-native").Insets | null | undefined;
134
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
135
+ dangerouslySetInnerHTML?: {
136
+ __html: string;
137
+ } | undefined;
138
+ children?: any;
139
+ debug?: import("@tamagui/core").DebugProp | undefined;
140
+ disabled?: boolean | undefined;
141
+ className?: string | undefined;
142
+ themeShallow?: boolean | undefined;
143
+ id?: string | undefined;
144
+ tag?: string | undefined;
145
+ theme?: string | null | undefined;
146
+ group?: undefined;
147
+ untilMeasured?: "hide" | "show" | undefined;
148
+ componentName?: string | undefined;
149
+ tabIndex?: string | number | undefined;
150
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
151
+ disableOptimization?: boolean | undefined;
152
+ forceStyle?: "hover" | "press" | "focus" | undefined;
153
+ disableClassName?: boolean | undefined;
154
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
155
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
156
+ } & {
32
157
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
33
158
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
34
159
  readonly fullscreen?: boolean | undefined;
35
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
36
- }>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
160
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
161
+ }>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
162
+ target?: string | undefined;
163
+ hitSlop?: number | import("react-native").Insets | null | undefined;
164
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
165
+ dangerouslySetInnerHTML?: {
166
+ __html: string;
167
+ } | undefined;
168
+ children?: any;
169
+ debug?: import("@tamagui/core").DebugProp | undefined;
170
+ disabled?: boolean | undefined;
171
+ className?: string | undefined;
172
+ themeShallow?: boolean | undefined;
173
+ id?: string | undefined;
174
+ tag?: string | undefined;
175
+ theme?: string | null | undefined;
176
+ group?: undefined;
177
+ untilMeasured?: "hide" | "show" | undefined;
178
+ componentName?: string | undefined;
179
+ tabIndex?: string | number | undefined;
180
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
181
+ disableOptimization?: boolean | undefined;
182
+ forceStyle?: "hover" | "press" | "focus" | undefined;
183
+ disableClassName?: boolean | undefined;
184
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
185
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
186
+ } & {
37
187
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
38
188
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
39
189
  readonly fullscreen?: boolean | undefined;
40
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
41
- }>>, "colors" | keyof import("react-native").ViewProps | "locations" | "start" | "end" | "display" | "elevation" | "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" | "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" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | "theme" | "group" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "disabled" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onScroll" | "rel" | "download" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "href" | "hrefAttrs" | "elevationAndroid" | keyof import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
190
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
191
+ }>>, "colors" | keyof import("react-native").ViewProps | "locations" | "start" | "end" | "display" | "elevation" | "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" | "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" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | "theme" | "group" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/core").WebOnlyPressEvents | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "disabled" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | "rel" | "download" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "href" | "hrefAttrs" | "elevationAndroid" | keyof import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
192
+ target?: string | undefined;
193
+ hitSlop?: number | import("react-native").Insets | null | undefined;
194
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
195
+ dangerouslySetInnerHTML?: {
196
+ __html: string;
197
+ } | undefined;
198
+ children?: any;
199
+ debug?: import("@tamagui/core").DebugProp | undefined;
200
+ disabled?: boolean | undefined;
201
+ className?: string | undefined;
202
+ themeShallow?: boolean | undefined;
203
+ id?: string | undefined;
204
+ tag?: string | undefined;
205
+ theme?: string | null | undefined;
206
+ group?: undefined;
207
+ untilMeasured?: "hide" | "show" | undefined;
208
+ componentName?: string | undefined;
209
+ tabIndex?: string | number | undefined;
210
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
211
+ disableOptimization?: boolean | undefined;
212
+ forceStyle?: "hover" | "press" | "focus" | undefined;
213
+ disableClassName?: boolean | undefined;
214
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
215
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
216
+ } & {
42
217
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
43
218
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
44
219
  readonly fullscreen?: boolean | undefined;
45
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
220
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
46
221
  }>>>, import("@tamagui/core").TamaguiElement> & {
47
222
  staticConfig: import("@tamagui/core").StaticConfig;
48
- styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
223
+ styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
224
+ target?: string | undefined;
225
+ hitSlop?: number | import("react-native").Insets | null | undefined;
226
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
227
+ dangerouslySetInnerHTML?: {
228
+ __html: string;
229
+ } | undefined;
230
+ children?: any;
231
+ debug?: import("@tamagui/core").DebugProp | undefined;
232
+ disabled?: boolean | undefined;
233
+ className?: string | undefined;
234
+ themeShallow?: boolean | undefined;
235
+ id?: string | undefined;
236
+ tag?: string | undefined;
237
+ theme?: string | null | undefined;
238
+ group?: undefined;
239
+ untilMeasured?: "hide" | "show" | undefined;
240
+ componentName?: string | undefined;
241
+ tabIndex?: string | number | undefined;
242
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
243
+ disableOptimization?: boolean | undefined;
244
+ forceStyle?: "hover" | "press" | "focus" | undefined;
245
+ disableClassName?: boolean | undefined;
246
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
247
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
248
+ } & {
49
249
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
50
250
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
51
251
  readonly fullscreen?: boolean | undefined;
52
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
53
- } & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
252
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
253
+ } & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").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/core").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: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
277
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
278
+ } & {
54
279
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
55
280
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
56
281
  readonly fullscreen?: boolean | undefined;
57
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
58
- }>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
282
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
283
+ }>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
284
+ target?: string | undefined;
285
+ hitSlop?: number | import("react-native").Insets | null | undefined;
286
+ asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
287
+ dangerouslySetInnerHTML?: {
288
+ __html: string;
289
+ } | undefined;
290
+ children?: any;
291
+ debug?: import("@tamagui/core").DebugProp | undefined;
292
+ disabled?: boolean | undefined;
293
+ className?: string | undefined;
294
+ themeShallow?: boolean | undefined;
295
+ id?: string | undefined;
296
+ tag?: string | undefined;
297
+ theme?: string | null | undefined;
298
+ group?: undefined;
299
+ untilMeasured?: "hide" | "show" | undefined;
300
+ componentName?: string | undefined;
301
+ tabIndex?: string | number | undefined;
302
+ role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
303
+ disableOptimization?: boolean | undefined;
304
+ forceStyle?: "hover" | "press" | "focus" | undefined;
305
+ disableClassName?: boolean | undefined;
306
+ onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
307
+ onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
308
+ } & {
59
309
  style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
60
310
  } & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
61
311
  readonly fullscreen?: boolean | undefined;
62
- readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
312
+ readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
63
313
  }>>, import("@tamagui/core").TamaguiElement>;
64
314
  };
65
315
  //# sourceMappingURL=LinearGradient.shared.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"LinearGradient.shared.d.ts","sourceRoot":"","sources":["../src/LinearGradient.shared.tsx"],"names":[],"mappings":";AAAA,OAAO,EACL,WAAW,EACX,WAAW,EAKZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAU,WAAW,EAAE,MAAM,iBAAiB,CAAA;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAE7C,OAAO,EAEL,mBAAmB,IAAI,uBAAuB,EAC/C,MAAM,mBAAmB,CAAA;AAG1B,MAAM,MAAM,mBAAmB,GAAG,IAAI,CAAC,uBAAuB,EAAE,QAAQ,CAAC,GACvE,IAAI,CAAC,WAAW,EAAE,UAAU,GAAG,MAAM,uBAAuB,CAAC,GAAG;IAC9D,MAAM,CAAC,EAAE,CAAC,WAAW,GAAG,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,EAAE,CAAA;CACvD,CAAA;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBzB,CAAA"}
1
+ {"version":3,"file":"LinearGradient.shared.d.ts","sourceRoot":"","sources":["../src/LinearGradient.shared.tsx"],"names":[],"mappings":";AAAA,OAAO,EACL,WAAW,EACX,WAAW,EAKZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAU,WAAW,EAAE,MAAM,iBAAiB,CAAA;AACrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAE7C,OAAO,EAEL,mBAAmB,IAAI,uBAAuB,EAC/C,MAAM,mBAAmB,CAAA;AAG1B,MAAM,MAAM,mBAAmB,GAAG,IAAI,CAAC,uBAAuB,EAAE,QAAQ,CAAC,GACvE,IAAI,CAAC,WAAW,EAAE,UAAU,GAAG,MAAM,uBAAuB,CAAC,GAAG;IAC9D,MAAM,CAAC,EAAE,CAAC,WAAW,GAAG,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,EAAE,CAAA;CACvD,CAAA;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBzB,CAAA"}