Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b180351

Browse files
AmitMYmanucorporat
authored andcommittedOct 6, 2017
feat(input): add dir attribute for different language directions (#13043)
1 parent 70809ca commit b180351

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
 

‎src/components/alert/alert-component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import { AlertButton, AlertInputOptions, AlertOptions } from './alert-options';
5252
'<ng-template ngSwitchDefault>' +
5353
'<div class="alert-input-group">' +
5454
'<div *ngFor="let i of d.inputs" class="alert-input-wrapper">' +
55-
'<input [placeholder]="i.placeholder" [(ngModel)]="i.value" [type]="i.type" [min]="i.min" [max]="i.max" [attr.id]="i.id" class="alert-input">' +
55+
'<input [placeholder]="i.placeholder" [(ngModel)]="i.value" [type]="i.type" dir="auto" [min]="i.min" [max]="i.max" [attr.id]="i.id" class="alert-input">' +
5656
'</div>' +
5757
'</div>' +
5858
'</ng-template>' +

‎src/components/input/input.ts

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ import { Platform } from '../../platform/platform';
101101
'(focus)="onFocus($event)" ' +
102102
'(keydown)="onKeydown($event)" ' +
103103
'[type]="_type" ' +
104+
'dir="auto" ' +
104105
'[attr.aria-labelledby]="_labelId" ' +
105106
'[attr.min]="min" ' +
106107
'[attr.max]="max" ' +

‎src/components/searchbar/searchbar.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import { Platform } from '../../platform/platform';
3535
'</button>' +
3636
'<div #searchbarIcon class="searchbar-search-icon"></div>' +
3737
'<input #searchbarInput class="searchbar-input" (input)="inputChanged($event)" (blur)="inputBlurred()" (focus)="inputFocused()" ' +
38+
'dir="auto" ' +
3839
'[attr.placeholder]="placeholder" ' +
3940
'[attr.type]="type" ' +
4041
'[attr.autocomplete]="_autocomplete" ' +

0 commit comments

Comments
 (0)
Please sign in to comment.