Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

quill-table-ui

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quill-table-ui

UI for Quill tables

latest
Source
npmnpm
Version
1.0.7
Version published
Weekly downloads
3.7K
0.38%
Maintainers
1
Weekly downloads
 
Created
Source

quill-table-ui

A module for table UI in Quill

Online Demo

quill-table-ui Codepen Demo

Requirements

quilljs v2.0.0-dev.3

Installation

npm install quill-table-ui

Usage

Load quill and style dependencies

<script src="https://cdnjs.cloudflare.com/ajax/libs/quill/2.0.0-dev.3/quill.min.js" type="text/javascript"></script>
<script src="https://unpkg.com/quill-table-ui@1.0.5/dist/umd/index.js" type="text/javascript"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/quill/2.0.0-dev.3/quill.snow.min.css" rel="stylesheet">
<link href="https://unpkg.com/quill-table-ui@1.0.5/dist/index.css" rel="stylesheet">

ES6

import * as QuillTableUI from 'quill-table-ui'

Quill.register({
  'modules/tableUI': QuillTableUI
}, true)

window.onload = () => {
  const quill = new Quill('#editor-wrapper', {
    theme: 'snow',
    modules: {
      table: true,
      tableUI: true,
    }
  })
}

Keywords

quill

FAQs

Package last updated on 30 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts