├── .gitignore ├── README.md ├── meteor-elements.html ├── bower.json ├── meteor-session.html ├── LICENSE.md ├── meteor-call.html ├── index.html ├── meteor-user.html ├── meteor-connection.html ├── meteor-subscribe.html ├── meteor-collection.html └── meteor-query.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # meteor-elements 2 | 3 | Check the project [website](http://atoy40.github.io/meteor-elements/) for more informations. 4 | -------------------------------------------------------------------------------- /meteor-elements.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "meteor-elements", 3 | "version": "0.4.0", 4 | "private": true, 5 | "main": "meteor-elements.html", 6 | "authors": [ 7 | "Anthony Hinsinger " 8 | ], 9 | "license": "MIT", 10 | "ignore": [ 11 | "**/.*", 12 | "bower_components" 13 | ], 14 | "keywords": [ 15 | "web-components", 16 | "polymer", 17 | "meteor", 18 | "wrapper" 19 | ], 20 | "dependencies": { 21 | "polymer": "Polymer/polymer#~1.3.0" 22 | }, 23 | "devDependencies": { 24 | "iron-component-page": "PolymerElements/iron-component-page#~1.0.0", 25 | "webcomponentsjs": "Polymer/webcomponentsjs#~0.7.0" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /meteor-session.html: -------------------------------------------------------------------------------- 1 | 12 | 13 | 45 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Anthony Hinsinger 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /meteor-call.html: -------------------------------------------------------------------------------- 1 | 14 | 68 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 26 | 27 | 28 | 29 | 30 | 31 | Meteor elements 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /meteor-user.html: -------------------------------------------------------------------------------- 1 | 11 | 12 | 82 | -------------------------------------------------------------------------------- /meteor-connection.html: -------------------------------------------------------------------------------- 1 | 12 | 13 | 79 | -------------------------------------------------------------------------------- /meteor-subscribe.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 94 | -------------------------------------------------------------------------------- /meteor-collection.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | 126 | -------------------------------------------------------------------------------- /meteor-query.html: -------------------------------------------------------------------------------- 1 | 18 | 19 | 154 | --------------------------------------------------------------------------------