New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

svelte-dx-table

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-dx-table

dx friendly svelte table component

1.0.0
latest
Source
npm
Version published
Maintainers
1
Created
Source

svelte-dx-table

NPM npm bundle size (minified + gzip)

Simple dev friendly Svelte component for building a HTML Table with basic features like sorting by default. Generated component is a raw HTML one which has classes to apply styling as well.

You can generate table by just passing array of objects as following.

<SimpleTable data={data} />

Note: svelte-dx-table is for simplicity as of now. It is more of making a table out of array of objects instead spending time on building config to render a simple table. If you are looking for advanced features, would recommend to check svelte-table

You can also provide ignoreKeys incase you want to ignore from default.

<Table {data} ignoreKeys={["dob"]} />

Columns config(via columns prop) is not a array of objects instead it will be map, which can make you add config for a necessary columns only. Check example

<Table {data} columns={{
      dob: {
        key: "dob",
        formatter: (val) => {
          return new Intl.DateTimeFormat("en-US").format(new Date(val));
        }
      }
    }}/>

Note that key inside column config is mandatory.

If incase, you want to specify order of columns, you can use keys prop in which you can provide keys of row object in the order you want.

<Table {data} keys={["name", "gender","age", "email"]} />

Demo

Click here for Storybook link

Installation

npm install svelte-dx-table

or

yarn add svelte-dx-table

API

Props

Prop NamemandatoryDescriptionDefault Value
datayesrows of data that needs to be passed[]
columnscolumn config for necessary columns as a map. Refer following for more info available properties.{}
keyskeys of array of objects(data) that needs to be rendered[]
ignoreKeysignore keys of object that shouldn't be rendered[]
tableClassclass that needs to be added as part of Table""
sortKeycolumn/object key on which sort needs to be applied""
sortType"normal" or "reverse""normal"

keys of column config

key NameDescriptiondefinition
keykey of objects in the datamandatory field if added in column config
header(key) => string
format(val) => string
headerClassstring""
sortFunctioncompare function(firstValue, SecondValue, key) => 1 or -1 or 0

As informed previously columns prop is a map. Check columns prop of following a reference

<Table {data} columns={{
  dob: {
    key: "dob",
    formatter: (val) => {
      return new Intl.DateTimeFormat("en-US").format(new Date(val));
    },
  },
  age: {
    key: "age",
    formatter: (val) => {
      return `${val} years`;
    },
  }
}}/>

Development

npm install
npm run storybook

License

MIT

Keywords

svelte

FAQs

Package last updated on 04 Jan 2022

Did you know?

Socket

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.

Install

Related posts