react-native-salespanda 0.2.0 → 0.4.0
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/Salespanda.podspec +4 -0
- package/android/build.gradle +2 -0
- package/lib/module/SalespandaApp.js +70 -0
- package/lib/module/SalespandaApp.js.map +1 -0
- package/lib/module/assets/images/bottomtabs/analytics.png +0 -0
- package/lib/module/assets/images/bottomtabs/analyticsactive.png +0 -0
- package/lib/module/assets/images/bottomtabs/crm.png +0 -0
- package/lib/module/assets/images/bottomtabs/crmactive.png +0 -0
- package/lib/module/assets/images/bottomtabs/diary.png +0 -0
- package/lib/module/assets/images/bottomtabs/diaryactive.png +0 -0
- package/lib/module/assets/images/bottomtabs/home.png +0 -0
- package/lib/module/assets/images/bottomtabs/homeactive.png +0 -0
- package/lib/module/assets/images/bottomtabs/notification.png +0 -0
- package/lib/module/assets/images/bottomtabs/notificationactive.png +0 -0
- package/lib/module/assets/images/index.js +35 -0
- package/lib/module/assets/images/index.js.map +1 -0
- package/lib/module/config/SalespandaConfig.js +68 -0
- package/lib/module/config/SalespandaConfig.js.map +1 -0
- package/lib/module/constants/Colors.js +17 -0
- package/lib/module/constants/Colors.js.map +1 -0
- package/lib/module/constants/GetPlatorm.js +23 -0
- package/lib/module/constants/GetPlatorm.js.map +1 -0
- package/lib/module/index.js +28 -7
- package/lib/module/index.js.map +1 -1
- package/lib/module/navigation/AppNavigator.js +11 -2
- package/lib/module/navigation/AppNavigator.js.map +1 -1
- package/lib/module/navigation/BottomTabNavigator.js +100 -73
- package/lib/module/navigation/BottomTabNavigator.js.map +1 -1
- package/lib/module/navigation/DrawerNavigator.js +214 -127
- package/lib/module/navigation/DrawerNavigator.js.map +1 -1
- package/lib/module/screens/CRMScreen.js +41 -0
- package/lib/module/screens/CRMScreen.js.map +1 -0
- package/lib/module/screens/HomeScreen.js +123 -170
- package/lib/module/screens/HomeScreen.js.map +1 -1
- package/lib/module/screens/NotificationsScreen.js +11 -97
- package/lib/module/screens/NotificationsScreen.js.map +1 -1
- package/lib/module/screens/ProfileScreen.js +13 -119
- package/lib/module/screens/ProfileScreen.js.map +1 -1
- package/lib/module/screens/ReportsScreen.js +11 -187
- package/lib/module/screens/ReportsScreen.js.map +1 -1
- package/lib/typescript/src/SalespandaApp.d.ts +39 -0
- package/lib/typescript/src/SalespandaApp.d.ts.map +1 -0
- package/lib/typescript/src/assets/images/index.d.ts +17 -0
- package/lib/typescript/src/assets/images/index.d.ts.map +1 -0
- package/lib/typescript/src/config/SalespandaConfig.d.ts +52 -0
- package/lib/typescript/src/config/SalespandaConfig.d.ts.map +1 -0
- package/lib/typescript/src/constants/Colors.d.ts +15 -0
- package/lib/typescript/src/constants/Colors.d.ts.map +1 -0
- package/lib/typescript/src/constants/GetPlatorm.d.ts +11 -0
- package/lib/typescript/src/constants/GetPlatorm.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +18 -2
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/navigation/AppNavigator.d.ts.map +1 -1
- package/lib/typescript/src/navigation/BottomTabNavigator.d.ts.map +1 -1
- package/lib/typescript/src/navigation/DrawerNavigator.d.ts.map +1 -1
- package/lib/typescript/src/screens/CRMScreen.d.ts +2 -0
- package/lib/typescript/src/screens/CRMScreen.d.ts.map +1 -0
- package/lib/typescript/src/screens/HomeScreen.d.ts.map +1 -1
- package/lib/typescript/src/screens/NotificationsScreen.d.ts.map +1 -1
- package/lib/typescript/src/screens/ProfileScreen.d.ts.map +1 -1
- package/lib/typescript/src/screens/ReportsScreen.d.ts +1 -1
- package/lib/typescript/src/screens/ReportsScreen.d.ts.map +1 -1
- package/package.json +20 -11
- package/react-native.config.js +9 -0
- package/src/SalespandaApp.tsx +112 -0
- package/src/assets/images/bottomtabs/analytics.png +0 -0
- package/src/assets/images/bottomtabs/analyticsactive.png +0 -0
- package/src/assets/images/bottomtabs/crm.png +0 -0
- package/src/assets/images/bottomtabs/crmactive.png +0 -0
- package/src/assets/images/bottomtabs/diary.png +0 -0
- package/src/assets/images/bottomtabs/diaryactive.png +0 -0
- package/src/assets/images/bottomtabs/home.png +0 -0
- package/src/assets/images/bottomtabs/homeactive.png +0 -0
- package/src/assets/images/bottomtabs/notification.png +0 -0
- package/src/assets/images/bottomtabs/notificationactive.png +0 -0
- package/src/assets/images/index.js +11 -0
- package/src/assets/images/index.ts +40 -0
- package/src/config/SalespandaConfig.ts +105 -0
- package/src/constants/Colors.ts +16 -0
- package/src/constants/GetPlatorm.ts +29 -0
- package/src/index.tsx +35 -7
- package/src/navigation/AppNavigator.tsx +9 -2
- package/src/navigation/BottomTabNavigator.tsx +110 -51
- package/src/navigation/DrawerNavigator.tsx +179 -126
- package/src/screens/CRMScreen.tsx +34 -0
- package/src/screens/HomeScreen.tsx +110 -143
- package/src/screens/NotificationsScreen.tsx +9 -110
- package/src/screens/ProfileScreen.tsx +10 -97
- package/src/screens/ReportsScreen.tsx +9 -166
- package/lib/module/screens/PremiumScreen.js +0 -222
- package/lib/module/screens/PremiumScreen.js.map +0 -1
- package/lib/typescript/src/screens/PremiumScreen.d.ts +0 -2
- package/lib/typescript/src/screens/PremiumScreen.d.ts.map +0 -1
- package/src/screens/PremiumScreen.tsx +0 -250
|
@@ -1,147 +1,41 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import { View, Text, StyleSheet,
|
|
3
|
+
import { View, Text, StyleSheet, ScrollView } from 'react-native';
|
|
4
|
+
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
5
|
+
import { Colors } from "../constants/Colors.js";
|
|
4
6
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
5
7
|
export default function ProfileScreen() {
|
|
6
8
|
return /*#__PURE__*/_jsxs(SafeAreaView, {
|
|
7
9
|
style: styles.container,
|
|
10
|
+
edges: ['bottom'],
|
|
8
11
|
children: [/*#__PURE__*/_jsx(View, {
|
|
9
12
|
style: styles.header,
|
|
10
13
|
children: /*#__PURE__*/_jsx(Text, {
|
|
11
14
|
style: styles.headerTitle,
|
|
12
|
-
children: "
|
|
15
|
+
children: "Anyaltics"
|
|
13
16
|
})
|
|
14
|
-
}), /*#__PURE__*/
|
|
15
|
-
style: styles.
|
|
16
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
17
|
-
style: styles.profileSection,
|
|
18
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
|
19
|
-
source: {
|
|
20
|
-
uri: 'https://via.placeholder.com/100x100'
|
|
21
|
-
},
|
|
22
|
-
style: styles.avatar
|
|
23
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
24
|
-
style: styles.name,
|
|
25
|
-
children: "John Doe"
|
|
26
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
27
|
-
style: styles.email,
|
|
28
|
-
children: "john.doe@example.com"
|
|
29
|
-
})]
|
|
30
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
31
|
-
style: styles.section,
|
|
32
|
-
children: [/*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
33
|
-
style: styles.menuItem,
|
|
34
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
35
|
-
style: styles.menuItemIcon,
|
|
36
|
-
children: "\uD83D\uDC64"
|
|
37
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
38
|
-
style: styles.menuItemText,
|
|
39
|
-
children: "Edit Profile"
|
|
40
|
-
})]
|
|
41
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
42
|
-
style: styles.menuItem,
|
|
43
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
44
|
-
style: styles.menuItemIcon,
|
|
45
|
-
children: "\u2699\uFE0F"
|
|
46
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
47
|
-
style: styles.menuItemText,
|
|
48
|
-
children: "Settings"
|
|
49
|
-
})]
|
|
50
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
51
|
-
style: styles.menuItem,
|
|
52
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
53
|
-
style: styles.menuItemIcon,
|
|
54
|
-
children: "\uD83D\uDD14"
|
|
55
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
56
|
-
style: styles.menuItemText,
|
|
57
|
-
children: "Notifications"
|
|
58
|
-
})]
|
|
59
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
60
|
-
style: styles.menuItem,
|
|
61
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
62
|
-
style: styles.menuItemIcon,
|
|
63
|
-
children: "\u2753"
|
|
64
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
65
|
-
style: styles.menuItemText,
|
|
66
|
-
children: "Help & Support"
|
|
67
|
-
})]
|
|
68
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
69
|
-
style: styles.menuItem,
|
|
70
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
71
|
-
style: styles.menuItemIcon,
|
|
72
|
-
children: "\uD83D\uDEAA"
|
|
73
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
74
|
-
style: styles.menuItemText,
|
|
75
|
-
children: "Logout"
|
|
76
|
-
})]
|
|
77
|
-
})]
|
|
78
|
-
})]
|
|
17
|
+
}), /*#__PURE__*/_jsx(ScrollView, {
|
|
18
|
+
style: styles.scrollView
|
|
79
19
|
})]
|
|
80
20
|
});
|
|
81
21
|
}
|
|
82
22
|
const styles = StyleSheet.create({
|
|
83
23
|
container: {
|
|
84
24
|
flex: 1,
|
|
85
|
-
backgroundColor:
|
|
25
|
+
backgroundColor: Colors.background
|
|
86
26
|
},
|
|
87
27
|
header: {
|
|
88
|
-
backgroundColor:
|
|
89
|
-
padding: 16
|
|
90
|
-
borderBottomWidth: 1,
|
|
91
|
-
borderBottomColor: '#e0e0e0'
|
|
28
|
+
backgroundColor: Colors.white,
|
|
29
|
+
padding: 16
|
|
92
30
|
},
|
|
93
31
|
headerTitle: {
|
|
94
32
|
fontSize: 20,
|
|
95
33
|
fontWeight: '600',
|
|
96
|
-
color:
|
|
34
|
+
color: Colors.black,
|
|
97
35
|
textAlign: 'center'
|
|
98
36
|
},
|
|
99
|
-
|
|
100
|
-
flex: 1
|
|
101
|
-
padding: 16
|
|
102
|
-
},
|
|
103
|
-
profileSection: {
|
|
104
|
-
backgroundColor: '#fff',
|
|
105
|
-
borderRadius: 12,
|
|
106
|
-
padding: 24,
|
|
107
|
-
alignItems: 'center',
|
|
108
|
-
marginBottom: 16
|
|
109
|
-
},
|
|
110
|
-
avatar: {
|
|
111
|
-
width: 100,
|
|
112
|
-
height: 100,
|
|
113
|
-
borderRadius: 50,
|
|
114
|
-
marginBottom: 16
|
|
115
|
-
},
|
|
116
|
-
name: {
|
|
117
|
-
fontSize: 20,
|
|
118
|
-
fontWeight: '600',
|
|
119
|
-
color: '#333',
|
|
120
|
-
marginBottom: 4
|
|
121
|
-
},
|
|
122
|
-
email: {
|
|
123
|
-
fontSize: 14,
|
|
124
|
-
color: '#666'
|
|
125
|
-
},
|
|
126
|
-
section: {
|
|
127
|
-
backgroundColor: '#fff',
|
|
128
|
-
borderRadius: 12,
|
|
129
|
-
overflow: 'hidden'
|
|
130
|
-
},
|
|
131
|
-
menuItem: {
|
|
132
|
-
flexDirection: 'row',
|
|
133
|
-
alignItems: 'center',
|
|
134
|
-
padding: 16,
|
|
135
|
-
borderBottomWidth: 1,
|
|
136
|
-
borderBottomColor: '#f0f0f0'
|
|
137
|
-
},
|
|
138
|
-
menuItemIcon: {
|
|
139
|
-
fontSize: 24,
|
|
140
|
-
marginRight: 16
|
|
141
|
-
},
|
|
142
|
-
menuItemText: {
|
|
143
|
-
fontSize: 16,
|
|
144
|
-
color: '#333'
|
|
37
|
+
scrollView: {
|
|
38
|
+
flex: 1
|
|
145
39
|
}
|
|
146
40
|
});
|
|
147
41
|
//# sourceMappingURL=ProfileScreen.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["View","Text","StyleSheet","
|
|
1
|
+
{"version":3,"names":["View","Text","StyleSheet","ScrollView","SafeAreaView","Colors","jsx","_jsx","jsxs","_jsxs","ProfileScreen","style","styles","container","edges","children","header","headerTitle","scrollView","create","flex","backgroundColor","background","white","padding","fontSize","fontWeight","color","black","textAlign"],"sourceRoot":"../../../src","sources":["screens/ProfileScreen.tsx"],"mappings":";;AAAA,SAASA,IAAI,EAAEC,IAAI,EAAEC,UAAU,EAAEC,UAAU,QAAQ,cAAc;AACjE,SAASC,YAAY,QAAQ,gCAAgC;AAC7D,SAASC,MAAM,QAAQ,wBAAqB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE7C,eAAe,SAASC,aAAaA,CAAA,EAAG;EACtC,oBACED,KAAA,CAACL,YAAY;IAACO,KAAK,EAAEC,MAAM,CAACC,SAAU;IAACC,KAAK,EAAE,CAAC,QAAQ,CAAE;IAAAC,QAAA,gBACvDR,IAAA,CAACP,IAAI;MAACW,KAAK,EAAEC,MAAM,CAACI,MAAO;MAAAD,QAAA,eACzBR,IAAA,CAACN,IAAI;QAACU,KAAK,EAAEC,MAAM,CAACK,WAAY;QAAAF,QAAA,EAAC;MAAS,CAAM;IAAC,CAC7C,CAAC,eACPR,IAAA,CAACJ,UAAU;MAACQ,KAAK,EAAEC,MAAM,CAACM;IAAW,CAAa,CAAC;EAAA,CACvC,CAAC;AAEnB;AAEA,MAAMN,MAAM,GAAGV,UAAU,CAACiB,MAAM,CAAC;EAC/BN,SAAS,EAAE;IACTO,IAAI,EAAE,CAAC;IACPC,eAAe,EAAEhB,MAAM,CAACiB;EAC1B,CAAC;EACDN,MAAM,EAAE;IACNK,eAAe,EAAEhB,MAAM,CAACkB,KAAK;IAC7BC,OAAO,EAAE;EACX,CAAC;EACDP,WAAW,EAAE;IACXQ,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE,KAAK;IACjBC,KAAK,EAAEtB,MAAM,CAACuB,KAAK;IACnBC,SAAS,EAAE;EACb,CAAC;EACDX,UAAU,EAAE;IACVE,IAAI,EAAE;EACR;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -1,217 +1,41 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
import
|
|
4
|
-
import {
|
|
3
|
+
import { View, Text, StyleSheet, ScrollView } from 'react-native';
|
|
4
|
+
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
5
|
+
import { Colors } from "../constants/Colors.js";
|
|
5
6
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
-
|
|
7
|
-
title,
|
|
8
|
-
value,
|
|
9
|
-
icon,
|
|
10
|
-
color
|
|
11
|
-
}) => {
|
|
12
|
-
return /*#__PURE__*/_jsxs(View, {
|
|
13
|
-
style: [styles.statCard, {
|
|
14
|
-
backgroundColor: color
|
|
15
|
-
}],
|
|
16
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
17
|
-
style: styles.statIcon,
|
|
18
|
-
children: icon
|
|
19
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
20
|
-
style: styles.statValue,
|
|
21
|
-
children: value
|
|
22
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
23
|
-
style: styles.statTitle,
|
|
24
|
-
children: title
|
|
25
|
-
})]
|
|
26
|
-
});
|
|
27
|
-
};
|
|
28
|
-
export default function ReportsScreen() {
|
|
7
|
+
export default function NotificationsScreen() {
|
|
29
8
|
return /*#__PURE__*/_jsxs(SafeAreaView, {
|
|
30
9
|
style: styles.container,
|
|
10
|
+
edges: ['bottom'],
|
|
31
11
|
children: [/*#__PURE__*/_jsx(View, {
|
|
32
12
|
style: styles.header,
|
|
33
13
|
children: /*#__PURE__*/_jsx(Text, {
|
|
34
14
|
style: styles.headerTitle,
|
|
35
15
|
children: "Reports"
|
|
36
16
|
})
|
|
37
|
-
}), /*#__PURE__*/
|
|
38
|
-
style: styles.scrollView
|
|
39
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
|
40
|
-
style: styles.statsGrid,
|
|
41
|
-
children: [/*#__PURE__*/_jsx(StatCard, {
|
|
42
|
-
title: "Total Campaigns",
|
|
43
|
-
value: "24",
|
|
44
|
-
icon: "\uD83D\uDCE7",
|
|
45
|
-
color: "#e3f2fd"
|
|
46
|
-
}), /*#__PURE__*/_jsx(StatCard, {
|
|
47
|
-
title: "Active Contacts",
|
|
48
|
-
value: "1,234",
|
|
49
|
-
icon: "\uD83D\uDC65",
|
|
50
|
-
color: "#f3e5f5"
|
|
51
|
-
}), /*#__PURE__*/_jsx(StatCard, {
|
|
52
|
-
title: "Total Views",
|
|
53
|
-
value: "5,678",
|
|
54
|
-
icon: "\uD83D\uDC41\uFE0F",
|
|
55
|
-
color: "#e8f5e9"
|
|
56
|
-
}), /*#__PURE__*/_jsx(StatCard, {
|
|
57
|
-
title: "Conversions",
|
|
58
|
-
value: "89",
|
|
59
|
-
icon: "\u2705",
|
|
60
|
-
color: "#fff3e0"
|
|
61
|
-
})]
|
|
62
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
63
|
-
style: styles.section,
|
|
64
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
65
|
-
style: styles.sectionTitle,
|
|
66
|
-
children: "Recent Activity"
|
|
67
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
68
|
-
style: styles.activityItem,
|
|
69
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
70
|
-
style: styles.activityIcon,
|
|
71
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
72
|
-
style: styles.activityIconText,
|
|
73
|
-
children: "\uD83D\uDCCA"
|
|
74
|
-
})
|
|
75
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
76
|
-
style: styles.activityContent,
|
|
77
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
78
|
-
style: styles.activityTitle,
|
|
79
|
-
children: "Campaign Analytics"
|
|
80
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
81
|
-
style: styles.activityDescription,
|
|
82
|
-
children: "View detailed analytics for your campaigns"
|
|
83
|
-
})]
|
|
84
|
-
})]
|
|
85
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
86
|
-
style: styles.activityItem,
|
|
87
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
88
|
-
style: styles.activityIcon,
|
|
89
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
90
|
-
style: styles.activityIconText,
|
|
91
|
-
children: "\uD83D\uDCC8"
|
|
92
|
-
})
|
|
93
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
94
|
-
style: styles.activityContent,
|
|
95
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
96
|
-
style: styles.activityTitle,
|
|
97
|
-
children: "Performance Report"
|
|
98
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
99
|
-
style: styles.activityDescription,
|
|
100
|
-
children: "Monthly performance summary"
|
|
101
|
-
})]
|
|
102
|
-
})]
|
|
103
|
-
}), /*#__PURE__*/_jsxs(TouchableOpacity, {
|
|
104
|
-
style: styles.activityItem,
|
|
105
|
-
children: [/*#__PURE__*/_jsx(View, {
|
|
106
|
-
style: styles.activityIcon,
|
|
107
|
-
children: /*#__PURE__*/_jsx(Text, {
|
|
108
|
-
style: styles.activityIconText,
|
|
109
|
-
children: "\uD83D\uDCB0"
|
|
110
|
-
})
|
|
111
|
-
}), /*#__PURE__*/_jsxs(View, {
|
|
112
|
-
style: styles.activityContent,
|
|
113
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
|
114
|
-
style: styles.activityTitle,
|
|
115
|
-
children: "Revenue Report"
|
|
116
|
-
}), /*#__PURE__*/_jsx(Text, {
|
|
117
|
-
style: styles.activityDescription,
|
|
118
|
-
children: "Track your earnings and revenue"
|
|
119
|
-
})]
|
|
120
|
-
})]
|
|
121
|
-
})]
|
|
122
|
-
})]
|
|
17
|
+
}), /*#__PURE__*/_jsx(ScrollView, {
|
|
18
|
+
style: styles.scrollView
|
|
123
19
|
})]
|
|
124
20
|
});
|
|
125
21
|
}
|
|
126
22
|
const styles = StyleSheet.create({
|
|
127
23
|
container: {
|
|
128
24
|
flex: 1,
|
|
129
|
-
backgroundColor:
|
|
25
|
+
backgroundColor: Colors.background
|
|
130
26
|
},
|
|
131
27
|
header: {
|
|
132
|
-
backgroundColor:
|
|
133
|
-
padding: 16
|
|
134
|
-
borderBottomWidth: 1,
|
|
135
|
-
borderBottomColor: '#e0e0e0'
|
|
28
|
+
backgroundColor: Colors.white,
|
|
29
|
+
padding: 16
|
|
136
30
|
},
|
|
137
31
|
headerTitle: {
|
|
138
32
|
fontSize: 20,
|
|
139
33
|
fontWeight: '600',
|
|
140
|
-
color:
|
|
34
|
+
color: Colors.black,
|
|
141
35
|
textAlign: 'center'
|
|
142
36
|
},
|
|
143
37
|
scrollView: {
|
|
144
38
|
flex: 1
|
|
145
|
-
},
|
|
146
|
-
statsGrid: {
|
|
147
|
-
flexDirection: 'row',
|
|
148
|
-
flexWrap: 'wrap',
|
|
149
|
-
padding: 8,
|
|
150
|
-
justifyContent: 'space-between'
|
|
151
|
-
},
|
|
152
|
-
statCard: {
|
|
153
|
-
width: '48%',
|
|
154
|
-
padding: 20,
|
|
155
|
-
borderRadius: 12,
|
|
156
|
-
alignItems: 'center',
|
|
157
|
-
marginBottom: 16
|
|
158
|
-
},
|
|
159
|
-
statIcon: {
|
|
160
|
-
fontSize: 32,
|
|
161
|
-
marginBottom: 8
|
|
162
|
-
},
|
|
163
|
-
statValue: {
|
|
164
|
-
fontSize: 24,
|
|
165
|
-
fontWeight: '700',
|
|
166
|
-
color: '#333',
|
|
167
|
-
marginBottom: 4
|
|
168
|
-
},
|
|
169
|
-
statTitle: {
|
|
170
|
-
fontSize: 12,
|
|
171
|
-
color: '#666',
|
|
172
|
-
textAlign: 'center'
|
|
173
|
-
},
|
|
174
|
-
section: {
|
|
175
|
-
padding: 16
|
|
176
|
-
},
|
|
177
|
-
sectionTitle: {
|
|
178
|
-
fontSize: 18,
|
|
179
|
-
fontWeight: '600',
|
|
180
|
-
color: '#333',
|
|
181
|
-
marginBottom: 16
|
|
182
|
-
},
|
|
183
|
-
activityItem: {
|
|
184
|
-
backgroundColor: '#fff',
|
|
185
|
-
flexDirection: 'row',
|
|
186
|
-
padding: 16,
|
|
187
|
-
borderRadius: 12,
|
|
188
|
-
marginBottom: 12,
|
|
189
|
-
alignItems: 'center'
|
|
190
|
-
},
|
|
191
|
-
activityIcon: {
|
|
192
|
-
width: 48,
|
|
193
|
-
height: 48,
|
|
194
|
-
borderRadius: 24,
|
|
195
|
-
backgroundColor: '#f5f5f5',
|
|
196
|
-
justifyContent: 'center',
|
|
197
|
-
alignItems: 'center',
|
|
198
|
-
marginRight: 16
|
|
199
|
-
},
|
|
200
|
-
activityIconText: {
|
|
201
|
-
fontSize: 24
|
|
202
|
-
},
|
|
203
|
-
activityContent: {
|
|
204
|
-
flex: 1
|
|
205
|
-
},
|
|
206
|
-
activityTitle: {
|
|
207
|
-
fontSize: 16,
|
|
208
|
-
fontWeight: '600',
|
|
209
|
-
color: '#333',
|
|
210
|
-
marginBottom: 4
|
|
211
|
-
},
|
|
212
|
-
activityDescription: {
|
|
213
|
-
fontSize: 14,
|
|
214
|
-
color: '#666'
|
|
215
39
|
}
|
|
216
40
|
});
|
|
217
41
|
//# sourceMappingURL=ReportsScreen.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["View","Text","StyleSheet","ScrollView","SafeAreaView","Colors","jsx","_jsx","jsxs","_jsxs","NotificationsScreen","style","styles","container","edges","children","header","headerTitle","scrollView","create","flex","backgroundColor","background","white","padding","fontSize","fontWeight","color","black","textAlign"],"sourceRoot":"../../../src","sources":["screens/ReportsScreen.tsx"],"mappings":";;AAAA,SAASA,IAAI,EAAEC,IAAI,EAAEC,UAAU,EAAEC,UAAU,QAAQ,cAAc;AACjE,SAASC,YAAY,QAAQ,gCAAgC;AAC7D,SAASC,MAAM,QAAQ,wBAAqB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAE7C,eAAe,SAASC,mBAAmBA,CAAA,EAAG;EAC5C,oBACED,KAAA,CAACL,YAAY;IAACO,KAAK,EAAEC,MAAM,CAACC,SAAU;IAACC,KAAK,EAAE,CAAC,QAAQ,CAAE;IAAAC,QAAA,gBACvDR,IAAA,CAACP,IAAI;MAACW,KAAK,EAAEC,MAAM,CAACI,MAAO;MAAAD,QAAA,eACzBR,IAAA,CAACN,IAAI;QAACU,KAAK,EAAEC,MAAM,CAACK,WAAY;QAAAF,QAAA,EAAC;MAAO,CAAM;IAAC,CAC3C,CAAC,eACPR,IAAA,CAACJ,UAAU;MAACQ,KAAK,EAAEC,MAAM,CAACM;IAAW,CAAa,CAAC;EAAA,CACvC,CAAC;AAEnB;AAEA,MAAMN,MAAM,GAAGV,UAAU,CAACiB,MAAM,CAAC;EAC/BN,SAAS,EAAE;IACTO,IAAI,EAAE,CAAC;IACPC,eAAe,EAAEhB,MAAM,CAACiB;EAC1B,CAAC;EACDN,MAAM,EAAE;IACNK,eAAe,EAAEhB,MAAM,CAACkB,KAAK;IAC7BC,OAAO,EAAE;EACX,CAAC;EACDP,WAAW,EAAE;IACXQ,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE,KAAK;IACjBC,KAAK,EAAEtB,MAAM,CAACuB,KAAK;IACnBC,SAAS,EAAE;EACb,CAAC;EACDX,UAAU,EAAE;IACVE,IAAI,EAAE;EACR;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface SalespandaAppProps {
|
|
3
|
+
/**
|
|
4
|
+
* Custom navigation container ref for external navigation control
|
|
5
|
+
*/
|
|
6
|
+
navigationRef?: React.RefObject<any>;
|
|
7
|
+
/**
|
|
8
|
+
* Optional theme configuration
|
|
9
|
+
*/
|
|
10
|
+
theme?: {
|
|
11
|
+
primaryColor?: string;
|
|
12
|
+
backgroundColor?: string;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* If true, the app will not render NavigationContainer
|
|
16
|
+
* (useful when embedding in an existing navigation structure)
|
|
17
|
+
*/
|
|
18
|
+
standalone?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Callback when app is ready
|
|
21
|
+
*/
|
|
22
|
+
onReady?: () => void;
|
|
23
|
+
/**
|
|
24
|
+
* If true, uses drawer navigation (default), otherwise uses bottom tabs only
|
|
25
|
+
*/
|
|
26
|
+
useDrawer?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* If false, will not wrap with GestureHandlerRootView
|
|
29
|
+
* Set to false if your app already has gesture handler imported at the entry point
|
|
30
|
+
* @default true
|
|
31
|
+
*/
|
|
32
|
+
wrapWithGestureHandler?: boolean;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Main Salespanda App Component
|
|
36
|
+
* Can be used as a standalone app or embedded in another React Native app
|
|
37
|
+
*/
|
|
38
|
+
export default function SalespandaApp({ navigationRef, theme: customTheme, standalone, onReady, useDrawer, wrapWithGestureHandler, }?: SalespandaAppProps): import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
//# sourceMappingURL=SalespandaApp.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SalespandaApp.d.ts","sourceRoot":"","sources":["../../../src/SalespandaApp.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;IAErC;;OAEG;IACH,KAAK,CAAC,EAAE;QACN,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,MAAM,CAAC;KAC1B,CAAC;IAEF;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAErB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAClC;AAED;;;GAGG;AACH,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EACpC,aAAa,EACb,KAAK,EAAE,WAAW,EAClB,UAAkB,EAClB,OAAO,EACP,SAAgB,EAChB,sBAA8B,GAC/B,GAAE,kBAAuB,2CAmDzB"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ImageSourcePropType } from 'react-native';
|
|
2
|
+
export declare const homeIcon: ImageSourcePropType;
|
|
3
|
+
export declare const homeIconActive: ImageSourcePropType;
|
|
4
|
+
export declare const analyticsIcon: ImageSourcePropType;
|
|
5
|
+
export declare const analyticsIconActive: ImageSourcePropType;
|
|
6
|
+
export declare const crmIcon: ImageSourcePropType;
|
|
7
|
+
export declare const crmIconActive: ImageSourcePropType;
|
|
8
|
+
export declare const diaryIcon: ImageSourcePropType;
|
|
9
|
+
export declare const diaryIconActive: ImageSourcePropType;
|
|
10
|
+
export declare const notificationIcon: ImageSourcePropType;
|
|
11
|
+
export declare const notificationIconActive: ImageSourcePropType;
|
|
12
|
+
export type IconPair = {
|
|
13
|
+
default: ImageSourcePropType;
|
|
14
|
+
active: ImageSourcePropType;
|
|
15
|
+
};
|
|
16
|
+
export declare const bottomTabIcons: Record<string, IconPair>;
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/assets/images/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAExD,eAAO,MAAM,QAAQ,EAAE,mBAAsD,CAAC;AAC9E,eAAO,MAAM,cAAc,EAAE,mBAA4D,CAAC;AAC1F,eAAO,MAAM,aAAa,EAAE,mBAA2D,CAAC;AACxF,eAAO,MAAM,mBAAmB,EAAE,mBAAiE,CAAC;AACpG,eAAO,MAAM,OAAO,EAAE,mBAAqD,CAAC;AAC5E,eAAO,MAAM,aAAa,EAAE,mBAA2D,CAAC;AACxF,eAAO,MAAM,SAAS,EAAE,mBAAuD,CAAC;AAChF,eAAO,MAAM,eAAe,EAAE,mBAA6D,CAAC;AAC5F,eAAO,MAAM,gBAAgB,EAAE,mBAA8D,CAAC;AAC9F,eAAO,MAAM,sBAAsB,EAAE,mBAAoE,CAAC;AAE1G,MAAM,MAAM,QAAQ,GAAG;IACrB,OAAO,EAAE,mBAAmB,CAAC;IAC7B,MAAM,EAAE,mBAAmB,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAqBnD,CAAC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Salespanda SDK Configuration
|
|
3
|
+
*/
|
|
4
|
+
export interface SalespandaConfig {
|
|
5
|
+
/**
|
|
6
|
+
* Theme configuration
|
|
7
|
+
*/
|
|
8
|
+
theme?: {
|
|
9
|
+
primaryColor?: string;
|
|
10
|
+
secondaryColor?: string;
|
|
11
|
+
backgroundColor?: string;
|
|
12
|
+
textColor?: string;
|
|
13
|
+
accentColor?: string;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* API configuration
|
|
17
|
+
*/
|
|
18
|
+
api?: {
|
|
19
|
+
baseUrl?: string;
|
|
20
|
+
apiKey?: string;
|
|
21
|
+
timeout?: number;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* Feature flags
|
|
25
|
+
*/
|
|
26
|
+
features?: {
|
|
27
|
+
enablePremium?: boolean;
|
|
28
|
+
enableNotifications?: boolean;
|
|
29
|
+
enableReports?: boolean;
|
|
30
|
+
enableDrawer?: boolean;
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* Analytics configuration
|
|
34
|
+
*/
|
|
35
|
+
analytics?: {
|
|
36
|
+
enabled?: boolean;
|
|
37
|
+
trackingId?: string;
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Initialize Salespanda SDK with custom configuration
|
|
42
|
+
*/
|
|
43
|
+
export declare function initializeSalespanda(config: SalespandaConfig): void;
|
|
44
|
+
/**
|
|
45
|
+
* Get current Salespanda configuration
|
|
46
|
+
*/
|
|
47
|
+
export declare function getSalespandaConfig(): SalespandaConfig;
|
|
48
|
+
/**
|
|
49
|
+
* Reset configuration to defaults
|
|
50
|
+
*/
|
|
51
|
+
export declare function resetSalespandaConfig(): void;
|
|
52
|
+
//# sourceMappingURL=SalespandaConfig.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SalespandaConfig.d.ts","sourceRoot":"","sources":["../../../../src/config/SalespandaConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,KAAK,CAAC,EAAE;QACN,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,cAAc,CAAC,EAAE,MAAM,CAAC;QACxB,eAAe,CAAC,EAAE,MAAM,CAAC;QACzB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,WAAW,CAAC,EAAE,MAAM,CAAC;KACtB,CAAC;IAEF;;OAEG;IACH,GAAG,CAAC,EAAE;QACJ,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;IAEF;;OAEG;IACH,QAAQ,CAAC,EAAE;QACT,aAAa,CAAC,EAAE,OAAO,CAAC;QACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;QAC9B,aAAa,CAAC,EAAE,OAAO,CAAC;QACxB,YAAY,CAAC,EAAE,OAAO,CAAC;KACxB,CAAC;IAEF;;OAEG;IACH,SAAS,CAAC,EAAE;QACV,OAAO,CAAC,EAAE,OAAO,CAAC;QAClB,UAAU,CAAC,EAAE,MAAM,CAAC;KACrB,CAAC;CACH;AAkBD;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI,CAanE;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,gBAAgB,CAEtD;AAED;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,IAAI,CAgB5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const Colors: {
|
|
2
|
+
readonly primary: "#46bdd3";
|
|
3
|
+
readonly white: "#ffffff";
|
|
4
|
+
readonly black: "#322F2F";
|
|
5
|
+
readonly background: "#ffffff";
|
|
6
|
+
readonly border: "#e0e0e0";
|
|
7
|
+
readonly divider: "#e0e0e0";
|
|
8
|
+
readonly white50: "rgba(255, 255, 255, 0.5)";
|
|
9
|
+
readonly black50: "rgba(0, 0, 0, 0.2)";
|
|
10
|
+
readonly black30: "rgba(0, 0, 0, 0.3)";
|
|
11
|
+
readonly black20: "rgba(0, 0, 0, 0.2)";
|
|
12
|
+
readonly black10: "rgba(0, 0, 0, 0.1)";
|
|
13
|
+
};
|
|
14
|
+
export type ColorKey = keyof typeof Colors;
|
|
15
|
+
//# sourceMappingURL=Colors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Colors.d.ts","sourceRoot":"","sources":["../../../../src/constants/Colors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;CAaT,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,MAAM,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Returns different values based on the platform
|
|
3
|
+
* @param value - Single value to use for both platforms, or object with platform specific values
|
|
4
|
+
* @param androidValue - Optional value for Android (if not provided, uses the same value for both platforms)
|
|
5
|
+
* @returns Platform specific value
|
|
6
|
+
*/
|
|
7
|
+
export declare const GetPlatform: <T>(value: T | {
|
|
8
|
+
ios: T;
|
|
9
|
+
android: T;
|
|
10
|
+
}, androidValue?: T) => T;
|
|
11
|
+
//# sourceMappingURL=GetPlatorm.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetPlatorm.d.ts","sourceRoot":"","sources":["../../../../src/constants/GetPlatorm.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AACH,eAAO,MAAM,WAAW,GAAI,CAAC,EAC3B,OAAO,CAAC,GAAG;IAAE,GAAG,EAAE,CAAC,CAAC;IAAC,OAAO,EAAE,CAAC,CAAA;CAAE,EACjC,eAAe,CAAC,KACf,CAiBF,CAAC"}
|
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Salespanda SDK
|
|
3
|
+
*
|
|
4
|
+
* This SDK can be used in two ways:
|
|
5
|
+
*
|
|
6
|
+
* 1. As a complete standalone app:
|
|
7
|
+
* import SalespandaApp from 'react-native-salespanda';
|
|
8
|
+
* <SalespandaApp />
|
|
9
|
+
*
|
|
10
|
+
* 2. As individual components/screens in your app:
|
|
11
|
+
* import { HomeScreen, ProfileScreen } from 'react-native-salespanda';
|
|
12
|
+
*/
|
|
13
|
+
export { default } from './SalespandaApp';
|
|
14
|
+
export { default as SalespandaApp } from './SalespandaApp';
|
|
15
|
+
export type { SalespandaAppProps } from './SalespandaApp';
|
|
16
|
+
export { initializeSalespanda, getSalespandaConfig, resetSalespandaConfig, } from './config/SalespandaConfig';
|
|
17
|
+
export type { SalespandaConfig } from './config/SalespandaConfig';
|
|
2
18
|
export { default as AppNavigator } from './navigation/AppNavigator';
|
|
3
19
|
export { default as DrawerNavigator } from './navigation/DrawerNavigator';
|
|
4
20
|
export { default as BottomTabNavigator } from './navigation/BottomTabNavigator';
|
|
@@ -6,5 +22,5 @@ export { default as HomeScreen } from './screens/HomeScreen';
|
|
|
6
22
|
export { default as ProfileScreen } from './screens/ProfileScreen';
|
|
7
23
|
export { default as NotificationsScreen } from './screens/NotificationsScreen';
|
|
8
24
|
export { default as ReportsScreen } from './screens/ReportsScreen';
|
|
9
|
-
export { default as PremiumScreen } from './screens/
|
|
25
|
+
export { default as PremiumScreen } from './screens/CRMScreen';
|
|
10
26
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAKH,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAC3D,YAAY,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAK1D,OAAO,EACL,oBAAoB,EACpB,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,2BAA2B,CAAC;AACnC,YAAY,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAKlE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAKhF,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAC/E,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,yBAAyB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppNavigator.d.ts","sourceRoot":"","sources":["../../../../src/navigation/AppNavigator.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AppNavigator.d.ts","sourceRoot":"","sources":["../../../../src/navigation/AppNavigator.tsx"],"names":[],"mappings":"AAKA,MAAM,CAAC,OAAO,UAAU,YAAY,4CAWnC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BottomTabNavigator.d.ts","sourceRoot":"","sources":["../../../../src/navigation/BottomTabNavigator.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BottomTabNavigator.d.ts","sourceRoot":"","sources":["../../../../src/navigation/BottomTabNavigator.tsx"],"names":[],"mappings":"AAwBA,MAAM,CAAC,OAAO,UAAU,kBAAkB,4CAkGzC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DrawerNavigator.d.ts","sourceRoot":"","sources":["../../../../src/navigation/DrawerNavigator.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DrawerNavigator.d.ts","sourceRoot":"","sources":["../../../../src/navigation/DrawerNavigator.tsx"],"names":[],"mappings":"AA8JA,MAAM,CAAC,OAAO,UAAU,eAAe,4CAuCtC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CRMScreen.d.ts","sourceRoot":"","sources":["../../../../src/screens/CRMScreen.tsx"],"names":[],"mappings":"AAIA,MAAM,CAAC,OAAO,UAAU,SAAS,4CAShC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HomeScreen.d.ts","sourceRoot":"","sources":["../../../../src/screens/HomeScreen.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"HomeScreen.d.ts","sourceRoot":"","sources":["../../../../src/screens/HomeScreen.tsx"],"names":[],"mappings":"AA8BA,MAAM,CAAC,OAAO,UAAU,UAAU,4CA6FjC"}
|