├── .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 |A <google-calendar-list>
looks like this:
A <google-calendar-busy>
looks like this: