@douganderson444/svelte-editable-action
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

Svelte Editable as an Action Directive

A svelte action to make any html element editable, with a toolbar.

Make any HTML element and children editable, complete with a toolbar compliments of nenadpnc/cl-editor under the hood.

Edit Svelte html output, with style

Build a component to set the style.

Use this action to edit the content without messing with the styling.

Use

Basic usage:

// index.svelte
<script>
    import { editable } from "@douganderson444/svelte-editable-action"
	let editText
</script>

<div use:editable on:change={(e) => editText = e.detail } >
    Click to edit me using the popup toolbar
</div>

The text is now: {editText}

Advanced use: (see ./src/routes/index.svelte)

<script>
    import { editable, colors } from "@douganderson444/svelte-editable-action"

</script>

<div use:editable={{colors}}>
	<h1>
	Svelte Text Editor Usage
	</h1>
  Click 🖱️ on me to <i>edit this</i> <b>text</b> by <a href='https://twitter.com/DougAnderson444' target='_blank'>@DougAnderson444</a>

	<input type="text" style:width="20em"  placeholder='Clicking an input does not affect editing'>

</div>


<style>
	input {
		margin-top: 2em;
	}
</style>

Demo

https://svelte.dev/repl/cb4ea37a28eb4204afbcf7b47287c0f6?version=3.48.0

Readme

Keywords

none

Package Sidebar

Install

npm i @douganderson444/svelte-editable-action

Weekly Downloads

0

Version

0.0.7

License

none

Unpacked Size

4.89 kB

Total Files

9

Last publish

Collaborators

  • douganderson444