Socket
Book a DemoInstallSign in
Socket

@cloudflare/component-copyable-textarea

Package Overview
Dependencies
Maintainers
43
Versions
529
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cloudflare/component-copyable-textarea

Cloudflare Copyable Textarea Component

latest
npmnpm
Version
6.0.3
Version published
Weekly downloads
2.9K
12.97%
Maintainers
43
Weekly downloads
 
Created
Source

@cloudflare/component-copyable-textarea

Cloudflare Copyable Textarea Component

Installation

Installation with yarn is recommended


$ yarn add @cloudflare/component-copyable-textarea

Usage

CopyableTextarea has option to use self-defined text and ids for translation component.

import React from 'react';
import { CopyableTextarea } from '../../src';

class CopyableTextareaComponent extends React.Component {
  render() {
    return (
      <>
        <CopyableTextarea
          name="copyable-textarea-example"
          value="Some nice text that needs to be copied"
        />
        // passing self-defined id(s) for translation
        <CopyableTextarea
          name="copyable-textarea-example"
          value="Some nice text that needs to be copied"
          clickToCopyTextId = 'api.click_to_copy'
          copiedTextToClipboardTextId = 'api.copied_to_clipboard'
          pressCommandOrCtrlCToCopyTextId = 'api.copy_failed'
        />
        // passing self-defined translation fallback messages
        <CopyableTextarea
          name="copyable-textarea-example"
          value="Some nice text that needs to be copied"
          clickToCopyTextId = 'api.click_to_copy'
          copiedTextToClipboardTextId = 'api.copied_to_clipboard'
          pressCommandOrCtrlCToCopyTextId = 'api.copy_failed'
          clickToCopyText = 'Click to copy API token'
          copiedTextToClipboardText = 'API tokens copied to clipboard'
          pressCommandOrCtrlCToCopyText = 'Failed to copy API token'
        />
      </>
    );
  }
}

export default CopyableTextareaComponent;

FAQs

Package last updated on 10 Sep 2025

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