npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@knime/kds-table

v0.6.1

Published

Package containing the table component of the KNIME Design System

Downloads

2,174

Readme

KNIME® Design System – Table Component

This is part of the KNIME Design System maintained by the UI Core Team.

This package contains the table component used by e.g. the TableView of KNIME Analytics Platform and KNIME Hub. It is based on the Vue JavaScript framework and built on the KNIME Design System tokens.

It's published as npm package: @knime/kds-table

Development

This package is part of the KNIME Design System monorepo. For setup instructions, see the root README.

Launch development server

From the root of the monorepo:

pnpm dev       # Starts Storybook with all design system components

Git hooks

Git hooks are configured at the monorepo root. See root README for details.

Testing

Running unit tests

Unit tests are based on Vitest. Run from the monorepo root:

pnpm run test:unit      # Run all unit tests (packages/*)
pnpm run coverage       # Generate coverage reports

Coverage data is collected at the root level and merged with Storybook coverage for SonarQube reporting.

Running security audit

Security audits are run at the monorepo root:

pnpm run audit

TypeScript setup

The package-level tsconfig.json is the source of truth for editor support and pnpm run type-check. The build-specific tsconfig.build.json extends it and only overrides declaration output plus build-only excludes. The remaining differences to @knime/kds-components are intentional for now:

  • allowJs, because the package still ships typed JavaScript utility modules.
  • The @knime/components path stub, to stop vue-tsc from following that package's source export.

The package now uses src/index.ts as its public entrypoint, aligned with @knime/kds-components. Type declarations are emitted as a source-like tree under dist/src, and the published types entry points to dist/src/index.d.ts.

Logging

You can log using the global consola variable (which the embedding application needs to provide).

See https://github.com/nuxt/consola for details.

Building

To build the table component as Vue library:

pnpm run build      # Build only this package
pnpm run build      # From root: builds all packages including table

Results are saved to dist/.

Versioning & Publishing

Versioning and publishing are managed at the root level.

All @knime/kds-* packages (including this table) are versioned together via Changesets. For release workflows, see the root README.

Using the table component in a Vue application

Install @knime/kds-table npm package as dependency:

pnpm add @knime/kds-table
import { Table } from "@knime/kds-table";

export default {
  // ...
  components: {
    Table,
  },
  // ...
};

Use in Template

<template>
  <Table />
</template>

Requirements

The KNIME-Table expects that the embedding app provides the following:

  • Vue and Consola compatible to the versions defined in package.json