├── .env.example ├── .gitignore ├── Gruntfile.cjs ├── README.md ├── components.json ├── docs ├── 404.html ├── TiptapPaginationOG.png ├── assets │ ├── index-DBvI5zla.css │ └── index-DFdTkS3z.js ├── index.html └── vite.svg ├── ecosystem.config.cjs ├── eslint.config.js ├── index.html ├── package.json ├── public ├── TiptapPaginationOG.png └── vite.svg ├── src ├── App.css ├── App.tsx ├── components │ ├── image-plus │ │ └── tiptap-editor.tsx │ ├── table-with-pagination │ │ └── tiptap-editor.tsx │ ├── table-without-pagination │ │ └── tiptap-editor.tsx │ └── ui │ │ ├── button.tsx │ │ └── sonner.tsx ├── index.css ├── lib │ ├── config.ts │ ├── contents │ │ ├── image-plus-content.ts │ │ ├── table-plus-with-pagination.ts │ │ └── table-plus-without-pagination.ts │ ├── editor-content.ts │ └── utils.ts ├── main.tsx ├── pages │ ├── Home.tsx │ ├── ImagePlus.tsx │ ├── TablePlusWithPagination.tsx │ └── TablePlusWithoutPagination.tsx ├── styles │ ├── editor.css │ ├── header-footer.css │ ├── pagination.css │ └── table.css ├── types │ └── index.ts ├── ui │ ├── button.tsx │ ├── editor │ │ ├── header-footer.tsx │ │ └── toolbar.tsx │ ├── open-for-work.tsx │ ├── sponsor-work.tsx │ └── tiptap-editor.tsx └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- 1 | VITE_PUBLIC_URL=/tiptap-pagination/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/Gruntfile.cjs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/components.json -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/TiptapPaginationOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/docs/TiptapPaginationOG.png -------------------------------------------------------------------------------- /docs/assets/index-DBvI5zla.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/docs/assets/index-DBvI5zla.css -------------------------------------------------------------------------------- /docs/assets/index-DFdTkS3z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/docs/assets/index-DFdTkS3z.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/docs/vite.svg -------------------------------------------------------------------------------- /ecosystem.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/ecosystem.config.cjs -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/package.json -------------------------------------------------------------------------------- /public/TiptapPaginationOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/public/TiptapPaginationOG.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/image-plus/tiptap-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/components/image-plus/tiptap-editor.tsx -------------------------------------------------------------------------------- /src/components/table-with-pagination/tiptap-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/components/table-with-pagination/tiptap-editor.tsx -------------------------------------------------------------------------------- /src/components/table-without-pagination/tiptap-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/components/table-without-pagination/tiptap-editor.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/lib/config.ts -------------------------------------------------------------------------------- /src/lib/contents/image-plus-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/lib/contents/image-plus-content.ts -------------------------------------------------------------------------------- /src/lib/contents/table-plus-with-pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/lib/contents/table-plus-with-pagination.ts -------------------------------------------------------------------------------- /src/lib/contents/table-plus-without-pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/lib/contents/table-plus-without-pagination.ts -------------------------------------------------------------------------------- /src/lib/editor-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/lib/editor-content.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/pages/Home.tsx -------------------------------------------------------------------------------- /src/pages/ImagePlus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/pages/ImagePlus.tsx -------------------------------------------------------------------------------- /src/pages/TablePlusWithPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/pages/TablePlusWithPagination.tsx -------------------------------------------------------------------------------- /src/pages/TablePlusWithoutPagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/pages/TablePlusWithoutPagination.tsx -------------------------------------------------------------------------------- /src/styles/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/styles/editor.css -------------------------------------------------------------------------------- /src/styles/header-footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/styles/header-footer.css -------------------------------------------------------------------------------- /src/styles/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/styles/pagination.css -------------------------------------------------------------------------------- /src/styles/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/styles/table.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/ui/button.tsx -------------------------------------------------------------------------------- /src/ui/editor/header-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/ui/editor/header-footer.tsx -------------------------------------------------------------------------------- /src/ui/editor/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/ui/editor/toolbar.tsx -------------------------------------------------------------------------------- /src/ui/open-for-work.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/ui/open-for-work.tsx -------------------------------------------------------------------------------- /src/ui/sponsor-work.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/ui/sponsor-work.tsx -------------------------------------------------------------------------------- /src/ui/tiptap-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/src/ui/tiptap-editor.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RomikMakavana/tiptap-pagination/HEAD/vite.config.ts --------------------------------------------------------------------------------