├── .gitignore ├── README.md ├── bower.json ├── google-web-components.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Google Web Components 2 | 3 | A collection of web components for Google APIs & services. Built with [Polymer 1.0](https://www.polymer-project.org/1.0/). 4 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-web-components", 3 | "version": "1.1.2", 4 | "homepage": "https://github.com/GoogleWebComponents/google-web-components", 5 | "authors": [ 6 | "The Polymer Authors" 7 | ], 8 | "description": "Google Web Components", 9 | "keywords": [ 10 | "google", 11 | "services", 12 | "sign-in", 13 | "maps", 14 | "hangouts", 15 | "charts", 16 | "element-collection" 17 | ], 18 | "license": "BSD-3-Clause", 19 | "ignore": [ 20 | "**/.*", 21 | "node_modules", 22 | "bower_components", 23 | "test", 24 | "tests" 25 | ], 26 | "dependencies": { 27 | "google-apis": "GoogleWebComponents/google-apis#^1.0.0", 28 | "google-drive": "GoogleWebComponents/google-drive#^1.0.1", 29 | "google-feeds": "GoogleWebComponents/google-feeds#^1.0.0", 30 | "google-map": "GoogleWebComponents/google-map#^1.0.0", 31 | "google-signin": "GoogleWebComponents/google-signin#^1.0.0", 32 | "google-sheets": "GoogleWebComponents/google-sheets#^1.0.1", 33 | "google-youtube": "GoogleWebComponents/google-youtube#^1.1.0", 34 | "google-analytics": "GoogleWebComponents/google-analytics#^1.0.0", 35 | "google-calendar": "GoogleWebComponents/google-calendar#^1.0.0", 36 | "google-chart": "GoogleWebComponents/google-chart#^1.0.0", 37 | "google-castable-video": "GoogleWebComponents/google-castable-video#^1.0.0", 38 | "google-hangout-button": "GoogleWebComponents/google-hangout-button#^1.0.0", 39 | "google-url-shortener": "GoogleWebComponents/google-url-shortener#^1.0.0", 40 | "google-youtube-upload": "GoogleWebComponents/google-youtube-upload#^1.0.0", 41 | "google-streetview-pano": "GoogleWebComponents/google-streetview-pano#^1.0.0", 42 | "firebase-element": "GoogleWebComponents/firebase-element#^1.0.0", 43 | "polymerfire": "firebase/polymerfire#~0.9.0" 44 | }, 45 | "devDependencies": { 46 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0" 47 | }, 48 | "main": "google-web-components.html" 49 | } 50 | -------------------------------------------------------------------------------- /google-web-components.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | --------------------------------------------------------------------------------