🚀 DAY 2 OF LAUNCH WEEK: Unify Your Security Stack with Socket Basics.Learn more →
Socket
Book a DemoInstallSign in
Socket

@patternfly/pfe-clipboard

Package Overview
Dependencies
Maintainers
16
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@patternfly/pfe-clipboard

Clipboard element for PatternFly Elements

next
Source
npmnpm
Version
2.0.0-next.5
Version published
Weekly downloads
3.5K
-14.82%
Maintainers
16
Weekly downloads
 
Created
Source

PatternFly Elements Clipboard

A button to copy the current URL to the system clipboard.

Read more about Clipboard in the PatternFly Elements Clipboard documentation

Installation

Load <pfe-clipboard> via CDN:

<script src="https://unpkg.com/@patternfly/pfe-clipboard?module"></script>

Or, if you are using NPM, install it

npm install @patternfly/pfe-clipboard

Then once installed, import it to your application:

import '@patternfly/pfe-clipboard';

Usage

Default

<pfe-clipboard></pfe-clipboard>

Copy text from an element on the page

Add a valid HTML selector to the target attribute, component will use document.querySelector to find the first element that the selector fits.

We recommend using ID's.

<pfe-clipboard copy-from="#copy-me"></pfe-clipboard>
<div id="copy-me">This text will get copied</div>

<pfe-clipboard copy-from="body .copy-me"></pfe-clipboard>
<div class="copy-me">This text will get copied</div>

Copy arbitrary content

Set the attribute copy-from="property" and set the property contentToCopy on the component with what should be copied.

<!-- Markup on the page -->
<pfe-clipboard copy-from="property" id="copyButton"></pfe-clipboard>
document.getElementById('copyButton').contentToCopy('Wakka wakka!');

Optionally hide the icon

<pfe-clipboard no-icon></pfe-clipboard>
<pfe-clipboard>
  <span slot="label">hey you, copy this url!</span>
</pfe-clipboard>

Override the copied notification text

<pfe-clipboard>
    <span slot="success">URL Copied to clipboard</span>
</pfe-clipboard>

Override the icon

<pfe-clipboard>
    <pfe-icon slot="icon" icon="globe"></pfe-icon>
</pfe-clipboard>

Override all slots

<pfe-clipboard>
  <span slot="label">Copy this article URL</span>
  <span slot="success">URL Copied to clipboard</span>
  <pfe-icon slot="icon" icon="globe"></pfe-icon>
</pfe-clipboard>

Specify the amount of seconds the copy success text should be visible

<pfe-clipboard copied-duration="5"></pfe-clipboard>

Accessibility

<pfe-clipboard> implements many features of a standard button to provide an accessible experience for all users. By default, role="button" and tabindex="0" are added to inform assistive technology that <pfe-clipboard> should be treated as a button. It listens for mouse clicks as well as enter and space key presses per the recommendation of w3.org.

Keywords

web-components

FAQs

Package last updated on 25 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts