@tamagui/collapsible 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 +14 -10
- package/types/Collapsible.d.ts +836 -36
- package/types/Collapsible.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/collapsible",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.73.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -14,22 +14,26 @@
|
|
|
14
14
|
],
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tamagui-build",
|
|
17
|
-
"watch": "tamagui-build --watch"
|
|
17
|
+
"watch": "tamagui-build --watch",
|
|
18
|
+
"lint": "../../node_modules/.bin/biome check src",
|
|
19
|
+
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
|
|
20
|
+
"clean": "tamagui-build clean",
|
|
21
|
+
"clean:build": "tamagui-build clean:build"
|
|
18
22
|
},
|
|
19
23
|
"dependencies": {
|
|
20
|
-
"@tamagui/animate-presence": "1.
|
|
21
|
-
"@tamagui/compose-refs": "1.
|
|
22
|
-
"@tamagui/core": "1.
|
|
23
|
-
"@tamagui/create-context": "1.
|
|
24
|
-
"@tamagui/polyfill-dev": "1.
|
|
25
|
-
"@tamagui/stacks": "1.
|
|
26
|
-
"@tamagui/use-controllable-state": "1.
|
|
24
|
+
"@tamagui/animate-presence": "1.73.1",
|
|
25
|
+
"@tamagui/compose-refs": "1.73.1",
|
|
26
|
+
"@tamagui/core": "1.73.1",
|
|
27
|
+
"@tamagui/create-context": "1.73.1",
|
|
28
|
+
"@tamagui/polyfill-dev": "1.73.1",
|
|
29
|
+
"@tamagui/stacks": "1.73.1",
|
|
30
|
+
"@tamagui/use-controllable-state": "1.73.1"
|
|
27
31
|
},
|
|
28
32
|
"peerDependencies": {
|
|
29
33
|
"react": "*"
|
|
30
34
|
},
|
|
31
35
|
"devDependencies": {
|
|
32
|
-
"@tamagui/build": "1.
|
|
36
|
+
"@tamagui/build": "1.73.1",
|
|
33
37
|
"react": "^18.2.0"
|
|
34
38
|
},
|
|
35
39
|
"publishConfig": {
|
package/types/Collapsible.d.ts
CHANGED
|
@@ -9,15 +9,90 @@ interface CollapsibleProps extends StackProps {
|
|
|
9
9
|
onOpenChange?(open: boolean): void;
|
|
10
10
|
}
|
|
11
11
|
type CollapsibleTriggerProps = GetProps<typeof Stack>;
|
|
12
|
-
declare const CollapsibleTriggerFrame: import("@tamagui/web").TamaguiComponent<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
12
|
+
declare const CollapsibleTriggerFrame: import("@tamagui/web").TamaguiComponent<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
13
|
+
target?: string | undefined;
|
|
14
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
15
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
16
|
+
dangerouslySetInnerHTML?: {
|
|
17
|
+
__html: string;
|
|
18
|
+
} | undefined;
|
|
19
|
+
children?: any;
|
|
20
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
21
|
+
disabled?: boolean | undefined;
|
|
22
|
+
className?: string | undefined;
|
|
23
|
+
themeShallow?: boolean | undefined;
|
|
24
|
+
id?: string | undefined;
|
|
25
|
+
tag?: string | undefined;
|
|
26
|
+
theme?: string | null | undefined;
|
|
27
|
+
group?: undefined;
|
|
28
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
29
|
+
componentName?: string | undefined;
|
|
30
|
+
tabIndex?: string | number | undefined;
|
|
31
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
32
|
+
disableOptimization?: boolean | undefined;
|
|
33
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
34
|
+
disableClassName?: boolean | undefined;
|
|
35
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
36
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
37
|
+
} & {
|
|
13
38
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
14
39
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
15
40
|
[x: string]: undefined;
|
|
16
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
41
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
42
|
+
target?: string | undefined;
|
|
43
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
44
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
45
|
+
dangerouslySetInnerHTML?: {
|
|
46
|
+
__html: string;
|
|
47
|
+
} | undefined;
|
|
48
|
+
children?: any;
|
|
49
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
50
|
+
disabled?: boolean | undefined;
|
|
51
|
+
className?: string | undefined;
|
|
52
|
+
themeShallow?: boolean | undefined;
|
|
53
|
+
id?: string | undefined;
|
|
54
|
+
tag?: string | undefined;
|
|
55
|
+
theme?: string | null | undefined;
|
|
56
|
+
group?: undefined;
|
|
57
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
58
|
+
componentName?: string | undefined;
|
|
59
|
+
tabIndex?: string | number | undefined;
|
|
60
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
61
|
+
disableOptimization?: boolean | undefined;
|
|
62
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
63
|
+
disableClassName?: boolean | undefined;
|
|
64
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
65
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
66
|
+
} & {
|
|
17
67
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
18
68
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
19
69
|
[x: string]: undefined;
|
|
20
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
70
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
71
|
+
target?: string | undefined;
|
|
72
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
73
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
74
|
+
dangerouslySetInnerHTML?: {
|
|
75
|
+
__html: string;
|
|
76
|
+
} | undefined;
|
|
77
|
+
children?: any;
|
|
78
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
79
|
+
disabled?: boolean | undefined;
|
|
80
|
+
className?: string | undefined;
|
|
81
|
+
themeShallow?: boolean | undefined;
|
|
82
|
+
id?: string | undefined;
|
|
83
|
+
tag?: string | undefined;
|
|
84
|
+
theme?: string | null | undefined;
|
|
85
|
+
group?: undefined;
|
|
86
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
87
|
+
componentName?: string | undefined;
|
|
88
|
+
tabIndex?: string | number | undefined;
|
|
89
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
90
|
+
disableOptimization?: boolean | undefined;
|
|
91
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
92
|
+
disableClassName?: boolean | undefined;
|
|
93
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
94
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
95
|
+
} & {
|
|
21
96
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
22
97
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
23
98
|
[x: string]: undefined;
|
|
@@ -28,21 +103,121 @@ declare const CollapsibleTriggerFrame: import("@tamagui/web").TamaguiComponent<S
|
|
|
28
103
|
__baseProps: import("@tamagui/web").StackPropsBase;
|
|
29
104
|
__variantProps: {};
|
|
30
105
|
}>;
|
|
31
|
-
declare const CollapsibleTrigger: import("@tamagui/web").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
106
|
+
declare const CollapsibleTrigger: import("@tamagui/web").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
107
|
+
target?: string | undefined;
|
|
108
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
109
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
110
|
+
dangerouslySetInnerHTML?: {
|
|
111
|
+
__html: string;
|
|
112
|
+
} | undefined;
|
|
113
|
+
children?: any;
|
|
114
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
115
|
+
disabled?: boolean | undefined;
|
|
116
|
+
className?: string | undefined;
|
|
117
|
+
themeShallow?: boolean | undefined;
|
|
118
|
+
id?: string | undefined;
|
|
119
|
+
tag?: string | undefined;
|
|
120
|
+
theme?: string | null | undefined;
|
|
121
|
+
group?: undefined;
|
|
122
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
123
|
+
componentName?: string | undefined;
|
|
124
|
+
tabIndex?: string | number | undefined;
|
|
125
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
126
|
+
disableOptimization?: boolean | undefined;
|
|
127
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
128
|
+
disableClassName?: boolean | undefined;
|
|
129
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
130
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
131
|
+
} & {
|
|
32
132
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
33
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
133
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
134
|
+
target?: string | undefined;
|
|
135
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
136
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
137
|
+
dangerouslySetInnerHTML?: {
|
|
138
|
+
__html: string;
|
|
139
|
+
} | undefined;
|
|
140
|
+
children?: any;
|
|
141
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
142
|
+
disabled?: boolean | undefined;
|
|
143
|
+
className?: string | undefined;
|
|
144
|
+
themeShallow?: boolean | undefined;
|
|
145
|
+
id?: string | undefined;
|
|
146
|
+
tag?: string | undefined;
|
|
147
|
+
theme?: string | null | undefined;
|
|
148
|
+
group?: undefined;
|
|
149
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
150
|
+
componentName?: string | undefined;
|
|
151
|
+
tabIndex?: string | number | undefined;
|
|
152
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
153
|
+
disableOptimization?: boolean | undefined;
|
|
154
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
155
|
+
disableClassName?: boolean | undefined;
|
|
156
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
157
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
158
|
+
} & {
|
|
34
159
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
35
160
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
36
161
|
[x: string]: undefined;
|
|
37
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
162
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
163
|
+
target?: string | undefined;
|
|
164
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
165
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
166
|
+
dangerouslySetInnerHTML?: {
|
|
167
|
+
__html: string;
|
|
168
|
+
} | undefined;
|
|
169
|
+
children?: any;
|
|
170
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
171
|
+
disabled?: boolean | undefined;
|
|
172
|
+
className?: string | undefined;
|
|
173
|
+
themeShallow?: boolean | undefined;
|
|
174
|
+
id?: string | undefined;
|
|
175
|
+
tag?: string | undefined;
|
|
176
|
+
theme?: string | null | undefined;
|
|
177
|
+
group?: undefined;
|
|
178
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
179
|
+
componentName?: string | undefined;
|
|
180
|
+
tabIndex?: string | number | undefined;
|
|
181
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
182
|
+
disableOptimization?: boolean | undefined;
|
|
183
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
184
|
+
disableClassName?: boolean | undefined;
|
|
185
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
186
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
187
|
+
} & {
|
|
38
188
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
39
189
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
40
190
|
[x: string]: undefined;
|
|
41
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
191
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
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/web").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: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
215
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
216
|
+
} & {
|
|
42
217
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
43
218
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
44
219
|
[x: string]: undefined;
|
|
45
|
-
}>>), "style" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof {
|
|
220
|
+
}>>), "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof {
|
|
46
221
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
47
222
|
contain?: import("csstype").Property.Contain | undefined;
|
|
48
223
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -60,17 +235,92 @@ declare const CollapsibleTrigger: import("@tamagui/web").ReactComponentWithRef<O
|
|
|
60
235
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
61
236
|
animateOnly?: string[] | undefined;
|
|
62
237
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
63
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
238
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>>, import("@tamagui/web").TamaguiElement> & {
|
|
64
239
|
staticConfig: import("@tamagui/web").StaticConfig;
|
|
65
|
-
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
240
|
+
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
241
|
+
target?: string | undefined;
|
|
242
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
243
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
244
|
+
dangerouslySetInnerHTML?: {
|
|
245
|
+
__html: string;
|
|
246
|
+
} | undefined;
|
|
247
|
+
children?: any;
|
|
248
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
249
|
+
disabled?: boolean | undefined;
|
|
250
|
+
className?: string | undefined;
|
|
251
|
+
themeShallow?: boolean | undefined;
|
|
252
|
+
id?: string | undefined;
|
|
253
|
+
tag?: string | undefined;
|
|
254
|
+
theme?: string | null | undefined;
|
|
255
|
+
group?: undefined;
|
|
256
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
257
|
+
componentName?: string | undefined;
|
|
258
|
+
tabIndex?: string | number | undefined;
|
|
259
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
260
|
+
disableOptimization?: boolean | undefined;
|
|
261
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
262
|
+
disableClassName?: boolean | undefined;
|
|
263
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
264
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
265
|
+
} & {
|
|
66
266
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
67
267
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
68
268
|
[x: string]: undefined;
|
|
69
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
269
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
270
|
+
target?: string | undefined;
|
|
271
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
272
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
273
|
+
dangerouslySetInnerHTML?: {
|
|
274
|
+
__html: string;
|
|
275
|
+
} | undefined;
|
|
276
|
+
children?: any;
|
|
277
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
278
|
+
disabled?: boolean | undefined;
|
|
279
|
+
className?: string | undefined;
|
|
280
|
+
themeShallow?: boolean | undefined;
|
|
281
|
+
id?: string | undefined;
|
|
282
|
+
tag?: string | undefined;
|
|
283
|
+
theme?: string | null | undefined;
|
|
284
|
+
group?: undefined;
|
|
285
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
286
|
+
componentName?: string | undefined;
|
|
287
|
+
tabIndex?: string | number | undefined;
|
|
288
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
289
|
+
disableOptimization?: boolean | undefined;
|
|
290
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
291
|
+
disableClassName?: boolean | undefined;
|
|
292
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
293
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
294
|
+
} & {
|
|
70
295
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
71
296
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
72
297
|
[x: string]: undefined;
|
|
73
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
298
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
299
|
+
target?: string | undefined;
|
|
300
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
301
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
302
|
+
dangerouslySetInnerHTML?: {
|
|
303
|
+
__html: string;
|
|
304
|
+
} | undefined;
|
|
305
|
+
children?: any;
|
|
306
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
307
|
+
disabled?: boolean | undefined;
|
|
308
|
+
className?: string | undefined;
|
|
309
|
+
themeShallow?: boolean | undefined;
|
|
310
|
+
id?: string | undefined;
|
|
311
|
+
tag?: string | undefined;
|
|
312
|
+
theme?: string | null | undefined;
|
|
313
|
+
group?: undefined;
|
|
314
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
315
|
+
componentName?: string | undefined;
|
|
316
|
+
tabIndex?: string | number | undefined;
|
|
317
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
318
|
+
disableOptimization?: boolean | undefined;
|
|
319
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
320
|
+
disableClassName?: boolean | undefined;
|
|
321
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
322
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
323
|
+
} & {
|
|
74
324
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
75
325
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
76
326
|
[x: string]: undefined;
|
|
@@ -83,15 +333,90 @@ interface CollapsibleContentProps extends AnimatePresenceProps, ThemeableStackPr
|
|
|
83
333
|
*/
|
|
84
334
|
forceMount?: true;
|
|
85
335
|
}
|
|
86
|
-
declare const CollapsibleContentFrame: import("@tamagui/web").TamaguiComponent<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
336
|
+
declare const CollapsibleContentFrame: import("@tamagui/web").TamaguiComponent<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
337
|
+
target?: string | undefined;
|
|
338
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
339
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
340
|
+
dangerouslySetInnerHTML?: {
|
|
341
|
+
__html: string;
|
|
342
|
+
} | undefined;
|
|
343
|
+
children?: any;
|
|
344
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
345
|
+
disabled?: boolean | undefined;
|
|
346
|
+
className?: string | undefined;
|
|
347
|
+
themeShallow?: boolean | undefined;
|
|
348
|
+
id?: string | undefined;
|
|
349
|
+
tag?: string | undefined;
|
|
350
|
+
theme?: string | null | undefined;
|
|
351
|
+
group?: undefined;
|
|
352
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
353
|
+
componentName?: string | undefined;
|
|
354
|
+
tabIndex?: string | number | undefined;
|
|
355
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
356
|
+
disableOptimization?: boolean | undefined;
|
|
357
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
358
|
+
disableClassName?: boolean | undefined;
|
|
359
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
360
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
361
|
+
} & {
|
|
87
362
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
88
363
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
89
364
|
[x: string]: undefined;
|
|
90
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
365
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
366
|
+
target?: string | undefined;
|
|
367
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
368
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
369
|
+
dangerouslySetInnerHTML?: {
|
|
370
|
+
__html: string;
|
|
371
|
+
} | undefined;
|
|
372
|
+
children?: any;
|
|
373
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
374
|
+
disabled?: boolean | undefined;
|
|
375
|
+
className?: string | undefined;
|
|
376
|
+
themeShallow?: boolean | undefined;
|
|
377
|
+
id?: string | undefined;
|
|
378
|
+
tag?: string | undefined;
|
|
379
|
+
theme?: string | null | undefined;
|
|
380
|
+
group?: undefined;
|
|
381
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
382
|
+
componentName?: string | undefined;
|
|
383
|
+
tabIndex?: string | number | undefined;
|
|
384
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
385
|
+
disableOptimization?: boolean | undefined;
|
|
386
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
387
|
+
disableClassName?: boolean | undefined;
|
|
388
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
389
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
390
|
+
} & {
|
|
91
391
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
92
392
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
93
393
|
[x: string]: undefined;
|
|
94
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
394
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
395
|
+
target?: string | undefined;
|
|
396
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
397
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
398
|
+
dangerouslySetInnerHTML?: {
|
|
399
|
+
__html: string;
|
|
400
|
+
} | undefined;
|
|
401
|
+
children?: any;
|
|
402
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
403
|
+
disabled?: boolean | undefined;
|
|
404
|
+
className?: string | undefined;
|
|
405
|
+
themeShallow?: boolean | undefined;
|
|
406
|
+
id?: string | undefined;
|
|
407
|
+
tag?: string | undefined;
|
|
408
|
+
theme?: string | null | undefined;
|
|
409
|
+
group?: undefined;
|
|
410
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
411
|
+
componentName?: string | undefined;
|
|
412
|
+
tabIndex?: string | number | undefined;
|
|
413
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
414
|
+
disableOptimization?: boolean | undefined;
|
|
415
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
416
|
+
disableClassName?: boolean | undefined;
|
|
417
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
418
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
419
|
+
} & {
|
|
95
420
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
96
421
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
97
422
|
[x: string]: undefined;
|
|
@@ -104,29 +429,179 @@ declare const CollapsibleContentFrame: import("@tamagui/web").TamaguiComponent<S
|
|
|
104
429
|
}>;
|
|
105
430
|
declare const CollapsibleContent: import("@tamagui/web").ReactComponentWithRef<CollapsibleContentProps & {
|
|
106
431
|
__scopeCollapsible?: string | undefined;
|
|
107
|
-
} & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
432
|
+
} & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
433
|
+
target?: string | undefined;
|
|
434
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
435
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
436
|
+
dangerouslySetInnerHTML?: {
|
|
437
|
+
__html: string;
|
|
438
|
+
} | undefined;
|
|
439
|
+
children?: any;
|
|
440
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
441
|
+
disabled?: boolean | undefined;
|
|
442
|
+
className?: string | undefined;
|
|
443
|
+
themeShallow?: boolean | undefined;
|
|
444
|
+
id?: string | undefined;
|
|
445
|
+
tag?: string | undefined;
|
|
446
|
+
theme?: string | null | undefined;
|
|
447
|
+
group?: undefined;
|
|
448
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
449
|
+
componentName?: string | undefined;
|
|
450
|
+
tabIndex?: string | number | undefined;
|
|
451
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
452
|
+
disableOptimization?: boolean | undefined;
|
|
453
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
454
|
+
disableClassName?: boolean | undefined;
|
|
455
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
456
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
457
|
+
} & {
|
|
108
458
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
109
459
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
110
460
|
[x: string]: undefined;
|
|
111
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
461
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
462
|
+
target?: string | undefined;
|
|
463
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
464
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
465
|
+
dangerouslySetInnerHTML?: {
|
|
466
|
+
__html: string;
|
|
467
|
+
} | undefined;
|
|
468
|
+
children?: any;
|
|
469
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
470
|
+
disabled?: boolean | undefined;
|
|
471
|
+
className?: string | undefined;
|
|
472
|
+
themeShallow?: boolean | undefined;
|
|
473
|
+
id?: string | undefined;
|
|
474
|
+
tag?: string | undefined;
|
|
475
|
+
theme?: string | null | undefined;
|
|
476
|
+
group?: undefined;
|
|
477
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
478
|
+
componentName?: string | undefined;
|
|
479
|
+
tabIndex?: string | number | undefined;
|
|
480
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
481
|
+
disableOptimization?: boolean | undefined;
|
|
482
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
483
|
+
disableClassName?: boolean | undefined;
|
|
484
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
485
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
486
|
+
} & {
|
|
112
487
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
113
488
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
114
489
|
[x: string]: undefined;
|
|
115
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
490
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
491
|
+
target?: string | undefined;
|
|
492
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
493
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
494
|
+
dangerouslySetInnerHTML?: {
|
|
495
|
+
__html: string;
|
|
496
|
+
} | undefined;
|
|
497
|
+
children?: any;
|
|
498
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
499
|
+
disabled?: boolean | undefined;
|
|
500
|
+
className?: string | undefined;
|
|
501
|
+
themeShallow?: boolean | undefined;
|
|
502
|
+
id?: string | undefined;
|
|
503
|
+
tag?: string | undefined;
|
|
504
|
+
theme?: string | null | undefined;
|
|
505
|
+
group?: undefined;
|
|
506
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
507
|
+
componentName?: string | undefined;
|
|
508
|
+
tabIndex?: string | number | undefined;
|
|
509
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
510
|
+
disableOptimization?: boolean | undefined;
|
|
511
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
512
|
+
disableClassName?: boolean | undefined;
|
|
513
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
514
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
515
|
+
} & {
|
|
116
516
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
117
517
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
118
518
|
[x: string]: undefined;
|
|
119
519
|
}>>), "__scopeCollapsible" | keyof CollapsibleContentProps>, import("@tamagui/web").TamaguiElement> & {
|
|
120
520
|
staticConfig: import("@tamagui/web").StaticConfig;
|
|
121
|
-
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
521
|
+
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
522
|
+
target?: string | undefined;
|
|
523
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
524
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
525
|
+
dangerouslySetInnerHTML?: {
|
|
526
|
+
__html: string;
|
|
527
|
+
} | undefined;
|
|
528
|
+
children?: any;
|
|
529
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
530
|
+
disabled?: boolean | undefined;
|
|
531
|
+
className?: string | undefined;
|
|
532
|
+
themeShallow?: boolean | undefined;
|
|
533
|
+
id?: string | undefined;
|
|
534
|
+
tag?: string | undefined;
|
|
535
|
+
theme?: string | null | undefined;
|
|
536
|
+
group?: undefined;
|
|
537
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
538
|
+
componentName?: string | undefined;
|
|
539
|
+
tabIndex?: string | number | undefined;
|
|
540
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
541
|
+
disableOptimization?: boolean | undefined;
|
|
542
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
543
|
+
disableClassName?: boolean | undefined;
|
|
544
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
545
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
546
|
+
} & {
|
|
122
547
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
123
548
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
124
549
|
[x: string]: undefined;
|
|
125
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
550
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
551
|
+
target?: string | undefined;
|
|
552
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
553
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
554
|
+
dangerouslySetInnerHTML?: {
|
|
555
|
+
__html: string;
|
|
556
|
+
} | undefined;
|
|
557
|
+
children?: any;
|
|
558
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
559
|
+
disabled?: boolean | undefined;
|
|
560
|
+
className?: string | undefined;
|
|
561
|
+
themeShallow?: boolean | undefined;
|
|
562
|
+
id?: string | undefined;
|
|
563
|
+
tag?: string | undefined;
|
|
564
|
+
theme?: string | null | undefined;
|
|
565
|
+
group?: undefined;
|
|
566
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
567
|
+
componentName?: string | undefined;
|
|
568
|
+
tabIndex?: string | number | undefined;
|
|
569
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
570
|
+
disableOptimization?: boolean | undefined;
|
|
571
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
572
|
+
disableClassName?: boolean | undefined;
|
|
573
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
574
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
575
|
+
} & {
|
|
126
576
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
127
577
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
128
578
|
[x: string]: undefined;
|
|
129
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
579
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
580
|
+
target?: string | undefined;
|
|
581
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
582
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
583
|
+
dangerouslySetInnerHTML?: {
|
|
584
|
+
__html: string;
|
|
585
|
+
} | undefined;
|
|
586
|
+
children?: any;
|
|
587
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
588
|
+
disabled?: boolean | undefined;
|
|
589
|
+
className?: string | undefined;
|
|
590
|
+
themeShallow?: boolean | undefined;
|
|
591
|
+
id?: string | undefined;
|
|
592
|
+
tag?: string | undefined;
|
|
593
|
+
theme?: string | null | undefined;
|
|
594
|
+
group?: undefined;
|
|
595
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
596
|
+
componentName?: string | undefined;
|
|
597
|
+
tabIndex?: string | number | undefined;
|
|
598
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
599
|
+
disableOptimization?: boolean | undefined;
|
|
600
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
601
|
+
disableClassName?: boolean | undefined;
|
|
602
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
603
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
604
|
+
} & {
|
|
130
605
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
131
606
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
132
607
|
[x: string]: undefined;
|
|
@@ -135,21 +610,121 @@ declare const CollapsibleContent: import("@tamagui/web").ReactComponentWithRef<C
|
|
|
135
610
|
declare const Collapsible: React.ForwardRefExoticComponent<CollapsibleProps & {
|
|
136
611
|
__scopeCollapsible?: string | undefined;
|
|
137
612
|
} & React.RefAttributes<import("@tamagui/web").TamaguiElement>> & {
|
|
138
|
-
Trigger: import("@tamagui/web").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
613
|
+
Trigger: import("@tamagui/web").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
614
|
+
target?: string | undefined;
|
|
615
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
616
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
617
|
+
dangerouslySetInnerHTML?: {
|
|
618
|
+
__html: string;
|
|
619
|
+
} | undefined;
|
|
620
|
+
children?: any;
|
|
621
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
622
|
+
disabled?: boolean | undefined;
|
|
623
|
+
className?: string | undefined;
|
|
624
|
+
themeShallow?: boolean | undefined;
|
|
625
|
+
id?: string | undefined;
|
|
626
|
+
tag?: string | undefined;
|
|
627
|
+
theme?: string | null | undefined;
|
|
628
|
+
group?: undefined;
|
|
629
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
630
|
+
componentName?: string | undefined;
|
|
631
|
+
tabIndex?: string | number | undefined;
|
|
632
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
633
|
+
disableOptimization?: boolean | undefined;
|
|
634
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
635
|
+
disableClassName?: boolean | undefined;
|
|
636
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
637
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
638
|
+
} & {
|
|
139
639
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
140
|
-
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
640
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>> & import("@tamagui/web").MediaProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>> & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
641
|
+
target?: string | undefined;
|
|
642
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
643
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
644
|
+
dangerouslySetInnerHTML?: {
|
|
645
|
+
__html: string;
|
|
646
|
+
} | undefined;
|
|
647
|
+
children?: any;
|
|
648
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
649
|
+
disabled?: boolean | undefined;
|
|
650
|
+
className?: string | undefined;
|
|
651
|
+
themeShallow?: boolean | undefined;
|
|
652
|
+
id?: string | undefined;
|
|
653
|
+
tag?: string | undefined;
|
|
654
|
+
theme?: string | null | undefined;
|
|
655
|
+
group?: undefined;
|
|
656
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
657
|
+
componentName?: string | undefined;
|
|
658
|
+
tabIndex?: string | number | undefined;
|
|
659
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
660
|
+
disableOptimization?: boolean | undefined;
|
|
661
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
662
|
+
disableClassName?: boolean | undefined;
|
|
663
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
664
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
665
|
+
} & {
|
|
141
666
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
142
667
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
143
668
|
[x: string]: undefined;
|
|
144
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
669
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
670
|
+
target?: string | undefined;
|
|
671
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
672
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
673
|
+
dangerouslySetInnerHTML?: {
|
|
674
|
+
__html: string;
|
|
675
|
+
} | undefined;
|
|
676
|
+
children?: any;
|
|
677
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
678
|
+
disabled?: boolean | undefined;
|
|
679
|
+
className?: string | undefined;
|
|
680
|
+
themeShallow?: boolean | undefined;
|
|
681
|
+
id?: string | undefined;
|
|
682
|
+
tag?: string | undefined;
|
|
683
|
+
theme?: string | null | undefined;
|
|
684
|
+
group?: undefined;
|
|
685
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
686
|
+
componentName?: string | undefined;
|
|
687
|
+
tabIndex?: string | number | undefined;
|
|
688
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
689
|
+
disableOptimization?: boolean | undefined;
|
|
690
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
691
|
+
disableClassName?: boolean | undefined;
|
|
692
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
693
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
694
|
+
} & {
|
|
145
695
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
146
696
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
147
697
|
[x: string]: undefined;
|
|
148
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
698
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
699
|
+
target?: string | undefined;
|
|
700
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
701
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
702
|
+
dangerouslySetInnerHTML?: {
|
|
703
|
+
__html: string;
|
|
704
|
+
} | undefined;
|
|
705
|
+
children?: any;
|
|
706
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
707
|
+
disabled?: boolean | undefined;
|
|
708
|
+
className?: string | undefined;
|
|
709
|
+
themeShallow?: boolean | undefined;
|
|
710
|
+
id?: string | undefined;
|
|
711
|
+
tag?: string | undefined;
|
|
712
|
+
theme?: string | null | undefined;
|
|
713
|
+
group?: undefined;
|
|
714
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
715
|
+
componentName?: string | undefined;
|
|
716
|
+
tabIndex?: string | number | undefined;
|
|
717
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
718
|
+
disableOptimization?: boolean | undefined;
|
|
719
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
720
|
+
disableClassName?: boolean | undefined;
|
|
721
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
722
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
723
|
+
} & {
|
|
149
724
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
150
725
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
151
726
|
[x: string]: undefined;
|
|
152
|
-
}>>), "style" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof {
|
|
727
|
+
}>>), "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof {
|
|
153
728
|
columnGap?: import("@tamagui/web").SpaceValue | undefined;
|
|
154
729
|
contain?: import("csstype").Property.Contain | undefined;
|
|
155
730
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -167,17 +742,92 @@ declare const Collapsible: React.ForwardRefExoticComponent<CollapsibleProps & {
|
|
|
167
742
|
animation?: import("@tamagui/web").AnimationProp | null | undefined;
|
|
168
743
|
animateOnly?: string[] | undefined;
|
|
169
744
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
170
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | keyof import("@tamagui/web").TransformStyleProps | keyof import("@tamagui/web").
|
|
745
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | keyof import("@tamagui/web").TransformStyleProps | "theme" | "group" | "disabled" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/web").WebOnlyPressEvents | keyof import("@tamagui/web").PseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>>>>, import("@tamagui/web").TamaguiElement> & {
|
|
171
746
|
staticConfig: import("@tamagui/web").StaticConfig;
|
|
172
|
-
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
747
|
+
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
748
|
+
target?: string | undefined;
|
|
749
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
750
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
751
|
+
dangerouslySetInnerHTML?: {
|
|
752
|
+
__html: string;
|
|
753
|
+
} | undefined;
|
|
754
|
+
children?: any;
|
|
755
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
756
|
+
disabled?: boolean | undefined;
|
|
757
|
+
className?: string | undefined;
|
|
758
|
+
themeShallow?: boolean | undefined;
|
|
759
|
+
id?: string | undefined;
|
|
760
|
+
tag?: string | undefined;
|
|
761
|
+
theme?: string | null | undefined;
|
|
762
|
+
group?: undefined;
|
|
763
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
764
|
+
componentName?: string | undefined;
|
|
765
|
+
tabIndex?: string | number | undefined;
|
|
766
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
767
|
+
disableOptimization?: boolean | undefined;
|
|
768
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
769
|
+
disableClassName?: boolean | undefined;
|
|
770
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
771
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
772
|
+
} & {
|
|
173
773
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
174
774
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
175
775
|
[x: string]: undefined;
|
|
176
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
776
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
777
|
+
target?: string | undefined;
|
|
778
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
779
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
780
|
+
dangerouslySetInnerHTML?: {
|
|
781
|
+
__html: string;
|
|
782
|
+
} | undefined;
|
|
783
|
+
children?: any;
|
|
784
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
785
|
+
disabled?: boolean | undefined;
|
|
786
|
+
className?: string | undefined;
|
|
787
|
+
themeShallow?: boolean | undefined;
|
|
788
|
+
id?: string | undefined;
|
|
789
|
+
tag?: string | undefined;
|
|
790
|
+
theme?: string | null | undefined;
|
|
791
|
+
group?: undefined;
|
|
792
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
793
|
+
componentName?: string | undefined;
|
|
794
|
+
tabIndex?: string | number | undefined;
|
|
795
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
796
|
+
disableOptimization?: boolean | undefined;
|
|
797
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
798
|
+
disableClassName?: boolean | undefined;
|
|
799
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
800
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
801
|
+
} & {
|
|
177
802
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
178
803
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
179
804
|
[x: string]: undefined;
|
|
180
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
805
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
806
|
+
target?: string | undefined;
|
|
807
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
808
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
809
|
+
dangerouslySetInnerHTML?: {
|
|
810
|
+
__html: string;
|
|
811
|
+
} | undefined;
|
|
812
|
+
children?: any;
|
|
813
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
814
|
+
disabled?: boolean | undefined;
|
|
815
|
+
className?: string | undefined;
|
|
816
|
+
themeShallow?: boolean | undefined;
|
|
817
|
+
id?: string | undefined;
|
|
818
|
+
tag?: string | undefined;
|
|
819
|
+
theme?: string | null | undefined;
|
|
820
|
+
group?: undefined;
|
|
821
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
822
|
+
componentName?: string | undefined;
|
|
823
|
+
tabIndex?: string | number | undefined;
|
|
824
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
825
|
+
disableOptimization?: boolean | undefined;
|
|
826
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
827
|
+
disableClassName?: boolean | undefined;
|
|
828
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
829
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
830
|
+
} & {
|
|
181
831
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
182
832
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
183
833
|
[x: string]: undefined;
|
|
@@ -185,29 +835,179 @@ declare const Collapsible: React.ForwardRefExoticComponent<CollapsibleProps & {
|
|
|
185
835
|
};
|
|
186
836
|
Content: import("@tamagui/web").ReactComponentWithRef<CollapsibleContentProps & {
|
|
187
837
|
__scopeCollapsible?: string | undefined;
|
|
188
|
-
} & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
838
|
+
} & Omit<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
839
|
+
target?: string | undefined;
|
|
840
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
841
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
842
|
+
dangerouslySetInnerHTML?: {
|
|
843
|
+
__html: string;
|
|
844
|
+
} | undefined;
|
|
845
|
+
children?: any;
|
|
846
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
847
|
+
disabled?: boolean | undefined;
|
|
848
|
+
className?: string | undefined;
|
|
849
|
+
themeShallow?: boolean | undefined;
|
|
850
|
+
id?: string | undefined;
|
|
851
|
+
tag?: string | undefined;
|
|
852
|
+
theme?: string | null | undefined;
|
|
853
|
+
group?: undefined;
|
|
854
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
855
|
+
componentName?: string | undefined;
|
|
856
|
+
tabIndex?: string | number | undefined;
|
|
857
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
858
|
+
disableOptimization?: boolean | undefined;
|
|
859
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
860
|
+
disableClassName?: boolean | undefined;
|
|
861
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
862
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
863
|
+
} & {
|
|
189
864
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
190
865
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
191
866
|
[x: string]: undefined;
|
|
192
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
867
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
868
|
+
target?: string | undefined;
|
|
869
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
870
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
871
|
+
dangerouslySetInnerHTML?: {
|
|
872
|
+
__html: string;
|
|
873
|
+
} | undefined;
|
|
874
|
+
children?: any;
|
|
875
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
876
|
+
disabled?: boolean | undefined;
|
|
877
|
+
className?: string | undefined;
|
|
878
|
+
themeShallow?: boolean | undefined;
|
|
879
|
+
id?: string | undefined;
|
|
880
|
+
tag?: string | undefined;
|
|
881
|
+
theme?: string | null | undefined;
|
|
882
|
+
group?: undefined;
|
|
883
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
884
|
+
componentName?: string | undefined;
|
|
885
|
+
tabIndex?: string | number | undefined;
|
|
886
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
887
|
+
disableOptimization?: boolean | undefined;
|
|
888
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
889
|
+
disableClassName?: boolean | undefined;
|
|
890
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
891
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
892
|
+
} & {
|
|
193
893
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
194
894
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
195
895
|
[x: string]: undefined;
|
|
196
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
896
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
897
|
+
target?: string | undefined;
|
|
898
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
899
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
900
|
+
dangerouslySetInnerHTML?: {
|
|
901
|
+
__html: string;
|
|
902
|
+
} | undefined;
|
|
903
|
+
children?: any;
|
|
904
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
905
|
+
disabled?: boolean | undefined;
|
|
906
|
+
className?: string | undefined;
|
|
907
|
+
themeShallow?: boolean | undefined;
|
|
908
|
+
id?: string | undefined;
|
|
909
|
+
tag?: string | undefined;
|
|
910
|
+
theme?: string | null | undefined;
|
|
911
|
+
group?: undefined;
|
|
912
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
913
|
+
componentName?: string | undefined;
|
|
914
|
+
tabIndex?: string | number | undefined;
|
|
915
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
916
|
+
disableOptimization?: boolean | undefined;
|
|
917
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
918
|
+
disableClassName?: boolean | undefined;
|
|
919
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
920
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
921
|
+
} & {
|
|
197
922
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
198
923
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
199
924
|
[x: string]: undefined;
|
|
200
925
|
}>>), "__scopeCollapsible" | keyof CollapsibleContentProps>, import("@tamagui/web").TamaguiElement> & {
|
|
201
926
|
staticConfig: import("@tamagui/web").StaticConfig;
|
|
202
|
-
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
927
|
+
styleable: import("@tamagui/web").Styleable<StackProps | (Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
928
|
+
target?: string | undefined;
|
|
929
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
930
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
931
|
+
dangerouslySetInnerHTML?: {
|
|
932
|
+
__html: string;
|
|
933
|
+
} | undefined;
|
|
934
|
+
children?: any;
|
|
935
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
936
|
+
disabled?: boolean | undefined;
|
|
937
|
+
className?: string | undefined;
|
|
938
|
+
themeShallow?: boolean | undefined;
|
|
939
|
+
id?: string | undefined;
|
|
940
|
+
tag?: string | undefined;
|
|
941
|
+
theme?: string | null | undefined;
|
|
942
|
+
group?: undefined;
|
|
943
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
944
|
+
componentName?: string | undefined;
|
|
945
|
+
tabIndex?: string | number | undefined;
|
|
946
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
947
|
+
disableOptimization?: boolean | undefined;
|
|
948
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
949
|
+
disableClassName?: boolean | undefined;
|
|
950
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
951
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
952
|
+
} & {
|
|
203
953
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
204
954
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
205
955
|
[x: string]: undefined;
|
|
206
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
956
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
957
|
+
target?: string | undefined;
|
|
958
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
959
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
960
|
+
dangerouslySetInnerHTML?: {
|
|
961
|
+
__html: string;
|
|
962
|
+
} | undefined;
|
|
963
|
+
children?: any;
|
|
964
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
965
|
+
disabled?: boolean | undefined;
|
|
966
|
+
className?: string | undefined;
|
|
967
|
+
themeShallow?: boolean | undefined;
|
|
968
|
+
id?: string | undefined;
|
|
969
|
+
tag?: string | undefined;
|
|
970
|
+
theme?: string | null | undefined;
|
|
971
|
+
group?: undefined;
|
|
972
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
973
|
+
componentName?: string | undefined;
|
|
974
|
+
tabIndex?: string | number | undefined;
|
|
975
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
976
|
+
disableOptimization?: boolean | undefined;
|
|
977
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
978
|
+
disableClassName?: boolean | undefined;
|
|
979
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
980
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
981
|
+
} & {
|
|
207
982
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
208
983
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
209
984
|
[x: string]: undefined;
|
|
210
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
985
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | ("onLayout" | keyof import("react-native").GestureResponderHandlers) | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
986
|
+
target?: string | undefined;
|
|
987
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
988
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
989
|
+
dangerouslySetInnerHTML?: {
|
|
990
|
+
__html: string;
|
|
991
|
+
} | undefined;
|
|
992
|
+
children?: any;
|
|
993
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
994
|
+
disabled?: boolean | undefined;
|
|
995
|
+
className?: string | undefined;
|
|
996
|
+
themeShallow?: boolean | undefined;
|
|
997
|
+
id?: string | undefined;
|
|
998
|
+
tag?: string | undefined;
|
|
999
|
+
theme?: string | null | undefined;
|
|
1000
|
+
group?: undefined;
|
|
1001
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1002
|
+
componentName?: string | undefined;
|
|
1003
|
+
tabIndex?: string | number | undefined;
|
|
1004
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1005
|
+
disableOptimization?: boolean | undefined;
|
|
1006
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1007
|
+
disableClassName?: boolean | undefined;
|
|
1008
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1009
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1010
|
+
} & {
|
|
211
1011
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
212
1012
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & Omit<{}, string | number> & {
|
|
213
1013
|
[x: string]: undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Collapsible.d.ts","sourceRoot":"","sources":["../src/Collapsible.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AACjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAErD,OAAO,EACL,QAAQ,EACR,KAAK,EACL,UAAU,EAKX,MAAM,cAAc,CAAA;AACrB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAoB9B,UAAU,gBAAiB,SAAQ,UAAU;IAC3C,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,YAAY,CAAC,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,CAAA;CACnC;AAiDD,KAAK,uBAAuB,GAAG,QAAQ,CAAC,OAAO,KAAK,CAAC,CAAA;AAErD,QAAA,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"Collapsible.d.ts","sourceRoot":"","sources":["../src/Collapsible.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,oBAAoB,EAAE,MAAM,2BAA2B,CAAA;AACjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAErD,OAAO,EACL,QAAQ,EACR,KAAK,EACL,UAAU,EAKX,MAAM,cAAc,CAAA;AACrB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAoB9B,UAAU,gBAAiB,SAAQ,UAAU;IAC3C,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,YAAY,CAAC,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,CAAA;CACnC;AAiDD,KAAK,uBAAuB,GAAG,QAAQ,CAAC,OAAO,KAAK,CAAC,CAAA;AAErD,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG3B,CAAA;AAEF,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoBvB,CAAA;AAQD,UAAU,uBAAwB,SAAQ,oBAAoB,EAAE,mBAAmB;IACjF;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB;AAID,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE3B,CAAA;AAEF,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAetB,CAAA;AAUF,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGf,CAAA;AAEF,OAAO,EACL,WAAW,EACX,kBAAkB,EAClB,uBAAuB,EACvB,kBAAkB,EAClB,uBAAuB,GACxB,CAAA;AAED,YAAY,EAAE,uBAAuB,EAAE,gBAAgB,EAAE,uBAAuB,EAAE,CAAA"}
|