Px-clipboard
is a Predix UI component which lets the user copy a value onto their computer's clipboard.
It has 3 distinct modes:
- Copy from input
- Cut from input
- Copy from text
- Copy from Input:
This mode requires the attribute copy-from
, which should point to a tag, an ID, or a class.
Example:
<px-clipboard copy-from=".helloCopy"><input type="text" id="helloCopy" class="helloCopy" value="hello World Copy"/></px-clipboard>
- Cut from Input:
This mode also requires the copy-from
attribute, but setting the value of the data-clipboard-action
attribute to cut, it cuts the text, instead of copying it, .
Example:
<px-clipboard data-clipboard-action="cut" copy-from="#helloCut"><input type="text" id="helloCut" value="hello World Cut"/></px-clipboard>
- Copy from Text
This mode is slightly different - it does not copy text from an input - but from the value passed in the data-clipboard-text
attribute.
Example:
<px-clipboard data-clipboard-text="Copy some text into the clipboard!"></px-clipboard>
- node.js
- npm
- bower
- webcomponents-lite.js polyfill
Node, npm and bower are necessary to install the component and dependencies. webcomponents.js adds support for web components and custom elements to your application.
First, install the component via bower on the command line.
bower install px-clipboard --save
Second, import the component to your application with the following tag in your head.
<link rel="import" href="/bower_components/px-clipboard/px-clipboard.html"/>
Finally, use the component in your application:
<px-clipboard copy-from=".helloCopy"><input type="text" id="helloCopy" class="helloCopy" value="hello World Copy"/></px-clipboard>
Read the full API and view the demo here.
The documentation in this repository is supplemental to the official Predix documentation, which is continuously updated and maintained by the Predix documentation team. Go to http://predix.io to see the official Predix documentation.
From the component's directory...
$ npm install
$ bower install
$ gulp sass
From the component's directory, to start a local server run:
$ gulp serve
Navigate to the root of that server (e.g. http://localhost:8080/) in a browser to open the API documentation page, with link to the "Demo" / working examples.
Please use Github Issues to submit any bugs you might find.