Skip to content

Commit

Permalink
fix(forms): add directives for formControl (#861) (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
sis0k0 committed Jun 29, 2017
1 parent 1d95323 commit d29c8e1
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 36 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const CHECKED_VALUE_ACCESSOR = {
*/
@Directive({
selector:
"Switch[ngModel],Switch[formControlName]," +
"switch[ngModel],switch[formControlName]",
"Switch[ngModel],Switch[formControlName],Switch[formControl]," +
"switch[ngModel],switch[formControlName],switch[formControl]",
providers: [CHECKED_VALUE_ACCESSOR],
host: {
"(touch)": "onTouched()",
Expand Down
8 changes: 4 additions & 4 deletions nativescript-angular/value-accessors/date-value-accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ const DATE_VALUE_ACCESSOR = {
* ```
*/
@Directive({
selector: "DatePicker[ngModel],DatePicker[formControlName]," +
"datepicker[ngModel],datepicker[formControlName]," +
"datePicker[ngModel],datePicker[formControlName]," +
"date-picker[ngModel],date-picker[formControlName]",
selector: "DatePicker[ngModel],DatePicker[formControlName],DatePicker[formControl]," +
"datepicker[ngModel],datepicker[formControlName],datepicker[formControl]," +
"datePicker[ngModel],datePicker[formControlName],datePicker[formControl]," +
"date-picker[ngModel],date-picker[formControlName],date-picker[formControl]",
providers: [DATE_VALUE_ACCESSOR],
host: {
"(touch)": "onTouched()",
Expand Down
4 changes: 2 additions & 2 deletions nativescript-angular/value-accessors/number-value-accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const NUMBER_VALUE_ACCESSOR = {
*/
@Directive({
selector:
"Slider[ngModel],Slider[formControlName]," +
"slider[ngModel],slider[formControlName]",
"Slider[ngModel],Slider[formControlName],Slider[formControl]," +
"slider[ngModel],slider[formControlName],slider[formControl]",
providers: [NUMBER_VALUE_ACCESSOR],
host: {
"(touch)": "onTouched()",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ export type SelectableView = {selectedIndex: number} & View;
*/
@Directive({
selector:
"SegmentedBar[ngModel],SegmentedBar[formControlName]," +
"segmentedBar[ngModel],segmentedBar[formControlName]," +
"segmentedbar[ngModel],segmentedbar[formControlName]," +
"segmented-bar[ngModel],segmented-bar[formControlName]," +
"SegmentedBar[ngModel],SegmentedBar[formControlName],SegmentedBar[formControl]," +
"segmentedBar[ngModel],segmentedBar[formControlName],segmentedBar[formControl]," +
"segmentedbar[ngModel],segmentedbar[formControlName],segmentedbar[formControl]," +
"segmented-bar[ngModel],segmented-bar[formControlName],segmented-bar[formControl]," +

"ListPicker[ngModel],ListPicker[formControlName]," +
"listPicker[ngModel],listPicker[formControlName]," +
"listpicker[ngModel],listpicker[formControlName]," +
"list-picker[ngModel],list-picker[formControlName]," +
"ListPicker[ngModel],ListPicker[formControlName],ListPicker[formControl]," +
"listPicker[ngModel],listPicker[formControlName],listPicker[formControl]," +
"listpicker[ngModel],listpicker[formControlName],listpicker[formControl]," +
"list-picker[ngModel],list-picker[formControlName],list-picker[formControl]," +

"TabView[ngModel],TabView[formControlName]," +
"tabView[ngModel],tabView[formControlName]," +
"tabview[ngModel],tabview[formControlName]," +
"tab-view[ngModel],tab-view[formControlName]",
"TabView[ngModel],TabView[formControlName],TabView[formControl]," +
"tabView[ngModel],tabView[formControlName],tabView[formControl]," +
"tabview[ngModel],tabview[formControlName],tabview[formControl]," +
"tab-view[ngModel],tab-view[formControlName],tab-view[formControl]",
providers: [SELECTED_INDEX_VALUE_ACCESSOR],
host: {
"(touch)": "onTouched()",
Expand Down
24 changes: 12 additions & 12 deletions nativescript-angular/value-accessors/text-value-accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ export type TextView = {text: string} & View;
*/
@Directive({
selector:
"TextField[ngModel],TextField[formControlName]," +
"textField[ngModel],textField[formControlName]," +
"textfield[ngModel],textfield[formControlName]," +
"text-field[ngModel],text-field[formControlName]," +
"TextField[ngModel],TextField[formControlName],TextField[formControl]," +
"textField[ngModel],textField[formControlName],textField[formControl]," +
"textfield[ngModel],textfield[formControlName],textfield[formControl]," +
"text-field[ngModel],text-field[formControlName],text-field[formControl]," +

"TextView[ngModel],TextView[formControlName]," +
"textView[ngModel],textView[formControlName]," +
"textview[ngModel],textview[formControlName]," +
"text-view[ngModel],text-view[formControlName]," +
"TextView[ngModel],TextView[formControlName],TextView[formControl]," +
"textView[ngModel],textView[formControlName],textView[formControl]," +
"textview[ngModel],textview[formControlName],textview[formControl]," +
"text-view[ngModel],text-view[formControlName],text-view[formControl]," +

"SearchBar[ngModel],SearchBar[formControlName]," +
"searchBar[ngModel],searchBar[formControlName]," +
"searchbar[ngModel],searchbar[formControlName]," +
"search-bar[ngModel], search-bar[formControlName]",
"SearchBar[ngModel],SearchBar[formControlName],SearchBar[formControl]," +
"searchBar[ngModel],searchBar[formControlName],searchBar[formControl]," +
"searchbar[ngModel],searchbar[formControlName],searchbar[formControl]," +
"search-bar[ngModel], search-bar[formControlName],search-bar[formControl]",
providers: [TEXT_VALUE_ACCESSOR],
host: {
"(touch)": "onTouched()",
Expand Down
8 changes: 4 additions & 4 deletions nativescript-angular/value-accessors/time-value-accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ const TIME_VALUE_ACCESSOR = {
*/
@Directive({
selector:
"TimePicker[ngModel],TimePicker[formControlName]," +
"timepicker[ngModel],timepicker[formControlName]," +
"timePicker[ngModel],timePicker[formControlName]," +
"time-picker[ngModel], time-picker[formControlName]",
"TimePicker[ngModel],TimePicker[formControlName],TimePicker[formControl]," +
"timepicker[ngModel],timepicker[formControlName],timepicker[formControl]," +
"timePicker[ngModel],timePicker[formControlName],timePicker[formControl]," +
"time-picker[ngModel],time-picker[formControlName],time-picker[formControl]",
providers: [TIME_VALUE_ACCESSOR],
host: {
"(touch)": "onTouched()",
Expand Down

0 comments on commit d29c8e1

Please sign in to comment.