@tamagui/toast 1.88.4 → 1.88.6
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 +15 -15
- package/types/Toast.d.ts +16 -16
- package/types/ToastAnnounce.d.ts +2 -2
- package/types/ToastAnnounce.d.ts.map +1 -1
- package/types/ToastImpl.d.ts +6 -6
- package/types/ToastViewport.d.ts +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/toast",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.6",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"main": "dist/cjs",
|
|
@@ -32,26 +32,26 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/animate-presence": "1.88.
|
|
36
|
-
"@tamagui/compose-refs": "1.88.
|
|
37
|
-
"@tamagui/constants": "1.88.
|
|
38
|
-
"@tamagui/core": "1.88.
|
|
39
|
-
"@tamagui/create-context": "1.88.
|
|
40
|
-
"@tamagui/dismissable": "1.88.
|
|
41
|
-
"@tamagui/helpers": "1.88.
|
|
42
|
-
"@tamagui/polyfill-dev": "1.88.
|
|
43
|
-
"@tamagui/portal": "1.88.
|
|
44
|
-
"@tamagui/stacks": "1.88.
|
|
45
|
-
"@tamagui/text": "1.88.
|
|
46
|
-
"@tamagui/use-controllable-state": "1.88.
|
|
47
|
-
"@tamagui/visually-hidden": "1.88.
|
|
35
|
+
"@tamagui/animate-presence": "1.88.6",
|
|
36
|
+
"@tamagui/compose-refs": "1.88.6",
|
|
37
|
+
"@tamagui/constants": "1.88.6",
|
|
38
|
+
"@tamagui/core": "1.88.6",
|
|
39
|
+
"@tamagui/create-context": "1.88.6",
|
|
40
|
+
"@tamagui/dismissable": "1.88.6",
|
|
41
|
+
"@tamagui/helpers": "1.88.6",
|
|
42
|
+
"@tamagui/polyfill-dev": "1.88.6",
|
|
43
|
+
"@tamagui/portal": "1.88.6",
|
|
44
|
+
"@tamagui/stacks": "1.88.6",
|
|
45
|
+
"@tamagui/text": "1.88.6",
|
|
46
|
+
"@tamagui/use-controllable-state": "1.88.6",
|
|
47
|
+
"@tamagui/visually-hidden": "1.88.6"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "*",
|
|
51
51
|
"react-native": "*"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@tamagui/build": "1.88.
|
|
54
|
+
"@tamagui/build": "1.88.6",
|
|
55
55
|
"burnt": "^0.12.1",
|
|
56
56
|
"react": "^18.2.0",
|
|
57
57
|
"react-native": "^0.72.6"
|
package/types/Toast.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ type ToastActionProps = ToastCloseProps & {
|
|
|
23
23
|
*/
|
|
24
24
|
altText: string;
|
|
25
25
|
};
|
|
26
|
-
declare const ToastCloseFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
26
|
+
declare const ToastCloseFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
27
27
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
28
28
|
transparent?: boolean | undefined;
|
|
29
29
|
fullscreen?: boolean | undefined;
|
|
@@ -40,7 +40,7 @@ declare const ToastCloseFrame: import("@tamagui/core").TamaguiComponent<import("
|
|
|
40
40
|
}, {}>;
|
|
41
41
|
type ToastCloseFrameProps = GetProps<typeof ToastCloseFrame>;
|
|
42
42
|
type ToastCloseProps = ToastCloseFrameProps & {};
|
|
43
|
-
declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
43
|
+
declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
44
44
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
45
45
|
transparent?: boolean | undefined;
|
|
46
46
|
circular?: boolean | undefined;
|
|
@@ -55,7 +55,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
55
55
|
radiused?: boolean | undefined;
|
|
56
56
|
padded?: boolean | undefined;
|
|
57
57
|
chromeless?: boolean | "all" | undefined;
|
|
58
|
-
}>, keyof ToastExtraProps> & ToastExtraProps & React.RefAttributes<TamaguiElement>> & import("@tamagui/core").StaticComponentObject<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
58
|
+
}>, keyof ToastExtraProps> & ToastExtraProps & React.RefAttributes<TamaguiElement>> & import("@tamagui/core").StaticComponentObject<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
59
59
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
60
60
|
transparent?: boolean | undefined;
|
|
61
61
|
circular?: boolean | undefined;
|
|
@@ -70,7 +70,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
70
70
|
radiused?: boolean | undefined;
|
|
71
71
|
padded?: boolean | undefined;
|
|
72
72
|
chromeless?: boolean | "all" | undefined;
|
|
73
|
-
}>, keyof ToastExtraProps> & ToastExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, import("@tamagui/core").
|
|
73
|
+
}>, keyof ToastExtraProps> & ToastExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
74
74
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
75
75
|
transparent?: boolean | undefined;
|
|
76
76
|
circular?: boolean | undefined;
|
|
@@ -86,7 +86,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
86
86
|
padded?: boolean | undefined;
|
|
87
87
|
chromeless?: boolean | "all" | undefined;
|
|
88
88
|
}, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
|
|
89
|
-
__tama: [Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
89
|
+
__tama: [Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
90
90
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
91
91
|
transparent?: boolean | undefined;
|
|
92
92
|
circular?: boolean | undefined;
|
|
@@ -101,7 +101,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
101
101
|
radiused?: boolean | undefined;
|
|
102
102
|
padded?: boolean | undefined;
|
|
103
103
|
chromeless?: boolean | "all" | undefined;
|
|
104
|
-
}>, keyof ToastExtraProps> & ToastExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, import("@tamagui/core").
|
|
104
|
+
}>, keyof ToastExtraProps> & ToastExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
105
105
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
106
106
|
transparent?: boolean | undefined;
|
|
107
107
|
circular?: boolean | undefined;
|
|
@@ -126,7 +126,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
126
126
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
127
127
|
unstyled?: boolean | undefined;
|
|
128
128
|
}, {}>;
|
|
129
|
-
Action: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
129
|
+
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 & {
|
|
130
130
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
131
131
|
transparent?: boolean | undefined;
|
|
132
132
|
fullscreen?: boolean | undefined;
|
|
@@ -140,7 +140,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
140
140
|
radiused?: boolean | undefined;
|
|
141
141
|
padded?: boolean | undefined;
|
|
142
142
|
chromeless?: boolean | "all" | undefined;
|
|
143
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
143
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
144
144
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
145
145
|
transparent?: boolean | undefined;
|
|
146
146
|
fullscreen?: boolean | undefined;
|
|
@@ -154,7 +154,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
154
154
|
radiused?: boolean | undefined;
|
|
155
155
|
padded?: boolean | undefined;
|
|
156
156
|
chromeless?: boolean | "all" | undefined;
|
|
157
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
157
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
158
158
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
159
159
|
transparent?: boolean | undefined;
|
|
160
160
|
fullscreen?: boolean | undefined;
|
|
@@ -168,7 +168,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
168
168
|
radiused?: boolean | undefined;
|
|
169
169
|
padded?: boolean | undefined;
|
|
170
170
|
chromeless?: boolean | "all" | undefined;
|
|
171
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
171
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
172
172
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
173
173
|
transparent?: boolean | undefined;
|
|
174
174
|
fullscreen?: boolean | undefined;
|
|
@@ -182,7 +182,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
182
182
|
radiused?: boolean | undefined;
|
|
183
183
|
padded?: boolean | undefined;
|
|
184
184
|
chromeless?: boolean | "all" | undefined;
|
|
185
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
185
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
186
186
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
187
187
|
transparent?: boolean | undefined;
|
|
188
188
|
fullscreen?: boolean | undefined;
|
|
@@ -207,7 +207,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
207
207
|
} & {
|
|
208
208
|
__scopeToast?: string | undefined;
|
|
209
209
|
} & React.RefAttributes<TamaguiElement>>;
|
|
210
|
-
Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
210
|
+
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 & {
|
|
211
211
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
212
212
|
transparent?: boolean | undefined;
|
|
213
213
|
fullscreen?: boolean | undefined;
|
|
@@ -221,7 +221,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
221
221
|
radiused?: boolean | undefined;
|
|
222
222
|
padded?: boolean | undefined;
|
|
223
223
|
chromeless?: boolean | "all" | undefined;
|
|
224
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
224
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
225
225
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
226
226
|
transparent?: boolean | undefined;
|
|
227
227
|
fullscreen?: boolean | undefined;
|
|
@@ -235,7 +235,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
235
235
|
radiused?: boolean | undefined;
|
|
236
236
|
padded?: boolean | undefined;
|
|
237
237
|
chromeless?: boolean | "all" | undefined;
|
|
238
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
238
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
239
239
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
240
240
|
transparent?: boolean | undefined;
|
|
241
241
|
fullscreen?: boolean | undefined;
|
|
@@ -249,7 +249,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
249
249
|
radiused?: boolean | undefined;
|
|
250
250
|
padded?: boolean | undefined;
|
|
251
251
|
chromeless?: boolean | "all" | undefined;
|
|
252
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
252
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
253
253
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
254
254
|
transparent?: boolean | undefined;
|
|
255
255
|
fullscreen?: boolean | undefined;
|
|
@@ -263,7 +263,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
|
|
|
263
263
|
radiused?: boolean | undefined;
|
|
264
264
|
padded?: boolean | undefined;
|
|
265
265
|
chromeless?: boolean | "all" | undefined;
|
|
266
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
266
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
267
267
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
268
268
|
transparent?: boolean | undefined;
|
|
269
269
|
fullscreen?: boolean | undefined;
|
package/types/ToastAnnounce.d.ts
CHANGED
|
@@ -2,12 +2,12 @@ import { GetProps, TamaguiElement } from '@tamagui/core';
|
|
|
2
2
|
import { VisuallyHidden } from '@tamagui/visually-hidden';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ScopedProps } from './ToastProvider';
|
|
5
|
-
declare const ToastAnnounceExcludeFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
5
|
+
declare const ToastAnnounceExcludeFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, void, {}>;
|
|
6
6
|
type ToastAnnounceExcludeFrameProps = GetProps<typeof ToastAnnounceExcludeFrame>;
|
|
7
7
|
type ToastAnnounceExcludeProps = ToastAnnounceExcludeFrameProps & {
|
|
8
8
|
altText?: string;
|
|
9
9
|
};
|
|
10
|
-
declare const ToastAnnounceExclude: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").
|
|
10
|
+
declare const ToastAnnounceExclude: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & void> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & void>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & void> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & void>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & void>> & {
|
|
11
11
|
altText?: string | undefined;
|
|
12
12
|
} & {
|
|
13
13
|
__scopeToast?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ToastAnnounce.d.ts","sourceRoot":"","sources":["../src/ToastAnnounce.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAS,cAAc,EAA0B,MAAM,eAAe,CAAA;AAEvF,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,WAAW,EAA2B,MAAM,iBAAiB,CAAA;AAEtE,QAAA,MAAM,yBAAyB,
|
|
1
|
+
{"version":3,"file":"ToastAnnounce.d.ts","sourceRoot":"","sources":["../src/ToastAnnounce.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAS,cAAc,EAA0B,MAAM,eAAe,CAAA;AAEvF,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AACzD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,WAAW,EAA2B,MAAM,iBAAiB,CAAA;AAEtE,QAAA,MAAM,yBAAyB,mMAE7B,CAAA;AACF,KAAK,8BAA8B,GAAG,QAAQ,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAChF,KAAK,yBAAyB,GAAG,8BAA8B,GAAG;IAChE,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,QAAA,MAAM,oBAAoB;;;;wCAcxB,CAAA;AAIF,UAAU,kBACR,SAAQ,IAAI,CAAC,QAAQ,CAAC,OAAO,cAAc,CAAC,EAAE,UAAU,CAAC,EACvD,WAAW,CAAC;IAAE,QAAQ,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC;CAAG;AAE1C,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAAC,kBAAkB,CAAC,CA4B5D,CAAA;AAmBD,OAAO,EACL,aAAa,EACb,kBAAkB,EAClB,oBAAoB,EACpB,yBAAyB,GAC1B,CAAA"}
|
package/types/ToastImpl.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { GetProps, TamaguiElement } from '@tamagui/core';
|
|
|
2
2
|
import { DismissableProps } from '@tamagui/dismissable';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { GestureResponderEvent } from 'react-native';
|
|
5
|
-
declare const ToastImplFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
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
7
|
transparent?: boolean | undefined;
|
|
8
8
|
circular?: boolean | undefined;
|
|
@@ -99,7 +99,7 @@ export type ToastExtraProps = {
|
|
|
99
99
|
id?: string;
|
|
100
100
|
};
|
|
101
101
|
type ToastImplProps = ToastImplPrivateProps & ToastImplFrameProps & ToastExtraProps;
|
|
102
|
-
declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
102
|
+
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 & {
|
|
103
103
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
104
104
|
transparent?: boolean | undefined;
|
|
105
105
|
circular?: boolean | undefined;
|
|
@@ -114,7 +114,7 @@ declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps &
|
|
|
114
114
|
radiused?: boolean | undefined;
|
|
115
115
|
padded?: boolean | undefined;
|
|
116
116
|
chromeless?: boolean | "all" | undefined;
|
|
117
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
117
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
118
118
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
119
119
|
transparent?: boolean | undefined;
|
|
120
120
|
circular?: boolean | undefined;
|
|
@@ -129,7 +129,7 @@ declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps &
|
|
|
129
129
|
radiused?: boolean | undefined;
|
|
130
130
|
padded?: boolean | undefined;
|
|
131
131
|
chromeless?: boolean | "all" | undefined;
|
|
132
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
132
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
133
133
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
134
134
|
transparent?: boolean | undefined;
|
|
135
135
|
circular?: boolean | undefined;
|
|
@@ -144,7 +144,7 @@ declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps &
|
|
|
144
144
|
radiused?: boolean | undefined;
|
|
145
145
|
padded?: boolean | undefined;
|
|
146
146
|
chromeless?: boolean | "all" | undefined;
|
|
147
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
147
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
148
148
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
149
149
|
transparent?: boolean | undefined;
|
|
150
150
|
circular?: boolean | undefined;
|
|
@@ -159,7 +159,7 @@ declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps &
|
|
|
159
159
|
radiused?: boolean | undefined;
|
|
160
160
|
padded?: boolean | undefined;
|
|
161
161
|
chromeless?: boolean | "all" | undefined;
|
|
162
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
162
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
163
163
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
164
164
|
transparent?: boolean | undefined;
|
|
165
165
|
circular?: boolean | undefined;
|
package/types/ToastViewport.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as React from 'react';
|
|
|
3
3
|
declare const VIEWPORT_DEFAULT_HOTKEY: string[];
|
|
4
4
|
declare const VIEWPORT_PAUSE = "toast.viewportPause";
|
|
5
5
|
declare const VIEWPORT_RESUME = "toast.viewportResume";
|
|
6
|
-
declare const ToastViewportFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
6
|
+
declare const ToastViewportFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
7
7
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
8
8
|
fullscreen?: boolean | undefined;
|
|
9
9
|
unstyled?: boolean | undefined;
|
|
@@ -34,23 +34,23 @@ type ToastViewportProps = ToastViewportFrameProps & {
|
|
|
34
34
|
*/
|
|
35
35
|
portalToRoot?: boolean;
|
|
36
36
|
};
|
|
37
|
-
declare const ToastViewport: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
37
|
+
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 & {
|
|
38
38
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
39
39
|
fullscreen?: boolean | undefined;
|
|
40
40
|
unstyled?: boolean | undefined;
|
|
41
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
41
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
42
42
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
43
43
|
fullscreen?: boolean | undefined;
|
|
44
44
|
unstyled?: boolean | undefined;
|
|
45
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
45
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
46
46
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
47
47
|
fullscreen?: boolean | undefined;
|
|
48
48
|
unstyled?: boolean | undefined;
|
|
49
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
49
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
50
50
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
51
51
|
fullscreen?: boolean | undefined;
|
|
52
52
|
unstyled?: boolean | undefined;
|
|
53
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
53
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
54
54
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
55
55
|
fullscreen?: boolean | undefined;
|
|
56
56
|
unstyled?: boolean | undefined;
|