@hpcc-js/common
Advanced tools
Comparing version 2.21.1 to 2.21.2
@@ -6,2 +6,10 @@ # Change Log | ||
## [2.21.2](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@2.21.1...@hpcc-js/common@2.21.2) (2020-03-02) | ||
**Note:** Version bump only for package @hpcc-js/common | ||
## [2.21.1](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@2.21.0...@hpcc-js/common@2.21.1) (2020-01-23) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@hpcc-js/common", | ||
"version": "2.21.1", | ||
"version": "2.21.2", | ||
"description": "hpcc-js - Viz Common", | ||
@@ -32,3 +32,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@hpcc-js/util": "^2.10.0", | ||
"@hpcc-js/util": "^2.11.0", | ||
"@types/d3-array": "1.2.6", | ||
@@ -96,3 +96,3 @@ "@types/d3-brush": "1.0.10", | ||
"homepage": "https://github.com/hpcc-systems/Visualization", | ||
"gitHead": "27b3583839e9747cab849d9ed20725f6d2ce7e86" | ||
"gitHead": "22f7e506ac910408655c7778f8a3a68bdfea5364" | ||
} |
export declare const PKG_NAME = "@hpcc-js/common"; | ||
export declare const PKG_VERSION = "2.21.1"; | ||
export declare const BUILD_VERSION = "2.12.2"; | ||
export declare const PKG_VERSION = "2.21.2"; | ||
export declare const BUILD_VERSION = "2.13.0"; | ||
//# sourceMappingURL=__package__.d.ts.map |
@@ -0,1 +1,2 @@ | ||
import { Selection as d3SelectionT } from "d3-selection"; | ||
export declare class SelectionBase { | ||
@@ -7,13 +8,19 @@ protected __widget: any; | ||
} | ||
export interface ISelectionItem { | ||
_id: string; | ||
element(): d3SelectionT<Element, any, Element, any>; | ||
} | ||
export declare class SelectionBag extends SelectionBase { | ||
items: any; | ||
items: { | ||
[key: string]: ISelectionItem; | ||
}; | ||
constructor(widget: any); | ||
clear(): void; | ||
isEmpty(): boolean; | ||
append(item: any): void; | ||
remove(item: any): void; | ||
isSelected(item: any): boolean; | ||
append(item: ISelectionItem): void; | ||
remove(item: ISelectionItem): void; | ||
isSelected(item: ISelectionItem): boolean; | ||
get(): any[]; | ||
set(itemArray: any): void; | ||
click: (item: any, d3Event: any) => void; | ||
set(itemArray: ISelectionItem[]): void; | ||
click: (item: ISelectionItem, d3Event: any) => void; | ||
} | ||
@@ -20,0 +27,0 @@ export declare class SimpleSelection extends SelectionBase { |
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
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
6012170
31981
Updated@hpcc-js/util@^2.11.0