├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo └── index.html ├── google-calendar.html ├── index.html └── tests ├── google-calendar-list-basic.html ├── index.html └── tests.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2015 Google Inc 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | google-calendar 2 | ================ 3 | 4 | See https://elements.polymer-project.org/elements/google-calendar 5 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-calendar", 3 | "version": "1.0.3", 4 | "homepage": "https://googlewebcomponents.github.io/google-calendar", 5 | "description": "Web components for working with Google Calendar", 6 | "main": "google-calendar.html", 7 | "authors": [ 8 | "Ewa Gasperowicz" 9 | ], 10 | "license": "Apache-2.0", 11 | "ignore": [ 12 | "/.*", 13 | "/test/" 14 | ], 15 | "keywords": [ 16 | "web-component", 17 | "web-components", 18 | "polymer", 19 | "calendar", 20 | "google" 21 | ], 22 | "dependencies": { 23 | "polymer": "Polymer/polymer#^1.0.0", 24 | "google-apis": "GoogleWebComponents/google-apis#^1.0", 25 | "google-signin": "GoogleWebComponents/google-signin#^1.0" 26 | }, 27 | "devDependencies": { 28 | "web-component-tester": "*", 29 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.0" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | google-calendar Demo 7 | 8 | 9 | 10 | 11 | 12 | 19 | 20 | 21 | 22 | 23 | 25 | 26 | 27 |

A <google-calendar-list> looks like this:

28 | 29 | 30 |

A <google-calendar-busy> looks like this:

31 | 32 | 37 | 38 |
39 |
40 | 41 | Another calendar id: 44 |
45 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /google-calendar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 44 | 60 | 61 | 62 | 124 | 125 | 126 | 127 | 149 | 158 | 159 | 309 | 310 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tests/google-calendar-list-basic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | google-plusone Basic Tests 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | google-calendar tests 7 | 8 | 9 | 10 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /tests/tests.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 21 | --------------------------------------------------------------------------------