react-native-salespanda 0.7.1 → 0.7.2
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,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
// Bottom Tab Icons
|
|
4
3
|
export const homeIcon = require('./bottomtabs/home.png');
|
|
5
4
|
export const homeIconActive = require('./bottomtabs/homeactive.png');
|
|
6
5
|
export const analyticsIcon = require('./bottomtabs/analytics.png');
|
|
@@ -11,4 +10,26 @@ export const diaryIcon = require('./bottomtabs/diary.png');
|
|
|
11
10
|
export const diaryIconActive = require('./bottomtabs/diaryactive.png');
|
|
12
11
|
export const notificationIcon = require('./bottomtabs/notification.png');
|
|
13
12
|
export const notificationIconActive = require('./bottomtabs/notificationactive.png');
|
|
13
|
+
export const bottomTabIcons = {
|
|
14
|
+
home: {
|
|
15
|
+
default: homeIcon,
|
|
16
|
+
active: homeIconActive
|
|
17
|
+
},
|
|
18
|
+
analytics: {
|
|
19
|
+
default: analyticsIcon,
|
|
20
|
+
active: analyticsIconActive
|
|
21
|
+
},
|
|
22
|
+
crm: {
|
|
23
|
+
default: crmIcon,
|
|
24
|
+
active: crmIconActive
|
|
25
|
+
},
|
|
26
|
+
diary: {
|
|
27
|
+
default: diaryIcon,
|
|
28
|
+
active: diaryIconActive
|
|
29
|
+
},
|
|
30
|
+
notification: {
|
|
31
|
+
default: notificationIcon,
|
|
32
|
+
active: notificationIconActive
|
|
33
|
+
}
|
|
34
|
+
};
|
|
14
35
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-salespanda",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"description": "React Native SDK for multi-tenant enterprise applications with product flavors support",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/src/index.d.ts",
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
"codegenConfig": {
|
|
179
179
|
"name": "SalespandaSpec",
|
|
180
180
|
"type": "modules",
|
|
181
|
-
"jsSrcsDir": "
|
|
181
|
+
"jsSrcsDir": "lib/module",
|
|
182
182
|
"android": {
|
|
183
183
|
"javaPackageName": "com.salespanda"
|
|
184
184
|
}
|
package/react-native.config.js
CHANGED