Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Side by Side Diff: lib/paper_progress.dart

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/paper_material.dart ('k') | lib/paper_progress.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « lib/paper_material.dart ('k') | lib/paper_progress.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698