@pie-element/inline-dropdown 5.8.1-next.0 → 5.9.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 +11 -0
- package/configure/CHANGELOG.md +11 -0
- package/configure/lib/defaults.js +60 -3
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/main.js +14 -0
- package/configure/lib/main.js.map +1 -1
- package/configure/package.json +1 -1
- package/docs/config-schema.json +448 -5
- package/docs/config-schema.json.md +322 -2
- package/docs/pie-schema.json +179 -2
- package/docs/pie-schema.json.md +130 -2
- package/package.json +2 -3
|
@@ -2,6 +2,42 @@ Config Object for @pie-elements/inline-dropdown
|
|
|
2
2
|
|
|
3
3
|
The schema defines the following properties:
|
|
4
4
|
|
|
5
|
+
# `baseInputConfiguration` (object)
|
|
6
|
+
|
|
7
|
+
Properties of the `baseInputConfiguration` object:
|
|
8
|
+
|
|
9
|
+
## `math` (object)
|
|
10
|
+
|
|
11
|
+
Properties of the `math` object:
|
|
12
|
+
|
|
13
|
+
### `disabled` (boolean)
|
|
14
|
+
|
|
15
|
+
Indicates if the plugin is disabled or not
|
|
16
|
+
|
|
17
|
+
## `audio` (object)
|
|
18
|
+
|
|
19
|
+
Properties of the `audio` object:
|
|
20
|
+
|
|
21
|
+
### `disabled` (boolean)
|
|
22
|
+
|
|
23
|
+
Indicates if the plugin is disabled or not
|
|
24
|
+
|
|
25
|
+
## `video` (object)
|
|
26
|
+
|
|
27
|
+
Properties of the `video` object:
|
|
28
|
+
|
|
29
|
+
### `disabled` (boolean)
|
|
30
|
+
|
|
31
|
+
Indicates if the plugin is disabled or not
|
|
32
|
+
|
|
33
|
+
## `image` (object)
|
|
34
|
+
|
|
35
|
+
Properties of the `image` object:
|
|
36
|
+
|
|
37
|
+
### `disabled` (boolean)
|
|
38
|
+
|
|
39
|
+
Indicates if the plugin is disabled or not
|
|
40
|
+
|
|
5
41
|
# `choices` (object)
|
|
6
42
|
|
|
7
43
|
Properties of the `choices` object:
|
|
@@ -18,6 +54,42 @@ Indicates the label for the item that has to be displayed in the Settings Panel
|
|
|
18
54
|
|
|
19
55
|
Properties of the `prompt` object:
|
|
20
56
|
|
|
57
|
+
## `inputConfiguration` (object)
|
|
58
|
+
|
|
59
|
+
Properties of the `inputConfiguration` object:
|
|
60
|
+
|
|
61
|
+
### `math` (object)
|
|
62
|
+
|
|
63
|
+
Properties of the `math` object:
|
|
64
|
+
|
|
65
|
+
#### `disabled` (boolean)
|
|
66
|
+
|
|
67
|
+
Indicates if the plugin is disabled or not
|
|
68
|
+
|
|
69
|
+
### `audio` (object)
|
|
70
|
+
|
|
71
|
+
Properties of the `audio` object:
|
|
72
|
+
|
|
73
|
+
#### `disabled` (boolean)
|
|
74
|
+
|
|
75
|
+
Indicates if the plugin is disabled or not
|
|
76
|
+
|
|
77
|
+
### `video` (object)
|
|
78
|
+
|
|
79
|
+
Properties of the `video` object:
|
|
80
|
+
|
|
81
|
+
#### `disabled` (boolean)
|
|
82
|
+
|
|
83
|
+
Indicates if the plugin is disabled or not
|
|
84
|
+
|
|
85
|
+
### `image` (object)
|
|
86
|
+
|
|
87
|
+
Properties of the `image` object:
|
|
88
|
+
|
|
89
|
+
#### `disabled` (boolean)
|
|
90
|
+
|
|
91
|
+
Indicates if the plugin is disabled or not
|
|
92
|
+
|
|
21
93
|
## `required` (boolean)
|
|
22
94
|
|
|
23
95
|
Indicates if the item is required and the value cannot be empty
|
|
@@ -58,6 +130,42 @@ Indicates the label for the item that has to be displayed in the Settings Panel
|
|
|
58
130
|
|
|
59
131
|
Properties of the `rationale` object:
|
|
60
132
|
|
|
133
|
+
## `inputConfiguration` (object)
|
|
134
|
+
|
|
135
|
+
Properties of the `inputConfiguration` object:
|
|
136
|
+
|
|
137
|
+
### `math` (object)
|
|
138
|
+
|
|
139
|
+
Properties of the `math` object:
|
|
140
|
+
|
|
141
|
+
#### `disabled` (boolean)
|
|
142
|
+
|
|
143
|
+
Indicates if the plugin is disabled or not
|
|
144
|
+
|
|
145
|
+
### `audio` (object)
|
|
146
|
+
|
|
147
|
+
Properties of the `audio` object:
|
|
148
|
+
|
|
149
|
+
#### `disabled` (boolean)
|
|
150
|
+
|
|
151
|
+
Indicates if the plugin is disabled or not
|
|
152
|
+
|
|
153
|
+
### `video` (object)
|
|
154
|
+
|
|
155
|
+
Properties of the `video` object:
|
|
156
|
+
|
|
157
|
+
#### `disabled` (boolean)
|
|
158
|
+
|
|
159
|
+
Indicates if the plugin is disabled or not
|
|
160
|
+
|
|
161
|
+
### `image` (object)
|
|
162
|
+
|
|
163
|
+
Properties of the `image` object:
|
|
164
|
+
|
|
165
|
+
#### `disabled` (boolean)
|
|
166
|
+
|
|
167
|
+
Indicates if the plugin is disabled or not
|
|
168
|
+
|
|
61
169
|
## `required` (boolean)
|
|
62
170
|
|
|
63
171
|
Indicates if the item is required and the value cannot be empty
|
|
@@ -126,6 +234,42 @@ Indicates the label for the item that has to be displayed in the Settings Panel
|
|
|
126
234
|
|
|
127
235
|
Properties of the `teacherInstructions` object:
|
|
128
236
|
|
|
237
|
+
## `inputConfiguration` (object)
|
|
238
|
+
|
|
239
|
+
Properties of the `inputConfiguration` object:
|
|
240
|
+
|
|
241
|
+
### `math` (object)
|
|
242
|
+
|
|
243
|
+
Properties of the `math` object:
|
|
244
|
+
|
|
245
|
+
#### `disabled` (boolean)
|
|
246
|
+
|
|
247
|
+
Indicates if the plugin is disabled or not
|
|
248
|
+
|
|
249
|
+
### `audio` (object)
|
|
250
|
+
|
|
251
|
+
Properties of the `audio` object:
|
|
252
|
+
|
|
253
|
+
#### `disabled` (boolean)
|
|
254
|
+
|
|
255
|
+
Indicates if the plugin is disabled or not
|
|
256
|
+
|
|
257
|
+
### `video` (object)
|
|
258
|
+
|
|
259
|
+
Properties of the `video` object:
|
|
260
|
+
|
|
261
|
+
#### `disabled` (boolean)
|
|
262
|
+
|
|
263
|
+
Indicates if the plugin is disabled or not
|
|
264
|
+
|
|
265
|
+
### `image` (object)
|
|
266
|
+
|
|
267
|
+
Properties of the `image` object:
|
|
268
|
+
|
|
269
|
+
#### `disabled` (boolean)
|
|
270
|
+
|
|
271
|
+
Indicates if the plugin is disabled or not
|
|
272
|
+
|
|
129
273
|
## `required` (boolean)
|
|
130
274
|
|
|
131
275
|
Indicates if the item is required and the value cannot be empty
|
|
@@ -138,6 +282,54 @@ Indicates if the item has to be displayed in the Settings Panel
|
|
|
138
282
|
|
|
139
283
|
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
140
284
|
|
|
285
|
+
# `template` (object)
|
|
286
|
+
|
|
287
|
+
Properties of the `template` object:
|
|
288
|
+
|
|
289
|
+
## `inputConfiguration` (object)
|
|
290
|
+
|
|
291
|
+
Properties of the `inputConfiguration` object:
|
|
292
|
+
|
|
293
|
+
### `math` (object)
|
|
294
|
+
|
|
295
|
+
Properties of the `math` object:
|
|
296
|
+
|
|
297
|
+
#### `disabled` (boolean)
|
|
298
|
+
|
|
299
|
+
Indicates if the plugin is disabled or not
|
|
300
|
+
|
|
301
|
+
### `audio` (object)
|
|
302
|
+
|
|
303
|
+
Properties of the `audio` object:
|
|
304
|
+
|
|
305
|
+
#### `disabled` (boolean)
|
|
306
|
+
|
|
307
|
+
Indicates if the plugin is disabled or not
|
|
308
|
+
|
|
309
|
+
### `video` (object)
|
|
310
|
+
|
|
311
|
+
Properties of the `video` object:
|
|
312
|
+
|
|
313
|
+
#### `disabled` (boolean)
|
|
314
|
+
|
|
315
|
+
Indicates if the plugin is disabled or not
|
|
316
|
+
|
|
317
|
+
### `image` (object)
|
|
318
|
+
|
|
319
|
+
Properties of the `image` object:
|
|
320
|
+
|
|
321
|
+
#### `disabled` (boolean)
|
|
322
|
+
|
|
323
|
+
Indicates if the plugin is disabled or not
|
|
324
|
+
|
|
325
|
+
## `settings` (boolean)
|
|
326
|
+
|
|
327
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
328
|
+
|
|
329
|
+
## `label` (string)
|
|
330
|
+
|
|
331
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
332
|
+
|
|
141
333
|
# `maxResponseAreas` (number)
|
|
142
334
|
|
|
143
335
|
Maximum number of response areas
|
|
@@ -300,6 +492,50 @@ Default: `true`
|
|
|
300
492
|
|
|
301
493
|
The schema defines the following additional types:
|
|
302
494
|
|
|
495
|
+
## `EditableHtmlConfigureProp` (object)
|
|
496
|
+
|
|
497
|
+
Properties of the `EditableHtmlConfigureProp` object:
|
|
498
|
+
|
|
499
|
+
### `math` (object)
|
|
500
|
+
|
|
501
|
+
Properties of the `math` object:
|
|
502
|
+
|
|
503
|
+
#### `disabled` (boolean)
|
|
504
|
+
|
|
505
|
+
Indicates if the plugin is disabled or not
|
|
506
|
+
|
|
507
|
+
### `audio` (object)
|
|
508
|
+
|
|
509
|
+
Properties of the `audio` object:
|
|
510
|
+
|
|
511
|
+
#### `disabled` (boolean)
|
|
512
|
+
|
|
513
|
+
Indicates if the plugin is disabled or not
|
|
514
|
+
|
|
515
|
+
### `video` (object)
|
|
516
|
+
|
|
517
|
+
Properties of the `video` object:
|
|
518
|
+
|
|
519
|
+
#### `disabled` (boolean)
|
|
520
|
+
|
|
521
|
+
Indicates if the plugin is disabled or not
|
|
522
|
+
|
|
523
|
+
### `image` (object)
|
|
524
|
+
|
|
525
|
+
Properties of the `image` object:
|
|
526
|
+
|
|
527
|
+
#### `disabled` (boolean)
|
|
528
|
+
|
|
529
|
+
Indicates if the plugin is disabled or not
|
|
530
|
+
|
|
531
|
+
## `EditableHtmlButtonConfigure` (object)
|
|
532
|
+
|
|
533
|
+
Properties of the `EditableHtmlButtonConfigure` object:
|
|
534
|
+
|
|
535
|
+
### `disabled` (boolean)
|
|
536
|
+
|
|
537
|
+
Indicates if the plugin is disabled or not
|
|
538
|
+
|
|
303
539
|
## `ConfigureProp` (object)
|
|
304
540
|
|
|
305
541
|
Properties of the `ConfigureProp` object:
|
|
@@ -312,9 +548,45 @@ Indicates if the item has to be displayed in the Settings Panel
|
|
|
312
548
|
|
|
313
549
|
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
314
550
|
|
|
315
|
-
## `
|
|
551
|
+
## `EditableHtmlPluginConfigureRequired` (object)
|
|
552
|
+
|
|
553
|
+
Properties of the `EditableHtmlPluginConfigureRequired` object:
|
|
554
|
+
|
|
555
|
+
### `inputConfiguration` (object)
|
|
556
|
+
|
|
557
|
+
Properties of the `inputConfiguration` object:
|
|
558
|
+
|
|
559
|
+
#### `math` (object)
|
|
316
560
|
|
|
317
|
-
Properties of the `
|
|
561
|
+
Properties of the `math` object:
|
|
562
|
+
|
|
563
|
+
##### `disabled` (boolean)
|
|
564
|
+
|
|
565
|
+
Indicates if the plugin is disabled or not
|
|
566
|
+
|
|
567
|
+
#### `audio` (object)
|
|
568
|
+
|
|
569
|
+
Properties of the `audio` object:
|
|
570
|
+
|
|
571
|
+
##### `disabled` (boolean)
|
|
572
|
+
|
|
573
|
+
Indicates if the plugin is disabled or not
|
|
574
|
+
|
|
575
|
+
#### `video` (object)
|
|
576
|
+
|
|
577
|
+
Properties of the `video` object:
|
|
578
|
+
|
|
579
|
+
##### `disabled` (boolean)
|
|
580
|
+
|
|
581
|
+
Indicates if the plugin is disabled or not
|
|
582
|
+
|
|
583
|
+
#### `image` (object)
|
|
584
|
+
|
|
585
|
+
Properties of the `image` object:
|
|
586
|
+
|
|
587
|
+
##### `disabled` (boolean)
|
|
588
|
+
|
|
589
|
+
Indicates if the plugin is disabled or not
|
|
318
590
|
|
|
319
591
|
### `required` (boolean)
|
|
320
592
|
|
|
@@ -328,6 +600,54 @@ Indicates if the item has to be displayed in the Settings Panel
|
|
|
328
600
|
|
|
329
601
|
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
330
602
|
|
|
603
|
+
## `EditableHtmlPluginConfigure` (object)
|
|
604
|
+
|
|
605
|
+
Properties of the `EditableHtmlPluginConfigure` object:
|
|
606
|
+
|
|
607
|
+
### `inputConfiguration` (object)
|
|
608
|
+
|
|
609
|
+
Properties of the `inputConfiguration` object:
|
|
610
|
+
|
|
611
|
+
#### `math` (object)
|
|
612
|
+
|
|
613
|
+
Properties of the `math` object:
|
|
614
|
+
|
|
615
|
+
##### `disabled` (boolean)
|
|
616
|
+
|
|
617
|
+
Indicates if the plugin is disabled or not
|
|
618
|
+
|
|
619
|
+
#### `audio` (object)
|
|
620
|
+
|
|
621
|
+
Properties of the `audio` object:
|
|
622
|
+
|
|
623
|
+
##### `disabled` (boolean)
|
|
624
|
+
|
|
625
|
+
Indicates if the plugin is disabled or not
|
|
626
|
+
|
|
627
|
+
#### `video` (object)
|
|
628
|
+
|
|
629
|
+
Properties of the `video` object:
|
|
630
|
+
|
|
631
|
+
##### `disabled` (boolean)
|
|
632
|
+
|
|
633
|
+
Indicates if the plugin is disabled or not
|
|
634
|
+
|
|
635
|
+
#### `image` (object)
|
|
636
|
+
|
|
637
|
+
Properties of the `image` object:
|
|
638
|
+
|
|
639
|
+
##### `disabled` (boolean)
|
|
640
|
+
|
|
641
|
+
Indicates if the plugin is disabled or not
|
|
642
|
+
|
|
643
|
+
### `settings` (boolean)
|
|
644
|
+
|
|
645
|
+
Indicates if the item has to be displayed in the Settings Panel
|
|
646
|
+
|
|
647
|
+
### `label` (string)
|
|
648
|
+
|
|
649
|
+
Indicates the label for the item that has to be displayed in the Settings Panel
|
|
650
|
+
|
|
331
651
|
## `ConfigureMaxImageDimensionsProp` (object)
|
|
332
652
|
|
|
333
653
|
Properties of the `ConfigureMaxImageDimensionsProp` object:
|
package/docs/pie-schema.json
CHANGED
|
@@ -187,6 +187,67 @@
|
|
|
187
187
|
"teacherInstructionsEnabled"
|
|
188
188
|
],
|
|
189
189
|
"definitions": {
|
|
190
|
+
"EditableHtmlConfigureProp": {
|
|
191
|
+
"title": "EditableHtmlConfigureProp",
|
|
192
|
+
"type": "object",
|
|
193
|
+
"properties": {
|
|
194
|
+
"math": {
|
|
195
|
+
"title": "EditableHtmlButtonConfigure",
|
|
196
|
+
"type": "object",
|
|
197
|
+
"properties": {
|
|
198
|
+
"disabled": {
|
|
199
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
200
|
+
"type": "boolean",
|
|
201
|
+
"title": "disabled"
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"audio": {
|
|
206
|
+
"title": "EditableHtmlButtonConfigure",
|
|
207
|
+
"type": "object",
|
|
208
|
+
"properties": {
|
|
209
|
+
"disabled": {
|
|
210
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
211
|
+
"type": "boolean",
|
|
212
|
+
"title": "disabled"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"video": {
|
|
217
|
+
"title": "EditableHtmlButtonConfigure",
|
|
218
|
+
"type": "object",
|
|
219
|
+
"properties": {
|
|
220
|
+
"disabled": {
|
|
221
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
222
|
+
"type": "boolean",
|
|
223
|
+
"title": "disabled"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"image": {
|
|
228
|
+
"title": "EditableHtmlButtonConfigure",
|
|
229
|
+
"type": "object",
|
|
230
|
+
"properties": {
|
|
231
|
+
"disabled": {
|
|
232
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
233
|
+
"type": "boolean",
|
|
234
|
+
"title": "disabled"
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"EditableHtmlButtonConfigure": {
|
|
241
|
+
"title": "EditableHtmlButtonConfigure",
|
|
242
|
+
"type": "object",
|
|
243
|
+
"properties": {
|
|
244
|
+
"disabled": {
|
|
245
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
246
|
+
"type": "boolean",
|
|
247
|
+
"title": "disabled"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
},
|
|
190
251
|
"ConfigureProp": {
|
|
191
252
|
"title": "ConfigureProp",
|
|
192
253
|
"type": "object",
|
|
@@ -203,10 +264,60 @@
|
|
|
203
264
|
}
|
|
204
265
|
}
|
|
205
266
|
},
|
|
206
|
-
"
|
|
207
|
-
"title": "
|
|
267
|
+
"EditableHtmlPluginConfigureRequired": {
|
|
268
|
+
"title": "EditableHtmlPluginConfigureRequired",
|
|
208
269
|
"type": "object",
|
|
209
270
|
"properties": {
|
|
271
|
+
"inputConfiguration": {
|
|
272
|
+
"title": "EditableHtmlConfigureProp",
|
|
273
|
+
"type": "object",
|
|
274
|
+
"properties": {
|
|
275
|
+
"math": {
|
|
276
|
+
"title": "EditableHtmlButtonConfigure",
|
|
277
|
+
"type": "object",
|
|
278
|
+
"properties": {
|
|
279
|
+
"disabled": {
|
|
280
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
281
|
+
"type": "boolean",
|
|
282
|
+
"title": "disabled"
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"audio": {
|
|
287
|
+
"title": "EditableHtmlButtonConfigure",
|
|
288
|
+
"type": "object",
|
|
289
|
+
"properties": {
|
|
290
|
+
"disabled": {
|
|
291
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
292
|
+
"type": "boolean",
|
|
293
|
+
"title": "disabled"
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"video": {
|
|
298
|
+
"title": "EditableHtmlButtonConfigure",
|
|
299
|
+
"type": "object",
|
|
300
|
+
"properties": {
|
|
301
|
+
"disabled": {
|
|
302
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
303
|
+
"type": "boolean",
|
|
304
|
+
"title": "disabled"
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"image": {
|
|
309
|
+
"title": "EditableHtmlButtonConfigure",
|
|
310
|
+
"type": "object",
|
|
311
|
+
"properties": {
|
|
312
|
+
"disabled": {
|
|
313
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
314
|
+
"type": "boolean",
|
|
315
|
+
"title": "disabled"
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
},
|
|
210
321
|
"required": {
|
|
211
322
|
"description": "Indicates if the item is required and the value cannot be empty",
|
|
212
323
|
"type": "boolean",
|
|
@@ -224,6 +335,72 @@
|
|
|
224
335
|
}
|
|
225
336
|
}
|
|
226
337
|
},
|
|
338
|
+
"EditableHtmlPluginConfigure": {
|
|
339
|
+
"title": "EditableHtmlPluginConfigure",
|
|
340
|
+
"type": "object",
|
|
341
|
+
"properties": {
|
|
342
|
+
"inputConfiguration": {
|
|
343
|
+
"title": "EditableHtmlConfigureProp",
|
|
344
|
+
"type": "object",
|
|
345
|
+
"properties": {
|
|
346
|
+
"math": {
|
|
347
|
+
"title": "EditableHtmlButtonConfigure",
|
|
348
|
+
"type": "object",
|
|
349
|
+
"properties": {
|
|
350
|
+
"disabled": {
|
|
351
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
352
|
+
"type": "boolean",
|
|
353
|
+
"title": "disabled"
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
"audio": {
|
|
358
|
+
"title": "EditableHtmlButtonConfigure",
|
|
359
|
+
"type": "object",
|
|
360
|
+
"properties": {
|
|
361
|
+
"disabled": {
|
|
362
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
363
|
+
"type": "boolean",
|
|
364
|
+
"title": "disabled"
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"video": {
|
|
369
|
+
"title": "EditableHtmlButtonConfigure",
|
|
370
|
+
"type": "object",
|
|
371
|
+
"properties": {
|
|
372
|
+
"disabled": {
|
|
373
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
374
|
+
"type": "boolean",
|
|
375
|
+
"title": "disabled"
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
"image": {
|
|
380
|
+
"title": "EditableHtmlButtonConfigure",
|
|
381
|
+
"type": "object",
|
|
382
|
+
"properties": {
|
|
383
|
+
"disabled": {
|
|
384
|
+
"description": "Indicates if the plugin is disabled or not",
|
|
385
|
+
"type": "boolean",
|
|
386
|
+
"title": "disabled"
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"settings": {
|
|
393
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
394
|
+
"type": "boolean",
|
|
395
|
+
"title": "settings"
|
|
396
|
+
},
|
|
397
|
+
"label": {
|
|
398
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
399
|
+
"type": "string",
|
|
400
|
+
"title": "label"
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
},
|
|
227
404
|
"ConfigureMaxImageDimensionsProp": {
|
|
228
405
|
"title": "ConfigureMaxImageDimensionsProp",
|
|
229
406
|
"type": "object",
|