eru-grid 0.0.39 → 0.0.40

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eru-grid",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.2",
6
6
  "@angular/core": "^21.1.2",
@@ -238,9 +238,9 @@ interface Field {
238
238
  open_status?: any[];
239
239
  close_status?: any[];
240
240
  color_ranges?: {
241
- from: number;
242
- to: number;
243
- color: string;
241
+ from?: number | null;
242
+ to?: number | null;
243
+ color?: string | null;
244
244
  }[];
245
245
  data_length?: number;
246
246
  start_value?: number;