Browse Source

added dist files

merge-requests/13/head
dv4mp1r3 2 years ago
parent
commit
1cb5e34260
  1. 2
      dist/index.d.ts
  2. 2
      dist/index.js
  3. 6
      dist/types.d.ts

2
dist/index.d.ts vendored

@ -72,6 +72,8 @@ declare abstract class ChartwerkPod<T extends TimeSerie, O extends Options> {
protected renderYLabel(): void;
protected renderXLabel(): void;
protected renderNoDataPointsMessage(): void;
private disableScrollForward;
private disableScrollBackward;
protected onPanning(): void;
rescaleMetricAndAxis(event: d3.D3ZoomEvent<any, any>): void;
protected onPanningRescale(event: d3.D3ZoomEvent<any, any>): void;

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

6
dist/types.d.ts vendored

@ -93,6 +93,7 @@ export declare type Options = {
keyEvent?: KeyEvent;
panStep?: number;
orientation?: ScrollPanOrientation;
direction?: ScrollPanDirection;
};
};
};
@ -148,6 +149,11 @@ export declare enum ScrollPanOrientation {
VERTICAL = "vertical",
HORIZONTAL = "horizontal"
}
export declare enum ScrollPanDirection {
FORWARD = "forward",
BACKWARD = "backward",
BOTH = "both"
}
export declare enum AxisFormat {
TIME = "time",
NUMERIC = "numeric",

Loading…
Cancel
Save