
Security News
Node.js TSC Declines to Endorse Feature Bounty Program
The Node.js TSC opted not to endorse a feature bounty program, citing concerns about incentives, governance, and project neutrality.
svelte-datatables-net
Advanced tools
svelte-datatables-net is a svelte/sveltekit component that turns data into an interactive HTML table. Inspired by datatables.net.
svelte-datatables-net is a svelte/sveltekit component that turns data into an interactive HTML table.
npm install svelte-datatables-net
functionCreateDatatable
: A function to create an object with all the states of the component.Datatable
: Datatable element surrounding your table structure.Search
: A svelte component with a search input.RowsPerPage
: A svelte component with a select input to choose the number of rows per page.Pagination
: A svelte component to change the active page.Sort
: A svelte component that enable sorting for a specific column.typeDatatable
: If you are using typescript, it is a type definition for the component states.functionCreateDatatable
:PARAMETER | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
---|---|---|---|---|
parData | AN ARRAY WITH THE DATA. | Generic[] | YES | - |
parSearchableColumns | AN ARRAY WITH THE SEARCHABLE COLUMNS (KEYS OF parData ). | (keyof Generic)[] | NO | undefined |
parSearchString | THE SEARCH STRING CAN BE SET PREVIOUSLY WITH THIS PROP. | string | NO | '' (EMPTY STRING) |
parRowsPerPage | THE INITIAL NUMBER OF ROWS PER PAGE. | string (NUMERIC STRING OR 'all' ) | NO | 'all' |
parSortBy | THE INITIAL SORT COLUMN (A KEY OF parData ). | keyof Generic | NO | undefined (NO INITIAL SORTING) |
parSortOrder | THE INITIAL SORT ORDER. | 'ascending' OR 'descending' | NO | 'ascending' |
parSortFunction | A COMPARE FUNCTION THAT SPECIFIES THE INITIAL SORT ORDER. (MORE DETAILS HERE) | (a: Generic, b: Generic) => number | NO | A STANDARD FUNCTION TO SORT ALPHABETICALLY. |
Datatable
:PROP | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
---|---|---|---|---|
propDatatable | A BINDABLE OBJECT WITH THE DATATABLE STATES (OBJECT CREATED WITH functionCreateDatatable ) | typeDatatable<Generic> | YES | - |
Search
:PROP | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
---|---|---|---|---|
propPlaceholder | SEARCH INPUT PLACEHOLDER. | string | NO | 'Type here...' |
class | CSS CLASSES OF THE SEARCH INPUT. | string | NO | - |
style | CSS STYLES OF THE SEARCH INPUT. | string | NO | - |
Pagination
:PROP | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
---|---|---|---|---|
propTag | HTML TAG OF THE PAGINATION ITEM. | 'span' OR 'div' OR 'li' OR 'button' OR 'a' | YES | - |
propPrevious | PREVIOUS BUTTON TEXT. | string | NO | - |
propNext | NEXT BUTTON TEXT. | string | NO | - |
propComponent | OPTIONAL COMPONENT TO USE INSIDE THE PAGINATION ITEM. | string | NO | - |
style | CSS STYLES FOR PAGINATION ITEMS. | string | NO | - |
class | CSS CLASSES FOR PAGINATION ITEMS. | string | NO | - |
propDisabledStyle | CSS STYLES FOR DISABLED PAGINATION ITEMS. | string | NO | - |
propDisabledClass | CSS CLASSES FOR DISABLED PAGINATION ITEMS. | string | NO | - |
propActiveStyle | CSS STYLES FOR ACTIVE PAGINATION ITEMS. | string | NO | - |
propActiveClass | CSS CLASSES FOR ACTIVE PAGINATION ITEMS. | string | NO | - |
RowsPerPage
:PROP | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
---|---|---|---|---|
class | CSS CLASSES OF THE SELECT INPUT. | string | NO | - |
style | CSS STYLES OF THE SELECT INPUT. | string | NO | - |
Sort
:PROP | DESCRIPTION | TYPE | REQUIRED | DEFAULT |
---|---|---|---|---|
propDatatable | AN OBJECT WITH THE DATATABLE STATES (OBJECT CREATED WITH functionCreateDatatable ) | typeDatatable<Generic> | YES | - |
propColumn | COLUMN TO SORT. | keyof Generic | YES | - |
propIconSize | SIZE OF THE SORT ICON | number | NO | 10 |
propSortFunction | A COMPARE FUNCTION THAT SPECIFIES THE SORT ORDER. (MORE DETAILS HERE) | (a: Generic, b: Generic) => number | NO | A STANDARD FUNCTION TO SORT ALPHABETICALLY. |
ONCE YOU'VE INSTALLED THE DEPENDENCIES WITH npm install
, START A DEVELOPMENT SERVER TO RUN THE EXAMPLES IN THE routes
FOLDER WITH npm run dev
.
FAQs
svelte-datatables-net is a svelte/sveltekit component that turns data into an interactive HTML table. Inspired by datatables.net.
The npm package svelte-datatables-net receives a total of 307 weekly downloads. As such, svelte-datatables-net popularity was classified as not popular.
We found that svelte-datatables-net demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The Node.js TSC opted not to endorse a feature bounty program, citing concerns about incentives, governance, and project neutrality.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.