@sumaris-net/ngx-components 1.23.41 → 1.23.43

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "1.23.41",
4
+ "version": "1.23.43",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -9,6 +9,7 @@ export declare class Color {
9
9
  private _name;
10
10
  static get(name: ColorName): Color;
11
11
  static parseRgba(rgba: string): Color | null;
12
+ static parseHexa(hexColor: string): Color;
12
13
  static transparent: () => Color;
13
14
  constructor(_rgbArray: number[], _opacity?: number, _name?: string);
14
15
  get name(): string;
@@ -58,6 +59,6 @@ export declare class ColorScale {
58
59
  get max(): number;
59
60
  constructor(colorArray: string[], options?: ColorScaleOptions);
60
61
  get legend(): ColorScaleLegend;
61
- getValueColor(value: number): string;
62
+ getValueColor(value: number): string | number[];
62
63
  protected computeLegend(): ColorScaleLegendItem[];
63
64
  }
@@ -7,3 +7,5 @@ import { Moment } from 'moment';
7
7
  declare const moment: typeof momentImported;
8
8
  declare const tz: typeof momentImported;
9
9
  export { moment, tz, Moment };
10
+ declare const uuidv4: import("uuid/interfaces").v4;
11
+ export { uuidv4 };