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 🙏

© 2025 – Pkg Stats / Ryan Hefner

quill-resize-module

v2.0.8

Published

A module for Quill rich text editor to allow images/iframe/video and custom elements to be resized.

Readme

Quill Resize Module

A module for Quill rich text editor to allow images/iframe/video and custom elements to be resized.

This module is original forked from https://github.com/whatcould/quill-image-resize-module.

Changed V2

  1. Support Quill2
  2. Removed formats/image formats/placeholder
  3. Removed options.styles
  4. Add embedTags option for custom embed element
  5. Add tools option for custom toolbar

Features

  • Image resize

  • Embed resize (Default to iframe/video tag)

  • Custom any elements resize

  • Limit minWidth/maxWidth/minHeight/maxHeight

  • Limit Width/Height ratio

  • Selected embed element style

  • Direction key support

Demo

https://codesandbox.io/p/sandbox/9m9vl8 demo

Usage

Webpack/ES6

import Quill from 'quill';
import QuillResize from 'quill-resize-module';
Quill.register('modules/resize', QuillResize);

const quill = new Quill(editor, {
    // ...
    modules: {
        // ...
        resize: {
            // See optional "config" below
        }
    }
});

Script Tag

Copy resize.js into your web root or include from node_modules

<script src="/node_modules/quill-resize-module/dist/resize.js"></script>
var quill = new Quill(editor, {
    // ...
    modules: {
        // ...
        resize: {
            // See optional "config" below
        }
    }
});

Config

Here's a complete configuration example showing all available options:

const quill = new Quill(editor, {
    modules: {
        resize: {
            // Enable feature modules
            modules: ['DisplaySize', 'Toolbar', 'Resize', 'Keyboard'],

            // Enable keyboard arrow keys for selection
            keyboardSelect: true,

            // CSS classes for selected and active states
            selectedClass: 'selected',
            activeClass: 'active',

            // Resizable embedded tags (video and iframe by default)
            embedTags: ['VIDEO', 'IFRAME'],

            // Toolbar buttons (default: left align, center, right align, full width, edit)
            tools: ['left', 'center', 'right', 'full', 'edit'],

            // Parchment configuration: set attributes and limits for different element types
            parchment: {
                // Image configuration
                image: {
                    attribute: ['width'],  // Adjustable attributes
                    limit: {
                        minWidth: 100      // Minimum width limit
                    }
                },
                // Video configuration
                video: {
                    attribute: ['width', 'height'],  // Adjustable attributes
                    limit: {
                        minWidth: 200,     // Minimum width limit
                        ratio: 0.5625      // Width/height ratio limit (16:9)
                    }
                }
            },

            // Event callbacks
            onActive: function (blot, target) {
                // Triggered when an element is activated
            },

            onInactive: function (blot, target) {
                // Triggered when an element is deactivated
            },

            onChangeSize: function (blot, target, size) {
                // Triggered when element size changes
            }
        }
    }
});

You can use only specific modules based on your needs. For example, if you only want resize and size display functionality:

const quill = new Quill(editor, {
    modules: {
        resize: {
            modules: ['Resize', 'DisplaySize']
        }
    }
});

Module Details

Resize Module - Element Resizing

This module adds drag handles to elements, allowing size adjustment via mouse. The behavior is controlled through the parchment configuration for different element types:

const quill = new Quill(editor, {
    modules: {
        resize: {
            parchment: {
                // Image element configuration
                image: {
                    // Adjustable attributes: ['width'] or ['width', 'height']
                    attribute: ['width'],
                    // Size limits
                    limit: {
                        minWidth: 200,     // Minimum width
                        maxWidth: 600,     // Maximum width
                        minHeight: 200,    // Minimum height
                        maxHeight: 450,    // Maximum height
                        ratio: 0.5625      // Width/height ratio (e.g., 16:9 = 0.5625)
                    }
                },
                // Similar configuration can be added for other element types
                video: {
                    // ...
                }
            }
        }
    }
});

Toolbar Module - Toolbar

The toolbar module provides quick action buttons that can be customized through the tools option:

  1. Predefined buttons:
  • left: Left align
  • center: Center align
  • right: Right align
  • full: Full width
  • edit: Edit button
  1. Custom button example:
const quill = new Quill(editor, {
    modules: {
        resize: {
            tools: [
                'left', 'right',  // Use predefined buttons
                {
                    text: 'Alt',  // Button text
                    // Custom button attributes
                    attrs: {
                        title: 'Set image alt',
                        class: 'btn-alt'
                    },
                    // Button display condition
                    verify (activeEle) {
                        return activeEle?.tagName === 'IMG';
                    },
                    // Button click handler
                    handler (evt, button, activeEle) {
                        let alt = activeEle.alt || '';
                        alt = window.prompt('Alt for image', alt);
                        if (alt != null) {
                            activeEle.setAttribute('alt', alt);
                        }
                    }
                }
            ]
        }
    }
});

DisplaySize Module - Size Display

Shows current size information while resizing elements. No additional configuration needed. Included in the default module list:

const quill = new Quill(editor, {
    modules: {
        resize: {
            modules: ['Resize', 'DisplaySize']
        }
    }
});

Keyboard Module - Keyboard Support

Enables element selection and manipulation using keyboard arrow keys. Can be controlled using the keyboardSelect option:

const quill = new Quill(editor, {
    modules: {
        resize: {
            keyboardSelect: true  // Enable keyboard arrow key selection
        }
    }
});

Custom Module Development

You can create your own module by extending the BaseModule class. Here's a complete example:

import QuillResize from 'quill-resize-module';
Quill.register('modules/resize', QuillResize);

class MyModule extends QuillResize.Modules.Base {
    // See src/modules/BaseModule.js for documentation on the various lifecycle callbacks
}

const quill = new Quill(editor, {
    modules: {
        // Other modules...
        resize: {
            modules: [MyModule, QuillResize.Modules.Resize],
            // Other configuration...
        }
    }
});