Skip to content
Snippets Groups Projects
Commit 8af72198 authored by jojohoch's avatar jojohoch
Browse files

Add `inputAssistanceType` to TextAreaElement and TextFieldElement

parent 697b61b1
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,7 @@ export class TextAreaElement extends InputElement implements FontElement, Surfac ...@@ -14,6 +14,7 @@ export class TextAreaElement extends InputElement implements FontElement, Surfac
underline: boolean = false; underline: boolean = false;
inputAssistancePreset: 'none' | 'french' | 'numbers' | 'numbersAndOperators' = 'none'; inputAssistancePreset: 'none' | 'french' | 'numbers' | 'numbersAndOperators' = 'none';
inputAssistanceType: 'floating' | 'right' = 'floating';
backgroundColor: string = 'transparent'; backgroundColor: string = 'transparent';
......
...@@ -12,6 +12,7 @@ export class TextFieldElement extends InputElement implements FontElement, Surfa ...@@ -12,6 +12,7 @@ export class TextFieldElement extends InputElement implements FontElement, Surfa
patternWarnMessage: string = 'Eingabe entspricht nicht der Vorgabe'; patternWarnMessage: string = 'Eingabe entspricht nicht der Vorgabe';
inputAssistancePreset: 'none' | 'french' | 'numbers' | 'numbersAndOperators' = 'none'; inputAssistancePreset: 'none' | 'french' | 'numbers' | 'numbersAndOperators' = 'none';
inputAssistanceType: 'floating' | 'right' = 'floating';
clearable: boolean = false; clearable: boolean = false;
......
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