native-pytech 1.0.113 → 1.0.115
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { NativeStackNavigationOptions } from "expo-router/build/react-navigation/native-stack/types";
|
|
1
2
|
export declare const deviceTier: "low" | "medium" | "high";
|
|
2
3
|
export declare const isLowTier: boolean;
|
|
3
4
|
type ExpoEnv = {
|
|
@@ -8,11 +9,5 @@ type ExpoEnv = {
|
|
|
8
9
|
SUPABASE_SERVICE_ROLE_KEY: string;
|
|
9
10
|
};
|
|
10
11
|
export declare const expoEnv: Partial<ExpoEnv>;
|
|
11
|
-
export declare const screenOptions:
|
|
12
|
-
headerTitleAlign: string;
|
|
13
|
-
headerBackButtonMenuEnabled: boolean;
|
|
14
|
-
headerBackButtonDisplayMode: string;
|
|
15
|
-
headerTransparent: boolean;
|
|
16
|
-
headerLargeTitle: boolean;
|
|
17
|
-
};
|
|
12
|
+
export declare const screenOptions: NativeStackNavigationOptions;
|
|
18
13
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "native-pytech",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.115",
|
|
4
4
|
"description": "Libreria de React Native Pytech",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"build": "node scripts/build.js",
|
|
11
11
|
"typecheck": "tsc --noEmit",
|
|
12
12
|
"prepublishOnly": "npm run build",
|
|
13
|
-
"release": "dev git && npm version patch && npm publish && dev git"
|
|
13
|
+
"release": "dev git && npm version patch && npm publish && dev git",
|
|
14
|
+
"postinstall": "node scripts/post_install.js"
|
|
14
15
|
},
|
|
15
16
|
"files": [
|
|
16
17
|
"dist",
|