JSPM

@forter/table

1.1.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 335
  • Score
    100M100P100Q78168F
  • License Apache-2.0

table from Forter Components

Package Exports

  • @forter/table

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@forter/table) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

⚠️ Forter Web Components are in development. APIs are subject to change without notice. ⚠️

@forter/table

🚛 Installation

Forter Web Components are distributed on the npm registry.

To install them to your project, use

npm install --save @forter/table

🛠 Usage

After installing, you can prepare them for use in your app without fuss using @pika/web

npx @pika/web

Then import into your app using module tags:

<script type="module" src="/web_modules/@forter/table.js"></script>

<fc-table></fc-table>

Or you can import into your app's modules and use your build process.

import { html, render } from 'lit-html';
import '@forter/table';

render(html`<fc-table></fc-table>`, document.body)