Skip to content

Commit

Permalink
1.4.26 (closes #479, closes #480)
Browse files Browse the repository at this point in the history
  • Loading branch information
udos86 committed Aug 30, 2017
1 parent 699baa0 commit 4d21361
Show file tree
Hide file tree
Showing 28 changed files with 28 additions and 37 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.4.26

### **Features**

* **support for Material beta.10** (closes [#479](https://github.com/udos86/ng2-dynamic-forms/issues/479) and [#480](https://github.com/udos86/ng2-dynamic-forms/issues/480))


# 1.4.25

### **Features**
Expand Down
6 changes: 3 additions & 3 deletions example/app/material/material-example.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const MATERIAL_EXAMPLE_MODEL = [
value: "option-4"
}
],
placeholder: "Select an option"
placeholder: "Material Select"
}
),

Expand All @@ -45,7 +45,7 @@ export const MATERIAL_EXAMPLE_MODEL = [
id: "materialInput",
list: ["Football", "Basketball", "Baseball", "Hockey"],
maxLength: 51,
placeholder: "example input",
placeholder: "Material Input",
validators: {
required: null
},
Expand Down Expand Up @@ -146,7 +146,7 @@ export const MATERIAL_EXAMPLE_MODEL = [
id: "materialTextArea",
//label: "Example Textarea",
rows: 1,
placeholder: "example Textarea",
placeholder: "Material Textarea",
validators: {
required: null
},
Expand Down
2 changes: 1 addition & 1 deletion modules/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/core",
"version": "1.4.25",
"version": "1.4.26",
"description": "A rapid form development library for Angular 2.x and higher",
"main": "./bundles/core.umd.js",
"module": "./bundles/core.es.js",
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-basic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-basic",
"version": "1.4.25",
"version": "1.4.26",
"description": "Basic UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-basic.umd.js",
"module": "./bundles/ui-basic.es.js",
Expand Down Expand Up @@ -32,7 +32,7 @@
"@angular/core": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/forms": "^4.0.0",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"angular2-text-mask": "^8.0.1",
"rxjs": "^5.2.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export const enum BasicFormControlType {
}

@Component({

selector: "dynamic-basic-form-control,dynamic-form-basic-control",
templateUrl: "./dynamic-basic-form-control.component.html"
})
Expand Down
1 change: 0 additions & 1 deletion modules/ui-basic/src/dynamic-basic-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicBasicFormControlComponent } from "./dynamic-basic-form-control.component";

@Component({

selector: "dynamic-basic-form",
templateUrl: "./dynamic-basic-form.component.html"
})
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-bootstrap",
"version": "1.4.25",
"version": "1.4.26",
"description": "Bootstrap UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-bootstrap.umd.js",
"module": "./bundles/ui-bootstrap.es.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/common": "^4.0.0",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"bootstrap": "^3.3.7",
"angular2-text-mask": "^8.0.1",
"rxjs": "^5.2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export const enum BootstrapFormControlType {
}

@Component({

selector: "dynamic-bootstrap-form-control,dynamic-form-bootstrap-control",
templateUrl: "./dynamic-bootstrap-form-control.component.html"
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicBootstrapFormControlComponent } from "./dynamic-bootstrap-form-control.component";

@Component({

selector: "dynamic-bootstrap-form",
templateUrl: "./dynamic-bootstrap-form.component.html"
})
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-foundation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-foundation",
"version": "1.4.25",
"version": "1.4.26",
"description": "Foundation UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-foundation.umd.js",
"module": "./bundles/ui-foundation.es.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@angular/core": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/forms": "^4.0.0",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"angular2-text-mask": "^8.0.1",
"foundation-sites": "^6.3.1",
"rxjs": "^5.2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export const enum FoundationFormControlType {
}

@Component({

selector: "dynamic-foundation-form-control,dynamic-form-foundation-sites-control",
templateUrl: "./dynamic-foundation-form-control.component.html"
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicFoundationFormControlComponent } from "./dynamic-foundation-form-control.component";

@Component({

selector: "dynamic-foundation-form",
templateUrl: "./dynamic-foundation-form.component.html"
})
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-ionic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-ionic",
"version": "1.4.25",
"version": "1.4.26",
"description": "Ionic UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-ionic.umd.js",
"module": "./bundles/ui-ionic.es.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@angular/core": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/forms": "^4.0.0",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"angular2-text-mask": "^8.0.1",
"ionic-angular": "^3.0.1",
"rxjs": "^5.2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export const enum IonicFormControlType {
}

@Component({

selector: "dynamic-ionic-form-control,dynamic-form-ionic-control",
templateUrl: "./dynamic-ionic-form-control.component.html"
})
Expand Down
1 change: 0 additions & 1 deletion modules/ui-ionic/src/dynamic-ionic-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicIonicFormControlComponent } from "./dynamic-ionic-form-control.component";

@Component({

selector: "dynamic-ionic-form",
templateUrl: "./dynamic-ionic-form.component.html"
})
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-kendo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-kendo",
"version": "1.4.25",
"version": "1.4.26",
"description": "Kendo UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-kendo.umd.js",
"module": "./bundles/ui-kendo.es.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@angular/core": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/forms": "^4.0.0",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"@progress/kendo-angular-dateinputs": "^1.0.0",
"@progress/kendo-angular-dropdowns": "^1.0.0",
"@progress/kendo-angular-inputs": "^1.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export type KendoFormControlComponent = AutoCompleteComponent | CalendarComponen
NumericTextBoxComponent | SliderComponent | SwitchComponent | UploadComponent;

@Component({

selector: "dynamic-kendo-form-control,dynamic-form-kendo-control",
templateUrl: "./dynamic-kendo-form-control.component.html"
})
Expand Down
1 change: 0 additions & 1 deletion modules/ui-kendo/src/dynamic-kendo-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicKendoFormControlComponent } from "./dynamic-kendo-form-control.component";

@Component({

selector: "dynamic-kendo-form",
templateUrl: "./dynamic-kendo-form.component.html"
})
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-material/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-material",
"version": "1.4.25",
"version": "1.4.26",
"description": "Material UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-material.umd.js",
"module": "./bundles/ui-material.es.js",
Expand Down Expand Up @@ -34,7 +34,7 @@
"@angular/common": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/material": "^2.0.0-beta.10",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"rxjs": "^5.2.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export type MdFormControlComponent = MdAutocomplete | MdCheckbox | MdDatepicker<
MdSelect | MdSlider | MdSlideToggle;

@Component({

selector: "dynamic-material-form-control,dynamic-form-material-control",
templateUrl: "./dynamic-material-form-control.component.html"
})
Expand Down
1 change: 0 additions & 1 deletion modules/ui-material/src/dynamic-material-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicMaterialFormControlComponent } from "./dynamic-material-form-control.component";

@Component({

selector: "dynamic-material-form",
templateUrl: "./dynamic-material-form.component.html"
})
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-ng-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-ng-bootstrap",
"version": "1.4.25",
"version": "1.4.26",
"description": "NG Bootstrap UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-ng-bootstrap.umd.js",
"module": "./bundles/ui-ng-bootstrap.es.js",
Expand Down Expand Up @@ -35,7 +35,7 @@
"@angular/forms": "^4.0.0",
"@angular/common": "^4.0.0",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-beta.1",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"angular2-text-mask": "^8.0.1",
"bootstrap": "^4.0.0-beta",
"rxjs": "^5.2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export const enum NGBootstrapFormControlType {
}

@Component({

selector: "dynamic-ng-bootstrap-form-control,dynamic-form-ng-bootstrap-control",
templateUrl: "./dynamic-ng-bootstrap-form-control.component.html"
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicNGBootstrapFormControlComponent } from "./dynamic-ng-bootstrap-form-control.component";

@Component({

selector: "dynamic-ng-bootstrap-form",
templateUrl: "./dynamic-ng-bootstrap-form.component.html"
})
Expand Down
4 changes: 2 additions & 2 deletions modules/ui-primeng/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng2-dynamic-forms/ui-primeng",
"version": "1.4.25",
"version": "1.4.26",
"description": "PrimeNG UI package for ng2 Dynamic Forms",
"main": "./bundles/ui-primeng.umd.js",
"module": "./bundles/ui-primeng.es.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"@angular/core": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/forms": "^4.0.0",
"@ng2-dynamic-forms/core": "^1.4.25",
"@ng2-dynamic-forms/core": "^1.4.26",
"primeng": "^4.0.0",
"rxjs": "^5.2.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ export type PrimeNGFormControlComponent = AutoComplete | Calendar | Checkbox | C
MultiSelect | Rating | Slider;

@Component({

selector: "dynamic-primeng-form-control,dynamic-form-primeng-control",
templateUrl: "./dynamic-primeng-form-control.component.html"
})
Expand Down
1 change: 0 additions & 1 deletion modules/ui-primeng/src/dynamic-primeng-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { DynamicPrimeNGFormControlComponent } from "./dynamic-primeng-form-control.component";

@Component({

selector: "dynamic-primeng-form",
templateUrl: "./dynamic-primeng-form.component.html"
})
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng2-dynamic-forms",
"version": "1.4.25",
"version": "1.4.26",
"description": "A rapid form development library for Angular",
"scripts": {
"compile:app:aot": "ngc -p tsconfig.app.ngc.json",
Expand Down

0 comments on commit 4d21361

Please sign in to comment.