@hpcc-js/common
Advanced tools
Comparing version 2.19.2 to 2.19.3
@@ -6,2 +6,10 @@ # Change Log | ||
## [2.19.3](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@2.19.2...@hpcc-js/common@2.19.3) (2019-09-26) | ||
**Note:** Version bump only for package @hpcc-js/common | ||
## [2.19.2](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@2.19.1...@hpcc-js/common@2.19.2) (2019-08-30) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@hpcc-js/common", | ||
"version": "2.19.2", | ||
"version": "2.19.3", | ||
"description": "hpcc-js - Viz Common", | ||
@@ -32,3 +32,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@hpcc-js/util": "^2.8.2", | ||
"@hpcc-js/util": "^2.8.3", | ||
"@types/d3-array": "1.2.6", | ||
@@ -96,3 +96,3 @@ "@types/d3-brush": "1.0.10", | ||
"homepage": "https://github.com/hpcc-systems/Visualization", | ||
"gitHead": "8fa4ad73edba707471118a1044343ee70005dffa" | ||
"gitHead": "840941b32e9e58ef55ed8838b45973851ca3511f" | ||
} |
export declare const PKG_NAME = "@hpcc-js/common"; | ||
export declare const PKG_VERSION = "2.19.2"; | ||
export declare const BUILD_VERSION = "2.10.1"; | ||
export declare const PKG_VERSION = "2.19.3"; | ||
export declare const BUILD_VERSION = "2.10.3"; | ||
//# sourceMappingURL=__package__.d.ts.map |
@@ -1,3 +0,16 @@ | ||
export declare function fetchOrdinalItem(id?: any, colors?: any): any; | ||
export declare function fetchRainbowItem(id?: any, colors?: any, steps?: any): any; | ||
export interface PaletteFunc { | ||
switch(id?: string, colors?: string[]): any; | ||
type(): "ordinal" | "rainbow"; | ||
} | ||
export interface OrdinalPaletteFunc extends PaletteFunc { | ||
(label: string): string; | ||
} | ||
export declare function fetchOrdinalItem(): string[]; | ||
export declare function fetchOrdinalItem(id: string, colors?: string[]): OrdinalPaletteFunc; | ||
export interface RainbowPaletteFunc extends PaletteFunc { | ||
(value: number, domainLow: number, domainHigh: number): string; | ||
} | ||
export declare function fetchRainbowItem(): string[]; | ||
export declare function fetchRainbowItem(id: string): RainbowPaletteFunc; | ||
export declare function fetchRainbowItem(id: string, colors: string[], steps?: number): RainbowPaletteFunc; | ||
export declare function test(ordinalDivID: any, brewerDivID: any, customDivID: any, customArr: any, steps: any): void; | ||
@@ -4,0 +17,0 @@ export declare const ordinal: typeof fetchOrdinalItem; |
@@ -6,2 +6,3 @@ import { HTMLWidget } from "./HTMLWidget"; | ||
private _enabled; | ||
private _i; | ||
constructor(); | ||
@@ -8,0 +9,0 @@ enter(domNode: HTMLElement, element: any): void; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5950898
31838
Updated@hpcc-js/util@^2.8.3