| Index: client/html/generated/html/frog/TextAreaElement.dart
|
| diff --git a/client/html/generated/html/frog/TextAreaElement.dart b/client/html/generated/html/frog/TextAreaElement.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d33266d601f68e6c51036ff5de481c7a28813e4f
|
| --- /dev/null
|
| +++ b/client/html/generated/html/frog/TextAreaElement.dart
|
| @@ -0,0 +1,55 @@
|
| +
|
| +class _TextAreaElementJs extends _ElementJs implements TextAreaElement native "*HTMLTextAreaElement" {
|
| +
|
| + bool autofocus;
|
| +
|
| + int cols;
|
| +
|
| + String defaultValue;
|
| +
|
| + bool disabled;
|
| +
|
| + final _FormElementJs form;
|
| +
|
| + final _NodeListJs labels;
|
| +
|
| + int maxLength;
|
| +
|
| + String name;
|
| +
|
| + String placeholder;
|
| +
|
| + bool readOnly;
|
| +
|
| + bool required;
|
| +
|
| + int rows;
|
| +
|
| + String selectionDirection;
|
| +
|
| + int selectionEnd;
|
| +
|
| + int selectionStart;
|
| +
|
| + final int textLength;
|
| +
|
| + final String type;
|
| +
|
| + final String validationMessage;
|
| +
|
| + final _ValidityStateJs validity;
|
| +
|
| + String value;
|
| +
|
| + final bool willValidate;
|
| +
|
| + String wrap;
|
| +
|
| + bool checkValidity() native;
|
| +
|
| + void select() native;
|
| +
|
| + void setCustomValidity(String error) native;
|
| +
|
| + void setSelectionRange(int start, int end, [String direction = null]) native;
|
| +}
|
|
|