1.0.0 • Published 5 years ago

@uncharted.software/cards v1.0.0

Weekly downloads
44
License
Apache-2.0
Repository
-
Last release
5 years ago

Cards

A Javascript UI component for browsing documents

Alt text

Alt text

Usage

<div id="cards-panel" ></div>

import Cards from '@uncharted/cards';

const cards = new Cards();
cards.loadData([
  {
      id: 1,
      topBarColor: 'red',
      summary: 'summary-text',
      content: 'text-content'
  },
  {
      id: 2,
      topBarColor: 'blue',
      summary: 'summary-text',
      content: 'text-content'
  },
]);
$('#cards-panel').html(cards.render());

Development

yarn install

Build

yarn run build

Running an example

https://github.com/unchartedsoftware/cards/blob/master/example/index.html

yarn start