Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/salesforce/constants.js

36 lines
735 B

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'
}
};