{"_id":"quill-image-resize-module-react","_rev":"1-f77577d48de672d7ffd6aff0c7b26cb7","name":"quill-image-resize-module-react","description":"A module for Quill rich text editor to allow images to be resized (with react fixes).","dist-tags":{"latest":"3.0.0"},"versions":{"3.0.0":{"name":"quill-image-resize-module-react","version":"3.0.0","description":"A module for Quill rich text editor to allow images to be resized (with react fixes).","main":"image-resize.min.js","scripts":{"test":"echo \"Error: no test specified\" && exit 0","build":"webpack -p --progress --colors","dev":"webpack --progress --colors --watch","lint":"eslint --ext js,es6 src","fixlint":"eslint --fix --ext js,es6 src"},"repository":{"type":"git","url":"git+https://github.com/concrete-cc/quill-image-resize-module-react.git"},"keywords":["quill","quilljs","image","resize","sizer"],"author":{"name":"@kensnyder"},"contributors":[{"name":"Wikia","url":"https://github.com/Wikia"}],"license":"MIT","bugs":{"url":"https://github.com/kensnyder/quill-image-resize-module/issues"},"homepage":"https://github.com/kensnyder/quill-image-resize-module#readme","devDependencies":{"babel-cli":"^6.24.0","babel-eslint":"^7.2.1","babel-loader":"^6.4.1","babel-plugin-transform-class-properties":"^6.23.0","babel-preset-env":"^1.2.2","babel-preset-es2015":"^6.24.0","eslint":"^3.19.0","eslint-config-airbnb":"^14.1.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-react":"^6.10.3","webpack":"^2.3.3"},"dependencies":{"lodash":"^4.17.4","quill":"^1.2.2","raw-loader":"^0.5.1"},"gitHead":"f1aa46729e177dcb43534fc5c577d1ac91d1bc60","_id":"quill-image-resize-module-react@3.0.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"concrete-media","email":"infrastructure@concreteplatform.com"},"dist":{"integrity":"sha512-3jVChLoXh+fwEELx3OswOEEuF+1KU3r/B9RAqZ//s+d+UMduVZzUepU1g/XoxjKoBJvWD2lJwBIFBRUNb8ebCw==","shasum":"dec32cecd175fcdc52bfd184206174fdd111a864","tarball":"https://registry.npmjs.org/quill-image-resize-module-react/-/quill-image-resize-module-react-3.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1cGCWFgPpSwn2ZfCJZ5z2JQR4dgfYIUmvkhWKVBklAAIhAOkN1VEGN814mQtdR1TaHOXkzxZBhI8PjM8GJbNHrfXl"}]},"maintainers":[{"name":"concrete-media","email":"infrastructure@concreteplatform.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/quill-image-resize-module-react-3.0.0.tgz_1515665146672_0.7938827995676547"}}},"readme":"# Quill ImageResize Module\n\nA module for Quill rich text editor to allow images to be resized.\n\nAlso see [quill-image-drop-module](https://github.com/kensnyder/quill-image-drop-module),\na module that enables copy-paste and drag/drop for Quill.\n\n## Demo\n\n[Plunker](https://plnkr.co/edit/gq708AOrSBOWSlHcFslG?p=preview)\n\n## Usage\n\n### Webpack/ES6\n\n```javascript\nimport Quill from 'quill';\nimport { ImageResize } from 'quill-image-resize-module';\n\nQuill.register('modules/imageResize', ImageResize);\n\nconst quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        imageResize: {\n            parchment: Quill.import('parchment')\n            // See optional \"config\" below\n        }\n    }\n});\n```\n\n### Script Tag\n\nCopy image-resize.min.js into your web root or include from node_modules\n\n```html\n<script src=\"/node_modules/quill-image-resize-module/image-resize.min.js\"></script>\n```\n\n```javascript\nvar quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        ImageResize: {\n            // See optional \"config\" below\n        }\n    }\n});\n```\n\n### Config\n\nFor the default experience, pass an object with parchment, like so:\n```javascript\nvar quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        ImageResize: {\n            parchment: Quill.import('parchment')\n        }\n    }\n});\n```\n\nFunctionality is broken down into modules, which can be mixed and matched as you like. For example,\nthe default is to include all modules:\n\n```javascript\nconst quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        ImageResize: {\n            modules: [ 'Resize', 'DisplaySize', 'Toolbar' ]\n        }\n    }\n});\n```\n\nEach module is described below.\n\n#### `Resize` - Resize the image\n\nAdds handles to the image's corners which can be dragged with the mouse to resize the image.\n\nThe look and feel can be controlled with options:\n\n```javascript\nvar quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        ImageResize: {\n            // ...\n            handleStyles: {\n                backgroundColor: 'black',\n                border: 'none',\n                color: white\n                // other camelCase styles for size display\n            }\n        }\n    }\n});\n```\n\n#### `DisplaySize` - Display pixel size\n\nShows the size of the image in pixels near the bottom right of the image.\n\nThe look and feel can be controlled with options:\n\n```javascript\nvar quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        ImageResize: {\n            // ...\n            displayStyles: {\n                backgroundColor: 'black',\n                border: 'none',\n                color: white\n                // other camelCase styles for size display\n            }\n        }\n    }\n});\n```\n\n#### `Toolbar` - Image alignment tools\n\nDisplays a toolbar below the image, where the user can select an alignment for the image.\n\nThe look and feel can be controlled with options:\n\n```javascript\nvar quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        ImageResize: {\n            // ...\n            toolbarStyles: {\n                backgroundColor: 'black',\n                border: 'none',\n                color: white\n                // other camelCase styles for size display\n            },\n            toolbarButtonStyles: {\n                // ...\n            },\n            toolbarButtonSvgStyles: {\n                // ...\n            },\n        }\n    }\n});\n```\n\n#### `BaseModule` - Include your own custom module\n\nYou can write your own module by extending the `BaseModule` class, and then including it in\nthe module setup.\n\nFor example,\n\n```javascript\nimport { Resize, BaseModule } from 'quill-image-resize-module';\n\nclass MyModule extends BaseModule {\n    // See src/modules/BaseModule.js for documentation on the various lifecycle callbacks\n}\n\nvar quill = new Quill(editor, {\n    // ...\n    modules: {\n        // ...\n        ImageResize: {\n            modules: [ MyModule, Resize ],\n            // ...\n        }\n    }\n});\n```\n","maintainers":[{"name":"concrete-media","email":"infrastructure@concreteplatform.com"}],"time":{"modified":"2022-05-13T23:15:24.639Z","created":"2018-01-11T10:05:46.813Z","3.0.0":"2018-01-11T10:05:46.813Z"},"homepage":"https://github.com/kensnyder/quill-image-resize-module#readme","keywords":["quill","quilljs","image","resize","sizer"],"repository":{"type":"git","url":"git+https://github.com/concrete-cc/quill-image-resize-module-react.git"},"contributors":[{"name":"Wikia","url":"https://github.com/Wikia"}],"author":{"name":"@kensnyder"},"bugs":{"url":"https://github.com/kensnyder/quill-image-resize-module/issues"},"license":"MIT","readmeFilename":"README.md"}