JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 861
  • Score
    100M100P100Q103855F
  • License MIT

Tiptap table extra options like duplicate column, duplicate row etc...

Package Exports

  • tiptap-pagination-plus
  • tiptap-pagination-plus/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tiptap-pagination-plus) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

TipTap Pagination Plus

NPM

tiptap-pagination-plus extension that adds pagination support to your editor with table handling capabilities.

Demo

https://romikmakavana.me/tiptap-pagination/

Installation

npm install tiptap-pagination-plus

Usage

Basic Setup

import { Editor } from '@tiptap/core'
import StarterKit from '@tiptap/starter-kit'
import { 
  PaginationPlus,
  TablePlus,
  TableRowPlus,
  TableCellPlus,
  TableHeaderPlus
} from 'tiptap-pagination-plus'

const editor = new Editor({
  extensions: [
    StarterKit,
    TablePlus,
    TableRowPlus,
    TableCellPlus,
    TableHeaderPlus,
    PaginationPlus.configure({
      pageHeight: 800,        // Height of each page in pixels
      pageGap: 50,            // Gap between pages in pixels
      pageGapBorderSize: 1,   // Border size for page gaps
      pageBreakBackground: "#ffffff",  // Background color for page gaps
      pageHeaderHeight: 50,   // Height of page header in pixels
      pageFooterHeight: 50,   // Height of page footer in pixels
      footerRight: "{page}",  // Custom text to display in the footer right side
      footerLeft: "",         // Custom text to display in the footer left side
      headerRight: "",        // Custom text to display in the header right side
      headerLeft: "",         // Custom text to display in the header left side
      marginTop: 0,           // Top margin for pages
      marginBottom: 0,        // Bottom margin for pages
      marginLeft: 50,         // Left margin for pages
      marginRight: 50,        // Right margin for pages
      contentMarginTop: 0,    // Top margin for content within pages
      contentMarginBottom: 0, // Bottom margin for content within pages
    }),
  ],
})

Table Pagination

Key points for table pagination:

  • Tables will automatically split across pages when they exceed the page height
  • To split table across pages, you have to use these extensions
  • List : TablePlus, TableRowPlus, TableCellPlus, TableHeaderPlus

Configuration Options

Option Type Default Description
pageHeight number 800 Height of each page in pixels
pageGap number 50 Gap between pages in pixels
pageGapBorderSize number 1 Border size for page gaps
pageBreakBackground string "#ffffff" Background color for page gaps
pageHeaderHeight number 50 Height of page header in pixels
pageFooterHeight number 50 Height of page footer in pixels
footerRight string "{page}" Custom text to display in the footer right side
footerLeft string "" Custom text to display in the footer left side
headerRight string "" Custom text to display in the header right side
headerLeft string "" Custom text to display in the header left side
marginTop number 0 Top margin for pages
marginBottom number 0 Bottom margin for pages
marginLeft number 50 Left margin for pages
marginRight number 50 Right margin for pages
contentMarginTop number 0 Top margin for content within pages
contentMarginBottom number 0 Bottom margin for content within pages

Features

  • Automatic page breaks based on content height
  • Page numbers in the footer
  • Custom header/footer text support
  • use {page} variable to display current page number in header/footer text
  • Table pagination with header preservation
  • Responsive design
  • Automatic page height calculation
  • Support for nested content

License

MIT