diff --git a/src/config-schema.ts b/src/config-schema.ts index a60593d..c465a7e 100644 --- a/src/config-schema.ts +++ b/src/config-schema.ts @@ -51,12 +51,28 @@ export const configSchema = { _type: Type.Object, _default: { Numeric: ['number', 'fixed-value'], - Coded: ['select', 'checkbox', 'radio', 'toggle', 'content-switcher', 'fixed-value'], + Coded: [ + 'select', + 'checkbox', + 'radio', + 'content-switcher', + 'fixed-value', + 'markdown', + 'ui-select-extended', + 'drug', + 'problem', + 'encounter-provider', + 'encounter-location', + 'select-concept-answers', + 'encounter-role', + ], Text: ['text', 'textarea', 'fixed-value'], Date: ['date', 'fixed-value'], Datetime: ['datetime', 'fixed-value'], Boolean: ['toggle', 'select', 'radio', 'content-switcher', 'fixed-value'], Rule: ['repeating', 'group'], + 'N/A': [], + Complex: ['file'], }, }, enableFormValidation: {