🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

svelte-datatables-net

Package Overview
Dependencies
Maintainers
0
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-datatables-net - npm Package Compare versions

Comparing version

to
1.0.2

dist/PaginationItems.svelte

4

dist/index.d.ts
import Datatable from './Datatable.svelte';
import { functionCreateDatatable } from './functionCreateDatatable.js';
import Pagination from './Pagination.svelte';
import PaginationItems from './PaginationItems.svelte';
import RowsPerPage from './RowsPerPage.svelte';

@@ -8,3 +8,3 @@ import Search from './Search.svelte';

import type { typeDatatable } from './typeDatatable.js';
export { Datatable, functionCreateDatatable, Pagination, RowsPerPage, Search, Sort };
export { Datatable, functionCreateDatatable, PaginationItems, RowsPerPage, Search, Sort };
export type { typeDatatable };
import Datatable from './Datatable.svelte';
import { functionCreateDatatable } from './functionCreateDatatable.js';
import Pagination from './Pagination.svelte';
import PaginationItems from './PaginationItems.svelte';
import RowsPerPage from './RowsPerPage.svelte';
import Search from './Search.svelte';
import Sort from './Sort.svelte';
export { Datatable, functionCreateDatatable, Pagination, RowsPerPage, Search, Sort };
export { Datatable, functionCreateDatatable, PaginationItems, RowsPerPage, Search, Sort };
{
"name": "svelte-datatables-net",
"version": "1.0.1",
"version": "1.0.2",
"description": "svelte-datatables-net is a svelte/sveltekit component that turns data into an interactive HTML table. Inspired by datatables.net.",

@@ -5,0 +5,0 @@ "repository": {

@@ -74,3 +74,3 @@ # svelte-datatables-net

- PROPS OF `Pagination`:
- PROPS OF `PaginationItems`:

@@ -80,2 +80,3 @@ | PROP | DESCRIPTION | TYPE | REQUIRED | DEFAULT |

| `propTag` | HTML TAG OF THE PAGINATION ITEM. | `'span' OR 'div' OR 'li' OR 'button' OR 'a'` | YES | - |
| `propInnerTag` | HTML TAG INSIDE THE PAGINATION ITEM. | `'span' OR 'div' OR 'li' OR 'button' OR 'a'` | NO | `span` |
| `propPrevious` | PREVIOUS BUTTON TEXT. | `string` | NO | - |

@@ -90,2 +91,4 @@ | `propNext` | NEXT BUTTON TEXT. | `string` | NO | - |

| `propActiveClass` | CSS CLASSES FOR ACTIVE PAGINATION ITEMS. | `string` | NO | - |
| `propInnerClass` | CSS CLASSES FOR THE TAG INSIDE PAGINATION ITEMS. | `string` | NO | - |
| `propInnerStyle` | CSS CLASSES FOR THE TAG INSIDE PAGINATION ITEMS. | `string` | NO | - |

@@ -92,0 +95,0 @@ - PROPS OF `RowsPerPage`: