mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-10 02:14:20 +01:00
feat(aot): aot compilation work in progress
This commit is contained in:
parent
24fe588b42
commit
d89d176e54
117 changed files with 866 additions and 1041 deletions
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'checkbox-inputs',
|
||||
template: require('./checkboxInputs.html'),
|
||||
templateUrl: './checkboxInputs.html',
|
||||
})
|
||||
export class CheckboxInputs {
|
||||
public checkboxModel = [{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'group-inputs',
|
||||
template: require('./groupInputs.html'),
|
||||
templateUrl: './groupInputs.html',
|
||||
})
|
||||
export class GroupInputs {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import { Component } from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'rating-inputs',
|
||||
template: require('./ratinginputs.html')
|
||||
templateUrl: './ratinginputs.html'
|
||||
})
|
||||
|
||||
export class Rating {
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@ import { Component } from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'select-inputs',
|
||||
styles: [require('./selectInput.scss')],
|
||||
template: require('./selectInputs.html')
|
||||
styleUrls: ['./selectInput.scss'],
|
||||
templateUrl: './selectInputs.html'
|
||||
})
|
||||
export class SelectInputs {
|
||||
constructor() { }
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'standard-inputs',
|
||||
template: require('./standardInputs.html'),
|
||||
templateUrl: './standardInputs.html',
|
||||
})
|
||||
export class StandardInputs {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'validation-inputs',
|
||||
template: require('./validationInputs.html'),
|
||||
templateUrl: './validationInputs.html',
|
||||
})
|
||||
export class ValidationInputs {
|
||||
public checkboxModel = [{
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@ import {Component, ViewEncapsulation} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'inputs',
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
template: require('./inputs.html'),
|
||||
// encapsulation: ViewEncapsulation.None,
|
||||
templateUrl: './inputs.html',
|
||||
})
|
||||
export class Inputs {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'basic-form',
|
||||
template: require('./basicForm.html'),
|
||||
templateUrl: './basicForm.html',
|
||||
})
|
||||
export class BasicForm {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'block-form',
|
||||
template: require('./blockForm.html'),
|
||||
templateUrl: './blockForm.html',
|
||||
})
|
||||
export class BlockForm {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'horizontal-form',
|
||||
template: require('./horizontalForm.html'),
|
||||
templateUrl: './horizontalForm.html',
|
||||
})
|
||||
export class HorizontalForm {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'inline-form',
|
||||
styles: [require('./inlineForm.scss')],
|
||||
template: require('./inlineForm.html'),
|
||||
styleUrls: ['./inlineForm.scss'],
|
||||
templateUrl: './inlineForm.html',
|
||||
})
|
||||
export class InlineForm {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import {Component} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'without-labels-form',
|
||||
template: require('./withoutLabelsForm.html'),
|
||||
templateUrl: './withoutLabelsForm.html',
|
||||
})
|
||||
export class WithoutLabelsForm {
|
||||
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@ import {Component, ViewEncapsulation} from '@angular/core';
|
|||
|
||||
@Component({
|
||||
selector: 'layouts',
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
// encapsulation: ViewEncapsulation.None,
|
||||
styles: [],
|
||||
template: require('./layouts.html'),
|
||||
templateUrl: './layouts.html',
|
||||
})
|
||||
export class Layouts {
|
||||
|
||||
|
|
|
|||
|
|
@ -48,5 +48,5 @@ import { WithoutLabelsForm } from './components/layouts/components/withoutLabels
|
|||
WithoutLabelsForm
|
||||
]
|
||||
})
|
||||
export default class FormsModule {
|
||||
export class FormsModule {
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue