@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/sheet",
3
- "version": "1.100.6",
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.100.6",
37
- "@tamagui/animations-react-native": "1.100.6",
38
- "@tamagui/compose-refs": "1.100.6",
39
- "@tamagui/constants": "1.100.6",
40
- "@tamagui/core": "1.100.6",
41
- "@tamagui/create-context": "1.100.6",
42
- "@tamagui/helpers": "1.100.6",
43
- "@tamagui/portal": "1.100.6",
44
- "@tamagui/remove-scroll": "1.100.6",
45
- "@tamagui/scroll-view": "1.100.6",
46
- "@tamagui/stacks": "1.100.6",
47
- "@tamagui/use-constant": "1.100.6",
48
- "@tamagui/use-controllable-state": "1.100.6",
49
- "@tamagui/use-keyboard-visible": "1.100.6"
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.100.6",
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 | undefined;
9
- bottom?: number | undefined;
10
- left?: number | undefined;
11
- right?: number | undefined;
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 | undefined;
21
- bottom?: number | undefined;
22
- left?: number | undefined;
23
- right?: number | undefined;
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 | undefined;
44
- bottom?: number | undefined;
45
- left?: number | undefined;
46
- right?: number | undefined;
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 | undefined;
52
- defaultOpen?: boolean | undefined;
53
- onOpenChange?: (((open: boolean) => void) | import("react").Dispatch<import("react").SetStateAction<boolean>>) | undefined;
54
- position?: number | undefined;
55
- defaultPosition?: number | undefined;
56
- snapPoints?: (string | number)[] | undefined;
57
- snapPointsMode?: import("./types").SnapPointsMode | undefined;
58
- onPositionChange?: import("./types").PositionChangeHandler | undefined;
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 | undefined;
61
- dismissOnSnapToBottom?: boolean | undefined;
62
- forceRemoveScrollEnabled?: boolean | undefined;
63
- animationConfig?: import("@tamagui/core").AnimatedNumberStrategy | undefined;
64
- unmountChildrenWhenHidden?: boolean | undefined;
65
- native?: boolean | "ios"[] | undefined;
66
- animation?: import("@tamagui/core").AnimationProp | undefined;
67
- handleDisableScroll?: boolean | undefined;
68
- disableDrag?: boolean | undefined;
69
- modal?: boolean | undefined;
70
- zIndex?: number | undefined;
71
- portalProps?: import("@tamagui/portal").PortalProps | undefined;
72
- moveOnKeyboardChange?: boolean | undefined;
73
- containerComponent?: import("react").ComponentType<any> | undefined;
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 | undefined;
83
- bottom?: number | undefined;
84
- left?: number | undefined;
85
- right?: number | undefined;
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 | undefined;
90
- adjustPaddingForOffscreenContent?: boolean | undefined;
88
+ disableHideBottomOverflow?: boolean;
89
+ adjustPaddingForOffscreenContent?: boolean;
91
90
  }> & {
92
- disableHideBottomOverflow?: boolean | undefined;
93
- adjustPaddingForOffscreenContent?: boolean | undefined;
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 | undefined;
102
- bottom?: number | undefined;
103
- left?: number | undefined;
104
- right?: number | undefined;
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 | undefined;
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 | undefined;
122
+ open?: boolean;
124
123
  }, any, any, any, {
125
- open?: boolean | undefined;
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 | undefined;
127
+ open?: boolean;
129
128
  }, any, any, any, {
130
- open?: boolean | undefined;
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 | undefined;
156
- bottom?: number | undefined;
157
- left?: number | undefined;
158
- right?: number | undefined;
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 | undefined;
163
- adjustPaddingForOffscreenContent?: boolean | undefined;
161
+ disableHideBottomOverflow?: boolean;
162
+ adjustPaddingForOffscreenContent?: boolean;
164
163
  }> & {
165
- disableHideBottomOverflow?: boolean | undefined;
166
- adjustPaddingForOffscreenContent?: boolean | undefined;
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 | undefined;
175
- bottom?: number | undefined;
176
- left?: number | undefined;
177
- right?: number | undefined;
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 | undefined;
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 | undefined;
195
+ open?: boolean;
197
196
  }, any, any, any, {
198
- open?: boolean | undefined;
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 | undefined;
200
+ open?: boolean;
202
201
  }, any, any, any, {
203
- open?: boolean | undefined;
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 | undefined;
230
- bottom?: number | undefined;
231
- left?: number | undefined;
232
- right?: number | undefined;
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 | undefined;
254
- bottom?: number | undefined;
255
- left?: number | undefined;
256
- right?: number | undefined;
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;
@@ -1 +1 @@
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIhB,CAAA;AAEF,uCAAuC;AACvC,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;8CAAU,CAAA;AAExC,uCAAuC;AACvC,eAAO,MAAM,gBAAgB;;;;;;;;;;;8CAAS,CAAA"}
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"}
@@ -1,14 +1,13 @@
1
- /// <reference types="react" />
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 | undefined;
10
- fallback?: Partial<ContextValueType> | undefined;
11
- } | undefined) => ContextValueType], createSheetScope: import("@tamagui/create-context").CreateScope;
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 | undefined;
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":";AAKA,eAAO,MAAO,kBAAkB;;;;;;;;;qCAAE,gBAAgB,+CAAkC,CAAA;AAEpF,eAAO,MAAO,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAG3C,CAAA"}
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,QAAQ,2BAA2B,CAAC,GAAG;IAAE,QAAQ,CAAC,EAAE,SAAS,CAAA;CAAE,4CAkBjE,CAAA"}
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 | undefined;
6
- defaultOpen?: boolean | undefined;
7
- onOpenChange?: (((open: boolean) => void) | import("react").Dispatch<import("react").SetStateAction<boolean>>) | undefined;
8
- position?: number | undefined;
9
- defaultPosition?: number | undefined;
10
- snapPoints?: (string | number)[] | undefined;
11
- snapPointsMode?: SnapPointsMode | undefined;
12
- onPositionChange?: import("./types").PositionChangeHandler | undefined;
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 | undefined;
15
- dismissOnSnapToBottom?: boolean | undefined;
16
- forceRemoveScrollEnabled?: boolean | undefined;
17
- animationConfig?: import("@tamagui/core").AnimatedNumberStrategy | undefined;
18
- unmountChildrenWhenHidden?: boolean | undefined;
19
- native?: boolean | "ios"[] | undefined;
20
- animation?: import("@tamagui/core").AnimationProp | undefined;
21
- handleDisableScroll?: boolean | undefined;
22
- disableDrag?: boolean | undefined;
23
- modal?: boolean | undefined;
24
- zIndex?: number | undefined;
25
- portalProps?: import("@tamagui/portal").PortalProps | undefined;
26
- moveOnKeyboardChange?: boolean | undefined;
27
- containerComponent?: import("react").ComponentType<any> | undefined;
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":";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
+ {"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":";AAKA,OAAO,KAAK,EAAE,UAAU,IAAI,YAAY,EAAE,MAAM,cAAc,CAAA;AAa9D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;kDA6H3B,CAAA"}
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"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const ParentSheetContext: import("react").Context<{
3
2
  zIndex: number;
4
3
  }>;
@@ -1 +1 @@
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"}
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"}
@@ -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 | undefined;
16
- defaultOpen?: boolean | undefined;
17
- onOpenChange?: (((open: boolean) => void) | import("react").Dispatch<import("react").SetStateAction<boolean>>) | undefined;
18
- position?: number | undefined;
19
- defaultPosition?: number | undefined;
20
- snapPoints?: (string | number)[] | undefined;
21
- snapPointsMode?: import("./types").SnapPointsMode | undefined;
22
- onPositionChange?: import("./types").PositionChangeHandler | undefined;
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 | undefined;
25
- dismissOnSnapToBottom?: boolean | undefined;
26
- forceRemoveScrollEnabled?: boolean | undefined;
27
- animationConfig?: import("@tamagui/core").AnimatedNumberStrategy | undefined;
28
- unmountChildrenWhenHidden?: boolean | undefined;
29
- native?: boolean | "ios"[] | undefined;
30
- animation?: import("@tamagui/core").AnimationProp | undefined;
31
- handleDisableScroll?: boolean | undefined;
32
- disableDrag?: boolean | undefined;
33
- modal?: boolean | undefined;
34
- zIndex?: number | undefined;
35
- portalProps?: import("@tamagui/portal").PortalProps | undefined;
36
- moveOnKeyboardChange?: boolean | undefined;
37
- containerComponent?: import("react").ComponentType<any> | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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 | undefined;
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;;YAGH;;;;eAIG;;;YAXH;;;;eAIG;;YAGH;;;;eAIG;;;+DApDY,iBAAiB,SAAS,cAAc,CAAC,CAAC;;;;;;;;;;;;;;;;;;;;;QAyCzD;;;;WAIG;;QAGH;;;;WAIG;;;QAXH;;;;WAIG;;QAGH;;;;WAIG;;;2DApDY,iBAAiB,SAAS,cAAc,CAAC,CAAC;;;;;;;;;;;;;;;;;;;EAoL5D"}
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"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const useSheet: () => {
3
2
  screenSize: number;
4
3
  maxSnapPoint: string | number;
@@ -1 +1 @@
1
- {"version":3,"file":"useSheet.d.ts","sourceRoot":"","sources":["../src/useSheet.tsx"],"names":[],"mappings":";AAEA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;CAAuC,CAAA"}
1
+ {"version":3,"file":"useSheet.d.ts","sourceRoot":"","sources":["../src/useSheet.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;CAAuC,CAAA"}
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export declare const useSheetController: () => {
3
2
  controller: SheetControllerContextValue | null;
4
3
  isHidden: boolean | undefined;
@@ -1 +1 @@
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
+ {"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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { SheetProps } from './types';
3
2
  export declare const useSheetOpenState: (props: SheetProps) => {
4
3
  open: boolean;
@@ -1 +1 @@
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"}
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"}