@opendata-ai/openchart-core 6.16.0 → 6.17.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.
package/dist/index.d.ts CHANGED
@@ -149,6 +149,8 @@ interface ColumnConfig {
149
149
  flag?: boolean;
150
150
  /** Category colors: color-code the cell based on its categorical value. */
151
151
  categoryColors?: CategoryColorsConfig;
152
+ /** When true, auto-assign palette colors to values not in categoryColors. Default: false. */
153
+ autoAssign?: boolean;
152
154
  }
153
155
 
154
156
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendata-ai/openchart-core",
3
- "version": "6.16.0",
3
+ "version": "6.17.0",
4
4
  "description": "Types, theme, colors, accessibility, and utilities for openchart",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Riley Hilliard",
@@ -102,4 +102,6 @@ export interface ColumnConfig {
102
102
  flag?: boolean;
103
103
  /** Category colors: color-code the cell based on its categorical value. */
104
104
  categoryColors?: CategoryColorsConfig;
105
+ /** When true, auto-assign palette colors to values not in categoryColors. Default: false. */
106
+ autoAssign?: boolean;
105
107
  }