@pie-element/multiple-choice 8.3.1-next.7 → 8.4.0
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.md +21 -0
- package/configure/CHANGELOG.md +20 -0
- package/configure/lib/defaults.js +72 -4
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/main.js +15 -10
- package/configure/lib/main.js.map +1 -1
- package/configure/package.json +2 -2
- package/controller/CHANGELOG.md +13 -0
- package/controller/package.json +2 -2
- package/docs/config-schema.json +359 -4
- package/docs/config-schema.json.md +256 -0
- package/docs/pie-schema.json +105 -0
- package/docs/pie-schema.json.md +76 -0
- package/module/configure.js +108 -39
- package/package.json +3 -3
package/docs/config-schema.json
CHANGED
|
@@ -26,6 +26,100 @@
|
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
+
"baseInputConfiguration": {
|
|
30
|
+
"title": "EditableHtmlConfigureProp",
|
|
31
|
+
"type": "object",
|
|
32
|
+
"properties": {
|
|
33
|
+
"audio": {
|
|
34
|
+
"title": "EditableHtmlButtonConfigure",
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": {
|
|
37
|
+
"disabled": {
|
|
38
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
39
|
+
"type": "boolean",
|
|
40
|
+
"title": "disabled"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"video": {
|
|
45
|
+
"title": "EditableHtmlButtonConfigure",
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"disabled": {
|
|
49
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"title": "disabled"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"image": {
|
|
56
|
+
"title": "EditableHtmlButtonConfigure",
|
|
57
|
+
"type": "object",
|
|
58
|
+
"properties": {
|
|
59
|
+
"disabled": {
|
|
60
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
61
|
+
"type": "boolean",
|
|
62
|
+
"title": "disabled"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"choices": {
|
|
69
|
+
"title": "EditableHtmlPluginConfigure",
|
|
70
|
+
"type": "object",
|
|
71
|
+
"properties": {
|
|
72
|
+
"inputConfiguration": {
|
|
73
|
+
"title": "EditableHtmlConfigureProp",
|
|
74
|
+
"type": "object",
|
|
75
|
+
"properties": {
|
|
76
|
+
"audio": {
|
|
77
|
+
"title": "EditableHtmlButtonConfigure",
|
|
78
|
+
"type": "object",
|
|
79
|
+
"properties": {
|
|
80
|
+
"disabled": {
|
|
81
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
82
|
+
"type": "boolean",
|
|
83
|
+
"title": "disabled"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"video": {
|
|
88
|
+
"title": "EditableHtmlButtonConfigure",
|
|
89
|
+
"type": "object",
|
|
90
|
+
"properties": {
|
|
91
|
+
"disabled": {
|
|
92
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
93
|
+
"type": "boolean",
|
|
94
|
+
"title": "disabled"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"image": {
|
|
99
|
+
"title": "EditableHtmlButtonConfigure",
|
|
100
|
+
"type": "object",
|
|
101
|
+
"properties": {
|
|
102
|
+
"disabled": {
|
|
103
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
104
|
+
"type": "boolean",
|
|
105
|
+
"title": "disabled"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"settings": {
|
|
112
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
113
|
+
"type": "boolean",
|
|
114
|
+
"title": "settings"
|
|
115
|
+
},
|
|
116
|
+
"label": {
|
|
117
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
118
|
+
"type": "string",
|
|
119
|
+
"title": "label"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
},
|
|
29
123
|
"choiceMode": {
|
|
30
124
|
"title": "ConfigureProp",
|
|
31
125
|
"type": "object",
|
|
@@ -91,9 +185,48 @@
|
|
|
91
185
|
}
|
|
92
186
|
},
|
|
93
187
|
"prompt": {
|
|
94
|
-
"title": "
|
|
188
|
+
"title": "EditableHtmlPluginConfigure",
|
|
95
189
|
"type": "object",
|
|
96
190
|
"properties": {
|
|
191
|
+
"inputConfiguration": {
|
|
192
|
+
"title": "EditableHtmlConfigureProp",
|
|
193
|
+
"type": "object",
|
|
194
|
+
"properties": {
|
|
195
|
+
"audio": {
|
|
196
|
+
"title": "EditableHtmlButtonConfigure",
|
|
197
|
+
"type": "object",
|
|
198
|
+
"properties": {
|
|
199
|
+
"disabled": {
|
|
200
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
201
|
+
"type": "boolean",
|
|
202
|
+
"title": "disabled"
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"video": {
|
|
207
|
+
"title": "EditableHtmlButtonConfigure",
|
|
208
|
+
"type": "object",
|
|
209
|
+
"properties": {
|
|
210
|
+
"disabled": {
|
|
211
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
212
|
+
"type": "boolean",
|
|
213
|
+
"title": "disabled"
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"image": {
|
|
218
|
+
"title": "EditableHtmlButtonConfigure",
|
|
219
|
+
"type": "object",
|
|
220
|
+
"properties": {
|
|
221
|
+
"disabled": {
|
|
222
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
223
|
+
"type": "boolean",
|
|
224
|
+
"title": "disabled"
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
97
230
|
"settings": {
|
|
98
231
|
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
99
232
|
"type": "boolean",
|
|
@@ -187,9 +320,48 @@
|
|
|
187
320
|
}
|
|
188
321
|
},
|
|
189
322
|
"rationale": {
|
|
190
|
-
"title": "
|
|
323
|
+
"title": "EditableHtmlPluginConfigure",
|
|
191
324
|
"type": "object",
|
|
192
325
|
"properties": {
|
|
326
|
+
"inputConfiguration": {
|
|
327
|
+
"title": "EditableHtmlConfigureProp",
|
|
328
|
+
"type": "object",
|
|
329
|
+
"properties": {
|
|
330
|
+
"audio": {
|
|
331
|
+
"title": "EditableHtmlButtonConfigure",
|
|
332
|
+
"type": "object",
|
|
333
|
+
"properties": {
|
|
334
|
+
"disabled": {
|
|
335
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
336
|
+
"type": "boolean",
|
|
337
|
+
"title": "disabled"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
"video": {
|
|
342
|
+
"title": "EditableHtmlButtonConfigure",
|
|
343
|
+
"type": "object",
|
|
344
|
+
"properties": {
|
|
345
|
+
"disabled": {
|
|
346
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
347
|
+
"type": "boolean",
|
|
348
|
+
"title": "disabled"
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"image": {
|
|
353
|
+
"title": "EditableHtmlButtonConfigure",
|
|
354
|
+
"type": "object",
|
|
355
|
+
"properties": {
|
|
356
|
+
"disabled": {
|
|
357
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
358
|
+
"type": "boolean",
|
|
359
|
+
"title": "disabled"
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
},
|
|
193
365
|
"settings": {
|
|
194
366
|
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
195
367
|
"type": "boolean",
|
|
@@ -240,9 +412,48 @@
|
|
|
240
412
|
}
|
|
241
413
|
},
|
|
242
414
|
"teacherInstructions": {
|
|
243
|
-
"title": "
|
|
415
|
+
"title": "EditableHtmlPluginConfigure",
|
|
244
416
|
"type": "object",
|
|
245
417
|
"properties": {
|
|
418
|
+
"inputConfiguration": {
|
|
419
|
+
"title": "EditableHtmlConfigureProp",
|
|
420
|
+
"type": "object",
|
|
421
|
+
"properties": {
|
|
422
|
+
"audio": {
|
|
423
|
+
"title": "EditableHtmlButtonConfigure",
|
|
424
|
+
"type": "object",
|
|
425
|
+
"properties": {
|
|
426
|
+
"disabled": {
|
|
427
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
428
|
+
"type": "boolean",
|
|
429
|
+
"title": "disabled"
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"video": {
|
|
434
|
+
"title": "EditableHtmlButtonConfigure",
|
|
435
|
+
"type": "object",
|
|
436
|
+
"properties": {
|
|
437
|
+
"disabled": {
|
|
438
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
439
|
+
"type": "boolean",
|
|
440
|
+
"title": "disabled"
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"image": {
|
|
445
|
+
"title": "EditableHtmlButtonConfigure",
|
|
446
|
+
"type": "object",
|
|
447
|
+
"properties": {
|
|
448
|
+
"disabled": {
|
|
449
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
450
|
+
"type": "boolean",
|
|
451
|
+
"title": "disabled"
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
},
|
|
246
457
|
"settings": {
|
|
247
458
|
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
248
459
|
"type": "boolean",
|
|
@@ -277,9 +488,48 @@
|
|
|
277
488
|
}
|
|
278
489
|
},
|
|
279
490
|
"accessibility": {
|
|
280
|
-
"title": "
|
|
491
|
+
"title": "EditableHtmlPluginConfigure",
|
|
281
492
|
"type": "object",
|
|
282
493
|
"properties": {
|
|
494
|
+
"inputConfiguration": {
|
|
495
|
+
"title": "EditableHtmlConfigureProp",
|
|
496
|
+
"type": "object",
|
|
497
|
+
"properties": {
|
|
498
|
+
"audio": {
|
|
499
|
+
"title": "EditableHtmlButtonConfigure",
|
|
500
|
+
"type": "object",
|
|
501
|
+
"properties": {
|
|
502
|
+
"disabled": {
|
|
503
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
504
|
+
"type": "boolean",
|
|
505
|
+
"title": "disabled"
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"video": {
|
|
510
|
+
"title": "EditableHtmlButtonConfigure",
|
|
511
|
+
"type": "object",
|
|
512
|
+
"properties": {
|
|
513
|
+
"disabled": {
|
|
514
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
515
|
+
"type": "boolean",
|
|
516
|
+
"title": "disabled"
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"image": {
|
|
521
|
+
"title": "EditableHtmlButtonConfigure",
|
|
522
|
+
"type": "object",
|
|
523
|
+
"properties": {
|
|
524
|
+
"disabled": {
|
|
525
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
526
|
+
"type": "boolean",
|
|
527
|
+
"title": "disabled"
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
},
|
|
283
533
|
"settings": {
|
|
284
534
|
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
285
535
|
"type": "boolean",
|
|
@@ -526,6 +776,111 @@
|
|
|
526
776
|
}
|
|
527
777
|
}
|
|
528
778
|
},
|
|
779
|
+
"EditableHtmlConfigureProp": {
|
|
780
|
+
"title": "EditableHtmlConfigureProp",
|
|
781
|
+
"type": "object",
|
|
782
|
+
"properties": {
|
|
783
|
+
"audio": {
|
|
784
|
+
"title": "EditableHtmlButtonConfigure",
|
|
785
|
+
"type": "object",
|
|
786
|
+
"properties": {
|
|
787
|
+
"disabled": {
|
|
788
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
789
|
+
"type": "boolean",
|
|
790
|
+
"title": "disabled"
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
"video": {
|
|
795
|
+
"title": "EditableHtmlButtonConfigure",
|
|
796
|
+
"type": "object",
|
|
797
|
+
"properties": {
|
|
798
|
+
"disabled": {
|
|
799
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
800
|
+
"type": "boolean",
|
|
801
|
+
"title": "disabled"
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
},
|
|
805
|
+
"image": {
|
|
806
|
+
"title": "EditableHtmlButtonConfigure",
|
|
807
|
+
"type": "object",
|
|
808
|
+
"properties": {
|
|
809
|
+
"disabled": {
|
|
810
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
811
|
+
"type": "boolean",
|
|
812
|
+
"title": "disabled"
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
},
|
|
818
|
+
"EditableHtmlButtonConfigure": {
|
|
819
|
+
"title": "EditableHtmlButtonConfigure",
|
|
820
|
+
"type": "object",
|
|
821
|
+
"properties": {
|
|
822
|
+
"disabled": {
|
|
823
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
824
|
+
"type": "boolean",
|
|
825
|
+
"title": "disabled"
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
"EditableHtmlPluginConfigure": {
|
|
830
|
+
"title": "EditableHtmlPluginConfigure",
|
|
831
|
+
"type": "object",
|
|
832
|
+
"properties": {
|
|
833
|
+
"inputConfiguration": {
|
|
834
|
+
"title": "EditableHtmlConfigureProp",
|
|
835
|
+
"type": "object",
|
|
836
|
+
"properties": {
|
|
837
|
+
"audio": {
|
|
838
|
+
"title": "EditableHtmlButtonConfigure",
|
|
839
|
+
"type": "object",
|
|
840
|
+
"properties": {
|
|
841
|
+
"disabled": {
|
|
842
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
843
|
+
"type": "boolean",
|
|
844
|
+
"title": "disabled"
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"video": {
|
|
849
|
+
"title": "EditableHtmlButtonConfigure",
|
|
850
|
+
"type": "object",
|
|
851
|
+
"properties": {
|
|
852
|
+
"disabled": {
|
|
853
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
854
|
+
"type": "boolean",
|
|
855
|
+
"title": "disabled"
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
"image": {
|
|
860
|
+
"title": "EditableHtmlButtonConfigure",
|
|
861
|
+
"type": "object",
|
|
862
|
+
"properties": {
|
|
863
|
+
"disabled": {
|
|
864
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
865
|
+
"type": "boolean",
|
|
866
|
+
"title": "disabled"
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
"settings": {
|
|
873
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
874
|
+
"type": "boolean",
|
|
875
|
+
"title": "settings"
|
|
876
|
+
},
|
|
877
|
+
"label": {
|
|
878
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
879
|
+
"type": "string",
|
|
880
|
+
"title": "label"
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
},
|
|
529
884
|
"ConfigurePropWithEnabled": {
|
|
530
885
|
"title": "ConfigurePropWithEnabled",
|
|
531
886
|
"type": "object",
|
|
@@ -24,6 +24,74 @@ Indicates if the item has to be displayed in the Settings Panel
|
|
|
24
24
|
|
|
25
25
|
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
26
26
|
|
|
27
|
+
# `baseInputConfiguration` (object)
|
|
28
|
+
|
|
29
|
+
Properties of the `baseInputConfiguration` object:
|
|
30
|
+
|
|
31
|
+
## `audio` (object)
|
|
32
|
+
|
|
33
|
+
Properties of the `audio` object:
|
|
34
|
+
|
|
35
|
+
### `disabled` (boolean)
|
|
36
|
+
|
|
37
|
+
Indicates if the plugin is disabled or not
|
|
38
|
+
|
|
39
|
+
## `video` (object)
|
|
40
|
+
|
|
41
|
+
Properties of the `video` object:
|
|
42
|
+
|
|
43
|
+
### `disabled` (boolean)
|
|
44
|
+
|
|
45
|
+
Indicates if the plugin is disabled or not
|
|
46
|
+
|
|
47
|
+
## `image` (object)
|
|
48
|
+
|
|
49
|
+
Properties of the `image` object:
|
|
50
|
+
|
|
51
|
+
### `disabled` (boolean)
|
|
52
|
+
|
|
53
|
+
Indicates if the plugin is disabled or not
|
|
54
|
+
|
|
55
|
+
# `choices` (object)
|
|
56
|
+
|
|
57
|
+
Properties of the `choices` object:
|
|
58
|
+
|
|
59
|
+
## `inputConfiguration` (object)
|
|
60
|
+
|
|
61
|
+
Properties of the `inputConfiguration` object:
|
|
62
|
+
|
|
63
|
+
### `audio` (object)
|
|
64
|
+
|
|
65
|
+
Properties of the `audio` object:
|
|
66
|
+
|
|
67
|
+
#### `disabled` (boolean)
|
|
68
|
+
|
|
69
|
+
Indicates if the plugin is disabled or not
|
|
70
|
+
|
|
71
|
+
### `video` (object)
|
|
72
|
+
|
|
73
|
+
Properties of the `video` object:
|
|
74
|
+
|
|
75
|
+
#### `disabled` (boolean)
|
|
76
|
+
|
|
77
|
+
Indicates if the plugin is disabled or not
|
|
78
|
+
|
|
79
|
+
### `image` (object)
|
|
80
|
+
|
|
81
|
+
Properties of the `image` object:
|
|
82
|
+
|
|
83
|
+
#### `disabled` (boolean)
|
|
84
|
+
|
|
85
|
+
Indicates if the plugin is disabled or not
|
|
86
|
+
|
|
87
|
+
## `settings` (boolean)
|
|
88
|
+
|
|
89
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
90
|
+
|
|
91
|
+
## `label` (string)
|
|
92
|
+
|
|
93
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
94
|
+
|
|
27
95
|
# `choiceMode` (object)
|
|
28
96
|
|
|
29
97
|
Properties of the `choiceMode` object:
|
|
@@ -76,6 +144,34 @@ Indicates the label for the item that has to be displayed in the Settings Panel
|
|
|
76
144
|
|
|
77
145
|
Properties of the `prompt` object:
|
|
78
146
|
|
|
147
|
+
## `inputConfiguration` (object)
|
|
148
|
+
|
|
149
|
+
Properties of the `inputConfiguration` object:
|
|
150
|
+
|
|
151
|
+
### `audio` (object)
|
|
152
|
+
|
|
153
|
+
Properties of the `audio` object:
|
|
154
|
+
|
|
155
|
+
#### `disabled` (boolean)
|
|
156
|
+
|
|
157
|
+
Indicates if the plugin is disabled or not
|
|
158
|
+
|
|
159
|
+
### `video` (object)
|
|
160
|
+
|
|
161
|
+
Properties of the `video` object:
|
|
162
|
+
|
|
163
|
+
#### `disabled` (boolean)
|
|
164
|
+
|
|
165
|
+
Indicates if the plugin is disabled or not
|
|
166
|
+
|
|
167
|
+
### `image` (object)
|
|
168
|
+
|
|
169
|
+
Properties of the `image` object:
|
|
170
|
+
|
|
171
|
+
#### `disabled` (boolean)
|
|
172
|
+
|
|
173
|
+
Indicates if the plugin is disabled or not
|
|
174
|
+
|
|
79
175
|
## `settings` (boolean)
|
|
80
176
|
|
|
81
177
|
Indicates if the item has to be displayed in the Settings Panel
|
|
@@ -148,6 +244,34 @@ Indicates the label for the item that has to be displayed in the Settings Panel
|
|
|
148
244
|
|
|
149
245
|
Properties of the `rationale` object:
|
|
150
246
|
|
|
247
|
+
## `inputConfiguration` (object)
|
|
248
|
+
|
|
249
|
+
Properties of the `inputConfiguration` object:
|
|
250
|
+
|
|
251
|
+
### `audio` (object)
|
|
252
|
+
|
|
253
|
+
Properties of the `audio` object:
|
|
254
|
+
|
|
255
|
+
#### `disabled` (boolean)
|
|
256
|
+
|
|
257
|
+
Indicates if the plugin is disabled or not
|
|
258
|
+
|
|
259
|
+
### `video` (object)
|
|
260
|
+
|
|
261
|
+
Properties of the `video` object:
|
|
262
|
+
|
|
263
|
+
#### `disabled` (boolean)
|
|
264
|
+
|
|
265
|
+
Indicates if the plugin is disabled or not
|
|
266
|
+
|
|
267
|
+
### `image` (object)
|
|
268
|
+
|
|
269
|
+
Properties of the `image` object:
|
|
270
|
+
|
|
271
|
+
#### `disabled` (boolean)
|
|
272
|
+
|
|
273
|
+
Indicates if the plugin is disabled or not
|
|
274
|
+
|
|
151
275
|
## `settings` (boolean)
|
|
152
276
|
|
|
153
277
|
Indicates if the item has to be displayed in the Settings Panel
|
|
@@ -188,6 +312,34 @@ Indicates the label for the item that has to be displayed in the Settings Panel
|
|
|
188
312
|
|
|
189
313
|
Properties of the `teacherInstructions` object:
|
|
190
314
|
|
|
315
|
+
## `inputConfiguration` (object)
|
|
316
|
+
|
|
317
|
+
Properties of the `inputConfiguration` object:
|
|
318
|
+
|
|
319
|
+
### `audio` (object)
|
|
320
|
+
|
|
321
|
+
Properties of the `audio` object:
|
|
322
|
+
|
|
323
|
+
#### `disabled` (boolean)
|
|
324
|
+
|
|
325
|
+
Indicates if the plugin is disabled or not
|
|
326
|
+
|
|
327
|
+
### `video` (object)
|
|
328
|
+
|
|
329
|
+
Properties of the `video` object:
|
|
330
|
+
|
|
331
|
+
#### `disabled` (boolean)
|
|
332
|
+
|
|
333
|
+
Indicates if the plugin is disabled or not
|
|
334
|
+
|
|
335
|
+
### `image` (object)
|
|
336
|
+
|
|
337
|
+
Properties of the `image` object:
|
|
338
|
+
|
|
339
|
+
#### `disabled` (boolean)
|
|
340
|
+
|
|
341
|
+
Indicates if the plugin is disabled or not
|
|
342
|
+
|
|
191
343
|
## `settings` (boolean)
|
|
192
344
|
|
|
193
345
|
Indicates if the item has to be displayed in the Settings Panel
|
|
@@ -217,6 +369,34 @@ Indicates the label for the item that has to be displayed in the Settings Panel
|
|
|
217
369
|
|
|
218
370
|
Properties of the `accessibility` object:
|
|
219
371
|
|
|
372
|
+
## `inputConfiguration` (object)
|
|
373
|
+
|
|
374
|
+
Properties of the `inputConfiguration` object:
|
|
375
|
+
|
|
376
|
+
### `audio` (object)
|
|
377
|
+
|
|
378
|
+
Properties of the `audio` object:
|
|
379
|
+
|
|
380
|
+
#### `disabled` (boolean)
|
|
381
|
+
|
|
382
|
+
Indicates if the plugin is disabled or not
|
|
383
|
+
|
|
384
|
+
### `video` (object)
|
|
385
|
+
|
|
386
|
+
Properties of the `video` object:
|
|
387
|
+
|
|
388
|
+
#### `disabled` (boolean)
|
|
389
|
+
|
|
390
|
+
Indicates if the plugin is disabled or not
|
|
391
|
+
|
|
392
|
+
### `image` (object)
|
|
393
|
+
|
|
394
|
+
Properties of the `image` object:
|
|
395
|
+
|
|
396
|
+
#### `disabled` (boolean)
|
|
397
|
+
|
|
398
|
+
Indicates if the plugin is disabled or not
|
|
399
|
+
|
|
220
400
|
## `settings` (boolean)
|
|
221
401
|
|
|
222
402
|
Indicates if the item has to be displayed in the Settings Panel
|
|
@@ -407,6 +587,82 @@ Indicates if the item has to be displayed in the Settings Panel
|
|
|
407
587
|
|
|
408
588
|
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
409
589
|
|
|
590
|
+
## `EditableHtmlConfigureProp` (object)
|
|
591
|
+
|
|
592
|
+
Properties of the `EditableHtmlConfigureProp` object:
|
|
593
|
+
|
|
594
|
+
### `audio` (object)
|
|
595
|
+
|
|
596
|
+
Properties of the `audio` object:
|
|
597
|
+
|
|
598
|
+
#### `disabled` (boolean)
|
|
599
|
+
|
|
600
|
+
Indicates if the plugin is disabled or not
|
|
601
|
+
|
|
602
|
+
### `video` (object)
|
|
603
|
+
|
|
604
|
+
Properties of the `video` object:
|
|
605
|
+
|
|
606
|
+
#### `disabled` (boolean)
|
|
607
|
+
|
|
608
|
+
Indicates if the plugin is disabled or not
|
|
609
|
+
|
|
610
|
+
### `image` (object)
|
|
611
|
+
|
|
612
|
+
Properties of the `image` object:
|
|
613
|
+
|
|
614
|
+
#### `disabled` (boolean)
|
|
615
|
+
|
|
616
|
+
Indicates if the plugin is disabled or not
|
|
617
|
+
|
|
618
|
+
## `EditableHtmlButtonConfigure` (object)
|
|
619
|
+
|
|
620
|
+
Properties of the `EditableHtmlButtonConfigure` object:
|
|
621
|
+
|
|
622
|
+
### `disabled` (boolean)
|
|
623
|
+
|
|
624
|
+
Indicates if the plugin is disabled or not
|
|
625
|
+
|
|
626
|
+
## `EditableHtmlPluginConfigure` (object)
|
|
627
|
+
|
|
628
|
+
Properties of the `EditableHtmlPluginConfigure` object:
|
|
629
|
+
|
|
630
|
+
### `inputConfiguration` (object)
|
|
631
|
+
|
|
632
|
+
Properties of the `inputConfiguration` object:
|
|
633
|
+
|
|
634
|
+
#### `audio` (object)
|
|
635
|
+
|
|
636
|
+
Properties of the `audio` object:
|
|
637
|
+
|
|
638
|
+
##### `disabled` (boolean)
|
|
639
|
+
|
|
640
|
+
Indicates if the plugin is disabled or not
|
|
641
|
+
|
|
642
|
+
#### `video` (object)
|
|
643
|
+
|
|
644
|
+
Properties of the `video` object:
|
|
645
|
+
|
|
646
|
+
##### `disabled` (boolean)
|
|
647
|
+
|
|
648
|
+
Indicates if the plugin is disabled or not
|
|
649
|
+
|
|
650
|
+
#### `image` (object)
|
|
651
|
+
|
|
652
|
+
Properties of the `image` object:
|
|
653
|
+
|
|
654
|
+
##### `disabled` (boolean)
|
|
655
|
+
|
|
656
|
+
Indicates if the plugin is disabled or not
|
|
657
|
+
|
|
658
|
+
### `settings` (boolean)
|
|
659
|
+
|
|
660
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
661
|
+
|
|
662
|
+
### `label` (string)
|
|
663
|
+
|
|
664
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
665
|
+
|
|
410
666
|
## `ConfigurePropWithEnabled` (object)
|
|
411
667
|
|
|
412
668
|
Properties of the `ConfigurePropWithEnabled` object:
|