Package Exports
- @smui/list
- @smui/list/Graphic.svelte
- @smui/list/bare.js
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 (@smui/list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Svelte Material UI - List
Lists are vertical content sections.
Installation
npm install --save-dev @smui/list
Demo
in action: https://sveltematerialui.com/demo/list
demo code: https://github.com/hperrin/svelte-material-ui/blob/master/site/src/routes/demo/list/
Whoa There, These Docs are Outdated
The latest SMUI v3 beta had a lot of changes, and these docs haven't been caught up yet. You should check out the demo page's code to see the latest usage.
Basic Usage
<List>
{#each fruits as fruit}
<Item>
<Text>{fruit}</Text>
</Item>
{/each}
</List>
<script>
import List, { Item, Text } from '@smui/list';
let fruits = ['Apple', 'Orange', 'Banana', 'Mango'];
</script>
Exports
todo...
More Information
See Lists in the Material design spec.
See List in MDC-Web for information about the upstream library's architecture.