@hpcc-js/chart 3.4.2 → 3.5.0

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": "@hpcc-js/chart",
3
- "version": "3.4.2",
3
+ "version": "3.5.0",
4
4
  "description": "hpcc-js - Viz Chart",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.cjs",
@@ -37,12 +37,12 @@
37
37
  "update-major": "npx --yes npm-check-updates -u"
38
38
  },
39
39
  "dependencies": {
40
- "@hpcc-js/api": "^3.3.12",
41
- "@hpcc-js/common": "^3.4.2",
42
- "@hpcc-js/util": "^3.3.12"
40
+ "@hpcc-js/api": "^3.4.0",
41
+ "@hpcc-js/common": "^3.5.0",
42
+ "@hpcc-js/util": "^3.4.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@hpcc-js/esbuild-plugins": "^1.5.2",
45
+ "@hpcc-js/esbuild-plugins": "^1.6.0",
46
46
  "@types/d3-shape": "1.3.12",
47
47
  "@types/d3-transition": "1.3.6",
48
48
  "d3-array": "^1",
@@ -76,5 +76,5 @@
76
76
  "url": "https://github.com/hpcc-systems/Visualization/issues"
77
77
  },
78
78
  "homepage": "https://github.com/hpcc-systems/Visualization",
79
- "gitHead": "0d1e42fc5b7abe6c486d1a2e11c1460596f7af55"
79
+ "gitHead": "bfefa70bf4e4232dcdaaa8498a2985a4e9aaadb5"
80
80
  }
package/src/Axis.ts CHANGED
@@ -676,6 +676,7 @@ export interface Axis {
676
676
  tickFormat(): string;
677
677
  tickFormat(_: string): this;
678
678
  tickFormat_exists(): boolean;
679
+ tickFormat_reset(): void;
679
680
  tickLength(): number;
680
681
  tickLength(_: number): this;
681
682
  tickLength_exists(): boolean;
@@ -1,3 +1,3 @@
1
- export const PKG_NAME = "@hpcc-js/chart";
2
- export const PKG_VERSION = "3.2.0";
3
- export const BUILD_VERSION = "3.2.1";
1
+ export const PKG_NAME = "__PACKAGE_NAME__";
2
+ export const PKG_VERSION = "__PACKAGE_VERSION__";
3
+ export const BUILD_VERSION = "__BUILD_VERSION__";
package/types/Axis.d.ts CHANGED
@@ -80,6 +80,7 @@ export interface Axis {
80
80
  tickFormat(): string;
81
81
  tickFormat(_: string): this;
82
82
  tickFormat_exists(): boolean;
83
+ tickFormat_reset(): void;
83
84
  tickLength(): number;
84
85
  tickLength(_: number): this;
85
86
  tickLength_exists(): boolean;
@@ -1,3 +1,3 @@
1
- export declare const PKG_NAME = "@hpcc-js/chart";
2
- export declare const PKG_VERSION = "3.2.0";
3
- export declare const BUILD_VERSION = "3.2.1";
1
+ export declare const PKG_NAME = "__PACKAGE_NAME__";
2
+ export declare const PKG_VERSION = "__PACKAGE_VERSION__";
3
+ export declare const BUILD_VERSION = "__BUILD_VERSION__";