@pie-element/graphing-solution-set 6.1.2-next.1 → 6.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +1 -0
- package/CHANGELOG.md +856 -0
- package/LICENSE.md +5 -0
- package/README.md +20 -0
- package/configure/CHANGELOG.json +1 -0
- package/configure/CHANGELOG.md +816 -0
- package/configure/lib/configure.js +312 -0
- package/configure/lib/configure.js.map +1 -0
- package/configure/lib/correct-response.js +435 -0
- package/configure/lib/correct-response.js.map +1 -0
- package/configure/lib/defaults.js +357 -0
- package/configure/lib/defaults.js.map +1 -0
- package/configure/lib/graphing-config.js +408 -0
- package/configure/lib/graphing-config.js.map +1 -0
- package/configure/lib/index.js +163 -0
- package/configure/lib/index.js.map +1 -0
- package/configure/lib/utils.js +630 -0
- package/configure/lib/utils.js.map +1 -0
- package/configure/package.json +29 -0
- package/controller/CHANGELOG.json +1 -0
- package/controller/CHANGELOG.md +675 -0
- package/controller/lib/defaults.js +69 -0
- package/controller/lib/defaults.js.map +1 -0
- package/controller/lib/index.js +351 -0
- package/controller/lib/index.js.map +1 -0
- package/controller/lib/utils.js +212 -0
- package/controller/lib/utils.js.map +1 -0
- package/controller/package.json +22 -0
- package/demo-gss.gif +0 -0
- package/docs/config-schema.json +1560 -0
- package/docs/config-schema.json.md +1114 -0
- package/docs/demo/config.js +8 -0
- package/docs/demo/generate.js +54 -0
- package/docs/demo/index.html +1 -0
- package/docs/demo/session.js +6 -0
- package/docs/pie-schema.json +1800 -0
- package/docs/pie-schema.json.md +952 -0
- package/lib/index.js +164 -0
- package/lib/index.js.map +1 -0
- package/lib/main.js +355 -0
- package/lib/main.js.map +1 -0
- package/lib/utils.js +515 -0
- package/lib/utils.js.map +1 -0
- package/package.json +23 -86
- package/configure.js +0 -2
- package/controller.js +0 -1
- package/dist/author/configure.d.ts +0 -26
- package/dist/author/configure.js +0 -190
- package/dist/author/correct-response.d.ts +0 -33
- package/dist/author/correct-response.js +0 -206
- package/dist/author/defaults.d.ts +0 -238
- package/dist/author/defaults.js +0 -339
- package/dist/author/graphing-config.d.ts +0 -33
- package/dist/author/graphing-config.js +0 -237
- package/dist/author/index.d.ts +0 -62
- package/dist/author/index.js +0 -87
- package/dist/author/utils.d.ts +0 -46
- package/dist/author/utils.js +0 -474
- package/dist/browser/author/index.js +0 -1942
- package/dist/browser/author/index.js.map +0 -1
- package/dist/browser/browser-pUycHh7Y.js +0 -348
- package/dist/browser/browser-pUycHh7Y.js.map +0 -1
- package/dist/browser/controller/index.js +0 -193
- package/dist/browser/controller/index.js.map +0 -1
- package/dist/browser/delivery/index.js +0 -782
- package/dist/browser/delivery/index.js.map +0 -1
- package/dist/browser/dist-BxTk7Laj.js +0 -57671
- package/dist/browser/dist-BxTk7Laj.js.map +0 -1
- package/dist/browser/graphing-solution-set.css +0 -2
- package/dist/controller/defaults.d.ts +0 -64
- package/dist/controller/defaults.js +0 -54
- package/dist/controller/index.d.ts +0 -24
- package/dist/controller/index.js +0 -110
- package/dist/controller/utils.d.ts +0 -20
- package/dist/controller/utils.js +0 -39
- package/dist/delivery/index.d.ts +0 -22
- package/dist/delivery/index.js +0 -62
- package/dist/delivery/main.d.ts +0 -31
- package/dist/delivery/main.js +0 -198
- package/dist/delivery/utils.d.ts +0 -12
- package/dist/delivery/utils.js +0 -220
- package/dist/graphing-solution-set.css +0 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.iife.d.ts +0 -8
- package/dist/index.iife.js +0 -405
- package/dist/index.js +0 -2
- package/dist/runtime-support.d.ts +0 -12
- package/dist/runtime-support.js +0 -12
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
/*
|
|
8
|
+
* This file contains the default configuration for the Graphing Solution Set Item Type.
|
|
9
|
+
* Model is similar to the one used in graphing item type except for the gssLineData object which handles
|
|
10
|
+
* the configuration for the lines and the solution set.
|
|
11
|
+
*
|
|
12
|
+
* Same model is used in controller default.js
|
|
13
|
+
* */
|
|
14
|
+
var _default = exports.default = {
|
|
15
|
+
model: {
|
|
16
|
+
answers: {
|
|
17
|
+
correctAnswer: {
|
|
18
|
+
name: 'Correct Answer',
|
|
19
|
+
marks: []
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
arrows: {
|
|
23
|
+
left: true,
|
|
24
|
+
right: true,
|
|
25
|
+
up: true,
|
|
26
|
+
down: true
|
|
27
|
+
},
|
|
28
|
+
marks: [],
|
|
29
|
+
defaultGridConfiguration: 0,
|
|
30
|
+
domain: {
|
|
31
|
+
min: -5,
|
|
32
|
+
max: 5,
|
|
33
|
+
step: 1,
|
|
34
|
+
labelStep: 1,
|
|
35
|
+
axisLabel: 'x'
|
|
36
|
+
},
|
|
37
|
+
graph: {
|
|
38
|
+
width: 500,
|
|
39
|
+
height: 500
|
|
40
|
+
},
|
|
41
|
+
gssLineData: {
|
|
42
|
+
numberOfLines: 1,
|
|
43
|
+
selectedTool: 'lineA',
|
|
44
|
+
sections: [],
|
|
45
|
+
lineA: {
|
|
46
|
+
lineType: 'Solid'
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
includeAxes: true,
|
|
50
|
+
labels: {},
|
|
51
|
+
labelsEnabled: true,
|
|
52
|
+
padding: true,
|
|
53
|
+
prompt: '',
|
|
54
|
+
range: {
|
|
55
|
+
min: -5,
|
|
56
|
+
max: 5,
|
|
57
|
+
step: 1,
|
|
58
|
+
labelStep: 1,
|
|
59
|
+
axisLabel: 'y'
|
|
60
|
+
},
|
|
61
|
+
rationale: '',
|
|
62
|
+
standardGrid: false,
|
|
63
|
+
title: '',
|
|
64
|
+
coordinatesOnHover: false,
|
|
65
|
+
promptEnabled: true,
|
|
66
|
+
rationaleEnabled: true,
|
|
67
|
+
teacherInstructionsEnabled: true,
|
|
68
|
+
studentInstructionsEnabled: true
|
|
69
|
+
},
|
|
70
|
+
configuration: {
|
|
71
|
+
authoring: {
|
|
72
|
+
settings: false,
|
|
73
|
+
label: 'Customize Grid Setup',
|
|
74
|
+
enabled: true,
|
|
75
|
+
includeAxesEnabled: false,
|
|
76
|
+
standardGridEnabled: true,
|
|
77
|
+
min: {
|
|
78
|
+
label: 'Min Value',
|
|
79
|
+
enabled: true
|
|
80
|
+
},
|
|
81
|
+
max: {
|
|
82
|
+
label: 'Max Value',
|
|
83
|
+
enabled: true
|
|
84
|
+
},
|
|
85
|
+
axisLabel: {
|
|
86
|
+
label: 'Label',
|
|
87
|
+
enabled: true
|
|
88
|
+
},
|
|
89
|
+
step: {
|
|
90
|
+
label: 'Grid Interval',
|
|
91
|
+
enabled: true
|
|
92
|
+
},
|
|
93
|
+
labelStep: {
|
|
94
|
+
label: 'Label Interval',
|
|
95
|
+
enabled: true
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
arrows: {
|
|
99
|
+
settings: true,
|
|
100
|
+
label: 'Include Arrows',
|
|
101
|
+
left: {
|
|
102
|
+
label: 'left'
|
|
103
|
+
},
|
|
104
|
+
right: {
|
|
105
|
+
label: 'right'
|
|
106
|
+
},
|
|
107
|
+
up: {
|
|
108
|
+
label: 'up'
|
|
109
|
+
},
|
|
110
|
+
down: {
|
|
111
|
+
label: 'down'
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
gridConfigurations: [{
|
|
115
|
+
label: '4-quadrant coordinate grid, -10 to 10',
|
|
116
|
+
arrows: {
|
|
117
|
+
left: true,
|
|
118
|
+
right: true,
|
|
119
|
+
up: true,
|
|
120
|
+
down: true
|
|
121
|
+
},
|
|
122
|
+
domain: {
|
|
123
|
+
min: -10,
|
|
124
|
+
max: 10,
|
|
125
|
+
step: 1,
|
|
126
|
+
padding: 0,
|
|
127
|
+
labelStep: 1,
|
|
128
|
+
axisLabel: '<i>x</i>'
|
|
129
|
+
},
|
|
130
|
+
graph: {
|
|
131
|
+
width: 480,
|
|
132
|
+
height: 480
|
|
133
|
+
},
|
|
134
|
+
includeAxes: true,
|
|
135
|
+
labels: {
|
|
136
|
+
top: '',
|
|
137
|
+
right: '',
|
|
138
|
+
bottom: '',
|
|
139
|
+
left: ''
|
|
140
|
+
},
|
|
141
|
+
padding: true,
|
|
142
|
+
range: {
|
|
143
|
+
min: -10,
|
|
144
|
+
max: 10,
|
|
145
|
+
step: 1,
|
|
146
|
+
padding: 0,
|
|
147
|
+
labelStep: 1,
|
|
148
|
+
axisLabel: '<i>y</i>'
|
|
149
|
+
},
|
|
150
|
+
standardGrid: true,
|
|
151
|
+
title: ''
|
|
152
|
+
}, {
|
|
153
|
+
label: '0 to 10 on both axes',
|
|
154
|
+
arrows: {
|
|
155
|
+
left: false,
|
|
156
|
+
right: true,
|
|
157
|
+
up: true,
|
|
158
|
+
down: false
|
|
159
|
+
},
|
|
160
|
+
domain: {
|
|
161
|
+
min: 0,
|
|
162
|
+
max: 10,
|
|
163
|
+
step: 1,
|
|
164
|
+
padding: 0,
|
|
165
|
+
labelStep: 1,
|
|
166
|
+
axisLabel: '<i>x</i>'
|
|
167
|
+
},
|
|
168
|
+
graph: {
|
|
169
|
+
width: 480,
|
|
170
|
+
height: 480
|
|
171
|
+
},
|
|
172
|
+
includeAxes: true,
|
|
173
|
+
labels: {
|
|
174
|
+
top: '',
|
|
175
|
+
right: '',
|
|
176
|
+
bottom: '',
|
|
177
|
+
left: ''
|
|
178
|
+
},
|
|
179
|
+
padding: true,
|
|
180
|
+
range: {
|
|
181
|
+
min: 0,
|
|
182
|
+
max: 10,
|
|
183
|
+
step: 1,
|
|
184
|
+
padding: 0,
|
|
185
|
+
labelStep: 1,
|
|
186
|
+
axisLabel: '<i>y</i>'
|
|
187
|
+
},
|
|
188
|
+
standardGrid: true,
|
|
189
|
+
title: ''
|
|
190
|
+
}, {
|
|
191
|
+
label: '0 to 20 on both axes',
|
|
192
|
+
arrows: {
|
|
193
|
+
left: false,
|
|
194
|
+
right: true,
|
|
195
|
+
up: true,
|
|
196
|
+
down: false
|
|
197
|
+
},
|
|
198
|
+
domain: {
|
|
199
|
+
min: 0,
|
|
200
|
+
max: 20,
|
|
201
|
+
step: 1,
|
|
202
|
+
padding: 0,
|
|
203
|
+
labelStep: 1,
|
|
204
|
+
axisLabel: '<i>x</i>'
|
|
205
|
+
},
|
|
206
|
+
graph: {
|
|
207
|
+
width: 480,
|
|
208
|
+
height: 480
|
|
209
|
+
},
|
|
210
|
+
includeAxes: true,
|
|
211
|
+
labels: {
|
|
212
|
+
top: '',
|
|
213
|
+
right: '',
|
|
214
|
+
bottom: '',
|
|
215
|
+
left: ''
|
|
216
|
+
},
|
|
217
|
+
padding: true,
|
|
218
|
+
range: {
|
|
219
|
+
min: 0,
|
|
220
|
+
max: 20,
|
|
221
|
+
step: 1,
|
|
222
|
+
padding: 0,
|
|
223
|
+
labelStep: 1,
|
|
224
|
+
axisLabel: '<i>y</i>'
|
|
225
|
+
},
|
|
226
|
+
standardGrid: true,
|
|
227
|
+
title: ''
|
|
228
|
+
}, {
|
|
229
|
+
label: 'Sample Data Graph',
|
|
230
|
+
arrows: {
|
|
231
|
+
left: false,
|
|
232
|
+
right: true,
|
|
233
|
+
up: true,
|
|
234
|
+
down: false
|
|
235
|
+
},
|
|
236
|
+
domain: {
|
|
237
|
+
min: 0,
|
|
238
|
+
max: 30,
|
|
239
|
+
step: 1,
|
|
240
|
+
padding: 0,
|
|
241
|
+
labelStep: 2,
|
|
242
|
+
axisLabel: '<i>t</i>'
|
|
243
|
+
},
|
|
244
|
+
graph: {
|
|
245
|
+
width: 480,
|
|
246
|
+
height: 480
|
|
247
|
+
},
|
|
248
|
+
includeAxes: true,
|
|
249
|
+
labels: {
|
|
250
|
+
top: '',
|
|
251
|
+
right: '',
|
|
252
|
+
bottom: 'Time (seconds)',
|
|
253
|
+
left: 'Distance (meters)'
|
|
254
|
+
},
|
|
255
|
+
padding: true,
|
|
256
|
+
range: {
|
|
257
|
+
min: 0,
|
|
258
|
+
max: 80,
|
|
259
|
+
step: 5,
|
|
260
|
+
padding: 0,
|
|
261
|
+
labelStep: 10,
|
|
262
|
+
axisLabel: '<i>d</i>'
|
|
263
|
+
},
|
|
264
|
+
standardGrid: false,
|
|
265
|
+
title: 'Distance as a function of time'
|
|
266
|
+
}],
|
|
267
|
+
graphDimensions: {
|
|
268
|
+
settings: false,
|
|
269
|
+
label: 'Graph Dimensions',
|
|
270
|
+
enabled: true,
|
|
271
|
+
min: 150,
|
|
272
|
+
max: 800,
|
|
273
|
+
step: 20
|
|
274
|
+
},
|
|
275
|
+
padding: {
|
|
276
|
+
settings: false,
|
|
277
|
+
label: 'Padding'
|
|
278
|
+
},
|
|
279
|
+
labels: {
|
|
280
|
+
settings: true,
|
|
281
|
+
label: 'Graph Labels',
|
|
282
|
+
enabled: true,
|
|
283
|
+
top: 'Click here to add a top label',
|
|
284
|
+
right: 'Click here to add a right label',
|
|
285
|
+
bottom: 'Click here to add a bottom label',
|
|
286
|
+
left: 'Click here to add a left label'
|
|
287
|
+
},
|
|
288
|
+
prompt: {
|
|
289
|
+
settings: true,
|
|
290
|
+
label: 'Item Stem'
|
|
291
|
+
},
|
|
292
|
+
rationale: {
|
|
293
|
+
settings: true,
|
|
294
|
+
label: 'Rationale'
|
|
295
|
+
},
|
|
296
|
+
scoringType: {
|
|
297
|
+
settings: false,
|
|
298
|
+
label: 'Scoring Type'
|
|
299
|
+
},
|
|
300
|
+
studentInstructions: {
|
|
301
|
+
settings: false,
|
|
302
|
+
label: 'Student Instructions'
|
|
303
|
+
},
|
|
304
|
+
teacherInstructions: {
|
|
305
|
+
settings: true,
|
|
306
|
+
label: 'Teacher Instructions'
|
|
307
|
+
},
|
|
308
|
+
title: {
|
|
309
|
+
settings: true,
|
|
310
|
+
label: 'Graph Title',
|
|
311
|
+
enabled: true,
|
|
312
|
+
placeholder: 'Click here to add a title for this graph'
|
|
313
|
+
},
|
|
314
|
+
instruction: {
|
|
315
|
+
settings: false,
|
|
316
|
+
label: 'Graphing Solution Set items involve plotting one or two lines on a graph and then selecting the correct area that represents the solution set. To create one, first configure the grid, then select if one or two lines will be offered and if the lines should be solid or dashed. After defining the line(s), define the correct answer by clicking the area that represents the solution set.'
|
|
317
|
+
},
|
|
318
|
+
settingsPanelDisabled: false,
|
|
319
|
+
spellCheck: {
|
|
320
|
+
label: 'Spellcheck',
|
|
321
|
+
settings: false,
|
|
322
|
+
enabled: true
|
|
323
|
+
},
|
|
324
|
+
coordinatesOnHover: {
|
|
325
|
+
settings: true,
|
|
326
|
+
label: 'Coordinates on Hover'
|
|
327
|
+
},
|
|
328
|
+
maxImageWidth: {
|
|
329
|
+
teacherInstructions: 300,
|
|
330
|
+
prompt: 300,
|
|
331
|
+
rationale: 300
|
|
332
|
+
},
|
|
333
|
+
maxImageHeight: {
|
|
334
|
+
teacherInstructions: 300,
|
|
335
|
+
prompt: 300,
|
|
336
|
+
rationale: 300
|
|
337
|
+
},
|
|
338
|
+
withRubric: {
|
|
339
|
+
settings: false,
|
|
340
|
+
label: 'Add Rubric'
|
|
341
|
+
},
|
|
342
|
+
language: {
|
|
343
|
+
settings: false,
|
|
344
|
+
label: 'Specify Language',
|
|
345
|
+
enabled: false
|
|
346
|
+
},
|
|
347
|
+
languageChoices: {
|
|
348
|
+
label: 'Language Choices',
|
|
349
|
+
options: []
|
|
350
|
+
},
|
|
351
|
+
mathMlOptions: {
|
|
352
|
+
mmlOutput: false,
|
|
353
|
+
mmlEditing: false
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
};
|
|
357
|
+
//# sourceMappingURL=defaults.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaults.js","names":["_default","exports","default","model","answers","correctAnswer","name","marks","arrows","left","right","up","down","defaultGridConfiguration","domain","min","max","step","labelStep","axisLabel","graph","width","height","gssLineData","numberOfLines","selectedTool","sections","lineA","lineType","includeAxes","labels","labelsEnabled","padding","prompt","range","rationale","standardGrid","title","coordinatesOnHover","promptEnabled","rationaleEnabled","teacherInstructionsEnabled","studentInstructionsEnabled","configuration","authoring","settings","label","enabled","includeAxesEnabled","standardGridEnabled","gridConfigurations","top","bottom","graphDimensions","scoringType","studentInstructions","teacherInstructions","placeholder","instruction","settingsPanelDisabled","spellCheck","maxImageWidth","maxImageHeight","withRubric","language","languageChoices","options","mathMlOptions","mmlOutput","mmlEditing"],"sources":["../src/defaults.js"],"sourcesContent":["/*\n * This file contains the default configuration for the Graphing Solution Set Item Type.\n * Model is similar to the one used in graphing item type except for the gssLineData object which handles\n * the configuration for the lines and the solution set.\n *\n * Same model is used in controller default.js\n * */\nexport default {\n model: {\n answers: {\n correctAnswer: {\n name: 'Correct Answer',\n marks: [],\n },\n },\n arrows: {\n left: true,\n right: true,\n up: true,\n down: true,\n },\n marks: [],\n defaultGridConfiguration: 0,\n domain: {\n min: -5,\n max: 5,\n step: 1,\n labelStep: 1,\n axisLabel: 'x',\n },\n graph: {\n width: 500,\n height: 500,\n },\n gssLineData: {\n numberOfLines: 1,\n selectedTool: 'lineA',\n sections: [],\n lineA: {\n lineType: 'Solid',\n },\n },\n includeAxes: true,\n labels: {},\n labelsEnabled: true,\n padding: true,\n prompt: '',\n range: {\n min: -5,\n max: 5,\n step: 1,\n labelStep: 1,\n axisLabel: 'y',\n },\n rationale: '',\n standardGrid: false,\n title: '',\n coordinatesOnHover: false,\n promptEnabled: true,\n rationaleEnabled: true,\n teacherInstructionsEnabled: true,\n studentInstructionsEnabled: true,\n },\n configuration: {\n authoring: {\n settings: false,\n label: 'Customize Grid Setup',\n enabled: true,\n includeAxesEnabled: false,\n standardGridEnabled: true,\n min: {\n label: 'Min Value',\n enabled: true,\n },\n max: {\n label: 'Max Value',\n enabled: true,\n },\n axisLabel: {\n label: 'Label',\n enabled: true,\n },\n step: {\n label: 'Grid Interval',\n enabled: true,\n },\n labelStep: {\n label: 'Label Interval',\n enabled: true,\n },\n },\n arrows: {\n settings: true,\n label: 'Include Arrows',\n left: {\n label: 'left',\n },\n right: {\n label: 'right',\n },\n up: {\n label: 'up',\n },\n down: {\n label: 'down',\n },\n },\n gridConfigurations: [\n {\n label: '4-quadrant coordinate grid, -10 to 10',\n arrows: {\n left: true,\n right: true,\n up: true,\n down: true,\n },\n domain: {\n min: -10,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>x</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: '',\n left: '',\n },\n padding: true,\n range: {\n min: -10,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>y</i>',\n },\n standardGrid: true,\n title: '',\n },\n {\n label: '0 to 10 on both axes',\n arrows: {\n left: false,\n right: true,\n up: true,\n down: false,\n },\n domain: {\n min: 0,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>x</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: '',\n left: '',\n },\n padding: true,\n range: {\n min: 0,\n max: 10,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>y</i>',\n },\n standardGrid: true,\n title: '',\n },\n {\n label: '0 to 20 on both axes',\n arrows: {\n left: false,\n right: true,\n up: true,\n down: false,\n },\n domain: {\n min: 0,\n max: 20,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>x</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: '',\n left: '',\n },\n padding: true,\n range: {\n min: 0,\n max: 20,\n step: 1,\n padding: 0,\n labelStep: 1,\n axisLabel: '<i>y</i>',\n },\n standardGrid: true,\n title: '',\n },\n {\n label: 'Sample Data Graph',\n arrows: {\n left: false,\n right: true,\n up: true,\n down: false,\n },\n domain: {\n min: 0,\n max: 30,\n step: 1,\n padding: 0,\n labelStep: 2,\n axisLabel: '<i>t</i>',\n },\n graph: {\n width: 480,\n height: 480,\n },\n includeAxes: true,\n labels: {\n top: '',\n right: '',\n bottom: 'Time (seconds)',\n left: 'Distance (meters)',\n },\n padding: true,\n range: {\n min: 0,\n max: 80,\n step: 5,\n padding: 0,\n labelStep: 10,\n axisLabel: '<i>d</i>',\n },\n standardGrid: false,\n title: 'Distance as a function of time',\n },\n ],\n graphDimensions: {\n settings: false,\n label: 'Graph Dimensions',\n enabled: true,\n min: 150,\n max: 800,\n step: 20,\n },\n padding: {\n settings: false,\n label: 'Padding',\n },\n labels: {\n settings: true,\n label: 'Graph Labels',\n enabled: true,\n top: 'Click here to add a top label',\n right: 'Click here to add a right label',\n bottom: 'Click here to add a bottom label',\n left: 'Click here to add a left label',\n },\n prompt: {\n settings: true,\n label: 'Item Stem',\n },\n rationale: {\n settings: true,\n label: 'Rationale',\n },\n scoringType: {\n settings: false,\n label: 'Scoring Type',\n },\n studentInstructions: {\n settings: false,\n label: 'Student Instructions',\n },\n teacherInstructions: {\n settings: true,\n label: 'Teacher Instructions',\n },\n title: {\n settings: true,\n label: 'Graph Title',\n enabled: true,\n placeholder: 'Click here to add a title for this graph',\n },\n instruction: {\n settings: false,\n label:\n 'Graphing Solution Set items involve plotting one or two lines on a graph and then selecting the correct area that represents the solution set. To create one, first configure the grid, then select if one or two lines will be offered and if the lines should be solid or dashed. After defining the line(s), define the correct answer by clicking the area that represents the solution set.',\n },\n settingsPanelDisabled: false,\n spellCheck: {\n label: 'Spellcheck',\n settings: false,\n enabled: true,\n },\n coordinatesOnHover: {\n settings: true,\n label: 'Coordinates on Hover',\n },\n maxImageWidth: {\n teacherInstructions: 300,\n prompt: 300,\n rationale: 300,\n },\n maxImageHeight: {\n teacherInstructions: 300,\n prompt: 300,\n rationale: 300,\n },\n withRubric: {\n settings: false,\n label: 'Add Rubric',\n },\n language: {\n settings: false,\n label: 'Specify Language',\n enabled: false,\n },\n languageChoices: {\n label: 'Language Choices',\n options: [],\n },\n mathMlOptions: {\n mmlOutput: false,\n mmlEditing: false,\n },\n },\n};\n"],"mappings":"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","ignoreList":[]}
|