@hpcc-js/common
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -6,2 +6,15 @@ # Change Log | ||
<a name="2.1.0"></a> | ||
# [2.1.0](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@2.0.0...@hpcc-js/common@2.1.0) (2018-09-01) | ||
### Features | ||
* **ChartPanel:** Add API for toolbar buttons ([c87656b](https://github.com/hpcc-systems/Visualization/commit/c87656b)), closes [#2813](https://github.com/hpcc-systems/Visualization/issues/2813) | ||
* **PP:** Allow SET to optionally support text + value ([fd22216](https://github.com/hpcc-systems/Visualization/commit/fd22216)) | ||
<a name="2.0.0"></a> | ||
@@ -8,0 +21,0 @@ # [2.0.0](https://github.com/hpcc-systems/Visualization/compare/@hpcc-js/common@0.9.4...@hpcc-js/common@2.0.0) (2018-08-24) |
{ | ||
"name": "@hpcc-js/common", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "hpcc-js - Viz Common", | ||
@@ -16,3 +16,3 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"clean": "rimraf lib* || rimraf types || rimraf dist", | ||
"clean": "rimraf lib* types dist", | ||
"copy-resources": "cpx \"../../node_modules/font-awesome/fonts/*\" \"./font-awesome/fonts\" && cpx \"../../node_modules/font-awesome/css/*\" \"./font-awesome/css\"", | ||
@@ -31,3 +31,3 @@ "compile-es6": "tsc --module es6 --outDir ./lib-es6", | ||
"dependencies": { | ||
"@hpcc-js/util": "^2.0.0", | ||
"@hpcc-js/util": "^2.0.1", | ||
"d3-selection": "1.1.0", | ||
@@ -82,3 +82,3 @@ "d3-transition": "1.1.0" | ||
"homepage": "https://github.com/hpcc-systems/Visualization", | ||
"gitHead": "30bdd695a4cd10a5c5da4532897358f78207bb31" | ||
"gitHead": "b62709358639febfe40b22e8c97094b9ee35c896" | ||
} |
@@ -68,3 +68,6 @@ import { Class } from "./Class"; | ||
static prevClassID: string; | ||
publish(id: string, defaultValue: any, type?: PublishTypes, description?: string, set?: string[] | (() => string[]) | IPublishExt, ext?: IPublishExt): void; | ||
publish(id: string, defaultValue: any, type?: PublishTypes, description?: string, set?: string[] | (() => string[] | Array<{ | ||
value: string; | ||
text: string; | ||
}>) | IPublishExt, ext?: IPublishExt): void; | ||
publishWidget(prefix: any, WidgetType: any, id: any): void; | ||
@@ -82,3 +85,6 @@ publishProxy(id: string, proxy: any, method?: any, defaultValue?: any): void; | ||
} | ||
export declare function publish(defaultValue: any, type?: PublishTypes, description?: string, set?: string[] | (() => string[]) | IPublishExt, ext?: IPublishExt): (target: any, key: string) => void; | ||
export declare function publish(defaultValue: any, type?: PublishTypes, description?: string, set?: string[] | (() => string[] | Array<{ | ||
value: string; | ||
text: string; | ||
}>) | IPublishExt, ext?: IPublishExt): (target: any, key: string) => void; | ||
export declare type publish<T, U> = ((_: U) => T) & (() => U); | ||
@@ -85,0 +91,0 @@ export declare function publishProxy(proxy: string, method?: string, defaultValue?: any, ext?: { |
@@ -42,2 +42,4 @@ import { HTMLWidget } from "./HTMLWidget"; | ||
buttons(_: Widget[]): this; | ||
hiddenButtons(): Widget[]; | ||
hiddenButtons(_: Widget[]): this; | ||
} | ||
@@ -44,0 +46,0 @@ export declare class TitleBar extends IconBar { |
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
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
4794163
27437
Updated@hpcc-js/util@^2.0.1