@tamagui/sheet 1.5.8 → 1.5.10
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 +12 -12
- package/types/Sheet.d.ts +14 -14
- package/types/SheetScrollView.d.ts +7 -7
- package/types/SheetScrollView.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/sheet",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.10",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"lint:fix": "../../node_modules/.bin/rome check --apply-suggested src"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@tamagui/animations-react-native": "^1.5.
|
|
26
|
-
"@tamagui/compose-refs": "^1.5.
|
|
27
|
-
"@tamagui/core": "^1.5.
|
|
28
|
-
"@tamagui/create-context": "^1.5.
|
|
29
|
-
"@tamagui/portal": "^1.5.
|
|
30
|
-
"@tamagui/remove-scroll": "^1.5.
|
|
31
|
-
"@tamagui/scroll-view": "^1.5.
|
|
32
|
-
"@tamagui/stacks": "^1.5.
|
|
33
|
-
"@tamagui/use-constant": "^1.5.
|
|
34
|
-
"@tamagui/use-controllable-state": "^1.5.
|
|
25
|
+
"@tamagui/animations-react-native": "^1.5.10",
|
|
26
|
+
"@tamagui/compose-refs": "^1.5.10",
|
|
27
|
+
"@tamagui/core": "^1.5.10",
|
|
28
|
+
"@tamagui/create-context": "^1.5.10",
|
|
29
|
+
"@tamagui/portal": "^1.5.10",
|
|
30
|
+
"@tamagui/remove-scroll": "^1.5.10",
|
|
31
|
+
"@tamagui/scroll-view": "^1.5.10",
|
|
32
|
+
"@tamagui/stacks": "^1.5.10",
|
|
33
|
+
"@tamagui/use-constant": "^1.5.10",
|
|
34
|
+
"@tamagui/use-controllable-state": "^1.5.10"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": "*",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"react-native": "*"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@tamagui/build": "^1.5.
|
|
42
|
+
"@tamagui/build": "^1.5.10",
|
|
43
43
|
"react": "^18.2.0",
|
|
44
44
|
"react-dom": "^18.2.0",
|
|
45
45
|
"react-native": "*"
|
package/types/Sheet.d.ts
CHANGED
|
@@ -129,13 +129,13 @@ export declare const Sheet: React.ForwardRefExoticComponent<{
|
|
|
129
129
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
130
130
|
} & React.RefAttributes<unknown>>;
|
|
131
131
|
Overlay: ({ __scopeSheet, ...props }: SheetScopedProps<SheetOverlayProps>) => JSX.Element;
|
|
132
|
-
ScrollView: React.ForwardRefExoticComponent<
|
|
133
|
-
|
|
134
|
-
} & import("@tamagui/core").MediaProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{},
|
|
135
|
-
|
|
136
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{},
|
|
137
|
-
|
|
138
|
-
}
|
|
132
|
+
ScrollView: React.ForwardRefExoticComponent<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
133
|
+
readonly fullscreen?: boolean | undefined;
|
|
134
|
+
} & import("@tamagui/core").MediaProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
135
|
+
readonly fullscreen?: boolean | undefined;
|
|
136
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
137
|
+
readonly fullscreen?: boolean | undefined;
|
|
138
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
139
139
|
};
|
|
140
140
|
export declare const ControlledSheet: React.FunctionComponent<Omit<SheetProps, "open" | "onOpenChange"> & React.RefAttributes<View>> & {
|
|
141
141
|
Handle: ({ __scopeSheet, ...props }: SheetScopedProps<XStackProps>) => JSX.Element;
|
|
@@ -152,13 +152,13 @@ export declare const ControlledSheet: React.FunctionComponent<Omit<SheetProps, "
|
|
|
152
152
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
153
153
|
} & React.RefAttributes<unknown>>;
|
|
154
154
|
Overlay: ({ __scopeSheet, ...props }: SheetScopedProps<SheetOverlayProps>) => JSX.Element;
|
|
155
|
-
ScrollView: React.ForwardRefExoticComponent<
|
|
156
|
-
|
|
157
|
-
} & import("@tamagui/core").MediaProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{},
|
|
158
|
-
|
|
159
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{},
|
|
160
|
-
|
|
161
|
-
}
|
|
155
|
+
ScrollView: React.ForwardRefExoticComponent<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
156
|
+
readonly fullscreen?: boolean | undefined;
|
|
157
|
+
} & import("@tamagui/core").MediaProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
158
|
+
readonly fullscreen?: boolean | undefined;
|
|
159
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
160
|
+
readonly fullscreen?: boolean | undefined;
|
|
161
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
162
162
|
};
|
|
163
163
|
type SheetControllerContextValue = {
|
|
164
164
|
disableDrag?: boolean;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { TamaguiElement } from '@tamagui/core';
|
|
3
|
-
export declare const SheetScrollView: import("react").ForwardRefExoticComponent<
|
|
4
|
-
|
|
5
|
-
} & import("@tamagui/core").MediaProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{},
|
|
6
|
-
|
|
7
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{},
|
|
8
|
-
|
|
9
|
-
}
|
|
3
|
+
export declare const SheetScrollView: import("react").ForwardRefExoticComponent<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
4
|
+
readonly fullscreen?: boolean | undefined;
|
|
5
|
+
} & import("@tamagui/core").MediaProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
6
|
+
readonly fullscreen?: boolean | undefined;
|
|
7
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<import("react-native").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
8
|
+
readonly fullscreen?: boolean | undefined;
|
|
9
|
+
}>> & import("react").RefAttributes<TamaguiElement>>;
|
|
10
10
|
//# sourceMappingURL=SheetScrollView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SheetScrollView.d.ts","sourceRoot":"","sources":["../src/SheetScrollView.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAS,cAAc,EAAe,MAAM,eAAe,CAAA;AAgBlE,eAAO,MAAM,eAAe;;;;;;
|
|
1
|
+
{"version":3,"file":"SheetScrollView.d.ts","sourceRoot":"","sources":["../src/SheetScrollView.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAS,cAAc,EAAe,MAAM,eAAe,CAAA;AAgBlE,eAAO,MAAM,eAAe;;;;;;oDAqH3B,CAAA"}
|