@tamagui/linear-gradient 1.73.1 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/linear-gradient",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.74.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/core": "1.
|
|
35
|
-
"@tamagui/stacks": "1.
|
|
34
|
+
"@tamagui/core": "1.74.0",
|
|
35
|
+
"@tamagui/stacks": "1.74.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": "*"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@tamagui/build": "1.
|
|
41
|
+
"@tamagui/build": "1.74.0",
|
|
42
42
|
"expo-linear-gradient": "~12.3.0",
|
|
43
43
|
"react": "^18.2.0"
|
|
44
44
|
},
|
|
@@ -6,306 +6,56 @@ 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").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
|
-
} & {
|
|
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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
35
10
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
36
11
|
} & 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"> & {
|
|
37
12
|
readonly fullscreen?: boolean | undefined;
|
|
38
13
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
65
15
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
66
16
|
} & 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"> & {
|
|
67
17
|
readonly fullscreen?: boolean | undefined;
|
|
68
18
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
95
20
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
96
21
|
} & 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"> & {
|
|
97
22
|
readonly fullscreen?: boolean | undefined;
|
|
98
23
|
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
99
24
|
}>>, "colors" | keyof import("react-native").ViewProps | "locations" | "start" | "end"> & {
|
|
100
25
|
colors?: (ColorTokens | (string & {}))[] | undefined;
|
|
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
|
-
} & {
|
|
26
|
+
} & Omit<Omit<import("react-native").ViewProps, "style" | "children" | "onLayout" | "display" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
127
27
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
128
28
|
} & 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"> & {
|
|
129
29
|
readonly fullscreen?: boolean | undefined;
|
|
130
30
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
157
32
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
158
33
|
} & 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"> & {
|
|
159
34
|
readonly fullscreen?: boolean | undefined;
|
|
160
35
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
187
37
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
188
38
|
} & 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"> & {
|
|
189
39
|
readonly fullscreen?: boolean | undefined;
|
|
190
40
|
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
|
-
} & {
|
|
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}` | 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
217
42
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
218
43
|
} & 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"> & {
|
|
219
44
|
readonly fullscreen?: boolean | undefined;
|
|
220
45
|
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
221
46
|
}>>>, import("@tamagui/core").TamaguiElement> & {
|
|
222
47
|
staticConfig: import("@tamagui/core").StaticConfig;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
249
49
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
250
50
|
} & 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"> & {
|
|
251
51
|
readonly fullscreen?: boolean | undefined;
|
|
252
52
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
279
54
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
280
55
|
} & 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"> & {
|
|
281
56
|
readonly fullscreen?: boolean | undefined;
|
|
282
57
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
309
59
|
style?: import("@tamagui/core").StyleProp<ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & ViewStyle)>;
|
|
310
60
|
} & 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"> & {
|
|
311
61
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -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
|
|
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"}
|