react-native-mytatva-rn-sdk 1.0.0 → 1.1.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/android/app/build.gradle +5 -0
- package/android/build.gradle +5 -5
- package/android/gradle.properties +13 -5
- package/android/settings.gradle +9 -0
- package/android/src/main/AndroidManifest.xml +22 -1
- package/android/src/main/AndroidManifestNew.xml +59 -1
- package/android/src/main/java/com/{visitrnsdk/VisitRnSdkPackage.kt → mytatvarnsdk/MyTatvaRnSdkPackage.kt} +2 -2
- package/android/src/main/java/com/{visitrnsdk/VisitRnSdkViewManager.kt → mytatvarnsdk/MyTatvaRnSdkViewManager.kt} +1 -1
- package/lib/commonjs/BcaDeviceListSheet.js +286 -0
- package/lib/commonjs/BcaDeviceListSheet.js.map +1 -0
- package/lib/commonjs/MainWebView.js +68 -0
- package/lib/commonjs/MainWebView.js.map +1 -0
- package/lib/commonjs/ProgressWebView.js +547 -0
- package/lib/commonjs/ProgressWebView.js.map +1 -0
- package/lib/commonjs/Services.js +27 -1
- package/lib/commonjs/Services.js.map +1 -1
- package/lib/commonjs/Sheets.js +7 -0
- package/lib/commonjs/Sheets.js.map +1 -0
- package/lib/commonjs/api/auth.js +167 -0
- package/lib/commonjs/api/auth.js.map +1 -0
- package/lib/commonjs/api/base.js +224 -0
- package/lib/commonjs/api/base.js.map +1 -0
- package/lib/commonjs/api/index.js +12 -0
- package/lib/commonjs/api/index.js.map +1 -0
- package/lib/commonjs/assets/icons/achieve.svg +3 -0
- package/lib/commonjs/assets/icons/heart.svg +3 -0
- package/lib/commonjs/assets/icons/smartWatch.svg +3 -0
- package/lib/commonjs/constants/asyncstorage.js +29 -0
- package/lib/commonjs/constants/asyncstorage.js.map +1 -0
- package/lib/commonjs/constants/constants.js +1373 -0
- package/lib/commonjs/constants/constants.js.map +1 -0
- package/lib/commonjs/constants.js +12 -2
- package/lib/commonjs/constants.js.map +1 -1
- package/lib/commonjs/helpers/Matrics.js +49 -0
- package/lib/commonjs/helpers/Matrics.js.map +1 -0
- package/lib/commonjs/helpers/bluetoothPermissionHelper.js +114 -0
- package/lib/commonjs/helpers/bluetoothPermissionHelper.js.map +1 -0
- package/lib/commonjs/helpers/colors.js +304 -0
- package/lib/commonjs/helpers/colors.js.map +1 -0
- package/lib/commonjs/helpers/common.js +46 -0
- package/lib/commonjs/helpers/common.js.map +1 -0
- package/lib/commonjs/helpers/fonts.js +33 -0
- package/lib/commonjs/helpers/fonts.js.map +1 -0
- package/lib/commonjs/helpers/globalStyles.js +188 -0
- package/lib/commonjs/helpers/globalStyles.js.map +1 -0
- package/lib/commonjs/helpers/icons.js +16 -0
- package/lib/commonjs/helpers/icons.js.map +1 -0
- package/lib/commonjs/index.android.js +163 -414
- package/lib/commonjs/index.android.js.map +1 -1
- package/lib/commonjs/index.ios.js +138 -187
- package/lib/commonjs/index.ios.js.map +1 -1
- package/lib/commonjs/redux/Store.js +42 -0
- package/lib/commonjs/redux/Store.js.map +1 -0
- package/lib/commonjs/redux/hooks.js +8 -0
- package/lib/commonjs/redux/hooks.js.map +1 -0
- package/lib/commonjs/redux/sagas/AuthSaga.js +44 -0
- package/lib/commonjs/redux/sagas/AuthSaga.js.map +1 -0
- package/lib/commonjs/redux/sagas/index.js +15 -0
- package/lib/commonjs/redux/sagas/index.js.map +1 -0
- package/lib/commonjs/redux/slices/authSlice.js +80 -0
- package/lib/commonjs/redux/slices/authSlice.js.map +1 -0
- package/lib/commonjs/redux/slices/index.js +44 -0
- package/lib/commonjs/redux/slices/index.js.map +1 -0
- package/lib/commonjs/types/auth.js +2 -0
- package/lib/commonjs/types/auth.js.map +1 -0
- package/lib/commonjs/types/common.js +2 -0
- package/lib/commonjs/types/common.js.map +1 -0
- package/lib/commonjs/types/index.js +13 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/module/BcaDeviceListSheet.js +277 -0
- package/lib/module/BcaDeviceListSheet.js.map +1 -0
- package/lib/module/MainWebView.js +61 -0
- package/lib/module/MainWebView.js.map +1 -0
- package/lib/module/ProgressWebView.js +536 -0
- package/lib/module/ProgressWebView.js.map +1 -0
- package/lib/module/Services.js +24 -0
- package/lib/module/Services.js.map +1 -1
- package/lib/module/Sheets.js +4 -0
- package/lib/module/Sheets.js.map +1 -0
- package/lib/module/api/auth.js +160 -0
- package/lib/module/api/auth.js.map +1 -0
- package/lib/module/api/base.js +212 -0
- package/lib/module/api/base.js.map +1 -0
- package/lib/module/api/index.js +5 -0
- package/lib/module/api/index.js.map +1 -0
- package/lib/module/assets/icons/achieve.svg +3 -0
- package/lib/module/assets/icons/heart.svg +3 -0
- package/lib/module/assets/icons/smartWatch.svg +3 -0
- package/lib/module/constants/asyncstorage.js +23 -0
- package/lib/module/constants/asyncstorage.js.map +1 -0
- package/lib/module/constants/constants.js +1367 -0
- package/lib/module/constants/constants.js.map +1 -0
- package/lib/module/constants.js +12 -2
- package/lib/module/constants.js.map +1 -1
- package/lib/module/helpers/Matrics.js +44 -0
- package/lib/module/helpers/Matrics.js.map +1 -0
- package/lib/module/helpers/bluetoothPermissionHelper.js +103 -0
- package/lib/module/helpers/bluetoothPermissionHelper.js.map +1 -0
- package/lib/module/helpers/colors.js +298 -0
- package/lib/module/helpers/colors.js.map +1 -0
- package/lib/module/helpers/common.js +34 -0
- package/lib/module/helpers/common.js.map +1 -0
- package/lib/module/helpers/fonts.js +27 -0
- package/lib/module/helpers/fonts.js.map +1 -0
- package/lib/module/helpers/globalStyles.js +181 -0
- package/lib/module/helpers/globalStyles.js.map +1 -0
- package/lib/module/helpers/icons.js +9 -0
- package/lib/module/helpers/icons.js.map +1 -0
- package/lib/module/index.android.js +165 -413
- package/lib/module/index.android.js.map +1 -1
- package/lib/module/index.ios.js +138 -187
- package/lib/module/index.ios.js.map +1 -1
- package/lib/module/redux/Store.js +34 -0
- package/lib/module/redux/Store.js.map +1 -0
- package/lib/module/redux/hooks.js +7 -0
- package/lib/module/redux/hooks.js.map +1 -0
- package/lib/module/redux/sagas/AuthSaga.js +34 -0
- package/lib/module/redux/sagas/AuthSaga.js.map +1 -0
- package/lib/module/redux/sagas/index.js +8 -0
- package/lib/module/redux/sagas/index.js.map +1 -0
- package/lib/module/redux/slices/authSlice.js +68 -0
- package/lib/module/redux/slices/authSlice.js.map +1 -0
- package/lib/module/redux/slices/index.js +24 -0
- package/lib/module/redux/slices/index.js.map +1 -0
- package/lib/module/types/auth.js +2 -0
- package/lib/module/types/auth.js.map +1 -0
- package/lib/module/types/common.js +2 -0
- package/lib/module/types/common.js.map +1 -0
- package/lib/module/types/index.js +4 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/typescript/BcaDeviceListSheet.d.ts +7 -0
- package/lib/typescript/BcaDeviceListSheet.d.ts.map +1 -0
- package/lib/typescript/MainWebView.d.ts +4 -0
- package/lib/typescript/MainWebView.d.ts.map +1 -0
- package/lib/typescript/ProgressWebView.d.ts +4 -0
- package/lib/typescript/ProgressWebView.d.ts.map +1 -0
- package/lib/typescript/Services.d.ts +5 -0
- package/lib/typescript/Services.d.ts.map +1 -0
- package/lib/typescript/Sheets.d.ts +2 -0
- package/lib/typescript/Sheets.d.ts.map +1 -0
- package/lib/typescript/api/auth.d.ts +33 -0
- package/lib/typescript/api/auth.d.ts.map +1 -0
- package/lib/typescript/api/base.d.ts +20 -0
- package/lib/typescript/api/base.d.ts.map +1 -0
- package/lib/typescript/api/index.d.ts +35 -0
- package/lib/typescript/api/index.d.ts.map +1 -0
- package/lib/typescript/constants/asyncstorage.d.ts +23 -0
- package/lib/typescript/constants/asyncstorage.d.ts.map +1 -0
- package/lib/typescript/constants/constants.d.ts +1081 -0
- package/lib/typescript/constants/constants.d.ts.map +1 -0
- package/lib/typescript/constants.d.ts +16 -0
- package/lib/typescript/constants.d.ts.map +1 -0
- package/lib/typescript/helpers/Matrics.d.ts +14 -0
- package/lib/typescript/helpers/Matrics.d.ts.map +1 -0
- package/lib/typescript/helpers/bluetoothPermissionHelper.d.ts +18 -0
- package/lib/typescript/helpers/bluetoothPermissionHelper.d.ts.map +1 -0
- package/lib/typescript/helpers/colors.d.ts +297 -0
- package/lib/typescript/helpers/colors.d.ts.map +1 -0
- package/lib/typescript/helpers/common.d.ts +8 -0
- package/lib/typescript/helpers/common.d.ts.map +1 -0
- package/lib/typescript/helpers/fonts.d.ts +23 -0
- package/lib/typescript/helpers/fonts.d.ts.map +1 -0
- package/lib/typescript/helpers/globalStyles.d.ts +176 -0
- package/lib/typescript/helpers/globalStyles.d.ts.map +1 -0
- package/lib/typescript/helpers/icons.d.ts +6 -0
- package/lib/typescript/helpers/icons.d.ts.map +1 -0
- package/lib/typescript/index.android.d.ts +30 -0
- package/lib/typescript/index.android.d.ts.map +1 -0
- package/lib/typescript/index.ios.d.ts +28 -0
- package/lib/typescript/index.ios.d.ts.map +1 -0
- package/lib/typescript/redux/Store.d.ts +13 -0
- package/lib/typescript/redux/Store.d.ts.map +1 -0
- package/lib/typescript/redux/hooks.d.ts +1 -0
- package/lib/typescript/redux/hooks.d.ts.map +1 -0
- package/lib/typescript/redux/sagas/AuthSaga.d.ts +3 -0
- package/lib/typescript/redux/sagas/AuthSaga.d.ts.map +1 -0
- package/lib/typescript/redux/sagas/index.d.ts +3 -0
- package/lib/typescript/redux/sagas/index.d.ts.map +1 -0
- package/lib/typescript/redux/slices/authSlice.d.ts +5 -0
- package/lib/typescript/redux/slices/authSlice.d.ts.map +1 -0
- package/lib/typescript/redux/slices/index.d.ts +6 -0
- package/lib/typescript/redux/slices/index.d.ts.map +1 -0
- package/lib/typescript/types/auth.d.ts +485 -0
- package/lib/typescript/types/auth.d.ts.map +1 -0
- package/lib/typescript/types/common.d.ts +19 -0
- package/lib/typescript/types/common.d.ts.map +1 -0
- package/lib/typescript/types/index.d.ts +4 -0
- package/lib/typescript/types/index.d.ts.map +1 -0
- package/package.json +39 -8
- package/src/BcaDeviceListSheet.tsx +331 -0
- package/src/MainWebView.tsx +67 -0
- package/src/ProgressWebView.tsx +602 -0
- package/src/Services.js +40 -0
- package/src/Sheets.js +4 -0
- package/src/api/auth.ts +156 -0
- package/src/api/base.ts +247 -0
- package/src/api/index.ts +5 -0
- package/src/assets/icons/achieve.svg +3 -0
- package/src/assets/icons/heart.svg +3 -0
- package/src/assets/icons/smartWatch.svg +3 -0
- package/src/constants/asyncstorage.ts +23 -0
- package/src/constants/constants.ts +1204 -0
- package/src/constants.ts +14 -0
- package/src/helpers/Matrics.ts +48 -0
- package/src/helpers/bluetoothPermissionHelper.ts +198 -0
- package/src/helpers/colors.ts +320 -0
- package/src/helpers/common.ts +46 -0
- package/src/helpers/fonts.ts +28 -0
- package/src/helpers/globalStyles.ts +179 -0
- package/src/helpers/icons.ts +11 -0
- package/src/index.android.js +164 -577
- package/src/index.ios.js +147 -215
- package/src/redux/Store.ts +36 -0
- package/src/redux/hooks.ts +6 -0
- package/src/redux/sagas/AuthSaga.ts +49 -0
- package/src/redux/sagas/index.ts +9 -0
- package/src/redux/slices/authSlice.ts +81 -0
- package/src/redux/slices/index.ts +29 -0
- package/src/types/auth.ts +533 -0
- package/src/types/common.ts +19 -0
- package/src/types/index.ts +8 -0
- package/lib/typescript/index.test.d.ts +0 -1
- package/lib/typescript/index.test.d.ts.map +0 -1
- package/src/constants.js +0 -4
- /package/ios/{VisitRnSdk.xcodeproj → MyTatvaRnSdk.xcodeproj}/project.pbxproj +0 -0
- /package/ios/{VisitRnSdkViewManager.h → MyTatvaRnSdkViewManager.h} +0 -0
- /package/ios/{VisitRnSdkViewManager.m → MyTatvaRnSdkViewManager.m} +0 -0
- /package/{react-native-visit-rn-sdk.podspec → react-native-mytatva-rn-sdk.podspec} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../../src/constants/constants.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAkrCI"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
STAGE_BASE_URL: string;
|
|
3
|
+
PROD_BASE_URL: string;
|
|
4
|
+
PROD_ENC_KEY: string;
|
|
5
|
+
STAG_ENC_KEY: string;
|
|
6
|
+
PROD_ENC_IV: string;
|
|
7
|
+
STAGE_ENC_IV: string;
|
|
8
|
+
PROD_API_KEY: string;
|
|
9
|
+
STAGE_API_KEY: string;
|
|
10
|
+
STAG_GOODFLIP_URL: string;
|
|
11
|
+
PROD_GOODFLIP_URL: string;
|
|
12
|
+
STAG_APP_GOODFLIP_URL: string;
|
|
13
|
+
PROD_APP_GOODFLIP_URL: string;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/constants.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,wBAaE"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { s, vs, ms, mvs } from 'react-native-size-matters';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
screenHeight: number;
|
|
4
|
+
screenWidth: number;
|
|
5
|
+
statusBarHeight: number;
|
|
6
|
+
isIPhoneX: () => boolean;
|
|
7
|
+
s: typeof s;
|
|
8
|
+
vs: typeof vs;
|
|
9
|
+
ms: typeof ms;
|
|
10
|
+
mvs: typeof mvs;
|
|
11
|
+
scale: (value: any) => number;
|
|
12
|
+
};
|
|
13
|
+
export default _default;
|
|
14
|
+
//# sourceMappingURL=Matrics.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Matrics.d.ts","sourceRoot":"","sources":["../../../src/helpers/Matrics.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,MAAM,2BAA2B,CAAC;;;;;;;;;;;;AAoC3D,wBAUE"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type PermissionStatus } from 'react-native-permissions';
|
|
2
|
+
type PermissionResult = {
|
|
3
|
+
success: boolean;
|
|
4
|
+
status: PermissionStatus | string;
|
|
5
|
+
};
|
|
6
|
+
declare const managePermission: (permission: PermissionResult, enableRequestPermission: boolean | undefined, callBack: () => void) => Promise<void>;
|
|
7
|
+
declare const enableBluetooth: () => Promise<{
|
|
8
|
+
success: boolean;
|
|
9
|
+
data: void;
|
|
10
|
+
} | {
|
|
11
|
+
success: boolean;
|
|
12
|
+
data?: undefined;
|
|
13
|
+
}>;
|
|
14
|
+
declare const checkBluetoothPermission: () => Promise<PermissionResult>;
|
|
15
|
+
declare const requestBluetoothPermission: () => Promise<PermissionResult>;
|
|
16
|
+
declare const promptEnableLocation: () => void;
|
|
17
|
+
export { checkBluetoothPermission, requestBluetoothPermission, managePermission, enableBluetooth, promptEnableLocation, };
|
|
18
|
+
//# sourceMappingURL=bluetoothPermissionHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bluetoothPermissionHelper.d.ts","sourceRoot":"","sources":["../../../src/helpers/bluetoothPermissionHelper.ts"],"names":[],"mappings":"AACA,OAAO,EAML,KAAK,gBAAgB,EACtB,MAAM,0BAA0B,CAAC;AAIlC,KAAK,gBAAgB,GAAG;IACtB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,gBAAgB,GAAG,MAAM,CAAC;CACnC,CAAC;AAEF,QAAA,MAAM,gBAAgB,eACR,gBAAgB,0DAElB,MAAM,IAAI,kBA2BrB,CAAC;AACF,QAAA,MAAM,eAAe;;;;;;EAYpB,CAAC;AA6CF,QAAA,MAAM,wBAAwB,QAAa,QAAQ,gBAAgB,CAIlE,CAAC;AAEF,QAAA,MAAM,0BAA0B,QAAa,QAAQ,gBAAgB,CAIpE,CAAC;AA6DF,QAAA,MAAM,oBAAoB,YAazB,CAAC;AAEF,OAAO,EACL,wBAAwB,EACxB,0BAA0B,EAC1B,gBAAgB,EAChB,eAAe,EACf,oBAAoB,GACrB,CAAC"}
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
export declare const colors: {
|
|
2
|
+
themePurple: string;
|
|
3
|
+
inactiveGray: string;
|
|
4
|
+
white: string;
|
|
5
|
+
black: string;
|
|
6
|
+
labelTitleDarkGray: string;
|
|
7
|
+
darkGray: string;
|
|
8
|
+
subTitleLightGray: string;
|
|
9
|
+
inputValueDarkGray: string;
|
|
10
|
+
lightPurple: string;
|
|
11
|
+
dimGray: string;
|
|
12
|
+
lightGreyishBlue: string;
|
|
13
|
+
veryLightGreyishBlue: string;
|
|
14
|
+
inputBoxLightBorder: string;
|
|
15
|
+
inputBoxDarkBorder: string;
|
|
16
|
+
labelDarkGray: string;
|
|
17
|
+
lightGrey: string;
|
|
18
|
+
green: string;
|
|
19
|
+
purple: string;
|
|
20
|
+
hcChipGreen: string;
|
|
21
|
+
secondaryLabel: string;
|
|
22
|
+
disableButton: string;
|
|
23
|
+
secondaryDisableButton: string;
|
|
24
|
+
darkBlue: string;
|
|
25
|
+
lightGray: string;
|
|
26
|
+
stock: string;
|
|
27
|
+
titleLightGray: string;
|
|
28
|
+
tabTitleColor: string;
|
|
29
|
+
boxLightPurple: string;
|
|
30
|
+
darkBorder: string;
|
|
31
|
+
lightBorder: string;
|
|
32
|
+
darkLightGray: string;
|
|
33
|
+
lightGreen: string;
|
|
34
|
+
lightDarkGreen: string;
|
|
35
|
+
lightOrange: string;
|
|
36
|
+
lightPink: string;
|
|
37
|
+
veryLightPurple: string;
|
|
38
|
+
darkLightPurple: string;
|
|
39
|
+
progressBarGray: string;
|
|
40
|
+
lightSilver: string;
|
|
41
|
+
borderColor: string;
|
|
42
|
+
inactiveDotColor: string;
|
|
43
|
+
activeDotColor: string;
|
|
44
|
+
genderActiveButton: string;
|
|
45
|
+
genderActiveButtonBorder: string;
|
|
46
|
+
genderInactiveButtonBorder: string;
|
|
47
|
+
genderSelectedBorderColor: string;
|
|
48
|
+
highRiskBg: string;
|
|
49
|
+
mediumRisk: string;
|
|
50
|
+
lowRisk: string;
|
|
51
|
+
red: string;
|
|
52
|
+
yellow: string;
|
|
53
|
+
lightDarkbule: string;
|
|
54
|
+
buttonBoxPlaceholder: string;
|
|
55
|
+
backgroundColor: string;
|
|
56
|
+
THEME_OVERLAY: string;
|
|
57
|
+
SECONDARY_BUTTON_OPACITY: string;
|
|
58
|
+
Purple: string;
|
|
59
|
+
Green: string;
|
|
60
|
+
lightYellow: string;
|
|
61
|
+
lightRed: string;
|
|
62
|
+
optionbackground: string;
|
|
63
|
+
progressBarGreen: string;
|
|
64
|
+
progressBarRed: string;
|
|
65
|
+
progressBarYellow: string;
|
|
66
|
+
switchBackgroundColor: string;
|
|
67
|
+
switchActiveBackgroundColor: string;
|
|
68
|
+
seprationLineColor: string;
|
|
69
|
+
RadoiButtonColor: string;
|
|
70
|
+
lightpurple: string;
|
|
71
|
+
lightestGreen: string;
|
|
72
|
+
lightblue: string;
|
|
73
|
+
transparent: string;
|
|
74
|
+
lightGrayBackgroundColor: string;
|
|
75
|
+
OVERLAY_DARK_10: string;
|
|
76
|
+
OVERLAY_DARK_20: string;
|
|
77
|
+
OVERLAY_DARK_30: string;
|
|
78
|
+
OVERLAY_DARK_40: string;
|
|
79
|
+
OVERLAY_DARK_50: string;
|
|
80
|
+
OVERLAY_DARK_60: string;
|
|
81
|
+
OVERLAY_DARK_70: string;
|
|
82
|
+
shadow: string;
|
|
83
|
+
seprator: string;
|
|
84
|
+
orangeBg: string;
|
|
85
|
+
orangeLineBg: string;
|
|
86
|
+
greenBg: string;
|
|
87
|
+
greenLineBg: string;
|
|
88
|
+
inputUnfillBorder: string;
|
|
89
|
+
inputFillBorder: string;
|
|
90
|
+
darkPurple: string;
|
|
91
|
+
bottomSheetIndicatorColor: string;
|
|
92
|
+
disableCoachBtn: string;
|
|
93
|
+
careplix: {
|
|
94
|
+
button_background_primary: string;
|
|
95
|
+
palePurple: string;
|
|
96
|
+
disableButton: string;
|
|
97
|
+
lightWhite: string;
|
|
98
|
+
separatorGrey: string;
|
|
99
|
+
darkGreyishBlack: string;
|
|
100
|
+
text_primary: string;
|
|
101
|
+
text_tertiery: string;
|
|
102
|
+
purple_brown: string;
|
|
103
|
+
pale_green: string;
|
|
104
|
+
redish_pink: string;
|
|
105
|
+
light_yellow: string;
|
|
106
|
+
silverGray: string;
|
|
107
|
+
goldenYellow: string;
|
|
108
|
+
RED_10: string;
|
|
109
|
+
GREEN_10: string;
|
|
110
|
+
RED_20: string;
|
|
111
|
+
GREEN_20: string;
|
|
112
|
+
purple_background: string;
|
|
113
|
+
};
|
|
114
|
+
consultExpert: {
|
|
115
|
+
darkBlue: string;
|
|
116
|
+
};
|
|
117
|
+
onco: {
|
|
118
|
+
primaryOrange: string;
|
|
119
|
+
transparentOrange: string;
|
|
120
|
+
borderColor: string;
|
|
121
|
+
activeBlack: string;
|
|
122
|
+
lightGray: string;
|
|
123
|
+
gradientBlue: string;
|
|
124
|
+
gradientPurple: string;
|
|
125
|
+
red: string;
|
|
126
|
+
lightBlue: string;
|
|
127
|
+
secondaryText: string;
|
|
128
|
+
lightBlack: string;
|
|
129
|
+
lightPurple: string;
|
|
130
|
+
backgroundPurple: string;
|
|
131
|
+
purplebackground: string;
|
|
132
|
+
INACTIVE_STEP: string;
|
|
133
|
+
LOVENDER_PURPLE: string;
|
|
134
|
+
BORDER_GRAY: string;
|
|
135
|
+
BORDER_DISABLED: string;
|
|
136
|
+
BORDER_PRIMARY: string;
|
|
137
|
+
BORDER_SECONDARY: string;
|
|
138
|
+
SURFACE_BACKGROUND_PRIMARY: string;
|
|
139
|
+
SURFACE_BACKGROUND_SECONDARY: string;
|
|
140
|
+
SURFACE_BACKGROUND_TERTIARY: string;
|
|
141
|
+
BUTTON_LABEL_PRIMARY: string;
|
|
142
|
+
TEXT_PRIMARY: string;
|
|
143
|
+
TEXT_SECONDARY: string;
|
|
144
|
+
TEXT_TERTIARY: string;
|
|
145
|
+
TEXT_DISABLED: string;
|
|
146
|
+
TEXT_SUCCESS: string;
|
|
147
|
+
BUTTON_BACKGROUND_PRIMARY: string;
|
|
148
|
+
BUTTON_BACKGROUND_DISABLED: string;
|
|
149
|
+
BUTTON_LABEL_DISABLED: string;
|
|
150
|
+
SLAT_BLUE: string;
|
|
151
|
+
ORANGE_10: string;
|
|
152
|
+
ORANGE_20: string;
|
|
153
|
+
ORANGE_30: string;
|
|
154
|
+
ORANGE_40: string;
|
|
155
|
+
ORANGE_50: string;
|
|
156
|
+
ORANGE_60: string;
|
|
157
|
+
ORANGE_70: string;
|
|
158
|
+
ORANGE_80: string;
|
|
159
|
+
ORANGE_90: string;
|
|
160
|
+
ORANGE_100: string;
|
|
161
|
+
LAVENDER_10: string;
|
|
162
|
+
LAVENDER_20: string;
|
|
163
|
+
LAVENDER_30: string;
|
|
164
|
+
LAVENDER_40: string;
|
|
165
|
+
LAVENDER_50: string;
|
|
166
|
+
LAVENDER_60: string;
|
|
167
|
+
LAVENDER_70: string;
|
|
168
|
+
LAVENDER_80: string;
|
|
169
|
+
LAVENDER_90: string;
|
|
170
|
+
LAVENDER_100: string;
|
|
171
|
+
LAVENDER_400: string;
|
|
172
|
+
LAVENDER_45: string;
|
|
173
|
+
LAVENDER_05: string;
|
|
174
|
+
YELLOW_10: string;
|
|
175
|
+
YELLOW_20: string;
|
|
176
|
+
YELLOW_30: string;
|
|
177
|
+
YELLOW_40: string;
|
|
178
|
+
YELLOW_50: string;
|
|
179
|
+
YELLOW_60: string;
|
|
180
|
+
YELLOW_70: string;
|
|
181
|
+
YELLOW_80: string;
|
|
182
|
+
YELLOW_90: string;
|
|
183
|
+
YELLOW_100: string;
|
|
184
|
+
GREEN_10: string;
|
|
185
|
+
GREEN_20: string;
|
|
186
|
+
GREEN_30: string;
|
|
187
|
+
GREEN_40: string;
|
|
188
|
+
GREEN_50: string;
|
|
189
|
+
GREEN_60: string;
|
|
190
|
+
GREEN_70: string;
|
|
191
|
+
GREEN_75: string;
|
|
192
|
+
GREEN_80: string;
|
|
193
|
+
GREEN_90: string;
|
|
194
|
+
GREEN_100: string;
|
|
195
|
+
RED_10: string;
|
|
196
|
+
RED_20: string;
|
|
197
|
+
RED_30: string;
|
|
198
|
+
RED_40: string;
|
|
199
|
+
RED_50: string;
|
|
200
|
+
RED_60: string;
|
|
201
|
+
RED_70: string;
|
|
202
|
+
RED_75: string;
|
|
203
|
+
RED_80: string;
|
|
204
|
+
RED_90: string;
|
|
205
|
+
RED_100: string;
|
|
206
|
+
LIGHT_GRAY: string;
|
|
207
|
+
lavender: string;
|
|
208
|
+
deepPurple: string;
|
|
209
|
+
purple: string;
|
|
210
|
+
skyBlue: string;
|
|
211
|
+
primaryPurple: string;
|
|
212
|
+
PURPLE_10: string;
|
|
213
|
+
PURPLE_20: string;
|
|
214
|
+
PURPLE_30: string;
|
|
215
|
+
PURPLE_40: string;
|
|
216
|
+
PURPLE: string;
|
|
217
|
+
PINK_10: string;
|
|
218
|
+
leafGreen: string;
|
|
219
|
+
leafYellow: string;
|
|
220
|
+
leafRed: string;
|
|
221
|
+
leafRedTxt: string;
|
|
222
|
+
logoutRed: string;
|
|
223
|
+
actionBg: string;
|
|
224
|
+
WHITE_75: string;
|
|
225
|
+
goldenYellow: string;
|
|
226
|
+
};
|
|
227
|
+
grayLable: string;
|
|
228
|
+
primary: string;
|
|
229
|
+
secondary: string;
|
|
230
|
+
tertiary: string;
|
|
231
|
+
border_default: string;
|
|
232
|
+
border_enable: string;
|
|
233
|
+
allDisableState: string;
|
|
234
|
+
iconBG: string;
|
|
235
|
+
brand: string;
|
|
236
|
+
success: string;
|
|
237
|
+
alert: string;
|
|
238
|
+
failure: string;
|
|
239
|
+
informattion: string;
|
|
240
|
+
secondaryBrand: string;
|
|
241
|
+
darkGray1: string;
|
|
242
|
+
gray1: string;
|
|
243
|
+
yellow1: string;
|
|
244
|
+
green1: string;
|
|
245
|
+
switchInActiveBackgroundColor: string;
|
|
246
|
+
orange: string;
|
|
247
|
+
boxBorder: string;
|
|
248
|
+
joinCallBtb: string;
|
|
249
|
+
lightBackground: string;
|
|
250
|
+
wallet: {
|
|
251
|
+
PINK_1: string;
|
|
252
|
+
PINK_2: string;
|
|
253
|
+
GREEN_1: string;
|
|
254
|
+
GREEN_2: string;
|
|
255
|
+
BLUE_1: string;
|
|
256
|
+
BLUE_2: string;
|
|
257
|
+
};
|
|
258
|
+
orengeLightBackground: string;
|
|
259
|
+
orengePrimary: string;
|
|
260
|
+
goodFlip: {
|
|
261
|
+
btnPrimary: string;
|
|
262
|
+
btnShadowPrimary: string;
|
|
263
|
+
btnShadowSecondary: string;
|
|
264
|
+
primary: string;
|
|
265
|
+
primaryDark: string;
|
|
266
|
+
disabledBorder: string;
|
|
267
|
+
textDisabled: string;
|
|
268
|
+
backgroundPrimary: string;
|
|
269
|
+
backgroundDisabledLight: string;
|
|
270
|
+
backgroundDisabledDark: string;
|
|
271
|
+
input: {
|
|
272
|
+
borderPrimary: string;
|
|
273
|
+
shadowPrimary: string;
|
|
274
|
+
cursorPrimary: string;
|
|
275
|
+
backgroundPrimary: string;
|
|
276
|
+
shadowError: string;
|
|
277
|
+
borderError: string;
|
|
278
|
+
};
|
|
279
|
+
accent_indigo: string;
|
|
280
|
+
accent_indigo_secondary: string;
|
|
281
|
+
};
|
|
282
|
+
gun_powder: string;
|
|
283
|
+
mountain_meadow: string;
|
|
284
|
+
solitude: string;
|
|
285
|
+
royal_blue_goodflip: string;
|
|
286
|
+
alice_blue: string;
|
|
287
|
+
auro_metal_saurus: string;
|
|
288
|
+
anti_flash_white: string;
|
|
289
|
+
illuminating_emerald: string;
|
|
290
|
+
aero_blue: string;
|
|
291
|
+
honeydew: string;
|
|
292
|
+
sea_green: string;
|
|
293
|
+
dark_jungle_green: string;
|
|
294
|
+
cosmic_cobalt: string;
|
|
295
|
+
brunswick_green: string;
|
|
296
|
+
};
|
|
297
|
+
//# sourceMappingURL=colors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"colors.d.ts","sourceRoot":"","sources":["../../../src/helpers/colors.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8ThB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import 'react-native-get-random-values';
|
|
2
|
+
export declare const generateUUID: () => any;
|
|
3
|
+
export declare const capitalize: (str?: string) => string;
|
|
4
|
+
export declare const dateConverstion: (date: any, dateType?: string, format?: string, addTime?: boolean) => string;
|
|
5
|
+
export declare const checkStringTypeOf: (data: any) => string;
|
|
6
|
+
export declare const getTherapyArea: (userData: any) => any;
|
|
7
|
+
export declare const getDiseaseType: (userData: any) => any;
|
|
8
|
+
//# sourceMappingURL=common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/helpers/common.ts"],"names":[],"mappings":"AACA,OAAO,gCAAgC,CAAC;AAIxC,eAAO,MAAM,YAAY,WAExB,CAAC;AAEF,eAAO,MAAM,UAAU,0BAEtB,CAAC;AAEF,eAAO,MAAM,eAAe,SACpB,GAAG,aACC,MAAM,WACR,MAAM,YACL,OAAO,WAQjB,CAAC;AAGF,eAAO,MAAM,iBAAiB,SAAU,GAAG,WAK1C,CAAA;AAED,eAAO,MAAM,cAAc,aAAc,GAAG,QAI3C,CAAC;AAEF,eAAO,MAAM,cAAc,aAAc,GAAG,QAI3C,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
BOLD: string;
|
|
3
|
+
MEDIUM: string;
|
|
4
|
+
REGULAR: string;
|
|
5
|
+
SEMI_BOLD: string;
|
|
6
|
+
ONCO: {
|
|
7
|
+
EXTRA_LIGHT_200: string;
|
|
8
|
+
LIGHT_300: string;
|
|
9
|
+
REGULAR_400: string;
|
|
10
|
+
MEDIUM_500: string;
|
|
11
|
+
SEMI_BOLD_600: string;
|
|
12
|
+
BOLD_700: string;
|
|
13
|
+
EXTRA_BOLD_800: string;
|
|
14
|
+
};
|
|
15
|
+
DIGITAL: string;
|
|
16
|
+
ROBOTO_EXTRA_BOLD: string;
|
|
17
|
+
ROBOTO_BOLD: string;
|
|
18
|
+
ROBOTO_SEMI_BOLD: string;
|
|
19
|
+
ROBOTO_MEDIUM: string;
|
|
20
|
+
ROBOTO_REGULAR: string;
|
|
21
|
+
};
|
|
22
|
+
export default _default;
|
|
23
|
+
//# sourceMappingURL=fonts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fonts.d.ts","sourceRoot":"","sources":["../../../src/helpers/fonts.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAEA,wBAyBE"}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
export declare const globalStyles: {
|
|
2
|
+
shadowContainer: {
|
|
3
|
+
shadowOffset: {
|
|
4
|
+
width: number;
|
|
5
|
+
height: number;
|
|
6
|
+
};
|
|
7
|
+
shadowColor: string;
|
|
8
|
+
shadowOpacity: number;
|
|
9
|
+
shadowRadius: number;
|
|
10
|
+
elevation: number;
|
|
11
|
+
};
|
|
12
|
+
indicatorStyle: {
|
|
13
|
+
height: number;
|
|
14
|
+
width: number;
|
|
15
|
+
backgroundColor: string;
|
|
16
|
+
marginTop: number;
|
|
17
|
+
borderRadius: number;
|
|
18
|
+
};
|
|
19
|
+
header1: {
|
|
20
|
+
fontFamily: any;
|
|
21
|
+
fontSize: number;
|
|
22
|
+
lineHeight: number;
|
|
23
|
+
color: string;
|
|
24
|
+
};
|
|
25
|
+
header2: {
|
|
26
|
+
fontFamily: any;
|
|
27
|
+
fontSize: number;
|
|
28
|
+
lineHeight: number;
|
|
29
|
+
color: string;
|
|
30
|
+
};
|
|
31
|
+
header3: {
|
|
32
|
+
fontFamily: any;
|
|
33
|
+
fontSize: number;
|
|
34
|
+
lineHeight: number;
|
|
35
|
+
color: string;
|
|
36
|
+
};
|
|
37
|
+
header4: {
|
|
38
|
+
fontFamily: any;
|
|
39
|
+
fontSize: number;
|
|
40
|
+
lineHeight: number;
|
|
41
|
+
color: string;
|
|
42
|
+
};
|
|
43
|
+
header5: {
|
|
44
|
+
fontFamily: any;
|
|
45
|
+
fontSize: number;
|
|
46
|
+
lineHeight: number;
|
|
47
|
+
color: string;
|
|
48
|
+
};
|
|
49
|
+
body1: {
|
|
50
|
+
fontFamily: any;
|
|
51
|
+
fontSize: number;
|
|
52
|
+
lineHeight: number;
|
|
53
|
+
color: string;
|
|
54
|
+
};
|
|
55
|
+
body2: {
|
|
56
|
+
fontFamily: any;
|
|
57
|
+
fontSize: number;
|
|
58
|
+
lineHeight: number;
|
|
59
|
+
color: string;
|
|
60
|
+
};
|
|
61
|
+
body3: {
|
|
62
|
+
fontFamily: any;
|
|
63
|
+
fontSize: number;
|
|
64
|
+
lineHeight: number;
|
|
65
|
+
color: string;
|
|
66
|
+
};
|
|
67
|
+
body4: {
|
|
68
|
+
fontFamily: any;
|
|
69
|
+
fontSize: number;
|
|
70
|
+
lineHeight: number;
|
|
71
|
+
color: string;
|
|
72
|
+
};
|
|
73
|
+
button1: {
|
|
74
|
+
fontFamily: any;
|
|
75
|
+
fontSize: number;
|
|
76
|
+
lineHeight: number;
|
|
77
|
+
color: string;
|
|
78
|
+
};
|
|
79
|
+
button2: {
|
|
80
|
+
fontFamily: any;
|
|
81
|
+
fontSize: number;
|
|
82
|
+
lineHeight: number;
|
|
83
|
+
color: string;
|
|
84
|
+
};
|
|
85
|
+
button3: {
|
|
86
|
+
fontFamily: any;
|
|
87
|
+
fontSize: number;
|
|
88
|
+
lineHeight: number;
|
|
89
|
+
color: string;
|
|
90
|
+
};
|
|
91
|
+
ONCO_HEADER_1: {
|
|
92
|
+
fontFamily: any;
|
|
93
|
+
fontSize: number;
|
|
94
|
+
lineHeight: number;
|
|
95
|
+
color: string;
|
|
96
|
+
};
|
|
97
|
+
ONCO_HEADER_2: {
|
|
98
|
+
fontFamily: any;
|
|
99
|
+
fontSize: number;
|
|
100
|
+
lineHeight: number;
|
|
101
|
+
color: string;
|
|
102
|
+
};
|
|
103
|
+
ONCO_HEADER_3: {
|
|
104
|
+
fontFamily: any;
|
|
105
|
+
fontSize: number;
|
|
106
|
+
lineHeight: number;
|
|
107
|
+
color: string;
|
|
108
|
+
};
|
|
109
|
+
ONCO_HEADER_4: {
|
|
110
|
+
fontFamily: any;
|
|
111
|
+
fontSize: number;
|
|
112
|
+
lineHeight: number;
|
|
113
|
+
color: string;
|
|
114
|
+
};
|
|
115
|
+
ONCO_BODY_REGULAR_1: {
|
|
116
|
+
fontFamily: any;
|
|
117
|
+
fontSize: number;
|
|
118
|
+
lineHeight: number;
|
|
119
|
+
color: string;
|
|
120
|
+
};
|
|
121
|
+
ONCO_BODY_BOLD_1: {
|
|
122
|
+
fontFamily: any;
|
|
123
|
+
fontSize: number;
|
|
124
|
+
lineHeight: number;
|
|
125
|
+
color: string;
|
|
126
|
+
};
|
|
127
|
+
ONCO_BODY_REGULAR_2: {
|
|
128
|
+
fontFamily: any;
|
|
129
|
+
fontSize: number;
|
|
130
|
+
lineHeight: number;
|
|
131
|
+
color: string;
|
|
132
|
+
};
|
|
133
|
+
ONCO_BODY_BOLD_2: {
|
|
134
|
+
fontFamily: any;
|
|
135
|
+
fontSize: number;
|
|
136
|
+
lineHeight: number;
|
|
137
|
+
color: string;
|
|
138
|
+
};
|
|
139
|
+
ONCO_BODY_REGULAR_3: {
|
|
140
|
+
fontFamily: any;
|
|
141
|
+
fontSize: number;
|
|
142
|
+
lineHeight: number;
|
|
143
|
+
color: string;
|
|
144
|
+
};
|
|
145
|
+
ONCO_BODY_BOLD_3: {
|
|
146
|
+
fontFamily: any;
|
|
147
|
+
fontSize: number;
|
|
148
|
+
lineHeight: number;
|
|
149
|
+
color: string;
|
|
150
|
+
};
|
|
151
|
+
ONCO_CAPTION_REGULAR_1: {
|
|
152
|
+
fontFamily: any;
|
|
153
|
+
fontSize: number;
|
|
154
|
+
lineHeight: number;
|
|
155
|
+
color: string;
|
|
156
|
+
};
|
|
157
|
+
ONCO_CAPTION_BOLD_1: {
|
|
158
|
+
fontFamily: any;
|
|
159
|
+
fontSize: number;
|
|
160
|
+
lineHeight: number;
|
|
161
|
+
color: string;
|
|
162
|
+
};
|
|
163
|
+
ONCO_CAPTION_REGULAR_2: {
|
|
164
|
+
fontFamily: any;
|
|
165
|
+
fontSize: number;
|
|
166
|
+
lineHeight: number;
|
|
167
|
+
color: string;
|
|
168
|
+
};
|
|
169
|
+
ONCO_CAPTION_BOLD_2: {
|
|
170
|
+
fontFamily: any;
|
|
171
|
+
fontSize: number;
|
|
172
|
+
lineHeight: number;
|
|
173
|
+
color: string;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
//# sourceMappingURL=globalStyles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"globalStyles.d.ts","sourceRoot":"","sources":["../../../src/helpers/globalStyles.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6KvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/helpers/icons.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,KAAK;;;;CAIf,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export const httpClient: import("axios").AxiosInstance;
|
|
2
|
+
export default MyTatvaRnSdkView;
|
|
3
|
+
declare function MyTatvaRnSdkView({ mobileNumber, uuid, baseUrl, errorBaseUrl, token, environment, userMetaInfo, clientSource, moduleName, navigation }: {
|
|
4
|
+
mobileNumber: any;
|
|
5
|
+
uuid: any;
|
|
6
|
+
baseUrl: any;
|
|
7
|
+
errorBaseUrl: any;
|
|
8
|
+
token: any;
|
|
9
|
+
environment: any;
|
|
10
|
+
userMetaInfo: any;
|
|
11
|
+
clientSource: any;
|
|
12
|
+
moduleName: any;
|
|
13
|
+
navigation: any;
|
|
14
|
+
}): React.JSX.Element;
|
|
15
|
+
declare namespace MyTatvaRnSdkView {
|
|
16
|
+
namespace defaultProps {
|
|
17
|
+
const mobileNumber: string;
|
|
18
|
+
const uuid: string;
|
|
19
|
+
const token: string;
|
|
20
|
+
const baseUrl: string;
|
|
21
|
+
const errorBaseUrl: string;
|
|
22
|
+
const environment: string;
|
|
23
|
+
const metaInfo: {};
|
|
24
|
+
const clientSource: string;
|
|
25
|
+
const moduleName: string;
|
|
26
|
+
const navigation: {};
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
import React from "react";
|
|
30
|
+
//# sourceMappingURL=index.android.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.android.d.ts","sourceRoot":"","sources":["../../src/index.android.js"],"names":[],"mappings":"AAoCA,uDAMG;;AAUH;;;;;;;;;;;sBAqOC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export default MyTatvaRnSdkView;
|
|
2
|
+
declare function MyTatvaRnSdkView({ mobileNumber, uuid, baseUrl, errorBaseUrl, token, environment, userMetaInfo, clientSource, moduleName, navigation }: {
|
|
3
|
+
mobileNumber: any;
|
|
4
|
+
uuid: any;
|
|
5
|
+
baseUrl: any;
|
|
6
|
+
errorBaseUrl: any;
|
|
7
|
+
token: any;
|
|
8
|
+
environment: any;
|
|
9
|
+
userMetaInfo: any;
|
|
10
|
+
clientSource: any;
|
|
11
|
+
moduleName: any;
|
|
12
|
+
navigation: any;
|
|
13
|
+
}): React.JSX.Element;
|
|
14
|
+
declare namespace MyTatvaRnSdkView {
|
|
15
|
+
namespace defaultProps {
|
|
16
|
+
const mobileNumber: string;
|
|
17
|
+
const uuid: string;
|
|
18
|
+
const token: string;
|
|
19
|
+
const baseUrl: string;
|
|
20
|
+
const errorBaseUrl: string;
|
|
21
|
+
const environment: string;
|
|
22
|
+
const metaInfo: {};
|
|
23
|
+
const clientSource: string;
|
|
24
|
+
const moduleName: string;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
import React from "react";
|
|
28
|
+
//# sourceMappingURL=index.ios.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.ios.d.ts","sourceRoot":"","sources":["../../src/index.ios.js"],"names":[],"mappings":";AA2EA;;;;;;;;;;;sBA2LC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TypedUseSelectorHook } from 'react-redux';
|
|
2
|
+
export declare const Store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
3
|
+
Auth: import("../types/auth").UsersStateType;
|
|
4
|
+
}, any, import("@reduxjs/toolkit").Tuple<[import("redux").StoreEnhancer<{
|
|
5
|
+
dispatch: import("redux-thunk").ThunkDispatch<{
|
|
6
|
+
Auth: import("../types/auth").UsersStateType;
|
|
7
|
+
}, undefined, import("redux").UnknownAction>;
|
|
8
|
+
}, {}>, import("redux").StoreEnhancer<{}, {}>]>>;
|
|
9
|
+
export type RootState = ReturnType<typeof Store.getState>;
|
|
10
|
+
export type AppDispatch = typeof Store.dispatch;
|
|
11
|
+
export declare const useAppDispatch: () => AppDispatch;
|
|
12
|
+
export declare const useAppSelector: TypedUseSelectorHook<RootState>;
|
|
13
|
+
//# sourceMappingURL=Store.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Store.d.ts","sourceRoot":"","sources":["../../../src/redux/Store.ts"],"names":[],"mappings":"AAQA,OAAO,EAAC,oBAAoB,EAA2B,MAAM,aAAa,CAAC;AAa3E,eAAO,MAAM,KAAK;;;;;;gDAGhB,CAAC;AAGH,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,QAAQ,CAAC,CAAC;AAE1D,MAAM,MAAM,WAAW,GAAG,OAAO,KAAK,CAAC,QAAQ,CAAC;AAEhD,eAAO,MAAM,cAAc,EAAE,MAAM,WAAyB,CAAC;AAC7D,eAAO,MAAM,cAAc,EAAE,oBAAoB,CAAC,SAAS,CAAe,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=hooks.d.ts.map
|