2024-03-27 20:36:03 +05:30
|
|
|
export const Orientation = {
|
|
|
|
|
VERTICAL: "vertical",
|
|
|
|
|
HORIZONTAL: "horizontal",
|
|
|
|
|
DIAGONAL: "diagonal",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const Lottie = {
|
|
|
|
|
FOOTER_LOADER_URL:
|
|
|
|
|
"https://public-assets.prod.navi-sa.in/home_uitron/cta_loader.json",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const ImageName = {
|
|
|
|
|
SWW: "SWW",
|
2024-10-24 11:52:11 +05:30
|
|
|
NO_INTERNET: "NO_INTERNET",
|
2024-03-27 20:36:03 +05:30
|
|
|
CROSS: "CROSS",
|
2024-05-14 23:40:14 +05:30
|
|
|
BACK_ARROW: "BACK_ARROW",
|
2024-03-27 20:36:03 +05:30
|
|
|
HELP: "HELP",
|
|
|
|
|
QUOTE_APOLOGY_ICON: "QUOTE_APOLOGY_ICON",
|
|
|
|
|
};
|
|
|
|
|
|
2024-05-14 23:40:14 +05:30
|
|
|
export enum SelectButtonType {
|
|
|
|
|
RADIO = "RADIO",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export enum ScreenProperties {
|
|
|
|
|
ANIMATE_HEADER = "ANIMATE_HEADER",
|
2024-10-21 23:57:59 +05:30
|
|
|
SHOW_HEADER_SHADOW = "SHOW_HEADER_SHADOW",
|
2024-05-14 23:40:14 +05:30
|
|
|
}
|
|
|
|
|
|
2024-05-21 12:07:06 +05:30
|
|
|
export enum BundleState {
|
|
|
|
|
LOADING = "LOADING",
|
|
|
|
|
LOADED = "LOADED",
|
|
|
|
|
ERROR = "ERROR",
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-16 16:20:34 +05:30
|
|
|
export const CODEPUSH_METHOD = "onCodepushStatusChange";
|
2024-03-27 20:36:03 +05:30
|
|
|
export const ERROR_TITLE = "Something went wrong";
|
2024-10-24 11:52:11 +05:30
|
|
|
export const ERROR_INTERNET_TITLE = "No internet connection!";
|
2024-03-27 20:36:03 +05:30
|
|
|
export const ERROR_SUBTITLE = "Please try again after some time";
|
2024-10-24 11:52:11 +05:30
|
|
|
export const ERROR_INTERNET_SUBTITLE =
|
|
|
|
|
"Please check your internet connectivity and try again";
|
2024-03-27 20:36:03 +05:30
|
|
|
export const RETRY = "Retry";
|
|
|
|
|
export const QUOTE_APOLOGY_TITLE =
|
|
|
|
|
"Sorry, we cannot insure some members with health issues!";
|
|
|
|
|
export const QUOTE_APOLOGY_SUBTITLE =
|
|
|
|
|
"You can still purchase policy for others members";
|
|
|
|
|
export const QUOTE_APOLOGY_BUTTON = "Buy new policy";
|
|
|
|
|
export const QUOTE_PATCH_FAIL_TOAST = "Failed. Try again";
|
|
|
|
|
export const QUOTE_ID = "quoteId";
|
2024-09-24 23:06:55 +05:30
|
|
|
export const APPLICATION_ID = "applicationId";
|
2024-03-27 20:36:03 +05:30
|
|
|
export const BUILD_CONFIG_DETAILS = "BUILD_CONFIG_DETAILS";
|
2024-05-14 23:40:14 +05:30
|
|
|
export const SPACE_UNICODE = "\u00A0";
|
2024-09-10 23:58:19 +05:30
|
|
|
export const REACT_NATIVE = "rn";
|
2024-09-24 23:09:17 +05:30
|
|
|
export const NAVIGATION_ERROR = "Navigation Error";
|
2024-11-07 15:31:54 +05:30
|
|
|
export const NETWORK_ERROR = "Network Error";
|
2024-10-09 14:04:57 +05:30
|
|
|
export const HOME = "home";
|
|
|
|
|
export const ADVERSE = "adverse";
|
2024-10-21 23:57:59 +05:30
|
|
|
export const HARDWARE_BACK_PRESS = "hardwareBackPress";
|
2024-09-24 16:03:37 +05:30
|
|
|
export enum SeparatorType {
|
|
|
|
|
DASHED = "dashed",
|
|
|
|
|
SOLID = "solid",
|
|
|
|
|
GRADIENT = "gradient",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export enum SeparatorOrientationType {
|
|
|
|
|
VERTICAL = "vertical",
|
|
|
|
|
HORIZONTAL = "horizontal",
|
|
|
|
|
}
|