@tamagui/shapes 1.73.1 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/types/Circle.d.ts +8 -233
- package/types/Circle.d.ts.map +1 -1
- package/types/Square.d.ts +5 -155
- package/types/Square.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/shapes",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.74.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/stacks": "1.
|
|
35
|
-
"@tamagui/web": "1.
|
|
34
|
+
"@tamagui/stacks": "1.74.0",
|
|
35
|
+
"@tamagui/web": "1.74.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": "*"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@tamagui/build": "1.
|
|
41
|
+
"@tamagui/build": "1.74.0",
|
|
42
42
|
"react": "^18.2.0"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
package/types/Circle.d.ts
CHANGED
|
@@ -1,31 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { GetProps } from '@tamagui/web';
|
|
3
|
-
export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
4
|
-
target?: string | undefined;
|
|
5
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
6
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
7
|
-
dangerouslySetInnerHTML?: {
|
|
8
|
-
__html: string;
|
|
9
|
-
} | undefined;
|
|
10
|
-
children?: any;
|
|
11
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
12
|
-
disabled?: boolean | undefined;
|
|
13
|
-
className?: string | undefined;
|
|
14
|
-
themeShallow?: boolean | undefined;
|
|
15
|
-
id?: string | undefined;
|
|
16
|
-
tag?: string | undefined;
|
|
17
|
-
theme?: string | null | undefined;
|
|
18
|
-
group?: undefined;
|
|
19
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
20
|
-
componentName?: string | undefined;
|
|
21
|
-
tabIndex?: string | number | undefined;
|
|
22
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
23
|
-
disableOptimization?: boolean | undefined;
|
|
24
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
25
|
-
disableClassName?: boolean | undefined;
|
|
26
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
27
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
28
|
-
} & {
|
|
3
|
+
export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
29
4
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
30
5
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
31
6
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -44,32 +19,7 @@ export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<impor
|
|
|
44
19
|
readonly chromeless?: boolean | "all" | undefined;
|
|
45
20
|
}, "size"> & {
|
|
46
21
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
47
|
-
} & 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 & {
|
|
48
|
-
target?: string | undefined;
|
|
49
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
50
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
51
|
-
dangerouslySetInnerHTML?: {
|
|
52
|
-
__html: string;
|
|
53
|
-
} | undefined;
|
|
54
|
-
children?: any;
|
|
55
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
56
|
-
disabled?: boolean | undefined;
|
|
57
|
-
className?: string | undefined;
|
|
58
|
-
themeShallow?: boolean | undefined;
|
|
59
|
-
id?: string | undefined;
|
|
60
|
-
tag?: string | undefined;
|
|
61
|
-
theme?: string | null | undefined;
|
|
62
|
-
group?: undefined;
|
|
63
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
64
|
-
componentName?: string | undefined;
|
|
65
|
-
tabIndex?: string | number | undefined;
|
|
66
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
67
|
-
disableOptimization?: boolean | undefined;
|
|
68
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
69
|
-
disableClassName?: boolean | undefined;
|
|
70
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
71
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
72
|
-
} & {
|
|
22
|
+
} & 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 & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
73
23
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
74
24
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
75
25
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -88,32 +38,7 @@ export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<impor
|
|
|
88
38
|
readonly chromeless?: boolean | "all" | undefined;
|
|
89
39
|
}, "size"> & {
|
|
90
40
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
91
|
-
}>> & 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 & {
|
|
92
|
-
target?: string | undefined;
|
|
93
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
94
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
95
|
-
dangerouslySetInnerHTML?: {
|
|
96
|
-
__html: string;
|
|
97
|
-
} | undefined;
|
|
98
|
-
children?: any;
|
|
99
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
100
|
-
disabled?: boolean | undefined;
|
|
101
|
-
className?: string | undefined;
|
|
102
|
-
themeShallow?: boolean | undefined;
|
|
103
|
-
id?: string | undefined;
|
|
104
|
-
tag?: string | undefined;
|
|
105
|
-
theme?: string | null | undefined;
|
|
106
|
-
group?: undefined;
|
|
107
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
108
|
-
componentName?: string | undefined;
|
|
109
|
-
tabIndex?: string | number | undefined;
|
|
110
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
111
|
-
disableOptimization?: boolean | undefined;
|
|
112
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
113
|
-
disableClassName?: boolean | undefined;
|
|
114
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
115
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
116
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
117
42
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
118
43
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
119
44
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -132,32 +57,7 @@ export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<impor
|
|
|
132
57
|
readonly chromeless?: boolean | "all" | undefined;
|
|
133
58
|
}, "size"> & {
|
|
134
59
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
135
|
-
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
136
|
-
target?: string | undefined;
|
|
137
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
138
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
139
|
-
dangerouslySetInnerHTML?: {
|
|
140
|
-
__html: string;
|
|
141
|
-
} | undefined;
|
|
142
|
-
children?: any;
|
|
143
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
144
|
-
disabled?: boolean | undefined;
|
|
145
|
-
className?: string | undefined;
|
|
146
|
-
themeShallow?: boolean | undefined;
|
|
147
|
-
id?: string | undefined;
|
|
148
|
-
tag?: string | undefined;
|
|
149
|
-
theme?: string | null | undefined;
|
|
150
|
-
group?: undefined;
|
|
151
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
152
|
-
componentName?: string | undefined;
|
|
153
|
-
tabIndex?: string | number | undefined;
|
|
154
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
155
|
-
disableOptimization?: boolean | undefined;
|
|
156
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
157
|
-
disableClassName?: boolean | undefined;
|
|
158
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
159
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
160
|
-
} & {
|
|
60
|
+
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
161
61
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
162
62
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
163
63
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -178,32 +78,7 @@ export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<impor
|
|
|
178
78
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
179
79
|
}, string | number> & {
|
|
180
80
|
[x: string]: undefined;
|
|
181
|
-
} & 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 & {
|
|
182
|
-
target?: string | undefined;
|
|
183
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
184
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
185
|
-
dangerouslySetInnerHTML?: {
|
|
186
|
-
__html: string;
|
|
187
|
-
} | undefined;
|
|
188
|
-
children?: any;
|
|
189
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
190
|
-
disabled?: boolean | undefined;
|
|
191
|
-
className?: string | undefined;
|
|
192
|
-
themeShallow?: boolean | undefined;
|
|
193
|
-
id?: string | undefined;
|
|
194
|
-
tag?: string | undefined;
|
|
195
|
-
theme?: string | null | undefined;
|
|
196
|
-
group?: undefined;
|
|
197
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
198
|
-
componentName?: string | undefined;
|
|
199
|
-
tabIndex?: string | number | undefined;
|
|
200
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
201
|
-
disableOptimization?: boolean | undefined;
|
|
202
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
203
|
-
disableClassName?: boolean | undefined;
|
|
204
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
205
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
206
|
-
} & {
|
|
81
|
+
} & 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 & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
207
82
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
208
83
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
209
84
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -224,32 +99,7 @@ export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<impor
|
|
|
224
99
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
225
100
|
}, string | number> & {
|
|
226
101
|
[x: string]: undefined;
|
|
227
|
-
}>> & 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 & {
|
|
228
|
-
target?: string | undefined;
|
|
229
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
230
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
231
|
-
dangerouslySetInnerHTML?: {
|
|
232
|
-
__html: string;
|
|
233
|
-
} | undefined;
|
|
234
|
-
children?: any;
|
|
235
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
236
|
-
disabled?: boolean | undefined;
|
|
237
|
-
className?: string | undefined;
|
|
238
|
-
themeShallow?: boolean | undefined;
|
|
239
|
-
id?: string | undefined;
|
|
240
|
-
tag?: string | undefined;
|
|
241
|
-
theme?: string | null | undefined;
|
|
242
|
-
group?: undefined;
|
|
243
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
244
|
-
componentName?: string | undefined;
|
|
245
|
-
tabIndex?: string | number | undefined;
|
|
246
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
247
|
-
disableOptimization?: boolean | undefined;
|
|
248
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
249
|
-
disableClassName?: boolean | undefined;
|
|
250
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
251
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
252
|
-
} & {
|
|
102
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
253
103
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
254
104
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
255
105
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -270,32 +120,7 @@ export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<impor
|
|
|
270
120
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
271
121
|
}, string | number> & {
|
|
272
122
|
[x: string]: undefined;
|
|
273
|
-
}>>), import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
274
|
-
target?: string | undefined;
|
|
275
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
276
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
277
|
-
dangerouslySetInnerHTML?: {
|
|
278
|
-
__html: string;
|
|
279
|
-
} | undefined;
|
|
280
|
-
children?: any;
|
|
281
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
282
|
-
disabled?: boolean | undefined;
|
|
283
|
-
className?: string | undefined;
|
|
284
|
-
themeShallow?: boolean | undefined;
|
|
285
|
-
id?: string | undefined;
|
|
286
|
-
tag?: string | undefined;
|
|
287
|
-
theme?: string | null | undefined;
|
|
288
|
-
group?: undefined;
|
|
289
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
290
|
-
componentName?: string | undefined;
|
|
291
|
-
tabIndex?: string | number | undefined;
|
|
292
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
293
|
-
disableOptimization?: boolean | undefined;
|
|
294
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
295
|
-
disableClassName?: boolean | undefined;
|
|
296
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
297
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
298
|
-
} & {
|
|
123
|
+
}>>), import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
299
124
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
300
125
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
301
126
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -318,59 +143,9 @@ export declare const Circle: import("@tamagui/web").TamaguiComponent<(Omit<impor
|
|
|
318
143
|
[x: string]: undefined;
|
|
319
144
|
}), {
|
|
320
145
|
displayName: string | undefined;
|
|
321
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
322
|
-
target?: string | undefined;
|
|
323
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
324
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
325
|
-
dangerouslySetInnerHTML?: {
|
|
326
|
-
__html: string;
|
|
327
|
-
} | undefined;
|
|
328
|
-
children?: any;
|
|
329
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
330
|
-
disabled?: boolean | undefined;
|
|
331
|
-
className?: string | undefined;
|
|
332
|
-
themeShallow?: boolean | undefined;
|
|
333
|
-
id?: string | undefined;
|
|
334
|
-
tag?: string | undefined;
|
|
335
|
-
theme?: string | null | undefined;
|
|
336
|
-
group?: undefined;
|
|
337
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
338
|
-
componentName?: string | undefined;
|
|
339
|
-
tabIndex?: string | number | undefined;
|
|
340
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
341
|
-
disableOptimization?: boolean | undefined;
|
|
342
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
343
|
-
disableClassName?: boolean | undefined;
|
|
344
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
345
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
346
|
-
} & {
|
|
146
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
347
147
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
348
148
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
349
|
-
target?: string | undefined;
|
|
350
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
351
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
352
|
-
dangerouslySetInnerHTML?: {
|
|
353
|
-
__html: string;
|
|
354
|
-
} | undefined;
|
|
355
|
-
children?: any;
|
|
356
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
357
|
-
disabled?: boolean | undefined;
|
|
358
|
-
className?: string | undefined;
|
|
359
|
-
themeShallow?: boolean | undefined;
|
|
360
|
-
id?: string | undefined;
|
|
361
|
-
tag?: string | undefined;
|
|
362
|
-
theme?: string | null | undefined;
|
|
363
|
-
group?: undefined;
|
|
364
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
365
|
-
componentName?: string | undefined;
|
|
366
|
-
tabIndex?: string | number | undefined;
|
|
367
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
368
|
-
disableOptimization?: boolean | undefined;
|
|
369
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
370
|
-
disableClassName?: boolean | undefined;
|
|
371
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
372
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
373
|
-
} & {
|
|
374
149
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
375
150
|
};
|
|
376
151
|
__variantProps: {
|
package/types/Circle.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Circle.d.ts","sourceRoot":"","sources":["../src/Circle.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,QAAQ,EAAU,MAAM,cAAc,CAAA;AAI/C,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"Circle.d.ts","sourceRoot":"","sources":["../src/Circle.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,QAAQ,EAAU,MAAM,cAAc,CAAA;AAI/C,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGjB,CAAA;AAEF,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAA"}
|
package/types/Square.d.ts
CHANGED
|
@@ -1,31 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { GetProps } from '@tamagui/web';
|
|
3
|
-
export declare const Square: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
4
|
-
target?: string | undefined;
|
|
5
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
6
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
7
|
-
dangerouslySetInnerHTML?: {
|
|
8
|
-
__html: string;
|
|
9
|
-
} | undefined;
|
|
10
|
-
children?: any;
|
|
11
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
12
|
-
disabled?: boolean | undefined;
|
|
13
|
-
className?: string | undefined;
|
|
14
|
-
themeShallow?: boolean | undefined;
|
|
15
|
-
id?: string | undefined;
|
|
16
|
-
tag?: string | undefined;
|
|
17
|
-
theme?: string | null | undefined;
|
|
18
|
-
group?: undefined;
|
|
19
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
20
|
-
componentName?: string | undefined;
|
|
21
|
-
tabIndex?: string | number | undefined;
|
|
22
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
23
|
-
disableOptimization?: boolean | undefined;
|
|
24
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
25
|
-
disableClassName?: boolean | undefined;
|
|
26
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
27
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
28
|
-
} & {
|
|
3
|
+
export declare const Square: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
29
4
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
30
5
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
31
6
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -44,32 +19,7 @@ export declare const Square: import("@tamagui/web").TamaguiComponent<Omit<import
|
|
|
44
19
|
readonly chromeless?: boolean | "all" | undefined;
|
|
45
20
|
}, "size"> & {
|
|
46
21
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
47
|
-
} & 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 & {
|
|
48
|
-
target?: string | undefined;
|
|
49
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
50
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
51
|
-
dangerouslySetInnerHTML?: {
|
|
52
|
-
__html: string;
|
|
53
|
-
} | undefined;
|
|
54
|
-
children?: any;
|
|
55
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
56
|
-
disabled?: boolean | undefined;
|
|
57
|
-
className?: string | undefined;
|
|
58
|
-
themeShallow?: boolean | undefined;
|
|
59
|
-
id?: string | undefined;
|
|
60
|
-
tag?: string | undefined;
|
|
61
|
-
theme?: string | null | undefined;
|
|
62
|
-
group?: undefined;
|
|
63
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
64
|
-
componentName?: string | undefined;
|
|
65
|
-
tabIndex?: string | number | undefined;
|
|
66
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
67
|
-
disableOptimization?: boolean | undefined;
|
|
68
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
69
|
-
disableClassName?: boolean | undefined;
|
|
70
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
71
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
72
|
-
} & {
|
|
22
|
+
} & 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 & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
73
23
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
74
24
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
75
25
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -88,32 +38,7 @@ export declare const Square: import("@tamagui/web").TamaguiComponent<Omit<import
|
|
|
88
38
|
readonly chromeless?: boolean | "all" | undefined;
|
|
89
39
|
}, "size"> & {
|
|
90
40
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
91
|
-
}>> & 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 & {
|
|
92
|
-
target?: string | undefined;
|
|
93
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
94
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
95
|
-
dangerouslySetInnerHTML?: {
|
|
96
|
-
__html: string;
|
|
97
|
-
} | undefined;
|
|
98
|
-
children?: any;
|
|
99
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
100
|
-
disabled?: boolean | undefined;
|
|
101
|
-
className?: string | undefined;
|
|
102
|
-
themeShallow?: boolean | undefined;
|
|
103
|
-
id?: string | undefined;
|
|
104
|
-
tag?: string | undefined;
|
|
105
|
-
theme?: string | null | undefined;
|
|
106
|
-
group?: undefined;
|
|
107
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
108
|
-
componentName?: string | undefined;
|
|
109
|
-
tabIndex?: string | number | undefined;
|
|
110
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
111
|
-
disableOptimization?: boolean | undefined;
|
|
112
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
113
|
-
disableClassName?: boolean | undefined;
|
|
114
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
115
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
116
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
117
42
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
118
43
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
119
44
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -132,32 +57,7 @@ export declare const Square: import("@tamagui/web").TamaguiComponent<Omit<import
|
|
|
132
57
|
readonly chromeless?: boolean | "all" | undefined;
|
|
133
58
|
}, "size"> & {
|
|
134
59
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
135
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
136
|
-
target?: string | undefined;
|
|
137
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
138
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
139
|
-
dangerouslySetInnerHTML?: {
|
|
140
|
-
__html: string;
|
|
141
|
-
} | undefined;
|
|
142
|
-
children?: any;
|
|
143
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
144
|
-
disabled?: boolean | undefined;
|
|
145
|
-
className?: string | undefined;
|
|
146
|
-
themeShallow?: boolean | undefined;
|
|
147
|
-
id?: string | undefined;
|
|
148
|
-
tag?: string | undefined;
|
|
149
|
-
theme?: string | null | undefined;
|
|
150
|
-
group?: undefined;
|
|
151
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
152
|
-
componentName?: string | undefined;
|
|
153
|
-
tabIndex?: string | number | undefined;
|
|
154
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
155
|
-
disableOptimization?: boolean | undefined;
|
|
156
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
157
|
-
disableClassName?: boolean | undefined;
|
|
158
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
159
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
160
|
-
} & {
|
|
60
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
161
61
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
162
62
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
163
63
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -178,59 +78,9 @@ export declare const Square: import("@tamagui/web").TamaguiComponent<Omit<import
|
|
|
178
78
|
readonly size?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
179
79
|
}, {
|
|
180
80
|
displayName: string | undefined;
|
|
181
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
182
|
-
target?: string | undefined;
|
|
183
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
184
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
185
|
-
dangerouslySetInnerHTML?: {
|
|
186
|
-
__html: string;
|
|
187
|
-
} | undefined;
|
|
188
|
-
children?: any;
|
|
189
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
190
|
-
disabled?: boolean | undefined;
|
|
191
|
-
className?: string | undefined;
|
|
192
|
-
themeShallow?: boolean | undefined;
|
|
193
|
-
id?: string | undefined;
|
|
194
|
-
tag?: string | undefined;
|
|
195
|
-
theme?: string | null | undefined;
|
|
196
|
-
group?: undefined;
|
|
197
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
198
|
-
componentName?: string | undefined;
|
|
199
|
-
tabIndex?: string | number | undefined;
|
|
200
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
201
|
-
disableOptimization?: boolean | undefined;
|
|
202
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
203
|
-
disableClassName?: boolean | undefined;
|
|
204
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
205
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
206
|
-
} & {
|
|
81
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & import("@tamagui/web").TamaguiComponentPropsBaseBase & {
|
|
207
82
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
208
83
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
209
|
-
target?: string | undefined;
|
|
210
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
211
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
212
|
-
dangerouslySetInnerHTML?: {
|
|
213
|
-
__html: string;
|
|
214
|
-
} | undefined;
|
|
215
|
-
children?: any;
|
|
216
|
-
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
217
|
-
disabled?: boolean | undefined;
|
|
218
|
-
className?: string | undefined;
|
|
219
|
-
themeShallow?: boolean | undefined;
|
|
220
|
-
id?: string | undefined;
|
|
221
|
-
tag?: string | undefined;
|
|
222
|
-
theme?: string | null | undefined;
|
|
223
|
-
group?: undefined;
|
|
224
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
225
|
-
componentName?: string | undefined;
|
|
226
|
-
tabIndex?: string | number | undefined;
|
|
227
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
228
|
-
disableOptimization?: boolean | undefined;
|
|
229
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
230
|
-
disableClassName?: boolean | undefined;
|
|
231
|
-
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
232
|
-
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
233
|
-
} & {
|
|
234
84
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
235
85
|
};
|
|
236
86
|
__variantProps: {
|
package/types/Square.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Square.d.ts","sourceRoot":"","sources":["../src/Square.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,QAAQ,EAAU,MAAM,cAAc,CAAA;AAI/C,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"Square.d.ts","sourceRoot":"","sources":["../src/Square.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,QAAQ,EAAU,MAAM,cAAc,CAAA;AAI/C,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWjB,CAAA;AAEF,MAAM,MAAM,WAAW,GAAG,QAAQ,CAAC,OAAO,MAAM,CAAC,CAAA"}
|