import kludgeForUseStrict = require("../../kludgeForUseStrict"); "use strict"; const panel: Panel = { id: "page_participantGroups", displayName: "Describe your participant groups", pageExplanation: "Answer questions about your storytellers. Your answers will drive recommendations that appear on other pages.", pageCategories: "plan", headerAbove: "Think about your participants", panelFields: [ { id: "project_aboutParticipantGroups", valueType: "none", displayType: "label", displayPrompt: `On this page you can think about groups of participants you want to involve in your project. (Examples might be: doctors and patients; staff and customers; natives, immigrants, and tourists.).` }, { id: "project_participantGroupsList", valueType: "array", displayType: "grid", displayConfiguration: { itemPanelID: "panel_addParticipantGroup", gridConfiguration: { addButton: true, removeButton: true, duplicateButton: true, } }, displayName: "Participant groups", displayPrompt: "Please add participant groups in the list below (typically up to three groups)." } ] }; export = panel;