@barchart/chart-lib 2.316.2 → 2.317.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@barchart/chart-lib",
3
- "version": "2.316.2",
3
+ "version": "2.317.0",
4
4
  "description": "Barchart HTML5 Streaming Chart",
5
5
  "main": "barchart.chart.js",
6
6
  "types": "barchart.chart.d.ts",
@@ -1182,6 +1182,24 @@
1182
1182
  },
1183
1183
  "ordinalName": {
1184
1184
  "type": "string"
1185
+ },
1186
+ "contractTransition": {
1187
+ "$ref": "#/definitions/transitionLine",
1188
+ "default": {
1189
+ "enabled": false,
1190
+ "width": 2,
1191
+ "color": "#777",
1192
+ "dashStyle": "LongDashDot"
1193
+ }
1194
+ },
1195
+ "cycleTransition": {
1196
+ "$ref": "#/definitions/transitionLine",
1197
+ "default": {
1198
+ "enabled": false,
1199
+ "width": 2,
1200
+ "color": "#777",
1201
+ "dashStyle": "ShortDashDot"
1202
+ }
1185
1203
  }
1186
1204
  }
1187
1205
  }
@@ -1778,6 +1796,25 @@
1778
1796
  }
1779
1797
  }
1780
1798
  },
1799
+ "transitionLine": {
1800
+ "type": "object",
1801
+ "additionalProperties": false,
1802
+ "properties": {
1803
+ "enabled": {
1804
+ "type": "boolean"
1805
+ },
1806
+ "width": {
1807
+ "type": "number",
1808
+ "minimum": 1
1809
+ },
1810
+ "color": {
1811
+ "$ref": "#/definitions/color"
1812
+ },
1813
+ "dashStyle": {
1814
+ "$ref": "#/definitions/dashStyle"
1815
+ }
1816
+ }
1817
+ },
1781
1818
  "fillTrait": {
1782
1819
  "type": "object",
1783
1820
  "additionalProperties": false,
@@ -1987,7 +2024,7 @@
1987
2024
  },
1988
2025
  "version": {
1989
2026
  "type": "integer",
1990
- "minimum": 138,
2027
+ "minimum": 139,
1991
2028
  "multipleOf": 1
1992
2029
  }
1993
2030
  },