@tamagui/sheet 1.100.6 → 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 +17 -18
- package/types/Sheet.d.ts +76 -77
- package/types/Sheet.d.ts.map +1 -1
- package/types/SheetContext.d.ts +5 -6
- package/types/SheetContext.d.ts.map +1 -1
- package/types/SheetController.d.ts.map +1 -1
- package/types/SheetImplementationCustom.d.ts +22 -23
- package/types/SheetImplementationCustom.d.ts.map +1 -1
- package/types/SheetScrollView.d.ts +0 -1
- package/types/SheetScrollView.d.ts.map +1 -1
- package/types/contexts.d.ts +0 -1
- package/types/contexts.d.ts.map +1 -1
- package/types/createSheet.d.ts +30 -30
- package/types/createSheet.d.ts.map +1 -1
- package/types/useSheet.d.ts +0 -1
- package/types/useSheet.d.ts.map +1 -1
- package/types/useSheetController.d.ts +0 -1
- package/types/useSheetController.d.ts.map +1 -1
- package/types/useSheetOpenState.d.ts +0 -1
- package/types/useSheetOpenState.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/sheet",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.101.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -33,27 +33,26 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@tamagui/animate-presence": "1.
|
|
37
|
-
"@tamagui/animations-react-native": "1.
|
|
38
|
-
"@tamagui/compose-refs": "1.
|
|
39
|
-
"@tamagui/constants": "1.
|
|
40
|
-
"@tamagui/core": "1.
|
|
41
|
-
"@tamagui/create-context": "1.
|
|
42
|
-
"@tamagui/helpers": "1.
|
|
43
|
-
"@tamagui/portal": "1.
|
|
44
|
-
"@tamagui/remove-scroll": "1.
|
|
45
|
-
"@tamagui/scroll-view": "1.
|
|
46
|
-
"@tamagui/stacks": "1.
|
|
47
|
-
"@tamagui/use-constant": "1.
|
|
48
|
-
"@tamagui/use-controllable-state": "1.
|
|
49
|
-
"@tamagui/use-keyboard-visible": "1.
|
|
36
|
+
"@tamagui/animate-presence": "1.101.1",
|
|
37
|
+
"@tamagui/animations-react-native": "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/helpers": "1.101.1",
|
|
43
|
+
"@tamagui/portal": "1.101.1",
|
|
44
|
+
"@tamagui/remove-scroll": "1.101.1",
|
|
45
|
+
"@tamagui/scroll-view": "1.101.1",
|
|
46
|
+
"@tamagui/stacks": "1.101.1",
|
|
47
|
+
"@tamagui/use-constant": "1.101.1",
|
|
48
|
+
"@tamagui/use-controllable-state": "1.101.1",
|
|
49
|
+
"@tamagui/use-keyboard-visible": "1.101.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"react": "*"
|
|
53
|
-
"react-native": "*"
|
|
52
|
+
"react": "*"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@tamagui/build": "1.
|
|
55
|
+
"@tamagui/build": "1.101.1",
|
|
57
56
|
"react": "^18.2.0",
|
|
58
57
|
"react-native": "0.74.1"
|
|
59
58
|
},
|
package/types/Sheet.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export { createSheetScope } from './SheetContext';
|
|
3
2
|
export * from './types';
|
|
4
3
|
export declare const Handle: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
5
4
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
6
5
|
fullscreen?: boolean | undefined;
|
|
7
6
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
8
|
-
top?: number
|
|
9
|
-
bottom?: number
|
|
10
|
-
left?: number
|
|
11
|
-
right?: number
|
|
7
|
+
top?: number;
|
|
8
|
+
bottom?: number;
|
|
9
|
+
left?: number;
|
|
10
|
+
right?: number;
|
|
12
11
|
} | undefined;
|
|
13
12
|
open?: boolean | undefined;
|
|
14
13
|
unstyled?: boolean | undefined;
|
|
@@ -17,10 +16,10 @@ export declare const Overlay: import("@tamagui/core").TamaguiComponent<import("@
|
|
|
17
16
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
18
17
|
fullscreen?: boolean | undefined;
|
|
19
18
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
20
|
-
top?: number
|
|
21
|
-
bottom?: number
|
|
22
|
-
left?: number
|
|
23
|
-
right?: number
|
|
19
|
+
top?: number;
|
|
20
|
+
bottom?: number;
|
|
21
|
+
left?: number;
|
|
22
|
+
right?: number;
|
|
24
23
|
} | undefined;
|
|
25
24
|
open?: boolean | undefined;
|
|
26
25
|
transparent?: boolean | undefined;
|
|
@@ -40,37 +39,37 @@ export declare const Frame: import("@tamagui/core").TamaguiComponent<import("@ta
|
|
|
40
39
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
41
40
|
fullscreen?: boolean | undefined;
|
|
42
41
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
43
|
-
top?: number
|
|
44
|
-
bottom?: number
|
|
45
|
-
left?: number
|
|
46
|
-
right?: number
|
|
42
|
+
top?: number;
|
|
43
|
+
bottom?: number;
|
|
44
|
+
left?: number;
|
|
45
|
+
right?: number;
|
|
47
46
|
} | undefined;
|
|
48
47
|
unstyled?: boolean | undefined;
|
|
49
48
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
50
49
|
export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
51
|
-
open?: boolean
|
|
52
|
-
defaultOpen?: boolean
|
|
53
|
-
onOpenChange?: ((
|
|
54
|
-
position?: number
|
|
55
|
-
defaultPosition?: number
|
|
56
|
-
snapPoints?: (string | number)[]
|
|
57
|
-
snapPointsMode?: import("./types").SnapPointsMode
|
|
58
|
-
onPositionChange?: import("./types").PositionChangeHandler
|
|
50
|
+
open?: boolean;
|
|
51
|
+
defaultOpen?: boolean;
|
|
52
|
+
onOpenChange?: ((open: boolean) => void) | import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
53
|
+
position?: number;
|
|
54
|
+
defaultPosition?: number;
|
|
55
|
+
snapPoints?: (string | number)[];
|
|
56
|
+
snapPointsMode?: import("./types").SnapPointsMode;
|
|
57
|
+
onPositionChange?: import("./types").PositionChangeHandler;
|
|
59
58
|
children?: import("react").ReactNode;
|
|
60
|
-
dismissOnOverlayPress?: boolean
|
|
61
|
-
dismissOnSnapToBottom?: boolean
|
|
62
|
-
forceRemoveScrollEnabled?: boolean
|
|
63
|
-
animationConfig?: import("@tamagui/core").AnimatedNumberStrategy
|
|
64
|
-
unmountChildrenWhenHidden?: boolean
|
|
65
|
-
native?:
|
|
66
|
-
animation?: import("@tamagui/core").AnimationProp
|
|
67
|
-
handleDisableScroll?: boolean
|
|
68
|
-
disableDrag?: boolean
|
|
69
|
-
modal?: boolean
|
|
70
|
-
zIndex?: number
|
|
71
|
-
portalProps?: import("@tamagui/portal").PortalProps
|
|
72
|
-
moveOnKeyboardChange?: boolean
|
|
73
|
-
containerComponent?: import("react").ComponentType<any
|
|
59
|
+
dismissOnOverlayPress?: boolean;
|
|
60
|
+
dismissOnSnapToBottom?: boolean;
|
|
61
|
+
forceRemoveScrollEnabled?: boolean;
|
|
62
|
+
animationConfig?: import("@tamagui/core").AnimatedNumberStrategy;
|
|
63
|
+
unmountChildrenWhenHidden?: boolean;
|
|
64
|
+
native?: "ios"[] | boolean;
|
|
65
|
+
animation?: import("@tamagui/core").AnimationProp;
|
|
66
|
+
handleDisableScroll?: boolean;
|
|
67
|
+
disableDrag?: boolean;
|
|
68
|
+
modal?: boolean;
|
|
69
|
+
zIndex?: number;
|
|
70
|
+
portalProps?: import("@tamagui/portal").PortalProps;
|
|
71
|
+
moveOnKeyboardChange?: boolean;
|
|
72
|
+
containerComponent?: import("react").ComponentType<any>;
|
|
74
73
|
} & {
|
|
75
74
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
76
75
|
} & import("react").RefAttributes<import("react-native").View>> & {
|
|
@@ -79,18 +78,18 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
79
78
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
80
79
|
fullscreen?: boolean | undefined;
|
|
81
80
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
82
|
-
top?: number
|
|
83
|
-
bottom?: number
|
|
84
|
-
left?: number
|
|
85
|
-
right?: number
|
|
81
|
+
top?: number;
|
|
82
|
+
bottom?: number;
|
|
83
|
+
left?: number;
|
|
84
|
+
right?: number;
|
|
86
85
|
} | undefined;
|
|
87
86
|
unstyled?: boolean | undefined;
|
|
88
87
|
}>, keyof {
|
|
89
|
-
disableHideBottomOverflow?: boolean
|
|
90
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
88
|
+
disableHideBottomOverflow?: boolean;
|
|
89
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
91
90
|
}> & {
|
|
92
|
-
disableHideBottomOverflow?: boolean
|
|
93
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
91
|
+
disableHideBottomOverflow?: boolean;
|
|
92
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
94
93
|
} & {
|
|
95
94
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
96
95
|
} & import("react").RefAttributes<unknown>>;
|
|
@@ -98,10 +97,10 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
98
97
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
99
98
|
fullscreen?: boolean | undefined;
|
|
100
99
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
101
|
-
top?: number
|
|
102
|
-
bottom?: number
|
|
103
|
-
left?: number
|
|
104
|
-
right?: number
|
|
100
|
+
top?: number;
|
|
101
|
+
bottom?: number;
|
|
102
|
+
left?: number;
|
|
103
|
+
right?: number;
|
|
105
104
|
} | undefined;
|
|
106
105
|
open?: boolean | undefined;
|
|
107
106
|
transparent?: boolean | undefined;
|
|
@@ -118,16 +117,16 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
118
117
|
chromeless?: boolean | "all" | undefined;
|
|
119
118
|
}>>) => null>;
|
|
120
119
|
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, {}>> & {
|
|
121
|
-
open?: boolean
|
|
120
|
+
open?: boolean;
|
|
122
121
|
} & 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, {}>> & {
|
|
123
|
-
open?: boolean
|
|
122
|
+
open?: boolean;
|
|
124
123
|
}, any, any, any, {
|
|
125
|
-
open?: boolean
|
|
124
|
+
open?: boolean;
|
|
126
125
|
}, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
|
|
127
126
|
__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, {}>> & {
|
|
128
|
-
open?: boolean
|
|
127
|
+
open?: boolean;
|
|
129
128
|
}, any, any, any, {
|
|
130
|
-
open?: boolean
|
|
129
|
+
open?: boolean;
|
|
131
130
|
}, {}];
|
|
132
131
|
};
|
|
133
132
|
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 & {
|
|
@@ -152,18 +151,18 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
152
151
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
153
152
|
fullscreen?: boolean | undefined;
|
|
154
153
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
155
|
-
top?: number
|
|
156
|
-
bottom?: number
|
|
157
|
-
left?: number
|
|
158
|
-
right?: number
|
|
154
|
+
top?: number;
|
|
155
|
+
bottom?: number;
|
|
156
|
+
left?: number;
|
|
157
|
+
right?: number;
|
|
159
158
|
} | undefined;
|
|
160
159
|
unstyled?: boolean | undefined;
|
|
161
160
|
}>, keyof {
|
|
162
|
-
disableHideBottomOverflow?: boolean
|
|
163
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
161
|
+
disableHideBottomOverflow?: boolean;
|
|
162
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
164
163
|
}> & {
|
|
165
|
-
disableHideBottomOverflow?: boolean
|
|
166
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
164
|
+
disableHideBottomOverflow?: boolean;
|
|
165
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
167
166
|
} & {
|
|
168
167
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
169
168
|
} & import("react").RefAttributes<unknown>>;
|
|
@@ -171,10 +170,10 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
171
170
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
172
171
|
fullscreen?: boolean | undefined;
|
|
173
172
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
174
|
-
top?: number
|
|
175
|
-
bottom?: number
|
|
176
|
-
left?: number
|
|
177
|
-
right?: number
|
|
173
|
+
top?: number;
|
|
174
|
+
bottom?: number;
|
|
175
|
+
left?: number;
|
|
176
|
+
right?: number;
|
|
178
177
|
} | undefined;
|
|
179
178
|
open?: boolean | undefined;
|
|
180
179
|
transparent?: boolean | undefined;
|
|
@@ -191,16 +190,16 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
191
190
|
chromeless?: boolean | "all" | undefined;
|
|
192
191
|
}>>) => null>;
|
|
193
192
|
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, {}>> & {
|
|
194
|
-
open?: boolean
|
|
193
|
+
open?: boolean;
|
|
195
194
|
} & 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, {}>> & {
|
|
196
|
-
open?: boolean
|
|
195
|
+
open?: boolean;
|
|
197
196
|
}, any, any, any, {
|
|
198
|
-
open?: boolean
|
|
197
|
+
open?: boolean;
|
|
199
198
|
}, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
|
|
200
199
|
__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, {}>> & {
|
|
201
|
-
open?: boolean
|
|
200
|
+
open?: boolean;
|
|
202
201
|
}, any, any, any, {
|
|
203
|
-
open?: boolean
|
|
202
|
+
open?: boolean;
|
|
204
203
|
}, {}];
|
|
205
204
|
};
|
|
206
205
|
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 & {
|
|
@@ -226,10 +225,10 @@ export declare const SheetOverlayFrame: import("@tamagui/core").TamaguiComponent
|
|
|
226
225
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
227
226
|
fullscreen?: boolean | undefined;
|
|
228
227
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
229
|
-
top?: number
|
|
230
|
-
bottom?: number
|
|
231
|
-
left?: number
|
|
232
|
-
right?: number
|
|
228
|
+
top?: number;
|
|
229
|
+
bottom?: number;
|
|
230
|
+
left?: number;
|
|
231
|
+
right?: number;
|
|
233
232
|
} | undefined;
|
|
234
233
|
open?: boolean | undefined;
|
|
235
234
|
transparent?: boolean | undefined;
|
|
@@ -250,10 +249,10 @@ export declare const SheetHandleFrame: import("@tamagui/core").TamaguiComponent<
|
|
|
250
249
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
251
250
|
fullscreen?: boolean | undefined;
|
|
252
251
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
253
|
-
top?: number
|
|
254
|
-
bottom?: number
|
|
255
|
-
left?: number
|
|
256
|
-
right?: number
|
|
252
|
+
top?: number;
|
|
253
|
+
bottom?: number;
|
|
254
|
+
left?: number;
|
|
255
|
+
right?: number;
|
|
257
256
|
} | undefined;
|
|
258
257
|
open?: boolean | undefined;
|
|
259
258
|
unstyled?: boolean | undefined;
|
package/types/Sheet.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sheet.d.ts","sourceRoot":"","sources":["../src/Sheet.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Sheet.d.ts","sourceRoot":"","sources":["../src/Sheet.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACjD,cAAc,SAAS,CAAA;AAMvB,eAAO,MAAM,MAAM;;;;;;;;;;;8CAkCjB,CAAA;AAMF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;8CA6BlB,CAAA;AAMF,eAAO,MAAM,KAAK;;;;;;;;;;8CAoBhB,CAAA;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4DAnGf,eAAa,uBAAuB,cAAc,0BAA0B,eAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuG3F,CAAA;AAEF,uCAAuC;AACvC,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;8CAAU,CAAA;AAExC,uCAAuC;AACvC,eAAO,MAAM,gBAAgB;;;;;;;;;;;8CAAS,CAAA"}
|
package/types/SheetContext.d.ts
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const createSheetContext: <ContextValueType extends object | null>(rootComponentName: string, defaultContext?: ContextValueType | undefined) => readonly [{
|
|
1
|
+
export declare const createSheetContext: <ContextValueType extends object | null>(rootComponentName: string, defaultContext?: ContextValueType) => readonly [{
|
|
3
2
|
(props: ContextValueType & {
|
|
4
3
|
scope: import("@tamagui/create-context").Scope<ContextValueType>;
|
|
5
4
|
children: import("react").ReactNode;
|
|
6
5
|
}): import("react/jsx-runtime").JSX.Element;
|
|
7
6
|
displayName: string;
|
|
8
7
|
}, (consumerName: string, scope: import("@tamagui/create-context").Scope<ContextValueType | undefined>, options?: {
|
|
9
|
-
warn?: boolean
|
|
10
|
-
fallback?: Partial<ContextValueType
|
|
11
|
-
}
|
|
8
|
+
warn?: boolean;
|
|
9
|
+
fallback?: Partial<ContextValueType>;
|
|
10
|
+
}) => ContextValueType], createSheetScope: import("@tamagui/create-context").CreateScope;
|
|
12
11
|
export declare const SheetProvider: {
|
|
13
12
|
(props: {
|
|
14
13
|
screenSize: number;
|
|
@@ -91,7 +90,7 @@ export declare const SheetProvider: {
|
|
|
91
90
|
setPositionImmediate: import("react").Dispatch<import("react").SetStateAction<number>>;
|
|
92
91
|
onlyShowFrame: boolean;
|
|
93
92
|
} | undefined>, options?: {
|
|
94
|
-
warn?: boolean
|
|
93
|
+
warn?: boolean;
|
|
95
94
|
fallback?: Partial<{
|
|
96
95
|
screenSize: number;
|
|
97
96
|
maxSnapPoint: string | number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SheetContext.d.ts","sourceRoot":"","sources":["../src/SheetContext.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SheetContext.d.ts","sourceRoot":"","sources":["../src/SheetContext.tsx"],"names":[],"mappings":"AAKA,eAAO,MAAO,kBAAkB;;;;eAMmrB,mBAAmB;;+GAAqH,CAAC;QAAY,CAAC;YAAuB,CAAC;yBAN/1B,gBAAgB,+CAAkC,CAAA;AAEpF,eAAO,MAAO,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAIwrB,mBAAmB;;GAJzsB,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3C,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SheetController.d.ts","sourceRoot":"","sources":["../src/SheetController.tsx"],"names":[],"mappings":"AACA,OAAO,EAAW,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AAE/C,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,sBAAsB,CAAA;AAGvE,eAAO,MAAM,eAAe,2DAIzB,
|
|
1
|
+
{"version":3,"file":"SheetController.d.ts","sourceRoot":"","sources":["../src/SheetController.tsx"],"names":[],"mappings":"AACA,OAAO,EAAW,KAAK,SAAS,EAAE,MAAM,OAAO,CAAA;AAE/C,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,sBAAsB,CAAA;AAGvE,eAAO,MAAM,eAAe,2DAIzB,OAAO,CAAC,2BAA2B,CAAC,GAAG;IAAE,QAAQ,CAAC,EAAE,SAAS,CAAA;CAAE,4CAkBjE,CAAA"}
|
|
@@ -1,30 +1,29 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { View } from 'react-native';
|
|
3
2
|
import type { SnapPointsMode } from './types';
|
|
4
3
|
export declare const SheetImplementationCustom: (props: Omit<{
|
|
5
|
-
open?: boolean
|
|
6
|
-
defaultOpen?: boolean
|
|
7
|
-
onOpenChange?: ((
|
|
8
|
-
position?: number
|
|
9
|
-
defaultPosition?: number
|
|
10
|
-
snapPoints?: (string | number)[]
|
|
11
|
-
snapPointsMode?: SnapPointsMode
|
|
12
|
-
onPositionChange?: import("./types").PositionChangeHandler
|
|
4
|
+
open?: boolean;
|
|
5
|
+
defaultOpen?: boolean;
|
|
6
|
+
onOpenChange?: ((open: boolean) => void) | import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
7
|
+
position?: number;
|
|
8
|
+
defaultPosition?: number;
|
|
9
|
+
snapPoints?: (string | number)[];
|
|
10
|
+
snapPointsMode?: SnapPointsMode;
|
|
11
|
+
onPositionChange?: import("./types").PositionChangeHandler;
|
|
13
12
|
children?: import("react").ReactNode;
|
|
14
|
-
dismissOnOverlayPress?: boolean
|
|
15
|
-
dismissOnSnapToBottom?: boolean
|
|
16
|
-
forceRemoveScrollEnabled?: boolean
|
|
17
|
-
animationConfig?: import("@tamagui/core").AnimatedNumberStrategy
|
|
18
|
-
unmountChildrenWhenHidden?: boolean
|
|
19
|
-
native?:
|
|
20
|
-
animation?: import("@tamagui/core").AnimationProp
|
|
21
|
-
handleDisableScroll?: boolean
|
|
22
|
-
disableDrag?: boolean
|
|
23
|
-
modal?: boolean
|
|
24
|
-
zIndex?: number
|
|
25
|
-
portalProps?: import("@tamagui/portal").PortalProps
|
|
26
|
-
moveOnKeyboardChange?: boolean
|
|
27
|
-
containerComponent?: import("react").ComponentType<any
|
|
13
|
+
dismissOnOverlayPress?: boolean;
|
|
14
|
+
dismissOnSnapToBottom?: boolean;
|
|
15
|
+
forceRemoveScrollEnabled?: boolean;
|
|
16
|
+
animationConfig?: import("@tamagui/core").AnimatedNumberStrategy;
|
|
17
|
+
unmountChildrenWhenHidden?: boolean;
|
|
18
|
+
native?: "ios"[] | boolean;
|
|
19
|
+
animation?: import("@tamagui/core").AnimationProp;
|
|
20
|
+
handleDisableScroll?: boolean;
|
|
21
|
+
disableDrag?: boolean;
|
|
22
|
+
modal?: boolean;
|
|
23
|
+
zIndex?: number;
|
|
24
|
+
portalProps?: import("@tamagui/portal").PortalProps;
|
|
25
|
+
moveOnKeyboardChange?: boolean;
|
|
26
|
+
containerComponent?: import("react").ComponentType<any>;
|
|
28
27
|
} & {
|
|
29
28
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
30
29
|
} & import("react").RefAttributes<View>, "theme" | "themeInverse"> & import("@tamagui/core").ThemeableProps) => import("react").ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SheetImplementationCustom.d.ts","sourceRoot":"","sources":["../src/SheetImplementationCustom.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SheetImplementationCustom.d.ts","sourceRoot":"","sources":["../src/SheetImplementationCustom.tsx"],"names":[],"mappings":"AA+BA,OAAO,EAAsC,IAAI,EAAE,MAAM,cAAc,CAAA;AAMvE,OAAO,KAAK,EAAc,cAAc,EAAE,MAAM,SAAS,CAAA;AAMzD,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;yIAqdrC,CAAA"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { ScrollView as RNScrollView } from 'react-native';
|
|
3
2
|
export declare const SheetScrollView: 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 & {
|
|
4
3
|
readonly contentContainerStyle?: Partial<import("@tamagui/core").GetFinalProps<import("react-native").ScrollViewProps, import("@tamagui/core").StackStyleBase, {}>> | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SheetScrollView.d.ts","sourceRoot":"","sources":["../src/SheetScrollView.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SheetScrollView.d.ts","sourceRoot":"","sources":["../src/SheetScrollView.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,UAAU,IAAI,YAAY,EAAE,MAAM,cAAc,CAAA;AAa9D,eAAO,MAAM,eAAe;oDARzB,eAAc,uBAAuB,cAAc,0BAA0B,eAAc;;;;;;;;;;;;;;;kDAqI7F,CAAA"}
|
package/types/contexts.d.ts
CHANGED
package/types/contexts.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contexts.d.ts","sourceRoot":"","sources":["../src/contexts.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"contexts.d.ts","sourceRoot":"","sources":["../src/contexts.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB;;EAE7B,CAAA;AAEF,eAAO,MAAM,uBAAuB,sCACtB,OAAO,KAAK,IAAI,SACvB,CAAA"}
|
package/types/createSheet.d.ts
CHANGED
|
@@ -12,29 +12,29 @@ export declare function createSheet<H extends SheetStyledComponent | TamaguiComp
|
|
|
12
12
|
Frame: F;
|
|
13
13
|
Overlay: O;
|
|
14
14
|
}): import("react").ForwardRefExoticComponent<{
|
|
15
|
-
open?: boolean
|
|
16
|
-
defaultOpen?: boolean
|
|
17
|
-
onOpenChange?: ((
|
|
18
|
-
position?: number
|
|
19
|
-
defaultPosition?: number
|
|
20
|
-
snapPoints?: (string | number)[]
|
|
21
|
-
snapPointsMode?: import("./types").SnapPointsMode
|
|
22
|
-
onPositionChange?: import("./types").PositionChangeHandler
|
|
15
|
+
open?: boolean;
|
|
16
|
+
defaultOpen?: boolean;
|
|
17
|
+
onOpenChange?: ((open: boolean) => void) | import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
18
|
+
position?: number;
|
|
19
|
+
defaultPosition?: number;
|
|
20
|
+
snapPoints?: (string | number)[];
|
|
21
|
+
snapPointsMode?: import("./types").SnapPointsMode;
|
|
22
|
+
onPositionChange?: import("./types").PositionChangeHandler;
|
|
23
23
|
children?: import("react").ReactNode;
|
|
24
|
-
dismissOnOverlayPress?: boolean
|
|
25
|
-
dismissOnSnapToBottom?: boolean
|
|
26
|
-
forceRemoveScrollEnabled?: boolean
|
|
27
|
-
animationConfig?: import("@tamagui/core").AnimatedNumberStrategy
|
|
28
|
-
unmountChildrenWhenHidden?: boolean
|
|
29
|
-
native?:
|
|
30
|
-
animation?: import("@tamagui/core").AnimationProp
|
|
31
|
-
handleDisableScroll?: boolean
|
|
32
|
-
disableDrag?: boolean
|
|
33
|
-
modal?: boolean
|
|
34
|
-
zIndex?: number
|
|
35
|
-
portalProps?: import("@tamagui/portal").PortalProps
|
|
36
|
-
moveOnKeyboardChange?: boolean
|
|
37
|
-
containerComponent?: import("react").ComponentType<any
|
|
24
|
+
dismissOnOverlayPress?: boolean;
|
|
25
|
+
dismissOnSnapToBottom?: boolean;
|
|
26
|
+
forceRemoveScrollEnabled?: boolean;
|
|
27
|
+
animationConfig?: import("@tamagui/core").AnimatedNumberStrategy;
|
|
28
|
+
unmountChildrenWhenHidden?: boolean;
|
|
29
|
+
native?: "ios"[] | boolean;
|
|
30
|
+
animation?: import("@tamagui/core").AnimationProp;
|
|
31
|
+
handleDisableScroll?: boolean;
|
|
32
|
+
disableDrag?: boolean;
|
|
33
|
+
modal?: boolean;
|
|
34
|
+
zIndex?: number;
|
|
35
|
+
portalProps?: import("@tamagui/portal").PortalProps;
|
|
36
|
+
moveOnKeyboardChange?: boolean;
|
|
37
|
+
containerComponent?: import("react").ComponentType<any>;
|
|
38
38
|
} & {
|
|
39
39
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
40
40
|
} & RefAttributes<View>> & {
|
|
@@ -45,26 +45,26 @@ export declare function createSheet<H extends SheetStyledComponent | TamaguiComp
|
|
|
45
45
|
* this is useful if your Sheet has a spring animation that bounces "past" the top when
|
|
46
46
|
* opening, preventing it from showing the content underneath.
|
|
47
47
|
*/
|
|
48
|
-
disableHideBottomOverflow?: boolean
|
|
48
|
+
disableHideBottomOverflow?: boolean;
|
|
49
49
|
/**
|
|
50
50
|
* Adds padding accounting for the currently offscreen content, so if you put a flex element inside
|
|
51
51
|
* the sheet, it will always flex to the height of the visible amount of the sheet. If this is not
|
|
52
52
|
* turned on, the inner content is always set to the max height of the sheet.
|
|
53
53
|
*/
|
|
54
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
54
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
55
55
|
}> & {
|
|
56
56
|
/**
|
|
57
57
|
* By default the sheet adds a view below its bottom that extends down another 50%,
|
|
58
58
|
* this is useful if your Sheet has a spring animation that bounces "past" the top when
|
|
59
59
|
* opening, preventing it from showing the content underneath.
|
|
60
60
|
*/
|
|
61
|
-
disableHideBottomOverflow?: boolean
|
|
61
|
+
disableHideBottomOverflow?: boolean;
|
|
62
62
|
/**
|
|
63
63
|
* Adds padding accounting for the currently offscreen content, so if you put a flex element inside
|
|
64
64
|
* the sheet, it will always flex to the height of the visible amount of the sheet. If this is not
|
|
65
65
|
* turned on, the inner content is always set to the max height of the sheet.
|
|
66
66
|
*/
|
|
67
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
67
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
68
68
|
}>> & RefAttributes<unknown>>;
|
|
69
69
|
Overlay: import("react").MemoExoticComponent<(propsIn: SheetScopedProps<GetProps<typeof Overlay>>) => null>;
|
|
70
70
|
Handle: SheetStyledComponent;
|
|
@@ -92,26 +92,26 @@ export declare function createSheet<H extends SheetStyledComponent | TamaguiComp
|
|
|
92
92
|
* this is useful if your Sheet has a spring animation that bounces "past" the top when
|
|
93
93
|
* opening, preventing it from showing the content underneath.
|
|
94
94
|
*/
|
|
95
|
-
disableHideBottomOverflow?: boolean
|
|
95
|
+
disableHideBottomOverflow?: boolean;
|
|
96
96
|
/**
|
|
97
97
|
* Adds padding accounting for the currently offscreen content, so if you put a flex element inside
|
|
98
98
|
* the sheet, it will always flex to the height of the visible amount of the sheet. If this is not
|
|
99
99
|
* turned on, the inner content is always set to the max height of the sheet.
|
|
100
100
|
*/
|
|
101
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
101
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
102
102
|
}> & {
|
|
103
103
|
/**
|
|
104
104
|
* By default the sheet adds a view below its bottom that extends down another 50%,
|
|
105
105
|
* this is useful if your Sheet has a spring animation that bounces "past" the top when
|
|
106
106
|
* opening, preventing it from showing the content underneath.
|
|
107
107
|
*/
|
|
108
|
-
disableHideBottomOverflow?: boolean
|
|
108
|
+
disableHideBottomOverflow?: boolean;
|
|
109
109
|
/**
|
|
110
110
|
* Adds padding accounting for the currently offscreen content, so if you put a flex element inside
|
|
111
111
|
* the sheet, it will always flex to the height of the visible amount of the sheet. If this is not
|
|
112
112
|
* turned on, the inner content is always set to the max height of the sheet.
|
|
113
113
|
*/
|
|
114
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
114
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
115
115
|
}>> & RefAttributes<unknown>>;
|
|
116
116
|
Overlay: import("react").MemoExoticComponent<(propsIn: SheetScopedProps<GetProps<typeof Overlay>>) => null>;
|
|
117
117
|
Handle: SheetStyledComponent;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createSheet.d.ts","sourceRoot":"","sources":["../src/createSheet.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,QAAQ,EACR,UAAU,EACV,gBAAgB,EAChB,iCAAiC,EAElC,MAAM,eAAe,CAAA;AAKtB,OAAO,KAAK,EAAE,iBAAiB,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAE7D,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAQxC,OAAO,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAI3D,KAAK,gBAAgB,GAAG;IACtB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAED,KAAK,SAAS,GAAG,UAAU,GAAG,gBAAgB,CAAA;AAE9C,KAAK,oBAAoB,GAAG,iCAAiC,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAA;AAE1F,wBAAgB,WAAW,CACzB,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;IAAE,MAAM,EAAE,CAAC,CAAC;IAAC,KAAK,EAAE,CAAC,CAAC;IAAC,OAAO,EAAE,CAAC,CAAA;CAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA6E7D;;;;eAIG
|
|
1
|
+
{"version":3,"file":"createSheet.d.ts","sourceRoot":"","sources":["../src/createSheet.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,QAAQ,EACR,UAAU,EACV,gBAAgB,EAChB,iCAAiC,EAElC,MAAM,eAAe,CAAA;AAKtB,OAAO,KAAK,EAAE,iBAAiB,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAE7D,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAQxC,OAAO,KAAK,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAI3D,KAAK,gBAAgB,GAAG;IACtB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAED,KAAK,SAAS,GAAG,UAAU,GAAG,gBAAgB,CAAA;AAE9C,KAAK,oBAAoB,GAAG,iCAAiC,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAA;AAE1F,wBAAgB,WAAW,CACzB,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;IAAE,MAAM,EAAE,CAAC,CAAC;IAAC,KAAK,EAAE,CAAC,CAAC;IAAC,OAAO,EAAE,CAAC,CAAA;CAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA6E7D;;;;eAIG;wCACyB,OAAO;YAEnC;;;;eAIG;+CACgC,OAAO;;YAZ1C;;;;eAIG;wCACyB,OAAO;YAEnC;;;;eAIG;+CACgC,OAAO;;+DArD3B,gBAAgB,CAAC,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;;;4DAhEX,eACxC,uBAAuB,cAAc,0BACnC,eAAa;;;;;;;;;;;;;;;;;;QAuGrB;;;;WAIG;oCACyB,OAAO;QAEnC;;;;WAIG;2CACgC,OAAO;;QAZ1C;;;;WAIG;oCACyB,OAAO;QAEnC;;;;WAIG;2CACgC,OAAO;;2DArD3B,gBAAgB,CAAC,QAAQ,CAAC,OAAO,OAAO,CAAC,CAAC;;;;;;;;;;;;;;;;;;;EAoL5D"}
|
package/types/useSheet.d.ts
CHANGED
package/types/useSheet.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useSheet.d.ts","sourceRoot":"","sources":["../src/useSheet.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useSheet.d.ts","sourceRoot":"","sources":["../src/useSheet.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;CAAuC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useSheetController.d.ts","sourceRoot":"","sources":["../src/useSheetController.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useSheetController.d.ts","sourceRoot":"","sources":["../src/useSheetController.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB;;;;;CAU9B,CAAA;AAED,eAAO,MAAM,sBAAsB,6DAElC,CAAA;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,YAAY,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAC,CAAA;CACxF,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useSheetOpenState.d.ts","sourceRoot":"","sources":["../src/useSheetOpenState.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useSheetOpenState.d.ts","sourceRoot":"","sources":["../src/useSheetOpenState.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAGzC,eAAO,MAAM,iBAAiB,UAAW,UAAU;;;;;CAsBlD,CAAA;AAED,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAA"}
|