Gathering detailed insights and metrics for tiptap-pagination-plus
Gathering detailed insights and metrics for tiptap-pagination-plus
Gathering detailed insights and metrics for tiptap-pagination-plus
Gathering detailed insights and metrics for tiptap-pagination-plus
npm install tiptap-pagination-plus
Typescript
Module System
Node Version
NPM Version
77.9
Supply Chain
95.6
Quality
90.9
Maintenance
100
Vulnerability
99.6
License
TypeScript (100%)
Total Downloads
719
Last Day
18
Last Week
188
Last Month
719
Last Year
719
7 Stars
22 Commits
6 Forks
2 Watchers
1 Branches
1 Contributors
Updated on Jun 26, 2025
Minified
Minified + Gzipped
Latest Version
1.1.1
Package Id
tiptap-pagination-plus@1.1.1
Unpacked Size
55.23 kB
Size
12.41 kB
File Count
24
NPM Version
10.9.2
Node Version
22.14.0
Published on
Jun 22, 2025
Cumulative downloads
Total Downloads
Last Day
-82.2%
18
Compared to previous day
Last Week
-49.3%
188
Compared to previous week
Last Month
0%
719
Compared to previous month
Last Year
0%
719
Compared to previous year
tiptap-pagination-plus
extension that adds pagination support to your editor with table handling capabilities.
https://romikmakavana.me/tiptap-pagination/
1npm install tiptap-pagination-plus
1import { Editor } from '@tiptap/core' 2import StarterKit from '@tiptap/starter-kit' 3import { 4 PaginationPlus, 5 TablePlus, 6 TableRowPlus, 7 TableCellPlus, 8 TableHeaderPlus 9} from 'tiptap-pagination-plus' 10 11const editor = new Editor({ 12 extensions: [ 13 StarterKit, 14 TablePlus, 15 TableRowPlus, 16 TableCellPlus, 17 TableHeaderPlus, 18 PaginationPlus.configure({ 19 pageHeight: 842, // Height of each page in pixels 20 pageGap: 20, // Gap between pages in pixels 21 pageBreakBackground: "#f7f7f7", // Background color for page gaps 22 pageHeaderHeight: 50, // Height of page header/footer in pixels 23 footerRight: "Made with ❤️ by Romik", 24 footerLeft: "Page {page}", 25 headerLeft: "Header Left", 26 headerRight: "Header Right", 27 }), 28 ], 29})
Key points for table pagination:
Option | Type | Default | Description |
---|---|---|---|
pageHeight | number | 842 | Height of each page in pixels |
pageGap | number | 20 | Gap between pages in pixels |
pageBreakBackground | string | "#f7f7f7" | Background color for page gaps |
pageHeaderHeight | number | 50 | Height of page header/footer in pixels |
footerRight | string | "" | 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 |
{page}
variable to display current page number in header/footer textMIT
No vulnerabilities found.
No security vulnerabilities found.