| Index: client/html/generated/html/frog/InputElement.dart
|
| diff --git a/client/html/generated/html/frog/InputElement.dart b/client/html/generated/html/frog/InputElement.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..156ebe6324a08d5c3c933b7abd1147bf65b57eba
|
| --- /dev/null
|
| +++ b/client/html/generated/html/frog/InputElement.dart
|
| @@ -0,0 +1,114 @@
|
| +
|
| +class _InputElementImpl extends _ElementImpl implements InputElement native "*HTMLInputElement" {
|
| +
|
| + String accept;
|
| +
|
| + String align;
|
| +
|
| + String alt;
|
| +
|
| + String autocomplete;
|
| +
|
| + bool autofocus;
|
| +
|
| + bool checked;
|
| +
|
| + bool defaultChecked;
|
| +
|
| + String defaultValue;
|
| +
|
| + bool disabled;
|
| +
|
| + final _FileListImpl files;
|
| +
|
| + final _FormElementImpl form;
|
| +
|
| + String formAction;
|
| +
|
| + String formEnctype;
|
| +
|
| + String formMethod;
|
| +
|
| + bool formNoValidate;
|
| +
|
| + String formTarget;
|
| +
|
| + bool incremental;
|
| +
|
| + bool indeterminate;
|
| +
|
| + final _NodeListImpl labels;
|
| +
|
| + String max;
|
| +
|
| + int maxLength;
|
| +
|
| + String min;
|
| +
|
| + bool multiple;
|
| +
|
| + String name;
|
| +
|
| + String pattern;
|
| +
|
| + String placeholder;
|
| +
|
| + bool readOnly;
|
| +
|
| + bool required;
|
| +
|
| + String selectionDirection;
|
| +
|
| + int selectionEnd;
|
| +
|
| + int selectionStart;
|
| +
|
| + int size;
|
| +
|
| + String src;
|
| +
|
| + String step;
|
| +
|
| + String type;
|
| +
|
| + String useMap;
|
| +
|
| + final String validationMessage;
|
| +
|
| + final _ValidityStateImpl validity;
|
| +
|
| + String value;
|
| +
|
| + Date valueAsDate;
|
| +
|
| + num valueAsNumber;
|
| +
|
| + bool webkitGrammar;
|
| +
|
| + bool webkitSpeech;
|
| +
|
| + bool webkitdirectory;
|
| +
|
| + final bool willValidate;
|
| +
|
| + _InputElementEventsImpl get on() =>
|
| + new _InputElementEventsImpl(this);
|
| +
|
| + bool checkValidity() native;
|
| +
|
| + void select() native;
|
| +
|
| + void setCustomValidity(String error) native;
|
| +
|
| + void setSelectionRange(int start, int end, [String direction = null]) native;
|
| +
|
| + void stepDown([int n = null]) native;
|
| +
|
| + void stepUp([int n = null]) native;
|
| +}
|
| +
|
| +class _InputElementEventsImpl extends _ElementEventsImpl implements InputElementEvents {
|
| + _InputElementEventsImpl(_ptr) : super(_ptr);
|
| +
|
| + EventListenerList get speechChange() => _get('webkitSpeechChange');
|
| +}
|
|
|