| OLD | NEW |
| 1 // DO NOT EDIT: auto-generated with `pub run custom_element_apigen:update` | 1 // DO NOT EDIT: auto-generated with `pub run custom_element_apigen:update` |
| 2 | 2 |
| 3 /// Dart API for the polymer element `paper_progress`. | 3 /// Dart API for the polymer element `paper_progress`. |
| 4 @HtmlImport('paper_progress_nodart.html') | 4 @HtmlImport('paper_progress_nodart.html') |
| 5 library polymer_elements.lib.src.paper_progress.paper_progress; | 5 library polymer_elements.lib.src.paper_progress.paper_progress; |
| 6 | 6 |
| 7 import 'dart:html'; | 7 import 'dart:html'; |
| 8 import 'dart:js' show JsArray, JsObject; | 8 import 'dart:js' show JsArray, JsObject; |
| 9 import 'package:web_components/web_components.dart'; | 9 import 'package:web_components/web_components.dart'; |
| 10 import 'package:polymer_interop/polymer_interop.dart'; | 10 import 'package:polymer_interop/polymer_interop.dart'; |
| 11 import 'iron_range_behavior.dart'; | 11 import 'iron_range_behavior.dart'; |
| 12 import 'paper_styles.dart'; | 12 import 'color.dart'; |
| 13 import 'paper_styles_classes.dart'; | 13 import 'iron_flex_layout.dart'; |
| 14 | 14 |
| 15 /// The progress bars are for situations where the percentage completed can be | 15 /// The progress bars are for situations where the percentage completed can be |
| 16 /// determined. They give users a quick sense of how much longer an operation | 16 /// determined. They give users a quick sense of how much longer an operation |
| 17 /// will take. | 17 /// will take. |
| 18 /// | 18 /// |
| 19 /// Example: | 19 /// Example: |
| 20 /// | 20 /// |
| 21 /// <paper-progress value="10"></paper-progress> | 21 /// <paper-progress value="10"></paper-progress> |
| 22 /// | 22 /// |
| 23 /// There is also a secondary progress which is useful for displaying intermedia
te | 23 /// There is also a secondary progress which is useful for displaying intermedia
te |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 set indeterminate(bool value) { jsElement[r'indeterminate'] = value; } | 83 set indeterminate(bool value) { jsElement[r'indeterminate'] = value; } |
| 84 | 84 |
| 85 /// The number that represents the current secondary progress. | 85 /// The number that represents the current secondary progress. |
| 86 num get secondaryProgress => jsElement[r'secondaryProgress']; | 86 num get secondaryProgress => jsElement[r'secondaryProgress']; |
| 87 set secondaryProgress(num value) { jsElement[r'secondaryProgress'] = value; } | 87 set secondaryProgress(num value) { jsElement[r'secondaryProgress'] = value; } |
| 88 | 88 |
| 89 /// The secondary ratio | 89 /// The secondary ratio |
| 90 num get secondaryRatio => jsElement[r'secondaryRatio']; | 90 num get secondaryRatio => jsElement[r'secondaryRatio']; |
| 91 set secondaryRatio(num value) { jsElement[r'secondaryRatio'] = value; } | 91 set secondaryRatio(num value) { jsElement[r'secondaryRatio'] = value; } |
| 92 } | 92 } |
| OLD | NEW |