@barchart/chart-lib 2.402.0 → 2.404.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.
- chart-lib/barchart.chart.d.ts +11 -2
- chart-lib/barchart.chart.js +20 -20
- chart-lib/package.json +1 -1
- chart-lib/schemas/chart.schema.json +31 -3
- chart-lib/schemas/studies.schema.json +1 -0
chart-lib/package.json
CHANGED
|
@@ -424,7 +424,11 @@
|
|
|
424
424
|
"RVISIG",
|
|
425
425
|
"ATREXTAVG",
|
|
426
426
|
"ATREXTUP",
|
|
427
|
-
"ATREXTLOW"
|
|
427
|
+
"ATREXTLOW",
|
|
428
|
+
"DIDIS",
|
|
429
|
+
"DIDIL",
|
|
430
|
+
"DIDIUP",
|
|
431
|
+
"DIDIDN"
|
|
428
432
|
]
|
|
429
433
|
},
|
|
430
434
|
"generalField": {
|
|
@@ -754,7 +758,8 @@
|
|
|
754
758
|
"BOP",
|
|
755
759
|
"CORR",
|
|
756
760
|
"RVI",
|
|
757
|
-
"ATREXT"
|
|
761
|
+
"ATREXT",
|
|
762
|
+
"DIDI"
|
|
758
763
|
]
|
|
759
764
|
},
|
|
760
765
|
"annId": {
|
|
@@ -1511,6 +1516,10 @@
|
|
|
1511
1516
|
},
|
|
1512
1517
|
"value": {
|
|
1513
1518
|
"type": "number"
|
|
1519
|
+
},
|
|
1520
|
+
"integer": {
|
|
1521
|
+
"type": "boolean",
|
|
1522
|
+
"enum": [false]
|
|
1514
1523
|
}
|
|
1515
1524
|
}
|
|
1516
1525
|
},
|
|
@@ -1528,6 +1537,9 @@
|
|
|
1528
1537
|
"input": {
|
|
1529
1538
|
"type": "object",
|
|
1530
1539
|
"oneOf": [
|
|
1540
|
+
{
|
|
1541
|
+
"$ref": "#/definitions/integerInput"
|
|
1542
|
+
},
|
|
1531
1543
|
{
|
|
1532
1544
|
"$ref": "#/definitions/numberInput"
|
|
1533
1545
|
},
|
|
@@ -2175,6 +2187,22 @@
|
|
|
2175
2187
|
}
|
|
2176
2188
|
},
|
|
2177
2189
|
"required": ["axes"]
|
|
2190
|
+
},
|
|
2191
|
+
"integerInput": {
|
|
2192
|
+
"additionalProperties": false,
|
|
2193
|
+
"properties": {
|
|
2194
|
+
"name": {
|
|
2195
|
+
"type": "string"
|
|
2196
|
+
},
|
|
2197
|
+
"value": {
|
|
2198
|
+
"type": "integer"
|
|
2199
|
+
},
|
|
2200
|
+
"integer": {
|
|
2201
|
+
"type": "boolean",
|
|
2202
|
+
"enum": [true]
|
|
2203
|
+
}
|
|
2204
|
+
},
|
|
2205
|
+
"required": ["name", "value", "integer"]
|
|
2178
2206
|
}
|
|
2179
2207
|
},
|
|
2180
2208
|
"type": "object",
|
|
@@ -2195,7 +2223,7 @@
|
|
|
2195
2223
|
},
|
|
2196
2224
|
"version": {
|
|
2197
2225
|
"type": "integer",
|
|
2198
|
-
"minimum":
|
|
2226
|
+
"minimum": 183,
|
|
2199
2227
|
"multipleOf": 1
|
|
2200
2228
|
}
|
|
2201
2229
|
},
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"$ref": "chart.schema.json#/definitions/curveField"
|
|
72
72
|
},
|
|
73
73
|
"inputs": {
|
|
74
|
+
"description": "Input defaults. Declare discrete numeric inputs with integer: true; their defaults must be integers.",
|
|
74
75
|
"$ref": "chart.schema.json#/definitions/inputs"
|
|
75
76
|
},
|
|
76
77
|
"levels": {
|