@tamagui/button 1.101.0 → 1.101.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -9
- package/types/Button.d.ts +66 -80
- package/types/Button.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/button",
|
|
3
|
-
"version": "1.101.
|
|
3
|
+
"version": "1.101.2",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/font-size": "1.101.
|
|
36
|
-
"@tamagui/get-button-sized": "1.101.
|
|
37
|
-
"@tamagui/helpers": "1.101.
|
|
38
|
-
"@tamagui/helpers-tamagui": "1.101.
|
|
39
|
-
"@tamagui/stacks": "1.101.
|
|
40
|
-
"@tamagui/text": "1.101.
|
|
41
|
-
"@tamagui/web": "1.101.
|
|
35
|
+
"@tamagui/font-size": "1.101.2",
|
|
36
|
+
"@tamagui/get-button-sized": "1.101.2",
|
|
37
|
+
"@tamagui/helpers": "1.101.2",
|
|
38
|
+
"@tamagui/helpers-tamagui": "1.101.2",
|
|
39
|
+
"@tamagui/stacks": "1.101.2",
|
|
40
|
+
"@tamagui/text": "1.101.2",
|
|
41
|
+
"@tamagui/web": "1.101.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@tamagui/build": "1.101.
|
|
44
|
+
"@tamagui/build": "1.101.2",
|
|
45
45
|
"react": "^18.2.0",
|
|
46
46
|
"vitest": "^0.34.3"
|
|
47
47
|
},
|
package/types/Button.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { TextContextStyles, TextParentStyles } from '@tamagui/text';
|
|
2
2
|
import type { FontSizeTokens, GetProps, SizeTokens, ThemeableProps } from '@tamagui/web';
|
|
3
3
|
import type { FunctionComponent } from 'react';
|
|
4
|
+
type ButtonVariant = 'outlined';
|
|
4
5
|
export declare const ButtonContext: import("@tamagui/web").StyledContext<Partial<TextContextStyles & {
|
|
5
6
|
size: SizeTokens;
|
|
6
|
-
variant?:
|
|
7
|
+
variant?: ButtonVariant;
|
|
7
8
|
}>>;
|
|
8
9
|
type ButtonIconProps = {
|
|
9
10
|
color?: any;
|
|
@@ -52,10 +53,10 @@ declare const ButtonFrame: import("@tamagui/web").TamaguiComponent<import("@tama
|
|
|
52
53
|
fullscreen?: boolean | undefined;
|
|
53
54
|
circular?: boolean | undefined;
|
|
54
55
|
inset?: number | SizeTokens | {
|
|
55
|
-
top?: number
|
|
56
|
-
bottom?: number
|
|
57
|
-
left?: number
|
|
58
|
-
right?: number
|
|
56
|
+
top?: number;
|
|
57
|
+
bottom?: number;
|
|
58
|
+
left?: number;
|
|
59
|
+
right?: number;
|
|
59
60
|
} | undefined;
|
|
60
61
|
focusTheme?: boolean | undefined;
|
|
61
62
|
elevate?: boolean | undefined;
|
|
@@ -91,10 +92,10 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
91
92
|
fullscreen?: boolean | undefined;
|
|
92
93
|
circular?: boolean | undefined;
|
|
93
94
|
inset?: number | SizeTokens | {
|
|
94
|
-
top?: number
|
|
95
|
-
bottom?: number
|
|
96
|
-
left?: number
|
|
97
|
-
right?: number
|
|
95
|
+
top?: number;
|
|
96
|
+
bottom?: number;
|
|
97
|
+
left?: number;
|
|
98
|
+
right?: number;
|
|
98
99
|
} | undefined;
|
|
99
100
|
focusTheme?: boolean | undefined;
|
|
100
101
|
elevate?: boolean | undefined;
|
|
@@ -103,38 +104,35 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
103
104
|
padded?: boolean | undefined;
|
|
104
105
|
chromeless?: boolean | "all" | undefined;
|
|
105
106
|
}>, keyof TextContextStyles | "unstyled" | "textProps" | "noTextWrap" | keyof ThemeableProps | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace"> & TextContextStyles & {
|
|
106
|
-
textProps?: Partial<import("@tamagui/
|
|
107
|
-
|
|
108
|
-
unstyled?: boolean | undefined;
|
|
109
|
-
}>> | undefined;
|
|
110
|
-
noTextWrap?: boolean | undefined;
|
|
107
|
+
textProps?: Partial<import("@tamagui/text").SizableTextProps>;
|
|
108
|
+
noTextWrap?: boolean;
|
|
111
109
|
} & ThemeableProps & {
|
|
112
110
|
/**
|
|
113
111
|
* add icon before, passes color and size automatically if Component
|
|
114
112
|
*/
|
|
115
|
-
icon?: IconProp
|
|
113
|
+
icon?: IconProp;
|
|
116
114
|
/**
|
|
117
115
|
* add icon after, passes color and size automatically if Component
|
|
118
116
|
*/
|
|
119
|
-
iconAfter?: IconProp
|
|
117
|
+
iconAfter?: IconProp;
|
|
120
118
|
/**
|
|
121
119
|
* adjust icon relative to size
|
|
122
120
|
*
|
|
123
121
|
* @default 1
|
|
124
122
|
*/
|
|
125
|
-
scaleIcon?: number
|
|
123
|
+
scaleIcon?: number;
|
|
126
124
|
/**
|
|
127
125
|
* make the spacing elements flex
|
|
128
126
|
*/
|
|
129
|
-
spaceFlex?: number | boolean
|
|
127
|
+
spaceFlex?: number | boolean;
|
|
130
128
|
/**
|
|
131
129
|
* adjust internal space relative to icon size
|
|
132
130
|
*/
|
|
133
|
-
scaleSpace?: number
|
|
131
|
+
scaleSpace?: number;
|
|
134
132
|
/**
|
|
135
133
|
* remove default styles
|
|
136
134
|
*/
|
|
137
|
-
unstyled?: boolean
|
|
135
|
+
unstyled?: boolean;
|
|
138
136
|
} & import("react").RefAttributes<import("@tamagui/web").TamaguiElement>> & import("@tamagui/web").StaticComponentObject<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
139
137
|
size?: number | SizeTokens | undefined;
|
|
140
138
|
variant?: "outlined" | undefined;
|
|
@@ -148,10 +146,10 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
148
146
|
fullscreen?: boolean | undefined;
|
|
149
147
|
circular?: boolean | undefined;
|
|
150
148
|
inset?: number | SizeTokens | {
|
|
151
|
-
top?: number
|
|
152
|
-
bottom?: number
|
|
153
|
-
left?: number
|
|
154
|
-
right?: number
|
|
149
|
+
top?: number;
|
|
150
|
+
bottom?: number;
|
|
151
|
+
left?: number;
|
|
152
|
+
right?: number;
|
|
155
153
|
} | undefined;
|
|
156
154
|
focusTheme?: boolean | undefined;
|
|
157
155
|
elevate?: boolean | undefined;
|
|
@@ -160,71 +158,65 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
160
158
|
padded?: boolean | undefined;
|
|
161
159
|
chromeless?: boolean | "all" | undefined;
|
|
162
160
|
}>, keyof TextContextStyles | "unstyled" | "textProps" | "noTextWrap" | keyof ThemeableProps | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace"> & TextContextStyles & {
|
|
163
|
-
textProps?: Partial<import("@tamagui/
|
|
164
|
-
|
|
165
|
-
unstyled?: boolean | undefined;
|
|
166
|
-
}>> | undefined;
|
|
167
|
-
noTextWrap?: boolean | undefined;
|
|
161
|
+
textProps?: Partial<import("@tamagui/text").SizableTextProps>;
|
|
162
|
+
noTextWrap?: boolean;
|
|
168
163
|
} & ThemeableProps & {
|
|
169
164
|
/**
|
|
170
165
|
* add icon before, passes color and size automatically if Component
|
|
171
166
|
*/
|
|
172
|
-
icon?: IconProp
|
|
167
|
+
icon?: IconProp;
|
|
173
168
|
/**
|
|
174
169
|
* add icon after, passes color and size automatically if Component
|
|
175
170
|
*/
|
|
176
|
-
iconAfter?: IconProp
|
|
171
|
+
iconAfter?: IconProp;
|
|
177
172
|
/**
|
|
178
173
|
* adjust icon relative to size
|
|
179
174
|
*
|
|
180
175
|
* @default 1
|
|
181
176
|
*/
|
|
182
|
-
scaleIcon?: number
|
|
177
|
+
scaleIcon?: number;
|
|
183
178
|
/**
|
|
184
179
|
* make the spacing elements flex
|
|
185
180
|
*/
|
|
186
|
-
spaceFlex?: number | boolean
|
|
181
|
+
spaceFlex?: number | boolean;
|
|
187
182
|
/**
|
|
188
183
|
* adjust internal space relative to icon size
|
|
189
184
|
*/
|
|
190
|
-
scaleSpace?: number
|
|
185
|
+
scaleSpace?: number;
|
|
191
186
|
/**
|
|
192
187
|
* remove default styles
|
|
193
188
|
*/
|
|
194
|
-
unstyled?: boolean
|
|
189
|
+
unstyled?: boolean;
|
|
195
190
|
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & TextContextStyles & {
|
|
196
|
-
textProps?: Partial<import("@tamagui/
|
|
197
|
-
|
|
198
|
-
unstyled?: boolean | undefined;
|
|
199
|
-
}>> | undefined;
|
|
200
|
-
noTextWrap?: boolean | undefined;
|
|
191
|
+
textProps?: Partial<import("@tamagui/text").SizableTextProps>;
|
|
192
|
+
noTextWrap?: boolean;
|
|
201
193
|
} & ThemeableProps & {
|
|
202
194
|
/**
|
|
203
195
|
* add icon before, passes color and size automatically if Component
|
|
204
196
|
*/
|
|
205
|
-
icon?: IconProp
|
|
197
|
+
icon?: IconProp;
|
|
206
198
|
/**
|
|
207
199
|
* add icon after, passes color and size automatically if Component
|
|
208
200
|
*/
|
|
209
|
-
iconAfter?: IconProp
|
|
201
|
+
iconAfter?: IconProp;
|
|
210
202
|
/**
|
|
211
203
|
* adjust icon relative to size
|
|
212
204
|
*
|
|
213
205
|
* @default 1
|
|
214
206
|
*/
|
|
215
|
-
scaleIcon?: number
|
|
207
|
+
scaleIcon?: number;
|
|
216
208
|
/**
|
|
217
209
|
* make the spacing elements flex
|
|
218
210
|
*/
|
|
219
|
-
spaceFlex?: number | boolean
|
|
211
|
+
spaceFlex?: number | boolean;
|
|
220
212
|
/**
|
|
221
213
|
* adjust internal space relative to icon size
|
|
222
214
|
*/
|
|
223
|
-
scaleSpace?: number
|
|
215
|
+
scaleSpace?: number;
|
|
224
216
|
/**
|
|
225
217
|
* remove default styles
|
|
226
218
|
*/
|
|
227
|
-
unstyled?: boolean
|
|
219
|
+
unstyled?: boolean;
|
|
228
220
|
}, import("@tamagui/web").StackStyleBase, {
|
|
229
221
|
size?: number | SizeTokens | undefined;
|
|
230
222
|
variant?: "outlined" | undefined;
|
|
@@ -238,10 +230,10 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
238
230
|
fullscreen?: boolean | undefined;
|
|
239
231
|
circular?: boolean | undefined;
|
|
240
232
|
inset?: number | SizeTokens | {
|
|
241
|
-
top?: number
|
|
242
|
-
bottom?: number
|
|
243
|
-
left?: number
|
|
244
|
-
right?: number
|
|
233
|
+
top?: number;
|
|
234
|
+
bottom?: number;
|
|
235
|
+
left?: number;
|
|
236
|
+
right?: number;
|
|
245
237
|
} | undefined;
|
|
246
238
|
focusTheme?: boolean | undefined;
|
|
247
239
|
elevate?: boolean | undefined;
|
|
@@ -263,10 +255,10 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
263
255
|
fullscreen?: boolean | undefined;
|
|
264
256
|
circular?: boolean | undefined;
|
|
265
257
|
inset?: number | SizeTokens | {
|
|
266
|
-
top?: number
|
|
267
|
-
bottom?: number
|
|
268
|
-
left?: number
|
|
269
|
-
right?: number
|
|
258
|
+
top?: number;
|
|
259
|
+
bottom?: number;
|
|
260
|
+
left?: number;
|
|
261
|
+
right?: number;
|
|
270
262
|
} | undefined;
|
|
271
263
|
focusTheme?: boolean | undefined;
|
|
272
264
|
elevate?: boolean | undefined;
|
|
@@ -275,71 +267,65 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
275
267
|
padded?: boolean | undefined;
|
|
276
268
|
chromeless?: boolean | "all" | undefined;
|
|
277
269
|
}>, keyof TextContextStyles | "unstyled" | "textProps" | "noTextWrap" | keyof ThemeableProps | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace"> & TextContextStyles & {
|
|
278
|
-
textProps?: Partial<import("@tamagui/
|
|
279
|
-
|
|
280
|
-
unstyled?: boolean | undefined;
|
|
281
|
-
}>> | undefined;
|
|
282
|
-
noTextWrap?: boolean | undefined;
|
|
270
|
+
textProps?: Partial<import("@tamagui/text").SizableTextProps>;
|
|
271
|
+
noTextWrap?: boolean;
|
|
283
272
|
} & ThemeableProps & {
|
|
284
273
|
/**
|
|
285
274
|
* add icon before, passes color and size automatically if Component
|
|
286
275
|
*/
|
|
287
|
-
icon?: IconProp
|
|
276
|
+
icon?: IconProp;
|
|
288
277
|
/**
|
|
289
278
|
* add icon after, passes color and size automatically if Component
|
|
290
279
|
*/
|
|
291
|
-
iconAfter?: IconProp
|
|
280
|
+
iconAfter?: IconProp;
|
|
292
281
|
/**
|
|
293
282
|
* adjust icon relative to size
|
|
294
283
|
*
|
|
295
284
|
* @default 1
|
|
296
285
|
*/
|
|
297
|
-
scaleIcon?: number
|
|
286
|
+
scaleIcon?: number;
|
|
298
287
|
/**
|
|
299
288
|
* make the spacing elements flex
|
|
300
289
|
*/
|
|
301
|
-
spaceFlex?: number | boolean
|
|
290
|
+
spaceFlex?: number | boolean;
|
|
302
291
|
/**
|
|
303
292
|
* adjust internal space relative to icon size
|
|
304
293
|
*/
|
|
305
|
-
scaleSpace?: number
|
|
294
|
+
scaleSpace?: number;
|
|
306
295
|
/**
|
|
307
296
|
* remove default styles
|
|
308
297
|
*/
|
|
309
|
-
unstyled?: boolean
|
|
298
|
+
unstyled?: boolean;
|
|
310
299
|
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & TextContextStyles & {
|
|
311
|
-
textProps?: Partial<import("@tamagui/
|
|
312
|
-
|
|
313
|
-
unstyled?: boolean | undefined;
|
|
314
|
-
}>> | undefined;
|
|
315
|
-
noTextWrap?: boolean | undefined;
|
|
300
|
+
textProps?: Partial<import("@tamagui/text").SizableTextProps>;
|
|
301
|
+
noTextWrap?: boolean;
|
|
316
302
|
} & ThemeableProps & {
|
|
317
303
|
/**
|
|
318
304
|
* add icon before, passes color and size automatically if Component
|
|
319
305
|
*/
|
|
320
|
-
icon?: IconProp
|
|
306
|
+
icon?: IconProp;
|
|
321
307
|
/**
|
|
322
308
|
* add icon after, passes color and size automatically if Component
|
|
323
309
|
*/
|
|
324
|
-
iconAfter?: IconProp
|
|
310
|
+
iconAfter?: IconProp;
|
|
325
311
|
/**
|
|
326
312
|
* adjust icon relative to size
|
|
327
313
|
*
|
|
328
314
|
* @default 1
|
|
329
315
|
*/
|
|
330
|
-
scaleIcon?: number
|
|
316
|
+
scaleIcon?: number;
|
|
331
317
|
/**
|
|
332
318
|
* make the spacing elements flex
|
|
333
319
|
*/
|
|
334
|
-
spaceFlex?: number | boolean
|
|
320
|
+
spaceFlex?: number | boolean;
|
|
335
321
|
/**
|
|
336
322
|
* adjust internal space relative to icon size
|
|
337
323
|
*/
|
|
338
|
-
scaleSpace?: number
|
|
324
|
+
scaleSpace?: number;
|
|
339
325
|
/**
|
|
340
326
|
* remove default styles
|
|
341
327
|
*/
|
|
342
|
-
unstyled?: boolean
|
|
328
|
+
unstyled?: boolean;
|
|
343
329
|
}, import("@tamagui/web").StackStyleBase, {
|
|
344
330
|
size?: number | SizeTokens | undefined;
|
|
345
331
|
variant?: "outlined" | undefined;
|
|
@@ -353,10 +339,10 @@ declare const Button: import("react").ForwardRefExoticComponent<Omit<import("@ta
|
|
|
353
339
|
fullscreen?: boolean | undefined;
|
|
354
340
|
circular?: boolean | undefined;
|
|
355
341
|
inset?: number | SizeTokens | {
|
|
356
|
-
top?: number
|
|
357
|
-
bottom?: number
|
|
358
|
-
left?: number
|
|
359
|
-
right?: number
|
|
342
|
+
top?: number;
|
|
343
|
+
bottom?: number;
|
|
344
|
+
left?: number;
|
|
345
|
+
right?: number;
|
|
360
346
|
} | undefined;
|
|
361
347
|
focusTheme?: boolean | undefined;
|
|
362
348
|
elevate?: boolean | undefined;
|
package/types/Button.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../src/Button.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAA;AAExE,OAAO,KAAK,EAAE,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAQxF,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../src/Button.tsx"],"names":[],"mappings":"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"}
|