Skip to content
Snippets Groups Projects
Commit 14dcebca authored by jojohoch's avatar jojohoch
Browse files

[player] Disable automatic capitalization and spelling correction (iPad)

- Use the attributes autocapitalize, autocorrect, spellcheck
- Replace [value]="elementModel.value" with
value="{{elementModel.value}}" to prevent lint errors
parent abc6fc4d
No related branches found
No related tags found
No related merge requests found
...@@ -22,9 +22,13 @@ import { TextAreaElement } from '../../interfaces/elements'; ...@@ -22,9 +22,13 @@ import { TextAreaElement } from '../../interfaces/elements';
[appearance]="$any(elementModel.appearance)"> [appearance]="$any(elementModel.appearance)">
<mat-label *ngIf="elementModel.label">{{elementModel.label}}</mat-label> <mat-label *ngIf="elementModel.label">{{elementModel.label}}</mat-label>
<textarea matInput #input <textarea matInput #input
autocomplete="off" rows="{{elementModel.rowCount}}" autocomplete="off"
autocapitalize="none"
autocorrect="off"
spellcheck="false"
rows="{{elementModel.rowCount}}"
value="{{elementModel.value}}"
[formControl]="elementFormControl" [formControl]="elementFormControl"
[value]="elementModel.value"
[readonly]="elementModel.readOnly" [readonly]="elementModel.readOnly"
[style.min-width.%]="100" [style.min-width.%]="100"
[style.line-height.%]="elementModel.styling.lineHeight" [style.line-height.%]="elementModel.styling.lineHeight"
......
...@@ -6,6 +6,10 @@ import { TextFieldSimpleElement } from '../../interfaces/elements'; ...@@ -6,6 +6,10 @@ import { TextFieldSimpleElement } from '../../interfaces/elements';
selector: 'aspect-text-field-simple', selector: 'aspect-text-field-simple',
template: ` template: `
<input type="text" form="parentForm" <input type="text" form="parentForm"
autocomplete="off"
autocapitalize="none"
autocorrect="off"
spellcheck="false"
[style.width.px]="elementModel.width" [style.width.px]="elementModel.width"
[style.height.px]="elementModel.height" [style.height.px]="elementModel.height"
[style.line-height.px]="elementModel.styling.fontSize" [style.line-height.px]="elementModel.styling.fontSize"
......
...@@ -20,9 +20,13 @@ import { TextFieldElement } from '../../interfaces/elements'; ...@@ -20,9 +20,13 @@ import { TextFieldElement } from '../../interfaces/elements';
aspectInputBackgroundColor [backgroundColor]="elementModel.styling.backgroundColor" aspectInputBackgroundColor [backgroundColor]="elementModel.styling.backgroundColor"
[appearance]="$any(elementModel.appearance)"> [appearance]="$any(elementModel.appearance)">
<mat-label>{{elementModel.label}}</mat-label> <mat-label>{{elementModel.label}}</mat-label>
<input matInput type="text" #input autocomplete="off" <input matInput type="text" #input
autocomplete="off"
autocapitalize="none"
autocorrect="off"
spellcheck="false"
value="{{elementModel.value}}"
[formControl]="elementFormControl" [formControl]="elementFormControl"
[value]="elementModel.value"
[pattern]="elementModel.pattern" [pattern]="elementModel.pattern"
[readonly]="elementModel.readOnly" [readonly]="elementModel.readOnly"
(focus)="elementModel.inputAssistancePreset !== 'none' ? onFocusChanged.emit(input) : null" (focus)="elementModel.inputAssistancePreset !== 'none' ? onFocusChanged.emit(input) : null"
...@@ -48,9 +52,13 @@ import { TextFieldElement } from '../../interfaces/elements'; ...@@ -48,9 +52,13 @@ import { TextFieldElement } from '../../interfaces/elements';
[style.text-decoration]="elementModel.styling.underline ? 'underline' : ''" [style.text-decoration]="elementModel.styling.underline ? 'underline' : ''"
aspectInputBackgroundColor [backgroundColor]="elementModel.styling.backgroundColor" aspectInputBackgroundColor [backgroundColor]="elementModel.styling.backgroundColor"
[appearance]="$any(elementModel.appearance)"> [appearance]="$any(elementModel.appearance)">
<input matInput type="text" #input autocomplete="off" <input matInput type="text" #input
autocomplete="off"
autocapitalize="none"
autocorrect="off"
spellcheck="false"
value="{{elementModel.value}}"
[formControl]="elementFormControl" [formControl]="elementFormControl"
[value]="elementModel.value"
[readonly]="elementModel.readOnly" [readonly]="elementModel.readOnly"
[pattern]="elementModel.pattern" [pattern]="elementModel.pattern"
(focus)="elementModel.inputAssistancePreset !== 'none' ? onFocusChanged.emit(input) : null" (focus)="elementModel.inputAssistancePreset !== 'none' ? onFocusChanged.emit(input) : null"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment