@cellaware/utils 9.4.1 → 9.4.2

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.
@@ -12,6 +12,7 @@ export interface DatagridStateBase {
12
12
  export interface ChartSettings {
13
13
  labels: boolean;
14
14
  trendline: boolean;
15
+ palette: 'single' | 'palette' | 'divergent';
15
16
  }
16
17
  /** Since chart settings were added late, we need to make sure the structure is full/complete at any given time. */
17
18
  export declare function initChartSettings(chartSettings?: ChartSettings): ChartSettings;
@@ -14,7 +14,8 @@ export function initChartSettings(chartSettings) {
14
14
  else {
15
15
  return {
16
16
  labels: false,
17
- trendline: false
17
+ trendline: false,
18
+ palette: 'single'
18
19
  };
19
20
  }
20
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "9.4.1",
3
+ "version": "9.4.2",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",