Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
bokeh / server / static / js / lib / models / tools / actions / zoom_out_tool.js
Size: Mime:
var _a;
import { ZoomBaseTool, ZoomBaseToolView } from "./zoom_base_tool";
import { tool_icon_zoom_out } from "../../../styles/icons.css";
export class ZoomOutToolView extends ZoomBaseToolView {
}
ZoomOutToolView.__name__ = "ZoomOutToolView";
export class ZoomOutTool extends ZoomBaseTool {
    constructor(attrs) {
        super(attrs);
        this.sign = -1;
        this.tool_name = "Zoom Out";
        this.icon = tool_icon_zoom_out;
    }
}
_a = ZoomOutTool;
ZoomOutTool.__name__ = "ZoomOutTool";
(() => {
    _a.prototype.default_view = ZoomOutToolView;
    _a.define(({ Boolean }) => ({
        maintain_focus: [Boolean, true],
    }));
    _a.register_alias("zoom_out", () => new ZoomOutTool({ dimensions: "both" }));
    _a.register_alias("xzoom_out", () => new ZoomOutTool({ dimensions: "width" }));
    _a.register_alias("yzoom_out", () => new ZoomOutTool({ dimensions: "height" }));
})();
//# sourceMappingURL=zoom_out_tool.js.map