@tamagui/sheet 1.0.1-beta.199 → 1.0.1-beta.201

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/types/Sheet.d.ts CHANGED
@@ -94,7 +94,7 @@ export declare const SheetFrame: React.ForwardRefExoticComponent<Omit<import("@t
94
94
  }>> & {
95
95
  __scopeSheet?: import("@tamagui/create-context").Scope<any>;
96
96
  } & React.RefAttributes<unknown>>;
97
- export declare const Sheet: ((props: Omit<{
97
+ export declare const Sheet: React.ForwardRefExoticComponent<{
98
98
  open?: boolean | undefined;
99
99
  defaultOpen?: boolean | undefined;
100
100
  onOpenChange?: (((open: boolean) => void) | React.Dispatch<React.SetStateAction<boolean>>) | undefined;
@@ -112,10 +112,7 @@ export declare const Sheet: ((props: Omit<{
112
112
  zIndex?: number | undefined;
113
113
  } & {
114
114
  __scopeSheet?: import("@tamagui/create-context").Scope<any>;
115
- } & React.RefAttributes<View>, "theme" | "themeInverse"> & {
116
- theme?: import("@tamagui/core").ThemeName | null | undefined;
117
- themeInverse?: boolean | undefined;
118
- }) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null) & {
115
+ } & React.RefAttributes<View>> & {
119
116
  Handle: ({ __scopeSheet, ...props }: SheetScopedProps<XStackProps>) => JSX.Element;
120
117
  Frame: React.ForwardRefExoticComponent<Omit<import("@tamagui/types-react-native").ViewProps, "children" | "display"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{}, "elevation" | "fullscreen"> & {
121
118
  readonly fullscreen?: boolean | undefined;