├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── app-pouchdb-conflict-resolution.d.ts ├── app-pouchdb-conflict-resolution.html ├── app-pouchdb-database-behavior.d.ts ├── app-pouchdb-database-behavior.html ├── app-pouchdb-document.d.ts ├── app-pouchdb-document.html ├── app-pouchdb-index.d.ts ├── app-pouchdb-index.html ├── app-pouchdb-query.d.ts ├── app-pouchdb-query.html ├── app-pouchdb-sync.d.ts ├── app-pouchdb-sync.html ├── bower.json ├── demo ├── index.html └── note-app.html ├── extra-types.d.ts ├── gen-tsd.json ├── index.d.ts ├── index.html ├── package.json ├── pouchdb.d.ts ├── pouchdb.find.d.ts ├── pouchdb.find.html ├── pouchdb.html ├── sw-import.js ├── test ├── app-pouchdb-document.html └── index.html └── wct.conf.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @e111077 2 | /.travis.yml @azakus 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components* 2 | node_modules 3 | bower-*.json 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/README.md -------------------------------------------------------------------------------- /app-pouchdb-conflict-resolution.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-conflict-resolution.d.ts -------------------------------------------------------------------------------- /app-pouchdb-conflict-resolution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-conflict-resolution.html -------------------------------------------------------------------------------- /app-pouchdb-database-behavior.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-database-behavior.d.ts -------------------------------------------------------------------------------- /app-pouchdb-database-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-database-behavior.html -------------------------------------------------------------------------------- /app-pouchdb-document.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-document.d.ts -------------------------------------------------------------------------------- /app-pouchdb-document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-document.html -------------------------------------------------------------------------------- /app-pouchdb-index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-index.d.ts -------------------------------------------------------------------------------- /app-pouchdb-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-index.html -------------------------------------------------------------------------------- /app-pouchdb-query.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-query.d.ts -------------------------------------------------------------------------------- /app-pouchdb-query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-query.html -------------------------------------------------------------------------------- /app-pouchdb-sync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-sync.d.ts -------------------------------------------------------------------------------- /app-pouchdb-sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/app-pouchdb-sync.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/bower.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/note-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/demo/note-app.html -------------------------------------------------------------------------------- /extra-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/extra-types.d.ts -------------------------------------------------------------------------------- /gen-tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/gen-tsd.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/package.json -------------------------------------------------------------------------------- /pouchdb.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/pouchdb.d.ts -------------------------------------------------------------------------------- /pouchdb.find.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/pouchdb.find.d.ts -------------------------------------------------------------------------------- /pouchdb.find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/pouchdb.find.html -------------------------------------------------------------------------------- /pouchdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/pouchdb.html -------------------------------------------------------------------------------- /sw-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/sw-import.js -------------------------------------------------------------------------------- /test/app-pouchdb-document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/test/app-pouchdb-document.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/test/index.html -------------------------------------------------------------------------------- /wct.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymerElements/app-pouchdb/HEAD/wct.conf.json --------------------------------------------------------------------------------