@pie-element/graphing 3.4.19-next.85 → 3.5.1-beta.587
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 +509 -0
- package/configure/CHANGELOG.md +490 -0
- package/configure/lib/configure.js +174 -56
- package/configure/lib/configure.js.map +1 -1
- package/configure/lib/correct-response.js +340 -62
- package/configure/lib/correct-response.js.map +1 -1
- package/configure/lib/defaults.js +281 -13
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/graphing-config.js +323 -177
- package/configure/lib/graphing-config.js.map +1 -1
- package/configure/lib/index.js +63 -18
- package/configure/lib/index.js.map +1 -1
- package/configure/lib/utils.js +165 -0
- package/configure/lib/utils.js.map +1 -0
- package/configure/package.json +6 -5
- package/controller/CHANGELOG.md +114 -0
- package/controller/lib/defaults.js +11 -1
- package/controller/lib/defaults.js.map +1 -1
- package/controller/lib/index.js +85 -23
- package/controller/lib/index.js.map +1 -1
- package/controller/lib/utils.js +8 -6
- package/controller/lib/utils.js.map +1 -1
- package/controller/package.json +4 -4
- package/docs/config-schema.json +1166 -10
- package/docs/config-schema.json.md +816 -9
- package/docs/demo/config.js +2 -2
- package/docs/demo/generate.js +31 -19
- package/docs/pie-schema.json +725 -463
- package/docs/pie-schema.json.md +504 -87
- package/lib/index.js +4 -1
- package/lib/index.js.map +1 -1
- package/lib/main.js +23 -21
- package/lib/main.js.map +1 -1
- package/lib/utils.js +3 -1
- package/lib/utils.js.map +1 -1
- package/package.json +7 -6
package/docs/pie-schema.json
CHANGED
|
@@ -105,46 +105,6 @@
|
|
|
105
105
|
"y"
|
|
106
106
|
]
|
|
107
107
|
},
|
|
108
|
-
"center": {
|
|
109
|
-
"title": "Point",
|
|
110
|
-
"type": "object",
|
|
111
|
-
"properties": {
|
|
112
|
-
"x": {
|
|
113
|
-
"description": "Indicates x coordinate",
|
|
114
|
-
"type": "number",
|
|
115
|
-
"title": "x"
|
|
116
|
-
},
|
|
117
|
-
"y": {
|
|
118
|
-
"description": "Indicates y coordinate",
|
|
119
|
-
"type": "number",
|
|
120
|
-
"title": "y"
|
|
121
|
-
}
|
|
122
|
-
},
|
|
123
|
-
"required": [
|
|
124
|
-
"x",
|
|
125
|
-
"y"
|
|
126
|
-
]
|
|
127
|
-
},
|
|
128
|
-
"outerPoint": {
|
|
129
|
-
"title": "Point",
|
|
130
|
-
"type": "object",
|
|
131
|
-
"properties": {
|
|
132
|
-
"x": {
|
|
133
|
-
"description": "Indicates x coordinate",
|
|
134
|
-
"type": "number",
|
|
135
|
-
"title": "x"
|
|
136
|
-
},
|
|
137
|
-
"y": {
|
|
138
|
-
"description": "Indicates y coordinate",
|
|
139
|
-
"type": "number",
|
|
140
|
-
"title": "y"
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"required": [
|
|
144
|
-
"x",
|
|
145
|
-
"y"
|
|
146
|
-
]
|
|
147
|
-
},
|
|
148
108
|
"closed": {
|
|
149
109
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
150
110
|
"type": "boolean",
|
|
@@ -337,46 +297,6 @@
|
|
|
337
297
|
"y"
|
|
338
298
|
]
|
|
339
299
|
},
|
|
340
|
-
"center": {
|
|
341
|
-
"title": "Point",
|
|
342
|
-
"type": "object",
|
|
343
|
-
"properties": {
|
|
344
|
-
"x": {
|
|
345
|
-
"description": "Indicates x coordinate",
|
|
346
|
-
"type": "number",
|
|
347
|
-
"title": "x"
|
|
348
|
-
},
|
|
349
|
-
"y": {
|
|
350
|
-
"description": "Indicates y coordinate",
|
|
351
|
-
"type": "number",
|
|
352
|
-
"title": "y"
|
|
353
|
-
}
|
|
354
|
-
},
|
|
355
|
-
"required": [
|
|
356
|
-
"x",
|
|
357
|
-
"y"
|
|
358
|
-
]
|
|
359
|
-
},
|
|
360
|
-
"outerPoint": {
|
|
361
|
-
"title": "Point",
|
|
362
|
-
"type": "object",
|
|
363
|
-
"properties": {
|
|
364
|
-
"x": {
|
|
365
|
-
"description": "Indicates x coordinate",
|
|
366
|
-
"type": "number",
|
|
367
|
-
"title": "x"
|
|
368
|
-
},
|
|
369
|
-
"y": {
|
|
370
|
-
"description": "Indicates y coordinate",
|
|
371
|
-
"type": "number",
|
|
372
|
-
"title": "y"
|
|
373
|
-
}
|
|
374
|
-
},
|
|
375
|
-
"required": [
|
|
376
|
-
"x",
|
|
377
|
-
"y"
|
|
378
|
-
]
|
|
379
|
-
},
|
|
380
300
|
"closed": {
|
|
381
301
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
382
302
|
"type": "boolean",
|
|
@@ -588,46 +508,6 @@
|
|
|
588
508
|
"y"
|
|
589
509
|
]
|
|
590
510
|
},
|
|
591
|
-
"center": {
|
|
592
|
-
"title": "Point",
|
|
593
|
-
"type": "object",
|
|
594
|
-
"properties": {
|
|
595
|
-
"x": {
|
|
596
|
-
"description": "Indicates x coordinate",
|
|
597
|
-
"type": "number",
|
|
598
|
-
"title": "x"
|
|
599
|
-
},
|
|
600
|
-
"y": {
|
|
601
|
-
"description": "Indicates y coordinate",
|
|
602
|
-
"type": "number",
|
|
603
|
-
"title": "y"
|
|
604
|
-
}
|
|
605
|
-
},
|
|
606
|
-
"required": [
|
|
607
|
-
"x",
|
|
608
|
-
"y"
|
|
609
|
-
]
|
|
610
|
-
},
|
|
611
|
-
"outerPoint": {
|
|
612
|
-
"title": "Point",
|
|
613
|
-
"type": "object",
|
|
614
|
-
"properties": {
|
|
615
|
-
"x": {
|
|
616
|
-
"description": "Indicates x coordinate",
|
|
617
|
-
"type": "number",
|
|
618
|
-
"title": "x"
|
|
619
|
-
},
|
|
620
|
-
"y": {
|
|
621
|
-
"description": "Indicates y coordinate",
|
|
622
|
-
"type": "number",
|
|
623
|
-
"title": "y"
|
|
624
|
-
}
|
|
625
|
-
},
|
|
626
|
-
"required": [
|
|
627
|
-
"x",
|
|
628
|
-
"y"
|
|
629
|
-
]
|
|
630
|
-
},
|
|
631
511
|
"closed": {
|
|
632
512
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
633
513
|
"type": "boolean",
|
|
@@ -820,46 +700,6 @@
|
|
|
820
700
|
"y"
|
|
821
701
|
]
|
|
822
702
|
},
|
|
823
|
-
"center": {
|
|
824
|
-
"title": "Point",
|
|
825
|
-
"type": "object",
|
|
826
|
-
"properties": {
|
|
827
|
-
"x": {
|
|
828
|
-
"description": "Indicates x coordinate",
|
|
829
|
-
"type": "number",
|
|
830
|
-
"title": "x"
|
|
831
|
-
},
|
|
832
|
-
"y": {
|
|
833
|
-
"description": "Indicates y coordinate",
|
|
834
|
-
"type": "number",
|
|
835
|
-
"title": "y"
|
|
836
|
-
}
|
|
837
|
-
},
|
|
838
|
-
"required": [
|
|
839
|
-
"x",
|
|
840
|
-
"y"
|
|
841
|
-
]
|
|
842
|
-
},
|
|
843
|
-
"outerPoint": {
|
|
844
|
-
"title": "Point",
|
|
845
|
-
"type": "object",
|
|
846
|
-
"properties": {
|
|
847
|
-
"x": {
|
|
848
|
-
"description": "Indicates x coordinate",
|
|
849
|
-
"type": "number",
|
|
850
|
-
"title": "x"
|
|
851
|
-
},
|
|
852
|
-
"y": {
|
|
853
|
-
"description": "Indicates y coordinate",
|
|
854
|
-
"type": "number",
|
|
855
|
-
"title": "y"
|
|
856
|
-
}
|
|
857
|
-
},
|
|
858
|
-
"required": [
|
|
859
|
-
"x",
|
|
860
|
-
"y"
|
|
861
|
-
]
|
|
862
|
-
},
|
|
863
703
|
"closed": {
|
|
864
704
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
865
705
|
"type": "boolean",
|
|
@@ -981,9 +821,36 @@
|
|
|
981
821
|
"title": "answers"
|
|
982
822
|
},
|
|
983
823
|
"arrows": {
|
|
984
|
-
"
|
|
985
|
-
"type": "
|
|
986
|
-
"
|
|
824
|
+
"title": "Arrows",
|
|
825
|
+
"type": "object",
|
|
826
|
+
"properties": {
|
|
827
|
+
"left": {
|
|
828
|
+
"description": "Indicates if left arrow is enabled",
|
|
829
|
+
"type": "boolean",
|
|
830
|
+
"title": "left"
|
|
831
|
+
},
|
|
832
|
+
"right": {
|
|
833
|
+
"description": "Indicates if right arrow is enabled",
|
|
834
|
+
"type": "boolean",
|
|
835
|
+
"title": "right"
|
|
836
|
+
},
|
|
837
|
+
"up": {
|
|
838
|
+
"description": "Indicates if up arrow is enabled",
|
|
839
|
+
"type": "boolean",
|
|
840
|
+
"title": "up"
|
|
841
|
+
},
|
|
842
|
+
"down": {
|
|
843
|
+
"description": "Indicates if down arrow is enabled",
|
|
844
|
+
"type": "boolean",
|
|
845
|
+
"title": "down"
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
"required": [
|
|
849
|
+
"down",
|
|
850
|
+
"left",
|
|
851
|
+
"right",
|
|
852
|
+
"up"
|
|
853
|
+
]
|
|
987
854
|
},
|
|
988
855
|
"backgroundMarks": {
|
|
989
856
|
"description": "Indicates marks that have to be displayed in background",
|
|
@@ -1074,46 +941,6 @@
|
|
|
1074
941
|
"y"
|
|
1075
942
|
]
|
|
1076
943
|
},
|
|
1077
|
-
"center": {
|
|
1078
|
-
"title": "Point",
|
|
1079
|
-
"type": "object",
|
|
1080
|
-
"properties": {
|
|
1081
|
-
"x": {
|
|
1082
|
-
"description": "Indicates x coordinate",
|
|
1083
|
-
"type": "number",
|
|
1084
|
-
"title": "x"
|
|
1085
|
-
},
|
|
1086
|
-
"y": {
|
|
1087
|
-
"description": "Indicates y coordinate",
|
|
1088
|
-
"type": "number",
|
|
1089
|
-
"title": "y"
|
|
1090
|
-
}
|
|
1091
|
-
},
|
|
1092
|
-
"required": [
|
|
1093
|
-
"x",
|
|
1094
|
-
"y"
|
|
1095
|
-
]
|
|
1096
|
-
},
|
|
1097
|
-
"outerPoint": {
|
|
1098
|
-
"title": "Point",
|
|
1099
|
-
"type": "object",
|
|
1100
|
-
"properties": {
|
|
1101
|
-
"x": {
|
|
1102
|
-
"description": "Indicates x coordinate",
|
|
1103
|
-
"type": "number",
|
|
1104
|
-
"title": "x"
|
|
1105
|
-
},
|
|
1106
|
-
"y": {
|
|
1107
|
-
"description": "Indicates y coordinate",
|
|
1108
|
-
"type": "number",
|
|
1109
|
-
"title": "y"
|
|
1110
|
-
}
|
|
1111
|
-
},
|
|
1112
|
-
"required": [
|
|
1113
|
-
"x",
|
|
1114
|
-
"y"
|
|
1115
|
-
]
|
|
1116
|
-
},
|
|
1117
944
|
"closed": {
|
|
1118
945
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
1119
946
|
"type": "boolean",
|
|
@@ -1306,46 +1133,6 @@
|
|
|
1306
1133
|
"y"
|
|
1307
1134
|
]
|
|
1308
1135
|
},
|
|
1309
|
-
"center": {
|
|
1310
|
-
"title": "Point",
|
|
1311
|
-
"type": "object",
|
|
1312
|
-
"properties": {
|
|
1313
|
-
"x": {
|
|
1314
|
-
"description": "Indicates x coordinate",
|
|
1315
|
-
"type": "number",
|
|
1316
|
-
"title": "x"
|
|
1317
|
-
},
|
|
1318
|
-
"y": {
|
|
1319
|
-
"description": "Indicates y coordinate",
|
|
1320
|
-
"type": "number",
|
|
1321
|
-
"title": "y"
|
|
1322
|
-
}
|
|
1323
|
-
},
|
|
1324
|
-
"required": [
|
|
1325
|
-
"x",
|
|
1326
|
-
"y"
|
|
1327
|
-
]
|
|
1328
|
-
},
|
|
1329
|
-
"outerPoint": {
|
|
1330
|
-
"title": "Point",
|
|
1331
|
-
"type": "object",
|
|
1332
|
-
"properties": {
|
|
1333
|
-
"x": {
|
|
1334
|
-
"description": "Indicates x coordinate",
|
|
1335
|
-
"type": "number",
|
|
1336
|
-
"title": "x"
|
|
1337
|
-
},
|
|
1338
|
-
"y": {
|
|
1339
|
-
"description": "Indicates y coordinate",
|
|
1340
|
-
"type": "number",
|
|
1341
|
-
"title": "y"
|
|
1342
|
-
}
|
|
1343
|
-
},
|
|
1344
|
-
"required": [
|
|
1345
|
-
"x",
|
|
1346
|
-
"y"
|
|
1347
|
-
]
|
|
1348
|
-
},
|
|
1349
1136
|
"closed": {
|
|
1350
1137
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
1351
1138
|
"type": "boolean",
|
|
@@ -1453,6 +1240,27 @@
|
|
|
1453
1240
|
},
|
|
1454
1241
|
"title": "backgroundMarks"
|
|
1455
1242
|
},
|
|
1243
|
+
"coordinatesOnHover": {
|
|
1244
|
+
"description": "Indicates if coordinates of a point are displayed on hover",
|
|
1245
|
+
"type": "boolean",
|
|
1246
|
+
"title": "coordinatesOnHover"
|
|
1247
|
+
},
|
|
1248
|
+
"defaultTool": {
|
|
1249
|
+
"description": "Indicates the default selected tool for the graph",
|
|
1250
|
+
"enum": [
|
|
1251
|
+
"circle",
|
|
1252
|
+
"line",
|
|
1253
|
+
"parabola",
|
|
1254
|
+
"point",
|
|
1255
|
+
"polygon",
|
|
1256
|
+
"ray",
|
|
1257
|
+
"segment",
|
|
1258
|
+
"sine",
|
|
1259
|
+
"vector"
|
|
1260
|
+
],
|
|
1261
|
+
"type": "string",
|
|
1262
|
+
"title": "defaultTool"
|
|
1263
|
+
},
|
|
1456
1264
|
"domain": {
|
|
1457
1265
|
"title": "GraphSettings",
|
|
1458
1266
|
"type": "object",
|
|
@@ -1517,6 +1325,11 @@
|
|
|
1517
1325
|
"width"
|
|
1518
1326
|
]
|
|
1519
1327
|
},
|
|
1328
|
+
"includeAxes": {
|
|
1329
|
+
"description": "Indicates if the graph axes and labels are enabled",
|
|
1330
|
+
"type": "boolean",
|
|
1331
|
+
"title": "includeAxes"
|
|
1332
|
+
},
|
|
1520
1333
|
"labels": {
|
|
1521
1334
|
"title": "Labels",
|
|
1522
1335
|
"type": "object",
|
|
@@ -1637,6 +1450,16 @@
|
|
|
1637
1450
|
"type": "string",
|
|
1638
1451
|
"title": "title"
|
|
1639
1452
|
},
|
|
1453
|
+
"labelsEnabled": {
|
|
1454
|
+
"description": "Indicates if the graph labels are displayed",
|
|
1455
|
+
"type": "boolean",
|
|
1456
|
+
"title": "labelsEnabled"
|
|
1457
|
+
},
|
|
1458
|
+
"titleEnabled": {
|
|
1459
|
+
"description": "Indicates if the graph title is displayed",
|
|
1460
|
+
"type": "boolean",
|
|
1461
|
+
"title": "titleEnabled"
|
|
1462
|
+
},
|
|
1640
1463
|
"toolbarTools": {
|
|
1641
1464
|
"description": "Indicates the tools that have to be displayed in toolbar",
|
|
1642
1465
|
"type": "array",
|
|
@@ -1684,6 +1507,16 @@
|
|
|
1684
1507
|
"type": "boolean",
|
|
1685
1508
|
"title": "rationaleEnabled"
|
|
1686
1509
|
},
|
|
1510
|
+
"spellCheckEnabled": {
|
|
1511
|
+
"description": "Indicates if spellcheck is enabled for the author. Default value is true",
|
|
1512
|
+
"type": "boolean",
|
|
1513
|
+
"title": "spellCheckEnabled"
|
|
1514
|
+
},
|
|
1515
|
+
"standardGrid": {
|
|
1516
|
+
"description": "Indicates if some domain values will be synched to the range values",
|
|
1517
|
+
"type": "boolean",
|
|
1518
|
+
"title": "standardGrid"
|
|
1519
|
+
},
|
|
1687
1520
|
"studentInstructionsEnabled": {
|
|
1688
1521
|
"description": "Indicates if Student Instructions are enabled",
|
|
1689
1522
|
"type": "boolean",
|
|
@@ -1694,6 +1527,11 @@
|
|
|
1694
1527
|
"type": "boolean",
|
|
1695
1528
|
"title": "teacherInstructionsEnabled"
|
|
1696
1529
|
},
|
|
1530
|
+
"rubricEnabled": {
|
|
1531
|
+
"description": "Indicates if Rubric is enabled",
|
|
1532
|
+
"type": "boolean",
|
|
1533
|
+
"title": "rubricEnabled"
|
|
1534
|
+
},
|
|
1697
1535
|
"id": {
|
|
1698
1536
|
"description": "Identifier to identify the Pie Element in html markup, Must be unique within a pie item config.",
|
|
1699
1537
|
"type": "string",
|
|
@@ -1708,20 +1546,629 @@
|
|
|
1708
1546
|
"required": [
|
|
1709
1547
|
"answers",
|
|
1710
1548
|
"backgroundMarks",
|
|
1549
|
+
"defaultTool",
|
|
1711
1550
|
"domain",
|
|
1712
1551
|
"element",
|
|
1713
1552
|
"graph",
|
|
1714
1553
|
"id",
|
|
1715
1554
|
"range",
|
|
1716
1555
|
"rationaleEnabled",
|
|
1556
|
+
"rubricEnabled",
|
|
1557
|
+
"spellCheckEnabled",
|
|
1717
1558
|
"studentInstructionsEnabled",
|
|
1718
1559
|
"teacherInstructionsEnabled"
|
|
1719
1560
|
],
|
|
1720
1561
|
"definitions": {
|
|
1721
|
-
"
|
|
1722
|
-
"title": "
|
|
1562
|
+
"AuthoringConfigProp": {
|
|
1563
|
+
"title": "AuthoringConfigProp",
|
|
1564
|
+
"type": "object",
|
|
1565
|
+
"properties": {
|
|
1566
|
+
"settings": {
|
|
1567
|
+
"description": "Indicates if the item is displayed in the Settings Panel",
|
|
1568
|
+
"type": "boolean",
|
|
1569
|
+
"title": "settings"
|
|
1570
|
+
},
|
|
1571
|
+
"label": {
|
|
1572
|
+
"description": "Indicates the label for the item that is displayed in the Settings Panel",
|
|
1573
|
+
"type": "string",
|
|
1574
|
+
"title": "label"
|
|
1575
|
+
},
|
|
1576
|
+
"enabled": {
|
|
1577
|
+
"description": "Indicates if the Grid Setup Panel is displayed",
|
|
1578
|
+
"type": "boolean",
|
|
1579
|
+
"title": "enabled"
|
|
1580
|
+
},
|
|
1581
|
+
"includeAxesEnabled": {
|
|
1582
|
+
"description": "Indicates if the \"includeAxes\" toggle is displayed in the Grid Setup Panel",
|
|
1583
|
+
"type": "boolean",
|
|
1584
|
+
"title": "includeAxesEnabled"
|
|
1585
|
+
},
|
|
1586
|
+
"standardGridEnabled": {
|
|
1587
|
+
"description": "Indicates if the \"standardGrid\" toggle is displayed in the Grid Setup Panel",
|
|
1588
|
+
"type": "boolean",
|
|
1589
|
+
"title": "standardGridEnabled"
|
|
1590
|
+
},
|
|
1591
|
+
"min": {
|
|
1592
|
+
"title": "GridPanelConfigProp",
|
|
1593
|
+
"type": "object",
|
|
1594
|
+
"properties": {
|
|
1595
|
+
"label": {
|
|
1596
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1597
|
+
"type": "string",
|
|
1598
|
+
"title": "label"
|
|
1599
|
+
},
|
|
1600
|
+
"enabled": {
|
|
1601
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1602
|
+
"type": "boolean",
|
|
1603
|
+
"title": "enabled"
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
"max": {
|
|
1608
|
+
"title": "GridPanelConfigProp",
|
|
1609
|
+
"type": "object",
|
|
1610
|
+
"properties": {
|
|
1611
|
+
"label": {
|
|
1612
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1613
|
+
"type": "string",
|
|
1614
|
+
"title": "label"
|
|
1615
|
+
},
|
|
1616
|
+
"enabled": {
|
|
1617
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1618
|
+
"type": "boolean",
|
|
1619
|
+
"title": "enabled"
|
|
1620
|
+
}
|
|
1621
|
+
}
|
|
1622
|
+
},
|
|
1623
|
+
"axisLabel": {
|
|
1624
|
+
"title": "GridPanelConfigProp",
|
|
1625
|
+
"type": "object",
|
|
1626
|
+
"properties": {
|
|
1627
|
+
"label": {
|
|
1628
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1629
|
+
"type": "string",
|
|
1630
|
+
"title": "label"
|
|
1631
|
+
},
|
|
1632
|
+
"enabled": {
|
|
1633
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1634
|
+
"type": "boolean",
|
|
1635
|
+
"title": "enabled"
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
},
|
|
1639
|
+
"step": {
|
|
1640
|
+
"title": "GridPanelConfigProp",
|
|
1641
|
+
"type": "object",
|
|
1642
|
+
"properties": {
|
|
1643
|
+
"label": {
|
|
1644
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1645
|
+
"type": "string",
|
|
1646
|
+
"title": "label"
|
|
1647
|
+
},
|
|
1648
|
+
"enabled": {
|
|
1649
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1650
|
+
"type": "boolean",
|
|
1651
|
+
"title": "enabled"
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1654
|
+
},
|
|
1655
|
+
"labelStep": {
|
|
1656
|
+
"title": "GridPanelConfigProp",
|
|
1657
|
+
"type": "object",
|
|
1658
|
+
"properties": {
|
|
1659
|
+
"label": {
|
|
1660
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1661
|
+
"type": "string",
|
|
1662
|
+
"title": "label"
|
|
1663
|
+
},
|
|
1664
|
+
"enabled": {
|
|
1665
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1666
|
+
"type": "boolean",
|
|
1667
|
+
"title": "enabled"
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
},
|
|
1673
|
+
"GridPanelConfigProp": {
|
|
1674
|
+
"title": "GridPanelConfigProp",
|
|
1675
|
+
"type": "object",
|
|
1676
|
+
"properties": {
|
|
1677
|
+
"label": {
|
|
1678
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1679
|
+
"type": "string",
|
|
1680
|
+
"title": "label"
|
|
1681
|
+
},
|
|
1682
|
+
"enabled": {
|
|
1683
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1684
|
+
"type": "boolean",
|
|
1685
|
+
"title": "enabled"
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
|
+
},
|
|
1689
|
+
"ArrowsConfigProp": {
|
|
1690
|
+
"title": "ArrowsConfigProp",
|
|
1691
|
+
"type": "object",
|
|
1692
|
+
"properties": {
|
|
1693
|
+
"settings": {
|
|
1694
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1695
|
+
"type": "boolean",
|
|
1696
|
+
"title": "settings"
|
|
1697
|
+
},
|
|
1698
|
+
"label": {
|
|
1699
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
1700
|
+
"type": "string",
|
|
1701
|
+
"title": "label"
|
|
1702
|
+
},
|
|
1703
|
+
"left": {
|
|
1704
|
+
"title": "ArrowsProp",
|
|
1705
|
+
"type": "object",
|
|
1706
|
+
"properties": {
|
|
1707
|
+
"label": {
|
|
1708
|
+
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
1709
|
+
"type": "string",
|
|
1710
|
+
"title": "label"
|
|
1711
|
+
}
|
|
1712
|
+
}
|
|
1713
|
+
},
|
|
1714
|
+
"right": {
|
|
1715
|
+
"title": "ArrowsProp",
|
|
1716
|
+
"type": "object",
|
|
1717
|
+
"properties": {
|
|
1718
|
+
"label": {
|
|
1719
|
+
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
1720
|
+
"type": "string",
|
|
1721
|
+
"title": "label"
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
},
|
|
1725
|
+
"up": {
|
|
1726
|
+
"title": "ArrowsProp",
|
|
1727
|
+
"type": "object",
|
|
1728
|
+
"properties": {
|
|
1729
|
+
"label": {
|
|
1730
|
+
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
1731
|
+
"type": "string",
|
|
1732
|
+
"title": "label"
|
|
1733
|
+
}
|
|
1734
|
+
}
|
|
1735
|
+
},
|
|
1736
|
+
"down": {
|
|
1737
|
+
"title": "ArrowsProp",
|
|
1738
|
+
"type": "object",
|
|
1739
|
+
"properties": {
|
|
1740
|
+
"label": {
|
|
1741
|
+
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
1742
|
+
"type": "string",
|
|
1743
|
+
"title": "label"
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1748
|
+
},
|
|
1749
|
+
"ArrowsProp": {
|
|
1750
|
+
"title": "ArrowsProp",
|
|
1751
|
+
"type": "object",
|
|
1752
|
+
"properties": {
|
|
1753
|
+
"label": {
|
|
1754
|
+
"description": "Indicates the label for the arrow that has to be displayed in the Settings Panel",
|
|
1755
|
+
"type": "string",
|
|
1756
|
+
"title": "label"
|
|
1757
|
+
}
|
|
1758
|
+
}
|
|
1759
|
+
},
|
|
1760
|
+
"ConfigureProp": {
|
|
1761
|
+
"title": "ConfigureProp",
|
|
1762
|
+
"type": "object",
|
|
1763
|
+
"properties": {
|
|
1764
|
+
"settings": {
|
|
1765
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1766
|
+
"type": "boolean",
|
|
1767
|
+
"title": "settings"
|
|
1768
|
+
},
|
|
1769
|
+
"label": {
|
|
1770
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
1771
|
+
"type": "string",
|
|
1772
|
+
"title": "label"
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"DimensionsConfigProp": {
|
|
1777
|
+
"title": "DimensionsConfigProp",
|
|
1778
|
+
"type": "object",
|
|
1779
|
+
"properties": {
|
|
1780
|
+
"settings": {
|
|
1781
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1782
|
+
"type": "boolean",
|
|
1783
|
+
"title": "settings"
|
|
1784
|
+
},
|
|
1785
|
+
"label": {
|
|
1786
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
1787
|
+
"type": "string",
|
|
1788
|
+
"title": "label"
|
|
1789
|
+
},
|
|
1790
|
+
"enabled": {
|
|
1791
|
+
"description": "Indicates if the graph dimensions are included in the Grid Setup Panel",
|
|
1792
|
+
"type": "boolean",
|
|
1793
|
+
"title": "enabled"
|
|
1794
|
+
},
|
|
1795
|
+
"min": {
|
|
1796
|
+
"description": "Indicates the minimum value for the graph width and height",
|
|
1797
|
+
"type": "number",
|
|
1798
|
+
"title": "min"
|
|
1799
|
+
},
|
|
1800
|
+
"max": {
|
|
1801
|
+
"description": "Indicates the maximum value for the graph width and height",
|
|
1802
|
+
"type": "number",
|
|
1803
|
+
"title": "max"
|
|
1804
|
+
},
|
|
1805
|
+
"step": {
|
|
1806
|
+
"description": "Indicates the increase/decrease value for the graph width and height",
|
|
1807
|
+
"type": "number",
|
|
1808
|
+
"title": "step"
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1812
|
+
"GridConfigurationsProp": {
|
|
1813
|
+
"title": "GridConfigurationsProp",
|
|
1814
|
+
"type": "object",
|
|
1815
|
+
"properties": {
|
|
1816
|
+
"label": {
|
|
1817
|
+
"description": "Indicates the label for the configuration",
|
|
1818
|
+
"type": "string",
|
|
1819
|
+
"title": "label"
|
|
1820
|
+
},
|
|
1821
|
+
"arrows": {
|
|
1822
|
+
"title": "Arrows",
|
|
1823
|
+
"type": "object",
|
|
1824
|
+
"properties": {
|
|
1825
|
+
"left": {
|
|
1826
|
+
"description": "Indicates if left arrow is enabled",
|
|
1827
|
+
"type": "boolean",
|
|
1828
|
+
"title": "left"
|
|
1829
|
+
},
|
|
1830
|
+
"right": {
|
|
1831
|
+
"description": "Indicates if right arrow is enabled",
|
|
1832
|
+
"type": "boolean",
|
|
1833
|
+
"title": "right"
|
|
1834
|
+
},
|
|
1835
|
+
"up": {
|
|
1836
|
+
"description": "Indicates if up arrow is enabled",
|
|
1837
|
+
"type": "boolean",
|
|
1838
|
+
"title": "up"
|
|
1839
|
+
},
|
|
1840
|
+
"down": {
|
|
1841
|
+
"description": "Indicates if down arrow is enabled",
|
|
1842
|
+
"type": "boolean",
|
|
1843
|
+
"title": "down"
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"required": [
|
|
1847
|
+
"down",
|
|
1848
|
+
"left",
|
|
1849
|
+
"right",
|
|
1850
|
+
"up"
|
|
1851
|
+
]
|
|
1852
|
+
},
|
|
1853
|
+
"domain": {
|
|
1854
|
+
"title": "GraphSettings",
|
|
1855
|
+
"type": "object",
|
|
1856
|
+
"properties": {
|
|
1857
|
+
"min": {
|
|
1858
|
+
"description": "Min value",
|
|
1859
|
+
"type": "number",
|
|
1860
|
+
"title": "min"
|
|
1861
|
+
},
|
|
1862
|
+
"max": {
|
|
1863
|
+
"description": "Max value",
|
|
1864
|
+
"type": "number",
|
|
1865
|
+
"title": "max"
|
|
1866
|
+
},
|
|
1867
|
+
"padding": {
|
|
1868
|
+
"description": "Padding value",
|
|
1869
|
+
"type": "number",
|
|
1870
|
+
"title": "padding"
|
|
1871
|
+
},
|
|
1872
|
+
"step": {
|
|
1873
|
+
"description": "Step value",
|
|
1874
|
+
"type": "number",
|
|
1875
|
+
"title": "step"
|
|
1876
|
+
},
|
|
1877
|
+
"labelStep": {
|
|
1878
|
+
"description": "Label step value",
|
|
1879
|
+
"type": "number",
|
|
1880
|
+
"title": "labelStep"
|
|
1881
|
+
},
|
|
1882
|
+
"axisLabel": {
|
|
1883
|
+
"description": "Axis Label",
|
|
1884
|
+
"type": "string",
|
|
1885
|
+
"title": "axisLabel"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
"required": [
|
|
1889
|
+
"axisLabel",
|
|
1890
|
+
"labelStep",
|
|
1891
|
+
"max",
|
|
1892
|
+
"min",
|
|
1893
|
+
"padding",
|
|
1894
|
+
"step"
|
|
1895
|
+
]
|
|
1896
|
+
},
|
|
1897
|
+
"graph": {
|
|
1898
|
+
"title": "Graph",
|
|
1899
|
+
"type": "object",
|
|
1900
|
+
"properties": {
|
|
1901
|
+
"width": {
|
|
1902
|
+
"description": "Width for graph representation",
|
|
1903
|
+
"type": "number",
|
|
1904
|
+
"title": "width"
|
|
1905
|
+
},
|
|
1906
|
+
"height": {
|
|
1907
|
+
"description": "Height for graph representation",
|
|
1908
|
+
"type": "number",
|
|
1909
|
+
"title": "height"
|
|
1910
|
+
}
|
|
1911
|
+
},
|
|
1912
|
+
"required": [
|
|
1913
|
+
"height",
|
|
1914
|
+
"width"
|
|
1915
|
+
]
|
|
1916
|
+
},
|
|
1917
|
+
"includeAxes": {
|
|
1918
|
+
"description": "Indicates if the graph axes and labels are enabled",
|
|
1919
|
+
"type": "boolean",
|
|
1920
|
+
"title": "includeAxes"
|
|
1921
|
+
},
|
|
1922
|
+
"labels": {
|
|
1923
|
+
"title": "Labels",
|
|
1924
|
+
"type": "object",
|
|
1925
|
+
"properties": {
|
|
1926
|
+
"top": {
|
|
1927
|
+
"description": "Label for top side of the graph",
|
|
1928
|
+
"type": "string",
|
|
1929
|
+
"title": "top"
|
|
1930
|
+
},
|
|
1931
|
+
"bottom": {
|
|
1932
|
+
"description": "Label for bottom side of the graph",
|
|
1933
|
+
"type": "string",
|
|
1934
|
+
"title": "bottom"
|
|
1935
|
+
},
|
|
1936
|
+
"left": {
|
|
1937
|
+
"description": "Label for left side of the graph",
|
|
1938
|
+
"type": "string",
|
|
1939
|
+
"title": "left"
|
|
1940
|
+
},
|
|
1941
|
+
"right": {
|
|
1942
|
+
"description": "Label for right side of the graph",
|
|
1943
|
+
"type": "string",
|
|
1944
|
+
"title": "right"
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1947
|
+
"required": [
|
|
1948
|
+
"bottom",
|
|
1949
|
+
"left",
|
|
1950
|
+
"right",
|
|
1951
|
+
"top"
|
|
1952
|
+
]
|
|
1953
|
+
},
|
|
1954
|
+
"padding": {
|
|
1955
|
+
"description": "Indicates if padding is enabled",
|
|
1956
|
+
"type": "boolean",
|
|
1957
|
+
"title": "padding"
|
|
1958
|
+
},
|
|
1959
|
+
"range": {
|
|
1960
|
+
"title": "GraphSettings",
|
|
1961
|
+
"type": "object",
|
|
1962
|
+
"properties": {
|
|
1963
|
+
"min": {
|
|
1964
|
+
"description": "Min value",
|
|
1965
|
+
"type": "number",
|
|
1966
|
+
"title": "min"
|
|
1967
|
+
},
|
|
1968
|
+
"max": {
|
|
1969
|
+
"description": "Max value",
|
|
1970
|
+
"type": "number",
|
|
1971
|
+
"title": "max"
|
|
1972
|
+
},
|
|
1973
|
+
"padding": {
|
|
1974
|
+
"description": "Padding value",
|
|
1975
|
+
"type": "number",
|
|
1976
|
+
"title": "padding"
|
|
1977
|
+
},
|
|
1978
|
+
"step": {
|
|
1979
|
+
"description": "Step value",
|
|
1980
|
+
"type": "number",
|
|
1981
|
+
"title": "step"
|
|
1982
|
+
},
|
|
1983
|
+
"labelStep": {
|
|
1984
|
+
"description": "Label step value",
|
|
1985
|
+
"type": "number",
|
|
1986
|
+
"title": "labelStep"
|
|
1987
|
+
},
|
|
1988
|
+
"axisLabel": {
|
|
1989
|
+
"description": "Axis Label",
|
|
1990
|
+
"type": "string",
|
|
1991
|
+
"title": "axisLabel"
|
|
1992
|
+
}
|
|
1993
|
+
},
|
|
1994
|
+
"required": [
|
|
1995
|
+
"axisLabel",
|
|
1996
|
+
"labelStep",
|
|
1997
|
+
"max",
|
|
1998
|
+
"min",
|
|
1999
|
+
"padding",
|
|
2000
|
+
"step"
|
|
2001
|
+
]
|
|
2002
|
+
},
|
|
2003
|
+
"standardGrid": {
|
|
2004
|
+
"description": "Indicates if some domain values will be synched to the range values",
|
|
2005
|
+
"type": "boolean",
|
|
2006
|
+
"title": "standardGrid"
|
|
2007
|
+
},
|
|
2008
|
+
"title": {
|
|
2009
|
+
"description": "Indicates graph title",
|
|
2010
|
+
"type": "string",
|
|
2011
|
+
"title": "title"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"required": [
|
|
2015
|
+
"domain",
|
|
2016
|
+
"graph",
|
|
2017
|
+
"range"
|
|
2018
|
+
]
|
|
2019
|
+
},
|
|
2020
|
+
"Arrows": {
|
|
2021
|
+
"title": "Arrows",
|
|
2022
|
+
"type": "object",
|
|
2023
|
+
"properties": {
|
|
2024
|
+
"left": {
|
|
2025
|
+
"description": "Indicates if left arrow is enabled",
|
|
2026
|
+
"type": "boolean",
|
|
2027
|
+
"title": "left"
|
|
2028
|
+
},
|
|
2029
|
+
"right": {
|
|
2030
|
+
"description": "Indicates if right arrow is enabled",
|
|
2031
|
+
"type": "boolean",
|
|
2032
|
+
"title": "right"
|
|
2033
|
+
},
|
|
2034
|
+
"up": {
|
|
2035
|
+
"description": "Indicates if up arrow is enabled",
|
|
2036
|
+
"type": "boolean",
|
|
2037
|
+
"title": "up"
|
|
2038
|
+
},
|
|
2039
|
+
"down": {
|
|
2040
|
+
"description": "Indicates if down arrow is enabled",
|
|
2041
|
+
"type": "boolean",
|
|
2042
|
+
"title": "down"
|
|
2043
|
+
}
|
|
2044
|
+
},
|
|
2045
|
+
"required": [
|
|
2046
|
+
"down",
|
|
2047
|
+
"left",
|
|
2048
|
+
"right",
|
|
2049
|
+
"up"
|
|
2050
|
+
]
|
|
2051
|
+
},
|
|
2052
|
+
"GraphSettings": {
|
|
2053
|
+
"title": "GraphSettings",
|
|
2054
|
+
"type": "object",
|
|
2055
|
+
"properties": {
|
|
2056
|
+
"min": {
|
|
2057
|
+
"description": "Min value",
|
|
2058
|
+
"type": "number",
|
|
2059
|
+
"title": "min"
|
|
2060
|
+
},
|
|
2061
|
+
"max": {
|
|
2062
|
+
"description": "Max value",
|
|
2063
|
+
"type": "number",
|
|
2064
|
+
"title": "max"
|
|
2065
|
+
},
|
|
2066
|
+
"padding": {
|
|
2067
|
+
"description": "Padding value",
|
|
2068
|
+
"type": "number",
|
|
2069
|
+
"title": "padding"
|
|
2070
|
+
},
|
|
2071
|
+
"step": {
|
|
2072
|
+
"description": "Step value",
|
|
2073
|
+
"type": "number",
|
|
2074
|
+
"title": "step"
|
|
2075
|
+
},
|
|
2076
|
+
"labelStep": {
|
|
2077
|
+
"description": "Label step value",
|
|
2078
|
+
"type": "number",
|
|
2079
|
+
"title": "labelStep"
|
|
2080
|
+
},
|
|
2081
|
+
"axisLabel": {
|
|
2082
|
+
"description": "Axis Label",
|
|
2083
|
+
"type": "string",
|
|
2084
|
+
"title": "axisLabel"
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
"required": [
|
|
2088
|
+
"axisLabel",
|
|
2089
|
+
"labelStep",
|
|
2090
|
+
"max",
|
|
2091
|
+
"min",
|
|
2092
|
+
"padding",
|
|
2093
|
+
"step"
|
|
2094
|
+
]
|
|
2095
|
+
},
|
|
2096
|
+
"Graph": {
|
|
2097
|
+
"title": "Graph",
|
|
2098
|
+
"type": "object",
|
|
2099
|
+
"properties": {
|
|
2100
|
+
"width": {
|
|
2101
|
+
"description": "Width for graph representation",
|
|
2102
|
+
"type": "number",
|
|
2103
|
+
"title": "width"
|
|
2104
|
+
},
|
|
2105
|
+
"height": {
|
|
2106
|
+
"description": "Height for graph representation",
|
|
2107
|
+
"type": "number",
|
|
2108
|
+
"title": "height"
|
|
2109
|
+
}
|
|
2110
|
+
},
|
|
2111
|
+
"required": [
|
|
2112
|
+
"height",
|
|
2113
|
+
"width"
|
|
2114
|
+
]
|
|
2115
|
+
},
|
|
2116
|
+
"Labels": {
|
|
2117
|
+
"title": "Labels",
|
|
2118
|
+
"type": "object",
|
|
2119
|
+
"properties": {
|
|
2120
|
+
"top": {
|
|
2121
|
+
"description": "Label for top side of the graph",
|
|
2122
|
+
"type": "string",
|
|
2123
|
+
"title": "top"
|
|
2124
|
+
},
|
|
2125
|
+
"bottom": {
|
|
2126
|
+
"description": "Label for bottom side of the graph",
|
|
2127
|
+
"type": "string",
|
|
2128
|
+
"title": "bottom"
|
|
2129
|
+
},
|
|
2130
|
+
"left": {
|
|
2131
|
+
"description": "Label for left side of the graph",
|
|
2132
|
+
"type": "string",
|
|
2133
|
+
"title": "left"
|
|
2134
|
+
},
|
|
2135
|
+
"right": {
|
|
2136
|
+
"description": "Label for right side of the graph",
|
|
2137
|
+
"type": "string",
|
|
2138
|
+
"title": "right"
|
|
2139
|
+
}
|
|
2140
|
+
},
|
|
2141
|
+
"required": [
|
|
2142
|
+
"bottom",
|
|
2143
|
+
"left",
|
|
2144
|
+
"right",
|
|
2145
|
+
"top"
|
|
2146
|
+
]
|
|
2147
|
+
},
|
|
2148
|
+
"LabelsConfigProp": {
|
|
2149
|
+
"title": "LabelsConfigProp",
|
|
1723
2150
|
"type": "object",
|
|
1724
2151
|
"properties": {
|
|
2152
|
+
"top": {
|
|
2153
|
+
"description": "Indicates the placeholder for the top label",
|
|
2154
|
+
"type": "string",
|
|
2155
|
+
"title": "top"
|
|
2156
|
+
},
|
|
2157
|
+
"right": {
|
|
2158
|
+
"description": "Indicates the placeholder for the right label",
|
|
2159
|
+
"type": "string",
|
|
2160
|
+
"title": "right"
|
|
2161
|
+
},
|
|
2162
|
+
"bottom": {
|
|
2163
|
+
"description": "Indicates the placeholder for the bottom label",
|
|
2164
|
+
"type": "string",
|
|
2165
|
+
"title": "bottom"
|
|
2166
|
+
},
|
|
2167
|
+
"left": {
|
|
2168
|
+
"description": "Indicates the placeholder for the left label",
|
|
2169
|
+
"type": "string",
|
|
2170
|
+
"title": "left"
|
|
2171
|
+
},
|
|
1725
2172
|
"settings": {
|
|
1726
2173
|
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1727
2174
|
"type": "boolean",
|
|
@@ -1739,10 +2186,15 @@
|
|
|
1739
2186
|
}
|
|
1740
2187
|
}
|
|
1741
2188
|
},
|
|
1742
|
-
"
|
|
1743
|
-
"title": "
|
|
2189
|
+
"TitleConfigProp": {
|
|
2190
|
+
"title": "TitleConfigProp",
|
|
1744
2191
|
"type": "object",
|
|
1745
2192
|
"properties": {
|
|
2193
|
+
"placeholder": {
|
|
2194
|
+
"description": "Indicates the placeholder for the title label",
|
|
2195
|
+
"type": "string",
|
|
2196
|
+
"title": "placeholder"
|
|
2197
|
+
},
|
|
1746
2198
|
"settings": {
|
|
1747
2199
|
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1748
2200
|
"type": "boolean",
|
|
@@ -1752,6 +2204,32 @@
|
|
|
1752
2204
|
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
1753
2205
|
"type": "string",
|
|
1754
2206
|
"title": "label"
|
|
2207
|
+
},
|
|
2208
|
+
"enabled": {
|
|
2209
|
+
"description": "Indicates the value of the item if it affects config-ui\n(eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)",
|
|
2210
|
+
"type": "boolean",
|
|
2211
|
+
"title": "enabled"
|
|
2212
|
+
}
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2215
|
+
"ConfigureMaxImageDimensionsProp": {
|
|
2216
|
+
"title": "ConfigureMaxImageDimensionsProp",
|
|
2217
|
+
"type": "object",
|
|
2218
|
+
"properties": {
|
|
2219
|
+
"teacherInstructions": {
|
|
2220
|
+
"description": "Indicates the max dimension for images in teacher instructions",
|
|
2221
|
+
"type": "number",
|
|
2222
|
+
"title": "teacherInstructions"
|
|
2223
|
+
},
|
|
2224
|
+
"prompt": {
|
|
2225
|
+
"description": "Indicates the max dimension for images in prompt - this is also the default dimension for all other input fields if it's not specified",
|
|
2226
|
+
"type": "number",
|
|
2227
|
+
"title": "prompt"
|
|
2228
|
+
},
|
|
2229
|
+
"rationale": {
|
|
2230
|
+
"description": "Indicates the max dimension for images in rationale",
|
|
2231
|
+
"type": "number",
|
|
2232
|
+
"title": "rationale"
|
|
1755
2233
|
}
|
|
1756
2234
|
}
|
|
1757
2235
|
},
|
|
@@ -1853,46 +2331,6 @@
|
|
|
1853
2331
|
"y"
|
|
1854
2332
|
]
|
|
1855
2333
|
},
|
|
1856
|
-
"center": {
|
|
1857
|
-
"title": "Point",
|
|
1858
|
-
"type": "object",
|
|
1859
|
-
"properties": {
|
|
1860
|
-
"x": {
|
|
1861
|
-
"description": "Indicates x coordinate",
|
|
1862
|
-
"type": "number",
|
|
1863
|
-
"title": "x"
|
|
1864
|
-
},
|
|
1865
|
-
"y": {
|
|
1866
|
-
"description": "Indicates y coordinate",
|
|
1867
|
-
"type": "number",
|
|
1868
|
-
"title": "y"
|
|
1869
|
-
}
|
|
1870
|
-
},
|
|
1871
|
-
"required": [
|
|
1872
|
-
"x",
|
|
1873
|
-
"y"
|
|
1874
|
-
]
|
|
1875
|
-
},
|
|
1876
|
-
"outerPoint": {
|
|
1877
|
-
"title": "Point",
|
|
1878
|
-
"type": "object",
|
|
1879
|
-
"properties": {
|
|
1880
|
-
"x": {
|
|
1881
|
-
"description": "Indicates x coordinate",
|
|
1882
|
-
"type": "number",
|
|
1883
|
-
"title": "x"
|
|
1884
|
-
},
|
|
1885
|
-
"y": {
|
|
1886
|
-
"description": "Indicates y coordinate",
|
|
1887
|
-
"type": "number",
|
|
1888
|
-
"title": "y"
|
|
1889
|
-
}
|
|
1890
|
-
},
|
|
1891
|
-
"required": [
|
|
1892
|
-
"x",
|
|
1893
|
-
"y"
|
|
1894
|
-
]
|
|
1895
|
-
},
|
|
1896
2334
|
"closed": {
|
|
1897
2335
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
1898
2336
|
"type": "boolean",
|
|
@@ -2085,46 +2523,6 @@
|
|
|
2085
2523
|
"y"
|
|
2086
2524
|
]
|
|
2087
2525
|
},
|
|
2088
|
-
"center": {
|
|
2089
|
-
"title": "Point",
|
|
2090
|
-
"type": "object",
|
|
2091
|
-
"properties": {
|
|
2092
|
-
"x": {
|
|
2093
|
-
"description": "Indicates x coordinate",
|
|
2094
|
-
"type": "number",
|
|
2095
|
-
"title": "x"
|
|
2096
|
-
},
|
|
2097
|
-
"y": {
|
|
2098
|
-
"description": "Indicates y coordinate",
|
|
2099
|
-
"type": "number",
|
|
2100
|
-
"title": "y"
|
|
2101
|
-
}
|
|
2102
|
-
},
|
|
2103
|
-
"required": [
|
|
2104
|
-
"x",
|
|
2105
|
-
"y"
|
|
2106
|
-
]
|
|
2107
|
-
},
|
|
2108
|
-
"outerPoint": {
|
|
2109
|
-
"title": "Point",
|
|
2110
|
-
"type": "object",
|
|
2111
|
-
"properties": {
|
|
2112
|
-
"x": {
|
|
2113
|
-
"description": "Indicates x coordinate",
|
|
2114
|
-
"type": "number",
|
|
2115
|
-
"title": "x"
|
|
2116
|
-
},
|
|
2117
|
-
"y": {
|
|
2118
|
-
"description": "Indicates y coordinate",
|
|
2119
|
-
"type": "number",
|
|
2120
|
-
"title": "y"
|
|
2121
|
-
}
|
|
2122
|
-
},
|
|
2123
|
-
"required": [
|
|
2124
|
-
"x",
|
|
2125
|
-
"y"
|
|
2126
|
-
]
|
|
2127
|
-
},
|
|
2128
2526
|
"closed": {
|
|
2129
2527
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
2130
2528
|
"type": "boolean",
|
|
@@ -2323,46 +2721,6 @@
|
|
|
2323
2721
|
"y"
|
|
2324
2722
|
]
|
|
2325
2723
|
},
|
|
2326
|
-
"center": {
|
|
2327
|
-
"title": "Point",
|
|
2328
|
-
"type": "object",
|
|
2329
|
-
"properties": {
|
|
2330
|
-
"x": {
|
|
2331
|
-
"description": "Indicates x coordinate",
|
|
2332
|
-
"type": "number",
|
|
2333
|
-
"title": "x"
|
|
2334
|
-
},
|
|
2335
|
-
"y": {
|
|
2336
|
-
"description": "Indicates y coordinate",
|
|
2337
|
-
"type": "number",
|
|
2338
|
-
"title": "y"
|
|
2339
|
-
}
|
|
2340
|
-
},
|
|
2341
|
-
"required": [
|
|
2342
|
-
"x",
|
|
2343
|
-
"y"
|
|
2344
|
-
]
|
|
2345
|
-
},
|
|
2346
|
-
"outerPoint": {
|
|
2347
|
-
"title": "Point",
|
|
2348
|
-
"type": "object",
|
|
2349
|
-
"properties": {
|
|
2350
|
-
"x": {
|
|
2351
|
-
"description": "Indicates x coordinate",
|
|
2352
|
-
"type": "number",
|
|
2353
|
-
"title": "x"
|
|
2354
|
-
},
|
|
2355
|
-
"y": {
|
|
2356
|
-
"description": "Indicates y coordinate",
|
|
2357
|
-
"type": "number",
|
|
2358
|
-
"title": "y"
|
|
2359
|
-
}
|
|
2360
|
-
},
|
|
2361
|
-
"required": [
|
|
2362
|
-
"x",
|
|
2363
|
-
"y"
|
|
2364
|
-
]
|
|
2365
|
-
},
|
|
2366
2724
|
"closed": {
|
|
2367
2725
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
2368
2726
|
"type": "boolean",
|
|
@@ -2485,102 +2843,6 @@
|
|
|
2485
2843
|
"x",
|
|
2486
2844
|
"y"
|
|
2487
2845
|
]
|
|
2488
|
-
},
|
|
2489
|
-
"GraphSettings": {
|
|
2490
|
-
"title": "GraphSettings",
|
|
2491
|
-
"type": "object",
|
|
2492
|
-
"properties": {
|
|
2493
|
-
"min": {
|
|
2494
|
-
"description": "Min value",
|
|
2495
|
-
"type": "number",
|
|
2496
|
-
"title": "min"
|
|
2497
|
-
},
|
|
2498
|
-
"max": {
|
|
2499
|
-
"description": "Max value",
|
|
2500
|
-
"type": "number",
|
|
2501
|
-
"title": "max"
|
|
2502
|
-
},
|
|
2503
|
-
"padding": {
|
|
2504
|
-
"description": "Padding value",
|
|
2505
|
-
"type": "number",
|
|
2506
|
-
"title": "padding"
|
|
2507
|
-
},
|
|
2508
|
-
"step": {
|
|
2509
|
-
"description": "Step value",
|
|
2510
|
-
"type": "number",
|
|
2511
|
-
"title": "step"
|
|
2512
|
-
},
|
|
2513
|
-
"labelStep": {
|
|
2514
|
-
"description": "Label step value",
|
|
2515
|
-
"type": "number",
|
|
2516
|
-
"title": "labelStep"
|
|
2517
|
-
},
|
|
2518
|
-
"axisLabel": {
|
|
2519
|
-
"description": "Axis Label",
|
|
2520
|
-
"type": "string",
|
|
2521
|
-
"title": "axisLabel"
|
|
2522
|
-
}
|
|
2523
|
-
},
|
|
2524
|
-
"required": [
|
|
2525
|
-
"axisLabel",
|
|
2526
|
-
"labelStep",
|
|
2527
|
-
"max",
|
|
2528
|
-
"min",
|
|
2529
|
-
"padding",
|
|
2530
|
-
"step"
|
|
2531
|
-
]
|
|
2532
|
-
},
|
|
2533
|
-
"Graph": {
|
|
2534
|
-
"title": "Graph",
|
|
2535
|
-
"type": "object",
|
|
2536
|
-
"properties": {
|
|
2537
|
-
"width": {
|
|
2538
|
-
"description": "Width for graph representation",
|
|
2539
|
-
"type": "number",
|
|
2540
|
-
"title": "width"
|
|
2541
|
-
},
|
|
2542
|
-
"height": {
|
|
2543
|
-
"description": "Height for graph representation",
|
|
2544
|
-
"type": "number",
|
|
2545
|
-
"title": "height"
|
|
2546
|
-
}
|
|
2547
|
-
},
|
|
2548
|
-
"required": [
|
|
2549
|
-
"height",
|
|
2550
|
-
"width"
|
|
2551
|
-
]
|
|
2552
|
-
},
|
|
2553
|
-
"Labels": {
|
|
2554
|
-
"title": "Labels",
|
|
2555
|
-
"type": "object",
|
|
2556
|
-
"properties": {
|
|
2557
|
-
"top": {
|
|
2558
|
-
"description": "Label for top side of the graph",
|
|
2559
|
-
"type": "string",
|
|
2560
|
-
"title": "top"
|
|
2561
|
-
},
|
|
2562
|
-
"bottom": {
|
|
2563
|
-
"description": "Label for bottom side of the graph",
|
|
2564
|
-
"type": "string",
|
|
2565
|
-
"title": "bottom"
|
|
2566
|
-
},
|
|
2567
|
-
"left": {
|
|
2568
|
-
"description": "Label for left side of the graph",
|
|
2569
|
-
"type": "string",
|
|
2570
|
-
"title": "left"
|
|
2571
|
-
},
|
|
2572
|
-
"right": {
|
|
2573
|
-
"description": "Label for right side of the graph",
|
|
2574
|
-
"type": "string",
|
|
2575
|
-
"title": "right"
|
|
2576
|
-
}
|
|
2577
|
-
},
|
|
2578
|
-
"required": [
|
|
2579
|
-
"bottom",
|
|
2580
|
-
"left",
|
|
2581
|
-
"right",
|
|
2582
|
-
"top"
|
|
2583
|
-
]
|
|
2584
2846
|
}
|
|
2585
2847
|
},
|
|
2586
2848
|
"$schema": "http://json-schema.org/draft-07/schema#"
|