npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, πŸ‘‹, I’m Ryan HefnerΒ  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you πŸ™

Β© 2026 – Pkg Stats / Ryan Hefner

customized-tiptap-editor

v0.0.19

Published

πŸš€ a customized, rich-ui tiptap editor

Readme

✨ Customized TipTap

A beautiful, powerful, and developer-friendly WYSIWYG rich-text editor built on TipTap and customized to work seamlessly with Vuetify 3, Tailwind, and Material Design Icons.


πŸ“Œ What is Customized TipTap?

customized-tiptap is a feature-rich Vue 3 plugin offering a refined editing experience out of the box. Designed with clean aesthetics and an extensible architecture, it simplifies rich-text editing for modern Vue applications.

πŸ›  Based on TipTap 2
🎨 Styled with Tailwind & Vuetify 3
πŸ”— Includes out-of-the-box Vuetify-compatible UI
πŸ’¬ Multilingual & markdown-capable (in roadmap)


πŸš€ Demo

You can find a live demo of the editor here.


✨ Features

  • πŸ“ Vuetify-styled menus β€” Looks and feels native to your Vuetify app
  • 🎨 Tailwind-powered layout β€” Clean, customizable UI
  • 🧩 Pluggable extensions β€” Easily extend or override editor behavior
  • πŸ”  Markdown-friendly output
  • 🧼 Zero warnings β€” Clean console, smooth experience
  • 🧠 Full TypeScript support
  • πŸͺ„ Custom merge field support
  • πŸͺ„ Auto-formatting (coming soon)

πŸ“¦ Installation

npm install customized-tiptap-editor

This package requires Vuetify 3 and @mdi/font as peer dependencies.


πŸš€ Setup Instructions

1. Install the package

Install the package through the following command:

npm install customized-tiptap-editor

2. Make sure Vuetify and Material Design Icons are installed

Install Vuetify and MDI icons if not already installed:

npm install vuetify @mdi/font

3. Import styles files

import the following styles into your consumer app.

import '@mdi/font/css/materialdesignicons.css';
import 'customized-tiptap-editor/dist/style.css';
import "vuetify/styles";

4. Register the plugin

In your main entry file (e.g. main.ts or main.js):

import { createApp } from 'vue';
import App from './App.vue';
import router from './router';

import CustomizedTipTapPlugin from 'customized-tiptap-editor';
import '@mdi/font/css/materialdesignicons.css';
import 'customized-tiptap-editor/dist/style.css';

import { createVuetify } from 'vuetify';
import * as components from 'vuetify/components';
import * as directives from 'vuetify/directives';

const vuetify = createVuetify({
  components,
  directives,
});

const app = createApp(App);

app.use(router);
app.use(vuetify); // Vuetify must be used
app.use(CustomizedTipTapPlugin); // Register the editor plugin

app.mount('#app');

Note: The editor requires Vuetify and MDI icons to render properly. Ensure both are imported as shown above.


πŸ’‘ Usage Example

<template>
  <customized-tiptap />
</template>

<script setup lang="ts">
import { ref } from 'vue'

const content = ref('<p>Hello world!</p>')
</script>

πŸ§ͺ Props

Each prop is designed with flexibility and clarity in mind:

  • readonly?: boolean β€” Toggle read-only mode.
  • content?: string β€” Initial HTML content to load into the editor.
  • excludedExtensions?: TiptapExtensionName[] β€” Extensions to exclude from the editor setup.
  • includedExtensions?: TiptapExtensionName[] β€” Explicitly specify which extensions to include.
  • editorProps?: EditorProps β€” Pass native props directly to the underlying Tiptap editor.
  • customClasses?: TiptapEditorCustomClasses β€” Apply custom CSS classes, e.g., { editorWrapper: 'my-wrapper' }.
  • editorOptions?: EditorOptions β€” Full control over Tiptap editor options (like editable, autofocus, etc).

🧩 Extension API

Want to add custom buttons or logic? You can pass in your own extensions, merge fields, and configurations. More advanced usage docs coming soon.


❗ Requirements

  • Vue 3
  • Vuetify 3
  • Tailwind CSS (optional but recommended)
  • @mdi/font

πŸ›  Roadmap

  • [x] Vuetify 3 integration
  • [x] TypeScript support
  • [x] Custom merge field insertion
  • [ ] Markdown export support
  • [ ] Plugin system for menus and toolbars
  • [ ] I18n (English, Farsi, and more)

πŸ§‘β€πŸ’» Contributing

Issues, ideas, and pull requests are always welcome! If you spot any bugs or have suggestions, feel free to open an issue.


πŸ“„ License

MIT Β© Mohammad