@deephaven/chart 0.8.2-beta.6 → 0.9.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.
@@ -6,8 +6,8 @@ declare class ChartTestUtils {
6
6
  static DEFAULT_SERIES_NAME: string;
7
7
  static makeAxis({ label, type, position, formatType, formatPattern, log, }?: {
8
8
  label?: string | undefined;
9
- type?: import("packages/jsapi-shim/src/dh.types").AxisType | undefined;
10
- position?: import("packages/jsapi-shim/src/dh.types").AxisPosition | undefined;
9
+ type?: import("@deephaven/jsapi-shim").AxisType | undefined;
10
+ position?: import("@deephaven/jsapi-shim").AxisPosition | undefined;
11
11
  formatType?: any;
12
12
  formatPattern?: string | undefined;
13
13
  log?: boolean | undefined;
@@ -19,7 +19,7 @@ declare class ChartTestUtils {
19
19
  static makeDefaultSources(): any[];
20
20
  static makeSeries({ name, plotStyle, sources, lineColor, shapeColor, }?: {
21
21
  name?: string | undefined;
22
- plotStyle?: import("packages/jsapi-shim/src/dh.types").SeriesPlotStyle | undefined;
22
+ plotStyle?: import("@deephaven/jsapi-shim").SeriesPlotStyle | undefined;
23
23
  sources?: any[] | undefined;
24
24
  lineColor?: any;
25
25
  shapeColor?: any;
@@ -52,7 +52,7 @@ declare class ChartUtils {
52
52
  static getPlotlyErrorBars(x: any[][number], xLow: any[][number], xHigh: any[][number]): Object;
53
53
  static getPlotlyDateFormat(formatter: any, columnType: any, formatPattern: any): {
54
54
  tickformat: any;
55
- ticksuffix: any;
55
+ ticksuffix: string | null;
56
56
  automargin: boolean;
57
57
  };
58
58
  static convertNumberPrefix(prefix: any): any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deephaven/chart",
3
- "version": "0.8.2-beta.6+b82791e",
3
+ "version": "0.9.0",
4
4
  "description": "Deephaven Chart",
5
5
  "author": "Deephaven Data Labs LLC",
6
6
  "license": "Apache-2.0",
@@ -34,9 +34,9 @@
34
34
  "start": "cross-env NODE_ENV=development npm run watch"
35
35
  },
36
36
  "dependencies": {
37
- "@deephaven/icons": "^0.8.2-beta.6+b82791e",
38
- "@deephaven/iris-grid": "^0.8.2-beta.6+b82791e",
39
- "@deephaven/jsapi-shim": "^0.8.2-beta.6+b82791e",
37
+ "@deephaven/icons": "^0.9.0",
38
+ "@deephaven/iris-grid": "^0.9.0",
39
+ "@deephaven/jsapi-shim": "^0.9.0",
40
40
  "deep-equal": "^2.0.4",
41
41
  "lodash.debounce": "^4.0.8",
42
42
  "memoize-one": "^5.1.1",
@@ -51,9 +51,9 @@
51
51
  },
52
52
  "devDependencies": {
53
53
  "@babel/cli": "^7.16.0",
54
- "@deephaven/log": "^0.8.2-beta.6+b82791e",
55
- "@deephaven/mocks": "^0.8.2-beta.6+b82791e",
56
- "@deephaven/tsconfig": "^0.8.2-beta.6+b82791e",
54
+ "@deephaven/log": "^0.9.0",
55
+ "@deephaven/mocks": "^0.9.0",
56
+ "@deephaven/tsconfig": "^0.9.0",
57
57
  "@types/react": "^16.14.8",
58
58
  "@types/react-dom": "^16.9.13",
59
59
  "cross-env": "^7.0.2",
@@ -73,5 +73,5 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "b82791e64062d6563c924b448e788878222df2ef"
76
+ "gitHead": "559f166018ce6e882a57351526fba18153912503"
77
77
  }