feat(aot) - updated aot build

feat(aot) - fixed build

fix(aot) - fixed buttons and modals providers

fix(changes ) - remove unused changes
This commit is contained in:
ESadouski 2017-01-10 11:32:26 +03:00 committed by Alexander Zhukov
parent d89d176e54
commit 4112676ae9
19 changed files with 167 additions and 66 deletions

View file

@ -19,6 +19,8 @@ export class CheckboxInputs {
class: 'col-md-4'
}];
isDisabled: boolean = false;
public checkboxPropertiesMapping = {
model: 'checked',
value: 'name',

View file

@ -6,11 +6,11 @@ import { Component } from '@angular/core';
})
export class Rating {
private _rate1:number = 3;
private _rate2:number = 4;
public _rate1:number = 3;
public _rate2:number = 4;
private _max1:number = 5;
private _max2:number = 10;
public _max1:number = 5;
public _max2:number = 10;
constructor() {
}

View file

@ -8,4 +8,6 @@ export class BasicForm {
constructor() {
}
isChecked: boolean = false;
}

View file

@ -8,4 +8,6 @@ export class HorizontalForm {
constructor() {
}
isRemember: boolean = false;
}

View file

@ -9,4 +9,6 @@ export class InlineForm {
constructor() {
}
isRemember: boolean = false;
}