-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdefaults.js
More file actions
79 lines (79 loc) · 1.8 KB
/
defaults.js
File metadata and controls
79 lines (79 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export default {
model: {
backgroundImageEnabled: true,
imageDimensions: { height: 0, width: 0 },
imageUrl: '',
prompt: '',
promptEnabled: true,
spellCheckEnabled: true,
studentInstructionsEnabled: true,
teacherInstructions: '',
teacherInstructionsEnabled: true,
toolbarEditorPosition: 'bottom',
},
configuration: {
baseInputConfiguration: {
audio: { disabled: false },
video: { disabled: false },
image: { disabled: false },
textAlign: { disabled: true },
showParagraphs: { disabled: false },
separateParagraphs: { disabled: true },
},
spellCheck: {
label: 'Spellcheck',
settings: false,
enabled: true,
},
backgroundImage: {
settings: true,
label: 'Background Image',
},
prompt: {
settings: true,
label: 'Prompt',
inputConfiguration: {
audio: { disabled: false },
video: { disabled: false },
image: { disabled: false },
},
required: false,
},
settingsPanelDisabled: false,
teacherInstructions: {
settings: true,
label: 'Teacher Instructions',
inputConfiguration: {
audio: { disabled: false },
video: { disabled: false },
image: { disabled: false },
},
required: false,
},
maxImageWidth: {
teacherInstructions: 300,
prompt: 300,
},
maxImageHeight: {
teacherInstructions: 300,
prompt: 300,
},
withRubric: {
settings: false,
label: 'Add Rubric',
},
mathMlOptions: {
mmlOutput: false,
mmlEditing: false,
},
language: {
settings: false,
label: 'Specify Language',
enabled: false,
},
languageChoices: {
label: 'Language Choices',
options: [],
},
},
};