@cranberry-money/shared-constants
Version:
Shared constants for Blueberry platform
17 lines • 626 B
JavaScript
export const ALLOCATION_DEFAULTS = {
DEFAULT_PERCENTAGE: 10,
PERCENTAGE_PRECISION: 0.01,
TARGET_TOTAL: 100,
};
export const TIME_RANGES = [
{ label: '3M', value: '3M', months: 3 },
{ label: '6M', value: '6M', months: 6 },
{ label: '1Y', value: '1Y', months: 12 },
{ label: '2Y', value: '2Y', months: 24 },
{ label: '3Y', value: '3Y', months: 36 },
{ label: 'ALL', value: 'ALL', months: null },
];
export const MAX_CHART_POINTS = 90;
export const PASSWORD_VALIDATION = { MIN_LENGTH: 8 };
export const EMAIL_CONFIRMATION_VALIDATION = { TOKEN_LENGTH: 6 };
//# sourceMappingURL=utilities.js.map