granite-clipboard
A simple, lightweight element wrapping-up clipboard.js
Built on lit-element
The old Polymer 2.x-1.x version is available on the
polymer-hybrid-1.x-2.x
branch.
Doc & demo
https://lostinbrittany.github.io/granite-clipboard
Usage example
<granite-clipboard text="Text to be copied">
<div style="width:250px;height:50px;border-radius:5px;background-color:#aaaaff;cursor:pointer;">Click here</div>
</granite-clipboard>
Install
Install the component using npm:
$ npm i @granite-elements/granite-clipboard
Once installed, import it in your application:
import ‘@granite-elements/granite-clipboard/granite-clipboard.js’;
Running demos and tests in browser
-
Fork the
granite-clipboard
repository and clone it locally. -
Make sure you have npm
and the Polymer CLI installed. -
When in the
granite-clipboard
directory, runnpm install
to install dependencies. -
Serve the project using Polyumer CLI:
polymer serve --npm
-
Open the demo in the browser
Attributes
Attribute | Type | Default | Description |
---|---|---|---|
text |
String | `` | The text to copy |
action |
String | copy |
The action to do (either copy or cut ) |
Contributing
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -m 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D