@tamagui/form 1.73.1 → 1.73.2
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 +9 -9
- package/types/Form.d.ts +18 -468
- package/types/Form.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/form",
|
|
3
|
-
"version": "1.73.
|
|
3
|
+
"version": "1.73.2",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/compose-refs": "1.73.
|
|
35
|
-
"@tamagui/core": "1.73.
|
|
36
|
-
"@tamagui/create-context": "1.73.
|
|
37
|
-
"@tamagui/focusable": "1.73.
|
|
38
|
-
"@tamagui/get-button-sized": "1.73.
|
|
39
|
-
"@tamagui/get-font-sized": "1.73.
|
|
40
|
-
"@tamagui/text": "1.73.
|
|
34
|
+
"@tamagui/compose-refs": "1.73.2",
|
|
35
|
+
"@tamagui/core": "1.73.2",
|
|
36
|
+
"@tamagui/create-context": "1.73.2",
|
|
37
|
+
"@tamagui/focusable": "1.73.2",
|
|
38
|
+
"@tamagui/get-button-sized": "1.73.2",
|
|
39
|
+
"@tamagui/get-font-sized": "1.73.2",
|
|
40
|
+
"@tamagui/text": "1.73.2"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "*"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@tamagui/build": "1.73.
|
|
46
|
+
"@tamagui/build": "1.73.2",
|
|
47
47
|
"react": "^18.2.0"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
package/types/Form.d.ts
CHANGED
|
@@ -1,177 +1,27 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { StackProps } from '@tamagui/core';
|
|
3
3
|
import { Scope } from '@tamagui/create-context';
|
|
4
|
-
export declare const FormFrame: import("@tamagui/core").TamaguiComponent<(Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
5
|
-
target?: string | undefined;
|
|
6
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
7
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
8
|
-
dangerouslySetInnerHTML?: {
|
|
9
|
-
__html: string;
|
|
10
|
-
} | undefined;
|
|
11
|
-
children?: any;
|
|
12
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
13
|
-
disabled?: boolean | undefined;
|
|
14
|
-
className?: string | undefined;
|
|
15
|
-
themeShallow?: boolean | undefined;
|
|
16
|
-
id?: string | undefined;
|
|
17
|
-
tag?: string | undefined;
|
|
18
|
-
theme?: string | null | undefined;
|
|
19
|
-
group?: undefined;
|
|
20
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
21
|
-
componentName?: string | undefined;
|
|
22
|
-
tabIndex?: string | number | undefined;
|
|
23
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
24
|
-
disableOptimization?: boolean | undefined;
|
|
25
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
26
|
-
disableClassName?: boolean | undefined;
|
|
27
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
28
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
29
|
-
} & {
|
|
4
|
+
export declare const FormFrame: import("@tamagui/core").TamaguiComponent<(Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
30
5
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
31
|
-
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").PseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>>> & import("@tamagui/core").MediaProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").PseudoProps<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<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
32
|
-
target?: string | undefined;
|
|
33
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
34
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
35
|
-
dangerouslySetInnerHTML?: {
|
|
36
|
-
__html: string;
|
|
37
|
-
} | undefined;
|
|
38
|
-
children?: any;
|
|
39
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
40
|
-
disabled?: boolean | undefined;
|
|
41
|
-
className?: string | undefined;
|
|
42
|
-
themeShallow?: boolean | undefined;
|
|
43
|
-
id?: string | undefined;
|
|
44
|
-
tag?: string | undefined;
|
|
45
|
-
theme?: string | null | undefined;
|
|
46
|
-
group?: undefined;
|
|
47
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
48
|
-
componentName?: string | undefined;
|
|
49
|
-
tabIndex?: string | number | undefined;
|
|
50
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
51
|
-
disableOptimization?: boolean | undefined;
|
|
52
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
53
|
-
disableClassName?: boolean | undefined;
|
|
54
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
55
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
56
|
-
} & {
|
|
6
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").PseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>>> & import("@tamagui/core").MediaProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").PseudoProps<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<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
57
7
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
58
8
|
} & 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<{}, string | number> & {
|
|
59
9
|
[x: string]: undefined;
|
|
60
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
61
|
-
target?: string | undefined;
|
|
62
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
63
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
64
|
-
dangerouslySetInnerHTML?: {
|
|
65
|
-
__html: string;
|
|
66
|
-
} | undefined;
|
|
67
|
-
children?: any;
|
|
68
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
69
|
-
disabled?: boolean | undefined;
|
|
70
|
-
className?: string | undefined;
|
|
71
|
-
themeShallow?: boolean | undefined;
|
|
72
|
-
id?: string | undefined;
|
|
73
|
-
tag?: string | undefined;
|
|
74
|
-
theme?: string | null | undefined;
|
|
75
|
-
group?: undefined;
|
|
76
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
77
|
-
componentName?: string | undefined;
|
|
78
|
-
tabIndex?: string | number | undefined;
|
|
79
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
80
|
-
disableOptimization?: boolean | undefined;
|
|
81
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
82
|
-
disableClassName?: boolean | undefined;
|
|
83
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
84
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
85
|
-
} & {
|
|
10
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
86
11
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
87
12
|
} & 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<{}, string | number> & {
|
|
88
13
|
[x: string]: undefined;
|
|
89
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
90
|
-
target?: string | undefined;
|
|
91
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
92
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
93
|
-
dangerouslySetInnerHTML?: {
|
|
94
|
-
__html: string;
|
|
95
|
-
} | undefined;
|
|
96
|
-
children?: any;
|
|
97
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
98
|
-
disabled?: boolean | undefined;
|
|
99
|
-
className?: string | undefined;
|
|
100
|
-
themeShallow?: boolean | undefined;
|
|
101
|
-
id?: string | undefined;
|
|
102
|
-
tag?: string | undefined;
|
|
103
|
-
theme?: string | null | undefined;
|
|
104
|
-
group?: undefined;
|
|
105
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
106
|
-
componentName?: string | undefined;
|
|
107
|
-
tabIndex?: string | number | undefined;
|
|
108
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
109
|
-
disableOptimization?: boolean | undefined;
|
|
110
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
111
|
-
disableClassName?: boolean | undefined;
|
|
112
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
113
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
114
|
-
} & {
|
|
14
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
115
15
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
116
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<{}, string | number> & {
|
|
117
17
|
[x: string]: undefined;
|
|
118
|
-
}>>), import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
119
|
-
target?: string | undefined;
|
|
120
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
121
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
122
|
-
dangerouslySetInnerHTML?: {
|
|
123
|
-
__html: string;
|
|
124
|
-
} | undefined;
|
|
125
|
-
children?: any;
|
|
126
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
127
|
-
disabled?: boolean | undefined;
|
|
128
|
-
className?: string | undefined;
|
|
129
|
-
themeShallow?: boolean | undefined;
|
|
130
|
-
id?: string | undefined;
|
|
131
|
-
tag?: string | undefined;
|
|
132
|
-
theme?: string | null | undefined;
|
|
133
|
-
group?: undefined;
|
|
134
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
135
|
-
componentName?: string | undefined;
|
|
136
|
-
tabIndex?: string | number | undefined;
|
|
137
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
138
|
-
disableOptimization?: boolean | undefined;
|
|
139
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
140
|
-
disableClassName?: boolean | undefined;
|
|
141
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
142
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
143
|
-
} & {
|
|
18
|
+
}>>), import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
144
19
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
145
20
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {} | {
|
|
146
21
|
[x: string]: undefined;
|
|
147
22
|
}, {
|
|
148
23
|
displayName: string | undefined;
|
|
149
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
150
|
-
target?: string | undefined;
|
|
151
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
152
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
153
|
-
dangerouslySetInnerHTML?: {
|
|
154
|
-
__html: string;
|
|
155
|
-
} | undefined;
|
|
156
|
-
children?: any;
|
|
157
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
158
|
-
disabled?: boolean | undefined;
|
|
159
|
-
className?: string | undefined;
|
|
160
|
-
themeShallow?: boolean | undefined;
|
|
161
|
-
id?: string | undefined;
|
|
162
|
-
tag?: string | undefined;
|
|
163
|
-
theme?: string | null | undefined;
|
|
164
|
-
group?: undefined;
|
|
165
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
166
|
-
componentName?: string | undefined;
|
|
167
|
-
tabIndex?: string | number | undefined;
|
|
168
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
169
|
-
disableOptimization?: boolean | undefined;
|
|
170
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
171
|
-
disableClassName?: boolean | undefined;
|
|
172
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
173
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
174
|
-
} & {
|
|
24
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
175
25
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
176
26
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps;
|
|
177
27
|
__variantProps: {};
|
|
@@ -197,358 +47,58 @@ export type FormProps = StackProps & {
|
|
|
197
47
|
};
|
|
198
48
|
export interface FormTriggerProps extends StackProps {
|
|
199
49
|
}
|
|
200
|
-
export declare const FormTrigger: import("@tamagui/core").ReactComponentWithRef<Object & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
201
|
-
target?: string | undefined;
|
|
202
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
203
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
204
|
-
dangerouslySetInnerHTML?: {
|
|
205
|
-
__html: string;
|
|
206
|
-
} | undefined;
|
|
207
|
-
children?: any;
|
|
208
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
209
|
-
disabled?: boolean | undefined;
|
|
210
|
-
className?: string | undefined;
|
|
211
|
-
themeShallow?: boolean | undefined;
|
|
212
|
-
id?: string | undefined;
|
|
213
|
-
tag?: string | undefined;
|
|
214
|
-
theme?: string | null | undefined;
|
|
215
|
-
group?: undefined;
|
|
216
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
217
|
-
componentName?: string | undefined;
|
|
218
|
-
tabIndex?: string | number | undefined;
|
|
219
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
220
|
-
disableOptimization?: boolean | undefined;
|
|
221
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
222
|
-
disableClassName?: boolean | undefined;
|
|
223
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
224
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
225
|
-
} & {
|
|
50
|
+
export declare const FormTrigger: import("@tamagui/core").ReactComponentWithRef<Object & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
226
51
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
227
52
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
228
53
|
[x: string]: undefined;
|
|
229
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
230
|
-
target?: string | undefined;
|
|
231
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
232
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
233
|
-
dangerouslySetInnerHTML?: {
|
|
234
|
-
__html: string;
|
|
235
|
-
} | undefined;
|
|
236
|
-
children?: any;
|
|
237
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
238
|
-
disabled?: boolean | undefined;
|
|
239
|
-
className?: string | undefined;
|
|
240
|
-
themeShallow?: boolean | undefined;
|
|
241
|
-
id?: string | undefined;
|
|
242
|
-
tag?: string | undefined;
|
|
243
|
-
theme?: string | null | undefined;
|
|
244
|
-
group?: undefined;
|
|
245
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
246
|
-
componentName?: string | undefined;
|
|
247
|
-
tabIndex?: string | number | undefined;
|
|
248
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
249
|
-
disableOptimization?: boolean | undefined;
|
|
250
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
251
|
-
disableClassName?: boolean | undefined;
|
|
252
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
253
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
254
|
-
} & {
|
|
54
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
255
55
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
256
56
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
257
57
|
[x: string]: undefined;
|
|
258
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
259
|
-
target?: string | undefined;
|
|
260
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
261
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
262
|
-
dangerouslySetInnerHTML?: {
|
|
263
|
-
__html: string;
|
|
264
|
-
} | undefined;
|
|
265
|
-
children?: any;
|
|
266
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
267
|
-
disabled?: boolean | undefined;
|
|
268
|
-
className?: string | undefined;
|
|
269
|
-
themeShallow?: boolean | undefined;
|
|
270
|
-
id?: string | undefined;
|
|
271
|
-
tag?: string | undefined;
|
|
272
|
-
theme?: string | null | undefined;
|
|
273
|
-
group?: undefined;
|
|
274
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
275
|
-
componentName?: string | undefined;
|
|
276
|
-
tabIndex?: string | number | undefined;
|
|
277
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
278
|
-
disableOptimization?: boolean | undefined;
|
|
279
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
280
|
-
disableClassName?: boolean | undefined;
|
|
281
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
282
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
283
|
-
} & {
|
|
58
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
284
59
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
285
60
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
286
61
|
[x: string]: undefined;
|
|
287
62
|
}>>), keyof Object>, import("@tamagui/core").TamaguiElement> & {
|
|
288
63
|
staticConfig: import("@tamagui/core").StaticConfig;
|
|
289
|
-
styleable: import("@tamagui/core").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
290
|
-
target?: string | undefined;
|
|
291
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
292
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
293
|
-
dangerouslySetInnerHTML?: {
|
|
294
|
-
__html: string;
|
|
295
|
-
} | undefined;
|
|
296
|
-
children?: any;
|
|
297
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
298
|
-
disabled?: boolean | undefined;
|
|
299
|
-
className?: string | undefined;
|
|
300
|
-
themeShallow?: boolean | undefined;
|
|
301
|
-
id?: string | undefined;
|
|
302
|
-
tag?: string | undefined;
|
|
303
|
-
theme?: string | null | undefined;
|
|
304
|
-
group?: undefined;
|
|
305
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
306
|
-
componentName?: string | undefined;
|
|
307
|
-
tabIndex?: string | number | undefined;
|
|
308
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
309
|
-
disableOptimization?: boolean | undefined;
|
|
310
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
311
|
-
disableClassName?: boolean | undefined;
|
|
312
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
313
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
314
|
-
} & {
|
|
64
|
+
styleable: import("@tamagui/core").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
315
65
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
316
66
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
317
67
|
[x: string]: undefined;
|
|
318
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
319
|
-
target?: string | undefined;
|
|
320
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
321
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
322
|
-
dangerouslySetInnerHTML?: {
|
|
323
|
-
__html: string;
|
|
324
|
-
} | undefined;
|
|
325
|
-
children?: any;
|
|
326
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
327
|
-
disabled?: boolean | undefined;
|
|
328
|
-
className?: string | undefined;
|
|
329
|
-
themeShallow?: boolean | undefined;
|
|
330
|
-
id?: string | undefined;
|
|
331
|
-
tag?: string | undefined;
|
|
332
|
-
theme?: string | null | undefined;
|
|
333
|
-
group?: undefined;
|
|
334
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
335
|
-
componentName?: string | undefined;
|
|
336
|
-
tabIndex?: string | number | undefined;
|
|
337
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
338
|
-
disableOptimization?: boolean | undefined;
|
|
339
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
340
|
-
disableClassName?: boolean | undefined;
|
|
341
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
342
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
343
|
-
} & {
|
|
68
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
344
69
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
345
70
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
346
71
|
[x: string]: undefined;
|
|
347
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
348
|
-
target?: string | undefined;
|
|
349
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
350
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
351
|
-
dangerouslySetInnerHTML?: {
|
|
352
|
-
__html: string;
|
|
353
|
-
} | undefined;
|
|
354
|
-
children?: any;
|
|
355
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
356
|
-
disabled?: boolean | undefined;
|
|
357
|
-
className?: string | undefined;
|
|
358
|
-
themeShallow?: boolean | undefined;
|
|
359
|
-
id?: string | undefined;
|
|
360
|
-
tag?: string | undefined;
|
|
361
|
-
theme?: string | null | undefined;
|
|
362
|
-
group?: undefined;
|
|
363
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
364
|
-
componentName?: string | undefined;
|
|
365
|
-
tabIndex?: string | number | undefined;
|
|
366
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
367
|
-
disableOptimization?: boolean | undefined;
|
|
368
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
369
|
-
disableClassName?: boolean | undefined;
|
|
370
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
371
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
372
|
-
} & {
|
|
72
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
373
73
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
374
74
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
375
75
|
[x: string]: undefined;
|
|
376
76
|
}>>), import("@tamagui/core").TamaguiElement>;
|
|
377
77
|
};
|
|
378
78
|
export declare const Form: (({ onSubmit, ...props }: ScopedProps<FormProps>) => JSX.Element) & {
|
|
379
|
-
Trigger: import("@tamagui/core").ReactComponentWithRef<Object & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
380
|
-
target?: string | undefined;
|
|
381
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
382
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
383
|
-
dangerouslySetInnerHTML?: {
|
|
384
|
-
__html: string;
|
|
385
|
-
} | undefined;
|
|
386
|
-
children?: any;
|
|
387
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
388
|
-
disabled?: boolean | undefined;
|
|
389
|
-
className?: string | undefined;
|
|
390
|
-
themeShallow?: boolean | undefined;
|
|
391
|
-
id?: string | undefined;
|
|
392
|
-
tag?: string | undefined;
|
|
393
|
-
theme?: string | null | undefined;
|
|
394
|
-
group?: undefined;
|
|
395
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
396
|
-
componentName?: string | undefined;
|
|
397
|
-
tabIndex?: string | number | undefined;
|
|
398
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
399
|
-
disableOptimization?: boolean | undefined;
|
|
400
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
401
|
-
disableClassName?: boolean | undefined;
|
|
402
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
403
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
404
|
-
} & {
|
|
79
|
+
Trigger: import("@tamagui/core").ReactComponentWithRef<Object & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
405
80
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
406
81
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
407
82
|
[x: string]: undefined;
|
|
408
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
409
|
-
target?: string | undefined;
|
|
410
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
411
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
412
|
-
dangerouslySetInnerHTML?: {
|
|
413
|
-
__html: string;
|
|
414
|
-
} | undefined;
|
|
415
|
-
children?: any;
|
|
416
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
417
|
-
disabled?: boolean | undefined;
|
|
418
|
-
className?: string | undefined;
|
|
419
|
-
themeShallow?: boolean | undefined;
|
|
420
|
-
id?: string | undefined;
|
|
421
|
-
tag?: string | undefined;
|
|
422
|
-
theme?: string | null | undefined;
|
|
423
|
-
group?: undefined;
|
|
424
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
425
|
-
componentName?: string | undefined;
|
|
426
|
-
tabIndex?: string | number | undefined;
|
|
427
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
428
|
-
disableOptimization?: boolean | undefined;
|
|
429
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
430
|
-
disableClassName?: boolean | undefined;
|
|
431
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
432
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
433
|
-
} & {
|
|
83
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
434
84
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
435
85
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
436
86
|
[x: string]: undefined;
|
|
437
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
438
|
-
target?: string | undefined;
|
|
439
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
440
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
441
|
-
dangerouslySetInnerHTML?: {
|
|
442
|
-
__html: string;
|
|
443
|
-
} | undefined;
|
|
444
|
-
children?: any;
|
|
445
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
446
|
-
disabled?: boolean | undefined;
|
|
447
|
-
className?: string | undefined;
|
|
448
|
-
themeShallow?: boolean | undefined;
|
|
449
|
-
id?: string | undefined;
|
|
450
|
-
tag?: string | undefined;
|
|
451
|
-
theme?: string | null | undefined;
|
|
452
|
-
group?: undefined;
|
|
453
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
454
|
-
componentName?: string | undefined;
|
|
455
|
-
tabIndex?: string | number | undefined;
|
|
456
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
457
|
-
disableOptimization?: boolean | undefined;
|
|
458
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
459
|
-
disableClassName?: boolean | undefined;
|
|
460
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
461
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
462
|
-
} & {
|
|
87
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
463
88
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
464
89
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
465
90
|
[x: string]: undefined;
|
|
466
91
|
}>>), keyof Object>, import("@tamagui/core").TamaguiElement> & {
|
|
467
92
|
staticConfig: import("@tamagui/core").StaticConfig;
|
|
468
|
-
styleable: import("@tamagui/core").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
469
|
-
target?: string | undefined;
|
|
470
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
471
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
472
|
-
dangerouslySetInnerHTML?: {
|
|
473
|
-
__html: string;
|
|
474
|
-
} | undefined;
|
|
475
|
-
children?: any;
|
|
476
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
477
|
-
disabled?: boolean | undefined;
|
|
478
|
-
className?: string | undefined;
|
|
479
|
-
themeShallow?: boolean | undefined;
|
|
480
|
-
id?: string | undefined;
|
|
481
|
-
tag?: string | undefined;
|
|
482
|
-
theme?: string | null | undefined;
|
|
483
|
-
group?: undefined;
|
|
484
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
485
|
-
componentName?: string | undefined;
|
|
486
|
-
tabIndex?: string | number | undefined;
|
|
487
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
488
|
-
disableOptimization?: boolean | undefined;
|
|
489
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
490
|
-
disableClassName?: boolean | undefined;
|
|
491
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
492
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
493
|
-
} & {
|
|
93
|
+
styleable: import("@tamagui/core").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
494
94
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
495
95
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
496
96
|
[x: string]: undefined;
|
|
497
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
498
|
-
target?: string | undefined;
|
|
499
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
500
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
501
|
-
dangerouslySetInnerHTML?: {
|
|
502
|
-
__html: string;
|
|
503
|
-
} | undefined;
|
|
504
|
-
children?: any;
|
|
505
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
506
|
-
disabled?: boolean | undefined;
|
|
507
|
-
className?: string | undefined;
|
|
508
|
-
themeShallow?: boolean | undefined;
|
|
509
|
-
id?: string | undefined;
|
|
510
|
-
tag?: string | undefined;
|
|
511
|
-
theme?: string | null | undefined;
|
|
512
|
-
group?: undefined;
|
|
513
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
514
|
-
componentName?: string | undefined;
|
|
515
|
-
tabIndex?: string | number | undefined;
|
|
516
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
517
|
-
disableOptimization?: boolean | undefined;
|
|
518
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
519
|
-
disableClassName?: boolean | undefined;
|
|
520
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
521
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
522
|
-
} & {
|
|
97
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
523
98
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
524
99
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
525
100
|
[x: string]: undefined;
|
|
526
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
527
|
-
target?: string | undefined;
|
|
528
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
529
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
530
|
-
dangerouslySetInnerHTML?: {
|
|
531
|
-
__html: string;
|
|
532
|
-
} | undefined;
|
|
533
|
-
children?: any;
|
|
534
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
535
|
-
disabled?: boolean | undefined;
|
|
536
|
-
className?: string | undefined;
|
|
537
|
-
themeShallow?: boolean | undefined;
|
|
538
|
-
id?: string | undefined;
|
|
539
|
-
tag?: string | undefined;
|
|
540
|
-
theme?: string | null | undefined;
|
|
541
|
-
group?: undefined;
|
|
542
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
543
|
-
componentName?: string | undefined;
|
|
544
|
-
tabIndex?: string | number | undefined;
|
|
545
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
546
|
-
disableOptimization?: boolean | undefined;
|
|
547
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
548
|
-
disableClassName?: boolean | undefined;
|
|
549
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
550
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
551
|
-
} & {
|
|
101
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
552
102
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
553
103
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
554
104
|
[x: string]: undefined;
|
package/types/Form.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../src/Form.tsx"],"names":[],"mappings":";AAAA,OAAO,EAEL,UAAU,EAKX,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,KAAK,EAAsB,MAAM,yBAAyB,CAAA;AAKnE,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"Form.d.ts","sourceRoot":"","sources":["../src/Form.tsx"],"names":[],"mappings":";AAAA,OAAO,EAEL,UAAU,EAKX,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,KAAK,EAAsB,MAAM,yBAAyB,CAAA;AAKnE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;EAGpB,CAAA;AAMF,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,WAAW,CAAC,EAAE,KAAK,CAAA;CAAE,CAAA;AAGjD,KAAK,gBAAgB,GAAG;IACtB,QAAQ,EAAE,MAAM,OAAO,CAAA;CACxB,CAAA;AAED,eAAO,MAAO,YAAY;;;;;;GAAE,cAAc;;;kCACM,CAAA;AAEhD,MAAM,MAAM,SAAS,GAAG,UAAU,GAAG;IACnC,QAAQ,EAAE,MAAM,IAAI,CAAA;CACrB,CAAA;AAYD,MAAM,WAAW,gBAAiB,SAAQ,UAAU;CAAG;AAEvD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmBvB,CAAA;AAiBD,eAAO,MAAM,IAAI,4BARd,YAAY,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAUvB,CAAA"}
|