@tamagui/toast 1.120.1 → 1.121.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 +16 -16
- package/types/Toast.d.ts +40 -40
- package/types/Toast.d.ts.map +1 -1
- package/types/ToastImpl.d.ts +9 -9
- package/types/ToastViewport.d.ts +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/toast",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.121.0",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"main": "dist/cjs",
|
|
@@ -36,26 +36,26 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@tamagui/animate-presence": "1.
|
|
40
|
-
"@tamagui/compose-refs": "1.
|
|
41
|
-
"@tamagui/constants": "1.
|
|
42
|
-
"@tamagui/core": "1.
|
|
43
|
-
"@tamagui/create-context": "1.
|
|
44
|
-
"@tamagui/dismissable": "1.
|
|
45
|
-
"@tamagui/helpers": "1.
|
|
46
|
-
"@tamagui/polyfill-dev": "1.
|
|
47
|
-
"@tamagui/portal": "1.
|
|
48
|
-
"@tamagui/stacks": "1.
|
|
49
|
-
"@tamagui/start-transition": "1.
|
|
50
|
-
"@tamagui/text": "1.
|
|
51
|
-
"@tamagui/use-controllable-state": "1.
|
|
52
|
-
"@tamagui/visually-hidden": "1.
|
|
39
|
+
"@tamagui/animate-presence": "1.121.0",
|
|
40
|
+
"@tamagui/compose-refs": "1.121.0",
|
|
41
|
+
"@tamagui/constants": "1.121.0",
|
|
42
|
+
"@tamagui/core": "1.121.0",
|
|
43
|
+
"@tamagui/create-context": "1.121.0",
|
|
44
|
+
"@tamagui/dismissable": "1.121.0",
|
|
45
|
+
"@tamagui/helpers": "1.121.0",
|
|
46
|
+
"@tamagui/polyfill-dev": "1.121.0",
|
|
47
|
+
"@tamagui/portal": "1.121.0",
|
|
48
|
+
"@tamagui/stacks": "1.121.0",
|
|
49
|
+
"@tamagui/start-transition": "1.121.0",
|
|
50
|
+
"@tamagui/text": "1.121.0",
|
|
51
|
+
"@tamagui/use-controllable-state": "1.121.0",
|
|
52
|
+
"@tamagui/visually-hidden": "1.121.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"react": "*"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@tamagui/build": "1.
|
|
58
|
+
"@tamagui/build": "1.121.0",
|
|
59
59
|
"burnt": "^0.12.2",
|
|
60
60
|
"react": "*"
|
|
61
61
|
},
|
package/types/Toast.d.ts
CHANGED
|
@@ -28,15 +28,15 @@ type ToastActionProps = ToastCloseProps & {
|
|
|
28
28
|
};
|
|
29
29
|
declare const ToastCloseFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
30
30
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
31
|
-
transparent?: boolean | undefined;
|
|
32
|
-
fullscreen?: boolean | undefined;
|
|
33
|
-
circular?: boolean | undefined;
|
|
34
31
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
35
32
|
top?: number;
|
|
36
33
|
bottom?: number;
|
|
37
34
|
left?: number;
|
|
38
35
|
right?: number;
|
|
39
|
-
} | undefined;
|
|
36
|
+
} | null | undefined;
|
|
37
|
+
transparent?: boolean | undefined;
|
|
38
|
+
fullscreen?: boolean | undefined;
|
|
39
|
+
circular?: boolean | undefined;
|
|
40
40
|
hoverTheme?: boolean | undefined;
|
|
41
41
|
pressTheme?: boolean | undefined;
|
|
42
42
|
focusTheme?: boolean | undefined;
|
|
@@ -51,13 +51,13 @@ type ToastCloseFrameProps = GetProps<typeof ToastCloseFrame>;
|
|
|
51
51
|
type ToastCloseProps = ToastCloseFrameProps & {};
|
|
52
52
|
declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
53
53
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
54
|
-
transparent?: boolean | undefined;
|
|
55
54
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
56
55
|
top?: number;
|
|
57
56
|
bottom?: number;
|
|
58
57
|
left?: number;
|
|
59
58
|
right?: number;
|
|
60
|
-
} | undefined;
|
|
59
|
+
} | null | undefined;
|
|
60
|
+
transparent?: boolean | undefined;
|
|
61
61
|
circular?: boolean | undefined;
|
|
62
62
|
fullscreen?: boolean | undefined;
|
|
63
63
|
unstyled?: boolean | undefined;
|
|
@@ -72,13 +72,13 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
72
72
|
chromeless?: boolean | "all" | undefined;
|
|
73
73
|
}>, keyof ToastExtraProps> & ToastExtraProps & React.RefAttributes<TamaguiElement>> & import("@tamagui/core").StaticComponentObject<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
74
74
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
75
|
-
transparent?: boolean | undefined;
|
|
76
75
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
77
76
|
top?: number;
|
|
78
77
|
bottom?: number;
|
|
79
78
|
left?: number;
|
|
80
79
|
right?: number;
|
|
81
|
-
} | undefined;
|
|
80
|
+
} | null | undefined;
|
|
81
|
+
transparent?: boolean | undefined;
|
|
82
82
|
circular?: boolean | undefined;
|
|
83
83
|
fullscreen?: boolean | undefined;
|
|
84
84
|
unstyled?: boolean | undefined;
|
|
@@ -93,13 +93,13 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
93
93
|
chromeless?: boolean | "all" | undefined;
|
|
94
94
|
}>, keyof ToastExtraProps> & ToastExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
95
95
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
96
|
-
transparent?: boolean | undefined;
|
|
97
96
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
98
97
|
top?: number;
|
|
99
98
|
bottom?: number;
|
|
100
99
|
left?: number;
|
|
101
100
|
right?: number;
|
|
102
|
-
} | undefined;
|
|
101
|
+
} | null | undefined;
|
|
102
|
+
transparent?: boolean | undefined;
|
|
103
103
|
circular?: boolean | undefined;
|
|
104
104
|
fullscreen?: boolean | undefined;
|
|
105
105
|
unstyled?: boolean | undefined;
|
|
@@ -115,13 +115,13 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
115
115
|
}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig" | "extractable" | "styleable"> & {
|
|
116
116
|
__tama: [Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
117
117
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
118
|
-
transparent?: boolean | undefined;
|
|
119
118
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
120
119
|
top?: number;
|
|
121
120
|
bottom?: number;
|
|
122
121
|
left?: number;
|
|
123
122
|
right?: number;
|
|
124
|
-
} | undefined;
|
|
123
|
+
} | null | undefined;
|
|
124
|
+
transparent?: boolean | undefined;
|
|
125
125
|
circular?: boolean | undefined;
|
|
126
126
|
fullscreen?: boolean | undefined;
|
|
127
127
|
unstyled?: boolean | undefined;
|
|
@@ -136,13 +136,13 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
136
136
|
chromeless?: boolean | "all" | undefined;
|
|
137
137
|
}>, keyof ToastExtraProps> & ToastExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
138
138
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
139
|
-
transparent?: boolean | undefined;
|
|
140
139
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
141
140
|
top?: number;
|
|
142
141
|
bottom?: number;
|
|
143
142
|
left?: number;
|
|
144
143
|
right?: number;
|
|
145
|
-
} | undefined;
|
|
144
|
+
} | null | undefined;
|
|
145
|
+
transparent?: boolean | undefined;
|
|
146
146
|
circular?: boolean | undefined;
|
|
147
147
|
fullscreen?: boolean | undefined;
|
|
148
148
|
unstyled?: boolean | undefined;
|
|
@@ -165,17 +165,17 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
165
165
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
166
166
|
unstyled?: boolean | undefined;
|
|
167
167
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
168
|
-
Action: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "
|
|
168
|
+
Action: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "circular" | "fullscreen" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
169
169
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
170
|
-
transparent?: boolean | undefined;
|
|
171
|
-
fullscreen?: boolean | undefined;
|
|
172
|
-
circular?: boolean | undefined;
|
|
173
170
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
174
171
|
top?: number;
|
|
175
172
|
bottom?: number;
|
|
176
173
|
left?: number;
|
|
177
174
|
right?: number;
|
|
178
|
-
} | undefined;
|
|
175
|
+
} | null | undefined;
|
|
176
|
+
transparent?: boolean | undefined;
|
|
177
|
+
fullscreen?: boolean | undefined;
|
|
178
|
+
circular?: boolean | undefined;
|
|
179
179
|
hoverTheme?: boolean | undefined;
|
|
180
180
|
pressTheme?: boolean | undefined;
|
|
181
181
|
focusTheme?: boolean | undefined;
|
|
@@ -187,15 +187,15 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
187
187
|
chromeless?: boolean | "all" | undefined;
|
|
188
188
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
189
189
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
190
|
-
transparent?: boolean | undefined;
|
|
191
|
-
fullscreen?: boolean | undefined;
|
|
192
|
-
circular?: boolean | undefined;
|
|
193
190
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
194
191
|
top?: number;
|
|
195
192
|
bottom?: number;
|
|
196
193
|
left?: number;
|
|
197
194
|
right?: number;
|
|
198
|
-
} | undefined;
|
|
195
|
+
} | null | undefined;
|
|
196
|
+
transparent?: boolean | undefined;
|
|
197
|
+
fullscreen?: boolean | undefined;
|
|
198
|
+
circular?: boolean | undefined;
|
|
199
199
|
hoverTheme?: boolean | undefined;
|
|
200
200
|
pressTheme?: boolean | undefined;
|
|
201
201
|
focusTheme?: boolean | undefined;
|
|
@@ -207,15 +207,15 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
207
207
|
chromeless?: boolean | "all" | undefined;
|
|
208
208
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
209
209
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
210
|
-
transparent?: boolean | undefined;
|
|
211
|
-
fullscreen?: boolean | undefined;
|
|
212
|
-
circular?: boolean | undefined;
|
|
213
210
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
214
211
|
top?: number;
|
|
215
212
|
bottom?: number;
|
|
216
213
|
left?: number;
|
|
217
214
|
right?: number;
|
|
218
|
-
} | undefined;
|
|
215
|
+
} | null | undefined;
|
|
216
|
+
transparent?: boolean | undefined;
|
|
217
|
+
fullscreen?: boolean | undefined;
|
|
218
|
+
circular?: boolean | undefined;
|
|
219
219
|
hoverTheme?: boolean | undefined;
|
|
220
220
|
pressTheme?: boolean | undefined;
|
|
221
221
|
focusTheme?: boolean | undefined;
|
|
@@ -236,17 +236,17 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
236
236
|
} & {
|
|
237
237
|
__scopeToast?: string;
|
|
238
238
|
} & React.RefAttributes<TamaguiElement>>;
|
|
239
|
-
Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "
|
|
239
|
+
Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "circular" | "fullscreen" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
240
240
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
241
|
-
transparent?: boolean | undefined;
|
|
242
|
-
fullscreen?: boolean | undefined;
|
|
243
|
-
circular?: boolean | undefined;
|
|
244
241
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
245
242
|
top?: number;
|
|
246
243
|
bottom?: number;
|
|
247
244
|
left?: number;
|
|
248
245
|
right?: number;
|
|
249
|
-
} | undefined;
|
|
246
|
+
} | null | undefined;
|
|
247
|
+
transparent?: boolean | undefined;
|
|
248
|
+
fullscreen?: boolean | undefined;
|
|
249
|
+
circular?: boolean | undefined;
|
|
250
250
|
hoverTheme?: boolean | undefined;
|
|
251
251
|
pressTheme?: boolean | undefined;
|
|
252
252
|
focusTheme?: boolean | undefined;
|
|
@@ -258,15 +258,15 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
258
258
|
chromeless?: boolean | "all" | undefined;
|
|
259
259
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
260
260
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
261
|
-
transparent?: boolean | undefined;
|
|
262
|
-
fullscreen?: boolean | undefined;
|
|
263
|
-
circular?: boolean | undefined;
|
|
264
261
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
265
262
|
top?: number;
|
|
266
263
|
bottom?: number;
|
|
267
264
|
left?: number;
|
|
268
265
|
right?: number;
|
|
269
|
-
} | undefined;
|
|
266
|
+
} | null | undefined;
|
|
267
|
+
transparent?: boolean | undefined;
|
|
268
|
+
fullscreen?: boolean | undefined;
|
|
269
|
+
circular?: boolean | undefined;
|
|
270
270
|
hoverTheme?: boolean | undefined;
|
|
271
271
|
pressTheme?: boolean | undefined;
|
|
272
272
|
focusTheme?: boolean | undefined;
|
|
@@ -278,15 +278,15 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
278
278
|
chromeless?: boolean | "all" | undefined;
|
|
279
279
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
280
280
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
281
|
-
transparent?: boolean | undefined;
|
|
282
|
-
fullscreen?: boolean | undefined;
|
|
283
|
-
circular?: boolean | undefined;
|
|
284
281
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
285
282
|
top?: number;
|
|
286
283
|
bottom?: number;
|
|
287
284
|
left?: number;
|
|
288
285
|
right?: number;
|
|
289
|
-
} | undefined;
|
|
286
|
+
} | null | undefined;
|
|
287
|
+
transparent?: boolean | undefined;
|
|
288
|
+
fullscreen?: boolean | undefined;
|
|
289
|
+
circular?: boolean | undefined;
|
|
290
290
|
hoverTheme?: boolean | undefined;
|
|
291
291
|
pressTheme?: boolean | undefined;
|
|
292
292
|
focusTheme?: boolean | undefined;
|
package/types/Toast.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Toast.d.ts","sourceRoot":"","sources":["../src/Toast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAM1F,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAC/E,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAE9D,OAAO,KAAK,EAAe,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AACtE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAQ/C,QAAA,MAAM,UAAU;;;8CAed,CAAA;AAEF,KAAK,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AAUlD,QAAA,MAAM,gBAAgB;;;8CAepB,CAAA;AAEF,KAAK,qBAAqB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAU9D,KAAK,gBAAgB,GAAG,eAAe,GAAG;IACxC;;;;;OAKG;IACH,OAAO,EAAE,MAAM,CAAA;CAChB,CAAA;AA+BD,QAAA,MAAM,eAAe;gCAvB8B,eAC5C
|
|
1
|
+
{"version":3,"file":"Toast.d.ts","sourceRoot":"","sources":["../src/Toast.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAM1F,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AACnD,OAAO,EAAE,QAAQ,EAAE,kBAAkB,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AAC/E,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAE9D,OAAO,KAAK,EAAe,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AACtE,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAQ/C,QAAA,MAAM,UAAU;;;8CAed,CAAA;AAEF,KAAK,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AAUlD,QAAA,MAAM,gBAAgB;;;8CAepB,CAAA;AAEF,KAAK,qBAAqB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAU9D,KAAK,gBAAgB,GAAG,eAAe,GAAG;IACxC;;;;;OAKG;IACH,OAAO,EAAE,MAAM,CAAA;CAChB,CAAA;AA+BD,QAAA,MAAM,eAAe;gCAvB8B,eAC5C;4BAKW,eACX;WACS,CAAC;cACF,CAAC;YAAsB,CAAC;aAAuB,CAAC;;;;;;;;;;;;;;8CAiB7D,CAAA;AAEF,KAAK,oBAAoB,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,CAAA;AAC5D,KAAK,eAAe,GAAG,oBAAoB,GAAG,EAAE,CAAA;AA8DhD,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA3FwC,eAC5C;gCAKW,eACX;eACS,CAAC;kBACF,CAAC;gBAAsB,CAAC;iBAAuB,CAAC;;;;;;;;;;;;;;;oCATZ,eAC5C;gCAKW,eACX;eACS,CAAC;kBACF,CAAC;gBAAsB,CAAC;iBAAuB,CAAC;;;;;;;;;;;;;;;oCATZ,eAC5C;gCAKW,eACX;eACS,CAAC;kBACF,CAAC;gBAAsB,CAAC;iBAAuB,CAAC;;;;;;;;;;;;;;;QAxB7D;;;;;WAKG;iBACM,MAAM;;;;;oCASkC,eAC5C;gCAKW,eACX;eACS,CAAC;kBACF,CAAC;gBAAsB,CAAC;iBAAuB,CAAC;;;;;;;;;;;;;;;oCATZ,eAC5C;gCAKW,eACX;eACS,CAAC;kBACF,CAAC;gBAAsB,CAAC;iBAAuB,CAAC;;;;;;;;;;;;;;;oCATZ,eAC5C;gCAKW,eACX;eACS,CAAC;kBACF,CAAC;gBAAsB,CAAC;iBAAuB,CAAC;;;;;;;;;;;;;;;CAuF7D,CAAA;AAIF,OAAO,EACL,KAAK,EACL,aAAa,EACb,aAAa,EAGb,QAAQ,EACR,kBAAkB,EAClB,aAAa,GACd,CAAA;AACD,YAAY,EAEV,UAAU,EACV,gBAAgB,EAChB,eAAe,EACf,qBAAqB,EACrB,cAAc,IAAI,mBAAmB,EAErC,WAAW,IAAI,gBAAgB,EAC/B,UAAU,EACV,kBAAkB,EAClB,eAAe,EACf,kBAAkB,GACnB,CAAA"}
|
package/types/ToastImpl.d.ts
CHANGED
|
@@ -4,13 +4,13 @@ import * as React from 'react';
|
|
|
4
4
|
import type { GestureResponderEvent } from 'react-native';
|
|
5
5
|
declare const ToastImplFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
6
6
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
7
|
-
transparent?: boolean | undefined;
|
|
8
7
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
9
8
|
top?: number;
|
|
10
9
|
bottom?: number;
|
|
11
10
|
left?: number;
|
|
12
11
|
right?: number;
|
|
13
|
-
} | undefined;
|
|
12
|
+
} | null | undefined;
|
|
13
|
+
transparent?: boolean | undefined;
|
|
14
14
|
circular?: boolean | undefined;
|
|
15
15
|
fullscreen?: boolean | undefined;
|
|
16
16
|
unstyled?: boolean | undefined;
|
|
@@ -105,15 +105,15 @@ export type ToastExtraProps = {
|
|
|
105
105
|
id?: string;
|
|
106
106
|
};
|
|
107
107
|
type ToastImplProps = ToastImplPrivateProps & ToastImplFrameProps & ToastExtraProps;
|
|
108
|
-
declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "
|
|
108
|
+
declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "circular" | "fullscreen" | "unstyled" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
109
109
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
110
|
-
transparent?: boolean | undefined;
|
|
111
110
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
112
111
|
top?: number;
|
|
113
112
|
bottom?: number;
|
|
114
113
|
left?: number;
|
|
115
114
|
right?: number;
|
|
116
|
-
} | undefined;
|
|
115
|
+
} | null | undefined;
|
|
116
|
+
transparent?: boolean | undefined;
|
|
117
117
|
circular?: boolean | undefined;
|
|
118
118
|
fullscreen?: boolean | undefined;
|
|
119
119
|
unstyled?: boolean | undefined;
|
|
@@ -128,13 +128,13 @@ declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps &
|
|
|
128
128
|
chromeless?: boolean | "all" | undefined;
|
|
129
129
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
130
130
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
131
|
-
transparent?: boolean | undefined;
|
|
132
131
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
133
132
|
top?: number;
|
|
134
133
|
bottom?: number;
|
|
135
134
|
left?: number;
|
|
136
135
|
right?: number;
|
|
137
|
-
} | undefined;
|
|
136
|
+
} | null | undefined;
|
|
137
|
+
transparent?: boolean | undefined;
|
|
138
138
|
circular?: boolean | undefined;
|
|
139
139
|
fullscreen?: boolean | undefined;
|
|
140
140
|
unstyled?: boolean | undefined;
|
|
@@ -149,13 +149,13 @@ declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps &
|
|
|
149
149
|
chromeless?: boolean | "all" | undefined;
|
|
150
150
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
151
151
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
152
|
-
transparent?: boolean | undefined;
|
|
153
152
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
154
153
|
top?: number;
|
|
155
154
|
bottom?: number;
|
|
156
155
|
left?: number;
|
|
157
156
|
right?: number;
|
|
158
|
-
} | undefined;
|
|
157
|
+
} | null | undefined;
|
|
158
|
+
transparent?: boolean | undefined;
|
|
159
159
|
circular?: boolean | undefined;
|
|
160
160
|
fullscreen?: boolean | undefined;
|
|
161
161
|
unstyled?: boolean | undefined;
|
package/types/ToastViewport.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ declare const ToastViewportFrame: import("@tamagui/core").TamaguiComponent<impor
|
|
|
10
10
|
bottom?: number;
|
|
11
11
|
left?: number;
|
|
12
12
|
right?: number;
|
|
13
|
-
} | undefined;
|
|
13
|
+
} | null | undefined;
|
|
14
14
|
fullscreen?: boolean | undefined;
|
|
15
15
|
unstyled?: boolean | undefined;
|
|
16
16
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
@@ -40,14 +40,14 @@ type ToastViewportProps = ToastViewportFrameProps & {
|
|
|
40
40
|
*/
|
|
41
41
|
portalToRoot?: boolean;
|
|
42
42
|
};
|
|
43
|
-
declare const ToastViewport: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "
|
|
43
|
+
declare const ToastViewport: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
44
44
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
45
45
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
46
46
|
top?: number;
|
|
47
47
|
bottom?: number;
|
|
48
48
|
left?: number;
|
|
49
49
|
right?: number;
|
|
50
|
-
} | undefined;
|
|
50
|
+
} | null | undefined;
|
|
51
51
|
fullscreen?: boolean | undefined;
|
|
52
52
|
unstyled?: boolean | undefined;
|
|
53
53
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
@@ -57,7 +57,7 @@ declare const ToastViewport: React.MemoExoticComponent<React.ForwardRefExoticCom
|
|
|
57
57
|
bottom?: number;
|
|
58
58
|
left?: number;
|
|
59
59
|
right?: number;
|
|
60
|
-
} | undefined;
|
|
60
|
+
} | null | undefined;
|
|
61
61
|
fullscreen?: boolean | undefined;
|
|
62
62
|
unstyled?: boolean | undefined;
|
|
63
63
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
@@ -67,7 +67,7 @@ declare const ToastViewport: React.MemoExoticComponent<React.ForwardRefExoticCom
|
|
|
67
67
|
bottom?: number;
|
|
68
68
|
left?: number;
|
|
69
69
|
right?: number;
|
|
70
|
-
} | undefined;
|
|
70
|
+
} | null | undefined;
|
|
71
71
|
fullscreen?: boolean | undefined;
|
|
72
72
|
unstyled?: boolean | undefined;
|
|
73
73
|
}>> & {
|