@tamagui/dialog 1.101.0 → 1.101.1
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 +21 -22
- package/types/Dialog.d.ts +41 -42
- package/types/Dialog.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/dialog",
|
|
3
|
-
"version": "1.101.
|
|
3
|
+
"version": "1.101.1",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"main": "dist/cjs",
|
|
@@ -32,31 +32,30 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/adapt": "1.101.
|
|
36
|
-
"@tamagui/animate-presence": "1.101.
|
|
37
|
-
"@tamagui/aria-hidden": "1.101.
|
|
38
|
-
"@tamagui/compose-refs": "1.101.
|
|
39
|
-
"@tamagui/constants": "1.101.
|
|
40
|
-
"@tamagui/core": "1.101.
|
|
41
|
-
"@tamagui/create-context": "1.101.
|
|
42
|
-
"@tamagui/dismissable": "1.101.
|
|
43
|
-
"@tamagui/focus-scope": "1.101.
|
|
44
|
-
"@tamagui/helpers": "1.101.
|
|
45
|
-
"@tamagui/polyfill-dev": "1.101.
|
|
46
|
-
"@tamagui/popper": "1.101.
|
|
47
|
-
"@tamagui/portal": "1.101.
|
|
48
|
-
"@tamagui/remove-scroll": "1.101.
|
|
49
|
-
"@tamagui/sheet": "1.101.
|
|
50
|
-
"@tamagui/stacks": "1.101.
|
|
51
|
-
"@tamagui/text": "1.101.
|
|
52
|
-
"@tamagui/use-controllable-state": "1.101.
|
|
35
|
+
"@tamagui/adapt": "1.101.1",
|
|
36
|
+
"@tamagui/animate-presence": "1.101.1",
|
|
37
|
+
"@tamagui/aria-hidden": "1.101.1",
|
|
38
|
+
"@tamagui/compose-refs": "1.101.1",
|
|
39
|
+
"@tamagui/constants": "1.101.1",
|
|
40
|
+
"@tamagui/core": "1.101.1",
|
|
41
|
+
"@tamagui/create-context": "1.101.1",
|
|
42
|
+
"@tamagui/dismissable": "1.101.1",
|
|
43
|
+
"@tamagui/focus-scope": "1.101.1",
|
|
44
|
+
"@tamagui/helpers": "1.101.1",
|
|
45
|
+
"@tamagui/polyfill-dev": "1.101.1",
|
|
46
|
+
"@tamagui/popper": "1.101.1",
|
|
47
|
+
"@tamagui/portal": "1.101.1",
|
|
48
|
+
"@tamagui/remove-scroll": "1.101.1",
|
|
49
|
+
"@tamagui/sheet": "1.101.1",
|
|
50
|
+
"@tamagui/stacks": "1.101.1",
|
|
51
|
+
"@tamagui/text": "1.101.1",
|
|
52
|
+
"@tamagui/use-controllable-state": "1.101.1"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"react": "*"
|
|
56
|
-
"react-native": "*"
|
|
55
|
+
"react": "*"
|
|
57
56
|
},
|
|
58
57
|
"devDependencies": {
|
|
59
|
-
"@tamagui/build": "1.101.
|
|
58
|
+
"@tamagui/build": "1.101.1",
|
|
60
59
|
"react": "^18.2.0",
|
|
61
60
|
"react-native": "0.74.1"
|
|
62
61
|
},
|
package/types/Dialog.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { GetProps, StackProps, TamaguiElement } from '@tamagui/core';
|
|
2
2
|
import { TamaguiTextElement } from '@tamagui/core';
|
|
3
|
-
import type { Scope } from '@tamagui/create-context';
|
|
4
3
|
import type { DismissableProps } from '@tamagui/dismissable';
|
|
5
4
|
import type { FocusScopeProps } from '@tamagui/focus-scope';
|
|
6
5
|
import type { PortalItemProps } from '@tamagui/portal';
|
|
@@ -53,10 +52,10 @@ type DialogPortalProps = Omit<PortalItemProps, 'asChild'> & YStackProps & {
|
|
|
53
52
|
export declare const DialogPortalFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
54
53
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
55
54
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
56
|
-
top?: number
|
|
57
|
-
bottom?: number
|
|
58
|
-
left?: number
|
|
59
|
-
right?: number
|
|
55
|
+
top?: number;
|
|
56
|
+
bottom?: number;
|
|
57
|
+
left?: number;
|
|
58
|
+
right?: number;
|
|
60
59
|
} | undefined;
|
|
61
60
|
fullscreen?: boolean | undefined;
|
|
62
61
|
unstyled?: boolean | undefined;
|
|
@@ -69,10 +68,10 @@ export declare const DialogOverlayFrame: import("@tamagui/core").TamaguiComponen
|
|
|
69
68
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
70
69
|
fullscreen?: boolean | undefined;
|
|
71
70
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
72
|
-
top?: number
|
|
73
|
-
bottom?: number
|
|
74
|
-
left?: number
|
|
75
|
-
right?: number
|
|
71
|
+
top?: number;
|
|
72
|
+
bottom?: number;
|
|
73
|
+
left?: number;
|
|
74
|
+
right?: number;
|
|
76
75
|
} | undefined;
|
|
77
76
|
open?: boolean | undefined;
|
|
78
77
|
transparent?: boolean | undefined;
|
|
@@ -86,9 +85,6 @@ export declare const DialogOverlayFrame: import("@tamagui/core").TamaguiComponen
|
|
|
86
85
|
bordered?: number | boolean | undefined;
|
|
87
86
|
radiused?: boolean | undefined;
|
|
88
87
|
padded?: boolean | undefined;
|
|
89
|
-
/**
|
|
90
|
-
* Used to disable the remove scroll functionality when open
|
|
91
|
-
*/
|
|
92
88
|
chromeless?: boolean | "all" | undefined;
|
|
93
89
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
94
90
|
interface DialogOverlayProps extends YStackProps {
|
|
@@ -105,10 +101,10 @@ declare const DialogContentFrame: import("@tamagui/core").TamaguiComponent<impor
|
|
|
105
101
|
transparent?: boolean | undefined;
|
|
106
102
|
circular?: boolean | undefined;
|
|
107
103
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
108
|
-
top?: number
|
|
109
|
-
bottom?: number
|
|
110
|
-
left?: number
|
|
111
|
-
right?: number
|
|
104
|
+
top?: number;
|
|
105
|
+
bottom?: number;
|
|
106
|
+
left?: number;
|
|
107
|
+
right?: number;
|
|
112
108
|
} | undefined;
|
|
113
109
|
fullscreen?: boolean | undefined;
|
|
114
110
|
unstyled?: boolean | undefined;
|
|
@@ -219,30 +215,33 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
219
215
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
220
216
|
Close: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}>, "displayWhenAdapted"> & DialogCloseExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & DialogCloseExtraProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
|
|
221
217
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
222
|
-
Frame:
|
|
218
|
+
Frame: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
223
219
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
224
220
|
fullscreen?: boolean | undefined;
|
|
225
221
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
226
|
-
top?: number
|
|
227
|
-
bottom?: number
|
|
228
|
-
left?: number
|
|
229
|
-
right?: number
|
|
222
|
+
top?: number;
|
|
223
|
+
bottom?: number;
|
|
224
|
+
left?: number;
|
|
225
|
+
right?: number;
|
|
230
226
|
} | undefined;
|
|
231
227
|
unstyled?: boolean | undefined;
|
|
232
|
-
}>,
|
|
233
|
-
disableHideBottomOverflow?: boolean
|
|
234
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
228
|
+
}>, keyof {
|
|
229
|
+
disableHideBottomOverflow?: boolean;
|
|
230
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
231
|
+
}> & {
|
|
232
|
+
disableHideBottomOverflow?: boolean;
|
|
233
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
235
234
|
} & {
|
|
236
|
-
__scopeSheet?: Scope<any>;
|
|
237
|
-
} &
|
|
238
|
-
Overlay:
|
|
235
|
+
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
236
|
+
} & import("react").RefAttributes<unknown>>;
|
|
237
|
+
Overlay: import("react").MemoExoticComponent<(propsIn: import("@tamagui/sheet/types/types").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
239
238
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
240
239
|
fullscreen?: boolean | undefined;
|
|
241
240
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
242
|
-
top?: number
|
|
243
|
-
bottom?: number
|
|
244
|
-
left?: number
|
|
245
|
-
right?: number
|
|
241
|
+
top?: number;
|
|
242
|
+
bottom?: number;
|
|
243
|
+
left?: number;
|
|
244
|
+
right?: number;
|
|
246
245
|
} | undefined;
|
|
247
246
|
open?: boolean | undefined;
|
|
248
247
|
transparent?: boolean | undefined;
|
|
@@ -258,20 +257,20 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
258
257
|
padded?: boolean | undefined;
|
|
259
258
|
chromeless?: boolean | "all" | undefined;
|
|
260
259
|
}>>) => null>;
|
|
261
|
-
Handle:
|
|
262
|
-
open?: boolean
|
|
263
|
-
} &
|
|
264
|
-
open?: boolean
|
|
260
|
+
Handle: import("react").ForwardRefExoticComponent<import("@tamagui/core").StackNonStyleProps & 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, {}>> & {
|
|
261
|
+
open?: boolean;
|
|
262
|
+
} & import("react").RefAttributes<any>> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").StackNonStyleProps & 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, {}>> & {
|
|
263
|
+
open?: boolean;
|
|
265
264
|
}, any, any, any, {
|
|
266
|
-
open?: boolean
|
|
265
|
+
open?: boolean;
|
|
267
266
|
}, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
|
|
268
267
|
__tama: [import("@tamagui/core").StackNonStyleProps & 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, {}>> & {
|
|
269
|
-
open?: boolean
|
|
268
|
+
open?: boolean;
|
|
270
269
|
}, any, any, any, {
|
|
271
|
-
open?: boolean
|
|
270
|
+
open?: boolean;
|
|
272
271
|
}, {}];
|
|
273
272
|
};
|
|
274
|
-
ScrollView:
|
|
273
|
+
ScrollView: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "contentContainerStyle"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
275
274
|
readonly contentContainerStyle?: Partial<import("@tamagui/core").GetFinalProps<import("react-native").ScrollViewProps, import("@tamagui/core").StackStyleBase, {}>> | undefined;
|
|
276
275
|
}> & {
|
|
277
276
|
fullscreen?: boolean | undefined;
|
|
@@ -287,11 +286,11 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
287
286
|
readonly contentContainerStyle?: Partial<import("@tamagui/core").GetFinalProps<import("react-native").ScrollViewProps, import("@tamagui/core").StackStyleBase, {}>> | undefined;
|
|
288
287
|
}, {
|
|
289
288
|
fullscreen?: boolean | undefined;
|
|
290
|
-
}>> &
|
|
289
|
+
}>> & import("react").RefAttributes<import("react-native").ScrollView>>;
|
|
291
290
|
};
|
|
292
291
|
Adapt: (({ platform, when, children }: import("@tamagui/adapt").AdaptProps) => any) & {
|
|
293
292
|
Contents: {
|
|
294
|
-
(props: any):
|
|
293
|
+
(props: any): import("react").FunctionComponentElement<any>;
|
|
295
294
|
shouldForwardSpace: boolean;
|
|
296
295
|
};
|
|
297
296
|
};
|
|
@@ -299,7 +298,7 @@ declare const Dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAtt
|
|
|
299
298
|
export declare const DialogSheetContents: {
|
|
300
299
|
({ name, ...props }: {
|
|
301
300
|
name: string;
|
|
302
|
-
context: Omit<DialogContextValue,
|
|
301
|
+
context: Omit<DialogContextValue, "sheetBreakpoint">;
|
|
303
302
|
}): import("react/jsx-runtime").JSX.Element;
|
|
304
303
|
displayName: string;
|
|
305
304
|
};
|
package/types/Dialog.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AACzE,OAAO,EAEL,kBAAkB,EAQnB,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"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"}
|