Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@goldsam/ng-golden-layout

goldsam115MIT0.0.3TypeScript support: included

Angular bindings for golden-layout

angular, angular2, golden-layout, docking, layout

readme

ng-golden-layout Build Status

Angular 2.4.x Compatible

Installation

To install this library and its dependencies, run:

$ npm install @goldsam/ng-golden-layout golden-layout --save
$ npm install @types/jquery --save-dev

Getting Started

First, import GoldenLayoutModule into your root AppModule

import {GoldenLayoutModule} from '@goldsam/ng-golden-layout';

Then, add GoldenLayoutModule.forRoot() to your AppModule's import array

@NgModule({
  imports : [
    CommonModule, 
    GoldenLayoutModule.forRoot({
        ...
    })), 
    ...
  ],
  ...
})
export class AppModule {}

TODO

  1. Implement support for saving/restoring golden-layout state.
  2. Improve this README
  3. Create unit and E2E tests

Development

To generate all *.js, *.js.map and *.d.ts files:

$ npm run tsc

License

MIT © Sam Goldmann

changelog

Angular library starter Changelog

Mar 6, 2017

  • Add compodoc for generating documentation

Feb 5, 2017

  • Create library