2016-05-13 11:01:25 +03:00
|
|
|
import {Component, ViewEncapsulation} from '@angular/core';
|
|
|
|
|
|
|
|
|
|
import {BaCard} from '../../../../theme/components';
|
|
|
|
|
|
2016-05-13 11:26:05 +03:00
|
|
|
import {InlineForm} from './components/inlineForm';
|
|
|
|
|
import {BlockForm} from './components/blockForm';
|
|
|
|
|
import {HorizontalForm} from './components/horizontalForm';
|
|
|
|
|
import {BasicForm} from './components/basicForm';
|
|
|
|
|
import {WithoutLabelsForm} from './components/withoutLabelsForm';
|
|
|
|
|
|
2016-05-13 11:01:25 +03:00
|
|
|
@Component({
|
|
|
|
|
selector: 'layouts',
|
|
|
|
|
encapsulation: ViewEncapsulation.None,
|
2016-05-13 11:26:05 +03:00
|
|
|
directives: [BaCard, InlineForm, BlockForm, HorizontalForm, BasicForm, WithoutLabelsForm],
|
2016-05-13 11:27:38 +03:00
|
|
|
styles: [],
|
2016-05-13 11:01:25 +03:00
|
|
|
template: require('./layouts.html'),
|
|
|
|
|
})
|
|
|
|
|
export class Layouts {
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
|
}
|
|
|
|
|
}
|