Files
super-app/App/common/constants/StringConstant.ts
Kshitij Pramod Ghongadi 377c2c0b80 NTP-6602 | Feature | Multi Plan For all (#12981)
Co-authored-by: SANDEEP KUMAR <sandeep.ku@navi.com>
Co-authored-by: Somarapu Vamshi <somarapu.vamshi@navi.com>
Co-authored-by: Shivam Goyal <shivam.goyal@navi.com>
Co-authored-by: vedant aggarwal <vedant.aggarwal@navi.com>
Co-authored-by: Mehul Garg <mehul.garg@navi.com>
Co-authored-by: Hardik Chaudhary <hardik.chaudhary@navi.com>
Co-authored-by: Aditya Narayan Malik <aditya.narayan@navi.com>
Co-authored-by: Shaurya Rehan <shaurya.rehan@navi.com>
Co-authored-by: Divyesh Shinde <divyesh.shinde@navi.com>
Co-authored-by: Mohit Rajput <mohit.rajput@navi.com>
Co-authored-by: sharmapoojabalrambhai <sharma.balrambhai@navi.com>
Co-authored-by: Prajjaval Verma <prajjaval.verma@navi.com>
2024-10-21 18:27:59 +00:00

64 lines
1.7 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",
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_SUBTITLE = "Please try again after some time";
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 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 HOME = "home";
export const ADVERSE = "adverse";
export const HARDWARE_BACK_PRESS = "hardwareBackPress";
export enum SeparatorType {
DASHED = "dashed",
SOLID = "solid",
GRADIENT = "gradient",
}
export enum SeparatorOrientationType {
VERTICAL = "vertical",
HORIZONTAL = "horizontal",
}