docs(recipes): add ExpandableAccordion recipe

This commit is contained in:
Eric Liu 2020-11-22 09:50:23 -08:00
commit 9edb0c2f31
3 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,43 @@
<script>
export let items = [
{
title: "Natural Language Classifier",
description:
"Natural Language Classifier uses advanced natural language processing and machine learning techniques to create custom classification models. Users train their data and the service predicts the appropriate category for the inputted text.",
},
{
title: "Natural Language Understanding",
description:
"Analyze text to extract meta-data from content such as concepts, entities, emotion, relations, sentiment and more.",
},
{
title: "Language Translator",
description:
"Translate text, documents, and websites from one language to another. Create industry or region-specific translations via the service's customization capability.",
},
];
import { Accordion, AccordionItem, Button } from "carbon-components-svelte";
let open = false;
</script>
<Button
kind="ghost"
size="field"
on:click="{() => {
open = !open;
}}"
>
{open ? 'Collapse' : 'Expand'}
all
</Button>
<Accordion>
{#each items as item}
<AccordionItem open="{open}">
<h5 slot="title">{item.title}</h5>
<p>{item.description}</p>
</AccordionItem>
{/each}
</Accordion>