1.2.12 • Published 6 months ago

textyle v1.2.12

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

Textyle

Textyle is a versatile text editor package for React that provides a rich set of components for creating and editing text content.

Installation

To install Textyle, use npm:

npm install textyle

Usage

Import the necessary components from the "textyle" package and incorporate them into your React application.

import { TextylEditor, TextylToolbar } from "textyle/components";

const onChange = (value) => {
  // will run after a debounce of 2 seconds
  console.log(value);
};

// You can use the Toolbar and Editor separately
const MyTextEditor = () => (
  <div>
    <TextylToolbar />
    <TextylEditor
      onChange={onChange}
      initialValue="YOUR_HTML_INITIAL_VALUE"
      placeholder="YOUR_PLACEHOLDER"
    />
  </div>
);

More details will be added on how to customize the components and their functionalities according to your application's needs.

ISC License

Copyright 2023 Omar Mokhfi

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

1.2.0

6 months ago

1.1.1

6 months ago

1.1.0

6 months ago

1.2.8

6 months ago

1.1.9

6 months ago

1.2.7

6 months ago

1.1.8

6 months ago

1.2.6

6 months ago

1.1.7

6 months ago

1.2.5

6 months ago

1.1.6

6 months ago

1.2.4

6 months ago

1.1.5

6 months ago

1.2.3

6 months ago

1.1.4

6 months ago

1.2.2

6 months ago

1.1.3

6 months ago

1.2.1

6 months ago

1.1.2

6 months ago

1.2.9

6 months ago

1.2.12

6 months ago

1.0.10

6 months ago

1.2.10

6 months ago

1.0.9

7 months ago

1.0.8

7 months ago

1.0.7

7 months ago

1.0.6

7 months ago

1.0.5

7 months ago

1.0.4

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago