Skip to content

Commit

Permalink
Version 2 Preview!
Browse files Browse the repository at this point in the history
New Features:
- More modular design
- Less dependencies/complexity
- Style sheets imported into Shadow DOM
- Draws with (Chart)Wrapper
- Introduces:
  - Dashboards
  - Controls
  - Queries
  - Editors
- Call methods on charts
- Chart Actions
- Heavily updated demos

Some known issues:
- P0 Needs more tests!
- P1 gViz bug? Drawing a WordTree shows an error
- P3 gViz bug? Changing chart type has slow style sheet update due to delayed ready event.
  • Loading branch information
wesalvaro committed Nov 11, 2017
1 parent f11a3cc commit e56eb2e
Show file tree
Hide file tree
Showing 26 changed files with 2,336 additions and 1,661 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
bower_components
bower-*
bower_components*
node_modules
34 changes: 24 additions & 10 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "google-chart",
"version": "1.1.1",
"version": "2.0.0",
"description": "Encapsulates Google Charts into a web component",
"homepage": "https://googlewebcomponents.github.io/google-chart",
"main": "google-chart.html",
"authors": [
"Wes Alvaro",
"Sérgio Gomes"
"Wes Alvaro"
],
"license": "Apache-2.0",
"ignore": [
Expand All @@ -20,16 +19,31 @@
"chart",
"charts",
"google-visualization",
"google"
"google",
"visualization"
],
"dependencies": {
"google-apis": "GoogleWebComponents/google-apis#^1.0.0",
"iron-ajax": "PolymerElements/iron-ajax#^1.0.0",
"polymer": "Polymer/polymer#^1.0.0",
"promise-polyfill": "polymerlabs/promise-polyfill#^1.0.0"
"polymer": "Polymer/polymer#1.9 - 2"
},
"devDependencies": {
"iron-component-page": "PolymerElements/iron-component-page#^1.0.2",
"web-component-tester": "*"
"iron-ajax": "PolymerElements/iron-ajax#1 - 2",
"iron-component-page": "PolymerElements/iron-component-page#1 - 2",
"iron-media-query": "PolymerElements/iron-media-query#1 - 2",
"iron-resizable-behavior": "PolymerElements/iron-resizable-behavior#1 - 2",
"paper-button": "PolymerElements/paper-button#1 - 2",
"promise-polyfill": "polymerlabs/promise-polyfill#1 - 2",
"web-component-tester": "Polymer/web-component-tester#^6.4.0"
},
"variants": {
"1.x": {
"dependencies": {
"polymer": "Polymer/polymer#^1.0.0",
"promise-polyfill": "PolymerLabs/promise-polyfill#^1.0.0"
},
"devDependencies": {
"iron-component-page": "PolymerElements/iron-component-page#^1.0.2",
"web-component-tester": "*"
}
}
}
}
4 changes: 0 additions & 4 deletions charts-loader.html

This file was deleted.

Loading

0 comments on commit e56eb2e

Please sign in to comment.