92 lines
2.5 KiB
TypeScript
92 lines
2.5 KiB
TypeScript
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",
|
|
NO_INTERNET: "NO_INTERNET",
|
|
CROSS: "CROSS",
|
|
BACK_ARROW: "BACK_ARROW",
|
|
HELP: "HELP",
|
|
QUOTE_APOLOGY_ICON: "QUOTE_APOLOGY_ICON",
|
|
};
|
|
|
|
export enum SelectButtonType {
|
|
RADIO = "RADIO",
|
|
}
|
|
|
|
export enum ScreenProperties {
|
|
ANIMATE_HEADER = "ANIMATE_HEADER",
|
|
SHOW_HEADER_SHADOW = "SHOW_HEADER_SHADOW",
|
|
}
|
|
|
|
export enum BundleState {
|
|
LOADING = "LOADING",
|
|
LOADED = "LOADED",
|
|
ERROR = "ERROR",
|
|
}
|
|
|
|
export const CODEPUSH_METHOD = "onCodepushStatusChange";
|
|
export const ERROR_TITLE = "Something went wrong!";
|
|
export const ERROR_INTERNET_TITLE = "No internet connection!";
|
|
export const ERROR_SUBTITLE = "Please try again after some time";
|
|
export const ERROR_INTERNET_SUBTITLE =
|
|
"Please check your internet connectivity and try again";
|
|
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";
|
|
export const PRE_QUOTE_ID = "preQuoteId";
|
|
export const APPLICATION_ID = "applicationId";
|
|
export const BUILD_CONFIG_DETAILS = "BUILD_CONFIG_DETAILS";
|
|
export const SPACE_UNICODE = "\u00A0";
|
|
export const REACT_NATIVE = "rn";
|
|
export const NAVIGATION_ERROR = "Navigation Error";
|
|
export const NETWORK_ERROR = "Network Error";
|
|
export const HOME = "home";
|
|
export const ADVERSE = "adverse";
|
|
export const HARDWARE_BACK_PRESS = "hardwareBackPress";
|
|
export const LOTTIE_VIEW = "LottieView";
|
|
export enum SeparatorType {
|
|
DASHED = "dashed",
|
|
SOLID = "solid",
|
|
GRADIENT = "gradient",
|
|
}
|
|
|
|
export enum SeparatorOrientationType {
|
|
VERTICAL = "vertical",
|
|
HORIZONTAL = "horizontal",
|
|
}
|
|
|
|
export const FontMapping = {
|
|
tt_bold: "NaviHeadline-Bold",
|
|
tt_regular: "NaviBody-Regular",
|
|
tt_semi_bold: "NaviBody-DemiBold",
|
|
tt_medium: "NaviHeadline-Reg",
|
|
};
|
|
|
|
export const UrlConstants = {
|
|
MIGRATION_BENEFIT_SCREEN_URL: "GI_MIGRATION_BENEFIT",
|
|
RENEWAL_PLAN_MIGRATION_SCREEN_URL: "GI_RENEWAL_PLAN_MIGRATION_SCREEN",
|
|
};
|
|
|
|
export enum CacheKeyConstants {
|
|
DISABLE_BOTTOM_SHEET = "DisableBottomSheet",
|
|
}
|
|
|
|
export enum CacheValueConstants {
|
|
TRUE = "true",
|
|
FALSE = "false",
|
|
}
|