@pie-element/complex-rubric 2.5.0 → 2.5.1-next.48
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/configure/lib/defaults.js +77 -1
- package/configure/lib/defaults.js.map +1 -1
- package/configure/src/defaults.js +44 -5
- package/controller/package.json +1 -1
- package/docs/config-schema.json +699 -24
- package/docs/config-schema.json.md +504 -12
- package/docs/pie-schema.json +413 -12
- package/docs/pie-schema.json.md +298 -6
- package/module/configure.js +167 -51
- package/module/element.js +16 -8
- package/module/index.html +1 -1
- package/module/manifest.json +2 -2
- package/module/print.html +1 -1
- package/module/print.js +16 -8
- package/package.json +4 -4
|
@@ -14,6 +14,42 @@ The object is an array with all elements of the type `string`.
|
|
|
14
14
|
|
|
15
15
|
Properties of the `simpleRubric` object:
|
|
16
16
|
|
|
17
|
+
## `baseInputConfiguration` (object)
|
|
18
|
+
|
|
19
|
+
Properties of the `baseInputConfiguration` object:
|
|
20
|
+
|
|
21
|
+
### `math` (object)
|
|
22
|
+
|
|
23
|
+
Properties of the `math` object:
|
|
24
|
+
|
|
25
|
+
#### `disabled` (boolean)
|
|
26
|
+
|
|
27
|
+
Indicates if the plugin is disabled or not
|
|
28
|
+
|
|
29
|
+
### `audio` (object)
|
|
30
|
+
|
|
31
|
+
Properties of the `audio` object:
|
|
32
|
+
|
|
33
|
+
#### `disabled` (boolean)
|
|
34
|
+
|
|
35
|
+
Indicates if the plugin is disabled or not
|
|
36
|
+
|
|
37
|
+
### `video` (object)
|
|
38
|
+
|
|
39
|
+
Properties of the `video` object:
|
|
40
|
+
|
|
41
|
+
#### `disabled` (boolean)
|
|
42
|
+
|
|
43
|
+
Indicates if the plugin is disabled or not
|
|
44
|
+
|
|
45
|
+
### `image` (object)
|
|
46
|
+
|
|
47
|
+
Properties of the `image` object:
|
|
48
|
+
|
|
49
|
+
#### `disabled` (boolean)
|
|
50
|
+
|
|
51
|
+
Indicates if the plugin is disabled or not
|
|
52
|
+
|
|
17
53
|
## `settingsPanelDisabled` (boolean)
|
|
18
54
|
|
|
19
55
|
Indicates if the settings panel is not available
|
|
@@ -120,6 +156,138 @@ Config Object for @pie-elements/multi-trait-rubric
|
|
|
120
156
|
|
|
121
157
|
Properties of the `multiTraitRubric` object:
|
|
122
158
|
|
|
159
|
+
## `baseInputConfiguration` (object)
|
|
160
|
+
|
|
161
|
+
Properties of the `baseInputConfiguration` object:
|
|
162
|
+
|
|
163
|
+
### `math` (object)
|
|
164
|
+
|
|
165
|
+
Properties of the `math` object:
|
|
166
|
+
|
|
167
|
+
#### `disabled` (boolean)
|
|
168
|
+
|
|
169
|
+
Indicates if the plugin is disabled or not
|
|
170
|
+
|
|
171
|
+
### `audio` (object)
|
|
172
|
+
|
|
173
|
+
Properties of the `audio` object:
|
|
174
|
+
|
|
175
|
+
#### `disabled` (boolean)
|
|
176
|
+
|
|
177
|
+
Indicates if the plugin is disabled or not
|
|
178
|
+
|
|
179
|
+
### `video` (object)
|
|
180
|
+
|
|
181
|
+
Properties of the `video` object:
|
|
182
|
+
|
|
183
|
+
#### `disabled` (boolean)
|
|
184
|
+
|
|
185
|
+
Indicates if the plugin is disabled or not
|
|
186
|
+
|
|
187
|
+
### `image` (object)
|
|
188
|
+
|
|
189
|
+
Properties of the `image` object:
|
|
190
|
+
|
|
191
|
+
#### `disabled` (boolean)
|
|
192
|
+
|
|
193
|
+
Indicates if the plugin is disabled or not
|
|
194
|
+
|
|
195
|
+
## `expandedInput` (object)
|
|
196
|
+
|
|
197
|
+
Properties of the `expandedInput` object:
|
|
198
|
+
|
|
199
|
+
### `inputConfiguration` (object)
|
|
200
|
+
|
|
201
|
+
Properties of the `inputConfiguration` object:
|
|
202
|
+
|
|
203
|
+
#### `math` (object)
|
|
204
|
+
|
|
205
|
+
Properties of the `math` object:
|
|
206
|
+
|
|
207
|
+
##### `disabled` (boolean)
|
|
208
|
+
|
|
209
|
+
Indicates if the plugin is disabled or not
|
|
210
|
+
|
|
211
|
+
#### `audio` (object)
|
|
212
|
+
|
|
213
|
+
Properties of the `audio` object:
|
|
214
|
+
|
|
215
|
+
##### `disabled` (boolean)
|
|
216
|
+
|
|
217
|
+
Indicates if the plugin is disabled or not
|
|
218
|
+
|
|
219
|
+
#### `video` (object)
|
|
220
|
+
|
|
221
|
+
Properties of the `video` object:
|
|
222
|
+
|
|
223
|
+
##### `disabled` (boolean)
|
|
224
|
+
|
|
225
|
+
Indicates if the plugin is disabled or not
|
|
226
|
+
|
|
227
|
+
#### `image` (object)
|
|
228
|
+
|
|
229
|
+
Properties of the `image` object:
|
|
230
|
+
|
|
231
|
+
##### `disabled` (boolean)
|
|
232
|
+
|
|
233
|
+
Indicates if the plugin is disabled or not
|
|
234
|
+
|
|
235
|
+
### `settings` (boolean)
|
|
236
|
+
|
|
237
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
238
|
+
|
|
239
|
+
### `label` (string)
|
|
240
|
+
|
|
241
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
242
|
+
|
|
243
|
+
## `labelInput` (object)
|
|
244
|
+
|
|
245
|
+
Properties of the `labelInput` object:
|
|
246
|
+
|
|
247
|
+
### `inputConfiguration` (object)
|
|
248
|
+
|
|
249
|
+
Properties of the `inputConfiguration` object:
|
|
250
|
+
|
|
251
|
+
#### `math` (object)
|
|
252
|
+
|
|
253
|
+
Properties of the `math` object:
|
|
254
|
+
|
|
255
|
+
##### `disabled` (boolean)
|
|
256
|
+
|
|
257
|
+
Indicates if the plugin is disabled or not
|
|
258
|
+
|
|
259
|
+
#### `audio` (object)
|
|
260
|
+
|
|
261
|
+
Properties of the `audio` object:
|
|
262
|
+
|
|
263
|
+
##### `disabled` (boolean)
|
|
264
|
+
|
|
265
|
+
Indicates if the plugin is disabled or not
|
|
266
|
+
|
|
267
|
+
#### `video` (object)
|
|
268
|
+
|
|
269
|
+
Properties of the `video` object:
|
|
270
|
+
|
|
271
|
+
##### `disabled` (boolean)
|
|
272
|
+
|
|
273
|
+
Indicates if the plugin is disabled or not
|
|
274
|
+
|
|
275
|
+
#### `image` (object)
|
|
276
|
+
|
|
277
|
+
Properties of the `image` object:
|
|
278
|
+
|
|
279
|
+
##### `disabled` (boolean)
|
|
280
|
+
|
|
281
|
+
Indicates if the plugin is disabled or not
|
|
282
|
+
|
|
283
|
+
### `settings` (boolean)
|
|
284
|
+
|
|
285
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
286
|
+
|
|
287
|
+
### `label` (string)
|
|
288
|
+
|
|
289
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
290
|
+
|
|
123
291
|
## `excludeZeroDialogBoxContent` (object)
|
|
124
292
|
|
|
125
293
|
Properties of the `excludeZeroDialogBoxContent` object:
|
|
@@ -349,17 +517,49 @@ This element must be one of the following enum values:
|
|
|
349
517
|
|
|
350
518
|
Properties of the `rubriclessInstruction` object:
|
|
351
519
|
|
|
352
|
-
### `
|
|
520
|
+
### `inputConfiguration` (object)
|
|
353
521
|
|
|
354
|
-
|
|
522
|
+
Properties of the `inputConfiguration` object:
|
|
355
523
|
|
|
356
|
-
|
|
524
|
+
#### `math` (object)
|
|
357
525
|
|
|
358
|
-
|
|
526
|
+
Properties of the `math` object:
|
|
359
527
|
|
|
360
|
-
|
|
528
|
+
##### `disabled` (boolean)
|
|
529
|
+
|
|
530
|
+
Indicates if the plugin is disabled or not
|
|
531
|
+
|
|
532
|
+
#### `audio` (object)
|
|
533
|
+
|
|
534
|
+
Properties of the `audio` object:
|
|
535
|
+
|
|
536
|
+
##### `disabled` (boolean)
|
|
537
|
+
|
|
538
|
+
Indicates if the plugin is disabled or not
|
|
539
|
+
|
|
540
|
+
#### `video` (object)
|
|
541
|
+
|
|
542
|
+
Properties of the `video` object:
|
|
543
|
+
|
|
544
|
+
##### `disabled` (boolean)
|
|
545
|
+
|
|
546
|
+
Indicates if the plugin is disabled or not
|
|
547
|
+
|
|
548
|
+
#### `image` (object)
|
|
361
549
|
|
|
362
|
-
|
|
550
|
+
Properties of the `image` object:
|
|
551
|
+
|
|
552
|
+
##### `disabled` (boolean)
|
|
553
|
+
|
|
554
|
+
Indicates if the plugin is disabled or not
|
|
555
|
+
|
|
556
|
+
### `settings` (boolean)
|
|
557
|
+
|
|
558
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
559
|
+
|
|
560
|
+
### `label` (string)
|
|
561
|
+
|
|
562
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
363
563
|
|
|
364
564
|
## `showPrompt` (boolean)
|
|
365
565
|
|
|
@@ -423,6 +623,42 @@ The schema defines the following additional types:
|
|
|
423
623
|
|
|
424
624
|
Properties of the `RubricConfigure` object:
|
|
425
625
|
|
|
626
|
+
### `baseInputConfiguration` (object)
|
|
627
|
+
|
|
628
|
+
Properties of the `baseInputConfiguration` object:
|
|
629
|
+
|
|
630
|
+
#### `math` (object)
|
|
631
|
+
|
|
632
|
+
Properties of the `math` object:
|
|
633
|
+
|
|
634
|
+
##### `disabled` (boolean)
|
|
635
|
+
|
|
636
|
+
Indicates if the plugin is disabled or not
|
|
637
|
+
|
|
638
|
+
#### `audio` (object)
|
|
639
|
+
|
|
640
|
+
Properties of the `audio` object:
|
|
641
|
+
|
|
642
|
+
##### `disabled` (boolean)
|
|
643
|
+
|
|
644
|
+
Indicates if the plugin is disabled or not
|
|
645
|
+
|
|
646
|
+
#### `video` (object)
|
|
647
|
+
|
|
648
|
+
Properties of the `video` object:
|
|
649
|
+
|
|
650
|
+
##### `disabled` (boolean)
|
|
651
|
+
|
|
652
|
+
Indicates if the plugin is disabled or not
|
|
653
|
+
|
|
654
|
+
#### `image` (object)
|
|
655
|
+
|
|
656
|
+
Properties of the `image` object:
|
|
657
|
+
|
|
658
|
+
##### `disabled` (boolean)
|
|
659
|
+
|
|
660
|
+
Indicates if the plugin is disabled or not
|
|
661
|
+
|
|
426
662
|
### `settingsPanelDisabled` (boolean)
|
|
427
663
|
|
|
428
664
|
Indicates if the settings panel is not available
|
|
@@ -523,6 +759,50 @@ Indicates whether the settings panel wil allow the author to modify settings for
|
|
|
523
759
|
|
|
524
760
|
Default: `true`
|
|
525
761
|
|
|
762
|
+
## `EditableHtmlConfigureProp` (object)
|
|
763
|
+
|
|
764
|
+
Properties of the `EditableHtmlConfigureProp` object:
|
|
765
|
+
|
|
766
|
+
### `math` (object)
|
|
767
|
+
|
|
768
|
+
Properties of the `math` object:
|
|
769
|
+
|
|
770
|
+
#### `disabled` (boolean)
|
|
771
|
+
|
|
772
|
+
Indicates if the plugin is disabled or not
|
|
773
|
+
|
|
774
|
+
### `audio` (object)
|
|
775
|
+
|
|
776
|
+
Properties of the `audio` object:
|
|
777
|
+
|
|
778
|
+
#### `disabled` (boolean)
|
|
779
|
+
|
|
780
|
+
Indicates if the plugin is disabled or not
|
|
781
|
+
|
|
782
|
+
### `video` (object)
|
|
783
|
+
|
|
784
|
+
Properties of the `video` object:
|
|
785
|
+
|
|
786
|
+
#### `disabled` (boolean)
|
|
787
|
+
|
|
788
|
+
Indicates if the plugin is disabled or not
|
|
789
|
+
|
|
790
|
+
### `image` (object)
|
|
791
|
+
|
|
792
|
+
Properties of the `image` object:
|
|
793
|
+
|
|
794
|
+
#### `disabled` (boolean)
|
|
795
|
+
|
|
796
|
+
Indicates if the plugin is disabled or not
|
|
797
|
+
|
|
798
|
+
## `EditableHtmlButtonConfigure` (object)
|
|
799
|
+
|
|
800
|
+
Properties of the `EditableHtmlButtonConfigure` object:
|
|
801
|
+
|
|
802
|
+
### `disabled` (boolean)
|
|
803
|
+
|
|
804
|
+
Indicates if the plugin is disabled or not
|
|
805
|
+
|
|
526
806
|
## `ConfigureProp` (object)
|
|
527
807
|
|
|
528
808
|
Properties of the `ConfigureProp` object:
|
|
@@ -553,6 +833,138 @@ Config Object for @pie-elements/multi-trait-rubric
|
|
|
553
833
|
|
|
554
834
|
Properties of the `MultiTraitRubricConfigure` object:
|
|
555
835
|
|
|
836
|
+
### `baseInputConfiguration` (object)
|
|
837
|
+
|
|
838
|
+
Properties of the `baseInputConfiguration` object:
|
|
839
|
+
|
|
840
|
+
#### `math` (object)
|
|
841
|
+
|
|
842
|
+
Properties of the `math` object:
|
|
843
|
+
|
|
844
|
+
##### `disabled` (boolean)
|
|
845
|
+
|
|
846
|
+
Indicates if the plugin is disabled or not
|
|
847
|
+
|
|
848
|
+
#### `audio` (object)
|
|
849
|
+
|
|
850
|
+
Properties of the `audio` object:
|
|
851
|
+
|
|
852
|
+
##### `disabled` (boolean)
|
|
853
|
+
|
|
854
|
+
Indicates if the plugin is disabled or not
|
|
855
|
+
|
|
856
|
+
#### `video` (object)
|
|
857
|
+
|
|
858
|
+
Properties of the `video` object:
|
|
859
|
+
|
|
860
|
+
##### `disabled` (boolean)
|
|
861
|
+
|
|
862
|
+
Indicates if the plugin is disabled or not
|
|
863
|
+
|
|
864
|
+
#### `image` (object)
|
|
865
|
+
|
|
866
|
+
Properties of the `image` object:
|
|
867
|
+
|
|
868
|
+
##### `disabled` (boolean)
|
|
869
|
+
|
|
870
|
+
Indicates if the plugin is disabled or not
|
|
871
|
+
|
|
872
|
+
### `expandedInput` (object)
|
|
873
|
+
|
|
874
|
+
Properties of the `expandedInput` object:
|
|
875
|
+
|
|
876
|
+
#### `inputConfiguration` (object)
|
|
877
|
+
|
|
878
|
+
Properties of the `inputConfiguration` object:
|
|
879
|
+
|
|
880
|
+
##### `math` (object)
|
|
881
|
+
|
|
882
|
+
Properties of the `math` object:
|
|
883
|
+
|
|
884
|
+
###### `disabled` (boolean)
|
|
885
|
+
|
|
886
|
+
Indicates if the plugin is disabled or not
|
|
887
|
+
|
|
888
|
+
##### `audio` (object)
|
|
889
|
+
|
|
890
|
+
Properties of the `audio` object:
|
|
891
|
+
|
|
892
|
+
###### `disabled` (boolean)
|
|
893
|
+
|
|
894
|
+
Indicates if the plugin is disabled or not
|
|
895
|
+
|
|
896
|
+
##### `video` (object)
|
|
897
|
+
|
|
898
|
+
Properties of the `video` object:
|
|
899
|
+
|
|
900
|
+
###### `disabled` (boolean)
|
|
901
|
+
|
|
902
|
+
Indicates if the plugin is disabled or not
|
|
903
|
+
|
|
904
|
+
##### `image` (object)
|
|
905
|
+
|
|
906
|
+
Properties of the `image` object:
|
|
907
|
+
|
|
908
|
+
###### `disabled` (boolean)
|
|
909
|
+
|
|
910
|
+
Indicates if the plugin is disabled or not
|
|
911
|
+
|
|
912
|
+
#### `settings` (boolean)
|
|
913
|
+
|
|
914
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
915
|
+
|
|
916
|
+
#### `label` (string)
|
|
917
|
+
|
|
918
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
919
|
+
|
|
920
|
+
### `labelInput` (object)
|
|
921
|
+
|
|
922
|
+
Properties of the `labelInput` object:
|
|
923
|
+
|
|
924
|
+
#### `inputConfiguration` (object)
|
|
925
|
+
|
|
926
|
+
Properties of the `inputConfiguration` object:
|
|
927
|
+
|
|
928
|
+
##### `math` (object)
|
|
929
|
+
|
|
930
|
+
Properties of the `math` object:
|
|
931
|
+
|
|
932
|
+
###### `disabled` (boolean)
|
|
933
|
+
|
|
934
|
+
Indicates if the plugin is disabled or not
|
|
935
|
+
|
|
936
|
+
##### `audio` (object)
|
|
937
|
+
|
|
938
|
+
Properties of the `audio` object:
|
|
939
|
+
|
|
940
|
+
###### `disabled` (boolean)
|
|
941
|
+
|
|
942
|
+
Indicates if the plugin is disabled or not
|
|
943
|
+
|
|
944
|
+
##### `video` (object)
|
|
945
|
+
|
|
946
|
+
Properties of the `video` object:
|
|
947
|
+
|
|
948
|
+
###### `disabled` (boolean)
|
|
949
|
+
|
|
950
|
+
Indicates if the plugin is disabled or not
|
|
951
|
+
|
|
952
|
+
##### `image` (object)
|
|
953
|
+
|
|
954
|
+
Properties of the `image` object:
|
|
955
|
+
|
|
956
|
+
###### `disabled` (boolean)
|
|
957
|
+
|
|
958
|
+
Indicates if the plugin is disabled or not
|
|
959
|
+
|
|
960
|
+
#### `settings` (boolean)
|
|
961
|
+
|
|
962
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
963
|
+
|
|
964
|
+
#### `label` (string)
|
|
965
|
+
|
|
966
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
967
|
+
|
|
556
968
|
### `excludeZeroDialogBoxContent` (object)
|
|
557
969
|
|
|
558
970
|
Properties of the `excludeZeroDialogBoxContent` object:
|
|
@@ -718,6 +1130,54 @@ Indicates if mathML that's already in model should be editable
|
|
|
718
1130
|
|
|
719
1131
|
Indicates the max limit for scoring points
|
|
720
1132
|
|
|
1133
|
+
## `EditableHtmlPluginConfigure` (object)
|
|
1134
|
+
|
|
1135
|
+
Properties of the `EditableHtmlPluginConfigure` object:
|
|
1136
|
+
|
|
1137
|
+
### `inputConfiguration` (object)
|
|
1138
|
+
|
|
1139
|
+
Properties of the `inputConfiguration` object:
|
|
1140
|
+
|
|
1141
|
+
#### `math` (object)
|
|
1142
|
+
|
|
1143
|
+
Properties of the `math` object:
|
|
1144
|
+
|
|
1145
|
+
##### `disabled` (boolean)
|
|
1146
|
+
|
|
1147
|
+
Indicates if the plugin is disabled or not
|
|
1148
|
+
|
|
1149
|
+
#### `audio` (object)
|
|
1150
|
+
|
|
1151
|
+
Properties of the `audio` object:
|
|
1152
|
+
|
|
1153
|
+
##### `disabled` (boolean)
|
|
1154
|
+
|
|
1155
|
+
Indicates if the plugin is disabled or not
|
|
1156
|
+
|
|
1157
|
+
#### `video` (object)
|
|
1158
|
+
|
|
1159
|
+
Properties of the `video` object:
|
|
1160
|
+
|
|
1161
|
+
##### `disabled` (boolean)
|
|
1162
|
+
|
|
1163
|
+
Indicates if the plugin is disabled or not
|
|
1164
|
+
|
|
1165
|
+
#### `image` (object)
|
|
1166
|
+
|
|
1167
|
+
Properties of the `image` object:
|
|
1168
|
+
|
|
1169
|
+
##### `disabled` (boolean)
|
|
1170
|
+
|
|
1171
|
+
Indicates if the plugin is disabled or not
|
|
1172
|
+
|
|
1173
|
+
### `settings` (boolean)
|
|
1174
|
+
|
|
1175
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
1176
|
+
|
|
1177
|
+
### `label` (string)
|
|
1178
|
+
|
|
1179
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
1180
|
+
|
|
721
1181
|
## `DialogContent` (object)
|
|
722
1182
|
|
|
723
1183
|
Properties of the `DialogContent` object:
|
|
@@ -794,17 +1254,49 @@ This element must be one of the following enum values:
|
|
|
794
1254
|
|
|
795
1255
|
Properties of the `rubriclessInstruction` object:
|
|
796
1256
|
|
|
797
|
-
#### `
|
|
1257
|
+
#### `inputConfiguration` (object)
|
|
798
1258
|
|
|
799
|
-
|
|
1259
|
+
Properties of the `inputConfiguration` object:
|
|
800
1260
|
|
|
801
|
-
|
|
1261
|
+
##### `math` (object)
|
|
802
1262
|
|
|
803
|
-
|
|
1263
|
+
Properties of the `math` object:
|
|
804
1264
|
|
|
805
|
-
|
|
1265
|
+
###### `disabled` (boolean)
|
|
1266
|
+
|
|
1267
|
+
Indicates if the plugin is disabled or not
|
|
1268
|
+
|
|
1269
|
+
##### `audio` (object)
|
|
1270
|
+
|
|
1271
|
+
Properties of the `audio` object:
|
|
806
1272
|
|
|
807
|
-
|
|
1273
|
+
###### `disabled` (boolean)
|
|
1274
|
+
|
|
1275
|
+
Indicates if the plugin is disabled or not
|
|
1276
|
+
|
|
1277
|
+
##### `video` (object)
|
|
1278
|
+
|
|
1279
|
+
Properties of the `video` object:
|
|
1280
|
+
|
|
1281
|
+
###### `disabled` (boolean)
|
|
1282
|
+
|
|
1283
|
+
Indicates if the plugin is disabled or not
|
|
1284
|
+
|
|
1285
|
+
##### `image` (object)
|
|
1286
|
+
|
|
1287
|
+
Properties of the `image` object:
|
|
1288
|
+
|
|
1289
|
+
###### `disabled` (boolean)
|
|
1290
|
+
|
|
1291
|
+
Indicates if the plugin is disabled or not
|
|
1292
|
+
|
|
1293
|
+
#### `settings` (boolean)
|
|
1294
|
+
|
|
1295
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
1296
|
+
|
|
1297
|
+
#### `label` (string)
|
|
1298
|
+
|
|
1299
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
808
1300
|
|
|
809
1301
|
### `showPrompt` (boolean)
|
|
810
1302
|
|