Artur Paikin 400329e632 Release 6 years ago
..
src c7f610718a clean up styles, add focus to provider browser items 6 years ago
types ac07bcf0cb Move `ProviderView` to `@uppy/provider-views`. 6 years ago
LICENSE ac07bcf0cb Move `ProviderView` to `@uppy/provider-views`. 6 years ago
README.md 8d2b6a8a05 Insert missing documentation links. 6 years ago
package.json 400329e632 Release 6 years ago

README.md

@uppy/provider-views

Build Status

View library for Uppy remote provider plugins.

Uppy is being developed by the folks at Transloadit, a versatile file encoding service.

Example

const Plugin = require('@uppy/core/lib/plugin')
const ProviderViews = require('@uppy/provider-views')

class GoogleDrive extends Plugin {
  constructor () { /* snip */ }
  install () {
    this.view = new ProviderViews(this)
    // snip
  }

  render (state) {
    return this.view.render(state)
  }
}

Installation

Unless you are creating a custom provider plugin, you do not need to install this.

$ npm install @uppy/provider-views --save

License

The MIT License.