-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Polymer 1.x version to class based element. Because we don't need any template binding we will only mixin the Polymer.PropertyAccessors mixin.
- Loading branch information
Showing
7 changed files
with
162 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,8 @@ | |
"no-console": 0 | ||
}, | ||
"env": { | ||
"browser": true | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"plugins": [ | ||
"html" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "svg-piechart", | ||
"version": "1.1.0", | ||
"version": "2.0.0", | ||
"authors": ["Uemit Seren <[email protected]>"], | ||
"description": "Element to draw a piechart on a SVG.", | ||
"keywords": "svg, piechart, polymer, web-components", | ||
"keywords": ["svg, piechart, polymer, web-components"], | ||
"main": "svg-piechart.html", | ||
"license": "MIT", | ||
"homepage": "https://github.com/timeu/svg-piechart/", | ||
|
@@ -12,12 +12,14 @@ | |
"/test/" | ||
], | ||
"dependencies": { | ||
"polymer": "Polymer/polymer#^1.9.0" | ||
"polymer": "Polymer/polymer#^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0", | ||
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^1.0.0", | ||
"iron-demo-helpers": "PolymerElements/iron-demo-helpers#^2.0.0", | ||
"web-component-tester": "Polymer/web-component-tester#^6.0.0", | ||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0" | ||
"webcomponentsjs": "webcomponents/webcomponentsjs#^1.0.0" | ||
}, | ||
"resolutions": { | ||
"polymer": "^2.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"lint": { | ||
"rules": [ | ||
"polymer-1" | ||
"polymer-2" | ||
] | ||
} | ||
} |
Oops, something went wrong.