| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * This library exports all of the commonly used functions and types for | 6 * This library exports all of the commonly used functions and types for |
| 7 * building UI's. | 7 * building UI's. |
| 8 * | 8 * |
| 9 * See this article for more information: | 9 * See this article for more information: |
| 10 * <http://www.dartlang.org/articles/dart-web-components/>. | 10 * <http://www.dartlang.org/articles/dart-web-components/>. |
| 11 */ | 11 */ |
| 12 library polymer; | 12 library polymer; |
| 13 | 13 |
| 14 export 'custom_element.dart'; | 14 export 'custom_element.dart'; |
| 15 export 'custom_syntax.dart'; | 15 export 'custom_syntax.dart'; |
| 16 export 'event.dart'; | 16 export 'event.dart'; |
| 17 export 'observe.dart'; | 17 export 'observe.dart'; |
| 18 export 'observe_html.dart'; | 18 export 'observe_html.dart'; |
| 19 export 'polymer_element.dart'; | 19 export 'polymer_element.dart'; |
| 20 export 'safe_html.dart'; | 20 export 'safe_html.dart'; |
| 21 export 'scoped_css.dart'; |
| OLD | NEW |