primevue-mirror/doc/select/theming/StyledDoc.vue

66 lines
2.1 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-07-25 14:12:21 +00:00
<p>List of class names used in the styled mode.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
<div class="doc-tablewrapper">
<table class="doc-table">
<thead>
<tr>
<th>Name</th>
<th>Element</th>
</tr>
</thead>
<tbody>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select</td>
2023-02-28 08:29:30 +00:00
<td>Container element.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-label</td>
2023-02-28 08:29:30 +00:00
<td>Element to display label of selected option.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-trigger</td>
2023-02-28 08:29:30 +00:00
<td>Icon element.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-panel</td>
2023-02-28 08:29:30 +00:00
<td>Icon element.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-items-wrapper</td>
2023-02-28 08:29:30 +00:00
<td>Wrapper element of items list.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-items</td>
2023-02-28 08:29:30 +00:00
<td>List element of items.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-item</td>
2023-02-28 08:29:30 +00:00
<td>An item in the list.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-filter-container</td>
2023-02-28 08:29:30 +00:00
<td>Container of filter input.</td>
</tr>
<tr>
2024-04-18 14:22:30 +00:00
<td>p-select-filter</td>
2023-02-28 08:29:30 +00:00
<td>Filter element.</td>
</tr>
<tr>
<td>p-overlay-open</td>
<td>Container element when overlay is visible.</td>
</tr>
<tr>
<td>p-focus</td>
<td>Container element when it is in focus.</td>
</tr>
2024-04-09 16:25:52 +00:00
<tr>
<td>p-highlight</td>
<td>Container element when it is selected.</td>
</tr>
2023-02-28 08:29:30 +00:00
</tbody>
</table>
</div>
</template>