123456789101112131415161718192021222324252627282930313233343536 |
- import {
- IconRecordAccount,
- IconRecordContact,
- IconRecordLead,
- IconRecordOpportunity
- } from '../base/icons';
-
- export const NOTES_MAX_LENGTH = 255;
-
- export const NOTES_LINES = 4;
-
- export const CONTENT_HEIGHT_OFFSET = 200;
-
- export const LIST_HEIGHT_OFFSET = 250;
-
- export const RECORD_TYPE = {
- ACCOUNT: {
- label: 'record.type.account',
- icon: IconRecordAccount
- },
- CONTACT: {
- label: 'record.type.contact',
- icon: IconRecordContact
- },
- LEAD: {
- label: 'record.type.lead',
- icon: IconRecordLead
- },
- OPPORTUNITY: {
- label: 'record.type.opportunity',
- icon: IconRecordOpportunity
- },
- OWNER: {
- label: 'record.type.owner'
- }
- };
|