Socket
Socket
Sign inDemoInstall

content-editable

Package Overview
Dependencies
1
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    content-editable

An HTML element that makes its content editable


Version published
Weekly downloads
12
decreased by-7.69%
Maintainers
1
Install size
151 kB
Created
Weekly downloads
 

Readme

Source

Build Status npm version Coverage Status

<content-editable>

A custom element that makes its contents editable by changing itself into an text field, when a user clicks on it.

This library was created to support features missing in the contenteditable property specification and to alleviate its inconsistent browser implementations.

Installation

npm i content-editable

Usage

<script src="node_modules/content-editable/dist/content-editable.js"></script>
<content-editable>Change Me</content-editable>

Then, when clicking anywhere on the element, a text field will show allowing the user to change the text.

API

Attributes

AttributeTypeDefaultDescription
readonlyBooleanfalseWhether the text should be editable or not.
multilineBooleanfalseWhether pressing enter should create a newline. If this is set to true, pressing enter will update the value to the new one.

Events

You can listen in on when the text field contents have changed.

const element = document.querySelector('content-editable');
element.addEventListener('edit', (e) => {
    console.log(e.target.innerHTML); // the new value
    console.log(e.target.previousInnerHTML); // old value
});
EventTypeDescription
editCustomEventFired with a custom event when the text value has been successfully changed to a new value. The event detail will include both a textContent field that contains the updated value and a previousTextContent field that contains the last-known value.

Of course, all of the other events supported by any HTMLElement are still available.

Styling

An editing attribute is applied to the element when the text inside of the element is in focus. So you can style based on this attribute. The following turns the element's background to blue when it is being edited.

content-editable[editing] {
    background-color: blue;
}
Formatting whitespace

If you would like for line breaks or any other formatting to be respected, just apply white-space css property.

content-editable {
    white-space: pre;
}

Development

Run tests

npm test

Run static server in examples directory

npm start

Keywords

FAQs

Last updated on 05 Jul 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc