Card
A card is a UI design pattern that groups related information in a flexible-size container visually resembling a playing card
import '@vonage/vivid/card';
or, if you need to use a unique prefix:
import { registerCard } from '@vonage/vivid';
registerCard('your-prefix');
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <script type="module"> import { registerCard } from 'vivid-bundle'; registerCard('your-prefix'); </script> <your-prefix-card headline="I'm a card"></your-prefix-text-card>
<script setup lang="ts">
import { VCard } from '@vonage/vivid-vue';
</script>
<template>
<VCard headline="I'm a card" />
</template>
The graphic slot overrides the icon property.
Use the slot if a colored icon is needed or an icon with different dimensions.
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <vwc-card headline="Vivid Card Component" subtitle="Extra text below the card headline" > <vwc-icon slot="graphic" name="android-mono" style="font-size: 44px; color: #A4C439" ></vwc-icon> </vwc-card>
The media slot can be used to display images or video content above the card header.
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <vwc-card headline="Card with Media Slot" subtitle="Extra text below the card headline" class="card-media" > <img slot="media" src="https://doodleipsum.com/300x150/flat?bg=EB765D&i=7d5ed3bc0c215d1359b2a63d03cf1540" alt="Sitting on Floor" style="width: 100%; height: 150px; object-fit: cover;" /> </vwc-card> <style> .card-media { max-inline-size: 300px; } </style>
The meta slot is for action content in the card header.
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <vwc-card headline="Card with Meta Slot" subtitle="Extra text below the card headline" > <div slot="meta"> <vwc-menu aria-label="Card options" placement="bottom-start" trigger="auto"> <vwc-button slot="anchor" icon="more-vertical-line" aria-label="Open menu" appearance="outlined" ></vwc-button> <vwc-menu-item text="save card"></vwc-menu-item> <vwc-menu-item text="remove card"></vwc-menu-item> </vwc-menu> </div> </vwc-card>
The footer slot is for content in the card footer.
Use it for adding buttons or action items.
By default - items inside footer slot are aligned to the end.
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <vwc-card headline="Card with Footer Slot" subtitle="Extra text below the card headline" > <vwc-button slot="footer" icon="arrow-bold-right-line" shape="pill" label="Action" appearance="outlined" ></vwc-button> </vwc-card>
Card has predefined content style template.
Use the main
slot to fully override a card's predefined template with your own. When using main - only appearance and elevation are applied on the card.
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <vwc-card> <vwc-layout gutters="small" slot="main"> Assign custom template using "main" slot. </vwc-layout> </vwc-card>
The card headline can be trimmed to your preferable number of lines.
The number of lines is controlled by the css variable --headline-line-clamp
.
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <vwc-card class="vwc-card" headline="Card with long headline that has trim into one line" ></vwc-card> <style> .vwc-card { --headline-line-clamp: 1; max-inline-size: 42ch; } </style>
The card subtitle can be trimmed to your preferable number of lines.
The number of lines is controlled by css variable --subtitle-line-clamp
.
<!-- Feel free to edit the code below. The live preview will update as you make changes. --> <vwc-card class="vwc-card" headline="Card with Trimmed Subtitle" subtitle="This subtitle is extremely long and will be trimmed after 2 lines. This way you can control the size of the card." ></vwc-card> <style> .vwc-card { --subtitle-line-clamp: 2; max-inline-size: 42ch; } </style>
Name | Type | Description |
---|---|---|
appearance | elevated (default), outlined , ghost |
Sets the element's appearance |
elevation | 2 , 4 (default), 8 , 12 , 16 , 24 |
Sets the element's elevation |
headline | string |
Sets the element's headline |
icon | string |
Sets the element's icon |
subtitle | string |
Sets the element's subtitle |
text | string |
Sets the element's text |
Name | Description |
---|---|
Graphic | Add graphic element to card. Overrides the icon property |
Media | Use to display images or video content above the card header |
Meta | Use for adding action content, of info in the card header |
Footer | Content in the card footer. |
Main | Override a card's predefined template |