Sign In

bottom-dock

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bottom-dock

Generic bottom dock for quick panel development

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

bottom-dock package

bottom-dock is an extendable panel which helps simplify creating panels.

Features:

  • Hide/Show panel
  • Reize panel
  • Multiple panes
  • Manages active tab and pane
  • Easy refresh/delete pane

Commands:

  • ctrl-k ctrl-t: toggles panel
  • ctrl-k ctrl-r: refreshes window
  • ctrl-k ctrl-c: closes window

image

BottomDockService API

class BottomDockService {
  toggle(): void
  changePane(id: string): void
  refreshPane(id: string): void
  deletePane(id: string): void
  getPane(id: string): Pane //Where Pane extends DockPaneView
  addPane(pane: Pane, name: string): void
  getCurrentPane(): Pane
  refreshCurrentPane(): void
  deleteCurrentPane: void
  destroy: void //For internal use only
}
How to use

Create a new package that consumes the BottomDockService

Extend the DockPaneView from the attom-bottom-dock npm package

Look at Gulp Manager for an example on how to use the api

Keywords

generic

FAQs

Package last updated on 01 Aug 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts