| OLD | NEW |
| (Empty) | |
| 1 library angular.directive; |
| 2 |
| 3 import 'package:di/di.dart'; |
| 4 import 'dart:html' as dom; |
| 5 import 'dart:async' as async; |
| 6 import 'package:angular/core/module.dart'; |
| 7 import 'package:angular/core/parser/parser_library.dart'; |
| 8 import 'package:angular/core_dom/module.dart'; |
| 9 import 'package:angular/utils.dart'; |
| 10 |
| 11 part 'ng_a.dart'; |
| 12 part 'ng_bind.dart'; |
| 13 part 'ng_bind_html.dart'; |
| 14 part 'ng_bind_template.dart'; |
| 15 part 'ng_class.dart'; |
| 16 part 'ng_events.dart'; |
| 17 part 'ng_cloak.dart'; |
| 18 part 'ng_if.dart'; |
| 19 part 'ng_include.dart'; |
| 20 part 'ng_model.dart'; |
| 21 part 'ng_repeat.dart'; |
| 22 part 'ng_template.dart'; |
| 23 part 'ng_show_hide.dart'; |
| 24 part 'ng_src_boolean.dart'; |
| 25 part 'ng_style.dart'; |
| 26 part 'ng_switch.dart'; |
| 27 part 'ng_non_bindable.dart'; |
| 28 part 'input_select.dart'; |
| 29 part 'ng_form.dart'; |
| 30 |
| 31 class NgDirectiveModule extends Module { |
| 32 NgDirectiveModule() { |
| 33 value(NgADirective, null); |
| 34 value(NgBindDirective, null); |
| 35 value(NgBindTemplateDirective, null); |
| 36 value(NgBindHtmlDirective, null); |
| 37 value(NgClassDirective, null); |
| 38 value(NgClassOddDirective, null); |
| 39 value(NgClassEvenDirective, null); |
| 40 value(NgCloakDirective, null); |
| 41 value(NgHideDirective, null); |
| 42 value(NgIfDirective, null); |
| 43 value(NgUnlessDirective, null); |
| 44 value(NgIncludeDirective, null); |
| 45 value(NgRepeatDirective, null); |
| 46 value(NgShalowRepeatDirective, null); |
| 47 value(NgShowDirective, null); |
| 48 value(InputEmailDirective, null); |
| 49 value(InputNumberDirective, null); |
| 50 value(InputRadioDirective, null); |
| 51 value(InputTextDirective, null); |
| 52 value(InputPasswordDirective, null); |
| 53 value(InputUrlDirective, null); |
| 54 value(InputCheckboxDirective, null); |
| 55 value(TextAreaDirective, null); |
| 56 value(InputSelectDirective, null); |
| 57 value(OptionValueDirective, null); |
| 58 value(NgModel, null); |
| 59 value(NgSwitchDirective, null); |
| 60 value(NgSwitchWhenDirective, null); |
| 61 value(NgSwitchDefaultDirective, null); |
| 62 |
| 63 value(NgBooleanAttributeDirective, null); |
| 64 value(NgSourceDirective, null); |
| 65 |
| 66 value(NgEventDirective, null); |
| 67 value(NgStyleDirective, null); |
| 68 value(NgNonBindableDirective, null); |
| 69 value(NgTemplateDirective, null); |
| 70 value(NgForm, null); |
| 71 } |
| 72 } |
| OLD | NEW |