mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-09-04 16:58:05 +02:00
11 lines
503 B
JavaScript
11 lines
503 B
JavaScript
export const contactCls = "contracts_Contactbook";
|
|
export const templateCls = "contracts_Template";
|
|
export const documentCls = "contracts_Document";
|
|
export const themeColor = "#47a3ad";
|
|
export const iconColor = "#686968";
|
|
export const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
|
|
export const maxFileSize = 10; // 10MB
|
|
export const maxTitleLength = 250; // 250 characters
|
|
export const maxNoteLength = 200; // 200 characters
|
|
export const maxDescriptionLength = 500; // 500 characters
|