@openmrs/esm-styleguide
Version:
The styleguide for OpenMRS SPA
85 lines (82 loc) • 2.25 kB
text/typescript
import { Type, validators } from '@openmrs/esm-config';
export interface StyleguideConfigObject {
'Brand color #1': string;
'Brand color #2': string;
'Brand color #3': string;
excludePatientIdentifierCodeTypes: {
uuids: Array<string>;
};
implementationName: string;
patientPhotoConceptUuid: string;
preferredCalendar: {
[key: string]: string;
};
}
export const esmStyleGuideSchema = {
'Brand color #1': {
_default: '#005d5d',
_type: Type.String,
},
'Brand color #2': {
_default: '#004144',
_type: Type.String,
},
'Brand color #3': {
_default: '#007d79',
_type: Type.String,
},
excludePatientIdentifierCodeTypes: {
uuids: {
_type: Type.Array,
_description: 'List of UUIDs of patient identifier types to exclude from rendering in the patient banner',
_default: [],
_elements: {
_type: Type.UUID,
},
},
},
implementationName: {
_type: Type.String,
_description: 'A name of the place (or authority) where all possible locations a user can choose are located.',
_default: 'Clinic',
},
patientPhotoConceptUuid: {
_type: Type.ConceptUuid,
_default: '736e8771-e501-4615-bfa7-570c03f4bef5',
_description:
"Used to look up the patient photo, which is stored as an attachment obs. Set to `null` in order to disable the feature and use only generated avatars. To remove the avatars entirely, use extension configuration's `remove` feature.",
},
preferredCalendar: {
_type: Type.Object,
_description:
"Keys should be locale codes, and values should be the preferred calendar for that locale. For example, {'am': 'ethiopic'}.",
_default: {
am: 'ethiopic',
},
_elements: {
_validators: [
validators.oneOf([
'buddhist',
'chinese',
'coptic',
'dangi',
'ethioaa',
'ethiopic',
'gregory',
'hebrew',
'indian',
'islamic',
'islamic-umalqura',
'islamic-tbla',
'islamic-civil',
'islamic-rgsa',
'iso8601',
'japanese',
'persian',
'roc',
'islamicc',
]),
],
},
},
};