@pie-element/graphing 3.7.21 → 3.7.22

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pie-element/graphing-controller",
3
3
  "private": true,
4
- "version": "3.4.5",
4
+ "version": "3.4.6",
5
5
  "description": "",
6
6
  "main": "lib/index.js",
7
7
  "module": "src/index.js",
@@ -100,6 +100,42 @@
100
100
  }
101
101
  }
102
102
  },
103
+ "graphDimensions": {
104
+ "title": "DimensionsConfigProp",
105
+ "type": "object",
106
+ "properties": {
107
+ "settings": {
108
+ "description": "Indicates if the item has to be displayed in the Settings Panel",
109
+ "type": "boolean",
110
+ "title": "settings"
111
+ },
112
+ "label": {
113
+ "description": "Indicates the label for the item that has to be displayed in the Settings Panel",
114
+ "type": "string",
115
+ "title": "label"
116
+ },
117
+ "enabled": {
118
+ "description": "Indicates if the graph dimensions are included in the Grid Setup Panel",
119
+ "type": "boolean",
120
+ "title": "enabled"
121
+ },
122
+ "min": {
123
+ "description": "Indicates the minimum value for the graph width and height",
124
+ "type": "number",
125
+ "title": "min"
126
+ },
127
+ "max": {
128
+ "description": "Indicates the maximum value for the graph width and height",
129
+ "type": "number",
130
+ "title": "max"
131
+ },
132
+ "step": {
133
+ "description": "Indicates the increase/decrease value for the graph width and height",
134
+ "type": "number",
135
+ "title": "step"
136
+ }
137
+ }
138
+ },
103
139
  "padding": {
104
140
  "title": "ConfigureProp",
105
141
  "type": "object",
@@ -376,6 +412,42 @@
376
412
  "title": "label"
377
413
  }
378
414
  }
415
+ },
416
+ "DimensionsConfigProp": {
417
+ "title": "DimensionsConfigProp",
418
+ "type": "object",
419
+ "properties": {
420
+ "settings": {
421
+ "description": "Indicates if the item has to be displayed in the Settings Panel",
422
+ "type": "boolean",
423
+ "title": "settings"
424
+ },
425
+ "label": {
426
+ "description": "Indicates the label for the item that has to be displayed in the Settings Panel",
427
+ "type": "string",
428
+ "title": "label"
429
+ },
430
+ "enabled": {
431
+ "description": "Indicates if the graph dimensions are included in the Grid Setup Panel",
432
+ "type": "boolean",
433
+ "title": "enabled"
434
+ },
435
+ "min": {
436
+ "description": "Indicates the minimum value for the graph width and height",
437
+ "type": "number",
438
+ "title": "min"
439
+ },
440
+ "max": {
441
+ "description": "Indicates the maximum value for the graph width and height",
442
+ "type": "number",
443
+ "title": "max"
444
+ },
445
+ "step": {
446
+ "description": "Indicates the increase/decrease value for the graph width and height",
447
+ "type": "number",
448
+ "title": "step"
449
+ }
450
+ }
379
451
  }
380
452
  },
381
453
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -75,6 +75,34 @@ Indicates if the item has to be displayed in the Settings Panel
75
75
 
76
76
  Indicates the label for the item that has to be displayed in the Settings Panel
77
77
 
78
+ # `graphDimensions` (object)
79
+
80
+ Properties of the `graphDimensions` object:
81
+
82
+ ## `settings` (boolean)
83
+
84
+ Indicates if the item has to be displayed in the Settings Panel
85
+
86
+ ## `label` (string)
87
+
88
+ Indicates the label for the item that has to be displayed in the Settings Panel
89
+
90
+ ## `enabled` (boolean)
91
+
92
+ Indicates if the graph dimensions are included in the Grid Setup Panel
93
+
94
+ ## `min` (number)
95
+
96
+ Indicates the minimum value for the graph width and height
97
+
98
+ ## `max` (number)
99
+
100
+ Indicates the maximum value for the graph width and height
101
+
102
+ ## `step` (number)
103
+
104
+ Indicates the increase/decrease value for the graph width and height
105
+
78
106
  # `padding` (object)
79
107
 
80
108
  Properties of the `padding` object:
@@ -291,4 +319,32 @@ Indicates if the item has to be displayed in the Settings Panel
291
319
 
292
320
  ### `label` (string)
293
321
 
294
- Indicates the label for the item that has to be displayed in the Settings Panel
322
+ Indicates the label for the item that has to be displayed in the Settings Panel
323
+
324
+ ## `DimensionsConfigProp` (object)
325
+
326
+ Properties of the `DimensionsConfigProp` object:
327
+
328
+ ### `settings` (boolean)
329
+
330
+ Indicates if the item has to be displayed in the Settings Panel
331
+
332
+ ### `label` (string)
333
+
334
+ Indicates the label for the item that has to be displayed in the Settings Panel
335
+
336
+ ### `enabled` (boolean)
337
+
338
+ Indicates if the graph dimensions are included in the Grid Setup Panel
339
+
340
+ ### `min` (number)
341
+
342
+ Indicates the minimum value for the graph width and height
343
+
344
+ ### `max` (number)
345
+
346
+ Indicates the maximum value for the graph width and height
347
+
348
+ ### `step` (number)
349
+
350
+ Indicates the increase/decrease value for the graph width and height
@@ -1549,6 +1549,11 @@
1549
1549
  "width"
1550
1550
  ]
1551
1551
  },
1552
+ "includeAxes": {
1553
+ "description": "Indicates if the graph axes and labels are enabled",
1554
+ "type": "boolean",
1555
+ "title": "includeAxes"
1556
+ },
1552
1557
  "labels": {
1553
1558
  "title": "Labels",
1554
1559
  "type": "object",
@@ -1721,6 +1726,11 @@
1721
1726
  "type": "boolean",
1722
1727
  "title": "spellCheckEnabled"
1723
1728
  },
1729
+ "standardGrid": {
1730
+ "description": "Indicates if some domain values will be synched to the range values",
1731
+ "type": "boolean",
1732
+ "title": "standardGrid"
1733
+ },
1724
1734
  "studentInstructionsEnabled": {
1725
1735
  "description": "Indicates if Student Instructions are enabled",
1726
1736
  "type": "boolean",
@@ -1864,6 +1874,42 @@
1864
1874
  }
1865
1875
  }
1866
1876
  },
1877
+ "DimensionsConfigProp": {
1878
+ "title": "DimensionsConfigProp",
1879
+ "type": "object",
1880
+ "properties": {
1881
+ "settings": {
1882
+ "description": "Indicates if the item has to be displayed in the Settings Panel",
1883
+ "type": "boolean",
1884
+ "title": "settings"
1885
+ },
1886
+ "label": {
1887
+ "description": "Indicates the label for the item that has to be displayed in the Settings Panel",
1888
+ "type": "string",
1889
+ "title": "label"
1890
+ },
1891
+ "enabled": {
1892
+ "description": "Indicates if the graph dimensions are included in the Grid Setup Panel",
1893
+ "type": "boolean",
1894
+ "title": "enabled"
1895
+ },
1896
+ "min": {
1897
+ "description": "Indicates the minimum value for the graph width and height",
1898
+ "type": "number",
1899
+ "title": "min"
1900
+ },
1901
+ "max": {
1902
+ "description": "Indicates the maximum value for the graph width and height",
1903
+ "type": "number",
1904
+ "title": "max"
1905
+ },
1906
+ "step": {
1907
+ "description": "Indicates the increase/decrease value for the graph width and height",
1908
+ "type": "number",
1909
+ "title": "step"
1910
+ }
1911
+ }
1912
+ },
1867
1913
  "Answer": {
1868
1914
  "title": "Answer",
1869
1915
  "type": "object",
@@ -112,6 +112,10 @@ Width for graph representation
112
112
 
113
113
  Height for graph representation
114
114
 
115
+ # `includeAxes` (boolean)
116
+
117
+ Indicates if the graph axes and labels are enabled
118
+
115
119
  # `labels` (object)
116
120
 
117
121
  Properties of the `labels` object:
@@ -213,6 +217,10 @@ Indicates if Rationale are enabled
213
217
 
214
218
  Indicates if spellcheck is enabled for the author. Default value is true
215
219
 
220
+ # `standardGrid` (boolean)
221
+
222
+ Indicates if some domain values will be synched to the range values
223
+
216
224
  # `studentInstructionsEnabled` (boolean, required)
217
225
 
218
226
  Indicates if Student Instructions are enabled
@@ -316,6 +324,34 @@ Indicates if the item has to be displayed in the Settings Panel
316
324
 
317
325
  Indicates the label for the item that has to be displayed in the Settings Panel
318
326
 
327
+ ## `DimensionsConfigProp` (object)
328
+
329
+ Properties of the `DimensionsConfigProp` object:
330
+
331
+ ### `settings` (boolean)
332
+
333
+ Indicates if the item has to be displayed in the Settings Panel
334
+
335
+ ### `label` (string)
336
+
337
+ Indicates the label for the item that has to be displayed in the Settings Panel
338
+
339
+ ### `enabled` (boolean)
340
+
341
+ Indicates if the graph dimensions are included in the Grid Setup Panel
342
+
343
+ ### `min` (number)
344
+
345
+ Indicates the minimum value for the graph width and height
346
+
347
+ ### `max` (number)
348
+
349
+ Indicates the maximum value for the graph width and height
350
+
351
+ ### `step` (number)
352
+
353
+ Indicates the increase/decrease value for the graph width and height
354
+
319
355
  ## `Answer` (object)
320
356
 
321
357
  Properties of the `Answer` object:
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "repository": "pie-framework/pie-elements",
7
- "version": "3.7.21",
7
+ "version": "3.7.22",
8
8
  "description": "",
9
9
  "scripts": {
10
10
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -13,10 +13,10 @@
13
13
  "dependencies": {
14
14
  "@material-ui/core": "^3.9.2",
15
15
  "@pie-framework/pie-player-events": "^0.1.0",
16
- "@pie-lib/correct-answer-toggle": "2.3.38",
17
- "@pie-lib/graphing": "^2.6.2",
18
- "@pie-lib/math-rendering": "^2.4.2",
19
- "@pie-lib/render-ui": "^4.12.8",
16
+ "@pie-lib/correct-answer-toggle": "2.3.39",
17
+ "@pie-lib/graphing": "^2.6.3",
18
+ "@pie-lib/math-rendering": "^2.4.3",
19
+ "@pie-lib/render-ui": "^4.12.9",
20
20
  "classnames": "^2.2.5",
21
21
  "debug": "^4.1.1",
22
22
  "react": "^16.8.1",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "author": "",
26
26
  "license": "ISC",
27
- "gitHead": "3f3d6edc68890098821978ebd5a8b90da31ab222",
27
+ "gitHead": "2b16a41c0627a27ee758af9285afde4d226dc12b",
28
28
  "main": "lib/index.js",
29
29
  "module": "src/index.js"
30
30
  }