npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cog-dock-panel

v1.0.2

Published

A dockable panel for angular.

Downloads

12

Readme

#cog-dock-panel

NOTE: This is a breaking change from ng-dock-panel .

Angular module for dockable panels

Inspired by dardino/ngDock.

##Usage:

cog-dock-panel and cog-dock

<body>
  <div cog-dock-panel>
    <div cog-dock="$angularexpr">my content</div>
  </div>
</body>

$angularexpr is an angular expression that returns one of this:

  • top
  • left
  • right
  • bottom
  • fill

example:

<body>
  <div cog-dock-panel>
    <div cog-dock="bottom">Bottom</div>
    <div cog-dock="fill">my content</div>
  </div>
</body>

or:

<body>
  <div cog-dock-panel>
    <div cog-dock="myScopeVariable">my content</div>
  </div>
</body>

###cog-dock-resizable

If you want to be able to resize a dock you need to set the cog-dock-resizable directive:

<body>
  <div cog-dock-panel>
    <div cog-dock="bottom" cog-dock-resizable>Bottom</div>
    <div cog-dock="fill">Fill</div>
  </div>
</body>

You can also pass an options object that will be passed through to the underlying jquery-ui resizable plugin:

<body>
  <div cog-dock-panel>
    <div cog-dock="bottom" cog-dock-resizable="{maxHeight: 300}">Bottom</div>
    <div cog-dock="fill">Fill</div>
  </div>
</body>

See jquery-ui resizable docs for possible options.

If you want to customize the resize handles, you can include an HTML element with a css class of 'cog-dock-resize-handle' as a child of the cog-dock-resizable element. The cog-dock-resizable directive will locate the child element and convert it to a resize handle.

<body>
  <div cog-dock-panel>
    <div cog-dock="bottom" cog-dock-resizable>Bottom
      <div cog-dock-resize-handle></div>
    </div>
    <div cog-dock="fill">Fill</div>
  </div>
</body>

You can use both cog-dock-resizable and cog-dock-collapsible on the same dock, if desired.

notice: you can only resize a non 'fill' dock

###cog-dock-collapsible

If you want to be able to collapse a dock you need to set the cog-dock-collapsible directive, AND include an HTML element with a css class of 'cog-dock-collapse-handle' as a child of the cog-dock-collapsible element. The cog-dock-collapsible directive will locate the child element and convert it to a collapse handle.

<body>
  <div cog-dock-panel>
    <div cog-dock="bottom" cog-dock-collapsible>Bottom
          <div cog-dock-collapse-handle></div>
        </div>
    </div>
    <div cog-dock="fill">Fill</div>
  </div>
</body>

You can use both cog-dock-collapsible and cog-dock-resizable on the same dock, if desired.

notice: you can only collapse a non 'fill' dock

##Styling

Because cog-dock-panel components are composed of normal HTML elements, you can style them as necessary using a combination of the jquery-ui classes, cog-dock-panel classes and attributes, plus your own custom classes.

Style distribution (CSS)

The compiled styles are distributed in the root of the package, as cog-dock-panel.css (or .min.css).

Style source (SASS / LESS)

The style source is available as either SCSS or LESS format, in <package-root>/lib/style/sass or .../style/less, respectively.