@tamagui/toast 1.88.6 → 1.88.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/toast",
3
- "version": "1.88.6",
3
+ "version": "1.88.7",
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.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"
35
+ "@tamagui/animate-presence": "1.88.7",
36
+ "@tamagui/compose-refs": "1.88.7",
37
+ "@tamagui/constants": "1.88.7",
38
+ "@tamagui/core": "1.88.7",
39
+ "@tamagui/create-context": "1.88.7",
40
+ "@tamagui/dismissable": "1.88.7",
41
+ "@tamagui/helpers": "1.88.7",
42
+ "@tamagui/polyfill-dev": "1.88.7",
43
+ "@tamagui/portal": "1.88.7",
44
+ "@tamagui/stacks": "1.88.7",
45
+ "@tamagui/text": "1.88.7",
46
+ "@tamagui/use-controllable-state": "1.88.7",
47
+ "@tamagui/visually-hidden": "1.88.7"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "react": "*",
51
51
  "react-native": "*"
52
52
  },
53
53
  "devDependencies": {
54
- "@tamagui/build": "1.88.6",
54
+ "@tamagui/build": "1.88.7",
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
@@ -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").StackStyleBase & {
43
+ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, "top" | "bottom" | "left" | "right" | "display" | "x" | "y" | "perspective" | "scale" | "scaleX" | "scaleY" | "skewX" | "skewY" | "matrix" | "rotate" | "rotateY" | "rotateX" | "rotateZ" | "contain" | "touchAction" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "pointerEvents" | "userSelect" | "space" | "spaceDirection" | "separator" | "animation" | "animateOnly" | "transformOrigin" | "backfaceVisibility" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "end" | "flex" | "flexBasis" | "flexDirection" | "rowGap" | "gap" | "columnGap" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "start" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY"> & import("@tamagui/core").WithThemeValues<Omit<import("@tamagui/core").StackStyleBase, keyof ToastExtraProps>, {
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").StackStyleBase & {
58
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<Omit<import("@tamagui/core").StackStyleBase, keyof ToastExtraProps>, {
59
59
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
60
60
  transparent?: boolean | undefined;
61
61
  circular?: boolean | undefined;
@@ -70,7 +70,52 @@ 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").StackStyleBase, {
73
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<Omit<import("@tamagui/core").StackStyleBase, keyof ToastExtraProps>, {
74
+ elevation?: number | import("@tamagui/core").SizeTokens | undefined;
75
+ transparent?: boolean | undefined;
76
+ circular?: boolean | undefined;
77
+ fullscreen?: boolean | undefined;
78
+ unstyled?: boolean | undefined;
79
+ hoverTheme?: boolean | undefined;
80
+ pressTheme?: boolean | undefined;
81
+ focusTheme?: boolean | undefined;
82
+ elevate?: boolean | undefined;
83
+ bordered?: number | boolean | undefined;
84
+ backgrounded?: boolean | undefined;
85
+ radiused?: boolean | undefined;
86
+ padded?: boolean | undefined;
87
+ chromeless?: boolean | "all" | undefined;
88
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<Omit<import("@tamagui/core").StackStyleBase, keyof ToastExtraProps>, {
89
+ elevation?: number | import("@tamagui/core").SizeTokens | undefined;
90
+ transparent?: boolean | undefined;
91
+ circular?: boolean | undefined;
92
+ fullscreen?: boolean | undefined;
93
+ unstyled?: boolean | undefined;
94
+ hoverTheme?: boolean | undefined;
95
+ pressTheme?: boolean | undefined;
96
+ focusTheme?: boolean | undefined;
97
+ elevate?: boolean | undefined;
98
+ bordered?: number | boolean | undefined;
99
+ backgrounded?: boolean | undefined;
100
+ radiused?: boolean | undefined;
101
+ padded?: boolean | undefined;
102
+ chromeless?: boolean | "all" | undefined;
103
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<Omit<import("@tamagui/core").StackStyleBase, keyof ToastExtraProps>, {
104
+ elevation?: number | import("@tamagui/core").SizeTokens | undefined;
105
+ transparent?: boolean | undefined;
106
+ circular?: boolean | undefined;
107
+ fullscreen?: boolean | undefined;
108
+ unstyled?: boolean | undefined;
109
+ hoverTheme?: boolean | undefined;
110
+ pressTheme?: boolean | undefined;
111
+ focusTheme?: boolean | undefined;
112
+ elevate?: boolean | undefined;
113
+ bordered?: number | boolean | undefined;
114
+ backgrounded?: boolean | undefined;
115
+ radiused?: boolean | undefined;
116
+ padded?: boolean | undefined;
117
+ chromeless?: boolean | "all" | undefined;
118
+ }>> & React.RefAttributes<TamaguiElement>> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, Omit<import("@tamagui/core").StackStyleBase, keyof ToastExtraProps>, {
74
119
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
75
120
  transparent?: boolean | undefined;
76
121
  circular?: boolean | undefined;
@@ -86,22 +131,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
86
131
  padded?: boolean | undefined;
87
132
  chromeless?: boolean | "all" | undefined;
88
133
  }, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
89
- __tama: [Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
90
- elevation?: number | import("@tamagui/core").SizeTokens | undefined;
91
- transparent?: boolean | undefined;
92
- circular?: boolean | undefined;
93
- fullscreen?: boolean | undefined;
94
- unstyled?: boolean | undefined;
95
- hoverTheme?: boolean | undefined;
96
- pressTheme?: boolean | undefined;
97
- focusTheme?: boolean | undefined;
98
- elevate?: boolean | undefined;
99
- bordered?: number | boolean | undefined;
100
- backgrounded?: boolean | undefined;
101
- radiused?: boolean | undefined;
102
- padded?: boolean | undefined;
103
- chromeless?: boolean | "all" | undefined;
104
- }>, keyof ToastExtraProps> & ToastExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, import("@tamagui/core").StackStyleBase, {
134
+ __tama: [import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & ToastExtraProps, Omit<import("@tamagui/core").StackStyleBase, keyof ToastExtraProps>, {
105
135
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
106
136
  transparent?: boolean | undefined;
107
137
  circular?: boolean | undefined;
@@ -126,7 +156,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
126
156
  size?: import("@tamagui/core").FontSizeTokens | undefined;
127
157
  unstyled?: boolean | undefined;
128
158
  }, {}>;
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 & {
159
+ Action: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
130
160
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
131
161
  transparent?: boolean | undefined;
132
162
  fullscreen?: boolean | undefined;
@@ -140,7 +170,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
140
170
  radiused?: boolean | undefined;
141
171
  padded?: boolean | undefined;
142
172
  chromeless?: boolean | "all" | undefined;
143
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
173
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
144
174
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
145
175
  transparent?: boolean | undefined;
146
176
  fullscreen?: boolean | undefined;
@@ -154,7 +184,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
154
184
  radiused?: boolean | undefined;
155
185
  padded?: boolean | undefined;
156
186
  chromeless?: boolean | "all" | undefined;
157
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
187
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
158
188
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
159
189
  transparent?: boolean | undefined;
160
190
  fullscreen?: boolean | undefined;
@@ -168,7 +198,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
168
198
  radiused?: boolean | undefined;
169
199
  padded?: boolean | undefined;
170
200
  chromeless?: boolean | "all" | undefined;
171
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
201
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
172
202
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
173
203
  transparent?: boolean | undefined;
174
204
  fullscreen?: boolean | undefined;
@@ -182,7 +212,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
182
212
  radiused?: boolean | undefined;
183
213
  padded?: boolean | undefined;
184
214
  chromeless?: boolean | "all" | undefined;
185
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
215
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
186
216
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
187
217
  transparent?: boolean | undefined;
188
218
  fullscreen?: boolean | undefined;
@@ -207,7 +237,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
207
237
  } & {
208
238
  __scopeToast?: string | undefined;
209
239
  } & React.RefAttributes<TamaguiElement>>;
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 & {
240
+ Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
211
241
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
212
242
  transparent?: boolean | undefined;
213
243
  fullscreen?: boolean | undefined;
@@ -221,7 +251,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
221
251
  radiused?: boolean | undefined;
222
252
  padded?: boolean | undefined;
223
253
  chromeless?: boolean | "all" | undefined;
224
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
254
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
225
255
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
226
256
  transparent?: boolean | undefined;
227
257
  fullscreen?: boolean | undefined;
@@ -235,7 +265,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
235
265
  radiused?: boolean | undefined;
236
266
  padded?: boolean | undefined;
237
267
  chromeless?: boolean | "all" | undefined;
238
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
268
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
239
269
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
240
270
  transparent?: boolean | undefined;
241
271
  fullscreen?: boolean | undefined;
@@ -249,7 +279,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
249
279
  radiused?: boolean | undefined;
250
280
  padded?: boolean | undefined;
251
281
  chromeless?: boolean | "all" | undefined;
252
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
282
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
253
283
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
254
284
  transparent?: boolean | undefined;
255
285
  fullscreen?: boolean | undefined;
@@ -263,7 +293,7 @@ declare const Toast: React.ForwardRefExoticComponent<Omit<import("@tamagui/core"
263
293
  radiused?: boolean | undefined;
264
294
  padded?: boolean | undefined;
265
295
  chromeless?: boolean | "all" | undefined;
266
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
296
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
267
297
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
268
298
  transparent?: boolean | undefined;
269
299
  fullscreen?: boolean | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Toast.d.ts","sourceRoot":"","sources":["../src/Toast.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,cAAc,EACd,WAAW,EACX,cAAc,EAGf,MAAM,eAAe,CAAA;AAKtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,OAAO,EACL,UAAU,EACV,QAAQ,EACR,kBAAkB,EAClB,aAAa,EACd,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EACL,eAAe,EAGf,UAAU,EAEX,MAAM,aAAa,CAAA;AACpB,OAAO,EAAe,aAAa,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AAChF,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AAQnE,QAAA,MAAM,UAAU;;;MAed,CAAA;AAEF,KAAK,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AAUlD,QAAA,MAAM,gBAAgB;;;MAepB,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;;;;;;;;;;;;;;MAGnB,CAAA;AAEF,KAAK,oBAAoB,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,CAAA;AAC5D,KAAK,eAAe,GAAG,oBAAoB,GAAG,EAAE,CAAA;AA8DhD,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA1GT;;;;;WAKG;iBACM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyGf,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"}
1
+ {"version":3,"file":"Toast.d.ts","sourceRoot":"","sources":["../src/Toast.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,cAAc,EACd,WAAW,EACX,cAAc,EAGf,MAAM,eAAe,CAAA;AAKtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,OAAO,EACL,UAAU,EACV,QAAQ,EACR,kBAAkB,EAClB,aAAa,EACd,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EACL,eAAe,EAGf,UAAU,EAEX,MAAM,aAAa,CAAA;AACpB,OAAO,EAAe,aAAa,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AAChF,OAAO,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AAQnE,QAAA,MAAM,UAAU;;;MAed,CAAA;AAEF,KAAK,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AAUlD,QAAA,MAAM,gBAAgB;;;MAepB,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;;;;;;;;;;;;;;MAGnB,CAAA;AAEF,KAAK,oBAAoB,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,CAAA;AAC5D,KAAK,eAAe,GAAG,oBAAoB,GAAG,EAAE,CAAA;AA8DhD,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA1GT;;;;;WAKG;iBACM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyGf,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"}
@@ -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").StackStyleBase, void, {}>;
5
+ declare const ToastAnnounceExcludeFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, {}>;
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").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>> & {
10
+ declare const ToastAnnounceExclude: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {}>> & {
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,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"}
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,iMAE7B,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"}
@@ -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").StackStyleBase | "transparent" | "circular" | "fullscreen" | "unstyled" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
102
+ declare const ToastImpl: React.ForwardRefExoticComponent<ToastImplPrivateProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & 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").StackStyleBase & {
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").StackStyleBase & {
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").StackStyleBase & {
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").StackStyleBase & {
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;
@@ -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").StackStyleBase | "fullscreen" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
37
+ declare const ToastViewport: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & 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").StackStyleBase & {
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").StackStyleBase & {
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").StackStyleBase & {
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").StackStyleBase & {
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;