Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Rewrite paper-progress as paper-linear-progress
Browse files Browse the repository at this point in the history
This commit introduces a complete rewrite of `paper-progress` into a new
`paper-linear-progress` element. Features include the following:

- New semantics regarding `secondary-progress` which now becomes
  `buffer-value`, as it's meant to be within the spec.
- Removal of `IronRangeBehavior`, since the linear progress element is not an
  interactive UI element, nor does it have anything to do with
  representing a range as the "range"-based input elements connote.
- Slimmed down custom property API which exposes only the facets of the
  element meant to be modifiable in terms of the spec.
- Implementation of indeterminate animation which adheres to spec.
- Support for reversing the element, including all its
  transition/animations.
- Support for a buffering state.
- Complete and comprehensive test suite which adds full code coverage to
  the component.
- Revamped demo page which shows all possible functionality of the
  element.
  • Loading branch information
traviskaufman committed Dec 3, 2015
1 parent d417e51 commit 8e97c64
Show file tree
Hide file tree
Showing 6 changed files with 1,543 additions and 498 deletions.
25 changes: 16 additions & 9 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paper-progress",
"version": "1.0.7",
"name": "paper-linear-progress",
"version": "1.0.0",
"license": "http://polymer.github.io/LICENSE.txt",
"description": "A material design progress bar",
"authors": "The Polymer Authors",
Expand All @@ -9,23 +9,30 @@
"polymer",
"progress"
],
"main": "paper-progress.html",
"main": "paper-linear-progress.html",
"repository": {
"type": "git",
"url": "git://github.com/PolymerElements/paper-progress.git"
"url": "git://github.com/PolymerElements/paper-linear-progress.git"
},
"dependencies": {
"polymer": "Polymer/polymer#^1.1.0",
"iron-range-behavior": "PolymerElements/iron-range-behavior#^1.0.0",
"paper-styles": "PolymerElements/paper-styles#^1.0.0",
"iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0"
"neon-animation": "PolymerElements/neon-animation#^1.0.0"
},
"devDependencies": {
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
"test-fixture": "PolymerElements/test-fixture#^1.0.0",
"paper-button": "PolymerElements/paper-button#^1.0.0",
"web-component-tester": "*",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
"web-component-tester": "polymer/web-component-tester#^3.4.0",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
"paper-checkbox": "PolymerElements/paper-checkbox#^1.0.0",
"paper-input": "PolymerElements/paper-input#^1.0.0",
"iron-flex-layout": "PolymerElements/iron-flex-layout#^1.0.0",
"promise-polyfill": "PolymerLabs/promise-polyfill#~1.0.0",
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0"
},
"ignore": []
"ignore": [
"**/.*",
"test"
]
}
Loading

0 comments on commit 8e97c64

Please sign in to comment.