| Index: third_party/pkg/angular/lib/directive/module.dart
|
| ===================================================================
|
| --- third_party/pkg/angular/lib/directive/module.dart (revision 33054)
|
| +++ third_party/pkg/angular/lib/directive/module.dart (working copy)
|
| @@ -2,13 +2,12 @@
|
|
|
| import 'package:di/di.dart';
|
| import 'dart:html' as dom;
|
| +import 'dart:async' as async;
|
| import 'package:intl/intl.dart';
|
| import 'package:angular/core/module.dart';
|
| import 'package:angular/core/parser/parser.dart';
|
| import 'package:angular/core_dom/module.dart';
|
| import 'package:angular/utils.dart';
|
| -import 'package:angular/change_detection/watch_group.dart';
|
| -import 'package:angular/change_detection/change_detection.dart';
|
|
|
| part 'ng_a.dart';
|
| part 'ng_bind.dart';
|
| @@ -39,7 +38,6 @@
|
| value(NgBindDirective, null);
|
| value(NgBindTemplateDirective, null);
|
| value(NgBindHtmlDirective, null);
|
| - value(dom.NodeValidator, new dom.NodeValidatorBuilder.common());
|
| value(NgClassDirective, null);
|
| value(NgClassOddDirective, null);
|
| value(NgClassEvenDirective, null);
|
| @@ -50,19 +48,15 @@
|
| value(NgIncludeDirective, null);
|
| value(NgPluralizeDirective, null);
|
| value(NgRepeatDirective, null);
|
| - value(NgShallowRepeatDirective, null);
|
| + value(NgShalowRepeatDirective, null);
|
| value(NgShowDirective, null);
|
| value(InputTextLikeDirective, null);
|
| - value(InputNumberLikeDirective, null);
|
| value(InputRadioDirective, null);
|
| value(InputCheckboxDirective, null);
|
| value(InputSelectDirective, null);
|
| value(OptionValueDirective, null);
|
| value(ContentEditableDirective, null);
|
| value(NgModel, null);
|
| - value(NgValue, new NgValue(null));
|
| - value(NgTrueValue, new NgTrueValue(null));
|
| - value(NgFalseValue, new NgFalseValue(null));
|
| value(NgSwitchDirective, null);
|
| value(NgSwitchWhenDirective, null);
|
| value(NgSwitchDefaultDirective, null);
|
| @@ -75,7 +69,6 @@
|
| value(NgStyleDirective, null);
|
| value(NgNonBindableDirective, null);
|
| value(NgTemplateDirective, null);
|
| - value(NgControl, new NgNullControl());
|
| value(NgForm, new NgNullForm());
|
|
|
| value(NgModelRequiredValidator, null);
|
|
|