1.2.1 • Published 3 years ago

mag-component-layout v1.2.1

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

Layout component

build status npm version dependencies status devDependencies status Gitter

Layout is a component to build user interface, an instance of Component module.

Installation

npm install mag-component-layout

Usage

Add the constructor to the scope:

var Layout = require('mag-component-layout');

Create layout instance:

var layout = new Layout({
    data: [
        'Some text',
         {
            className: 'icon star',
            name: '$starIcon'
         },
         {
            value: new Button({value:'Ok'}),
            name: 'okButton'
         },
         new Button({value:'Cancel'})
    ]
});

Development mode

There is a global var DEVELOP which activates additional consistency checks and protection logic not available in release mode.

Contribution

If you have any problems or suggestions please open an issue according to the contribution rules.

License

mag-component-layout is released under the MIT License.